diff --git a/.gitattributes b/.gitattributes index ddc5e31..33db09f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +*.yaml linguist-generated=true *.tex linguist-generated=true *.csv linguist-generated=true *.json linguist-generated=true diff --git a/.github/scripts/check_prompt_generators.py b/.github/scripts/check_prompt_generators.py index 64377c7..0a68a0e 100644 --- a/.github/scripts/check_prompt_generators.py +++ b/.github/scripts/check_prompt_generators.py @@ -9,7 +9,8 @@ if __name__ == "__main__": data_config = DataConfig( os.path.join( - get_data_config_dir(), "textbooks_are_all_you_need/main.yaml" + get_data_config_dir(), + "textbooks_are_all_you_need_basic_split/main.yaml", ) ) prompt_generator = PromptGenerator( diff --git a/README.md b/README.md index 5e55a39..072f5fd 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ poetry install -E You can use SciPhi for dataset generation by executing the relevant `runner.py` file with various command-line arguments. ```bash -poetry run python sciphi/examples/data_generation/runner.py --provider_name=openai --model_name=gpt-4 --log_level=DEBUG --batch_size=1 --num_samples=1 --output_file_name=example_output.jsonl --example_config=textbooks_are_all_you_need +poetry run python sciphi/examples/basic_data_gen/runner.py --provider_name=openai --model_name=gpt-4 --log_level=DEBUG --batch_size=1 --num_samples=1 --output_file_name=example_output.jsonl --example_config=textbooks_are_all_you_need_basic_split ``` ### Key Command-Line Arguments @@ -66,7 +66,7 @@ poetry run python sciphi/examples/data_generation/runner.py --provider_name=open - `--provider`: Which provider to use for completions (default: "openai"). - `--model_name`: The name of the model to load from the provider (default: "gpt-3.5-turbo"). - `--temperature`: Temperature parameter for the provided model (default: 0.7). -- `--example_config`: Which example configuration to use (default: "textbooks_are_all_you_need"). +- `--example_config`: Which example configuration to use (default: "textbooks_are_all_you_need_basic_split"). - `--override_config_path`: Used to override the example configurations with custom config. - `--num_samples`: Number of samples to generate (default: 1_024). - `--output_dir`: File path to override the default output output file path with. @@ -75,7 +75,7 @@ poetry run python sciphi/examples/data_generation/runner.py --provider_name=open ### Stock data configs - `evol_instruct` - A config for replicating the EvolInstruct dataset -- `textbooks_are_all_you_need` - A config for replicating the Python textbook data from Textbooks Are All You Need [2] +- `textbooks_are_all_you_need_basic_split` - A config for replicating the Python textbook data from Textbooks Are All You Need [2] ### Example generated data Screenshot 2023-09-17 at 11 11 18 PM diff --git a/sciphi/config/config.py b/sciphi/config/config.py index 6c7d89c..734325b 100644 --- a/sciphi/config/config.py +++ b/sciphi/config/config.py @@ -25,7 +25,6 @@ def __init__( self.config = yaml.safe_load(file) self.main_path = os.path.dirname(main_config_path) self.generator_mode: str = self.config.pop(generator_mode_field) - # Unpack the prompt config self.prompt_templates: dict[str, int] = self.config.pop( prompt_templates_field @@ -76,7 +75,10 @@ def _load_configs(self) -> None: entry = sub_config[key] # Unroll dependencies (only single layers are supported now) - if key in self.prompt_template_input_dependencies: + if ( + self.prompt_template_input_dependencies + and key in self.prompt_template_input_dependencies + ): entry = entry[ self.prompt_template_input_dependencies[key] ] diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/advanced_cybersecurity_concepts.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_cybersecurity_concepts.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/advanced_cybersecurity_concepts.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_cybersecurity_concepts.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/advanced_mathematics_and_statistics.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_mathematics_and_statistics.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/advanced_mathematics_and_statistics.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_mathematics_and_statistics.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/advanced_python.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_python.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/advanced_python.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/advanced_python.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/basic_python.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/basic_python.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/basic_python.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/basic_python.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/cloud_computing_and_big_data.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/cloud_computing_and_big_data.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/cloud_computing_and_big_data.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/cloud_computing_and_big_data.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/cybersecurity_threats_and_defense.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/cybersecurity_threats_and_defense.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/cybersecurity_threats_and_defense.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/cybersecurity_threats_and_defense.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/emerging_data_science_techniques.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/emerging_data_science_techniques.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/emerging_data_science_techniques.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/emerging_data_science_techniques.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/extended_algorithms_and_design.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/extended_algorithms_and_design.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/extended_algorithms_and_design.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/extended_algorithms_and_design.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/foundations_of_computer_science.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/foundations_of_computer_science.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/foundations_of_computer_science.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/foundations_of_computer_science.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/intermediate_mathematics.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/intermediate_mathematics.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/intermediate_mathematics.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/intermediate_mathematics.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/intermediate_python.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/intermediate_python.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/intermediate_python.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/intermediate_python.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/introductory_mathematics.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/introductory_mathematics.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/introductory_mathematics.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/introductory_mathematics.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/main.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/main.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/main.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/main.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/mathematical_python.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/mathematical_python.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/mathematical_python.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/mathematical_python.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/mobile_application_development.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/mobile_application_development.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/mobile_application_development.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/mobile_application_development.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/modern_computing_concepts.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/modern_computing_concepts.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/modern_computing_concepts.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/modern_computing_concepts.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/pure_mathematics.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/pure_mathematics.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/pure_mathematics.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/pure_mathematics.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/python_for_gaming.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_gaming.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/python_for_gaming.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_gaming.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/python_for_networking.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_networking.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/python_for_networking.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_networking.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/python_for_practitioners.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_practitioners.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/python_for_practitioners.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/python_for_practitioners.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/software_design_patterns.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/software_design_patterns.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/software_design_patterns.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/software_design_patterns.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need/web_development_founations.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/web_development_founations.yaml similarity index 100% rename from sciphi/data/stock_config/textbooks_are_all_you_need/web_development_founations.yaml rename to sciphi/data/stock_config/textbooks_are_all_you_need_basic_split/web_development_founations.yaml diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_grade_school.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_grade_school.yaml new file mode 100644 index 0000000..ec89898 --- /dev/null +++ b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_grade_school.yaml @@ -0,0 +1,33078 @@ +# prompt +# "Here is the title of a course: {title}\nMake this title more specific. Include one specific tool, technology, or concept that is not mentioned in the title. Include up to 5 variations. WRITE ONLY TITLES, EACH SEPARATED BY ONE NEW LINE.": 1 + +title: + "7th Grade History: The Rise and Fall of Empires - The Role of Gunpowder": 1 + "The Impact of Navigation Tools on the Rise and Fall of Empires: A 7th Grade History Course": 1 + "7th Grade History: Analyzing Empires through the Lens of the Printing Press": 1 + "The Influence of Agriculture on the Rise and Fall of Empires: A 7th Grade History Perspective": 1 + "7th Grade History: The Rise and Fall of Empires - Understanding Through Architecture": 1 + "The Role of the Wheel in the Rise and Fall of Empires: A 7th Grade History Course": 1 + "7th Grade History: The Influence of Currency on the Rise and Fall of Empires": 1 + "Understanding the Rise and Fall of Empires with the Concept of Trade: A 7th Grade History Course": 1 + "7th Grade History: The Rise and Fall of Empires - A Look at Metalwork Technology": 1 + "The Influence of Aqueducts on the Rise and Fall of Empires: A 7th Grade History Course": 1 + "3rd Grade Social Studies: Native American Cultures & Puebloan Pottery Techniques": 1 + "3rd Grade Social Studies: Native American Cultures & Iroquois Confederacy Systems": 1 + "3rd Grade Social Studies: Navajo Weaving in Native American Cultures": 1 + "3rd Grade Social Studies: Native American Cultures & The Art of Totem Pole Carving": 1 + "3rd Grade Social Studies: The Role of Corn Cultivation in Native American Cultures": 1 + "3rd Grade Social Studies: Native American Cultures & The Importance of Buffalo Hunting": 1 + "3rd Grade Social Studies: Native American Cultures & Ancestral Puebloans’ Cliff Dwellings": 1 + "3rd Grade Social Studies: Native American Cultures & Plains Indians’ Horse Culture": 1 + "3rd Grade Social Studies: Inuit Cultures & Igloo Construction in Native American Studies": 1 + "3rd Grade Social Studies: Native American Cultures & The Canoe Crafting of the Tlingit Tribe": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations Through The Lens of Pyramids": 1 + "Journey through Ancient Civilizations: The Impact of The Wheel in 6th Grade Social Studies": 1 + "6th Grade Social Studies: Unearthing Ancient Civilizations Through Pottery": 1 + "Ancient Civilizations’ Art: A 6th Grade Social Studies Perspective": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations via Hieroglyphics": 1 + "The Role of Agriculture in Ancient Civilizations: A 6th Grade Social Studies Course": 1 + "6th Grade Social Studies: Journey Through Ancient Civilizations with Bronze Age Tools": 1 + "Ancient Civilizations and Their Architectural Marvels: A 6th Grade Social Studies Course": 1 + "6th Grade Social Studies: Navigating Ancient Civilizations Through Star Gazing": 1 + "Journey through Ancient Civilizations: The Significance of Fire in 6th Grade Social Studies.": 1 + "9th Grade Social Studies: American Revolution and the Impact of Printing Press": 1 + "The Role of Gunpowder in the American Revolution: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: American Revolution and the Influence of the Spinning Jenny": 1 + "American Revolution & The Telegraph: A 9th Grade Social Studies Perspective": 1 + "9th Grade Social Studies: The American Revolution and The Role of Naval Warfare": 1 + "Exploring the Impact of the Cotton Gin in the American Revolution: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The Influence of Railroads on the American Revolution": 1 + "American Revolution and the Importance of Steam Power: A 9th Grade Social Studies Focus": 1 + "9th Grade Social Studies: The American Revolution through the Lens of the Sewing Machine": 1 + "A 9th Grade Social Studies Course: The American Revolution and the Impact of the Telegraph.": 1 + "5th Grade Science: Exploring Space and the Solar System through Telescopes": 1 + "5th Grade Science: Examining the Solar System with Satellite Imagery": 1 + "5th Grade Science: Exploring Space and the Solar System using the Hubble Space Telescope": 1 + "5th Grade Science: Understanding the Solar System through the Concept of Gravity": 1 + "5th Grade Science: Space Exploration and the Solar System with the Help of Rockets": 1 + "5th Grade Science: Investigating the Solar System and Space through Astronautics ": 1 + "5th Grade Science: Insight into Space and the Solar System with the Use of Radio Telescopes": 1 + "5th Grade Science: Studying the Solar System and Space through the Principle of Light Speed": 1 + "5th Grade Science: Delving into the Solar System and Space with the Mars Rover": 1 + "5th Grade Science: Probing Space and the Solar System using the Voyager Spacecraft": 1 + "5th Grade Science: Understanding Ecosystems Through Microscope Exploration": 1 + "5th Grade Science: Deciphering the Role of Photosynthesis in Ecosystems": 1 + "5th Grade Science: Studying Ecosystem Interactions Using Simulation Software": 1 + "5th Grade Science: Uncovering Ecosystem Secrets Through Lab Experiments": 1 + "5th Grade Science: Probing Ecosystems with the Use of Digital Field Guides": 1 + "5th Grade Science: The Impact of Climate Change on Ecosystems": 1 + "5th Grade Science: Analyzing Ecosystems Through Data Collection Techniques": 1 + "5th Grade Science: Understanding Ecosystems and the Role of Biodiversity": 1 + "5th Grade Science: Exploring Ecosystems with Geographic Information Systems (GIS)": 1 + "5th Grade Science: Delving into Ecosystems with DNA Barcoding Technology": 1 + "2nd Grade Social Studies: Understanding Neighborhood Maps": 1 + "2nd Grade Social Studies: Exploring Our Community with Google Earth": 1 + "2nd Grade Social Studies: Neighborhood and Community through Virtual Reality Tours": 1 + "2nd Grade Social Studies: The Role of Technology in Our Neighborhood": 1 + "2nd Grade Social Studies: The Concept of Community Service in our Neighborhood": 1 + "2nd Grade Social Studies: Neighborhood and Community: A Study of Local Government": 1 + "2nd Grade Social Studies: Neighborhood and Community: The Impact of Transportation": 1 + "2nd Grade Social Studies: Neighborhood and Community Relationships through Social Media": 1 + "2nd Grade Social Studies: The Impact of Environmental Factors on Our Neighborhood": 1 + "2nd Grade Social Studies: Exploring Cultural Diversity in our Neighborhood and Community": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions Using Graphing Calculators": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with Virtual Math Labs": 1 + "6th Grade Mathematics: Decoding Algebraic Expressions with PEMDAS Rule": 1 + "6th Grade Mathematics: Algebraic Expressions and Equation Solving Through Microsoft Math Solver": 1 + "6th Grade Mathematics: Making Sense of Algebraic Expressions Using Mathway": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions and Linear Equations": 1 + "6th Grade Mathematics: Understanding Algebraic Expressions with Geogebra Tools": 1 + "6th Grade Mathematics: Mastering Algebraic Expressions via Khan Academy": 1 + "6th Grade Mathematics: Practical Approach to Algebraic Expressions with Real World Applications": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions - A Deep Dive into Variables and Constants.": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Abacus": 1 + "3rd Grade Elementary: Learning Multiplication with Times Tables": 1 + "3rd Grade Elementary: Exploring Multiplication Concepts with Number Lines": 1 + "3rd Grade Elementary: Multiplication Mastery with Digital Apps": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects": 1 + "3rd Grade Elementary: Multiplication Basics with Manipulative Blocks": 1 + "3rd Grade Elementary: Interactive Learning of Multiplication with Smartboards": 1 + "3rd Grade Elementary: Multiplication Practice with Flash Cards": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Whiteboard and Markers": 1 + "3rd Grade Elementary: Multiplication Foundations with Online Math Games.": 1 + "4th Grade Social Studies: Exploring Cultural Movements of the 20th Century through Photographs": 1 + "4th Grade Social Studies: Understanding 20th Century Cultural Movements through Film Analysis": 1 + "4th Grade Social Studies: The Influence of Radio on 20th Century Cultural Movements": 1 + "4th Grade Social Studies: Studying 20th Century Cultural Movements using Digital Archives": 1 + "4th Grade Social Studies: The Role of Television in Shaping 20th Century Cultural Movements": 1 + "4th Grade Social Studies: The Impact of the Internet on Cultural Movements of the 20th Century": 1 + "4th Grade Social Studies: Tracing 20th Century Cultural Movements through Pop Music": 1 + "4th Grade Social Studies: Examining 20th Century Cultural Movements through the Lens of Fashion": 1 + "4th Grade Social Studies: Mapping Cultural Movements of the 20th Century using GIS Technology": 1 + "4th Grade Social Studies: The Role of Print Media in 20th Century Cultural Movements.": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies with a Tambourine": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies through Piano Learning": 1 + "2nd Grade Music: Understanding The Rhythm of Notes and Melodies with a Metronome": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies: An Introduction to Music Software": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies - A Focus on Guitar Strumming": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies - Learning with Electronic Keyboards": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies using Drumming Techniques": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies: Exploring with Digital Audio Workstations": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies - A Journey through the Violin": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies: Discovering Sound with Synthesizers": 1 + "First Grade Environmental Studies: Our Green World Through Solar Energy": 1 + "First Grade Environmental Studies: Exploring Renewable Energy in Our Green World": 1 + "First Grade Environmental Studies: Our Green World - Understanding the Water Cycle": 1 + "First Grade Environmental Studies: Our Green World - The Role of Composting": 1 + "First Grade Environmental Studies: Our Green World - Discovering Wind Energy": 1 + "First Grade Environmental Studies: Our Green World - The Impact of Recycling": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Biodiversity": 1 + "First Grade Environmental Studies: Our Green World - The Importance of Plant Life": 1 + "First Grade Environmental Studies: Our Green World - Exploring the Carbon Cycle": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns": 1 + "First Grade Environmental Studies: Our Green World - Examining Soil Erosion": 1 + "3rd Grade Geography: Understanding Maps with Compasses": 1 + "3rd Grade Geography: Using GPS for Map Interpretation": 1 + "3rd Grade Geography: Understanding Maps and Scale Measurement": 1 + "3rd Grade Geography: Cartography and Map Reading Techniques": 1 + "3rd Grade Geography: Exploring Maps with Google Earth": 1 + "3rd Grade Geography: Understanding Maps and Geographic Information Systems (GIS)": 1 + "3rd Grade Geography: Learning Latitude and Longitude on Maps": 1 + "3rd Grade Geography: Navigating with Maps and Orienteering Techniques": 1 + "3rd Grade Geography: Understanding Maps and Topographic Symbols": 1 + "3rd Grade Geography: Interactive Map Learning with Augmented Reality": 1 + "2nd Grade Social Studies: Exploring Communities with Google Earth": 1 + "2nd Grade Social Studies: Understanding Communities through Historical Maps": 1 + "2nd Grade Social Studies: Journey through Communities with Virtual Reality": 1 + "2nd Grade Social Studies: Tracing Communities with GPS Technology": 1 + "2nd Grade Social Studies: Analyzing Communities through Population Density": 1 + "2nd Grade Social Studies: Journey through Communities using Augmented Reality": 1 + "2nd Grade Social Studies: Studying Communities with Census Data": 1 + "2nd Grade Social Studies: Journey through Communities with Time-Lapse Photography": 1 + "2nd Grade Social Studies: Exploring Communities through Cultural Artifacts": 1 + "2nd Grade Social Studies: Journey through Communities using Geographic Information Systems (GIS)": 1 + "Fifth Grade Social Studies: The American Revolution and the Role of Printing Press": 1 + "Fifth Grade Social Studies: The American Revolution; Focus on Naval Technology": 1 + "The American Revolution in Fifth Grade Social Studies: The Impact of Rifles": 1 + "Fifth Grade Social Studies: The American Revolution; Understanding the Use of Cannons": 1 + "Fifth Grade Social Studies: The American Revolution; A Deep Dive into Espionage Techniques": 1 + "Fifth Grade Social Studies: The American Revolution through the Lens of Cartography": 1 + "Fifth Grade Social Studies: The Impact of Advancements in Military Tactics during the American Revolution": 1 + "Fifth Grade Social Studies: Exploring the American Revolution with the Telegraph": 1 + "The American Revolution in Fifth Grade Social Studies: The Influence of Propaganda": 1 + "Fifth Grade Social Studies: The American Revolution and the Emergence of Postal Systems": 1 + "6th Grade Physical Education: Fundamental Sports Skills with Volleyball Focus": 1 + "6th Grade Physical Education: Fundamental Sports Skills using Fitness Trackers": 1 + "6th Grade Physical Education: Fundamental Sports Skills and Basketball Techniques": 1 + "6th Grade Physical Education: Fundamental Sports Skills leveraging Video Analysis Technology": 1 + "6th Grade Physical Education: Fundamental Sports Skills incorporating Soccer Drills": 1 + "6th Grade Physical Education: Fundamental Sports Skills with a focus on Baseball Batting Techniques": 1 + "6th Grade Physical Education: Fundamental Sports Skills and the use of Heart Rate Monitors": 1 + "6th Grade Physical Education: Fundamental Sports Skills incorporating Gymnastics Essentials": 1 + "6th Grade Physical Education: Fundamental Sports Skills with a focus on Swim Stroke Mechanics": 1 + "6th Grade Physical Education: Fundamental Sports Skills using Virtual Reality for Skill Practice.": 1 + "3rd Grade Science: Exploring the Life Cycle of a Butterfly using Microscopes": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: An Overview with 3D Models": 1 + "3rd Grade Science: Life Cycle of a Butterfly: A Study using Time-Lapse Photography": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations": 1 + "3rd Grade Science: Life Cycle of a Butterfly Observed through Virtual Reality": 1 + "3rd Grade Science: Understanding the Life Cycle of a Butterfly using Augmented Reality": 1 + "3rd Grade Science: Life Cycle of a Butterfly: A Close-Up with Magnifying Glasses": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Insights from High-Speed Cameras": 1 + "3rd Grade Science: Life Cycle of a Butterfly: An Approach using Interactive Whiteboards": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: A Study with Online Learning Tools": 1 + "8th Grade Language Arts: Enhancing Writing Skills through Storyboarding": 1 + "8th Grade Language Arts: Improving Writing Through Digital Portfolios": 1 + "8th Grade Language Arts: Refining Writing Skills with Grammarly": 1 + "8th Grade Language Arts: Boosting Writing Abilities using Mind Mapping Techniques": 1 + "8th Grade Language Arts: Elevating Writing Talent through Google Docs Collaboration ": 1 + "8th Grade Language Arts: Enhancing Writing Proficiency with Microsoft Word Tools": 1 + "8th Grade Language Arts: Cultivating Writing Skills through Blogging Platforms": 1 + "8th Grade Language Arts: Advancing Writing Skills with Scrivener Software": 1 + "8th Grade Language Arts: Strengthening Writing Skills via Thesaurus Usage": 1 + "8th Grade Language Arts: Enhancing Writing Expertise through the Use of Text-to-Speech Tools.": 1 + "2nd Grade Mathematics: Mastery of Addition and Subtraction Using Abacus": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Through Flashcards": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Interactive Whiteboard Activities": 1 + "2nd Grade Mathematics: Achieving Addition and Subtraction Mastery with Number Line Method": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Using Digital Math Games": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Through Montessori Materials": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Manipulatives": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Using Mobile Math Apps": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Touch Math Technique": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Through Visual Representation Techniques": 1 + "2nd Grade Language Arts: Creative Storytelling through Puppetry": 1 + "2nd Grade Language Arts: Creative Storytelling with Digital Tools": 1 + "2nd Grade Language Arts: Creative Storytelling using Storyboarding Technique": 1 + "2nd Grade Language Arts: Creative Storytelling and Role Play": 1 + "2nd Grade Language Arts: Creative Storytelling through Animation Software": 1 + "2nd Grade Language Arts: Creative Storytelling using Interactive Whiteboards": 1 + "2nd Grade Language Arts: Creative Storytelling with Story Maps": 1 + "2nd Grade Language Arts: Creative Storytelling through Comic Strips Creation": 1 + "2nd Grade Language Arts: Creative Storytelling using 3D Printing Technology": 1 + "2nd Grade Language Arts: Creative Storytelling leveraging Augmented Reality.": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations: Focus on the Wheel": 1 + "6th Grade Social Studies: An Introduction to Ancient Civilizations and Their Irrigation Techniques": 1 + "6th Grade Social Studies: Exploring the Concept of Democracy in Ancient Civilizations": 1 + "6th Grade Social Studies: The Role of Fire in Ancient Civilizations": 1 + "6th Grade Social Studies: Discovering Ancient Civilizations Through the Lens of Pottery": 1 + "6th Grade Social Studies: Unraveling Ancient Civilizations with the Art of Mummification": 1 + "6th Grade Social Studies: Ancient Civilizations and the Development of the Alphabet": 1 + "6th Grade Social Studies: An Introduction to Ancient Civilizations and Their Use of Astronomy": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations Through the Concept of Trade and Commerce": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with Mind Maps": 1 + "4th Grade Language Arts: Mastering Paragraph Writing using Google Docs": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with the Power of Storyboarding": 1 + "4th Grade Language Arts: Mastering Paragraph Writing using Interactive Whiteboards": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with Grammarly Tool": 1 + "4th Grade Language Arts: Mastering Paragraph Writing using the Concept of Peer Editing": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with the Use of iPads": 1 + "4th Grade Language Arts: Mastering Paragraph Writing using Microsoft Word": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with the Help of Outlining Techniques": 1 + "4th Grade Language Arts: Mastering Paragraph Writing using the Concept of Thematic Units": 1 + "4th Grade Music: Introduction to Rhythm and Melody using Percussion Instruments": 1 + "4th Grade Music: Basics of Rhythm and Melody with Piano": 1 + "4th Grade Music: Learning Rhythm and Melody through Guitar Strumming": 1 + "Exploring Rhythm and Melody in 4th Grade Music using Music Software": 1 + "4th Grade Music: Basics of Rhythm and Melody via Interactive Music Apps": 1 + "4th Grade Music: Understanding Rhythm and Melody through Digital Music Production": 1 + "4th Grade Music: Basics of Rhythm and Melody with Electronic Keyboards": 1 + "4th Grade Music: Rhythm and Melody Basics using Smart Instruments": 1 + "4th Grade Music: Discovering Rhythm and Melody with Wind Instruments": 1 + "4th Grade Music: Basics of Rhythm and Melody Using the Concept of Tempo.": 1 + "7th Grade Language Arts: Reading and Analyzing Environmental Literature using Kindle E-readers": 1 + "7th Grade Language Arts: Exploring Environmental Literature through Google Docs": 1 + "7th Grade Language Arts: Deciphering Environmental Literature with Annotation Tools": 1 + "7th Grade Language Arts: Reading and Analyzing Environmental Literature via Digital Libraries": 1 + "7th Grade Language Arts: Analyzing Environmental Literature through Mind Mapping Concepts": 1 + "7th Grade Language Arts: Understanding Environmental Literature with Text-to-Speech Software": 1 + "7th Grade Language Arts: Breaking Down Environmental Literature using the SQ3R Reading Strategy": 1 + "7th Grade Language Arts: Reading and Analyzing Environmental Literature with Audiobook Technology": 1 + "7th Grade Language Arts: Exploring Environmental Literature through Interactive E-books": 1 + "7th Grade Language Arts: Analyzing Environmental Literature using the Jigsaw Classroom Technique": 1 + "6th Grade Social Studies: The Ancient Civilizations and the use of Wheel": 1 + "Exploration of Ancient Civilizations: 6th Grade Social Studies with focus on Pyramids": 1 + "6th Grade Social Studies: The Ancient Civilizations & The Invention of Writing": 1 + "Ancient Civilizations in 6th Grade Social Studies: A Look at Irrigation Systems": 1 + "6th Grade Social Studies: Ancient Civilizations’ Pottery Techniques": 1 + "Studying Ancient Civilizations: 6th Grade Social Studies and the Concept of Democracy": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Metallurgy": 1 + "The Ancient Civilizations in 6th Grade Social Studies: An Introduction to the Abacus": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Evolution of Tools": 1 + "The Ancient Civilizations: 6th Grade Social Studies focusing on the Development of Agriculture": 1 + "3rd Grade Music: Understanding Rhythm through Hand Drums": 1 + "3rd Grade Music: Exploring Rhythm with a Metronome": 1 + "3rd Grade Music: Mastering Rhythm by Using a Digital Drum Pad": 1 + "3rd Grade Music: Understanding Rhythm through Beatboxing Techniques": 1 + "3rd Grade Music: Learning Rhythm with Interactive Music Software": 1 + "3rd Grade Music: Grasping Rhythm with Electronic Synthesizers": 1 + "3rd Grade Music: Discovering Rhythm through Tap Dancing": 1 + "3rd Grade Music: Unveiling Rhythm with Piano Roll Editors": 1 + "3rd Grade Music: Understanding Rhythm through Percussion Instruments": 1 + "3rd Grade Music: Decoding Rhythm with Music Sequencer Technology": 1 + "11th Grade History: The Role of Steam Engines in Industrialization’s Impact on Nature": 1 + "11th Grade History: The Role of Coal Mining in Industrialization’s Effect on the Environment": 1 + "11th Grade History: The Impact of Industrialization on Nature: A Focus on Steam Power ": 1 + "11th Grade History: The Impact of Textile Factories on the Natural World during the Industrial Revolution": 1 + "11th Grade History: The Environmental Consequences of the Introduction of Railways during Industrialization": 1 + "11th Grade History: The Impact of Steel Production on Nature during the Industrial Age": 1 + "11th Grade History: The Effect of the Telegraph on Nature during the Industrial Revolution": 1 + "11th Grade History: The Impact of Industrialization on Nature: A Case Study of Cotton Mills": 1 + "11th Grade History: The Impact of the Spinning Jenny on the Environment during the Industrial Revolution": 1 + "11th Grade History: The Influence of the Power Loom on Nature during the Industrialization Era": 1 + "4th Grade Social Studies: Exploring the United States of America Through Interactive Maps": 1 + "4th Grade Social Studies: The United States of America and its Constitution": 1 + "4th Grade Social Studies: A Journey Through the USA’s Civil War Era": 1 + "4th Grade Social Studies: Understanding the United States of America Through Virtual Reality": 1 + "4th Grade Social Studies: The United States of America’s Industrial Revolution": 1 + "4th Grade Social Studies: The United States of America’s Geographic Diversity with GIS Tools": 1 + "4th Grade Social Studies: The United States of America’s Impact on Globalization": 1 + "4th Grade Social Studies: The United States of America’s Democracy - A Deep Dive": 1 + "4th Grade Social Studies: Augmented Reality Exploration of USA’s Landmarks": 1 + "4th Grade Social Studies: The United States of America’s Migration Patterns with Data Analysis.": 1 + "6th Grade Art: Pencil Sketching Basics": 1 + "6th Grade Art: The Fundamentals of Charcoal Drawing": 1 + "6th Grade Art: Mastering Shading and Light in Drawing": 1 + "6th Grade Art: Introduction to Digital Drawing Tools": 1 + "6th Grade Art: Exploring Proportions in Drawing": 1 + "6th Grade Art: The Basics of Using Pastels in Drawing": 1 + "6th Grade Art: Understanding Perspective in Drawing": 1 + "6th Grade Art: Learning to Draw with Graphite": 1 + "6th Grade Art: Using Watercolor Pencils in Drawing": 1 + "6th Grade Art: The Fundamentals of Drawing with Markers": 1 + "4th Grade History: Exploring Early American History through Pottery": 1 + "4th Grade History: Navigation Tools in Early American History": 1 + "4th Grade History: The Role of Printing Press in Early American History": 1 + "4th Grade History: Exploring Early American History through Agriculture": 1 + "4th Grade History: Understanding Early American History through Architecture": 1 + "4th Grade History: Early American History: Focus on the Spinning Wheel": 1 + "4th Grade History: Early American History and the Impact of the Rifle": 1 + "4th Grade History: Exploration of Early American History through Shipbuilding": 1 + "4th Grade History: Early American History: The Influence of the Cotton Gin": 1 + "4th Grade History: Study of Early American History through the Lens of the Telegraph": 1 + "2nd Grade Mathematics: Exploring Multiplication with Counting Blocks": 1 + "2nd Grade Mathematics: Fun with Multiplication Through Interactive Whiteboards": 1 + "2nd Grade Mathematics: Multiplication Mastery using the Montessori Method": 1 + "2nd Grade Mathematics: Visualizing Multiplication with Physical Manipulatives": 1 + "2nd Grade Mathematics: Multiplying Numbers using Digital Learning Apps": 1 + "2nd Grade Mathematics: Fun with Multiplication and Times Tables": 1 + "2nd Grade Mathematics: Practical Multiplication with Lego Blocks": 1 + "2nd Grade Mathematics: Learning Multiplication with Abacus": 1 + "2nd Grade Mathematics: Multiplication Fun with Smartboard Games": 1 + "2nd Grade Mathematics: Exploring Multiplication Concepts with iPad Apps": 1 + "2nd Grade Music: Introduction to Rhythm with Hand Drums": 1 + "2nd Grade Music: Exploring Rhythm through Percussion Instruments": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes": 1 + "2nd Grade Music: Foundations of Rhythm with Digital Music Software": 1 + "2nd Grade Music: Learning Rhythm through Piano": 1 + "2nd Grade Music: Rhythm Basics with a Tambourine": 1 + "2nd Grade Music: Understanding Rhythm using Beatboxing Techniques": 1 + "2nd Grade Music: Rhythm Foundations Explored via Music Apps": 1 + "2nd Grade Music: Rhythm Development with Interactive Music Games": 1 + "2nd Grade Music: Rhythm Essentials using a Drum Machine": 1 + "2nd Grade Social Studies: Exploring Local Community Appreciation Through Storytelling": 1 + "2nd Grade Social Studies: Understanding Local Community Appreciation With Digital Maps": 1 + "2nd Grade Social Studies: Local Community Appreciation Through Historical Artifacts Study": 1 + "2nd Grade Social Studies: Local Community Appreciation Using Interactive Timelines": 1 + "2nd Grade Social Studies: Fostering Local Community Appreciation Through Virtual Field Trips": 1 + "2nd Grade Social Studies: Local Community Appreciation - An Introduction to Census Data": 1 + "2nd Grade Social Studies: Studying Local Community Appreciation Through Interviews": 1 + "2nd Grade Social Studies: Local Community Appreciation via Community Service Projects": 1 + "2nd Grade Social Studies: Local Community Appreciation Through Augmented Reality Exploration": 1 + "2nd Grade Social Studies: Local Community Appreciation Using Web-Based Research Tools": 1 + "5th Grade Mathematics: Mastering Fractions with the Aid of Number Lines": 1 + "5th Grade Mathematics: Unraveling Fractions through Interactive Software": 1 + "5th Grade Mathematics: Learning Fractions via Fraction Bars": 1 + "5th Grade Mathematics: Deconstructing Fractions Using Virtual Manipulatives": 1 + "5th Grade Mathematics: Grasping Fractions through the Concept of Ratio": 1 + "5th Grade Mathematics: Fraction Comprehension Leveraging Fraction Circles": 1 + "5th Grade Mathematics: Understanding Fractions with Fraction Decimal Percent Tiles": 1 + "5th Grade Mathematics: Exploring Fractions through the Use of Fraction Strips": 1 + "5th Grade Mathematics: Fraction Simplification Utilizing the Greatest Common Factor": 1 + "5th Grade Mathematics: Fraction Comparison with LCM - Understanding the Basics.": 1 + "6th Grade Mathematics: Understanding Algebraic Expressions Using Mathway and Pythagorean Theorem": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with Mathway and Graphing Calculators": 1 + "6th Grade Mathematics: Deciphering Algebraic Expressions Using Mathway and Linear Equations": 1 + "6th Grade Mathematics: Interpreting Algebraic Expressions with Mathway and Quadratic Equations": 1 + "6th Grade Mathematics: Grasping Algebraic Expressions Through Mathway and Geometric Sequences": 1 + "6th Grade Mathematics: Navigating Algebraic Expressions with Mathway and Scientific Calculators": 1 + "6th Grade Mathematics: Mastering Algebraic Expressions Using Mathway and Fractions": 1 + "6th Grade Mathematics: Analyzing Algebraic Expressions with Mathway and Probability": 1 + "6th Grade Mathematics: Deconstructing Algebraic Expressions Using Mathway and Ratios": 1 + "6th Grade Mathematics: Simplifying Algebraic Expressions with Mathway and Exponents": 1 + "1st Grade Science: The Basics of Recycling with Paper-Making Activity": 1 + "1st Grade Science: Understanding Recycling through Interactive Sorting Games": 1 + "1st Grade Science: Exploring Recycling with Composting Projects": 1 + "1st Grade Science: Learning Recycling through Virtual Reality Field Trips": 1 + "1st Grade Science: Introductory Lesson on Recycling using Eco-Bricks": 1 + "1st Grade Science: Investigating Recycling with DIY Trash-to-Treasure Crafts": 1 + "1st Grade Science: Discovering Recycling through Plastic Bottle Greenhouse Project": 1 + "1st Grade Science: Engaging in Recycling with Mobile Apps": 1 + "1st Grade Science: Embracing Recycling through Waste Audit Activities": 1 + "1st Grade Science: Studying Recycling through Augmented Reality Bin Sorting Game": 1 + "1st Grade Science: Encouraging Recycling with Upcycling Art Projects": 1 + "8th Grade History: The Invention of the Printing Press during the Renaissance Era in Europe": 1 + "8th Grade History: The Role of Linear Perspective in Renaissance Era Art": 1 + "8th Grade History: The Exploration of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Impact of the Compass in the Renaissance Era in Europe": 1 + "8th Grade History: The Renaissance Era: The Evolution of the Scientific Method in Europe": 1 + "8th Grade History: The Use of the Astrolabe during the Renaissance Era in Europe": 1 + "8th Grade History: The Renaissance Era: Advancements in Architecture in Europe": 1 + "8th Grade History: The Rise of Humanism during the Renaissance Era in Europe": 1 + "8th Grade History: The Renaissance Era: The Introduction of Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Influence of Gunpowder during the Renaissance Era in Europe.": 1 + "4th Grade Science: Exploring Basic Principles of Ecology through Microscopes": 1 + "4th Grade Science: Studying Ecosystems and Food Chains in Basic Ecology": 1 + "4th Grade Science: Understanding Basic Ecology Principles with Fieldwork": 1 + "4th Grade Science: Basic Principles of Ecology using Interactive Software": 1 + "4th Grade Science: Basic Principles of Ecology - The Role of Photosynthesis": 1 + "4th Grade Science: Investigating Basic Principles of Ecology with Lab Experiments": 1 + "4th Grade Science: Basic Principles of Ecology and Energy Flow in Ecosystems": 1 + "4th Grade Science: Basic Principles of Ecology - Biotic and Abiotic Factors": 1 + "4th Grade Science: Basic Principles of Ecology: Understanding Habitats using Topographic Maps": 1 + "4th Grade Science: Basic Principles of Ecology - Exploring Biodiversity with Binoculars": 1 + "4th Grade History: The First American Settlers and the Use of Flint Tools": 1 + "Fourth Grade History: The Arrival of the First American Settlers and the Advent of Farming": 1 + "4th Grade History: The First American Settlers - Understanding the Role of the Wheel": 1 + "4th Grade History: The First American Settlers and their Use of Fire": 1 + "Fourth Grade History: The First American Settlers - Introduction to Pottery Making": 1 + "4th Grade History: The First American Settlers - Exploring the Concept of Trading": 1 + "4th Grade History: The First American Settlers - The Importance of Hunting Tools": 1 + "Fourth Grade History: The Role of the Canoe in the Journey of the First American Settlers": 1 + "4th Grade History: The First American Settlers - Discovering the Use of the Bow and Arrow": 1 + "Fourth Grade History: The First American Settlers and their Understanding of Astronomy": 1 + "5th Grade Language Arts: Enhancing Vocabulary Skills through Interactive Flashcards": 1 + "5th Grade Language Arts: Strengthening Vocabulary using Digital Word Games": 1 + "5th Grade Language Arts: Augmenting Vocabulary Skills with Spelling Bees": 1 + "5th Grade Language Arts: Enhancing Vocabulary through Storytelling Techniques": 1 + "5th Grade Language Arts: Vocabulary Building using Scrabble Game": 1 + "5th Grade Language Arts: Vocabulary Enhancement with E-Books": 1 + "5th Grade Language Arts: Boosting Vocabulary Skills via Online Quizzes": 1 + "5th Grade Language Arts: Vocabulary Improvement with Audiobook Tools": 1 + "5th Grade Language Arts: Amplifying Vocabulary Skills through Poetry Writing ": 1 + "5th Grade Language Arts: Developing Vocabulary using Thesaurus Exploration.": 1 + "5th Grade Mathematics: Exploring Fractions with Fraction Decimal Percent Tiles and Interactive Whiteboard": 1 + "5th Grade Mathematics: Unveiling Fractions using Fraction Decimal Percent Tiles and Virtual Manipulatives": 1 + "5th Grade Mathematics: Mastering Fractions with Fraction Decimal Percent Tiles and Computer Software": 1 + "5th Grade Mathematics: Learning Fractions through Fraction Decimal Percent Tiles and Online Games": 1 + "5th Grade Mathematics: Grasping Fractions with Fraction Decimal Percent Tiles and Tablet Apps": 1 + "5th Grade Mathematics: Discovering Fractions with Fraction Decimal Percent Tiles and Digital Worksheets": 1 + "5th Grade Mathematics: Understanding Fractions through Fraction Decimal Percent Tiles and Online Tutorials": 1 + "5th Grade Mathematics: Comprehending Fractions with Fraction Decimal Percent Tiles and Educational Websites": 1 + "5th Grade Mathematics: Deciphering Fractions with Fraction Decimal Percent Tiles and Smart Board ": 1 + "5th Grade Mathematics: Analyzing Fractions with Fraction Decimal Percent Tiles and Distance Learning Platforms": 1 + "1st Grade Art: Exploring Colors and Shapes Through Watercolor Painting": 1 + "1st Grade Art: An Introduction to Colors and Shapes Using Digital Art Platforms": 1 + "1st Grade Art: Understanding Colors and Shapes with Collage Techniques": 1 + "1st Grade Art: Discovering Colors and Shapes Through 3D Modeling": 1 + "1st Grade Art: Introduction to Colors and Shapes with Clay Sculpting": 1 + "1st Grade Art: Learning Colors and Shapes Through Marker Illustrations": 1 + "1st Grade Art: Introduction to Colors and Shapes Using Pastel Drawing": 1 + "1st Grade Art: Studying Colors and Shapes Through Origami Art": 1 + "1st Grade Art: Introduction to Colors and Shapes with Acrylic Painting": 1 + "1st Grade Art: Grasping Colors and Shapes Through Printmaking Techniques": 1 + "2nd Grade Science: Understanding Weather Patterns through Thermometers": 1 + "2nd Grade Science: Analyzing Weather Patterns Using Barometers": 1 + "2nd Grade Science: An Introduction to Rain Gauges in Weather Pattern Studies": 1 + "2nd Grade Science: Exploring Weather Patterns with Wind Vanes": 1 + "2nd Grade Science: Learning Weather Patterns through Hygrometers": 1 + "2nd Grade Science: Decoding Weather Patterns Using Weather Maps": 1 + "2nd Grade Science: Exploring Weather Patterns with Weather Satellites": 1 + "2nd Grade Science: Understanding the Role of Radar in Weather Pattern Analysis": 1 + "2nd Grade Science: An In-depth Look at Weather Patterns through Weather Balloons": 1 + "2nd Grade Science: Exploring Weather Patterns Using the Concept of Air Pressure": 1 + "7th Grade Science: Understanding the Physics of Roller Coasters using Newton’s Laws": 1 + "7th Grade Science: Roller Coaster Physics and the Application of Kinetic Energy": 1 + "7th Grade Science: The Role of Friction in Roller Coaster Physics": 1 + "7th Grade Science: Exploring Roller Coaster Physics using Computer Simulation": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity": 1 + "7th Grade Science: The Physics of Roller Coasters and the Importance of Momentum": 1 + "7th Grade Science: Studying Roller Coaster Physics with Velocity Calculations": 1 + "7th Grade Science: Physics of Roller Coasters - The Principle of Conservation of Energy": 1 + "7th Grade Science: Roller Coaster Physics and The Forces at Work": 1 + "7th Grade Science: Understanding Roller Coaster Physics using Acceleration Concepts": 1 + "8th Grade Social Studies: Exploring Ancient Egyptian Hieroglyphics": 1 + "8th Grade Social Studies: The Role of the Wheel in Ancient Civilizations": 1 + "8th Grade Social Studies: Irrigation Techniques in Ancient Mesopotamia": 1 + "8th Grade Social Studies: Studying the Phalanx Formation in Ancient Greece": 1 + "8th Grade Social Studies: The Importance of Aqueducts in Ancient Rome": 1 + "8th Grade Social Studies: Unraveling the Mystery of the Mayan Calendar": 1 + "8th Grade Social Studies: The Art of Papermaking in Ancient China": 1 + "8th Grade Social Studies: Bronze Metallurgy in the Ancient Indus Valley": 1 + "8th Grade Social Studies: The Influence of the Ziggurat in Sumerian Society": 1 + "8th Grade Social Studies: Deciphering the Code of Hammurabi in Ancient Babylonia": 1 + "1st Grade Science: Investigating Plant and Animal Cells with Microscopes": 1 + "1st Grade Science: Comparing Rocks and Minerals with a Geology Kit": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building": 1 + "1st Grade Science: Observing Insects with Magnifying Glasses": 1 + "1st Grade Science: Exploring Solar System with Augmented Reality Tech": 1 + "1st Grade Science: Learning about Photosynthesis with Plant Growing Kits": 1 + "1st Grade Science: Discovering Weather Patterns with Home Weather Stations": 1 + "1st Grade Science: Studying Physical and Chemical Changes with Science Lab Kits": 1 + "1st Grade Science: Examining Animal Adaptations with Interactive Software": 1 + "1st Grade Science: Investigating Water Cycle with Evaporation Experiments": 1 + "6th Grade Physical Education: Introduction to Volleyball Techniques with Training Cones": 1 + "6th Grade Physical Education: Learning Basketball Tactics Using Virtual Reality Technology": 1 + "6th Grade Physical Education: Basics of Cricket with Batting Techniques": 1 + "6th Grade Physical Education: Understanding Football Positions Using Interactive Whiteboard": 1 + "6th Grade Physical Education: Rugby Basics and Strategies with Training Dummies": 1 + "6th Grade Physical Education: Exploring Tennis Skills Using Ball Machines": 1 + "6th Grade Physical Education: Fundamentals of Baseball with Pitching Machines": 1 + "6th Grade Physical Education: Basics of Hockey Using Stick Handling Techniques": 1 + "6th Grade Physical Education: Introduction to Lacrosse Tactics with Agility Ladders.": 1 + "2nd Grade Science: Exploring Animal Habitats with Microscopes": 1 + "Interactive 2nd Grade Science: Animal Habitats and Digital Observation ": 1 + "2nd Grade Science: Animal Habitats Studied Through Virtual Reality": 1 + "2nd Grade Science: Animal Habitats and Data Collection Techniques": 1 + "2nd Grade Science: Understanding Animal Habitats Through GPS Tracking": 1 + "2nd Grade Science: Animal Habitats and the Use of Digital Field Guides": 1 + "2nd Grade Science: Animal Habitats Explored Through Augmented Reality": 1 + "2nd Grade Science: Animal Habitats and Infrared Cameras in Wildlife Tracking": 1 + "2nd Grade Science: Animal Habitats - An Introduction to Scientific Databases ": 1 + "2nd Grade Science: Animal Habitats and the Use of Environmental Sensors": 1 + "5th Grade Science: Exploring Ecosystems Using Microscopes": 1 + "5th Grade Science: Understanding Ecosystems Through Food Chains": 1 + "5th Grade Science: Probing Ecosystems with pH Tests": 1 + "5th Grade Science: Introduction to Ecosystems and the Role of Decomposers": 1 + "5th Grade Science: Investigating Ecosystems Through Soil Analysis": 1 + "5th Grade Science: Ecosystems and Climate Change: A Study": 1 + "5th Grade Science: Examining Ecosystems Through Water Quality Testing": 1 + "5th Grade Science: Ecosystems and Biodiversity: An In-depth Study": 1 + "5th Grade Science: Ecosystems: Understanding Energy Flow and Trophic Levels": 1 + "5th Grade Science: An Exploration of Ecosystems Through Biomes": 1 + "9th Grade Social Studies: Analyzing World War II through the Lens of Political Cartography": 1 + "9th Grade Social Studies: Understanding World War II through Cryptography": 1 + "9th Grade Social Studies: The Role of Radar Technology in World War II": 1 + "9th Grade Social Studies: World War II - Impact of Propaganda Techniques": 1 + "9th Grade Social Studies: Concentration Camps - A Detailed Study in World War II": 1 + "9th Grade Social Studies: World War II - The Turning Point of Nuclear Power": 1 + "9th Grade Social Studies: The Influence of Aircraft Technology in World War II": 1 + "9th Grade Social Studies: World War II - Decoding the Enigma Machine": 1 + "9th Grade Social Studies: The Role of Radio Communication in World War II": 1 + "9th Grade Social Studies: World War II - Strategic Use of Submarine Warfare": 1 + "7th Grade Social Studies: Exploring Ancient Civilizations through Hieroglyphics": 1 + "7th Grade Social Studies: Understanding Ancient Civilizations through the Lens of Pottery": 1 + "7th Grade Social Studies: Decoding Ancient Civilizations with Astronomy": 1 + "7th Grade Social Studies: Investigating Ancient Civilizations using Bronze Age Tools": 1 + "7th Grade Social Studies: Unraveling Ancient Civilizations with the Concept of Trade": 1 + "7th Grade Social Studies: Understanding Ancient Civilizations through the Use of Agriculture": 1 + "7th Grade Social Studies: Discovering Ancient Civilizations with the Invention of the Wheel": 1 + "7th Grade Social Studies: Unlocking Ancient Civilizations through the Study of Aqueducts": 1 + "7th Grade Social Studies: Unveiling Ancient Civilizations with the Art of War Strategies": 1 + "7th Grade Social Studies: Analyzing Ancient Civilizations through the Influence of Religion": 1 + "1st Grade Music: Introduction to Rhythm with Hand Percussions": 1 + "1st Grade Music: Exploring Rhythm through Drumming": 1 + "1st Grade Music: Rhythm Basics using Metronomes": 1 + "1st Grade Music: Discovering Rhythm with Maracas": 1 + "1st Grade Music: Introduction to Rhythm and Tempo with Beat Blocks": 1 + "1st Grade Music: Rhythm Fundamentals through Clapping Games": 1 + "1st Grade Music: Understanding Rhythm with Foot Stomping Activities": 1 + "1st Grade Music: Rhythm Lessons using Electronic Beat Makers": 1 + "1st Grade Music: Rhythm Introduction through Song and Dance ": 1 + "1st Grade Music: Learning Rhythm with Xylophones": 1 + "4th Grade Geography: Exploring United States Regions with Interactive Maps": 1 + "4th Grade Geography: The Use of Digital Tools in Studying United States Regions": 1 + "4th Grade Geography: Studying the United States Regions through Virtual Field Trips": 1 + "4th Grade Geography: Understanding United States Regions with GIS (Geographic Information System)": 1 + "4th Grade Geography: Studying the United States Regions Using Augmented Reality": 1 + "4th Grade Geography: Immersive Study of United States Regions through VR Technology": 1 + "4th Grade Geography: Application of Satellite Imagery in Studying United States Regions": 1 + "4th Grade Geography: Studying the United States Regions via Google Earth Exploration": 1 + "4th Grade Geography: Deep Dive into United States Regions with 3D Modeling": 1 + "4th Grade Geography: Investigating United States Regions Using Climate Change Data.": 1 + "Fifth Grade History: Analyzing the American Revolution through Primary Sources": 1 + "Fifth Grade History: Exploring the American Revolution using Interactive Timelines": 1 + "Fifth Grade History: Deciphering the American Revolution with Map Studies": 1 + "Fifth Grade History: Understanding the American Revolution through Political Cartoons": 1 + "Fifth Grade History: Role-Playing Key Figures of the American Revolution": 1 + "Fifth Grade History: Investigating the American Revolution using Virtual Reality": 1 + "Fifth Grade History: Learning the American Revolution through Augmented Reality": 1 + "Fifth Grade History: Comprehending the American Revolution using Multimedia Presentations": 1 + "Fifth Grade History: Studying the American Revolution through Documentary Analysis": 1 + "Fifth Grade History: Unpacking the American Revolution with Artifact Exploration": 1 + "5th Grade Mathematics: Mastering Multiplication and Division through the Abacus": 1 + "5th Grade Mathematics: Introduction to Long Division and Multiplication Tables": 1 + "5th Grade Mathematics: Exploring Multiplication and Division with Online Tools": 1 + "5th Grade Mathematics: Understanding Division and Multiplication using Math Games": 1 + "5th Grade Mathematics: Applying Multiplication and Division Concepts in Problem-Solving": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division using Math Apps": 1 + "5th Grade Mathematics: The Fundamentals of Multiplication and Division using Grid Method": 1 + "5th Grade Mathematics: Practical Approach to Multiplication and Division using Real-world Scenarios": 1 + "5th Grade Mathematics: Understanding Multiplication and Division through Visual Representation": 1 + "5th Grade Mathematics: Exploring Multiplication and Division using Virtual Manipulatives": 1 + "3rd Grade History: Ancient Egyptian Hieroglyphs": 1 + "3rd Grade History: Ancient Roman Aqueducts": 1 + "3rd Grade History: Inventions of Ancient China": 1 + "3rd Grade History: Ancient Greek Philosophy": 1 + "3rd Grade History: Aztec Calendar System": 1 + "3rd Grade History: Architecture of Ancient Persia": 1 + "3rd Grade History: Ancient Indian Mathematics": 1 + "3rd Grade History: Babylonians Astronomical Concepts": 1 + "3rd Grade History: The Pyramids of Ancient Egypt": 1 + "3rd Grade History: Agricultural Techniques of the Mayans": 1 + "3rd Grade History: Ancient Mesopotamian Wheel Technology": 1 + "12th Grade Physical Education: Mastering Freestyle Stroke Techniques in Swimming": 1 + "12th Grade PE: Introduction to Butterfly Stroke in Swimming": 1 + "12th Grade Physical Education: Perfecting Backstroke with Swim Fins": 1 + "12th Grade Physical Education: Learning Breaststroke with Kickboards": 1 + "12th Grade PE: Swim Training with Pull Buoys": 1 + "12th Grade Physical Education: Understanding Swimming Hydration & Nutrition": 1 + "12th Grade PE: Advanced Diving Techniques": 1 + "12th Grade Physical Education: Swimming Endurance Training with Paddles": 1 + "12th Grade PE: Enhancing Swimming Speed with Snorkels": 1 + "12th Grade Physical Education: Swimming Safety & Rescue Techniques": 1 + "12th Grade PE: Swim Training: Open Water Techniques & Strategies": 1 + "8th Grade History: Revolutionary War Era - The Impact of Printing Press": 1 + "8th Grade History: Revolutionary War Era - Understanding the Role of Musket Rifles": 1 + "8th Grade History: Revolutionary War Era - The Influence of Naval Technology": 1 + "8th Grade History: Revolutionary War Era - The Concept of Guerilla Warfare ": 1 + "8th Grade History: Revolutionary War Era - Exploring the Use of Cannons": 1 + "8th Grade History: Revolutionary War Era - The Introduction of Bayonet Use": 1 + "8th Grade History: Revolutionary War Era - The Role of Espionage ": 1 + "8th Grade History: Revolutionary War Era - The Importance of Diplomacy ": 1 + "8th Grade History: Revolutionary War Era - The Effect of Postal Services": 1 + "8th Grade History: Revolutionary War Era - The Evolution of Military Uniforms": 1 + "3rd Grade Music: An Introduction to Folk Music and the Banjo": 1 + "3rd Grade Music: Discovering Folk Music through the Harmonica": 1 + "3rd Grade Music: Exploring Folk Music with the Fiddle": 1 + "3rd Grade Music: An Introduction to Folk Music and the Mandolin": 1 + "3rd Grade Music: Learning Folk Music through the Accordion": 1 + "3rd Grade Music: Understanding Folk Music with the Autoharp": 1 + "3rd Grade Music: Folk Music Basics and the Dulcimer": 1 + "3rd Grade Music: Folk Music Insights through the Concertina": 1 + "3rd Grade Music: An Insight into Folk Music and the Mouth Harp": 1 + "3rd Grade Music: An Introduction to Folk Music and the Washboard": 1 + "4th Grade Basic Astronomy: Introduction to Telescopes": 1 + "4th Grade Basic Astronomy: Exploring the Solar System": 1 + "4th Grade Basic Astronomy: Understanding Stars and Constellations": 1 + "4th Grade Basic Astronomy: Planetarium Software in Practice": 1 + "4th Grade Basic Astronomy: The Basics of Space Probes": 1 + "4th Grade Basic Astronomy: Learning about Lunar Phases": 1 + "4th Grade Basic Astronomy: The Role of Satellites in Space Exploration": 1 + "4th Grade Basic Astronomy: The Concept of Gravity in Space": 1 + "4th Grade Basic Astronomy: Understanding Comets, Asteroids, and Meteors": 1 + "4th Grade Basic Astronomy: Introduction to Astronomical Binoculars": 1 + "4th Grade Basic Astronomy: Exploring the Night Sky with Star Maps": 1 + "4th Grade Language Arts: The Adventure of Grammar and Composition with Interactive Storytelling Tools": 1 + "4th Grade Language Arts: Exploring Grammar and Composition using Google Docs": 1 + "4th Grade Language Arts: The Adventure of Grammar and Composition through PowerPoint Presentations": 1 + "4th Grade Language Arts: Unfolding Grammar and Composition with Mind Mapping Tools": 1 + "4th Grade Language Arts: The Adventure of Grammar and Composition using Digital Flashcards": 1 + "4th Grade Language Arts: Engaging in Grammar and Composition with Learning Management Systems": 1 + "4th Grade Language Arts: The Adventure of Grammar and Composition explored through Podcasts": 1 + "4th Grade Language Arts: Discovering Grammar and Composition with E-books": 1 + "4th Grade Language Arts: The Adventure of Grammar and Composition through Video Conferencing Tools": 1 + "4th Grade Language Arts: Mastering Grammar and Composition using Augmented Reality Apps": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Number Lines": 1 + "2nd Grade Mathematics: Exploration of Addition and Subtraction through Abacus ": 1 + "2nd Grade Mathematics: Discovering Addition and Subtraction with Interactive Whiteboard Games": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery using Montessori Materials": 1 + "2nd Grade Mathematics: The Journey into Addition and Subtraction using Digital Flashcards": 1 + "2nd Grade Mathematics: Understanding Addition and Subtraction through Math Manipulatives": 1 + "2nd Grade Mathematics: Addition and Subtraction Skills Development with Math Apps": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction through Smartboard Activities": 1 + "2nd Grade Mathematics: Grasping Addition and Subtraction using Virtual Reality Tools": 1 + "2nd Grade Mathematics: Addition and Subtraction Concept Building with Educational Math Videos": 1 + "3rd Grade English: Exploring Storytelling in Different Cultures Through Shadow Puppetry": 1 + "3rd Grade English: Storytelling in Different Cultures: A Focus on Digital Storyboards": 1 + "3rd Grade English: Incorporating Animation in Storytelling from Various Cultures": 1 + "3rd Grade English: Storytelling Across Cultures through Interactive Whiteboards": 1 + "3rd Grade English: Using Flipgrid for Cultural Storytelling in English Class": 1 + "3rd Grade English: Storytelling in Different Cultures: A Study Using Virtual Reality": 1 + "3rd Grade English: Integrating Story Maps in Multicultural Storytelling": 1 + "3rd Grade English: Utilizing Audio Recordings in Storytelling from Diverse Cultures": 1 + "3rd Grade English: Exploring Storytelling in Different Cultures with E-books": 1 + "3rd Grade English: Storytelling in Different Cultures: An Approach Using Podcasts": 1 + "4th Grade Geography: A Comprehensive Exploration of United States Regions Using Oculus VR and Google Earth": 1 + "4th Grade Geography: Immersive Study of US Regions with VR Technology and Interactive Quizzes": 1 + "Advanced 4th Grade Geography: Detailed Study of US Regions via VR Technology and Augmented Reality Maps": 1 + "4th Grade Geography: Immersive Study of US Regions via VR Technology and 3D Topography Tools": 1 + "4th Grade Geography: Hands-On Learning of US Regions through VR Technology and Virtual Field Trips": 1 + "4th Grade Geography: In-Depth Analysis of US Regions Using VR Technology and the Minecraft Education Edition": 1 + "4th Grade Geography: Interactive Study of US Regions through VR Technology and Real-time Weather Data": 1 + "4th Grade Geography: Experiential Learning of US Regions through VR Technology and Virtual Reality Simulation Games": 1 + "4th Grade Geography: Comprehensive Study of US Regions through VR Technology and Digital Puzzles": 1 + "4th Grade Geography: Engaging Study of US Regions using VR Technology and Augmented Reality Scavenger Hunts.": 1 + "8th Grade Music: Exploring Beethovens Symphonies Using Audio Mixing Technology": 1 + "8th Grade Music: A Deep Dive into Mozarts Operas with Digital Sheet Music": 1 + "8th Grade Music: The Art of Orchestration in Classical Music Using MIDI Sequencers": 1 + "8th Grade Music: The Influence of Bach on Baroque Music - An Examination Using Music Theory Software": 1 + "8th Grade Music: Understanding Wagners Leitmotif Technique through Audio-Visual Software": 1 + "8th Grade Music: Classical Music Composition with Digital Audio Workstations": 1 + "8th Grade Music: The Role of the Piano in Chopins Works - A Study Using Virtual Instrument Technology": 1 + "8th Grade Music: Discovering Handels Choral Works with Notation Software": 1 + "8th Grade Music: The World of Classical Music - Exploring Vivaldis Concertos with Music Production Software": 1 + "8th Grade Music: The Harmony in Haydns String Quartets - A Study Using Music Analysis Tools": 1 + "8th Grade Science: Introduction to Biology with Microscope Study": 1 + "8th Grade Science: DNA Structures in Introductory Biology": 1 + "8th Grade Science: Exploring Cell Division in Introduction to Biology": 1 + "8th Grade Science: Introduction to Biology through Genetic Engineering": 1 + "8th Grade Science: Introduction to Biology with a Focus on Photosynthesis": 1 + "8th Grade Science: Introduction to Biology - Exploring Ecosystems": 1 + "8th Grade Science: Introduction to Biology - An In-depth Look at Evolution": 1 + "8th Grade Science: Introduction to Biology with Laboratory Experiments": 1 + "8th Grade Science: Introduction to Biology - A Study on Human Anatomical Structures": 1 + "8th Grade Science: Introduction to Biology - Understanding Biodiversity": 1 + "3rd Grade Geography: Understanding Maps with Compasses using Google Earth": 1 + "3rd Grade Geography: Navigating Maps with Compasses and GPS Technology": 1 + "3rd Grade Geography: Exploring Landforms on Maps with Compasses and Topographic Tools": 1 + "3rd Grade Geography: Understanding Maps with Compasses and the Concept of Latitude and Longitude": 1 + "3rd Grade Geography: Interactive Study of Maps with Compasses and Augmented Reality": 1 + "3rd Grade Geography: Deciphering Maps with Compasses and Scale Reading Techniques": 1 + "3rd Grade Geography: Navigating Maps with Compasses and Orienteering Skills": 1 + "3rd Grade Geography: Exploring Maps with Compasses and Satellite Imagery": 1 + "3rd Grade Geography: Understanding Maps with Compasses using Cartographic Software": 1 + "3rd Grade Geography: Mastering Maps with Compasses and Geographic Information System (GIS) Technology": 1 + "7th Grade Science: Exploring Roller Coaster Physics using Computer Simulation and Velocity Calculations": 1 + "The Magic of Gravity: Using Computer Simulations to Understand Roller Coaster Physics in 7th Grade Science": 1 + "7th Grade Science: A Deep Dive into Roller Coaster Physics using Computer Simulation and Energy Conservation": 1 + "7th Grade Science: Exploring Roller Coaster Physics with Computer Simulation and Acceleration Concepts": 1 + "Force and Motion: 7th Grade Sciences Exploration of Roller Coaster Physics using Computer Simulation": 1 + "The Thrill of Speed: 7th Grade Sciences Exploration of Roller Coaster Physics using Computer Simulation and Velocity-Time Graphs": 1 + "7th Grade Science: Unpacking Roller Coaster Physics using Computer Simulation and Potential and Kinetic Energy": 1 + "The Physics Behind the Fun: Using Computer Simulations to Explore Roller Coaster Mechanics in 7th Grade Science": 1 + "7th Grade Science: Utilizing Computer Simulation to Understand Roller Coaster Physics and the Influence of Mass": 1 + "7th Grade Science: Exploring Roller Coaster Physics using Computer Simulation and Newtons Laws of Motion.": 1 + "8th Grade Music: Introduction to Brass Instruments in Beginning Band": 1 + "8th Grade Music: Beginning Band Instruments - A Focus on Woodwinds": 1 + "8th Grade Music: Mastering Percussion for Beginning Band": 1 + "8th Grade Music: Exploring the Clarinet in Beginning Band": 1 + "8th Grade Music: Beginning Band Instruments - Trumpet Techniques": 1 + "8th Grade Music: The Art of the Flute in Beginning Band": 1 + "8th Grade Music: Beginning Band Instruments - Saxophone Studies": 1 + "8th Grade Music: Trombone Basics in Beginning Band": 1 + "8th Grade Music: Beginning Band Instruments with a Focus on the French Horn": 1 + "8th Grade Music: Exploring the Oboe in Beginning Band": 1 + "6th Grade History: Understanding Ancient Civilizations through the Lens of Pyramids": 1 + "6th Grade History: Exploring Ancient Civilizations through the Study of Hieroglyphics": 1 + "6th Grade History: Deciphering Ancient Civilizations with the Rosetta Stone": 1 + "6th Grade History: Grasping Ancient Civilizations through the Invention of the Wheel": 1 + "6th Grade History: Unveiling Ancient Civilizations with the Concept of Democracy": 1 + "6th Grade History: Discovering Ancient Civilizations through the Advancement of Aqueducts": 1 + "6th Grade History: Unraveling Ancient Civilizations through the Study of Roman Architecture": 1 + "6th Grade History: Understanding Ancient Civilizations and the Significance of Fire": 1 + "6th Grade History: Exploring Ancient Civilizations through the Invention of the Plow": 1 + "6th Grade History: Navigating Ancient Civilizations with the Concept of the Sundial": 1 + "2nd Grade Language Arts: Creative Storytelling through Comic Strips Creation using Photoshop": 1 + "2nd Grade Language Arts: Digital Storytelling with Comic Strips using Procreate": 1 + "2nd Grade Language Arts: Exploring Narratives through Comic Strips using Adobe Illustrator": 1 + "2nd Grade Language Arts: Creative Storytelling through Comic Strips using Canva": 1 + "2nd Grade Language Arts: Sequential Art and Storytelling through Comic Strips using Microsoft Paint": 1 + "2nd Grade Language Arts: Creative Storytelling with Comic Strips using Pixton": 1 + "2nd Grade Language Arts: Understanding Plot Structure through Comic Strips using GIMP": 1 + "2nd Grade Language Arts: Creative Storytelling through Comic Strips using Toon Boom Harmony": 1 + "2nd Grade Language Arts: Exploring Character Development through Comic Strips using SketchBook": 1 + "2nd Grade Language Arts: Creative Storytelling through Comic Strips using Clip Studio Paint": 1 + "7th Grade Algebra: Unraveling the Mystery of Numbers and Variables through Graphing Calculators": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - Understanding Linear Equations": 1 + "7th Grade Algebra: Exploring the Mystery of Numbers and Variables via Smartboard Technology": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - Solving Quadratic Equations": 1 + "7th Grade Algebra: Decoding the Mystery of Numbers and Variables with Geogebra Software": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - A Deep Dive into Polynomials": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - Exploring with Desmos Graphing Tool": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - The World of Expressions and Equations": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - A Journey into the World of Functions": 1 + "7th Grade Algebra: The Mystery of Numbers and Variables - Understanding through Interactive Math Tools": 1 + "1st Grade Environmental Studies: Understanding Weather Patterns through Rain Gauges": 1 + "1st Grade Environmental Studies: Introduction to Weather Patterns using Thermometers": 1 + "1st Grade Environmental Studies: Exploring Weather Patterns with Wind Vanes": 1 + "1st Grade Environmental Studies: Learning Weather Patterns through Anemometers": 1 + "1st Grade Environmental Studies: Discovering Weather Patterns with Weather Balloons": 1 + "1st Grade Environmental Studies: Examining Weather Patterns using Barometers": 1 + "1st Grade Environmental Studies: Interpreting Weather Patterns through Radar Technology": 1 + "1st Grade Environmental Studies: Introduction to Weather Patterns and Cloud Identification": 1 + "1st Grade Environmental Studies: Investigating Weather Patterns using Hygrometers": 1 + "1st Grade Environmental Studies: Decoding Weather Patterns with Satellite Imagery": 1 + "1st Grade Environmental Studies: Studying Weather Patterns through Doppler Radar": 1 + "9th Grade Language Arts: Enhancing Critical Reading with Shakespearean Literature": 1 + "9th Grade Language Arts: Information Processing Through Digital Tools": 1 + "9th Grade Language Arts: Critical Reading and Information Processing Using E-books": 1 + "9th Grade Language Arts: Developing Critical Reading Skills with Poetry Analysis": 1 + "9th Grade Language Arts: Information Processing and Understanding through Mind Mapping Techniques": 1 + "9th Grade Language Arts: Critical Reading and Information Processing with Graphic Novels": 1 + "9th Grade Language Arts: Enhancing Information Processing Using Online Research Tools": 1 + "9th Grade Language Arts: Improving Critical Reading With Audio Books": 1 + "9th Grade Language Arts: Utilizing Online Dictionaries for Better Information Processing": 1 + "9th Grade Language Arts: Critical Reading and Information Processing through Literary Critique Techniques": 1 + "1st Grade Art: Exploring Colors and Shapes Through Watercolor Painting Using Brush Techniques": 1 + "1st Grade Art: Navigating the World of Colors and Shapes via Watercolor Painting and Palette Knives": 1 + "1st Grade Art: Discovering Colors and Shapes Through Watercolor Painting and the Use of Easels": 1 + "1st Grade Art: Exploring Colors and Shapes Via Watercolor Painting With Sponge Techniques": 1 + "1st Grade Art: Uncovering Colors and Shapes Through Watercolor Painting Utilizing Watercolor Paper": 1 + "1st Grade Art: Journey Through Colors and Shapes Using Watercolor Painting and Masking Fluid": 1 + "1st Grade Art: Experimenting with Colors and Shapes Through Watercolor Painting and Wash Techniques": 1 + "1st Grade Art: Diving Into Colors and Shapes Through Watercolor Painting Using Wet on Wet Technique": 1 + "1st Grade Art: Exploring Colors and Shapes Through Watercolor Painting and the Concept of Color Theory": 1 + "1st Grade Art: Learning About Colors and Shapes Through Watercolor Painting Using Layering Techniques": 1 + "Kindergarten Health: Incorporating MyPlate Guidelines into Nutrition Education": 1 + "Kindergarten Health: Utilizing Nutrition Tracking Apps for Better Eating Habits": 1 + "Kindergarten Health: The Role of Calorie Counting in a Balanced Diet": 1 + "Kindergarten Health: Understanding Micronutrients through Interactive Games": 1 + "Kindergarten Health: The Importance of Hydration Monitoring Tools in Nutrition": 1 + "Kindergarten Health: Implementing Portion Control Concepts in Nutrition Education": 1 + "Kindergarten Health: Promoting Nutrition through Veggie Garden Projects": 1 + "Kindergarten Health: Using Food Pyramid Visual Aides for Better Nutrition ": 1 + "Kindergarten Health: The Impact of Digital Meal Planning on Nutritional Awareness": 1 + "Kindergarten Health: Interactive Food Sorting Activities for Nutrition Understanding": 1 + "9th Grade American History: An In-Depth Study of the Civil War and the Role of Telegraph Communication": 1 + "The Impact of Railroads in the Civil War: A Course for 9th Grade American History": 1 + "9th Grade American History and The Civil War: A Look at the Influence of Photography": 1 + "The Use of Hot Air Balloons in The Civil War: A 9th Grade American History Course": 1 + "9th Grade American History: Exploring The Civil War Through the Lens of Medicine Technology": 1 + "Ironclads and The Civil War: A Specific Study for 9th Grade American History": 1 + "9th Grade American History: An Examination of the Civil War and the Role of the Cotton Gin": 1 + "The Power of Propaganda in the Civil War: A Course for 9th Grade American History": 1 + "9th Grade American History and The Civil War: Studying the Influence of the Telegraph": 1 + "9th Grade American History: Uncovering the Civil War Through the Evolution of Weaponry": 1 + "10th Grade Art: Introduction to Digital Art using Adobe Photoshop": 1 + "10th Grade Art: Exploring Digital Art with Corel Painter": 1 + "10th Grade Art: Introduction to Digital Art through Vector Graphics": 1 + "10th Grade Art: Digital Art Basics with Wacom Tablets": 1 + "10th Grade Art: Digital Art Creation using Procreate": 1 + "10th Grade Art: Learning Digital Art with iPad Pro and Apple Pencil": 1 + "10th Grade Art: Introduction to Digital Art: Understanding Pixels": 1 + "10th Grade Art: Digital Art Mastery with Autodesk Sketchbook": 1 + "10th Grade Art: Introduction to Digital Art with ArtRage Tools": 1 + "10th Grade Art: Discovering Digital Art through 3D Modeling": 1 + "9th Grade Mathematics: Geometry Essentials with Pythagorean Theorem": 1 + "9th Grade Mathematics: Geometry Essentials using Graphing Calculators": 1 + "9th Grade Mathematics: Geometry Essentials focusing on Polygon Properties": 1 + "9th Grade Mathematics: Geometry Essentials and the Use of Protractors": 1 + "9th Grade Mathematics: Geometry Essentials – Exploring Circle Equations": 1 + "9th Grade Mathematics: Geometry Essentials with Interactive Geometry Software": 1 + "9th Grade Mathematics: Geometry Essentials – Understanding Trigonometric Ratios": 1 + "9th Grade Mathematics: Geometry Essentials and the Concept of Symmetry": 1 + "9th Grade Mathematics: Geometry Essentials using Geometric Constructions Techniques": 1 + "9th Grade Mathematics: Geometry Essentials – Exploring Transformational Geometry": 1 + "6th Grade Physical Education and Team Sports: Introduction to Basketball Techniques": 1 + "6th Grade Physical Education: Basics of Soccer and Teamwork": 1 + "6th Grade Physical Education: Volleyball Skills and Team Sports ": 1 + "6th Grade Physical Education: Learning Badminton and Team Participation ": 1 + "6th Grade Physical Education and Team Sports: Focus on Baseball Strategies": 1 + "6th Grade Physical Education: Understanding Football Rules and Team Dynamics": 1 + "6th Grade Physical Education and Team Sports: Mastery of Tennis Techniques": 1 + "6th Grade Physical Education: Swimming Basics and Team Sports": 1 + "6th Grade Physical Education: Track and Field Events and Team Sports": 1 + "6th Grade Physical Education: Exploring Gymnastics and Team Sports.": 1 + "2nd Grade: Exploring Mammals in the Animal Kingdom with Microscopes in Science": 1 + "2nd Grade: Journey Through the Animal Kingdom: A Special Focus on Reptiles using Digital Illustration in Science": 1 + "2nd Grade: The Role of Binoculars in Studying Birds in the Animal Kingdom for Science": 1 + "2nd Grade: Journey Through the Animal Kingdom: Studying Aquatic Life with Aquariums in Science": 1 + "2nd Grade: Understanding Insects in the Animal Kingdom using Magnifying Glasses in Science": 1 + "2nd Grade: Journey Through Amphibians in the Animal Kingdom with Field Studies in Science": 1 + "2nd Grade: Exploring the Animal Kingdom: A Deep Dive into Marine Life using Virtual Reality Technology in Science": 1 + "2nd Grade: Journey Through the Animal Kingdom: Studying Habitats with Terrarium Kits in Science": 1 + "2nd Grade: Exploring the Animal Kingdom: Understanding Mammalian Anatomy with Dissection Tools in Science": 1 + "2nd Grade: Journey Through the Animal Kingdom: Identifying Bird Species using Audio Recordings in Science": 1 + "2nd Grade Mathematics: Introduction to Multiplication Using Number Lines": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Times Tables": 1 + "2nd Grade Mathematics: Exploring Multiplication through Grid Method": 1 + "2nd Grade Mathematics: Introduction to Multiplication via Math Manipulatives": 1 + "2nd Grade Mathematics: Understanding Multiplication with Digital Flashcards ": 1 + "2nd Grade Mathematics: Learning Multiplication through Virtual Whiteboards": 1 + "2nd Grade Mathematics: Mastering Multiplication with Interactive Math Games": 1 + "2nd Grade Mathematics: Introduction to Multiplication using Math Apps": 1 + "2nd Grade Mathematics: Discovering Multiplication through Visual Arrays": 1 + "2nd Grade Mathematics: Introduction to Multiplication using Abacus Method": 1 + "Kindergarten: Learning through Play and Exploration with Block Building": 1 + "Kindergarten: Discovering Concepts through Interactive Games and Exploration": 1 + "Kindergarten: Experience-based Learning using Augmented Reality Tools": 1 + "Kindergarten: Learning through Play and Exploration utilizing iPads": 1 + "Kindergarten: Nature Exploration and Hands-on Learning with Microscopes": 1 + "Kindergarten: Interactive Learning through Play and Digital Whiteboards": 1 + "Kindergarten: Learning through Play and Exploration using Sensory Bins": 1 + "Kindergarten: Exploring Math Concepts through Play and Manipulatives": 1 + "Kindergarten: Learning through Play and Exploration with Smartboard Technology": 1 + "Kindergarten: Incorporating Storytelling in Play and Exploration Learning.": 1 + "1st Grade Environmental Studies: Caring for Our Planet through Recycling Techniques": 1 + "1st Grade Environmental Studies: Implementing Solar Energy for Planet Care": 1 + "1st Grade Environmental Studies: Understanding Composting as a Tool for Earth Care ": 1 + "1st Grade Environmental Studies: Caring for Our Planet through Water Conservation": 1 + "1st Grade Environmental Studies: Using Wind Energy to Sustain Our Planet ": 1 + "1st Grade Environmental Studies: Learning about Hydroponics for Sustainable Farming ": 1 + "1st Grade Environmental Studies: Caring for Our Planet through Forest Conservation": 1 + "1st Grade Environmental Studies: Embracing Organic Farming for Planet Care": 1 + "1st Grade Environmental Studies: Exploring Rainwater Harvesting to Preserve Our Planet ": 1 + "1st Grade Environmental Studies: Understanding Biofuel as a Solution to Environmental Issues": 1 + "8th Grade Physical Education: Enhancing Health and Fitness through Basketball Techniques": 1 + "8th Grade Physical Education: A Focus on Health and Fitness through Yoga Practices": 1 + "8th Grade Physical Education: Promoting Health and Fitness using Heart Rate Monitors": 1 + "8th Grade Physical Education: Health and Fitness with an Introduction to Aerobic Exercises": 1 + "8th Grade Physical Education: Exploring Health and Fitness through Swimming Techniques": 1 + "8th Grade Physical Education: Health and Fitness Enhancement using Pedometers": 1 + "8th Grade Physical Education: A Study on Health and Fitness through Dance Routines": 1 + "8th Grade Physical Education: Teaching Health and Fitness through the Concept of Body Mass Index (BMI)": 1 + "8th Grade Physical Education: Health and Fitness Development using Fitness Mobile Applications": 1 + "8th Grade Physical Education: Health and Fitness through the Basics of Weightlifting": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting": 1 + "5th Grade Art: Decoding Ancient Egyptian Artifacts with Hieroglyphs Study": 1 + "5th Grade Art: Interpreting Ancient Egyptian Artifacts using 3D Printing Technology": 1 + "5th Grade Art: Unraveling Ancient Egyptian Artifacts through Pottery Techniques": 1 + "5th Grade Art: Investigating Ancient Egyptian Artifacts using Augmented Reality ": 1 + "5th Grade Art: Discovering Ancient Egyptian Artifacts with Fresco Painting": 1 + "5th Grade Art: Analyzing Ancient Egyptian Artifacts through Papyrus Making": 1 + "5th Grade Art: Learning about Ancient Egyptian Artifacts with Gold Leaf Gilding": 1 + "5th Grade Art: Understanding Ancient Egyptian Artifacts through Stone Carving Techniques ": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts using Virtual Reality Technology": 1 + "4th Grade Social Studies: Journey Around the World with Google Maps": 1 + "4th Grade Social Studies: Exploring the World Through Virtual Reality": 1 + "4th Grade Social Studies: Understanding Global Cultures with Online Collaboration Tools": 1 + "4th Grade Social Studies: Traveling the Globe with Interactive Digital Maps": 1 + "4th Grade Social Studies: Exploring International History with Time-Lapse Technology": 1 + "4th Grade Social Studies: Journey Around the World using Augmented Reality": 1 + "4th Grade Social Studies: Discovering World Cultures with Digital Storytelling Tools": 1 + "4th Grade Social Studies: Navigating the Globe with Geocoding Technology": 1 + "4th Grade Social Studies: Journey Around the World with Interactive Timelines": 1 + "4th Grade Social Studies: Understanding Global Geography with 3D Printing Technology": 1 + "5th Grade Science: Understanding Ecosystems and Climate Change through Digital Simulations": 1 + "Exploring Ecosystems and Climate Change with Microscopes: A 5th Grade Science Study": 1 + "5th Grade Science: Climate Change and Ecosystems - A Study through the Lens of GIS Technology": 1 + "5th Grade Science: A Deep Dive into Climate Change and Ecosystems using Virtual Reality": 1 + "Analyzing Ecosystems and Climate Change with Drones: A 5th Grade Science Study": 1 + "5th Grade Science: Ecosystems and Climate Change - A Study using Data Visualization Tools": 1 + "Climate Change and Ecosystems: A 5th Grade Science Course Utilizing Satellite Imaging": 1 + "5th Grade Science: Using Biotechnology to Understand Ecosystems and Climate Change": 1 + "Ecosystems and Climate Change: A 5th Grade Science Study using 3D Printing Technology": 1 + "5th Grade Science: Understanding Ecosystems and Climate Change through the Application of AI and Machine Learning": 1 + "6th Grade: Exploring World Geography through Google Earth": 1 + "6th Grade: Introduction to World Geography using Interactive Maps": 1 + "6th Grade: Learning World Geography through Virtual Reality ": 1 + "6th Grade: Introduction to World Geography with GIS (Geographic Information System) Tools": 1 + "6th Grade: Understanding World Geography with Satellite Imagery ": 1 + "6th Grade: Delving into World Geography using GPS Technology": 1 + "6th Grade: Introduction to World Geography: A Focus on Climate Change": 1 + "6th Grade: Exploring World Geography using 3D Modeling": 1 + "6th Grade: Introduction to World Geography: Understanding Cultural Diversity": 1 + "6th Grade: Discovering World Geography through Augmented Reality": 1 + "4th Grade English: Creative Writing and Storytelling using Mind Maps": 1 + "4th Grade English: Storytelling and Creative Writing with Digital Storyboards": 1 + "4th Grade English: Exploring Creative Writing and Storytelling using Google Docs": 1 + "4th Grade English: Creative Writing and Storytelling with Microsoft OneNote": 1 + "4th Grade English: Creative Writing and Storytelling: An Introduction to Scrivener": 1 + "4th Grade English: Creative Writing and Storytelling using Interactive Whiteboards": 1 + "4th Grade English: Creative Writing and Storytelling: Mastering Grammarly": 1 + "4th Grade English: Storytelling and Creative Writing with Plot Diagrams": 1 + "4th Grade English: Creative Writing and Storytelling using Evernote": 1 + "4th Grade English: Creative Writing and Storytelling: A Guide to using WordPress.": 1 + "2nd Grade Science: Exploring Photosynthesis in Plant Life": 1 + "2nd Grade Science: An Introduction to Animal Habitats and Ecosystems": 1 + "2nd Grade Science: Using Microscopes to Study Plant Cells": 1 + "2nd Grade Science: Animal Adaptation and Survival Strategies": 1 + "2nd Grade Science: Plant Growth and the Role of Sunlight": 1 + "2nd Grade Science: Understanding Food Chains in Animal Life": 1 + "2nd Grade Science: The Role of Water in Plant Life": 1 + "2nd Grade Science: Learning about Animal Reproduction and Life Cycles": 1 + "2nd Grade Science: Plant Life and the Impact of Soil Quality": 1 + "2nd Grade Science: Animal Life and the Effects of Climate Change": 1 + "2nd Grade Physical Education: Exploring Soccer Skills with Balls": 1 + "2nd Grade Physical Education: Learning Basketball Techniques with Hoops": 1 + "2nd Grade Physical Education: Discovering Tennis Skills with Rackets": 1 + "2nd Grade Physical Education: Mastering Volleyball Techniques with Nets": 1 + "2nd Grade Physical Education: Understanding Baseball Skills with Bats": 1 + "2nd Grade Physical Education: Engaging in Gymnastics with Balance Beams": 1 + "2nd Grade Physical Education: Learning Track and Field using Hurdles": 1 + "2nd Grade Physical Education: Discovering Golf Techniques with Clubs": 1 + "2nd Grade Physical Education: Exploring Hockey Skills with Sticks": 1 + "2nd Grade Physical Education: Mastering Rugby Techniques with Rugby Balls": 1 + "10th Grade History: Exploring the Renaissance through the Lens of the Printing Press": 1 + "10th Grade History: Journey Through the Renaissance with Emphasis on Humanism": 1 + "10th Grade History: Unveiling the Renaissance - The Impact of the Astrolabe": 1 + "10th Grade History: The Renaissance Journey and the Role of the Compass": 1 + "10th Grade History: A Deep Dive into the Renaissance and the Oil Painting Revolution": 1 + "10th Grade History: The Renaissance Era - Understanding Linear Perspective": 1 + "10th Grade History: Journey Through the Renaissance - A Study of the Gutenberg Press": 1 + "10th Grade History: Analyzing the Renaissance through the Concept of Patronage": 1 + "10th Grade History: Exploring the Renaissance - The Rise of Vernacular Literature": 1 + "10th Grade History: The Renaissance - A Journey through the Invention of the Musket.": 1 + "4th Grade Language Arts: Writing about Modern Technological Innovations - Smartphones": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Impact of Drones": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Role of Artificial Intelligence": 1 + "4th Grade Language Arts: Writing about Modern Innovations - Exploring the Internet ": 1 + "4th Grade Language Arts: Writing about Modern Innovations - Understanding Virtual Reality": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Influence of Social Media": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Power of Renewable Energy": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Revolution of Electric Cars": 1 + "4th Grade Language Arts: Writing about Modern Innovations - The Use of Robotics in Todays World": 1 + "4th Grade Language Arts: Writing about Modern Innovations - Exploring the World of 3D Printing": 1 + "3rd Grade History: A Deep Dive into Ancient Egyptian Hieroglyphics": 1 + "3rd Grade History: Exploring Ancient Civilizations through the Lens of Roman Architecture": 1 + "3rd Grade History: Understanding the Invention of the Wheel in Ancient Civilizations": 1 + "3rd Grade History: Mapping Ancient Civilizations: The Art of Cartography": 1 + "3rd Grade History: The Impact of Irrigation Systems in Ancient Mesopotamia": 1 + "3rd Grade History: The Role of Aqueducts in Ancient Roman Civilization": 1 + "3rd Grade History: Ancient Civilizations and the Introduction of the Alphabet": 1 + "3rd Grade History: The Importance of the Sundial in Ancient Greek Civilization": 1 + "3rd Grade History: Discovering Ancient Civilizations through Chinese Papermaking": 1 + "3rd Grade History: Unfolding Ancient Civilizations with the Egyptian Papyrus.": 1 + "3rd Grade History: Exploring Ancient Egypt through Chinese Papermaking and Papyrus Scrolls": 1 + "3rd Grade History: Discovering Mesopotamia through Chinese Papermaking and Cuneiform Tablets": 1 + "3rd Grade History: Unraveling Ancient Greece through Chinese Papermaking and Pottery Kilns": 1 + "3rd Grade History: Journeying through Ancient Rome via Chinese Papermaking and the Concept of Aqueducts": 1 + "3rd Grade History: Delving into the Indus Valley Civilization through Chinese Papermaking and Bronze Casting": 1 + "3rd Grade History: Studying Ancient Mayan Culture through Chinese Papermaking and Hieroglyphic Scripts": 1 + "3rd Grade History: Investigating the Ancient Aztecs through Chinese Papermaking and Obsidian Tools": 1 + "3rd Grade History: Uncovering Ancient China through Chinese Papermaking and Terracotta Warriors": 1 + "3rd Grade History: Learning about Ancient Japan through Chinese Papermaking and Samurai Swords": 1 + "3rd Grade History: Exploring the Ancient Incas through Chinese Papermaking and Quipu Counting Systems": 1 + "4th Grade English: Journey through Storytelling with Graphic Novels": 1 + "4th Grade English: Journey through Storytelling using Digital Narratives": 1 + "4th Grade English: Journey through Storytelling: An Exploration of Audiobooks": 1 + "4th Grade English: Journey through Storytelling: Discovering Animation": 1 + "4th Grade English: Journey through Storytelling: The Power of Podcasts": 1 + "4th Grade English: Journey through Storytelling: Understanding through Role-play": 1 + "4th Grade English: Journey through Storytelling: Interactive E-books and their Impact": 1 + "4th Grade English: Journey through Storytelling: The Magic of Virtual Reality": 1 + "4th Grade English: Journey through Storytelling: Harnessing the Power of Video Games": 1 + "4th Grade English: Journey through Storytelling: Creation and Interpretation with Storyboarding": 1 + "6th Grade Social Studies: Deciphering Ancient Egyptian Hieroglyphics Using Rosetta Stone": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics and the Concept of Pharaohs": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations with Hieroglyphics and Papyrus Scrolls": 1 + "6th Grade Social Studies: Unraveling the Secrets of Ancient Civilizations through Hieroglyphics and Pyramids": 1 + "6th Grade Social Studies: Study of Ancient Civilizations through Hieroglyphics and the Art of Mummification": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics and the Concept of Nile Flooding": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations through Hieroglyphics and the Use of Obelisks": 1 + "6th Grade Social Studies: Unveiling Ancient Civilizations through Hieroglyphics and the Sphinx": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics and the Invention of Pictographs": 1 + "6th Grade Social Studies: Delving into Ancient Civilizations through Hieroglyphics and the Concept of Ankh.": 1 + "6th Grade Mathematics: Understanding Fractions with the Help of Fraction Bars": 1 + "6th Grade Mathematics: Introduction to Fractions using Fraction Circles": 1 + "6th Grade Mathematics: Exploring Fractions with Interactive Whiteboard ": 1 + "6th Grade Mathematics: Learning Fractions through Fraction Models on iPads": 1 + "6th Grade Mathematics: Mastering Fractions with Virtual Manipulatives ": 1 + "6th Grade Mathematics: Fraction Concepts using Digital Fraction Strips": 1 + "6th Grade Mathematics: Fraction Simplification with Smartboard Technology": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App": 1 + "6th Grade Mathematics: Studying Fractions through Online Fraction Games": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool.": 1 + "3rd Grade History: Exploring Ancient Egypt Using Virtual Reality": 1 + "3rd Grade History: Time Travel to Ancient Egypt Through Augmented Reality": 1 + "3rd Grade History: Discovering Ancient Egypt with 3D Printing": 1 + "3rd Grade History: Journey to Ancient Egypt Using Interactive Timelines": 1 + "3rd Grade History: Ancient Egypt Exploration Utilizing Digital Maps": 1 + "3rd Grade History: Time Travel to Ancient Egypt with Holographic Technology": 1 + "3rd Grade History: Unearth Ancient Egypt Using Archaeology Simulations": 1 + "3rd Grade History: Deciphering Ancient Egypt with Hieroglyphics Software": 1 + "3rd Grade History: Time Travel to Ancient Egypt via Interactive Documentaries": 1 + "3rd Grade History: Exploring Ancient Egypt with Virtual Field Trips": 1 + "2nd Grade Mathematics: Understanding Numerators and Denominators in Fractions": 1 + "2nd Grade Mathematics: Using Pie Charts to Understand Fractions": 1 + "2nd Grade Mathematics: Simplifying Fractions with Number Lines": 1 + "2nd Grade Mathematics: Fraction Addition and Subtraction Made Easy": 1 + "2nd Grade Mathematics: Multiplying and Dividing Fractions with the Help of Grids": 1 + "2nd Grade Mathematics: Interactive Fraction Games with iPads ": 1 + "2nd Grade Mathematics: Exploring Fractions through LEGO Blocks": 1 + "2nd Grade Mathematics: Fraction Conversion using Fraction Bars": 1 + "2nd Grade Mathematics: Fractions and Decimals - Making Connections": 1 + "2nd Grade Mathematics: Fun with Fractions using Online Fraction Calculator": 1 + "2nd Grade Music: Exploring the Recorder: An Introduction to Simple Musical Instruments": 1 + "2nd Grade Music: Introduction to Simple Musical Instruments: The Magic of the Piano": 1 + "2nd Grade Music: The Drum: An Introduction to Simple Musical Instruments": 1 + "2nd Grade Music: The Harmonica: A Simple Musical Instrument for Beginners": 1 + "2nd Grade Music: Discovering the Ukulele: An Introduction to Simple Musical Instruments ": 1 + "2nd Grade Music: Introduction to Simple Musical Instruments: The Joy of the Xylophone": 1 + "2nd Grade Music: The Triangle: Simplest of Musical Instruments ": 1 + "2nd Grade Music: Introduction to Simple Musical Instruments: The Rhythm of the Tambourine": 1 + "2nd Grade Music: The Kazoo: A Fun Introduction to Simple Musical Instruments": 1 + "2nd Grade Music: The Flute: An Introduction to Simple Musical Instruments for 2nd Graders.": 1 + "7th Grade English Language Arts: Exploring Poetry through Symbolism": 1 + "7th Grade English Language Arts: Analyzing Poetry using the Rhyme Schemes": 1 + "7th Grade English Language Arts: Decoding Poetry with Metaphors": 1 + "7th Grade English Language Arts: Exploring Poetry with Google Classroom": 1 + "7th Grade English Language Arts: Understanding Poetry through Imagery": 1 + "7th Grade English Language Arts: Poetry Analysis using Interactive Whiteboards": 1 + "7th Grade English Language Arts: Exploring Poetry through Personification": 1 + "7th Grade English Language Arts: Poetry Analysis using Mind Mapping Tools": 1 + "7th Grade English Language Arts: Exploring Poetry with Similes": 1 + "7th Grade English Language Arts: Poetry Exploration using Digital Literature Circles": 1 + "9th Grade Music: A Study of Classical Composers Through the Lens of Beethovens Symphonies": 1 + "9th Grade Music: Exploring The Influence of Classical Composers on Modern Music Technology": 1 + "9th Grade Music: A Detailed Study of Classical Composers and their Impact on MIDI Technology": 1 + "9th Grade Music: A Study of Classical Composers using Pro Tools for Composition Analysis": 1 + "9th Grade Music: Understanding Bachs Counterpoint in Classical Composition": 1 + "9th Grade Music: A Study of Classical Composers and their Influence on Digital Audio Workstations": 1 + "9th Grade Music: A Study of Classical Composers using Sibelius Notation Software": 1 + "9th Grade Music: Analyzing Classical Composers Through the Sound Spectrum": 1 + "9th Grade Music: A Study of Classical Composers Using the Concept of Harmonic Progression": 1 + "9th Grade Music: Exploring Classical Composers Through the Art of Orchestration": 1 + "7th Grade Social Studies: Exploring Medieval Societies through the Lens of Feudalism": 1 + "7th Grade Social Studies: The Impact of the Printing Press on Medieval Societies": 1 + "7th Grade Social Studies: Understanding Medieval Societies: A Study of the Crusades": 1 + "7th Grade Social Studies: Analyzing Medieval Societies with Geographic Information Systems (GIS)": 1 + "7th Grade Social Studies: Uncovering the Secrets of Medieval Societies through Archaeology": 1 + "7th Grade Social Studies: The Role of the Plague in Shaping Medieval Societies": 1 + "7th Grade Social Studies: Medieval Societies and the Evolution of the Castle: A Historical Perspective": 1 + "7th Grade Social Studies: Understanding Medieval Societies: The Knights Armor and Warfare": 1 + "7th Grade Social Studies: Illuminated Manuscripts and Their Role in Medieval Societies": 1 + "7th Grade Social Studies: Medieval Societies: A Deep Dive into the Guild System.": 1 + "8th Grade Physical Education: Soccer and Teamwork Building": 1 + "8th Grade Physical Education: Introduction to Volleyball and Group Dynamics": 1 + "8th Grade Physical Education: Basketball and Teamwork Using Digital Scoreboards": 1 + "8th Grade Physical Education: Baseball and Teamwork with Batting Cage Technology": 1 + "8th Grade Physical Education: Swimming and Teamwork: The Concept of Relay Races": 1 + "8th Grade Physical Education: Tennis and Teamwork: Understanding Doubles Strategy": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Utilizing Spotting Techniques": 1 + "8th Grade Physical Education: Track and Field and Teamwork: The Importance of Handoff Techniques in Relay Races": 1 + "8th Grade Physical Education: Lacrosse and Teamwork: Mastering Passing Techniques ": 1 + "8th Grade Physical Education: Football and Teamwork: Utilizing the Playbook Concept": 1 + "2nd Grade Environmental Studies: Photosynthesis in Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and the Role of Sunlight": 1 + "2nd Grade Environmental Studies: The Use of Microscopes in Studying Plant Life Cycles": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and Soil Composition": 1 + "2nd Grade Environmental Studies: Exploring the Plant Life Cycle with Interactive Software": 1 + "2nd Grade Environmental Studies: The Role of Water in Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and Seed Dispersal Mechanisms": 1 + "2nd Grade Environmental Studies: The Role of Pollination in Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Studying Plant Life Cycle through Digital Animation": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and the Influence of Climate Change": 1 + "1st Grade Music: Exploring Rhythm and Melody Fundamentals with Hand Drums": 1 + "1st Grade Music: Understanding Rhythm and Melody Fundamentals with the Piano": 1 + "1st Grade Music: Rhythm and Melody Fundamentals through Singing": 1 + "1st Grade Music: Learning Rhythm and Melody Fundamentals Using Percussion Instruments": 1 + "1st Grade Music: Rhythm and Melody Fundamentals Explored through Musical Notation": 1 + "1st Grade Music: Rhythm and Melody Fundamentals: A Focus on Tempo": 1 + "1st Grade Music: Rhythm and Melody Fundamentals with the Recorder": 1 + "1st Grade Music: The Fundamentals of Rhythm and Melody using SmartMusic App": 1 + "1st Grade Music: Discovering Rhythm and Melody Fundamentals with the Xylophone": 1 + "1st Grade Music: Rhythm and Melody Fundamentals: An Introduction to Harmony": 1 + "Third Grade Social Studies: Exploring Local Community and Government Through Map Reading": 1 + "Third Grade Social Studies: Understanding Local Community and Government with Digital Research": 1 + "Third Grade Social Studies: Local Community and Government - A Study Through Time-lapse Photography": 1 + "Third Grade Social Studies: Local Community and Government - Analyzing Data with Spreadsheets": 1 + "Third Grade Social Studies: Local Community and Government - A Close Look at Historical Monuments": 1 + "Third Grade Social Studies: Local Community and Government - Role Playing for Civic Understanding": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips": 1 + "Third Grade Social Studies: Exploring Local Community and Government Using Interactive Whiteboards": 1 + "Third Grade Social Studies: Local Community and Government - Incorporating Augmented Reality": 1 + "Third Grade Social Studies: Discovering Local Community and Government Through Geographical Information Systems": 1 + "8th Grade Music: Mastering Orchestration in Classical Music Using Ableton Live MIDI Sequencers": 1 + "8th Grade Music: Exploring Classical Music Composition with FL Studio MIDI Sequencers": 1 + "8th Grade Music: The Art of Orchestration Using Pro Tools MIDI Sequencers in Classical Music": 1 + "8th Grade Music: An Introduction to Logic Pro X MIDI Sequencers in Classical Music Orchestration": 1 + "8th Grade Music: The Study of Classical Music Orchestration Using Cubase MIDI Sequencers": 1 + "8th Grade Music: The Art of Orchestration in Classical Music with Propellerhead Reason MIDI Sequencers": 1 + "8th Grade Music: Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers": 1 + "8th Grade Music: The Art of Orchestration in Classical Music: A Focus on MIDI Sequencing with Bitwig Studio": 1 + "8th Grade Music: Exploring Orchestration in Classical Music Through the Lens of Studio One MIDI Sequencers": 1 + "8th Grade Music: The Art of Orchestration in Classical Music Using MIDI Sequencers and the Tonal Harmony Concept.": 1 + "4th Grade Social Studies: Exploring Ancient Civilizations through Map-Making": 1 + "4th Grade Social Studies: Understanding Ancient Civilizations with the Wheel": 1 + "4th Grade Social Studies: Journey Through Ancient Civilizations using the Abacus": 1 + "4th Grade Social Studies: Exploring Ancient Civilizations through Architecture": 1 + "4th Grade Social Studies: Journey Through Ancient Civilizations with Papyrus": 1 + "4th Grade Social Studies: Unveiling Ancient Civilizations through Pottery": 1 + "4th Grade Social Studies: Decoding Ancient Civilizations with Hieroglyphics": 1 + "4th Grade Social Studies: Journey Through Ancient Civilizations with the Sundial": 1 + "4th Grade Social Studies: Insight into Ancient Civilizations through Agriculture": 1 + "4th Grade Social Studies: Journey Through Ancient Civilizations using the Aqueduct System.": 1 + "1st Grade Art: Exploring Basic Shapes and Colors with Watercolors": 1 + "1st Grade Art: Learning Basic Shapes and Colors through Finger Painting": 1 + "1st Grade Art: Discovering Basic Shapes and Colors using Crayons": 1 + "1st Grade Art: Understanding Basic Shapes and Colors with Collage Making": 1 + "1st Grade Art: Exploring Basic Shapes and Colors through Clay Modeling": 1 + "1st Grade Art: Studying Basic Shapes and Colors using Digital Art Tools": 1 + "1st Grade Art: Grasping Basic Shapes and Colors with Pastel Drawing": 1 + "1st Grade Art: Investigating Basic Shapes and Colors through Origami Techniques": 1 + "1st Grade Art: Unraveling Basic Shapes and Colors using Color Wheel Concepts": 1 + "1st Grade Art: Surveying Basic Shapes and Colors with Acrylic Painting": 1 + "5th Grade Science: Exploring Ecosystems and Climate Change with Minecraft Education Edition": 1 + "Understanding Ecosystems and Climate Change through Virtual Reality Simulations in 5th Grade Science": 1 + "5th Grade Science: Analyzing Climate Change and Ecosystems using Google Earth": 1 + "Implementing Scratch Coding to Understand Ecosystems and Climate Change in 5th Grade Science": 1 + "Learning Ecosystems and Climate Change in 5th Grade Science using AR Sandbox Technology": 1 + "5th Grade Science: Grasping Ecosystems and Climate Change through 3D Printing Simulations": 1 + "Understanding Ecosystems and Climate Change: Incorporating Raspberry Pi in 5th Grade Science": 1 + "5th Grade Science: Climate Change and Ecosystems Study through Lego Robotics": 1 + "Ecosystems and Climate Change in 5th Grade Science: A Study through Interactive Whiteboard Simulations": 1 + "5th Grade Science: Utilizing GIS Technology to Understand Ecosystems and Climate Change.": 1 + "2nd Grade Art: Introduction to Color Theory Using Watercolors": 1 + "2nd Grade Art: Basics of Color Theory with Acrylic Paints": 1 + "2nd Grade Art: Exploring Color Theory Through Digital Art Tools": 1 + "2nd Grade Art: Understanding Color Theory with Crayons": 1 + "2nd Grade Art: Basics of Color Theory Using Oil Pastels": 1 + "2nd Grade Art: An Exploration of Color Theory with Collage": 1 + "2nd Grade Art: Learning Color Theory Through Mixed Media": 1 + "2nd Grade Art: Basics of Color Theory Using Marker Pens": 1 + "2nd Grade Art: Discovering Color Theory with Chalk Pastels": 1 + "2nd Grade Art: Color Theory Fundamentals with Pencil Shading": 1 + "8th Grade Music: Mastering Orchestration with Pro Tools MIDI Sequencers and Ableton Live in Classical Music": 1 + "8th Grade Music: Introduction to Pro Tools MIDI Sequencers and Logic Pro X for Orchestration in Classical Music": 1 + "8th Grade Music: Exploring the Art of Orchestration using Pro Tools MIDI Sequencers and FL Studio in Classical Music": 1 + "8th Grade Music: Utilizing Pro Tools MIDI Sequencers and GarageBand for Orchestration in Classical Music": 1 + "8th Grade Music: A Deep Dive into Orchestration with Pro Tools MIDI Sequencers and Cubase in Classical Music": 1 + "8th Grade Music: The Art of Orchestration with Pro Tools MIDI Sequencers and Reason in Classical Music": 1 + "8th Grade Music: Orchestration Techniques using Pro Tools MIDI Sequencers and BandLab in Classical Music": 1 + "8th Grade Music: Exploring Orchestration with Pro Tools MIDI Sequencers and Digital Audio Workstations in Classical Music": 1 + "8th Grade Music: Understanding Orchestration with Pro Tools MIDI Sequencers and Reaper in Classical Music": 1 + "8th Grade Music: Orchestration Essentials using Pro Tools MIDI Sequencers and Cakewalk in Classical Music": 1 + "2nd Grade Language Arts: Exploring the World of Sentences with Phonics": 1 + "2nd Grade Language Arts: The World of Sentences through Storytelling": 1 + "2nd Grade Language Arts: Learning Sentences with Interactive Grammar Games": 1 + "2nd Grade Language Arts: The World of Sentences - A Journey with Spelling Tools": 1 + "2nd Grade Language Arts: Discovering Sentences with Vocabulary Building Apps": 1 + "2nd Grade Language Arts: The World of Sentences Enhanced with Text-to-Speech Technology": 1 + "2nd Grade Language Arts: Mastering Sentences through Creative Writing Techniques": 1 + "2nd Grade Language Arts: The World of Sentences - Understanding Punctuation": 1 + "2nd Grade Language Arts: Exploring Sentence Structures with Digital Flashcards": 1 + "2nd Grade Language Arts: The World of Sentences - A Deep Dive into Sentence Diagramming": 1 + "8th Grade History: Revolutionary War Era - Focusing on Naval Warfare Technology": 1 + "Revolutionary War Era for 8th Grade: The Impact of the Flintlock Musket": 1 + "8th Grade History: Exploration of Spy Techniques During the Revolutionary War": 1 + "Revolutionary War Era: The Role of Printing Press in 8th Grade History ": 1 + "8th Grade History: Revolutionary War Era - The Evolution of Military Tactics": 1 + "Revolutionary War Era for 8th Graders: Understanding the Use of Cannons ": 1 + "8th Grade History: Revolutionary War Era - A Study of the Culper Spy Ring": 1 + "Revolutionary War Era: Exploring the Role of Horses in 8th Grade History": 1 + "8th Grade History: Revolutionary War Era - The Importance of Gunpowder": 1 + "Revolutionary War Era for 8th Grade: The Introduction of Uniforms and Their Significance.": 1 + "7th Grade Language Arts: Exploring Poetry and Drama through Metaphor": 1 + "7th Grade Language Arts: Navigating Poetry and Drama with Symbolism": 1 + "7th Grade Language Arts: Unraveling Poetry and Drama using Digital Annotations": 1 + "7th Grade Language Arts: Probing Poetry and Drama with Rhyme Schemes": 1 + "7th Grade Language Arts: Examining Poetry and Drama through Character Analysis": 1 + "7th Grade Language Arts: Delving into Poetry and Drama using Interactive E-books": 1 + "7th Grade Language Arts: Discovering Poetry and Drama with Google Classroom": 1 + "7th Grade Language Arts: Investigating Poetry and Drama through Dramatic Monologues": 1 + "7th Grade Language Arts: Understanding Poetry and Drama using Audiobooks": 1 + "7th Grade Language Arts: Interpreting Poetry and Drama with Imagery.": 1 + "4th Grade Physical Education: Fundamentals of Soccer with Ball Control Techniques": 1 + "4th Grade Physical Education: Exploring Basketball and Dribbling Skills": 1 + "4th Grade Physical Education: Basics of Volleyball and Overhand Serving": 1 + "4th Grade Physical Education: Understanding Football through Passing Drills ": 1 + "4th Grade Physical Education: Introduction to Baseball with Batting Techniques": 1 + "4th Grade Physical Education: Cricket Basics and Bowling Techniques": 1 + "4th Grade Physical Education: Rugby Essentials with Tackling Drills": 1 + "4th Grade Physical Education: Basics of Field Hockey and Stick Handling": 1 + "4th Grade Physical Education: Learning Tennis with Serve and Volley Techniques": 1 + "4th Grade Physical Education: Fundamentals of Badminton and Shuttlecock Control.": 1 + "3rd Grade Social Studies: Exploring Local Communities through Map Reading": 1 + "3rd Grade Social Studies: Understanding Local Communities with Census Data": 1 + "3rd Grade Social Studies: Local Communities and their Historical Artifacts": 1 + "3rd Grade Social Studies: Local Communities: Studying Architecture": 1 + "3rd Grade Social Studies: Investigating Local Communities using Weather Patterns": 1 + "3rd Grade Social Studies: Discovering Local Communities through Field Trips": 1 + "3rd Grade Social Studies: Local Communities and their Economic Impact": 1 + "3rd Grade Social Studies: Local Communities: A Study in Local Government": 1 + "3rd Grade Social Studies: Exploring Local Communities through Digital Storytelling": 1 + "3rd Grade Social Studies: Local Communities and their Cultural Heritage.": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry with Pythagorean Theorem": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry Utilizing Graphing Calculators": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry with a Focus on Circle Properties": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry Exploring Triangle Congruence": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry Using Geogebra Software": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry and the Art of Proofs": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry with 3D Modeling Techniques": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry Applying Coordinate Geometry": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry Exploring Sine, Cosine, Tangent": 1 + "Tenth Grade Mathematics: Geometry and Trigonometry with Quadrilateral Properties": 1 + "Fourth Grade English: Writing Stories of the Revolutionary War using Storyboarding Software": 1 + "Fourth Grade English: Creating Revolutionary War Stories with Digital Illustration Tools": 1 + "Fourth Grade English: Crafting Revolutionary War Tales with Interactive Whiteboards": 1 + "Fourth Grade English: Developing Revolutionary War Narratives using Mind Mapping Tools": 1 + "Fourth Grade English: Composing Revolutionary War Chronicles with Word Processing Software": 1 + "Fourth Grade English: Penning Revolutionary War Epics using Graphic Designing Tools": 1 + "Fourth Grade English: Scripting Revolutionary War Sagas with Animation Software": 1 + "Fourth Grade English: Formulating Revolutionary War Stories with Cloud Collaboration Tools": 1 + "Fourth Grade English: Generating Revolutionary War Stories using Video Editing Software": 1 + "Fourth Grade English: Producing Revolutionary War Yarns with Virtual Reality Technology": 1 + "8th Grade History: The Founding of America - The Role of Printing Press": 1 + "8th Grade History: The Founding of America - Understanding through Maps and Cartography": 1 + "8th Grade History: The Founding of America - The Impact of the Telescope": 1 + "8th Grade History: The Founding of America - Exploration of the Constitution": 1 + "8th Grade History: The Founding of America - Study of the Declaration of Independence": 1 + "8th Grade History: The Founding of America - Introduction to the Bill of Rights": 1 + "8th Grade History: The Founding of America - The Influence of Gunpowder": 1 + "8th Grade History: The Founding of America - The Importance of the Spinning Wheel": 1 + "8th Grade History: The Founding of America - The Effect of the Telegraph": 1 + "8th Grade History: The Founding of America - The Role of Agriculture Tools.": 1 + "7th Grade History: The Role of The Printing Press in Early American History": 1 + "7th Grade History: The Impact of the Spinning Jenny on Early American Life": 1 + "7th Grade History: The Influence of the Steam Engine in Early American Development": 1 + "7th Grade History: Exploration of the Cotton Gin’s Effect on Early America": 1 + "7th Grade History: Understanding Early American History Through Cartography": 1 + "7th Grade History: The Concept of Democracy in Early America": 1 + "7th Grade History: The Telegraph’s Role in Communication in Early America": 1 + "7th Grade History: How the Plow Shaped Early American Agriculture": 1 + "7th Grade History: The Significance of the Rifle in Early American Society": 1 + "7th Grade History: The Introduction of the Loom and its Impact on Early American Economy": 1 + "4th Grade Geography: Understanding Continents with Google Earth": 1 + "4th Grade Geography: Studying Oceans through Virtual Reality": 1 + "4th Grade Geography: Exploring Continents using Interactive Maps": 1 + "4th Grade Geography: Learning about Oceans with Animation Software": 1 + "4th Grade Geography: Analyzing Continents through Satellite Images": 1 + "4th Grade Geography: Investigating Oceans with Digital Simulations": 1 + "4th Grade Geography: Navigating Continents using GPS Technology": 1 + "4th Grade Geography: Discovering Oceans with Sonar Technology": 1 + "4th Grade Geography: Unraveling Continents with 3D Modeling": 1 + "4th Grade Geography: Delving into Oceans using Augmented Reality": 1 + "3rd Grade Health: Understanding Nutrition with Food Pyramid Diagrams": 1 + "3rd Grade Health: Exploring Healthy Eating Through Calorie Counting": 1 + "3rd Grade Health: Digital Learning of Nutrition with Interactive Apps": 1 + "3rd Grade Health: Nutrition and Healthy Eating - A Deep Dive into Food Groups": 1 + "3rd Grade Health: Healthy Eating Habits through Meal Planning Techniques": 1 + "3rd Grade Health: Using Technology to Understand Nutrition Labels": 1 + "3rd Grade Health: Nutrition Education with Interactive Games": 1 + "3rd Grade Health: Learning Healthy Eating through Visual Portion Control Tools": 1 + "3rd Grade Health: Making Nutrition Fun with Augmented Reality": 1 + "3rd Grade Health: Understanding Dietary Guidelines through Interactive Lessons": 1 + "2nd Grade Mathematics: Mastering Multiplication with FunBrain Math Games ": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills using Times Tables Rock Stars": 1 + "2nd Grade Mathematics: Mastering Multiplication through IXL Learning Platform": 1 + "2nd Grade Mathematics: Interactive Multiplication Mastery with Prodigy Math Games": 1 + "2nd Grade Mathematics: Mastering Multiplication with CoolMath Games and Quizzes": 1 + "Mastering Multiplication: A 2nd Grade Course with Math Playground Interactive Games": 1 + "2nd Grade Mathematics: Mastering Multiplication using Montessori Materials": 1 + "Mastering Multiplication: A 2nd Grade Mathematics Course using SplashLearn Games": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games": 1 + "2nd Grade Mathematics: Mastering Multiplication through Minecraft Education Edition": 1 + "5th Grade Science: Earth’s Ecosystems and the Role of Photosynthesis": 1 + "5th Grade Science: Investigating Earth’s Ecosystems through Microscope Studies": 1 + "5th Grade Science: Earth’s Ecosystems: Understanding Food Chains": 1 + "5th Grade Science: Earth’s Ecosystems and Climate Change": 1 + "5th Grade Science: The Impact of Pollution on Earth’s Ecosystems": 1 + "5th Grade Science: Exploring Earth’s Ecosystems using GIS Technology": 1 + "5th Grade Science: Earth’s Ecosystems: A Deep Dive into Soil Composition": 1 + "5th Grade Science: Earth’s Ecosystems and Species Interaction": 1 + "5th Grade Science: Earth’s Ecosystems: A Study of Biodiversity": 1 + "5th Grade Science: Earth’s Ecosystems: Exploring Ecological Succession": 1 + "5th Grade Science: Earth’s Ecosystems: Examining the Water Cycle": 1 + "3rd Grade Geography: Exploring Continents and Oceans Through Maps": 1 + "3rd Grade Geography: Navigating Continents and Oceans with Google Earth": 1 + "3rd Grade Geography: Discovering Continents and Oceans Using GPS Technology": 1 + "3rd Grade Geography: Learning Continents and Oceans with Interactive Software": 1 + "3rd Grade Geography: Understanding Continents and Oceans Through Virtual Reality": 1 + "3rd Grade Geography: Investigating Continents and Oceans via Satellite Imagery": 1 + "3rd Grade Geography: Discovering Continents and Oceans Through Cartography": 1 + "3rd Grade Geography: Exploring Continents and Oceans Using Digital Globe": 1 + "3rd Grade Geography: Analyzing Continents and Oceans with GIS Technology": 1 + "3rd Grade Geography: Unveiling Continents and Oceans Through Augmented Reality.": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines": 1 + "2nd Grade Mathematics: Mastering Addition through Abacus": 1 + "2nd Grade Mathematics: The Basics of Addition Using Digital Apps": 1 + "2nd Grade Mathematics: Understanding Addition with Counting Blocks": 1 + "2nd Grade Mathematics: Interactive Learning of Addition through Virtual Reality": 1 + "2nd Grade Mathematics: The Art of Addition with Flashcards": 1 + "2nd Grade Mathematics: Addition Mastery Using Smartboard Games": 1 + "2nd Grade Mathematics: Addition Fundamentals with Montessori Materials": 1 + "2nd Grade Mathematics: Addition Basics Using Online Platforms": 1 + "2nd Grade Mathematics: Addition Skills Development with TouchMath Program": 1 + "3rd Grade History: Early American Pioneers and the Use of the Conestoga Wagon": 1 + "3rd Grade History: Exploring the Role of Flintlocks in the Lives of Early American Pioneers": 1 + "3rd Grade History: Mapping Techniques of Early American Pioneers": 1 + "3rd Grade History: Early American Pioneers and the Advent of Spinning Wheels": 1 + "3rd Grade History: The Impact of Plows on the Farming Practices of Early American Pioneers": 1 + "3rd Grade History: Early American Pioneers and the Introduction of Iron Stoves": 1 + "3rd Grade History: The Role of Hand Looms in Early American Pioneer Life": 1 + "3rd Grade History: Early American Pioneers and the Evolution of Water Wheels": 1 + "3rd Grade History: The Influence of the Printing Press on Early American Pioneers": 1 + "3rd Grade History: Early American Pioneers and the Use of Horse-Drawn Wagons": 1 + "5th Grade Art: Exploring Charcoal Drawing Techniques": 1 + "5th Grade Art: An Introduction to Watercolor Painting": 1 + "5th Grade Art: Basics of Acrylic Painting for Kids": 1 + "5th Grade Art: Pencil Drawing Fundamentals": 1 + "5th Grade Art: Unleashing Creativity with Digital Painting": 1 + "5th Grade Art: Mastering Pastel Drawing Techniques": 1 + "5th Grade Art: Discovering the Joy of Oil Painting": 1 + "5th Grade Art: Introduction to 3D Printing in Art": 1 + "5th Grade Art: Learning the Art of Collage Making": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation": 1 + "8th Grade Social Studies: Ancient Civilizations through the Lens of Archaeology": 1 + "8th Grade World Cultures: Exploring Diversity Through Digital Storytelling": 1 + "8th Grade Social Studies: A Deep Dive into Geographic Information Systems (GIS)": 1 + "8th Grade World Cultures: Learning through Virtual Reality Exploration": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution": 1 + "8th Grade World Cultures: Understanding Globalization through Case Studies": 1 + "8th Grade Social Studies: Studying History and Politics through Documentary Analysis": 1 + "8th Grade World Cultures: Exploring Cultural Heritage through Augmented Reality": 1 + "8th Grade Social Studies: Understanding Economy through Simulation Games": 1 + "8th Grade World Cultures: Learning Cultural Anthropology through Ethnographic Research Tools.": 1 + "7th Grade Music: An Exploration of Beethoven’s Symphonies Using Digital Sheet Music": 1 + "7th Grade Music: A Deep Dive into Mozart’s Works with Piano Simulators": 1 + "7th Grade Music: Discovering Bach’s Compositions through Music Production Software": 1 + "7th Grade Music: A Study of Chopin’s Piano Concertos with Virtual Reality": 1 + "7th Grade Music: Analyzing Vivaldi’s Four Seasons Using Music Visualization Tools": 1 + "7th Grade Music: Exploring Wagner’s Operas through Audio Editing Software": 1 + "7th Grade Music: Unpacking Schubert’s Symphonies with Digital Audio Workstations": 1 + "7th Grade Music: Delving into Handel’s Oratorios Using MIDI Controllers": 1 + "7th Grade Music: An Insight into Brahms’ Chamber Music through Music Sequencing Software": 1 + "7th Grade Music: Understanding Tchaikovsky’s Ballets Using Music Transcription Apps": 1 + "4th Grade Social Studies: Exploring the United States of America through Interactive Maps": 1 + "4th Grade Social Studies: The United States of America and the Civil War Era": 1 + "4th Grade Social Studies: The United States of America - A Deep Dive into Democracy": 1 + "4th Grade Social Studies: The United States of America - Understanding the Constitution": 1 + "4th Grade Social Studies: The United States of America - Timeline of Key Historical Events": 1 + "4th Grade Social Studies: The United States of America - Analyzing Population Data": 1 + "4th Grade Social Studies: The United States of America - Utilizing Virtual Reality for History Lessons": 1 + "4th Grade Social Studies: The United States of America - Exploring Native Cultures with Augmented Reality": 1 + "4th Grade Social Studies: The United States of America - Learning with Interactive Quizzes": 1 + "4th Grade Social Studies: The United States of America - Exploring American Geography with GIS Technology.": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Use of the Wheel": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations and the Pyramids": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Concept of Democracy": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Development of Written Language": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Introduction of Agriculture": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Use of Bronze Tools": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Invention of the Aqueduct": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Use of the Sundial": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Development of Currency": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Invention of the Plow": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Concept of Taxation": 1 + "1st Grade Science: Exploring Recycling with DIY Trash-to-Treasure Crafts using Paper Mache": 1 + "1st Grade Science: Studying Recycling through DIY Trash-to-Treasure Crafts with Tin Can Sculptures": 1 + "1st Grade Science: Understanding Recycling with DIY Trash-to-Treasure Crafts using Plastic Bottle Greenhouses": 1 + "1st Grade Science: Investigating Recycling with DIY Trash-to-Treasure Crafts through Cardboard Furniture Making": 1 + "1st Grade Science: Discovering Recycling with DIY Trash-to-Treasure Crafts using Glass Jar Terrariums": 1 + "1st Grade Science: Learning about Recycling with DIY Trash-to-Treasure Crafts creating Newspaper Weave Baskets": 1 + "1st Grade Science: Unveiling Recycling with DIY Trash-to-Treasure Crafts using Old Clothes Rag Rugs": 1 + "1st Grade Science: Diving into Recycling with DIY Trash-to-Treasure Crafts utilizing Egg Carton Art": 1 + "1st Grade Science: Examining Recycling with DIY Trash-to-Treasure Crafts through Bottle Cap Mosaics": 1 + "1st Grade Science: Exploring Recycling with DIY Trash-to-Treasure Crafts by creating Toilet Paper Roll Wall Art.": 1 + "5th Grade Language Arts: The Art of Storytelling using Character Development": 1 + "5th Grade Language Arts: Exploring the Art of Storytelling through Conflict Resolution": 1 + "5th Grade Language Arts: Harnessing Imagery in the Art of Storytelling": 1 + "5th Grade Language Arts: The Art of Storytelling and the Power of Dialogue": 1 + "5th Grade Language Arts: The Art of Storytelling with Plot Structure": 1 + "5th Grade Language Arts: The Art of Storytelling - Using Metaphors and Similes": 1 + "5th Grade Language Arts: The Art of Storytelling via Digital Tools": 1 + "5th Grade Language Arts: The Art of Storytelling and the Role of Narration": 1 + "5th Grade Language Arts: The Art of Storytelling - Exploring Themes and Symbols": 1 + "5th Grade Language Arts: The Art of Storytelling with iPads and Storyboarding Apps.": 1 + "4th Grade Science: Exploring the Solar System with Telescopes": 1 + "4th Grade Science: Understanding the Solar System Through Satellite Imagery": 1 + "4th Grade Science: Exploring the Solar System and its Planets with 3D Models": 1 + "4th Grade Science: Learning the Solar System Through Virtual Reality": 1 + "4th Grade Science: Probing the Solar System with Space Rovers": 1 + "4th Grade Science: Discovering the Solar System with Planetarium Software": 1 + "4th Grade Science: Exploring the Solar System Using Augmented Reality": 1 + "4th Grade Science: Understanding the Solar System with Hubble Space Telescope Images": 1 + "4th Grade Science: Interactive Study of the Solar System Using Mobile Applications": 1 + "4th Grade Science: Grasping Solar System Concepts with Stellar Spectroscopy": 1 + "2nd Grade Language Arts: Utilizing PowerPoint for Sentence Structures with Digital Flashcards": 1 + "2nd Grade Language Arts: Enhancing Sentence Structures Learning with Quizlet Digital Flashcards": 1 + "2nd Grade Language Arts: Exploring Sentence Structures with Digital Flashcards using Google Classroom": 1 + "2nd Grade Language Arts: Implementing Kahoot for Interactive Sentence Structures Study with Digital Flashcards": 1 + "2nd Grade Language Arts: Exploring Sentence Structures with Digital Flashcards through the Lens of Grammarly": 1 + "2nd Grade Language Arts: Leveraging Edmodo for Sentence Structures with Digital Flashcards": 1 + "2nd Grade Language Arts: Incorporating Pear Deck in Exploring Sentence Structures with Digital Flashcards": 1 + "2nd Grade Language Arts: Exploring Sentence Structures with Digital Flashcards using Nearpod": 1 + "2nd Grade Language Arts: Application of Canvas for Sentence Structures with Digital Flashcards": 1 + "2nd Grade Language Arts: Exploring Sentence Structures with Digital Flashcards using Microsoft Teams": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing with Google Docs on iPads": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly ": 1 + "4th Grade Language Arts: Leveraging iPads and Microsoft Word for Effective Paragraph Writing ": 1 + "4th Grade Language Arts: Perfecting Paragraph Writing using iPads and Evernote": 1 + "4th Grade Language Arts: Mastering Paragraph Writing through iPads and Storybird": 1 + "4th Grade Language Arts: Utilizing iPads and Adobe Spark for Paragraph Writing Mastery": 1 + "4th Grade Language Arts: Improving Paragraph Writing Skills with iPads and Pages": 1 + "4th Grade Language Arts: iPads and ProWritingAid for Paragraph Writing Proficiency": 1 + "4th Grade Language Arts: Mastering Paragraph Writing with iPads and Hemingway Editor": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing Skills using iPads and Dragon Dictation": 1 + "4th Grade History: The First Americans and the Invention of the Wheel": 1 + "4th Grade History: The First Americans - Understanding the Use of Fire": 1 + "4th Grade History: The first Americans - The Concept of Agriculture": 1 + "4th Grade History: The First Americans - The Role of Stone Tools": 1 + "4th Grade History: The First Americans - Exploring the Use of the Bow and Arrow": 1 + "4th Grade History: The First Americans - The Invention of Pottery": 1 + "4th Grade History: The First Americans - The Emergence of Hunting Techniques": 1 + "4th Grade History: The First Americans - The Development of Fishing Tools": 1 + "4th Grade History: The First Americans - The Innovation of the Atlatl": 1 + "4th Grade History: The First Americans - The Utilization of Animal Skins": 1 + "4th Grade History: The First Americans - The Creation and Use of Flint Knapping": 1 + "1st Grade Mathematics: The Joy of Counting with Abacus": 1 + "1st Grade Mathematics: Learning Counting Through Digital Apps": 1 + "1st Grade Mathematics: Counting Fun with Number Line Concept": 1 + "1st Grade Mathematics: The Excitement of Counting Using Flash Cards": 1 + "1st Grade Mathematics: Exploring Counting with Interactive Whiteboards": 1 + "1st Grade Mathematics: The Fun of Counting Using Montessori Beads": 1 + "1st Grade Mathematics: Counting Mastery with Virtual Manipulatives": 1 + "1st Grade Mathematics: Enhancing Counting Skills Using Smart Boards": 1 + "1st Grade Mathematics: Understanding Counting Through Place Value Concept": 1 + "1st Grade Mathematics: Discovering Counting with Touch Math Technique": 1 + "8th Grade Music: The Evolution of Classical Music through Piano": 1 + "8th Grade Music: Exploration of Classical Music Evolution with Digital Tools": 1 + "8th Grade Music: The Evolution of Classical Music and the Role of the Harpsichord": 1 + "8th Grade Music: The Evolution of Classical Music: A Journey Through Sheet Music": 1 + "8th Grade Music: The Evolution of Classical Music in the Age of Recording Technology": 1 + "8th Grade Music: A Study of Classical Music Evolution through Orchestra Conducting": 1 + "8th Grade Music: The Evolution of Classical Music and the Impact of the Metronome": 1 + "8th Grade Music: The Evolution of Classical Music: An Insight into Music Composition": 1 + "8th Grade Music: The Evolution of Classical Music - Focus on the Violin": 1 + "8th Grade Music: The Evolution of Classical Music: Understanding Through Musical Notation": 1 + "1st Grade Language Arts: Introduction to Phonics and Spelling through Interactive Whiteboards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards": 1 + "1st Grade Language Arts: Exploring Phonics and Spelling Using Smart Tablets": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills with Speech-to-Text Technology": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling Utilizing Audio Books": 1 + "1st Grade Language Arts: Phonics and Spelling Mastery with Language Learning Apps": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling through Virtual Reality": 1 + "1st Grade Language Arts: Phonics and Spelling Basics with Touchscreen Technology": 1 + "1st Grade Language Arts: Introduction to Phonics and Spelling using E-Readers": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Alphabet Learning Games on Computers": 1 + "11th Grade History: The Impact of Bessemer Process on Nature during the Industrial Age - Exploring 10 Remediation Strategies": 1 + "11th Grade History: The Role of Coal Mining in Nature’s Degradation during the Industrial Age - 10 Possible Reclamation Solutions": 1 + "11th Grade History: The Consequences of Steel Railroads on Natural Landscapes during the Industrial Age - 10 Restoration Approaches": 1 + "11th Grade History: The Ecological Impact of Steel Furnaces during the Industrial Age - 10 Potential Mitigation Measures": 1 + "11th Grade History: The Effects of Blast Furnaces on Nature during the Industrial Age - 10 Sustainable Solutions": 1 + "11th Grade History: The Impact of Steel-Making Technologies on Water Resources during the Industrial Age - 10 Conservation Solutions": 1 + "11th Grade History: The Influence of Iron Smelting on Forests during the Industrial Age - 10 Reforestation Solutions": 1 + "11th Grade History: The Impact of Steel Production Cyanide Leaching on Nature during the Industrial Age - 10 Decontamination Solutions": 1 + "11th Grade History: The Effect of Steel Milling on Air Quality during the Industrial Age - 10 Pollution Control Solutions": 1 + "11th Grade History: The Impact of Steel Manufacturing’s Carbon Emissions on Nature during the Industrial Age - 10 Carbon Reduction Solutions": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions Using Polynomials": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions through the Lens of Graphing Calculators": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions with Application of the Distributive Property": 1 + "6th Grade Mathematics: Understanding Algebraic Expressions through the Quadratic Formula": 1 + "6th Grade Mathematics: Algebraic Expressions and the Use of Digital Whiteboards": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Deep Dive into Linear Equations": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with the Aid of Mathematical Software": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions and the Power of Exponents": 1 + "6th Grade Mathematics: Algebraic Expressions and the Concept of Variables": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions Through the Use of Interactive Math Games": 1 + "5th Grade Science: Understanding Weather Patterns and Predictions through Barometers": 1 + "Meteorological Tools in 5th Grade Science: Focusing on Weather Patterns and Predictions": 1 + "5th Grade Science: Weather Patterns, Predictions and the Role of Anemometers": 1 + "The Impact of RADAR Technology on 5th Grade Science: Weather Patterns and Predictions": 1 + "5th Grade Science: Weather Patterns, Predictions and the Application of Weather Maps": 1 + "5th Grade Science: Exploring Weather Patterns and Predictions using Hygrometers": 1 + "5th Grade Science: Weather Patterns, Predictions and the Importance of Thermometers": 1 + "5th Grade Science: A Study of Weather Patterns and Predictions through Weather Satellites": 1 + "5th Grade Science: Weather Patterns and Predictions - An In-depth Look at Wind Vanes": 1 + "The Role of Rain Gauges in 5th Grade Science: Understanding Weather Patterns and Predictions.": 1 + "2nd Grade Science: Exploring Animal Habitats and Ecosystems through Microscope Use": 1 + "2nd Grade Science: Understanding Animal Habitats with Interactive Digital Maps": 1 + "2nd Grade Science: An Introduction to Animal Habitats and Ecosystems using 3D Printing": 1 + "2nd Grade Science: Learning About Animal Habitats through Virtual Reality Technology": 1 + "2nd Grade Science: Diving into Animal Ecosystems with Augmented Reality Tools": 1 + "2nd Grade Science: Discovering Animal Habitats through Drone Technology": 1 + "2nd Grade Science: An Introduction to Animal Habitats and Ecosystems with the Concept of Biodiversity": 1 + "2nd Grade Science: Exploring Animal Ecosystems with DIY Eco Terrariums": 1 + "2nd Grade Science: Introducing Animal Habitats using Robotics and Coding": 1 + "2nd Grade Science: Understanding Animal Habitats and Ecosystems Through the Lens of Climate Change.": 1 + "4th Grade Social Studies: Analyzing 20th Century Cultural Movements Through Fashion Using Photographic Evidence": 1 + "4th Grade Social Studies: Exploring 20th Century Cultural Movements Through Fashion with Interactive Timelines": 1 + "4th Grade Social Studies: Studying 20th Century Cultural Movements in Fashion Using Primary Source Documents": 1 + "4th Grade Social Studies: Interpreting 20th Century Cultural Movements Through Fashion with Data Visualization": 1 + "4th Grade Social Studies: Understanding 20th Century Cultural Movements Through Fashion with Video Documentary Analysis": 1 + "4th Grade Social Studies: Observing 20th Century Cultural Movements through Fashion using Artifacts": 1 + "4th Grade Social Studies: Diving into 20th Century Cultural Movements Through Fashion with Virtual Reality Experiences": 1 + "4th Grade Social Studies: Unraveling 20th Century Cultural Movements with Fashion using Newspaper Articles": 1 + "4th Grade Social Studies: Deciphering 20th Century Cultural Movements Through Fashion with Augmented Reality": 1 + "4th Grade Social Studies: Investigating 20th Century Cultural Movements Through Fashion using Digital Archives": 1 + "First Grade Elementary Computing: Introduction to Keyboard Skills using Microsoft Word": 1 + "First Grade Elementary Computing: Mastering Keyboard Skills with Google Docs": 1 + "First Grade Elementary Computing: Effective Keyboard Skills in Typing Club": 1 + "First Grade Elementary Computing: A Comprehensive Guide to Keyboard Skills on Typing.com": 1 + "First Grade Elementary Computing: Introduction to Keyboard Skills and Touch Typing Techniques": 1 + "First Grade Elementary Computing: Introduction to Keyboard Skills: A Focus on Typing Accuracy": 1 + "First Grade Elementary Computing: Introduction to Keyboard Skills in Microsoft Excel": 1 + "First Grade Elementary Computing: Exploring Keyboard Skills in Google Sheets": 1 + "First Grade Elementary Computing: Developing Keyboard Skills through Online Games": 1 + "First Grade Elementary Computing: Introduction to Keyboard Skills: Mastering Speed and Efficiency": 1 + "Ninth Grade History: Detailed Analysis of the American Revolution Through Primary Source Documents": 1 + "Ninth Grade History: Using Mapmaking Tools to Understand the American Revolution": 1 + "Ninth Grade History: Exploring the Role of Printing Press in the American Revolution": 1 + "Ninth Grade History: The Impact of Naval Technology in the American Revolution": 1 + "Ninth Grade History: Understanding the American Revolution Through Economic Concepts": 1 + "Ninth Grade History: Exploration of Espionage Techniques During the American Revolution": 1 + "Ninth Grade History: The Role of Medical Advancements in the American Revolution": 1 + "Ninth Grade History: Analyzing the American Revolution Through Political Cartoons": 1 + "Ninth Grade History: The Influence of Gunpowder Technology on the American Revolution": 1 + "Ninth Grade History: Decoding the American Revolution Through Cryptography.": 1 + "1st Grade Physical Education: Introduction to Soccer and Ball Control Techniques": 1 + "1st Grade Physical Education: Basics of Team Sports with Focus on Basketball Dribbling": 1 + "1st Grade Physical Education: Understanding the Rules and Tools of Baseball": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques": 1 + "1st Grade Physical Education: Basics of Football: Learning the Quarterback Techniques": 1 + "1st Grade Physical Education: Team Sports & Cricket: Mastering Batting Skills": 1 + "1st Grade Physical Education: Tennis Basics: Understanding Racquet Grip": 1 + "1st Grade Physical Education: Team Sports - Exploring Hockey Stick Handling": 1 + "1st Grade Physical Education: Rugby Fundamentals: Learning to Pass the Ball": 1 + "1st Grade Physical Education: Basics of Team Sports - The Art of Defense in Soccer": 1 + "6th Grade Music: Exploring the History of Symphony through Mozart’s Works": 1 + "6th Grade Music: Understanding Symphonic Evolution with Beethoven’s Innovations": 1 + "6th Grade Music: Discovering Symphony History through Sheet Music Analysis": 1 + "6th Grade Music: Exploring the History of Symphony using Digital Music Archives": 1 + "6th Grade Music: Symphony History and the Impact of the Piano Forte": 1 + "6th Grade Music: Analysis of the Symphony: A Deep Dive into Orchestration Techniques": 1 + "6th Grade Music: The Symphony’s History: From Quill to Digital Composition": 1 + "6th Grade Music: Exploring the Symphony with the Use of Music Transcription Software": 1 + "6th Grade Music: The Symphony’s History: A Study of the Conductor’s Role": 1 + "6th Grade Music: The Symphony’s Evolution: The Impact of Recording Technology": 1 + "5th Grade Art: Exploring Visual Composition with Acrylic Paints": 1 + "5th Grade Art: The Rhythm of Visual Composition using Digital Art Software": 1 + "5th Grade Art: The Rhythm of Visual Composition in Collage Making": 1 + "5th Grade Art: The Rhythm of Visual Composition and Charcoal Drawing": 1 + "5th Grade Art: The Rhythm of Visual Composition through Pottery": 1 + "5th Grade Art: The Rhythm of Visual Composition - An Introduction to Watercolors": 1 + "5th Grade Art: The Rhythm of Visual Composition with Mixed Media Techniques": 1 + "5th Grade Art: The Rhythm of Visual Composition - Sculpting Basics": 1 + "5th Grade Art: The Rhythm of Visual Composition in Origami": 1 + "5th Grade Art: Exploring Visual Composition using Pastels.": 1 + "2nd Grade Physical Education: Introducing Soccer with Ball Control Drills": 1 + "2nd Grade Physical Education: Basics of Basketball Featuring Dribbling Techniques": 1 + "2nd Grade Physical Education: Intro to Volleyball: Serving and Passing Skills ": 1 + "2nd Grade Physical Education: Exploring Baseball: Batting and Fielding Basics": 1 + "2nd Grade Physical Education: Understanding Teamwork through Relay Races": 1 + "2nd Grade Physical Education: Kickball Basics and Fielding Strategies": 1 + "2nd Grade Physical Education: Handball Fundamentals: Throwing and Catching Techniques": 1 + "2nd Grade Physical Education: Cricket Basics: Batting, Bowling and Fielding": 1 + "2nd Grade Physical Education: Learning Rugby: Passing and Kicking Skills": 1 + "2nd Grade Physical Education: Introduction to Dodgeball: Throwing and Dodging Techniques": 1 + "9th Grade Language Arts: Mastering Persuasive Writing with Rhetorical Devices": 1 + "Exploring Argumentative Techniques in 9th Grade Persuasive Writing": 1 + "9th Grade Language Arts: Utilizing Ethos, Pathos, and Logos in Persuasive Writing": 1 + "Mastering Persuasive Writing through Storytelling Techniques in 9th Grade Language Arts": 1 + "9th Grade Language Arts: Enhancing Persuasive Writing with Figurative Language": 1 + "Enhancing Persuasive Skills in 9th Grade Language Arts with Advanced Vocabulary": 1 + "9th Grade Language Arts: Structuring Arguments in Persuasive Writing": 1 + "Mastering Persuasive Writing with Evidence-Based Arguments in 9th Grade Language Arts": 1 + "9th Grade Language Arts: Using Digital Tools for Persuasive Writing": 1 + "9th Grade Language Arts: Mastering Persuasive Writing with Google Docs Collaboration": 1 + "8th Grade Music: Discovering Beethoven’s Symphonies Through Studio One MIDI Sequencers and Sibelius Notation Software": 1 + "8th Grade Music: Exploring Orchestration in Mozart’s Works with Studio One MIDI Sequencers and Audacity Audio Editor": 1 + "8th Grade Music: Understanding Bach’s Fugues Using Studio One MIDI Sequencers and GarageBand": 1 + "8th Grade Music: Decoding Classical Orchestration with Studio One MIDI Sequencers and The Concept of Counterpoint": 1 + "8th Grade Music: Studying Brahms’ Orchestration Techniques Through Studio One MIDI Sequencers and Pro Tools": 1 + "8th Grade Music: Exploring Orchestration in Classical Music Through the Lens of Studio One MIDI Sequencers and FL Studio": 1 + "8th Grade Music: Applying Studio One MIDI Sequencers and Ableton Live in Understanding Wagner’s Orchestration": 1 + "8th Grade Music: Analyzing Haydn’s Symphonies with Studio One MIDI Sequencers and Logic Pro X": 1 + "8th Grade Music: Delving into Vivaldi’s Concertos Using Studio One MIDI Sequencers and the Principles of Harmonic Progression": 1 + "8th Grade Music: Exploring Orchestration in Tchaikovsky’s Ballets Through Studio One MIDI Sequencers and Reaper Digital Audio Workstation": 1 + "1st Grade Environmental Studies: Implementing Solar Panels for Planet Care": 1 + "1st Grade Environmental Studies: Exploring Photovoltaic Cells for Solar Energy Implementation": 1 + "1st Grade Environmental Studies: Harnessing Solar Energy through Concentrated Solar Power": 1 + "1st Grade Environmental Studies: Using Solar Inverters for Efficient Energy Use": 1 + "1st Grade Environmental Studies: Understanding Solar Energy Storage for Planet Care": 1 + "1st Grade Environmental Studies: Utilizing Solar Charge Controllers for Energy Management": 1 + "1st Grade Environmental Studies: Exploring Solar Thermal Collectors for Energy Conversion": 1 + "1st Grade Environmental Studies: Implementing Grid-Tied Solar Systems for Sustainability": 1 + "1st Grade Environmental Studies: Understanding Monocrystalline Solar Panels for Planet Care": 1 + "1st Grade Environmental Studies: Using Polycrystalline Solar Panels for Energy Efficiency": 1 + "1st Grade Environmental Studies: Exploring Thin-Film Solar Cells for Energy Generation": 1 + "3rd Grade Health: Nutrition Education with Interactive Flashcard Games": 1 + "3rd Grade Health: Nutrition Education using Augmented Reality Games": 1 + "3rd Grade Health: Nutrition Education with Minecraft-based Interactive Games": 1 + "3rd Grade Health: Nutrition Education through Virtual Reality Cooking Games": 1 + "3rd Grade Health: Nutrition Education with Interactive Quizlet Games": 1 + "3rd Grade Health: Nutrition Education using 3D-Printing in Food Games": 1 + "3rd Grade Health: Nutrition Education through Interactive Board Games": 1 + "3rd Grade Health: Learning Nutrition via Interactive Mobile App Games": 1 + "3rd Grade Health: Nutrition Education with Robotic Interactive Games": 1 + "3rd Grade Health: Nutrition Education through Interactive Web-based Games": 1 + "2nd Grade Art and Color Theory with Watercolors": 1 + "Exploring Color Theory and Painting Techniques in 2nd Grade Art": 1 + "2nd Grade Art: Introduction to Color Theory and Paint Brushes": 1 + "Practical Color Theory in 2nd Grade Art using Pastels": 1 + "2nd Grade Art and Color Theory using Digital Art Software": 1 + "2nd Grade Art and Color Theory: Understanding Shades with Oil Pastels": 1 + "2nd Grade Art: Color Theory and Techniques with Acrylic Paints": 1 + "Molding Young Minds: 2nd Grade Art and Color Theory with Clay": 1 + "2nd Grade Art: Color Theory through Collage Making": 1 + "2nd Grade Art and Color Theory: Using Crayons to Understand Colors": 1 + "5th Grade Art: Mastering Watercolors with Flat Brushes": 1 + "5th Grade Art: Discovering Watercolors through Wet-on-Wet Technique": 1 + "5th Grade Art: Exploring Watercolors with Palette Knives": 1 + "5th Grade Art: Watercolor Artistry using Masking Fluid Techniques": 1 + "5th Grade Art: Unveiling Watercolors with Digital Tablet Technology": 1 + "5th Grade Art: Discovering Watercolors with Layering Techniques": 1 + "5th Grade Art: The Magic of Watercolors with Salt Texturing ": 1 + "5th Grade Art: Watercolors and the Science of Color Mixing": 1 + "5th Grade Art: Diving into Watercolors with Sponging Techniques": 1 + "5th Grade Art: Watercolor Wonders with Spray Bottle Techniques": 1 + "8th Grade World Cultures: Exploring Globalization through Case Studies using Mind Maps": 1 + "8th Grade World Cultures: Understanding Globalization through Case Studies with Virtual Reality": 1 + "8th Grade World Cultures: Analyzing Globalization through Case Studies using GIS Tools": 1 + "8th Grade World Cultures: Investigating Globalization through Case Studies using Digital Storytelling": 1 + "8th Grade World Cultures: Decoding Globalization through Case Studies with Infographics": 1 + "8th Grade World Cultures: Unpacking Globalization through Case Studies using Data Visualization": 1 + "8th Grade World Cultures: Examining Globalization through Case Studies with Simulation Games": 1 + "8th Grade World Cultures: Interpreting Globalization through Case Studies using Podcasts": 1 + "8th Grade World Cultures: Dissecting Globalization through Case Studies with 3D Printing": 1 + "8th Grade World Cultures: Understanding Globalization through Case Studies using Drone Technology": 1 + "10th Grade Music: Exploring Classical Composers through Piano": 1 + "10th Grade Music: Understanding Classical Composers via Digital Audio Workstations": 1 + "10th Grade Music: Discovering Classical Composers with Violin Techniques": 1 + "10th Grade Music: Studying Classical Composers through Music Theory Concepts": 1 + "10th Grade Music: Analyzing Classical Composers Using Music Notation Software": 1 + "10th Grade Music: Examining Classical Composers through the Lens of Harmony": 1 + "10th Grade Music: Delving into Classical Composers with MIDI Technology": 1 + "10th Grade Music: Investigating Classical Composers through Orchestration": 1 + "10th Grade Music: Learning about Classical Composers via Choral Arrangements": 1 + "10th Grade Music: Examining Classical Composers through the Perspective of Music History": 1 + "5th Grade Language Arts: Mastering Storytelling through Character Development using Dialogue Techniques": 1 + "5th Grade Language Arts: The Art of Storytelling using Character Development & Conflict Resolution": 1 + "5th Grade Language Arts: Storytelling & Character Development using Graphic Organizers": 1 + "5th Grade Language Arts: The Art of Storytelling with Character Development & Plot Structure": 1 + "5th Grade Language Arts: Exploring Storytelling through Character Development with Metaphors": 1 + "5th Grade Language Arts: The Art of Storytelling using Character Development & Digital Storyboarding": 1 + "5th Grade Language Arts: Storytelling & Character Development through Figurative Language": 1 + "5th Grade Language Arts: The Art of Storytelling using Character Development & Point of View": 1 + "5th Grade Language Arts: Mastering Storytelling through Character Development using Interactive Writing Tools": 1 + "5th Grade Language Arts: The Art of Storytelling & Character Development using Setting Exploration.": 1 + "Fifth Grade Social Studies: A Detailed Study of American Government through Interactive Timelines": 1 + "Fifth Grade Social Studies: Using Augmented Reality for an Introduction to American Government": 1 + "Fifth Grade Social Studies: Exploring the American Government with Digital Mapping Tools": 1 + "Fifth Grade Social Studies: Introduction to American Government and the Constitution with Interactive Quizzes": 1 + "Fifth Grade Social Studies: Learning American Government through Online Voting Simulations": 1 + "Fifth Grade Social Studies: Engaging with American Government through Virtual Reality Field Trips": 1 + "Fifth Grade Social Studies: Introduction to American Government - A Deep Dive into the Declaration of Independence Using Multimedia": 1 + "Fifth Grade Social Studies: Analyzing the American Government with Data Visualization Tools": 1 + "Fifth Grade Social Studies: Understanding American Government through Role-Playing Games": 1 + "Fifth Grade Social Studies: Discovering the American Government with Interactive Whiteboard Activities.": 1 + "5th Grade Mathematics: Mastering Multiplication and Division with Mathmateer App": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division using Prodigy Game ": 1 + "5th Grade Mathematics: Exploring Multiplication and Division with Number Frames App": 1 + "5th Grade Mathematics: Enhancing Skills in Multiplication and Division using Mathboard App": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division through Math Learning Center Tools": 1 + "5th Grade Mathematics: Strengthening Multiplication and Division Concepts with Math Playground": 1 + "5th Grade Mathematics: Hands-On Learning of Multiplication and Division using Zearn Math": 1 + "5th Grade Mathematics: Exploring Multiplication and Division Concepts with SplashLearn App ": 1 + "5th Grade Mathematics: Enhancing Multiplication and Division Skills through Khan Academy Lessons": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division using IXL Learning Platform.": 1 + "11th Grade Mathematics: Deep Dive into Algebra Fundamentals with Graphing Calculators": 1 + "Understanding Quadratic Equations: A Comprehensive 11th Grade Mathematics Course": 1 + "Advanced Algebra: Exploring Matrices in 11th Grade Mathematics": 1 + "11th Grade Mathematics: A Focus on Algebraic Expressions using GeoGebra": 1 + "Algebra Fundamentals in 11th Grade Mathematics: Exploring Polynomial Functions": 1 + "11th Grade Mathematics: Algebra Fundamentals and the use of Desmos": 1 + "Exploring Linear Equations: An 11th Grade Mathematics Course": 1 + "11th Grade Mathematics: Algebra Fundamentals and the Power of Wolfram Alpha": 1 + "Algebra Fundamentals: A Focus on Systems of Equations in 11th Grade Mathematics": 1 + "11th Grade Mathematics: A Course on Algebra Fundamentals with a focus on Factoring Techniques.": 1 + "Utilizing Zoom: Enhancing Fifth Grade Social Studies through American Government Learning via Online Voting Simulations": 1 + "Interactive Whiteboards in Fifth Grade Social Studies: Learning American Government through Online Voting Simulations": 1 + "Learning Management Systems in Fifth Grade Social Studies: Exploring American Government through Online Voting Simulations": 1 + "Google Classroom Integration: Fifth Grade Social Studies Learning American Government through Online Voting Simulations": 1 + "Kahoot! for Fifth Grade Social Studies: Understanding American Government through Online Voting Simulations": 1 + "Microsoft Teams in Fifth Grade Social Studies: Studying American Government through Online Voting Simulations": 1 + "Flipgrid in Fifth Grade Social Studies: Learning American Government through Online Voting Simulations": 1 + "Fifth Grade Social Studies: Learning American Government through Online Voting Simulations using Edmodo": 1 + "Using Padlet in Fifth Grade Social Studies: Understanding American Government through Online Voting Simulations": 1 + "Fifth Grade Social Studies: Learning American Government through Online Voting Simulations with the aid of Quizlet.": 1 + "9th Grade Music: Exploring Symphony of Sounds through the Piano": 1 + "9th Grade Music: Symphony of Sounds - A Deep Dive into Violins": 1 + "9th Grade Music: Symphony of Sounds and the Art of Composing": 1 + "9th Grade Music: Symphony of Sounds - Understanding Music Production Technology": 1 + "9th Grade Music: Symphony of Sounds - The Role of the Conductor": 1 + "9th Grade Music: Symphony of Sounds with a Focus on Woodwind Instruments": 1 + "9th Grade Music: Symphony of Sounds - An Introduction to Music Theory": 1 + "9th Grade Music: Symphony of Sounds - Exploring the Digital Audio Workstations": 1 + "9th Grade Music: Symphony of Sounds - Discovering Percussion Instruments": 1 + "9th Grade Music: Symphony of Sounds - The Dynamics of Choir Singing": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies and the Impact of the Piano Forte": 1 + "6th Grade Music: The Evolution of Symphony and the Role of the Metronome": 1 + "6th Grade Music: Symphony History and the Influence of the Harpsichord on the Piano Forte": 1 + "6th Grade Music: The Impact of the Piano Forte and the Advent of Sheet Music": 1 + "6th Grade Music: Symphony History and the Piano Forte’s Role in Classical Music": 1 + "6th Grade Music: The Influence of the Symphony on the Development of the Piano Forte": 1 + "6th Grade Music: Analyzing the Symphony and the Impact of the Piano Forte in the Baroque Era": 1 + "6th Grade Music: The Role of the Piano Forte in Symphony Composition and the Use of Crescendo": 1 + "6th Grade Music: The Symphony’s History and the Impact of the Piano Forte’s Pedal Innovation": 1 + "6th Grade Music: Symphony History and the Impact of the Piano Forte’s Tuning Fork Technology.": 1 + "First Grade Environmental Studies: Exploring Our Green World through Composting": 1 + "First Grade Environmental Studies: Our Green World and Rainwater Harvesting": 1 + "First Grade Environmental Studies: Learning about Our Green World with Solar Energy": 1 + "First Grade Environmental Studies: Our Green World: An Introduction to Recycling": 1 + "First Grade Environmental Studies: Our Green World through the Lens of Wind Energy": 1 + "First Grade Environmental Studies: Understanding Our Green World through Forest Conservation": 1 + "First Grade Environmental Studies: Our Green World and the Power of Hydroelectric Energy": 1 + "First Grade Environmental Studies: Embracing Our Green World with Organic Farming": 1 + "First Grade Environmental Studies: Our Green World: A Journey into Wildlife Preservation": 1 + "First Grade Environmental Studies: Navigating Our Green World with Geothermal Energy": 1 + "2nd Grade History: Life in the Middle Ages - Exploring the Feudal System": 1 + "2nd Grade History: Life in the Middle Ages - The Power of the Church": 1 + "2nd Grade History: Life in the Middle Ages - Understanding the Role of Knights": 1 + "2nd Grade History: Life in the Middle Ages - The Art of Chivalry": 1 + "2nd Grade History: Life in the Middle Ages - The Importance of Castles": 1 + "2nd Grade History: Life in the Middle Ages - Daily Life of a Serf": 1 + "2nd Grade History: Life in the Middle Ages - The Black Death and its Impact": 1 + "2nd Grade History: Life in the Middle Ages - The Influence of the Crusades": 1 + "2nd Grade History: Life in the Middle Ages - The Development of Guilds": 1 + "2nd Grade History: Life in the Middle Ages - The Invention of the Printing Press": 1 + "2nd Grade Art: Intro to Sketching with Pencil": 1 + "2nd Grade Art: Basics of Charcoal Sketching": 1 + "2nd Grade Art: Exploring Proportions in Sketching": 1 + "2nd Grade Art: Sketching & Shading Techniques Introduction": 1 + "2nd Grade Art: Introduction to Sketching with Graphite": 1 + "2nd Grade Art: Intro to Sketching using Digital Tablets": 1 + "2nd Grade Art: Focusing on Line Quality in Sketching": 1 + "2nd Grade Art: Introduction to Sketching Animals": 1 + "2nd Grade Art: Intro to Sketching Landscapes": 1 + "2nd Grade Art: Sketching Portraits for Beginners": 1 + "6th Grade Language Arts: Mastering Grammar and Sentence Structure using Interactive Whiteboards": 1 + "6th Grade Language Arts: Exploring Sentence Structure with Microsoft Word Tools": 1 + "6th Grade Language Arts: Advanced Grammar Mastery using Quizlet Flashcards": 1 + "6th Grade Language Arts: Understanding Sentence Structure with Google Classroom": 1 + "6th Grade Language Arts: Grammar Excellence with Grammarly Technology ": 1 + "6th Grade Language Arts: Sentence Structure Deep Dive using Prezi Presentations": 1 + "6th Grade Language Arts: Grammar Proficiency through iPad Apps": 1 + "6th Grade Language Arts: Sentence Structure Mastery with the Use of SMART Boards": 1 + "6th Grade Language Arts: Grammar Enhancement with Rosetta Stone Software": 1 + "6th Grade Language Arts: Perfecting Sentence Structure using Kahoot Quizzes": 1 + "5th Grade Science: Investigating Ecosystems Through pH Meter Soil Analysis": 1 + "5th Grade Science: Exploring Ecosystems Through Microscope Soil Study": 1 + "5th Grade Science: Discovering Ecosystems with Soil Test Kit Analysis": 1 + "5th Grade Science: Inspecting Ecosystems Through Chromatography Soil Analysis": 1 + "5th Grade Science: Uncovering Ecosystems Through Nitrogen Cycle Soil Study": 1 + "5th Grade Science: Examining Ecosystems Using Digital Soil Thermometer": 1 + "5th Grade Science: Probing Ecosystems Through Magnetic Soil Analysis": 1 + "5th Grade Science: Investigating Ecosystems with Infrared Spectroscopy Soil Analysis": 1 + "5th Grade Science: Studying Ecosystems Through Biological Indicator Soil Analysis": 1 + "5th Grade Science: Delving into Ecosystems through Water Holding Capacity Soil Analysis": 1 + "4th Grade Science: Exploring the Solar System with Telescopes": 1 + "4th Grade Science: Hands-on Learning of the Solar System with 3D Models": 1 + "4th Grade Science: Investigating the Solar System Using VR Technology": 1 + "4th Grade Science: Study of the Solar System with the use of Planetarium Software": 1 + "4th Grade Science: Discovering the Solar System through Space Probe Data": 1 + "4th Grade Science: Solar System Studies incorporating the Concept of Gravity": 1 + "4th Grade Science: Interactive Digital Mapping of the Solar System": 1 + "4th Grade Science: Solar System Studies with a Focus on Planetary Motion": 1 + "4th Grade Science: Solar System Studies using Augmented Reality Apps": 1 + "4th Grade Science: A Comprehensive Study of the Solar System with Astrophotography.": 1 + "2nd Grade Music: Exploring Basic Rhythm Concepts using Metronomes and Percussion Instruments": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Music Notation Software": 1 + "2nd Grade Music: Understanding Basic Rhythm with Metronomes and the Use of Tempo": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Interactive Music Games": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Beat Counting Techniques": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Clapping Exercises": 1 + "2nd Grade Music: Teaching Basic Rhythm Concepts using Metronomes and Digital Audio Workstations": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Syncopation Techniques": 1 + "2nd Grade Music: Enhancing Basic Rhythm Concepts using Metronomes and Drumming Patterns": 1 + "2nd Grade Music: Basic Rhythm Concepts using Metronomes and Music Composition Apps": 1 + "7th Grade Language Arts: Exploring Poetry and Drama with Interactive E-books using Google Classroom": 1 + "7th Grade Language Arts: Understanding Poetry and Drama through Interactive E-books and Augmented Reality": 1 + "7th Grade Language Arts: Engaging with Poetry and Drama using Interactive E-books and VoiceThread Discussions": 1 + "7th Grade Language Arts: Analyzing Poetry and Drama through Interactive E-books and Digital Mind Mapping": 1 + "7th Grade Language Arts: Studying Poetry and Drama with Interactive E-books and Prezi Presentations": 1 + "7th Grade Language Arts: Investigating Poetry and Drama using Interactive E-books and Virtual Reality": 1 + "7th Grade Language Arts: Learning Poetry and Drama through Interactive E-books and Collaborative Google Docs": 1 + "7th Grade Language Arts: Discovering Poetry and Drama with Interactive E-books and Quizlet Assessments": 1 + "7th Grade Language Arts: Delving into Poetry and Drama through Interactive E-books and Flipgrid Video Responses": 1 + "7th Grade Language Arts: Immersing in Poetry and Drama using Interactive E-books and Padlet Brainstorms.": 1 + "9th Grade Health: Understanding Nutrition and Wellness through Calorie Counting ": 1 + "9th Grade Health: Nutrition and Wellness with Focus on Dietary Plans ": 1 + "9th Grade Health: Exploring Wellness through Nutritional Apps ": 1 + "9th Grade Health: Nutrition and Wellness - A Deep Dive into Macronutrients": 1 + "9th Grade Health: Nutrition and Wellness in the Digital Era ": 1 + "9th Grade Health: Nutrition and Wellness - Exploring BMI Tools ": 1 + "9th Grade Health: Nutrition and Wellness - Understanding Food Labels ": 1 + "9th Grade Health: Nutrition and Wellness - Incorporating Fitness Trackers ": 1 + "9th Grade Health: Nutrition and Wellness - Understanding Metabolic Rate ": 1 + "9th Grade Health: Nutrition and Wellness - A Look into Portion Control Techniques": 1 + "7th Grade Art: Creating Wildlife Portraits with Watercolors": 1 + "7th Grade Art: Drawing Wildlife Portraits using Charcoal": 1 + "7th Grade Art: Creating Wildlife Portraits using Digital Software": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques": 1 + "7th Grade Art: Creating Wildlife Portraits using Oil Pastels": 1 + "7th Grade Art: Creating Wildlife Portraits with Acrylic Paints": 1 + "7th Grade Art: Making Wildlife Portraits using Sculpture Techniques": 1 + "7th Grade Art: Creating Wildlife Portraits: A Study in Pencil Sketching": 1 + "7th Grade Art: Creating Wildlife Portraits using Mixed Media": 1 + "7th Grade Art: Creating Wildlife Portraits with Gouache Painting Techniques": 1 + "5th Grade Art: Creating Visual Rhythms with Adobe Illustrator": 1 + "Digital Composition Mastery: Using Layers in Photoshop for 5th Grade Art": 1 + "The Art of Rhythm: Applying Color Theory in Digital Art for 5th Graders": 1 + "5th Grade Art: Exploring Visual Rhythms with Procreate’s Brush Tools": 1 + "Visual Composition for 5th Graders: Understanding Linearity with Corel Painter": 1 + "5th Grade Art: The Rhythm of Visual Composition Using Wacom Tablet": 1 + "The Rhythm of Visual Composition in 5th Grade Art: An Introduction to Pixlr’s Photo Manipulation": 1 + "5th Grade Art: Exploring Rhythm and Balance with Autodesk SketchBook ": 1 + "5th Grade Art: Visual Composition Rhythms with GIMP’s Filters and Effects": 1 + "Paint.Net for 5th Graders: The Rhythm of Visual Composition in Digital Art": 1 + "4th Grade History: Exploring the American Revolution through Maps": 1 + "4th Grade History: Decoding the American Revolution with Cipher": 1 + "4th Grade History: Visualizing the American Revolution with Timelines": 1 + "4th Grade History: Navigating the American Revolution with Compasses": 1 + "4th Grade History: Investigating the American Revolution with Primary Sources": 1 + "4th Grade History: Experiencing the American Revolution through Virtual Reality": 1 + "4th Grade History: Understanding the American Revolution with Political Cartoons": 1 + "4th Grade History: Journey through the American Revolution using Document Analysis": 1 + "4th Grade History: Learning the American Revolution with Augmented Reality": 1 + "4th Grade History: Exploring the American Revolution through the Lens of Photography": 1 + "7th Grade Language Arts: Exploring Science Fiction and the Concept of Artificial Intelligence": 1 + "7th Grade Language Arts: Science Fiction and the Impact of Virtual Reality": 1 + "7th Grade Language Arts: Understanding Science Fiction through the Lens of Nanotechnology": 1 + "7th Grade Language Arts: Science Fiction and the Role of Quantum Computing": 1 + "7th Grade Language Arts: Decoding Science Fiction with the Concept of Time Travel": 1 + "7th Grade Language Arts: Science Fiction and the Influence of Robotics": 1 + "7th Grade Language Arts: Diving into Science Fiction and the Implications of Genetic Engineering": 1 + "7th Grade Language Arts: Science Fiction and the Revolution of Space Exploration": 1 + "7th Grade Language Arts: Analyzing Science Fiction and the Possibilities of Teleportation": 1 + "7th Grade Language Arts: Science Fiction and the Evolution of Communication Technology": 1 + "4th Grade Science: Discovering Earth’s Biomes through Microscope Examination": 1 + "4th Grade Science: Navigating Earth’s Biomes with GPS Technology": 1 + "4th Grade Science: Exploring Earth’s Biomes Using Satellite Imagery": 1 + "4th Grade Science: Understanding Earth’s Biomes through Climate Data Analysis": 1 + "4th Grade Science: Investigating Earth’s Biomes with Soil Testing Kits": 1 + "4th Grade Science: Studying Earth’s Biomes through Biodiversity Metrics": 1 + "4th Grade Science: Exploring Earth’s Biomes: An Intro to Ecosystem Services": 1 + "4th Grade Science: Earth’s Biomes and the Role of Photosynthesis": 1 + "4th Grade Science: Observing Earth’s Biomes Using Drone Technology": 1 + "4th Grade Science: Exploring Earth’s Biomes and Understanding Food Chains": 1 + "9th Grade Social Studies: Exploration of Ancient Egyptian Hieroglyphics": 1 + "9th Grade Social Studies: Understanding the Roman Aqueducts in Ancient Civilizations": 1 + "9th Grade Social Studies: Analyzing the Wheel’s Impact in Ancient Civilizations": 1 + "9th Grade Social Studies: The Influence of the Phoenician Alphabet in Ancient Civilizations": 1 + "9th Grade Social Studies: Ancient Civilizations and the Art of Bronze Casting": 1 + "9th Grade Social Studies: The Role of the Abacus in Ancient Chinese Civilizations": 1 + "9th Grade Social Studies: Ancient Civilizations and the Invention of the Saddle": 1 + "9th Grade Social Studies: Ancient Civilizations and the Evolution of Papyrus in Egypt": 1 + "9th Grade Social Studies: The Impact of Irrigation Systems in Ancient Mesopotamian Civilizations": 1 + "9th Grade Social Studies: The Use of the Sundial in Ancient Civilizations.": 1 + "2nd Grade Science: Exploring Animal Habitats with Digital Thermometers": 1 + "2nd Grade Science: Monitoring Animal Habitats Using Humidity Sensors": 1 + "2nd Grade Science: Studying Animal Habitats Through Soil pH Sensors": 1 + "2nd Grade Science: Using Drones for Animal Habitat Surveys": 1 + "2nd Grade Science: Learning about Animal Habitats with Infrared Cameras": 1 + "2nd Grade Science: Animal Habitats and Use of GPS Tracking Technology": 1 + "2nd Grade Science: Observing Animal Habitats with Microscopes": 1 + "2nd Grade Science: Animal Habitats Explored Through Weather Station Data": 1 + "2nd Grade Science: Understanding Animal Habitats Using Satellite Imagery": 1 + "2nd Grade Science: Investigating Animal Habitats with Motion Sensor Cameras": 1 + "8th Grade Music: The Evolution of Classical Music and the Impact of the Metronome on Beethoven’s Symphonies": 1 + "The Influence of Piano Forte: A Study of 8th Grade Music, Classical Music Evolution, and Metronome Impact": 1 + "8th Grade Music: Exploring Classical Music’s Development and Metronome Impact through the Lens of Sheet Music": 1 + "The Impact of Strings: 8th Grade Music and the Evolution of Classical Music with the Metronome ": 1 + "8th Grade Music: How the Classical Music Scene Changed with the Metronome and the Rise of the Violin": 1 + "8th Grade Music: Understanding the Evolution of Classical Music and the Role of the Metronome in the Age of Harpsichord ": 1 + "The Brass Revolution: 8th Grade Music, Classical Music Evolution and Metronome’s Impact on Trumpet Compositions": 1 + "8th Grade Music: The Evolution of Classical Music, the Metronome, and the Transformation brought by the Conductor’s Baton": 1 + "8th Grade Music: The Metronome’s Impact on the Evolution of Classical Music and the Development of the Orchestra": 1 + "The Power of Percussion: 8th Grade Music’s Exploration into Classical Music’s Evolution and Metronome Usage.": 1 + "1st Grade Language Arts: Vocabulary Building with Picture Flashcards": 1 + "1st Grade Language Arts: Vocabulary Enhancement using Storybooks": 1 + "1st Grade Language Arts: Vocabulary Development with Digital Apps": 1 + "1st Grade Language Arts: Vocabulary Expansion through Interactive Games": 1 + "1st Grade Language Arts: Vocabulary Building using Phonics Method": 1 + "1st Grade Language Arts: Vocabulary Growth with Animated Videos": 1 + "1st Grade Language Arts: Vocabulary Building through Rhyme and Song": 1 + "1st Grade Language Arts: Vocabulary Enrichment using Tablet-Based Activities": 1 + "1st Grade Language Arts: Vocabulary Advancement through Puzzles": 1 + "1st Grade Language Arts: Vocabulary Building with Storytelling Techniques": 1 + "3rd Grade Mathematics: Introduction to Fractions using Number Lines": 1 + "3rd Grade Mathematics: Mastering Fractions with Interactive Whiteboards": 1 + "3rd Grade Mathematics: Understanding Fractions through Fraction Bars": 1 + "3rd Grade Mathematics: Exploring Fractions with Digital Manipulatives ": 1 + "3rd Grade Mathematics: Fraction Fundamentals using Fraction Circles": 1 + "3rd Grade Mathematics: Learning Fractions with iPads": 1 + "3rd Grade Mathematics: Fraction Basics through Fraction Strips": 1 + "3rd Grade Mathematics: Fraction Concepts using Visual Models": 1 + "3rd Grade Mathematics: Fraction Principles with Montessori Materials ": 1 + "3rd Grade Mathematics: Grasping Fractions through Virtual Reality Technology": 1 + "2nd Grade Language Arts: Enhancing Storytelling and Narration with Digital Tools": 1 + "Introduction to Puppetry: A Unique Approach to 2nd Grade Language Arts Storytelling ": 1 + "2nd Grade Language Arts: Storytelling and Narration through Interactive Whiteboards": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course": 1 + "2nd Grade Language Arts: Exploring Storytelling with Animation Software": 1 + "The Art of Storytelling and Narration in 2nd Grade Language Arts: A Focus on iPad Applications": 1 + "2nd Grade Language Arts: Storytelling and Narration using Virtual Reality Tools": 1 + "2nd Grade Language Arts: Enhancing Narration Skills with Podcasting": 1 + "Digital Storybooks: A New Approach to 2nd Grade Language Arts Storytelling": 1 + "2nd Grade Language Arts: Leveraging Technology for Improved Storytelling and Narration.": 1 + "4th Grade Mathematics: Understanding Algebra through Fractions": 1 + "4th Grade Mathematics: Algebra Basics with the Aid of Calculators": 1 + "4th Grade Mathematics: Algebra and the Importance of Number Lines": 1 + "4th Grade Mathematics: Introducing Algebra Using Geometric Shapes": 1 + "4th Grade Mathematics: Algebra and the Role of Digital Tools": 1 + "4th Grade Mathematics: Algebra with the Use of Interactive Whiteboards": 1 + "4th Grade Mathematics: Algebra Simplified Through Graphical Representations": 1 + "4th Grade Mathematics: Introduction to Algebra via Mathematical Software": 1 + "4th Grade Mathematics: Algebra and the Application of Digital Flashcards": 1 + "4th Grade Mathematics: Algebra Learning Through Virtual Manipulatives": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor in Computer History": 1 + "6th Grade Social Studies: The Impact of Alan Turing and His Machine on Computer History": 1 + "6th Grade Social Studies: The Introduction of Personal Computers in the Technological Timeline": 1 + "6th Grade Social Studies: The Revolution of the Internet in Computer History": 1 + "6th Grade Social Studies: The Role of Binary Code in the Development of Computers": 1 + "6th Grade Social Studies: The Influence of Programming Languages on Computer Technology": 1 + "6th Grade Social Studies: The Progression of Computer Graphics Over Time": 1 + "6th Grade Social Studies: The History of Computer Storage Devices": 1 + "6th Grade Social Studies: The Impact of the World Wide Web on Society and Computer Technology": 1 + "6th Grade Social Studies: The Significance of Artificial Intelligence in the History of Computers": 1 + "7th Grade Art: Introduction to Pencil Shading Techniques": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques": 1 + "7th Grade Art: Introduction to Digital Drawing Techniques": 1 + "7th Grade Art: Introduction to Drawing Techniques using Graphite": 1 + "7th Grade Art: Introduction to Perspective Drawing Techniques": 1 + "7th Grade Art: Introduction to Conte Crayon Drawing Techniques": 1 + "7th Grade Art: Introduction to Drawing Techniques using Pastels": 1 + "7th Grade Art: Introduction to Figure Drawing Techniques": 1 + "7th Grade Art: Introduction to Drawing Techniques using Tablets": 1 + "7th Grade Art: Introduction to Drawing Techniques in 3D Software": 1 + "7th Grade Art: Introduction to Drawing Techniques using Watercolor Pencils": 1 + "7th Grade Science: Exploring Roller Coaster Physics using Unity 3D Simulation and Energy Conservation": 1 + "7th Grade Science: Understanding Roller Coaster Physics through MATLAB Simulation and Energy Conservation": 1 + "7th Grade Science: A Detailed Study of Roller Coaster Physics with Python Programming, Simulation, and Energy Conservation": 1 + "7th Grade Science: Examining Roller Coaster Physics Using AutoCAD and Energy Conservation Principles": 1 + "7th Grade Science: A Deep Dive into Roller Coaster Physics using Virtual Reality Simulations and Energy Conservation": 1 + "7th Grade Science: Studying Roller Coaster Physics with Arduino Microcontrollers, Energy Conservation and Simulation": 1 + "7th Grade Science: Investigating Roller Coaster Physics using JavaScript Simulations and Laws of Energy Conservation": 1 + "7th Grade Science: A Comprehensive Study of Roller Coaster Physics with Raspberry Pi, Simulation, and Energy Conservation": 1 + "7th Grade Science: Exploring Roller Coaster Physics using Scratch Programming, Simulation and Energy Conservation": 1 + "7th Grade Science: Delving into Roller Coaster Physics using Unreal Engine Simulation and the Principles of Energy Conservation.": 1 + "1st Grade Art: Exploring Colors of Nature with Watercolors": 1 + "1st Grade Art: Introduction to Acrylics in Nature Artwork": 1 + "1st Grade Art: Understanding the Colors of Nature Through Collage": 1 + "1st Grade Art: Exploring Nature with Pastels": 1 + "1st Grade Art: Color Theory and Nature in Crayon Art": 1 + "1st Grade Art: Nature’s Palette: An Oil Pastel Journey": 1 + "1st Grade Art: Exploring Colors of Nature with Digital Art Tools": 1 + "1st Grade Art: Color Mixing: Nature’s Hues with Tempera Paints": 1 + "1st Grade Art: Nature’s Spectrum: Exploring with Marker Art": 1 + "1st Grade Art: Discovering Nature’s Colors with Printmaking Techniques": 1 + "8th Grade Art: The Basics of Sketching with Graphite Pencils": 1 + "8th Grade Art: Exploring Charcoal Sketching Techniques": 1 + "8th Grade Art: Introduction to Sketching using Digital Tablets": 1 + "8th Grade Art: The Basics of Sketching with Pen and Ink": 1 + "8th Grade Art: Understanding Shading Techniques in Sketching": 1 + "8th Grade Art: Sketching Basics and the Use of Blending Stumps": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality": 1 + "8th Grade Art: The Basics of Sketching: Introduction to Hatching and Cross-Hatching": 1 + "8th Grade Art: The Basics of Sketching: From Concept to Creation": 1 + "8th Grade Art: The Basics of Sketching: Developing Perspective and Depth": 1 + "5th Grade Music: Mastering Treble Clef Reading with Flashcards": 1 + "5th Grade Music: Understanding Bass Clef Notes using Interactive Software": 1 + "5th Grade Music: Reading Music Notes with Piano": 1 + "5th Grade Music: A Deep Dive into Music Theory and Note Reading": 1 + "5th Grade Music: Using Smartboard for Reading Music Notes": 1 + "5th Grade Music: Exploring Rhythm Notation with Percussion Instruments": 1 + "5th Grade Music: Reading Music Notes with iPad Apps": 1 + "5th Grade Music: Interpreting Ledger Lines in Music Notation": 1 + "5th Grade Music: Reading Music Notes using Virtual Reality Technology": 1 + "5th Grade Music: Learning Music Notes through Singing and Voice Recognition Software": 1 + "7th Grade Art: Creating Wildlife Portraits With Graphite Pencils: A Detailed Study in Pencil Sketching Techniques": 1 + "7th Grade Art: Exploring Wildlife Portraits Through Charcoal: An Introduction to Pencil Sketching": 1 + "7th Grade Art: Creating Lifelike Wildlife Portraits: A Study in Pencil Sketching with Eraser Techniques": 1 + "7th Grade Art: Wildlife Portraits in Pencil: A Study in Sketching Using Blending Stumps": 1 + "7th Grade Art: Creating Wildlife Portraits: An In-depth Study in Pencil Sketching Using Grayscale Techniques": 1 + "7th Grade Art: Crafting Wildlife Portraits: A Study in Pencil Sketching and Shading Techniques": 1 + "7th Grade Art: Wildlife Portraits in Pencil: An Exploration of Sketching with Tortillons": 1 + "7th Grade Art: Creating Wildlife Portraits: A Study in Pencil Sketching Using Cross-Hatching Techniques": 1 + "7th Grade Art: Wildlife Portraits: A Study in Pencil Sketching with Emphasis on Lighting and Shadows": 1 + "7th Grade Art: Building Wildlife Portraits: A Study in Pencil Sketching Using Layering Techniques": 1 + "7th Grade Biology: An In-depth Study of the Nervous System Using Microscopes": 1 + "7th Grade Biology: Exploring the Circulatory System through Hemoglobin Analysis": 1 + "7th Grade Biology: Basics of Human Body Systems with a Focus on DNA Sequencing": 1 + "7th Grade Biology: Understanding the Respiratory System through Spirometry": 1 + "7th Grade Biology: The Digestive System Explored through Enzyme Reaction Experiments": 1 + "7th Grade Biology: Investigating the Skeletal System Using X-Ray Technology": 1 + "7th Grade Biology: A Closer Look at the Endocrine System Using Hormonal Tests": 1 + "7th Grade Biology: The Muscular System and its Examination through Electromyography": 1 + "7th Grade Biology: Understanding the Human Immune System through Antibody Testing": 1 + "7th Grade Biology: Basics of Human Body Systems with a Special Focus on Cell Division and Microscopy.": 1 + "11th Grade History: The Impact of Steel Milling on Air Quality in the Industrial Age - Exploring the Use of Scrubbers: Solution 1": 1 + "11th Grade History: The Role of Electrostatic Precipitators in Combating Air Pollution in Steel Mills during the Industrial Age: Solution 2": 1 + "11th Grade History: The Industrial Age’s Steel Milling Air Pollution - The Introduction of Baghouse Filters: Solution 3 ": 1 + "11th Grade History: Understanding Air Quality and the Application of Carbon Capture in the Industrial Age’s Steel Milling: Solution 4": 1 + "11th Grade History: The Effect of Steel Milling on Air Quality during the Industrial Age - The Promise of Catalytic Converters: Solution 5": 1 + "11th Grade History: Technological Innovations in Steel Milling - The Role of Cyclone Collectors in Improving Air Quality during the Industrial Age: Solution 6": 1 + "11th Grade History: The Industrial Age - Steel Milling, Air Quality, and the Introduction of Wet Scrubbers: Solution 7": 1 + "11th Grade History: The Impact of Steel Milling on Air Quality during the Industrial Age - The Emergence of Venturi Scrubbers: Solution 8": 1 + "11th Grade History: Air Quality and Steel Milling in the Industrial Age - The Role of Biofilters in Pollution Control: Solution 9": 1 + "11th Grade History: The Industrial Age’s Steel Milling and Air Quality - The Innovation of Absorption Towers: Solution 10": 1 + "5th Grade Science: Analyzing Climate Change and Ecosystems using Google Earth and Python for Data Analysis": 1 + "5th Grade Science: Utilizing Satellite Imagery in Google Earth to Study Climate Change and Ecosystems": 1 + "5th Grade Science: Using Google Earth and GIS Techniques to Analyze Climate Change and Ecosystems": 1 + "5th Grade Science: Incorporating Thermodynamics into Google Earth Climate Change and Ecosystem Analysis": 1 + "5th Grade Science: Applying Google Earth and Remote Sensing Technology to Assess Climate Change and Ecosystems": 1 + "5th Grade Science: Climate Change and Ecosystems Analysis using Google Earth and Machine Learning Algorithms": 1 + "5th Grade Science: Using Google Earth in Conjunction with Climate Modelling to Analyze Climate Change and Ecosystems": 1 + "5th Grade Science: Exploring Climate Change and Ecosystems using Google Earth and Carbon Dating Techniques": 1 + "5th Grade Science: Analyzing Climate Change and Ecosystems with Google Earth and Drone Mapping Technology": 1 + "5th Grade Science: Implementing Google Earth and Spectral Analysis in Studying Climate Change and Ecosystems": 1 + "7th Grade Introduction to Chemistry: Understanding the Periodic Table": 1 + "7th Grade Introduction to Chemistry: Exploring Chemical Reactions": 1 + "7th Grade Introduction to Chemistry: The Science of Elements": 1 + "7th Grade Introduction to Chemistry: An Introduction to Lab Equipment": 1 + "7th Grade Introduction to Chemistry: The Role of Atoms and Molecules": 1 + "7th Grade Introduction to Chemistry: Basics of Acid and Base Reactions": 1 + "7th Grade Introduction to Chemistry: Learning about Organic Chemistry": 1 + "7th Grade Introduction to Chemistry: Introduction to Chemical Bonding": 1 + "7th Grade Introduction to Chemistry: Using Microscopes in Chemistry": 1 + "7th Grade Introduction to Chemistry: Understanding Chemical Equations": 1 + "6th Grade Physical Education: Fitness and Health Awareness through Yoga": 1 + "6th Grade Physical Education: Learning Health Awareness with Heart Rate Monitors": 1 + "6th Grade Physical Education: Incorporating Exercise Bikes for Fitness": 1 + "6th Grade Physical Education: Fitness and Health Awareness through Dance Aerobics": 1 + "6th Grade Physical Education: Utilizing Pedometers for Fitness Tracking": 1 + "6th Grade Physical Education: Understanding Health Awareness through Nutritional Learning": 1 + "6th Grade Physical Education: Fitness and Health Awareness with Resistance Bands": 1 + "6th Grade Physical Education: Fitness through Treadmill Exercises": 1 + "6th Grade Physical Education: Health Awareness through Body Mass Index Learning": 1 + "6th Grade Physical Education: Fitness and Health Awareness using Fitness Apps": 1 + "2nd Grade Art: Drawing Basics with Graphite Pencils - Introduction to Sketching Landscapes": 1 + "2nd Grade Art: Charcoal Techniques - Landscapes Sketching Basics": 1 + "2nd Grade Art: Introduction to Pencil Shading in Landscape Sketching": 1 + "2nd Grade Art: Intro to Sketching Landscapes with Pastels": 1 + "2nd Grade Art: Sketching Landscapes - An Introduction to Proportion Concepts": 1 + "2nd Grade Art: Mastering Perspective in Landscape Sketching": 1 + "2nd Grade Art: Introduction to Landscape Sketching Using Digital Tablets": 1 + "2nd Grade Art: Sketching Landscapes with Watercolor Pencils - An Introduction": 1 + "2nd Grade Art: Introduction to Sketching Landscapes - Focus on Light and Shadow": 1 + "2nd Grade Art: Applying Color Theory in Landscape Sketching - An Introduction": 1 + "10th Grade Social Studies: Understanding World War II through Radio Communication Technology": 1 + "10th Grade Social Studies: Decoding World War II with Enigma Machine": 1 + "10th Grade Social Studies: The Influence of the Manhattan Project on World War II": 1 + "10th Grade Social Studies: World War II: A Deep Dive into the Blitzkrieg Tactic": 1 + "10th Grade Social Studies: The Role of Cryptography in World War II": 1 + "10th Grade Social Studies: The Impact of Radar Technology on World War II ": 1 + "10th Grade Social Studies: World War II: The Evolution of Aircraft Technology": 1 + "10th Grade Social Studies: The Significance of Propaganda during World War II": 1 + "10th Grade Social Studies: The Introduction of Tanks in World War II": 1 + "10th Grade Social Studies: The Strategic Use of Submarines in World War II": 1 + "1st Grade Art: Exploring Colors and Shapes through Watercolor Painting": 1 + "1st Grade Art: Digital Exploration of Colors and Shapes Using Photoshop": 1 + "1st Grade Art: Understanding Colors and Shapes through Collage Creation": 1 + "1st Grade Art: Interactive Learning of Colors and Shapes using Smartboard Technology": 1 + "1st Grade Art: Discovering Colors and Shapes through Clay Molding": 1 + "1st Grade Art: Colors and Shapes Exploration Using Oil Pastels": 1 + "1st Grade Art: Enhancing Perception of Colors and Shapes through 3D Printing Technology": 1 + "1st Grade Art: Learning About Colors and Shapes through Pop Art Concept": 1 + "1st Grade Art: Exploration of Colors and Shapes through Charcoal Drawing": 1 + "1st Grade Art: Exploring Colors and Shapes with Origami Techniques": 1 + "2nd Grade Mathematics: Exploring Fractions with Number Lines": 1 + "2nd Grade Mathematics: Understanding Fractions through Interactive Whiteboard Activities": 1 + "2nd Grade Mathematics: Simplifying Fractions using Fraction Circles": 1 + "2nd Grade Mathematics: Basic Fractions and the Use of Math Learning Software": 1 + "2nd Grade Mathematics: Fraction Fundamentals with Manipulatives": 1 + "2nd Grade Mathematics: Hands-on Learning of Fractions with Fraction Strips": 1 + "2nd Grade Mathematics: Unraveling the Mystery of Fractions with Fraction Tiles": 1 + "2nd Grade Mathematics: Fraction Basics through Digital Learning Platforms": 1 + "2nd Grade Mathematics: Introduction to Fractions with Virtual Manipulatives": 1 + "2nd Grade Mathematics: Grasping the Basics of Fractions through Educational Mobile Apps": 1 + "2nd Grade Reading: Mastering Phonics with Interactive Apps": 1 + "2nd Grade Reading: Enhancing Phonics Skills through Storytelling Techniques": 1 + "2nd Grade Reading: Mastering Phonics with Audio Books": 1 + "2nd Grade Reading: Utilizing Digital Flashcards for Phonics Mastery": 1 + "2nd Grade Reading: Boosting Phonics through Animated Videos ": 1 + "2nd Grade Reading: Mastering Phonics with Immersive VR Learning": 1 + "2nd Grade Reading: Phonics Mastery through Gamified Learning Platforms": 1 + "2nd Grade Reading: Phonics Mastery using Text-to-Speech Technology": 1 + "2nd Grade Reading: Mastering Phonics through Songs and Rhymes": 1 + "2nd Grade Reading: Enhancing Phonics Skills using E-Books": 1 + "1st Grade Spanish: Introduction to Vocabulary and Phrases through Interactive Flashcards": 1 + "1st Grade Spanish: Beginning Vocabulary and Phrases using Duolingo": 1 + "1st Grade Spanish: Basic Vocabulary and Phrases with Rosetta Stone": 1 + "1st Grade Spanish: Vocabulary and Phrases Foundation with Google Translate": 1 + "1st Grade Spanish: Beginning Vocabulary and Phrases Exploration through Language Immersion Podcasts": 1 + "1st Grade Spanish: Vocabulary and Phrases Basics using Quizlet": 1 + "1st Grade Spanish: Beginning Vocabulary and Phrases Development with Bilingual Books": 1 + "1st Grade Spanish: Vocabulary and Phrases Introduction through Interactive Games": 1 + "1st Grade Spanish: Beginning Vocabulary and Phrases Enhancement with Songs": 1 + "1st Grade Spanish: Basic Vocabulary and Phrases Learning through YouTube Videos": 1 + "4th Grade History: Exploring the American Revolution through Oculus Rift Virtual Reality": 1 + "4th Grade History: Navigating the American Revolution with HTC Vive VR Technology": 1 + "4th Grade History: Living the American Revolution with Google Cardboard Virtual Reality": 1 + "4th Grade History: Experiencing the American Revolution through Virtual Reality using PlayStation VR": 1 + "4th Grade History: Understanding the American Revolution with Samsung Gear VR Technology": 1 + "4th Grade History: Immersion into the American Revolution with Microsoft Hololens Virtual Reality": 1 + "4th Grade History: Engaging with the American Revolution through Valve Index Virtual Reality": 1 + "4th Grade History: Revisiting the American Revolution with Windows Mixed Reality Technology": 1 + "4th Grade History: Journeying through the American Revolution with Pimax Virtual Reality": 1 + "4th Grade History: Learning the American Revolution with HP Reverb Virtual Reality": 1 + "1st Grade Environmental Studies: Understanding Our Planet Through Recycling Techniques": 1 + "1st Grade Environmental Studies: A Close Look at Biodiversity on Our Planet": 1 + "1st Grade Environmental Studies: Stream Study Tools and Our Planet": 1 + "1st Grade Environmental Studies: Understanding Our Planet Through Soil Analysis": 1 + "1st Grade Environmental Studies: Investigating Climate Change and Its Impact on Our Planet": 1 + "1st Grade Environmental Studies: Understanding Our Planet with Weather Forecasting Tools": 1 + "1st Grade Environmental Studies: Introduction to Renewable Energy Sources and Their Role in Our Planet’s Health": 1 + "1st Grade Environmental Studies: Exploring Our Planet’s Water Cycle using Interactive Models": 1 + "1st Grade Environmental Studies: Understanding Our Planet Through the Study of Ecosystems": 1 + "1st Grade Environmental Studies: Learning About Our Planet’s Geology with Rock and Mineral Identification Kits.": 1 + "2nd Grade Mathematics: Introduction to Multiplication Using Prodigy Math App ": 1 + "2nd Grade Mathematics: Exploring Multiplication Through Mathlandia App": 1 + "2nd Grade Mathematics: Discovering Multiplication with Maths Trainer App": 1 + "2nd Grade Mathematics: Multiplication Basics Using MathBoard App": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Number Frames ": 1 + "2nd Grade Mathematics: Learning Multiplication Through Math Fight App": 1 + "2nd Grade Mathematics: Introduction to Multiplication Using Mathletics App": 1 + "2nd Grade Mathematics: Mastering Multiplication with Mathway App": 1 + "2nd Grade Mathematics: Multiplication Concepts Through Times Tables App": 1 + "2nd Grade Mathematics: Multiplication Fundamentals Using Buzzmath App": 1 + "Fifth Grade Social Studies: The Role of Printing Press During the American Revolution": 1 + "Fifth Grade Social Studies: Understanding The American Revolution Through Maps": 1 + "Fifth Grade Social Studies: The Impact of Gunpowder in The American Revolution": 1 + "Fifth Grade Social Studies: The American Revolution - A Deep Dive into the Boston Tea Party": 1 + "Fifth Grade Social Studies: The American Revolution and the Influence of British Naval Technology": 1 + "Fifth Grade Social Studies: Paul Revere’s Midnight Ride - A Turning Point in the American Revolution": 1 + "Fifth Grade Social Studies: The Role of Espionage in the American Revolution": 1 + "Fifth Grade Social Studies: The American Revolution - A Study of Revolutionary War Tactics": 1 + "Fifth Grade Social Studies: The American Revolution - The Importance of Postal Services": 1 + "Fifth Grade Social Studies: The American Revolution - Exploring the Use of Propaganda.": 1 + "10th Grade Music: Analyzing Mozart’s Symphonies Using Sibelius Music Notation Software": 1 + "10th Grade Music: Analyzing Bach’s Fugues Using Finale Music Notation Software": 1 + "10th Grade Music: Analyzing Beethoven’s Sonatas Through MuseScore Music Notation Software": 1 + "10th Grade Music: Understanding Schubert’s Lieder Using Guitar Pro Music Notation Software": 1 + "10th Grade Music: Exploring Chopin’s Polonaises through NoteFlight Music Notation Software": 1 + "10th Grade Music: Dissecting Vivaldi’s Concertos with StaffPad Music Notation Software": 1 + "10th Grade Music: Analyzing Haydn’s String Quartets Using Flat.io Music Notation Software": 1 + "10th Grade Music: Studying Verdi’s Operas Using Rosegarden Music Notation Software": 1 + "10th Grade Music: Interpreting Debussy’s Preludes Through LilyPond Music Notation Software": 1 + "10th Grade Music: Exploring Tchaikovsky’s Ballets Using MagicScore Music Notation Software.": 1 + "2nd Grade Language Arts: Improving Sentence Structures using Quizlet Digital Flashcards and Google Classroom Integration": 1 + "2nd Grade Language Arts: Enhancing Sentence Structures with Quizlet Flashcards and Interactive Whiteboard Activities": 1 + "2nd Grade Language Arts: Refining Sentence Structures through Quizlet Flashcards and Kahoot Games": 1 + "2nd Grade Language Arts: Advanced Sentence Structures Learning with Quizlet Digital Flashcards and Padlet Collaboration": 1 + "2nd Grade Language Arts: Enhancing Sentence Structures Learning with Quizlet Flashcards and Nearpod Lessons": 1 + "2nd Grade Language Arts: Mastering Sentence Structures using Quizlet Flashcards and Flipgrid Video Responses": 1 + "2nd Grade Language Arts: Strengthening Sentence Structures with Quizlet Digital Flashcards and Edpuzzle Interactive Videos": 1 + "2nd Grade Language Arts: Expanding Sentence Structures using Quizlet Flashcards and Seesaw Learning Journals": 1 + "2nd Grade Language Arts: Enhancing Sentence Structures Learning with Quizlet Flashcards and Pear Deck Interactive Slides": 1 + "2nd Grade Language Arts: Polishing Sentence Structures using Quizlet Digital Flashcards and Microsoft Teams Collaborative Learning.": 1 + "7th Grade Music: Exploring Beethoven through Digital Analysis": 1 + "7th Grade Music: Understanding Mozart’s Masterpieces using Music Notation Software": 1 + "7th Grade Music: Introduction to Classical Composers with Piano Practicum": 1 + "7th Grade Music: Bach’s Influence Studied through Audio Mixing Technology": 1 + "7th Grade Music: Decoding Handel’s Harmonies with Music Theory Concepts": 1 + "7th Grade Music: Vivaldi’s Concertos: An Introduction with Virtual Instruments": 1 + "7th Grade Music: Chopin’s Compositions and the Art of Sheet Music Reading": 1 + "7th Grade Music: Exploring Mendelssohn’s Symphonies using Music Production Software": 1 + "7th Grade Music: Tchaikovsky’s Ballets: A Study with Tempo Analysis Tools": 1 + "7th Grade Music: Debussy’s Impressionism and the Application of Sibelius Software": 1 + "2nd Grade Environmental Studies: Understanding the Plant Life Cycle using Microscopes": 1 + "2nd Grade Environmental Studies: The Role of Photosynthesis in the Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Studying Plant Life Cycle through Time-lapse Photography": 1 + "2nd Grade Environmental Studies: Digital Illustration of the Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Plant Life Cycle and the Role of Soil pH": 1 + "2nd Grade Environmental Studies: Exploring the Plant Life Cycle using Augmented Reality": 1 + "2nd Grade Environmental Studies: The Plant Life Cycle and the Effect of Light Exposure": 1 + "2nd Grade Environmental Studies: Interactive Study of the Plant Life Cycle using Multimedia Tools": 1 + "2nd Grade Environmental Studies: The Plant Life Cycle, Pollination and Cross-fertilization": 1 + "2nd Grade Environmental Studies: The Plant Life Cycle through Hands-On Gardening Experience": 1 + "7th Grade Science: The Wonders of Plant Life through Microscopy Techniques": 1 + "7th Grade Science: The Wonders of Plant Life - Focusing on Photosynthesis": 1 + "7th Grade Science: Exploring Plant Life with DNA Sequencing Technology ": 1 + "7th Grade Science: The Wonders of Plant Life - A Study through Hydroponics": 1 + "7th Grade Science: The Wonders of Plant Life - An Insight into Cellular Respiration": 1 + "7th Grade Science: The Wonders of Plant Life - Understanding through Chromatography": 1 + "7th Grade Science: The Wonders of Plant Life - Utilizing the Biotechnology": 1 + "7th Grade Science: The Wonders of Plant Life - A Deep Dive into Transpiration": 1 + "7th Grade Science: The Wonders of Plant Life - Exploring with Plant Tissue Culture Techniques": 1 + "7th Grade Science: The Wonders of Plant Life - Examining through Spectrophotometry.": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils": 1 + "6th Grade Art: Introduction to Sketching and Painting Using Watercolors": 1 + "6th Grade Art: Introduction to Sketching and Painting with Acrylics": 1 + "6th Grade Art: Introduction to Sketching and Painting on Canvas": 1 + "6th Grade Art: Introduction to Sketching and Painting with Charcoal": 1 + "6th Grade Art: Introduction to Sketching and Painting: Understanding Perspective": 1 + "6th Grade Art: Introduction to Sketching and Painting: Exploring Portraiture": 1 + "6th Grade Art: Introduction to Sketching and Painting with Digital Tools": 1 + "6th Grade Art: Introduction to Sketching and Painting: Mastering Shading Techniques": 1 + "6th Grade Art: Introduction to Sketching and Painting: Studying Still Life": 1 + "5th Grade Science: Understanding Ecosystems through Microscopes": 1 + "5th Grade Science: Exploring Ecosystems with Digital Mapping Tools": 1 + "5th Grade Science: Analyzing Ecosystems using Data Collection Techniques": 1 + "5th Grade Science: Investigating Ecosystems and Biodiversity with Fieldwork Tools": 1 + "5th Grade Science: Understanding Ecosystems: Focus on Food Chains": 1 + "5th Grade Science: Comprehending Ecosystems through Habitat Studies": 1 + "5th Grade Science: Examining Ecosystems with Environmental Monitoring Tools": 1 + "5th Grade Science: Learning about Ecosystems through Species Identification Techniques": 1 + "5th Grade Science: Understanding Ecosystems: An Introduction to Ecological Pyramids": 1 + "5th Grade Science: Delving into Ecosystems with Soil Analysis Kits": 1 + "2nd Grade Music: Exploring Rhythms and Melodies with a Metronome using Sheet Music": 1 + "2nd Grade Music: Understanding Rhythm through Drumming Patterns and Metronome Beats": 1 + "2nd Grade Music: Comprehending Melodies and Rhythms with a Metronome and Piano": 1 + "2nd Grade Music: Utilizing a Metronome and a Recorder for Better Grasp of Rhythms": 1 + "2nd Grade Music: Learning Rhythm and Melody with a Metronome and Music Software": 1 + "2nd Grade Music: Enhancing Melodic Understanding with a Metronome and a Xylophone ": 1 + "2nd Grade Music: Interactive Rhythm Learning with a Metronome and a Digital Audio Workstation": 1 + "2nd Grade Music: Grasping Rhythm and Melody with a Metronome and Music Notation Software": 1 + "2nd Grade Music: Using a Metronome and a Marimba to Understand Rhythms and Melodies": 1 + "2nd Grade Music: Exploring Rhythm of Notes through a Metronome and Music Theory Games.": 1 + "6th Grade Art: Exploring Color Mixing with Acrylic Paints": 1 + "6th Grade Art: Understanding Color Theory and Mixing in Digital Art": 1 + "6th Grade Art: Exploring Color Mixing Using Watercolors": 1 + "6th Grade Art: Discovering Color Mixing with Pastels": 1 + "6th Grade Art: Mastering Color Mixing with Oil Paints": 1 + "6th Grade Art: Introduction to Color Mixing with Gouache Paint": 1 + "6th Grade Art: Enhancing Creativity - Color Mixing with Charcoal": 1 + "6th Grade Art: Exploring Color Mixing Techniques Using Photoshop": 1 + "6th Grade Art: Embracing Color Mixing with Collage Art": 1 + "6th Grade Art: Exploring Color Mixing Using Mixed Media Techniques": 1 + "8th Grade Physical Education: The Art of Soccer Strategy": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques": 1 + "8th Grade Physical Education: The Science of Baseball Pitching": 1 + "8th Grade Physical Education: Understanding Basketball Defense Tactics": 1 + "8th Grade Physical Education: Dive into Swimming Strokes": 1 + "8th Grade Physical Education: Essentials of Team Sports with Focus on Heart Rate Monitors": 1 + "8th Grade Physical Education: Track and Field: From Sprinting to Pole Vaulting": 1 + "8th Grade Physical Education: The Physics of Gymnastics": 1 + "8th Grade Physical Education: Exploring Rugby: The Game and Its Tactics": 1 + "8th Grade Physical Education: Cricket: Batting, Bowling and Fielding Techniques": 1 + "9th Grade Language Arts: Enhancing Critical Reading and Information Processing Using Kindle E-books": 1 + "9th Grade Language Arts: Google Books for Critical Reading and Information Processing": 1 + "9th Grade Language Arts: Critical Reading and Information Processing Using PDF E-books and Adobe Reader": 1 + "9th Grade Language Arts: Exploring Critical Reading Through iBooks and Information Processing": 1 + "9th Grade Language Arts: Critical Reading and Information Processing Using E-books and Digital Bookmarking": 1 + "9th Grade Language Arts: Critical Reading and Information Processing Using E-books on Nook Devices": 1 + "9th Grade Language Arts: Enhancing Critical Reading and Information Processing through EPUB E-books": 1 + "9th Grade Language Arts: Utilizing eBooks.com for Critical Reading and Information Processing": 1 + "9th Grade Language Arts: Critical Reading and Information Processing with Audio E-books": 1 + "9th Grade Language Arts: Incorporating Text-to-Speech Technology in Critical Reading and Information Processing Using E-books": 1 + "First Grade Environmental Studies: Exploring Solar Panels in Our Green World": 1 + "First Grade Environmental Studies: Understanding Solar Energy Through Photovoltaic Cells": 1 + "First Grade Environmental Studies: Solar Cookers and the Green World Around Us": 1 + "First Grade Environmental Studies: Harnessing Sun’s Energy with Solar Powered Water Heaters": 1 + "First Grade Environmental Studies: Powering up with Solar Chargers in Our Green World": 1 + "First Grade Environmental Studies: The Impact of Solar Street Lights on Our Green World": 1 + "First Grade Environmental Studies: The Role of Solar Farms in Our Green World": 1 + "First Grade Environmental Studies: Solar Powered Cars and Their Impact on Our Green World": 1 + "First Grade Environmental Studies: Solar Batteries and Their Role in Our Green World": 1 + "First Grade Environmental Studies: Solar Energy Storage and Its Effect on Our Green World.": 1 + "9th Grade Science: Basic Biology and Human Anatomy with Microscope Use": 1 + "9th Grade Science: Human Anatomy and DNA Analysis": 1 + "9th Grade Science: Basic Biology and Human Anatomy: Focus on Cellular Structures": 1 + "9th Grade Science: Exploring Human Anatomy Using Advanced Imaging Technologies": 1 + "9th Grade Science: Basic Biology and Human Anatomy: A Deep Dive into Genetic Coding": 1 + "9th Grade Science: Human Anatomy: Understanding the Skeletal System": 1 + "9th Grade Science: Basic Biology with Emphasis on Photosynthesis Process": 1 + "9th Grade Science: Human Anatomy and Physiology: A Look at the Circulatory System": 1 + "9th Grade Science: Exploring Basic Biology and Human Anatomy with Lab Experiments": 1 + "9th Grade Science: Basic Biology and Human Anatomy: A Journey into the Nervous System.": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works through Character Analysis": 1 + "Analyzing Shakespeare’s Works in 11th Grade Language Arts using Digital Annotations": 1 + "11th Grade Language Arts: Understanding Shakespeare’s Works with Mind Mapping Techniques": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works Using Interactive E-Books": 1 + "11th Grade Language Arts: Exploring Shakespeare’s Works through Dramatic Interpretation": 1 + "11th Grade Language Arts: Navigating Shakespeare’s Works with Audio-Visual Aids": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works through Thematic Studies": 1 + "11th Grade Language Arts: Dissecting Shakespeare’s Works using Online Discussion Forums": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works with Virtual Reality Simulations": 1 + "11th Grade Language Arts: Analyzing Shakespeare’s Works using Text-to-Speech Software": 1 + "8th Grade Science: Introduction to Biology with Microscope Lab Experiments": 1 + "8th Grade Science: Introduction to Cell Biology with DNA Sequencing": 1 + "8th Grade Science: Exploring Photosynthesis in Biology with Lab Experiments": 1 + "8th Grade Science: Introduction to Genetics with PCR Technology in Lab Experiments": 1 + "8th Grade Science: Introduction to Biology with Laboratory Experiments on Cellular Respiration": 1 + "8th Grade Science: Introduction to Biology with Lab Experiments using Spectrophotometry": 1 + "8th Grade Science: Exploring Mitosis and Meiosis in Biology with Lab Experiments": 1 + "8th Grade Science: Introduction to Biology with Laboratory Experiments on Enzyme Activity": 1 + "8th Grade Science: Introduction to Biology with Lab Experiments using Gel Electrophoresis": 1 + "8th Grade Science: Introduction to Ecology with Field Experiments in Biology": 1 + "4th Grade Mathematics: Introduction to Pythagorean Theorem": 1 + "4th Grade Mathematics: Exploring Geometric Shapes with Compass and Straightedge": 1 + "4th Grade Mathematics: Applying Area and Perimeter Concepts in Geometry": 1 + "4th Grade Mathematics: Geometry Basics with Protractor Usage": 1 + "4th Grade Mathematics: Interactive Learning of Angles and Lines": 1 + "4th Grade Mathematics: Understanding Geometry using Graphing Calculators": 1 + "4th Grade Mathematics: Basics of Coordinate Geometry": 1 + "4th Grade Mathematics: Geometry Fundamentals with Geoboards": 1 + "4th Grade Mathematics: Exploring Symmetry in Geometry": 1 + "4th Grade Mathematics: Geometry Basics with Digital Drawing Tools": 1 + "1st Grade Spanish: Introduction to Vocabulary and Phrases using Duolingo through Interactive Flashcards": 1 + "1st Grade Spanish: Mastering Basic Vocabulary with Quizlet Flashcards": 1 + "1st Grade Spanish: Learning Phrases using Rosetta Stone alongside Interactive Flashcards": 1 + "1st Grade Spanish: Enhancing Vocabulary through Interactive Flashcards with Google Translate": 1 + "1st Grade Spanish: Introduction to Vocabulary and Phrases using Babbel alongside Interactive Flashcards": 1 + "1st Grade Spanish: Immersive Learning of Phrases using VR technology and Flashcards": 1 + "1st Grade Spanish: Learning Vocabulary with Alexa and Interactive Flashcards": 1 + "1st Grade Spanish: Interactive Introduction to Vocabulary using iPad Apps and Flashcards": 1 + "1st Grade Spanish: Mastering Phrases with Microsoft Teams and Interactive Flashcards": 1 + "1st Grade Spanish: Accelerated Learning of Vocabulary using Zoom and Flashcards": 1 + "3rd Grade English: Interactive Grammar Fundamentals with ABCmouse": 1 + "3rd Grade English: Grammar Basics through Google Classroom": 1 + "3rd Grade English: Fundamentals of Grammar with Storybird Creative Writing Tool": 1 + "3rd Grade English: Grammar Essentials Explored through Nearpod": 1 + "3rd Grade English: Grammar Fundamentals through Quizlet Flashcards": 1 + "3rd Grade English: Discovering Grammar Basics with Kahoot! Games": 1 + "3rd Grade English: Grammar Principles Unveiled through VocabularySpellingCity": 1 + "3rd Grade English: Grammar Fundamentals with Flipgrid Discussion Platform": 1 + "3rd Grade English: Understanding Grammar Basics through Seesaw Learning Journal": 1 + "3rd Grade English: Navigating Grammar Fundamentals with IXL Learning Platform": 1 + "Kindergarten Language Arts: Beginning with Alphabet using Flashcards": 1 + "Kindergarten Language Arts: Incorporating Alphabet Learning with Touchscreen Devices": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards": 1 + "Kindergarten Language Arts: Starting with Alphabet through Audio Books": 1 + "Kindergarten Language Arts: Alphabet Comprehension using Storytelling Techniques": 1 + "Kindergarten Language Arts: Alphabet Mastery through Augmented Reality Games": 1 + "Kindergarten Language Arts: Alphabet Basics with Phonics Approach": 1 + "Kindergarten Language Arts: Alphabet Learning using Digital Tablets": 1 + "Kindergarten Language Arts: Alphabet Familiarization through Puppetry": 1 + "Kindergarten Language Arts: Engaging Alphabet Introduction with Educational Apps": 1 + "9th Grade Physical Education: Developing Teamwork through Basketball and Character Building": 1 + "9th Grade Physical Education: Understanding Sportsmanship through Soccer and Character Building": 1 + "9th Grade Physical Education: Improving Fitness with Volleyball and Character Building": 1 + "9th Grade Physical Education: Building Character through Baseball and Team Sports": 1 + "9th Grade Physical Education: Learning Strategy with Football and Character Building": 1 + "9th Grade Physical Education: Enhancing Agility through Hockey and Character Building": 1 + "9th Grade Physical Education: Incorporating Technology in Rugby and Character Building": 1 + "9th Grade Physical Education: Instilling Discipline through Lacrosse and Character Building": 1 + "9th Grade Physical Education: Nurturing Leadership with Cricket and Character Building": 1 + "9th Grade Physical Education: Promoting Cooperation through Rounders and Character Building": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Watercolor Paints": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Pastel Colors": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques and the Rule of Thirds": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Mixed Media": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Acrylic Paints": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques and Digital Art Tools": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Recycled Materials": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Oil Pastels": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques and the Concept of Proportion": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Photography": 1 + "2nd Grade Mathematics: Mastering Addition with Number Frames App": 1 + "Interactive Learning of Basic Addition through Montessori Numberland App for 2nd Graders": 1 + "2nd Grade Mathematics: Addition Basics Using the Mathboard App": 1 + "Exploring Addition in 2nd Grade Mathematics through the SplashLearn App": 1 + "2nd Grade Mathematics: The Basics of Addition Using the Mathletics App": 1 + "Addition Fundamentals in 2nd Grade Mathematics Using the DoodleMaths (Primary Maths) App": 1 + "2nd Grade Mathematics: Introduction to Addition with the Prodigy Math Game": 1 + "2nd Grade Mathematics: Utilizing King of Maths Junior for Addition Basics": 1 + "Accelerated Learning in 2nd Grade Mathematics: Addition Using Mathway App": 1 + "2nd Grade Mathematics: Boosting Addition Skills with the Quick Math Jr. App": 1 + "First Grade Environmental Studies: Exploring Our Green World with a Barometer - An Introduction to Weather Patterns ": 1 + "First Grade Environmental Studies: Our Green World - Understanding Weather Patterns through Rain Gauges": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns and Cloud Identification ": 1 + "First Grade Environmental Studies: Our Green World - Utilizing Weather Maps for Understanding Weather Patterns ": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns with Thermometers ": 1 + "First Grade Environmental Studies: Our Green World - Weather Patterns and Wind Speeds: An Introduction to Anemometers ": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns: Understanding Precipitation ": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns: Exploring Humidity with Hygrometers ": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns: Using Weather Vane to Determine Wind Direction ": 1 + "First Grade Environmental Studies: Our Green World - Introduction to Weather Patterns: Understanding Climate Zones.": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Number Lines": 1 + "2nd Grade Mathematics: Addition and Subtraction Skills Using Abacus": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills with Flash Cards": 1 + "2nd Grade Mathematics: Learning Addition and Subtraction through Educational Apps": 1 + "2nd Grade Mathematics: Addition and Subtraction Skills with Interactive Whiteboards": 1 + "2nd Grade Mathematics: Developing Addition and Subtraction Skills using Visual Models": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction with Digital Manipulatives": 1 + "2nd Grade Mathematics: Addition and Subtraction Skills Enrichment through Online Games": 1 + "2nd Grade Mathematics: Hands-on Addition and Subtraction with Physical Counters": 1 + "2nd Grade Mathematics: Improving Addition and Subtraction Skills using Math Worksheets": 1 + "1st Grade Elementary Science: Exploring Levers and Pulleys": 1 + "1st Grade Elementary Science: Understanding the Wheel and Axle": 1 + "1st Grade Elementary Science: Introduction to Inclined Planes": 1 + "1st Grade Elementary Science: Discovering Wedges in Simple Machines": 1 + "1st Grade Elementary Science: A Closer Look at Screws as Simple Machines": 1 + "1st Grade Elementary Science: The Science of Mechanical Advantage": 1 + "1st Grade Elementary Science: Introduction to Forces and Motion with Simple Machines": 1 + "1st Grade Elementary Science: The Role of Pulleys in Simple Machines": 1 + "1st Grade Elementary Science: Exploring Gears in Simple Machines": 1 + "1st Grade Elementary Science: The Science Behind Levers and Fulcrums": 1 + "2nd Grade Environmental Studies: Exploring the Role of Water in Plant Life Cycle using Microscopes": 1 + "2nd Grade Environmental Studies: Examining Plant Life Cycle with Hydroponics in Focus": 1 + "2nd Grade Environmental Studies: The Impact of Water Quality on Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Role of Water in Plant Life Cycle - A Study Using Time-Lapse Photography": 1 + "2nd Grade Environmental Studies: Understanding Photosynthesis and Water’s Role in Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Importance of Irrigation in the Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Role of Water in Plant Life Cycle - An Experiment with Drought Resistant Plants": 1 + "2nd Grade Environmental Studies: The Role of Water in Plant Life Cycle - A Look Through pH Testing": 1 + "2nd Grade Environmental Studies: The Influence of Rainwater Harvesting on Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Role of Water in Plant Life Cycle - An Investigation with Water Filtering Systems.": 1 + "1st Grade Reading: Understanding Alphabet Sounds with Phonics Flashcards": 1 + "1st Grade Reading: Utilizing Interactive Alphabet Apps to Understand Sounds": 1 + "1st Grade Reading: Mastering Alphabet Sounds with Audio Recordings": 1 + "1st Grade Reading: Exploring Alphabet Sounds with Digital Storybooks": 1 + "1st Grade Reading: Enhancing Alphabet Sounds Comprehension Using Touch and Learn Activity Desks": 1 + "1st Grade Reading: Alphabet Sounds and their Recognition using Letter Blocks": 1 + "1st Grade Reading: Deciphering Alphabet Sounds with Alphabet Puzzles": 1 + "1st Grade Reading: Understanding Alphabet Sounds through Animated Letters Software": 1 + "1st Grade Reading: Alphabet Sounds Mastery with Voice Recognition Technology": 1 + "1st Grade Reading: Grasping Alphabet Sounds with the aid of Augmented Reality Alphabet Cards": 1 + "3rd Grade English: Storytelling and Fables Using Puppets": 1 + "3rd Grade English: Storytelling and Fables Explored Through Digital Media": 1 + "3rd Grade English: Storytelling and Fables with Interactive Whiteboards": 1 + "3rd Grade English: Storytelling and Fables Incorporating Animation Tools": 1 + "3rd Grade English: Storytelling and Fables Using Augmented Reality": 1 + "3rd Grade English: Storytelling and Fables Presented with Podcasts": 1 + "3rd Grade English: Storytelling and Fables Through the Lens of Film-making": 1 + "3rd Grade English: Storytelling and Fables Explored with Flipgrid": 1 + "3rd Grade English: Storytelling and Fables Implemented with Google Classroom": 1 + "3rd Grade English: Storytelling and Fables Enhanced with iPad Applications": 1 + "9th Grade Music: Symphony of Sounds - An Introduction to Music Theory with Piano ": 1 + "9th Grade Music: Symphony of Sounds - Exploring Music Theory with Pro Tools Technology": 1 + "9th Grade Music: Symphony of Sounds - Understanding Music Theory via Digital Audio Workstations": 1 + "9th Grade Music: Symphony of Sounds - Music Theory and Its Application in Guitar Playing": 1 + "9th Grade Music: Symphony of Sounds - Delving into Music Theory with MIDI Technology": 1 + "9th Grade Music: Symphony of Sounds - A Study of Music Theory through the Lens of Sibelius Software": 1 + "9th Grade Music: Symphony of Sounds - Incorporating Music Theory in Violin Techniques": 1 + "9th Grade Music: Symphony of Sounds - Music Theory Made Easy with GarageBand": 1 + "9th Grade Music: Symphony of Sounds - An Introduction to Music Theory via the Concept of Harmony": 1 + "9th Grade Music: Symphony of Sounds - Learning Music Theory through the Use of Ableton Live Software.": 1 + "4th Grade Language Arts: Exploring Tales from Greek Mythology using Storyboard": 1 + "4th Grade Language Arts: Interactive Learning of Greek Mythology with Digital Flashcards": 1 + "4th Grade Language Arts: Analyzing Greek Mythology Tales using Mind Maps": 1 + "4th Grade Language Arts: Tales from Greek Mythology through Animated Videos": 1 + "4th Grade Language Arts: Learning Greek Mythology with Gamification": 1 + "4th Grade Language Arts: Greek Mythology Tales Exploration with Podcasts": 1 + "4th Grade Language Arts: Greek Mythology Tales and Vocabulary Enhancement with Quizlet": 1 + "4th Grade Language Arts: Understanding Greek Mythology through Virtual Reality": 1 + "4th Grade Language Arts: Greek Mythology Tales Comprehension with Audiobooks": 1 + "4th Grade Language Arts: Greek Mythology Tales Study Using Interactive Whiteboards.": 1 + "10th Grade Music: Exploring Classical Compositions through Piano": 1 + "10th Grade Music: Journey through Classical Compositions using Music Theory": 1 + "10th Grade Music: Classical Compositions Analysis through Digital Audio Workstations": 1 + "10th Grade Music: The Impact of the Violin in Classical Compositions": 1 + "10th Grade Music: Journey through Classical Compositions using Sheet Music": 1 + "10th Grade Music: Exploring Classical Compositions with the Flute ": 1 + "10th Grade Music: Journey through Classical Compositions using Digital Synthesizers": 1 + "10th Grade Music: Classical Compositions and the Art of Conducting": 1 + "10th Grade Music: Journey through Classical Compositions using the Guitar": 1 + "10th Grade Music: Exploring Classical Compositions through the Lens of Music Production Software": 1 + "2nd Grade Language Arts: Incorporating Storytelling through Puppetry": 1 + "2nd Grade Language Arts: Enhancing Fairy Tales with Digital Illustration Tools": 1 + "2nd Grade Language Arts: Learning Storytelling with Interactive E-books": 1 + "2nd Grade Language Arts: Fairy Tales Exploration using Virtual Reality": 1 + "2nd Grade Language Arts: Storytelling Development using Storyboard Software": 1 + "2nd Grade Language Arts: The Art of Storytelling using Voice Recording Apps": 1 + "2nd Grade Language Arts: Fairy Tales Interpretation through Animation Tools": 1 + "2nd Grade Language Arts: Storytelling Enhancement with Gamification Concepts": 1 + "2nd Grade Language Arts: Fairy Tales Exploration using Augmented Reality": 1 + "2nd Grade Language Arts: Storytelling Development through Podcasting Tools": 1 + "3rd Grade English: Analyzing Character Development in Classic Fairy Tales using MindMaps": 1 + "3rd Grade English: Exploring Story Structure in Classic Fairy Tales with Storyboard That": 1 + "3rd Grade English: Learning Vocabulary through Classic Fairy Tales using Kahoot": 1 + "3rd Grade English: Enhancing Reading Comprehension with Classic Fairy Tales using Google Classroom": 1 + "3rd Grade English: Diving Deep into Classic Fairy Tales using Virtual Reality Tools": 1 + "3rd Grade English: Exploring Classic Fairy Tales with Interactive Whiteboard Activities": 1 + "3rd Grade English: Understanding Morals of Classic Fairy Tales through Video Animation Tools": 1 + "3rd Grade English: Comparing and Contrasting Classic Fairy Tales using Venn Diagrams on Canva": 1 + "3rd Grade English: Exploring Classic Fairy Tales through Digital Storytelling ": 1 + "3rd Grade English: Unfolding Classic Fairy Tales using Interactive E-Books": 1 + "2nd Grade Mathematics: Exploring Numbers with Abacus": 1 + "2nd Grade Mathematics: Understanding Fractions and Whole Numbers": 1 + "2nd Grade Mathematics: Introduction to Addition and Subtraction": 1 + "2nd Grade Mathematics: Learning Geometry with Tangram Puzzles": 1 + "2nd Grade Mathematics: Journey Through Numbers using Prodigy Game": 1 + "2nd Grade Mathematics: Mastering Multiplication Tables": 1 + "2nd Grade Mathematics: Digital Learning with Math Apps": 1 + "2nd Grade Mathematics: Interactive Counting with Smartboard": 1 + "2nd Grade Mathematics: Grasping Basic Algebra Concepts": 1 + "2nd Grade Mathematics: Number Sense with Number Line Exercises": 1 + "11th Grade History: The Impact of Blast Furnaces in Steel Production Cyanide Leaching on Nature during the Industrial Age - Solution 1: Activated Carbon Filtration": 1 + "11th Grade History: The Role of Open Hearth Furnaces in Steel Production Cyanide Leaching and its Ecological Impact - Solution 2: Cyanide Degrading Bacteria ": 1 + "11th Grade History: The Influence of Bessemer Process on Steel Production Cyanide Leaching during Industrial Age - Solution 3: In-Situ Leaching": 1 + "11th Grade History: The Repercussions of Steel Converter Technology on Cyanide Leaching - Solution 4: Ion Exchange Resin": 1 + "11th Grade History: The Impact of Puddling Process on Steel Production Cyanide Leaching on Nature during the Industrial Age - Solution 5: Reverse Osmosis": 1 + "11th Grade History: The Effects of Electric Arc Furnaces in Steel Production Cyanide Leaching on the Environment - Solution 6: Phytoextraction": 1 + "11th Grade History: The Implication of Cementation Process in Steel Production Cyanide Leaching during the Industrial Age - Solution 7: Evaporation": 1 + "11th Grade History: The Influence of Crucible Steel Technique on Steel Production Cyanide Leaching and its Environmental Impact - Solution 8: Chemical Precipitation": 1 + "11th Grade History: The Impact of Tandem Mill Technology in Steel Production Cyanide Leaching on Nature during the Industrial Age - Solution 9: Bioremediation": 1 + "11th Grade History: The Environmental Consequences of Finery Forge Method in Steel Production Cyanide Leaching - Solution 10: Electrocoagulation.": 1 + "9th Grade History: The Role of Printing Press in the American Revolution Era": 1 + "9th Grade History: The Impact of Firearms in the American Revolution Era": 1 + "9th Grade History: Understanding the American Revolution Era through Political Cartoons": 1 + "9th Grade History: The Use of Spycraft and Codes in the American Revolution Era": 1 + "9th Grade History: The Influence of the Enlightenment on the American Revolution Era": 1 + "9th Grade History: Naval Warfare and its significance in the American Revolution Era": 1 + "9th Grade History: The American Revolution Era and the Role of Propaganda": 1 + "9th Grade History: The Importance of Postal Service in the American Revolution Era": 1 + "9th Grade History: The American Revolution Era and the Rise of Women’s Roles": 1 + "9th Grade History: The American Revolution Era: A Deep Dive into The Treaty of Paris.": 1 + "4th Grade History: The First Americans - The Emergence of Spear Hunting Techniques": 1 + "4th Grade History: The First Americans - The Introduction of Bow and Arrows in Hunting": 1 + "4th Grade History: The First Americans - The Evolution of Trap Making for Hunting": 1 + "4th Grade History: The First Americans - The Emergence of Stone Knives in Hunting": 1 + "4th Grade History: The First Americans - Understanding the Use of Atlatl in Hunting": 1 + "4th Grade History: The First Americans - The Development of Fish Weirs in Hunting Techniques": 1 + "4th Grade History: The First Americans - The Roles of Bolas in Hunting Techniques": 1 + "4th Grade History: The First Americans - The Application of Harpoons in Early Hunting Techniques": 1 + "4th Grade History: The First Americans - The Emergence of Slings in Hunting Techniques": 1 + "4th Grade History: The First Americans - The Advancement of Pitfall Traps in Hunting": 1 + "4th Grade History: The First Americans - The Innovation of Deadfall Traps in Hunting Techniques": 1 + "6th Grade Social Studies: The Evolution of Microprocessors and the Impact of Transistors in Computer History": 1 + "6th Grade Social Studies: The Role of Integrated Circuits in the Evolution of Microprocessors": 1 + "6th Grade Social Studies: The Evolution of Microprocessors and the Rise of Silicon Chips in Computer History": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - A Focus on Moore’s Law": 1 + "6th Grade Social Studies: The Evolution of Microprocessors and the Influence of Binary Code in Computer History": 1 + "6th Grade Social Studies: The Evolution of Microprocessors and the Introduction of Multicore Processors": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - The Emergence of Quantum Computing": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture": 1 + "6th Grade Social Studies: The Evolution of Microprocessors and the Shift to Nanotechnology": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - The Role of Semiconductor Technology.": 1 + "4th Grade Mathematics: Introduction to Fractions using Number Lines": 1 + "4th Grade Mathematics: Manipulating Fractions with Fraction Bars": 1 + "4th Grade Mathematics: Understanding Fractions through Pie Charts": 1 + "4th Grade Mathematics: Exploring Fractions with Digital Manipulatives": 1 + "4th Grade Mathematics: Fractions and Their Usage in Everyday Life": 1 + "4th Grade Mathematics: Simplifying Fractions using GCF (Greatest Common Factor)": 1 + "4th Grade Mathematics: Converting Fractions to Decimals with Long Division": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using like Denominators": 1 + "4th Grade Mathematics: Multiplying Fractions using Area Models": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations.": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor and Long Division Method": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization and Greatest Common Factor": 1 + "5th Grade Mathematics: Learning Fraction Simplification Through the Greatest Common Factor with Khan Academy": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor and Euclidean Algorithm": 1 + "5th Grade Mathematics: Fraction Simplification Through the Greatest Common Factor with Python Programming": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor with Mathway App": 1 + "5th Grade Mathematics: Simplifying Fractions via Greatest Common Factor and Division Ladder ": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor and Math Playground Resources": 1 + "5th Grade Mathematics: Fraction Simplification with the Greatest Common Factor Incorporating Venn Diagrams": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor with Interactive Whiteboard Activities.": 1 + "6th Grade Music: Understanding Beethoven’s Symphonies through the Piano Forte and Sheet Music Analysis": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies and the Impact of the Piano Forte using Music Notation Software": 1 + "6th Grade Music: A Deep Dive into Beethoven’s Symphonies - The Piano Forte and the Sibelius Software": 1 + "6th Grade Music: Interpreting Beethoven’s Symphonies and the Role of the Piano Forte with Sound Waves": 1 + "6th Grade Music: Discovering Beethoven’s Symphonies and the Influence of the Piano Forte using MIDI Technology": 1 + "6th Grade Music: The Impact of the Piano Forte on Beethoven’s Symphonies - A Case Study with GarageBand": 1 + "6th Grade Music: Analysis of Beethoven’s Symphonies and the Piano Forte using Digital Audio Workstations": 1 + "6th Grade Music: The Role of the Piano Forte in Beethoven’s Symphonies - An Exploration using Audacity Software": 1 + "6th Grade Music: Beethoven’s Symphonies and the Piano Forte - A Comprehensive Study with Virtual Instruments": 1 + "6th Grade Music: Decoding Beethoven’s Symphonies and the Piano Forte using Music Theory Concepts": 1 + "2nd Grade Science: Exploring Plant Life through Microscope Analysis": 1 + "2nd Grade Science: Investigating Photosynthesis in Plant Life": 1 + "2nd Grade Science: Understanding Plant Life through DNA Extraction": 1 + "2nd Grade Science: Discovering Plant Life Cycles using Growth Charts": 1 + "2nd Grade Science: Cellular Structure Study in Plant Life ": 1 + "2nd Grade Science: Plant Life Exploration with Botanical Illustration": 1 + "2nd Grade Science: Observing Plant Life through Time-lapse Photography ": 1 + "2nd Grade Science: Unveiling Plant Life Secrets with Chromatography ": 1 + "2nd Grade Science: Learning Plant Life through Hydroponic Systems": 1 + "2nd Grade Science: Exploring Plant Life and Biodiversity using Databases.": 1 + "6th Grade: Introduction to Physical Science - Exploring Gravity": 1 + "6th Grade: Introduction to Physical Science - Understanding Momentum": 1 + "6th Grade: Intro to Physical Science - The Power of Friction": 1 + "6th Grade: Intro to Physical Science - The Magic of Magnets": 1 + "6th Grade: Physical Science - A Journey into Light and Optics": 1 + "6th Grade: Physical Science - The Science of Sound Waves": 1 + "6th Grade: Physical Science - Understanding Newton’s Laws": 1 + "6th Grade: Intro to Physical Science - The Physics of Flight": 1 + "6th Grade: Physical Science - Exploring Thermodynamics": 1 + "6th Grade: Physical Science - The Marvels of Electricity": 1 + "8th Grade Music: Navigating Vivaldi’s Concertos Through GarageBand - An Introduction to Classical Music": 1 + "Exploring Vivaldi’s Concertos with Audacity: A Comprehensive 8th Grade Music Course": 1 + "8th Grade Music: Unfolding Vivaldi’s Masterpieces with Pro Tools - A Journey through Classical Music": 1 + "Vivaldi’s Concertos & Music Production: An 8th Grade Course Integrating Logic Pro X": 1 + "8th Grade Course: Mastering Vivaldi’s Concertos with Ableton Live - A Dive into Classical Music": 1 + "8th Grade Music: Vivaldi’s Concertos Explored through Cubase - An Insight into Classical Music": 1 + "8th Grade Music: A Study of Vivaldi’s Concertos Using FL Studio - An Encounter with Classical Music": 1 + "Vivaldi’s Concertos in 8th Grade Music: An Exploration with Reason Software - A Classical Music Expedition": 1 + "Soundtrap and Vivaldi’s Concertos: An 8th Grade Music Course Unveiling Classical Music": 1 + "8th Grade Music: Interpreting Vivaldi’s Concertos with Studio One - A Classical Music Exploration.": 1 + "1st Grade Environmental Studies: Introduction to Photovoltaic Solar Panels and Solar Charge Controllers for Energy Management": 1 + "1st Grade Environmental Studies: Exploring Solar Charge Controllers and Battery Banks for Sustainable Energy Solutions": 1 + "1st Grade Environmental Studies: Using Solar Charge Controllers and Inverters in Energy Management": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and Greenhouse Gas Reduction Techniques": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Use of Microgrids for Energy Management": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and Maximum Power Point Tracking for Energy Efficiency": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Concept of Net Metering for Energy Management": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Role of Smart Grids in Energy Management": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Impact of Energy Storage Systems": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Application of Hybrid Systems for Energy Management": 1 + "6th Grade Social Studies: Exploring Ancient Rome through Pottery": 1 + "6th Grade Social Studies: The Role of Pyramids in Ancient Egypt": 1 + "6th Grade Social Studies: Journey Through Ancient Greece and the Concept of Democracy": 1 + "6th Grade Social Studies: The Impact of the Wheel in Ancient Sumerian Civilization": 1 + "6th Grade Social Studies: Ancient Chinese Dynasties and the Invention of Paper": 1 + "6th Grade Social Studies: The Importance of Agriculture in Mayan Civilization": 1 + "6th Grade Social Studies: Journey Through Ancient India and the Concept of Zero": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics": 1 + "6th Grade Social Studies: The Significance of the Aqueducts in Roman Civilization": 1 + "6th Grade Social Studies: Ancient Mesopotamia and the Development of Cuneiform Writing": 1 + "1st Grade Physical Education: Introduction to Basic Gymnastics Using Balance Beams": 1 + "1st Grade Physical Education: Basic Gymnastics with Mini Trampoline Exercises": 1 + "1st Grade Physical Education: Basic Gymnastics and Flexibility Training with Yoga Mats": 1 + "1st Grade Physical Education: Basic Gymnastics Focusing on Bar Skills": 1 + "1st Grade Physical Education: Basic Gymnastics and Tumbling Techniques with Mats": 1 + "1st Grade Physical Education: Basic Gymnastics Utilizing Pommel Horse Skills": 1 + "1st Grade Physical Education: Basic Gymnastics with a Focus on Vaulting Exercises": 1 + "1st Grade Physical Education: Basic Gymnastics Incorporating Rings for Strength Building ": 1 + "1st Grade Physical Education: Basic Gymnastics and Coordination Training with Gym Balls": 1 + "1st Grade Physical Education: Basic Gymnastics Using Rope Climbing Techniques": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers with Interactive Blocks": 1 + "1st Grade Mathematics: Learning Shapes and Numbers through Touch Math Techniques": 1 + "Exploring Shapes and Numbers: A 1st Grade Mathematics Course using Math Apps": 1 + "1st Grade Mathematics: Shapes and Numbers Mastery through Virtual Reality ": 1 + "Discovering Shapes and Numbers: A 1st Grade Mathematics Course with Abacus Use": 1 + "1st Grade Mathematics: Hands-on Learning of Shapes and Numbers with Montessori Tools": 1 + "1st Grade Mathematics: Using Counting Rods to Discover Shapes and Numbers": 1 + "Interactive 1st Grade Mathematics: Shapes and Numbers with Smartboard Technology": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers Using Augmented Reality Tools": 1 + "Exploring 1st Grade Mathematics: Shapes and Numbers with the Use of Math Manipulatives.": 1 + "4th Grade History: Exploring Egyptian Pyramids with Virtual Reality": 1 + "4th Grade History: Time Travel to Ancient Rome using 3D Mapping": 1 + "4th Grade History: Discovering Ancient Greece through Augmented Reality": 1 + "4th Grade History: Journey to Maya Civilization with Interactive Timelines": 1 + "4th Grade History: Navigating Ancient China using Digital Storytelling": 1 + "4th Grade History: The Technology of Ancient Mesopotamia - A Time Travel Adventure": 1 + "4th Grade History: Time Travel to Ancient India using Interactive Quizzes": 1 + "4th Grade History: Understanding Ancient Civilizations through Historical Simulations": 1 + "4th Grade History: Exploring Aztec Empire through Gamified Learning": 1 + "4th Grade History: Time Travel to Ancient Persia using Multi-media Presentations": 1 + "9th Grade Physical Education: A Deep Dive into Cardiovascular Health and Fitness with Heart Rate Monitors": 1 + "Understanding Health and Fitness through Calisthenics in 9th Grade Physical Education": 1 + "9th Grade Physical Education: Exploring Body Composition using Bioelectrical Impedance Analysis ": 1 + "9th Grade Physical Education: Enhancing Flexibility using Yoga Techniques": 1 + "Understanding Health and Fitness: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "9th Grade Physical Education: A Focus on Muscular Strength Training using Resistance Bands": 1 + "Mastering Aerobic Capacity: A 9th Grade Physical Education Course using Treadmill Tests": 1 + "9th Grade Physical Education: An Introduction to Body Mass Index Measurements and Analysis": 1 + "Exploring the Concept of Metabolic Rate in 9th Grade Physical Education: Understanding Health and Fitness": 1 + "9th Grade Physical Education: Analyzing Physical Endurance using VO2 Max Testing": 1 + "1st Grade Music: Discovering Rhythm using Hand Drums and Tambourines": 1 + "1st Grade Music: Exploring Melody Fundamentals with Hand Drums and Piano Apps": 1 + "1st Grade Music: Learning Rhythm and Melody Basics with Hand Drums and Metronomes ": 1 + "1st Grade Music: Exploring Rhythm using Hand Drums and Beatboxing Techniques ": 1 + "1st Grade Music: Unraveling Melody Fundamentals with Hand Drums and Digital Audio Workstations": 1 + "1st Grade Music: Discovering Rhythm using Hand Drums and Maracas ": 1 + "1st Grade Music: Understanding Rhythm and Melody Basics with Hand Drums and Notation Software ": 1 + "1st Grade Music: Exploring Melody using Hand Drums and Xylophones": 1 + "1st Grade Music: Learning Rhythm with Hand Drums and Rhythm Counting Apps": 1 + "1st Grade Music: Exploring Rhythm and Melody Fundamentals with Hand Drums and Music Theory Concepts.": 1 + "5th Grade Science: Exploring Forest Ecosystems with BioBlitz Simulation Software": 1 + "5th Grade Science: Understanding Oceanic Interactions using Ecosystem Modelling Tools": 1 + "5th Grade Science: Investigating Desert Ecosystems with Virtual Reality Simulations": 1 + "5th Grade Science: Studying Predator-Prey Interactions using the EcoSim Software": 1 + "5th Grade Science: Exploring Tundra Ecosystems with 3D Simulation Technology": 1 + "5th Grade Science: Analyzing Aquatic Ecosystems with EcoLogica Simulation Software": 1 + "5th Grade Science: Unveiling Rainforest Ecosystem Interactions with EcoLab Software": 1 + "5th Grade Science: Examining Grassland Ecosystems with Interactive Simulation Tools": 1 + "5th Grade Science: Deciphering Coral Reef Interactions using Virtual Ecosystem Simulations": 1 + "5th Grade Science: Investigating Arctic Ecosystems with EcoExplorer Simulation Software": 1 + "10th Grade Mathematics: Introduction to Algebra with Complex Numbers": 1 + "10th Grade Mathematics: Introduction to Algebra through Quadratic Equations": 1 + "10th Grade Mathematics: Exploring Algebra with Matrices": 1 + "10th Grade Mathematics: Algebra Fundamentals and Graphing Technology": 1 + "10th Grade Mathematics: Introduction to Algebra with Polynomials": 1 + "10th Grade Mathematics: Algebra Foundations with Geometric Sequences": 1 + "10th Grade Mathematics: Algebra and the Application of Scientific Calculators": 1 + "10th Grade Mathematics: Algebra Basics with Exponential Expressions": 1 + "10th Grade Mathematics: Introduction to Algebra with TI-84 Plus Calculator": 1 + "10th Grade Mathematics: Diving into Algebra with Linear Inequalities.": 1 + "2nd Grade Music: Exploring Rhythm Foundations with GarageBand App": 1 + "2nd Grade Music: Rhythm Foundations Explored via Music Theory on Soundtrap": 1 + "2nd Grade Music: Understanding Rhythm Basics through FL Studio Mobile": 1 + "2nd Grade Music: Rhythm Fundamentals Analyzed via BandLab App": 1 + "2nd Grade Music: Discovering Rhythm Foundations with Ableton Live": 1 + "2nd Grade Music: Rhythm Foundations Explored via Beat-Making on Drum Pad Machine": 1 + "2nd Grade Music: Rhythm Basics Uncovered through Walk Band Music Studio": 1 + "2nd Grade Music: Exploring Rhythm Foundations with Caustic 3 App": 1 + "2nd Grade Music: Rhythm Structures Explored via Music Composition on Soundation": 1 + "2nd Grade Music: Rhythm Foundations Delved into with Music Maker JAM.": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Fraction Tiles Tool & Virtual Manipulatives": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool & Number Line Method": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Interactive Whiteboard": 1 + "6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool & Visual Models": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence with Fraction Tiles Tool & iPads": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Area Model Technique": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Bar Model Strategy": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Fraction Tiles Tool & Smart Notebook Software": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Computer Algebra Systems": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Math Learning Center Apps.": 1 + "2nd Grade English: Exploring Aesop’s Fables with Animated Storytelling": 1 + "2nd Grade English: Reading Folktales with Interactive E-books": 1 + "2nd Grade English: Decoding Fables with Picture Symbols": 1 + "2nd Grade English: Role-play and Theater in Understanding Folktales": 1 + "2nd Grade English: Using Podcasts to Listen to Global Folktales": 1 + "2nd Grade English: Learning Fables through Augmented Reality": 1 + "2nd Grade English: Absorbing Folktales with Audiobook Technology": 1 + "2nd Grade English: Visualizing Fables with Storyboarding Tools": 1 + "2nd Grade English: Folktales Dissection with Interactive Whiteboards": 1 + "2nd Grade English: Fables Comprehension with Virtual Reality Experiences": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Number Line Technique": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery using Abacus": 1 + "2nd Grade Mathematics: Achieving Addition and Subtraction Proficiency with Counting Blocks": 1 + "2nd Grade Mathematics: Becoming an Expert in Addition and Subtraction through Math Apps": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Flashcards": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction using Interactive Whiteboards": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery with Math Games": 1 + "2nd Grade Mathematics: Achieving Addition and Subtraction Proficiency through Virtual Manipulatives": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction using Math Worksheets": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Hands-on Activities": 1 + "3rd Grade English: Incorporating Adobe Flash Animation in Storytelling from Various Cultures": 1 + "3rd Grade English: Incorporating Pixar RenderMan in Storytelling from Different Cultures": 1 + "3rd Grade English: Utilizing Digital 3D Animation in Storytelling from Global Cultures": 1 + "3rd Grade English: Incorporating Toon Boom Harmony in Cultural Storytelling": 1 + "3rd Grade English: Exploring Storytelling from Diverse Cultures through Unity 3D Animation": 1 + "3rd Grade English: Using Blender in Multicultural Storytelling": 1 + "3rd Grade English: Storytelling from Various Cultures through Claymation Techniques": 1 + "3rd Grade English: Incorporating Stop Motion Animation in Storytelling from Different Cultures": 1 + "3rd Grade English: Using Maya 3D Animation for Storytelling from Various Cultures": 1 + "3rd Grade English: Incorporating CGI in Storytelling from Diverse Cultures": 1 + "6th Grade History: Ancient Egyptian Civilizations and Their Pyramids": 1 + "6th Grade History: Ancient Roman Civilization and Their Use of Concrete": 1 + "6th Grade History: Ancient Greek Civilizations and Their Marvellous Temples": 1 + "6th Grade History: The Aztecs and Their Sun Stones": 1 + "6th Grade History: Ancient Chinese Civilization and Their Great Wall": 1 + "6th Grade History: Ancient Indian Civilizations and Their Stupendous Stupas": 1 + "6th Grade History: The Incan Civilization and Their Advanced Road Systems": 1 + "6th Grade History: Ancient Mesopotamian Civilizations and Their Ziggurat Structures": 1 + "6th Grade History: The Mayans and Their Astonishing Calendar System": 1 + "6th Grade History: Ancient Persian Civilization and Their Qanat Water Systems": 1 + "8th Grade Social Studies: Exploring Democracy and Government through the Lens of Blockchain Technology": 1 + "8th Grade Social Studies: Understanding Democracy and Government with the Aid of Virtual Reality": 1 + "8th Grade Social Studies: The Role of Internet in Democracy and Government": 1 + "8th Grade Social Studies: Applying Game Theory to Understand Democracy and Government": 1 + "8th Grade Social Studies: Democracy and Government in the Age of Artificial Intelligence": 1 + "8th Grade Social Studies: Dissecting Democracy and Government with GIS Technology": 1 + "8th Grade Social Studies: The Influence of Social Media on Democracy and Government": 1 + "8th Grade Social Studies: Understanding Democracy and Government through Big Data Analysis": 1 + "8th Grade Social Studies: The Impact of Cybersecurity on Democracy and Government": 1 + "8th Grade Social Studies: Democracy and Government in View of Quantum Computing.": 1 + "5th Grade Science: Lifecycle of a Butterfly - Exploring Metamorphosis with Microscopes": 1 + "5th Grade Science: Lifecycle of a Butterfly - Studying Chrysalis Formation with Time-Lapse Cameras": 1 + "5th Grade Science: Lifecycle of a Butterfly - Utilizing 3D Models to Understand Metamorphosis": 1 + "5th Grade Science: Lifecycle of a Butterfly - Analyzing Caterpillar Growth with Measurement Tools": 1 + "5th Grade Science: Lifecycle of a Butterfly - Investigating Larval Stage with Magnifying Glasses": 1 + "5th Grade Science: Lifecycle of a Butterfly - Exploring Butterfly Anatomy using Interactive Software": 1 + "5th Grade Science: Lifecycle of a Butterfly - Understanding Metamorphosis with Animation Technology": 1 + "5th Grade Science: Lifecycle of a Butterfly - Examining Cocoon Development with Digital Imaging": 1 + "5th Grade Science: Lifecycle of a Butterfly - Observing Egg Stage through High Resolution Photography": 1 + "5th Grade Science: Lifecycle of a Butterfly - Exploring Migration Patterns with GPS Tracking Technology": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction through Abacus-Based Hands-on Activities": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities for Addition and Subtraction Mastery": 1 + "2nd Grade Mathematics: Utilizing Math Manipulatives for Addition and Subtraction Mastery": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Number Line Activities": 1 + "2nd Grade Mathematics: Learning Addition and Subtraction through Digital Math Games": 1 + "2nd Grade Mathematics: Place Value Concept in Addition and Subtraction Mastery": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills through Tangram Puzzles": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction through Interactive iPad Apps": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Smartboard Activities": 1 + "2nd Grade Mathematics: Using Montessori Materials for Addition and Subtraction Mastery": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Interactive Whiteboards and Dry-Erase Markers": 1 + "3rd Grade Elementary: Learning Multiplication Basics Using SMART Board Technology": 1 + "3rd Grade Elementary: Mastering Multiplication with Whiteboards and Math Manipulatives": 1 + "3rd Grade Elementary: Introductory Multiplication Course Using Whiteboards and Visual Learning Tools": 1 + "3rd Grade Elementary: Multiplication Made Easy with Whiteboard and Digital Number Lines": 1 + "3rd Grade Elementary: Learning the Fundamentals of Multiplication Using Whiteboards and Multicolored Markers": 1 + "3rd Grade Elementary: Interactive Multiplication Lesson Using Whiteboards and Virtual Math Games": 1 + "3rd Grade Elementary: Multiplication Foundations with Whiteboards and Online Math Resources": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Whiteboards, Markers and Digital Worksheets": 1 + "3rd Grade Elementary: Understanding Multiplication with Whiteboards and Interactive Math Tools": 1 + "2nd Grade Social Studies: Community Helpers at Work - Understanding the Use of Stethoscope in Healthcare": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Role of Firefighter’s Water Hose in Safety": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Importance of a Teacher’s Whiteboard": 1 + "2nd Grade Social Studies: Community Helpers at Work - Exploring the Tools used by Carpenters": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Use of Computers in Office Work": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Contribution of Postal Services and Mail Delivery": 1 + "2nd Grade Social Studies: Community Helpers at Work - Understanding the Use of Scales in a Grocery Store": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Role of a Traffic Light in Regulating Traffic": 1 + "2nd Grade Social Studies: Community Helpers at Work - How a Chef uses a Spatula in Cooking": 1 + "2nd Grade Social Studies: Community Helpers at Work - The Impact of Telephone in Communication Services": 1 + "6th Grade Music: The Evolution of Symphony and the Influence of Piano Forte’s Tuning Fork Technology on Mozart’s Compositions": 1 + "The Impact of Metronome Innovations on Symphony Composition: A 6th Grade Music Course": 1 + "6th Grade Music: The Symphony History and the Role of Piano Forte’s Tuning Fork Technology in Beethoven’s Works": 1 + "Exploring the Effects of Piano Forte’s Tuning Fork Technology on Baroque Symphonies: A 6th Grade Music Course": 1 + "6th Grade Music: Symphony History and the Impact of Piano Forte’s Tuning Fork Technology on Classical Era Composers ": 1 + "The Role of Sheet Music in Symphony Development: A 6th Grade Music Course": 1 + "6th Grade Music: The Symphony’s Evolution and the Impact of Piano Forte’s Tuning Fork Technology on Romantic Period Music": 1 + "Symphony History and the Influence of Piano Forte’s Tuning Fork Technology in the Creation of Operas: A 6th Grade Music Course": 1 + "6th Grade Music: Exploring the Symphony’s Timeline and the Role of Piano Forte’s Tuning Fork Technology in Orchestral Suites": 1 + "The Impact of Piano Forte’s Tuning Fork Technology on Symphony Composition: A 6th Grade Music Course on the Works of Haydn.": 1 + "6th Grade History: Unraveling Ancient Civilizations through the Plow and the Pottery Wheel": 1 + "6th Grade History: Discovering Ancient Civilizations via the Plow and Irrigation Systems": 1 + "6th Grade History: Revealing Ancient Civilizations through the Plow and Stone Carving Techniques": 1 + "6th Grade History: Investigating Ancient Civilizations with the Plow and Bronze Metallurgy": 1 + "6th Grade History: Decoding Ancient Civilizations with the Plow and Hieroglyphic Writing": 1 + "6th Grade History: Investigating Ancient Civilizations through the Plow and the Sundial": 1 + "6th Grade History: Understanding Ancient Civilizations using the Plow and Aqueduct Systems": 1 + "6th Grade History: Exploring Ancient Civilizations through the Plow and the Invention of the Wheel": 1 + "6th Grade History: Navigating Ancient Civilizations with the Plow and Early Astronomy": 1 + "6th Grade History: Uncovering Ancient Civilizations through the Plow and the Development of the Arch.": 1 + "7th Grade Language Arts: A Journey Through Poetry Using Metaphor Analyses": 1 + "7th Grade Language Arts: Exploring Poetry Through Digital Tools": 1 + "7th Grade Language Arts: Journey Through Poetry with Haiku Writing Techniques": 1 + "7th Grade Language Arts: Understanding Poetry through Rhyme Schemes": 1 + "7th Grade Language Arts: Journey Through Poetry and Figurative Language": 1 + "7th Grade Language Arts: Poetry Analysis Using Interactive Whiteboards": 1 + "7th Grade Language Arts: Journey Through Poetry, Exploring Rhythmic Patterns": 1 + "7th Grade Language Arts: Expressing Emotion in Poetry Using Similes": 1 + "7th Grade Language Arts: Journey Through Poetry with Online Poetry Journals": 1 + "7th Grade Language Arts: Exploring Symbolism in Poetry, A Journey Through Language Arts": 1 + "7th Grade Language Arts: Journey Through Poetry Using iPads for Digital Creativity": 1 + "6th Grade History: Exploring the Use of Bronze Tools in Ancient Civilizations and Early Astronomy": 1 + "6th Grade History: Understanding Ancient Civilizations through the Lens of the Wheel and Early Astronomy": 1 + "6th Grade History: Discovering Ancient Civilizations with the Use of Stone Tools and Early Astronomy": 1 + "6th Grade History: Unveiling the Role of Pottery in Ancient Civilizations and Early Astronomy": 1 + "6th Grade History: Tracing Ancient Civilizations through the Development of Irrigation Systems and Early Astronomy": 1 + "6th Grade History: The Impact of the Ox-drawn Plow on Ancient Civilizations and Early Astronomy": 1 + "6th Grade History: Analyzing Ancient Civilizations through the Prism of Metallurgy and Early Astronomy": 1 + "6th Grade History: Deciphering Ancient Civilizations through the Use of Hieroglyphics and Early Astronomy": 1 + "6th Grade History: Exploring Ancient Civilizations: The Influence of Writing Systems and Early Astronomy": 1 + "6th Grade History: Navigating Ancient Civilizations with the Use of Aqueducts and Early Astronomy": 1 + "9th Grade Language Arts: Exploring Metaphors in Poetry Using Interactive Learning Software": 1 + "9th Grade Language Arts: The Role of Similes in Poetry Studied through Google Classroom": 1 + "9th Grade Language Arts: Analyzing Imagery in Poetry with Turnitin Plagiarism Checker ": 1 + "9th Grade Language Arts: Understanding Symbolism in Poetry Through Prezi Presentations": 1 + "9th Grade Language Arts: Personification in Poetry: A Study Using VR Technology": 1 + "9th Grade Language Arts: Analyzing Rhyme Schemes in Poetry with Soundtrap Software": 1 + "9th Grade Language Arts: Exploring Alliteration in Poetry Using Adobe Spark Video": 1 + "9th Grade Language Arts: Understanding Hyperbole in Poetry Through Edmodo Discussion Boards": 1 + "9th Grade Language Arts: The Use of Onomatopoeia in Poetry Studied through Audacity Sound Editor": 1 + "9th Grade Language Arts: Analyzing Oxymoron in Poetry With Quizlet Flashcards": 1 + "4th Grade History: Mapping Early American History with Cartography": 1 + "4th Grade History: Decoding Early American History through Cryptography": 1 + "4th Grade History: Exploring Early American History using Augmented Reality": 1 + "4th Grade History: Unveiling Early American History through Genealogy": 1 + "4th Grade History: Navigating Early American History with Compass and Sextant": 1 + "4th Grade History: Discovering Early American History through Artifact Analysis": 1 + "4th Grade History: Learning Early American History using Virtual Reality": 1 + "4th Grade History: Interpreting Early American History through Hieroglyphics": 1 + "4th Grade History: Unraveling Early American History with Archaeological Dig Simulations": 1 + "4th Grade History: Analyzing Early American History through Census Data Interpretation": 1 + "3rd Grade English: Exploring Grammar with Nouns and Verbs via VocabularySpellingCity": 1 + "Interactive Learning of Adjectives and Adverbs in 3rd Grade English through VocabularySpellingCity": 1 + "3rd Grade English: Mastering Sentence Structure with VocabularySpellingCity": 1 + "Enhancing Reading Comprehension in 3rd Grade English using VocabularySpellingCity": 1 + "VocabularySpellingCity: A Tool for Active Learning of Pronouns in 3rd Grade English": 1 + "3rd Grade English: Conversational Skills Enhanced Through Grammar Games on VocabularySpellingCity": 1 + "3rd Grade English: Learning Prepositions and Conjunctions using VocabularySpellingCity": 1 + "Understanding Subject-Verb Agreement in 3rd Grade English with VocabularySpellingCity": 1 + "3rd Grade English: Enhancing Writing Skills through Grammar Lessons on VocabularySpellingCity": 1 + "VocabularySpellingCity: An Interactive Platform for Grammar Punctuation Learning in 3rd Grade English.": 1 + "1st Grade Health: Understanding Basic Nutrition and Hygiene Through MyPlate ": 1 + "1st Grade Health: Introduction to Dental Hygiene with Interactive Tooth Brushing Apps ": 1 + "1st Grade Health: Food Pyramid Exploration in Basic Nutrition ": 1 + "1st Grade Health: Hygiene Practices with Hand Sanitizer Experiments ": 1 + "1st Grade Health: Learning Nutrition via Virtual Reality Food Shopping ": 1 + "1st Grade Health: Basic Nutrition and Hygiene Using Smartboard Activities ": 1 + "1st Grade Health: Teaching Hygiene through Germ Simulation Experiments ": 1 + "1st Grade Health: Understanding Basic Nutrition through Cooking Classes ": 1 + "1st Grade Health: Hygiene Lessons with UV Light Handwashing Demonstrations ": 1 + "1st Grade Health: Basic Nutrition Exploration with Interactive Dietary Apps": 1 + "3rd Grade Physical Education: Introduction to Soccer Using Training Cones": 1 + "3rd Grade Physical Education: Fundamentals of Basketball with Dribbling Drills": 1 + "3rd Grade Physical Education: Understanding Volleyball Through Ball Control Techniques": 1 + "3rd Grade Physical Education: Introduction to Cricket with Batting Practice": 1 + "3rd Grade Physical Education: Basics of Baseball Utilizing Pitching Machines": 1 + "3rd Grade Physical Education: Introductory Team Handball with Passing Drills": 1 + "3rd Grade Physical Education: Learning Rugby Through Tackling Drills": 1 + "3rd Grade Physical Education: Exploring Lacrosse with Stick Handling Skills": 1 + "3rd Grade Physical Education: Discovering Football Through Agility Ladders": 1 + "3rd Grade Physical Education: Introduction to Field Hockey with Dribbling Skills": 1 + "5th Grade History: The American Revolution and the Role of the Printing Press": 1 + "5th Grade History: The Impact of Gunpowder in the American Revolution": 1 + "5th Grade History: The American Revolution - Navigating by Stars": 1 + "5th Grade History: Communication Techniques during the American Revolution": 1 + "5th Grade History: The American Revolution - Introduction to Espionage": 1 + "5th Grade History: The American Revolution and the Role of Cannons": 1 + "5th Grade History: The American Revolution - The Use of Horses in Battle": 1 + "5th Grade History: The American Revolution - The Contribution of the Postal Service": 1 + "5th Grade History: The American Revolution - The Significance of the Telegraph": 1 + "5th Grade History: The American Revolution - Understanding Strategies with Chess.": 1 + "Third Grade Environmental Studies: Discovering Nature’s Wonders through Microscopy": 1 + "Third Grade Environmental Studies: Exploring Nature’s Wonders with Digital Photography": 1 + "Third Grade Environmental Studies: Unveiling Nature’s Wonders with Binoculars": 1 + "Third Grade Environmental Studies: Investigating Nature’s Wonders using Geographical Information Systems": 1 + "Third Grade Environmental Studies: Unraveling Nature’s Wonders through Soil Testing": 1 + "Third Grade Environmental Studies: Discovering Nature’s Wonders using Weather Stations": 1 + "Third Grade Environmental Studies: Studying Nature’s Wonders with Plant Identification Apps": 1 + "Third Grade Environmental Studies: Exploring Nature’s Wonders through Sustainable Practices": 1 + "Third Grade Environmental Studies: Learning Nature’s Wonders with Outdoor Navigation Tools": 1 + "Third Grade Environmental Studies: Understanding Nature’s Wonders through Water Quality Testing": 1 + "7th Grade Language Arts: Decoding Science Fiction with the Concept of Time Travel using H.G. Wells’ The Time Machine": 1 + "Exploring Time Travel in Science Fiction: The Use of Quantum Mechanics in 7th Grade Language Arts": 1 + "The TARDIS as a Time Travel Mechanism: A 7th Grade Language Arts Exploration in Science Fiction": 1 + "7th Grade Language Arts: Decoding Time Paradoxes in Science Fiction through the Lens of Time Travel": 1 + "Interpreting the Concept of Wormholes in Science Fiction: A 7th Grade Language Arts Course on Time Travel": 1 + "Deconstructing Time Dilation in Science Fiction: A 7th Grade Language Arts Course": 1 + "7th Grade Language Arts: An Exploration of the Multiverse Theory in Time Travel Science Fiction": 1 + "The Application of Einstein’s Theory of Relativity in Time Travel Science Fiction: A 7th Grade Language Arts Course": 1 + "Analysing Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel": 1 + "Understanding the Fourth Dimension in Time Travel Science Fiction: A 7th Grade Language Arts Course.": 1 + "4th Grade Mathematics: Understanding Fractions with Pie Charts and Their Application in Everyday Life": 1 + "4th Grade Mathematics: Grasping Fractions via Interactive Whiteboard Tools and Their Real-World Usage": 1 + "4th Grade Mathematics: Mastering Fractions with Digital Manipulatives and Their Everyday Practicality": 1 + "4th Grade Mathematics: Learning Fractions through Abacus and Their Usage in Daily Scenarios": 1 + "4th Grade Mathematics: Deciphering Fractions Using Fraction Bars and Their Role in Real-Life Situations": 1 + "4th Grade Mathematics: Exploring Fractions with Virtual Math Labs and Their Everyday Relevance": 1 + "4th Grade Mathematics: Discovering Fractions Through Number Lines and Their Practical Applications": 1 + "4th Grade Mathematics: Navigating Fractions with GeoGebra and Their Usages in Everyday Life": 1 + "4th Grade Mathematics: Unfolding Fractions with Fraction Circles and Their Importance in Daily Life": 1 + "4th Grade Mathematics: Comprehending Fractions via Math Software and Their Everyday Utility": 1 + "7th Grade Language Arts: Delving into Asimov’s Robots and the Concept of Artificial Intelligence": 1 + "Exploring the Realm of Science Fiction: Understanding AI through Neuromorphic Computing in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Science Fiction and the Concept of AI through Machine Learning": 1 + "Understanding Artificial Intelligence: A Deep Dive into Neural Networks in 7th Grade Science Fiction Literature": 1 + "7th Grade Language Arts: Exploring Science Fiction through the Lens of Quantum Computing and AI": 1 + "Deciphering AI: An Exploration of Turing Test in 7th Grade Science Fiction Literature": 1 + "7th Grade Language Arts: Investigating Science Fiction and the Concept of AI using Expert Systems": 1 + "7th Grade Language Arts: An Exploration of Science Fiction and Artificial Intelligence through Natural Language Processing": 1 + "Unraveling AI: A Journey into Genetic Algorithms in 7th Grade Science Fiction Literature": 1 + "7th Grade Language Arts: Science Fiction and the Concept of AI through the Prism of Deep Learning": 1 + "7th Grade Physical Education: Fundamentals of Athletics Focusing on Football ": 1 + "7th Grade Physical Education: Fundamentals of Athletics & The Use of Heart Rate Monitors": 1 + "7th Grade Physical Education: Emphasizing Agility Ladders in Fundamentals of Athletics ": 1 + "7th Grade Physical Education: Fundamentals of Athletics with Plyometric Boxes": 1 + "7th Grade Physical Education: Fundamentals of Athletics and the Concept of Teamwork": 1 + "7th Grade Physical Education: Fundamentals of Athletics Incorporating Resistance Bands": 1 + "7th Grade Physical Education: Fundamentals of Athletics - Understanding the Role of Nutrition": 1 + "7th Grade Physical Education: Fundamentals of Athletics - Utilizing Medicine Balls": 1 + "7th Grade Physical Education: Fundamentals of Athletics - Exploring Circuit Training": 1 + "7th Grade Physical Education: Fundamentals of Athletics - Mastering the Art of Stretching": 1 + "2nd Grade Music: Exploring Rhythm and Tempo with Clapping Hands": 1 + "2nd Grade Music: Introduction to Rhythm and Tempo using a Metronome": 1 + "2nd Grade Music: Learning Rhythm and Tempo through Drumming": 1 + "2nd Grade Music: Understanding Rhythm and Tempo with a Piano Keyboard": 1 + "2nd Grade Music: Basics of Rhythm and Tempo using Music Software": 1 + "2nd Grade Music: Discovering Rhythm and Tempo with Percussion Instruments": 1 + "2nd Grade Music: Mastering Rhythm and Tempo with Interactive Music Games": 1 + "2nd Grade Music: Rhythm and Tempo Introduction using Music Apps": 1 + "2nd Grade Music: Rhythm and Tempo Fundamentals with Electronic Beats": 1 + "2nd Grade Music: The Art of Rhythm and Tempo using a Rhythm Wheel": 1 + "2nd Grade Art: Exploring Adobe Photoshop for Digital Art": 1 + "2nd Grade Art: Navigating Procreate for Beginners": 1 + "2nd Grade Art: Introduction to Digital Art through Microsoft Paint": 1 + "2nd Grade Art: Learning Digital Art with Canva": 1 + "2nd Grade Art: Introduction to Digital Art using iPads": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art": 1 + "2nd Grade Art: Introduction to Digital Art - Understanding Layers": 1 + "2nd Grade Art: Digital Art Basics with Wacom Tablets": 1 + "2nd Grade Art: Introduction to Digital Art - Exploring Vector Art": 1 + "2nd Grade Art: Getting Started with Digital Coloring in ArtFlow": 1 + "5th Grade History: Understanding the Role of Cannons in the American Revolution": 1 + "5th Grade History: Tea Tax and its Influence on the American Revolution": 1 + "5th Grade History: The Printing Press and the Spread of Revolutionary Ideas": 1 + "5th Grade History: The Role of Firearms in the American Revolution": 1 + "5th Grade History: Exploring the Influence of the French Alliance in the American Revolution": 1 + "5th Grade History: Decoding the Secret Messages of the American Revolution": 1 + "5th Grade History: Introduction to the Naval Battles of the American Revolution": 1 + "5th Grade History: Strategic Role of Forts in the American Revolution": 1 + "5th Grade History: The Significance of the Battle of Saratoga in the American Revolution": 1 + "5th Grade History: The Role of Horses in the Transportation and Communication during the American Revolution.": 1 + "7th Grade History: Exploring the Pyramids in Ancient Egyptian Civilization": 1 + "7th Grade History: An Insight into the Hieroglyphics of Ancient Egypt": 1 + "7th Grade History: Ancient Roman Architecture: The Colosseum ": 1 + "7th Grade History: Study of Aqueducts in Ancient Roman Civilization": 1 + "7th Grade History: The Concept of Democracy in Ancient Greece ": 1 + "7th Grade History: Ancient Greek Philosophy: The Birth of Western Thought": 1 + "7th Grade History: The Great Wall: Defense Technology of Ancient China": 1 + "7th Grade History: The Terracotta Army: Ancient China’s Burial Art": 1 + "7th Grade History: The Mayan Calendar: A Glimpse into Ancient American Civilizations": 1 + "7th Grade History: Ancient Islamic Civilizations: The Golden Age of Science and Technology": 1 + "Exploring Paradoxes in Time Loops: A 7th Grade Language Arts Course on Time Travel using The Grandfather Paradox Concept": 1 + "Unraveling Time Loops with H.G. Wells’ The Time Machine: A 7th Grade Language Arts Course on Time Travel": 1 + "Deconstructing Time Loops in Star Trek: A 7th Grade Language Arts Course Using Chroniton Particles": 1 + "Deciphering Time Loops with the Butterfly Effect: A 7th Grade Language Arts Course on Time Travel": 1 + "Investigating Time Loops with Quantum Mechanics: A 7th Grade Language Arts Course on Time Travel": 1 + "Unpacking Time Loops in Doctor Who: A 7th Grade Language Arts Course on Time Travel Using the TARDIS": 1 + "Dissecting Time Loops with Schrödinger’s Cat Paradox: A 7th Grade Language Arts Course on Time Travel": 1 + "Interpreting Time Loops in Back to the Future: A 7th Grade Language Arts Course Using Flux Capacitors": 1 + "Exploring Time Loops with the Multiverse Theory: A 7th Grade Language Arts Course on Time Travel": 1 + "Navigating Time Loops in Primer: A 7th Grade Language Arts Course on Time Travel Using Recursive Time Travel Concept": 1 + "Understanding Body Mass Index (BMI): A 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Understanding Calorie Counting: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Macro and Micro Nutrient Analysis: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Understanding Food Pyramid: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Calorimetry in Diet Planning: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Glycemic Index and Diet Planning: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Understanding Portion Control: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Nutritional Label Reading: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Understanding Energy Balance: 9th Grade Physical Education Course on Nutrition and Diet Planning": 1 + "Heart Rate Monitoring for Fitness: 9th Grade Physical Education Course on Nutrition and Diet Planning.": 1 + "9th Grade Social Studies: Exploring Democracy through the lens of Blockchain Technology": 1 + "9th Grade Social Studies: Understanding Government Systems with a Focus on AI Policy Making": 1 + "9th Grade Social Studies: Analyzing Government Systems with Geographic Information Systems (GIS)": 1 + "9th Grade Social Studies: Comprehending Government Systems via Virtual Reality Simulations": 1 + "9th Grade Social Studies: Examining Government Systems through the Concept of Federalism": 1 + "9th Grade Social Studies: Deciphering Government Systems using Big Data Analysis": 1 + "9th Grade Social Studies: Investigating Governmental Systems with the Tool of Political Cartography": 1 + "9th Grade Social Studies: Scrutinizing Government Systems through the Prism of Social Media Influence": 1 + "9th Grade Social Studies: Unraveling Government Systems with Augmented Reality Experiences": 1 + "9th Grade Social Studies: Understanding Government Systems by Studying the Impact of Cybersecurity": 1 + "6th Grade History: Unveiling Ancient Mesopotamia with the Use of Flint Knives and Stargazing Techniques": 1 + "6th Grade History: Exploring Egyptian Dynasties through Hieroglyphics and Early Astronomy": 1 + "6th Grade History: Decoding the Mayan Civilization with Obsidian Blades and Ancient Star Maps": 1 + "6th Grade History: Navigating the Aztec Empire with the Use of Metate and Early Astronomical Calculations": 1 + "6th Grade History: Encountering the Ancient Chinese Dynasties with Bronze Tools and Early Astronomical Observations": 1 + "6th Grade History: Investigating the Indus Valley Civilization with Stone Drills and Ancient Star Charting": 1 + "6th Grade History: Rediscovering the Prehistoric Aegean Cultures with Obsidian Arrowheads and Early Sky Gazing Techniques": 1 + "6th Grade History: Delving into the Ancient Greek World with Bronze Chisels and Early Astronomical Devices": 1 + "6th Grade History: Surveying the Roman Empire through the Lens of Iron Tools and Early Astronomy": 1 + "6th Grade History: Tracing the Celtic Tribes with Flint Scrapers and Early Star Observation Techniques": 1 + "8th Grade Social Studies: Employing Chess Strategies to Understand Democracy and Government": 1 + "8th Grade Social Studies: Decoding Democracy and Government with Cryptography Tools": 1 + "8th Grade Social Studies: Understanding Democracy and Government through Minecraft: Education Edition": 1 + "8th Grade Social Studies: Applying Game Theory and Blockchain Technology to Understand Democracy and Government": 1 + "8th Grade Social Studies: Using Python Programming to Illustrate Democracy and Government Concepts": 1 + "8th Grade Social Studies: Exploring Democracy and Government through Roblox Game Design": 1 + "8th Grade Social Studies: Understanding Democracy and Government with Virtual Reality Simulations": 1 + "8th Grade Social Studies: Applying Game Theory with Lego Mindstorms to Understand Democracy and Government": 1 + "8th Grade Social Studies: Unraveling Democracy and Government through Collaborative Online Platforms": 1 + "8th Grade Social Studies: Exploring Democracy and Government Principles through Artificial Intelligence Concepts": 1 + "3rd Grade Science: Exploring Photosynthesis in Plants Using Microscopes": 1 + "3rd Grade Science: Understanding Plant Reproduction Through the Study of Pollination": 1 + "3rd Grade Science: Studying Plant Lifecycle with Time-Lapse Photography": 1 + "3rd Grade Science: Unraveling the World of Plants: An Introduction to Botany": 1 + "3rd Grade Science: Investigating Plant Growth with Hydroponics Technology": 1 + "3rd Grade Science: Exploring Plant Cells Through Microscopic Examination": 1 + "3rd Grade Science: Observing Plant Responses to Light Using Phototropism Experiments": 1 + "3rd Grade Science: Discovering Seed Germination Using Controlled Environment Chambers": 1 + "3rd Grade Science: Learning About Plant Nutrition Through Soil Analysis": 1 + "3rd Grade Science: Understanding Leaf Structures and Functions Using Digital Microscopy": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction Using Abacus and Number Line": 1 + "2nd Grade Mathematics: Proficiency in Addition and Subtraction Using Abacus and Digital Tools": 1 + "2nd Grade Mathematics: Achieving Excellence in Addition and Subtraction Using Abacus and Manipulatives": 1 + "2nd Grade Mathematics: Acquiring Superior Addition and Subtraction Skills Using Abacus and Flashcards": 1 + "2nd Grade Mathematics: Excelling in Addition and Subtraction Using Abacus and Interactive Whiteboards": 1 + "2nd Grade Mathematics: Dominating Addition and Subtraction with the Help of Abacus and Counting Blocks": 1 + "2nd Grade Mathematics: Advanced Addition and Subtraction Techniques Using Abacus and Visual Aids": 1 + "2nd Grade Mathematics: Comprehensive Addition and Subtraction Training Using Abacus and Tablets": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills Using Abacus and Fraction Bars": 1 + "2nd Grade Mathematics: Effective Addition and Subtraction Strategies Using Abacus and Math Apps": 1 + "2nd Grade Social Studies: Exploring Firefighting Tools in our Community ": 1 + "2nd Grade Social Studies: Understanding the Role of Medical Equipment in Our Community": 1 + "2nd Grade Social Studies: The Impact of Agricultural Machinery on our Community": 1 + "2nd Grade Social Studies: The Importance of Construction Tools in our Community": 1 + "2nd Grade Social Studies: Exploring the Use of Baking Tools by Community Bakers": 1 + "2nd Grade Social Studies: The Influence of Technology in Law Enforcement in our Community": 1 + "2nd Grade Social Studies: Discovering Communication Tools used by Community Journalists": 1 + "2nd Grade Social Studies: Exploration of Gardening Tools used by Community Gardeners": 1 + "2nd Grade Social Studies: Understanding the Role of Computers in our Community Libraries": 1 + "2nd Grade Social Studies: The Significance of Musical Instruments in our Community Bands": 1 + "6th Grade History: The Ancient Chinese Civilization and the Construction of their Great Wall using Tamped Earth": 1 + "6th Grade History: Ancient Chinese Civilization - The Great Wall and the Role of the Wheelbarrow": 1 + "6th Grade History: The Great Wall - A Study of Ancient Chinese Civilization and the Use of Pulley Systems": 1 + "6th Grade History: Ancient Chinese Civilization - The Impact of Bronze Metallurgy on the Great Wall": 1 + "6th Grade History: The Great Wall - Ancient Chinese Civilization and the Art of Stonemasonry": 1 + "Ancient Chinese Civilization and the Use of Fire in the Construction of the Great Wall for 6th Grade History": 1 + "6th Grade History: Ancient Chinese Civilization - The Great Wall and the Influence of Gunpowder": 1 + "6th Grade History: The Great Wall and the Ancient Chinese Civilization’s Use of the Abacus": 1 + "Ancient Chinese Civilization and the Role of the Crossbow in the Defense of the Great Wall for 6th Grade History": 1 + "6th Grade History: The Great Wall - Ancient Chinese Civilization and the Importance of Papermaking": 1 + "2nd Grade Social Studies: Exploring Our Local Community with Google Maps": 1 + "2nd Grade Social Studies: Understanding Our Local Community through Census Data": 1 + "2nd Grade Social Studies: Our Local Community’s History via Virtual Reality Tours": 1 + "2nd Grade Social Studies: Our Local Community and Its Connection to Globalization": 1 + "2nd Grade Social Studies: Studying Our Local Community’s Economy Using Excel": 1 + "2nd Grade Social Studies: Our Local Community’s Ecosystem and Biodiversity with Augmented Reality": 1 + "2nd Grade Social Studies: Investigating Our Local Community’s Infrastructure through 3D Modeling": 1 + "2nd Grade Social Studies: Our Local Community’s Culture and Traditions Explored through Podcasts": 1 + "2nd Grade Social Studies: Our Local Community’s Political Structure Examined with Interactive Charts": 1 + "2nd Grade Social Studies: Our Local Community’s Education System Analyzed using Statistical Software": 1 + "8th Grade Art: Mastering Sketching with Ballpoint Pen and Ink": 1 + "8th Grade Art: Fundamentals of Charcoal Sketching in Pen and Ink": 1 + "8th Grade Art: The Art of Contour Lines in Sketching with Pen and Ink": 1 + "8th Grade Art: Exploring Shading Techniques in Pen and Ink Sketching": 1 + "8th Grade Art: The Basics of Sketching with Fountain Pen and Ink": 1 + "8th Grade Art: Understanding Perspective in Pen and Ink Sketching": 1 + "8th Grade Art: Basics of Sketching with Pen and Ink using Graphite": 1 + "8th Grade Art: Introduction to Cross-Hatching in Pen and Ink Sketching": 1 + "8th Grade Art: Sketching with Pen and Ink using Digital Tablets": 1 + "8th Grade Art: Pen and Ink Sketching: The Magic of Stippling Techniques": 1 + "Kindergarten Science: Exploring Sight with a Microscope": 1 + "Kindergarten Science: Discovering Touch through Texture Boards": 1 + "Kindergarten Science: Understanding Sound with a Tuning Fork": 1 + "Kindergarten Science: Learning Taste through Food Sampling": 1 + "Kindergarten Science: Investigating Smell with Scented Jars": 1 + "Kindergarten Science: Analyzing our Five Senses using VR Technology": 1 + "Kindergarten Science: Discovering Hearing with Sound Waves": 1 + "Kindergarten Science: Exploring Touch with Sensory Bins": 1 + "Kindergarten Science: Understanding Taste through a Taste Test": 1 + "Kindergarten Science: Learning Smell with Aromatherapy Oils": 1 + "9th Grade Music: Symphony of Sounds - The Role of the Conductor in Tempo Control using Metronomes": 1 + "9th Grade Music: Symphony of Sounds - Exploring the Conductor’s Use of Baton Techniques": 1 + "9th Grade Music: Symphony of Sounds - The Conductor’s Role in Dynamics: Lessons in Fortissimo and Pianissimo": 1 + "9th Grade Music: Symphony of Sounds - The Influence of Conductors on Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - The Role of the Conductor in Cuing Musicians": 1 + "9th Grade Music: Symphony of Sounds - Conducting and Interpretation: The Art of Phrasing": 1 + "9th Grade Music: Symphony of Sounds - The Role of the Conductor in Interpreting Music Scores": 1 + "9th Grade Music: Symphony of Sounds - Exploring the Conductor’s Use of Digital Sheet Music": 1 + "9th Grade Music: Symphony of Sounds - The Conductor’s Role in Symphony Rehearsals": 1 + "9th Grade Music: Symphony of Sounds - Conducting Techniques and the Use of Conducting Patterns.": 1 + "7th Grade Language Arts: Poetry Analysis Using SMART Board Interactive Whiteboards and Google Classroom": 1 + "7th Grade Language Arts: Enhancing Poetry Analysis Through Promethean Boards and Padlet": 1 + "7th Grade Language Arts: The Art of Poetry Analysis Using Mimio Interactive Whiteboards and Nearpod": 1 + "7th Grade Language Arts: Boosting Poetry Analysis Through Microsoft Surface Hub and Kahoot ": 1 + "7th Grade Language Arts: Poetry Analysis Using eBeam Interactive Whiteboards and Flipgrid": 1 + "7th Grade Language Arts: Exploring Poetry Analysis with Epson BrightLink Interactive Whiteboards and Edmodo": 1 + "7th Grade Language Arts: Integrating Poetry Analysis with Hitachi Starboard Interactive Whiteboards and Quizlet": 1 + "7th Grade Language Arts: Poetry Analysis Using BenQ Interactive Whiteboards and Seesaw ": 1 + "7th Grade Language Arts: Advancing Poetry Analysis with Sharp AQUOS BOARD Interactive Whiteboards and Schoology": 1 + "7th Grade Language Arts: Poetry Analysis Using Newline Interactive Whiteboards and Google Docs": 1 + "3rd Grade Physical Education: Enhancing Coordination in Dance with Balance Beams": 1 + "3rd Grade Physical Education: Coordination in Dance through Rhythm Training Tools": 1 + "3rd Grade Physical Education: Improving Dance Coordination with Choreography Software": 1 + "3rd Grade Physical Education: Dance Coordination and Spatial Awareness Using Obstacle Courses": 1 + "3rd Grade Physical Education: Dance Coordination Development through Virtual Reality Technology": 1 + "3rd Grade Physical Education: Enhancing Dance Coordination with Interactive Dance Mats": 1 + "3rd Grade Physical Education: Dance Coordination Using Music Theory Concepts": 1 + "3rd Grade Physical Education: Coordination in Dance with Video Feedback Tools": 1 + "3rd Grade Physical Education: Dance Coordination Enhancement through Resistance Bands": 1 + "3rd Grade Physical Education: Improving Dance Coordination with Metronome Training": 1 + "1st Grade Music: Rhythm and Melody Fundamentals: A Focus on Tempo using Percussion Instruments": 1 + "1st Grade Music: Exploring Rhythm and Melody through Tempo with Hand Drums": 1 + "1st Grade Music: Basics of Tempo in Rhythm and Melody using Metronomes": 1 + "1st Grade Music: Understanding Tempo in Rhythm and Melody with Digital Music Software": 1 + "1st Grade Music: Tempo and Its Effects on Rhythm and Melody using Piano": 1 + "1st Grade Music: Rhythm, Melody, and Tempo: A Study with the Recorder": 1 + "1st Grade Music: Tempo Exploration in Rhythm and Melody with Music Apps": 1 + "1st Grade Music: Rhythm and Melody Fundamentals: Emphasizing Tempo with Xylophones": 1 + "1st Grade Music: Learning Tempo in Rhythm and Melody through Dance": 1 + "1st Grade Music: Investigating Tempo in Rhythm and Melody with Maracas": 1 + "8th Grade Language Arts: Exploring Metaphors in Poetry with Interactive Software": 1 + "8th Grade Language Arts: Unraveling Symbolism in Poetry using Digital Annotation Tools": 1 + "8th Grade Language Arts: Understanding Rhyming Schemes in Poetry through Audio-Visual Aids": 1 + "8th Grade Language Arts: Discovering Imagery in Poetry with Virtual Reality": 1 + "8th Grade Language Arts: Analyzing Structure of Poetry through Text-to-Speech Software": 1 + "8th Grade Language Arts: Engaging with Personification in Poetry using Multimedia Presentations": 1 + "8th Grade Language Arts: Deciphering Tone in Poetry with Audio Recording Technology": 1 + "8th Grade Language Arts: Exploring Themes in Poetry using Online Discussion Forums": 1 + "8th Grade Language Arts: Examining Alliteration in Poetry with Interactive Whiteboards": 1 + "8th Grade Language Arts: Dissecting Similes in Poetry using E-Books and Highlighting Tools": 1 + "2nd Grade Social Studies: Exploring the Role of Trumpets in our Community Bands": 1 + "2nd Grade Social Studies: Understanding the Importance of Drums in our Local Bands": 1 + "2nd Grade Social Studies: The Significance of Violins in our Neighborhood Bands": 1 + "2nd Grade Social Studies: Studying the Impact of Piano in our Community Orchestras": 1 + "2nd Grade Social Studies: Analysis of the Contribution of Guitars in our Community Bands": 1 + "2nd Grade Social Studies: Role of Flutes in our Community Bands and their Cultural Significance": 1 + "2nd Grade Social Studies: The Influence of Saxophones in our Local Music Groups": 1 + "2nd Grade Social Studies: The Cultural and Social Impact of Harmonicas in our Community Bands": 1 + "2nd Grade Social Studies: The Historical Significance of Accordions in our Community Bands": 1 + "2nd Grade Social Studies: Decoding the Role of Cellos in our Community Orchestras": 1 + "3rd Grade Music: An Introduction to Folk Music Using the Ukulele": 1 + "3rd Grade Music: Exploring Folk Music Through the Recorder": 1 + "3rd Grade Music: An Introduction to Folk Music and Rhythm Patterns": 1 + "3rd Grade Music: Discovering Folk Music through Percussion Instruments": 1 + "3rd Grade Music: An Introduction to Folk Music with the Harmonica": 1 + "3rd Grade Music: Folk Music Exploration Using Voice Modulation ": 1 + "3rd Grade Music: Learning Folk Music through Music Composition Software": 1 + "3rd Grade Music: Introduction to Folk Music and the Concept of Improvisation": 1 + "3rd Grade Music: Folk Music Discovery with the Melodica": 1 + "3rd Grade Music: An Introduction to Folk Music and the Art of Storytelling": 1 + "7th Grade History: The Civil War Era and the Impact of Industrialization": 1 + "The Role of Railroads in the Civil War: A Course for 7th Grade History": 1 + "7th Grade History: The Civil War Era and the Emergence of Telegraph Communications": 1 + "The Civil War Era: A Deep Dive into the Role of Medicine for 7th Grade History": 1 + "7th Grade History: The Civil War Era and the Study of Ironclad Warships": 1 + "The Civil War Era: The Advent of Photography - A 7th Grade History Course": 1 + "7th Grade History: The Civil War Era - Examining the Use of Balloons in Surveillance": 1 + "7th Grade History: The Civil War Era - The Evolution of Weaponry ": 1 + "The Civil War Era and the Importance of the Cotton Gin: A 7th Grade History Course": 1 + "7th Grade History: The Civil War Era - The Contribution of the Printing Press.": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing Skills with iPads, Dragon Dictation, and Google Docs Integration": 1 + "4th Grade Language Arts: Improving Writing Skills using iPads, Dragon Dictation, and the Hemingway App": 1 + "4th Grade Language Arts: Boosting Paragraph Writing Proficiency using iPads, Dragon Dictation, and Storybird": 1 + "4th Grade Language Arts: Augmenting Writing Skills using iPads, Dragon Dictation, and Evernote for Brainstorming": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing Skills with iPads, Dragon Dictation, and the Use of Grammarly ": 1 + "4th Grade Language Arts: Refining Paragraph Writing Skills using iPads, Dragon Dictation, and the ProWriting Aid Tool": 1 + "4th Grade Language Arts: Advancing Writing Skills with iPads, Dragon Dictation, and the Concept of Mind Mapping": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing Skills using iPads, Dragon Dictation, and the Scrivener Writing App": 1 + "4th Grade Language Arts: Strengthening Writing Skills with iPads, Dragon Dictation, and the Use of Thesaurus.com for Vocabulary Enhancement": 1 + "4th Grade Language Arts: Developing Paragraph Writing Skills using iPads, Dragon Dictation, and the Application of Creative Writing Techniques": 1 + "5th Grade Science: Exploring Weather Systems with Barometers": 1 + "5th Grade Science: Unfolding Weather Systems using Weather Maps": 1 + "5th Grade Science: Investigating Weather Systems via Thermometers": 1 + "5th Grade Science: Decoding Weather Systems with Radar": 1 + "5th Grade Science: Discovering Weather Systems using Satellites": 1 + "5th Grade Science: Exploring Weather Systems through Anemometers": 1 + "5th Grade Science: Weather Systems Study using Rain Gauges": 1 + "5th Grade Science: Exploring Weather Systems with Hygrometers": 1 + "5th Grade Science: Understanding Weather Systems via Weather Balloons": 1 + "5th Grade Science: Probing Weather Systems with Weather Stations": 1 + "5th Grade Science: Navigating Weather Systems using Weather Vane.": 1 + "2nd Grade Language Arts: Exploring the Magic of Storytelling through Puppetry": 1 + "2nd Grade Language Arts: The Magic of Storytelling using Digital Tools": 1 + "2nd Grade Language Arts: Interactive Storytelling with Augmented Reality": 1 + "2nd Grade Language Arts: The Magic of Storytelling through Comic Strips": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Audiobook Creation": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Animation Software": 1 + "2nd Grade Language Arts: Storytelling and Character Development using Role Play": 1 + "2nd Grade Language Arts: The Magic of Storytelling through Story Cubes": 1 + "2nd Grade Language Arts: The Magic of Storytelling using Storyboarding Techniques": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard Technology.": 1 + "9th Grade History: Exploring the Civil War Through Photograph Analysis": 1 + "9th Grade History: Understanding the Civil War through Map Reading": 1 + "9th Grade History: The Civil War in Detail: A Focus on Primary Source Documents": 1 + "9th Grade History: The Civil War and Its Impact: A Study Through Political Cartoons": 1 + "9th Grade History: The Civil War Unveiled: Using Battlefield Artifacts": 1 + "9th Grade History: The Civil War Era: A Deep Dive into Soldier’s Diaries": 1 + "9th Grade History: The Civil War Through the Lens of Telegraphy": 1 + "9th Grade History: The Civil War: Analyzing Its Causes Through Economic Data": 1 + "9th Grade History: Deciphering the Civil War: A Study of Codes and Cipher Systems": 1 + "9th Grade History: The Civil War: A Study Through the Use of Railroads and Telegraphs": 1 + "1st Grade Art: Exploring Shapes and Colors Through Finger Painting": 1 + "1st Grade Art: Introduction to Shapes and Colors Using Clay Modeling": 1 + "1st Grade Art: Discovering Shapes and Colors with Watercolor Techniques": 1 + "1st Grade Art: Understanding Shapes and Colors Through Collage Creation": 1 + "1st Grade Art: Learning Shapes and Colors with Crayon Art": 1 + "1st Grade Art: Intro to Shapes and Colors Using Digital Art Apps": 1 + "1st Grade Art: Exploring Shapes and Colors with Origami": 1 + "1st Grade Art: Introduction to Shapes and Colors Using Pastel Drawing": 1 + "1st Grade Art: Learning Shapes and Colors Through Printmaking Techniques": 1 + "1st Grade Art: Intro to Shapes and Colors with Papier-Mache Crafts": 1 + "7th Grade History: The Renaissance Era and the Invention of the Printing Press": 1 + "7th Grade History: Exploration in the Renaissance Era: The Compass": 1 + "7th Grade History: The Renaissance Era and the Concept of Humanism": 1 + "7th Grade History: The Renaissance Era: The Birth of Perspective in Art": 1 + "7th Grade History: The Renaissance Era and the Advancement of Astronomy": 1 + "7th Grade History: The Rise of Merchant Class during the Renaissance Era": 1 + "7th Grade History: The Renaissance Era and the Medical Revolution: The Scientific Anatomy": 1 + "7th Grade History: The Renaissance Era and the Transformation of Music: The Polyphony": 1 + "7th Grade History: The Renaissance Era and the Development of Linear Perspective in Painting": 1 + "7th Grade History: The Renaissance Era: The Introduction of Double-entry Bookkeeping.": 1 + "1st Grade Art: Exploring Colors with Watercolors": 1 + "1st Grade Art: Discovering Colors through Digital Painting": 1 + "1st Grade Art: Understanding Colors with Crayons": 1 + "1st Grade Art: Learning About Colors and Mixing with Acrylic Paints": 1 + "1st Grade Art: Grasping Colors using Color Wheel": 1 + "1st Grade Art: Delving into Colors with Oil Pastels": 1 + "1st Grade Art: Studying Colors using Color Pencils": 1 + "1st Grade Art: Learning About Primary and Secondary Colors in Art": 1 + "1st Grade Art: Navigating Colors with Tempera Paints": 1 + "1st Grade Art: Unraveling Colors through Collage Making": 1 + "8th Grade Music: The Evolution of Classical Music and the Role of the Harpsichord in Baroque Era": 1 + "8th Grade Music: The Impact of Sheet Music in the Evolution of Classical Music and Harpsichord": 1 + "8th Grade Music: The Evolution of Classical Music, Role of the Harpsichord, and the Introduction of Metronome": 1 + "8th Grade Music: Exploring the Evolution of Classical Music, the Harpsichord and the Concept of Polyphony": 1 + "8th Grade Music: The Role of Harpsichord in Classical Music’s Evolution and the Advent of Music Notation": 1 + "8th Grade Music: The Evolution of Classical Music, the Harpsichord and the Influence of Opera": 1 + "8th Grade Music: The Role of Harpsichord and Church Modes in the Evolution of Classical Music": 1 + "8th Grade Music: The Evolution of Classical Music, the Harpsichord and the Emergence of Sonatas": 1 + "8th Grade Music: The Evolution of Classical Music: The Harpsichord and the Introduction of the Equal Temperament Scale": 1 + "8th Grade Music: The Evolution of Classical Music and the Role of the Harpsichord in Chamber Music": 1 + "3rd Grade Music: Understanding Rhythm and Beat through Percussion Instruments": 1 + "3rd Grade Music: Exploring Rhythm and Beat with Metronomes": 1 + "3rd Grade Music: Learning Rhythm and Beat using Music Composition Software": 1 + "3rd Grade Music: Comprehending Rhythm and Beat with Digital Audio Workstations": 1 + "3rd Grade Music: Grasping Rhythm and Beat through Drums": 1 + "3rd Grade Music: Understanding Rhythm and Beat using a Piano": 1 + "3rd Grade Music: Rhythm and Beat Exploration with Music Notation Software": 1 + "3rd Grade Music: Understanding Rhythm and Beat through Tempo": 1 + "3rd Grade Music: Grasping Rhythm and Beat using Virtual Instruments": 1 + "3rd Grade Music: Understanding Rhythm and Beat with Music Sequencing Software": 1 + "3rd Grade Environmental Science: Exploring Photosynthesis in Plants Using Microscopes": 1 + "3rd Grade Environmental Science: Learning About Plant Life Cycles Through Digital Animation": 1 + "3rd Grade Environmental Science: Discovering Seed Dispersal and Plant Life Cycles Using Interactive 3D Models": 1 + "3rd Grade Environmental Science: Investigating Plant Growth With Timelapse Technology": 1 + "3rd Grade Environmental Science: An In-Depth Study of Plant Life Cycles Using Virtual Reality": 1 + "3rd Grade Environmental Science: Understanding Plant Life Cycles Through Chromatography Experimentation": 1 + "3rd Grade Environmental Science: Exploring Plant Anatomy and Life Cycles With Augmented Reality": 1 + "3rd Grade Environmental Science: Pollination and Plant Life Cycles: A Hands-On Approach With Botany Kits": 1 + "3rd Grade Environmental Science: The Use of Drones in Studying Tree Life Cycles": 1 + "3rd Grade Environmental Science: Unveiling the Secrets of Photosynthesis Using Solar Energy Kits.": 1 + "1st Grade Science: Exploring Ecosystems with Terrarium Building using Soil Analysis": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building and pH Testing": 1 + "1st Grade Science: Learning Ecosystems through Terrarium Building and Microscope Use": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building with Water Cycle Demonstration": 1 + "1st Grade Science: Exploring Ecosystems via Terrarium Building using Light Spectrum Analysis": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building and Plant Identification": 1 + "1st Grade Science: Discovering Ecosystems through Terrarium Building and Temperature Monitoring": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building with Humidity Control": 1 + "1st Grade Science: Exploring Ecosystems through Terrarium Building using Insect Habitats": 1 + "1st Grade Science: Understanding Ecosystems via Terrarium Building and Nutrient Cycling Study": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games using Abacus": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games and Flash Cards": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games utilizing Interactive Whiteboards": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games incorporating Smart Boards": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games and Times Table Charts": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games using iPad Apps": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games and Digital Worksheets": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games through Virtual Manipulatives": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games using Educational Software": 1 + "2nd Grade Mathematics: Mastering Multiplication with Math Blaster Online Games incorporating Multiplication Grids": 1 + "6th Grade Mathematics: Exploring Algebra using Graphing Calculators": 1 + "6th Grade Mathematics: Deep Dive into Algebra with Python Programming": 1 + "6th Grade Mathematics: Discovering Algebra with Geogebra": 1 + "6th Grade Mathematics: Algebra Exploration through Interactive Whiteboards": 1 + "6th Grade Mathematics: Understanding Algebra with Math Apps": 1 + "6th Grade Mathematics: Algebra Journey using Equation Solving Tools": 1 + "6th Grade Mathematics: Algebra Exploration with Quadratic Equations": 1 + "6th Grade Mathematics: Fostering Algebra Understanding using Digital Worksheets": 1 + "6th Grade Mathematics: Navigating Algebra with Google Classroom": 1 + "6th Grade Mathematics: Exploring Algebra through Desmos Online Graphing.": 1 + "4th Grade Mathematics: Exploring Fractions and Decimals with Number Lines": 1 + "4th Grade Mathematics: Understanding Fractions and Decimals through Interactive Whiteboards": 1 + "4th Grade Mathematics: The Use of Abacus in Learning Fractions and Decimals": 1 + "4th Grade Mathematics: Applying Fractions and Decimals in Real Life Scenarios": 1 + "4th Grade Mathematics: Fractions and Decimals Made Easy with Virtual Manipulatives": 1 + "4th Grade Mathematics: Learning Fractions and Decimals with Khan Academy": 1 + "4th Grade Mathematics: Mastering Fractions and Decimals with Educational Apps": 1 + "4th Grade Mathematics: Fractions and Decimals through Gamified Learning ": 1 + "4th Grade Mathematics: Using Visual Models for Understanding Fractions and Decimals": 1 + "4th Grade Mathematics: Fractions and Decimals with the Aid of Digital Flashcards": 1 + "2nd Grade Science: Discovering Animals and Habitats Through Microscope Studies": 1 + "2nd Grade Science: Exploring Animals and Habitats Using Digital Photography": 1 + "2nd Grade Science: Uncovering Animal Life and Habitats With Binoculars": 1 + "2nd Grade Science: Inspecting Animals and Habitats Through Telescopic Observations": 1 + "2nd Grade Science: Visualizing Animals and Habitats Using 3D Imaging": 1 + "2nd Grade Science: Learning about Animals and Habitats Through Virtual Reality Expeditions": 1 + "2nd Grade Science: Discovering Animals and Habitats Using Data Analysis": 1 + "2nd Grade Science: Studying Animals and Habitats Through Time-Lapse Photography": 1 + "2nd Grade Science: Understanding Animals and Habitats Through GIS Mapping": 1 + "2nd Grade Science: Exploring Animals and Habitats Through DNA Sequencing": 1 + "2nd Grade Language Arts: Exploring Grammar with Storytelling": 1 + "2nd Grade Language Arts: Understanding Grammar through Interactive Games": 1 + "2nd Grade Language Arts: Fundamentals of Grammar using Flashcards": 1 + "2nd Grade Language Arts: Fundamentals of Grammar with Sentence Diagramming": 1 + "2nd Grade Language Arts: Grammar and Vocabulary Enhancement through Reading Comprehension": 1 + "2nd Grade Language Arts: Fundamentals of Grammar using Educational Apps": 1 + "2nd Grade Language Arts: Implementing Grammar Rules through Creative Writing": 1 + "2nd Grade Language Arts: Grammar Fundamentals Explored with Online Quizzes": 1 + "2nd Grade Language Arts: Understanding Grammar through Visual Aids": 1 + "2nd Grade Language Arts: Fundamentals of Grammar with Language Learning Software": 1 + "7th Grade Music: Introduction to Reading Sheet Music Using the Treble Clef": 1 + "7th Grade Music: Exploring Sheet Music Reading with Piano": 1 + "7th Grade Music: Understanding Sheet Music through Guitar Tablature": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes": 1 + "7th Grade Music: Introduction to Reading Sheet Music on Violin": 1 + "7th Grade Music: Introduction to Reading Sheet Music with Sibelius Software": 1 + "7th Grade Music: A Deep Dive into Reading Sheet Music using Flute": 1 + "7th Grade Music: Reading Sheet Music: Introduction to Musical Notation": 1 + "7th Grade Music: The Art of Reading Sheet Music with a Metronome": 1 + "7th Grade Music: Unveiling Music Symbols in Sheet Music Reading.": 1 + "8th Grade History: Medieval Europe and the Feudal System": 1 + "8th Grade History: Medieval Europe’s Knights and Armor": 1 + "8th Grade History: The Impact of the Printing Press in Medieval Europe": 1 + "8th Grade History: Medieval Europe Exploration through Compass and Maps": 1 + "8th Grade History: The Role of the Plow in Medieval Europe Agriculture": 1 + "8th Grade History: Medieval Europe and the Concept of Chivalry": 1 + "8th Grade History: The Influence of the Windmill in Medieval Europe": 1 + "8th Grade History: Medieval Europe and the Development of the Clock": 1 + "8th Grade History: The Spread of Christianity in Medieval Europe": 1 + "8th Grade History: The Black Death and its Impact on Medieval Europe": 1 + "10th Grade Art: Exploring Digital Art with ArtRage’s Oil Brush Tool": 1 + "10th Grade Art: Understanding Digital Art through ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Introduction to Digital Art with ArtRage’s Pencil Drawing Tool": 1 + "10th Grade Art: Discovering Digital Art with ArtRage’s Pastel Technique": 1 + "10th Grade Art: Mastering Digital Art with ArtRage’s Airbrush Tool": 1 + "10th Grade Art: Delving into Digital Art with ArtRage’s Palette Knife Technique": 1 + "10th Grade Art: Comprehensive Guide to Digital Art with ArtRage’s Glitter Tube": 1 + "10th Grade Art: Learning Digital Art with ArtRage’s Paint Roller Tool": 1 + "10th Grade Art: Introduction to Digital Art with ArtRage’s Ink Pen Tool": 1 + "10th Grade Art: Unveiling Digital Art with ArtRage’s Felt Pen Technique": 1 + "Deciphering Nutritional Labels: 9th Grade Physical Education Course on Nutrition and Diet Planning using MyFitnessPal App": 1 + "Understanding Nutritional Labels: High School Course on Macronutrients and Meal Planning with the Use of Nutri-Score System": 1 + "Dissecting Food Labels: 9th Grade Physical Education Course on Balanced Diet Planning using the Daily Values Concept": 1 + "Nutritional Label Analysis: 9th Grade Course on Nutrition and Diet Planning with Calorie Counting Techniques": 1 + "Interpreting Nutritional Labels: 9th Grade Physical Education Course Exploring the Traffic Light System in Diet Planning": 1 + "Nutritional Label Literacy: 9th Grade Physical Education Course on Nutrition and Meal Planning with the USDA Food Database": 1 + "Reading Between the Nutritional Labels: 9th Grade Course on Nutrition and Diet Planning using the Fooducate App": 1 + "Mastering Nutritional Labels: 9th Grade Physical Education Course on Nutrition and Dietary Fiber Concept in Meal Planning": 1 + "Decoding Nutritional Labels: 9th Grade Physical Education Course on Nutrition and Diet Planning using the Nutrient Density Approach": 1 + "Nutritional Label Comprehension: 9th Grade Course on Nutrition and Diet Planning with the Use of the Glycemic Index.": 1 + "High School Music: Understanding Musical Notation through the Piano": 1 + "High School Music: Deciphering Musical Notation with Sibelius Software": 1 + "High School Music: Exploring Musical Notation using Guitar Tablature": 1 + "High School Music: Mastering Musical Notation through the Violin": 1 + "High School Music: Unraveling Musical Notation with Finale Notepad": 1 + "High School Music: Grasping Musical Notation through the Flute": 1 + "High School Music: Learning Musical Notation using Pro Tools": 1 + "High School Music: Comprehending Musical Notation with the Help of MIDI Technology": 1 + "High School Music: Understanding Musical Notation through the Saxophone": 1 + "High School Music: Decoding Musical Notation using MuseScore Software": 1 + "4th Grade Environmental Studies: Exploring Ecosystems with Microscopes": 1 + "4th Grade Environmental Studies: Understanding Ecosystems through the Lens of Satellite Imagery": 1 + "4th Grade Environmental Studies: Analyzing Ecosystems with Data Visualization": 1 + "4th Grade Environmental Studies: Ecosystems and the Role of Drones in Conservation": 1 + "4th Grade Environmental Studies: Decoding Ecosystems with DNA Sequencing": 1 + "4th Grade Environmental Studies: Understanding Ecosystems: An Introduction to GIS Technology": 1 + "4th Grade Environmental Studies: Ecosystems and the Impact of Climate Change": 1 + "4th Grade Environmental Studies: Using Remote Sensing to Study Ecosystems": 1 + "4th Grade Environmental Studies: Ecosystems through the Eyes of Computer Modeling": 1 + "4th Grade Environmental Studies: Understanding Ecosystems with Biodiversity Indices": 1 + "4th Grade Environmental Studies: Unraveling Ecosystems through Ecological Pyramids.": 1 + "7th Grade History: Exploring The Middle Ages Through the Lens of Feudalism": 1 + "7th Grade History: Understanding The Middle Ages with the Development of the Printing Press": 1 + "Journey Through The Middle Ages: The Impact of the Plague in 7th Grade History": 1 + "7th Grade History: The Role of the Longbow in The Middle Ages Warfare": 1 + "7th Grade History: Tracing The Middle Ages Through the Evolution of Castles": 1 + "7th Grade History: Journey Through The Middle Ages via Medieval Trade Routes": 1 + "The Art of Illumination: A Glimpse into The Middle Ages in 7th Grade History": 1 + "7th Grade History: The Influence of the Knights Templar during The Middle Ages": 1 + "7th Grade History: The Middle Ages and the Emergence of Chivalry": 1 + "7th Grade History: Journey Through The Middle Ages with the Inception of Universities.": 1 + "1st Grade Social Studies: Exploring Communities through Maps": 1 + "1st Grade Social Studies: Learning about Communities with Digital Storytelling": 1 + "1st Grade Social Studies: Understanding Communities through Historical Artefacts": 1 + "1st Grade Social Studies: Studying Communities using Virtual Tours": 1 + "1st Grade Social Studies: Discovering Communities through Interactive Timelines": 1 + "1st Grade Social Studies: Investigating Communities using Online Surveys": 1 + "1st Grade Social Studies: Learning about Communities with Augmented Reality": 1 + "1st Grade Social Studies: Analyzing Communities through Census Data": 1 + "1st Grade Social Studies: Examining Communities using Online Databases": 1 + "1st Grade Social Studies: Exploring Communities through Local Field Trips": 1 + "5th Grade Science: Exploring Ecosystems with Microscopes": 1 + "5th Grade Science: Introduction to Ecology through Binoculars": 1 + "5th Grade Science: Understanding Food Chains using Simulation Software": 1 + "5th Grade Science: Discovering Biomes with Virtual Reality ": 1 + "5th Grade Science: Investigating Ecology via Telescopes": 1 + "5th Grade Science: Introduction to Ecology with pH Testing Kits": 1 + "5th Grade Science: Exploring Ecology through Microscopic Organisms": 1 + "5th Grade Science: Introduction to Ecology with Experimentation Kits": 1 + "5th Grade Science: Ecology and Environmental Analysis using Drones": 1 + "5th Grade Science: Learning Ecology with Geographical Information Systems": 1 + "2nd Grade Mathematics: Introduction to Basic Geometry through Protractors": 1 + "Understanding Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles": 1 + "2nd Grade Mathematics: Learning Basic Geometry with Geoboard App": 1 + "Exploring Basic Geometry in 2nd Grade Mathematics through Origami": 1 + "2nd Grade Mathematics: Grasping Basic Geometry with Compasses": 1 + "Understanding Basic Geometry in 2nd Grade Mathematics Using GeoGebra Software": 1 + "2nd Grade Mathematics: Immersive Learning of Basic Geometry with Virtual Reality": 1 + "2nd Grade Mathematics: Introduction to Basic Geometry and Polygons": 1 + "2nd Grade Mathematics: Exploring Basic Geometry with Interactive Whiteboards": 1 + "2nd Grade Mathematics: Basic Geometry and Angle Measurement with Protractors": 1 + "Seventh Grade History: Unearthing Ancient Rome through Archaeology": 1 + "Seventh Grade History: Understanding Ancient Egypt with Hieroglyphics": 1 + "Seventh Grade History: Discovering the Mayan Civilization through the Lens of Astronomy": 1 + "Seventh Grade History: Deciphering Ancient Greece using Philosophical Concepts": 1 + "Seventh Grade History: Exploring the Indus Valley Civilization through Ancient Pottery": 1 + "Seventh Grade History: Investigating Ancient China with the Use of Silk Road Trade Routes": 1 + "Seventh Grade History: Analyzing the Aztec Empire through Agriculture Techniques": 1 + "Seventh Grade History: Comprehending Ancient Persia through Zoroastrianism": 1 + "Seventh Grade History: Delving into Celtic Culture with Druidic Rituals": 1 + "Seventh Grade History: Grasping Ancient Minoan Civilization through Fresco Art Techniques": 1 + "3rd Grade English: Storytelling Basics with Puppetry Techniques": 1 + "3rd Grade English: Exploring Storytelling through Digital Narratives": 1 + "3rd Grade English: Storytelling Basics using Storyboarding Tools": 1 + "3rd Grade English: Storytelling Basics with Character Development Techniques": 1 + "3rd Grade English: Storytelling Basics using Animation Software": 1 + "3rd Grade English: Storytelling Basics and Plot Structure Mastery": 1 + "3rd Grade English: Storytelling Basics with Interactive Whiteboard": 1 + "3rd Grade English: Storytelling Basics using Voice Recording Technology": 1 + "3rd Grade English: Storytelling Basics and Conflict Resolution Concepts": 1 + "3rd Grade English: Storytelling Basics using Augmented Reality Tools": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Montessori Bead Bars": 1 + "Utilizing Number Rods: 2nd Grade Mathematics Mastery in Addition and Subtraction": 1 + "Montessori Golden Beads: A Comprehensive Course to Master Addition and Subtraction for 2nd Graders": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction with Montessori Ten Boards": 1 + "Montessori Stamp Game: A 2nd Grade Mathematics Course on Addition and Subtraction Mastery": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery using Montessori Number Tiles": 1 + "The Power of Montessori Bead Chains in 2nd Grade Mathematics: Mastering Addition and Subtraction": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction through Montessori Colored Bead Stairs": 1 + "Harnessing Montessori Strip Boards for Addition and Subtraction Mastery in 2nd Grade Mathematics": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery using Montessori Arithmetic Boards": 1 + "9th Grade Physical Education: Introduction to Basketball and Ball Handling Techniques": 1 + "9th Grade Physical Education: Soccer Fundamentals and the Use of GoPro for Game Analysis": 1 + "9th Grade Physical Education: Mastering Volleyball with Virtual Reality Training": 1 + "9th Grade Physical Education: Understanding Football Strategy through Playbook Software": 1 + "9th Grade Physical Education: Exploring Baseball and the Science of Pitching ": 1 + "9th Grade Physical Education: Introduction to Tennis and Racket Technology": 1 + "9th Grade Physical Education: The Art of Golf Swing with Motion Capture Technology": 1 + "9th Grade Physical Education: Enhancing Rugby Skills through GPS Performance Tracking": 1 + "9th Grade Physical Education: Cricket Basics and Ball Spin Techniques": 1 + "9th Grade Physical Education: Introduction to Ice Hockey and Puck Control Dynamics.": 1 + "7th Grade Language Arts: Exploring Shakespearean Sonnets with iPads and Procreate for Digital Creativity": 1 + "7th Grade Language Arts: Journey through Haikus using iPads & Adobe Spark for Digital Creativity": 1 + "7th Grade Language Arts: Navigating through Limericks using iPads and Book Creator for Digital Creativity": 1 + "7th Grade Language Arts: Delving into Ballads with iPads and iMovie for Digital Creativity": 1 + "7th Grade Language Arts: Unraveling Free Verse Poetry using iPads and GarageBand for Audio-Visual Creativity": 1 + "7th Grade Language Arts: Discovering Epic Poetry with iPads and Canva for Digital Designing": 1 + "7th Grade Language Arts: Journey through Acrostic Poems using iPads and Pages for Digital Creativity": 1 + "7th Grade Language Arts: Exploring Odes with iPads and Keynote for Digital Presentations": 1 + "7th Grade Language Arts: Delving into Narrative Poetry using iPads and Clips for Video Creativity": 1 + "7th Grade Language Arts: Understanding Rhymed Poetry with iPads and Explain Everything for Interactive Learning": 1 + "Kindergarten Health and Wellness: Exploring Dental Hygiene with Toothbrushes": 1 + "Kindergarten Health and Wellness: Learning Nutrition Through Food Pyramid": 1 + "Basics of Hygiene and Nutrition for Kindergarteners: Utilizing Interactive Apps": 1 + "Kindergarten Health and Wellness: Discovering Hygiene with Hand Sanitizers": 1 + "Kindergarten Health and Wellness: Nutrition Basics with MyPlate Tool": 1 + "Kindergarten Health and Wellness: Interactive Hygiene Lessons Using Smartboard Technology": 1 + "Kindergarten Health and Wellness: Implementing Handwashing Techniques for Better Hygiene": 1 + "Kindergarten Health and Wellness: Introduction to Vitamins and Nutrition with Interactive Charts": 1 + "Kindergarten Health and Wellness: Learning About Hygiene Through Microscope Exploration": 1 + "Kindergarten Health and Wellness: Nutrition Basics Using Meal Planning Tools": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building and Plant Identification using a Microscope": 1 + "1st Grade Science: Dissecting Ecosystems through Terrarium Building and Plant DNA Extraction": 1 + "1st Grade Science: Exploring Ecosystems with Terrarium Building and Plant Identification using a Digital Camera": 1 + "1st Grade Science: Grasping Ecosystems through Terrarium Building and Plant Identification using pH Soil Test Kits": 1 + "1st Grade Science: Exploring Ecosystems through Terrarium Building and Plant Identification using a Light Meter": 1 + "1st Grade Science: Understanding Ecosystems through Terrarium Building and Plant Identification using a Rain Gauge": 1 + "1st Grade Science: Probing Ecosystems through Terrarium Building and Plant Identification using a Thermometer": 1 + "1st Grade Science: Interpreting Ecosystems through Terrarium Building and Plant Identification with the Help of Augmented Reality": 1 + "1st Grade Science: Unraveling Ecosystems through Terrarium Building and Plant Identification using a Magnifying Glass": 1 + "1st Grade Science: Comprehending Ecosystems through Terrarium Building and Plant Identification utilizing a Hygrometer": 1 + "4th Grade Geography: Exploring the Atlantic Ocean through Oculus Rift Virtual Reality": 1 + "4th Grade Geography: Understanding Pacific Ocean Tides using Google Cardboard Virtual Reality": 1 + "Studying Coral Reefs in the Indian Ocean: A 4th Grade Geography Course via Virtual Reality": 1 + "4th Grade Geography: Investigating Ocean Currents with HTC Vive Virtual Reality": 1 + "4th Grade Geography: Delving into Arctic Ocean Ecosystems through PlayStation VR": 1 + "Exploring the Southern Ocean’s Icebergs: A 4th Grade Geography Course through Virtual Reality": 1 + "4th Grade Geography: Understanding Ocean Topography through Samsung Gear VR": 1 + "Virtual Reality Exploration of Ocean Biodiversity: A 4th Grade Geography Course": 1 + "4th Grade Geography: Navigating the Great Barrier Reef via Virtual Reality": 1 + "Immersive Study of Global Ocean Currents: A 4th Grade Geography Course via Virtual Reality.": 1 + "4th Grade Introduction to Fractions with Number Lines": 1 + "4th Grade Introduction to Fractions using Interactive Fraction Bars": 1 + "4th Grade Introduction to Fractions and Decimal Conversion": 1 + "4th Grade Introduction to Fractions with Fraction Circles": 1 + "4th Grade Introduction to Fractions using Virtual Manipulatives": 1 + "4th Grade Introduction to Fractions and Equivalent Fractions": 1 + "4th Grade Introduction to Fractions on iPads": 1 + "4th Grade Introduction to Fractions with Fraction Strips": 1 + "4th Grade Introduction to Fractions using Fraction Tiles": 1 + "4th Grade Introduction to Fractions with Smartboard Technology": 1 + "4th Grade Introduction to Fractions and Simplification Concept": 1 + "8th Grade Music: Unraveling the Evolution of Classical Music through the Lens of Mozart’s Use of the Harpsichord ": 1 + "8th Grade Music: Tracing the Transformation of Classical Music with a Focus on the Harpsichord and the Development of Polyphony in Mozart’s Works": 1 + "8th Grade Music: An In-depth Study of Classical Music’s Evolution, the Harpsichord, and Mozart’s Polyphony Techniques": 1 + "8th Grade Music: The Evolution of Classical Music, Harpsichord Mastery, and Understanding Polyphony through Mozart’s Compositions": 1 + "8th Grade Music: The Transition of Classical Music, the Harpsichord, and the Emergence of Polyphony: A Study on Mozart’s Influence": 1 + "8th Grade Music: Classical Music Evolution, the Role of the Harpsichord, and the Complexity of Polyphony in Mozart’s Era": 1 + "8th Grade Music: Exploring the Classical Music’s Progression, the Significance of the Harpsichord, and the Intricacy of Polyphony in Mozart’s Time": 1 + "8th Grade Music: A Journey through Classical Music’s Evolution, the Harpsichord, and the Practice of Polyphony in the Mozart’s Period": 1 + "8th Grade Music: The Evolution of Classical Music, the Harpsichord, and the Concept of Polyphony in Mozart’s Musical Creations": 1 + "8th Grade Music: The Progression of Classical Music, the Evolution of the Harpsichord, and the Growth of Polyphony through Mozart’s Works.": 1 + "5th Grade Science: Exploring Earth Sciences with Microscopes": 1 + "5th Grade Science: The Role of Telescopes in Earth Sciences": 1 + "5th Grade Science: The Application of Satellites in Earth Sciences": 1 + "5th Grade Science: Understanding Earth Sciences through Seismology": 1 + "5th Grade Science: Soil Analysis in Earth Sciences": 1 + "5th Grade Science: Fossils - A Window to Earth’s History": 1 + "5th Grade Science: Earth Sciences and the Study of Climate Change": 1 + "5th Grade Science: Understanding Volcanoes in Earth Sciences": 1 + "5th Grade Science: Geological Time Scale in Earth Sciences": 1 + "5th Grade Science: Earth Sciences - Discovering Plate Tectonics": 1 + "5th Grade Art: Investigating Ancient Egyptian Artifacts using Augmented Reality and Google Cardboard ": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts using AR and Microsoft’s HoloLens ": 1 + "5th Grade Art: Understanding Ancient Egyptian Artifacts with Augmented Reality and ARCore Technology ": 1 + "5th Grade Art: Analyzing Ancient Egyptian Artifacts through Augmented Reality and Unity 3D ": 1 + "5th Grade Art: Discovering Ancient Egyptian Artifacts using AR and Vuforia Engine ": 1 + "5th Grade Art: Unveiling Mysteries of Ancient Egyptian Artifacts using Augmented Reality and ARKit ": 1 + "5th Grade Art: Decoding Ancient Egyptian Artifacts using Augmented Reality and the Smithsonian Learning Lab ": 1 + "5th Grade Art: Digging into Ancient Egyptian Artifacts using Augmented Reality and Magic Leap One ": 1 + "5th Grade Art: Interpreting Ancient Egyptian Artifacts with Augmented Reality and Sketchfab ": 1 + "5th Grade Art: Unraveling Ancient Egyptian Artifacts through Augmented Reality and Blender 3D": 1 + "Third Grade Music: Exploring the Piano": 1 + "Third Grade Music: An Introduction to the Violin": 1 + "Third Grade Music: Discovering the Guitar": 1 + "Third Grade Music: The Fundamentals of the Flute": 1 + "Third Grade Music: Learning the Basics of the Drum": 1 + "Third Grade Music: Getting Started with the Trumpet": 1 + "Third Grade Music: Introduction to the Saxophone": 1 + "Third Grade Music: Understanding the Harp": 1 + "Third Grade Music: The Basics of the Cello": 1 + "Third Grade Music: An Overview of the Clarinet": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Alphabet Flashcards": 1 + "1st Grade Language Arts: Phonics and Spelling Using Interactive Whiteboards": 1 + "1st Grade Language Arts: Beginning Phonics Exploration with iPad Apps": 1 + "1st Grade Language Arts: Spelling Mastery with Word Wall Activities ": 1 + "1st Grade Language Arts: Using Phonics Puzzles for Spelling Skills": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling through Storytelling": 1 + "1st Grade Language Arts: Learning Phonics with Songs and Rhymes ": 1 + "1st Grade Language Arts: Spelling Practice with Online Games ": 1 + "1st Grade Language Arts: Phonics and Spelling Skills with Audio Books": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Alphabet Blocks": 1 + "Kindergarten Health and Wellness: Exploring Dental Hygiene with Electric Toothbrushes": 1 + "Kindergarten Health and Wellness: A Deep Dive into Dental Hygiene using Fluoride Toothpaste ": 1 + "Kindergarten Health and Wellness: Understanding Dental Hygiene with Dental Floss": 1 + "Kindergarten Health and Wellness: Dental Hygiene Exploration - The Role of Mouth Rinse": 1 + "Kindergarten Health and Wellness: Discovering Dental Hygiene with Tooth Mousse": 1 + "Kindergarten Health and Wellness: Studying Dental Hygiene with Plaque Disclosing Tablets": 1 + "Kindergarten Health and Wellness: Learning Dental Hygiene Using Dental Prophylaxis Pastes": 1 + "Kindergarten Health and Wellness: Dental Hygiene - The Importance of Interdental Brushes": 1 + "Kindergarten Health and Wellness: Focusing on Dental Hygiene with Water Flossers": 1 + "Kindergarten Health and Wellness: Dental Hygiene - The Effects of Xylitol Chewing Gums": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies on the Piano": 1 + "6th Grade Music: Discovering Mozart’s Compositions through Violin": 1 + "6th Grade Music: Understanding Bach’s Influence in Organ Music": 1 + "6th Grade Music: Chopin’s Revolutionary Etudes on the Piano": 1 + "6th Grade Music: The Impact of Schubert’s Lieder in Voice Training": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif": 1 + "6th Grade Music: The World of Classical Composers through Music Software": 1 + "6th Grade Music: Baroque Period and Handel’s Counterpoint Technique on Harpsichord": 1 + "6th Grade Music: Studying Vivaldi’s Four Seasons through Violin": 1 + "6th Grade Music: Debussy’s Use of Harmony in Piano Music": 1 + "6th Grade Music: Exploring Tchaikovsky’s Ballet Scores through Orchestration": 1 + "3rd Grade Music: Introduction to Rhythm and Melody through Drums": 1 + "3rd Grade Music: Exploring Rhythm and Melody with Xylophones": 1 + "3rd Grade Music: Rhythm and Melody Basics using GarageBand Software": 1 + "3rd Grade Music: Understanding Rhythm and Melody via Piano": 1 + "3rd Grade Music: Learning Rhythm and Melody with Recorders": 1 + "3rd Grade Music: Rhythm and Melody Basics with Violins": 1 + "3rd Grade Music: Mastering Rhythm and Melody with Flutes": 1 + "3rd Grade Music: Rhythm and Melody Basics using Music Notation": 1 + "3rd Grade Music: Rhythm and Melody Basics with Guitars": 1 + "3rd Grade Music: Rhythm and Melody Through the Use of Digital Music Apps": 1 + "1st Grade Art: Exploring Nature with Pastels Using Chalk": 1 + "1st Grade Art: Exploring Nature through Pastel Drawing with Smudging Technique": 1 + "1st Grade Art: Exploring Nature with Pastels and Watercolor": 1 + "1st Grade Art: Exploring Nature with Pastels Using Blending Stumps": 1 + "1st Grade Art: Exploring Nature with Pastels: A Focus on Color Theory": 1 + "1st Grade Art: Exploring Nature with Pastels and Digital Enhancement": 1 + "1st Grade Art: Exploring Nature with Pastels Using Fixative Spray": 1 + "1st Grade Art: Exploring Nature with Pastels and the Use of Textured Paper": 1 + "1st Grade Art: Exploring Nature with Pastels: Incorporating Light and Shadow": 1 + "1st Grade Art: Exploring Nature with Pastels Using Layering Techniques": 1 + "3rd Grade Science: Understanding the Life Cycle of a Butterfly through VR Simulations": 1 + "3rd Grade Science: Exploring the Butterfly Life Cycle with Interactive Whiteboard Experiments": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations using iPads": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Smartphone Simulation Experiments": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations in Augmented Reality": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Cloud-Based Digital Simulations ": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations using Scratch Programming": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations on Chromebooks": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Interactive Projector Simulations": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: Experiments with Digital Simulations using 3D Print Models.": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture Through Raspberry Pi": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Exploring CPU Architecture Using Logic Gates": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture with Integrated Circuits": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - An In-depth Look into CPU Architecture and Transistors": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture Through Binary Code": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Exploring CPU Architecture with Clock Speed": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture and Multicore Processors": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - A Close Study of CPU Architecture Using Assembly Language": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture and ALU Operations": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Exploring CPU Architecture with Cache Memory.": 1 + "10th Grade Social Studies: A Deep Dive into American Government using Interactive Maps": 1 + "Understanding American Government with Constitutional Analysis: A 10th Grade Social Studies Course": 1 + "10th Grade Social Studies: Exploring American Government through Documentaries": 1 + "American Government and Politics: A Social Studies Course for 10th Grade using Simulated Elections": 1 + "10th Grade Social Studies: Analyzing American Government with Political Cartoons": 1 + "Exploring American Government: A 10th Grade Social Studies Course using Virtual Reality Field Trips": 1 + "10th Grade Social Studies: Understanding American Government through the Lens of Supreme Court Cases": 1 + "American Government in Action: A 10th Grade Social Studies Course using Podcasts": 1 + "10th Grade Social Studies: Understanding American Government through Role-Playing Games": 1 + "Unraveling American Government: A 10th Grade Social Studies Course using Data Visualization Tools.": 1 + "6th Grade Language Arts: Exploring Poetry and Metaphors through Digital Storytelling": 1 + "6th Grade Language Arts: Poetry and Metaphors - A Deep Dive into Simile Analysis": 1 + "6th Grade Language Arts: Understanding Poetry and Metaphors using Google Docs Collaborative Learning": 1 + "6th Grade Language Arts: Poetry and Metaphors in the Digital Age - An Introduction to Blogging": 1 + "6th Grade Language Arts: Poetry and Metaphors - A Focus on Imagery using Virtual Reality": 1 + "6th Grade Language Arts: Poetry and Metaphors Explored through Interactive Whiteboard Activities": 1 + "6th Grade Language Arts: Engaging with Poetry and Metaphors through PowerPoint Presentations": 1 + "6th Grade Language Arts: Poetry and Metaphors - Incorporating Podcasting for a Modern Learning Experience": 1 + "6th Grade Language Arts: Poetry and Metaphors - Learning through Video Conferencing with Authors": 1 + "6th Grade Language Arts: Poetry and Metaphors Enhanced with Augmented Reality Technology.": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling through Virtual Reality Using Oculus Rift": 1 + "1st Grade Language Arts: Introduction to Phonics and Spelling with Google Cardboard VR": 1 + "1st Grade Language Arts: Understanding Phonics and Spelling through Augmented Reality with ARKit": 1 + "1st Grade Language Arts: Interactive Phonics and Spelling Lessons via HTC Vive VR": 1 + "1st Grade Language Arts: Developing Phonics and Spelling Skills through Samsung Gear VR": 1 + "1st Grade Language Arts: Innovative Phonics and Spelling Education Using PlayStation VR": 1 + "1st Grade Language Arts: Phonics and Spelling Enhancement with Microsoft HoloLens": 1 + "1st Grade Language Arts: Phonics and Spelling Instruction through Virtual Reality with Leap Motion Controller": 1 + "1st Grade Language Arts: Phonics and Spelling Comprehension via Virtual Reality Using Magic Leap One": 1 + "1st Grade Language Arts: Advanced Phonics and Spelling Learning with Virtual Reality using Windows Mixed Reality.": 1 + "9th Grade Social Studies: Understanding the U.S Constitution and Its Applications": 1 + "9th Grade Social Studies: The Role of the Supreme Court in American Government": 1 + "9th Grade Social Studies: The Impact of Voting Technology on American Government": 1 + "9th Grade Social Studies: A Deep Dive into the American Electoral System": 1 + "9th Grade Social Studies: Exploring the Role of Media in American Politics": 1 + "9th Grade Social Studies: Analyzing the American Government’s Legislative Process": 1 + "9th Grade Social Studies: The Influence of Lobbying on American Government": 1 + "9th Grade Social Studies: A Study of Federalism in the American Government System": 1 + "9th Grade Social Studies: The Role of Political Parties in American Government": 1 + "9th Grade Social Studies: The Use of Polling Data in American Government Decision Making": 1 + "1st Grade Environmental Studies: An Introduction to Weather Patterns with Rain Gauges": 1 + "1st Grade Environmental Studies: Exploring Cloud Identification with Cumulus Clouds": 1 + "1st Grade Environmental Studies: Understanding Weather Patterns through Thermometers": 1 + "1st Grade Environmental Studies: Studying Cloud Formation with Condensation Concepts": 1 + "1st Grade Environmental Studies: Introduction to Weather Patterns using Weather Maps": 1 + "1st Grade Environmental Studies: Identifying Cloud Types through Cirrus Clouds": 1 + "1st Grade Environmental Studies: Discovering Weather Patterns with Barometers": 1 + "1st Grade Environmental Studies: Learning about Weather Patterns through the Water Cycle": 1 + "1st Grade Environmental Studies: Introduction to Cloud Identification using Cumulonimbus Clouds": 1 + "1st Grade Environmental Studies: Insights into Weather Patterns through Wind Vanes": 1 + "1st Grade Art: Introduction to Colors, Shapes and Paint Brushes": 1 + "1st Grade Art: Exploring Colors and Shapes with Watercolors": 1 + "1st Grade Art: Introduction to Colors and Shapes: A Focus on Collage Making": 1 + "1st Grade Art: Learning Colors and Shapes through Clay Molding": 1 + "1st Grade Art: Introduction to Colors and Shapes: An Exploration of Chalk Art": 1 + "1st Grade Art: Introductory Course on Colors, Shapes and Crayon Techniques": 1 + "1st Grade Art: Understanding Colors and Shapes through Digital Drawing": 1 + "1st Grade Art: Introduction to Colors, Shapes and Paper Mache": 1 + "1st Grade Art: Colors and Shapes: A Journey with Acrylic Paints": 1 + "1st Grade Art: Introduction to Colors and Shapes Using Color Pencils.": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Ball Control Drills": 1 + "1st Grade Physical Education: Incorporating Whistles in Team Sports & Volleyball Serving Techniques": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques using Video Tutorials": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders": 1 + "1st Grade Physical Education: Introduction to Biomechanics in Team Sports & Volleyball Serving Techniques": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Overhead Passing Drills": 1 + "1st Grade Physical Education: Utilizing Pedometers in Team Sports & Volleyball Serving Techniques": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques using Resistance Bands": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Plyometric Training.": 1 + "7th Grade Music: Exploring Beethoven through Piano": 1 + "7th Grade Music: Discovering Classical Composers with Interactive Software": 1 + "7th Grade Music: Introduction to Classical Composers with Violin": 1 + "7th Grade Music: The Influence of Classical Composers on Modern Music": 1 + "7th Grade Music: Analyzing Classical Composers through Digital Music Sheets": 1 + "7th Grade Music: Understanding Bach through Organ": 1 + "7th Grade Music: Classical Composers and the Art of Orchestration": 1 + "7th Grade Music: Discovering Classical Composers through Music Theory": 1 + "7th Grade Music: Mozart’s Influence in Classical Music through Keyboard": 1 + "7th Grade Music: Comprehensive Study of Classical Composers using Music Production Software": 1 + "6th Grade Social Studies: Exploring Egypt’s Ancient Civilizations through Pyramids": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Role of Hieroglyphics": 1 + "6th Grade Social Studies: The Impact of Nile’s Irrigation on Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Understanding Egypt’s Ancient Civilizations through Mummification": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Concept of Polytheism": 1 + "6th Grade Social Studies: The Contribution of Papyrus to Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Power of Pharaohs": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations - An Insight into Sphinx Architecture": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Innovation of Solar Calendars": 1 + "6th Grade Social Studies: Understanding Egypt’s Ancient Civilizations through Obelisks.": 1 + "Third Grade Social Studies: Exploring Local Community and Government Through Virtual Field Trips using Google Earth": 1 + "Interactive Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips with VR Headsets": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using Zoom": 1 + "Engaging Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips with Video Conferencing Software": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using Interactive Online Maps": 1 + "Tech-Savvy Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips with Augmented Reality": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using 3D Printing Technology": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using Drone Footage": 1 + "Interactive Learning in Third Grade Social Studies: Local Community and Government Through Virtual Field Trips using Minecraft Education Edition": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using Digital Storytelling Tools.": 1 + "2nd Grade Science: Understanding Photosynthesis in Plant Life using Microscopes": 1 + "2nd Grade Science: Exploring Photosynthesis in Plant Life through Digital Simulations": 1 + "2nd Grade Science: Investigating Photosynthesis in Plant Life using Chlorophyll Extraction Kits": 1 + "2nd Grade Science: Examining Photosynthesis in Plant Life with Light Spectrum Analysis": 1 + "2nd Grade Science: Discovering Photosynthesis in Plant Life through Carbon Dioxide Monitoring": 1 + "2nd Grade Science: Analyzing Photosynthesis in Plant Life using Time-lapse Photography": 1 + "2nd Grade Science: Uncovering Photosynthesis in Plant Life through Stomatal Count": 1 + "2nd Grade Science: Observing Photosynthesis in Plant Life with Leaf Disk Assays": 1 + "2nd Grade Science: Studying Photosynthesis in Plant Life using Data Loggers": 1 + "2nd Grade Science: Learning Photosynthesis in Plant Life through Interactive 3D Models.": 1 + "6th Grade: Physical Science - Understanding Newton’s Laws Through Force Diagrams": 1 + "6th Grade: Physical Science - Exploring Newton’s Laws with a Pendulum Experiment": 1 + "6th Grade: Physical Science - Application of Newton’s Laws in Roller Coaster Design": 1 + "6th Grade: Physical Science - Understanding Newton’s Laws Using Motion Sensors": 1 + "6th Grade: Physical Science - Newton’s Laws and Their Role in Rocket Launch Simulation": 1 + "6th Grade: Physical Science - Conceptualizing Newton’s Laws Through Virtual Reality": 1 + "6th Grade: Physical Science - Newton’s Laws and Their Application in Drone Flight": 1 + "6th Grade: Physical Science - Understanding Newton’s Laws Through LEGO Engineering": 1 + "6th Grade: Physical Science - Newton’s Laws Explored Through Robotics ": 1 + "6th Grade: Physical Science - Applying Newton’s Laws Using a Physics Simulation Software": 1 + "6th Grade: Physical Science - Understanding Newton’s Laws Through the Lens of Sports Science": 1 + "5th Grade History: Understanding Ancient Civilizations through Agriculture": 1 + "5th Grade History: Exploring Ancient Civilizations via the Wheel": 1 + "5th Grade History: Deciphering Ancient Civilizations through Hieroglyphics": 1 + "5th Grade History: Learning about Ancient Civilizations through Pottery Making": 1 + "5th Grade History: Unraveling Ancient Civilizations with Bronze Metallurgy": 1 + "5th Grade History: Comprehending Ancient Civilizations through the Concept of Democracy": 1 + "5th Grade History: Investigating Ancient Civilizations with the Use of Aqueducts": 1 + "5th Grade History: Discovering Ancient Civilizations through Astronomy": 1 + "5th Grade History: Examining Ancient Civilizations via the Pyramids": 1 + "5th Grade History: Appreciating Ancient Civilizations through the Art of Weaving": 1 + "7th Grade English Language Arts: Exploring Poetry through Symbolism using Metaphors": 1 + "7th Grade English Language Arts: Delving into Symbolism in Poetry through Digital Media": 1 + "7th Grade English Language Arts: Unveiling Symbols in Poetry with the Use of Visual Graphics": 1 + "7th Grade English Language Arts: Deciphering Symbolism in Poetry through the Lens of Historical Context": 1 + "7th Grade English Language Arts: Analyzing Poetry’s Symbolism using Interactive Online Tools": 1 + "7th Grade English Language Arts: Symbolism in Poetry Explored through Thematic Analysis ": 1 + "7th Grade English Language Arts: Exploring Symbolism in Poetry using Collaborative Workshops": 1 + "7th Grade English Language Arts: Understanding Poetry through the Power of Symbolism and Similes": 1 + "7th Grade English Language Arts: Interpreting Symbolism in Poetry with the Help of Multimedia Presentations": 1 + "7th Grade English Language Arts: Engaging with Poetry’s Symbolism through the Application of Mind Mapping Techniques": 1 + "8th Grade Music: The Impact of MIDI Technology on Music Production ": 1 + "8th Grade Music: The Role of Digital Audio Workstations in Music Production ": 1 + "8th Grade Music: Exploring Synthesizers in Music Production ": 1 + "8th Grade Music: The Influence of Auto-Tune on Modern Music Production ": 1 + "8th Grade Music: The Transformation of Music Production through Sound Sampling ": 1 + "8th Grade Music: The Effect of Digital Notation Software on Music Production ": 1 + "8th Grade Music: The Influence of Virtual Studio Technology on Music Production ": 1 + "8th Grade Music: The Evolution of Music Production through Electronic Drum Machines ": 1 + "8th Grade Music: The Role of Loop Pedals in Music Production ": 1 + "8th Grade Music: The Impact of Multitrack Recording on Music Production": 1 + "Exploring Rhythm and Melody in 4th Grade Music using GarageBand: An Introduction to Loop Sequencing ": 1 + "A Deep Dive into Rhythm and Melody: Utilizing Audacity in 4th Grade Music ": 1 + "4th Grade Music Exploration: Enhancing Rhythm and Melody with Ableton Live ": 1 + "Uncovering Rhythm and Melody using FL Studio in 4th Grade Music ": 1 + "Exploring Rhythm and Melody in 4th Grade Music: A Guide to Beat Making with Serato ": 1 + "4th Grade Music: Rhythm and Melody Discovery using Logic Pro X ": 1 + "Rhythm and Melody Exploration in 4th Grade Music using Cubase: An Introduction to MIDI Composition ": 1 + "Mastering Rhythm and Melody in 4th Grade Music using Pro Tools: A Lesson in Audio Mixing ": 1 + "Unleashing Creativity in 4th Grade Music: Rhythm and Melody with Reason Software ": 1 + "Rhythm and Melody in 4th Grade Music: Exploring Soundscapes with Reaper Software": 1 + "8th Grade History: Revolutionary War Era - Focus on the Role of the Printing Press": 1 + "8th Grade History: Revolutionary War Era - An In-depth Study of Musket Technology": 1 + "8th Grade History: Revolutionary War Era - Examining the Use of Naval Warfare": 1 + "8th Grade History: Revolutionary War Era - Understanding Espionage Techniques": 1 + "8th Grade History: Revolutionary War Era - The Influence of the Cannon in Warfare": 1 + "8th Grade History: Revolutionary War Era - The Impact of Medical Advancements on Soldiers": 1 + "8th Grade History: Revolutionary War Era - The Role of Code Breaking in Communication ": 1 + "8th Grade History: Revolutionary War Era - The Significance of Fortification Structures": 1 + "8th Grade History: Revolutionary War Era - The Evolution of Battle Tactics": 1 + "8th Grade History: Revolutionary War Era - The Analysis of Economic Strategies.": 1 + "Second Grade Social Studies: Exploring Local Community and Environment through Map Reading": 1 + "Second Grade Social Studies: Studying Local Community and Environment with Google Earth": 1 + "Second Grade Social Studies: Understanding Local Community and Environment via Virtual Reality Tours": 1 + "Second Grade Social Studies: Local Community and Environment Investigation using Online Surveys": 1 + "Second Grade Social Studies: Excursion into Local Community and Environment using GPS Technology": 1 + "Second Grade Social Studies: Local Community and Environment Discovery with Augmented Reality": 1 + "Second Grade Social Studies: Navigating Local Community and Environment with Compass Skills": 1 + "Second Grade Social Studies: Local Community and Environment Analysis using Time Lapse Photography": 1 + "Second Grade Social Studies: Grasping Local Community and Environment through Interactive Digital Timelines": 1 + "Second Grade Social Studies: Delving into Local Community and Environment with Drone Technology.": 1 + "7th Grade Social Studies: The Impact of the Internet on Society": 1 + "7th Grade Social Studies: The Influence of Smartphones on Social Interactions": 1 + "7th Grade Social Studies: The Role of Social Media in Shaping Society": 1 + "7th Grade Social Studies: Artificial Intelligence and its Effect on Society": 1 + "7th Grade Social Studies: The Influence of Virtual Reality on Real-World Interactions": 1 + "7th Grade Social Studies: The Impact of Digital Currency on Economic Systems": 1 + "7th Grade Social Studies: The Role of Cybersecurity in Protecting Society": 1 + "7th Grade Social Studies: Exploration of Blockchain Technology and Society": 1 + "7th Grade Social Studies: The Effect of E-Commerce on Traditional Retail": 1 + "7th Grade Social Studies: The Impact of Drones on Delivery and Transportation Systems": 1 + "11th Grade Mathematics: Understanding Quadratic Equations through the Power of Wolfram Alpha": 1 + "11th Grade Mathematics: Exploring Polynomial Functions using Wolfram Alpha and Geogebra": 1 + "11th Grade Mathematics: Algebra Fundamentals and Graphing Systems of Equations with Wolfram Alpha": 1 + "11th Grade Mathematics: Mastering Algebraic Expressions and Inequalities through Wolfram Alpha": 1 + "11th Grade Mathematics: The Power of Wolfram Alpha in Solving Linear Equations": 1 + "11th Grade Mathematics: Algebra Fundamentals - Exploring the Power of Wolfram Alpha and the Quadratic Formula": 1 + "11th Grade Mathematics: Utilizing Wolfram Alpha for Complex Numbers in Algebra": 1 + "11th Grade Mathematics: A Deep Dive into Algebraic Fractions with Wolfram Alpha": 1 + "11th Grade Mathematics: Leveraging Wolfram Alpha for Radical Expressions in Algebra ": 1 + "11th Grade Mathematics: Deciphering Absolute Value Equations using Wolfram Alpha": 1 + "8th Grade History: Revolutionary War Era - A Detailed Study of the Culper Spy Ring and Use of Invisible Ink": 1 + "Revolutionary War Era in 8th Grade History: A Focus on the Culper Spy Ring and Cryptography Techniques": 1 + "8th Grade History: Revolutionary War Era - Understanding the Role of the Culper Spy Ring and Dead Drops": 1 + "Revolutionary War Era - Decoding the Secrets of the Culper Spy Ring: An 8th Grade History Course": 1 + "8th Grade History: Revolutionary War Era - A Study of the Culper Spy Ring and Use of Secret Codes": 1 + "Revolutionary War Era: The Culper Spy Ring and its Espionage Tools - A Detailed 8th Grade History Course": 1 + "8th Grade History: Revolutionary War Era - Exploring the Culper Spy Ring and its Use of Ciphers": 1 + "The Culper Spy Ring and Secret Communication Techniques during the Revolutionary War Era: An 8th Grade History Course": 1 + "8th Grade History: Revolutionary War Era - Unraveling the Mysteries of the Culper Spy Ring and Message Concealment": 1 + "Revolutionary War Era: A Study of the Culper Spy Ring’s Use of Spy Glasses in 8th Grade History.": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Focusing on Interactive Storytelling": 1 + "Utilizing iPads: Creative Narration with Flipgrid for 2nd Grade Language Arts Course": 1 + "Creative Narration with Flipgrid and Google Classroom: 2nd Grade Language Arts Course": 1 + "Mastering Digital Storytelling: A Flipgrid Guide for 2nd Grade Language Arts Course": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Using Interactive Whiteboards": 1 + "Voiceover Techniques in Creative Narration with Flipgrid: 2nd Grade Language Arts Course ": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Emphasizing on Animation Tools ": 1 + "Interactive Creative Narration with Flipgrid and Smartboards: 2nd Grade Language Arts Course": 1 + "Creative Narration with Flipgrid: Enhancing 2nd Grade Language Arts Course through VR Technology": 1 + "Using Digital Puppets for Creative Narration with Flipgrid: 2nd Grade Language Arts Course.": 1 + "12th Grade Social Studies: Advanced U.S. Government Focused on Constitutional Law": 1 + "12th Grade Social Studies: Advanced U.S. Government with Emphasis on Voting Systems": 1 + "12th Grade Social Studies: Advanced U.S. Government - Exploring Political Campaign Strategies": 1 + "Advanced U.S. Government: A Deep Dive into Policy Making for 12th Grade Social Studies": 1 + "12th Grade Social Studies: Federalism in Advanced U.S. Government": 1 + "12th Grade Social Studies: Advanced U.S. Government - Understanding the Judicial Review": 1 + "Advanced U.S. Government for 12th Grade Social Studies: The Role of Media in Politics": 1 + "12th Grade Social Studies: Advanced U.S. Government - The Impact of Technology on Democracy": 1 + "Advanced U.S. Government: Exploring the Electoral College for 12th Grade Social Studies": 1 + "12th Grade Social Studies: Advanced U.S. Government - A Close Look at Public Opinion and Polling.": 1 + "4th Grade History: The First Americans and the Invention of the Wheel - The Role of the Atlatl": 1 + "4th Grade History: The First Americans, the Invention of the Wheel and the Discovery of Fire": 1 + "4th Grade History: The First Americans, the Invention of the Wheel, and the Introduction of Pottery": 1 + "4th Grade History: The First Americans and the Impact of the Wheel on Agriculture": 1 + "4th Grade History: The First Americans, the Invention of the Wheel, and the Development of Writing": 1 + "4th Grade History: The First Americans - From the Invention of the Wheel to the Development of the Bow and Arrow": 1 + "4th Grade History: The First Americans, the Invention of the Wheel and the Emergence of Metallurgy": 1 + "4th Grade History: Unveiling the First Americans: The Invention of the Wheel and the Mastery of Stone Tools": 1 + "4th Grade History: The First Americans and the Invention of the Wheel - A Journey to the Discovery of the Pulley": 1 + "4th Grade History: The First Americans, the Invention of the Wheel, and the Revolution of the Hand Drill": 1 + "2nd Grade Music: Exploring Rhythm and Beats with Drums": 1 + "2nd Grade Music: Rhythm and Beats Using Piano ": 1 + "2nd Grade Music: Learning Rhythm and Beats with Music Software": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Percussion Instruments": 1 + "2nd Grade Music: Rhythm and Beats Through the Lens of Digital Audio Workstation": 1 + "2nd Grade Music: Rhythm and Beats - A Journey with Acoustic Guitar": 1 + "2nd Grade Music: Rhythm and Beats Mastery with Electronic Keyboards": 1 + "2nd Grade Music: Rhythm and Beats Exploration with Music Apps": 1 + "2nd Grade Music: Hands-on Rhythm and Beats with Xylophone": 1 + "2nd Grade Music: Rhythm and Beats - Unleashing Creativity with MIDI Controllers": 1 + "8th Grade Music: Understanding and Applying the BOSS RC-505 Loop Station in Music Production": 1 + "8th Grade Music: An In-depth Study of Digital Audio Workstations in Loop Pedal Music Production": 1 + "8th Grade Music: The Role of Loop Pedals and MIDI Controllers in Music Production": 1 + "8th Grade Music: Utilizing Ableton Live Software in Loop Pedal Music Production": 1 + "8th Grade Music: The Influence of Loop Pedals and Dynamic Processing in Music Production": 1 + "8th Grade Music: Exploring the Connection Between Loop Pedals and Audio Effects in Music Production": 1 + "8th Grade Music: Mastering the Use of Loop Pedals with the Logic Pro X": 1 + "8th Grade Music: Unveiling the Synergy between Loop Pedals and Synthesizers in Music Production": 1 + "8th Grade Music: The Role of Loop Pedals and Beat Making in Music Production": 1 + "8th Grade Music: The Integration of Loop Pedals and Sound Design in Modern Music Production.": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Utilizing Spotting Techniques with Balance Beams": 1 + "Exploring Trampolines in 8th Grade Physical Education: Gymnastics and Teamwork through Spotting Techniques": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Utilizing Spotting Techniques in Vaulting": 1 + "8th Grade Physical Education: Incorporating Gymnastics Rings in Gymnastics and Teamwork: Spotting Techniques": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Using Spotting Techniques in Uneven Bars": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Spotting Techniques for Pommel Horse": 1 + "Mastering Parallel Bars in 8th Grade Physical Education: Gymnastics and Teamwork: Spotting Techniques": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Spotting Techniques in Floor Exercises": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Spotting Techniques and the Use of Springboards": 1 + "8th Grade Physical Education: Gymnastics and Teamwork: Spotting Techniques with Horizontal Bars.": 1 + "5th Grade Social Studies: The Role of Printing Press in the American Revolution": 1 + "5th Grade Social Studies: The Impact of Gunpowder in the American Revolution": 1 + "5th Grade Social Studies: The Significance of The Continental Congress in the American Revolution": 1 + "5th Grade Social Studies: Navigation Technology and the American Revolution": 1 + "5th Grade Social Studies: The Influence of Enlightenment Ideas on the American Revolution": 1 + "5th Grade Social Studies: The Role of Propaganda in the American Revolution": 1 + "5th Grade Social Studies: The Effect of Telegraphy in the American Revolution": 1 + "5th Grade Social Studies: The Importance of Diplomacy during the American Revolution": 1 + "5th Grade Social Studies: Military Strategies used in the American Revolution": 1 + "5th Grade Social Studies: The Role of Spies and Espionage in the American Revolution": 1 + "1st Grade Environmental Studies: Exploring Our Planet with Stream Gauges": 1 + "1st Grade Environmental Studies: Stream Study Tools and Our Planet - A Focus on pH Meters": 1 + "1st Grade Environmental Studies: Microscopes and Macroinvertebrates - A Stream Study": 1 + "1st Grade Environmental Studies: Stream Study Tools and Our Planet - The Significance of Turbidity Tubes": 1 + "1st Grade Environmental Studies: The Role of Thermometers in Stream Studies": 1 + "1st Grade Environmental Studies: Stream Study Tools - Unveiling the Mysteries of Secchi Disks": 1 + "1st Grade Environmental Studies: Stream Study Tools and Our Planet - A Deep Dive into Water Samplers": 1 + "1st Grade Environmental Studies: The Impact of Flow Meters on Stream Studies": 1 + "1st Grade Environmental Studies: Stream Study Tools and Our Planet - Understanding Dissolved Oxygen Kits": 1 + "1st Grade Environmental Studies: Stream Studies - Exploring the Power of Sonar Technology": 1 + "2nd Grade Art: Basic Color Theory Using Watercolor Paints": 1 + "2nd Grade Art: Basic Color Theory with Acrylics": 1 + "2nd Grade Art: Basic Color Theory and the Use of Paint Brushes": 1 + "2nd Grade Art: Basic Color Theory Explored Through Colored Pencils": 1 + "2nd Grade Art: Basic Color Theory - Understanding Pastels": 1 + "2nd Grade Art: Exploring Basic Color Theory with Crayons": 1 + "2nd Grade Art: Basic Color Theory and Marker Techniques": 1 + "2nd Grade Art: Basic Color Theory - Exploring Shades with Charcoals": 1 + "2nd Grade Art: Basic Color Theory in Digital Art Using Tablets": 1 + "2nd Grade Art: Basic Color Theory - The Impact of Light and Shadow.": 1 + "1st Grade Health: Understanding Hygiene through Hand Washing Techniques": 1 + "1st Grade Health: Incorporating Toothbrushing in Understanding Hygiene": 1 + "1st Grade Health: Understanding Hygiene through the Use of Soap": 1 + "1st Grade Health: The Role of Tissues in Understanding Hygiene": 1 + "1st Grade Health: Understanding Hygiene: The Importance of Clean Clothes": 1 + "1st Grade Health: Understanding Hygiene via Hand Sanitizers": 1 + "1st Grade Health: Understanding Hygiene: The Science of Germs": 1 + "1st Grade Health: Understanding Hygiene: The Impact of Cleanliness on Health": 1 + "1st Grade Health: The Importance of Clean Water in Understanding Hygiene": 1 + "1st Grade Health: Understanding Hygiene: The Influence of Personal Grooming": 1 + "Exploring Tesseract Theory in Time Travel Science Fiction: A Detailed Study for 7th Grade Language Arts Course": 1 + "Understanding Wormhole Concepts in the Fourth Dimension of Time Travel Science Fiction: An In-depth 7th Grade Language Arts Course": 1 + "A 7th Grade Language Arts Course: Delving into Parallel Universes in Fourth Dimension Time Travel Science Fiction": 1 + "Time Machines in the Fourth Dimension of Time Travel Science Fiction: A Comprehensive 7th Grade Language Arts Course": 1 + "Mastering Quantum Physics in Fourth Dimension Time Travel Science Fiction: A Specialized 7th Grade Language Arts Course": 1 + "An In-depth Look at Multiverse Theory in Fourth Dimension Time Travel Science Fiction: A 7th Grade Language Arts Course": 1 + "Unraveling Temporal Paradox in Fourth Dimension Time Travel Science Fiction: A 7th Grade Language Arts Course": 1 + "A 7th Grade Language Arts Course: Investigating Quantum Entanglement in Fourth Dimension Time Travel Science Fiction": 1 + "Decoding Einstein-Rosen Bridges in the Fourth Dimension of Time Travel Science Fiction: A Detailed 7th Grade Language Arts Course": 1 + "A 7th Grade Language Arts Course: Understanding the Role of Black Holes in Fourth Dimension Time Travel Science Fiction": 1 + "5th Grade Language Arts: Introduction to Metaphors in Poetry Writing": 1 + "5th Grade Language Arts: Exploring Similes in Poetry Writing": 1 + "5th Grade Language Arts: Understanding Alliteration in Poetry Writing": 1 + "5th Grade Language Arts: Learning Imagery in Poetry Writing": 1 + "5th Grade Language Arts: Mastering Rhyme Schemes in Poetry Writing": 1 + "5th Grade Language Arts: Delving into Personification in Poetry Writing": 1 + "5th Grade Language Arts: Discovering Hyperbole in Poetry Writing": 1 + "5th Grade Language Arts: Introduction to Onomatopoeia in Poetry Writing": 1 + "5th Grade Language Arts: Grasping the Use of Allusion in Poetry Writing": 1 + "5th Grade Language Arts: Exploring Symbolism in Poetry Writing": 1 + "5th Grade Language Arts: The Art of Assonance in Poetry Writing": 1 + "6th Grade Social Studies: Basics of Environmental Conservation through Recycling Practices": 1 + "6th Grade Social Studies: Exploring Environmental Conservation via Solar Energy": 1 + "6th Grade Social Studies: Basics of Environmental Conservation & Water Filtration Systems": 1 + "6th Grade Social Studies: Environmental Conservation with Emphasis on Composting": 1 + "6th Grade Social Studies: Wind Turbine Technology and Its Role in Environmental Conservation": 1 + "6th Grade Social Studies: Learning Environmental Conservation through Reforestation": 1 + "6th Grade Social Studies: Environmental Conservation: Understanding the Role of Electric Vehicles": 1 + "6th Grade Social Studies: Basics of Environmental Conservation - The Impact of Rainwater Harvesting": 1 + "6th Grade Social Studies: An Introduction to Environmental Conservation with Smart Agriculture": 1 + "6th Grade Social Studies: Basics of Environmental Conservation - Focusing on Waste Management Systems": 1 + "7th Grade Music: Understanding Rhythms through Percussion Instruments": 1 + "7th Grade Music: Mastering Rhythms with Digital Music Software": 1 + "7th Grade Music: Exploring Rhythms using Metronome": 1 + "7th Grade Music: Understanding Rhythms and Beats with Drum Kit": 1 + "7th Grade Music: Discovering Rhythms using Music Synthesizer": 1 + "7th Grade Music: Learning Rhythms with Beat Making Apps": 1 + "7th Grade Music: Unveiling Rhythm Patterns through Piano": 1 + "7th Grade Music: Grasping Rhythms with Music Sequencer": 1 + "7th Grade Music: Understanding Rhythms through Electronic Drum Pads": 1 + "7th Grade Music: Learning Rhythms and Tempo with a Music Mixer": 1 + "7th Grade Music: Exploring Rhythms using Audio Production Software": 1 + "7th Grade Language Arts: Exploring Quantum Physics in Multiverse Theory through Time Travel Science Fiction": 1 + "The Role of Wormholes in 7th Grade Language Arts: A Study of Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: Dissecting the Use of Parallel Universes in Multiverse Theory within Time Travel Science Fiction": 1 + "Exploring the Tesseract: 7th Grade Language Arts and Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Role of Space-Time Continuum in Time Travel Science Fiction’s Multiverse Theory": 1 + "Time Machines in 7th Grade Language Arts: A Deep Dive into Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Impact of Teleportation on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: Understanding the Multiverse Theory in Time Travel Science Fiction through the Lens of Quantum Entanglement": 1 + "7th Grade Language Arts: The Influence of Black Holes on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: A Detailed Study of Multiverse Theory in Time Travel Science Fiction Using the Concept of Alternate Realities.": 1 + "2nd Grade Music: Enhancing Melodic Understanding with a Metronome, Xylophone and Rhythm Sticks": 1 + "2nd Grade Music: Developing Pitch Recognition using a Xylophone, Metronome and a Tuning Fork": 1 + "2nd Grade Music: Improving Timing with a Metronome, Xylophone and a Drum Machine": 1 + "2nd Grade Music: Exploring Tempo with a Metronome, Xylophone and a Digital Audio Workstation": 1 + "2nd Grade Music: Boosting Melodic Skills through a Xylophone, Metronome and Sheet Music Reading": 1 + "2nd Grade Music: Strengthening Rhythm Using a Metronome, Xylophone and a Loop Pedal": 1 + "2nd Grade Music: Encouraging Musical Creativity with a Metronome, Xylophone and a MIDI Controller": 1 + "2nd Grade Music: Advancing Tonal Memory with a Metronome, Xylophone and a Sound Sequencer": 1 + "2nd Grade Music: Promoting Melodic Accuracy with a Metronome, Xylophone and Music Production Software": 1 + "2nd Grade Music: Enhancing Melodic Understanding with a Metronome, Xylophone and a Digital Synthesizer": 1 + "7th Grade Language Arts: Analyzing Environmental Literature using Google Books and Kindle": 1 + "Digital Libraries and E-books: A Deep Dive into Environmental Literature for 7th Grade Language Arts": 1 + "7th Grade Language Arts: Reading Environmental Literature through Project Gutenberg": 1 + "Exploring Environmental Literature in 7th Grade Language Arts using OverDrive": 1 + "7th Grade Language Arts: Interpretation of Environmental Literature using Audiobooks": 1 + "7th Grade Language Arts: Exploiting LibriVox for Environmental Literature Studies": 1 + "Using Adobe Digital Editions for Environmental Literature in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive": 1 + "Understanding Environmental Literature in 7th Grade Language Arts through TED Talks": 1 + "7th Grade Language Arts: Applying Nook’s E-reader for Environmental Literature Studies": 1 + "5th Grade History: Unearthing Ancient Egypt with Archaeological Tools": 1 + "5th Grade History: Deciphering Ancient Egypt through Hieroglyphics ": 1 + "5th Grade History: Revealing Ancient Egypt through Cartography ": 1 + "5th Grade History: Unpacking Ancient Egypt with Artifact Analysis ": 1 + "5th Grade History: Exploring Ancient Egypt via Papyrus Technology": 1 + "5th Grade History: Mapping Ancient Egypt with Geographical Information Systems": 1 + "5th Grade History: Excavating Ancient Egypt: The Science of Archaeology ": 1 + "5th Grade History: Understanding Ancient Egypt through Pyramids Architecture": 1 + "5th Grade History: Decoding Ancient Egypt with Rosetta Stone": 1 + "5th Grade History: Investigating Ancient Egypt using Carbon Dating Techniques": 1 + "2nd Grade Science: Using Rain Gauges and Barometers in Weather Pattern Studies": 1 + "2nd Grade Science: An Introduction to Rain Gauges and Thermometers in Weather Pattern Analysis": 1 + "2nd Grade Science: Exploring Rainfall Measurement with Rain Gauges and Weather Maps": 1 + "2nd Grade Science: Rain Gauges & Wind Vanes: Tools for Understanding Weather Patterns": 1 + "2nd Grade Science: The Role of Rain Gauges and Anemometers in Weather Pattern Studies": 1 + "2nd Grade Science: Rain Gauges and Hygrometers: Unraveling Weather Mysteries": 1 + "2nd Grade Science: Introduction to Rain Gauges and Radar Technology in Weather Studies": 1 + "2nd Grade Science: Rain Gauges and Weather Balloons: A deep dive into Meteorology": 1 + "2nd Grade Science: Utilizing Rain Gauges and Satellites for Weather Pattern Tracking": 1 + "2nd Grade Science: Rain Gauges and Weather Stations: A Comprehensive Study in Weather Patterns.": 1 + "Kindergarten Language Arts: Alphabet Familiarization through Puppetry Using Handmade Sock Puppets": 1 + "Kindergarten Language Arts: Interactive Alphabet Learning through Digital Puppetry": 1 + "Kindergarten Language Arts: Utilizing Shadow Puppetry for Alphabet Recognition": 1 + "Kindergarten Language Arts: Alphabet Mastery through Puppetry and Storytelling": 1 + "Kindergarten Language Arts: Fostering Alphabet Familiarization through Puppetry and Augmented Reality": 1 + "Kindergarten Language Arts: Enhancing Letter Recognition through Puppetry and Music": 1 + "Kindergarten Language Arts: Alphabet Familiarization through Puppetry and Interactive Whiteboards": 1 + "Kindergarten Language Arts: Exploring Alphabet through Puppetry and Tactile Learning Tools": 1 + "Kindergarten Language Arts: Puppetry and Virtual Reality in Alphabet Familiarization": 1 + "Kindergarten Language Arts: Alphabet Learning through Puppetry and Multi-Sensory Techniques.": 1 + "9th Grade Music: Exploring Violin through the Symphony of Sounds - A Comprehensive Study of the Bow Technique": 1 + "9th Grade Music: Symphony of Sounds - Understanding Violin’s Vibrato Technique": 1 + "Music Tech 9th Grade: Symphony of Sounds - Utilizing Digital Audio Workstations in Violin Composition": 1 + "9th Grade Music: Symphony of Sounds - Mastering Fingering Positions on the Violin": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin": 1 + "9th Grade Music: Symphony of Sounds - The Role of Rosin in Violin Performance": 1 + "Music Software in 9th Grade Music: Symphony of Sounds - Integrating MIDI Controllers with Violin": 1 + "9th Grade Music: Symphony of Sounds - Violin’s Harmonics and Overtones": 1 + "9th Grade Music: Symphony of Sounds - Violin and the Concept of Timbre": 1 + "9th Grade Music: Symphony of Sounds - Exploring Violin through the Lens of Acoustic Physics.": 1 + "11th Grade History: Impact of Electric Arc Furnaces on Steel Production - Solution 1: Using Carbon Capture Technology in Mitigating Environmental Effects": 1 + "The Role of Cyanide Leaching in Steel Manufacturing: Its Environmental Consequences and Solution 2: Biochar Application": 1 + "Unveiling the Hidden Effects of Electric Arc Furnaces in Steel Production: Solution 3: Implementing Renewable Energy Sources": 1 + "Understanding the Environmental Implications of Cyanide Leaching in Steel Production - Solution 4: Introduction of Bioremediation": 1 + "Dissecting the Environmental Damage from Electric Arc Furnaces in Steel Production: Solution 5: Efficiency Improvements through Advanced Process Control": 1 + "The Ecological Impact of Steel Production: Electric Arc Furnaces and Cyanide Leaching - Solution 6: Phytoextraction": 1 + "11th Grade History: Evaluating the Environmental Effects of Electric Arc Furnaces and Cyanide Leaching in Steel Production - Solution 7: Carbon Sequestration": 1 + "The Historical and Environmental Impact of Steel Production: A Study of Electric Arc Furnaces and Cyanide Leaching - Solution 8: Waste Heat Recovery": 1 + "Steel Production’s Environmental Toll: A Deep Dive into Electric Arc Furnaces and Cyanide Leaching - Solution 9: Industrial Symbiosis": 1 + "Innovating Solutions to the Environmental Damage from Electric Arc Furnaces and Cyanide Leaching in Steel Production: Solution 10: Acid Mine Drainage Treatment.": 1 + "Exploring Roller Coaster Physics: A 7th Grade Science Study Using Interactive Physics and Velocity-Time Graphs": 1 + "The Thrill of Speed: Applying Newton’s Second Law in 7th Grade Science’s Simulation of Roller Coaster Physics ": 1 + "7th Grade Science’s Dive into Roller Coaster Physics: Using Computer Simulation, Velocity-Time Graphs and Python Programming": 1 + "The Thrill of Speed: A Detailed Study of Roller Coaster Physics through CAD Simulation in 7th Grade Science": 1 + "Journey Through Roller Coaster Physics: 7th Grade Science’s Exploration with MATLAB and Velocity-Time Graphs": 1 + "The Excitement of Motion: 7th Grade Science’s Exploration of Roller Coaster Physics Using PhET Simulations": 1 + "Understanding Roller Coaster Physics: A 7th Grade Science Course Utilizing Virtual Reality and Velocity-Time Graphs": 1 + "Roller Coaster Physics Decoded: A 7th Grade Science Course Using AutoCAD and Velocity-Time Graphs": 1 + "The Thrill of Speed: 7th Grade Science’s Exploration of Roller Coaster Physics Using Unity 3D and Kinematics": 1 + "Breaking Down Roller Coaster Physics: A 7th Grade Science Study Using Google SketchUp and Velocity-Time Graphs.": 1 + "8th Grade History: Revolutionary War Era - The Importance of Diplomacy & The Role of Espionage": 1 + "8th Grade History: Revolutionary War Era - The Impact of Printing Press in Diplomacy": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and the Use of Secret Codes ": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Use of Pigeons": 1 + "8th Grade History: Revolutionary War Era - The Influence of Cartography in Diplomacy": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Cryptography: Deciphering the Enemy’s Plans": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and the Advent of Telegraphy": 1 + "8th Grade History: Revolutionary War Era - The Role of Diplomacy and Naval Technology": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and the Use of Smoke Signals": 1 + "8th Grade History: Revolutionary War Era - The Importance of Diplomacy & The Role of Colonial Newspapers.": 1 + "Nutritional Label Analysis Using MyFitnessPal: A Comprehensive 9th Grade Course on Nutrition, Diet Planning, and Calorie Counting Techniques": 1 + "Nutritional Label Analysis and Dietary Management: 9th Grade Course Incorporating CalorieKing for Nutrition and Diet Planning": 1 + "Nutritional Label Analysis & FatSecret Integration: 9th Grade Course Focusing on Nutrition and Diet Planning with Calorie Counting Techniques": 1 + "Nutritional Label Analysis: Detailed 9th Grade Course on Nutrition and Diet Planning with Fooducate Calorie Counting Techniques": 1 + "Nutritional Label Analysis with Lose It!: 9th Grade Course on Advanced Nutrition, Diet Planning, and Calorie Counting Techniques": 1 + "Nutritional Label Analysis: 9th Grade Course on Nutrition and Diet Planning using SparkPeople Calorie Counting Techniques": 1 + "Nutritional Label Analysis: 9th Grade Course on Nutrition, Diet Planning, and Macro Tracking with Cronometer Application": 1 + "Nutritional Label Analysis and MyNetDiary: An In-depth 9th Grade Course on Nutrition, Diet Planning, and Calorie Counting Techniques": 1 + "Nutritional Label Analysis: A 9th Grade Course on Nutrition and Diet Planning with Calorie Counting Techniques Using Lifesum App": 1 + "Nutritional Label Analysis: 9th Grade Course on Nutrition and Diet Planning with YAZIO Calorie Counting Techniques.": 1 + "6th Grade History: Ancient Persian Civilization and the Engineering of Their Qanat Water Systems": 1 + "Ancient Persian Civilization: The Technology and Impact of Qanat Water Systems in 6th Grade History": 1 + "6th Grade History: The Role of Wind Catchers in Ancient Persian Civilization and Their Qanat Water Systems": 1 + "Ancient Persian Civilization: The Development of Yakhchal in 6th Grade History ": 1 + "6th Grade History: Ancient Persian Civilization - The Qanat Water System and the Science of Hydraulics": 1 + "The Evolution of Ancient Persian Civilization and their Qanat Water Systems: A Focus on Underground Channels in 6th Grade History": 1 + "6th Grade History: Ancient Persian Civilization and the Qanat Water Systems - Unraveling the Mystery of Water Management": 1 + "Ancient Persian Civilization and Qanat Water Systems: Exploring the Role of Wells in 6th Grade History": 1 + "6th Grade History: The Impact of the Qanat Water Systems on Ancient Persian Agriculture": 1 + "Ancient Persian Civilization: Understanding the Qanat Water Systems and the Innovation of Water Distribution in 6th Grade History.": 1 + "2nd Grade Math: Introduction to Multiplication using Abacus": 1 + "2nd Grade Math: Learning Multiplication through Flashcards": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards": 1 + "2nd Grade Math: Understanding Multiplication via Math Apps": 1 + "2nd Grade Math: Discovering Multiplication through Online Games": 1 + "2nd Grade Math: Exploring Multiplication with Digital Worksheets": 1 + "2nd Grade Math: Multiplication Basics using Smartboard Activities": 1 + "2nd Grade Math: Introduction to Multiplication with Times Tables ": 1 + "2nd Grade Math: Fun with Multiplication using Educational Videos": 1 + "2nd Grade Math: Multiplication Skills Development through Virtual Manipulatives": 1 + "1st Grade Science: Understanding Deciduous Forest Ecosystems through Terrarium Building with Mosses Using pH Soil Test Kits and Microscopes": 1 + "1st Grade Science: Discovering Marine Ecosystems through Seashore Terrarium Construction and Seaweed Identification using pH Soil Test Kits and Salinity Meters": 1 + "1st Grade Science: Exploring Desert Ecosystems through Cactus Terrarium Building and Plant Identification with pH Soil Test Kits and Temperature Sensors": 1 + "1st Grade Science: Delving into Rainforest Ecosystems via Terrarium Building and Tropical Plant Identification using pH Soil Test Kits and Humidity Monitors": 1 + "1st Grade Science: Unveiling Arctic Tundra Ecosystems through Ice Plant Terrarium Creation and Plant Identification using pH Soil Test Kits and Frost Indicators": 1 + "1st Grade Science: Probing Savanna Ecosystems via Grassland Terrarium Building and Grass Species Identification using pH Soil Test Kits and Drought Simulators": 1 + "1st Grade Science: Investigating Wetland Ecosystems through Aquatic Terrarium Construction and Water Plant Identification using pH Soil Test Kits and Hydroponics Systems": 1 + "1st Grade Science: Decoding Alpine Ecosystems through Mountainous Terrarium Building and Alpine Plant Identification using pH Soil Test Kits and Altitude Simulators": 1 + "1st Grade Science: Probing into Grassland Ecosystems via Prairie Terrarium Building and Grass Identification using pH Soil Test Kits and Wind Simulation Tools": 1 + "1st Grade Science: Understanding Chaparral Ecosystems through Shrubland Terrarium Assembly and Bush Identification using pH Soil Test Kits and Fire Simulation Tools": 1 + "8th Grade Social Studies: Analyzing Democracy and Government Principles through Python Programming and Artificial Intelligence Concepts": 1 + "8th Grade Social Studies: Understanding Democracy with TensorFlow and AI Concepts": 1 + "8th Grade Social Studies: Democracy and Government Principles Explored through Machine Learning Algorithms": 1 + "8th Grade Social Studies: Deep Learning Applications in Studying Democracy and Government Principles": 1 + "8th Grade Social Studies: The Impact of Neural Networks on Democracy and Government Principles": 1 + "8th Grade Social Studies: Studying Democracy through the Lens of Natural Language Processing": 1 + "8th Grade Social Studies: Democracy and Government Principles through the Eyes of Computer Vision Techniques": 1 + "8th Grade Social Studies: Deciphering Democracy and Government Rules using AI Decision Trees": 1 + "8th Grade Social Studies: Applying AI Reinforcement Learning to Democracy and Government Principles": 1 + "8th Grade Social Studies: Democracy Explored through AI Robotics and Government Principles.": 1 + "2nd Grade History: The Role of Quarantine in the Middle Ages - The Black Death and its Impact": 1 + "2nd Grade History: Siege Warfare in the Middle Ages - The Black Death and its Effect on Battles": 1 + "2nd Grade History: The Impact of the Printing Press during the Black Death in the Middle Ages": 1 + "2nd Grade History: The Influence of the Astrolabe during the Black Death in the Middle Ages": 1 + "2nd Grade History: Life in the Middle Ages - The Black Death and the Impact of Windmills on Agriculture": 1 + "2nd Grade History: The Effect of the Black Death on Heraldry in the Middle Ages": 1 + "2nd Grade History: The Black Death and its Impact on Alchemical Practices in the Middle Ages": 1 + "2nd Grade History: The Effect of the Black Death on Gothic Architecture in the Middle Ages": 1 + "2nd Grade History: The Black Death and its Impact on the Feudal System in the Middle Ages": 1 + "2nd Grade History: The Black Death’s Impact on Middle Ages Shipbuilding Technology.": 1 + "2nd Grade Introduction to Algebra: Exploring Number Patterns": 1 + "2nd Grade Introduction to Algebra: Utilizing Math Manipulatives": 1 + "2nd Grade Introduction to Algebra: Application of Number Lines": 1 + "2nd Grade Introduction to Algebra: Understanding Variables": 1 + "2nd Grade Introduction to Algebra: Basics of Equations": 1 + "2nd Grade Introduction to Algebra: Introduction to Functions": 1 + "2nd Grade Introduction to Algebra: Using Interactive Whiteboards": 1 + "2nd Grade Introduction to Algebra: Incorporating Math Games": 1 + "2nd Grade Introduction to Algebra: Understanding Graphs and Charts": 1 + "2nd Grade Introduction to Algebra: Application of iPads in Learning": 1 + "6th Grade Language Arts: Exploring Metaphors and Similes through Poetry": 1 + "6th Grade Language Arts: Understanding Metaphors and Similes with Interactive Worksheets": 1 + "6th Grade Language Arts: Mastering Metaphors and Similes with Digital Flashcards": 1 + "6th Grade Language Arts: Analysing Metaphors and Similes using Graphic Organizers": 1 + "6th Grade Language Arts: A Deep Dive into Metaphors and Similes with E-Books": 1 + "6th Grade Language Arts: Exploring Metaphors and Similes through Online Games": 1 + "6th Grade Language Arts: Understanding Metaphors and Similes with Audio-Visual Aids": 1 + "6th Grade Language Arts: Applying Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Unpacking Metaphors and Similes with Interactive Whiteboard Activities": 1 + "6th Grade Language Arts: Deciphering Metaphors and Similes through Close Reading Strategies": 1 + "2nd Grade Art: Exploring Color Theory with Watercolors": 1 + "2nd Grade Art: Basics of Color Theory Using Crayons": 1 + "2nd Grade Art: Color Theory and Mixing with Acrylic Paints": 1 + "2nd Grade Art: Basics of Color Theory through Collage Making": 1 + "2nd Grade Art: Understanding Color Theory with Pastels": 1 + "2nd Grade Art: Basics of Color Theory Using Digital Art Software": 1 + "2nd Grade Art: Color Theory Demonstrated through Clay Modeling": 1 + "2nd Grade Art: Basics of Color Theory with Colored Pencils": 1 + "2nd Grade Art: Exploring Color Theory through Origami Paper Folding": 1 + "2nd Grade Art: Basics of Color Theory Using Oil Pastels": 1 + "1st Grade Spanish: Introduction to Vocabulary and Phrases using Babbel and Trello Flashcards": 1 + "1st Grade Spanish: Utilizing Babbel for Vocabulary Enhancement with Quizlet Flashcards": 1 + "1st Grade Spanish: Interactive Learning with Babbel and Pear Deck Flashcards": 1 + "1st Grade Spanish: Babbel Assisted Vocabulary and Phrases Study with Anki Flashcards": 1 + "1st Grade Spanish: Learning Vocabulary and Phrases with Babbel and Google Slides Flashcards": 1 + "1st Grade Spanish: Vocabulary Introduction using Babbel and Digital Flashcards on Seesaw": 1 + "1st Grade Spanish: Babbel Vocabulary Lessons and Interactive Flashcards on Kahoot!": 1 + "1st Grade Spanish: Vocabulary and Phrases Mastery with Babbel and Cram Flashcards": 1 + "1st Grade Spanish: Babbel Guided Vocabulary Learning with Microsoft Teams Flashcards": 1 + "1st Grade Spanish: Introduction to Vocabulary and Phrases using Babbel and Nearpod Flashcards": 1 + "4th Grade History: Exploring Maya Civilization with Interactive Timelines and Virtual Reality": 1 + "4th Grade History: Discovering Maya Civilization with Interactive Timelines and Augmented Reality": 1 + "4th Grade History: Understanding Maya Civilization using Interactive Timelines and 3D Modeling": 1 + "4th Grade History: Journey to Maya Civilization with Interactive Timelines and Google Earth": 1 + "4th Grade History: Analyzing Maya Civilization through Interactive Timelines and AI Algorithms": 1 + "4th Grade History: Decoding Maya Civilization with Interactive Timelines and Cryptography": 1 + "4th Grade History: Unveiling Maya Civilization with Interactive Timelines and GIS Mapping": 1 + "4th Grade History: Navigating Maya Civilization using Interactive Timelines and Simulation Games": 1 + "4th Grade History: Tracing Maya Civilization with Interactive Timelines and Drone Imaging": 1 + "4th Grade History: Experience Maya Civilization with Interactive Timelines and Holography Technology": 1 + "8th Grade Physical Education: Enhancing Health and Fitness Development using MyFitnessPal App": 1 + "Physical Education for 8th Grade: Utilizing Strava for Health and Fitness Development": 1 + "8th Grade PE: Building Health and Fitness using Nike Run Club Mobile App": 1 + "Physical Education in 8th Grade: Personal Fitness Development with Fitbod App": 1 + "8th Grade Fitness Education: Health Improvement through Garmin Connect Mobile Application ": 1 + "8th Grade Physical Education: Fitness Development via Apple Fitness+ Mobile App": 1 + "Physical Education for 8th Graders: Health and Fitness Development with Endomondo Fitness App": 1 + "8th Grade Physical Education: Health Enhancement and Fitness Development using Fitbit App": 1 + "8th Grade PE: Promoting Health and Fitness with the JEFIT Workout Tracker Mobile App": 1 + "Physical Education in 8th Grade: Fitness Development and Health Improvement using Adidas Running App.": 1 + "2nd Grade Language Arts: Fundamentals of Grammar through Storytelling": 1 + "2nd Grade Language Arts: Exploring Grammar with Interactive Whiteboard ": 1 + "2nd Grade Language Arts: Fundamentals of Grammar using Online Games": 1 + "2nd Grade Language Arts: Learning Grammar through Puppetry": 1 + "2nd Grade Language Arts: Fundamentals of Grammar with iPad Apps": 1 + "2nd Grade Language Arts: Understanding Grammar through Animated Videos": 1 + "2nd Grade Language Arts: Grammar Mastery using Digital Flashcards": 1 + "2nd Grade Language Arts: Fundamentals of Grammar with EdTech Tools": 1 + "2nd Grade Language Arts: Improving Grammar Skills through Virtual Reality": 1 + "2nd Grade Language Arts: Fun with Grammar using Interactive eBooks": 1 + "1st Grade Physical Education: Exploring Soccer with Training Cones": 1 + "1st Grade Physical Education: Fun with Baseball and Batting Tees": 1 + "1st Grade Physical Education: Learning Teamwork through Basketball Drills": 1 + "1st Grade Physical Education: Introduction to Volleyball using Lightweight Balls": 1 + "1st Grade Physical Education: Agility Training in Athletics with Ladder Drills": 1 + "1st Grade Physical Education: Discovering Handball with Goal Nets": 1 + "1st Grade Physical Education: Enjoying Gymnastics with Balance Beams": 1 + "1st Grade Physical Education: Rugby Basics with Tackle Bags": 1 + "1st Grade Physical Education: Team Coordination in Relay Races using Baton Passing": 1 + "1st Grade Physical Education: Fitness Fun with Jump Ropes in Double Dutch": 1 + "8th Grade Music: The Integration of Loop Pedals and Ableton Live in Modern Music Production.": 1 + "8th Grade Music: The Application of Loop Pedals and MIDI Controllers in Modern Music Production.": 1 + "8th Grade Music: The Use of Loop Pedals and Digital Audio Workstations in Modern Music Production.": 1 + "8th Grade Music: The Integration of Loop Pedals and Pro Tools in Modern Sound Design.": 1 + "8th Grade Music: Exploring Loop Pedals and Auto-Tune Technology in Modern Music Production.": 1 + "8th Grade Music: The Role of Loop Pedals and Synthesizers in Contemporary Music Production.": 1 + "8th Grade Music: The Integration of Loop Pedals and Sound Design with Logic Pro X in Modern Music Production.": 1 + "8th Grade Music: Utilizing Loop Pedals and Beat Making Software in Modern Music Production.": 1 + "8th Grade Music: The Integration of Loop Pedals and Sound Design with FL Studio in Modern Music Production.": 1 + "8th Grade Music: The Fusion of Loop Pedals, Sound Design, and Virtual Studio Technology in Modern Music Production.": 1 + "6th Grade Physical Education: Mastering Volleyball Techniques": 1 + "6th Grade Physical Education: The Basics of Basketball and Dribbling Techniques": 1 + "6th Grade Physical Education: An Introduction to Soccer and Ball Control": 1 + "6th Grade Physical Education: Fundamentals of Baseball and Batting Skills": 1 + "6th Grade Physical Education: Understanding Football and Tackling Techniques": 1 + "6th Grade Physical Education: Learning Tennis and Racket Handling": 1 + "6th Grade Physical Education: The Art of Badminton and Shuttlecock Techniques": 1 + "6th Grade Physical Education: Exploration of Rugby and Scrum Techniques": 1 + "6th Grade Physical Education: Fundamentals of Cricket and Bowling Techniques": 1 + "6th Grade Physical Education: Basics of Hockey and Stick Handling Skills": 1 + "6th Grade Social Studies: Storytelling in History through Digital Timelines": 1 + "6th Grade Social Studies: The Role of Maps in Storytelling History": 1 + "6th Grade Social Studies: Using Podcasts for Storytelling in History": 1 + "6th Grade Social Studies: Storytelling in History with Augmented Reality": 1 + "6th Grade Social Studies: Storytelling in History using Virtual Reality Tours": 1 + "6th Grade Social Studies: Storytelling in History through Film and Television": 1 + "6th Grade Social Studies: Storytelling in History with Interactive Whiteboards": 1 + "6th Grade Social Studies: Storytelling in History through Animation": 1 + "6th Grade Social Studies: The Role of Infographics in Storytelling History": 1 + "6th Grade Social Studies: Storytelling in History using Digital Storybook Apps": 1 + "8th Grade Science: Introduction to Data Analysis using Microsoft Excel": 1 + "8th Grade Science: Exploring Data Analysis through SPSS": 1 + "8th Grade Science: Understanding Data Analysis with Python Programming": 1 + "8th Grade Science: Introduction to Data Analysis with R software": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB": 1 + "8th Grade Science: Data Analysis Fundamentals with Tableau": 1 + "8th Grade Science: Introduction to Data Analysis using Google Sheets": 1 + "8th Grade Science: Data Analysis Techniques with Minitab": 1 + "8th Grade Science: Introduction to Data Analysis using SQL": 1 + "8th Grade Science: Data Analysis and Visualization with Power Bi": 1 + "Fifth Grade Mathematics: Mastering Fractions with the Aid of Fraction Circles": 1 + "Fifth Grade Mathematics: Understanding Fractions Through Visual Models": 1 + "Fifth Grade Mathematics: Using Number Lines to Understand Fractions": 1 + "Fifth Grade Mathematics: Understanding Fractions with Interactive Whiteboards": 1 + "Fifth Grade Mathematics: Mastering Fractions Through Fraction Bars": 1 + "Fifth Grade Mathematics: Manipulating Fraction Tiles for Better Understanding": 1 + "Fifth Grade Mathematics: Decoding Fractions with Fraction Decimal Percent Charts": 1 + "Fifth Grade Mathematics: Exploring Fractions Using Virtual Manipulatives": 1 + "Fifth Grade Mathematics: Understanding Fractions with Hands-on Equivalence Sets": 1 + "Fifth Grade Mathematics: Fraction Fun with Fraction Tower Cubes": 1 + "Fifth Grade Mathematics: Mastering Fractions Using Fraction Flip Books": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns Using Barometers": 1 + "4th Grade Environmental Studies: Weather Pattern Analysis with Doppler Radar": 1 + "4th Grade Environmental Studies: Exploring Climate Trends through Weather Satellites": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns through Data Analysis": 1 + "4th Grade Environmental Studies: Anemometers and Understanding Weather Patterns ": 1 + "4th Grade Environmental Studies: Rain Gauges and Their Role in Weather Pattern Analysis": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns Using Weather Balloons": 1 + "4th Grade Environmental Studies: Forecasting Techniques in Understanding Weather Patterns": 1 + "4th Grade Environmental Studies: The Thermometer’s Role in Identifying Weather Patterns": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns through Hygrometry ": 1 + "4th Grade Environmental Studies: Wind Vane and Its Application in Weather Pattern Analysis": 1 + "7th Grade Science: Exploring Roller Coaster Physics with Newton’s Laws - The Impact of Gravity": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity and the Role of Accelerometers": 1 + "7th Grade Science: Studying Roller Coaster Physics using CAD Software - The Impact of Gravity": 1 + "7th Grade Science: Roller Coaster Physics and the Influence of Gravity - Utilizing Force Diagrams": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity and the Application of Energy Conservation": 1 + "7th Grade Science: Roller Coaster Physics Examined with Simulation Software - The Impact of Gravity": 1 + "7th Grade Science: Understanding Roller Coaster Physics through Gravity’s Effect - Leveraging Friction Coefficients": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity, Explored through Velocity Calculations": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity, Investigated with 3D Modeling Tools": 1 + "7th Grade Science: Roller Coaster Physics - The Impact of Gravity, Explored via Centripetal Force Concepts.": 1 + "6th Grade Social Studies: Unraveling Egypt’s Ancient Civilizations and the Development of Solar Calendars through Hieroglyphics": 1 + "Decoding Egypt’s Ancient Civilizations: The Innovation of Solar Calendars and the Role of Papyrus in 6th Grade Social Studies": 1 + "6th Grade Social Studies: The Influence of the Pyramids in Egypt’s Ancient Civilizations and Solar Calendar Innovation": 1 + "Understanding Egypt’s Ancient Civilizations: The Nile Irrigation Systems and the Evolution of Solar Calendars in 6th Grade Social Studies": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations, Solar Calendar Innovation, and the Art of Mummification": 1 + "Exploring Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars and the Introduction of Bronze Tools": 1 + "6th Grade Social Studies: The Impact of the Rosetta Stone on Egypt’s Ancient Civilizations and Solar Calendar Innovations": 1 + "From Pharaohs to Solar Calendars: The Influence of Sphinx Architecture in Egypt’s Ancient Civilizations - 6th Grade Social Studies": 1 + "6th Grade Social Studies: The Ancient Egyptian Chariot & the Development of Solar Calendars in Egypt’s Ancient Civilizations": 1 + "Uncovering Egypt’s Ancient Civilizations: The Innovation of Solar Calendars and the Significance of Obelisks in 6th Grade Social Studies": 1 + "1st Grade Music: Mastering Rhythm and Melody Basics with Hand Drums, GarageBand, and the Concept of Musical Scales": 1 + "1st Grade Music: Comprehending Rhythm and Melody Basics with Hand Drums, Sibelius Software, and Pitch Recognition": 1 + "1st Grade Music: Exploring Rhythm and Melody Basics with Hand Drums, Audacity, and Tempo Understanding": 1 + "1st Grade Music: Learning Rhythm and Melody Basics with Hand Drums, FL Studio, and the Principle of Harmonics": 1 + "1st Grade Music: Discovering Rhythm and Melody Basics with Hand Drums, Ableton Live, and the Idea of Syncopation": 1 + "1st Grade Music: Grasping Rhythm and Melody Basics with Hand Drums, Notion Software, and the Concept of Musical Phrasing": 1 + "1st Grade Music: Apprehending Rhythm and Melody Basics with Hand Drums, Pro Tools, and the Principle of Rhythmic Patterns": 1 + "1st Grade Music: Delving into Rhythm and Melody Basics with Hand Drums, Cubase, and the Idea of Beat Counting": 1 + "1st Grade Music: Decoding Rhythm and Melody Basics with Hand Drums, Logic Pro, and the Concept of Note Duration": 1 + "1st Grade Music: Navigating Rhythm and Melody Basics with Hand Drums, MuseScore, and the Principle of Time Signatures.": 1 + "Tenth Grade Music: Understanding Music Theory through Piano ": 1 + "Tenth Grade Music: Exploring Music Theory with Digital Audio Workstations": 1 + "Tenth Grade Music: Applying Music Theory in GarageBand": 1 + "Tenth Grade Music: Understanding Music Theory with the Help of Sibelius Software": 1 + "Tenth Grade Music: Decoding Music Theory Using MIDI Sequencing": 1 + "Tenth Grade Music: Music Theory Exploration Using the Circle of Fifths": 1 + "Tenth Grade Music: Understanding Music Theory through Sight Reading Techniques": 1 + "Tenth Grade Music: Music Theory Applied to Violin Composition": 1 + "Tenth Grade Music: Understanding Music Theory with Pro Tools": 1 + "Tenth Grade Music: Harmonic Progression in Music Theory": 1 + "5th Grade Social Studies: Exploring Ancient Civilizations with Maps": 1 + "5th Grade Social Studies: Journey through Ancient Civilizations using Timelines": 1 + "5th Grade Social Studies: Analyzing Ancient Civilizations via Archaeology": 1 + "5th Grade Social Studies: Understanding Ancient Civilizations through Pottery Analysis": 1 + "5th Grade Social Studies: A Deep Dive into Ancient Civilizations via Hieroglyphics": 1 + "5th Grade Social Studies: Exploring Ancient Civilizations using Virtual Reality": 1 + "5th Grade Social Studies: Studying Ancient Civilizations through Artifact Restoration": 1 + "5th Grade Social Studies: Journey through Ancient Civilizations with Interactive Software": 1 + "5th Grade Social Studies: Exploring Ancient Civilizations through the Lens of Architecture": 1 + "5th Grade Social Studies: Journey through Ancient Civilizations using Augmented Reality.": 1 + "3rd Grade English: Exploring Storytelling with Digital Tools": 1 + "3rd Grade English: Journey through Storytelling using Puppetry": 1 + "3rd Grade English: Storytelling Enhanced by Animation Software": 1 + "3rd Grade English: Journey through Storytelling with Virtual Reality": 1 + "3rd Grade English: Integrating iPads in Storytelling Lessons": 1 + "3rd Grade English: Storytelling using Interactive Whiteboards": 1 + "3rd Grade English: Journey through Storytelling with Audio Recordings": 1 + "3rd Grade English: Storytelling through the Lens of Photography": 1 + "3rd Grade English: Storytelling with the Aid of Graphic Design": 1 + "3rd Grade English: Journey through Storytelling using Film Making Tools": 1 + "3rd Grade English: Storytelling and Drama: Using Costumes and Props": 1 + "6th Grade Music: A Deep Dive into Beethoven’s Symphony No. 5 and the Role of the Piano Forte": 1 + "Exploring Beethoven’s Symphonies: The Significance of the Piano Forte in 6th Grade Music": 1 + "The Impact of the Metronome on Beethoven’s Symphonies: A Course for 6th Grade Music Students": 1 + "6th Grade Music: Discovering Beethoven’s Symphonies through Sheet Music and the Piano Forte": 1 + "The Role of the Piano Forte in Beethoven’s Symphonies: A 6th Grade Music Course with Focus on Musical Notation": 1 + "6th Grade Music: Examining Beethoven’s Symphonies and the Influence of the Piano Forte using Music Sequencers": 1 + "Innovations in Music: A 6th Grade Study of Beethoven’s Symphonies and the Piano Forte using Digital Audio Workstations": 1 + "6th Grade Music: Analysis of Beethoven’s Symphonies and the Piano Forte through Music Theory": 1 + "The Piano Forte and its Influence on Beethoven’s Symphonies: A 6th Grade Course Incorporating Music Composition Software ": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies and the Piano Forte through Audio Recording Technology.": 1 + "4th Grade Social Studies: Exploring Ancient Egypt through Cartography and GIS Technology": 1 + "4th Grade Social Studies: Discovering Roman Empire using Map-Making and Compass Navigation": 1 + "4th Grade Social Studies: Unearthing Ancient Greece through Map-Making and Longitude/Latitude Concept": 1 + "4th Grade Social Studies: Delving into Ancient India through Cartography and Scale Representation": 1 + "4th Grade Social Studies: Investigating Ancient China via Map-Making and Geographic Coordinate Systems": 1 + "4th Grade Social Studies: Learning about Mesopotamia through Map-Making and Aerial Photography": 1 + "4th Grade Social Studies: Revealing Mayan Civilization with Cartography and Contour Lines": 1 + "4th Grade Social Studies: Exploring Ancient Persia through Map-Making and Topographic Maps": 1 + "4th Grade Social Studies: Unveiling the Inca Empire through Cartography and Satellite Imagery": 1 + "4th Grade Social Studies: Studying the Aztec Civilization with Map-Making and GIS Software": 1 + "First Grade Elementary: Exploring the Solar System with Telescopes": 1 + "First Grade Elementary: Understanding the Solar System through 3D Models": 1 + "First Grade Elementary: Learning about the Solar System using Planetarium Software": 1 + "First Grade Elementary: Study of the Solar System with NASA’s Interactive Tools": 1 + "First Grade Elementary: Discovering the Solar System via Augmented Reality": 1 + "First Grade Elementary: Grasping the Solar System with Virtual Reality Simulations": 1 + "First Grade Elementary: Introduction to the Solar System using Solar System Projector": 1 + "First Grade Elementary: Delving into the Solar System with Mobile Apps": 1 + "First Grade Elementary: Learning about the Solar System through Holographic Models": 1 + "First Grade Elementary: Exploring the Solar System with Interactive Whiteboards": 1 + "Kindergarten Health and Wellness: Learning About Dental Hygiene Through Microscope Exploration and Tooth Model Use": 1 + "Using Petri Dishes in Kindergarten Health and Wellness: A Deep Dive into Microbial Hygiene": 1 + "Kindergarten Health and Wellness: Learning About Hand Hygiene Through Microscope Exploration and Germ Culture": 1 + "Kindergarten Health and Wellness: Understanding Bacteria and Hygiene with Microscopes and Hand Sanitizers": 1 + "Kindergarten Health and Wellness: Exploring Microorganisms and Hygiene Using Microscopes and Agar Plates": 1 + "Kindergarten Health and Wellness: Hands-on Learning About Hygiene Through Microscope Exploration and Interactive Whiteboards": 1 + "Kindergarten Health and Wellness: Discovering Pathogens and Hygiene Through Microscope Exploration and Digital Microscopy": 1 + "Kindergarten Health and Wellness: An Examination of Personal Hygiene Through Microscope Exploration and Handwashing Demonstrations": 1 + "Kindergarten Health and Wellness: Learning About Hygiene Through Microscope Exploration and the Use of UV Light Boxes": 1 + "Kindergarten Health and Wellness: Unveiling the Microscopic World of Hygiene with Microscopes and Stethoscopes.": 1 + "8th Grade History: Revolutionary War Era - Examining the Use of Naval Warfare and the Role of Cannons": 1 + "8th Grade History: Revolutionary War Era - A Detailed Study on the Use of Frigates in Naval Warfare": 1 + "8th Grade History: Revolutionary War Era - Understanding the Impact of Gunpowder in Naval Warfare": 1 + "8th Grade History: Revolutionary War Era - Analysis of Submarine Turtles in Naval Warfare ": 1 + "8th Grade History: Revolutionary War Era - The Significance of Naval Blockades during the Revolutionary War": 1 + "8th Grade History: Revolutionary War Era - Examining the Use of Naval Warfare and the Technological Advances of Sailing Ships": 1 + "8th Grade History: Revolutionary War Era - The Role of Naval Warfare: A Focus on Naval Mines": 1 + "8th Grade History: Revolutionary War Era - The Use of Naval Warfare: The Revolutionary Impact of Signal Flags": 1 + "8th Grade History: Revolutionary War Era - Naval Warfare and the Importance of Nautical Charts": 1 + "8th Grade History: Revolutionary War Era - Naval Warfare Strategies: The Use of the Broadside Formation.": 1 + "Sixth Grade Language Arts: Mastering Reading Comprehension with Story Mapping Techniques ": 1 + "Sixth Grade Language Arts: Enhancing Reading Comprehension Using Text-to-Speech Tools ": 1 + "Sixth Grade Language Arts: Reading Comprehension Techniques Using Context Clues ": 1 + "Sixth Grade Language Arts: Improving Reading Comprehension with Flashcards ": 1 + "Sixth Grade Language Arts: Reading Comprehension Techniques Using Graphic Organizers ": 1 + "Sixth Grade Language Arts: Reading Comprehension Enhancement with Interactive Whiteboards ": 1 + "Sixth Grade Language Arts: Exploring Reading Comprehension Techniques with E-Readers ": 1 + "Sixth Grade Language Arts: Reading Comprehension Techniques Using the SQ3R Method ": 1 + "Sixth Grade Language Arts: Reading Comprehension Improvement with Annotation Techniques ": 1 + "Sixth Grade Language Arts: Boosting Reading Comprehension through Visualization Strategies": 1 + "12th Grade Physical Education: Enhancing Swimming Endurance with Paddles Using the Freestyle Technique": 1 + "12th Grade Physical Education: Butterfly Stroke Training in Swimming with Paddles for Improved Endurance": 1 + "12th Grade Physical Education: Utilizing Speedo Power Paddles for Swimming Endurance Training": 1 + "12th Grade Physical Education: Swimming Endurance Training with Paddles and the Concept of Drag": 1 + "12th Grade Physical Education: Incorporating Heart Rate Monitors into Swimming Endurance Training with Paddles": 1 + "12th Grade Physical Education: Swim Paddle Endurance Training with Resistance Bands": 1 + "12th Grade Physical Education: Interval Training in Swimming for Endurance using Paddles": 1 + "12th Grade Physical Education: Swimming Endurance Training with Paddles and Fins": 1 + "12th Grade Physical Education: Breathing Techniques in Swimming Endurance Training with Paddles": 1 + "12th Grade Physical Education: Utilizing the Tempo Trainer Pro in Swimming Endurance Training with Paddles.": 1 + "4th Grade Mathematics: Exploring Fractions with Number Lines": 1 + "4th Grade Mathematics: Journey through Fractions using Virtual Manipulatives": 1 + "4th Grade Mathematics: Understanding Fractions with Fraction Bars": 1 + "4th Grade Mathematics: Mastering Fractions using Interactive Whiteboards": 1 + "4th Grade Mathematics: Journey through Fractions with Fraction Circles": 1 + "4th Grade Mathematics: Navigating Fractions using Educational Apps": 1 + "4th Grade Mathematics: Fraction Fun with Digital Worksheets": 1 + "4th Grade Mathematics: Discovering Fractions with Online Games": 1 + "4th Grade Mathematics: Fraction Adventure using Hands-on Models": 1 + "4th Grade Mathematics: Unfolding Fractions with the Concept of Equivalent Fractions": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums": 1 + "2nd Grade Music: Learning Melody through Piano": 1 + "2nd Grade Music: Discovering Rhythm with Metronomes": 1 + "2nd Grade Music: Introduction to Melody using Violins": 1 + "2nd Grade Music: Understanding Rhythm with Tambourines": 1 + "2nd Grade Music: Grasping Melody through Flutes": 1 + "2nd Grade Music: Discovering Rhythm using a Drum Machine": 1 + "2nd Grade Music: Exploring Melody with Xylophones": 1 + "2nd Grade Music: Understanding Rhythm through Clapping Exercises": 1 + "2nd Grade Music: Learning Melody using Music Software": 1 + "5th Grade History: Exploring the Pyramids of Ancient Egypt": 1 + "5th Grade History: Journey through Ancient Civilizations with the Astrolabe": 1 + "5th Grade History: Understanding the Hieroglyphics of Ancient Civilizations": 1 + "5th Grade History: The Role of the Wheel in Ancient Civilizations": 1 + "5th Grade History: The Impact of Irrigation Systems on Ancient Civilizations": 1 + "5th Grade History: Ancient Civilizations and the Invention of the Plow": 1 + "5th Grade History: Discovering the Great Wall in Ancient Chinese Civilization": 1 + "5th Grade History: Journey through Ancient Civilizations - The Power of Papyrus": 1 + "5th Grade History: Ancient Civilizations and the Development of Bronze Tools": 1 + "5th Grade History: The Significance of the Aqueducts in Ancient Rome": 1 + "5th Grade History: Exploring the Ziggurats in Ancient Mesopotamian Civilization": 1 + "4th Grade History: The First Americans - The Utilization of Animal Skins and Bone Tools": 1 + "4th Grade History: Discovering the First Americans - The Creation of Clothing from Animal Skins": 1 + "4th Grade History: The First Americans - Exploring the Use of Animal Skins for Shelter Construction": 1 + "4th Grade History: Prehistoric America - Utilization of Animal Skins and Stone Scrapers": 1 + "4th Grade History: The First Americans - The Crafting of Bags and Containers from Animal Skins": 1 + "4th Grade History: The First Americans - The Utilization of Animal Skins and Fire Hardening Techniques": 1 + "4th Grade History: The First Americans - Understanding the Role of Animal Skins in Trade and Barter": 1 + "4th Grade History: The First Americans - The Use of Animal Skins and Sinew for Crafting Tools": 1 + "4th Grade History: The First Americans - The Utilization of Animal Skins and the Concept of Tanning": 1 + "4th Grade History: The First Americans - The Use of Animal Skins in Spiritual Rituals and Ceremonies": 1 + "4th Grade History: The First Americans - The Use of Animal Skins and the Development of Sewing Techniques": 1 + "4th Grade History: Unraveling Early American History Through Map Reading": 1 + "4th Grade History: Discovering Early American History With Timelines": 1 + "4th Grade History: Analyzing Early American History Through Primary Sources": 1 + "4th Grade History: Understanding Early American History Through the Printing Press": 1 + "4th Grade History: Exploring Early American History Through the Lens of Agricultural Tools": 1 + "4th Grade History: Navigating Early American History With Compasses and Astrolabes": 1 + "4th Grade History: Investigating Early American History Using Archival Research": 1 + "4th Grade History: Examining Early American History Through the Concept of Democracy": 1 + "4th Grade History: Learning Early American History Through the Perspective of Industrial Revolution": 1 + "4th Grade History: Delving into Early American History With the Telegraph Technology": 1 + "7th Grade History: The Impact of Automobiles in the Roaring Twenties": 1 + "7th Grade History: The Roaring Twenties and the Rise of Radio Technology": 1 + "7th Grade History: The Roaring Twenties and the Prohibition Era": 1 + "7th Grade History: Exploring Jazz Music in the Roaring Twenties": 1 + "7th Grade History: The Women’s Suffrage Movement in the Roaring Twenties": 1 + "7th Grade History: The Role of Film Industry in the Roaring Twenties": 1 + "7th Grade History: The Roaring Twenties and the Harlem Renaissance": 1 + "7th Grade History: Consumerism and Advertising in the Roaring Twenties": 1 + "7th Grade History: The Roaring Twenties and the Stock Market Crash": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age.": 1 + "2nd Grade Mathematics: Understanding Multiplication with the Abacus": 1 + "2nd Grade Mathematics: Using Number Lines to Understand Multiplication": 1 + "2nd Grade Mathematics: Understanding Multiplication: A Deep Dive into Times Tables": 1 + "2nd Grade Mathematics: Understanding Multiplication through Real-world Applications": 1 + "2nd Grade Mathematics: Understanding Multiplication with Interactive Whiteboard Games": 1 + "2nd Grade Mathematics: Learning Multiplication Using Grid Method": 1 + "2nd Grade Mathematics: Understanding Multiplication through Math Manipulatives": 1 + "2nd Grade Mathematics: Learning Multiplication with the Help of Computer Software": 1 + "2nd Grade Mathematics: Understanding Multiplication through Visual Models": 1 + "2nd Grade Mathematics: Mastering Multiplication with the Montessori Method": 1 + "8th Grade Language Arts: Mastering Persuasive Essays through the use of Ethos, Pathos, and Logos": 1 + "8th Grade Language Arts: Exploring Persuasive Essays with Microsoft Word Tools": 1 + "8th Grade Language Arts: Mastering Persuasive Essays using Google Docs Collaboration Features": 1 + "8th Grade Language Arts: Enhancing Persuasive Essays with Graphic Organizers": 1 + "8th Grade Language Arts: Mastering Persuasive Essays with the Concept of Audience Awareness": 1 + "8th Grade Language Arts: Utilizing Thesis Statements in Persuasive Essays": 1 + "8th Grade Language Arts: Developing Persuasive Essays with Counter-Argument Techniques": 1 + "8th Grade Language Arts: Mastering Persuasive Essays using Citation and Referencing Tools": 1 + "8th Grade Language Arts: Exploring Persuasive Essays through the use of Mind Mapping Software": 1 + "8th Grade Language Arts: Mastering Persuasive Essays with Peer Review Strategies.": 1 + "Tenth Grade Music: Understanding Scales with Ableton Live": 1 + "Tenth Grade Music: Exploring Harmony and Melody with Pro Tools": 1 + "Tenth Grade Music: Learning Chord Progressions using FL Studio": 1 + "Tenth Grade Music: Discovering Rhythm Patterns with Logic Pro X": 1 + "Tenth Grade Music: Introduction to Synthesis using Reason": 1 + "Tenth Grade Music: Studying Sound Design with GarageBand": 1 + "Tenth Grade Music: Delving into Song Structure with Cubase": 1 + "Tenth Grade Music: Navigating Music Composition with Reaper": 1 + "Tenth Grade Music: Grasping Music Notation with Sibelius": 1 + "Tenth Grade Music: Unveiling Arrangement Techniques with Digital Performer": 1 + "1st Grade Art: Exploring Primary Colors and Basic Shapes through Watercolor Painting with Round Brushes": 1 + "1st Grade Art: Diving into the World of Geometric Shapes and Colors via Watercolor Painting and Palette Knife Techniques": 1 + "1st Grade Art: A Journey through Color Theory and Shapes via Watercolor Painting using Palette Knives and Wash Brushes": 1 + "1st Grade Art: Discovering the Spectrum of Colors and Shapes via Watercolor Painting with Flat Brushes and Palette Knives": 1 + "1st Grade Art: Mastering Colors and Shapes with Watercolor Painting and Palette Knives using the Rule of Thirds Concept": 1 + "1st Grade Art: Unfolding the Universe of Colors and Shapes through Watercolor Painting with Mop Brushes and Palette Knives": 1 + "1st Grade Art: Initiation to Color Mixing and Shape Recognition via Watercolor Painting with Filbert Brushes and Palette Knives": 1 + "1st Grade Art: Navigating the World of Colors and Shapes with Watercolor Painting Using Palette Knives and Frisket Techniques": 1 + "1st Grade Art: Learning Colors and Shapes via Watercolor Painting and Palette Knives using the Color Wheel Concept": 1 + "1st Grade Art: An Adventure into Colors and Shapes with Watercolor Painting and Palette Knives using Wet on Wet Technique": 1 + "6th Grade Social Studies: Deciphering Egyptian Hieroglyphics with Rosetta Stone ": 1 + "Exploring the Agricultural Impact of Nile Flooding in Ancient Civilizations: A 6th Grade Social Studies Course ": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics and Nile Flooding, using 3D Mapping Technology ": 1 + "Incorporating Virtual Reality in 6th Grade Social Studies: A Deep Dive into Ancient Civilizations and Hieroglyphics ": 1 + "6th Grade Social Studies: Interpreting Ancient Civilizations through Hieroglyphics and Nile Flooding using Linguistic Analysis ": 1 + "Analyzing Ancient Civilizations through Hieroglyphics and Nile Flooding: A 6th Grade Social Studies Course using Satellite Imagery ": 1 + "6th Grade Social Studies: Applying Carbon Dating in Understanding Ancient Civilizations through Hieroglyphics and Nile Flooding ": 1 + "6th Grade Social Studies: Decoding Ancient Civilizations through Hieroglyphics and Nile Flooding using Cryptography Concepts ": 1 + "Studying Ancient Civilizations in 6th Grade Social Studies: An Examination of Hieroglyphics and Nile Flooding through Archaeological Excavations ": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Hieroglyphics and Nile Flooding using Geographic Information Systems (GIS)": 1 + "8th Grade Music: Analyzing the Evolution of Classical Music with a Focus on Harpsichord Techniques and the Development of Polyphony in Mozart’s Works using the Solfège System": 1 + "8th Grade Music: Tracing the Progression of Classical Music with a Deep Dive into the Harpsichord and the Emergence of Polyphony in Mozart’s Compositions with the Aid of Music Notation Software": 1 + "8th Grade Music: Exploring the Transformation of Classical Music: Harpsichord Mastery and Polyphony in Mozart’s Works through the Lens of the Equal Temperament Tuning System": 1 + "8th Grade Music: Unraveling the Evolution of Classical Music focusing on Harpsichord Playing Techniques and the Rise of Polyphony in Mozart’s Works with the Use of Metronomes": 1 + "8th Grade Music: Decoding the Transition of Classical Music: Emphasis on Harpsichord and Polyphony in Mozart’s Works through the Application of the Circle of Fifths": 1 + "8th Grade Music: Delving into the Change of Classical Music with a Study of Harpsichord and the Growth of Polyphony in Mozart’s Works Using the Concept of Tonality": 1 + "8th Grade Music: Understanding the Transformation of Classical Music: A Detailed Examination of Harpsichord and the Evolution of Polyphony in Mozart’s Works through the Implication of Digital Audio Workstations": 1 + "8th Grade Music: Investigating the Shift in Classical Music with a Specific Look at Harpsichord and the Emergence of Polyphony in Mozart’s Works Applying the Principle of Harmonics": 1 + "8th Grade Music: Uncovering the Progress of Classical Music: Harpsichord Proficiency and Polyphony in Mozart’s Works through the Utilization of MIDI Controllers": 1 + "8th Grade Music: Tracking the Advance of Classical Music focusing on Harpsichord Techniques and the Progression of Polyphony in Mozart’s Works with the Exploration of the Counterpoint Theory.": 1 + "1st Grade Physical Education: Mastering Double Dutch with Speed Jump Ropes": 1 + "1st Grade Physical Education: Enhancing Fitness through Double Dutch and Heart Rate Monitors": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and Balance Beam Exercises": 1 + "1st Grade Physical Education: Leap into Fitness with Double Dutch and Pogo Sticks": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and the Concept of Rhythm": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes with Fitness Tracking Bracelets": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and Agility Ladder Drills": 1 + "1st Grade Physical Education: Double Dutch and Hula Hoops for Complete Fitness Fun": 1 + "1st Grade Physical Education: Exploring Double Dutch Jump Ropes and Coordination Skills": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and the Use of Stopwatch for Time Tracking.": 1 + "8th Grade Music: Understanding the Influence of Auto-Tune in Music Production": 1 + "8th Grade Music: Exploring the Impact of Digital Audio Workstations on Music Production": 1 + "8th Grade Music: The Role of MIDI Technology in Modern Music Production": 1 + "8th Grade Music: The Effect of Synthesizers on Music Production": 1 + "8th Grade Music: Exploring the Influence of Electronic Drum Machines in Music Production": 1 + "8th Grade Music: The Impact of Sampling Technology on Music Production": 1 + "8th Grade Music: Understanding the Role of Music Sequencers in Music Production": 1 + "8th Grade Music: The Influence of Loop Pedals on Music Production": 1 + "8th Grade Music: How Sound Editing Software Transformed Music Production": 1 + "8th Grade Music: The Effect of Sound Amplification Technology on Music Production": 1 + "5th Grade Science: Exploring Space and the Solar System through Telescopes": 1 + "5th Grade Science: Studying the Solar System with Satellite Imagery": 1 + "5th Grade Science: Understanding Space through the Concept of Gravity": 1 + "5th Grade Science: Exploring Space and the Solar System with Virtual Reality": 1 + "5th Grade Science: Introduction to Astronomy with Binoculars": 1 + "5th Grade Science: Examining the Solar System through Spectroscopy": 1 + "5th Grade Science: Discovering Space and the Solar System with Computer Simulations": 1 + "5th Grade Science: Exploring Space and the Solar System using the Hubble Space Telescope": 1 + "5th Grade Science: Unraveling the Mysteries of the Solar System with Space Probes": 1 + "5th Grade Science: Learning about Space and the Solar System through the Lens of Astrophotography": 1 + "Ancient Chinese Civilization: The Use of Fire and Chisel in Constructing the Great Wall for 6th Grade History": 1 + "The Role of Fire and Rammed Earth Technique in Ancient Chinese Civilization: Building the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization and Fire-Hardened Bricks: Building the Great Wall for 6th Grade History": 1 + "The Use of Fire, Bronze Tools, and Manual Labor in Constructing the Great Wall: A Course for 6th Grade History": 1 + "Ancient Chinese Civilization: The Use of Fire and Pulley Systems in the Construction of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: Fire, Stone Molds and the Construction of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Use of Fire and Structural Engineering in the Great Wall Construction for 6th Grade History": 1 + "Fire and Mortar: Tools of Ancient Chinese Civilization in the Construction of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Use of Fire and Cantilever Crane in the Construction of the Great Wall for 6th Grade History": 1 + "The Use of Fire and Dragging Sleds in Ancient Chinese Civilization: The Great Wall Construction for 6th Grade History": 1 + "6th Grade English: Mastering Grammar and Vocabulary through Interactive Online Quizzes": 1 + "6th Grade English: Enhancing Vocabulary using Digital Flashcards": 1 + "6th Grade English: Grammar Mastery through Mind Mapping Techniques": 1 + "6th Grade English: Vocabulary Expansion with Etymology Studies": 1 + "6th Grade English: Grammar Improvement using Sentence Diagramming Tools": 1 + "6th Grade English: Vocabulary Enhancement through Skits and Role-Playing": 1 + "6th Grade English: Mastering Grammar using Collaborative Google Docs Activities": 1 + "6th Grade English: Vocabulary Building with the Frayer Model": 1 + "6th Grade English: Grammar Mastery via Interactive Grammar Games": 1 + "6th Grade English: Boosting Vocabulary using the Vocabulary.com App": 1 + "Second Grade Language Arts: Exploring Folktales with Digital Storytelling": 1 + "Second Grade Language Arts: Journey through Folktales Using Interactive Whiteboards": 1 + "Second Grade Language Arts: Folktales Adventure with iPad Apps": 1 + "Second Grade Language Arts: Journey through Folktales Utilizing E-books": 1 + "Second Grade Language Arts: Grasping Folktales with Augmented Reality": 1 + "Second Grade Language Arts: Folktales Exploration via WebQuests": 1 + "Second Grade Language Arts: Journey through Folktales - A Multimedia Approach": 1 + "Second Grade Language Arts: Folktales Study through Educational Video Games": 1 + "Second Grade Language Arts: Journey through Folktales Using Virtual Reality": 1 + "Second Grade Language Arts: Folktales Understanding with Audio Storytelling Tools": 1 + "7th Grade History: The Civil War Era and the Effects of the Cotton Gin": 1 + "7th Grade History: The Impact of Industrialization and the Telegraph during the Civil War Era": 1 + "7th Grade History: The Civil War Era and the Role of Railways in Industrialization": 1 + "7th Grade History: The Emergence of Steam Power during the Civil War and Industrialization Era": 1 + "7th Grade History: The Civil War Era and the Influence of the Sewing Machine on Industrialization": 1 + "7th Grade History: The Civil War Era and the Impact of Industrialized Weaponry": 1 + "7th Grade History: The Civil War Era - The Textile Mills and the Industrial Revolution": 1 + "7th Grade History: The Civil War Era and the Relevance of the Printing Press in Industrialization": 1 + "7th Grade History: The Civil War Era and the Impact of the Bessemer Steel Process on Industrialization": 1 + "7th Grade History: The Civil War Era - The Steamboat and the Dawn of Industrialization": 1 + "1st Grade Art: Exploring Colors and Shapes with Collage Techniques using Construction Paper": 1 + "1st Grade Art: Understanding Colors and Shapes with Scissors Guided Collage Techniques": 1 + "1st Grade Art: Mastering Colors and Shapes through Collage Techniques with Glue": 1 + "1st Grade Art: A Journey through Colors and Shapes via Collage Techniques with Cardboard": 1 + "1st Grade Art: Exploring Primary Colors and Basic Shapes with Collage Techniques and Paint": 1 + "1st Grade Art: Unraveling Colors and Shapes with Collage Techniques using Magazines": 1 + "1st Grade Art: Deep Dive into Colors and Shapes with Collage Techniques and Tissue Paper": 1 + "1st Grade Art: Discovering Colors and Shapes with Collage Techniques using Watercolors": 1 + "1st Grade Art: Understanding the World of Colors and Shapes with Collage Techniques and Crayons": 1 + "1st Grade Art: Journey through Colors and Shapes with Collage Techniques using Digital Tools": 1 + "4th Grade English: Exploring Storytelling through Kindle’s Interactive E-books and their Impact": 1 + "4th Grade English: Understanding Narratives through Nook’s Interactive E-books and their Impact": 1 + "4th Grade English: Journey through Storytelling: Using Apple iBooks and Evaluating their Impact": 1 + "4th Grade English: Embracing Literature: Interactive E-books on Google Play Books and their Impact": 1 + "4th Grade English: Storytelling and Beyond: Adobe Digital Editions Interactive E-books and their Impact": 1 + "4th Grade English: The Art of Storytelling: Kobo Interactive E-books and their Impact": 1 + "4th Grade English: Pathways to Literature: Interactive E-books on Project Gutenberg and their Impact": 1 + "4th Grade English: Discovering Storytelling: Interactive E-books on Wattpad and their Impact": 1 + "4th Grade English: Journey through Storytelling: Interactive E-books on OverDrive and their Impact": 1 + "4th Grade English: Exploring Narratives: Interactive E-books on Scribd and their Impact.": 1 + "1st Grade Environmental Studies: Understanding Hydroponics and the Use of LED Grow Lights for Sustainable Farming": 1 + "1st Grade Environmental Studies: Exploring Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Discovering Hydroponics and Ebb Flow Systems for Sustainable Farming": 1 + "1st Grade Environmental Studies: Learning about Hydroponics and Aeroponic Systems for Sustainable Farming": 1 + "1st Grade Environmental Studies: Delving into Hydroponics and the Role of pH Levels for Sustainable Farming": 1 + "1st Grade Environmental Studies: Studying Hydroponics and the Importance of Oxygenation for Sustainable Farming": 1 + "1st Grade Environmental Studies: Learning about Hydroponics and Utilizing Vertical Farming for Sustainability": 1 + "1st Grade Environmental Studies: Unpacking Hydroponics and the Use of Coconut Coir for Sustainable Farming": 1 + "1st Grade Environmental Studies: Learning about Hydroponics and the Application of Aquaponics for Sustainable Farming": 1 + "1st Grade Environmental Studies: Examining Hydroponics and the Impact of Controlled Environment Agriculture for Sustainable Farming": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Fraction Tiles Tool & Number Line Method Using Graphing Calculator": 1 + "6th Grade Mathematics: Mastering Fraction Equivalence using Fraction Tiles Tool, Number Line Method & Algebraic Expressions": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method & Digital Math Manipulatives": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool & Number Line Method: A Focus on Square Root Concepts": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool & Number Line Method: Decimals Deep Dive": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method & Interactive Whiteboard Technology": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool & Number Line Method: Understanding Percentages": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method & Python Programming for Math": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool & Number Line Method: Introducing Pythagorean Theorem": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method & Virtual Reality for Math Education": 1 + "2nd Grade Language Arts: Storytelling and Narration through Interactive Whiteboards using PowerPoint": 1 + "2nd Grade Language Arts: Enhancing Narration Skills with Interactive Whiteboards and Google Slides": 1 + "2nd Grade Language Arts: Storytelling through Interactive Whiteboards and Prezi Tools": 1 + "2nd Grade Language Arts: Utilizing Interactive Whiteboards and Skype for Engaging Narration": 1 + "2nd Grade Language Arts: Storytelling Mastery with Interactive Whiteboards and Adobe Spark": 1 + "2nd Grade Language Arts: Narration through Interactive Whiteboards and Minecraft Education Edition": 1 + "2nd Grade Language Arts: Interactive Storytelling with Whiteboards using Scratch Jr.": 1 + "2nd Grade Language Arts: Digital Narration through Interactive Whiteboards and Flipgrid": 1 + "2nd Grade Language Arts: Storytelling and Narration using Interactive Whiteboards and Kahoot": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Interactive Whiteboards and Padlet.": 1 + "3rd Grade Art: Exploring Watercolor Techniques with Round Brushes": 1 + "3rd Grade Art: Introduction to Watercolor Techniques Using Wet-on-Wet Approach": 1 + "3rd Grade Art: Introduction to Watercolor Techniques with Flat Brushes": 1 + "3rd Grade Art: Focusing on Watercolor Techniques - Understanding Color Mixing ": 1 + "3rd Grade Art: Watercolor Techniques - Mastering Graded Washes": 1 + "3rd Grade Art: Introduction to Watercolor Techniques: The Use of Masking Fluid ": 1 + "3rd Grade Art: Exploring Watercolor Techniques with Fan Brushes": 1 + "3rd Grade Art: Introduction to Watercolor Techniques - The Power of Layering": 1 + "3rd Grade Art: Watercolor Techniques - Discovering the Glazing Process ": 1 + "3rd Grade Art: The Magic of Watercolor Techniques: Exploring Dry Brushing": 1 + "9th Grade Language Arts: Exploring Shakespeare’s Works through Film Adaptations": 1 + "9th Grade Language Arts: Analyzing Shakespeare’s Plays with Digital Annotation Tools": 1 + "9th Grade Language Arts: Understanding Shakespeare’s Sonnets through Text-to-Speech Technology": 1 + "9th Grade Language Arts: Deciphering Shakespeare’s Language with Online Dictionaries": 1 + "9th Grade Language Arts: Interpreting Shakespeare’s Works using Virtual Reality": 1 + "9th Grade Language Arts: Exploring Shakespeare’s Works through Social Media Analysis": 1 + "9th Grade Language Arts: Studying Shakespeare’s Characters with AI Analysis": 1 + "9th Grade Language Arts: Exploring Shakespeare’s Dramatic Structure with Interactive eBooks": 1 + "9th Grade Language Arts: Evaluating Shakespeare’s Themes using Data Visualization": 1 + "9th Grade Language Arts: Exploring Shakespeare’s Works through Podcasts and Audiobooks.": 1 + "6th Grade Social Studies: The Evolution of the Wheel in History of Technology and Innovation": 1 + "6th Grade Social Studies: Gutenberg’s Printing Press and its Impact on Innovation": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution in Technology and Innovation": 1 + "6th Grade Social Studies: History of Technology and Innovation - The Age of Steam Engines": 1 + "6th Grade Social Studies: Exploration of the Light Bulb’s Role in Technology and Innovation": 1 + "6th Grade Social Studies: The Influence of the Internet on Technological Innovation": 1 + "6th Grade Social Studies: The Microchip’s Impact on History of Technology and Innovation": 1 + "6th Grade Social Studies: The Role of Atomic Energy in Technological Advancements": 1 + "6th Grade Social Studies: History of Technology and Innovation - The Discovery of Penicillin": 1 + "6th Grade Social Studies: The Space Race and its Influence on Technological Innovation.": 1 + "8th Grade Music: Exploring Beethoven’s Orchestration in Classical Music Through Studio One MIDI Sequencers and Sibelius Notation Software": 1 + "8th Grade Music: Dissecting Mozart’s Orchestration Techniques Using Studio One MIDI Sequencers and Cubase DAW": 1 + "8th Grade Music: Understanding Wagner’s Orchestration in Classical Music with Studio One MIDI Sequencers and Pro Tools": 1 + "8th Grade Music: Investigating Bach’s Orchestration Using Studio One MIDI Sequencers and Logic Pro X": 1 + "8th Grade Music: Examining Debussy’s Orchestration in Classical Music Through the Lens of Studio One MIDI Sequencers and Ableton Live": 1 + "8th Grade Music: Analyzing Tchaikovsky’s Orchestration Techniques with Studio One MIDI Sequencers and FL Studio": 1 + "8th Grade Music: Studying Brahms’ Orchestration in Classical Music Using Studio One MIDI Sequencers and Reason DAW": 1 + "8th Grade Music: Navigating Haydn’s Orchestration Techniques with Studio One MIDI Sequencers and Bitwig Studio": 1 + "8th Grade Music: Exploring Mendelssohn’s Orchestration in Classical Music Through Studio One MIDI Sequencers and Reaper DAW": 1 + "8th Grade Music: Evaluating Schubert’s Orchestration Techniques Using Studio One MIDI Sequencers and GarageBand.": 1 + "2nd Grade Health: Understanding Nutrition Basics with Interactive Food Pyramid": 1 + "2nd Grade Health: Utilizing MyPlate for Better Nutrition": 1 + "2nd Grade Health: Exploring Nutrients with Virtual Reality": 1 + "2nd Grade Health: Using Mobile Apps to Understand Nutrition Basics": 1 + "2nd Grade Health: Implementing Dietary Guidelines in Nutrition Education": 1 + "2nd Grade Health: Understanding Nutrition Basics with 3D Food Models": 1 + "2nd Grade Health: Nutrition Basics through Augmented Reality Games": 1 + "2nd Grade Health: Understanding Nutrition Basics with Digital Calorie Counters": 1 + "2nd Grade Health: Using Food Atlas for Nutrition Comprehension": 1 + "2nd Grade Health: Nutrition Basics with Interactive Dietary Workbooks": 1 + "2nd Grade Language Arts: Exploring Characters with Story Maps ": 1 + "2nd Grade Language Arts: Crafting Setting using Visual Imagery": 1 + "2nd Grade Language Arts: Plot Development through Graphic Organizers": 1 + "2nd Grade Language Arts: Using iPad Apps to Understand Story Themes": 1 + "2nd Grade Language Arts: Conflict Identification with Interactive Whiteboards": 1 + "2nd Grade Language Arts: Plot Structure Analysis using Online Platforms": 1 + "2nd Grade Language Arts: Exploring Story Elements with Interactive E-books": 1 + "2nd Grade Language Arts: Introducing Story Elements through Digital Storytelling": 1 + "2nd Grade Language Arts: Story Element Analysis with Google Classroom": 1 + "2nd Grade Language Arts: Using Multimedia to Understand Resolution in Stories": 1 + "1st Grade Physical Education: Enhancing Team Sports & Volleyball Serving Techniques with Cone Training Using Ball Launchers": 1 + "1st Grade Physical Education: Improving Volleyball Serving Techniques with Cone Training and Digital Video Analysis": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training using Resistance Bands": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training and the Use of Heart Rate Monitors": 1 + "1st Grade Physical Education: Incorporating Speed Radar Technology in Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training and Motion Capture Technology": 1 + "1st Grade Physical Education: Enhancing Team Sports & Volleyball Serving Techniques with Cone Training using Wearable Fitness Trackers": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training and the Use of Virtual Reality Training ": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Cone Training Incorporating Biomechanical Analysis": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques using Cone Training and Smart Ball Technology": 1 + "Tenth Grade Music: Exploring Melody Constructions with Cubase and MIDI Controller": 1 + "Tenth Grade Music: Understanding Harmony using Cubase and Digital Audio Workstation": 1 + "Tenth Grade Music: Mastering Beat Making in Cubase with Drum Sequencer ": 1 + "Tenth Grade Music: Delving into Song Structure with Cubase and Auto-Tune Technology": 1 + "Tenth Grade Music: Composing in Cubase: A Deep Dive into Chord Progressions": 1 + "Tenth Grade Music: Harnessing the Power of Looping in Cubase ": 1 + "Tenth Grade Music: Sound Design Basics in Cubase with Virtual Synthesis": 1 + "Tenth Grade Music: Exploring Cubase: Layering Sounds with Multi-Track Recording": 1 + "Tenth Grade Music: Improving Song Dynamics using Cubase and Audio Mixing Techniques": 1 + "Tenth Grade Music: Creating Unique Textures in Cubase with Sound Effects Plugins": 1 + "8th Grade Music: Exploring the Harpsichord’s Influence on Classical Music through Baroque Compositions": 1 + "8th Grade Music: The Impact of Pipe Organ and Church Modes on the Evolution of Classical Music": 1 + "8th Grade Music: The Role of Harpsichord in J.S. Bach’s Influence on Classical Music": 1 + "8th Grade Music: Understanding the Role of Harpsichord in the Transition from Baroque to Classical Music": 1 + "8th Grade Music: The Connection between Harpsichord, Church Modes and the Emergence of Sonata Form in Classical Music": 1 + "8th Grade Music: The Impact of Harpsichord and Gregorian Chant Modes on the Evolution of Classical Music": 1 + "8th Grade Music: Studying the Harpsichord’s Contribution to the Development of Orchestration in Classical Music": 1 + "8th Grade Music: The Role of Harpsichord and Modal Counterpoint in the Evolution of Classical Music": 1 + "8th Grade Music: The Influence of Harpsichord and Church Modes on the Classical Music’s Harmony Development": 1 + "8th Grade Music: The Role of Harpsichord and Church Modes in the Emergence of the Symphony in Classical Music": 1 + "5th Grade Mathematics: Boosting Multiplication Skills with Mathboard App and Digital Flashcards": 1 + "5th Grade Mathematics: Division Mastery using Mathboard App and Interactive Whiteboards": 1 + "5th Grade Mathematics: Multiplication and Division Enhancement with Mathboard App and Digital Worksheets": 1 + "5th Grade Mathematics: Applying Fractions in Multiplication and Division using Mathboard App": 1 + "5th Grade Mathematics: Enhancing Multiplication with Mathboard App and Augmented Reality": 1 + "5th Grade Mathematics: Division Proficiency using Mathboard App and Virtual Manipulatives": 1 + "5th Grade Mathematics: Boosting Multiplication and Division Skills using Mathboard App and Gamification Techniques": 1 + "5th Grade Mathematics: Division and Multiplication Enhancement through Mathboard App and Online Quizzes": 1 + "5th Grade Mathematics: Improving Multiplication with Mathboard App and Interactive Problem-Solving Techniques": 1 + "5th Grade Mathematics: Division Mastery using Mathboard App and Collaborative Online Platforms.": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques with Willow Sticks": 1 + "7th Grade Art: Exploring Charcoal Drawing Techniques Using Kneaded Erasers": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques: Focus on Shading": 1 + "7th Grade Art: Charcoal Drawing Techniques: Understanding Tonal Values": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques with Compressed Charcoal": 1 + "7th Grade Art: Mastering Charcoal Drawing Techniques: Using Blending Stumps": 1 + "7th Grade Art: Discovering Charcoal Drawing Techniques with Charcoal Pencils": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques: Emphasis on Hatching": 1 + "7th Grade Art: Charcoal Drawing Techniques: Exploring Cross-Hatching": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques: Experimenting with Charcoal Powder": 1 + "10th Grade Mathematics: Geometry - Understanding Shapes and Patterns through Pythagorean Theorem": 1 + "10th Grade Mathematics: Geometry - Exploring Shapes and Patterns with Euclidean Postulates": 1 + "10th Grade Mathematics: Geometry - Understanding Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Applying Trigonometry to Understand Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Understanding Shapes and Patterns using Geometric Proofs": 1 + "10th Grade Mathematics: Geometry - Interpreting Shapes and Patterns through Coordinate Geometry": 1 + "10th Grade Mathematics: Geometry - Mastering Shapes and Patterns with Geometric Transformations": 1 + "10th Grade Mathematics: Geometry - Understanding Shapes and Patterns through Polygon Properties": 1 + "10th Grade Mathematics: Geometry - Exploring Shapes and Patterns with 3D Modeling Software": 1 + "10th Grade Mathematics: Geometry - Applying Circle Theorems to Understand Shapes and Patterns": 1 + "6th Grade English: Basic Essay Writing with Microsoft Word": 1 + "6th Grade English: Developing Essays using Grammarly": 1 + "6th Grade English: Essay Construction with Google Docs": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques": 1 + "6th Grade English: Basic Essay Writing and the use of Thesaurus": 1 + "6th Grade English: Essay Writing with Citation Management": 1 + "6th Grade English: Basic Essay Writing using Text-to-Speech Tools": 1 + "6th Grade English: Essay Writing with the Aid of Digital Outlining": 1 + "6th Grade English: Basic Essay Writing using Hemingway Editor for Readability": 1 + "6th Grade English: Essay Writing with the Concept of Five-Paragraph Structure": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques with Spike Training": 1 + "8th Grade Physical Education: Developing Volleyball Skills through Serve Analysis Technology": 1 + "8th Grade Physical Education: Advanced Volleyball Techniques Using Jump Training Equipment": 1 + "8th Grade Physical Education: Enhancing Volleyball Form with Motion Capture Technology": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques - Focusing on Digging and Setting": 1 + "8th Grade Physical Education: Volleyball Mastery Through Plyometric Training": 1 + "8th Grade Physical Education: Perfecting Volleyball Strategy with Video Replay Analysis": 1 + "8th Grade Physical Education: Improving Volleyball Skills with Resistance Training Tools": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques Using Blocking Drills": 1 + "8th Grade Physical Education: Volleyball Skill Enhancement with Agility Ladder Drills": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums using Clapping Patterns ": 1 + "2nd Grade Music: Integrating Metronome in Exploring Rhythm with Bongo Drums": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums through Beat Sequencing Software ": 1 + "2nd Grade Music: Exploring Rhythm and Tempo with Bongo Drums": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums and Digital Recording ": 1 + "2nd Grade Music: Understanding Time Signatures with Bongo Drums in Rhythm Exploration": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums using Music Notation Software ": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums and Loop Stations ": 1 + "2nd Grade Music: Exploring Rhythm with Bongo Drums through Syncopation Techniques ": 1 + "2nd Grade Music: Utilizing Percussion Pads in Exploring Rhythm with Bongo Drums": 1 + "3rd Grade Environmental Science: Unveiling the Secrets of Photosynthesis Using Solar Energy Kits and Chlorophyll Test Strips.": 1 + "3rd Grade Environmental Science: Exploring Photosynthesis with Solar Energy Kits and Microscopic Cell Observation.": 1 + "3rd Grade Environmental Science: Understanding Photosynthesis Through Solar Energy Kits and CO2 Measurement Devices.": 1 + "3rd Grade Environmental Science: Discovering Photosynthesis Using Solar Energy Kits and Leaf Disk Assays.": 1 + "3rd Grade Environmental Science: Decoding Photosynthesis with Solar Energy Kits and Light Intensity Meters.": 1 + "3rd Grade Environmental Science: Investigating Photosynthesis Applying Solar Energy Kits and Plant Growth Observation Charts.": 1 + "3rd Grade Environmental Science: Studying Photosynthesis Using Solar Energy Kits and pH Testing Kits.": 1 + "3rd Grade Environmental Science: Revealing Photosynthesis Secrets with Solar Energy Kits and Temperature Monitoring Devices.": 1 + "3rd Grade Environmental Science: Learning Photosynthesis Through Solar Energy Kits and Moisture Measurement Tools.": 1 + "3rd Grade Environmental Science: Unpacking Photosynthesis with Solar Energy Kits and Color Spectrum Analysis.": 1 + "2nd Grade English: Adventure in Reading with Phonics": 1 + "2nd Grade English: Exploring Adventure Stories with E-Readers": 1 + "2nd Grade English: Adventure in Reading and Vocabulary Building": 1 + "2nd Grade English: Adventure in Reading with Interactive Whiteboards": 1 + "2nd Grade English: Adventure in Reading and Comprehension using Audiobooks": 1 + "2nd Grade English: Adventure in Reading and Writing with Digital Storytelling Tools": 1 + "2nd Grade English: Adventure in Reading using Virtual Reality ": 1 + "2nd Grade English: Adventure in Reading with Tablet Apps": 1 + "2nd Grade English: Adventure in Reading and Sentence Structure with Grammar Games": 1 + "2nd Grade English: Adventure in Reading and Spelling with Online Quizzes": 1 + "3rd Grade English: Exploring Adventure Stories through Character Analysis": 1 + "3rd Grade English: Adventure Stories and the Art of Plot Development": 1 + "3rd Grade English: Adventure Stories - Understanding Conflict and Resolution": 1 + "3rd Grade English: Adventure Stories - Utilizing Digital Storytelling Tools": 1 + "3rd Grade English: Adventure Stories and Vocabulary Enhancement": 1 + "3rd Grade English: Writing Adventure Stories Using Storyboarding": 1 + "3rd Grade English: Adventure Stories - Fostering Reading Comprehension with Interactive Ebooks": 1 + "3rd Grade English: Adventure Stories - Incorporating Text-to-Speech Technology": 1 + "3rd Grade English: Adventure Stories - Enhancing Creativity through Role-Playing": 1 + "3rd Grade English: Adventure Stories - Exploring Themes and Moral Lessons.": 1 + "5th Grade Science: Exploring Climate Change Impacts on Ecosystems using GIS Technology and Satellite Imagery": 1 + "5th Grade Science: Climate Change and Ecosystem Shifts - A Study using GIS Technology and Drone Mapping": 1 + "5th Grade Science: Investigating Ecosystems and Climate Change through GIS Technology and Land Surface Temperature Analysis": 1 + "5th Grade Science: Climate Change and Ecosystems - An Examination with GIS Technology and 3D Visualization Tools": 1 + "5th Grade Science: Climate Change and Ecosystems - A GIS Technology Study with Special Focus on Remote Sensing": 1 + "5th Grade Science: Climate Change and Ecosystems - A Study through the Lens of GIS Technology and Lidar Imaging": 1 + "5th Grade Science: Understanding Ecosystems and Climate Change through GIS Technology and Vegetation Index Analysis": 1 + "5th Grade Science: Climate Change and Ecosystems - A GIS Technology Study with Emphasis on Geospatial Analysis": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive using GIS Technology and Spatial Data Integration": 1 + "5th Grade Science: Climate Change and Ecosystems - A Study through GIS Technology and Multispectral Satellite Imagery.": 1 + "7th Grade English Language Arts: Unraveling Symbolism in William Blake’s Poetry Using Historical Context and Mind Maps": 1 + "7th Grade English Language Arts: Exploring Symbolism in Langston Hughes’ Poetry through the Prism of Historical Context with Padlet": 1 + "7th Grade English Language Arts: Decoding Symbolism in Emily Dickinson’s Poetry through Historical Context Using Google Docs": 1 + "7th Grade English Language Arts: Understanding Symbolism in Robert Frost’s Poetry through Historical Context with Smartboards": 1 + "7th Grade English Language Arts: Analyzing Symbolism in Maya Angelou’s Poetry using Historical Context and Microsoft Teams": 1 + "7th Grade English Language Arts: Interpreting Symbolism in Walt Whitman’s Poetry through Historical Context with Kahoot": 1 + "7th Grade English Language Arts: Deciphering Symbolism in Sylvia Plath’s Poetry through Historical Context and Interactive Whiteboards": 1 + "7th Grade English Language Arts: Breaking Down Symbolism in John Keats’ Poetry through Historical Context Using Quizlet": 1 + "7th Grade English Language Arts: Dissecting Symbolism in T.S. Eliot’s Poetry through the Lens of Historical Context with Prezi": 1 + "7th Grade English Language Arts: Unveiling Symbolism in Edgar Allan Poe’s Poetry through Historical Context Using Flipgrid.": 1 + "8th Grade Music: Understanding Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Logic Pro X Software": 1 + "8th Grade Music: Exploring Orchestration Principles in Classical Music with GarageBand MIDI Sequencers and Audacity Audio Editor": 1 + "8th Grade Music: Mastering Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and Pro Tools": 1 + "8th Grade Music: The Application of Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Reaper DAW": 1 + "8th Grade Music: Decoding Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Ableton Live": 1 + "8th Grade Music: An In-depth Study of Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and FL Studio": 1 + "8th Grade Music: Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and Cubase Software": 1 + "8th Grade Music: Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Reason DAW": 1 + "8th Grade Music: Integrating Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Sibelius Notation Software": 1 + "8th Grade Music: Exploring Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers and the Cakewalk by BandLab.": 1 + "6th Grade Mathematics: Mastering Fractions with the Aid of Abacus": 1 + "6th Grade Mathematics: Understanding Fractions through Number Lines": 1 + "6th Grade Mathematics: Introduction to Fractions using Fraction Bars": 1 + "6th Grade Mathematics: Simplifying Fractions with Digital Apps": 1 + "6th Grade Mathematics: Deciphering Fractions through Visual Models": 1 + "6th Grade Mathematics: Interactive Fraction Learning with Smartboard": 1 + "6th Grade Mathematics: Fraction Operations using Calculators": 1 + "6th Grade Mathematics: Fraction Comparison with Fraction Circles": 1 + "6th Grade Mathematics: Fraction Conversion using Interactive Worksheets": 1 + "6th Grade Mathematics: Introduction to Fractions through Real-life Examples": 1 + "7th Grade Introduction to Chemistry: An Exploration of Bunsen Burners": 1 + "7th Grade Introduction to Chemistry: Understanding the Role of Microscopes in Lab": 1 + "7th Grade Introduction to Chemistry: Discovering the Uses of Beakers": 1 + "7th Grade Introduction to Chemistry: A Dive Into Periodic Table Concepts": 1 + "7th Grade Introduction to Chemistry: Mastering the Pipettes": 1 + "7th Grade Introduction to Chemistry: Unveiling the Mystery of Test Tubes": 1 + "7th Grade Introduction to Chemistry: Grasping pH Measurement with Litmus Paper": 1 + "7th Grade Introduction to Chemistry: The Magic of Chemical Reactions": 1 + "7th Grade Introduction to Chemistry: The Significance of Safety Goggles in Lab": 1 + "7th Grade Introduction to Chemistry: The Science Behind Flasks.": 1 + "7th Grade History: Introduction to Ancient Egyptian Hieroglyphics": 1 + "7th Grade History: Exploring the Use of Bronze in Ancient Civilizations": 1 + "7th Grade History: The Impact of the Wheel in Ancient Civilizations": 1 + "7th Grade History: Ancient Greek Philosophy and its Influences": 1 + "7th Grade History: Understanding the Aqueducts of the Roman Empire": 1 + "7th Grade History: The Art of Warfare in Ancient Civilizations": 1 + "7th Grade History: The Role of Agriculture in Ancient Civilizations": 1 + "7th Grade History: Ancient Civilization’s Use of the Abacus": 1 + "7th Grade History: The Importance of the Printing Press in Ancient China": 1 + "7th Grade History: The Development of Medicine in Ancient Civilizations": 1 + "7th Grade History: Navigation Techniques of Ancient Seafaring Civilizations": 1 + "6th Grade Art: Understanding Color Theory and Mixing with Adobe Photoshop in Digital Art": 1 + "6th Grade Art: Using Procreate to Understand Color Theory and Mixing in Digital Art": 1 + "6th Grade Art: Exploring RGB and CMYK Color Models in Digital Art": 1 + "6th Grade Art: Mastering Color Theory and Mixing with Corel Painter in Digital Art": 1 + "6th Grade Art: Utilizing Graphic Tablets for Color Theory and Mixing in Digital Art": 1 + "6th Grade Art: Understanding Color Theory and Mixing Using Digital Brushes in Digital Art": 1 + "6th Grade Art: Applying Color Theory and Mixing with Wacom Tablet in Digital Art": 1 + "6th Grade Art: Learning Color Theory and Layer Blending Modes in Digital Art": 1 + "6th Grade Art: Grasping Color Theory and Mixing with Affinity Designer in Digital Art": 1 + "6th Grade Art: Understanding Color Theory and Mixing through Vector Graphics in Digital Art.": 1 + "1st Grade Music: Introduction to Harmony using the Glockenspiel": 1 + "Rhythm and Melody Fundamentals: An Introduction to Harmony with Hand Bells for 1st Graders": 1 + "1st Grade Music: Exploring Harmony with a Recorder": 1 + "Rhythm and Melody Fundamentals: An Introduction to Harmony with Boomwhackers for 1st Grade": 1 + "1st Grade Music: The Basics of Rhythm, Melody, and Harmony with a Xylophone": 1 + "Introduction to Harmony using Rhythm Sticks in 1st Grade Music": 1 + "1st Grade Music: Understanding Harmony through the Beat of Drums": 1 + "Rhythm and Melody Fundamentals: An Introduction to Harmony with a Piano for 1st Graders": 1 + "1st Grade Music: Discovering Harmony with the Use of a Tambourine": 1 + "Exploring Rhythm and Melody Fundamentals: An Introduction to Harmony with Maracas for 1st Grade.": 1 + "5th Grade Mathematics: Improving Multiplication Skills with Mathboard App and Augmented Reality Using iPads": 1 + "5th Grade Mathematics: Boosting Multiplication Accuracy with Mathboard App and VR Headsets": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication with Mathboard App and Augmented Reality on Android Devices": 1 + "5th Grade Mathematics: Enhancing Multiplication with Mathboard App, Augmented Reality, and Python Programming": 1 + "5th Grade Mathematics: Advanced Multiplication Techniques with Mathboard App and Augmented Reality on Smartboards": 1 + "5th Grade Mathematics: Understanding Multiplication Concepts with Mathboard App, Augmented Reality, and Smart Projectors": 1 + "5th Grade Mathematics: Fostering Multiplication Proficiency with Mathboard App, Augmented Reality, and SMART Notebook Software": 1 + "5th Grade Mathematics: Strengthening Multiplication with Mathboard App, Augmented Reality, and Interactive Whiteboard Tools": 1 + "5th Grade Mathematics: Developing Multiplication Skills with Mathboard App, Augmented Reality, and Algorithmic Thinking": 1 + "5th Grade Mathematics: Enhancing Multiplication with Mathboard App, Augmented Reality, and Gamification Techniques.": 1 + "4th Grade Language Arts: Adventuring Through Creative Writing with Story Maps": 1 + "4th Grade Language Arts: Exploring Creative Writing Using Google Docs": 1 + "4th Grade Language Arts: Navigating Creative Writing with Microsoft Word": 1 + "4th Grade Language Arts: Journey Through Creative Writing with Online Blogs": 1 + "4th Grade Language Arts: Delving into Creative Writing with Digital Storytelling": 1 + "4th Grade Language Arts: Discovering Creative Writing through Interactive Whiteboards": 1 + "4th Grade Language Arts: Venturing into Creative Writing using Language Apps": 1 + "4th Grade Language Arts: Unfolding Creative Writing with Grammarly": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools": 1 + "4th Grade Language Arts: Traversing Creative Writing with Text-to-Speech Software.": 1 + "Mastering Nutritional Labels with MyFitnessPal: A Comprehensive 9th Grade Physical Education Course on Nutrition, Dietary Fiber, and Meal Planning": 1 + "Utilizing Nutritional Label Scanner in 9th Grade Physical Education: A Course on Nutrition, Dietary Fiber, and Meal Planning": 1 + "9th Grade Physical Education Course: Mastering Nutrition and Dietary Fiber Concept in Meal Planning Using Fooducate": 1 + "Exploring Nutrition with MyPlate: 9th Grade Physical Education Course on Nutritional Labels and Dietary Fiber in Meal Planning": 1 + "9th Grade Physical Education Course: Nutrition, Dietary Fiber, and Meal Planning - A Deep Dive into the CalorieKing App": 1 + "The Science of Nutritional Labels: A 9th Grade Physical Education Course on Dietary Fiber, Meal Planning, and the Fitbit App": 1 + "Mastering Nutritional Labels via MyNetDiary: A 9th Grade Physical Education Course on Nutrition, Dietary Fiber, and Meal Planning": 1 + "The Nutritional Compass: Using Lose It! App in a 9th Grade Physical Education Course on Nutrition, Dietary Fiber, and Meal Planning": 1 + "9th Grade Physical Education Course: Exploring Nutrition, Dietary Fiber, and Meal Planning with the MyMacros+ App": 1 + "Nutrition and Dietary Fiber in Meal Planning: A 9th Grade Physical Education Course Utilizing the Lifesum App to Master Nutritional Labels.": 1 + "8th Grade Science: Exploring Histograms in Data Analysis using Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis using Pivot Tables in Microsoft Excel": 1 + "8th Grade Science: Leveraging VLOOKUP Function for Data Analysis in Microsoft Excel": 1 + "8th Grade Science: Data Analysis using Conditional Formatting in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas in Microsoft Excel": 1 + "8th Grade Science: Data Analysis with Pie Charts using Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis using Microsoft Excel and Power Query": 1 + "8th Grade Science: Data Analysis using Scatter Plots in Microsoft Excel": 1 + "8th Grade Science: Data Analysis and Visualization using Microsoft Excel’s 3D Maps": 1 + "8th Grade Science: Introduction to Data Analysis using Macros in Microsoft Excel": 1 + "4th Grade Language Arts: Exploring Rhyme Schemes in Poetry": 1 + "4th Grade Language Arts: Introduction to Poetry Using Metaphors": 1 + "4th Grade Language Arts: Poetry Analysis with the use of Simile": 1 + "4th Grade Language Arts: Understanding Imagery in Poetry": 1 + "4th Grade Language Arts: Introduction to Poetry and Alliteration": 1 + "4th Grade Language Arts: Poetry Writing with Personification": 1 + "4th Grade Language Arts: Exploring Poetry through Digital Tools": 1 + "4th Grade Language Arts: Introduction to Poetry: Focus on Onomatopoeia": 1 + "4th Grade Language Arts: Discovering Mood in Poetry": 1 + "4th Grade Language Arts: Poetry Analysis using Interactive Online Platforms": 1 + "7th Grade Art: Exploring Structure and Design with Clay Modeling": 1 + "7th Grade Art: Understanding Design using Adobe Illustrator": 1 + "7th Grade Art: Exploring Structure and Design through Watercolor Techniques": 1 + "7th Grade Art: Introduction to 3D Printing in Structure and Design": 1 + "7th Grade Art: Exploring Structure and Design with Acrylic Paints": 1 + "7th Grade Art: Exploring Structure and Design using Digital Art Tools": 1 + "7th Grade Art: Exploring Structure and Design: The Fundamentals of Sketching": 1 + "7th Grade Art: Understanding Structure and Design through Collage Making": 1 + "7th Grade Art: Exploring Structure and Design using Charcoal Drawing Techniques": 1 + "7th Grade Art: Exploring Structure and Design with Photography.": 1 + "3rd Grade English: Exploring Adjectives through Storytelling": 1 + "3rd Grade English: The Adventure of Adjectives using Interactive Grammar Games": 1 + "3rd Grade English: Discovering Adjectives with Digital Flashcards": 1 + "3rd Grade English: The Adventure of Adjectives through Interactive Whiteboards": 1 + "3rd Grade English: The Adventure of Adjectives: A Journey with Grammarly": 1 + "3rd Grade English: Learning Adjectives using iPad Applications": 1 + "3rd Grade English: The Adventure of Adjectives using Online Quizzes": 1 + "3rd Grade English: Unveiling Adjectives with VR Technology ": 1 + "3rd Grade English: The Adventure of Adjectives using SMART Boards": 1 + "3rd Grade English: The Adventure of Adjectives: A Dive into Google Classroom": 1 + "3rd Grade English: Mastering Adjectives with Educational Podcasts": 1 + "4th Grade History: Discovering the American Revolution through Maps": 1 + "4th Grade History: Unraveling the American Revolution with Timelines": 1 + "4th Grade History: Analyzing the American Revolution using Primary Sources": 1 + "4th Grade History: Exploring the American Revolution through Interactive Digital Content": 1 + "4th Grade History: Learning the American Revolution with Role Playing Games": 1 + "4th Grade History: Understanding the American Revolution through Virtual Reality Tours": 1 + "4th Grade History: Examining the American Revolution with 3D Printing Technology": 1 + "4th Grade History: Investigating the American Revolution via Augmented Reality Apps": 1 + "4th Grade History: Studying the American Revolution through Documentary Films": 1 + "4th Grade History: Navigating the American Revolution with Interactive Whiteboards": 1 + "3rd Grade Mathematics: Understanding Fractions with Number Lines": 1 + "3rd Grade Mathematics: Exploring Geometry in the Environment with Virtual Shapes": 1 + "3rd Grade Mathematics: Solving Environmental Word Problems using Calculator": 1 + "3rd Grade Mathematics: Identifying Numbers in the Environment with Augmented Reality": 1 + "3rd Grade Mathematics: Learning Multiplication through Number Patterns in Nature": 1 + "3rd Grade Mathematics: Applying Division Concepts through Environmental Examples": 1 + "3rd Grade Mathematics: Environmental Estimation and Rounding Techniques ": 1 + "3rd Grade Mathematics: Utilizing Technology for Environmental Math Puzzles": 1 + "3rd Grade Mathematics: Number Sequencing in the Environment with Interactive Tools": 1 + "3rd Grade Mathematics: Exploring Place Values in the Environment with Digital Flashcards": 1 + "8th Grade Language Arts: Mastering Persuasive Essays using Mindomo Mind Mapping Software": 1 + "8th Grade Language Arts: Developing Persuasive Essays through Inspiration Software’s Mind Mapping Tool": 1 + "8th Grade Language Arts: Exploring Persuasive Essays with XMind: ZEN Mind Mapping Software": 1 + "8th Grade Language Arts: Navigating Persuasive Essays using MindJet’s Mind Mapping Solutions": 1 + "8th Grade Language Arts: Unfolding Persuasive Essays through the use of Coggle Mind Mapping Tool": 1 + "8th Grade Language Arts: Understanding Persuasive Essays with MindMeister Mind Mapping Software": 1 + "8th Grade Language Arts: Crafting Persuasive Essays using Bubbl.us Mind Mapping Technology": 1 + "8th Grade Language Arts: Deconstructing Persuasive Essays through the use of MindGenius Software": 1 + "8th Grade Language Arts: Analyzing Persuasive Essays using Scapple Mind Mapping Software": 1 + "8th Grade Language Arts: Exploring Persuasive Essays with the aid of Lucidchart Mind Mapping Tool.": 1 + "6th Grade History: Understanding Pyramids - The Architectural Marvels of Ancient Egypt": 1 + "6th Grade History: Ancient Greek Architecture and the Concept of Doric Order": 1 + "6th Grade History: The Use of Pulleys in Roman Architecture": 1 + "6th Grade History: Ancient Mesopotamian Ziggurat Structures and their Significance": 1 + "6th Grade History: The Incan Stonework - A Study of Their Advanced Masonry Techniques": 1 + "6th Grade History: The Role of Astronomy in Ancient Mayan Architecture": 1 + "6th Grade History: Examining the Arch - A Keystone in Ancient Roman Architecture": 1 + "6th Grade History: Ancient Chinese Pagodas and the Use of Bracketing Systems": 1 + "6th Grade History: The Colossus of Rhodes - A Marvel of Ancient Greek Engineering": 1 + "6th Grade History: The Hanging Gardens of Babylon - An Exploration of Ancient Irrigation Techniques": 1 + "4th Grade History: Introduction to Ancient Mesopotamian Agriculture": 1 + "4th Grade History: The Wheel and Its Impact on Early Civilizations": 1 + "4th Grade History: The Pyramids - A Study of Ancient Egyptian Engineering": 1 + "4th Grade History: Roman Aqueducts - A Lesson in Ancient Infrastructure": 1 + "4th Grade History: Ancient Greek Philosophy and its Influence on Western Civilization": 1 + "4th Grade History: The Concept of Democracy in Ancient Athens": 1 + "4th Grade History: Bronze Age Metallurgy and Its Impact on Warfare": 1 + "4th Grade History: The Invention of Writing in Sumerian Civilization": 1 + "4th Grade History: The Role of Fire in Prehistoric Societies": 1 + "4th Grade History: Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: The Use of Iron in Celtic Societies": 1 + "9th Grade English: Exploring Shakespeare through Film Analysis": 1 + "9th Grade English: Shakespeare’s Plays in Digital Media": 1 + "9th Grade English: Understanding Shakespeare with Interactive eBooks": 1 + "9th Grade English: Shakespeare’s Sonnets - An Introductory Course using Audio Tools": 1 + "9th Grade English: Engaging with Shakespeare through Drama Workshops": 1 + "9th Grade English: Introduction to Shakespeare’s Tragedies using Virtual Reality": 1 + "9th Grade English: Analyzing Shakespeare with AI Language Processing": 1 + "9th Grade English: Shakespeare’s Comedies - A Study with Podcasts": 1 + "9th Grade English: Shakespeare’s Histories Explored through Animated Shorts": 1 + "9th Grade English: Shakespeare’s World - An Introduction via Augmented Reality": 1 + "7th Grade English Language Arts: Exploring Poetry through Personification using Metaphors": 1 + "7th Grade English Language Arts: Diving into Personification in Poetry with Digital Tools": 1 + "7th Grade English Language Arts: Understanding Personification in Poetry through Imagery": 1 + "7th Grade English Language Arts: Exploring the Art of Personification in Poetry using Interactive Whiteboards": 1 + "7th Grade English Language Arts: Enhancing Poetry Comprehension through Personification and Similes": 1 + "7th Grade English Language Arts: Studying Personification in Poetry with Audiovisual Aids": 1 + "7th Grade English Language Arts: Delving into Poetry through Personification and Hyperbole": 1 + "7th Grade English Language Arts: Discovering Personification in Poetry using Online Collaborative Platforms": 1 + "7th Grade English Language Arts: Mastering Personification in Poetry with PowerPoint Presentations": 1 + "7th Grade English Language Arts: A Deep Dive into Poetry’s Personification using E-Books.": 1 + "2nd Grade Social Studies: Exploring Local Community Traditions Using Google Expedition Augmented Reality": 1 + "2nd Grade Social Studies: Understanding Neighborhood Geography Through ARKit Augmented Reality Exploration": 1 + "2nd Grade Social Studies: Investigating Local History With ARCore Augmented Reality Resources": 1 + "2nd Grade Social Studies: Appreciating Local Architecture Utilizing Vuforia Engine’s Augmented Reality Tools": 1 + "2nd Grade Social Studies: Discovering Community Heroes With the Use of Wikitude’s Augmented Reality Exploration": 1 + "2nd Grade Social Studies: Local Community Appreciation Through Augmented Reality Exploration Using Snap Lens Studio": 1 + "2nd Grade Social Studies: Exploring Local Community Wildlife Through Unity3D Augmented Reality Software": 1 + "2nd Grade Social Studies: Augmented Reality Exploration of Local Art Using the ARToolKit": 1 + "2nd Grade Social Studies: Gaining a Deeper Understanding of Local Community Services Using Augmented Reality in EasyAR": 1 + "2nd Grade Social Studies: Local Community Appreciation Through Augmented Reality Exploration Using Microsoft’s Mixed Reality Toolkit.": 1 + "1st Grade Spanish: Babbel Guided Vocabulary Learning with Microsoft Teams Flashcards using Duolingo for Additional Practice": 1 + "1st Grade Spanish: Enhancing Vocabulary Learning with Babbel & Microsoft Teams Flashcards and Google Classroom Integration": 1 + "1st Grade Spanish: Babbel Guided Vocabulary Learning with Microsoft Teams Flashcards and Interactive Whiteboard Activities": 1 + "1st Grade Spanish: Comprehensive Vocabulary Learning with Babbel, Microsoft Teams Flashcards, and Quizlet Games": 1 + "1st Grade Spanish: Babbel and Microsoft Teams Flashcards Vocabulary Learning Incorporating Edpuzzle Video Lessons ": 1 + "1st Grade Spanish: Babbel Vocabulary Learning with Microsoft Teams Flashcards and Supplemental Rosetta Stone Exercises": 1 + "1st Grade Spanish: Babbel Guided Vocabulary Learning using Microsoft Teams Flashcards and Kahoot! Quizzes": 1 + "1st Grade Spanish: Babbel Vocabulary Learning with Microsoft Teams Flashcards Enhanced with Flipgrid Video Discussions": 1 + "1st Grade Spanish: Babbel Guided Vocabulary Learning, Microsoft Teams Flashcards, and Seesaw Student Driven Digital Portfolios": 1 + "1st Grade Spanish: Interactive Vocabulary Learning with Babbel, Microsoft Teams Flashcards, and Padlet Collaboration.": 1 + "10th Grade Science: Comprehensive Study of Cell Biology Using Microscopes ": 1 + "Introduction to Genetics: DNA Sequencing in 10th Grade Biology": 1 + "10th Grade Science: Exploring Photosynthesis with Spectrophotometry ": 1 + "Anatomy and Physiology: Dissection Techniques in 10th Grade Biology ": 1 + "Introduction to Biochemistry: Protein Synthesis in 10th Grade Science": 1 + "10th Grade Science: Study of Ecology and Environmental Sampling Techniques ": 1 + "Introduction to Evolution: Fossil Study in 10th Grade Biology": 1 + "10th Grade Science: In-Depth Look at Plant Biology with Hydroponics": 1 + "Bioinformatics: Genomic Data Analysis in 10th Grade Biology ": 1 + "10th Grade Science: Introduction to Biotechnology and Genetic Engineering": 1 + "9th Grade Social Studies: World War II - The Manhattan Project and the Rise of Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Enigma Machine and its Impact on Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Role of Radar Technology in Nuclear Warfare": 1 + "9th Grade Social Studies: World War II - Atomic Bomb and the Consequences of Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Influence of Sonar Technology on Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Evolution of Nuclear Power and the Role of Cryptography": 1 + "9th Grade Social Studies: World War II - The Impact of V-2 Rockets on the Development of Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Role of Jet Engines in the Evolution of Nuclear Power": 1 + "9th Grade Social Studies: World War II - Alan Turing’s Contributions to Nuclear Power": 1 + "9th Grade Social Studies: World War II - The Influence of Proximity Fuze on the Development of Nuclear Power": 1 + "10th Grade History: The Role of Printing Press in the American Revolution Era": 1 + "10th Grade History: Gunpowder and its Impact on the American Revolution Era": 1 + "10th Grade History: Naval Warfare Techniques during the American Revolution Era": 1 + "10th Grade History: The Influence of Enlightenment Ideals in the American Revolution Era": 1 + "10th Grade History: Economic Systems and the American Revolution Era": 1 + "10th Grade History: Espionage Techniques during the American Revolution Era": 1 + "10th Grade History: The Impact of Telegraphy on Communication in the American Revolution Era": 1 + "10th Grade History: The Role of Rifling in the American Revolution Era": 1 + "10th Grade History: The Influence of Cartography in the American Revolution Era": 1 + "10th Grade History: The Effect of Postal Systems on the American Revolution Era": 1 + "3rd Grade English: Exploring Storytelling Basics with Shadow Puppetry Techniques": 1 + "3rd Grade English: Storytelling Basics with Puppetry Techniques using DIY Sock Puppets": 1 + "3rd Grade English: Incorporating Digital Technology in Storytelling Basics with Puppetry Techniques": 1 + "3rd Grade English: Storytelling Basics with Paper Mache Puppetry Techniques": 1 + "3rd Grade English: Enhancing Storytelling Basics with Puppetry Techniques through Augmented Reality": 1 + "3rd Grade English: Storytelling Basics with Puppetry Techniques using Handmade Glove Puppets": 1 + "3rd Grade English: Exploring Folklore through Storytelling Basics with Marionette Puppetry Techniques": 1 + "3rd Grade English: Storytelling Basics with Puppetry Techniques using Stop-Motion Animation": 1 + "3rd Grade English: Enhancing Character Development in Storytelling Basics with Rod Puppetry Techniques": 1 + "3rd Grade English: Storytelling Basics with Puppetry Techniques and Voice Modulation Skills.": 1 + "4th Grade Basic Astronomy: Exploring the Night Sky with Star Maps and Telescopes": 1 + "4th Grade Basic Astronomy: Navigating the Night Sky with Star Maps and the Concept of Constellations": 1 + "4th Grade Basic Astronomy: Understanding the Night Sky with Star Maps and Planetarium Software": 1 + "4th Grade Basic Astronomy: Discovering the Night Sky using Star Maps and Digital Astronomy Applications": 1 + "4th Grade Basic Astronomy: Investigating the Night Sky with Star Maps and the H-R Diagram Concept": 1 + "4th Grade Basic Astronomy: Exploring the Night Sky with Star Maps, Binoculars and Moon Phases": 1 + "4th Grade Basic Astronomy: Journey Through the Night Sky with Star Maps and Celestial Sphere Concepts": 1 + "4th Grade Basic Astronomy: Mastering the Night Sky with Star Maps and the Use of Astronomical Coordinates": 1 + "4th Grade Basic Astronomy: Unlocking the Night Sky with Star Maps, Stellar Magnitude and Light Pollution Awareness": 1 + "4th Grade Basic Astronomy: Observing the Night Sky with Star Maps, Spectroscopes and Star Classification.": 1 + "3rd Grade Science: Understanding Photosynthesis in Plant Life": 1 + "3rd Grade Science: Exploring Plant Life through Microscopic Examination": 1 + "3rd Grade Science: Basics of Plant Life - A Study on Seed Germination ": 1 + "3rd Grade Science: Plant Life and the Importance of Sunlight ": 1 + "3rd Grade Science: Basics of Plant Life - Focusing on Cellular Respiration": 1 + "3rd Grade Science: Using Hydroponics in Studying Plant Life": 1 + "3rd Grade Science: Plant Life - An In-depth Study of Pollination": 1 + "3rd Grade Science: Basics of Plant Life - Investigating the Role of Water ": 1 + "3rd Grade Science: Plant Life and Chromatography Experiments": 1 + "3rd Grade Science: The Impact of Soil Types on Plant Life": 1 + "5th Grade Social Studies: Exploring Local Communities Through Maps": 1 + "5th Grade Social Studies: Understanding Local Communities Using Census Data": 1 + "5th Grade Social Studies: Analyzing Local Communities with GIS Technology": 1 + "5th Grade Social Studies: Investigating Local Communities Through Archival Research": 1 + "5th Grade Social Studies: Uncovering History of Local Communities with Oral Interviews": 1 + "5th Grade Social Studies: Examining Local Communities Through Field Trips": 1 + "5th Grade Social Studies: Understanding Local Communities Using Digital Storytelling": 1 + "5th Grade Social Studies: Studying Local Communities with Virtual Reality Tours": 1 + "5th Grade Social Studies: Discovering Local Communities Through Photography": 1 + "5th Grade Social Studies: Exploring Local Communities Using Social Media Surveys": 1 + "5th Grade Social Studies: Understanding Local Communities with Interactive Timelines": 1 + "11th Grade Physics: Exploring Newton’s Laws with Laboratory Experiments": 1 + "11th Grade Physics: Understanding Acceleration using Graphical Analysis Tools": 1 + "11th Grade Physics: Force Diagrams and the Science of Motion": 1 + "11th Grade Physics: Examining Trajectories with Projectile Motion Simulators": 1 + "11th Grade Physics: The Science of Motion using Smart Cart Technology": 1 + "11th Grade Physics: Delving into Dynamics using Force Sensors": 1 + "11th Grade Physics: The Science of Motion with Interactive Physics Simulations": 1 + "11th Grade Physics: Kinematics and Motion Analysis using Video Tracking ": 1 + "11th Grade Physics: The Science of Motion - A Deep Dive into Vectors": 1 + "11th Grade Physics: The Science of Motion - Understanding Friction through Experiments": 1 + "7th Grade Physical Education: Introduction to Tennis": 1 + "7th Grade Physical Education: Fundamentals of Swimming": 1 + "7th Grade Physical Education: Beginning Archery Techniques": 1 + "7th Grade Physical Education: Basics of Gymnastics Using Balance Beam": 1 + "7th Grade Physical Education: Track and Field Essentials ": 1 + "7th Grade Physical Education: Introduction to Badminton with Rackets": 1 + "7th Grade Physical Education: Starters Guide to Golf with Clubs": 1 + "7th Grade Physical Education: Kick-start to Kickboxing": 1 + "7th Grade Physical Education: Beginner’s Course in Fencing with Foils": 1 + "7th Grade Physical Education: Introduction to Table Tennis Using Ping-Pong Paddles": 1 + "5th Grade Language Arts: Mastering the Art of Storytelling & Power of Dialogue with Digital Storytelling Tools": 1 + "5th Grade Language Arts: Exploring Character Development in Storytelling and Dialogue using Plot Diagrams": 1 + "5th Grade Language Arts: The Art of Storytelling & Power of Dialogue through Interactive Whiteboards": 1 + "5th Grade Language Arts: Enhancing the Art of Storytelling and Dialogue with Podcasting Techniques": 1 + "5th Grade Language Arts: The Art of Storytelling & Power of Dialogue - A Focus on Foreshadowing": 1 + "5th Grade Language Arts: Utilizing Animation in the Art of Storytelling and Dialogue ": 1 + "5th Grade Language Arts: The Art of Storytelling & Power of Dialogue with Google Docs Collaboration ": 1 + "5th Grade Language Arts: Leveraging Narratives in the Art of Storytelling and Power of Dialogue": 1 + "5th Grade Language Arts: The Art of Storytelling & Power of Dialogue - A Study of Conflict Resolution": 1 + "5th Grade Language Arts: Exploring the Art of Storytelling and Power of Dialogue with Virtual Reality Technology": 1 + "8th Grade Physical Education: Advanced Swimming Techniques and the Science Behind Relay Races": 1 + "Physical Education for 8th Graders: Incorporating Stopwatches in Swimming Relay Races": 1 + "8th Grade PE: Understanding Water Resistance in Swimming and Relay Races": 1 + "Physical Education: The Role of Teamwork in 8th Grade Swimming Relay Races": 1 + "PE for 8th Graders: Exploring the Use of Swim Caps in Swimming and Relay Races": 1 + "8th Grade PE: A Deep Dive into the Physics of Swimming and Relay Races": 1 + "Physical Education: Mastering Flip Turns in 8th Grade Swimming Relay Races": 1 + "8th Grade Physical Education: Enhancing Swimming Speed and Efficiency in Relay Races": 1 + "PE for 8th Graders: Understanding the Role of Aerodynamics in Swimming Relay Races": 1 + "8th Grade PE: Learning the Proper Swimming Stroke Techniques for Successful Relay Races.": 1 + "Ancient Chinese Civilization: The Use of Fire, Chisel, and Pulley Systems in Constructing the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Implementation of Fire, Chisel, and Lever Technology in the Great Wall Construction for 6th Grade History": 1 + "Ancient Chinese Civilization: The Role of Fire, Chisel, and Scaffolding in Building the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: Exploring the Use of Fire, Chisel, and the Winch in the Making of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Contribution of Fire, Chisel, and the Stone Mallet in the Great Wall Construction for 6th Grade History": 1 + "Ancient Chinese Civilization: The Use of Fire, Chisel, and Bronze Drills in Erecting the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: Understanding the Use of Fire, Chisel, and the Archimedes Screw in the Formation of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Integration of Fire, Chisel, and Rope Knot Techniques in the Development of the Great Wall for 6th Grade History": 1 + "Ancient Chinese Civilization: The Influence of Fire, Chisel, and the Ancient Crane in the Great Wall Construction for 6th Grade History": 1 + "Ancient Chinese Civilization: The Application of Fire, Chisel, and the Wooden Wedge in the Construction of the Great Wall for 6th Grade History": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study": 1 + "Fifth Grade Science: Exploring Ecology Using Weather Measurement Tools": 1 + "Fifth Grade Science: Introduction to Ecology & Biodiversity with Binoculars": 1 + "Fifth Grade Science: Exploring the World of Ecology Through Plant Identification": 1 + "Fifth Grade Science: Introduction to Ecology Using pH Testing Kits": 1 + "Fifth Grade Science: Exploring Ecology Through Soil Analysis": 1 + "Fifth Grade Science: Introduction to Ecology with Field Trips": 1 + "Fifth Grade Science: Understanding Ecology Through Data Collection and Analysis": 1 + "Fifth Grade Science: Introduction to Ecology Utilizing Technology for Research": 1 + "Fifth Grade Science: Exploring Ecology and Ecosystems Using Digital Mapping Tools": 1 + "2nd Grade Mathematics: Learning Multiplication Tables with Lego Blocks and Flashcards": 1 + "2nd Grade Mathematics: Practical Multiplication with Lego Blocks and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Using Lego Blocks and Number Line for Multiplication": 1 + "2nd Grade Mathematics: Learning Multiplication with Lego Blocks and Digital Apps": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills with Lego Blocks and Abacus": 1 + "2nd Grade Mathematics: Practical Multiplication with Lego Blocks and Online Games": 1 + "2nd Grade Mathematics: Mastering Times Tables with Lego Blocks and Smartboard": 1 + "2nd Grade Mathematics: Multiplication Lessons with Lego Blocks and Projector": 1 + "2nd Grade Mathematics: Understanding Multiplication with Lego Blocks and Virtual Reality": 1 + "2nd Grade Mathematics: Practical Multiplication with Lego Blocks and Interactive Puzzles": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools using Storybird": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools focusing on Thesauruses ": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools exploring Grammarly": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools and the Integration of Mind Maps": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools using Wordle": 1 + "4th Grade Language Arts: Exploring Synonyms and Antonyms in Creative Writing Adventures with Vocabulary Building Tools": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools and the Use of Google Docs": 1 + "4th Grade Language Arts: Creative Writing Adventures with Flashcards as Vocabulary Building Tools": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools using Online Dictionaries": 1 + "4th Grade Language Arts: Creative Writing Adventures with Vocabulary Building Tools: An Introduction to Quizlet": 1 + "Revolutionary War Era: The Influence of Blacksmithing on Horse Equipment in 8th Grade History": 1 + "Revolutionary War Era: Understanding the Use of Horse-drawn Artillery in 8th Grade History": 1 + "Revolutionary War Era: The Impact of Veterinary Medicine on Horses in 8th Grade History": 1 + "Revolutionary War Era: Cavalry Tactics and the Role of Horses in 8th Grade History": 1 + "Revolutionary War Era: The Role of Horses in Communication and Message Delivery in 8th Grade History": 1 + "Revolutionary War Era: The Significance of Horse Breeds in 8th Grade History": 1 + "Revolutionary War Era: Exploring the Impact of Saddle Design During the Revolutionary War in 8th Grade History": 1 + "Revolutionary War Era: The Role of Horses in Military Supply Chains in 8th Grade History": 1 + "Revolutionary War Era: The Development of Horse Training Techniques in 8th Grade History": 1 + "Revolutionary War Era: How Horse Nutrition Influenced Military Strategies in 8th Grade History.": 1 + "Seventh Grade History: Utilizing Radiocarbon Dating in Exploring the Indus Valley Civilization through Ancient Pottery": 1 + "Seventh Grade History: Analysis of the Indus Valley Civilization using Pottery Wheel Techniques": 1 + "Seventh Grade History: The Use of Spectroscopy in Unearthing the Pottery Secrets of the Indus Valley Civilization": 1 + "Seventh Grade History: Deciphering the Indus Valley Civilization through Ancient Pottery and Hieroglyphics": 1 + "Seventh Grade History: Exploring the Indus Valley Civilization through Ancient Pottery and the Concept of Trade": 1 + "Seventh Grade History: The Role of Kilns in Understanding the Pottery of the Indus Valley Civilization": 1 + "Seventh Grade History: Understanding the Indus Valley Civilization through Ancient Pottery and Metallurgy": 1 + "Seventh Grade History: The Use of Stratigraphy in Studying the Indus Valley Civilization’s Pottery ": 1 + "Seventh Grade History: Exploring the Indus Valley Civilization through Ancient Pottery and the Concept of Social Hierarchy": 1 + "Seventh Grade History: Employing Archaeological Drones for a Deeper Insight into the Indus Valley Civilization’s Pottery": 1 + "1st Grade History: Exploring Local Heroes through Digital Storytelling": 1 + "1st Grade History: Learning About Local Heroes with Interactive Timelines": 1 + "1st Grade History: Understanding Local Heroes through Virtual Reality Tours": 1 + "1st Grade History: Unveiling Local Heroes using Augmented Reality": 1 + "1st Grade History: Discovering Local Heroes with Interactive Maps": 1 + "1st Grade History: Studying Local Heroes through Podcast Creation": 1 + "1st Grade History: Investigating Local Heroes using Online Archives": 1 + "1st Grade History: Learning About Local Heroes through WebQuests": 1 + "1st Grade History: Exploring Local Heroes using Animation Software": 1 + "1st Grade History: Delving into Local Heroes with Video Documentaries": 1 + "2nd Grade Environmental Studies: The Role of Drip Irrigation in the Plant Life Cycle": 1 + "Understanding the Importance of Hydroponics in Plant Life Cycle: 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: The Impact of Sprinkler Systems on Irrigation and Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Integrating Rainwater Harvesting in the Plant Life Cycle": 1 + "Exploring the Effect of Soil Moisture Sensors on Irrigation and Plant Life Cycle: A 2nd Grade Environmental Studies Course": 1 + "2nd Grade Environmental Studies: The Influence of Automated Irrigation Systems on the Plant Life Cycle": 1 + "Understanding the Role of Furrow Irrigation in the Plant Life Cycle: 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: The Impact of Center Pivot Irrigation on the Plant Life Cycle": 1 + "A Study on the Importance of Irrigation Timing and Plant Life Cycle: 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: Exploring the Effects of Water Conservation Techniques on Irrigation and Plant Life Cycle.": 1 + "5th Grade History: Exploring the Pyramids of Ancient Egypt through the Lens of Archaeology": 1 + "5th Grade History: Delving into Ancient Egyptian Pyramids with Ground-Penetrating Radar": 1 + "5th Grade History: Unveiling the Mysteries of the Pyramids of Ancient Egypt using Carbon Dating": 1 + "5th Grade History: The Role of Hieroglyphics in Understanding the Pyramids of Ancient Egypt": 1 + "5th Grade History: Using 3D Imaging to Explore the Pyramids of Ancient Egypt": 1 + "5th Grade History: Decoding Ancient Egypt: The Pyramids and the Rosetta Stone": 1 + "5th Grade History: The Pyramids of Ancient Egypt: A Study in Ancient Engineering": 1 + "5th Grade History: Virtual Reality Tours of the Pyramids of Ancient Egypt": 1 + "5th Grade History: Exploring the Pyramids of Ancient Egypt through the Science of Mummification": 1 + "5th Grade History: Satellite Mapping and the Pyramids of Ancient Egypt": 1 + "2nd Grade Mathematics: Mastering Addition Skills Using TouchMath Program and Interactive Whiteboards": 1 + "2nd Grade Mathematics: Enhancing Addition Skills with TouchMath Program and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Utilizing TouchMath Program and Smartboards for Addition Skills Development ": 1 + "2nd Grade Mathematics: Addition Skills Development with TouchMath Program and iPad Applications": 1 + "2nd Grade Mathematics: Strengthening Addition Skills with TouchMath Program and Gamified Learning Tools": 1 + "2nd Grade Mathematics: TouchMath Program and Digital Flashcards for Advanced Addition Skills": 1 + "2nd Grade Mathematics: Addition Skills Boost with TouchMath Program and Adaptive Learning Software": 1 + "2nd Grade Mathematics: Building Addition Skills with TouchMath Program and Online Quizzes": 1 + "2nd Grade Mathematics: TouchMath Program and Virtual Reality for Immersive Addition Skills Development": 1 + "2nd Grade Mathematics: Empowering Addition Skills through TouchMath Program and Collaborative Online Platforms": 1 + "1st Grade Science: Introduction to Plant Life through Microscopy": 1 + "1st Grade Science: Exploring Plant Life with Dissection Tools": 1 + "1st Grade Science: Understanding Plant Life via Photosynthesis": 1 + "1st Grade Science: Observing Plant Life with Hand Lens": 1 + "1st Grade Science: Introduction to Plant Life and Cellular Structures": 1 + "1st Grade Science: Plant Life Exploration using Digital Microscopes": 1 + "1st Grade Science: Discovering Plant Life through Growth Experiments": 1 + "1st Grade Science: Plant Life and Seed Germination Study": 1 + "1st Grade Science: Introduction to Plant Life with Hydroponics": 1 + "1st Grade Science: Learning Plant Life through Botanical Illustration": 1 + "4th Grade Science: Exploring Earth’s Biomes with NASA’s Landsat Satellite Imagery": 1 + "4th Grade Science: Mapping Earth’s Biomes Using Google Earth Satellite Technology": 1 + "4th Grade Science: Investigating Earth’s Biomes Utilizing Satellite Imagery and GIS Tools": 1 + "4th Grade Science: Analyzing Earth’s Biomes Using Satellite Imagery and Thermography Techniques": 1 + "4th Grade Science: Discovering Earth’s Biomes Through Infrared Satellite Imaging": 1 + "4th Grade Science: Studying Earth’s Biomes with Satellite Imagery and Climate Modelling": 1 + "4th Grade Science: Earth’s Biomes Exploration Using Satellite Imagery and Spectral Analysis": 1 + "4th Grade Science: Understanding Earth’s Biomes Through Satellite Imagery and Remote Sensing Technology": 1 + "4th Grade Science: Exploring Earth’s Biomes Using Satellite Imagery and Radiometric Calibration": 1 + "4th Grade Science: Earth’s Biomes Discovery Using Satellite Imagery and Machine Learning Algorithms.": 1 + "2nd Grade Language Arts: Learning Nouns and Verbs through Animated Videos with Adobe Animate": 1 + "2nd Grade Language Arts: Exploring Adjectives and Adverbs using Animated Videos and Graphic Tablets": 1 + "2nd Grade Language Arts: Understanding Sentence Structure through Animated Videos and Interactive Whiteboards": 1 + "2nd Grade Language Arts: Enhancing Grammar Skills through Animated Videos using Flash Animation": 1 + "2nd Grade Language Arts: Interactive Grammar Learning with Animated Videos and Smart Boards": 1 + "2nd Grade Language Arts: Learning Pronouns through Animated Videos using Digital Art Software": 1 + "2nd Grade Language Arts: Mastering Prepositions with Animated Videos and Touch-Screen Technology": 1 + "2nd Grade Language Arts: Discovering Conjunctions through Animated Videos using Animation Software": 1 + "2nd Grade Language Arts: Understanding Grammar through Stop Motion Animated Videos ": 1 + "2nd Grade Language Arts: Improving Punctuation Skills through Animated Videos using Digital Animation Tools": 1 + "1st Grade Science: Exploring the Wonders of Weather with a Rain Gauge": 1 + "1st Grade Science: The Wonders of Weather: Understanding Cloud Formations": 1 + "1st Grade Science: Studying Weather Patterns with a Barometer": 1 + "1st Grade Science: The Wonders of Weather: Introduction to Meteorology": 1 + "1st Grade Science: The Wonders of Weather: Exploring the Wind with Anemometers": 1 + "1st Grade Science: The Wonders of Weather: Understanding the Water Cycle": 1 + "1st Grade Science: The Wonders of Weather: Discovering Weather Maps": 1 + "1st Grade Science: Exploring the Wonders of Weather with a Thermometer": 1 + "1st Grade Science: The Wonders of Weather: Learning about Climate Zones": 1 + "1st Grade Science: The Wonders of Weather: The Impact of Weather on Ecosystems": 1 + "5th Grade Science: Exploring Weather Systems with an Anemometer in Weather Stations": 1 + "5th Grade Science: Probing Weather Systems with Thermometers in Weather Stations": 1 + "5th Grade Science: Analyzing Weather Systems with Barometers in Weather Stations": 1 + "5th Grade Science: Examining Weather Systems with Hygrometers in Weather Stations": 1 + "5th Grade Science: Understanding Weather Systems with Weather Balloons in Weather Stations": 1 + "5th Grade Science: Studying Weather Systems with Weather Radars in Weather Stations": 1 + "5th Grade Science: Investigating Weather Systems with Weather Satellites in Weather Stations": 1 + "5th Grade Science: Exploring Weather Systems with Rain Gauges in Weather Stations": 1 + "5th Grade Science: Probing Weather Systems with the Concept of Atmospheric Pressure in Weather Stations": 1 + "5th Grade Science: Examining Weather Systems with the Concept of Climate Zones in Weather Stations": 1 + "6th Grade Physical Education: Fundamental Sports Skills with Basketball Dribbling Techniques": 1 + "6th Grade Physical Education: Fundamental Sports Skills featuring Soccer Passing Drills": 1 + "6th Grade Physical Education: Fundamental Sports Skills using Jump Ropes for Speed and Agility": 1 + "6th Grade Physical Education: Fundamental Sports Skills - Baseball Batting Techniques": 1 + "6th Grade Physical Education: Fundamental Sports Skills and Fitness Tracking Tech": 1 + "6th Grade Physical Education: Fundamental Sports Skills with Volleyball Serving Drills": 1 + "6th Grade Physical Education: Fundamental Sports Skills - Tennis Racket Gripping Techniques": 1 + "6th Grade Physical Education: Fundamental Sports Skills using Resistance Bands for Strength Training": 1 + "6th Grade Physical Education: Fundamental Sports Skills - Football Throwing Mechanics": 1 + "6th Grade Physical Education: Fundamental Sports Skills and the Concept of Teamwork": 1 + "8th Grade Social Studies: The Role and Evolution of Democracy through the Lens of the Printing Press ": 1 + "8th Grade Social Studies: Examining the Influence of the Telegraph on the Evolution of Democracy": 1 + "8th Grade Social Studies: The Effect of the Internet on Democracy’s Progression and Role": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution: A Focus on Television Broadcasting": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution through the Perspective of Social Media": 1 + "8th Grade Social Studies: The Evolution of Democracy and the Impact of the Postal Service": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution, Understanding the Influence of the Radio": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution in the Age of Satellites": 1 + "8th Grade Social Studies: Understanding Democracy’s Evolution through the Impact of Newspapers": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution: Exploring the Impact of the Telephone.": 1 + "9th Grade Biology: Unveiling Genetics Through DNA Sequencing": 1 + "9th Grade Biology: Exploring Genetics Using PCR Technology": 1 + "9th Grade Biology: Genetics and the Role of CRISPR-Cas9": 1 + "9th Grade Biology: Understanding Genetics Through Gel Electrophoresis": 1 + "9th Grade Biology: A Deep Dive into Genetics with Microscopy": 1 + "9th Grade Biology: Unveiling Genetics Through Genomic Databases": 1 + "9th Grade Biology: Exploring Genetics with Bioinformatics": 1 + "9th Grade Biology: Genetics and the Power of Cloning": 1 + "9th Grade Biology: Unraveling Genetics Using Genetic Engineering": 1 + "9th Grade Biology: Understanding Genetics Through Genotype and Phenotype Analysis": 1 + "4th Grade Mathematics: Using Measuring Cups in Fraction-based Cooking": 1 + "4th Grade Mathematics: Fraction Calculations in Cooking with Digital Scales": 1 + "4th Grade Mathematics: Understanding Fraction Conversions in Baking": 1 + "4th Grade Mathematics: Exploring Fractions in Cooking with Kitchen Timers": 1 + "4th Grade Mathematics: Fractional Measurements in Cooking with Food Processors": 1 + "4th Grade Mathematics: Using Fractional Increments in Oven Temperatures": 1 + "4th Grade Mathematics: Fractions in Cooking with Microwaves: Wattage and Time": 1 + "4th Grade Mathematics: Fractional Equivalents in Cooking with Mixers": 1 + "4th Grade Mathematics: Applying Fractions in Cooking with Thermometers": 1 + "4th Grade Mathematics: Fraction Concepts in Cooking with Electric Griddles.": 1 + "7th Grade History: The Role of the Pottery Wheel in Ancient Mesopotamian Civilization": 1 + "7th Grade History: The Influence of the Water Wheel on Ancient Roman Infrastructure": 1 + "7th Grade History: The Impact of the Chariot Wheel in Ancient Egyptian Warfare": 1 + "7th Grade History: The Development and Use of the Spoked Wheel in Ancient Chinese Civilization": 1 + "7th Grade History: The Advancement of the Wheel and Axle in Ancient Greek Technology": 1 + "7th Grade History: The Evolution of the Wheel and its Influence on Ancient Indian Trade Routes": 1 + "7th Grade History: The Impact of the Wheel on the Construction Techniques of Ancient Sumerians": 1 + "7th Grade History: Exploring the Influence of the Wheel in Ancient Celtic Art and Symbolism": 1 + "7th Grade History: The Wheel’s Role in Ancient Persian Transportation and Logistics": 1 + "7th Grade History: The Effect of the Wheel on Agriculture and Farming in Ancient European Civilizations": 1 + "10th Grade Art: Mastering the ArtRage’s Oil Brush Tool with the Wacom Graphic Tablet ": 1 + "10th Grade Art: Exploring Digital Art with ArtRage’s Oil Brush Tool & Adobe Photoshop": 1 + "10th Grade Art: Incorporating 3D Modeling in ArtRage with Oil Brush Tool": 1 + "10th Grade Art: Enhancing Digital Art using ArtRage’s Oil Brush Tool & Corel Painter": 1 + "10th Grade Art: Utilizing Layering Techniques with ArtRage’s Oil Brush Tool": 1 + "10th Grade Art: Combining ArtRage’s Oil Brush Tool and Digital Collage Techniques ": 1 + "10th Grade Art: Exploring Digital Art with ArtRage’s Oil Brush Tool & Apple iPad Pro": 1 + "10th Grade Art: Integrating ArtRage’s Oil Brush Tool with Digital Art Animation": 1 + "10th Grade Art: Implementing Color Theory with ArtRage’s Oil Brush Tool ": 1 + "10th Grade Art: Exploring Digital Art using ArtRage’s Oil Brush Tool & Microsoft Surface Studio": 1 + "9th Grade Social Studies: Exploring World Cultures through Maps": 1 + "9th Grade Social Studies: Understanding Global Cultures using Digital Media": 1 + "9th Grade Social Studies: Exploring World Cultures with Anthropological Tools": 1 + "9th Grade Social Studies: Investigating World Cultures through Historical Documents": 1 + "9th Grade Social Studies: Exploring World Cultures and Religions using Interactive Software": 1 + "9th Grade Social Studies: A Deep Dive into World Cultures with Virtual Reality": 1 + "9th Grade Social Studies: Studying World Cultures through the Lens of Sociology": 1 + "9th Grade Social Studies: Exploring World Cultures using Geographic Information Systems": 1 + "9th Grade Social Studies: Understanding World Cultures through Film and Media Studies": 1 + "9th Grade Social Studies: Exploring World Cultures with Archaeological Artifacts.": 1 + "1st Grade Music: Exploring Rhythm and Melody with Hand Drums": 1 + "1st Grade Music: Introduction to Rhythm and Melody Using Interactive Music Apps": 1 + "1st Grade Music: Discovering Melody Through the Keyboard ": 1 + "1st Grade Music: Understanding Rhythm with Metronomes": 1 + "1st Grade Music: Introduction to Rhythm and Melody Using the Xylophone": 1 + "1st Grade Music: Exploring Rhythm and Melody Through Percussion Instruments": 1 + "1st Grade Music: Understanding Rhythm and Melody with Music Software": 1 + "1st Grade Music: Discovering Rhythm and Melody using Digital Audio Workstations": 1 + "1st Grade Music: Introduction to Rhythm and Melody Using the Recorder ": 1 + "1st Grade Music: Exploring Melody with the Ukulele.": 1 + "2nd Grade Music: Learning The Rhythm of Notes and Melodies with a Tambourine through Interactive Software": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies with a Tambourine and Metronome": 1 + "2nd Grade Music: Understanding The Rhythm of Notes and Melodies using a Tambourine and Beat Sequencer": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies with a Tambourine and Digital Audio Workstations": 1 + "2nd Grade Music: Mastering Tambourine Rhythms with the Kodály Method": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies with a Tambourine and Music Notation Software": 1 + "2nd Grade Music: Discovering The Rhythm of Notes and Melodies with a Tambourine and Rhythm Flashcards": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies using a Tambourine and Online Music Games": 1 + "2nd Grade Music: Enhancing Musical Rhythm with a Tambourine and Orff Approach": 1 + "2nd Grade Music: Exploring The Rhythm of Notes and Melodies with a Tambourine and Interactive Whiteboard Technology.": 1 + "4th Grade Science: Exploring Basic Principles of Ecology with Microscope Lab Experiments": 1 + "4th Grade Science: Unveiling Ecology’s Secrets through pH Meter Lab Experiments": 1 + "4th Grade Science: Learning Ecology Fundamentals using Spectrophotometer Lab Experiments": 1 + "4th Grade Science: Understanding Ecology with Soil Testing Kit Lab Experiments": 1 + "4th Grade Science: Investigating Ecology using Chromatography Lab Experiments": 1 + "4th Grade Science: Digging Deeper into Ecology with Weather Station Lab Experiments": 1 + "4th Grade Science: Unpacking Ecology using Light Meter Lab Experiments": 1 + "4th Grade Science: Basic Principles of Ecology Explored through DNA Sequencing Lab Experiments": 1 + "4th Grade Science: A Closer Look at Ecology with Quadrat Sampling Lab Experiments": 1 + "4th Grade Science: Discovering Ecology Using Binoculars for Bird-Watching Lab Experiments": 1 + "1st Grade Science: Exploring Weather Patterns with a Thermometer: Understanding Tropical Climate Zones": 1 + "1st Grade Science: The Wonders of Weather: Learning about Polar Climate Zones through Satellite Images": 1 + "1st Grade Science: Discovering Climate Zones using Weather Balloons: Exploring Temperate Climates": 1 + "1st Grade Science: The Wonders of Weather: A Deep Dive into Oceanic Climate Zones with Hydrometers": 1 + "1st Grade Science: The Wonders of Weather: Learning about Desert Climate Zones using Humidity Sensors": 1 + "1st Grade Science: Unveiling Weather Mysteries: Understanding Mediterranean Climate Zones with the Help of Weather Stations": 1 + "1st Grade Science: The Wonders of Weather: Learning about Continental Climate Zones with Wind Vanes": 1 + "1st Grade Science: The Wonders of Weather: A Study of Subpolar Climate Zones Using Weather Maps": 1 + "1st Grade Science: The Wonders of Weather: Learning about Highland Climate Zones with Barometers": 1 + "1st Grade Science: The Wonders of Weather: Exploring the Subtropical Climate Zones with Rain Gauges": 1 + "3rd Grade English: Exploring Metaphors in Prose and Poetry": 1 + "3rd Grade English: Understanding Similes in Prose and Poetry": 1 + "3rd Grade English: Studying Imagery in Prose and Poetry with Interactive Worksheets": 1 + "3rd Grade English: Utilizing Digital Tools for Analysis of Prose and Poetry": 1 + "3rd Grade English: Introduction to Prose and Poetry through Story Mapping": 1 + "3rd Grade English: Analyzing Character Development in Prose and Poetry": 1 + "3rd Grade English: Introduction to Prose and Poetry with Flashcards": 1 + "3rd Grade English: Mastering Rhyme Schemes in Poetry and Prose": 1 + "3rd Grade English: Exploring Prose and Poetry through Online Games": 1 + "3rd Grade English: Learning Narrative Structures in Prose and Poetry": 1 + "3rd Grade English: Introduction to Prose and Poetry with E-books and Interactive Quizzes.": 1 + "Kindergarten Social Studies: Exploring the Role of Firefighters and their Fire Trucks": 1 + "Kindergarten Social Studies: Understanding Police Officers and their Use of Two-way Radios": 1 + "Kindergarten Social Studies: Discovering Chefs and the Art of Cooking with Kitchen Tools": 1 + "Kindergarten Social Studies: Learning About Doctors and the Stethoscope": 1 + "Kindergarten Social Studies: Delving into the World of Construction Workers and Cranes": 1 + "Kindergarten Social Studies: Meeting Librarians and the Dewey Decimal System": 1 + "Kindergarten Social Studies: Introduction to Farmers and Farming Equipment": 1 + "Kindergarten Social Studies: Journey into the Lives of Postmen and Postal Sorting Machines": 1 + "Kindergarten Social Studies: Uncovering the Work of Teachers and Smartboards ": 1 + "Kindergarten Social Studies: Insight into the Life of a Pilot and Airplane Navigation Systems": 1 + "7th Grade Music: Exploring Beethoven’s Symphonies Through Piano": 1 + "7th Grade Music: Introduction to Classical Composers using Music Software": 1 + "7th Grade Music: Studying Mozart with Digital Sheet Music": 1 + "7th Grade Music: Introduction to Classical Composers and Violin Techniques": 1 + "7th Grade Music: Analysing Bach’s Cantatas with Music Theory": 1 + "7th Grade Music: Introduction to Classical Composers - A Focus on Harpsichord": 1 + "7th Grade Music: Exploring Chopin through Piano Transcriptions": 1 + "7th Grade Music: Introduction to Classical Composers through Choral Techniques": 1 + "7th Grade Music: Understanding Haydn’s Quartets with String Instruments": 1 + "7th Grade Music: Introduction to Classical Composers - The Art of Conducting.": 1 + "Kindergarten Health and Wellness: Using Antibacterial Soap in Handwashing Techniques for Better Hygiene": 1 + "Kindergarten Health and Wellness: Implementing Hand Sanitizer Use in Handwashing Techniques for Improved Hygiene": 1 + "Kindergarten Health and Wellness: Application of Automatic Hand Dryers for Enhanced Handwashing Hygiene": 1 + "Kindergarten Health and Wellness: Implementing UV Light Sanitation in Handwashing Techniques for Increased Hygiene": 1 + "Kindergarten Health and Wellness: Employing Color Changing Soap in Handwashing Techniques for Effective Hygiene Monitoring ": 1 + "Kindergarten Health and Wellness: Incorporating Hygiene Education Apps in Teaching Handwashing Techniques": 1 + "Kindergarten Health and Wellness: Using Touchless Faucets in Handwashing Techniques for Optimal Hygiene": 1 + "Kindergarten Health and Wellness: Implementing Thermochromic Stickers in Handwashing Techniques for Hygiene Verification": 1 + "Kindergarten Health and Wellness: Applying the ’Glow Germ’ Concept in Teaching Handwashing Techniques for Improved Hygiene ": 1 + "Kindergarten Health and Wellness: Implementing the Use of Moisturizing Handwash for Child-friendly Hygiene Techniques": 1 + "4th Grade Art: Exploring the Colors of the Rainbow with Watercolors": 1 + "4th Grade Art: The Colors of the Rainbow through Acrylic Paint": 1 + "4th Grade Art: Rainbow Colors and the Use of Pastels": 1 + "4th Grade Art: Grasping the Rainbow Colors with Oil Paints": 1 + "4th Grade Art: The Colors of the Rainbow: A Study in Charcoal": 1 + "4th Grade Art: The Colors of the Rainbow in Digital Art": 1 + "4th Grade Art: The Colors of the Rainbow: An Introduction to Color Theory": 1 + "4th Grade Art: The Colors of the Rainbow with Colored Pencils": 1 + "4th Grade Art: The Colors of the Rainbow and the Use of Gouache": 1 + "4th Grade Art: The Colors of the Rainbow: Understanding Color Mixing": 1 + "3rd Grade Mathematics: Exploring Multiplication with Number Lines": 1 + "3rd Grade Mathematics: Mastering Division using Long Division Method": 1 + "Advanced 3rd Grade Mathematics: Multiplication and Division with Visual Models": 1 + "3rd Grade Mathematics: Understanding Multiplication using Area Models": 1 + "3rd Grade Mathematics: Division Mastery with Repeated Subtraction": 1 + "3rd Grade Mathematics: Enhancing Multiplication Skills using Grid Method": 1 + "In-depth 3rd Grade Mathematics: Division Techniques using Partitioning": 1 + "3rd Grade Mathematics: Multiplication Mastery with Times Tables": 1 + "Interactive 3rd Grade Mathematics: Division Strategies using Digital Tools": 1 + "3rd Grade Mathematics: Multiplication and Division Enhanced with Math Apps": 1 + "3rd Grade Geography: Exploring World Continents and Oceans with Google Earth": 1 + "3rd Grade Geography: Learning World Continents and Oceans using Digital Interactive Maps": 1 + "3rd Grade Geography: World Continents and Oceans through Satellite Imagery ": 1 + "3rd Grade Geography: Introduction to Cartography - World Continents and Oceans ": 1 + "3rd Grade Geography: World Continents and Oceans - An Insight into GPS Technology ": 1 + "3rd Grade Geography: Navigating World Continents and Oceans using Compass ": 1 + "3rd Grade Geography: World Continents and Oceans - A Deep Dive into Topographic Maps ": 1 + "3rd Grade Geography: Understanding World Continents and Oceans with 3D Modeling ": 1 + "3rd Grade Geography: World Continents and Oceans - A Journey with Virtual Reality ": 1 + "3rd Grade Geography: Exploring World Continents and Oceans - A Guide to Geographic Information Systems (GIS)": 1 + "7th Grade Music: Introduction to Rhythm with Metronome": 1 + "7th Grade Music: Understanding Melody using Piano": 1 + "7th Grade Music: Exploring Rhythm with Drum Machines": 1 + "7th Grade Music: Basics of Melody through Digital Audio Workstations": 1 + "7th Grade Music: Rhythm Fundamentals with Beat Making Software": 1 + "7th Grade Music: Melody Mastery using Music Notation Software": 1 + "7th Grade Music: Rhythm Basics through Loop Pedals": 1 + "7th Grade Music: Concept of Melody with MIDI Controllers": 1 + "7th Grade Music: Rhythm Introduction using Music Production Software": 1 + "7th Grade Music: Melody Essentials with Synthesizers": 1 + "1st Grade Language Arts: Learning the Alphabet Adventure through Interactive Storytelling": 1 + "1st Grade Language Arts: The Alphabet Adventure with Digital Flashcards": 1 + "1st Grade Language Arts: The Alphabet Adventure and Phonics Enhancement": 1 + "1st Grade Language Arts: Exploring the Alphabet Adventure Using Augmented Reality": 1 + "1st Grade Language Arts: The Alphabet Adventure with Online Games": 1 + "1st Grade Language Arts: The Alphabet Adventure - Understanding Phonemes": 1 + "1st Grade Language Arts: The Alphabet Adventure Utilizing Text-to-Speech Technology": 1 + "1st Grade Language Arts: The Alphabet Adventure - A Journey with E-Books": 1 + "1st Grade Language Arts: The Alphabet Adventure on Interactive Whiteboards": 1 + "1st Grade Language Arts: The Alphabet Adventure with Animation and Sound Effects": 1 + "6th Grade Science: Discovering Botany with Microscopes": 1 + "6th Grade Science: Exploring Ecosystems through Virtual Reality": 1 + "6th Grade Science: Understanding Animal Physiology with Dissections": 1 + "6th Grade Science: Learning about Plant Biology through Time-Lapse Photography": 1 + "6th Grade Science: Investigating Animal Behavior with Video Analysis": 1 + "6th Grade Science: Exploring Plant and Animal Cells with Microscopic Imaging": 1 + "6th Grade Science: Studying Animal Adaptations with DNA Sequencing": 1 + "6th Grade Science: Exploring Plant Genetics with Punnett Squares": 1 + "6th Grade Science: Discovering Animal Migration with Satellite Tagging": 1 + "6th Grade Science: Understanding Plant Growth with Hydroponics Technology.": 1 + "2nd Grade Language Arts: Enhancing Sentence Structures using Quizlet Digital Flashcards, Google Classroom Integration, and Kahoot! Learning Games": 1 + "2nd Grade Language Arts: Strengthening Sentence Structures with Quizlet Digital Flashcards, Google Classroom, and Padlet Discussion Boards": 1 + "2nd Grade Language Arts: Augmenting Sentence Structures utilizing Quizlet Flashcards, Google Classroom, and Nearpod Interactive Lessons": 1 + "2nd Grade Language Arts: Boosting Sentence Structures via Quizlet Digital Flashcards, Google Classroom Integration, and Flipgrid Video Responses": 1 + "2nd Grade Language Arts: Advancing Sentence Structures with Quizlet Digital Flashcards, Google Classroom, and Seesaw Student Driven Digital Portfolios": 1 + "2nd Grade Language Arts: Refining Sentence Structures using Quizlet Digital Flashcards, Google Classroom Integration, and Edpuzzle Video Lessons": 1 + "2nd Grade Language Arts: Optimizing Sentence Structures through Quizlet Digital Flashcards, Google Classroom, and Pear Deck Interactive Slides": 1 + "2nd Grade Language Arts: Improving Sentence Structures via Quizlet Flashcards, Google Classroom, and Socrative Student Response System": 1 + "2nd Grade Language Arts: Ameliorating Sentence Structures using Quizlet Digital Flashcards, Google Classroom Integration, and Glogster Multimedia Posters": 1 + "2nd Grade Language Arts: Elevating Sentence Structures with Quizlet Digital Flashcards, Google Classroom, and Quizizz Learning Platform.": 1 + "3rd Grade Science: Exploring the Life Cycle of a Butterfly using Oculus Rift Virtual Reality ": 1 + "3rd Grade Science: Detailed Study of a Butterfly’s Life Cycle through Augmented Reality Technology": 1 + "3rd Grade Science: Butterfly Metamorphosis Observed with Virtual Reality and 3D Modelling": 1 + "3rd Grade Science: Investigating the Butterfly Life Cycle using VR and Interactive Digital Whiteboards": 1 + "3rd Grade Science: Life Cycle of a Butterfly Observed through Virtual Reality with the aid of Haptic Feedback Technology": 1 + "3rd Grade Science: Butterfly Life Cycle Study using Virtual Reality and Google Cardboard": 1 + "3rd Grade Science: Life Cycle of a Butterfly Exploration with Microsoft HoloLens and Virtual Reality": 1 + "3rd Grade Science: Virtual Reality Observation of Butterfly Metamorphosis using HTC Vive": 1 + "3rd Grade Science: Understanding the Butterfly Life Cycle through PlayStation VR-Based Virtual Reality ": 1 + "3rd Grade Science: Immersive Study of a Butterfly’s Life Cycle using Virtual Reality and Motion Tracking Technology": 1 + "6th Grade PE: Enhancing Fitness and Health Awareness through Ashtanga Yoga Techniques": 1 + "6th Grade Physical Education: Heart Rate Monitoring in Yoga for Fitness and Health Awareness": 1 + "6th Grade PE: Fitness and Health Awareness via Yoga and Breathing Techniques": 1 + "6th Grade Physical Education: Yoga Balance Poses for Enhanced Fitness and Health Awareness": 1 + "6th Grade PE: Fitness and Health Awareness through Yoga and Calisthenics": 1 + "6th Grade Physical Education: Exploring Fitness and Health Awareness through Yoga and Pilates Fusion": 1 + "6th Grade PE: Mindfulness and Yoga for Fitness and Health Awareness": 1 + "6th Grade Physical Education: Fitness and Health Awareness through Yoga and Bodyweight Exercises": 1 + "6th Grade PE: Yoga and Resistance Band Training for Fitness and Health Awareness": 1 + "6th Grade Physical Education: Fitness and Health Awareness through Yoga and Myofascial Release Techniques.": 1 + "2nd Grade History: The Role of Quarantine in Combating the Black Death and its Impact on the Medieval Feudal System": 1 + "2nd Grade History: Understanding the Black Death through the Lens of Medieval Medicine and its Effect on the Feudal System": 1 + "2nd Grade History: The Black Death, The Concept of Miasma, and its Impact on the Feudal System in the Middle Ages": 1 + "2nd Grade History: The Impact of the Black Death on Feudalism: A Comprehensive Study of Medieval Hygiene Practices": 1 + "2nd Grade History: The Influence of the Black Death on Feudal System: Exploring the Role of Medieval Alchemy": 1 + "2nd Grade History: The Black Death and the Decline of the Feudal System: A Study in Medieval Pest Control Methods": 1 + "2nd Grade History: The Black Death, The Birth of Quarantine, and its Impact on the Middle Ages Feudal System": 1 + "2nd Grade History: Medieval Herbal Remedies: Their Role during the Black Death and Impact on the Feudal System": 1 + "2nd Grade History: The Black Death, Medieval Cartography, and the Transformation of the Feudal System": 1 + "2nd Grade History: The Black Death and its Impact on the Feudal System: A Focus on Medieval Sanitation Policies.": 1 + "First Grade Environmental Studies: Our Green World - Understanding the Carbon Cycle with Microscopes": 1 + "Exploring the Carbon Cycle with Virtual Reality: A First Grade Environmental Studies Course": 1 + "Our Green World: An In-depth Study of the Carbon Cycle using pH Test Kits for First Graders": 1 + "First Grade Environmental Studies: Carbon Cycle Analysis with Chromatography ": 1 + "A Practical Approach to the Carbon Cycle through Terrarium Building: First Grade Environmental Studies": 1 + "First Grade Environmental Studies: Our Green World - The Carbon Cycle and Composting": 1 + "Our Green World: Understanding Carbon Cycle through Weather Stations - A First Grade Environmental Studies": 1 + "Carbon Cycle Exploration with Solar Power Kits: A First Grade Environmental Studies Course": 1 + "First Grade Environmental Studies: Carbon Cycle Dissection using Digital Microscopy": 1 + "Our Green World: A First Grade Environmental Studies Course on Carbon Cycle and Rainwater Harvesting Techniques.": 1 + "6th Grade Music: Understanding Rhythms and Beats using Metronomes": 1 + "Exploring Rhythms and Beats with Music Software in 6th Grade Music": 1 + "6th Grade Music: Learning Rhythms and Beats through Digital Audio Workstations": 1 + "Music Theory in 6th Grade: A Deep Dive into Rhythms, Beats, and Notation Software": 1 + "6th Grade Music: Understanding Rhythms and Beats through Drum Machines": 1 + "Applying MIDI Controllers to Understand Rhythms and Beats in 6th Grade Music": 1 + "6th Grade Music: Discovering Rhythms and Beats using Music Sequencers": 1 + "The Art of Rhythms and Beats: A Look into Digital Sampling in 6th Grade Music": 1 + "6th Grade Music: Rhythms and Beats Exploration with Music Synthesizers": 1 + "Understanding Rhythms and Beats in 6th Grade Music: An Introduction to Loop Stations.": 1 + "6th Grade Music: The Role of the Piano Forte in Symphony Composition and the Use of Crescendo in Beethoven’s Works": 1 + "6th Grade Music: Exploring the Impact of the Piano Forte in Symphony Composition with Sibelius Software": 1 + "6th Grade Music: Understanding the Use of Crescendo in Symphony Composition through Mozart’s Pieces": 1 + "6th Grade Music: Discovering the Piano Forte’s Influence in Symphony Composition with the Help of MIDI Technology": 1 + "6th Grade Music: Analyzing the Role of the Piano Forte and Crescendo in Symphony Composition using Music Theory ": 1 + "6th Grade Music: The Role of the Piano Forte and Use of Crescendo in Symphony Composition - A Deep Dive into Baroque Era": 1 + "6th Grade Music: The Application of Piano Forte and Crescendo in Symphony Composition using Digital Audio Workstations": 1 + "6th Grade Music: Unraveling the Complexity of Symphony Composition - Piano Forte and Crescendo in the Romantic Period": 1 + "6th Grade Music: The Piano Forte’s Contribution to Symphony Composition and the Art of Crescendo with Pro Tools": 1 + "6th Grade Music: Exploring the Interplay of the Piano Forte and Crescendo in Symphony Composition using Ableton Live.": 1 + "4th Grade Language Arts: Exploring Metaphors in Poetry using Interactive Whiteboard": 1 + "4th Grade Language Arts: Introduction to Poetry - Understanding Metaphors through Digital Storytelling ": 1 + "4th Grade Language Arts: Discovering Metaphors in Poetry with Google Classroom": 1 + "4th Grade Language Arts: Poetry Analysis - Metaphors through VR Technology ": 1 + "4th Grade Language Arts: Understanding Poetry Metaphors using Interactive eBooks": 1 + "4th Grade Language Arts: Learning Metaphors in Poetry through Augmented Reality ": 1 + "4th Grade Language Arts: An In-depth Study of Metaphors in Poetry using Mind Mapping Tools": 1 + "4th Grade Language Arts: Poetry and Metaphors - A Journey through Podcasts ": 1 + "4th Grade Language Arts: Exploring Metaphors in Poetry through Animation Software": 1 + "4th Grade Language Arts: Engaging with Poetry Metaphors using Gamification Techniques": 1 + "5th Grade English: Mastering Grammar with Interactive Worksheets": 1 + "5th Grade English: Sentence Structure using Storyboard That": 1 + "5th Grade English: Understanding Grammar through Google Classroom": 1 + "5th Grade English: Sentence Structure Teaching with Kahoot!": 1 + "5th Grade English: Grammar Enhancement with Quizlet": 1 + "5th Grade English: Sentence Structure Lessons through PowerPoint Presentations": 1 + "5th Grade English: Grammar Learning with Educational Podcasts": 1 + "5th Grade English: Sentence Structure Analysis using Mind Maps": 1 + "5th Grade English: Grammar Building with Gamification Tools": 1 + "5th Grade English: Sentence Structure Improvement through Animated Videos": 1 + "6th Grade History: The Use of Aqueducts in Ancient Roman Civilization": 1 + "6th Grade History: Ancient Roman Civilization’s Innovation of Road Building": 1 + "6th Grade History: The Role of Concrete in Ancient Roman Architecture": 1 + "6th Grade History: Understanding the Roman Arch in Ancient Civilization": 1 + "6th Grade History: Roman Military Tactics and Their Use of Concrete in Ancient Civilization": 1 + "6th Grade History: Ancient Roman Civilization’s Use of Concrete in Building Theaters": 1 + "6th Grade History: The Influence of Roman Numerals in Ancient Roman Civilization": 1 + "6th Grade History: The Use of Concrete in Ancient Roman Bathhouses": 1 + "6th Grade History: Ancient Roman Civilization’s Use of Concrete in Colosseum Construction": 1 + "6th Grade History: Roman Civil Engineering and the Use of Concrete in Bridge Building": 1 + "10th Grade English: An Introduction to Literature Analysis using Symbolism": 1 + "10th Grade English: Exploring Literature Analysis through Metaphor": 1 + "10th Grade English: Understanding Literature Analysis via Allegory": 1 + "10th Grade English: Literature Analysis with a Focus on Foreshadowing": 1 + "10th Grade English: An Introduction to Literature Analysis and Irony": 1 + "10th Grade English: Literature Analysis: Diving into Theme Exploration": 1 + "10th Grade English: Learning Literature Analysis through Characterization": 1 + "10th Grade English: Introduction to Literature Analysis using Imagery ": 1 + "10th Grade English: Literature Analysis with a Spotlight on Tone": 1 + "10th Grade English: Literature Analysis: An Outlook on Point of View.": 1 + "10th Grade Mathematics: Exploring Euclidean Geometry with Geogebra": 1 + "10th Grade Mathematics: Understanding Pythagorean Theorem in Geometry": 1 + "10th Grade Mathematics: The Role of Compass in Geometric Constructions": 1 + "10th Grade Mathematics: Foundation of Geometry - Learning with Mathway": 1 + "10th Grade Mathematics: Exploring Geometry with Protractor": 1 + "10th Grade Mathematics: Geometry and the Art of Graphing Calculators": 1 + "10th Grade Mathematics: Angle Relationships in Geometry Explored": 1 + "10th Grade Mathematics: Geometry - Focus on Symmetry and Transformations": 1 + "10th Grade Mathematics: Geometry - Understanding Circles using Pi": 1 + "10th Grade Mathematics: Geometry - Discovering Area and Perimeter Formulas": 1 + "1st Grade Physical Education: Exploring Soccer through Team Play": 1 + "1st Grade Physical Education: Learning Baseball Basics in Team Sports": 1 + "1st Grade Physical Education: Introduction to Basketball as a Team Sport": 1 + "1st Grade Physical Education: Fun with Team Sports - Focusing on Volleyball": 1 + "1st Grade Physical Education: Teamwork through Rugby Training": 1 + "1st Grade Physical Education: Exploring Athleticism with Relay Races": 1 + "1st Grade Physical Education: Building Skills with Dodgeball": 1 + "1st Grade Physical Education: Team Sports - An Introduction to Cricket": 1 + "1st Grade Physical Education: Learning Teamwork through Field Hockey": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football.": 1 + "5th Grade Mathematics: Mastering Fractions Using Number Lines": 1 + "5th Grade Mathematics: Decoding Decimals with Digital Tools": 1 + "5th Grade Mathematics: Grasping Fractions and Decimals through Interactive Whiteboard Lessons": 1 + "5th Grade Mathematics: Exploring Fractions with Fraction Bars": 1 + "5th Grade Mathematics: Understanding Decimals through Base-10 Blocks": 1 + "5th Grade Mathematics: Fraction and Decimal Conversion Mastery with Flip Charts": 1 + "5th Grade Mathematics: Learning Fractions and Decimals through Online Games": 1 + "5th Grade Mathematics: Fraction Circles - A Hands-On Approach to Understanding Fractions": 1 + "5th Grade Mathematics: Decoding Decimals with Decimal Squares": 1 + "5th Grade Mathematics: Enhancing Fraction and Decimal Skills through Educational Apps": 1 + "4th Grade Social Studies: The Impact of the Printing Press in 20th Century Feminist Movement": 1 + "4th Grade Social Studies: The Role of Newspapers in the Civil Rights Movement of the 20th Century": 1 + "4th Grade Social Studies: The Influence of Print Media in Promoting Environmentalism in the 20th Century": 1 + "4th Grade Social Studies: The Effect of Typography on 20th Century Artistic Movements": 1 + "4th Grade Social Studies: The Contribution of Print Media to the Spread of Pop Culture in the 20th Century": 1 + "4th Grade Social Studies: The Role of Print Media in Disseminating Information during the Space Race": 1 + "4th Grade Social Studies: The Impact of Comic Books on Youth Movements in the 20th Century": 1 + "4th Grade Social Studies: The Use of Printed Propaganda in 20th Century Political Movements": 1 + "4th Grade Social Studies: The Role of Print Media in the Anti-War Movements of the 20th Century": 1 + "4th Grade Social Studies: The Influence of Print Media on the Growth of Consumerism in the 20th Century": 1 + "2nd Grade Environmental Studies: The Role of Rainwater Harvesting Tanks in the Growth Cycle of Tomato Plants": 1 + "The Impact of Rainwater Harvesting Using Drip Irrigation Systems on the Life Cycle of Garden Vegetables in 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: Exploring the Effects of Rain Barrels in Rainwater Harvesting on the Life Cycle of Flowering Plants": 1 + "The Influence of Rainwater Harvesting Through Rain Chains on the Growth and Development of Fruit Trees in 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: The Effects of Rainwater Harvesting with Catchment Systems on the Life Cycle of Crops": 1 + "The Impact of Rainwater Harvesting Using Greywater Systems on the Life Cycle of Native Plants in 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: The Role of Rainwater Harvesting Pits in the Growth Cycle of Grasses": 1 + "Exploring the Effects of Rainwater Harvesting Using Green Roofs on the Life Cycle of Ornamental Plants in 2nd Grade Environmental Studies": 1 + "The Influence of Rainwater Harvesting Through Permeable Pavements on the Development of Desert Plants in 2nd Grade Environmental Studies": 1 + "2nd Grade Environmental Studies: The Impact of Rainwater Harvesting Using Cistern Systems on the Life Cycle of Aquatic Plants.": 1 + "1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, and Google Classroom Integration": 1 + "1st Grade Spanish: Enhancing Vocabulary with Babbel, Pear Deck Flashcards, and Quizlet Live": 1 + "1st Grade Spanish: Immersive Language Experience with Babbel, Pear Deck Flashcards, and Virtual Reality": 1 + "1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, and Kahoot Quizzes": 1 + "1st Grade Spanish: Fluent Conversations with Babbel, Pear Deck Flashcards, and Rosetta Stone": 1 + "1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, and Smartboard Activities": 1 + "1st Grade Spanish: Comprehensive Understanding with Babbel, Pear Deck Flashcards, and Duolingo": 1 + "1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, and TPRS Teaching Method": 1 + "1st Grade Spanish: Mastering Pronunciation with Babbel, Pear Deck Flashcards, and Audacity": 1 + "1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, and Flipgrid Video Responses": 1 + "3rd Grade Music: Mastering Rhythm and Beat with Hand Drums and Metronomes": 1 + "3rd Grade Music: Understanding Rhythm through Djembe Drums and Beat Counting": 1 + "3rd Grade Music: Grasping Rhythm and Beat through Conga Drums and Tempo Software": 1 + "3rd Grade Music: Exploring Rhythm and Beat using Bongo Drums and Music Notation": 1 + "3rd Grade Music: Studying Rhythm and Beat with Snare Drums and Time Signatures": 1 + "3rd Grade Music: Discovering Rhythm and Beat through Electronic Drums and Loop Stations": 1 + "3rd Grade Music: Learning Rhythm and Beat with Drum Sets and Beat Division": 1 + "3rd Grade Music: Engaging with Rhythm and Beat through African Drums and Rhythm Patterns": 1 + "3rd Grade Music: Navigating Rhythm and Beat with Cajon Drums and Metronome Apps": 1 + "3rd Grade Music: Comprehending Rhythm and Beat through Tabla Drums and Syncopation Concepts.": 1 + "Kindergarten Language Arts: Exploring Alphabet through Puppetry and Tactile Learning Tools Using Felt Boards": 1 + "Hands-On Phonics: Utilizing Alphabet Puppets and Clay Modelling in Kindergarten Language Arts ": 1 + "Interactive Alphabet Mastery: Puppetry and Flashcard Techniques in Kindergarten Language Arts": 1 + "Kindergarten Language Arts: Discovering Alphabet through Puppetry and Sensory Sand Tools": 1 + "Integrating iPads in Kindergarten Language Arts: Puppetry and Tactile Learning Apps Exploration": 1 + "Experimental Phonics: Alphabet Exploration with Puppetry and Magnetic Letter Tiles in Kindergarten": 1 + "Kindergarten Language Arts: Exploring Alphabet through Puppetry and Tactile Learning Tools Using Montessori Materials": 1 + "Digital Storytelling in Kindergarten Language Arts: Puppetry and ABC Mouse Learning Tools": 1 + "Kindergarten Language Arts: Learning Alphabet through Puppetry and Tactile Tools Using Lego Blocks": 1 + "Exploring Alphabet through Puppetry and Smartboard Interactions in Kindergarten Language Arts.": 1 + "Third Grade Environmental Science: Study of 18th Century American Windmills as a Natural Resource": 1 + "Exploring 18th Century American Waterwheel Technology in Third Grade Environmental Science": 1 + "Third Grade Environmental Science: The Role of Animal Power in 18th Century America": 1 + "Investigating Iron Production Tools in 18th Century America: A Third Grade Environmental Science Course": 1 + "Third Grade Environmental Science: Understanding the Importance of Timber in 18th Century America": 1 + "Tools of the Trade: Exploring 18th Century American Fertilization Practices in Third Grade Environmental Science": 1 + "Third Grade Environmental Science: The Impact of 18th Century American Irrigation Systems": 1 + "Third Grade Environmental Science: A Deep Dive into 18th Century American Crop Rotation": 1 + "Understanding the Use of Coal in 18th Century America: A Third Grade Environmental Science Course": 1 + "Third Grade Environmental Science: The Role of Cotton Gin in Shaping 18th Century American Agriculture": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting Using Potter’s Wheel": 1 + "5th Grade Art: Deciphering Symbols in Ancient Egyptian Artifacts through Clay Sculpting with Loop Tools": 1 + "5th Grade Art: Integrating Coil Technique in Exploring Ancient Egyptian Artifacts through Clay Sculpting": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting: A Focus on Slab Construction": 1 + "5th Grade Art: Discovering Ancient Egyptian Artifacts through Clay Sculpting with Ribbon Tools": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting: Understanding Hieroglyphics": 1 + "5th Grade Art: Delving into Ancient Egyptian Artifacts through Clay Sculpting using Slip and Score Techniques": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting with the Aid of Extruders": 1 + "5th Grade Art: The Study of Ancient Egyptian Artifacts through Clay Sculpting: Incorporating Pinch Pot Technique": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Clay Sculpting: A Journey into Cartouches": 1 + "1st Grade Environmental Studies: An Introduction to pH Meters in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Exploring Hydroponics and Nutrient Solution Management with Digital EC Meters for Sustainable Farming": 1 + "1st Grade Environmental Studies: The Role of Aeroponics in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Exploring Hydroponics and Nutrient Solution Management with the Use of TDS Meters for Sustainable Farming": 1 + "1st Grade Environmental Studies: Understanding the NFT System in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: The Impact of LED Grow Lights in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Exploring Hydroponics and Nutrient Solution Management with Drip Irrigation Systems for Sustainable Farming": 1 + "1st Grade Environmental Studies: The Use of Air Stones in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Integrating the Ebb and Flow System in Hydroponics and Nutrient Solution Management for Sustainable Farming": 1 + "1st Grade Environmental Studies: Exploring Hydroponics and Nutrient Solution Management with Automated Nutrient Dosers for Sustainable Farming": 1 + "First Grade Language Arts: Enhancing Basic Vocabulary with Flashcards": 1 + "First Grade Language Arts: Building Basic Vocabulary using Interactive Software": 1 + "First Grade Language Arts: Developing Vocabulary through Storytelling": 1 + "First Grade Language Arts: Expanding Basic Vocabulary with Picture Books": 1 + "First Grade Language Arts: Strengthening Vocabulary using Mobile Learning Apps": 1 + "First Grade Language Arts: Building Basic Vocabulary through Phonics": 1 + "First Grade Language Arts: Enhancing Vocabulary with Audio-Visual Tools": 1 + "First Grade Language Arts: Vocabulary Building using Educational Games": 1 + "First Grade Language Arts: Improving Vocabulary with Blended Learning Techniques": 1 + "First Grade Language Arts: Building Basic Vocabulary with Hands-On Activities": 1 + "7th Grade Physical Education: Mastering Basketball with the Concept of Teamwork and Heart Rate Monitors": 1 + "Fundamentals of Soccer and Teamwork in 7th Grade Physical Education: Leveraging GPS Trackers": 1 + "7th Grade Physical Education: Understanding Volleyball, Teamwork and the Use of Motion Sensors": 1 + "Physical Education for 7th Graders: Exploring Football, Teamwork and the Application of Fitness Apps": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Integration of Sports Analytics": 1 + "Physical Education in 7th Grade: The Essentials of Tennis, Teamwork and Use of Video Analysis Technology": 1 + "7th Grade Physical Education: Delving into Swimming, Teamwork and the Utilization of Stroke Monitors": 1 + "Fundamentals of Athletics and Teamwork in 7th Grade Physical Education: Focusing on Track and Field with Laser Timers": 1 + "7th Grade Physical Education: Discovering Gymnastics, Teamwork and the Role of Flexibility Sensors": 1 + "Physical Education for 7th Graders: Rugby, Teamwork and the Incorporation of Impact Sensors.": 1 + "6th Grade Language Arts: Using Google Docs for Applying Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Integration of Microsoft Word in Developing Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Exploiting PowerPoint in Creating Metaphors and Similes for Short Story Writing": 1 + "6th Grade Language Arts: Utilizing Mind Maps to Construct Metaphors and Similes in Short Stories": 1 + "6th Grade Language Arts: Harnessing Interactive Whiteboards for Metaphors and Similes Application in Short Story Writing": 1 + "6th Grade Language Arts: Employing Traditional Notebooks in the Application of Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Utilizing Flip Charts to Create Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Implementing Online Flashcards for Metaphors and Similes in Short Story Writing": 1 + "6th Grade Language Arts: Incorporating Digital Storytelling Tools in Applying Metaphors and Similes in Short Stories": 1 + "6th Grade Language Arts: Using Brainstorming Software to Develop Metaphors and Similes in Short Story Writing": 1 + "4th Grade Music: Appreciating Classical Compositions Using Symphony Analysis": 1 + "4th Grade Music: Appreciating Classical Compositions Through Piano Interpretation": 1 + "4th Grade Music: Exploring Classical Compositions with Violin Techniques": 1 + "4th Grade Music: Appreciating Classical Compositions Using Digital Music Software": 1 + "4th Grade Music: Decoding Classical Compositions with Basic Music Theory": 1 + "4th Grade Music: Appreciating Classical Compositions Through Sheet Music Reading": 1 + "4th Grade Music: Understanding Classical Compositions with Orchestral Instrumentation": 1 + "4th Grade Music: Appreciating Classical Compositions Through Conducting Simulations": 1 + "4th Grade Music: Exploring Classical Compositions with Music Transcription Tools": 1 + "4th Grade Music: Appreciating Classical Compositions Using Interactive Music Apps": 1 + "6th Grade Physical Science: Exploring Newton’s Laws with Force Diagrams using Interactive Whiteboards": 1 + "Physical Science for 6th Grade: Understanding Newton’s Laws via Force Diagrams and Physics Simulation Software": 1 + "Newton’s Laws in Physical Science: A 6th Grade Course on Force Diagrams and Projectile Motion": 1 + "6th Grade Course: Physical Science - Newton’s Laws and Force Diagrams Explored through Virtual Reality": 1 + "Physical Science: A 6th Grade Introduction to Understanding Newton’s Laws with Force Diagrams and Vector Analysis": 1 + "6th Grade: Physical Science - Newton’s Laws Unveiled Through Force Diagrams and 3D Printing Technology": 1 + "Understanding Newton’s Laws in 6th Grade Physical Science: A Deep Dive into Force Diagrams using CAD Software": 1 + "6th Grade Physical Science: Grasping Newton’s Laws with Force Diagrams and Motion Sensor Technology": 1 + "Decoding Newton’s Laws: A 6th Grade Physical Science Course Featuring Force Diagrams and Augmented Reality": 1 + "Physical Science for 6th Grade: Mastering Newton’s Laws Through Force Diagrams using Interactive Physics Apps.": 1 + "Exploring Earth’s Ecosystems: A 6th Grade Science Course on Photosynthesis": 1 + "6th Grade Science: Understanding Earth’s Ecosystems through Microscopic Observations": 1 + "Earth’s Ecosystems and Energy Transformation: A Detailed Course for 6th Graders": 1 + "6th Grade Science: Interactions in Earth’s Ecosystems using Computer Simulations": 1 + "Investigating Earth’s Ecosystems: A 6th Grade Science Course on Food Chains": 1 + "Earth’s Ecosystems and Evolution: A Comprehensive 6th Grade Science Course": 1 + "Analyzing Earth’s Ecosystems: A 6th Grade Science Course using GIS Technology": 1 + "6th Grade Science: Study of Earth’s Ecosystems through Climate Change Analysis": 1 + "Earth’s Ecosystems and Biodiversity: A 6th Grade Science Course": 1 + "6th Grade Science: Exploring Earth’s Ecosystems using Remote Sensing Technology.": 1 + "2nd Grade Mathematics: Enhancing Addition Skills using Interactive Smartboard Activities and Abacus": 1 + "2nd Grade Mathematics: Mastery of Subtraction through Smartboard Games and Number Line Techniques": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction with Smartboard and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Understanding Number Theory through Smartboard Addition and Subtraction Activities": 1 + "2nd Grade Mathematics: Practical Application of Addition and Subtraction using Smartboard and Real-life Scenarios": 1 + "2nd Grade Mathematics: Boosting Math Confidence with Smartboard and iPad Addition/Subtraction Activities": 1 + "2nd Grade Mathematics: Building Mental Math Skills through Smartboard Addition and Subtraction Games": 1 + "2nd Grade Mathematics: Exploring the Concept of Place Value in Addition and Subtraction through Smartboard Activities": 1 + "2nd Grade Mathematics: Smartboard Activities for Mastering the Regrouping Technique in Addition and Subtraction": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills using Smartboard Activities and Montessori Materials.": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects using Counters": 1 + "3rd Grade Elementary: Exploring Multiplication Concepts through Object Grouping with LEGO Bricks": 1 + "3rd Grade Elementary: Learning Multiplication via Grouping Objects using Interactive Whiteboard": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects using Abacus": 1 + "3rd Grade Elementary: Mastering Multiplication through Grouping Objects with Touch Math Technique": 1 + "3rd Grade Elementary: Multiplication Mastery through Grouping Objects using Math Manipulatives": 1 + "3rd Grade Elementary: Enhancing Multiplication Skills through Grouping Objects using Digital Apps": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects with Base Ten Blocks": 1 + "3rd Grade Elementary: Multiplication Concepts through Object Grouping using Smartboard Technology": 1 + "3rd Grade Elementary: Grasping Multiplication through Grouping Objects using Visual Number Line.": 1 + "Exploring the Paradox of Time Loops in Sci-fi Literature: A 7th Grade Language Arts Course Using the Tesseract Concept.": 1 + "Unravelling Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel with Quantum Mechanics.": 1 + "Analysing Time Loops in Science Fiction: A 7th Grade Course on Time Travel using the Einstein-Rosen Bridge Theory.": 1 + "Investigating Time Loops in Science Fiction: A 7th Grade Language Arts Course with the use of Wormhole Technology.": 1 + "Deconstructing Time Loops in Sci-fi: A 7th Grade Language Arts Course Using the Multiverse Theory. ": 1 + "Decoding Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel using the Theory of Relativity.": 1 + "Understanding Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel using the Concept of Temporal Paradox.": 1 + "Examining Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel with Quantum Entanglement.": 1 + "Interpreting Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel Using the Time Dilation Concept.": 1 + "Studying Time Loops in Science Fiction: A 7th Grade Language Arts Course on Time Travel using the Chronology Protection Conjecture.": 1 + "5th Grade English: Exploring Story Elements using Character Development": 1 + "5th Grade English: Understanding Story Elements through Conflict Analysis ": 1 + "5th Grade English: Exploring Story Elements with Plot Diagrams": 1 + "5th Grade English: Studying Story Elements using Setting Exploration": 1 + "5th Grade English: Mastering Story Elements via Theme Identification": 1 + "5th Grade English: Interactive Learning of Story Elements using Digital Storyboards": 1 + "5th Grade English: Enhancing Story Elements Knowledge through Symbolism": 1 + "5th Grade English: Exploring Story Elements using Mood and Tone Analysis": 1 + "5th Grade English: Comprehensive Story Elements Study with Foreshadowing": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice": 1 + "2nd Grade History: Ancient Egyptian Hieroglyphics": 1 + "2nd Grade History: The Use of Fire in Ancient Civilizations": 1 + "2nd Grade History: Ancient Roman Architecture": 1 + "2nd Grade History: The Wheel and its Impact on Ancient Civilizations": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass": 1 + "2nd Grade History: Agriculture in Ancient Mesopotamian Civilization": 1 + "2nd Grade History: Ancient Greek Philosophy and Concepts": 1 + "2nd Grade History: The Importance of Bronze in Ancient Civilizations": 1 + "2nd Grade History: Ancient Mayan Astronomical Tools": 1 + "2nd Grade History: The Concept of Democracy in Ancient Athens": 1 + "10th Grade Physical Education: Fundamentals of Soccer and the Art of Dribbling": 1 + "10th Grade Physical Education: Understanding Basketball Strategies using Video Analysis": 1 + "10th Grade Physical Education: Utilizing Heart Rate Monitors in Endurance Training": 1 + "10th Grade Physical Education: Fundamentals of Volleyball and Spike Technique": 1 + "10th Grade Physical Education: Using GPS Trackers to Improve Rugby Performance": 1 + "10th Grade Physical Education: Swimming Fundamentals and the Concept of Streamlining": 1 + "10th Grade Physical Education: Baseball Essentials and Batting Techniques": 1 + "10th Grade Physical Education: Mastering Football Tactics through Virtual Reality Training": 1 + "10th Grade Physical Education: Lacrosse Basics and Utilizing the Pocket": 1 + "10th Grade Physical Education: The Science of Tennis Swings and Ball Spin.": 1 + "6th Grade Social Studies: Evolution of the Wheel in Technology and Innovation History": 1 + "6th Grade Social Studies: Understanding the Impact of Fire in Technology and Innovation History": 1 + "6th Grade Social Studies: The Role of Printing Press in Technology and Innovation History": 1 + "6th Grade Social Studies: Exploring the History of the Internet in Technology and Innovation": 1 + "6th Grade Social Studies: The Revolution of the Light Bulb in Technology and Innovation History": 1 + "6th Grade Social Studies: Steam Engine and Its Influence on Technology and Innovation History": 1 + "6th Grade Social Studies: The Telephone’s Impact on the History of Technology and Innovation": 1 + "6th Grade Social Studies: The Rise of Computing in Technology and Innovation History": 1 + "6th Grade Social Studies: The Role of Electricity in the History of Technology and Innovation": 1 + "6th Grade Social Studies: Impact of the Refrigeration System on Technology and Innovation History": 1 + "Kindergarten Art: Building with Wooden Blocks - An Introduction to Architecture Using LEGO": 1 + "Kindergarten Art: Introduction to Architecture with Blocks - Exploring Shape and Space": 1 + "Structural Science: Using Magnetic Blocks in Kindergarten Art for Introduction to Architecture": 1 + "Kindergarten Art: Building with Blocks - An Introduction to Architecture and Balance": 1 + "Intro to Architecture: Kindergarten Art using Foam Blocks - Understanding Construction Principles": 1 + "Kindergarten Art: Building with Blocks - An Introduction to Architecture using Stacking Techniques": 1 + "Building Foundations: Block-based Architecture in Kindergarten Art using Weight Distribution": 1 + "Kindergarten Art: An Introduction to Architecture - Building with Blocks and Exploring Symmetry": 1 + "Building with Blocks: Kinder Art - An Introduction to Architecture using Scale and Proportions": 1 + "Fun with Blocks: Kindergarten Art and Architecture - Exploring Stability and Structure.": 1 + "2nd Grade Language Arts: Mastering Nouns & Verbs through Animated Videos using PowerPoint": 1 + "2nd Grade Language Arts: Learning Sentence Structure with Animated Videos and Interactive Whiteboard": 1 + "2nd Grade Language Arts: Enhancing Vocabulary Skills through Animated Videos using Adobe Animate": 1 + "2nd Grade Language Arts: Understanding Grammar Rules with Animated Videos on iPads": 1 + "2nd Grade Language Arts: Exploring Punctuation via Animated Videos through Smartboard Technology": 1 + "2nd Grade Language Arts: Building Spelling Skills with Animated Videos using Digital Flashcards": 1 + "2nd Grade Language Arts: Comprehending Tenses through Animated Videos using Virtual Reality": 1 + "2nd Grade Language Arts: Decoding Prepositions with Animated Videos on Chromebooks": 1 + "2nd Grade Language Arts: Unpacking Adjectives & Adverbs through Animated Videos using E-Learning Software": 1 + "2nd Grade Language Arts: Improving Pronouns Knowledge via Animated Videos using Interactive Projector Technology": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies through Piano Forte, Sheet Music Analysis and Sibelius Software": 1 + "6th Grade Music: Interpretation of Beethoven’s Symphonies with Piano Forte, Sheet Music Analysis and MIDI Technology": 1 + "Analyzing Beethoven’s Symphonies through Piano Forte and Sheet Music: An Introductory Course for 6th Graders Utilizing the Circle of Fifths": 1 + "Using the Piano Forte to Understand Beethoven’s Symphonies: A 6th Grade Sheet Music Analysis Course with the Aid of Audacity Software": 1 + "Beethoven’s Symphonies: A Detailed Study through Piano Forte and Sheet Music Analysis Using the Concept of Key Signatures for 6th Graders": 1 + "6th Grade Music: Understanding Beethoven’s Symphonies with the Help of Piano Forte, Sheet Music Analysis and SmartMusic App": 1 + "Beethoven’s Symphonies: A 6th Grade Course in Piano Forte and Sheet Music Analysis with Introduction to Note Duration": 1 + "6th Grade Music: Decoding Beethoven’s Symphonies through Piano Forte, Sheet Music Analysis and Virtual Piano Software": 1 + "6th Grade Course: Unveiling Beethoven’s Symphonies through Piano Forte, Sheet Music Analysis and the Principle of Harmony": 1 + "Exploring Beethoven’s Symphonies: A 6th Grade Course on Piano Forte and Sheet Music Analysis Enhanced with Tempo Identification.": 1 + "1st Grade Environmental Studies: Exploring Local Wildlife using Binoculars": 1 + "1st Grade Environmental Studies: Identifying Local Wildlife through Microscope Observation": 1 + "1st Grade Environmental Studies: Surveying Local Wildlife with Digital Photography ": 1 + "1st Grade Environmental Studies: Understanding Local Wildlife through Field Sketching": 1 + "1st Grade Environmental Studies: Discovering Local Wildlife with Night Vision Technology": 1 + "1st Grade Environmental Studies: Studying Local Wildlife through Habitat Mapping": 1 + "1st Grade Environmental Studies: Observing Local Wildlife using Trail Cameras": 1 + "1st Grade Environmental Studies: Learning about Local Wildlife through Sound Recording": 1 + "1st Grade Environmental Studies: Investigating Local Wildlife through GPS Tracking": 1 + "1st Grade Environmental Studies: Analyzing Local Wildlife using Data Collection Software": 1 + "1st Grade Art: Exploring Color Mixing and Shapes with Watercolors": 1 + "1st Grade Art: Introduction to Color Mixing and Shapes Using Crayons": 1 + "1st Grade Art: Understanding Color Mixing and Shapes through Digital Art Applications": 1 + "1st Grade Art: Color Mixing and Shapes with Acrylic Paints ": 1 + "1st Grade Art: Color Mixing and Shapes: A Focus on Pastels": 1 + "1st Grade Art: Color Mixing and Shapes Using Color Wheel Concepts": 1 + "1st Grade Art: Exploring Color Mixing and Geometric Shapes with Markers": 1 + "1st Grade Art: An Exploration of Color Mixing and Shapes with Oil Pastels ": 1 + "1st Grade Art: Color Mixing and Shapes: A Study with Tempera Paints ": 1 + "1st Grade Art: Color Mixing and Shapes: Mastering the Art with Charcoal.": 1 + "2nd Grade Science: Exploring Plant Life through Microscopy": 1 + "2nd Grade Science: Understanding Plant Life using Photosynthesis Concept": 1 + "2nd Grade Science: Studying Plant Life through Growing Beans Experiment": 1 + "2nd Grade Science: Investigating Plant Life with a Plant Press": 1 + "2nd Grade Science: Observing Plant Life through Digital Microscope Technology": 1 + "2nd Grade Science: Exploring Plant Life with the Concept of Transpiration": 1 + "2nd Grade Science: Learning Plant Life with Seed Dissection Tools": 1 + "2nd Grade Science: Examining Plant Life using Botany Slides": 1 + "2nd Grade Science: Discovering Plant Life through Hydroponics Technology": 1 + "2nd Grade Science: Studying Plant Life with the Concept of Cellular Respiration": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study Using Cell Division Analysis ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study with Gel Electrophoresis ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study Exploring Chromatography ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study and DNA Sequencing": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study Using Photosynthesis Experiments ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study with Fluorescent Staining ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study: Exploring Mitosis ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study and the Use of Digital Microscopy ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study: Understanding Cellular Respiration ": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study Using PCR Techniques": 1 + "4th Grade Art: Exploring Color Theory with Watercolor Paints": 1 + "4th Grade Art: Color Theory and Palette Creation with Acrylics": 1 + "Introduction to Color Theory: The Role of Digital Tools in 4th Grade Art": 1 + "4th Grade Art: Color Theory and Its Application in Oil Painting": 1 + "4th Grade Art: Using Color Wheel in Understanding Color Theory": 1 + "4th Grade Art: Introduction to Color Theory with Pastels": 1 + "4th Grade Art: Learning Color Theory through Adobe Photoshop": 1 + "Color Theory in 4th Grade Art: A Study in Charcoal Medium": 1 + "4th Grade Art: Introduction to Color Theory using Colored Pencils": 1 + "4th Grade Art: Color Theory Exploration with Digital Art Tools": 1 + "Kindergarten Health and Wellness: Dental Hygiene Exploration with Floss - The Role of Mouth Rinse and its 10 Alternatives": 1 + "The Impact of Electric Toothbrushes in Kindergarten Dental Hygiene: Exploring Mouth Rinse and 10 Other Solutions": 1 + "Exploring Fluoride’s Role in Kindergarten Dental Hygiene: Alternatives to Mouth Rinse": 1 + "The Effectiveness of Dental Sealants in Kindergarten Dental Hygiene: A Study on Mouth Rinse and 10 Alternatives": 1 + "Kindergarten Health and Wellness: Dental Hygiene Exploration - The Role of Mouth Rinse and Tooth Mousse": 1 + "Dental Hygiene Exploration in Kindergarten: The Role of Mouth Rinse and Xylitol Products": 1 + "A Deep Dive into Kindergarten Dental Hygiene: Mouth Rinse vs. Water Flossers and Other Solutions": 1 + "Oral Health for Kindergarteners: Exploring Mouth Rinse, Tongue Scrapers, and 10 Alternatives": 1 + "Kindergarten Oral Care: A Comparative Study on Mouth Rinse, Interdental Brushes, and Other Techniques": 1 + "The Influence of Dental Apps in Kindergarten Dental Hygiene: Mouth Rinse and 10 More Solutions": 1 + "1Early Childhood Dental Health: Exploring Mouth Rinse, Dental Probiotics and 10 Other Solutions": 1 + "2nd Grade Language Arts: Plot Structure Analysis using Google Classroom": 1 + "2nd Grade Language Arts: Plot Structure Analysis with Kahoot Quizzes": 1 + "2nd Grade Language Arts: Implementing Plot Structure Analysis using Padlet ": 1 + "2nd Grade Language Arts: Plot Structure Analysis using Microsoft Teams ": 1 + "2nd Grade Language Arts: Plot Structure Analysis utilizing Zoom Breakout Rooms": 1 + "2nd Grade Language Arts: Plot Structure Analysis with Interactive Whiteboard Tools": 1 + "2nd Grade Language Arts: Leveraging Edmodo for Plot Structure Analysis ": 1 + "2nd Grade Language Arts: Plot Structure Analysis using Nearpod Interactive Lessons": 1 + "2nd Grade Language Arts: Plot Structure Analysis via Flipgrid Video Responses": 1 + "2nd Grade Language Arts: Plot Structure Analysis using Seesaw’s Creative Tools": 1 + "3rd Grade Art and Color Theory: Exploring Watercolors": 1 + "3rd Grade Art and Color Theory: Introduction to Acrylics": 1 + "3rd Grade Art and Color Theory: Learning Charcoal Techniques": 1 + "3rd Grade Art and Color Theory: Exploring Collage ": 1 + "3rd Grade Art and Color Theory: Understanding Digital Art with Photoshop": 1 + "3rd Grade Art and Color Theory: Discovering Oil Pastels": 1 + "3rd Grade Art and Color Theory: Learning about 3D Sculpting": 1 + "3rd Grade Art and Color Theory: Basics of Printmaking": 1 + "3rd Grade Art and Color Theory: Creating with Clay": 1 + "3rd Grade Art and Color Theory: Introduction to Animation with Flipbook": 1 + "5th Grade Music: Exploring Music Theory and Note Reading with Piano ": 1 + "5th Grade Music: Introduction to Music Theory and Note Reading through GarageBand": 1 + "5th Grade Music: Understanding Music Theory and Note Reading using Violin": 1 + "5th Grade Music: A Deep Dive into Music Theory and Note Reading using Music Notation Software": 1 + "5th Grade Music: Exploring Music Theory and Note Reading with Sibelius Software": 1 + "5th Grade Music: Mastering Music Theory and Note Reading through Drumming": 1 + "5th Grade Music: Learning Music Theory and Note Reading with FL Studio": 1 + "5th Grade Music: A Comprehensive Study of Music Theory and Note Reading using MIDI Keyboards": 1 + "5th Grade Music: Enhancing Music Theory and Note Reading Skills with Ableton Live": 1 + "5th Grade Music: Exploring the World of Music Theory and Note Reading through Guitar.": 1 + "1st Grade Music: Exploring Harmony through Djembe Drum Rhythms": 1 + "1st Grade Music: Understanding Harmony through the Beat of Bongo Drums": 1 + "Introduction to Harmony: 1st Grade Music Lessons Using Traditional Drum Circles": 1 + "1st Grade Music: Utilizing Digital Drum Machines to Understand Harmony": 1 + "1st Grade Music: Comprehending Harmony through Interactive Drum Apps": 1 + "1st Grade Music: Learning Harmony and Rhythm through Electronic Drum Pads": 1 + "1st Grade Music: Unveiling Harmony through Beat of Marching Band Drums": 1 + "Exploring Harmony through Hand Drums: A 1st Grade Music Course": 1 + "1st Grade Music: Understanding Harmony through the Beat of African Talking Drums": 1 + "1st Grade Music: Discovering Harmony through the Beat of Conga Drums": 1 + "2nd Grade Mathematics: Developing Addition Skills with Number Lines ": 1 + "2nd Grade Mathematics: Enhancing Subtraction Skills using Interactive Whiteboards ": 1 + "2nd Grade Mathematics: Developing Addition and Subtraction Skills using Abacus ": 1 + "2nd Grade Mathematics: Learning Addition with Virtual Math Manipulatives ": 1 + "2nd Grade Mathematics: Subtraction Mastery through iPad Apps ": 1 + "2nd Grade Mathematics: Using Base Ten Blocks for Addition and Subtraction ": 1 + "2nd Grade Mathematics: Developing Addition Skills using Smartboard Technology ": 1 + "2nd Grade Mathematics: Mastering Subtraction with Educational Computer Games ": 1 + "2nd Grade Mathematics: Addition and Subtraction Skills using Montessori Materials ": 1 + "2nd Grade Mathematics: Developing Addition and Subtraction Skills with Math Magic App": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques with Video Analysis": 1 + "8th Grade Physical Education: Enhancing Volleyball Skills through Wearable Tech": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques using Virtual Reality Training": 1 + "8th Grade Physical Education: Perfecting Volleyball Serves with Slow Motion Video Playback": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques using Digital Performance Tracking": 1 + "8th Grade Physical Education: Improving Volleyball Skills with Heart Rate Monitoring": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques using Ball Speed Radar": 1 + "8th Grade Physical Education: Volleyball Proficiency through Motion Capture Technology": 1 + "8th Grade Physical Education: Mastering Volleyball Techniques with Drone Footage Analysis": 1 + "8th Grade Physical Education: Advancing Volleyball Skills through AI Coaching Tools": 1 + "5th Grade English: Exploring Narrative Writing with Storyboard Creation": 1 + "5th Grade English: Using Google Docs for Narrative Writing Exploration": 1 + "5th Grade English: Exploring Narrative Writing with Digital Storytelling Tools": 1 + "5th Grade English: Narrative Writing Exploration and the Application of Mind Maps": 1 + "5th Grade English: Exploring Narrative Writing through Microsoft Word": 1 + "5th Grade English: Narrative Writing Exploration with Grammarly": 1 + "5th Grade English: Exploring Narrative Writing using Text-to-Speech Tools": 1 + "5th Grade English: Utilizing Interactive Whiteboards in Narrative Writing Exploration": 1 + "5th Grade English: Exploring Narrative Writing with Concept Mapping Techniques": 1 + "5th Grade English: The Use of Online Thesaurus in Narrative Writing Exploration": 1 + "10th Grade History: The Role of Flintlock Muskets in the American Revolution": 1 + "10th Grade History: Cannons and their Impact on the Battles of the American Revolution": 1 + "10th Grade History: Gunpowder and the Concept of Guerilla Warfare in the American Revolution": 1 + "10th Grade History: The Influence of Gunpowder on Naval Warfare in the American Revolution": 1 + "10th Grade History: Gunpowder, Bayonets, and their Role in the American Revolution": 1 + "10th Grade History: The Introduction of Grenades in the American Revolutionary War": 1 + "10th Grade History: The Evolution of Gunpowder Mills during the American Revolution": 1 + "10th Grade History: Gunpowder and the Tactical Use of Artillery in the American Revolution": 1 + "10th Grade History: The Impact of Gunpowder on the Siege Tactics during the American Revolution": 1 + "10th Grade History: Gunpowder and its Influence on the Development of Firearms in the American Revolution Era.": 1 + "6th Grade Social Studies: Exploring Egypt’s Ancient Pyramids and Their Construction Techniques": 1 + "6th Grade Social Studies: The Role of Papyrus in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Understanding The Nile’s Influence on Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Science of Mummification in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Concept of Pharaohs in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Understanding the Use of Obelisks in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Impact of the Chariot on Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Hieroglyphics and the Rosetta Stone: Deciphering Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Role of the Scribe in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Importance of the Solar Calendar in Egypt’s Ancient Civilizations": 1 + "9th Grade Health: Exploring Nutrition and Wellness with MyFitnessPal Calorie Counter ": 1 + "9th Grade Health: Grasping Nutrition and Wellness through Calorie Counting Using Fitbit Tracker ": 1 + "9th Grade Health: Nutrition and Wellness Comprehension through Calorie Counting and BMI Calculation ": 1 + "9th Grade Health: Nutrition and Wellness via Calorie Counting on the Lose It! App ": 1 + "9th Grade Health: Understanding Nutrition and Wellness using Fooducate Calorie Counting ": 1 + "9th Grade Health: Decoding Nutrition and Wellness through Calorie Counting and Macronutrient Ratios ": 1 + "9th Grade Health: Navigating Nutrition and Wellness with Calorie Counting and the Concepts of Basal Metabolic Rate ": 1 + "9th Grade Health: Gaining Insights into Nutrition and Wellness through Calorie Counting on the CalorieKing App ": 1 + "9th Grade Health: Nutrition and Wellness Mastery through Calorie Counting and Glycemic Index Understanding ": 1 + "9th Grade Health: Delving into Nutrition and Wellness with Calorie Counting and the Use of Nutritional Facts Labels.": 1 + "3rd Grade English: Exploring Medieval Stories Through Digital Storytelling": 1 + "3rd Grade English: Reading Medieval Stories with Interactive eBooks": 1 + "3rd Grade English: Understanding Medieval Times Through Story Mapping": 1 + "3rd Grade English: Reading Medieval Stories Using Text-to-speech Technology": 1 + "3rd Grade English: Analyzing Medieval Stories with Storyboarding": 1 + "3rd Grade English: Reading Medieval Stories Using Augmented Reality": 1 + "3rd Grade English: Interpreting Medieval Stories Through Podcasts": 1 + "3rd Grade English: Engaging with Medieval Stories Through Gamification": 1 + "3rd Grade English: Medieval Storytelling Using Virtual Reality": 1 + "3rd Grade English: Reading and Comprehending Medieval Stories Through Artificial Intelligence": 1 + "5th Grade History: Exploring the Mesopotamian Civilization through Pottery Wheel Techniques": 1 + "5th Grade History: Unearthing Ancient Egypt through the Art of Coil Pottery": 1 + "5th Grade History: Discovering the Mayan Empire through Pre-Columbian Pottery Making": 1 + "5th Grade History: Delving into Indus Valley Culture through Terracotta Pottery Crafting": 1 + "5th Grade History: Unraveling Ancient China through Porcelain Pottery Techniques": 1 + "5th Grade History: Investigating the Roman Empire through the Use of the Pottery Wheel": 1 + "5th Grade History: Studying the Ancient Greek Civilization through Red-figure Pottery Making": 1 + "5th Grade History: Learning about the Aztec Empire through Mesoamerican Pottery Techniques": 1 + "5th Grade History: Examining Ancient Persia through Glazed Pottery Crafting": 1 + "5th Grade History: Understanding the Inca Civilization through Andean Pottery Making Techniques": 1 + "2nd Grade Science: Monitoring Animal Habitats Using Arduino Humidity Sensors": 1 + "2nd Grade Science: Utilizing Raspberry Pi in Monitoring Animal Habitats Through Humidity Sensors": 1 + "2nd Grade Science: Using Cloud Data Technology to Monitor Animal Habitats with Humidity Sensors": 1 + "2nd Grade Science: Exploring Animal Habitats Monitoring through IoT-enabled Humidity Sensors": 1 + "2nd Grade Science: Monitoring Animal Habitats Using Humidity Sensors with Python Programming": 1 + "2nd Grade Science: Application of Bluetooth Technology in Monitoring Animal Habitats Using Humidity Sensors": 1 + "2nd Grade Science: Monitoring Animal Habitats with Humidity Sensors and Data Visualization Techniques": 1 + "2nd Grade Science: Implementing Wireless Humidity Sensors for Monitoring Animal Habitats": 1 + "2nd Grade Science: Use of GPS Technology in Monitoring Animal Habitats Using Humidity Sensors": 1 + "2nd Grade Science: Understanding Animal Habitats through Humidity Sensors and Machine Learning Concepts.": 1 + "8th Grade World Cultures: Examining Cultural Heritage using Google ARCore Technology": 1 + "8th Grade World Cultures: Exploring Cultural Heritage through Microsoft HoloLens Augmented Reality": 1 + "8th Grade World Cultures: Investigating Cultural Heritage with Augmented Reality and 3D Printing Technology": 1 + "8th Grade World Cultures: Delving into Cultural Heritage using ARKit Augmented Reality": 1 + "8th Grade World Cultures: Exploring Cultural Heritage through Augmented Reality and Virtual Reality Integration": 1 + "8th Grade World Cultures: An Exploration of Cultural Heritage through Augmented Reality and AI Technology": 1 + "8th Grade World Cultures: Experience Cultural Heritage through Augmented Reality using AR.js": 1 + "8th Grade World Cultures: Understanding Cultural Heritage through Augmented Reality and Interactive Mapping": 1 + "8th Grade World Cultures: Discovering Cultural Heritage using ARToolKit Augmented Reality Technology": 1 + "8th Grade World Cultures: Exploring Cultural Heritage through Augmented Reality and Blockchain Verification.": 1 + "7th Grade Music: Exploring Beethoven through Digital Audio Workstations": 1 + "7th Grade Music: Introduction to Mozart and Music Notation Software": 1 + "7th Grade Music: Bach’s Influence Explored through MIDI Technology": 1 + "7th Grade Music: Discovering Classical Composers with Interactive Music Apps": 1 + "7th Grade Music: Understanding Chopin through Audio Editing Tools": 1 + "7th Grade Music: Digital Sheet Music and the Works of Vivaldi": 1 + "7th Grade Music: Tchaikovsky’s Composition Techniques using Music Theory Apps": 1 + "7th Grade Music: Wagner and Music Production Software - A Deep Dive": 1 + "7th Grade Music: Exploring Haydn’s Symphonies with Virtual Instruments": 1 + "7th Grade Music: Schubert Uncovered through Digital Music Libraries": 1 + "7th Grade Physical Education: Mastering the Balance Beam Using Gravity Understanding": 1 + "7th Grade Physical Education: Proficiency in Basic Gymnastics Using Balance Beam and Safety Mats": 1 + "7th Grade Physical Education: Utilizing Video Analysis in Balance Beam Gymnastics": 1 + "7th Grade Physical Education: Basics of Gymnastics and Balance Beam Techniques Using Heart Rate Monitors": 1 + "7th Grade Physical Education: Learning Balance Beam Gymnastics with the Aid of Virtual Reality": 1 + "7th Grade Physical Education: Balance Beam Gymnastics - The Role of Core Strength": 1 + "7th Grade Physical Education: Enhancing Performance in Balance Beam Gymnastics with Biofeedback Technology": 1 + "7th Grade Physical Education: Balance Beam Gymnastics - Understanding the Physics of Equilibrium": 1 + "7th Grade Physical Education: Improving Balance Beam Gymnastics Skills Using Motion Sensor Technology": 1 + "7th Grade Physical Education: Basics of Gymnastics - Balance Beam Techniques with a Focus on Flexibility Training": 1 + "9th Grade Biology: Exploring Cell Structures Using Microscopy": 1 + "9th Grade Biology: Investigating Cell Structures Through DNA Sequencing Technology": 1 + "9th Grade Biology: A Study of Cell Structures using Electrophoresis ": 1 + "9th Grade Biology: Examining Cell Structures with Gel Electrophoresis": 1 + "9th Grade Biology: Delving into Cell Structures with Fluorescence Microscopy": 1 + "9th Grade Biology: Understanding Cell Structures through Chromatography Techniques": 1 + "9th Grade Biology: Investigating Cell Structures with the Aid of Spectrophotometry": 1 + "9th Grade Biology: A Closer Look at Cell Structures with Flow Cytometry": 1 + "9th Grade Biology: Examining Cell Structures through the Lens of Mitosis": 1 + "9th Grade Biology: Examining Cell Structures Using the Concept of Cellular Respiration.": 1 + "8th Grade History: The Impact of Steam Engines on Forests and 10 Sustainable Alternatives": 1 + "8th Grade History: The Role of Coal Mining in Nature Degradation and 10 Potential Remedies": 1 + "8th Grade History: The Influence of Railroads on Landscapes and 10 Ecological Solutions": 1 + "8th Grade History: Factories’ Contribution to Air Pollution and 10 Clean Energy Options ": 1 + "8th Grade History: The Effect of Iron Production on Water Bodies and 10 Conservation Strategies": 1 + "8th Grade History: The Impact of Cotton Mills on Ecosystems and 10 Regenerative Approaches": 1 + "8th Grade History: The Consequences of Textile Machinery on Biodiversity and 10 Restoration Solutions": 1 + "8th Grade History: The Aftermath of Industrial Agriculture on Soil Health and 10 Organic Farming Practices": 1 + "8th Grade History: The Result of Mass Production Techniques on Wildlife and 10 Preservation Methods": 1 + "8th Grade History: The Damage of Telegraph Wires to Bird Populations and 10 Protection Solutions": 1 + "9th Grade Music: Exploring Chromatic Scales through Sibelius Software": 1 + "9th Grade Music: Understanding Harmony with Sibelius Software and Audacity": 1 + "9th Grade Music: Melody Construction using Sibelius Software and MIDI Keyboard": 1 + "9th Grade Music: Rhythm Analysis in Sibelius Software and Logic Pro X": 1 + "9th Grade Music: Composition Techniques with Sibelius Software and Garageband": 1 + "9th Grade Music: Arranging for Orchestra in Sibelius Software": 1 + "9th Grade Music: Chord Progressions Study with Sibelius Software and Ableton Live": 1 + "9th Grade Music: Exploring Music Dynamics through Sibelius Software and Pro Tools": 1 + "9th Grade Music: Music Notation – A Detailed Study with Sibelius Software": 1 + "9th Grade Music: Enharmonic Shifts Analysis using Sibelius Software and FL Studio.": 1 + "9th Grade English: Analyzing Shakespeare’s Sonnets using AI Language Processing and Python": 1 + "9th Grade English: Understanding Shakespeare through NLP and Machine Learning Algorithms": 1 + "9th Grade English: Analyzing Shakespeare’s Plays with AI Language Processing and TensorFlow": 1 + "9th Grade English: Deciphering Shakespeare using AI Language Processing and Natural Language Understanding": 1 + "9th Grade English: Exploring Shakespeare’s Works with AI Language Processing and Text Mining": 1 + "9th Grade English: Analyzing Shakespeare’s Prose using AI Language Processing and Sentiment Analysis": 1 + "9th Grade English: Studying Shakespeare’s Literature with AI Language Processing and Deep Learning": 1 + "9th Grade English: Interpreting Shakespeare’s Texts using AI Language Processing and Word2Vec": 1 + "9th Grade English: Analyzing Shakespeare’s Drama with AI Language Processing and Syntax Trees": 1 + "9th Grade English: Unraveling Shakespeare’s Poetry using AI Language Processing and Semantic Analysis": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor and the Role of Transistors in Computer History": 1 + "6th Grade Social Studies: The Microprocessor Development - The Impact of Silicon Chips in Computer History": 1 + "6th Grade Social Studies: The Journey of The Microprocessor - Understanding Moore’s Law in Computer History": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor and the Emergence of Integrated Circuits in Computer History": 1 + "6th Grade Social Studies: The Microprocessor Evolution - The Advent of Multicore Processors in Computer History": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor - A Deep Dive into Microarchitecture in Computer History": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor - The Influence of Assembly Language in Computer History": 1 + "6th Grade Social Studies: The Role of The Microprocessor and Cache Memory in the Evolution of Computer History": 1 + "6th Grade Social Studies: The Evolution of The Microprocessor - Impact of Semiconductors in Computer History": 1 + "6th Grade Social Studies: The Microprocessor Revolution - The Role of Binary Code in Computer History": 1 + "7th Grade Language Arts: Analyzing Shakespeare’s Sonnets using eBeam Interactive Whiteboards and Flipgrid ": 1 + "7th Grade Language Arts: Exploring Haiku Poetry with eBeam Interactive Whiteboards and Google Docs ": 1 + "7th Grade Language Arts: Studying Metaphors in Poetry through eBeam Interactive Whiteboards and Jamboard ": 1 + "7th Grade Language Arts: Interpreting Imagery in Poetry with eBeam Interactive Whiteboards and VoiceThread ": 1 + "7th Grade Language Arts: Poetry Analysis of Robert Frost’s Work using eBeam Interactive Whiteboards and Padlet ": 1 + "7th Grade Language Arts: Understanding Rhythm in Poetry using eBeam Interactive Whiteboards and Soundtrap ": 1 + "7th Grade Language Arts: Diving into Symbolism in Poetry with eBeam Interactive Whiteboards and Prezi ": 1 + "7th Grade Language Arts: Exploring Alliteration in Poetry using eBeam Interactive Whiteboards and Kahoot ": 1 + "7th Grade Language Arts: Analyzing Emily Dickinson’s Poems using eBeam Interactive Whiteboards and Microsoft Teams ": 1 + "7th Grade Language Arts: Studying Rhyme Schemes in Poetry with eBeam Interactive Whiteboards and Google Slides.": 1 + "4th Grade Geography: Exploring The Midwest Region Through Oculus VR Technology and Virtual Field Trips": 1 + "4th Grade Geography: Understanding New England’s Geography Through Microsoft HoloLens and Virtual Field Trips": 1 + "4th Grade Geography: Discovering The Pacific Northwest Using PlayStation VR and Virtual Excursions": 1 + "4th Grade Geography: A Journey Through The South Atlantic States With Google Cardboard VR and Virtual Tours": 1 + "4th Grade Geography: Learning About The Rocky Mountain Region Using HTC Vive Pro and Virtual Expeditions": 1 + "4th Grade Geography: The Great Plains Exploration Through Samsung Gear VR and Virtual Adventures": 1 + "4th Grade Geography: Immersive Study of The Southwest Region With Google Daydream View and Virtual Voyages": 1 + "4th Grade Geography: Deep Dive Into The Mid-Atlantic States Using Lenovo Mirage Solo and Virtual Journeys": 1 + "4th Grade Geography: Unraveling the Mysteries of Alaska and Hawaii Through HP Reverb VR and Virtual Field Trips": 1 + "4th Grade Geography: Exploring The West North Central States With Pico Neo 2 VR and Virtual Explorations": 1 + "2nd Grade Science: Exploring Life Cycles and Habitats with Microscopes": 1 + "2nd Grade Science: Discovering Life Cycles and Habitats through Digital Interactive Learning": 1 + "2nd Grade Science: Life Cycles and Habitats Study with 3D Modeling": 1 + "2nd Grade Science: Life Cycles and Habitats Analysis Using Virtual Reality": 1 + "2nd Grade Science: Learning About Life Cycles and Habitats Through Augmented Reality": 1 + "2nd Grade Science: Life Cycles and Habitats in Detail with the Use of Dioramas": 1 + "2nd Grade Science: Investigating Life Cycles and Habitats with Field Trips": 1 + "2nd Grade Science: Life Cycles and Habitats Exploration through Project-Based Learning": 1 + "2nd Grade Science: Life Cycles and Habitats Examination with Hands-on Experiments": 1 + "2nd Grade Science: Understanding Life Cycles and Habitats using the Concept of Ecosystem Balance.": 1 + "9th Grade Social Studies: American Revolution and the Role of Printing Press": 1 + "Analyzing the American Revolution through Cartography in 9th Grade Social Studies": 1 + "9th Grade Social Studies: The Impact of Propaganda during the American Revolution": 1 + "American Revolution’s Military Technology: A Focus in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Understanding the American Revolution through Currency": 1 + "9th Grade Social Studies: American Revolution and the Influence of Telegraph": 1 + "American Revolution: Naval Warfare in 9th Grade Social Studies": 1 + "9th Grade Social Studies: The Role of Spycraft in the American Revolution": 1 + "The American Revolution’s Postal System: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The American Revolution and Early Medical Practices.": 1 + "7th Grade History: Tracing The Middle Ages Through the Evolution of Castles with focus on Siege Engines": 1 + "7th Grade History: The Impact of the Crossbow on Castle Defenses in the Middle Ages": 1 + "Mapping the Middle Ages: A Study of 7th Grade History Through the Lens of Castle Architecture and Moats ": 1 + "7th Grade History: The Role of Trebuchets in Castle Sieges during the Middle Ages": 1 + "Stone by Stone: Understanding Medieval Castles and the Wheelbarrow in 7th Grade History": 1 + "7th Grade History: The Influence of the Portcullis on Castle Security in the Middle Ages": 1 + "Exploring Castle Design in the Middle Ages and the Invention of the Drawbridge: A 7th Grade History Course": 1 + "7th Grade History: The Significance of the Murder-Hole in Medieval Castle Defense": 1 + "Towers and Turrets: A 7th Grade Study of the Middle Ages Through the Evolution of Castle Battlements": 1 + "7th Grade History: Investigating the Middle Ages Through the Evolution of Castle Keeps and Arrow Slits.": 1 + "2nd Grade Science: Exploring Animal Habitats through Microscope Studies": 1 + "2nd Grade Science: Learning Animal Habitats with Interactive Digital Maps": 1 + "2nd Grade Science: Discovering Animal Habitats using Virtual Reality Technology": 1 + "2nd Grade Science: Introduction to Animal Habitats and Food Chains": 1 + "2nd Grade Science: Studying Animal Habitats through Field Trips": 1 + "2nd Grade Science: Examining Animal Habitats with Augmented Reality": 1 + "2nd Grade Science: Analyzing Animal Habitats using Data Collection Tools": 1 + "2nd Grade Science: Understanding Animal Habitats Through Documentary Viewing": 1 + "2nd Grade Science: Investigating Animal Habitats through Project-Based Learning ": 1 + "2nd Grade Science: Introduction to Animal Habitats with a Focus on Adaptation Strategies.": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Pivot Tables in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Utilizing VLOOKUP in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Conditional Formatting in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Macros in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Data Visualization in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Charting in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Solver in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Data Validation in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Power Query in Microsoft Excel": 1 + "8th Grade Science: Introduction to Data Analysis: Mastering Formulas and Power Pivot in Microsoft Excel": 1 + "7th Grade Language Arts: Exploring Poetry and Drama with Dramatic Monologues and the Use of Metaphor": 1 + "Investigation of Poetry and Drama through Dramatic Monologues: Use of Imagery in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Understanding Poetry and Drama using Dramatic Monologues and Symbolism": 1 + "Applying Alliteration in Dramatic Monologues: A 7th Grade Language Arts Course on Poetry and Drama": 1 + "7th Grade Language Arts: Exploring Poetry and Drama through Dramatic Monologues with Emphasis on Rhyme Schemes": 1 + "7th Grade Language Arts: The Role of Personification in Investigating Poetry and Drama through Dramatic Monologues": 1 + "Investigating Poetry and Drama through Dramatic Monologues: Use of Hyperbole in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Poetry and Drama Investigation through Dramatic Monologues and Onomatopoeia": 1 + "Exploring Poetry and Drama in 7th Grade Language Arts: Dramatic Monologues and the Power of Simile": 1 + "7th Grade Language Arts: Investigating Poetry and Drama through Dramatic Monologues and the Application of Irony": 1 + "1st Grade Environmental Studies: Exploring Our Planet Through the Use of Microscopes and the Study of Ecosystems": 1 + "1st Grade Environmental Studies: Understanding Our Planet Through Satellite Imagery and Ecosystem Analysis": 1 + "1st Grade Environmental Studies: Delving into Our Planet’s Ecosystems with the Aid of Interactive Digital Maps": 1 + "1st Grade Environmental Studies: Unveiling Our Planet using GIS Technology in Ecosystem Studies": 1 + "1st Grade Environmental Studies: Grasping Our Planet Through the Examination of Ecosystems with Drones": 1 + "1st Grade Environmental Studies: Unraveling Our Planet Through the Study of Ecosystems: A Focus on Biodiversity": 1 + "1st Grade Environmental Studies: Probing Our Planet Through the Lens of Climate Change and Ecosystem Analysis": 1 + "1st Grade Environmental Studies: Deciphering Our Planet Through the Study of Ecosystems using Virtual Reality Technology": 1 + "1st Grade Environmental Studies: Discovering Our Planet Through the Study of Ecosystems and the Application of Data Science": 1 + "1st Grade Environmental Studies: Navigating Our Planet Through the Study of Ecosystems: An Introduction to Ecological Footprints.": 1 + "2nd Grade Music: Exploring Rhythm with GarageBand Software": 1 + "2nd Grade Music: Understanding Rhythm through Audacity Digital Tools": 1 + "2nd Grade Music: Foundations of Rhythm with Fruity Loops Studio": 1 + "2nd Grade Music: Rhythm Basics using Ableton Live Software": 1 + "2nd Grade Music: Rhythm Fundamentals with Logic Pro X Technology": 1 + "2nd Grade Music: Learning Rhythm through Pro Tools Software": 1 + "2nd Grade Music: The Study of Rhythm with Cubase Software": 1 + "2nd Grade Music: Rhythm Principles with Reaper Digital Tools": 1 + "2nd Grade Music: Comprehending Rhythm with Mixcraft Software": 1 + "2nd Grade Music: Rhythm Structure using Studio One Software": 1 + "7th Grade Language Arts: Exploring Environmental Literature through iPad Apps": 1 + "7th Grade Language Arts: Analyzing Environmental Literature using Google Scholar": 1 + "7th Grade Language Arts: Reading and Interpreting Environmental Literature using Metaphor Analysis": 1 + "7th Grade Language Arts: Decoding Environmental Literature through Semantic Mapping": 1 + "7th Grade Language Arts: Understanding Environmental Literature using Audiobooks": 1 + "7th Grade Language Arts: Examining Environmental Literature through E-Readers": 1 + "7th Grade Language Arts: Investigating Environmental Literature using Text-to-Speech Software": 1 + "7th Grade Language Arts: Reviewing Environmental Literature with Digital Annotation Tools": 1 + "7th Grade Language Arts: Absorbing Environmental Literature through Virtual Reality": 1 + "7th Grade Language Arts: Appraising Environmental Literature using Contextual Analysis.": 1 + "8th Grade Music: The Evolution of Classical Music and the Impact of the Metronome on Beethoven’s Symphonies": 1 + "8th Grade Music: The Role of the Fortepiano in Shaping Classical Music and the Influence of the Metronome": 1 + "8th Grade Music: The Evolution of String Instruments in Classical Music and the Metronome’s Impact": 1 + "8th Grade Music: The Impact of the Metronome and the Introduction of the Valve Trumpet in Classical Music": 1 + "8th Grade Music: The Evolution of Classical Music with a Focus on the Metronome and the Notation System": 1 + "8th Grade Music: The Evolution of Classical Music - The Metronome and the Influence of the Harpsichord": 1 + "8th Grade Music: Changes in Classical Music Composition with the Metronome and the Development of the Concerto": 1 + "8th Grade Music: The Impact of the Metronome and the Use of Counterpoint in the Evolution of Classical Music": 1 + "8th Grade Music: The Evolution of Classical Music - The Metronome and the Introduction of the Opera Seria": 1 + "8th Grade Music: The Evolution of Classical Music, the Metronome, and the Influence of the Chamber Orchestra.": 1 + "4th Grade Physical Education: Introduction to Baseball and Batting Analysis Technology": 1 + "4th Grade Physical Education: Swimming and Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Soccer and GPS Player Tracking Systems": 1 + "4th Grade Physical Education: Basketball and Video Replay Analysis": 1 + "4th Grade Physical Education: Volleyball and Ball Spin Detection Technology": 1 + "4th Grade Physical Education: Cross-Country Running and Heart Rate Monitors": 1 + "4th Grade Physical Education: Gymnastics and Motion Capture Technology": 1 + "4th Grade Physical Education: Tennis and Racket Swing Analysis Tools": 1 + "4th Grade Physical Education: Track and Field with Laser Measurement Technology": 1 + "4th Grade Physical Education: Football and Helmet Impact Sensors.": 1 + "6th Grade Social Studies: The Impact of the Light Bulb in the History of Electricity and Innovation": 1 + "6th Grade Social Studies: Understanding the Role of Electric Trains in the History of Technology": 1 + "6th Grade Social Studies: The Influence of Electric Cars on Technological Advancements and Innovation": 1 + "6th Grade Social Studies: The Invention of the Electric Telegraph and its Role in History": 1 + "6th Grade Social Studies: The Introduction of Electric Heaters and its Influence on Technological Progress": 1 + "6th Grade Social Studies: The Evolution of Electricity: Focus on Electric Motors in Technology and Innovation": 1 + "6th Grade Social Studies: The Contribution of Electric Sewing Machines to the History of Technology": 1 + "6th Grade Social Studies: The Impact of the Electric Refrigerator in Technological Innovations": 1 + "6th Grade Social Studies: The Role of the Electric Fan in the History of Technology and Innovation": 1 + "6th Grade Social Studies: The Significance of the Electric Washing Machine in Technological Advancements.": 1 + "5th Grade Music: Exploring Patterns in Rhythm through Percussion Instruments": 1 + "5th Grade Music: Understanding Rhythm Patterns using Music Software": 1 + "5th Grade Music: Discovering Patterns in Rhythm with Piano": 1 + "5th Grade Music: Identifying Rhythm Patterns through Beatboxing": 1 + "5th Grade Music: Patterns in Rhythm - An Introduction to Metronomes": 1 + "5th Grade Music: Drumming to the Beat - Patterns in Rhythm": 1 + "5th Grade Music: Patterns in Rhythm - A Look at Digital Audio Workstations": 1 + "5th Grade Music: Syncopation and Patterns in Rhythm for 5th Graders": 1 + "5th Grade Music: Rhythm Patterns in Action with Electronic Drums": 1 + "5th Grade Music: Mastering Rhythm Patterns through Music Sequencing Software": 1 + "6th Grade Science: Delving into Plant and Animal Cells using Microscopes": 1 + "6th Grade Science: The Process of Photosynthesis in Plants": 1 + "6th Grade Science: Animal Habitats and Adaptation Studies": 1 + "6th Grade Science: DNA Extraction from Plants and Animals": 1 + "6th Grade Science: Exploring Botany and Zoology with Virtual Reality": 1 + "6th Grade Science: Evolutionary Biology of Plants and Animals": 1 + "6th Grade Science: Investigating the Anatomy of Plants and Animals": 1 + "6th Grade Science: Understanding Plant and Animal Life Cycles": 1 + "6th Grade Science: Examining Plants and Animals through Digital Imaging ": 1 + "6th Grade Science: The Influence of Climate Change on Plants and Animals.": 1 + "9th Grade Health: Mastering Nutrition and Wellness through Calorie Counting and Glycemic Index Understanding using MyFitnessPal": 1 + "Enhanced 9th Grade Health: Nutrition Mastery via Calorie Counting, Glycemic Index Understanding, and Fitbit Usage": 1 + "9th Grade Health: Comprehensive Wellness through Calorie Counting, Glycemic Index Insight, and Macronutrient Tracking": 1 + "Advanced 9th Grade Health: Nutrition and Wellness through Detailed Calorie Counting, Glycemic Index Understanding, and MyPlate Implementation": 1 + "9th Grade Health: Nutrition Mastery with Calorie Counting, Glycemic Index Decoding, and NutriBase Software": 1 + "9th Grade Health: Wellness Mastery through Calorie Counting, Glycemic Index Understanding, and Fooducate App Integration": 1 + "Specialized 9th Grade Health: Nutritional Wellness through Calorie Counting, Glycemic Index Understanding, and the DASH Diet Plan": 1 + "9th Grade Health: Calorie Counting, Glycemic Index Understanding, and Wellness Mastery via the Mediterranean Diet Plan": 1 + "9th Grade Health: Navigating Nutrition and Wellness through Calorie Counting, Glycemic Index Understanding, and Weight Watchers Program": 1 + "9th Grade Health: Achieving Wellness through Calorie Counting, Glycemic Index Understanding, and the Use of the Lifesum App": 1 + "5th Grade Science: Exploring the Solar System with Telescopes": 1 + "5th Grade Science: Journey through the Solar System via Computer Simulations": 1 + "5th Grade Science: Understanding the Solar System through 3D Models": 1 + "5th Grade Science: A Deep Dive into Planetary Movements": 1 + "5th Grade Science: Studying the Solar System through Astrophotography": 1 + "5th Grade Science: Journey through the Solar System using Virtual Reality": 1 + "5th Grade Science: The Solar System and its Celestial Bodies through Interactive Apps": 1 + "5th Grade Science: Navigating the Solar System with Satellite Imagery": 1 + "5th Grade Science: Discovering the Solar System with Augmented Reality": 1 + "5th Grade Science: Exploring the Concept of Gravity in our Solar System": 1 + "7th Grade Art: Crafting Wildlife Portraits with Collage Techniques using Photography and Adobe Photoshop": 1 + "7th Grade Art: Creating Wildlife Portraits with Collage Techniques, Photography and Watercolor Paints": 1 + "7th Grade Art: Integrating Wildlife Photography and Collage Techniques with the Use of Lightroom": 1 + "Art Mastery for 7th Grade: Wildlife Portraits through Collage & Photography Techniques using Digital Tablets": 1 + "7th Grade Art: Wildlife Portraits Collage Making, Photography, and Introduction to 3D Printing": 1 + "7th Grade Art: Crafting Wildlife Portraits using Collage Techniques, Photography and DSLR Cameras": 1 + "7th Grade Art: Exploring Wildlife Portraits through Collage Techniques, Photography and Color Theory ": 1 + "7th Grade Art: Wildlife Portraits Collage Techniques with Photography and Procreate App Fundamentals": 1 + "7th Grade Art: Creating Wildlife Portraits with Collage Techniques, Photography and Mixed Media": 1 + "7th Grade Art: Crafting Wildlife Portraits using Collage Techniques, Photography and Oil Pastels Techniques": 1 + "7th Grade Introduction to Chemistry: Mastering the Pipettes with Burette": 1 + "7th Grade Introduction to Chemistry: Mastering the Pipettes and Understanding Volumetric Analysis": 1 + "7th Grade Chemistry: Applying the pH Scale with Pipettes": 1 + "7th Grade Introduction to Chemistry: Mastering Pipettes in Acid-Base Reactions": 1 + "7th Grade Chemistry & Lab Safety: Mastering the Pipettes and Bunsen Burners": 1 + "7th Grade Introduction to Chemistry: Exploring Stoichiometry with Pipettes": 1 + "7th Grade Introduction to Chemistry: Mastering the Pipettes in Solution Preparation": 1 + "7th Grade Introduction to Chemistry: Pipettes and the Art of Titration": 1 + "7th Grade Chemistry: From Pipettes to Spectrophotometry": 1 + "7th Grade Introduction to Chemistry: Mastering Pipettes and Understanding Molarity": 1 + "3rd Grade English: Exploring Asian Storytelling Through Shadow Puppetry Using Overhead Projectors": 1 + "3rd Grade English: Studying Cultural Narratives Through Shadow Puppetry and Digital Animation Software": 1 + "3rd Grade English: Discovering Multicultural Folklore with Shadow Puppetry and Laser Cutters": 1 + "3rd Grade English: Exploration of Storytelling in Global Cultures Through Shadow Puppetry and Light Manipulation Techniques": 1 + "3rd Grade English: Using iPads to Create and Exhibit Cross-Cultural Shadow Puppetry in Storytelling": 1 + "3rd Grade English: Exploring Storytelling in Diverse Cultures Through Shadow Puppetry with Smart Board Technology": 1 + "3rd Grade English: Understanding Cultural Tales Through Shadow Puppetry Utilizing 3D Printing": 1 + "3rd Grade English: Exploring International Storytelling Via Shadow Puppetry and Augmented Reality": 1 + "3rd Grade English: Storytelling in Various Cultures Through Shadow Puppetry and Stop-Motion Animation Techniques": 1 + "3rd Grade English: Investigating World Storytelling Through Shadow Puppetry Using Interactive Whiteboards.": 1 + "Fourth Grade History: The American Revolution Explored Through Map-Making": 1 + "Fourth Grade History: The Impact of the Printing Press During the American Revolution": 1 + "Fourth Grade History: The Role of Cannons in the American Revolution": 1 + "Fourth Grade History: The American Revolution and the Evolution of Warfare Tactics": 1 + "Fourth Grade History: Understanding the American Revolution Through the Lens of Agriculture": 1 + "Fourth Grade History: The American Revolution - The Significance of the Telegraph": 1 + "Fourth Grade History: Exploration of Naval Technology During the American Revolution": 1 + "Fourth Grade History: The American Revolution and the Role of Espionage Techniques": 1 + "Fourth Grade History: The American Revolution - Study of Medical Practices of the Era": 1 + "Fourth Grade History: The American Revolution and the Influence of the Spinning Jenny.": 1 + "Revolutionary War Era: The Impact of the Corn Crib on Horse Nutrition and Military Strategies in 8th Grade History": 1 + "The Role of Blacksmithing in Horse Nutrition and Military Tactics During the Revolutionary War: An 8th Grade History Course": 1 + "Revolutionary War Era: How Grain Mills Influenced Horse Nutrition and Military Strategies in 8th Grade History": 1 + "8th Grade History: The Influence of Early Veterinary Medicine on Horse Nutrition and Revolutionary War Military Strategies": 1 + "The Revolutionary War Era: The Effect of Haymaking Technology on Horse Nutrition and Military Strategies in 8th Grade History": 1 + "Revolutionary War Era: The Impact of Watering Troughs on Horse Nutrition and Military Strategies in 8th Grade History": 1 + "8th Grade History: Revolutionary War Tactics and the Influence of Horseshoe Crafting on Horse Nutrition": 1 + "The Revolutionary War Era: Harnessing Technology’s Impact on Horse Nutrition and Military Strategies in 8th Grade History": 1 + "8th Grade History: The Revolutionary War Era and the Role of Stable Design in Horse Nutrition and Military Strategies": 1 + "Revolutionary War Era: The Influence of Pasture Management Techniques on Horse Nutrition and Military Strategies in 8th Grade History.": 1 + "4th Grade Health: Understanding Nutrition and Healthy Living through MyPlate Tool": 1 + "4th Grade Health: Exploring Nutrition and Healthy Living with Calorie-Counting Apps": 1 + "4th Grade Health: Discovering Nutrition and Healthy Living Using Virtual Reality Technology": 1 + "4th Grade Health: Learning About Nutrition and Healthy Living through the Food Pyramid Concept": 1 + "4th Grade Health: Understanding Nutrition and Healthy Living with Interactive Online Quizzes": 1 + "4th Grade Health: Mastering Nutrition and Healthy Living Using Diet Planning Software": 1 + "4th Grade Health: Understanding Nutrition and Healthy Living with BMI Calculation": 1 + "4th Grade Health: Exploring Nutrition and Healthy Living with Portion Control Techniques": 1 + "4th Grade Health: Learning About Nutrition and Healthy Living through the Concept of Macronutrients": 1 + "4th Grade Health: Unpacking Nutrition and Healthy Living with Food Label Reading Skills": 1 + "9th Grade Health: Nutrition and Wellness - A Comprehensive Study of Macronutrients using MyFitnessPal App": 1 + "9th Grade Health: Nutrition and Wellness - Exploring Macronutrients with NutriCalculator Software": 1 + "9th Grade Health: Nutrition and Wellness - Macronutrient Analysis and Planning with DietMaster Pro": 1 + "9th Grade Health: Nutrition and Wellness - Macronutrients Breakdown with the Help of CalorieKing Database": 1 + "9th Grade Health: Nutrition and Wellness - A Deep Dive into Macronutrients using Nutrient Analysis Technology": 1 + "9th Grade Health: Nutrition and Wellness - Discovering Macronutrients with Interactive Nutrition Facts Labels": 1 + "9th Grade Health: Nutrition and Wellness - A Hands-on Approach to Macronutrients using Food Scale Technology": 1 + "9th Grade Health: Nutrition and Wellness - Mastering Macronutrients with Nutritional Genomics Concept": 1 + "9th Grade Health: Nutrition and Wellness - A Deep Dive into Macronutrients using 3D Nutritional Visualisation Tools": 1 + "9th Grade Health: Nutrition and Wellness - Macronutrients Demystified with the Concept of Nutritional Biochemistry.": 1 + "4th Grade Mathematics: Understanding Fractions with Number Lines": 1 + "4th Grade Mathematics: Basics of Fractions using Fraction Circles": 1 + "4th Grade Mathematics: Introduction to Fractions via Interactive Whiteboard ": 1 + "4th Grade Mathematics: Fraction Basics using Fraction Bars": 1 + "4th Grade Mathematics: Exploring Fractions through iPad Apps": 1 + "4th Grade Mathematics: Fraction Fundamentals with Digital Manipulatives": 1 + "4th Grade Mathematics: Fraction Simplification using Online Fraction Calculator": 1 + "4th Grade Mathematics: Fractions Decoded with Virtual Reality Technology": 1 + "4th Grade Mathematics: Basics of Fractions through Montessori Materials": 1 + "4th Grade Mathematics: Fraction Concepts using Smart Learning Software": 1 + "1st Grade Science: Investigating Recycling through DIY Trash-to-Treasure Crafts with Bottle Cap Mosaics using Artistic Techniques": 1 + "1st Grade Science: Examining Recycling using DIY Trash-to-Treasure Crafts & Microscope Analysis of Bottle Cap Mosaics": 1 + "1st Grade Science: Understanding Recycling with DIY Trash-to-Treasure Crafts and Constructing Bottle Cap Mosaics using Magnetism": 1 + "1st Grade Science: Exploring Recycling with DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics using Solar Power": 1 + "1st Grade Science: Examining Recycling with DIY Trash-to-Treasure Crafts through 3D Printing of Bottle Cap Mosaics": 1 + "1st Grade Science: Investigating Recycling and Conservation through DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics": 1 + "1st Grade Science: Scrutinizing Recycling with DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics using Chromatography": 1 + "1st Grade Science: Analyzing Recycling with DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics using Digital Imaging": 1 + "1st Grade Science: Learning Recycling with DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics using Augmented Reality": 1 + "1st Grade Science: Discovering Recycling with DIY Trash-to-Treasure Crafts and Bottle Cap Mosaics using Ecological Footprint Concept.": 1 + "4th Grade Mathematics: Exploring Algebra Basics with TI-84 Calculators": 1 + "4th Grade Mathematics: Introduction to Algebra Using Graphing Calculators": 1 + "4th Grade Mathematics: Algebra Basics via Smartboard Technology": 1 + "4th Grade Mathematics: Leveraging Scientific Calculators for Algebra Basics": 1 + "4th Grade Mathematics: Algebra Basics with the Aid of Calculator Apps": 1 + "4th Grade Mathematics: Understanding Algebra with Geogebra Technology": 1 + "4th Grade Mathematics: Mastering Algebra Basics Using Casio Calculators": 1 + "4th Grade Mathematics: Exploring Algebraic Equations with iPad Apps": 1 + "4th Grade Mathematics: Simplifying Algebra Basics with the Aid of Desmos": 1 + "4th Grade Mathematics: Interactive Learning of Algebra Basics with Digital Whiteboards": 1 + "1st Grade Music: Exploring Harmony Through Rhythm with Tambourines and Hand Drums": 1 + "1st Grade Music: Understanding Harmony With Tambourines and Digital Metronomes": 1 + "1st Grade Music: Discovering Harmony using Tambourines and Music Notation Software": 1 + "1st Grade Music: Unveiling Harmony with Tambourine and Interactive Music Apps": 1 + "1st Grade Music: Learning Harmony with Tambourines and Introduction to Beat-Making": 1 + "1st Grade Music: Harmony Discovery Through Tambourine and Basic Sound Mixing Concepts": 1 + "1st Grade Music: Exploring Harmony with Tambourines and Pitch Recognition Tools": 1 + "1st Grade Music: Discovering Harmony using Tambourines and MIDI Controllers": 1 + "1st Grade Music: Harmony Exploration with Tambourines and Rhythm Pattern Recognition": 1 + "1st Grade Music: Understanding Harmony with the use of Tambourines and Digital Audio Workstations.": 1 + "Kindergarten Physical Education: Fun with Basic Soccer Skills Using Cones": 1 + "Kindergarten Physical Education: Enhancing Motor Skills with Hula Hoops": 1 + "Kindergarten Physical Education: Balance Beam Activities for Basic Gymnastics": 1 + "Kindergarten Physical Education: Learning Baseball Basics with Tee-ball Stand": 1 + "Kindergarten Physical Education: Basketball Skill Development with Mini Hoops": 1 + "Kindergarten Physical Education: Basic Volleyball Skills with Lighter Balls": 1 + "Kindergarten Physical Education: Track and Field Basics with Relay Batons": 1 + "Kindergarten Physical Education: Fun with Basic Tennis Skills using Soft Foam Balls": 1 + "Kindergarten Physical Education: Basic Hockey Skills using Plastic Hockey Sticks": 1 + "Kindergarten Physical Education: Learning to Jump Rope for Basic Athletic Skills": 1 + "5th Grade Science: Exploring the Mayans’ Agricultural Technology": 1 + "5th Grade Science: Unearthing the Mayans’ Star Mapping Techniques": 1 + "5th Grade Science: The Concept of Zero in Mayan Mathematics": 1 + "5th Grade Science: The Mayans and the Art of Pottery Making": 1 + "5th Grade Science: Understanding the Mayans’ Water Filtration System": 1 + "5th Grade Science: Discovering the Mayans’ Architectural Innovations": 1 + "5th Grade Science: The Mayans and their Advanced Calendar System": 1 + "5th Grade Science: The Mayans’ Use of Natural Resources for Medicine": 1 + "5th Grade Science: The Mayans’ Mastery of Weaving and Textile Technology": 1 + "5th Grade Science: Exploring the Mayans’ Methods of Food Preservation": 1 + "1st Grade Art and Color Theory: Exploring Watercolors": 1 + "1st Grade Art and Color Theory: Introduction to Clay Sculpting": 1 + "1st Grade Art and Color Theory: Discovering Digital Art with Tablets": 1 + "1st Grade Art and Color Theory: Fun with Collage Making": 1 + "1st Grade Art and Color Theory: Understanding Shadows and Light": 1 + "1st Grade Art and Color Theory: Creating Art with Recycled Materials": 1 + "1st Grade Art and Color Theory: Basics of Acrylic Painting": 1 + "1st Grade Art and Color Theory: Drawing with Charcoal and Pastels": 1 + "1st Grade Art and Color Theory: Beginning Origami Techniques": 1 + "1st Grade Art and Color Theory: Exploring Texture through Oil Pastels": 1 + "6th Grade History: Ancient Chinese Pagodas and the Use of Dou Gong Bracketing Systems": 1 + "6th Grade History: The Role of Woodworking Tools in Ancient Chinese Pagodas": 1 + "Exploring Carpentry Techniques in Ancient Chinese Pagodas: A 6th Grade History Course": 1 + "6th Grade History: The Impact of Cantilevered Architecture in Ancient Chinese Pagodas": 1 + "6th Grade History: The Use of Mortise and Tenon Joints in Ancient Chinese Pagodas": 1 + "6th Grade History: Ancient Chinese Pagodas and the Evolution of Bracketing Systems": 1 + "6th Grade History: The Influence of Tang Dynasty on Ancient Chinese Pagodas Bracketing Systems": 1 + "6th Grade History: Ancient Chinese Pagodas and the Role of Joinery Techniques": 1 + "Mastering the Art of Ancient Chinese Bracketing Systems in Pagodas: A 6th Grade History Course": 1 + "6th Grade History: Innovations in Bracketing Systems in Ancient Chinese Pagodas": 1 + "4th Grade Mathematics: Understanding Fractions with Number Lines": 1 + "4th Grade Mathematics: Basics of Fractions using Fraction Bars": 1 + "4th Grade Mathematics: Introduction to Fractions with Manipulatives": 1 + "4th Grade Mathematics: Fraction Exploration with Fraction Circles": 1 + "4th Grade Mathematics: Simplifying Fractions with Fraction Tiles": 1 + "4th Grade Mathematics: Mastery of Fractions with Interactive Whiteboard ": 1 + "4th Grade Mathematics: Fraction Fundamentals using Fraction Strips": 1 + "4th Grade Mathematics: Fraction Operations with Digital Fraction Tools": 1 + "4th Grade Mathematics: Basics of Fractions with Fraction Models": 1 + "4th Grade Mathematics: Fraction Concepts using Fraction Wall.": 1 + "2nd Grade Mathematics: Boosting Addition and Subtraction Skills with Tangram Puzzles and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Tangram Puzzles and iPads for Improved Addition and Subtraction": 1 + "2nd Grade Mathematics: Learning Addition and Subtraction through Tangram Puzzles and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Enhancing Arithmetic Skills with Tangram Puzzles and Math Apps": 1 + "2nd Grade Mathematics: Utilizing Tangram Puzzles and Smartboard for Addition and Subtraction Mastery": 1 + "2nd Grade Mathematics: Application of Tangram Puzzles and Digital Worksheets in Addition and Subtraction": 1 + "2nd Grade Mathematics: Integration of Tangram Puzzles and Math Software to Improve Addition and Subtraction": 1 + "2nd Grade Mathematics: Tangram Puzzles and E-Learning Platforms in Boosting Addition and Subtraction Skills": 1 + "2nd Grade Mathematics: Enhancing Numeracy Skills through Tangram Puzzles and Online Math Games": 1 + "2nd Grade Mathematics: Tangram Puzzles and EdTech Tools for Effective Mastery of Addition and Subtraction.": 1 + "2nd Grade: Exploring Communities through Maps in Social Studies": 1 + "2nd Grade: Understanding Communities using Digital Technology in Social Studies": 1 + "2nd Grade: Learning about Communities with Interactive Presentations in Social Studies": 1 + "2nd Grade: Discovering Communities through Virtual Tours in Social Studies": 1 + "2nd Grade: Studying Communities using Statistical Data in Social Studies": 1 + "2nd Grade: Learning about Communities through Historical Artifacts in Social Studies": 1 + "2nd Grade: Examining Communities using Google Earth in Social Studies": 1 + "2nd Grade: Investigating Communities through Local Field Trips in Social Studies": 1 + "2nd Grade: Learning about Communities using Augmented Reality in Social Studies": 1 + "2nd Grade: Analyzing Communities with Census Data in Social Studies": 1 + "2nd Grade: Exploring Communities through Documentaries in Social Studies.": 1 + "9th Grade English: Analyzing Shakespeare’s Prose using Google’s Natural Language API and Sentiment Analysis": 1 + "9th Grade English: Exploring Shakespeare’s Prose with IBM Watson’s AI Language Processing and Sentiment Analysis": 1 + "9th Grade English: Unpacking Shakespeare’s Prose using Python’s NLTK for Sentiment Analysis": 1 + "9th Grade English: Deciphering Shakespeare’s Prose using Microsoft’s Azure AI Language Processing and Sentiment Analysis": 1 + "9th Grade English: Investigating Shakespeare’s Prose using OpenAI’s GPT-3 Language Processing and Sentiment Analysis": 1 + "9th Grade English: Examining Shakespeare’s Prose with the aid of Amazon’s Comprehend for Language Processing and Sentiment Analysis": 1 + "9th Grade English: Delving into Shakespeare’s Prose using RASA’s NLU Language Processing Tools and Sentiment Analysis": 1 + "9th Grade English: Unraveling Shakespeare’s Prose using BERT AI Model for Language Processing and Sentiment Analysis": 1 + "9th Grade English: Studying Shakespeare’s Prose using Stanford’s CoreNLP for Language Processing and Sentiment Analysis": 1 + "9th Grade English: Interpreting Shakespeare’s Prose with the use of Facebook’s fastText for Language Processing and Sentiment Analysis.": 1 + "Kindergarten Art: Introduction to Architecture with Wooden Blocks - An Exploration of Geometric Shapes and Space": 1 + "Kindergarten Art: Exploring Shape and Space with Lego Blocks - A Basic Guide to Architecture": 1 + "Kindergarten Art: Introduction to Architecture using Magnetic Blocks - Understanding Shape and Space": 1 + "Kindergarten Art: Architecture Basics with Foam Blocks - A Journey into Shape and Space": 1 + "Kindergarten Art: The World of Architecture with Cardboard Blocks - Delving into Shape and Space": 1 + "Kindergarten Art: Architecture Fundamentals using 3D Printed Blocks - Investigating Shape and Space": 1 + "Kindergarten Art: Discovering Architecture with Stacking Blocks - The Study of Shape and Space": 1 + "Kindergarten Art: Architecture Insights with Plastic Blocks - The Exploration of Shape and Space": 1 + "Kindergarten Art: Learning Architecture through Recycled Blocks - Unraveling the Mysteries of Shape and Space": 1 + "Kindergarten Art: Architecture 101 with Building Blocks - A Close Look at Shape and Space": 1 + "6th Grade Language Arts: Exploring Story Elements through Character Development": 1 + "6th Grade Language Arts: Exploring Story Elements using Digital Storytelling Technology": 1 + "6th Grade Language Arts: Examination of Plot Structure in Story Elements": 1 + "6th Grade Language Arts: Exploring Story Elements with Interactive Online Games": 1 + "6th Grade Language Arts: Exploring Setting in Story Elements using Virtual Reality": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution": 1 + "6th Grade Language Arts: Exploring Story Elements using The Hero’s Journey Concept": 1 + "6th Grade Language Arts: A Deep Dive into Symbols in Story Elements": 1 + "6th Grade Language Arts: Story Elements Exploration through the Use of Graphic Organizers": 1 + "6th Grade Language Arts: Discovering Foreshadowing as a Story Element.": 1 + "6th Grade Music: Exploring The Magic of Classical Compositions through Piano ": 1 + "6th Grade Music: The Magic of Classical Compositions: An Introduction to Violin ": 1 + "6th Grade Music: Discovering Classical Compositions through the Lens of Music Theory ": 1 + "6th Grade Music: The Magic of Classical Compositions: A Study of Sheet Music ": 1 + "6th Grade Music: Classical Compositions and the Art of Conducting ": 1 + "6th Grade Music: The Magic of Classical Compositions with the Flute ": 1 + "6th Grade Music: The Magic of Classical Compositions: The Role of the Harpsichord ": 1 + "6th Grade Music: Mastering the Magic of Classical Compositions with Digital Audio Workstations ": 1 + "6th Grade Music: The Magic of Classical Compositions: An Introduction to the Cello ": 1 + "6th Grade Music: The Magic of Classical Compositions: Understanding through Orchestration": 1 + "1st Grade Music: Understanding Rhythm and Melody with GarageBand": 1 + "1st Grade Music: Exploring Melody and Rhythm through Audacity": 1 + "Understanding Rhythm and Melody: A Course in Music Notation Software for 1st Graders": 1 + "1st Grade Music: Introduction to Rhythm and Melody using Ableton Live": 1 + "1st Grade Music: Discovering Rhythm and Melody with FL Studio": 1 + "1st Grade Music: Learning Rhythm and Melody through Pro Tools": 1 + "1st Grade Music: Understanding Rhythm and Melody with Cubase": 1 + "Exploring Rhythm and Melody with Logic Pro: A Course for 1st Graders": 1 + "1st Grade Music: Experiencing Rhythm and Melody with Reason": 1 + "Understanding Rhythm and Melody: A 1st Grade Course in Digital Audio Workstations.": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and Its Navigation Uses": 1 + "2nd Grade History: Unveiling the Compass: A Deep Dive into Ancient Chinese Navigational Tools": 1 + "2nd Grade History: The Compass and Papermaking: A Journey into Ancient Chinese Inventions": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and The Art of Calligraphy": 1 + "2nd Grade History: Exploration of the Compass: Ancient Chinese Innovation and the Silk Road": 1 + "2nd Grade History: The Compass and The Great Wall: A Study on Ancient Chinese Technology": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and Gunpowder Impact": 1 + "2nd Grade History: The Compass and Porcelain: Unraveling Ancient Chinese Craftsmanship": 1 + "2nd Grade History: Compass Mastery: Ancient Chinese Inventions and Maritime History": 1 + "2nd Grade History: Ancient Chinese Inventions: From The Compass to Kite Making.": 1 + "4th Grade Language Arts: Exploring Greek Mythology with Anki Digital Flashcards": 1 + "4th Grade Language Arts: Using Quizlet Flashcards for Interactive Learning of Greek Mythology": 1 + "4th Grade Language Arts: Engaging Greek Mythology Study with Kahoot Games and Digital Flashcards": 1 + "4th Grade Language Arts: Leveraging Nearpod for Interactive Greek Mythology Lessons with Digital Flashcards": 1 + "4th Grade Language Arts: Incorporating Edpuzzle in Interactive Learning of Greek Mythology with Digital Flashcards": 1 + "4th Grade Language Arts: Greek Mythology Exploration with Socrative and Digital Flashcards": 1 + "4th Grade Language Arts: Interactive Learning of Greek Mythology using Google Classroom and Digital Flashcards": 1 + "4th Grade Language Arts: Greek Mythology Learning through Microsoft Teams and Digital Flashcards": 1 + "4th Grade Language Arts: Understanding Greek Mythology with ClassDojo and Digital Flashcards": 1 + "4th Grade Language Arts: Immersive Learning of Greek Mythology using Seesaw and Digital Flashcards": 1 + "11th Grade Mathematics: Utilizing Wolfram Alpha and Desmos Graphing Calculator for Simplifying Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Leverage Wolfram Alpha and Python Programming for Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Using Wolfram Alpha and Geogebra for Radical Expressions in Quadratic Algebra": 1 + "11th Grade Mathematics: Solving Radical Expressions in Algebra with Wolfram Alpha and TI-84 Calculator": 1 + "11th Grade Mathematics: Integrating Wolfram Alpha with MS Excel for Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Harnessing Wolfram Alpha and Mathway for Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Applying Wolfram Alpha and MATLAB for Radical Expressions in Algebraic Equations": 1 + "11th Grade Mathematics: Exploring Radical Expressions in Algebra using Wolfram Alpha and Scientific Calculator": 1 + "11th Grade Mathematics: Wolfram Alpha and Google Sheets Collaboration for Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Unfolding Radical Expressions in Algebra with Wolfram Alpha and Graphing Calculator App.": 1 + "5th Grade English: Understanding Classic Literature through Character Analysis": 1 + "5th Grade English: Exploring Classic Literature using Interactive E-books": 1 + "5th Grade English: Exploring Classic Literature with Annotation Tools": 1 + "5th Grade English: Improving Comprehension of Classic Literature through Story Mapping": 1 + "5th Grade English: Exploring Classic Literature using Digital Storytelling Tools": 1 + "5th Grade English: Exploring Classic Literature and Vocabulary Development": 1 + "5th Grade English: Exploring Classic Literature using Audio Books": 1 + "5th Grade English: Analyzing Themes in Classic Literature using Graphic Organizers": 1 + "5th Grade English: Exploring Classic Literature through Role-Play and Drama Techniques": 1 + "5th Grade English: Exploring Classic Literature with Text-to-Speech Software": 1 + "5th Grade English: Engaging with Classic Literature through Gamified Learning": 1 + "9th Grade Language Arts: Mastering Persuasive Writing Through the Use of Rhetorical Devices": 1 + "9th Grade Language Arts: Perfecting Persuasive Writing Using Google Docs Collaboration": 1 + "9th Grade Language Arts: Enhancing Persuasive Writing with Argumentative Structures": 1 + "9th Grade Language Arts: Excelling in Persuasive Writing Using Mind Mapping Techniques": 1 + "9th Grade Language Arts: Mastering Persuasive Writing with Interactive Whiteboard Sessions": 1 + "9th Grade Language Arts: Improving Persuasive Writing Utilizing Peer Review Strategies": 1 + "9th Grade Language Arts: Developing Persuasive Writing Skills Through the Application of Ethos, Pathos, and Logos": 1 + "9th Grade Language Arts: Mastering Persuasive Writing with the Aid of Digital Storytelling Tools": 1 + "9th Grade Language Arts: Advancing Persuasive Writing Skills Using Grammarly for Error Checking": 1 + "9th Grade Language Arts: Excelling in Persuasive Writing Through the Exploration of Propaganda Techniques.": 1 + "7th Grade Algebra: Unlocking the Mystery of Numbers and Variables with Graphing Calculators": 1 + "The World of Expressions and Equations: A Deep Dive into 7th Grade Algebra Using Python Programming": 1 + "7th Grade Algebra: Exploring the Mystery of Numbers and Variables through Quadratic Equations": 1 + "The World of Expressions and Equations: 7th Grade Algebra with a Focus on Linear Relationships": 1 + "7th Grade Algebra: Numbers, Variables, and the Power of the TI-84 Calculator": 1 + "Discovering the Mystery of 7th Grade Algebra: The Role of Factoring in Expressions and Equations": 1 + "The World of Expressions and Equations: Understanding 7th Grade Algebra through the Lens of Geometry": 1 + "7th Grade Algebra: The Mystery of Numbers, Variables, and the Impact of Microsoft Excel": 1 + "The World of Expressions and Equations: 7th Grade Algebra Utilizing Real-World Data Analysis": 1 + "7th Grade Algebra: Mapping the Mystery of Numbers and Variables with Coordinate Planes.": 1 + "6th Grade Music: Basics of Reading Sheet Music with the Aid of a Metronome": 1 + "6th Grade Music: Exploring Sheet Music through the use of Digital Music Software": 1 + "6th Grade Music: Understanding Sheet Music with the Piano as a Tool": 1 + "6th Grade Music: Mastering Notation on Sheet Music using Music Theory": 1 + "6th Grade Music: The Role of the Treble Clef in Reading Sheet Music": 1 + "6th Grade Music: Basics of Reading Sheet Music focusing on Rhythm Notation": 1 + "6th Grade Music: Learning to Read Sheet Music through Interactive Music Apps": 1 + "6th Grade Music: Comprehending Sheet Music by Studying Tempo Markings": 1 + "6th Grade Music: Unveiling the Secrets of Sheet Music with Key Signatures": 1 + "6th Grade Music: Enhancing Sheet Music Reading Skills through Music Transcription Software.": 1 + "11th Grade Music: Exploring the History of Jazz through the Saxophone": 1 + "11th Grade Music: The Influence of Recording Technology on Jazz History": 1 + "11th Grade Music: The Role of the Piano in the Evolution of Jazz": 1 + "11th Grade Music: History of Jazz: The Impact of Improvisation": 1 + "11th Grade Music: Understanding Jazz History Through Bebop": 1 + "11th Grade Music: Study of Jazz History: The Emergence of Swing": 1 + "11th Grade Music: Jazz History and the Influence of the Trumpet": 1 + "11th Grade Music: Exploring Jazz History Through the Lens of Scat Singing": 1 + "11th Grade Music: Jazz History: The Development of Big Band": 1 + "11th Grade Music: The Rise of Electric Instruments in Jazz History": 1 + "4th Grade English: Improving Reading Comprehension through Digital Storytelling": 1 + "4th Grade English: Enhancing Reading Comprehension through Story Mapping": 1 + "4th Grade English: Boosting Reading Comprehension using Interactive Storytelling Apps": 1 + "4th Grade English: Reading Comprehension through Storytelling with Audiobooks": 1 + "4th Grade English: Visualizing for Reading Comprehension through Storyboarding": 1 + "4th Grade English: Reading Comprehension through Storytelling and E-Books": 1 + "4th Grade English: Reading Comprehension Improvement with Animated Storytelling": 1 + "4th Grade English: Deepening Reading Comprehension through Storytelling with Podcasts": 1 + "4th Grade English: Reading Comprehension Enhancement through Virtual Reality Storytelling": 1 + "4th Grade English: Strengthening Reading Comprehension using Storytelling with Graphic Novels": 1 + "9th Grade Social Studies: Exploring World Cultures through the Lens of Google Earth": 1 + "9th Grade Social Studies: Introduction to World Cultures via Virtual Reality Technology": 1 + "9th Grade Social Studies: Understanding World Cultures through Anthropological Concepts": 1 + "9th Grade Social Studies: A Journey through World Cultures with Interactive Timelines": 1 + "9th Grade Social Studies: Introduction to World Cultures Using Augmented Reality": 1 + "9th Grade Social Studies: Analyzing World Cultures through Data Visualization Tools": 1 + "9th Grade Social Studies: Introduction to World Cultures and the Concept of Global Citizenship": 1 + "9th Grade Social Studies: Discovering World Cultures through the Power of Social Media": 1 + "9th Grade Social Studies: Introduction to World Cultures Utilizing Digital Storytelling": 1 + "9th Grade Social Studies: Exploring World Cultures through Interactive Mapping Technology": 1 + "Advanced 3rd Grade Mathematics: Mastering Division Techniques through Partitioning with Abacus": 1 + "In-depth 3rd Grade Math: Division Techniques using Partitioning and Visual Aids": 1 + "Comprehensive 3rd Grade Mathematics: Division Techniques using Partitioning and Base-10 Blocks": 1 + "Enhanced 3rd Grade Mathematics: Utilizing Partitioning and Interactive Whiteboards for Division Techniques": 1 + "Intensive 3rd Grade Mathematics: Division Techniques using Partitioning and Math Manipulatives": 1 + "Specialized 3rd Grade Mathematics: Division Techniques using Partitioning and iPad Apps": 1 + "Superior 3rd Grade Mathematics: Division Techniques using Partitioning and Virtual Reality Tools": 1 + "Detailed 3rd Grade Mathematics: Division Techniques using Partitioning and Smart Board Technology": 1 + "Thorough 3rd Grade Mathematics: Division Techniques using Partitioning and Place Value Concept": 1 + "Expert 3rd Grade Mathematics: Division Techniques using Partitioning and Montessori Materials.": 1 + "5th Grade Mathematics: Mastering Decimals with Base-10 Blocks and Virtual Manipulatives": 1 + "Incorporating Fraction Bars: A Deep Dive into 5th Grade Mathematics and Decimals": 1 + "5th Grade Mathematics: Understanding Decimals through Base-10 Blocks and Number Lines": 1 + "Grasping Decimals in 5th Grade Mathematics: A Focus on Base-10 Blocks and Interactive Whiteboards": 1 + "5th Grade Mathematics: Understanding Decimals with Base-10 Blocks and Graph Paper Techniques": 1 + "5th Grade Mathematics: Decoding Decimals Using Base-10 Blocks and Geoboard Strategies": 1 + "Applying Abacus in 5th Grade Mathematics: Comprehending Decimals through Base-10 Blocks": 1 + "5th Grade Mathematics: Enhancing Decimals Understanding using Base-10 Blocks and SMART Board": 1 + "5th Grade Mathematics: Decimals and Base-10 Blocks with Incorporation of iPads ": 1 + "5th Grade Mathematics: Base-10 Blocks, Decimals, and the Use of Online Math Games.": 1 + "6th Grade Social Studies: The Impact of Alan Turing and His Machine on Computer History - Focusing on The Enigma Machine": 1 + "6th Grade Social Studies: Alan Turing’s Influence and the Advent of Binary Code in Computing History": 1 + "6th Grade Social Studies: How Turing’s Machine Paved The Path for Modern Day Algorithms": 1 + "6th Grade Social Studies: Alan Turing’s Contribution and the Evolution of Artificial Intelligence": 1 + "6th Grade Social Studies: The Impact of Turing Machine on the Development of Programming Languages": 1 + "6th Grade Social Studies: Decoding Computer History - Alan Turing and the Universal Turing Machine": 1 + "6th Grade Social Studies: Alan Turing’s Machine and Its Role in the Advancement of Digital Computers": 1 + "6th Grade Social Studies: Turing’s Impact on Cryptography in Computer History": 1 + "6th Grade Social Studies: Alan Turing’s Machine - The Foundation of Microprocessing Technology": 1 + "6th Grade Social Studies: Alan Turing, His Machine and Their Influence on Computerized Coding Systems": 1 + "2nd Grade Language Arts: Developing Creative Storytelling using Augmented Reality and Tilt Brush": 1 + "2nd Grade Language Arts: Enhancing Narrative Skills with AR and Google Expeditions": 1 + "2nd Grade Language Arts: Fostering Creativity Through AR and Unity 3D Storytelling": 1 + "2nd Grade Language Arts: Immersive Storytelling with AR and Aurasma": 1 + "2nd Grade Language Arts: AR Storytelling using MetaVerse for Creative Expression": 1 + "2nd Grade Language Arts: Interactive Storytelling with AR and Blippar": 1 + "2nd Grade Language Arts: Inspiring Creativity with AR and Storyfab": 1 + "2nd Grade Language Arts: Creative Storytelling with AR and Apple’s ARKit": 1 + "2nd Grade Language Arts: Engaging Storytelling with AR and Snap Lens Studio": 1 + "2nd Grade Language Arts: Innovative Storytelling using AR and Amazon Sumerian": 1 + "5th Grade Physical Education: Soccer Team Dynamics and Cooperation": 1 + "5th Grade Physical Education: Volleyball Techniques and Team Cooperation": 1 + "5th Grade Physical Education: Team Sports and Cooperation Using Heart Rate Monitors": 1 + "5th Grade Physical Education: Basketball Teamwork and Strategy Development": 1 + "5th Grade Physical Education: Team Sports, Sportsmanship, and Digital Scoring Systems": 1 + "5th Grade Physical Education: Cooperative Learning through Baseball": 1 + "5th Grade Physical Education: Team Sports and Cooperation - A Focus on Lacrosse ": 1 + "5th Grade Physical Education: Using Fitness Trackers in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Team Sports and Cooperation - Exploring Rugby Tactics": 1 + "5th Grade Physical Education: Team Sports and Cooperation - Hockey Strategy Essentials.": 1 + "8th Grade Music: Exploring MIDI Controllers in Ableton Live for Loop Pedal Music Production": 1 + "Mastering the Launchpad: An 8th Grade Music Course on Ableton Live and Loop Pedal Music Production": 1 + "8th Grade Music: Using Ableton Live and Audio Interfaces in Loop Pedal Music Production": 1 + "Audio Sampling in 8th Grade Music: A Module on Ableton Live and Loop Pedal Music Production": 1 + "8th Grade Music: An Introduction to Digital Audio Workstations with Ableton Live in Loop Pedal Music Production": 1 + "8th Grade Music: Incorporating Synthesis in Ableton Live for Loop Pedal Music Production": 1 + "Beat Making in 8th Grade Music: Using Ableton Live and Loop Pedals": 1 + "Mixing and Mastering in 8th Grade Music: A Course on Ableton Live and Loop Pedal Music Production": 1 + "8th Grade Music: Sound Design with Virtual Instruments in Ableton Live for Loop Pedal Music Production": 1 + "8th Grade Music: Understanding EQ and Compression in Ableton Live for Loop Pedal Music Production": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables using Interactive Flashcards": 1 + "3rd Grade Mathematics: Mastery of Multiplication through Times Tables with Abacus Techniques": 1 + "3rd Grade Mathematics: Times Tables and Multiplication Mastery with SMART Board Activities": 1 + "3rd Grade Mathematics: Multiplication Mastery and Times Tables using Number Lines": 1 + "3rd Grade Mathematics: Times Tables and Multiplication Mastery through Digital Apps": 1 + "3rd Grade Mathematics: Multiplication Mastery with Times Tables using Virtual Reality Tools": 1 + "3rd Grade Mathematics: Times Tables and Multiplication Mastery with Manipulatives": 1 + "3rd Grade Mathematics: Mastery of Multiplication through Times Tables with Grid Method": 1 + "3rd Grade Mathematics: Multiplication Mastery with Times Tables using Online Quizzes": 1 + "3rd Grade Mathematics: Times Tables Mastery and Multiplication with Computer Games.": 1 + "3rd Grade English: An Introduction to Narratives with Personal Essays": 1 + "3rd Grade English: Exploring Narratives through Story Mapping Techniques": 1 + "3rd Grade English: Understanding Narratives via Digital Storytelling": 1 + "3rd Grade English: An Introduction to Narratives and the Art of Storyboarding": 1 + "3rd Grade English: An Exploration of Narratives using Graphic Organizers": 1 + "3rd Grade English: Narratives and Character Development Techniques": 1 + "3rd Grade English: An Introduction to Narratives with Focus on Plot Structure": 1 + "3rd Grade English: Unpacking Narratives through Interactive Whiteboard Activities": 1 + "3rd Grade English: Narratives and the Use of Online Storytelling Platforms": 1 + "3rd Grade English: An Introduction to Narratives with Emphasis on Conflict Resolution.": 1 + "2nd Grade Health: Exploring Nutrition Basics through Food Pyramid": 1 + "2nd Grade Health: Understanding Nutrition Basics with Interactive Food Plate Games": 1 + "2nd Grade Health: Decoding Nutrition Basics using Calorie Counting Apps": 1 + "2nd Grade Health: Grasping Nutrition Basics through Cooking Demonstrations": 1 + "2nd Grade Health: Investigating Nutrition Basics with Dietary Software": 1 + "2nd Grade Health: Studying Nutrition Basics using Virtual Reality Fruit and Veggie Adventures": 1 + "2nd Grade Health: Learning Nutrition Basics through Food Group Sorting Activities": 1 + "2nd Grade Health: Discovering Nutrition Basics using Body Mass Index Calculations": 1 + "2nd Grade Health: Unpacking Nutrition Basics through Meal Planning Software": 1 + "2nd Grade Health: Mastering Nutrition Basics with Healthy Snack-Making Workshops": 1 + "2nd Grade Social Studies: Exploring Our Local Community with Google Maps and Street View": 1 + "2nd Grade Social Studies: Utilizing Google Earth to Explore Our Local Community": 1 + "2nd Grade Social Studies: Understanding Our Local Community through Google Maps and GPS Technology": 1 + "2nd Grade Social Studies: Investigating Our Local Community with Google Maps and Satellite Imagery": 1 + "2nd Grade Social Studies: Exploring Our Local Community with Google Maps and Interactive 3D Views": 1 + "2nd Grade Social Studies: Learning About Our Community Through Google Maps and Geocaching": 1 + "2nd Grade Social Studies: Navigating Our Local Community with Google Maps and Compass Tools": 1 + "2nd Grade Social Studies: Discovering Our Local Community with Google Maps and Virtual Reality": 1 + "2nd Grade Social Studies: Interacting with Our Local Community via Google Maps and Augmented Reality": 1 + "2nd Grade Social Studies: Studying Our Local Community with Google Maps and Layering Features": 1 + "3rd Grade Environmental Science: Decoding Photosynthesis with Solar Energy Kits and Chlorophyll Concentration Measurement ": 1 + "3rd Grade Environmental Science: Unraveling Photosynthesis Using Solar Energy Kits and Spectrophotometer": 1 + "3rd Grade Environmental Science: Exploring Photosynthesis Through Solar Energy Kits and Leaf Disk Assay ": 1 + "3rd Grade Environmental Science: Understanding Photosynthesis with Solar Energy Kits and Microscopic Cell Observation": 1 + "3rd Grade Environmental Science: Investigating Photosynthesis Using Solar Energy Kits and Carbon Dioxide Sensors ": 1 + "3rd Grade Environmental Science: Studying Photosynthesis with Solar Energy Kits and Light Intensity Meters": 1 + "3rd Grade Environmental Science: Unveiling Photosynthesis Secrets Using Solar Energy Kits and Stoma Count Experiment": 1 + "3rd Grade Environmental Science: Deciphering Photosynthesis with Solar Energy Kits and Colorimeter": 1 + "3rd Grade Environmental Science: Examining Photosynthesis Using Solar Energy Kits and pH Indicators": 1 + "3rd Grade Environmental Science: Uncovering Photosynthesis Using Solar Energy Kits and Energy Flow Diagrams": 1 + "Fourth Grade History: The Impact of the Gutenberg Printing Press During the American Revolution": 1 + "Fourth Grade History: The Role of the Printing Press and Pamphlets During the American Revolution": 1 + "Fourth Grade History: The Printing Press and its Influence on Communication During the American Revolution": 1 + "The Influence of the Printing Press and Typography on the American Revolution: A Fourth Grade History Course": 1 + "Fourth Grade History: The Printing Press and its Role in Propaganda During the American Revolution": 1 + "Fourth Grade History: The Spread of Revolutionary Ideas Through the Printing Press in the American Revolution": 1 + "Fourth Grade History: The Impact of the Printing Press and Newspaper Reportage During the American Revolution": 1 + "Fourth Grade History: The Printing Press, Broadsides, and their Role in the American Revolution": 1 + "Fourth Grade History: Exploring the Impact of the Printing Press and Political Cartoons During the American Revolution": 1 + "The Printing Press and Colonial Literature: Their Impact on the American Revolution - A Fourth Grade History Course": 1 + "Primary Mathematics: Understanding Multiplication and Division Using Abacus": 1 + "Primary Mathematics: Exploring Multiplication and Division Through Excel": 1 + "Primary Mathematics: Multiplication and Division Mastery with Number Lines": 1 + "Primary Mathematics: Understanding Multiplication and Division Through the Lens of Matrix Theory": 1 + "Primary Mathematics: Utilizing Fraction Bars to Understand Multiplication and Division": 1 + "Primary Mathematics: Multiplication and Division Comprehension Through Graphing Calculators": 1 + "Primary Mathematics: The Role of Arrays in Understanding Multiplication and Division": 1 + "Primary Mathematics: Binary System Approach to Multiplication and Division": 1 + "Primary Mathematics: Exploring Multiplication and Division Through Python Programming": 1 + "Primary Mathematics: Multiplication and Division Interpretation Through Base Ten Blocks": 1 + "7th Grade Language Arts: Analyzing the Metaphorical Language in Robert Frost’s The Road Not Taken using eBeam Interactive Whiteboards and Padlet": 1 + "Exploring Symbolism in Robert Frost’s Stopping by Woods on a Snowy Evening with eBeam Interactive Whiteboards, Padlet and Google Docs in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Understanding the Theme of Robert Frost’s Birches through eBeam Interactive Whiteboards, Padlet and Prezi Presentations": 1 + "Deconstructing Robert Frost’s Mending Wall: A 7th Grade Language Arts Course Using eBeam Interactive Whiteboards, Padlet and Quizlet for Vocabulary Building": 1 + "7th Grade Language Arts: eBeam Interactive Whiteboards, Padlet and Kahoot Quizzes for Comprehending After Apple-Picking by Robert Frost": 1 + "Appreciating Robert Frost’s Nothing Gold Can Stay in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet and Audible for Poetry Recitation": 1 + "7th Grade Language Arts: Unpacking the Imagery in Robert Frost’s Fire and Ice using eBeam Interactive Whiteboards, Padlet and MindMeister for Mind Mapping": 1 + "Delving into Robert Frost’s Desert Places: A 7th Grade Language Arts Course Leveraging eBeam Interactive Whiteboards, Padlet and Flipgrid for Peer Discussions": 1 + "Understanding the Tone of Robert Frost’s Out, Out in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet and YouTube for Video Narrations": 1 + "Exploring the Alliteration in Robert Frost’s Acquainted with the Night with eBeam Interactive Whiteboards, Padlet and Educreations Interactive Whiteboard in 7th Grade Language Arts": 1 + "2nd Grade Science: Exploring Life Cycles with Microscopes": 1 + "2nd Grade Science: Understanding Life Cycles through Interactive Digital Models": 1 + "2nd Grade Science: Life Cycles and Butterfly Metamorphosis with Virtual Reality": 1 + "2nd Grade Science: Studying Life Cycles using Time-Lapse Photography": 1 + "2nd Grade Science: Life Cycles and Frog Development through 3D Printing ": 1 + "2nd Grade Science: Investigating Plant Life Cycles with GroLab Kits": 1 + "2nd Grade Science: Life Cycles and Mobile Apps for Interactive Learning": 1 + "2nd Grade Science: Life Cycles Explored through Augmented Reality": 1 + "2nd Grade Science: Life Cycles and the Concept of Metamorphosis with Projector Presentations": 1 + "2nd Grade Science: Examining Life Cycles using Science Experiment Kits.": 1 + "6th Grade History: The Impact of the Ox-drawn Plow and Copper Mining on Ancient Mesopotamian Civilization": 1 + "Ancient Agricultural Revolution: The Influence of the Ox-drawn Plow and Irrigation Systems in 6th Grade History": 1 + "6th Grade History: Impact of Ox-drawn Plow on Ancient Civilizations and the Development of Sundial Technology in Early Astronomy": 1 + "6th Grade History: Understanding the Influence of the Ox-drawn Plow and Bronze Age Tools on Ancient Civilizations": 1 + "6th Grade History: The Role of the Ox-drawn Plow in Ancient Civilizations and the Introduction of the Astrolabe in Early Astronomy": 1 + "6th Grade History: Ox-drawn Plow’s Impact on Ancient Civilizations and the Adoption of the Quadrant in Early Astronomy": 1 + "6th Grade History: Exploring the Effects of the Ox-drawn Plow and Pottery Wheel on Ancient Civilizations": 1 + "6th Grade History: The Ox-drawn Plow’s Contribution to Ancient Civilizations and the Evolution of the Sextant in Early Astronomy": 1 + "6th Grade History: The Impact of the Ox-drawn Plow and Stone Tools on Ancient Civilizations": 1 + "6th Grade History: The Ox-drawn Plow, Ancient Civilizations, and the Emergence of Celestial Navigation in Early Astronomy": 1 + "5th Grade Science: Understanding the Universe with the Hubble Space Telescope": 1 + "5th Grade Science: Analyzing the Solar System using Spectroscopy": 1 + "5th Grade Science: Probing the Cosmos via Radio Astronomy": 1 + "5th Grade Science: Grasping the Universe with Infrared Telescopes": 1 + "5th Grade Science: Interpreting Space through the Concept of Light Years": 1 + "5th Grade Science: Stellar Observations with Parallax Measurement": 1 + "5th Grade Science: Space Exploration using Doppler Effect Concepts": 1 + "5th Grade Science: Unraveling the Solar System with the Advanced X-Ray Telescope": 1 + "5th Grade Science: A Journey through the Universe with the Kepler Space Telescope": 1 + "5th Grade Science: The Solar System and Beyond - Decoding Space with the Redshift Phenomenon": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly and Google Docs": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing on iPads using Grammarly with the Aid of Notability": 1 + "4th Grade Language Arts: Improving Paragraph Writing on iPads using Grammarly and iA Writer ": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly and MindNode for Brainstorming ": 1 + "4th Grade Language Arts: Developing Paragraph Writing Skills on iPads using Grammarly and ProWritingAid": 1 + "4th Grade Language Arts: Excelling in Paragraph Writing on iPads using Grammarly and Scrivener for Drafting": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly and Pages for Formatting ": 1 + "4th Grade Language Arts: Advancing Paragraph Writing on iPads using Grammarly and Evernote for Note-Taking": 1 + "4th Grade Language Arts: Refining Paragraph Writing on iPads using Grammarly and Dropbox for File Sharing": 1 + "4th Grade Language Arts: Perfecting Paragraph Writing on iPads using Grammarly and Microsoft Word for Editing.": 1 + "10th Grade Social Studies: A Detailed Examination of Tanks in World War II": 1 + "Exploration of Propaganda Techniques during World War II: A 10th Grade Social Studies Course": 1 + "10th Grade Social Studies: Overview of Atomic Bomb Technology in World War II": 1 + "10th Grade Social Studies: The Role of Radar Technology in World War II": 1 + "Decoding the Enigma: Cryptography in World War II - A 10th Grade Social Studies Course": 1 + "10th Grade Social Studies: Understanding World War II through the Lens of Economic Policies": 1 + "10th Grade Social Studies: The Impact of Aircraft Carriers in World War II": 1 + "10th Grade Social Studies: The Strategic Significance of Radio Communication in World War II": 1 + "10th Grade Social Studies: World War II Overview with a Focus on Medical Advances": 1 + "A Study of World War II Submarine Warfare: A 10th Grade Social Studies Course.": 1 + "8th Grade Social Studies: Understanding Democracy with Ethereum Blockchain Technology": 1 + "Exploring Government Structures through the Application of Smart Contracts in Blockchain, for 8th Grade Students": 1 + "8th Grade Social Studies: Exploring Democracy and Government using Decentralization Concept in Blockchain Technology": 1 + "An In-depth Study of Democracy: Analysis of Government Structures through Blockchain’s Proof of Stake for 8th Graders": 1 + "8th Grade Social Studies: Exploring Democracy and Government using Cryptographic Security in Blockchain Technology": 1 + "Fostering Understanding of Democracy: Government Analysis with Blockchain’s Peer-to-Peer Network for 8th Graders": 1 + "8th Grade Social Studies: A Study of Democracy and Government through the Transparency of Blockchain Technology": 1 + "Exploring Democracy and Government in 8th Grade Social Studies using Blockchain’s Distributed Ledgers": 1 + "Blockchain’s Consensus Algorithms: A Tool for 8th Grade Students to Explore Democracy and Government": 1 + "8th Grade Social Studies: Navigating Democracy and Government through the Interplay of Cryptocurrency and Blockchain Technology.": 1 + "9th Grade Mathematics: Introduction to Algebra with Graphing Calculators ": 1 + "Algebra Basics for 9th Grade: Incorporating the Pythagorean Theorem": 1 + "9th Grade Mathematics: Algebra Basics using Google Classroom": 1 + "Understanding Algebra Basics in 9th Grade: Utilizing the Quadratic Formula": 1 + "9th Grade Algebra: Exploring Basics with Geometric Sequences": 1 + "9th Grade Algebra Basics: A Dive into Linear Equations": 1 + "9th Grade Mathematics: Mastering Algebra Basics with Polynomials": 1 + "Algebra Basics for 9th Grade: Leveraging Technology with Mathway": 1 + "9th Grade Mathematics: Decoding Algebra Basics with Factoring Techniques": 1 + "Algebra Basics for 9th Graders: A Study of Exponential Functions.": 1 + "1st Grade Environmental Studies: Caring for Our Planet through Forest Conservation Using Geographic Information Systems (GIS)": 1 + "1st Grade Environmental Studies: Exploring 10 Ways to Conserve Forests with Drones": 1 + "1st Grade Environmental Studies: Learning Reforestation Techniques for a Greener Planet": 1 + "1st Grade Environmental Studies: Forest Conservation & The Role of Satellite Imaging": 1 + "1st Grade Environmental Studies: The Power of Recycling in Forest Conservation": 1 + "1st Grade Environmental Studies: Understanding the Impact of Solar Energy on Forest Conservation": 1 + "1st Grade Environmental Studies: The Use of Biochar in Forest Conservation": 1 + "1st Grade Environmental Studies: Forest Conservation through the Lens of Carbon Footprint Reduction": 1 + "1st Grade Environmental Studies: A Deep Dive into Forest Conservation with Rainwater Harvesting": 1 + "1st Grade Environmental Studies: The Science of Composting for Forest Conservation": 1 + "1st Grade Environmental Studies: The Application of Hydroponics in Forest Conservation": 1 + "7th Grade History: Ancient Civilizations and their Environmental Practices - The Use of Irrigation in Mesopotamia": 1 + "Ancient Civilizations: The Role of Water Wheels in Egyptian Agriculture ": 1 + "The Impact of Bronze Age Tools on Environmental Practices in Ancient Civilizations": 1 + "7th Grade History: The Concept of Terracing in Ancient Inca Society": 1 + "Ancient Civilizations: The Use of Aqueducts in Roman Environmental Practices": 1 + "7th Grade History: Ancient Civilizations and Their Use of the Plow in Farming": 1 + "The Impact of Ancient Chinese Rice Cultivation Techniques on Environmental Practices": 1 + "7th Grade History: Ancient Civilizations and their Use of Windmills for Irrigation": 1 + "The Role of the Qanat System in Persian Environmental Practices in Ancient Civilizations": 1 + "7th Grade History: Ancient Civilizations and Their Use of Fire in Land Management Practices": 1 + "3rd Grade History: Discovering Ancient Egypt’s Pyramids with Google Earth Virtual Field Trips": 1 + "3rd Grade History: Exploring Ancient Egyptian Hieroglyphics with Virtual Reality Field Trips": 1 + "3rd Grade History: Journey through Ancient Egypt using Interactive 3D Maps": 1 + "3rd Grade History: Unearthing Ancient Egypt’s Burial Rituals with Augmented Reality Exploration": 1 + "3rd Grade History: Delving into Ancient Egyptian Artifacts with Virtual Museum Visits": 1 + "3rd Grade History: Virtual Excavations of Ancient Egyptian Archaeological Sites using 3D Imaging": 1 + "3rd Grade History: Tracing the Ancient Egyptian Civilization with Interactive Timelines": 1 + "3rd Grade History: Investigating Ancient Egyptian Mythology using Animated Storytelling Tools": 1 + "3rd Grade History: Understanding Ancient Egyptian Society through Virtual Reality Role-Play": 1 + "3rd Grade History: Learning about Ancient Egypt’s Pharaohs with Augmented Reality Time-Travel.": 1 + "5th Grade Science: Exploring the Universe with the Kepler Space Telescope and Spectroscopy": 1 + "5th Grade Science: A Journey through the Universe with the Kepler Space Telescope and Radio Telescopes": 1 + "5th Grade Science: Discovering the Universe with the Kepler Space Telescope and the Hubble Space Telescope": 1 + "5th Grade Science: A Journey through the Universe with the Kepler Space Telescope and the Concept of Light Years": 1 + "5th Grade Science: Understanding the Universe with the Kepler Space Telescope and the Doppler Effect": 1 + "5th Grade Science: Navigating the Universe with the Kepler Space Telescope and the Theory of Relativity": 1 + "5th Grade Science: A Journey through the Universe with the Kepler Space Telescope and the Use of Satellites": 1 + "5th Grade Science: Exploring the Universe with the Kepler Space Telescope and the Concept of Black Holes": 1 + "5th Grade Science: A Journey through the Universe with the Kepler Space Telescope and the Use of Space Probes": 1 + "5th Grade Science: Understanding the Universe with the Kepler Space Telescope and the Concept of Dark Matter.": 1 + "3rd Grade English: Exploring Storytelling through Puppetry": 1 + "3rd Grade English: Journey into Storytelling with Digital Narratives": 1 + "3rd Grade English: Storytelling Mastery using Graphic Organizers": 1 + "3rd Grade English: Discovering Storytelling: The Power of Voice Recordings": 1 + "3rd Grade English: Journey into Storytelling: The Magic of Interactive Whiteboards": 1 + "3rd Grade English: Storytelling Adventure with Augmented Reality": 1 + "3rd Grade English: Exploring Storytelling through Animation Software": 1 + "3rd Grade English: Journey into Storytelling using Storyboarding Techniques": 1 + "3rd Grade English: Storytelling Exploration with E-books": 1 + "3rd Grade English: Unfolding Storytelling through Virtual Reality": 1 + "10th Grade Music: Analyzing Mozart’s Symphonies Using Sibelius Music Notation Software and MIDI Keyboard": 1 + "10th Grade Music: Dissecting Mozart’s Symphonies Through Sibelius Music Notation Software and Tempo Mapping": 1 + "10th Grade Music: Exploring Mozart’s Symphonies with Sibelius Music Notation Software and Audio Playback Technology": 1 + "10th Grade Music: Understanding Mozart’s Symphonies through Sibelius Music Notation Software and Melodic Contour Analysis": 1 + "10th Grade Music: An In-depth Study of Mozart’s Symphonies using Sibelius Music Notation Software and Harmonic Structure Analysis": 1 + "10th Grade Music: Decoding Mozart’s Symphonies Using Sibelius Music Notation Software and Dynamics Interpretation": 1 + "10th Grade Music: Investigating Mozart’s Symphonies with Sibelius Music Notation Software and Rhythmic Pattern Analysis": 1 + "10th Grade Music: Analyzing Mozart’s Symphonies Using Sibelius Music Notation Software and Score Reading Techniques": 1 + "10th Grade Music: Interpreting Mozart’s Symphonies through Sibelius Music Notation Software and Tonal Balance Analysis": 1 + "10th Grade Music: Evaluating Mozart’s Symphonies Using Sibelius Music Notation Software and Counterpoint Examination.": 1 + "First Grade Reading: Exploring Dr. Seuss with Interactive Flashcards": 1 + "First Grade Reading: Storytime with Dr. Seuss through Audiobooks": 1 + "First Grade Reading: Learning Dr. Seuss with Interactive Whiteboards": 1 + "First Grade Reading: Dr. Seuss Adventures Using E-Books": 1 + "First Grade Reading: Delving into Dr. Seuss with Digital Animation": 1 + "First Grade Reading: Dr. Seuss Journey with Virtual Reality": 1 + "First Grade Reading: Discovering Dr. Seuss through Augmented Reality": 1 + "First Grade Reading: Dr. Seuss Storytime with Language Learning Apps": 1 + "First Grade Reading: Experiencing Dr. Seuss through Podcasts": 1 + "First Grade Reading: Unraveling Dr. Seuss Using Smartboards": 1 + "5th Grade Language Arts: Enhancing Vocabulary with Thesaurus.com Exploration": 1 + "5th Grade Language Arts: Vocabulary Development using Microsoft Word Thesaurus Tool": 1 + "5th Grade Language Arts: Improving Vocabulary through Google Docs Thesaurus Exploration": 1 + "5th Grade Language Arts: Vocabulary Enrichment Using Thesaurus and Lexical Fields Concept": 1 + "5th Grade Language Arts: Developing Vocabulary using Visual Thesaurus Software": 1 + "5th Grade Language Arts: Vocabulary Expansion with Thesaurus Exploration and Mind Mapping Techniques": 1 + "5th Grade Language Arts: Advanced Vocabulary Development using Thesaurus and Semantic Relationships": 1 + "5th Grade Language Arts: Enhancing Vocabulary via Thesaurus Exploration on Kindle E-reader": 1 + "5th Grade Language Arts: Vocabulary Growth using Thesaurus Exploration and Quizlet Flashcards": 1 + "5th Grade Language Arts: Building Vocabulary Skills through Thesaurus and Synonym Chains Exploration.": 1 + "2nd Grade Mathematics: Enhancing Addition Skills with Number Lines and Abacus": 1 + "2nd Grade Mathematics: Interactive Learning of Addition via Number Lines and Digital Apps": 1 + "2nd Grade Mathematics: Strengthening Addition Skills using Number Lines and Flashcards": 1 + "2nd Grade Mathematics: Developing Addition Skills with Number Lines and the Montessori Method": 1 + "2nd Grade Mathematics: Expanding Addition Skills with Number Lines and Visual aids": 1 + "2nd Grade Mathematics: Building Addition Skills via Number Lines and Math Manipulatives": 1 + "2nd Grade Mathematics: Improving Addition Skills with Number Lines and SmartBoard Technology": 1 + "2nd Grade Mathematics: Mastering Addition with Number Lines and Educational Math Games": 1 + "2nd Grade Mathematics: Nurturing Addition Skills through Number Lines and Group Activities": 1 + "2nd Grade Mathematics: Augmenting Addition Skills with Number Lines and Real-world Problem Solving.": 1 + "5th Grade Art: Discovering Hieroglyphs through Ancient Egyptian Artifacts ": 1 + "5th Grade Art: Utilizing Clay in the Study of Ancient Egyptian Artifacts ": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts with 3D Printing ": 1 + "5th Grade Art: The Role of Papyrus in Ancient Egyptian Artifacts ": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Digital Art Platforms ": 1 + "5th Grade Art: The Influence of Gold in Ancient Egyptian Artifacts ": 1 + "5th Grade Art: Creating Sarcophagi: An Inquiry into Ancient Egyptian Artifacts ": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts: The Art of Stone Carving ": 1 + "5th Grade Art: Learning about Ancient Egyptian Artifacts through Virtual Reality ": 1 + "5th Grade Art: Painting Techniques in Ancient Egyptian Artifacts": 1 + "7th Grade History: The Role of the Wheel and Axle in the Development of the Chariot in Ancient Greek Technology": 1 + "7th Grade History: The Advancement of the Wheel and Axle in the Creation of Ancient Greek Water Mills": 1 + "7th Grade History: The Impact of the Wheel and Axle on Ancient Greek Pottery Making": 1 + "7th Grade History: The Influence of the Wheel and Axle on the Ancient Greek Crane Technology": 1 + "7th Grade History: The Advancement of the Wheel and Axle in Ancient Greek Siege Warfare": 1 + "7th Grade History: The Wheel and Axle in the Evolution of Ancient Greek Transportation Methods": 1 + "7th Grade History: The Contribution of the Wheel and Axle to Ancient Greek Aqueduct Systems": 1 + "7th Grade History: The Application of the Wheel and Axle in Ancient Greek Windmills": 1 + "7th Grade History: The Advancement of the Wheel and Axle in the Construction of Ancient Greek Temples": 1 + "7th Grade History: The Wheel and Axle’s Role in Ancient Greek Farming Practices.": 1 + "3rd Grade Social Studies: Exploring Local History Through Map Reading": 1 + "3rd Grade Social Studies: Understanding Local History Using Timelines": 1 + "3rd Grade Social Studies: Delving into Local History with Primary Sources": 1 + "3rd Grade Social Studies: Navigating Local History Through Digital Archives": 1 + "3rd Grade Social Studies: Uncovering Local History Using Oral Histories": 1 + "3rd Grade Social Studies: Investigating Local History Through Field Trips": 1 + "3rd Grade Social Studies: Discovering Local History With Artifact Analysis": 1 + "3rd Grade Social Studies: Diving into Local History Through Virtual Reality Tours": 1 + "3rd Grade Social Studies: Learning Local History Using Interactive Apps": 1 + "3rd Grade Social Studies: Comprehending Local History Through Augmented Reality": 1 + "3rd Grade English: Exploring Narratives through Story Mapping Techniques using Smartboard Technology": 1 + "3rd Grade English: Delving into Narratives with Story Mapping and Interactive Whiteboards": 1 + "Utilizing iPads in 3rd Grade English: Story Mapping Techniques for Narratives": 1 + "3rd Grade English: Exploring Narratives with Story Mapping and Google Classroom Integration": 1 + "Storytelling in 3rd Grade English: An Insight into Narratives through Digital Story Mapping": 1 + "3rd Grade English: Narrative Exploration using Story Mapping Techniques and PowerPoint Presentations": 1 + "3rd Grade English: Story Mapping Narratives Leveraging Adobe Spark Tools": 1 + "3rd Grade English: Unfolding Narratives with Story Mapping Techniques and Prezi": 1 + "Exploring Narratives in 3rd Grade English: Story Mapping with Microsoft OneNote": 1 + "3rd Grade English: Decoding Narratives through Story Mapping Techniques and Online Mind Mapping Tools": 1 + "5th Grade Mathematics: Understanding Multiplication and Division through MathBoard App": 1 + "5th Grade Math: Mastering Multiplication and Division with the use of Mathway App": 1 + "Advanced 5th Grade Mathematics: Learn Multiplication and Division using the Prodigy Math Game": 1 + "5th Grade Math Mastery: Using Times Tables in Multiplication and Division via the Quick Math App": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication Concepts using Khan Academy": 1 + "5th Grade Math: Mastering Division with Long-Division Techniques via Mathspace": 1 + "5th Grade Mathematics: Engaging in Multiplication Tables using SymbMath": 1 + "5th Grade Mathematics: Division Strategies using the Microsoft Math Solver App": 1 + "Mathematics for 5th Grade: Exploring Multiplication and Division via Wolfram Alpha": 1 + "Interactive 5th Grade Mathematics: Enhancing Multiplication and Division Skills using the Mathletics App": 1 + "Kindergarten Life Skills: Promoting Healthy Eating with Interactive Food Pyramid Games": 1 + "Kindergarten Life Skills: The Role of Digital Nutrition Trackers in Encouraging Healthy Eating": 1 + "Kindergarten Life Skills: Utilizing Augmented Reality Apps to Teach the Importance of Healthy Eating": 1 + "Kindergarten Life Skills: The Use of Food Portion Control Tools in Teaching Healthy Eating": 1 + "Kindergarten Life Skills: Promoting Healthy Eating through Color-Coded Meal Planning": 1 + "Kindergarten Life Skills: The Importance of Healthy Eating and the Role of Smart Kitchen Scales": 1 + "Kindergarten Life Skills: The Use of Virtual Reality in Teaching Healthy Eating Habits": 1 + "Kindergarten Life Skills: Incorporating Fitbit Technology to Monitor and Encourage Healthy Eating": 1 + "Kindergarten Life Skills: Using Interactive Whiteboards to Teach the Importance of Healthy Eating": 1 + "Kindergarten Life Skills: The Impact of 3D Food Printers on Teaching Healthy Eating Habits.": 1 + "9th Grade Social Studies: American Civil War and the Role of Telegraph Communication": 1 + "9th Grade Social Studies: The Impact of Railroads in the American Civil War": 1 + "9th Grade Social Studies: Ironclad Warships in the American Civil War": 1 + "9th Grade Social Studies: American Civil War - The Importance of Photography": 1 + "9th Grade Social Studies: The Role of Medicine in the American Civil War": 1 + "9th Grade Social Studies: The American Civil War and the Concept of Total War": 1 + "9th Grade Social Studies: The Use of Balloons for Reconnaissance in the American Civil War": 1 + "9th Grade Social Studies: The American Civil War - The Emergence of Trench Warfare": 1 + "9th Grade Social Studies: The American Civil War and the Evolution of Naval Warfare": 1 + "9th Grade Social Studies: American Civil War - The Impact of Industrialization on Weaponry.": 1 + "2nd Grade Language Arts: Enhancing Creative Storytelling with Story Maps using iPad": 1 + "2nd Grade Language Arts: Story Maps and Microsoft Word for Creative Storytelling ": 1 + "2nd Grade Language Arts: Implementing Adobe Spark in Creative Storytelling with Story Maps": 1 + "2nd Grade Language Arts: Creative Storytelling with Story Maps on Google Docs": 1 + "2nd Grade Language Arts: Story Maps and Powerpoint for Creative Storytelling ": 1 + "2nd Grade Language Arts: Integrating Augmented Reality in Creative Storytelling with Story Maps": 1 + "2nd Grade Language Arts: Creative Storytelling with Story Maps and Digital Voice Recording": 1 + "2nd Grade Language Arts: Exploring Creative Storytelling with Story Maps using Virtual Reality": 1 + "2nd Grade Language Arts: Creative Storytelling with Story Maps and Interactive Whiteboards": 1 + "2nd Grade Language Arts: Story Maps and Podcasting for Engaging Creative Storytelling": 1 + "5th Grade Physical Education: Fundamentals of Soccer using Interactive Training Cones": 1 + "5th Grade Physical Education: Basketball Basics and Dribbling Techniques using DribbleUp Smart Basketball": 1 + "5th Grade Physical Education: Team Volleyball Skills with Training Net Systems": 1 + "5th Grade Physical Education: Learning Baseball Fundamentals with Pitching Machines": 1 + "5th Grade Physical Education: Cricket Techniques and Drills using Smart Ball Technology": 1 + "5th Grade Physical Education: Team Handball Strategies with Virtual Reality Training": 1 + "5th Grade Physical Education: Introduction to Rugby using Tackle Bags for Safety": 1 + "5th Grade Physical Education: Lacrosse Basics with Interactive Goal Targets": 1 + "5th Grade Physical Education: Ice Hockey Skills and Drills using Skate Trainers": 1 + "5th Grade Physical Education: Flag Football Strategies using Playbook Wristbands.": 1 + "10th Grade Social Studies: Introduction to World Civilizations through the Lens of Cartography": 1 + "Understanding Ancient Architecture: A 10th Grade Introduction to World Civilizations": 1 + "10th Grade Social Studies: Exploring World Civilizations with Virtual Reality": 1 + "10th Grade Social Studies: Introduction to World Civilizations and the Art of Calligraphy": 1 + "World Civilizations: A 10th Grade Study on the Impact of Agriculture": 1 + "10th Grade Social Studies: Decoding World Civilizations through Linguistics": 1 + "World Civilizations and the Wheel: A 10th Grade Social Studies Course": 1 + "10th Grade Social Studies: Introduction to World Civilizations and the Concept of Democracy": 1 + "10th Grade Social Studies: Unveiling World Civilizations through the Science of Archaeology": 1 + "10th Grade Social Studies: The Role of the Printing Press in World Civilizations.": 1 + "9th Grade Music: Symphony of Sounds - Exploring Pizzicato on Violin with a Shoulder Rest": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin Using Bowing Techniques": 1 + "9th Grade Music: Symphony of Sounds - Mastering Pizzicato on Violin with Wolf Tone Eliminator": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin and the Role of Rosin": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: A Study of String Muting Techniques": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin: Exploring Vibrato Techniques": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: A Deep Dive into Double Stopping": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin: Understanding the Use of Fingering Tapes": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: A Look into the Use of Practice Mutes": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato on Violin: Experimenting with Fine Tuners.": 1 + "6th Grade Music: Exploring Chopin’s Revolutionary Etudes on the Piano using Digital Sheet Music": 1 + "6th Grade Music: Understanding Chopin’s Revolutionary Etudes on the Piano through MIDI Technology": 1 + "6th Grade Music: Learning Chopin’s Revolutionary Etudes on the Piano using Metronome Techniques": 1 + "6th Grade Music: Performing Chopin’s Revolutionary Etudes on the Piano with Pedaling Techniques": 1 + "6th Grade Music: Decoding Chopin’s Revolutionary Etudes on the Piano through Musical Notation": 1 + "6th Grade Music: Mastering Chopin’s Revolutionary Etudes on the Piano with Tuning Techniques": 1 + "6th Grade Music: Chopin’s Revolutionary Etudes on the Piano and the Use of Sustain Pedal": 1 + "6th Grade Music: Interpreting Chopin’s Revolutionary Etudes on the Piano through Tempo Changes": 1 + "6th Grade Music: Analyzing Chopin’s Revolutionary Etudes on the Piano using Music Theory Concepts": 1 + "6th Grade Music: Embodying Chopin’s Revolutionary Etudes on the Piano through Dynamics and Expression Techniques": 1 + "6th Grade Music: Analyzing Chopin’s Revolutionary Etudes on the Piano using Digital Sheet Music and Midi Keyboard": 1 + "6th Grade Music: Introduction to Chopin’s Revolutionary Etudes through Piano and Synthesia Software": 1 + "Exploring Chopin’s Revolutionary Etudes in 6th Grade Music Class using Digital Sheet Music and Interactive Music Learning Apps": 1 + "6th Grade Music: Comprehensive Study of Chopin’s Revolutionary Etudes using Digital Sheet Music and Yamaha DGX-660": 1 + "Understanding Chopin’s Revolutionary Etudes: A 6th Grade Music Course using Digital Sheet Music and Soundtrap Technology": 1 + "6th Grade Music: Exploring Chopin’s Revolutionary Etudes on the Piano with the Help of Digital Sheet Music and Sibelius Notation Software": 1 + "6th Grade Music: In-depth Study of Chopin’s Revolutionary Etudes using Digital Sheet Music and Roland FP-30 Digital Piano": 1 + "6th Grade Music: Discovering Chopin’s Revolutionary Etudes on Piano using Digital Sheet Music and Audacity Software": 1 + "6th Grade Music: A Journey through Chopin’s Revolutionary Etudes with Digital Sheet Music and Casio Privia PX-160": 1 + "6th Grade Music: Navigating Chopin’s Revolutionary Etudes on Piano using Digital Sheet Music and the MusicTheory.net Concepts.": 1 + "5th Grade Mathematics: Learning Fraction Simplification with Prime Factorization and Greatest Common Factor using Long Division": 1 + "Utilizing Division Lattices in 5th Grade Mathematics: Fraction Simplification with Prime Factorization and Greatest Common Factor ": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization, Greatest Common Factor and number lines": 1 + "Exploring Fraction Simplification in 5th Grade Mathematics with Prime Factorization, Greatest Common Factor and Visual Models": 1 + "5th Grade Mathematics: Hands-on Fraction Simplification with Manipulatives in Prime Factorization and Greatest Common Factor": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization and Greatest Common Factor using Digital Fraction Bars": 1 + "Interactive 5th Grade Mathematics: Fraction Simplification with Prime Factorization, Greatest Common Factor and Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization, Greatest Common Factor and the use of Fraction Circles": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization, Greatest Common Factor and Math Learning Software": 1 + "5th Grade Mathematics: Fraction Simplification, Prime Factorization and Greatest Common Factor through the use of Educational Math Apps.": 1 + "Fourth Grade History: Benjamin Franklin’s Role and the Use of the Printing Press During the American Revolution": 1 + "Fourth Grade History: The Impact of the Gutenberg Press and Pamphlets on the American Revolution": 1 + "Fourth Grade History: The Role of the Letterpress in Distributing Pamphlets During the American Revolution": 1 + "Fourth Grade History: The Influence of Woodblock Printing and Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Use of Lithography and Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Role of the Printing Press and the Power of Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Printing Press, Pamphlets, and Their Influence on Colonial Communication During the American Revolution": 1 + "Fourth Grade History: The Role of the Printing Press and the Spread of Propaganda Pamphlets During the American Revolution": 1 + "Fourth Grade History: The Impact of Moveable Type Printing and Pamphlets on the American Revolutionary War": 1 + "Fourth Grade History: The Role of the Printing Press and the Emergence of the Penny Press During the American Revolution.": 1 + "6th Grade Science: The Scientific Revolution and the Telescope": 1 + "6th Grade Science: Exploring the Scientific Revolution through Microscopy": 1 + "6th Grade Science: The Scientific Revolution: Understanding Galileo’s Inclined Plane": 1 + "6th Grade Science: The Role of Thermometer in the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution and the Advent of the Barometer": 1 + "6th Grade Science: Newton’s Laws and the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: The Impact of the Compass": 1 + "6th Grade Science: The Scientific Revolution: An Insight into the Pendulum Clock": 1 + "6th Grade Science: The Scientific Revolution and the Introduction of the Microscope": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant.": 1 + "4th Grade History: The Role of the Mayflower in America’s First Settlers": 1 + "4th Grade History: Exploring the Navigation Tools of the First American Settlers": 1 + "4th Grade History: The Impact of Farming Techniques on the First Settlers in America": 1 + "4th Grade History: The First Settlers in America and their Usage of the Wheel": 1 + "4th Grade History: Understanding the First Settlers in America through their Weaponry": 1 + "4th Grade History: The Influence of Fire-Making on the Survival of America’s First Settlers": 1 + "4th Grade History: The First Settlers in America - Focus on Early Ironworking": 1 + "4th Grade History: The Role of the Printing Press in the Lives of the First Settlers in America": 1 + "4th Grade History: The First Settlers in America and the Concept of Barter System": 1 + "4th Grade History: Unraveling the Mysteries of the Compass and the First Settlers in America": 1 + "3rd Grade English: Exploring Storytelling through Digital Narratives using Adobe Spark": 1 + "3rd Grade English: Utilizing Microsoft Sway for Storytelling in Digital Narratives": 1 + "3rd Grade English: Creating Digital Narratives with Toon Boom Storyboard": 1 + "3rd Grade English: Storytelling through Digital Narratives with Google Slides ": 1 + "3rd Grade English: Harnessing the Power of Canva for Digital Storytelling": 1 + "3rd Grade English: Leveraging Book Creator for Storytelling in Digital Narratives": 1 + "3rd Grade English: Immersive Storytelling through Digital Narratives with Minecraft: Education Edition": 1 + "3rd Grade English: Utilizing ScratchJr for Interactive Digital Storytelling": 1 + "3rd Grade English: Empowering Storytelling with Animaker in Digital Narratives": 1 + "3rd Grade English: Exploring Storytelling through Digital Narratives using TikTok for Education.": 1 + "3rd Grade Science: Exploring the Life Cycle of a Butterfly with Handheld Microscopes": 1 + "3rd Grade Science: A Detailed Study of Butterfly Metamorphosis Using Digital Imaging": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: An In-depth View with Stereoscopes": 1 + "3rd Grade Science: Butterfly Life Cycle: Observing with Scanning Electron Microscopes": 1 + "3rd Grade Science: Butterfly Metamorphosis: A Close-Up with Infrared Imaging": 1 + "3rd Grade Science: Life Cycle of a Butterfly Through the Lens of a Compound Microscope": 1 + "3rd Grade Science: Understanding Butterfly Development Using Time-Lapse Photography": 1 + "3rd Grade Science: Life Cycle of a Butterfly: Insights with Ultraviolet Imaging": 1 + "3rd Grade Science: Observing Butterfly Metamorphosis with 3D Imaging Technology": 1 + "3rd Grade Science: The Life Cycle of a Butterfly: A Comprehensive Study with Digital Microscopy": 1 + "8th Grade Science: Understanding Data Analysis and Interpretation using MATLAB and Python": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB and the Application of Fourier Transforms": 1 + "8th Grade Science: Linear Regression Analysis using MATLAB in Data Interpretation ": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB with SPSS Integration": 1 + "8th Grade Science: Analyzing Scientific Data using MATLAB and Tableau": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB and R Programming": 1 + "8th Grade Science: Data Visualization and Analysis using MATLAB and Power BI": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB and the Principle of Monte Carlo Simulation": 1 + "8th Grade Science: Advanced Data Analysis using MATLAB and Machine Learning Techniques": 1 + "8th Grade Science: Conducting Principal Component Analysis using MATLAB in Data Interpretation.": 1 + "8th Grade Music: Tracing the Evolution of Classical Music through Mozart’s Harpsichord Compositions using Musical Notation Analysis": 1 + "Exploring Mozart’s Harpsichord Legacy: An 8th Grade Deep Dive into Classical Music Evolution using Tempo Analysis": 1 + "8th Grade Music: The Evolution of Classical Music and Mozart’s Harpsichord Impact through the Application of Pitch Recognition Software": 1 + "The Role of Harpsichord in Mozart’s Work: A Comprehensive 8th Grade Study on Classical Music Evolution using Digital Audio Workstations": 1 + "8th Grade Music: Understanding Mozart’s Harpsichord Techniques and their Influence on Classical Music Evolution through Spectrogram Analysis": 1 + "8th Grade Music: Investigating the Evolution of Classical Music via Mozart’s Harpsichord Compositions using MIDI Sequencing": 1 + "Mozart’s Harpsichord and the Evolution of Classical Music: An 8th Grade Course Utilizing Time-Series Analysis ": 1 + "8th Grade Music: Unveiling the Evolution of Classical Music through Mozart’s Harpsichord Using Audio Equalization Techniques": 1 + "8th Grade Music: Dissecting Mozart’s Harpsichord Contributions to Classical Music Evolution through the Lens of Sound Synthesis": 1 + "Classical Music Evolution in 8th Grade: Mozart’s Harpsichord and its Impact Explored through the Use of Acoustic Resonance-Testing Tools.": 1 + "2nd Grade English: Mastering Verb Usage in Sentence Structure with Storybook App": 1 + "2nd Grade English: Improving Noun Usage in Sentence Structure through Software Tools": 1 + "2nd Grade English: Focusing on Adjective Placement in Sentence Structure with Interactive Worksheets": 1 + "2nd Grade English: Conquering Preposition Placement in Sentence Structure using Digital Flashcards": 1 + "2nd Grade English: Understanding Pronoun Applications in Sentence Structure through Grammar Games": 1 + "2nd Grade English: Enhancing Sentence Structure with Effective Punctuation Use via Educational Apps": 1 + "2nd Grade English: Developing Sentence Structure Skills with Adverb Placement using Online Quizzes": 1 + "2nd Grade English: Mastering Interjection Usage in Sentence Structure with e-Learning Platforms": 1 + "2nd Grade English: Perfecting Conjunction Placement in Sentence Structure using Digital Classroom Tools": 1 + "2nd Grade English: Elevating Sentence Structure with Proper Article Usage through Interactive E-books": 1 + "8th Grade Music: A Deep Dive into Classical Music Evolution through Orchestra Conducting and Score Reading": 1 + "8th Grade Music: Exploring Classical Music Evolution through Orchestra Conducting and the Use of Metronomes": 1 + "8th Grade Music: A Study of Classical Music Evolution through Orchestra Conducting and Sound Mixing Technology": 1 + "8th Grade Music: Understanding Classical Music Evolution through Orchestra Conducting and the Role of the Baton": 1 + "8th Grade Music: A Journey through Classical Music Evolution with Orchestra Conducting and Sheet Music Technology": 1 + "8th Grade Music: The Impact of Digital Audio Workstations on Classical Music Evolution and Orchestra Conducting": 1 + "8th Grade Music: Classical Music Evolution and Orchestra Conducting: A Focus on the Violin Bow Technique": 1 + "8th Grade Music: Classical Music Evolution Explored through Orchestra Conducting and Piano Pedaling Techniques": 1 + "8th Grade Music: The Role of Tempo in Classical Music Evolution and Orchestra Conducting": 1 + "8th Grade Music: Integrating MIDI Technology in the Study of Classical Music Evolution through Orchestra Conducting": 1 + "2nd Grade Science: Exploring Life Cycles with Microscopes": 1 + "2nd Grade Science: Study of Plant Life Cycles Using Time-Lapse Photography": 1 + "2nd Grade Science: Introduction to Animal Life Cycles through 3D Models": 1 + "2nd Grade Science: Understanding Life Cycles with Interactive Digital Simulations": 1 + "2nd Grade Science: Learning about Insect Life Cycles using Augmented Reality": 1 + "2nd Grade Science: A Closer Look at Amphibian Life Cycles through Dissections": 1 + "2nd Grade Science: Engaging with Butterfly Life Cycles Using a Classroom Hatchery": 1 + "2nd Grade Science: Introduction to Life Cycles with an Emphasis on Metamorphosis": 1 + "2nd Grade Science: Discovering Life Cycles Through DIY Plant Growing Kits": 1 + "2nd Grade Science: Exploring Bird Life Cycles with Nest Cameras.": 1 + "3rd Grade Mathematics: Exploring Fractions with Fraction Bars using Manipulatives": 1 + "3rd Grade Mathematics: Understanding Fractions through Fraction Bars and Interactive Whiteboards": 1 + "3rd Grade Mathematics: A Deep Dive into Fractions using Fraction Bars and iPads": 1 + "3rd Grade Mathematics: Learning Fractions through Fraction Bars with Smartboard Technology": 1 + "3rd Grade Mathematics: Mastering Fractions with Fraction Bars and Math Software": 1 + "3rd Grade Mathematics: Comprehending Fractions through Fraction Bars using VR Technology": 1 + "3rd Grade Mathematics: Understanding Fractions through Fraction Bars and Digital Tools": 1 + "3rd Grade Mathematics: Fraction Mastery with Fraction Bars using Nearpod": 1 + "3rd Grade Mathematics: Fraction Skills Development through Fraction Bars and Math Apps": 1 + "3rd Grade Mathematics: Grasping Fractions with Fraction Bars using 3D Printing Technology": 1 + "11th Grade Science: Decoding DNA with Polymerase Chain Reaction Technology": 1 + "11th Grade Science: Understanding Heredity through Punnett Squares": 1 + "11th Grade Science: Gene Splicing and Recombinant DNA Technology": 1 + "11th Grade Science: Exploring Genetic Disorders with Karyotyping": 1 + "11th Grade Science: Genetic Engineering and CRISPR-Cas9 Tools": 1 + "11th Grade Science: The Role of Mitosis in Genetic Reproduction": 1 + "11th Grade Science: DNA Sequencing and Genomics": 1 + "11th Grade Science: Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: Analyzing Genetic Variation with Gel Electrophoresis": 1 + "11th Grade Science: The Impact of Mutation on Genetic Diversity.": 1 + "9th Grade Music: Symphony of Sounds - The Influence of Conductors on Orchestral Balance using Baton Techniques": 1 + "9th Grade Music: Symphony of Sounds - The Impact of Tempo on Orchestral Balance in Conducting": 1 + "9th Grade Music: Symphony of Sounds - Understanding How Conductors Utilize Score Markings to Influence Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - The Role of Dynamics in Conducting for Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - Exploring How Conductors Use Time Signatures to Influence Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - The Effect of Conductors’ Gestures on Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - How Conductors Use Phrasing to Maintain Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - The Influence of Conductors on Orchestral Balance through Body Language": 1 + "9th Grade Music: Symphony of Sounds - The Impact of Conductors’ Beat Patterns on Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - How Conductors Use the Metronome to Achieve Orchestral Balance.": 1 + "5th Grade Art: Introduction to Drawing with Charcoal and Acrylic Painting": 1 + "5th Grade Art: Exploring Watercolor Techniques in Drawing and Painting ": 1 + "5th Grade Art: Introduction to Drawing and Painting using Pastels": 1 + "5th Grade Art: Introduction to Digital Drawing and Painting with Procreate": 1 + "5th Grade Art: Drawing and Oil Painting Basics": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache": 1 + "5th Grade Art: Introduction to Drawing with Graphite and Painting with Tempera": 1 + "5th Grade Art: Discovering Drawing and Painting with Mixed Media": 1 + "5th Grade Art: Learning to Draw and Paint with Colored Pencils": 1 + "5th Grade Art: Introduction to Drawing and Painting - Mastering the Use of Ink.": 1 + "9th Grade Social Studies: World War II Era - The Impact of Nuclear Technology": 1 + "9th Grade Social Studies: World War II Era - The Rise of Radar Technology": 1 + "9th Grade Social Studies: The Role of Propaganda in the World War II Era ": 1 + "9th Grade Social Studies: World War II Era - Decoding Enigma: Cryptography’s Role": 1 + "9th Grade Social Studies: The Influence of Aircraft Technology in World War II Era": 1 + "9th Grade Social Studies: World War II Era - Understanding Hitler’s Blitzkrieg Strategy": 1 + "9th Grade Social Studies: World War II Era - Analyzing the Manhattan Project": 1 + "9th Grade Social Studies: The Evolution of Medical Practices during World War II Era": 1 + "9th Grade Social Studies: World War II Era - The Significance of the V-2 Rocket": 1 + "9th Grade Social Studies: World War II Era - The Role of Tanks and Armor Technology": 1 + "Exploring the Impact of Furrow Irrigation on Plant Growth using Soil Moisture Sensors: 2nd Grade Environmental Studies": 1 + "Understanding the Role of Furrow Irrigation in the Plant Life Cycle with Drip Irrigation Techniques: 2nd Grade Environmental Studies": 1 + "The Influence of Furrow Irrigation on Plant Life Cycle: A Focus on Soil PH Meter Utilization: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: An Introduction to Water Conservation Techniques: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation’s Role in the Plant Life Cycle: A Study Using Remote Sensing Technology: 2nd Grade Environmental Studies": 1 + "Investigating the Impact of Furrow Irrigation on Plant Life using Evapotranspiration Concepts: 2nd Grade Environmental Studies": 1 + "The Interplay of Furrow Irrigation and Plant Life Cycle: A Look into Irrigation Scheduling Techniques: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation in the Plant Life Cycle: An Understanding through Soil Erosion Control Techniques: 2nd Grade Environmental Studies": 1 + "Demystifying the Role of Furrow Irrigation in Plant Life Cycle using Rain Gauge Measurements: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: Exploring the Connection with Irrigation Efficiency Technology: 2nd Grade Environmental Studies": 1 + "6th Grade Social Studies: The Influence of The Silk Road on Early Trade and Economy ": 1 + "6th Grade Social Studies: The Role of Barter System in Early Trade and Economy": 1 + "6th Grade Social Studies: The Impact of Early Navigation Tools on Trade and Economy ": 1 + "6th Grade Social Studies: Exploring the Use of Coins in Early Trade and Economy": 1 + "6th Grade Social Studies: The Effect of the Wheel on Early Trade and Economy ": 1 + "6th Grade Social Studies: The Introduction of Paper Currency in Early Trade and Economy": 1 + "6th Grade Social Studies: The Importance of Weighing Scales in Early Trade and Economy": 1 + "6th Grade Social Studies: The Role of Early Writing Systems in Trade and Economy": 1 + "6th Grade Social Studies: The Impact of Domestication of Animals on Early Trade and Economy": 1 + "6th Grade Social Studies: Understanding the Concept of Supply and Demand in Early Trade and Economy": 1 + "2nd Grade Language Arts: Exploring Fables with Smartboard Technology": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Smartboard and Kahoot": 1 + "2nd Grade Language Arts: The Magic of Storytelling using Interactive Whiteboard and Google Slides": 1 + "2nd Grade Language Arts: Storytelling Magic with Interactive Whiteboard and Flipgrid": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard and Padlet": 1 + "2nd Grade Language Arts: Exploring Myths through Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard and Quizlet": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard and Edpuzzle": 1 + "2nd Grade Language Arts: Storytelling Magic with Interactive Whiteboard and Pear Deck": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard and Seesaw.": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Cuisenaire Rods & Number Line Method on TI-84 Plus Graphing Calculator": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence with Manipulative Blocks & Number Line Technique Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Discovering Fraction Equivalence with Pattern Blocks & Number Line Approach Using HP Prime Graphing Calculator": 1 + "6th Grade Mathematics: Studying Fraction Equivalence with Base Ten Blocks & Number Line Strategy Using TI-Nspire CX II Graphing Calculator": 1 + "6th Grade Mathematics: Learning Fraction Equivalence with Fraction Circles & Number Line Method Using TI-83 Plus Graphing Calculator": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Fraction Bars & Number Line Technique Using Casio fx-9860GII Graphing Calculator": 1 + "6th Grade Mathematics: Investigating Fraction Equivalence with Fraction Strips & Number Line Approach Using HP 50g Graphing Calculator": 1 + "6th Grade Mathematics: Delving into Fraction Equivalence with Fraction Squares & Number Line Strategy Using TI-89 Titanium Graphing Calculator": 1 + "6th Grade Mathematics: Grasping Fraction Equivalence with Fraction Tiles & Number Line Method Using Python Programming Language": 1 + "6th Grade Mathematics: Mastering Fraction Equivalence with Fraction Tower Cubes & Number Line Technique Using MATLAB Software.": 1 + "4th Grade History: The First American Settlers - Understanding the Role of the Wheel in Agriculture": 1 + "4th Grade History: The Introduction of the Wheel and the Plow Among the First American Settlers": 1 + "4th Grade History: Understanding the Influence of the Wheel on Transportation Among the First American Settlers": 1 + "4th Grade History: The Evolution of the Wheel and its Impact on Early American Settlements": 1 + "4th Grade History: The First American Settlers - The Wheel and its Role in the Development of Trade": 1 + "4th Grade History: The Role of the Wheel in the Construction Techniques of the First American Settlers": 1 + "4th Grade History: The First American Settlers - The Wheel, Pottery, and Early Technologies": 1 + "4th Grade History: Understanding the Impact of the Wheel on the Everyday Life of the First American Settlers": 1 + "4th Grade History: The First American Settlers - The Wheel and its Transformation of Early American Societies": 1 + "4th Grade History: The Wheel - Its Origins, Uses, and Influence on the First American Settlers": 1 + "3rd Grade English: Exploring Narratives with Story Mapping and SMART Boards": 1 + "3rd Grade English: Unfolding Narratives through Story Mapping and Google Slides": 1 + "3rd Grade English: Discovering Narratives with Story Mapping and Promethean Boards": 1 + "3rd Grade English: Studying Narratives via Story Mapping and Nearpod Application": 1 + "3rd Grade English: Learning Narratives with Story Mapping and MimioStudio Software": 1 + "3rd Grade English: Navigating Narratives through Story Mapping and ClassFlow Technology": 1 + "3rd Grade English: Delving into Narratives with Story Mapping, Interactive Whiteboards and Kahoot Quizzes": 1 + "3rd Grade English: Understanding Narratives with Story Mapping and Microsoft PowerPoint": 1 + "3rd Grade English: Analyzing Narratives with Story Mapping and Prezi Presentations": 1 + "3rd Grade English: Grasping Narratives with Story Mapping and Interactive Whiteboards using Edmodo Platform.": 1 + "6th Grade History: Ancient Egypt Uncovered - The Art of Mummification": 1 + "6th Grade History: Exploring Ancient Egyptian Pyramids": 1 + "6th Grade History: Ancient Egypt Uncovered - Understanding Hieroglyphs": 1 + "6th Grade History: The Role of the Nile in Ancient Egypt": 1 + "6th Grade History: Ancient Egypt Uncovered - The Importance of Pharaohs": 1 + "6th Grade History: Ancient Egyptian Mythology and Religion": 1 + "6th Grade History: Ancient Egypt Uncovered - The Science of Embalming": 1 + "6th Grade History: Discovering Ancient Egyptian Agriculture": 1 + "6th Grade History: Ancient Egypt Uncovered - Architecture and Engineering": 1 + "6th Grade History: The Impact of Trade in Ancient Egypt": 1 + "8th Grade Music: Exploring Orchestration with Pro Tools MIDI Sequencers and Ableton Live Digital Audio Workstations in Classical Music": 1 + "8th Grade Music: Understanding Orchestration using Pro Tools MIDI Sequencers and Digital Audio Workstations with Sibelius Notation Software in Classical Music": 1 + "8th Grade Music: Applying Orchestration Techniques with Pro Tools MIDI Sequencers, Digital Audio Workstations and Soundtrap in Classical Music": 1 + "8th Grade Music: Orchestration Exploration with Pro Tools MIDI Sequencers, Digital Audio Workstations and GarageBand in Classical Music": 1 + "8th Grade Music: Introduction to Orchestration with Pro Tools MIDI Sequencers, Digital Audio Workstations and Audio Plugins in Classical Music": 1 + "8th Grade Music: Advanced Orchestration using Pro Tools MIDI Sequencers, Digital Audio Workstations and Logic Pro X in Classical Music": 1 + "8th Grade Music: Orchestration Mastery with Pro Tools MIDI Sequencers, Digital Audio Workstations and FL Studio in Classical Music": 1 + "8th Grade Music: Exploring Orchestration with Pro Tools MIDI Sequencers, Digital Audio Workstations and Cubase Software in Classical Music": 1 + "8th Grade Music: Practical Orchestration with Pro Tools MIDI Sequencers, Digital Audio Workstations and Audacity in Classical Music": 1 + "8th Grade Music: Orchestration Techniques with Pro Tools MIDI Sequencers, Digital Audio Workstations and Reaper DAW in Classical Music": 1 + "7th Grade Music: Exploring Melody Essentials with Synthesizers and Ableton Live": 1 + "7th Grade Music: Melody Essentials with Synthesizers using MIDI Controllers": 1 + "7th Grade Music: Creating Melodies with Synthesizers and Digital Audio Workstations": 1 + "7th Grade Music: Melody Essentials - Synthesizers and Beat Sequencing Techniques": 1 + "7th Grade Music: Melody Creation with Synthesizers and Music Production Software": 1 + "7th Grade Music: Composition of Melodies using Synthesizers and Loop Stations": 1 + "7th Grade Music: Melody Essentials with Synthesizers - Incorporating Sound Effects": 1 + "7th Grade Music: Understanding Melodies with Synthesizers and Music Notation Software": 1 + "7th Grade Music: Melody Essentials - Synthesizers and Introduction to Sampling": 1 + "7th Grade Music: Sound Design and Melodies with Synthesizers and Audio Mixing Techniques": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads with Grammarly, Scrivener, and ProWritingAid for Drafting and Editing ": 1 + "4th Grade Language Arts: Harnessing iPads, Grammarly, and Scrivener for Paragraph Construction: A Focus on Persuasive Writing ": 1 + "4th Grade Language Arts: In-depth Exploration of Paragraph Writing on iPads using Grammarly, Scrivener, and Google Docs ": 1 + "4th Grade Language Arts: Advanced Paragraph Writing Techniques using iPads, Grammarly, Scrivener, and Microsoft Word": 1 + "4th Grade Language Arts: Leveraging iPads, Grammarly, Scrivener, and Evernote for Effective Paragraph Drafting ": 1 + "4th Grade Language Arts: Improving Paragraph Writing Skills on iPads using Grammarly, Scrivener, and Hemingway Editor ": 1 + "4th Grade Language Arts: A Comprehensive Guide to Paragraph Writing on iPads using Grammarly, Scrivener, and Notion ": 1 + "4th Grade Language Arts: Strategic Use of iPads, Grammarly, Scrivener, and OneNote for Paragraph Writing Excellence": 1 + "4th Grade Language Arts: Refining Paragraph Writing Skills on iPads through Grammarly, Scrivener, and Adobe Spark ": 1 + "4th Grade Language Arts: Developing Paragraph Writing Prowess on iPads using Grammarly, Scrivener, and Canva for Visual Aid Integration.": 1 + "8th Grade Music: Exploring Beethoven’s Works through Piano": 1 + "8th Grade Music: Understanding Mozart’s Symphony with Audio Technology ": 1 + "8th Grade Music: Analyzing Bach’s Fugues with Music Notation Software": 1 + "8th Grade Music: Discovering Chopin’s Nocturnes through Digital Sheet Music": 1 + "8th Grade Music: Studying Vivaldi’s Four Seasons with Violin": 1 + "8th Grade Music: Introduction to Schubert’s Lieder using Voice Modulation": 1 + "8th Grade Music: Learning Wagner’s Operas with Audio-Visual Recordings": 1 + "8th Grade Music: Exploring Tchaikovsky’s Ballets through Dance Interpretation": 1 + "8th Grade Music: Understanding Handel’s Oratorios with Choir Performance": 1 + "8th Grade Music: Analyzing Haydn’s Quartets with String Instruments": 1 + "5th Grade Science: Understanding Climate Change and Ecosystems through ArcGIS Technology and Spatial Data Integration": 1 + "Decoding Climate Change and Ecosystems: An In-depth Analysis using Drone Technology in 5th Grade Science": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive using GIS Technology, Lidar Data and 10 Sustainable Solutions": 1 + "Advanced 5th Grade Science: Exploring Climate Change and Ecosystems with GIS Technology and Google Earth Pro": 1 + "5th Grade Science: Climate Change, Ecosystems and Satellite Imaging: A Comprehensive Study": 1 + "Climate Change and Ecosystems in 5th Grade Science: A Deep Dive using GIS Technology, Python Programming and 10 Practical Solutions": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive using GIS Technology, Spatial Data Integration and Machine Learning": 1 + "5th Grade Science: Climate Change, Ecosystems and Remote Sensing - A Deep Dive using GIS Technology": 1 + "Climate Change and Ecosystems: A Deep Dive using GIS Technology, Spatial Data Integration and Geostatistical Analysis for 5th Grade Science": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive using GIS Technology, Geocoding and Ten Environmental Action Plans.": 1 + "4th Grade Mathematics: Introduction to Algebra with Number Lines": 1 + "4th Grade Mathematics: Introduction to Algebra using Graphing Calculators": 1 + "4th Grade Mathematics: Introduction to Algebra and the Concept of Variables": 1 + "4th Grade Mathematics: Introduction to Algebra through Problem-solving Techniques": 1 + "4th Grade Mathematics: Introduction to Algebra with Equations and Inequalities": 1 + "4th Grade Mathematics: Exploring Algebra with the Distributive Property": 1 + "4th Grade Mathematics: Introduction to Algebra using Digital Learning Platforms": 1 + "4th Grade Mathematics: Introduction to Algebra and the Concept of Exponents": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals": 1 + "4th Grade Mathematics: Introduction to Algebra using Virtual Manipulatives": 1 + "5th Grade Music: Exploring String Instruments of the Orchestra": 1 + "5th Grade Music: A Deep Dive into Woodwind Instruments of the Orchestra": 1 + "5th Grade Music: Understanding Percussion Instruments of the Orchestra": 1 + "5th Grade Music: Discovering the Role of Brass Instruments in the Orchestra": 1 + "5th Grade Music: The Magic of Conductor’s Baton in the Orchestra": 1 + "5th Grade Music: The Impact of the Piano in the Orchestra ": 1 + "5th Grade Music: The Intricacies of the Harp in the Orchestra": 1 + "5th Grade Music: The Power of the Violin in the Orchestra": 1 + "5th Grade Music: The Versatility of the Trumpet in the Orchestra": 1 + "5th Grade Music: The Elegance of the Cello in the Orchestra": 1 + "5th Grade Music: The Symphony of Instruments in the Orchestra Using Music Score Reading.": 1 + "1st Grade Art: Exploring Geometric Shapes and Color Theory with Crayon Art using Drawing Pads": 1 + "1st Grade Art: Learning Shapes and Colors with Crayon Art and Watercolor Techniques": 1 + "1st Grade Art: Understanding Shapes and Colors through Crayon Art and Digital Drawing Tablets": 1 + "1st Grade Art: Mastering Shapes and Colors with Crayon Art using Mixed Media Approach": 1 + "1st Grade Art: Investigating Shapes and Colors with Crayon Art and Collage Techniques": 1 + "1st Grade Art: Discovering Shapes and Colors through Crayon Art using Lightbox Technology": 1 + "1st Grade Art: Grasping Shapes and Colors with Crayon Art and Stencil Tools": 1 + "1st Grade Art: Studying Shapes and Colors through Crayon Art using 3D Modeling": 1 + "1st Grade Art: Learning Shapes and Colors with Crayon Art and Printmaking Techniques": 1 + "1st Grade Art: Delving into Shapes and Colors with Crayon Art using Finger Painting Concept": 1 + "Seventh Grade History: Understanding the Aztec Empire through the Use of Chinampas": 1 + "Seventh Grade History: The Impact of Maize Cultivation on the Aztec Empire": 1 + "Seventh Grade History: Analyzing the Aztec Empire through the Lens of Stone Tools in Agriculture": 1 + "Seventh Grade History: The Role of Terracing in the Agricultural Success of the Aztec Empire": 1 + "Seventh Grade History: Exploring the Aztec Empire’s Use of Irrigation Systems in Agriculture": 1 + "Seventh Grade History: The Influence of the Three Sisters Farming Technique on the Aztec Empire": 1 + "Seventh Grade History: Unraveling the Aztec Empire: A Study on the Use of Aqueducts in Agriculture": 1 + "Seventh Grade History: The Aztec Empire and the Agricultural Revolution: The Power of the Pulque": 1 + "Seventh Grade History: The Aztec Empire: The Cultural Significance of Cacao in Agriculture": 1 + "Seventh Grade History: The Aztec Empire’s Agricultural Prosperity through the Domestication of Turkeys": 1 + "4th Grade Introduction to Fractions and Decimal Conversion Using Interactive Whiteboards": 1 + "Learning Fraction to Decimal Conversion through Fun Math Games for 4th Graders": 1 + "4th Grade Course: Mastering Fractions and Decimal Conversion with the Aid of a Calculator": 1 + "Understanding Fractions and Decimal Conversion using Fraction Circles for 4th Graders": 1 + "4th Grade: Exploring Fractions and Decimal Conversion with Mobile Math Apps": 1 + "Fraction and Decimal Conversion Simplified: 4th Grade Course Using Math Manipulatives": 1 + "4th Grade Fraction and Decimal Conversion: A Deep Dive with Virtual Reality Technology": 1 + "4th Graders’ Guide to Fractions and Decimal Conversion Using Microsoft Excel": 1 + "Introduction to Fractions and Decimal Conversion for 4th Graders with the Abacus": 1 + "Interactive 4th Grade Course: Fractions and Decimal Conversion Using Smartboard Technology": 1 + "Exploring 2nd Grade Geometry with Tangram Puzzles and Digital Drawing Tools": 1 + "Incorporating 3D Printing in Understanding Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles": 1 + "Understanding Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles and the Pythagorean Theorem": 1 + "Applying Augmented Reality in 2nd Grade Geometry Lessons with Tangram Puzzles": 1 + "Understanding Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles and Interactive Whiteboards": 1 + "Learning 2nd Grade Geometry with Tangram Puzzles through Virtual Reality Experiences": 1 + "Integrating Geometric Proofs in 2nd Grade Mathematics with Tangram Puzzles": 1 + "Combining Tangram Puzzles and Geometric Constructions in 2nd Grade Mathematics": 1 + "Understanding Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles: A Focus on Symmetry": 1 + "Using Geogebra to Enhance Understanding of Basic Geometry in 2nd Grade Mathematics with Tangram Puzzles": 1 + "10th Grade Mathematics: Geometry - Understanding Shapes and Patterns through Pythagorean Theorem": 1 + "10th Grade Mathematics: Geometry - Analyzing Shapes and Patterns using Euclidean Algorithm": 1 + "10th Grade Mathematics: Geometry - Conceptualizing Shapes and Patterns with Trigonometry": 1 + "10th Grade Mathematics: Geometry - Grasping Shapes and Patterns using Geometric Proofs": 1 + "10th Grade Mathematics: Geometry - Exploring Shapes and Patterns via Compass and Straightedge Constructions": 1 + "10th Grade Mathematics: Geometry - Studying Shapes and Patterns through Geometric Transformations": 1 + "10th Grade Mathematics: Geometry - Comprehending Shapes and Patterns with Coordinate Geometry": 1 + "10th Grade Mathematics: Geometry - Deciphering Shapes and Patterns through Solid Geometry": 1 + "10th Grade Mathematics: Geometry - Understanding Shapes and Patterns using Geometric Progressions": 1 + "10th Grade Mathematics: Geometry - Visualizing Shapes and Patterns with Geometric Software Tools": 1 + "Second Grade Reading: Mastering Phonics and Vocabulary with Interactive Whiteboards": 1 + "Second Grade Reading: Utilizing Flashcards for Phonics and Vocabulary Mastery": 1 + "Second Grade Reading: Enhancing Phonics and Vocabulary Skills with Audiobooks ": 1 + "Second Grade Reading: Using iPad Apps to Master Phonics and Vocabulary": 1 + "Second Grade Reading: Phonics and Vocabulary Enhancement through Online Games": 1 + "Second Grade Reading: Mastering Phonics and Vocabulary with Alphabet Blocks": 1 + "Second Grade Reading: Utilizing E-books for Phonics and Vocabulary Mastery ": 1 + "Second Grade Reading: Phonics and Vocabulary Enhancement through Phonemic Awareness": 1 + "Second Grade Reading: Mastering Phonics and Vocabulary through Storytelling Techniques": 1 + "Second Grade Reading: Using Animated Videos for Phonics and Vocabulary Mastery": 1 + "7th Grade Physical Education: Intro to Kickboxing with Focus on Punching Bags": 1 + "7th Grade Physical Education: Kickboxing Basics Utilizing Speed Bags": 1 + "7th Grade Physical Education: Kick-start to Kickboxing with Focus on Footwork": 1 + "7th Grade Physical Education: Kickboxing Essentials: Mastering the Roundhouse Kick": 1 + "7th Grade Physical Education: Kickboxing 101: Training with Heavy Bags": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: An Intro to Sparring Gear": 1 + "7th Grade Physical Education: Kickboxing Fundamentals: Learning the Jab-Cross Combo": 1 + "7th Grade Physical Education: Kick-start to Kickboxing with Focus on Glove Techniques": 1 + "7th Grade Physical Education: Kickboxing and Conditioning: Using Jump Ropes in Training": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: Learning Defense Techniques": 1 + "4th Grade Language Arts: Understanding Metaphors in Poetry using Google ARCore Augmented Reality": 1 + "Enhancing Metaphor Comprehension in 4th Grade Poetry through Oculus Quest 2 Augmented Reality ": 1 + "Exploration of Metaphors in 4th Grade Poetry with Microsoft HoloLens Augmented Reality": 1 + "4th Grade Language Arts: Interactive Metaphor Learning in Poetry using Apple ARKit": 1 + "Understanding Metaphors in 4th Grade Poetry: An AR Journey with Snapchat Lens Studio": 1 + "4th Grade Language Arts: Metaphor Mastery in Poetry using Unity AR Foundation": 1 + "4th Grade Language Arts: Decoding Metaphors in Poetry through AR.js Augmented Reality": 1 + "4th Grade Language Arts: Metaphor Analysis in Poetry using Vuforia Augmented Reality": 1 + "4th Grade Language Arts: Metaphor Interpretation in Poetry with Wikitude Augmented Reality": 1 + "Immersive Metaphor Learning in 4th Grade Poetry using Magic Leap Augmented Reality.": 1 + "3rd Grade Language Arts: Exploring Creative Writing with Story Maps": 1 + "3rd Grade Language Arts: Creative Writing Basics with Sentence Diagramming": 1 + "3rd Grade Language Arts: Digital Storytelling in Creative Writing": 1 + "3rd Grade Language Arts: Creative Writing Basics using Mind Maps": 1 + "3rd Grade Language Arts: Creative Writing Basics with Storyboarding": 1 + "3rd Grade Language Arts: Understanding Creative Writing through Voice Recording": 1 + "3rd Grade Language Arts: Creative Writing Basics using Google Docs": 1 + "3rd Grade Language Arts: Enhancing Creative Writing with Interactive Whiteboards": 1 + "3rd Grade Language Arts: Creative Writing Basics and the Power of Brainstorming": 1 + "3rd Grade Language Arts: Creative Writing Basics using Digital Flashcards": 1 + "6th Grade Language Arts: Exploring Metaphors and Similes through Minecraft Education Edition": 1 + "6th Grade Language Arts: Utilizing Kahoot! to Explore Metaphors and Similes": 1 + "6th Grade Language Arts: Understanding Metaphors and Similes with Google Classroom": 1 + "6th Grade Language Arts: Interactive Metaphors and Similes Learning via Scratch Programming": 1 + "6th Grade Language Arts: Exploring Metaphors and Similes through Quizlet Games": 1 + "6th Grade Language Arts: Metaphors and Similes Study with Interactive Whiteboard Technology": 1 + "6th Grade Language Arts: Engaging with Metaphors and Similes through Virtual Reality": 1 + "6th Grade Language Arts: Exploring Metaphors and Similes through Augmented Reality Apps": 1 + "6th Grade Language Arts: Metaphors and Similes Learning Using Adobe Spark Video": 1 + "6th Grade Language Arts: Investigating Metaphors and Similes through Starfall’s Interactive Platform": 1 + "8th Grade Science: A Deep Dive into Data Analysis using SPSS and Python": 1 + "8th Grade Science: Exploring Data Analysis through SPSS with Microsoft Excel Integration": 1 + "8th Grade Science: Uncovering the Power of Data Analysis using SPSS and R Programming": 1 + "8th Grade Science: Understanding Data Analysis through SPSS and Visualization with Tableau": 1 + "8th Grade Science: Diving into Data Analysis using SPSS and the Fundamentals of SQL": 1 + "8th Grade Science: Exploring Data Analysis through SPSS with an Introduction to Machine Learning": 1 + "8th Grade Science: Decoding Data Analysis through SPSS and the Basics of Data Mining": 1 + "8th Grade Science: Exploring Data Analysis through SPSS with a Focus on Predictive Modeling": 1 + "8th Grade Science: A Journey into Data Analysis using SPSS and the Principles of Big Data ": 1 + "8th Grade Science: Exploring Data Analysis through SPSS and the Application of Artificial Intelligence.": 1 + "7th Grade Music: Comprehending Melodies with Moog Synthesizers and Sibelius Music Notation Software": 1 + "7th Grade Music: Exploring Melodies with Casio Synthesizers and Finale Notation Software": 1 + "7th Grade Music: Mastering Melodies with Yamaha Synthesizers and MuseScore Notation Software": 1 + "7th Grade Music: Understanding Melodies with Korg Synthesizers and Guitar Pro Music Notation Software": 1 + "7th Grade Music: Grasping Melodies with Roland Synthesizers and Notion Music Notation Software": 1 + "7th Grade Music: Learning Melodies with Arturia Synthesizers and Avid Scorch Music Notation Software": 1 + "7th Grade Music: Studying Melodies with Behringer Synthesizers and Steinberg Dorico Music Notation Software": 1 + "7th Grade Music: Discovering Melodies with Nord Synthesizers and MagicScore Music Notation Software": 1 + "7th Grade Music: Delving into Melodies with Sequential Synthesizers and Presonus Notion 6 Music Notation Software": 1 + "7th Grade Music: Unraveling Melodies with Novation Synthesizers and LilyPond Music Notation Software": 1 + "5th Grade Music: Mastering Music Theory with Sibelius Software through Drumming": 1 + "5th Grade Music: Enhancing Note Reading with Digital Drum Pad through Drumming": 1 + "5th Grade Music: Mastering Music Theory using MIDI Technology through Drumming": 1 + "5th Grade Music: Improving Note Reading with Drum Notation Software through Drumming": 1 + "5th Grade Music: Mastering Music Theory and Note Reading through Electronic Drumming": 1 + "5th Grade Music: Mastering Music Theory using Metronome through Drumming": 1 + "5th Grade Music: Enhancing Note Reading using Tablature through Drumming": 1 + "5th Grade Music: Mastering Music Theory with DAW Software through Drumming": 1 + "5th Grade Music: Enhancing Note Reading with Music Composition Apps through Drumming": 1 + "5th Grade Music: Mastering Music Theory and Note Reading through Drum Sequencing": 1 + "2nd Grade Science: Exploring Forest Animal Habitats and Adaptation Strategies through Microscope Observation": 1 + "2nd Grade Science: Understanding Aquatic Animal Adaptations in Different Habitats using Digital Simulations": 1 + "2nd Grade Science: Investigating Animal Adaptations in Desert Habitats with Interactive 3D Models ": 1 + "2nd Grade Science: A Detailed Study of Polar Animal Habitats and Adaptations through Virtual Reality": 1 + "2nd Grade Science: Utilizing Field Trips for a Comprehensive Study on Grassland Animal Habitats and Adaptations": 1 + "2nd Grade Science: Diving into Rainforest Animal Habitats and Adaptations using Augmented Reality": 1 + "2nd Grade Science: Implementing Lab Experiments to Learn about Animal Adaptations in Mountain Habitats": 1 + "2nd Grade Science: Exploring Adaptation Strategies of Animals in Urban Habitats with the Use of Infographics": 1 + "2nd Grade Science: An In-Depth Study of Animals in Wetland Habitats and Their Adaptations through Data Analysis": 1 + "2nd Grade Science: Uncovering Adaptation Strategies of Animals in Island Habitats using Interactive Digital Maps": 1 + "Evaluating the Impact of Rainwater Harvesting Using Greywater Systems on the Life Cycle of Native Plants with a Focus on Solar-Powered Pumps in 2nd Grade Environmental Studies": 1 + "The Role of IoT Sensors in Assessing Rainwater Harvesting’s Impact on Native Plants using Greywater Systems in 2nd Grade Environmental Studies": 1 + "Analyzing the Influence of Rainwater Harvesting Using Greywater Systems on the Life Cycle of Native Plants through Soil pH Testing in 2nd Grade Environmental Studies": 1 + "A Comparative Study: The Impact of Rainwater Harvesting with Greywater and Drip Irrigation Systems on Native Plants in 2nd Grade Environmental Studies": 1 + "Exploring the Influence of Rainwater Harvesting Using Greywater Systems on Native Plants: A Study on the Use of 3D Modelling in 2nd Grade Environmental Studies": 1 + "The Impact of Rainwater Harvesting Using Greywater Systems on the Life Cycle of Native Plants: Incorporating GIS Mapping in 2nd Grade Environmental Studies": 1 + "An In-depth Study of Rainwater Harvesting Using Greywater Systems Using Drone Technology to Monitor Native Plants Growth in 2nd Grade Environmental Studies": 1 + "Rainwater Harvesting Using Greywater Systems: Utilizing Biochar as a Soil Amendment for Native Plants in 2nd Grade Environmental Studies": 1 + "The Effect of Rainwater Harvesting Using Greywater Systems on Native Plants: A Microscopic Analysis of Plant Cells in 2nd Grade Environmental Studies": 1 + "Investigating the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants Using Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "10th Grade Physical Education: The Science of Sports & Fitness Using Heart Rate Monitors": 1 + "10th Grade Physical Education: Principles of Sports & Fitness with a Focus on Biomechanics": 1 + "10th Grade Physical Education: Nutrition and Fitness in Sports": 1 + "10th Grade Physical Education: Sports Training and Fitness Using Resistance Bands": 1 + "10th Grade Physical Education: The Role of GPS Technology in Sports & Fitness": 1 + "10th Grade Physical Education: The Study of Exercise Physiology in Sports and Fitness": 1 + "10th Grade Physical Education: Principles of Sports & Fitness Using Video Analysis": 1 + "10th Grade Physical Education: Exploring Sports Psychology & Fitness": 1 + "10th Grade Physical Education: Principles of Sports & Fitness Using Exercise Balls": 1 + "10th Grade Physical Education: Principles of Sports & Fitness with a Focus on Aerobic Capacity.": 1 + "5th Grade History: Understanding the American Revolution through Interactive Maps": 1 + "5th Grade History: Exploring the American Revolution via Virtual Reality": 1 + "5th Grade History: The American Revolution and the Role of Printing Press": 1 + "5th Grade History: Navigating the American Revolution with Augmented Reality": 1 + "5th Grade History: Diving into the American Revolution using 3D Modeling": 1 + "5th Grade History: Analyzing the American Revolution through Primary Sources": 1 + "5th Grade History: The American Revolution - A Multimedia Approach": 1 + "5th Grade History: The American Revolution Explored through Digital Storytelling": 1 + "5th Grade History: Unpacking the American Revolution with Podcasts": 1 + "5th Grade History: The American Revolution - Learning through Gamification": 1 + "6th Grade Music: Exploring Rhythms and Beats using GarageBand": 1 + "6th Grade Music: Mastering Rhythms and Beats with Ableton Live Sequencer": 1 + "Discovering Rhythms and Beats through FL Studio in 6th Grade Music": 1 + "6th Grade Music: Introduction to Beats and Rhythms with Cubase Sequencer": 1 + "6th Grade Music: Learning Rhythms and Beats with Digital Audio Workstation (DAW)": 1 + "Understanding Rhythms and Beats Using MIDI Sequencers in 6th Grade Music": 1 + "6th Grade Music: Discovering Rhythms and Beats using Pro Tools Sequencer": 1 + "6th Grade Music: Exploring Beats and Rhythms with Logic Pro X": 1 + "Introduction to Rhythm Patterns and Beat Sequencing with Reason in 6th Grade Music": 1 + "6th Grade Music: Discovering Rhythms and Beats through Drum Machine Sequencers": 1 + "4th Grade History: The Era of Exploration and the Use of Compass": 1 + "4th Grade History: The Age of Exploration and the Development of Astrolabes": 1 + "4th Grade History: The Age of Exploration and the Introduction of Cartography": 1 + "4th Grade History: Exploring the Era of Exploration and the Impact of Caravels": 1 + "4th Grade History: The Era of Exploration - The Role of Quadrants": 1 + "4th Grade History: The Influence of Cross Staff in the Era of Exploration": 1 + "4th Grade History: The Era of Exploration - Understanding the Backstaff": 1 + "4th Grade History: Navigation Tools of the Era of Exploration": 1 + "4th Grade History: The Era of Exploration and the Emergence of Lateen Sails": 1 + "4th Grade History: The Era of Exploration and the Significance of Sextants": 1 + "2nd Grade Science: Exploring the Solar System with Telescopes": 1 + "2nd Grade Science: Understanding the Solar System through 3D Modeling": 1 + "2nd Grade Science: Investigating the Solar System using Interactive Apps": 1 + "2nd Grade Science: Learning the Solar System through Virtual Reality": 1 + "2nd Grade Science: Exploring the Solar System with Planetarium Software": 1 + "2nd Grade Science: Discovering the Solar System using Augmented Reality": 1 + "2nd Grade Science: Studying the Solar System with Solar System Simulator": 1 + "2nd Grade Science: Navigating the Solar System using Google Sky": 1 + "2nd Grade Science: Interpreting the Solar System through Space Probes": 1 + "2nd Grade Science: Exploring the Solar System: A Journey with Space Rovers": 1 + "2nd Grade Science: Understanding the Solar System through Satellite Imagery": 1 + "8th Grade Language Arts: An Exploration of Poetry and Prose through the Lens of Metaphor": 1 + "8th Grade Language Arts: Understanding Poetry and Prose through Symbolism": 1 + "8th Grade Language Arts: Poetry and Prose Analysis using Digital Annotation Tools": 1 + "8th Grade Language Arts: Poetry and Prose Study with Focus on Irony": 1 + "8th Grade Language Arts: Poetry and Prose Interpretation using Interactive Whiteboards": 1 + "8th Grade Language Arts: Enhancing Poetry and Prose Understanding through Hyperbole": 1 + "8th Grade Language Arts: Poetry and Prose Appreciation using Text-to-Speech Technology": 1 + "8th Grade Language Arts: Deep Dive into Poetry and Prose with Alliteration": 1 + "8th Grade Language Arts: Poetry and Prose Exploration using Virtual Reality Technology": 1 + "8th Grade Language Arts: Poetry and Prose Analysis through the Perspective of Personification.": 1 + "2nd Grade Mathematics: Learning Multiplication through Number Lines with Maths Trainer App": 1 + "2nd Grade Mathematics: Exploring Multiplication with Virtual Manipulatives in Maths Trainer App": 1 + "2nd Grade Mathematics: Understanding Multiplication using Digital Flashcards in Maths Trainer App": 1 + "2nd Grade Mathematics: Mastering Multiplication with Interactive Worksheets in Maths Trainer App": 1 + "2nd Grade Mathematics: Unveiling Multiplication using Visual Models in Maths Trainer App": 1 + "2nd Grade Mathematics: Discovering Multiplication through Animated Videos on Maths Trainer App": 1 + "2nd Grade Mathematics: Studying Multiplication using Hands-on Activities in Maths Trainer App": 1 + "2nd Grade Mathematics: Grasping Multiplication with Gamified Learning on Maths Trainer App": 1 + "2nd Grade Mathematics: Reinforcing Multiplication Concepts with Quizzes in Maths Trainer App": 1 + "2nd Grade Mathematics: Exploring the World of Multiplication using AR Features in Maths Trainer App": 1 + "8th Grade Physical Education: Enhancing Health and Fitness through the Practice of Hatha Yoga": 1 + "8th Grade Physical Education: Health and Fitness Optimization through Ashtanga Yoga Techniques": 1 + "8th Grade Physical Education: Introduction to Vinyasa Flow Yoga for Improved Health and Fitness": 1 + "8th Grade Physical Education: Health and Fitness through Yoga and the Use of Balance Balls ": 1 + "8th Grade Physical Education: An In-depth Study on the Role of Yoga Breathing Techniques in Health and Fitness": 1 + "8th Grade Physical Education: Exploring Health and Fitness through Yoga and Pilates Fusion": 1 + "8th Grade Physical Education: Health and Fitness through Yoga with a Focus on Core Strength": 1 + "8th Grade Physical Education: Health and Fitness Enhancement through Yoga and Resistance Band Exercises": 1 + "8th Grade Physical Education: Health and Fitness through Iyengar Yoga and the Use of Yoga Blocks": 1 + "8th Grade Physical Education: Advanced Health and Fitness through Yoga and Heart Rate Monitoring Technology.": 1 + "1st Grade Art: Introduction to Basic Shapes and Colors with Watercolors": 1 + "1st Grade Art: Learning Basic Shapes and Colors Using Oil Pastels": 1 + "1st Grade Art: Exploring Basic Shapes and Colors with Collage Techniques": 1 + "1st Grade Art: Introduction to Basic Shapes and Colors through Origami": 1 + "1st Grade Art: Understanding Basic Shapes and Colors with Finger Painting": 1 + "1st Grade Art: Introduction to Basic Shapes and Colors Using Digital Art Apps": 1 + "1st Grade Art: Basics of Shapes and Colors with Clay Molding": 1 + "1st Grade Art: Discovering Basic Shapes and Colors through Paper Mache": 1 + "1st Grade Art: Introduction to Basic Shapes and Colors Using Color Pencils": 1 + "1st Grade Art: Hands-On Basic Shapes and Colors with Printmaking Techniques": 1 + "Exploring Weather Systems with Barometers: A 5th Grade Science Course on Atmospheric Pressure in Weather Stations": 1 + "5th Grade Science: Using Anemometers to Probe Atmospheric Pressure in Weather Systems": 1 + "Weather Stations and Atmospheric Pressure: An In-depth Study using Thermometers in 5th Grade Science": 1 + "5th Grade Science: Exploring Weather Systems with Hygrometers to Measure Atmospheric Pressure": 1 + "Probing Weather Systems with Weather Balloons: A 5th Grade Science Course on Atmospheric Pressure": 1 + "Understanding Weather Systems: A 5th Grade Science Course on Atmospheric Pressure using Weather Satellites": 1 + "5th Grade Science: Probing Weather Systems with Radar Technology for Atmospheric Pressure in Weather Stations": 1 + "Atmospheric Pressure in Weather Stations: A 5th Grade Science Course using Weather Maps": 1 + "5th Grade Science: Using Weather Vanes to Probe Atmospheric Pressure in Weather Systems": 1 + "Probing Atmospheric Pressure with Weather Drones: A 5th Grade Science Course on Weather Systems": 1 + "5th Grade Science: Exploring Butterfly Metamorphosis through 3D Animation Technology": 1 + "5th Grade Science: Lifecycle of a Butterfly - Understanding Metamorphosis with Augmented Reality": 1 + "5th Grade Science: Lifecycle of a Butterfly - A Deep Dive into Metamorphosis with Stop-Motion Animation": 1 + "5th Grade Science: Metamorphosis Journey - Lifecycle of a Butterfly using Virtual Reality": 1 + "5th Grade Science: Butterfly Metamorphosis - An Interactive Exploration with Digital Animation Software": 1 + "5th Grade Science: Lifecycle of a Butterfly - Studying Metamorphosis with Adobe Animate": 1 + "5th Grade Science: Metamorphosis of a Butterfly - A Detailed Study using 3D Modelling Technology": 1 + "5th Grade Science: Understanding Butterfly Metamorphosis through the Lens of Animation Technology and CAD Software": 1 + "5th Grade Science: Lifecycle of a Butterfly - Exploring Metamorphosis with Video Animation Tools": 1 + "5th Grade Science: Butterfly Metamorphosis - An Interactive Journey with Computer Generated Imagery Technology": 1 + "8th Grade History: The Impact of Gutenberg’s Movable Type in the Invention of the Printing Press during the Renaissance Era": 1 + "8th Grade History: The Role of Woodblock Printing in the Invention of the Printing Press during the Renaissance Era": 1 + "8th Grade History: The Application of Ink Technology in the Invention of the Printing Press during the Renaissance Era": 1 + "8th Grade History: The Influence of Papermaking on the Invention of the Printing Press during the Renaissance Era in Europe": 1 + "8th Grade History: The Invention of the Printing Press during the Renaissance Era: Understanding the Concept of Mass Communication": 1 + "8th Grade History: The Integration of Binding Techniques in the Invention of the Printing Press during the Renaissance Era": 1 + "8th Grade History: Exploring the Role of Lithography in the Invention of the Printing Press during the Renaissance Era": 1 + "8th Grade History: The Invention of the Printing Press and the Spread of Literacy during the Renaissance Era in Europe": 1 + "8th Grade History: The Invention of the Printing Press during the Renaissance Era: A Deep Dive into the Mechanics of Presses": 1 + "8th Grade History: The Advancements in Typography that Paved the Way for the Invention of the Printing Press during the Renaissance Era.": 1 + "3rd Grade English: Exploring Storytelling through Audible with Voice Recordings": 1 + "3rd Grade English: Journey through Storytelling using Google Read and Write": 1 + "3rd Grade English: Discovering Storytelling with Podcasts in Audio Recordings": 1 + "3rd Grade English: Unleashing Creativity through Storytelling with Audacity Recordings": 1 + "3rd Grade English: Enhancing Story Telling Skills with Audio-Visual Recordings": 1 + "3rd Grade English: Journey through Storytelling using Apple’s GarageBand for Audio Recordings": 1 + "3rd Grade English: Storytelling and Literacy Enhancement with SoundCloud Recordings": 1 + "3rd Grade English: Interactive Storytelling with Zoom Audio Recordings": 1 + "3rd Grade English: Learning Storytelling through PowerPoint Audio Narrations": 1 + "3rd Grade English: Journey through Storytelling using VoiceThread for Audio Commentaries": 1 + "4th Grade Social Studies: The American Revolution and the Role of Printed Media": 1 + "4th Grade Social Studies: The American Revolution - Influence of the Cotton Gin": 1 + "4th Grade Social Studies: The American Revolution - Introduction to the Spinning Jenny": 1 + "4th Grade Social Studies: The American Revolution - Impact of the Steam Engine": 1 + "4th Grade Social Studies: The American Revolution - Understanding the Concept of Democracy": 1 + "4th Grade Social Studies: The American Revolution and the Introduction of Railroads": 1 + "4th Grade Social Studies: The American Revolution - Significance of the Power Loom": 1 + "4th Grade Social Studies: The American Revolution - The Role of the Printing Press": 1 + "4th Grade Social Studies: The American Revolution - Understanding the Concept of Federalism": 1 + "4th Grade Social Studies: The American Revolution - Exploration of the Telegraph": 1 + "4th Grade Social Studies: The American Revolution - Introduction to the Concept of Republicanism": 1 + "1st Grade Art: Exploring Color Mixing with Tempera Paints and Paintbrushes": 1 + "1st Grade Art: Learning Color Theory with Tempera Paints and Color Wheel": 1 + "1st Grade Art: Creating Patterns with Tempera Paints and Stencils": 1 + "1st Grade Art: Understanding Texture with Tempera Paints and Palette Knives": 1 + "1st Grade Art: Navigating Colors with Tempera Paints and Digital Art Software": 1 + "1st Grade Art: Experimenting with Value using Tempera Paints and Light Box": 1 + "1st Grade Art: Discovering Shapes with Tempera Paints and Geometric Templates": 1 + "1st Grade Art: Exploring Negative Space with Tempera Paints and Masking Tape": 1 + "1st Grade Art: Studying Composition with Tempera Paints and Viewfinder": 1 + "1st Grade Art: Exploring Perspective with Tempera Paints and Rulers": 1 + "2nd Grade Mathematics: iPad-based Interactive Whiteboard Activities for Addition Mastery using Number Line Method": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities for Subtraction Mastery using the Regrouping Method on Smartboards": 1 + "2nd Grade Mathematics: Promethean Board Interactive Activities for Addition Mastery in Base Ten System": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities for Subtraction Mastery using Virtual Manipulatives": 1 + "2nd Grade Mathematics: Using Touchscreen Interactive Whiteboard for Mastery in Column Addition": 1 + "2nd Grade Mathematics: Implementing Interactive Whiteboard Activities for Mastery in Subtraction with Borrowing": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities with Easel Software for Addition Mastery": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities for Subtraction Mastery using Number Bonds on ActivInspire": 1 + "2nd Grade Mathematics: Interactive Whiteboard Activities for Addition Mastery using Place Value Blocks on SMART Boards": 1 + "2nd Grade Mathematics: Using Microsoft Surface Hub for Interactive Whiteboard Activities in Subtraction Mastery.": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence through Fraction Tiles Tool, Number Line Method & Digital Math Manipulatives using the Bar Model Method": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence with Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & Virtual Whiteboard": 1 + "6th Grade Mathematics: Fraction Equivalence Mastery using Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Montessori Method": 1 + "6th Grade Mathematics: Fraction Equivalence Unpacked - Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Singapore Math Approach": 1 + "6th Grade Mathematics: Fraction Equivalence with Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & Concrete-Pictorial-Abstract Approach": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & Interactive Smart Board Lessons": 1 + "6th Grade Mathematics: Fraction Equivalence - Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Area Model of Multiplication": 1 + "6th Grade Mathematics: Fraction Equivalence Explored through Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Socratic Method": 1 + "6th Grade Mathematics: Fraction Equivalence using Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Cross Multiplication Technique": 1 + "6th Grade Mathematics: Fraction Equivalence - Fraction Tiles Tool, Number Line Method, Digital Math Manipulatives & the Use of Geoboard.": 1 + "4th Grade Music: Appreciating Beethoven’s Works Through Piano Interpretation Using Sibelius Software": 1 + "4th Grade Music: Exploring Mozart’s Melodies Through Piano Interpretation and GarageBand Application": 1 + "4th Grade Music: Understanding Bach’s Compositions Through Piano Interpretation Leveraging MIDI Technology": 1 + "4th Grade Music: Appreciating Classical Compositions Through Piano Interpretation with Yamaha Digital Pianos": 1 + "4th Grade Music: Diving into Chopin’s Pieces Through Piano Interpretation Using Ableton Live Software": 1 + "4th Grade Music: Exploring Tchaikovsky’s Works Through Piano Interpretation with Casio Keyboards": 1 + "4th Grade Music: Understanding Vivaldi’s Concertos Through Piano Interpretation on Steinway Grand Pianos": 1 + "4th Grade Music: Learning Schubert’s Symphonies Through Piano Interpretation Using Logic Pro X Software": 1 + "4th Grade Music: Appreciating Haydn’s Sonatas Through Piano Interpretation with Roland Digital Pianos": 1 + "4th Grade Music: Exploring Handel’s Suites Through Piano Interpretation Utilizing Pro Tools Software": 1 + "4th Grade Environmental Studies: Ecosystems and the Impact of Climate Change - A Focus on Carbon Footprint Reduction": 1 + "Ecosystems and Climate Change: Understanding the Role of Solar Energy in 4th Grade Environmental Studies": 1 + "4th Grade Environmental Studies: Ecosystems, Climate Change, and the Use of Smart Grids": 1 + "Exploring Ecosystems and Climate Change: The Importance of Water Conservation in 4th Grade Environmental Studies": 1 + "4th Grade Environmental Studies: Analyzing Ecosystems and Climate Change through GIS Technology": 1 + "Ecosystems and Climate Change: Green Building Principles in 4th Grade Environmental Studies": 1 + "4th Grade Environmental Studies: Ecosystems, Climate Change, and the Power of Wind Energy": 1 + "Climate Change and Ecosystems: The Impact of Electric Vehicles in 4th Grade Environmental Studies": 1 + "4th Grade Environmental Studies: Understanding Climate Change and Ecosystems through Biofuel Technology": 1 + "Ecosystems and Climate Change: The Role of Hydroelectric Power in 4th Grade Environmental Studies.": 1 + "3rd Grade Science: A Deep Dive into Photosynthesis": 1 + "3rd Grade Science: Exploring Plant Cells through Microscopes": 1 + "3rd Grade Science: Understanding Plant Growth and Light Exposure": 1 + "3rd Grade Science: Unfolding the Secrets of Seed Germination": 1 + "3rd Grade Science: The Role of Water in Plant Life": 1 + "3rd Grade Science: Discovering Plant Reproduction: From Pollination to Fruit": 1 + "3rd Grade Science: Plant Life: An Introduction to Transpiration": 1 + "3rd Grade Science: The Magic of Chlorophyll in Plant Life": 1 + "3rd Grade Science: Plant Adaptations: A Survival Mechanism": 1 + "3rd Grade Science: Decoding the Nutrient Uptake in Plants": 1 + "3rd Grade Science: Plant Life: A Detailed Study on Roots, Stems, and Leaves.": 1 + "3rd Grade English: Introduction to Basic Grammar and Sentence Structure using Mind Maps": 1 + "3rd Grade English: Basic Grammar and Sentence Structure with Interactive Learning Tools": 1 + "3rd Grade English: Exploring Sentence Structure through Digital Storytelling": 1 + "3rd Grade English: Understanding Basic Grammar with Language Apps ": 1 + "3rd Grade English: Sentence Structure and Grammar using Interactive Whiteboard Activities ": 1 + "3rd Grade English: Basic Grammar and Sentence Structure through Podcasts": 1 + "3rd Grade English: Learning Basic Grammar through Educational Games": 1 + "3rd Grade English: Sentence Structure Mastery with Online Quizzes ": 1 + "3rd Grade English: Basic Grammar and Sentence Structure using Visual Learning Tools": 1 + "3rd Grade English: Enhancing Sentence Structure and Grammar with Interactive eBooks": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables": 1 + "3rd Grade Mathematics: Mastering Multiplication through Fun Math Games": 1 + "3rd Grade Mathematics: Mastering Multiplication using Digital Flashcards": 1 + "3rd Grade Mathematics: Mastering Multiplication with Manipulatives": 1 + "3rd Grade Mathematics: Mastering Multiplication through Interactive Whiteboard Exercises": 1 + "3rd Grade Mathematics: Mastering Multiplication using Math Apps": 1 + "3rd Grade Mathematics: Mastering Multiplication through Storytelling Techniques": 1 + "3rd Grade Mathematics: Mastering Multiplication with Hands-on Activities": 1 + "3rd Grade Mathematics: Mastering Multiplication using Virtual Reality Tools": 1 + "3rd Grade Mathematics: Mastering Multiplication through Online Quizzes": 1 + "Exploring Roller Coaster Mechanics with Python Programming: A 7th Grade Science Course": 1 + "The Physics Behind the Fun: Using Unity Game Engine to Simulate Roller Coaster Dynamics in 7th Grade Science": 1 + "Leveraging MATLAB for Understanding Roller Coaster Physics: A Comprehensive Guide for 7th Grade Science": 1 + "The Physics Behind the Fun: Using PhET Simulations to Explore Roller Coaster Mechanics in 7th Grade Science": 1 + "7th Grade Science: Applying Blender 3D to Dissect Roller Coaster Physics": 1 + "Uncovering Roller Coaster Dynamics with SolidWorks: A 7th Grade Science Course": 1 + "The Physics Behind the Fun: Exploring Roller Coaster Motion using VPython in 7th Grade Science": 1 + "7th Grade Science: Using SketchUp to Design and Analyze Roller Coaster Mechanics": 1 + "The Physics Behind the Fun: Simulating Roller Coaster Mechanics with Autodesk Inventor in 7th Grade Science": 1 + "Understanding Roller Coaster Dynamics through AutoCAD in 7th Grade Science.": 1 + "4th Grade Art: Exploring Color Theory using Prismacolor Pencils": 1 + "4th Grade Art: Introduction to Color Theory using Colored Pencils and Sketch Pads": 1 + "4th Grade Art: Learning Color Theory with Colored Pencils and Watercolor Techniques": 1 + "4th Grade Art: Discovering Color Theory using Colored Pencils and Color Wheel": 1 + "4th Grade Art: Introduction to Color Theory and Shading Techniques using Colored Pencils": 1 + "4th Grade Art: Color Theory Mastery with Colored Pencils and Blending Techniques": 1 + "4th Grade Art: Introduction to Color Theory using Colored Pencils and Graphite Shading": 1 + "4th Grade Art: Studying Color Theory with Colored Pencils and Digital Art Software": 1 + "4th Grade Art: Color Theory and Texture Exploration using Colored Pencils": 1 + "4th Grade Art: Introduction to Color Theory using Colored Pencils and Mixed Media Techniques": 1 + "3rd Grade English: Mastering Prepositions and Conjunctions using VocabularySpellingCity and Interactive Whiteboards": 1 + "3rd Grade English: Enhancing Prepositions and Conjunctions Knowledge with VocabularySpellingCity through iPads": 1 + "3rd Grade English: Learning Prepositions and Conjunctions using VocabularySpellingCity and Audio-Visual Aids": 1 + "3rd Grade English: Exploring Prepositions and Conjunctions using VocabularySpellingCity and Gamification Techniques": 1 + "3rd Grade English: Understanding Prepositions and Conjunctions with VocabularySpellingCity through Project-Based Learning": 1 + "3rd Grade English: Studying Prepositions and Conjunctions using VocabularySpellingCity and Google Classroom": 1 + "3rd Grade English: Acquiring Prepositions and Conjunctions Skills through VocabularySpellingCity and E-Learning Platforms": 1 + "3rd Grade English: Improving Prepositions and Conjunctions using VocabularySpellingCity and Digital Flashcards": 1 + "3rd Grade English: Grasping Prepositions and Conjunctions via VocabularySpellingCity and Interactive Quizzes": 1 + "3rd Grade English: Advancing Prepositions and Conjunctions Knowledge using VocabularySpellingCity and Virtual Reality Tools.": 1 + "6th Grade Social Studies: The Impact of The Electric Light Bulb on Technological Advancements": 1 + "6th Grade Social Studies: The Influence of Telegraphy in the History of Electricity and Innovation": 1 + "6th Grade Social Studies: The Role of Electric Trains in Technological Progress and Innovation": 1 + "6th Grade Social Studies: The Effect of The Radio in the Evolution of Electric Technology": 1 + "6th Grade Social Studies: The Role of Electric Cars in the Course of Technology and Innovation": 1 + "6th Grade Social Studies: The Influence of The Electric Computer on Technological Advancements": 1 + "6th Grade Social Studies: Understanding The Electric Fan’s Impact on Technology and Innovation": 1 + "6th Grade Social Studies: The Impact of Electric Power Stations on the Course of Technology": 1 + "6th Grade Social Studies: The Role of The Electric Elevator in Technological Progress and Innovation": 1 + "6th Grade Social Studies: The Influence of Electric Telephones on Technological Evolution": 1 + "10th Grade Language Arts: Exploring Internet Metaphors in Literature": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: A Focus on Artificial Intelligence": 1 + "10th Grade Language Arts: The Use of Computer Metaphors in Literature": 1 + "10th Grade Language Arts: Dissecting Technological Metaphors: The Role of Robotics in Literature": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: An Examination of Cybernetics": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: Unpacking the Telephone Metaphor": 1 + "10th Grade Language Arts: Literature’s Take on Technological Metaphors: The Impact of Television": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: The Power of the Printing Press": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: A Study on the Metaphor of the Radio": 1 + "10th Grade Language Arts: Technological Metaphors in Literature: Decoding the Metaphor of the Telescope": 1 + "7th Grade Language Arts: Utilizing Adobe Spark on iPads to Innovatively Explore Odes for Digital Presentation": 1 + "7th Grade Language Arts: Leveraging iMovie on iPads for Interactive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Exploring Odes through Google Slides on iPads for Engaging Digital Presentations": 1 + "7th Grade Language Arts: Incorporating VoiceThread on iPads in Odes Study for Interactive Digital Presentations": 1 + "7th Grade Language Arts: Using Nearpod on iPads for Immersive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Implementing Animoto on iPads to Explore Odes for Dynamic Digital Presentations": 1 + "7th Grade Language Arts: Exploiting Flipgrid on iPads for Collaborative Odes Study in Digital Presentations": 1 + "7th Grade Language Arts: Employing Prezi on iPads for Visual Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Applying Edmodo on iPads in Odes Study for Interactive Digital Presentations": 1 + "7th Grade Language Arts: Integrating Explain Everything on iPads for Detailed Odes Exploration in Digital Presentations": 1 + "6th Grade: Exploring Renaissance Art in History Through the Lens of Fresco Painting": 1 + "6th Grade: Investigating the Use of Perspective in Renaissance Art History": 1 + "6th Grade: The Role of Oil Painting in Renaissance Art History": 1 + "6th Grade: Understanding Renaissance Art: The Impact of the Printing Press": 1 + "6th Grade: Exploring Renaissance Art and the Concept of Humanism": 1 + "6th Grade: The Influence of Patronage on Renaissance Art in History": 1 + "6th Grade: Studying the Use of Chiaroscuro in Renaissance Art History": 1 + "6th Grade: Renaissance Art History: A Closer Look at the Sfumato Technique": 1 + "6th Grade: The Effect of Linear Perspective on Renaissance Art": 1 + "6th Grade: Exploring the Role of Naturalism in Renaissance Art History.": 1 + "3rd Grade Geography: Using Google Maps for GPS Map Interpretation": 1 + "3rd Grade Geography: Incorporating Compass Tools in GPS Map Reading": 1 + "3rd Grade Geography: Understanding Longitude and Latitude with GPS": 1 + "3rd Grade Geography: GPS Map Interpretation Using Satellite Imagery": 1 + "3rd Grade Geography: Using GPS and Topographic Maps for Land Form Interpretation": 1 + "3rd Grade Geography: Understanding Elevation with GPS for Map Reading": 1 + "3rd Grade Geography: Using GPS and Geocaching for Interactive Map Reading": 1 + "3rd Grade Geography: GPS Map Interpretation with AR (Augmented Reality) Technology": 1 + "3rd Grade Geography: Incorporating GIS (Geographic Information System) in GPS Map Reading": 1 + "3rd Grade Geography: Using GPS and Geospatial Data for Map Interpretation.": 1 + "6th Grade Language Arts: Fundamentals of Storytelling through Character Development": 1 + "6th Grade Language Arts: Exploring Storytelling Fundamentals with Digital Storyboards": 1 + "6th Grade Language Arts: Utilizing Imagery in the Fundamentals of Storytelling": 1 + "6th Grade Language Arts: Fundamentals of Storytelling: Understanding Plot Structure": 1 + "6th Grade Language Arts: Mastering Storytelling Fundamentals with Dialogue Techniques": 1 + "6th Grade Language Arts: Exploring Storytelling Fundamentals with Interactive Writing Software": 1 + "6th Grade Language Arts: Fundamentals of Storytelling: Developing Conflict and Resolution": 1 + "6th Grade Language Arts: Incorporating Sound Effects in Storytelling Fundamentals": 1 + "6th Grade Language Arts: Exploring Storytelling Fundamentals with Animation Techniques": 1 + "6th Grade Language Arts: Utilizing Virtual Reality in the Fundamentals of Storytelling": 1 + "2nd Grade Music: Mastering the Rhythm of Notes and Melodies with a Tambourine using GarageBand Interactive Software": 1 + "2nd Grade Music: Exploring Beats and Melodies with a Tambourine and MusicTheory.net Interactive Software": 1 + "2nd Grade Music: Engaging in Rhythm Creation with a Tambourine and Sibelius Composition Software": 1 + "2nd Grade Music: Understanding Rhythm and Pitch with a Tambourine through Ableton Live Software": 1 + "2nd Grade Music: Learning to Keep Time with a Tambourine using MuseScore Notation Software": 1 + "2nd Grade Music: Comprehending Melodies and Rhythms with a Tambourine on FL Studio Production Software": 1 + "2nd Grade Music: Navigating Music Composition with a Tambourine using Pro Tools Recording Software": 1 + "2nd Grade Music: Discovering the Art of Rhythm with a Tambourine through NoteFlight Online Music Writing Platform": 1 + "2nd Grade Music: Grasping Note Duration and Rhythm with a Tambourine using Soundtrap Music Making Software": 1 + "2nd Grade Music: Rhythm and Melody Development with a Tambourine on Cubase Sequencing Software.": 1 + "2nd Grade English: Mastering Conjunction Placement in Sentence Structure with Google Classroom": 1 + "Integrating SmartBoard Technology in 2nd Grade English for Conjunction Placement ": 1 + "2nd Grade English: Utilizing Seesaw App for Effective Conjunction Placement in Sentences": 1 + "Perfecting Conjunction Placement in 2nd Grade English using Interactive Whiteboards": 1 + "2nd Grade English: Enhancing Conjunction Placement Skills through Edmodo Platform": 1 + "Using Kahoot! for Conjunction Placement Mastery in 2nd Grade English": 1 + "2nd Grade English: Conjunction Placement with Quizlet Live for Improved Sentence Structure": 1 + "2nd Grade English: Exploring Conjunctions in Sentences using Microsoft Teams": 1 + "Improving Conjunction Placement in 2nd Grade English with Nearpod": 1 + "2nd Grade English: Understanding Conjunction Placement through the Canvas LMS": 1 + "6th Grade Art: Exploring Watercolors with Round Brushes": 1 + "6th Grade Art: Watercolor Techniques using Flat Brushes": 1 + "6th Grade Art: Mastering Watercolors with Palette Knives": 1 + "6th Grade Art: Exploring Watercolors through Wet on Wet Technique": 1 + "6th Grade Art: Creating Texture in Watercolor using Salt": 1 + "6th Grade Art: Exploring Watercolors with Layering Technique": 1 + "6th Grade Art: Using Masking Fluid in Watercolor Exploration": 1 + "6th Grade Art: Watercolor Exploration: Mastering Wash Techniques": 1 + "6th Grade Art: Exploring Watercolors with Sponges": 1 + "6th Grade Art: Watercolor Exploration using Digital Art Software": 1 + "8th Grade Physical Education: Exploring the Neurological Impact of Exercise using Heart Rate Monitors": 1 + "Understanding the Body-Brain Connection through Biofeedback Technology in 8th Grade Physical Education ": 1 + "8th Grade Physical Education: The Role of Yoga in Enhancing the Brain-Body Connection": 1 + "8th Grade Physical Education: Exploring the Brain-Muscle Connection using EMG Technology ": 1 + "The Impact of Aerobic Exercise on Brain Function: An 8th Grade Physical Education Course ": 1 + "8th Grade Physical Education: A Comprehensive Study of Body-Brain Coordination using Virtual Reality ": 1 + "8th Grade Physical Education: Examining the Effect of Sports on Cognitive Development": 1 + "Understanding Neuroplasticity through Physical Activity: An 8th Grade Physical Education Course": 1 + "8th Grade Physical Education: The Mind-Body Connection Explored through Dance": 1 + "8th Grade Physical Education: Examining the Brain-Body Connection through Martial Arts Techniques": 1 + "10th Grade Language Arts: Exploring the Use of Computer Metaphors in Literature": 1 + "10th Grade Language Arts: The Influence of Telecommunication Metaphors in Literature": 1 + "10th Grade Language Arts: Dissecting the Role of Internet Metaphors in Novels": 1 + "10th Grade Language Arts: Understanding Robotics Metaphors in Literature": 1 + "10th Grade Language Arts: The Impact of Artificial Intelligence Metaphors in Fiction": 1 + "10th Grade Language Arts: Analyzing Space Travel Metaphors in Literature": 1 + "10th Grade Language Arts: The Role of Social Media Metaphors in Contemporary Literature": 1 + "10th Grade Language Arts: Study of Nuclear Technology Metaphors in Postmodern Literature": 1 + "10th Grade Language Arts: The Significance of Genetic Engineering Metaphors in Literature": 1 + "10th Grade Language Arts: Exploring the Use of Virtual Reality Metaphors in Science Fiction Literature": 1 + "2nd Grade Language Arts: Exploring Greek Myths through SMART Board Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Engaging with Norse Myths through Promethean Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Delving into Roman Myths using TouchIT Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Understanding Egyptian Myths through Google Jamboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Journeying into African Myths with eBeam Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Exploring Indigenous Myths through Mimio Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Discovering Celtic Myths using Newline Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Learning about Asian Myths through ViewSonic Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Interpreting Middle Eastern Myths using Boxlight Interactive Whiteboard Technology and Nearpod": 1 + "2nd Grade Language Arts: Investigating Mesoamerican Myths through Hitachi Interactive Whiteboard Technology and Nearpod": 1 + "6th Grade Music: Exploring Wagner’s Operas and the Concept of Leitmotif through Piano": 1 + "6th Grade Music: Understanding Wagner’s Operas and the Concept of Leitmotif using Audacity Software": 1 + "6th Grade Music: Wagner’s Operas, Leitmotif, and Sound Wave Analysis": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif - A Deep Dive into Music Theory": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif with MIDI Sequencing": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif - Exploring with GarageBand": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif - A Study through Digital Sheet Music": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif with Music Composition Software": 1 + "6th Grade Music: Wagner’s Operas, Leitmotif, and the Role of Virtual Instruments": 1 + "6th Grade Music: Interactive Analysis of Wagner’s Operas and Leitmotif using Music Visualization Tools.": 1 + "5th Grade Art: Mastering the Brush in Watercolor Techniques": 1 + "5th Grade Art: Exploring Tints and Shades in Watercolor Painting": 1 + "5th Grade Art: Discovering Watercolor Landscapes with Palette Knives": 1 + "5th Grade Art: Portraits in Watercolor - A Deep Dive into Detail Brushes": 1 + "5th Grade Art: The Art of Color Mixing in Watercolor Techniques": 1 + "5th Grade Art: Unveiling the Science of Watercolor Diffusion": 1 + "5th Grade Art: Discovering Watercolor Skies with Fan Brushes": 1 + "5th Grade Art: Exploring Wet-on-Wet Technique in Watercolor": 1 + "5th Grade Art: Watercolor Painting with Sponge Techniques": 1 + "5th Grade Art: Abstract Watercolor Art with Spray Bottles.": 1 + "7th Grade Language Arts: Using Nearpod and Quizlet on iPads for In-depth Study of Odes in Digital Presentations": 1 + "7th Grade Language Arts: Utilizing Nearpod and Google Slides on iPads for Interactive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Applying Nearpod and Augmented Reality on iPads for Immersive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Using Nearpod and VR Technology on iPads for Engaging Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Leveraging Nearpod and Kahoot on iPads for Comprehensive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Using Nearpod and Padlet on iPads for Collaborative Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Incorporating Nearpod and Flipgrid on iPads for Interactive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Utilizing Nearpod and Adobe Spark on iPads for Creative Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Applying Nearpod and Edmodo on iPads for Immersive Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Using Nearpod and Prezi on iPads for Dynamic Odes Exploration in Digital Presentations": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Brushes": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache using Palette Knives": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache and the Wet-On-Wet Technique": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache through Layering Techniques": 1 + "5th Grade Art: Enhancing Drawing and Painting Skills - Exploring Gouache and Color Mixing": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache and the Use of Stencils": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Different Canvas Textures": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache and the Glazing Technique": 1 + "5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Easel Techniques.": 1 + "1st Grade Music: Mastering Melody Fundamentals with Djembe Hand Drums and GarageBand Piano Apps": 1 + "1st Grade Music: Learning Melody Basics with Cajon Hand Drums and Simply Piano Apps": 1 + "1st Grade Music: Delving into Melody Principles with Bongo Hand Drums and Yousician Piano Apps": 1 + "1st Grade Music: Understanding Melody Essentials with Conga Hand Drums and Flowkey Piano Apps": 1 + "1st Grade Music: Studying Melody Basics with Doumbek Hand Drums and Magic Piano Apps": 1 + "1st Grade Music: Grasping Melody Fundamentals with Frame Hand Drums and Casio Chordana Play Piano Apps": 1 + "1st Grade Music: Discovering Melody Basics with Tambourine Hand Drums and Perfect Piano Apps": 1 + "1st Grade Music: Exploring Melody Foundations with Tabla Hand Drums and Piano Lessons by OnlinePianist Apps": 1 + "1st Grade Music: Navigating Melody Basics with Bodhran Hand Drums and Piano Maestro by JoyTunes Apps": 1 + "1st Grade Music: Unpacking Melody Principles with Timbale Hand Drums and Piano Academy by Yokee Apps": 1 + "3rd Grade History: Discover Ancient Egypt with Virtual Reality Archaeology Simulations": 1 + "3rd Grade History: Unearth Ancient Egypt Using Archaeology Simulations and Carbon Dating Techniques": 1 + "3rd Grade History: Investigate Ancient Egypt with Archaeology Simulations and Ground-Penetrating Radar": 1 + "3rd Grade History: Exploring Ancient Egypt with Archaeology Simulations and Excavation Tools": 1 + "3rd Grade History: Uncover Ancient Egypt Through Archaeology Simulations and GIS Mapping": 1 + "3rd Grade History: Delve into Ancient Egypt Using Archaeology Simulations and Stratigraphy Concepts": 1 + "3rd Grade History: Reveal Ancient Egypt with Archaeology Simulations and Artifact Preservation Techniques": 1 + "3rd Grade History: Unearth Ancient Egypt Using Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Probe Ancient Egypt with Archaeology Simulations and Aerial Photography": 1 + "3rd Grade History: Discover Ancient Egypt with Archaeology Simulations and Radiocarbon Dating Techniques": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction using Number Line Activities and Abacus Tools": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction through Number Line and Tangram Puzzles": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery with Number Line Activities and Math Apps": 1 + "2nd Grade Mathematics: Improving Addition and Subtraction Skills with Number Line Activities and Flashcards": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Understanding through Number Line Activities and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery using Number Line Activities and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Learning Addition and Subtraction through Number Line Activities and Mathematics Software": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Number Line Activities and Math Board Games": 1 + "2nd Grade Mathematics: Understanding Addition and Subtraction with Number Line Activities and Digital Learning Platforms": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Number Line Activities and Math Workbooks.": 1 + "7th Grade English Language Arts: Interpreting Symbolism in Robert Frost’s Poetry with PowerPoint Presentations": 1 + "7th Grade English Language Arts: Deciphering Symbolism in Emily Dickinson’s Poetry with Prezi Presentations": 1 + "7th Grade English Language Arts: Analyzing Symbolism in Langston Hughes’ Poetry through Google Slides": 1 + "7th Grade English Language Arts: Understanding Symbolism in Walt Whitman’s Poetry Using Interactive Whiteboards": 1 + "7th Grade English Language Arts: Exploring Symbolism in Maya Angelou’s Poetry with Video Animation Tools": 1 + "7th Grade English Language Arts: Unraveling Symbolism in Edgar Allan Poe’s Poetry through Digital Storytelling Tools": 1 + "7th Grade English Language Arts: Decoding Symbolism in William Blake’s Poetry Using Smartboards": 1 + "7th Grade English Language Arts: Interpreting Symbolism in William Wordsworth’s Poetry with Augmented Reality Tools": 1 + "7th Grade English Language Arts: Examining Symbolism in Sylvia Plath’s Poetry through Podcasts": 1 + "7th Grade English Language Arts: Studying Symbolism in Lord Byron’s Poetry with Virtual Reality Tools": 1 + "5th Grade History: Unveiling the Ancient Civilizations through Hieroglyphics": 1 + "5th Grade History: Decoding Ancient Civilizations with Pottery": 1 + "5th Grade History: Exploring Ancient Civilizations with the Invention of the Wheel": 1 + "5th Grade History: Unraveling Ancient Civilizations: The Role of Irrigation Systems": 1 + "5th Grade History: Discovering Ancient Civilizations through Bronze Age Technology": 1 + "5th Grade History: Unveiling the Ancient Civilizations: The Science of Astronomy": 1 + "5th Grade History: Understanding Ancient Civilizations via the Pyramids": 1 + "5th Grade History: Journey into Ancient Civilizations: The Power of the Printing Press": 1 + "5th Grade History: Unveiling the Ancient Civilizations with The Concept of Democracy": 1 + "5th Grade History: Discerning Ancient Civilizations through Navigation Technology": 1 + "6th Grade Mathematics: Understanding Variables with the Aid of Graphing Calculators": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions through Microsoft Mathematics": 1 + "6th Grade Mathematics: The Use of Algebra Tiles in Understanding Variables": 1 + "6th Grade Mathematics: Interactive Learning of Algebraic Expressions with GeoGebra": 1 + "6th Grade Mathematics: Making Sense of Variables with Virtual Manipulatives": 1 + "6th Grade Mathematics: Algebraic Expressions and Variables: A Deep Dive into the Distributive Property": 1 + "6th Grade Mathematics: Unraveling Variables with Wolfram Alpha Computational Intelligence": 1 + "6th Grade Mathematics: The Role of Computational Thinking in Simplifying Algebraic Expressions": 1 + "6th Grade Mathematics: Discovering Algebraic Expressions Through the Lens of Python Programming": 1 + "6th Grade Mathematics: The Art of Simplifying Algebraic Expressions using Khan Academy Tools.": 1 + "11th Grade Science: Exploring Cellular Biology through Microscopy": 1 + "11th Grade Science: Understanding Cellular Biology: Focus on DNA Sequencing": 1 + "11th Grade Science: Cellular Biology and the World of Genomics": 1 + "11th Grade Science: Cellular Biology: A Deep Dive into PCR Techniques": 1 + "11th Grade Science: Cellular Biology: An In-depth Study of Cellular Respiration": 1 + "11th Grade Science: Unveiling the Secrets of Cellular Biology with Electron Microscopes": 1 + "11th Grade Science: Cellular Biology: Exploring the Mitochondria": 1 + "11th Grade Science: Cellular Biology in Focus: The Role of Ribosomes": 1 + "11th Grade Science: Cellular Biology: Getting to Know the Nucleus": 1 + "11th Grade Science: Cellular Biology: Decoding the Cell Cycle": 1 + "11th Grade Science: Cellular Biology: The Fascinating World of Protein Synthesis": 1 + "7th Grade English Language Arts: Analyzing Symbolism in Robert Frost’s Poetry with Smartboards and Google Docs": 1 + "7th Grade English Language Arts: Understanding Symbolism in Robert Frost’s Poetry through Historical Context using Interactive Whiteboards and Prezi Presentations": 1 + "Utilizing Adobe Spark in 7th Grade English Language Arts: Comprehending Symbolism in Robert Frost’s Poetry through Historical Context": 1 + "7th Grade English Language Arts: Exploring Symbolism in Robert Frost’s Poetry through Historical Context using Virtual Reality and Smartboards": 1 + "Enhancing Robert Frost Poetry Analysis with Smartboards and Quizlet in 7th Grade English Language Arts": 1 + "7th Grade English Language Arts: Decoding Symbolism in Robert Frost’s Poetry through Historical Context with Smartboards and Podcasts": 1 + "Utilizing Smartboards and Kahoot in 7th Grade English Language Arts: Understanding Symbolism in Robert Frost’s Poetry": 1 + "7th Grade English Language Arts: Interpreting Symbolism in Robert Frost’s Poetry through Historical Context with Smartboards and YouTube Videos": 1 + "7th Grade English Language Arts: Understanding Symbolism in Robert Frost’s Poetry through Historical Context with Smartboards and Collaborative Google Slides": 1 + "7th Grade English Language Arts: Delving into Symbolism in Robert Frost’s Poetry through Historical Context using Smartboards and Interactive Online Quizzes.": 1 + "2nd Grade Mathematics: Introduction to Addition and Subtraction using Number Line": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction through Flashcards": 1 + "2nd Grade Mathematics: Understanding Addition and Subtraction with Abacus": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction using Digital Apps": 1 + "2nd Grade Mathematics: Addition and Subtraction with Touch Points": 1 + "2nd Grade Mathematics: Interactive Addition and Subtraction using Smartboard": 1 + "2nd Grade Mathematics: Basics of Addition and Subtraction with Manipulatives": 1 + "2nd Grade Mathematics: Addition and Subtraction Practice on Math Worksheets": 1 + "2nd Grade Mathematics: Hands-on Addition and Subtraction using Math Games": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills with Math Puzzles": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Use of Carrier Pigeons in Ciphered Messaging": 1 + "8th Grade History: The Revolutionary War Era - Diplomacy and Communication: Pigeons and the Culper Spy Ring": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Use of Pigeons and Invisible Ink": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Role of Pigeons in Espionage ": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: Pigeons and the Development of Early Postal Systems": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: Pigeons in War Strategy and Tactical Planning": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Use of Pigeons in Signal Systems": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: Pigeons and the Evolution of Morse Code": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: The Impact of Pigeons on Military Intelligence": 1 + "8th Grade History: Revolutionary War Era - Diplomacy and Communication: Pigeons and the Origins of Modern Telecommunications": 1 + "Exploring Rhythm and Melody with Logic Pro Using MIDI Controllers: A Course for 1st Graders": 1 + "Understanding Rhythm and Melody with Logic Pro and Audio Interfaces: A Course for 1st Graders": 1 + "Developing Rhythm and Melody with Logic Pro using Virtual Instruments: A Course for 1st Graders": 1 + "Creating Rhythm and Melody with Logic Pro and Digital Audio Workstations: A Course for 1st Graders": 1 + "Learning Rhythm and Melody with Logic Pro using Music Sampling: A Course for 1st Graders": 1 + "Mastering Rhythm and Melody with Logic Pro Using Beat Sequencing: A Course for 1st Graders": 1 + "Exploring Rhythm and Melody with Logic Pro and Sound Design: A Course for 1st Graders": 1 + "Discovering Rhythm and Melody with Logic Pro Using Drum Machines: A Course for 1st Graders": 1 + "Introduction to Rhythm and Melody with Logic Pro and Synthesizers: A Course for 1st Graders": 1 + "Navigating Rhythm and Melody with Logic Pro using Audio Mixing Techniques: A Course for 1st Graders": 1 + "3rd Grade Health: Nutrition Education using Oculus Rift in Virtual Reality Cooking Games ": 1 + "3rd Grade Health: Exploring Balanced Diets with Google Cardboard in VR Cooking Games": 1 + "3rd Grade Health: Understanding Meal Planning through Virtual Reality Cooking Games on PlayStation VR": 1 + "3rd Grade Health: Learning about Vitamins and Minerals using HTC Vive in Virtual Reality Cooking Games": 1 + "3rd Grade Health: Studying Food Groups with Microsoft Mixed Reality in Virtual Reality Cooking Games": 1 + "3rd Grade Health: Nutrition Education through Virtual Reality Cooking Games using Interactive 3D Modelling ": 1 + "3rd Grade Health: Dietary Fiber Education with Samsung Gear VR in Virtual Reality Cooking Games": 1 + "3rd Grade Health: Grasping Calorie Counting via Virtual Reality Cooking Games on Valve Index": 1 + "3rd Grade Health: Discovering Healthy Snacking using Augmented Reality in Virtual Reality Cooking Games": 1 + "3rd Grade Health: Understanding Hydration and Fluids through Virtual Reality Cooking Games using Leap Motion Controller.": 1 + "2nd Grade History: How the Black Death Disrupted Feudalism: An In-depth Study of Medieval Sanitation and the Role of Aqueducts": 1 + "The Impact of the Black Death on Feudalism in 2nd Grade History: A Comprehensive Study of Medieval Hygiene Practices and the Use of Soap": 1 + "A Detailed Analysis of the Black Death’s Impact on Feudalism: The Role of Quarantine Measures in 2nd Grade History": 1 + "2nd Grade History: The Black Death and its Impact on Feudalism: A Study of Medieval Hygiene Practices and the Importance of Latrines": 1 + "The Impact of the Black Death on Feudalism: A Comprehensive Study of Medieval Hygiene Practices and Herbal Medicines in 2nd Grade History": 1 + "2nd Grade History: The Role of the Black Death in the Fall of Feudalism: Investigating Medieval Hygiene Practices and the Development of Public Baths": 1 + "How the Black Death Shaped Feudalism: A Comprehensive Study of Medieval Hygiene Practices and the Introduction of Sewer Systems in 2nd Grade History": 1 + "2nd Grade History: The Black Death’s Effect on Feudalism: An Examination of Medieval Hygiene Practices and the Use of Herbal Antiseptics": 1 + "The Impact of the Black Death on Feudalism: A Deep Dive into Medieval Hygiene Practices and the Advancements in Plumbing in 2nd Grade History": 1 + "2nd Grade History: The Black Death and its Consequences for Feudalism: Studying Medieval Hygiene Practices and the Emergence of Public Health Policies.": 1 + "6th Grade Art: Pencil Sketching Basics with Graphite": 1 + "6th Grade Art: Pencil Sketching Basics using Eraser Techniques": 1 + "6th Grade Art: Pencil Sketching Basics and Shading Techniques": 1 + "6th Grade Art: Pencil Sketching Basics with Charcoal": 1 + "6th Grade Art: Pencil Sketching Basics on Canvas": 1 + "6th Grade Art: Pencil Sketching Basics using Digital Tablets": 1 + "6th Grade Art: Pencil Sketching Basics with Perspective Drawing": 1 + "6th Grade Art: Introduction to Pencil Sketching Basics with Still Life": 1 + "6th Grade Art: Pencil Sketching Basics and Texture Techniques": 1 + "6th Grade Art: Pencil Sketching Basics - Understanding Light and Shadow.": 1 + "Third Grade Music: Discovering the Guitar through Reading Music Sheets": 1 + "Third Grade Music: Discovering the Guitar with Online Apps": 1 + "Third Grade Music: Mastering the Guitar with Fretboard Theory": 1 + "Third Grade Music: Discovering the Guitar - Exploring Acoustic vs Electric": 1 + "Third Grade Music: Discovering the Guitar with Tuning Techniques": 1 + "Third Grade Music: Discovering the Guitar - Focus on Strumming Patterns": 1 + "Third Grade Music: Discovering the Guitar using Digital Tuners": 1 + "Third Grade Music: Discovering the Guitar - Introduction to Chord Progression": 1 + "Third Grade Music: Discovering the Guitar with Fingerpicking Techniques": 1 + "Third Grade Music: Discovering the Guitar - Learning with Tablature Software": 1 + "5th Grade Art: Exploring Ancient Egyptian Artifacts through Pottery Wheel Techniques": 1 + "5th Grade Art: Understanding Ancient Egyptian Artifacts via Clay Coiling Techniques": 1 + "5th Grade Art: Deciphering Ancient Egyptian Artifacts using Pottery Kiln Technology": 1 + "5th Grade Art: Unveiling Ancient Egyptian Artifacts through Slab Construction Pottery": 1 + "5th Grade Art: Examination of Ancient Egyptian Artifacts with Pottery Glazing Techniques": 1 + "5th Grade Art: Investigating Ancient Egyptian Artifacts through the Use of Potter’s Rib Tool": 1 + "5th Grade Art: Discovery of Ancient Egyptian Artifacts through Clay Wedging Techniques": 1 + "5th Grade Art: Navigating Ancient Egyptian Artifacts using Pottery Molds": 1 + "5th Grade Art: Delving into Ancient Egyptian Artifacts through Ceramic 3D Printing Technology": 1 + "5th Grade Art: Probing Ancient Egyptian Artifacts using Pinch Pot Pottery Techniques.": 1 + "9th Grade Music: Symphony of Sounds - The Dynamics of Choir Singing with Sibelius Software": 1 + "Mastering Melodies: Exploring Choir Singing Dynamics Through GarageBand in 9th Grade Music": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pitch Control in Choir Singing": 1 + "9th Grade Music: Symphony of Sounds - Exploring Breath Control Techniques in Choir Singing": 1 + "Symphony of Sounds: Integrating Acapella Apps into 9th Grade Choir Singing": 1 + "9th Grade Music: Symphony of Sounds - The Dynamics of Choir Singing and Sheet Music Interpretation": 1 + "9th Grade Music: Symphony of Sounds - Choir Singing Dynamics Through the Lens of Music Theory": 1 + "9th Grade Music: Symphony of Sounds - Exploring Timbre in Choir Singing Dynamics": 1 + "Symphony of Sounds: Exploring Choir Singing Dynamics through Digital Audio Workstations in 9th Grade Music": 1 + "9th Grade Music: Symphony of Sounds - Choir Singing Dynamics and the Role of Vocal Resonance": 1 + "3rd Grade History: Exploring Ancient Egyptian Pyramids with 3D Printing and VR Technology": 1 + "3rd Grade History: Decoding Hieroglyphics of Ancient Egypt with 3D Printing and Interactive Software": 1 + "3rd Grade History: Discovering Ancient Egyptian Artifacts with 3D Printing and Digital Scanning": 1 + "3rd Grade History: Unveiling Ancient Egyptian Burial Customs with 3D Printing and Augmented Reality": 1 + "3rd Grade History: Investigating Ancient Egyptian Mummification Process with 3D Printing and Microscopy": 1 + "3rd Grade History: Journey to Ancient Egyptian Temples with 3D Printing and Virtual Tours": 1 + "3rd Grade History: Understanding Ancient Egyptian Civilizations with 3D Printing and Satellite Imaging": 1 + "3rd Grade History: Revealing Ancient Egyptian Pharaohs with 3D Printing and Facial Reconstruction Technology": 1 + "3rd Grade History: Uncovering Ancient Egyptian Cultures with 3D Printing and Anthropological Studies": 1 + "3rd Grade History: Delving into Ancient Egyptian Society with 3D Printing and Social Simulation Models": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: An Intro to Sparring Gear with Focus on Gloves": 1 + "Understanding the Role of Headgear in 7th Grade Physical Education: Kick-start to Kickboxing": 1 + "An Intro to Kickboxing Shin Guards: 7th Grade Physical Education Course": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: An Intro to Mouthguards": 1 + "Emphasizing the Importance of Hand Wraps in 7th Grade Kickboxing Physical Education": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: An Intro to the Concept of Footwear": 1 + "Understanding the Role of Chest Protectors in 7th Grade Physical Education: Kick-start to Kickboxing": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: A Comprehensive Guide to Groin Protectors": 1 + "An Intro to Ankle Support in 7th Grade Physical Education: Kick-start to Kickboxing": 1 + "7th Grade Physical Education: Kick-start to Kickboxing: Exploring the Concept of Safety Padding.": 1 + "1st Grade Language Arts: Exploring Phonics and Spelling Using iPads with DuoLingo App": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills Using Smart Tablets with ABCmouse": 1 + "1st Grade Language Arts: Interactive Phonics and Spelling Study Using LeapFrog Tablets": 1 + "1st Grade Language Arts: Delving into Phonics and Spelling with Kindle Fire and Starfall App": 1 + "1st Grade Language Arts: Phonics and Spelling Mastery Using Smart Tablets with Nessy Learning Programme": 1 + "1st Grade Language Arts: Fostering Phonics and Spelling Comprehension Through Samsung Tablets with Reading Eggs App": 1 + "1st Grade Language Arts: Utilizing Smart Tablets and Montessori Crosswords App for Phonics and Spelling": 1 + "1st Grade Language Arts: Phonics and Spelling Exploration Using Google Nexus Tablets with Hooked on Phonics App": 1 + "1st Grade Language Arts: Deepening Understanding of Phonics and Spelling with Nabi Tablets and SpellingCity App": 1 + "1st Grade Language Arts: Phonics and Spelling Enrichment Using Smart Tablets with LetterSchool App": 1 + "9th Grade Social Studies: Exploring European Cultures Through Augmented Reality Using Google Expeditions": 1 + "Interactive Social Studies: Introduction to Asian Cultures Using Augmented Reality and Microsoft HoloLens in 9th Grade": 1 + "9th Grade Social Studies: Immersive Learning of African Cultures with Augmented Reality Using ARKit": 1 + "Introduction to American Indigenous Cultures: A 9th Grade Social Studies Course Using Augmented Reality and Aurasma": 1 + "9th Grade Social Studies: Middle Eastern Cultural Studies Through Augmented Reality Utilizing Snapchat’s AR Lenses": 1 + "9th Grade Social Studies: Discovering Latin American Cultures with Augmented Reality Through the Use of Vuforia": 1 + "Introduction to World Cultures - A 9th Grade Social Studies Course: Exploring Pacific Islander Cultures through ARCore Augmented Reality": 1 + "9th Grade Social Studies: Unveiling Arctic Cultures Through the Lens of Augmented Reality Using Wikitude": 1 + "Social Studies for 9th Grade: An Augmented Reality Journey into Australian Aboriginal Cultures Using Layar AR": 1 + "9th Grade Social Studies: Unraveling the Mysteries of Ancient Civilizations Using Augmented Reality and Blippar": 1 + "2nd Grade Mathematics: Enhancing Addition Skills using TouchMath Program and iPad Applications": 1 + "Advanced 2nd Grade Mathematics: Incorporating Abacus in TouchMath Program for Addition Skills": 1 + "2nd Grade Mathematics: Addition Mastery with TouchMath Program and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Boosting Addition Skills with TouchMath Program through Interactive Whiteboards ": 1 + "2nd Grade Mathematics: Exploring Addition using TouchMath Program and Number Lines": 1 + "2nd Grade Mathematics: Addition Skills Improvement with TouchMath Program and Math Blaster Software": 1 + "2nd Grade Mathematics: Addition Skills Development with TouchMath Program and Counting Blocks": 1 + "2nd Grade Mathematics: Strengthening Addition with TouchMath Program and Funbrain Math Zone": 1 + "2nd Grade Mathematics: Addition Proficiency using TouchMath Program and Khan Academy Resources": 1 + "2nd Grade Mathematics: Advancing Addition Skills with TouchMath Program and Lego Blocks": 1 + "3rd Grade Music: Mastering Rhythm and Beat with LP Aspire Conga Drums and Ableton Live Tempo Software": 1 + "3rd Grade Music: Exploring Pulse and Beat using Remo Kids Percussion Conga Drums and FL Studio Tempo Software": 1 + "3rd Grade Music: Learning Rhythmic Patterns with Toca Synergy Conga Drums and Logic Pro X Tempo Software": 1 + "3rd Grade Music: Understanding Rhythm and Beat through Meinl Headliner Conga Drums and GarageBand Tempo Software": 1 + "3rd Grade Music: Developing Music Timing Skills with Pearl Primero Conga Drums and Cubase Tempo Software": 1 + "3rd Grade Music: Exploring Rhythm and Beat using Gon Bops Fiesta Conga Drums and Pro Tools Tempo Software": 1 + "3rd Grade Music: Grasping Rhythm and Beat with Tycoon Percussion Conga Drums and Reason Tempo Software": 1 + "3rd Grade Music: Understanding Tempo and Beat using LP Matador Conga Drums and Bitwig Studio Tempo Software": 1 + "3rd Grade Music: Learning Rhythm and Beat with Schalloch Linea Conga Drums and Reaper Tempo Software": 1 + "3rd Grade Music: Mastering Musical Pulse with Meinl Percussion Conga Drums and Studio One Tempo Software.": 1 + "7th Grade Music: Understanding Sheet Music through Piano Notation": 1 + "7th Grade Music: Basics of Reading Sheet Music using Music Notation Software": 1 + "7th Grade Music: Learning to Read Sheet Music with a Metronome": 1 + "7th Grade Music: Fundamentals of Reading Sheet Music and Rhythm Counting": 1 + "7th Grade Music: Reading Sheet Music with a Focus on Key Signatures": 1 + "7th Grade Music: Introduction to Reading Sheet Music using Digital Sheet Music Apps": 1 + "7th Grade Music: Studying Sheet Music through the Lens of Melody and Harmony": 1 + "7th Grade Music: Reading Sheet Music using Interactive Whiteboards": 1 + "7th Grade Music: Decoding Sheet Music with the Help of Music Theory": 1 + "7th Grade Music: Basics of Reading Sheet Music and Understanding Musical Symbols.": 1 + "6th Grade Social Studies: Exploring U.S Government and Democracy through Interactive Timelines": 1 + "6th Grade Social Studies: Understanding U.S Government and Democracy using Digital Mapping": 1 + "6th Grade Social Studies: U.S Government and Democracy - A Deep Dive into Constitutional Amendments": 1 + "6th Grade Social Studies: U.S Government and Democracy - Learning through Role-Play Simulations": 1 + "6th Grade Social Studies: U.S Government and Democracy - An Examination of the Electoral College System": 1 + "6th Grade Social Studies: U.S Government and Democracy - Exploring the Role of Media": 1 + "6th Grade Social Studies: U.S Government and Democracy - The Power of the Supreme Court": 1 + "6th Grade Social Studies: U.S Government and Democracy - Understanding Political Parties with Virtual Reality": 1 + "6th Grade Social Studies: U.S Government and Democracy - The Influence of Lobbying": 1 + "6th Grade Social Studies: U.S Government and Democracy - Delving into Congressional Legislation with Augmented Reality.": 1 + "Exploring South Atlantic States in 4th Grade Geography with Google Earth and Google Cardboard VR ": 1 + "A VR Journey Through The South Atlantic States: 4th Grade Geography Course with Google Cardboard and SketchUp": 1 + "4th Grade Geography: Exploring South Atlantic States Using Google Cardboard VR and Augmented Reality ": 1 + "4th Grade Geography: A Journey Through The South Atlantic States With Google Cardboard VR and 360-degree Virtual Tours ": 1 + "Virtual Reality in 4th Grade Geography: South Atlantic States Exploration with Google Cardboard and Interactive Maps ": 1 + "4th Grade Geography: South Atlantic States Immersive Learning with Google Cardboard VR and Edmodo Virtual Classroom": 1 + "4th Grade Geography: A Journey Through The South Atlantic States with Google Cardboard VR and Drone Footage ": 1 + "Journey Through South Atlantic States: 4th Grade Geography with Google Cardboard VR and 3D Modeling": 1 + "4th Grade Geography: A Deep Dive into South Atlantic States Using Google Cardboard VR and VRChat": 1 + "Exploring South Atlantic States: 4th Grade Geography through Google Cardboard VR and Virtual Field Trips.": 1 + "4th Grade Music: Exploring Handel’s Suites Through Piano Interpretation Using Pro Tools Software and MIDI Controllers": 1 + "Advanced 4th Grade Music: Exploring Handel’s Suites Using Pro Tools Software and Digital Audio Workstation Techniques": 1 + "4th Grade Music: Mastering Handel’s Suites through Piano Interpretation with Pro Tools Software and Sibelius Notation": 1 + "4th Grade Music: Analyzing Handel’s Suites Through Piano Interpretation with Pro Tools Software and Audio Mixing Concepts": 1 + "4th Grade Music: Understanding Handel’s Suites Through Piano Interpretation with Pro Tools Software and Sound Design Principles": 1 + "In-Depth 4th Grade Music: Handel’s Suites Through Piano Interpretation Using Pro Tools Software and Audio Mastering Techniques": 1 + "4th Grade Music: Exploring Handel’s Suites Through Piano Interpretation and Audio Sampling with Pro Tools Software": 1 + "4th Grade Music: Comprehensive Study of Handel’s Suites Through Piano Interpretation and Frequency Modulation Using Pro Tools Software": 1 + "4th Grade Music: Handel’s Suites Through Piano Interpretation and Sound Synthesis with Pro Tools Software": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation and Layering Sounds Using Pro Tools Software.": 1 + "2nd Grade Art: Introduction to Landscape Sketching Using Digital Tablets with Adobe Fresco": 1 + "2nd Grade Art: Exploring Landscape Sketching on Digital Tablets with Procreate": 1 + "2nd Grade Art: Fundamentals of Landscape Sketching Using iPad and Apple Pencil": 1 + "2nd Grade Art: Landscape Sketching on Digital Tablets Using Autodesk SketchBook": 1 + "2nd Grade Art: Understanding Landscape Sketching on Digital Tablets with Photoshop Sketch": 1 + "2nd Grade Art: Mastering Landscape Sketching on Digital Tablets with Concepts App": 1 + "2nd Grade Art: An Insight into Landscape Sketching on Digital Tablets with Medibang Paint": 1 + "2nd Grade Art: Landscape Sketching on Digital Tablets: The ArtFlow Studio Experience": 1 + "2nd Grade Art: Exploring the Basics of Landscape Sketching on Digital Tablets with Ibis Paint X": 1 + "2nd Grade Art: Landscape Sketching on Digital Tablets with Tayasui Sketches: A Comprehensive Guide": 1 + "2nd Grade Art: Introduction to Landscape Sketching Using Procreate on iPad Pro": 1 + "2nd Grade Art: Exploring Nature through Landscape Sketching with Adobe Fresco": 1 + "2nd Grade Art: Landscape Drawing with Digital Charcoal Techniques on Tablets": 1 + "2nd Grade Art: Introduction to Landscape Sketching Using Apple Pencil on iPad": 1 + "2nd Grade Art: Discovering Landscape Sketching with Autodesk Sketchbook for Tablets": 1 + "2nd Grade Art: Landscape Sketching on Tablets using Digital Watercolor Techniques": 1 + "2nd Grade Art: Introduction to Landscape Sketching with Layers in Procreate": 1 + "2nd Grade Art: Landscape Sketching on Tablets: A Deep Dive into Digital Pastels": 1 + "2nd Grade Art: Exploring Landscape Sketching with Digital Oil Paints on Tablets": 1 + "2nd Grade Art: Landscape Sketching on Tablets: Mastering the Use of Digital Shading Techniques": 1 + "6th Grade Social Studies: Decoding Egyptian Hieroglyphics through Rosetta Stone and Nile Flooding Patterns, using Google Earth 3D Mapping Technology": 1 + "Exploring the Indus Valley Civilization: Teaching 6th Grade Social Studies through Hieroglyphics and Monsoon Flooding Patterns, using Virtual Reality Technology": 1 + "Mayan Civilization: A 6th Grade Social Studies Course on Understanding Hieroglyphics and Rainforest Flooding, using Drone Mapping Technology": 1 + "6th Grade Social Studies: Understanding Sumerian Civilization through Cuneiform and Tigris-Euphrates Flooding using ArcGIS 3D Mapping Technology": 1 + "6th Grade Social Studies: Unveiling Ancient Greece through Linear B Scripts and Mediterranean Tides using Augmented Reality Technology ": 1 + "Ancient Chinese Civilization: A 6th Grade Social Studies Course on Oracle Bones Script and Yellow River Flooding using Lidar 3D Mapping Technology": 1 + "6th Grade Social Studies: Engaging with Roman Civilization through Latin Inscriptions and Tiber River Flooding using Minecraft 3D Mapping": 1 + "Exploring Ancient Aztec Civilization: 6th Grade Social Studies through Glyphs and Lake Texcoco Flooding using Holographic Mapping Technology": 1 + "6th Grade Social Studies: Tracing the Origins of Phoenician Civilization through Alphabet Scripts and Mediterranean Sea Flooding using 3D Laser Scanning Technology": 1 + "Ancient Inca Civilization: A 6th Grade Social Studies Course on Quipu and Amazon River Flooding using Photogrammetry 3D Mapping Technology": 1 + "2nd Grade Mathematics: Mastering Multiplication through SMART Board Interactive Games": 1 + "2nd Grade Mathematics: Exploring Multiplication with Promethean Board Games": 1 + "2nd Grade Mathematics: Understanding Multiplication Concepts using iPad Apps": 1 + "2nd Grade Mathematics: Multiplication Mastery with Interactive Whiteboard and Base Ten Blocks": 1 + "2nd Grade Math: Learning Multiplication through Virtual Reality Games on Interactive Whiteboard": 1 + "2nd Grade Mathematics: Enriching Multiplication Skills with Google Classroom and Interactive Whiteboard Games": 1 + "2nd Grade Mathematics: Multiplication Basics and Beyond with Interactive Whiteboard and Abacus Tools": 1 + "2nd Grade Mathematics: Multiplication Made Fun with Interactive Whiteboard and Math Manipulatives": 1 + "2nd Grade Mathematics: Interactive Whiteboard Games and Multiplication with Digital Flashcards": 1 + "2nd Grade Mathematics: Interactive Multiplication Learning with Whiteboard and Math Bingo Games": 1 + "3rd Grade History: Discover Ancient Egypt with Virtual Reality Archaeology Simulations and 3D Pyramid Modeling": 1 + "3rd Grade History: Unearth Ancient Egypt Using Lidar Technology in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Explore Ancient Egypt with GIS Technology in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Unravel Ancient Egypt with Carbon Dating in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Investigate Ancient Egypt Using Ground-penetrating Radar in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Delve into Ancient Egypt with Drone Technology in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Uncover Ancient Egypt Using Photogrammetry in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Decipher Ancient Egypt with Hieroglyphics in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Experience Ancient Egypt with Augmented Reality in Archaeology Simulations and 3D Modeling": 1 + "3rd Grade History: Navigate Ancient Egypt with GPS Technology in Archaeology Simulations and 3D Modeling": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills with Lego Blocks, Smartboard Technology, and Number Line Concepts": 1 + "2nd Grade Mathematics: Practical Multiplication via Lego Blocks, Digital Flashcards, and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Multiplication Mastery with Lego Blocks, Interactive Whiteboard, and Math Manipulatives": 1 + "2nd Grade Mathematics: Learning Multiplication through Lego Blocks, Interactive Whiteboard, and Abacus Techniques": 1 + "2nd Grade Mathematics: Multiplication Practice with Lego Blocks, Smartboard Technology, and Base Ten Blocks": 1 + "2nd Grade Mathematics: Hands-on Multiplication with Lego Blocks, Interactive Whiteboard, and Montessori Materials": 1 + "2nd Grade Mathematics: Building Multiplication Skills with Lego Blocks, Interactive Whiteboard, and Fractions": 1 + "2nd Grade Mathematics: Lego Block Multiplication, Interactive Whiteboard Lessons, and Place Value Exploration": 1 + "2nd Grade Mathematics: Exploring Multiplication with Lego Blocks, Interactive Whiteboard, and Geometric Shapes": 1 + "2nd Grade Mathematics: Engaging Multiplication Lessons with Lego Blocks, Interactive Whiteboard, and Tangram Puzzles": 1 + "4th Grade Science: Exploring Mars with Space Rovers and Spectrometers": 1 + "4th Grade Science: Understanding Solar System through Space Rovers and Infrared Imaging": 1 + "4th Grade Science: Probing Venus with Space Rovers and Radar technology": 1 + "4th Grade Science: Navigating the Solar System with Space Rovers and Orbital Mechanics": 1 + "4th Grade Science: Examining Jupiter’s Moons with Space Rovers and Cryovolcanism": 1 + "4th Grade Science: Investigating Saturn’s Rings with Space Rovers and Dust Counters": 1 + "4th Grade Science: Discovering Asteroids with Space Rovers and Spectral Analysis": 1 + "4th Grade Science: Uncovering Mysteries of Neptune with Space Rovers and Magnetometers": 1 + "4th Grade Science: Probing the Solar System with Space Rovers and Radioisotope Power Systems": 1 + "4th Grade Science: Exploring the Solar System’s Comets with Space Rovers and Ice Drilling Technology": 1 + "3rd Grade English: Adventure Stories with Interactive Maps": 1 + "3rd Grade English: Using Storyboards in Adventure Stories": 1 + "3rd Grade English: Adventure Stories Featuring Character Development": 1 + "3rd Grade English: Adventure Stories with Digital Illustration Techniques": 1 + "3rd Grade English: Adventure Stories and the Art of Plot Diagramming": 1 + "3rd Grade English: Adventure Stories Explored through Virtual Reality": 1 + "3rd Grade English: Adventure Stories Created with Animation Software": 1 + "3rd Grade English: Adventure Stories and Utilizing Voice Recording Technology": 1 + "3rd Grade English: Adventure Stories with Augmented Reality Elements": 1 + "3rd Grade English: Adventure Stories Illustrated with Graphic Design Tools.": 1 + "6th Grade History: Ancient Chinese Pagodas and the Role of Mortise and Tenon Joinery Techniques": 1 + "Detailed Study on Ancient Chinese Pagodas: Focusing on the Application of Bracket Sets in 6th Grade History": 1 + "6th Grade History: The Influence of Ancient Chinese Pagodas & The Involvement of Lu Ban Plane in Joinery Techniques": 1 + "6th Grade History: Ancient Chinese Pagodas and the Use of Dovetail Joinery Techniques": 1 + "History of Ancient Chinese Pagodas: Role of Gong and Chi in 6th Grade": 1 + "Ancient Chinese Pagodas and the Role of Saw in Joinery Techniques: A Detailed Study for 6th-Graders": 1 + "6th Grade History: Ancient Chinese Pagodas and the Importance of Tongue and Groove Joinery Techniques": 1 + "Ancient Chinese Pagodas and the Role of Lap Joints in Joinery Techniques: A 6th Grade History Lesson": 1 + "6th Grade History: Ancient Chinese Pagodas and the Role of the Chisel in Joinery Techniques": 1 + "6th Grade History: Ancient Chinese Pagodas and the Effect of Crosscut Saw on Joinery Techniques.": 1 + "10th Grade Language Arts: Exploring the Role of Instagram Metaphors in Contemporary Literature": 1 + "Decoding Facebook Analogies in Contemporary Literature: A 10th Grade Language Arts Course": 1 + "Twitter and its Metaphorical Influence in Contemporary Literature: A 10th Grade Language Arts Study": 1 + "The Role of Snapchat References in Contemporary Literature: A Comprehensive Study for 10th Grade Language Arts": 1 + "10th Grade Language Arts: Understanding the Impact of YouTube Metaphors in Modern Literature": 1 + "A Detailed Analysis of TikTok References in Contemporary Literature: 10th Grade Language Arts": 1 + "10th Grade Language Arts: The Influence of Blogging Metaphors in Contemporary Literature": 1 + "The Role of LinkedIn Metaphors in Modern Literature: A 10th Grade Language Arts Course": 1 + "10th Grade Language Arts: Examining the Influence of Podcasts in Modern Literary Metaphors": 1 + "WhatsApp Metaphors in Contemporary Literature: An In-depth Study for 10th Grade Language Arts.": 1 + "Unraveling the Mysteries of the Indus Valley: Incorporating Google Earth in 6th Grade Social Studies to Teach Hieroglyphics and Monsoon Flooding Patterns": 1 + "Deciphering the Past: Using Augmented Reality and 3D Printing in Teaching 6th Grade Social Studies about Indus Valley Civilization ": 1 + "Virtual Field Trips: Teaching 6th Grade Social Studies about the Indus Valley through Hieroglyphics, Monsoon Flooding Patterns and Drone Footage": 1 + "Bridging Past and Present: Teaching 6th Grade Social Studies about Indus Valley Civilization using Minecraft Education Edition": 1 + "Time-traveling Through History: Using VR Goggles to Teach 6th Grade Social Studies about Indus Valley Civilization ": 1 + "Social Studies in the Digital Age: Teaching Indus Valley Civilization with Online Simulations and Interactive Hieroglyphics ": 1 + "Exploring Ancient Civilizations: Using the Oculus Quest to Teach 6th Grade Social Studies about the Indus Valley": 1 + "Interactive Learning: Teaching the Indus Valley Civilization in 6th Grade Social Studies through Virtual Reality and Haptic Feedback Technology ": 1 + "Teaching the Indus Valley: 6th Grade Social Studies through Hieroglyphics and Monsoon Flooding Patterns using Virtual Reality and Voice Recognition Technology": 1 + "Unveiling Ancient Secrets: Teaching the Indus Valley Civilization in 6th Grade Social Studies Using Augmented Reality and Motion Tracking Technology.": 1 + "3rd Grade Music: Mastering Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Metronome Techniques": 1 + "3rd Grade Music: Introduction to Rhythm Patterns using Schalloch Linea Conga Drums and Reaper Tempo Software with GarageBand App": 1 + "3rd Grade Music: Enhancing Tempo Understanding with Schalloch Linea Conga Drums, Reaper Tempo Software, and Audacity Audio Editor": 1 + "3rd Grade Music: Exploring Musical Rhythm with Schalloch Linea Conga Drums, Reaper Tempo Software, and Bpm Counter": 1 + "3rd Grade Music: Learning Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and the Concept of Syncopation": 1 + "3rd Grade Music: Understanding Time Signatures using Schalloch Linea Conga Drums and Reaper Tempo Software with Sibelius Notation Software": 1 + "3rd Grade Music: Developing Rhythm Skills with Schalloch Linea Conga Drums, Reaper Tempo Software, and Cakewalk by BandLab": 1 + "3rd Grade Music: Studying Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Ableton Live Looping Feature": 1 + "3rd Grade Music: Learning Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Cubase Beat Designer": 1 + "3rd Grade Music: Introduction to Rhythm and Beat using Schalloch Linea Conga Drums, Reaper Tempo Software, and Music Maker Jam App.": 1 + "2nd Grade Music: Understanding Rhythm through the Lens of the Tambourine, GarageBand and Beat Patterns": 1 + "2nd Grade Music: Introduction to Melodies Using a Tambourine, Pro Tools, and Sight Reading": 1 + "2nd Grade Music: Discovering the Rhythm of Notes and Melodies with a Tambourine, FL Studio and Pitch Recognition": 1 + "2nd Grade Music: Learning the Art of Rhythm and Melodies with a Tambourine, Ableton Live and the Treble Clef": 1 + "2nd Grade Music: Exploring Music Theory with a Tambourine, Logic Pro X and Musical Notation": 1 + "2nd Grade Music: Understanding the Basics of Rhythm with a Tambourine, Reaper and Time Signatures": 1 + "2nd Grade Music: An Introduction to Melodies with a Tambourine, Cubase and Reading Sheet Music": 1 + "2nd Grade Music: The Rhythm of Notes and Melodies: A Study Using Tambourine, Audacity and Key Signatures": 1 + "2nd Grade Music: Discovering Rhythm with a Tambourine, Soundtrap and the Circle of Fifths ": 1 + "2nd Grade Music: Grasping Melodies and Rhythm with a Tambourine, BandLab and the Bass Clef.": 1 + "3rd Grade English: Understanding Basic Grammar and Sentence Structure using Mind Maps and Google Classroom": 1 + "3rd Grade English: Introduction to Basic Grammar with Sentence Diagramming and Mind Maps": 1 + "3rd Grade English: Enhancing Basic Grammar and Sentence Structure using Interactive Mind Maps on Prezi": 1 + "3rd Grade English: Mastering Basic Grammar and Sentence Structures using Mind Maps and Kahoot Quizzes": 1 + "3rd Grade English: Online Learning of Basic Grammar and Sentence Structure using Mind Maps and Quizlet ": 1 + "3rd Grade English: Interactive Journey into Basic Grammar and Sentence Structure using Mind Maps on Padlet": 1 + "3rd Grade English: Exploring Basic Grammar and Sentence Structure using Mind Maps and Nearpod ": 1 + "3rd Grade English: Basic Grammar and Sentence Structure Mastery using Mind Maps and Google Slides": 1 + "3rd Grade English: Detailed Study of Basic Grammar and Sentence Structure using Mind Maps and Flipgrid": 1 + "3rd Grade English: Introduction to Basic Grammar and Sentence Structure using Mind Maps and Microsoft Teams": 1 + "4th Grade Physical Education: Introduction to Baseball and Swing Analysis with Zepp Baseball 2": 1 + "4th Grade Physical Education: Exploring Batting Cages and Baseball Fundamentals": 1 + "4th Grade Physical Education: Utilizing HitTrax Technology in Baseball Training": 1 + "4th Grade Physical Education: Introduction to Baseball and Rapsodo Batting Analysis Technology": 1 + "4th Grade Physical Education: Mastering Baseball with Blast Motion Bat Sensor": 1 + "4th Grade Physical Education: Introduction to Baseball and Pitch Tracking with PitchCom": 1 + "4th Grade Physical Education: Learning Baseball through Virtual Reality with WIN Reality": 1 + "4th Grade Physical Education: Baseball Basics and Bat Speed Analysis with SwingTracker Sensor": 1 + "4th Grade Physical Education: Incorporating Diamond Kinetics’ PitchTracker in Baseball Learning": 1 + "4th Grade Physical Education: Baseball Training with FlightScope Strike Radar Technology": 1 + "2nd Grade Music: Understanding Quarter Notes using Pro Tools Software": 1 + "2nd Grade Music: Exploring Rhythm Patterns through Pro Tools Software and MIDI Controllers": 1 + "2nd Grade Music: Mastering Beats with Pro Tools Software and Virtual Drum Machine": 1 + "2nd Grade Music: Delving into Rhythm through Pro Tools Software and Metronome Function": 1 + "2nd Grade Music: Learning Rhythm through Pro Tools Software and Audio Loops": 1 + "2nd Grade Music: Enhancing Rhythm Skills using Pro Tools Software and Beat Detective": 1 + "2nd Grade Music: Creating Melodies with Pro Tools Software and Digital Audio Workstation": 1 + "2nd Grade Music: Discovering Rhythm through Pro Tools Software and Tempo Changes": 1 + "2nd Grade Music: Learning Rhythm through Pro Tools Software using MIDI Sequencing ": 1 + "2nd Grade Music: Rhythm Training with Pro Tools Software and Grid Mode Editing": 1 + "1st Grade Art: Exploring Circles and Squares with Pastel Drawing using Chalk": 1 + "1st Grade Art: Discovering Primary Colors through Pastel Drawing using Oil Pastels": 1 + "1st Grade Art: An Introduction to Geometric Shapes with Pastel Drawing and Rulers": 1 + "1st Grade Art: Learning about Color Mixing using Pastel Drawing and Color Wheels": 1 + "1st Grade Art: Creating Patterns with Triangles and Rectangles using Pastel Drawing": 1 + "1st Grade Art: Introduction to Color Gradients with Pastel Drawing using Blending Techniques": 1 + "1st Grade Art: Understanding Symmetry in Art with Shapes using Pastel Drawing": 1 + "1st Grade Art: Introduction to Textures with Pastel Drawing using Sandpaper": 1 + "1st Grade Art: Exploring Shapes and Colors in Nature using Pastel Drawing": 1 + "1st Grade Art: Learning Color Theory and Shapes with Pastel Drawing using Prismacolor Pastels.": 1 + "6th Grade History: The Impact of Hieroglyphics in Ancient Egypt on the Nile Civilization": 1 + "6th Grade History: Pyramids and their Connection to the Nile in Ancient Egypt": 1 + "6th Grade History: The Role of the Papyrus in the Evolution of the Nile Civilization in Ancient Egypt": 1 + "6th Grade History: Ancient Egyptian Agriculture and the Importance of the Nile": 1 + "6th Grade History: Ancient Egyptian Irrigation Systems and the Nile’s Influence": 1 + "6th Grade History: The Influence of the Nile on Ancient Egyptian Pottery Techniques": 1 + "6th Grade History: The Role of the Nile in the Development of Ancient Egyptian Hierarchical Structures": 1 + "6th Grade History: The Nile’s Impact on Ancient Egyptian Chariot Technology": 1 + "6th Grade History: The Role of the Nile in the Advancement of Ancient Egyptian Medicine": 1 + "6th Grade History: Ancient Egyptian Architecture and the Significance of the Nile": 1 + "6th Grade Music: Understanding Sheet Music using GarageBand Digital Software": 1 + "6th Grade Music: Learning Sheet Music with Audacity: A Comprehensive Guide": 1 + "6th Grade Music: Mastering Sheet Music through Sibelius Music Notation Software": 1 + "6th Grade Music: Exploring Sheet Music using MIDI Technology and Ableton Live": 1 + "6th Grade Music: Deciphering Sheet Music through Pro Tools Digital Music Software": 1 + "6th Grade Music: Navigating Sheet Music with FL Studio: A Step-by-Step Guide": 1 + "6th Grade Music: Interpreting Sheet Music through Logic Pro X Software": 1 + "6th Grade Music: Discovering Sheet Music with Digital Audio Workstation (DAW) Technology": 1 + "6th Grade Music: A Comprehensive Study of Sheet Music using Cubase Software": 1 + "6th Grade Music: Appreciating Sheet Music through the use of Soundtrap Music Making Software.": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Exploring the Use of Practice Mutes and the Bowing Technique": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: A Deep Dive into the Use of Practice Mutes and Notation Reading": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Studying the Use of Practice Mutes and Understanding String Vibrations": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Unpacking the Use of Practice Mutes and the Role of Rosin": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Analysis of the Use of Practice Mutes and Finger Placement": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Comprehensive Study on the Use of Practice Mutes and Tuning Pegs": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: An Examination of the Use of Practice Mutes and the Art of Slurring": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Insight into the Use of Practice Mutes and Sound Post Adjustment": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: Investigating the Use of Practice Mutes and the Vibrato Technique": 1 + "9th Grade Music: Symphony of Sounds - Pizzicato on Violin: A Look into the Use of Practice Mutes with a Focus on the Staccato Technique": 1 + "6th Grade History: Exploring Ancient Egyptian Civilizations and the Role of Hieroglyphics": 1 + "6th Grade History: Unearthing Ancient Roman Architecture and Significance of Fire": 1 + "6th Grade History: Grasping The Mayan Calendar and its Impact on Ancient Civilizations": 1 + "6th Grade History: Understanding Ancient Chinese Civilizations and the Innovation of Papermaking": 1 + "6th Grade History: Delving into Ancient Greek Philosophy and the Influence of Fire": 1 + "6th Grade History: Decoding Cuneiform: The Writing System of Ancient Sumerian Civilization": 1 + "6th Grade History: Unraveling the Mystery of Ancient Indus Valley Civilizations and Bronze Technology": 1 + "6th Grade History: Discovering Ancient Mesopotamian Agriculture and the Importance of Fire": 1 + "6th Grade History: Exploring Ancient Aztec Civilization and the Concept of the Sun Stone": 1 + "6th Grade History: Understanding Ancient Incan Civilizations and the Use of Quipus for Record Keeping.": 1 + "1st Grade Environmental Studies: Exploring Forest Habitats with Microscopes": 1 + "1st Grade Environmental Studies: Understanding Aquatic Ecosystems with Aquarium Kits": 1 + "1st Grade Environmental Studies: Discovering Desert Biomes using Virtual Reality": 1 + "1st Grade Environmental Studies: Observing Bird Habitats with Binoculars": 1 + "1st Grade Environmental Studies: Studying Insect Habitats with Magnifying Glasses": 1 + "1st Grade Environmental Studies: Learning about Rainforest Biodiversity through Interactive Software": 1 + "1st Grade Environmental Studies: Exploring Grassland Animals with Animal Identification Apps": 1 + "1st Grade Environmental Studies: Understanding Polar Habitats using 3D Models": 1 + "1st Grade Environmental Studies: Discovering Coral Reefs with Underwater Cameras": 1 + "1st Grade Environmental Studies: Observing Micro-Habitats using Microscope Slides": 1 + "3rd Grade English: Exploring Storytelling and Fables Through Podcast Creation": 1 + "3rd Grade English: Storytelling and Fables Immersion via Virtual Reality": 1 + "3rd Grade English: Interactive Storytelling and Fables Study Through Game-Based Learning": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Text-to-Speech Technology": 1 + "3rd Grade English: Engaging with Storytelling and Fables Through Animation Tools": 1 + "3rd Grade English: Storytelling and Fables Explored Through Digital Storyboards": 1 + "3rd Grade English: Understanding Storytelling and Fables Through e-Book Creation": 1 + "3rd Grade English: Interactive Storytelling and Fables Journey Through Augmented Reality": 1 + "3rd Grade English: Storytelling and Fables Dissection via Online Collaboration Tools": 1 + "3rd Grade English: Exploring Storytelling and Fables with Video Editing Software.": 1 + "4th Grade Language Arts: Exploring Poetry with Haikus": 1 + "4th Grade Language Arts: Crafting Stories with Storyboarding Technology": 1 + "4th Grade Language Arts: Improving Vocabulary through Crossword Puzzles": 1 + "4th Grade Language Arts: Understanding Characters with Role-Playing": 1 + "4th Grade Language Arts: Enhancing Imagery with Sensory Descriptions": 1 + "4th Grade Language Arts: Building Worlds with Mind Mapping Tools": 1 + "4th Grade Language Arts: Learning Grammar through Interactive Games": 1 + "4th Grade Language Arts: Adventuring in Prose with Sentence Structure": 1 + "4th Grade Language Arts: Developing Arguments with Persuasive Writing Techniques": 1 + "4th Grade Language Arts: Expressing Emotions through Journal Writing": 1 + "4th Grade Language Arts: Navigating Non-fiction with Text Features": 1 + "Ancient Chinese Civilization: The Use of Winch Technology in the Construction of the Great Wall for 6th Grade History": 1 + "Studying the Role of Bronze Casting in the Great Wall’s Construction: A 6th Grade History Course on Ancient Chinese Civilization": 1 + "The Invention and Application of Rope-making Technology in the Construction of Ancient China’s Great Wall: A 6th Grade History Course": 1 + "Ancient Chinese Civilization: Implementing Fire, Chisel, Lever, and Pulley Systems in the Great Wall Construction for 6th Graders": 1 + "6th Grade History: Ancient Chinese Civilization and the Role of Advanced Wheelbarrow Technology in the Great Wall Construction": 1 + "History for 6th Grade: Ancient Chinese Civilization and the Impact of Crane Technology on the Great Wall Construction": 1 + "The Influence of Bamboo Scaffolding on the Great Wall’s Construction: An In-depth Look at Ancient Chinese Civilization for 6th Graders": 1 + "Ancient Chinese Civilization: The Significance of Sledgehammer Use in the Building of the Great Wall for 6th Grade History": 1 + "Exploring the Use of Mortar Mixing Techniques in the Great Wall Construction: A 6th Grade Course on Ancient Chinese Civilization": 1 + "Ancient Chinese Civilization for 6th Grade History: The Role of Stone Drilling Techniques in the Construction of the Great Wall.": 1 + "8th Grade Music: Incorporating the BOSS RC-300 Loop Station into Sound Design with Logic Pro X in Modern Music Production.": 1 + "Advanced 8th Grade Music: Understanding the Role of MIDI Controllers in Sound Design with Logic Pro X and Loop Pedals.": 1 + "8th Grade Music: Mastering the Use of Ableton Live with Loop Pedals in Sound Design and Modern Music Production.": 1 + "Exploring the World of Music Production: The Integration of Loop Pedals, Logic Pro X, and Pro Tools in 8th Grade Music.": 1 + "8th Grade Music: The Application of Digital Audio Workstations (DAWs) in Combining Logic Pro X and Loop Pedals.": 1 + "8th Grade Music: The Synergy of Loop Pedals and Sound Design with Logic Pro X and Audacity in Modern Music Production.": 1 + "Advanced Music Production: Using the Akai Professional LPD8 in Conjunction with Loop Pedals and Logic Pro X in 8th Grade Music.": 1 + "8th Grade Music: The Integration of Loop Pedals, Sound Design with Logic Pro X, and the Focusrite Scarlett 2i2 Audio Interface in Modern Music Production.": 1 + "8th Grade Music: The Role of Digital Signal Processing (DSP) in the Integration of Loop Pedals and Sound Design with Logic Pro X.": 1 + "8th Grade Music: The Use of the Novation Launchpad in Combining Loop Pedals and Sound Design with Logic Pro X in Modern Music Production.": 1 + "High School Music: Exploring the Role of MIDI Technology in Music Production": 1 + "High School Music: Understanding the Impact of Auto-Tune in Music Production": 1 + "High School Music: The Role of Digital Audio Workstations in Music Production": 1 + "High School Music: Discovering the Use of Synthesizers in Music Production": 1 + "High School Music: The Role of Sound Editing Software in Music Production": 1 + "High School Music: The Influence of Electronic Drum Kits in Music Production": 1 + "High School Music: The Role of Amplification Technology in Music Production": 1 + "High School Music: Understanding the Use of Loop Stations in Music Production": 1 + "High School Music: The Role of Digital Sampling in Music Production": 1 + "High School Music: Exploring the Impact of Sound Mixing Boards in Music Production": 1 + "6th Grade Art: Introduction to Sketching with Charcoal and Painting on Canvas": 1 + "6th Grade Art: Exploring Acrylic Painting on Canvas": 1 + "6th Grade Art: Beginning Oil Painting on Canvas": 1 + "6th Grade Art: Introduction to Sketching and Digital Painting on Canvas": 1 + "6th Grade Art: Sketching with Graphite and Painting on Canvas": 1 + "6th Grade Art: Introduction to Basic Anatomy Sketching and Canvas Painting": 1 + "6th Grade Art: Introduction to Still Life Sketching and Painting on Canvas": 1 + "6th Grade Art: Sketching with Pastels and Painting on Canvas": 1 + "6th Grade Art: Introduction to Sketching and Abstract Painting on Canvas": 1 + "6th Grade Art: Sketching and Landscape Painting on Canvas": 1 + "6th Grade Art: Introduction to Sketching Techniques and Watercolor Painting on Canvas": 1 + "4th Grade Social Studies: Understanding Our Local Community through Fieldwork": 1 + "4th Grade Social Studies: Exploring Community History with Digital Archives": 1 + "4th Grade Social Studies: Analyzing Community Demographics using Census Data": 1 + "4th Grade Social Studies: Mapping Our Community with Geographic Information Systems": 1 + "4th Grade Social Studies: Understanding Community Government through Interactive Simulations": 1 + "4th Grade Social Studies: Investigating Local Culture with Ethnographic Interviews": 1 + "4th Grade Social Studies: Understanding Community Economy with Money Flow Charts": 1 + "4th Grade Social Studies: Exploring Community Infrastructure using Virtual Tours": 1 + "4th Grade Social Studies: Understanding Community Ecology with Habitat Field Trips": 1 + "4th Grade Social Studies: Investigating Community Health through Data Visualization Tools": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works through Symbolism Analysis ": 1 + "11th Grade Language Arts: Exploring Shakespeare’s Works with Dramatic Interpretation Techniques": 1 + "11th Grade Language Arts: Understanding Shakespeare’s Works through Character Study ": 1 + "11th Grade Language Arts: Analyzing Shakespeare’s Works Utilizing Literary Devices ": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works through Digital Annotation Tools ": 1 + "11th Grade Language Arts: Dissecting Shakespeare’s Works with iambic pentameter ": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works Using Contextual Historical Analysis ": 1 + "11th Grade Language Arts: Grasping Shakespeare’s Works through Film Adaptation Studies ": 1 + "11th Grade Language Arts: Unlocking Shakespeare’s Works with Text-to-Speech Technology ": 1 + "11th Grade Language Arts: Mastering Shakespeare’s Works through Thematic Exploration": 1 + "4th Grade History: Understanding the Role of Compass in the Era of Exploration and the Impact of Caravels": 1 + "4th Grade History: The Significance of Astrolabes During the Period of Exploration and Caravels": 1 + "4th Grade History: Deciphering the Era of Exploration: Caravels and the Early Use of Maps": 1 + "4th Grade History: The Impact of Caravels and Sextants in the Age of Discovery": 1 + "4th Grade History: The Influence of Quadrants on the Era of Exploration and the Rise of Caravels": 1 + "4th Grade History: The Era of Exploration: The Impact of Caravels and the Innovation of the Cross-Staff": 1 + "4th Grade History: Delving into the Age of Exploration: Caravels and the Emergence of the Chronometer": 1 + "4th Grade History: The Age of Exploration and Caravels: The Crucial Role of the Backstaff": 1 + "4th Grade History: The Impact of Caravels and the Use of Chip Logs in the Era of Exploration": 1 + "4th Grade History: The Era of Exploration: Caravels and the Revolutionary Nocturnal Device.": 1 + "7th Grade Music: Exploring Rhythm and Beats Through Drumming Techniques": 1 + "7th Grade Music: Understanding Rhythm and Beats with Digital Music Software": 1 + "7th Grade Music: Exploring Rhythm and Beats Using Metronomes": 1 + "7th Grade Music: Investigating Rhythm and Beats with Percussion Instruments": 1 + "7th Grade Music: Exploring Rhythm and Beats Through the Lens of Jazz Improvisation": 1 + "7th Grade Music: Mastering Rhythm and Beats with Music Production Tools": 1 + "7th Grade Music: Understanding Rhythm and Beats through the Use of Synthesizers ": 1 + "7th Grade Music: Exploring Rhythm and Beats Using Piano Pedals": 1 + "7th Grade Music: Investigating Rhythm and Beats with Beatboxing Techniques": 1 + "7th Grade Music: Exploring Rhythm and Beats Through the Study of Afro-Cuban Percussion.": 1 + "Third Grade Environmental Studies: Exploring Nature’s Wonders with Leafsnap, a Plant Identification App": 1 + "Third Grade Environmental Studies: Identifying Plants through iNaturalist, a Citizen Science App": 1 + "Third Grade Environmental Studies: Delving into Flora with PlantSnap, a Plant Recognition Software ": 1 + "Third Grade Environmental Studies: Discovering Biodiversity with Seek by iNaturalist, a Plant Identification App": 1 + "Third Grade Environmental Studies: Unveiling Botany with Plantix, a Crop Health App": 1 + "Third Grade Environmental Studies: Learning About Nature’s Wonders with PlantNet, a Plant Identification App": 1 + "Third Grade Environmental Studies: Understanding Ecosystems with NatureGate, a Plant and Animal Identification App": 1 + "Third Grade Environmental Studies: Delving into Botany with GardenAnswers, a Plant Identification App": 1 + "Third Grade Environmental Studies: Exploring Flora with Google Lens, a Visual Recognition Tool": 1 + "Third Grade Environmental Studies: Interacting with Nature through PictureThis, a Plant Identification App.": 1 + "6th Grade Art: Mastering Sketching and Painting with Graphite Pencils and Charcoal": 1 + "6th Grade Art: Exploring Sketching and Painting with Graphite Pencils and Watercolors": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils and Pastels": 1 + "6th Grade Art: Exploring Perspective in Sketching and Painting with Graphite Pencils": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils and Digital Art Tools": 1 + "6th Grade Art: Learn Sketching and Painting with Graphite Pencils and Acrylics": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils and Oil Paints": 1 + "6th Grade Art: Exploring Textures in Sketching and Painting with Graphite Pencils": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils and Ink": 1 + "6th Grade Art: Discovering Light Effects in Sketching and Painting with Graphite Pencils.": 1 + "9th Grade History: The Impact of Gutenberg’s Printing Press on the American Revolution Era": 1 + "9th Grade History: Exploring the Influence of Lithography in the American Revolution Era": 1 + "9th Grade History: The Role of the Newspaper in Disseminating Information During the American Revolution": 1 + "9th Grade History: Benjamin Franklin’s Printing Innovations and their Role in the American Revolution": 1 + "9th Grade History: Woodblock Printing and its Significance in the American Revolution Era": 1 + "9th Grade History: The Importance of Pamphlets and Broadsides in the American Revolution Era": 1 + "9th Grade History: The Role of Typography in the Spread of Revolutionary Ideas During the American Revolution": 1 + "9th Grade History: The Impact of Moveable Type Printing on the American Revolution Era": 1 + "9th Grade History: The Influence of the Printing Press on Propaganda Techniques During the American Revolution": 1 + "9th Grade History: Understanding the Role of the Printing Press in the Spread of Enlightenment Ideas During the American Revolution Era": 1 + "1st Grade Music: Rhythm Lessons using Ableton Live Electronic Beat Makers": 1 + "1st Grade Music: Exploring Rhythm with GarageBand Beat Maker": 1 + "1st Grade Music: Rhythm Lessons using FL Studio Beat Maker": 1 + "1st Grade Music: Learning Rhythm with Serato Studio Electronic Beat Makers": 1 + "1st Grade Music: Rhythm Lessons using Logic Pro X Beat Maker": 1 + "1st Grade Music: Understanding Rhythm with Cubase Beat Maker": 1 + "1st Grade Music: Rhythm Lessons using Pro Tools Electronic Beat Makers": 1 + "1st Grade Music: Beat Making and Rhythm Lessons with Maschine Studio": 1 + "1st Grade Music: Rhythm Lessons using Reason Studios Beat Maker ": 1 + "1st Grade Music: Exploring Rhythm with Bitwig Studio Electronic Beat Makers": 1 + "8th Grade Science: Exploring the Wonders of Space through Telescopes": 1 + "8th Grade Science: The Wonders of Space - Understanding Gravity": 1 + "8th Grade Science: The Wonders of Space - An Introduction to the Hubble Telescope": 1 + "8th Grade Science: The Wonders of Space - Space Exploration with Satellites": 1 + "8th Grade Science: The Wonders of Space - An Insight into Solar Systems": 1 + "8th Grade Science: The Wonders of Space - Astronautics and Spacecrafts": 1 + "8th Grade Science: The Wonders of Space - The Role of Radio Telescopes": 1 + "8th Grade Science: The Wonders of Space - The Study of Black Holes": 1 + "8th Grade Science: The Wonders of Space - The Impact of Meteorites": 1 + "8th Grade Science: The Wonders of Space - The Science behind Star Constellations": 1 + "1st Grade Music: Exploring Melody Basics with Tambourine Hand Drums, Perfect Piano Apps and Noteflight Software": 1 + "1st Grade Music: Mastering Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and Rhythm Training Tools": 1 + "1st Grade Music: Learning Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and Sight-Reading Techniques": 1 + "1st Grade Music: Discovering Melody Basics Using Perfect Piano Apps, Tambourine Hand Drums and GarageBand App": 1 + "1st Grade Music: Understanding Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and Kodály Method": 1 + "1st Grade Music: Grasping Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and Orff Approach": 1 + "1st Grade Music: Gaining Melody Basics with Tambourine Hand Drums, Perfect Piano Apps and Music Theory Concepts": 1 + "1st Grade Music: Navigating Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and StaffPad Software": 1 + "1st Grade Music: Delving into Melody Basics with Tambourine Hand Drums, Perfect Piano Apps and Sibelius Software": 1 + "1st Grade Music: Unveiling Melody Basics with Perfect Piano Apps, Tambourine Hand Drums and Music Composition Techniques": 1 + "8th Grade Physical Education: Football and Teamwork Using Playbook Concept with Focus on Ball Passing Techniques": 1 + "8th Grade Physical Education: Enhanced Teamwork Through Football and Playbook Concept with Video Analysis": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept with Digital Simulation Tools": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept and the Use of Wearable Fitness Trackers": 1 + "8th Grade Physical Education: Incorporating the Playbook Concept in Football and Teamwork with Tactical Boards": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept Explored Through VR Technology": 1 + "8th Grade Physical Education: Advancing Football and Teamwork with Playbook Concept and Heart Rate Monitors": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept with Emphasis on Speed Drills": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept and the Use of GPS Performance Tracking": 1 + "8th Grade Physical Education: Football and Teamwork: Playbook Concept Explored with Strength and Conditioning Equipment.": 1 + "1st Grade Art: Exploring Color Mixing and Shapes with Acrylic Paints Using Color Wheel Concepts": 1 + "1st Grade Art: Hands-on Learning of Color Mixing and Shapes with Watercolors Using Color Wheel Concepts": 1 + "1st Grade Art: Interactive Color Mixing and Shapes Creation with Digital Art Software Using Color Wheel Concepts": 1 + "1st Grade Art: Discovering Color Mixing and Shapes through Chalk Pastels Using Color Wheel Concepts": 1 + "1st Grade Art: Color Mixing and Shapes Exploration with Oil Pastels Using Color Wheel Concepts": 1 + "1st Grade Art: Applying Color Mixing and Shapes with Colored Pencils Using Color Wheel Concepts": 1 + "1st Grade Art: Experience Color Mixing and Shapes with Crayons Using Color Wheel Concepts": 1 + "1st Grade Art: Fun Learning of Color Mixing and Shapes with Finger Paints Using Color Wheel Concepts": 1 + "1st Grade Art: Color Mixing and Shapes Mastery with Paint Brushes Using Color Wheel Concepts": 1 + "1st Grade Art: Understanding Color Mixing and Shapes with Charcoal Sticks Using Color Wheel Concepts.": 1 + "3rd Grade Physical Education: Mastering Baseball with JUGS Pitching Machines": 1 + "3rd Grade Physical Education: Exploring Baseball Basics with the Zooka ZS740 Pitching Machine": 1 + "3rd Grade Physical Education: Understanding Baseball through the BATA-1 Pitching Machine": 1 + "3rd Grade Physical Education: Learning Baseball Fundamentals with The Louisville Slugger Blue Flame Pitching Machine": 1 + "3rd Grade Physical Education: Developing Baseball Skills with Heater Sports Deuce Pitching Machine": 1 + "3rd Grade Physical Education: Enhancing Baseball Techniques with the Hack Attack Pitching Machine": 1 + "3rd Grade Physical Education: Unveiling Baseball with the MaxBP Pro Pitching Machine": 1 + "3rd Grade Physical Education: Baseball Training with the First Pitch Baseline Pitching Machine": 1 + "3rd Grade Physical Education: Delving into Baseball with the Rawlings Pro Line 3 Wheel Pitching Machine": 1 + "3rd Grade Physical Education: Basics of Baseball Utilizing the ATEC M1 Pitching Machine.": 1 + "2nd Grade Mathematics: Multiplication Mastery using Lego Blocks, Tangram Puzzles, and Interactive Whiteboard with Touch Math Technique": 1 + "2nd Grade Mathematics: Fun Learning of Multiplication through Lego Blocks, iPad Apps, and Tangram Puzzles": 1 + "2nd Grade Mathematics: Innovative Multiplication Lessons with Lego Blocks, Tangram Puzzles, and SMART Board Technology": 1 + "2nd Grade Math: Engaging Multiplication Lessons Using Lego Blocks, Tangram Puzzles, and Interactive Whiteboard Featuring Nearpod": 1 + "2nd Grade Mathematics: Hands-On Multiplication Learning with Lego Blocks, Tangram Puzzles, and Digital Flashcards on Interactive Whiteboard": 1 + "2nd Grade Mathematics: Exploring Multiplication through Lego Blocks, Tangram Puzzles, and Interactive Whiteboard with Minecraft Education Edition": 1 + "2nd Grade Mathematics: Creative Multiplication Lessons with Lego Blocks, Tangram Puzzles, and Kahoot Quizzes on Interactive Whiteboard": 1 + "2nd Grade Mathematics: Engaging Multiplication Learning with Lego Blocks, Tangram Puzzles, Interactive Whiteboard, and Scratch Programming": 1 + "2nd Grade Mathematics: Interactive Multiplication Lessons using Lego Blocks, Tangram Puzzles, and Interactive Whiteboard with Math Blaster Software": 1 + "2nd Grade Mathematics: Exciting Multiplication Teaching with Lego Blocks, Tangram Puzzles, and Interactive Whiteboard using Google Classroom.": 1 + "2nd Grade Science: Exploring Penguin Habitats Using GPS Tracking and Satellite Imagery": 1 + "2nd Grade Science: Understanding Elephant Migration Patterns Through GPS Tracking and Drone Surveillance": 1 + "2nd Grade Science: Studying Marine Life Habitats Through GPS Tracking and Underwater Robotics": 1 + "2nd Grade Science: Decoding Bird Migration Using GPS Tracking and Radar Technology": 1 + "2nd Grade Science: Unveiling Wolf Territories with GPS Tracking and Infrared Cameras": 1 + "2nd Grade Science: Exploring Jungle Animal Habitats Through GPS Tracking and LIDAR Mapping": 1 + "2nd Grade Science: Understanding Bear Habitats Using GPS Tracking and Motion Sensor Technology": 1 + "2nd Grade Science: Discovering Reptile Habitats Through GPS Tracking and Thermal Imaging": 1 + "2nd Grade Science: Analyzing Cheetah Hunting Grounds with GPS Tracking and Drone Photography": 1 + "2nd Grade Science: Investigating Arctic Animal Habitats Through GPS Tracking and Satellite Data Analysis": 1 + "4th Grade History: Exploring Ancient China with Google Earth and Digital Storytelling": 1 + "4th Grade History: Mapping Ancient China using Minecraft and Digital Narration": 1 + "4th Grade History: Journey through Ancient China with VR Technology and Digital Storytelling": 1 + "4th Grade History: Discovering Ancient China using Augmented Reality and Digital Narratives": 1 + "4th Grade History: Navigating Ancient China through Interactive Whiteboards and Digital Storytelling": 1 + "4th Grade History: Exploring Ancient China with Online Collaborative Platforms and Digital Narration": 1 + "4th Grade History: Engaging with Ancient China using 3D Printing and Digital Storytelling": 1 + "4th Grade History: Experiencing Ancient China through Webcam Virtual Field Trips and Digital Narration": 1 + "4th Grade History: Surveying Ancient China with Interactive eBooks and Digital Storytelling": 1 + "4th Grade History: Unraveling Ancient China using Podcasting and Digital Narratives": 1 + "7th Grade Social Studies: Unveiling Ancient Civilizations with Archaeological Tools": 1 + "7th Grade Social Studies: Exploring Ancient Civilizations through Carbon Dating": 1 + "7th Grade Social Studies: Ancient Civilizations Uncovered Through Hieroglyphics": 1 + "7th Grade Social Studies: Deciphering Ancient Civilizations with Cryptanalysis": 1 + "7th Grade Social Studies: Ancient Civilizations Uncovered Through Pottery Analysis": 1 + "7th Grade Social Studies: Understanding Ancient Civilizations with GIS Technology": 1 + "7th Grade Social Studies: Ancient Civilizations Unveiled Through Numismatics": 1 + "7th Grade Social Studies: Exploring Ancient Civilizations with Satellite Imagery": 1 + "7th Grade Social Studies: Unearthing Ancient Civilizations with Ground Penetrating Radar": 1 + "7th Grade Social Studies: Ancient Civilizations Decoded with DNA Analysis": 1 + "7th Grade Social Studies: Exploring Ancient Civilizations through Numismatics and the Rosetta Stone": 1 + "7th Grade Social Studies: Unveiling Ancient Civilizations using Numismatics and the Pyramids": 1 + "7th Grade Social Studies: Understanding Ancient Civilizations through Numismatics and Hieroglyphics": 1 + "7th Grade Social Studies: Ancient Civilizations Revealed through Numismatics and the Concept of Democracy": 1 + "7th Grade Social Studies: Deciphering Ancient Civilizations with Numismatics and the Invention of the Wheel": 1 + "7th Grade Social Studies: Ancient Civilizations Unearthed through Numismatics and the Sundial": 1 + "7th Grade Social Studies: Discovering Ancient Civilizations using Numismatics and the Aqueducts": 1 + "7th Grade Social Studies: Unmasking Ancient Civilizations through Numismatics and the Concept of Barter System": 1 + "7th Grade Social Studies: Studying Ancient Civilizations with Numismatics and the Chinese Compass": 1 + "7th Grade Social Studies: Investigating Ancient Civilizations through Numismatics and the Babylonian Abacus": 1 + "Fourth Grade History: Exploring Medieval Castles ": 1 + "Fourth Grade History: The Role of the Longbow in Medieval Times ": 1 + "Fourth Grade History: Understanding Feudalism in the Middle Ages ": 1 + "Fourth Grade History: The Art of Manuscript Illumination in Medieval Times ": 1 + "Fourth Grade History: Blacksmithing and Weaponry in the Middle Ages ": 1 + "Fourth Grade History: Medieval Times - The Role of the Church": 1 + "Fourth Grade History: The Science of Medieval Siege Engines ": 1 + "Fourth Grade History: The Importance of the Plow in Medieval Agriculture ": 1 + "Fourth Grade History: Journey through Medieval Times - The Invention of the Printing Press ": 1 + "Fourth Grade History: Navigation and Cartography in the Medieval Era": 1 + "5th Grade Science: Solar System Exploration using Telescopes": 1 + "5th Grade Science: Studying Solar System with Satellite Imaging": 1 + "5th Grade Science: Solar System Exploration and the Hubble Space Telescope": 1 + "5th Grade Science: Exploring the Solar System with Astronomical Spectroscopy": 1 + "5th Grade Science: Solar System Exploration using Mars Rovers": 1 + "5th Grade Science: Solar System Study with Astrophotography": 1 + "5th Grade Science: Solar System Exploration and the Concept of Gravity ": 1 + "5th Grade Science: Discovering the Solar System through Radio Astronomy ": 1 + "5th Grade Science: Solar System Exploration using Space Probes": 1 + "5th Grade Science: Solar System Exploration and the Big Bang Theory": 1 + "4th Grade Art: Utilizing Acrylic Paints and the Color Wheel to Understand Color Theory": 1 + "Advanced 4th Grade Art: Using Adobe Illustrator and Color Wheel in Understanding Color Theory": 1 + "4th Grade Art: Exploring Pastels in Color Wheel-Based Color Theory Lessons": 1 + "Digital 4th Grade Art: Using Color Wheel and Procreate App in Understanding Color Theory": 1 + "4th Grade Art: Employing Watercolor Techniques and the Color Wheel in Color Theory": 1 + "4th Grade Art: Using Color Wheel and Photoshop in Understanding Color Theory": 1 + "4th Grade Art: Integrating Color Wheel and Prismacolor Pencils in Color Theory Studies": 1 + "4th Grade Art: Learning Color Theory with Color Wheel and Oil Pastels": 1 + "Interactive 4th Grade Art: Using Color Wheel and Digital Tablets in Understanding Color Theory": 1 + "4th Grade Art: Implementing Color Wheel and Crayon Techniques in Color Theory Education": 1 + "Intro to Architecture for Kindergarteners: Building Principles with Foam Blocks and Measuring Tapes": 1 + "Kindergarten Art & Architecture: Exploring Construction Principles with Foam Blocks and CAD Software": 1 + "Understanding Architecture: Kindergarten Art using Foam Blocks and 3D Printing Techniques": 1 + "Kindergarten Introduction to Architecture: Foam Blocks, Blueprints and Basic Construction Principles": 1 + "Architecture Principles for Kindergarteners: Foam Blocks, Scale Models and Measurement Tools ": 1 + "Intro to Architecture: Kindergarten Art using Foam Blocks - Exploring Geometric Concepts ": 1 + "Kindergarten Architecture: Discovering Construction Principles with Foam Blocks and Digital Design Software": 1 + "Intro to Architecture & Design: Foam Blocks, SketchUp and Construction Principles for Kindergarteners": 1 + "Practical Architecture for Kids: Understanding Construction Principles through Foam Blocks and Lego": 1 + "Intro to Architecture: Utilizing Foam Blocks in Kindergarten Art to Understand Load-Bearing Principles.": 1 + "10th Grade Biology: Microscopic Examination of the Cell and its Functions": 1 + "10th Grade Biology: Exploring the Cell Cycle and its Functions using Fluorescence Microscopy": 1 + "10th Grade Biology: The Cell and its Functions through the Lens of a Microscope": 1 + "10th Grade Biology: Understanding DNA Replication in Cellular Functions": 1 + "10th Grade Biology: The Cell and its Functions: A Study Through Electrophoresis": 1 + "10th Grade Biology: The Cell and its Functions: Understanding Mitosis and Meiosis": 1 + "10th Grade Biology: The Role of the Endoplasmic Reticulum in Cellular Functions": 1 + "10th Grade Biology: The Cell and its Functions: Exploring Cell Culture Techniques": 1 + "10th Grade Biology: Unveiling Cellular Functions with PCR Technology": 1 + "10th Grade Biology: The Cell and its Functions: A Deep Dive into Cellular Respiration.": 1 + "6th Grade Social Studies: Ancient Civilizations and the Use of Stone Tools": 1 + "6th Grade Social Studies: Ancient Civilizations with Focus on Pyramids": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations through Pottery": 1 + "6th Grade Social Studies: Ancient Civilizations and the Invention of the Wheel": 1 + "6th Grade Social Studies: Ancient Civilizations - The Concept of Democracy": 1 + "6th Grade Social Studies: Ancient Civilizations and the Development of Writing Systems": 1 + "6th Grade Social Studies: Ancient Civilizations and the Art of Navigation": 1 + "6th Grade Social Studies: Ancient Civilizations - Understanding Agriculture and Irrigation": 1 + "6th Grade Social Studies: Ancient Civilizations and the Understanding of Metallurgy": 1 + "6th Grade Social Studies: Ancient Civilizations and the Use of Sundials.": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division through Abacus": 1 + "3rd Grade Mathematics: Practical Learning of Multiplication and Division using Digital Tools": 1 + "3rd Grade Mathematics: Understanding Multiplication and Division with Math Manipulatives": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division through Fractions": 1 + "3rd Grade Mathematics: Enhancing Multiplication and Division Skills using Interactive Whiteboards": 1 + "3rd Grade Mathematics: Studying Multiplication and Division through Number Lines": 1 + "3rd Grade Mathematics: Interactive Learning of Multiplication and Division using iPads": 1 + "3rd Grade Mathematics: Mastering Multiplication and Division through Online Games": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division with Arrays": 1 + "3rd Grade Mathematics: Grasping Multiplication and Division Concepts using Virtual Reality Technology.": 1 + "8th Grade Language Arts: Exploring Poetry through Metaphors": 1 + "8th Grade Language Arts: Exploring Poetry with Rhyme Schemes": 1 + "8th Grade Language Arts: Exploring Poetry using Imagery": 1 + "8th Grade Language Arts: Exploring Poetry and the iambic pentameter": 1 + "8th Grade Language Arts: Exploring Poetry with Similes": 1 + "8th Grade Language Arts: Exploring Poetry on Digital Platforms": 1 + "8th Grade Language Arts: Exploring Poetry through Personification": 1 + "8th Grade Language Arts: Exploring Poetry using Alliteration": 1 + "8th Grade Language Arts: Exploring Poetry and the Art of Haiku": 1 + "8th Grade Language Arts: Exploring Poetry through Symbolism": 1 + "5th Grade Mathematics: Discovering Geometry and Shapes with Protractors": 1 + "5th Grade Mathematics: Exploring Polygons in Geometry": 1 + "5th Grade Mathematics: Using Compasses for Understanding Circles in Geometry": 1 + "5th Grade Mathematics: Leveraging Graphing Calculators for Geometry and Shapes": 1 + "5th Grade Mathematics: Discovering Geometry and Shapes through Pythagorean Theorem": 1 + "5th Grade Mathematics: Introduction to Quadrilaterals in Geometry": 1 + "5th Grade Mathematics: Angles and Triangles: A Deep Dive into Geometry": 1 + "5th Grade Mathematics: Using Geometry Software to Understand Shapes": 1 + "5th Grade Mathematics: Area and Perimeter in Geometry Studies": 1 + "5th Grade Mathematics: Using Geometric Transformations to Understand Shapes": 1 + "3rd Grade Physical Education: Developing Coordination with Jump Ropes": 1 + "3rd Grade Ball Games: Enhancing Physical Education and Coordination": 1 + "Balance Beams in 3rd Grade Physical Education for Improved Coordination": 1 + "3rd Grade Physical Education: Gymnastic Rings and Coordination": 1 + "3rd Grade Physical Education: Coordination Enhancement through Hula Hoops": 1 + "Agility Ladder Training in 3rd Grade Physical Education": 1 + "3rd Grade Physical Education: Coordination Skills through Tug of War": 1 + "Fitness Tracker Usage in 3rd Grade Physical Education and Coordination": 1 + "3rd Grade Physical Education: Coordination Improvement with Pogo Sticks": 1 + "Interactive Video Games in 3rd Grade Physical Education for Coordination.": 1 + "4th Grade Language Arts: Exploring Poetry Metaphors with Minecraft Education Edition": 1 + "Enhancing 4th Grade Language Arts: Engaging with Poetry Metaphors through Kahoot Quizzes": 1 + "4th Grade Language Arts: Analysing Poetry Metaphors using ClassDojo Gamification": 1 + "4th Grade Language Arts: Understanding Poetry Metaphors through Scratch Coding Projects": 1 + "Engaging 4th Graders in Language Arts: Deciphering Poetry Metaphors with Edpuzzle Interactive Videos": 1 + "4th Grade Language Arts: Interactive Learning of Poetry Metaphors using Google Classroom Activities": 1 + "Digital Learning in 4th Grade Language Arts: Poetry Metaphors with Quizizz Gamification": 1 + "4th Grade Language Arts: Studying Poetry Metaphors using Seesaw Collaborative Learning Tools ": 1 + "4th Grade Language Arts: Poetry Metaphors and Flipgrid Video Responses": 1 + "Innovative 4th Grade Language Arts: Poetry Metaphors Using Padlet Virtual Bulletin Boards.": 1 + "1st Grade Spanish: Enhancing Vocabulary through Interactive Flashcards with Google Translate and Zoom Sessions": 1 + "1st Grade Spanish: Augmenting Vocabulary via Interactive Flashcards using Google Translate and Anki App": 1 + "1st Grade Spanish: Expanding Vocabulary through Interactive Flashcards with Google Translate and Duolingo Exercises": 1 + "1st Grade Spanish: Enhancing Vocabulary through Interactive Flashcards and Google Translate in a Canvas LMS Environment": 1 + "1st Grade Spanish: Vocabulary Development through Interactive Flashcards & Google Translate using the Kahoot! Platform": 1 + "1st Grade Spanish: Building Vocabulary via Interactive Flashcards with Google Translate and Quizlet Activities": 1 + "1st Grade Spanish: Enriching Vocabulary through Interactive Flashcards with Google Translate and Tandem Language Exchange": 1 + "1st Grade Spanish: Broadening Vocabulary using Interactive Flashcards with Google Translate and Rosetta Stone Techniques": 1 + "1st Grade Spanish: Advancing Vocabulary through Interactive Flashcards with Google Translate and Memrise Methods": 1 + "1st Grade Spanish: Strengthening Vocabulary with Interactive Flashcards using Google Translate and Babbel Resources": 1 + "1st Grade Reading: Enhancing Story Comprehension and Character Understanding using Interactive e-Books": 1 + "1st Grade Reading: Story Comprehension and Character Analysis using Phonics": 1 + "1st Grade Reading: Improving Story Comprehension and Characters Study through Story Maps": 1 + "1st Grade Reading: Story Comprehension and Characters Insight with Leveled Readers": 1 + "1st Grade Reading: Story Comprehension and Characters through Audio Books": 1 + "1st Grade Reading: Understanding Story Comprehension and Characters using Digital Flashcards": 1 + "1st Grade Reading: Story Comprehension and Characters Recognition with Smartboard Activities": 1 + "1st Grade Reading: Boosting Story Comprehension and Characters using Storytelling Apps": 1 + "1st Grade Reading: Story Comprehension and Characters through Augmented Reality Books": 1 + "1st Grade Reading: Enhancing Story Comprehension and Characters using Graphic Organizers": 1 + "6th Grade Music: Composing Nature-Inspired Melodies Using GarageBand": 1 + "6th Grade Music: Creating Nature-Inspired Melodies with Audacity Software ": 1 + "6th Grade Music: Composing Nature-Inspired Melodies Utilizing Midi Keyboards ": 1 + "6th Grade Music: Crafting Nature-Inspired Melodies via Digital Audio Workstations ": 1 + "6th Grade Music: Composing Nature-Inspired Melodies Applying Music Theory Concepts ": 1 + "6th Grade Music: Developing Nature-Inspired Melodies through Sound Mixing Techniques": 1 + "6th Grade Music: Constructing Nature-Inspired Melodies with Ableton Live ": 1 + "6th Grade Music: Composing Nature-Inspired Melodies Using Loop Sequencers ": 1 + "6th Grade Music: Creating Nature-Inspired Melodies with Virtual Instruments ": 1 + "6th Grade Music: Composing Nature-Inspired Melodies through Beat Making Techniques": 1 + "1st Grade Computer Science: Introduction to Coding with Scratch": 1 + "1st Grade Computer Science: An Introduction to Python Programming": 1 + "1st Grade Computer Science: Basics of Coding with Blockly": 1 + "1st Grade Computer Science: Intro to Coding Using Alice": 1 + "1st Grade Computer Science: Discovering Coding Through LEGO Mindstorms": 1 + "1st Grade Computer Science: Beginning Coding with Raspberry Pi": 1 + "1st Grade Computer Science: An Introduction to HTML for Kids": 1 + "1st Grade Computer Science: Coding Basics Using JavaScript": 1 + "1st Grade Computer Science: Learning to Code with Swift Playgrounds": 1 + "1st Grade Computer Science: Exploring Coding with Minecraft Education Edition": 1 + "Fifth Grade Science: Exploring Ecology through Soil Sampling & Field Trips": 1 + "Fifth Grade Science: Introduction to Ecosystems with Microscope Studies & Field Trips": 1 + "Fifth Grade Science: Probing into Plant Ecology using pH Test Kits & Field Trips": 1 + "Fifth Grade Science: Ecology Exploration with Water Quality Testing & Field Trips": 1 + "Fifth Grade Science: Unraveling Ecology through Animal Tracking & Field Trips": 1 + "Fifth Grade Science: Delving into Ecology with BioBlitz Technique & Field Trips": 1 + "Fifth Grade Science: Introduction to Ecology & Biodiversity with Quadrat Sampling & Field Trips": 1 + "Fifth Grade Science: Exploring Ecology with Camera Traps & Field Trips": 1 + "Fifth Grade Science: Ecology Study using Satellite Imagery & Field Trips": 1 + "Fifth Grade Science: Introduction to Ecology with Drone Surveys & Field Trips": 1 + "4th Grade History: The Journey of Christopher Columbus and the Compass ": 1 + "4th Grade History: Christopher Columbus and the Impact of Astrolabe": 1 + "4th Grade History: The Role of Maps in Christopher Columbus’s Voyages": 1 + "4th Grade History: Christopher Columbus: Navigation Techniques Unveiled": 1 + "4th Grade History: The Ships of Christopher Columbus and their Significance": 1 + "4th Grade History: Christopher Columbus and the Use of Stars for Navigation": 1 + "4th Grade History: The Life of Christopher Columbus: An In-depth Study of Sextants": 1 + "4th Grade History: Understanding Quadrants in Christopher Columbus’s Life": 1 + "4th Grade History: Christopher Columbus and the Evolution of Sailing Technology": 1 + "4th Grade History: The Effect of the Telescope on Christopher Columbus’s Voyages": 1 + "9th Grade Language Arts: Exploring Literary Genres through Shakespearean Drama": 1 + "9th Grade Language Arts: Introduction to Literary Genres using Interactive Ebooks ": 1 + "9th Grade Language Arts: Introduction to Literary Genres with a Focus on Poetry Analysis": 1 + "9th Grade Language Arts: Understanding Literary Genres through Digital Storytelling": 1 + "9th Grade Language Arts: Introduction to Literary Genres - The Art of Graphic Novels": 1 + "9th Grade Language Arts: Navigating Literary Genres using Online Databases": 1 + "9th Grade Language Arts: Introduction to Literary Genres - Exploring the World of Mystery Novels": 1 + "9th Grade Language Arts: Enhancing Understanding of Literary Genres through Audiobooks": 1 + "9th Grade Language Arts: Introduction to Literary Genres - The Science Fiction Spectrum ": 1 + "9th Grade Language Arts: Introduction to Literary Genres - Experimenting with Playwriting Tools": 1 + "1st Grade History: Exploring Local Heroes using Online Archives and Google Scholar": 1 + "1st Grade History: Unearthing Local Heroes using Online Databases and Mind Mapping Techniques": 1 + "1st Grade History: Investigating Local Heroes using Digital Libraries and Virtual Reality Tours": 1 + "1st Grade History: Delving into Local Heroes using Online Archives and Interactive Timelines": 1 + "1st Grade History: Probing Local Heroes using Internet Archives and Augmented Reality Apps": 1 + "1st Grade History: Discovering Local Heroes using Online Archives and the Concept of Chronology": 1 + "1st Grade History: Scrutinizing Local Heroes using Web Archives and Primary Source Analysis": 1 + "1st Grade History: Examining Local Heroes using Online Archives and Multimedia Presentations": 1 + "1st Grade History: Studying Local Heroes using Internet Archives and Voice Recognition Software": 1 + "1st Grade History: Researching Local Heroes using Online Archives and Digital Storytelling Techniques": 1 + "4th Grade Science: Understanding Ecosystems through Microscopes": 1 + "4th Grade Science: Exploring Ecosystems with 3D Modeling Technology": 1 + "4th Grade Science: The Basics of Ecosystems and the Role of Photosynthesis": 1 + "4th Grade Science: Biodiversity in Ecosystems Explored through DNA Sequencing": 1 + "4th Grade Science: The Basics of Ecosystems - A Focus on Food Chains": 1 + "4th Grade Science: Ecosystems and the Impact of Climate Change": 1 + "4th Grade Science: Delving into Ecosystems with Virtual Reality": 1 + "4th Grade Science: The Basics of Ecosystems and Energy Flow Analysis": 1 + "4th Grade Science: Examining Ecosystems with Satellite Imagery": 1 + "4th Grade Science: The Basics of Ecosystems - Understanding Biomes with GIS Technology": 1 + "9th Grade Language Arts: Analyzing Shakespeare’s Plays using Google Docs’ Annotation Feature": 1 + "Understanding Shakespeare’s Plays in 9th Grade Language Arts through Padlet Annotations": 1 + "9th Grade Language Arts: Annotating Shakespeare’s Plays using Microsoft OneNote’s Digital Tools ": 1 + "Analyzing Shakespeare’s Plays with Adobe Acrobat’s Annotation Tools in 9th Grade Language Arts": 1 + "9th Grade Language Arts: Exploring Shakespeare’s Plays through Notion’s Digital Annotation": 1 + "9th Grade Language Arts: Using Kami for Digital Annotation of Shakespeare’s Plays": 1 + "Analyzing Shakespeare’s Plays in 9th Grade Language Arts with the help of Evernote’s Annotation Tools": 1 + "9th Grade Language Arts: Analyzing Shakespeare’s Plays with Hypothesis for Digital Annotation": 1 + "Exploring Shakespeare’s Plays in 9th Grade Language Arts with Miro’s Digital Annotation Tools": 1 + "9th Grade Language Arts: Annotating Shakespeare’s Plays using Diigo’s Digital Tools": 1 + "5th Grade Science: Exploring Tundra Ecosystems with VR Goggles and 3D Simulation Technology": 1 + "5th Grade Science: Understanding Tundra Ecosystems through 3D Printing and Simulation Technology": 1 + "5th Grade Science: Investigating Tundra Ecosystems using Augmented Reality and 3D Simulation Technology": 1 + "5th Grade Science: Decoding Tundra Ecosystems with LiDAR Technology and 3D Simulations": 1 + "5th Grade Science: Discovering Tundra Ecosystems with Drone Imagery and 3D Simulation Technology": 1 + "5th Grade Science: Exploring Tundra Ecosystems with 3D Simulation Technology and Digital Microscopy": 1 + "5th Grade Science: Navigating Tundra Ecosystems with GIS Mapping and 3D Simulation Technology": 1 + "5th Grade Science: Probing Tundra Ecosystems through Remote Sensing and 3D Simulation Technology": 1 + "5th Grade Science: Unraveling Tundra Ecosystems with Satellite Imaging and 3D Simulation Technology": 1 + "5th Grade Science: Learning Tundra Ecosystems through Haptic Feedback Devices and 3D Simulation Technology": 1 + "9th Grade Social Studies: The Role of Printing Press in the American Revolution": 1 + "9th Grade Social Studies: Impact of Gunpowder Technology on the American Revolution": 1 + "9th Grade Social Studies: American Revolution and the Influence of Navigation Tools": 1 + "9th Grade Social Studies: The Concept of Democracy in the American Revolution": 1 + "9th Grade Social Studies: The Use of Propaganda during the American Revolution": 1 + "9th Grade Social Studies: American Revolution and the Evolution of Military Tactics": 1 + "9th Grade Social Studies: The Impact of Enlightenment Thought on the American Revolution": 1 + "9th Grade Social Studies: Importance of Postal Service in the American Revolution": 1 + "9th Grade Social Studies: American Revolution and the Role of Espionage": 1 + "9th Grade Social Studies: The Significance of Diplomacy in the American Revolution": 1 + "2nd Grade Music: Introduction to Rhythm with Drums": 1 + "2nd Grade Music: Exploring Rhythm through Percussion Instruments": 1 + "2nd Grade Music: Foundations of Rhythm - A Study of the Metronome": 1 + "2nd Grade Music: Rhythm Basics with Digital Music Software": 1 + "2nd Grade Music: Exploring Rhythm with Hand Clapping Exercises": 1 + "2nd Grade Music: Rhythm Foundations using Music Sheets": 1 + "2nd Grade Music: Rhythm and Timing with a Piano": 1 + "2nd Grade Music: Understanding Rhythm through Dance Movements": 1 + "2nd Grade Music: Rhythm Basics with Beatboxing": 1 + "2nd Grade Music: Rhythm Foundations - An Introduction to Tempo": 1 + "4th Grade Art: Exploring Artistic Styles Around The World Using Watercolors": 1 + "4th Grade Art: Understanding Global Artistic Styles with Acrylic Painting": 1 + "4th Grade Art: Artistic Styles Around The World Through Collage Making": 1 + "4th Grade Art: Global Artistic Styles and Charcoal Drawing Techniques": 1 + "4th Grade Art: Artistic Styles Around The World: A Focus on Oil Pastels": 1 + "4th Grade Art: The World of Artistic Styles: An Introduction to Digital Art": 1 + "4th Grade Art: Artistic Styles Around The World: A Study in Ink Wash Painting": 1 + "4th Grade Art: Artistic Styles Around The World: Discovering Encaustic Painting": 1 + "4th Grade Art: Artistic Styles Around The World: A Journey Through Sculpting": 1 + "4th Grade Art: Artistic Styles Around The World: Exploring Art Through Printmaking": 1 + "3rd Grade Music: Discovering Rhythms and Melodies with Recorders": 1 + "3rd Grade Music: Exploring Rhythms and Melodies through Digital Software": 1 + "3rd Grade Music: Learning Rhythms and Melodies with Percussion Instruments": 1 + "3rd Grade Music: Discovering Rhythms and Melodies using Music Theory ": 1 + "3rd Grade Music: Understanding Rhythms and Melodies with Piano": 1 + "3rd Grade Music: Mastering Rhythms and Melodies with a Metronome": 1 + "3rd Grade Music: Decoding Rhythms and Melodies through Sheet Music": 1 + "3rd Grade Music: Discovering Rhythms and Melodies with Interactive Online Tools": 1 + "3rd Grade Music: Grasping Rhythms and Melodies using Music Production Software": 1 + "3rd Grade Music: Navigating Rhythms and Melodies with Music Composition Apps": 1 + "Exploring Weather Systems with Barometers and Anemometers: A Detailed 5th Grade Science Course on Atmospheric Pressure in Weather Stations": 1 + "Understanding Atmospheric Pressure with Barometers and Thermometers: An In-Depth 5th Grade Science Course in Weather Stations": 1 + "Probing Weather Systems with Barometers and Hygrometers: A Comprehensive 5th Grade Science Course on Atmospheric Pressure": 1 + "Studying Weather Stations: A 5th Grade Science Course on Atmospheric Pressure using Barometers and Rain Gauges": 1 + "Dissecting Weather Systems with Barometers and Wind Vanes: A Focused 5th Grade Science Course on Atmospheric Pressure": 1 + "Exploring Weather Systems with Barometers and Weather Balloons: A 5th Grade Science Course on Atmospheric Pressure in Weather Stations": 1 + "Investigating Weather Stations using Barometers and Weather Satellites: A 5th Grade Science Course on Atmospheric Pressure": 1 + "Delving into Weather Systems with Barometers and Doppler Radar: A 5th Grade Science Course on Atmospheric Pressure": 1 + "Discovering Atmospheric Pressure with Barometers and Weather Maps: A 5th Grade Science Course in Weather Stations": 1 + "Unveiling Weather Systems with Barometers and Weather Drones: A Detailed 5th Grade Science Course on Atmospheric Pressure.": 1 + "7th Grade Language Arts: Exploring Visual Odes through Prezi on iPads and Google Slides for Digital Presentations": 1 + "7th Grade Language Arts: Employing Prezi and PowerPoint on iPads for Detailed Visual Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Utilizing Prezi and Adobe Spark on iPads for Comprehensive Visual Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Integrating Prezi and Keynote on iPads for Visual Odes Exploration in Interactive Digital Presentations": 1 + "7th Grade Language Arts: Using Prezi and Canva on iPads for In-depth Visual Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Combining Prezi and Microsoft Sway on iPads for Visual Odes Exploration in Engaging Digital Presentations": 1 + "7th Grade Language Arts: Incorporating Prezi and Nearpod on iPads for Visual Odes Exploration in Collaborative Digital Presentations": 1 + "7th Grade Language Arts: Applying Prezi and Slideshare on iPads for Detailed Visual Odes Exploration in Digital Presentations": 1 + "7th Grade Language Arts: Executing Prezi and Prezentit on iPads for Visual Odes Exploration in Interactive Digital Presentations": 1 + "7th Grade Language Arts: Manipulating Prezi and Visme on iPads for Extensive Visual Odes Exploration in Digital Presentations": 1 + "8th Grade History: The Use of the Da Vinci Sketches in the Exploration of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: Understanding the Role of the Printing Press in Disseminating Knowledge about Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Impact of Andreas Vesalius’s ’De humani corporis fabrica’ on the Study of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Influence of Galenic Medicine on Human Anatomy Studies during the Renaissance Era in Europe": 1 + "8th Grade History: The Development of the Microscope and its Impact on the Exploration of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Role of Autopsies in Advancing Knowledge of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Significance of the Four Humours Theory in the Exploration of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Exploration of Human Anatomy with the Aid of Ancient Texts during the Renaissance Era in Europe": 1 + "8th Grade History: The Emergence of Anatomical Theatres and their Role in the Exploration of Human Anatomy during the Renaissance Era in Europe": 1 + "8th Grade History: The Influence of Bloodletting Tools on the Understanding of Human Anatomy during the Renaissance Era in Europe": 1 + "10th Grade Physical Education: Using Garmin GPS Trackers to Improve Rugby Performance and Stamina": 1 + "10th Grade Physical Education: Enhancing Rugby Skills through GPS Trackers and Heart Rate Monitors": 1 + "10th Grade Physical Education: Utilizing GPS Trackers and Biomechanical Analysis for Rugby Performance Improvement": 1 + "10th Grade Physical Education: Incorporating GPS Tracking and Video Analysis to Boost Rugby Performance": 1 + "10th Grade Physical Education: Applying GPS Trackers and Fitness Apps to Enhance Rugby Outcomes": 1 + "10th Grade Physical Education: Using GPS Trackers and Virtual Reality Training to Improve Rugby Tactics": 1 + "10th Grade Physical Education: Merging GPS Trackers with Wearable Fitness Tech for Rugby Performance Enhancement": 1 + "10th Grade Physical Education: Combining GPS Trackers with Sports Psychology Concepts for Rugby Performance": 1 + "10th Grade Physical Education: Implementing GPS Trackers and Data Analytics in Rugby Performance Improvement": 1 + "10th Grade Physical Education: Integrating GPS Trackers and Nutrition Planning for Optimal Rugby Performance": 1 + "10th Grade Music: Exploring Beethoven’s Symphonies with MIDI Technology and Audacity Software": 1 + "10th Grade Music: A Study of Chopin’s Nocturnes using MIDI Technology and GarageBand": 1 + "10th Grade Music: Analyzing Mozart’s Operas through MIDI Technology and Ableton Live": 1 + "10th Grade Music: Understanding Bach’s Fugues with MIDI Technology and Digital Audio Workstations": 1 + "10th Grade Music: A Deep Dive into Tchaikovsky’s Ballet Scores using MIDI Technology and Logic Pro X": 1 + "10th Grade Music: Decoding Vivaldi’s Concertos with MIDI Technology and FL Studio": 1 + "10th Grade Music: Unraveling Handel’s Oratorios using MIDI Technology and Pro Tools": 1 + "10th Grade Music: Exploring Debussy’s Preludes with MIDI Technology and Cubase": 1 + "10th Grade Music: A Closer Look at Schubert’s Lieder using MIDI Technology and Soundtrap": 1 + "10th Grade Music: Dissecting Verdi’s Operas through MIDI Technology and Mixcraft Pro Studio": 1 + "Fourth Grade History: The First Civilizations and the Development of Agriculture": 1 + "Fourth Grade History: The First Civilizations and the Invention of Wheel": 1 + "Fourth Grade History: Exploring the First Civilizations through Pottery": 1 + "Fourth Grade History: The First Civilizations and the Use of Bronze Tools": 1 + "Fourth Grade History: The First Civilizations’ Innovation in Irrigation Technology": 1 + "Fourth Grade History: The First Civilizations and the Evolution of Writing Systems": 1 + "Fourth Grade History: The First Civilizations and the Introduction of Currency": 1 + "Fourth Grade History: The First Civilizations and the Role of Fire": 1 + "Fourth Grade History: The First Civilizations and Advancements in Architecture ": 1 + "Fourth Grade History: The First Civilizations and the Emergence of Metallurgy": 1 + "9th Grade Social Studies: World War II - The Manhattan Project, Enigma Machine, and the Birth of Nuclear Power": 1 + "The Manhattan Project: The Role of the Cyclotron in the Rise of Nuclear Power - A 9th Grade Social Study Course": 1 + "9th Grade Social Studies: The Manhattan Project’s Influence on The Atomic Age and Radiation Detection Technology": 1 + "From Atom Splitting to Nuclear Power: The Manhattan Project’s Legacy in the 9th Grade Social Studies": 1 + "9th Grade Social Studies: An Examination of the Manhattan Project, Uranium Enrichment, and the Dawn of the Nuclear Era": 1 + "9th Grade Social Studies: World War II, the Manhattan Project, and the Emergence of Nuclear Reactors": 1 + "World War II: The Manhattan Project, Nuclear Fission, and the Rise of Atomic Energy - A 9th Grade Social Studies Course ": 1 + "9th Grade Social Studies: The Manhattan Project, Plutonium Production, and the Birth of the Nuclear Age": 1 + "9th Grade Social Studies: World War II - The Manhattan Project and the Development of Nuclear Submarines": 1 + "The Impact of the Manhattan Project on Nuclear Medicine: A 9th Grade Social Studies Course on World War II": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines Using Abacus": 1 + "2nd Grade Mathematics: Integration of Digital Tools in Exploring Addition with Number Lines": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines Using Virtual Manipulatives": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines and Counting Cubes": 1 + "2nd Grade Mathematics: Incorporating Interactive Whiteboard in Number Lines Addition": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines Using Math Apps": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines and Base Ten Blocks": 1 + "2nd Grade Mathematics: Utilizing Math Software in Exploring Addition with Number Lines": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines Using Smart Board Technology": 1 + "2nd Grade Mathematics: Exploring Addition with Number Lines and the Concept of Place Value.": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Integration of Sports Analytics through Microsoft Excel": 1 + "7th Grade Physical Education: Baseball, Teamwork and Sports Analytics with SABRmetrics": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Application of Sports Analytics using RStudio": 1 + "7th Grade Physical Education: Baseball, Teamwork, and the Use of Sports Analytics via Python Programming": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Execution of Sports Analytics with Tableau": 1 + "7th Grade Physical Education: Baseball, Teamwork, and the Implementation of Sports Analytics through SQL": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Integration of Sports Analytics using SAS": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Exploitation of Sports Analytics with IBM SPSS": 1 + "7th Grade Physical Education: Baseball, Teamwork and the Utilization of Sports Analytics through PowerBI": 1 + "7th Grade Physical Education: Baseball, Teamwork, and the Introduction to Sports Analytics using Google Data Studio": 1 + "10th Grade Language Arts: Exploring Shakespeare through Dramatic Performance": 1 + "10th Grade Language Arts: Analyzing Shakespeare’s Works with Digital Humanities Tools": 1 + "10th Grade Language Arts: Delving into Shakespeare using Text Mining Techniques": 1 + "10th Grade Language Arts: Deciphering Shakespeare’s Language with Lexical Analysis": 1 + "10th Grade Language Arts: Experiencing Shakespeare through Virtual Reality Technology": 1 + "10th Grade Language Arts: Understanding Shakespeare’s Themes with Thematic Analysis": 1 + "10th Grade Language Arts: Interactive Studying of Shakespeare with Multimedia Resources": 1 + "10th Grade Language Arts: Engaging with Shakespeare through Film Studies": 1 + "10th Grade Language Arts: Exploring Shakespeare’s World with Augmented Reality": 1 + "10th Grade Language Arts: Enhancing Shakespeare Studies with E-Learning Platforms": 1 + "1st Grade Environmental Studies: Exploring Local Bird Species using Binoculars and Field Journals": 1 + "1st Grade Environmental Studies: Identifying Local Wildlife using Binoculars and Motion Sensor Cameras": 1 + "1st Grade Environmental Studies: Exploring Local Insect Life using Binoculars and Magnifying Glasses": 1 + "1st Grade Environmental Studies: Tracking Local Wildlife using Binoculars and GPS Technology": 1 + "1st Grade Environmental Studies: Studying Local Aquatic Life using Binoculars and Water Testing Kits": 1 + "1st Grade Environmental Studies: Observing Local Plant Life and Wildlife using Binoculars and Botanical Identification Apps": 1 + "1st Grade Environmental Studies: Exploring Local Wildlife Habitats using Binoculars and Habitat Mapping Techniques": 1 + "1st Grade Environmental Studies: Investigating Local Wildlife Patterns using Binoculars and Data Collection Tools": 1 + "1st Grade Environmental Studies: Examining Local Wildlife Adaptations using Binoculars and Comparative Anatomy Charts": 1 + "1st Grade Environmental Studies: Discovering Local Wildlife Food Chains using Binoculars and Ecological Pyramids.": 1 + "6th Grade Social Studies: Principles of Environmental Conservation Using Energy-Efficient Technology": 1 + "6th Grade Social Studies: Basics of Environmental Conservation through Recycling Practices": 1 + "6th Grade Social Studies: Implementing Renewable Energy Sources in Environmental Conservation": 1 + "6th Grade Social Studies: Environmental Conservation: Sustainable Farming Techniques": 1 + "6th Grade Social Studies: Ecosystem Restoration as a Tool for Environmental Conservation": 1 + "6th Grade Social Studies: Basics of Environmental Conservation Using Water Conservation Methods": 1 + "6th Grade Social Studies: The Role of Green Architecture in Environmental Conservation": 1 + "6th Grade Social Studies: Basics of Environmental Conservation, Focusing on Carbon Footprint Reduction": 1 + "6th Grade Social Studies: Promoting Bio-Diversity for Environmental Conservation": 1 + "6th Grade Social Studies: Basics of Environmental Conservation: The Impact of Public Transportation Solutions": 1 + "10th Grade Mathematics: Exploring Algebra Foundations with Geometric Sequences using the Pythagorean Theorem": 1 + "Interactive Algebra Foundations: Harnessing the Power of Geometric Sequences in 10th Grade Mathematics with Graphing Calculators": 1 + "10th Grade Mathematics: A Deep Dive into Algebra Foundations & Geometric Sequences with Desmos Tools": 1 + "Understanding Algebra Foundations through Geometric Sequences: A 10th Grade Mathematics Course Featuring Quadratics": 1 + "10th Grade Mathematics: Algebra Foundations and Geometric Sequences Explored Through the Lens of the Coordinate Plane": 1 + "Advanced 10th Grade Mathematics: Algebra Foundations & Geometric Sequences with Integral Calculus Concepts": 1 + "Exploring Algebra Foundations: A Practical Approach to Geometric Sequences in 10th Grade Mathematics with Matrices": 1 + "10th Grade Mathematics: Enhancing Algebra Foundations & Geometric Sequences Understanding with the FOIL Method": 1 + "Real-World Applications of Algebra Foundations: Geometric Sequences in 10th Grade Mathematics using Scientific Calculators": 1 + "10th Grade Mathematics: A Comprehensive Study of Algebra Foundations & Geometric Sequences with Trigonometry.": 1 + "8th Grade History: The Renaissance Era: The Introduction and Impact of the Printing Press on Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: The Emergence of Abacus in Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe and the Role of the Paper Ledger": 1 + "8th Grade History: The Renaissance Era: The Influence of the Quill Pen on Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: The Advent of Arabic Numerals in Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe: The Evolution of the Balance Sheet": 1 + "8th Grade History: The Renaissance Era: The Impact of the Columnar Pad on Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: The Introduction of the Journal in Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe and the Development of the Trial Balance ": 1 + "8th Grade History: The Renaissance Era: The Role of Ink in the Emergence of Double-entry Bookkeeping in Europe.": 1 + "4th Grade Geography: Exploring US Regions with Oculus VR and Interactive Digital Puzzles": 1 + "4th Grade Geography: Detailed Study of US Regions using Google Earth VR and Digital Crossword Puzzles": 1 + "4th Grade Geography: In-Depth Analysis of US Regions through VR Simulations and Digital Jigsaw Puzzles": 1 + "4th Grade Geography: Detailed Examination of US Regions with HTC Vive VR and Digital Word Search Puzzles": 1 + "4th Grade Geography: Comprehensive Study of US Regions using PlayStation VR and Digital Sudoku Puzzles": 1 + "4th Grade Geography: Deep Dive into US Regions with Samsung Gear VR and Digital Maze Puzzles": 1 + "4th Grade Geography: Thorough Exploration of US Regions using Microsoft HoloLens VR and Digital Match-3 Puzzles": 1 + "4th Grade Geography: Detailed Survey of US Regions with Google Cardboard VR and Digital Tangram Puzzles": 1 + "4th Grade Geography: Extensive Study of US Regions using Magic Leap One VR and Digital Cryptic Puzzles": 1 + "4th Grade Geography: Inclusive Examination of US Regions with VR Box and Digital Slider Puzzles": 1 + "5th Grade Mathematics: Simplifying Fractions Using the Greatest Common Factor and Long Division Method with Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification Employing the Greatest Common Factor and Prime Factorization with Smart Board Activities": 1 + "5th Grade Mathematics: Applying the Greatest Common Factor for Fraction Simplification with Virtual Manipulatives on Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Exploring Fraction Simplification Using the Greatest Common Factor and Euclidean Algorithm with Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification through the Greatest Common Factor and Cross Reduction Technique with Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Studying Fraction Simplification Using the Greatest Common Factor and Visual Fractions Software with Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification via the Greatest Common Factor and Division Method with Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Mastering Fraction Simplification with the Greatest Common Factor Using Python Programming on Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification Using the Greatest Common Factor with GeoGebra Tools in Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Fraction Simplification Applying the Greatest Common Factor and Fraction Tiles with Interactive Whiteboard Activities.": 1 + "10th Grade Physical Education: The Economics of Sports with Focus on Revenue Generation Techniques": 1 + "10th Grade Physical Education: The Economics of Sports - An In-depth Analysis of Sports Analytics": 1 + "10th Grade Physical Education: The Economics of Sports - Understanding Salary Caps": 1 + "10th Grade Physical Education: The Economics of Sports - The Role of Sponsorship": 1 + "10th Grade Physical Education: The Economics of Sports - Exploring Ticket Pricing Strategies": 1 + "10th Grade Physical Education: The Economics of Sports - Broadcasting Rights and Profit": 1 + "10th Grade Physical Education: The Economics of Sports - Impact of Merchandising": 1 + "10th Grade Physical Education: The Economics of Sports - Evaluating Player Transfer Fees": 1 + "10th Grade Physical Education: The Economics of Sports - Examination of Stadium Economics": 1 + "10th Grade Physical Education: The Economics of Sports - Sports Franchise Valuations and their Economic Effects": 1 + "10th Grade Physical Education: The Economics of Sports - Sports Marketing and its Financial Implications": 1 + "6th Grade Social Studies: Deciphering Phoenician Alphabet Scripts with the Aid of Optical Character Recognition (OCR) Technology": 1 + "Exploring Phoenician Civilization: Using Lidar Technology to Study the Impact of Mediterranean Sea Flooding": 1 + "6th Grade Social Studies: Analyzing Phoenician Alphabet Scripts with Advanced Graphology Techniques": 1 + "Tracing Phoenician Origins: Using 3D Laser Scanning and Ground Penetrating Radar to Understand Mediterranean Sea Flooding": 1 + "6th Grade Social Studies: Utilizing Satellite Imagery to Trace Phoenician Civilization’s Response to Mediterranean Sea Flooding": 1 + "Insights into Phoenician Civilization: Applying Machine Learning in Understanding Alphabet Scripts ": 1 + "6th Grade Social Studies: Using Carbon Dating to Uncover the Origins of Phoenician Civilization": 1 + "Phoenician Civilization Study: Utilizing 3D Laser Scanning and Drone Technology for Mediterranean Sea Flooding Analysis": 1 + "6th Grade Social Studies: Exploring Phoenician Civilization through Alphabet Scripts and DNA Analysis": 1 + "Tracing Phoenician Origins: Using 3D Laser Scanning and Augmented Reality to Study Mediterranean Sea Flooding Impact.": 1 + "6th Grade Science: Exploring Earth’s Ecosystems through Microscopy": 1 + "6th Grade Science: Understanding Earth’s Ecosystems using Data Collection Tools": 1 + "6th Grade Science: The Impact of Climate Change on Earth’s Ecosystems": 1 + "6th Grade Science: Studying Earth’s Ecosystems using Geographic Information Systems": 1 + "6th Grade Science: Basics of Earth’s Ecosystems - An Intro to Bioenergy": 1 + "6th Grade Science: The Role of Photosynthesis in Earth’s Ecosystems": 1 + "6th Grade Science: Exploring Earth’s Ecosystems with Computer Modeling": 1 + "6th Grade Science: The Basics of Earth’s Ecosystems - A Focus on Biodiversity": 1 + "6th Grade Science: Investigating Earth’s Ecosystems using Satellite Imaging": 1 + "6th Grade Science: Understanding Earth’s Ecosystems with Hydrological Cycle Concept.": 1 + "7th Grade Art: Charcoal Drawing Techniques with Willow Sticks: Exploring Cross-Hatching": 1 + "7th Grade Art: Charcoal Drawing Techniques: Deep Dive into Cross-Hatching with Compressed Charcoal": 1 + "7th Grade Art: Charcoal Drawing Techniques: Learning Cross-Hatching with Charcoal Pencils": 1 + "7th Grade Art: Charcoal Drawing Techniques: Exploring Cross-Hatching with Vine Charcoal": 1 + "7th Grade Art: Charcoal Drawing Techniques: Cross-Hatching Mastery with Art Stumps": 1 + "7th Grade Art: Charcoal Drawing Techniques: Exploring Cross-Hatching and Blending with Kneaded Erasers": 1 + "7th Grade Art: Charcoal Drawing Techniques: Understanding Cross-Hatching with Tortillons": 1 + "7th Grade Art: Charcoal Drawing Techniques: Exploring Cross-Hatching with White Charcoal on Black Paper": 1 + "7th Grade Art: Charcoal Drawing Techniques: Mastering Cross-Hatching with Charcoal Powder": 1 + "7th Grade Art: Charcoal Drawing Techniques: Exploring Cross-Hatching using Digital Art Tablets": 1 + "10th Grade Physical Education: Exploring Sports Psychology & Fitness through Heart Rate Monitors": 1 + "10th Grade Physical Education: A Deep Dive into Sports Psychology & Fitness with Biofeedback Technology": 1 + "10th Grade Physical Education: Understanding Sports Psychology & Fitness through VR Training": 1 + "10th Grade Physical Education: Exploring the Impact of Sleep Technology on Sports Psychology & Fitness": 1 + "10th Grade Physical Education: Incorporating Wearable Fitness Trackers in Sports Psychology & Fitness Exploration": 1 + "10th Grade Physical Education: Enhancing Sports Psychology & Fitness Studies with GPS Sports Watches": 1 + "10th Grade Physical Education: Leveraging Hydration Tracking Apps in Sports Psychology & Fitness": 1 + "10th Grade Physical Education: Exploring Sports Psychology & Fitness through the Concept of Mindfulness": 1 + "10th Grade Physical Education: A Study on Sports Psychology & Fitness with the Aid of Calorie Counting Apps": 1 + "10th Grade Physical Education: The Role of Smart Scales in Understanding Sports Psychology & Fitness": 1 + "Utilizing Adobe Spark in Digital Storybooks: A New Approach to 2nd Grade Language Arts Storytelling": 1 + "Interactive Storytelling with Google Slides: A New Approach to 2nd Grade Language Arts": 1 + "Incorporating Augmented Reality into Digital Storybooks for 2nd Grade Language Arts": 1 + "Using Scratch Jr for Interactive Digital Storybooks: A New 2nd Grade Language Arts Approach": 1 + "2nd Grade Language Arts Storytelling: A New Approach Using Book Creator App for Digital Storybooks": 1 + "Digital Storybooks with Amazon Kindle: Revolutionizing 2nd Grade Language Arts Storytelling": 1 + "Incorporating Microsoft Sway into Digital Storybooks: A Unique Approach to 2nd Grade Language Arts": 1 + "Animating with Toontastic for Digital Storybooks: A Novel Approach to 2nd Grade Language Arts": 1 + "2nd Grade Language Arts Storytelling: A New Digital Approach Using My Story App": 1 + "Digital Storybooks with Canva: A Fresh Approach to 2nd Grade Language Arts Storytelling": 1 + "Mastering Multiplication: Using Times Tables through Interactive Whiteboard in 3rd Grade Mathematics": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables using Math Apps": 1 + "3rd Grade Mathematics: Exploring Multiplication with Times Tables through Digital Flashcards": 1 + "Mastering Multiplication with Times Tables: Incorporating Virtual Reality in 3rd Grade Mathematics": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables and Interactive Software": 1 + "Mastering Multiplication: Utilizing Times Tables through iPads in 3rd Grade Mathematics": 1 + "3rd Grade Mathematics: Learning Multiplication with Times Tables using Smartphones": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables through Educational Websites": 1 + "Mastering Multiplication with Times Tables: Integrating Graphing Calculators in 3rd Grade Mathematics": 1 + "3rd Grade Mathematics: Mastery of Multiplication with Times Tables using Interactive Games.": 1 + "8th Grade Music: Utilizing Studio One MIDI Sequencers and Ableton Live for Understanding Wagner’s Orchestration Through Harmonic Analysis": 1 + "Applying Cubase Software in 8th Grade Music: Studio One MIDI Sequencers and Ableton Live for Wagner’s Orchestration": 1 + "8th Grade Music: Exploring Wagner’s Orchestration Using Studio One MIDI Sequencers, Ableton Live and Sibelius Notation Software": 1 + "8th Grade Music: Studio One MIDI Sequencers and Ableton Live in Deciphering Wagner’s Orchestration and Melodic Structures": 1 + "Introduction to Digital Audio Workstation in 8th Grade Music: Applying Studio One MIDI Sequencers and Ableton Live for Wagner’s Orchestration": 1 + "8th Grade Music: Understanding Wagner’s Orchestration Using Studio One MIDI Sequencers, Ableton Live and Pro Tools": 1 + "8th Grade Music: Studio One MIDI Sequencers and Ableton Live in Analyzing Wagner’s Orchestration With Tempo Mapping": 1 + "Applying Logic Pro X in 8th Grade Music: Studio One MIDI Sequencers and Ableton Live for Wagner’s Orchestration": 1 + "8th Grade Music: Studio One MIDI Sequencers, Ableton Live, and FL Studio in Examining Wagner’s Orchestration": 1 + "8th Grade Music: Using Studio One MIDI Sequencers and Ableton Live to Understand Wagner’s Orchestration Through Time Signature Changes": 1 + "6th Grade Social Studies: Exploring Agriculture in Ancient Civilizations with a Focus on Egyptian Shadoof Irrigation Techniques": 1 + "6th Grade Social Studies: An Insight into Ancient Mesopotamian Canal Irrigation Systems": 1 + "6th Grade Social Studies: Understanding Ancient Chinese Flood Control and Irrigation Techniques": 1 + "6th Grade Social Studies: A Study on Roman Aqueducts and their Impact on Agricultural Practices": 1 + "6th Grade Social Studies: Delving into the Incan Agricultural Terraces and their Irrigation Techniques": 1 + "6th Grade Social Studies: Examining the Qanat Irrigation System in Ancient Persia": 1 + "6th Grade Social Studies: Investigating the Impact of Ancient Indian Stepwell Irrigation Techniques": 1 + "6th Grade Social Studies: A Detailed Look at the Water Wheels Used in Ancient Greece for Irrigation": 1 + "6th Grade Social Studies: The Role of Cisterns in Ancient Mayan Irrigation Techniques": 1 + "6th Grade Social Studies: Discovery of Hohokam Irrigation Techniques in Ancient North America": 1 + "2nd Grade History: Exploration of Ancient Chinese Inventions: The Compass and Its Maritime Navigation Uses": 1 + "2nd Grade History: Deep Dive into Ancient Chinese Technology: The Compass and Its Uses in Star Navigation": 1 + "2nd Grade History: Unraveling Ancient Chinese Inventions: The Compass and Its Impact on Trade Routes": 1 + "2nd Grade History: Ancient Chinese Innovations: The Compass and Its Revolutionary Use in Sea Expeditions": 1 + "2nd Grade History: A Journey Through Ancient Chinese Inventions: The Compass and Its Role in Map Making": 1 + "2nd Grade History: Discovering Ancient Chinese Inventions: The Compass and Its Significance in Ocean Navigation": 1 + "2nd Grade History: The Secrets of Ancient Chinese Technology: The Compass and Its Influence on World Exploration": 1 + "2nd Grade History: Understanding Ancient Chinese Inventions: The Compass and Its Pivotal Role in Nautical Navigation": 1 + "2nd Grade History: The Marvel of Ancient Chinese Inventions: The Compass and Its Contribution to Cartography": 1 + "2nd Grade History: Insight into Ancient Chinese Science: The Compass and Its Application in Geographical Orientation": 1 + "2nd Grade Art: Exploring Color Theory with Watercolor Paints through Origami Paper Folding": 1 + "2nd Grade Art: Delving into Color Theory with Digital Tools in Origami Paper Folding": 1 + "2nd Grade Art: Examining Color Theory through Origami Paper Folding using Colored Pencils": 1 + "2nd Grade Art: Discovering Color Theory with Acrylic Paints through Origami Paper Folding": 1 + "2nd Grade Art: Investigating Color Theory using Software Applications through Origami Paper Folding ": 1 + "2nd Grade Art: Studying Color Theory with Crayons through Origami Paper Folding": 1 + "2nd Grade Art: Learning Color Theory with Pastels in Origami Paper Folding": 1 + "2nd Grade Art: Understanding Color Theory using Mixed Media through Origami Paper Folding": 1 + "2nd Grade Art: Exploring Color Theory and Complementary Colors through Origami Paper Folding": 1 + "2nd Grade Art: Mastering Color Theory with Oil Pastels through Origami Paper Folding": 1 + "2nd Grade Science: Exploring Bear Habitats using Garmin GPS Tracking, Infrared Motion Sensors and Drone Surveillance": 1 + "2nd Grade Science: Decoding Bear Habitats with GPS Tracking, Motion Sensor Technology, and Satellite Imagery": 1 + "2nd Grade Science: Utilizing GPS Tracking, GoPro Cameras, and Motion Sensor Technology for Bear Habitat Discovery": 1 + "2nd Grade Science: Unearthing Bear Habitats using GPS Tracking, Motion Sensor Technology, and Solar-Powered Wildlife Cameras": 1 + "2nd Grade Science: Bear Habitat Studies using GPS Tracking, Motion Sensor Technology, and Thermal Imaging": 1 + "2nd Grade Science: Understanding Bear Habitats using GPS Tracking, Motion Sensor Technology, and Radio Telemetry": 1 + "2nd Grade Science: Investigating Bear Habitats using GPS Tracking, Motion Sensor Technology, and Lidar Surveying": 1 + "2nd Grade Science: Mapping Bear Habitats using GPS Tracking, Motion Sensor Technology, and Geographic Information System (GIS)": 1 + "2nd Grade Science: Grasping Bear Habitats using GPS Tracking, Motion Sensor Technology, and Aerial Photography": 1 + "2nd Grade Science: Bear Habitat Exploration using GPS Tracking, Motion Sensor Technology, and Virtual Reality Modelling.": 1 + "2nd Grade Social Studies: Understanding Neighborhood Maps with Google Earth": 1 + "2nd Grade Social Studies: Learning about Neighborhood Maps using GPS Technology": 1 + "2nd Grade Social Studies: Neighborhood Maps and Compass Reading Skills": 1 + "2nd Grade Social Studies: Exploring Neighborhood Maps with Satellite Imagery": 1 + "2nd Grade Social Studies: Neighborhood Maps and the Use of Map Scale": 1 + "2nd Grade Social Studies: Understanding Neighborhood Maps using Geocaching": 1 + "2nd Grade Social Studies: Introduction to Topographical Features on Neighborhood Maps": 1 + "2nd Grade Social Studies: Using GIS to Understand Neighborhood Maps": 1 + "2nd Grade Social Studies: Understanding Neighborhood Maps with Map Projections": 1 + "2nd Grade Social Studies: Neighborhood Maps and the Concept of Latitude and Longitude": 1 + "3rd Grade History: Investigating Ancient Egyptian Pyramids with Tinkercad 3D Printing and Oculus Rift VR Technology": 1 + "3rd Grade History: Discovering Ancient Egyptian Pyramids Architecture with MakerBot 3D Printing and HTC Vive VR Technology": 1 + "3rd Grade History: Studying Ancient Egyptian Pyramids Artifacts with Fusion 360 3D Printing and Google Daydream VR Technology": 1 + "3rd Grade History: Unraveling Ancient Egyptian Pyramids Mysteries with Ultimaker 3D Printing and PlayStation VR Technology": 1 + "3rd Grade History: Delving into Ancient Egyptian Pyramids Engineering with AutoCAD 3D Printing and Samsung Gear VR Technology": 1 + "3rd Grade History: Exploring Ancient Egyptian Pyramids Tomb Layouts with Prusa i3 MK3 3D Printing and Microsoft HoloLens VR Technology": 1 + "3rd Grade History: Examining Ancient Egyptian Pyramids Hieroglyphics with Formlabs Form 2 3D Printing and Lenovo Mirage Solo VR Technology": 1 + "3rd Grade History: Uncovering Ancient Egyptian Pyramids Burial Practices with LulzBot Mini 2 3D Printing and Oculus Quest 2 VR Technology": 1 + "3rd Grade History: Navigating Ancient Egyptian Pyramids with Zortrax M200 3D Printing and Pico Neo 2 VR Technology": 1 + "3rd Grade History: Investigating Ancient Egyptian Pyramids Construction Techniques with Creality Ender 3 3D Printing and HP Reverb G2 VR Technology": 1 + "1st Grade Language Arts: Adventures in Storytelling with Puppetry": 1 + "1st Grade Language Arts: Exploring Storytelling through Digital Animation": 1 + "1st Grade Language Arts: Adventures in Storytelling using Storyboarding Techniques": 1 + "1st Grade Language Arts: Adventures in Storytelling - Harnessing the Power of Voice Acting": 1 + "1st Grade Language Arts: Adventures in Storytelling with Interactive E-books": 1 + "1st Grade Language Arts: Storytelling Adventures through Virtual Reality": 1 + "1st Grade Language Arts: Adventures in Storytelling - The Magic of Augmented Reality": 1 + "1st Grade Language Arts: Storytelling Adventures with Immersive Audio Books": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques": 1 + "1st Grade Language Arts: Adventures in Storytelling - Crafting Narratives with Video Editing Software.": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Promethean ActivBoard and Google Slides": 1 + "2nd Grade Language Arts: The Magic of Storytelling using Interactive Whiteboard, Google Slides, and Kahoot Quizzes": 1 + "2nd Grade Language Arts: Enhancing Narrative Skills with SMART Board and Google Slides": 1 + "2nd Grade Language Arts: Storytelling Magic using Interactive Whiteboard, Google Slides, and Flipgrid": 1 + "2nd Grade Language Arts: The Magic of Storytelling with iPad and Google Slides Applications": 1 + "2nd Grade Language Arts: Storytelling Enhancement with Interactive Whiteboard, Google Slides, and Edmodo": 1 + "2nd Grade Language Arts: The Magic of Digital Storytelling using Interactive Whiteboard, Google Slides, and Seesaw": 1 + "2nd Grade Language Arts: Storytelling with Interactive Whiteboard, Google Slides, and Book Creator Tool": 1 + "2nd Grade Language Arts: The Magic of Storytelling with Interactive Whiteboard, Google Slides, and Trello Board": 1 + "2nd Grade Language Arts: Enhancing Storytelling using Interactive Whiteboard, Google Slides, and Scratch Programming.": 1 + "9th Grade Physical Education: Understanding Nutrition & Dietary Fiber through the CalorieKing App and MyFitnessPal Tool": 1 + "Meal Planning Mastery: A Deep Dive into the CalorieKing App & Fooducate Integration for 9th Grade Physical Education": 1 + "Enhancing 9th Grade Physical Education: Nutrition, Dietary Fiber, and Meal Planning using the CalorieKing App and Fitbit Tracker": 1 + "9th Grade Physical Education: Nutrition and Dietary Fiber Analysis through CalorieKing App & MyPlate Calorie Tracker": 1 + "CalorieKing App and the Role of Macronutrients: A Comprehensive 9th Grade Physical Education Course": 1 + "9th Grade Physical Education: Meal Planning & Dietary Fiber Study with CalorieKing App and Google Fit Integration": 1 + "Understanding Nutrition: A Deep Dive into the CalorieKing App & MyNetDiary for 9th Grade Physical Education": 1 + "9th Grade Physical Education: CalorieKing App and the Concept of Glycemic Index": 1 + "Dietary Fiber and Meal Planning: A Comprehensive Study using CalorieKing App & Jawbone UP for 9th Grade Physical Education": 1 + "9th Grade Physical Education: Navigating Nutrition and Dietary Fiber with CalorieKing App & the Ketogenic Diet.": 1 + "4th Grade History: Exploring the American Revolution with Oculus Quest 2 Virtual Reality Tours": 1 + "4th Grade History: Learning the American Revolution through Minecraft Education Edition Virtual Reality Tours": 1 + "4th Grade History: Navigating the American Revolution with HTC Vive Virtual Reality Tours": 1 + "4th Grade History: Understanding the American Revolution through Google Expeditions Virtual Reality Tours": 1 + "4th Grade History: Studying the American Revolution with PlayStation VR Virtual Reality Tours": 1 + "4th Grade History: Grasping the American Revolution through Samsung Gear VR Virtual Reality Tours": 1 + "4th Grade History: Unraveling the American Revolution with Unity 3D Virtual Reality Tours": 1 + "4th Grade History: Absorbing the American Revolution through Augmented Reality Tours on Microsoft HoloLens": 1 + "4th Grade History: Delving into the American Revolution with Virtual Reality Tours on Magic Leap": 1 + "4th Grade History: Experiencing the American Revolution through Lenovo Mirage Solo Virtual Reality Tours.": 1 + "3rd Grade Music: Discovering Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Metronome Applications": 1 + "3rd Grade Music: Exploring Polyrhythms with Schalloch Linea Conga Drums and Reaper Tempo Software": 1 + "3rd Grade Music: Mastering Time Signatures with Schalloch Linea Conga Drums, Reaper Tempo Software, and Interactive Whiteboard": 1 + "3rd Grade Music: Learning Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Beat Detection Algorithm": 1 + "3rd Grade Music: Enhancing Musical Timing with Schalloch Linea Conga Drums, Reaper Tempo Software, and Syncopation Techniques": 1 + "3rd Grade Music: Understanding Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, and BPM Counter Tool": 1 + "3rd Grade Music: Integrating Percussion Techniques with Schalloch Linea Conga Drums and Reaper Tempo Software": 1 + "3rd Grade Music: Harmonizing Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and MIDI Controllers": 1 + "3rd Grade Music: Decoding Rhythm Notations with Schalloch Linea Conga Drums, Reaper Tempo Software, and Music Reading Software": 1 + "3rd Grade Music: Practicing Rhythm and Beat with Schalloch Linea Conga Drums, Reaper Tempo Software, and Digital Audio Workstations": 1 + "1st Grade Mathematics: Exploring Addition and Subtraction with Abacus": 1 + "1st Grade Mathematics: Enjoying Geometry with Tangram Puzzles": 1 + "1st Grade Mathematics: Introduction to Fractions using Pizza Models": 1 + "1st Grade Mathematics: Learning Multiplication with Times Table Grid": 1 + "1st Grade Mathematics: Fun with Numbers on the Interactive Whiteboard": 1 + "1st Grade Mathematics: Discovering Shapes with 3D Printing ": 1 + "1st Grade Mathematics: Engaging Number Bonds with Math Learning Apps ": 1 + "1st Grade Mathematics: Exploring Place Value with Base Ten Blocks": 1 + "1st Grade Mathematics: Understanding Patterns with Colorful Beads": 1 + "1st Grade Mathematics: Measurement Fun with Ruler and Scale.": 1 + "5th Grade Science: Exploring the Solar System with Telescopes": 1 + "5th Grade Science: Understanding the Solar System Using Space Probes": 1 + "5th Grade Science: Introduction to the Solar System and the Hubble Telescope": 1 + "5th Grade Science: Study of the Solar System with Satellite Imagery": 1 + "5th Grade Science: Learning the Solar System through Astrophotography": 1 + "5th Grade Science: Grasping the Solar System with Planetarium Software": 1 + "5th Grade Science: The Solar System and the Mars Rover Technology": 1 + "5th Grade Science: Revealing the Solar System Through Spectroscopy": 1 + "5th Grade Science: The Solar System Explored with Orbital Mechanics": 1 + "5th Grade Science: The Solar System and the Concept of Gravity.": 1 + "9th Grade Language Arts: Exploring Literary Genres with Audiobooks using Audible": 1 + "9th Grade Language Arts: Enhancing Comprehension of Literary Genres through Audiobooks and Text-to-Speech Software": 1 + "9th Grade Language Arts: A Deep Dive into Literary Genres through Audiobooks and Interactive Quizzes": 1 + "9th Grade Language Arts: Understanding Literary Genres through Audiobooks & Voice Recognition Software": 1 + "9th Grade Language Arts: Analyzing Literary Genres using Audiobooks and Google Classroom": 1 + "9th Grade Language Arts: Improving Literary Genres Comprehension through Audiobooks & Podcasts": 1 + "9th Grade Language Arts: Engaging with Literary Genres through Audiobooks & Virtual Reality Storytelling": 1 + "9th Grade Language Arts: Enhanced Literary Genres Study using Audiobooks and Digital Annotation Tools": 1 + "9th Grade Language Arts: Unveiling Literary Genres through Audiobooks & Artificial Intelligence": 1 + "9th Grade Language Arts: Interactive Experience of Literary Genres through Audiobooks and Augmented Reality.": 1 + "6th Grade Mathematics: Mastering Algebra with the Aid of Geogebra App": 1 + "6th Grade Mathematics: Exploring Algebra Using the Photomath App": 1 + "6th Grade Mathematics: Understanding Algebraic Expressions through Mathway App": 1 + "6th Grade Mathematics: Learning Quadratic Equations with the Aid of Microsoft Math Solver": 1 + "6th Grade Mathematics: Grasping Algebraic Concepts with Wolfram Alpha Technology": 1 + "6th Grade Mathematics: Simplifying Complex Algebra Using the Cymath App": 1 + "6th Grade Mathematics: Conquering Algebra with the Help of Mathspace App": 1 + "6th Grade Mathematics: Unraveling Algebraic Structures Using the Brilliant.org App": 1 + "6th Grade Mathematics: Exploring the World of Algebra through the Khan Academy App": 1 + "6th Grade Mathematics: Understanding the Basics of Algebra with the Desmos Graphing Calculator.": 1 + "4th Grade Art: Exploring Color Theory with Watercolors": 1 + "4th Grade Art: Color Blending Techniques in Color Theory": 1 + "4th Grade Art: Exploring Color Theory with Acrylics": 1 + "4th Grade Art: Discovering Color Harmony in Color Theory": 1 + "4th Grade Art: Exploring Color Theory with Digital Tools": 1 + "4th Grade Art: Understanding Color Wheel in Color Theory": 1 + "4th Grade Art: Exploring Color Theory with Oil Pastels": 1 + "4th Grade Art: Color Mixing Techniques in Color Theory": 1 + "4th Grade Art: Exploring Color Theory with Digital Art Software": 1 + "4th Grade Art: Learning Color Value in Color Theory": 1 + "4th Grade Art: Exploring Color Theory with Colored Pencils": 1 + "7th Grade Music: Mastering the Art of Reading Sheet Music using the Flute and Finale Notation Software": 1 + "7th Grade Music: An In-Depth Exploration of Reading Sheet Music with the Flute and the Circle of Fifths": 1 + "7th Grade Music: Decoding Sheet Music using the Flute and the Concept of Key Signatures": 1 + "7th Grade Music: A Comprehensive Study of Reading Sheet Music for Flute with Sibelius Software": 1 + "7th Grade Music: Enhancing Sheet Music Reading Skills through Flute Practice and Sight-Reading Techniques": 1 + "7th Grade Music: Exploring the Flute and Reading Sheet Music with the aid of Metronome Technology": 1 + "7th Grade Music: Demystifying Sheet Music with Flute Practice and the Kodály Method": 1 + "7th Grade Music: Gaining Proficiency in Reading Flute Sheet Music using Transposing Techniques": 1 + "7th Grade Music: A Deep Dive into Reading Sheet Music with the Flute and Rhythm Counting Techniques": 1 + "7th Grade Music: Advancing Reading Skills for Flute Sheet Music using the Orff-Schulwerk Approach": 1 + "5th Grade Science: Exploring Ecosystems and Habitats with Microscopes": 1 + "5th Grade Science: Studying Ecosystems and Habitats Using GIS Technology": 1 + "5th Grade Science: Uncovering Ecosystems and Habitats with Satellite Imagery": 1 + "5th Grade Science: Delving into Ecosystems and Habitats Through Biomimicry Concepts": 1 + "5th Grade Science: Learning Ecosystems and Habitats with Augmented Reality": 1 + "5th Grade Science: Examining Ecosystems and Habitats Using Remote Sensing Technology": 1 + "5th Grade Science: Investigating Ecosystems and Habitats Through DNA Sequencing": 1 + "5th Grade Science: Understanding Ecosystems and Habitats with Conservation Technology": 1 + "5th Grade Science: Analysing Ecosystems and Habitats Using Drone Surveillance": 1 + "5th Grade Science: Exploring Ecosystems and Habitats through the Lens of Climate Change Modelling.": 1 + "3rd Grade Exploring the Solar System Through Telescopes": 1 + "3rd Grade Journey Through the Solar System: An Introduction to Astronomical Maps": 1 + "3rd Grade Exploring the Solar System: Understanding the Concept of Gravity": 1 + "3rd Grade Discovering the Solar System: An In-depth Look at Planets Through 3D Models": 1 + "3rd Grade Solar System Adventure: Learning With Virtual Reality Technology": 1 + "3rd Grade Solar System Exploration: Understanding Planet Orbits": 1 + "3rd Grade’s Guide to the Solar System: Utilizing Satellite Images": 1 + "3rd Grade Explores the Solar System: Introduction to the Hubble Telescope": 1 + "3rd Grade’s Journey Through the Solar System: Learning with Interactive Software": 1 + "3rd Grade Uncovering the Mysteries of the Solar System: Focus on Space Probes": 1 + "6th Grade History: Exploring Ancient Egyptian Irrigation and the Role of the Nile": 1 + "6th Grade History: Ancient Egyptian Ploughs and the Agricultural Significance of the Nile": 1 + "6th Grade History: The Shaduf in Ancient Egyptian Agriculture and the Nile’s Role": 1 + "6th Grade History: Ancient Egyptian Nilometers and the Importance of the Nile in Farming": 1 + "6th Grade History: The Impact of the Sickle in Ancient Egyptian Agriculture and the Nile": 1 + "6th Grade History: Ancient Egyptian Water Clocks, Agriculture, and the Nile’s Influence": 1 + "6th Grade History: The Study of Ancient Egyptian Granaries and the Role of the Nile": 1 + "6th Grade History: Ancient Egyptian Crop Rotation Techniques and the Importance of the Nile": 1 + "6th Grade History: The Use of Winnowing in Ancient Egyptian Agriculture and the Nile’s Contribution": 1 + "6th Grade History: Flooding Techniques in Ancient Egyptian Agriculture and the Nile’s Vitality": 1 + "8th Grade Music: Tracing Classical Music Evolution with Bach’s Harpsichord and its Influence in Mozart’s Era": 1 + "8th Grade Music: Understanding Polyphony Complexity in Mozart’s Era with the Role of the Harpsichord": 1 + "8th Grade Music: Exploring the Evolution of Classical Music: Harpsichord’s Impact on Mozart’s Polyphony ": 1 + "8th Grade Music: The Harpsichord’s Role in the Development of Classical Music and Polyphony in Mozart’s Time": 1 + "8th Grade Music: The Transformation of Classical Music: Harpsichord to Mozart’s Complex Polyphony": 1 + "8th Grade Music: Deconstructing Mozart’s Polyphony: The Pivotal Role of the Harpsichord": 1 + "8th Grade Music: Classical Music Evolution - A Study of Harpsichord and Mozart’s Polyphonic Techniques": 1 + "8th Grade Music: The Harpsichord’s Influence on Classical Music Evolution and Mozart’s Polyphony": 1 + "8th Grade Music: Analyzing Classical Music Evolution: From the Harpsichord to Mozart’s Polyphonic Era": 1 + "8th Grade Music: The Harpsichord and its Effect on the Complexity of Polyphony in Mozart’s Classical Music Evolution": 1 + "8th Grade Social Studies: Exploring World Cultures through Map Reading": 1 + "8th Grade Social Studies: Understanding World Cultures with Multimedia Technology": 1 + "8th Grade Social Studies: Examining World Cultures through Historical Artifacts": 1 + "8th Grade Social Studies: Grasping World Cultures using Timeline Concepts": 1 + "8th Grade Social Studies: Unfolding World Cultures through Virtual Reality": 1 + "8th Grade Social Studies: Interpreting World Cultures with Digital Archaeology": 1 + "8th Grade Social Studies: Deciphering World Cultures through Language Analysis": 1 + "8th Grade Social Studies: Analyzing World Cultures using Anthropological Theories": 1 + "8th Grade Social Studies: Understanding World Cultures with Internet Research Skills": 1 + "8th Grade Social Studies: Investigating World Cultures through Documentary Films": 1 + "Second Grade Science: Exploring the Solar System with Telescopes": 1 + "Second Grade Science: Navigating the Solar System with Interactive Software": 1 + "Second Grade Science: Understanding the Solar System through 3D Models": 1 + "Second Grade Science: Learning about the Solar System with Virtual Reality": 1 + "Second Grade Science: Discovering the Solar System with Planetarium Software": 1 + "Second Grade Science: Journey through the Solar System with Augmented Reality": 1 + "Second Grade Science: Investigating the Solar System using Satellite Imagery": 1 + "Second Grade Science: Delving into the Solar System with Scale Models": 1 + "Second Grade Science: Studying the Solar System with Astrological Charts": 1 + "Second Grade Science: Exploring the Solar System and its Planets with Robotics": 1 + "Unveiling Arctic Tundra Ecosystems in 1st Grade Science: Building Ice Plant Terrarium with Microscopes": 1 + "1st Grade Science: Arctic Tundra Ecosystem Study using Soil pH Test Kits, Frost Indicators and Thermometers": 1 + "Arctic Tundra Ecosystems and Ice Plant Terrarium Creation in 1st Grade Science using Microscope Technology": 1 + "1st Grade Science: Studying Arctic Tundra Ecosystems through Ice Plant Terrarium Creation incorporating Rain Gauge": 1 + "1st Grade Science: Discovering Arctic Tundra Ecosystems using pH Soil Test Kits, Frost Indicators and Barometers": 1 + "Uncovering Arctic Tundra Ecosystems in 1st Grade Science: Ice Plant Terrarium Creation and Plant Identification using pH Soil Test Kits, Frost Indicators and Hydrometers": 1 + "1st Grade Science: Exploring Arctic Tundra Ecosystems with Ice Plant Terrarium Creation, Soil pH Test Kits, Frost Indicators and Weather Balloons": 1 + "First Grade Science: Arctic Tundra Ecosystems through Ice Plant Terrarium Creation and Plant Identification using pH Soil Test Kits, Frost Indicators and Weather Vane": 1 + "Exploring Arctic Tundra Ecosystems in 1st Grade Science: Ice Plant Terrarium Creation and Plant Identification using pH Soil Test Kits, Frost Indicators and Anemometers": 1 + "1st Grade Science: Unveiling Arctic Tundra Ecosystems through Ice Plant Terrarium Creation and Plant Identification using pH Soil Test Kits, Frost Indicators and Seismographs.": 1 + "6th Grade Social Studies: The Digital Revolution and Its Impact on Communication - Exploring the Role of Social Media": 1 + "6th Grade Social Studies: Exploring the Effects of the Digital Revolution on Education - The Advent of Online Learning Platforms": 1 + "6th Grade Social Studies: The Digital Revolution and the Shift in Business Dynamics - The E-commerce Era": 1 + "6th Grade Social Studies: The Digital Revolution and Its Influence on Healthcare - The Rise of Telemedicine": 1 + "6th Grade Social Studies: The Digital Revolution and Its Effects on Entertainment - The Streaming Service Phenomenon": 1 + "6th Grade Social Studies: The Impact of the Digital Revolution on Information Dissemination - The Power of Search Engines": 1 + "6th Grade Social Studies: The Digital Revolution and Its Effects on Global Connectivity - The Emergence of Video Conferencing": 1 + "6th Grade Social Studies: The Digital Revolution and Its Role in Modern Governance - The Concept of E-Government": 1 + "6th Grade Social Studies: The Digital Revolution and Its Effects on Personal Life - The Advent of Smart Home Technology": 1 + "6th Grade Social Studies: The Digital Revolution and Its Impact on Transportation - The Rise of Ride-Sharing Apps": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards using the Quizlet App": 1 + "1st Grade Language Arts: Integrating Google Slides for Beginning Phonics and Spelling with Digital Flashcards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards using Interactive Whiteboards": 1 + "1st Grade Language Arts: Utilizing iPads for Beginning Phonics and Spelling with Digital Flashcards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards through Zoom Virtual Classroom": 1 + "1st Grade Language Arts: Incorporating Augmented Reality in Beginning Phonics and Spelling with Digital Flashcards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards using Interactive eBooks": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards - A Focus on Blended Learning": 1 + "1st Grade Language Arts: Applying Microsoft Teams for Beginning Phonics and Spelling with Digital Flashcards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards using Smart Boards.": 1 + "6th Grade Physical Science: Exploring the Marvels of Electricity with Ohm’s Law": 1 + "6th Grade Physical Science: The Marvels of Electricity - Investigating Circuits ": 1 + "6th Grade Physical Science: The Marvels of Electricity - Understanding Voltages ": 1 + "6th Grade Physical Science: Discovering the Marvels of Electricity using Multimeters": 1 + "6th Grade Physical Science: The Marvels of Electricity - An Introduction to Conductors and Insulators": 1 + "6th Grade Physical Science: The Marvels of Electricity - Using Oscilloscopes to Measure Electric Waves": 1 + "6th Grade Physical Science: Mastering the Marvels of Electricity with Circuit Boards": 1 + "6th Grade Physical Science: The Marvels of Electricity - Exploring Electrostatics": 1 + "6th Grade Physical Science: The Marvels of Electricity - A Deep Dive into Amperes": 1 + "6th Grade Physical Science: The Marvels of Electricity - Building and Testing Capacitors": 1 + "10th Grade Chemistry: An Introduction to Atomic Structure": 1 + "10th Grade Chemistry: Exploring Chemical Reactions with Lab Experiments": 1 + "10th Grade Chemistry: The Study of Periodic Table": 1 + "10th Grade Chemistry: Basic Concepts of Matter with Microscopic Analysis": 1 + "10th Grade Chemistry: Hands-On Learning with Chemical Bonding ": 1 + "10th Grade Chemistry: Understanding Stoichiometry": 1 + "10th Grade Chemistry: Incorporating Technology in Mole Concept Study": 1 + "10th Grade Chemistry: Basics of Matter and Electron Configuration": 1 + "10th Grade Chemistry: Balancing Chemical Equations with Interactive Software": 1 + "10th Grade Chemistry: Experimenting with Acids and Bases in Lab Settings": 1 + "10th Grade Chemistry: Basic Concepts of Matter with Spectrophotometric Analysis.": 1 + "4th Grade Geography: Analyzing Continents through Satellite Images using Google Earth": 1 + "4th Grade Geography: Exploring Continents through Satellite Imagery with ArcGIS": 1 + "4th Grade Geography: Study of Continents through Satellite Images using GPS Technology": 1 + "4th Grade Geography: Analyzing Continents through Satellite Images using Geospatial Information System": 1 + "4th Grade Geography: Examining Continents through Satellite Photos with Landsat Imagery": 1 + "4th Grade Geography: Understanding Continents through Satellite Images using Remote Sensing Technology": 1 + "4th Grade Geography: Investigating Continents through Satellite Images with Drone Technology": 1 + "4th Grade Geography: Decoding Continents through Satellite Snapshots using Thermal Imaging": 1 + "4th Grade Geography: Inspecting Continents through Satellite Images with LIDAR Technology": 1 + "4th Grade Geography: Analyzing Continents through Satellite Images using Photogrammetry Concept.": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes with a Piano": 1 + "7th Grade Music: Decoding Bass Clef Notes on Guitar: A Focus on Reading Sheet Music": 1 + "7th Grade Music: Exploring Bass Clef Notes on Sheet Music using Music Theory": 1 + "7th Grade Music: Decoding Bass Clef Notes: Reading Sheet Music with an App": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes on a Cello": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes using Sibelius Software": 1 + "7th Grade Music: Understanding Bass Clef Notes through Sheet Music and the Trombone": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes with a Metronome": 1 + "7th Grade Music: Decoding Bass Clef Notes: Integrating a Digital Drum Kit and Reading Sheet Music ": 1 + "7th Grade Music: Reading Sheet Music: Decoding Bass Clef Notes with a Violin and Bow.": 1 + "1st Grade Art: Exploring Colors, Shapes, and Paint Brushes with Watercolor Techniques": 1 + "1st Grade Art: Introduction to Colors, Shapes, and Paint Brushes Using Acrylics": 1 + "1st Grade Art: Basic Geometry and Art: Colors, Shapes, and Paint Brushes": 1 + "1st Grade Art: The Use of Easel in Colors, Shapes, and Paint Brush Works": 1 + "1st Grade Art: Digital Art - Introduction to Colors, Shapes, and Paint Brushes": 1 + "1st Grade Art: Introduction to Colors, Shapes, and Palettes in Paint Brushes": 1 + "1st Grade Art: Emphasizing on Pastel Colors, Shapes, and Paint Brushes": 1 + "1st Grade Art: Mixed Media Approach: Colors, Shapes, and Paint Brushes": 1 + "1st Grade Art: Colors, Shapes, and Paint Brushes Using Charcoal Techniques": 1 + "1st Grade Art: Cubism - Introduction to Colors, Shapes, and Paint Brushes.": 1 + "8th Grade Physical Education: The Art of Rugby Scrumming: Techniques, Strategies, and Practice Drills": 1 + "Exploring Rugby: The Game, Its Tactics, and the Use of Video Analysis in 8th Grade Physical Education": 1 + "8th Grade Physical Education: Rugby Tactics and the Importance of Fitness Tracking": 1 + "Rugby in 8th Grade Physical Education: Mastering the Art of Passing with Dummy Training Tools": 1 + "8th Grade Physical Education: Rugby Game Tactics and the Role of GPS Performance Analysis": 1 + "Rugby: Understanding Game Tactics and Injury Prevention in 8th Grade Physical Education": 1 + "8th Grade Physical Education: The Importance of Tactical Positioning in Rugby Using Smart Cones": 1 + "Rugby: The Game, Its Tactics, and the Use of Wearable Technology in 8th Grade Physical Education": 1 + "8th Grade Physical Education: Exploring Rugby Tackling Techniques with Practice Dummies": 1 + "Rugby: The Game and Its Tactics - An In-depth Study of Set Plays in 8th Grade Physical Education.": 1 + "1st Grade Art: Exploring Geometric Shapes and Primary Colors through Crayon Art and Scissor Collage Techniques": 1 + "1st Grade Art: Using Pencil Shading Techniques in Shapes and Colors Study with Crayon Art and Collages": 1 + "1st Grade Art: Understanding Color Theory and Shapes through Crayon Art and Paper Mache Collage Techniques": 1 + "1st Grade Art: Investigating Shapes and Colors with Crayon Art and Collage Techniques using Glue Sticks": 1 + "1st Grade Art: Exploring Shapes and Colors with Crayon Art and Mixed Media Collage Techniques": 1 + "1st Grade Art: A Study of Shapes and Colors using Crayon Art and Origami Collage Techniques": 1 + "1st Grade Art: Discovering Shapes and Colors through Digital Crayon Art and Collage Techniques": 1 + "1st Grade Art: Utilizing Light and Shadow in Shapes and Colors with Crayon Art and Collage Techniques": 1 + "1st Grade Art: Investigating Shapes and Colors with Crayon Art and Collage Techniques using Recyclable Materials": 1 + "1st Grade Art: Exploring Shapes and Colors with Crayon Art and Collage Techniques through the Lens of Cubism.": 1 + "2nd Grade Language Arts: Adventures in Storytelling through Digital Narratives": 1 + "2nd Grade Language Arts: Exploring Storytelling with iPad Apps": 1 + "2nd Grade Language Arts: Adventures in Storytelling Utilizing Storyboard Techniques": 1 + "2nd Grade Language Arts: Adventures in Storytelling - An Introduction to PowerPoint Presentations": 1 + "2nd Grade Language Arts: Adventures in Storytelling with Comic Strip Creation": 1 + "2nd Grade Language Arts: Storytelling Adventures through Podcasting": 1 + "2nd Grade Language Arts: Adventures in Storytelling - Learning with Animation Tools": 1 + "2nd Grade Language Arts: Adventures in Storytelling - Exploring with Interactive Whiteboards": 1 + "2nd Grade Language Arts: Adventures in Storytelling - A Journey with Virtual Reality": 1 + "2nd Grade Language Arts: Adventures in Storytelling - Mastering Plot Diagrams.": 1 + "5th Grade Science: Exploring Forest Ecosystems through Drone Technology": 1 + "5th Grade Science: Examining Aquatic Habitats with Sonar Technology": 1 + "5th Grade Science: Analyzing Desert Ecosystems Using Satellite Imagery": 1 + "5th Grade Science: Investigating Rainforest Habitats with Infrared Sensing Technology": 1 + "5th Grade Science: Understanding Grassland Ecosystems through Lidar Technology": 1 + "5th Grade Science: Studying Polar Habitats Using Thermal Imaging Technology": 1 + "5th Grade Science: Observing Wetland Ecosystems through Radar Sensing Technology": 1 + "5th Grade Science: Exploring Mountain Habitats with Aerial Photography": 1 + "5th Grade Science: Analyzing Coastal Ecosystems Using Multispectral Imaging Technology": 1 + "5th Grade Science: Investigating Urban Habitats with Geospatial Technology": 1 + "9th Grade Social Studies: Exploring Inuit Culture Through the Lens of Augmented Reality Using Wikitude and Google Cardboard": 1 + "9th Grade Social Studies: Unveiling Arctic Shamanism Through Augmented Reality Using Wikitude and Oculus Rift": 1 + "9th Grade Social Studies: Understanding Arctic Wildlife Through Augmented Reality Using Wikitude and Microsoft HoloLens": 1 + "9th Grade Social Studies: Examining Arctic Climate Change Through the Lens of Augmented Reality Using Wikitude and Magic Leap One": 1 + "9th Grade Social Studies: Investigating Arctic Fisheries Through Augmented Reality Using Wikitude and Meta 2 Headset": 1 + "9th Grade Social Studies: Exploring Sami Reindeer Herding Through Augmented Reality Using Wikitude and HTC Vive": 1 + "9th Grade Social Studies: Unveiling Arctic Ice Sculptures Through Augmented Reality Using Wikitude and Vuzix Blade": 1 + "9th Grade Social Studies: Discovering Arctic Oil Drilling Through the Lens of Augmented Reality Using Wikitude and Sony SmartEyeglass": 1 + "9th Grade Social Studies: Investigating Arctic Polar Bear Migration Through Augmented Reality Using Wikitude and Epson Moverio BT-300": 1 + "9th Grade Social Studies: Understanding Arctic Aurora Borealis Through Augmented Reality Using Wikitude and Fove 0.": 1 + "Fifth Grade Mathematics: Mastering Fractions with Interactive Manipulatives": 1 + "Fifth Grade Mathematics: Exploring Fractions with Lego Equivalence Sets": 1 + "Fifth Grade Mathematics: Understanding Fractions with Digital Interactive Tools": 1 + "Fifth Grade Mathematics: Grasping Fractions using Area Models": 1 + "Fifth Grade Mathematics: Learning Fractions with Fraction Strips": 1 + "Fifth Grade Mathematics: Making Sense of Fractions through Number Lines": 1 + "Fifth Grade Mathematics: Discovering Fraction Concepts with Fraction Circles": 1 + "Fifth Grade Mathematics: Fraction Comprehension through Bar Models": 1 + "Fifth Grade Mathematics: Understanding Fractions with Tangram Puzzles": 1 + "Fifth Grade Mathematics: Fraction Equivalence Using Cuisenaire Rods": 1 + "Rugby in 8th Grade Physical Education: Mastering the Art of Passing with The Gilbert Training Ball": 1 + "Rugby in 8th Grade Physical Education: Mastery of Pass Techniques using the Pass Developer Tool": 1 + "Using the Rhino Vortex Elite Ball in 8th Grade Rugby: Perfecting Passing Skills": 1 + "8th Grade Rugby: Enhancing Passing Proficiency with the Triangular Passing Training Aid": 1 + "Using the Pass Master Rugby Training Aid in 8th Grade Rugby: Perfecting Passing Skills": 1 + "Rugby in 8th Grade: The Art of Passing with the Precision Training Rugby Ball": 1 + "Rugby in 8th Grade PE: Mastering Passing Techniques with the Rhino Cyclone Training Ball": 1 + "Utilizing the PassGrip Rugby Training Ball in 8th Grade Rugby to Enhance Passing Skills": 1 + "Rugby in 8th Grade Physical Education: Mastering the Spiral Pass with the Fault Finder Training Ball ": 1 + "8th Grade PE Rugby: Improving Passing Skills with the PassMaster Rugby Ball.": 1 + "2nd Grade Music: Exploring Rhythm Foundations with Percussion Instruments through Music Theory on Soundtrap": 1 + "2nd Grade Music: Delving into Rhythm Foundations with MIDI Controllers via Music Theory on Soundtrap": 1 + "2nd Grade Music: Unraveling Rhythm Foundations using Digital Audio Workstations in Music Theory on Soundtrap": 1 + "2nd Grade Music: Understanding Rhythm Foundations through Loop Stations with Music Theory on Soundtrap": 1 + "2nd Grade Music: Discovering Rhythm Foundations Utilizing Metronomes in Music Theory on Soundtrap": 1 + "2nd Grade Music: Learning Rhythm Foundations with Electric Keyboards and Music Theory on Soundtrap": 1 + "2nd Grade Music: Mastering Rhythm Foundations with Beat Sequencers through Music Theory on Soundtrap": 1 + "2nd Grade Music: Probing Rhythm Foundations using Music Notation Software in Music Theory on Soundtrap": 1 + "2nd Grade Music: Exploring Rhythm Foundations via Music Theory with Synthesizers on Soundtrap": 1 + "2nd Grade Music: Investigating Rhythm Foundations using Audio Mixers in Music Theory on Soundtrap": 1 + "Exploring Bodyweight Training in 9th Grade Health and Fitness with the Use of Resistance Bands": 1 + "An In-Depth Study of Calisthenics and Heart Rate Monitors in 9th Grade Physical Education": 1 + "Leveraging Fitness Apps to Understand Calisthenics in 9th Grade Health and Fitness": 1 + "Enhancing 9th Grade Physical Education through Calisthenics and Plyometric Boxes": 1 + "Understanding Calisthenics Technique in 9th Grade Health and Fitness using Motion Capture Technology": 1 + "Fostering Fitness Awareness through Calisthenics and Wearable Technology in 9th Grade Physical Education": 1 + "Investigating Calisthenics and its Impact on Metabolism in 9th Grade Health and Fitness": 1 + "Realizing Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Exploring the Integration of Calisthenics and VR Technology in 9th Grade Health and Fitness": 1 + "Understanding Calisthenics and Muscle Activation with EMG Sensors in 9th Grade Physical Education.": 1 + "6th Grade Physical Education and Team Sports: Mastery of Tennis Techniques Using the Topspin Forehand": 1 + "6th Grade Physical Education and Team Sports: Enhancing Tennis Skills Through Video Analysis Technology": 1 + "6th Grade Physical Education and Team Sports: Mastering Tennis Through Biomechanics Concepts": 1 + "6th Grade Physical Education and Team Sports: Proficiency in Tennis Techniques Using a Racket Sensor": 1 + "6th Grade Physical Education and Team Sports: Developing Tennis Skills with The ServeMaster Tool": 1 + "6th Grade Physical Education and Team Sports: Tennis Techniques Mastery: Focused on The Backhand Slice": 1 + "6th Grade Physical Education and Team Sports: Tennis Mastery Through Advanced Footwork Drills": 1 + "6th Grade Physical Education and Team Sports: Utilizing Dartfish Software for Tennis Technique Improvement": 1 + "6th Grade Physical Education and Team Sports: Understanding Tennis Tactics Using OnCourt Player Tracker": 1 + "6th Grade Physical Education and Team Sports: Mastering Tennis Techniques with the SwingVision App": 1 + "Interactive 4th Grade Course: Understanding Fractions and Decimal Conversion through Smartboard and Abacus Techniques ": 1 + "Interactive 4th Grade Course: Mastering Fractions and Decimal Conversion Using Smartboard Technology and Flashcards": 1 + "Interactive 4th Grade Course: Fractions and Decimal Conversion with Smartboard Technology and Virtual Manipulatives ": 1 + "Interactive 4th Grade Course: Exploring Fractions and Decimal Conversion through Smartboard Technology and Math Software": 1 + "Interactive 4th Grade Course: Fractions and Decimal Conversion via Smartboard Technology and iPad Apps": 1 + "Interactive 4th Grade Course: Solving Fractions and Decimal Conversion Challenges Using Smartboard Technology and Interactive Whiteboards ": 1 + "Interactive 4th Grade Course: Engaging in Fractions and Decimal Conversion with Smartboard Technology and Online Math Games": 1 + "Interactive 4th Grade Course: Excelling in Fractions and Decimal Conversion Using Smartboard Technology and Multimedia Presentations": 1 + "Interactive 4th Grade Course: Applying Fractions and Decimal Conversion Skills with Smartboard Technology and Math Puzzles": 1 + "Interactive 4th Grade Course: Learning Fractions and Decimal Conversion through Smartboard Technology and E-Learning Platforms": 1 + "5th Grade Physical Education: Incorporating Fitbit’s Heart Rate Monitor in Team Sports and Cooperation ": 1 + "5th Grade Physical Education: Utilizing Garmin’s GPS Function in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Integrating Apple Watch’s Step Counter in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Implementing Polar’s Sleep Tracking in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Applying Samsung Gear’s Calorie Counter in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Adapting Xiaomi Mi Band’s Distance Tracker in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Integrating WHOOP Strap’s Recovery Measurement in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Employing Garmin’s Stress Tracking in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Utilizing Fitbit’s Active Minutes Feature in Team Sports and Cooperation": 1 + "5th Grade Physical Education: Applying Suunto’s Training Load Pro in Team Sports and Cooperation": 1 + "6th Grade Language Arts: Exploring Shakespearean Sonnets through Augmented Reality Technology": 1 + "6th Grade Language Arts: Understanding Metaphors in Classic Poetry using VR Goggles": 1 + "6th Grade Language Arts: Interactive Study of Romantic Poetry with Augmented Reality Apps": 1 + "6th Grade Language Arts: Augmented Reality-enhanced Exploration of Similes in Poetry": 1 + "6th Grade Language Arts: Introduction to Haikus and Metaphors using AR Technology": 1 + "6th Grade Language Arts: Virtual Reality Exploration of Metaphors in Greek Poetry": 1 + "6th Grade Language Arts: Learning Metaphorical Expressions in Poetry with AR Technology": 1 + "6th Grade Language Arts: Interactive Journey through Renaissance Poetry using Augmented Reality": 1 + "6th Grade Language Arts: Augmented Reality-assisted Understanding of Metaphors in Ballads": 1 + "6th Grade Language Arts: Delving into Sonnets and Similes with Microsoft HoloLens": 1 + "Interactive Learning: Teaching the Indus Valley Civilization in 6th Grade Social Studies through Oculus Rift VR and Haptic Gloves Technology": 1 + "Advanced Instruction: Utilizing Unity Engine in Teaching the Indus Valley Civilization in 6th Grade Social Studies through Virtual Reality and Haptic Feedback": 1 + "Innovative Education: Engaging 6th Grade Students in the Indus Valley Civilization with HTC Vive and Haptic Feedback Technology": 1 + "Experiential Learning: Empowering 6th Grade Social Studies with PlayStation VR and Haptic Feedback in the Study of Indus Valley Civilization": 1 + "Immersive Learning: Incorporating Google Cardboard VR and Haptic Feedback in Teaching the Indus Valley Civilization to 6th Graders": 1 + "Tech-Enhanced Learning: Using Samsung Gear VR and Haptic Feedback for 6th Grade Indus Valley Civilization Lessons": 1 + "Interactive Education: Teaching the Indus Valley Civilization in 6th Grade Social Studies through Microsoft HoloLens and Haptic Feedback": 1 + "Virtual Teaching: Implementing Leap Motion Controllers in 6th Grade Social Studies for Indus Valley Civilization Education": 1 + "Modern Learning: Integrating the Razer Hydra for VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Futuristic Teaching: Application of Magic Leap One in 6th Grade Social Studies for Indus Valley Civilization Through VR and Haptic Feedback.": 1 + "9th Grade History: The Impact of Gutenberg’s Printing Press and Telegraph Communication on the American Revolution Era": 1 + "9th Grade History: The Influence of Gutenberg’s Printing Press and the Spinning Jenny on the American Revolution Era": 1 + "9th Grade History: The Role of Gutenberg’s Printing Press and Steam Power during the American Revolution Era": 1 + "9th Grade History: The Effect of Gutenberg’s Printing Press and the Cotton Gin on the American Revolution Era": 1 + "9th Grade History: Gutenberg’s Printing Press and its Relation to Gunpowder Usage in the American Revolution Era": 1 + "9th Grade History: The Confluence of Gutenberg’s Printing Press and the Sextant in the American Revolution Era": 1 + "9th Grade History: Gutenberg’s Printing Press and the Impact of the Telescope on the American Revolution Era": 1 + "9th Grade History: The Interplay between Gutenberg’s Printing Press and the Concept of Federalism in the American Revolution Era": 1 + "9th Grade History: Exploring the Impact of Gutenberg’s Printing Press and the Enlightenment Philosophy on the American Revolution Era": 1 + "9th Grade History: Gutenberg’s Printing Press and its Connection to the Concept of Manifest Destiny in the American Revolution Era": 1 + "8th Grade Music: Utilizing Ableton Live to Study Classical Music Evolution through MIDI Orchestrations": 1 + "8th Grade Music: Exploring Classical Music Evolution through Digital Audio Workstation (DAW) in Orchestra Conducting": 1 + "8th Grade Music: Leveraging Pro Tools for MIDI Integration in Classical Music Evolution Studies": 1 + "8th Grade Music: Incorporating Sibelius Software in the Study of Classical Music Evolution through MIDI Technology": 1 + "8th Grade Music: Applying MIDI Technology in the Study of Classical Music Evolution using Cubase for Orchestra Conducting": 1 + "8th Grade Music: Understanding Classical Music Evolution through MIDI Sequencing in Orchestra Conducting": 1 + "8th Grade Music: Fruity Loops Studio Integration in the Study of Classical Music Evolution via MIDI Technology": 1 + "8th Grade Music: Employing MIDI Controllers in the Study of Classical Music Evolution through Conducting": 1 + "8th Grade Music: Incorporating MIDI Mapping in the Evolutionary Study of Classical Music through Orchestra Conducting": 1 + "8th Grade Music: Using Logic Pro X for MIDI Integration in the Study of Classical Music Evolution.": 1 + "6th Grade Music: Comprehensive Analysis of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano and Ableton Live Music Software": 1 + "6th Grade Music: Detailed Examination of Chopin’s Revolutionary Etudes utilizing Digital Sheet Music, Roland FP-30 Digital Piano, and MIDI Integration": 1 + "6th Grade Music: Extensive Study of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano and Sibelius Notation Software": 1 + "6th Grade Music: In-depth Exploration of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano and Audacity Audio Editor": 1 + "6th Grade Music: In-depth Study of Chopin’s Revolutionary Etudes through Digital Sheet Music, Roland FP-30 Digital Piano, and the Concept of Musical Phrasing": 1 + "6th Grade Music: Profound Analysis of Chopin’s Revolutionary Etudes utilizing Digital Sheet Music, Roland FP-30 Digital Piano and Garageband DAW Software": 1 + "6th Grade Music: Thorough Exploration of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano and the Theory of Harmonic Progression": 1 + "6th Grade Music: Rigorous Study of Chopin’s Revolutionary Etudes via Digital Sheet Music, Roland FP-30 Digital Piano and Pro Tools Recording Software": 1 + "6th Grade Music: Detailed Study of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano and the Concept of Melodic Contour": 1 + "6th Grade Music: Comprehensive Dissection of Chopin’s Revolutionary Etudes utilizing Digital Sheet Music, Roland FP-30 Digital Piano and Logic Pro X Music Production Software": 1 + "3rd Grade’s Guide to the Solar System: Exploring with Google Earth Satellite Images": 1 + "3rd Grade’s Comprehensive Guide to the Solar System: Using NASA’s Hubble Telescope Imagery": 1 + "3rd Grade’s Deep Dive into the Solar System: Utilizing Satellite Images and 3D Printing Models": 1 + "3rd Grade’s Exploration of the Solar System: Leveraging GIS Technology with Satellite Images": 1 + "3rd Grade’s Journey through the Solar System: Interpreting Satellite Images with Augmented Reality": 1 + "3rd Grade’s Guide to the Solar System: Understanding Cosmic Bodies through Infrared Imaging": 1 + "3rd Grade’s Visual Guide to the Solar System: Utilizing Satellite Images and Virtual Reality Tours": 1 + "3rd Grade’s Interactive Guide to the Solar System: Using Satellite Images and Mobile Apps": 1 + "3rd Grade’s Guide to the Solar System: Exploring Planets through Satellite Images and Telescopic Observations": 1 + "3rd Grade’s Guide to the Solar System: Utilizing Satellite Images and Spectroscopy for Planetary Analysis.": 1 + "2nd Grade English: Enhancing Sentence Structure Skills with Adverb Placement using Google Classroom Online Quizzes": 1 + "Developing Sentence Structure Skills with Adverb Placement in 2nd Grade English using Kahoot Online Quizzes": 1 + "2nd Grade English: Building Sentence Structure Skills through Adverb Placement with Quizlet Online Quizzes": 1 + "Incorporating Adverb Placement into Sentence Structure Skills: A 2nd Grade English Course using Edmodo Online Quizzes": 1 + "2nd Grade English: Advancing Sentence Structure Skills through Adverb Placement using Nearpod Online Quizzes": 1 + "2nd Grade English: Fostering Sentence Structure Skills with Adverb Placement using Flipgrid Online Quizzes": 1 + "Interactive 2nd Grade English: Adverb Placement in Sentence Structure Skills using Socrative Online Quizzes": 1 + "2nd Grade English: Mastering Sentence Structure Skills with Adverb Placement using Seesaw Online Quizzes": 1 + "2nd Grade English: Cultivating Sentence Structure Skills with Adverb Placement using ClassDojo Online Quizzes": 1 + "2nd Grade English: Improving Sentence Structure Skills with Adverb Placement using Prodigy Online Quizzes.": 1 + "7th Grade Science: Understanding Climate Change through Satellite Imagery and Its 10 Potential Solutions": 1 + "7th Grade Science: Studying Climate Change with Carbon Sequestration: 10 Mitigation Techniques": 1 + "7th Grade Science: Exploring Climate Change using Climate Models and 10 Sustainable Solutions": 1 + "7th Grade Science: Climate Change and Its Impacts: A Focus on Renewable Energy and 10 Solutions": 1 + "7th Grade Science: Climate Change Analysis with GIS Technology and 10 Adaptation Strategies": 1 + "7th Grade Science: Climate Change and Its Impacts: Exploring Bioengineering Solutions": 1 + "7th Grade Science: Investigating Climate Change through Thermodynamics and Its 10 Possible Solutions": 1 + "7th Grade Science: Climate Change and Its Effects: Insights from Oceanography and 10 Remedial Measures": 1 + "7th Grade Science: Climate Change Assessment with Remote Sensing and 10 Intervention Strategies": 1 + "7th Grade Science: Climate Change and Its Impact: A Deep Dive into Glaciology and 10 Countermeasures.": 1 + "2nd Grade Mathematics: Discovering Fractions with Google’s Online Fraction Calculator": 1 + "2nd Grade Mathematics: Mastering Fractions using Microsoft Math Solver": 1 + "2nd Grade Mathematics: Fun with Fractions Exploring Number Line Concept": 1 + "2nd Grade Mathematics: Fraction Adventures with The Math Learning Center’s Fraction Calculator": 1 + "2nd Grade Mathematics: Understanding Fractions using Fraction Circles Technology": 1 + "2nd Grade Mathematics: Fraction Fun with Online Fraction Bars ": 1 + "2nd Grade Mathematics: Exploring Fractions with Online Fraction Tiles ": 1 + "2nd Grade Mathematics: Fraction Fluency using Virtual Manipulatives Technology": 1 + "2nd Grade Mathematics: Learning Fractions through Fraction Wall Concept": 1 + "2nd Grade Mathematics: Fraction Mastery with Wolfram Alpha’s Fraction Calculator.": 1 + "11th Grade Music: The Evolution of the Electric Guitar in Jazz History": 1 + "11th Grade Music: The Impact of Amplifiers on Jazz Music in the 20th Century": 1 + "11th Grade Music: The Synthesizer’s Role in Shaping Jazz History": 1 + "11th Grade Music: The Rise of Electric Bass in Jazz Music": 1 + "11th Grade Music: The Use of Electronic Effects in Jazz History": 1 + "11th Grade Music: The Introduction of Electric Piano in Jazz Evolution": 1 + "11th Grade Music: The Influence of Electric Instruments on Bebop Jazz": 1 + "11th Grade Music: The Emergence of the Electric Organ in Jazz Music": 1 + "11th Grade Music: The Adoption of Electronic Drums in Jazz Progression": 1 + "11th Grade Music: The Impact of MIDI Technology on Jazz Music’s Evolution": 1 + "9th Grade Music: Mastering Pizzicato Technique on Violin with the Use of Rosin and Violin Bow": 1 + "Exploring Pizzicato: The Importance of Rosin Application on Violin Strings in 9th Grade Music": 1 + "9th Grade Music: The Art of Pizzicato - Understanding the Role of Rosin and Finger Positioning on Violin": 1 + "Symphony of Sounds: The Science of Vibrations, Pizzicato, and the use of Rosin in 9th Grade Violin Music": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato, Rosin Usage, and the Impact of Humidifiers on Violin Tone": 1 + "9th Grade Music: An In-depth Study of Pizzicato on Violin, Rosin Utilization, and Bow Stroke Techniques": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato, the Role of Rosin, and the Influence of Vibrato on Violin": 1 + "The Art of Pizzicato: Rosin Application, Violin Bow Control and the Use of Metronomes in 9th Grade Music": 1 + "Symphony of Sounds: The Science of Pizzicato and Rosin’s Role in Violin Playing with Emphasis on String Tuning in 9th Grade Music": 1 + "9th Grade Music: Symphony of Sounds - The Art of Pizzicato, the Role of Rosin, and the Importance of Bowing Speed on Violin.": 1 + "2nd Grade Mathematics: Exploring Basic Shapes with Tangrams": 1 + "2nd Grade Mathematics: Understanding Basic Shapes through Geoboards": 1 + "2nd Grade Mathematics: Learning Basic Shapes with Pattern Blocks": 1 + "2nd Grade Mathematics: Understanding Basic Shapes via Virtual Manipulatives": 1 + "2nd Grade Mathematics: Introducing Basic Shapes with Spatial-Temporal Math Technology": 1 + "2nd Grade Mathematics: Basic Shapes Mastery using Interactive Whiteboards": 1 + "2nd Grade Mathematics: Getting to Know Basic Shapes with Geometric Constructions": 1 + "2nd Grade Mathematics: Basic Shapes Exploration with Smart Board Technology": 1 + "2nd Grade Mathematics: Understanding Basic Shapes using Augmented Reality": 1 + "2nd Grade Mathematics: Teaching Basic Shapes with Educational Robotics": 1 + "Ancient Chinese Civilization for 6th Grade History: The Role of Iron Drills in the Construction of the Great Wall.": 1 + "Ancient Chinese Civilization: The Impact of Bronze Age Technology in Building the Great Wall for 6th Grade History.": 1 + "Ancient Chinese Civilization for 6th Grade History: The Contribution of Hardstone Carving in the Construction of the Great Wall.": 1 + "Ancient Chinese Civilization: The Significance of Early Dynastic Stonemasonry in Building the Great Wall for 6th Grade History.": 1 + "Ancient Chinese Civilization for 6th Grade History: The Role of Jade Drilling Techniques in the Construction of the Great Wall.": 1 + "Ancient Chinese Civilization: The Influence of Flint-Knapping Techniques in the Construction of the Great Wall for 6th Grade History.": 1 + "6th Grade History: Ancient Chinese Civilization and the Use of Chisel Techniques in the Construction of the Great Wall.": 1 + "Ancient Chinese Civilization for 6th Grade History: Understanding the Role of Bronze Chisels in Building the Great Wall.": 1 + "Ancient Chinese Civilization: The Role of Iron Wedges in the Construction of the Great Wall for 6th Grade History.": 1 + "6th Grade History: Ancient Chinese Civilization and the Impact of Diamond Drilling Techniques in Constructing the Great Wall.": 1 + "1st Grade Social Studies: Understanding Community Interactions Through Maps": 1 + "1st Grade Social Studies: Exploring Community with Digital Technology": 1 + "1st Grade Social Studies: Community Interactions and the Role of the Internet": 1 + "1st Grade Social Studies: The Concept of Democracy in Community Interactions": 1 + "1st Grade Social Studies: Learning Community Interactions through Virtual Field Trips": 1 + "1st Grade Social Studies: Analyzing Community Interactions with Graphs": 1 + "1st Grade Social Studies: The Power of Communication in Community Interactions": 1 + "1st Grade Social Studies: The Influence of Technology in Our Community": 1 + "1st Grade Social Studies: Utilizing Multimedia Tools in Understanding Community": 1 + "1st Grade Social Studies: The Role of Digital Storytelling in Community Interactions": 1 + "2nd Grade Music: Exploring Rhythm through Drums in Percussion Instruments": 1 + "2nd Grade Music: Discovering Rhythm through Xylophones in Percussion Instruments": 1 + "2nd Grade Music: Understanding Rhythm with Maracas in Percussion Instruments": 1 + "2nd Grade Music: Learning Rhythm through Tambourines in Percussion Instruments": 1 + "2nd Grade Music: Navigating Rhythm with Bongos in Percussion Instruments": 1 + "2nd Grade Music: Exploring Rhythm through Percussion Instruments using Beat Making Software": 1 + "2nd Grade Music: Unearthing Rhythm with Congas in Percussion Instruments": 1 + "2nd Grade Music: Grasping Rhythm through Timpani in Percussion Instruments": 1 + "2nd Grade Music: Investigating Rhythm with Djembe in Percussion Instruments": 1 + "2nd Grade Music: Exploring Rhythm through Percussion Instruments using Rhythm Patterns.": 1 + "5th Grade History: Exploring Ancient Egypt through the Lens of Bronze Metallurgy and Hieroglyphics": 1 + "5th Grade History: The Impact of Bronze Metallurgy and Chariots on Ancient Civilizations": 1 + "5th Grade History: Unveiling Ancient Greek Civilization with Bronze Metallurgy and Democracy": 1 + "5th Grade History: Bronze Metallurgy and the Pyramids: Discovering Ancient Egyptian Civilization": 1 + "5th Grade History: Bronze Metallurgy and Pottery in Ancient Mesopotamia": 1 + "5th Grade History: Unraveling Ancient Roman Civilization with Bronze Metallurgy and Aqueducts": 1 + "5th Grade History: Understanding the Indus Valley Civilization through Bronze Metallurgy and Urban Planning": 1 + "5th Grade History: Unearthing Ancient China with Bronze Metallurgy and the Great Wall": 1 + "5th Grade History: Bronze Metallurgy and the Phoenician Alphabet: A Journey into Ancient Civilizations": 1 + "5th Grade History: Tracing Ancient Aztec Civilization through Bronze Metallurgy and Sun Calendars": 1 + "Kindergarten Health: Understanding Nutrition through Interactive Food Pyramid ": 1 + "Kindergarten Health: Exploring Hygiene with Handwashing Demonstrations": 1 + "Kindergarten Health: Utilizing iPads for Interactive Nutrition Lessons ": 1 + "Kindergarten Health: Learning About Dental Hygiene with Tooth Models": 1 + "Kindergarten Health: Discovering Nutrition using Touchscreen Monitors": 1 + "Kindergarten Health: Implementing SmartBoard Technology for Hygiene Education": 1 + "Kindergarten Health: Learning About Nutrition with 3D Food Models ": 1 + "Kindergarten Health: Hands-on Hygiene: Using Glo Germ Kits for Demonstration": 1 + "Kindergarten Health: Nutrition Education with Virtual Reality Technology ": 1 + "Kindergarten Health: Hygiene Lessons using UV Light Technology for Germ Detection": 1 + "8th Grade Music: Understanding the Piano through the Fundamentals of Musical Notation": 1 + "8th Grade Music: Studying the Guitar with Musical Notation Basics": 1 + "Digital Techniques in 8th Grade Music: Fundamentals of Musical Notation": 1 + "8th Grade Music: Comprehending the Violin through the Fundamentals of Musical Notation": 1 + "8th Grade Music: Exploring Musical Software and Notation Basics": 1 + "8th Grade Music: Fundamentals of Musical Notation with a Focus on Scales": 1 + "8th Grade Music: Harmonizing with Fundamentals of Musical Notation": 1 + "8th Grade Music: An Introduction to Digital Audio Workstations and Musical Notation": 1 + "8th Grade Music: The Drum Set and the Fundamentals of Musical Notation": 1 + "8th Grade Music: Fundamentals of Musical Notation and the Art of Composing.": 1 + "7th Grade Music: Mastering the Art of Reading Sheet Music with Yamaha Flutes and Finale Notation Software": 1 + "7th Grade Music: Understanding Key Signatures using the Flute and Finale Notation Software": 1 + "7th Grade Music: Perfecting Rhythm with a Metronome, Flute, and Finale Notation Software": 1 + "7th Grade Music: Mastering the Art of Interpretation of Dynamics using the Flute and Finale Notation Software": 1 + "7th Grade Music: Enhancing Sight-Reading Skills using the Flute and Finale Notation Software": 1 + "7th Grade Music: Exploring Tempo Indications with the Flute and Finale Notation Software": 1 + "7th Grade Music: Mastering the Art of Reading Sheet Music using the Flute, Finale Notation Software, and Music Theory Apps": 1 + "7th Grade Music: Understanding Time Signatures using the Flute and Finale Notation Software": 1 + "7th Grade Music: Mastering the Art of Reading Sheet Music using the Flute, Finale Notation Software, and an Interactive Whiteboard": 1 + "7th Grade Music: Exploring Musical Phrasing and Expression with the Flute and Finale Notation Software.": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation and Layering Sounds Using Pro Tools Software and MIDI Keyboard.": 1 + "4th Grade Music: Exploring Handel’s Suites with Piano Interpretation, Pro Tools Software, and Music Notation Reading.": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation and Multi-Track Recording with Pro Tools Software.": 1 + "4th Grade Music: Understanding Handel’s Suites Through Piano Interpretation and Sound Mixing Using Pro Tools Software.": 1 + "4th Grade Music: Mastering Handel’s Suites Through Piano Interpretation and Audio Effects Using Pro Tools Software.": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation, Pro Tools Software, and Sound Engineering Basics.": 1 + "4th Grade Music: Exploring Handel’s Suites with Piano Interpretation, Sound Layering Using Pro Tools Software, and Beat Making.": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation and Music Production Using Pro Tools Software.": 1 + "4th Grade Music: Discovering Handel’s Suites Through Piano Interpretation and Audio Mastering Using Pro Tools Software.": 1 + "4th Grade Music: Unlocking Handel’s Suites Through Piano Interpretation, Pro Tools Software, and Audio Compression Techniques.": 1 + "11th Grade History: The Role of Open-Hearth Furnace in the Bessemer Process Impact on Steel Production during Industrial Age - Solution 1: Solvent Extraction": 1 + "11th Grade History: The Impact of Bessemer Process and the Crucible Technique on Steel Production during Industrial Age - Solution 2: Heap Leaching": 1 + "11th Grade History: Analysis of Bessemer Process and the Use of Railways on Steel Production during Industrial Age - Solution 3: In-Situ Leaching": 1 + "11th Grade History: The Influence of Bessemer Process and the Introduction of Steam Engines on Steel Production during Industrial Age - Solution 4: Carbon In Pulp": 1 + "11th Grade History: The Bessemer Process and the Significance of Telegraphs on Steel Production during Industrial Age - Solution 5: Agitation Leaching": 1 + "11th Grade History: The Effect of the Bessemer Process and the Cotton Gin on Steel Production during Industrial Age - Solution 6: Bioleaching": 1 + "11th Grade History: The Bessemer Process, Interchangeable Parts and their Impact on Steel Production during Industrial Age - Solution 7: Resin In Pulp": 1 + "11th Grade History: The Influence of the Bessemer Process and the Spinning Jenny on Steel Production during Industrial Age - Solution 8: Vat Leaching": 1 + "11th Grade History: The Influence of Bessemer Process and the Power Loom on Steel Production during Industrial Age - Solution 9: Pressure Leaching": 1 + "11th Grade History: The Impact of the Bessemer Process and the Water Frame on Steel Production during Industrial Age - Solution 10: Tank Leaching": 1 + "6th Grade Music: Mastering Sheet Music with Audacity and Midi Keyboard: A Comprehensive Guide": 1 + "6th Grade Music: Learning Sheet Music with Audacity and Music XML: A Detailed Instruction": 1 + "6th Grade Music: A Practical Guide to Reading Sheet Music Using Audacity and Virtual Piano": 1 + "6th Grade Music: Using Audacity and GarageBand for Easy Sheet Music Learning ": 1 + "6th Grade Music: A Comprehensive Guide to Sheet Music and Audacity with Focus on Piano Roll Editor": 1 + "6th Grade Music: Exploring Sheet Music with Audacity and Soundtrap: An In-depth Study": 1 + "6th Grade Music: Learning Sheet Music with Audacity and Metronome: A Practical Approach ": 1 + "6th Grade Music: Understanding Sheet Music Using Audacity and Sibelius: The Ultimate Guide": 1 + "6th Grade Music: Demystifying Sheet Music with Audacity and the VU Meter: A Comprehensive Guide": 1 + "6th Grade Music: Learning Sheet Music with Audacity and Note Blocks: A Comprehensive Guide": 1 + "Fifth Grade Science: Introduction to Ecology Through Microscope Study Exploring Chromatography with Handheld Digital Microscopes ": 1 + "Fifth Grade Science: Exploring Ecosystems with Microscope Study and Chromatography Using Compound Light Microscopes": 1 + "Fifth Grade Science: Introduction to Ecology Through Stereoscopic Microscope Analysis and Chromatography Study": 1 + "Fifth Grade Science: Exploring Chromatography and Microbial Diversity Through Dissection Microscope Study in Ecology": 1 + "Fifth Grade Science: Delving into Ecology Through Microscope Study and Chromatography: A Focus on Cell Theory": 1 + "Fifth Grade Science: Exploring Ecology Through Microscope Study and Chromatography with a Glimpse into Photosynthesis": 1 + "Fifth Grade Science: Introduction to Ecology through DNA Analysis Using Microscope Study and Chromatography": 1 + "Fifth Grade Science: Understanding Ecosystems - An In-depth Study of Chromatography and Microscope Analysis with Gel Electrophoresis": 1 + "Fifth Grade Science: Exploration of Ecology Through Microscope Study and Chromatography: A Glimpse into Mitosis": 1 + "Fifth Grade Science: The World of Ecology Explored Through Microscope Study and Chromatography, with a Focus on the Carbon Cycle": 1 + "Second Grade Language Arts: Exploring Folktales with Animation Software - A Multimedia Approach": 1 + "Journey through Folktales: An Interactive E-Book Experience in Second Grade Language Arts": 1 + "Second Grade Language Arts: Discovering Folktales via Virtual Reality - A Multimedia Approach": 1 + "Second Grade Language Arts: An Adventure through Folktales using Digital Storytelling Tools": 1 + "Language Arts for Second Graders: Folktales Unraveled through Podcasting - A Multimedia Approach": 1 + "Second Grade Language Arts: Decoding Folktales with Coding - A Multimedia Approach": 1 + "Second Grade Language Arts: Journey through Folktales with Augmented Reality - A Multimedia Approach": 1 + "Journey through Folktales: A Second Grade Language Arts Course Utilizing Video Editing Software": 1 + "Second Grade Language Arts: Folktales Explored through Game-Based Learning - A Multimedia Approach": 1 + "Second Grade Language Arts: Unfolding Folktales through 3D Printing - A Multimedia Approach": 1 + "5th Grade Science: Exploring Ecosystems and Habitats with Drone Technology": 1 + "5th Grade Science: Understanding Ecosystems and Habitats Through Satellite Imagery": 1 + "5th Grade Science: Examining Ecosystems and Habitats Using Infrared Thermal Imaging Technology": 1 + "5th Grade Science: Analyzing Ecosystems and Habitats Utilizing GIS (Geographic Information System)": 1 + "5th Grade Science: Deciphering Ecosystems and Habitats Using LIDAR Technology": 1 + "5th Grade Science: Investigating Ecosystems and Habitats Through Soil Analysis Techniques": 1 + "5th Grade Science: Ecosystems and Habitats Exploration With GPS Mapping": 1 + "5th Grade Science: The Role of Telemetry in Studying Ecosystems and Habitats": 1 + "5th Grade Science: Ecosystems and Habitats Examination Using Hyperspectral Imaging": 1 + "5th Grade Science: Understanding Ecosystems and Habitats Through 3D Modeling Technology": 1 + "8th Grade Science: Exploring Mitosis and Meiosis in Cell Division using Microscopes": 1 + "8th Grade Science: A Detailed Study of Cell Division Via DNA Replication in Introductory Biology": 1 + "8th Grade Science: Understanding Chromosomes in Cell Division Using Gel Electrophoresis": 1 + "8th Grade Science: Introduction to Biology - Observing Cell Cycles via Microscopic Imaging": 1 + "8th Grade Science: Exploring the Role of Centrioles in Cell Division in Introductory Biology": 1 + "8th Grade Science: Investigating Cell Division through the Lens of a Microscope in Introductory Biology": 1 + "8th Grade Science: The Impact of Genetic Variation in Cell Division - An Introduction to Biology": 1 + "8th Grade Science: Understanding Cell Division through the Study of Mitotic Spindles in Introductory Biology": 1 + "8th Grade Science: Diving Deep into DNA and Chromosome Behavior During Cell Division in Introductory Biology": 1 + "8th Grade Science: A Closer Look at Cell Division: The Role of the Nucleus in Biology Introduction": 1 + "2nd Grade Social Studies: Understanding the Role of Stethoscopes in Our Community": 1 + "2nd Grade Social Studies: Exploring the Importance of MRI Machines in Our Community": 1 + "2nd Grade Social Studies: The Impact of X-Ray Technology in Our Community": 1 + "2nd Grade Social Studies: Unfolding the Role of Defibrillators in Our Community": 1 + "2nd Grade Social Studies: The Influence of Ultrasound Machines in Our Community": 1 + "2nd Grade Social Studies: Exploring the Role of Surgical Robots in Our Community": 1 + "2nd Grade Social Studies: Understanding the Importance of Dialysis Machines in Our Community": 1 + "2nd Grade Social Studies: The Significance of Pacemakers in Our Community": 1 + "2nd Grade Social Studies: Discovering the Role of Insulin Pumps in Our Community": 1 + "2nd Grade Social Studies: The Relevance of CT Scanners in Our Community": 1 + "6th Grade Social Studies: The Impact of Morse Code on The Telegraph and Communication Revolution": 1 + "6th Grade Social Studies: The Telegraph’s Role in The Communication Revolution: Understanding Binary Systems": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution: Exploring the Influence of Electrical Circuits": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution: A Deep Dive into Electromagnetic Fields": 1 + "6th Grade Social Studies: The Telegraph and the Importance of Signal Processing in Communication Revolution": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution: The Birth of Wired Networks": 1 + "6th Grade Social Studies: Morse Code’s Contribution to The Telegraph and the Communication Revolution": 1 + "6th Grade Social Studies: Telegraphy and the Role of Insulators in the Communication Revolution": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution: The Emergence of Analog Signals": 1 + "6th Grade Social Studies: The Telegraph and Communication Revolution: The Relevance of Sound Waves": 1 + "Second Grade Language Arts: Decoding Folktales with Python Programming - A Multimedia Approach": 1 + "Second Grade Language Arts: Decoding Folktales with Scratch Coding - A Digital Storytelling Approach": 1 + "Second Grade Language Arts: Decoding Folktales using Animation Software - A Multimedia Approach": 1 + "Second Grade Language Arts: Decoding Folktales with JavaScript - A Game-Based Learning Approach": 1 + "Second Grade Language Arts: Exploring Folktales with Robotics Coding - A Multimedia Approach": 1 + "Second Grade Language Arts: Decoding Folktales with HTML - A Web Design Approach": 1 + "Second Grade Language Arts: Decoding Folktales with App Development - A Multimedia Approach": 1 + "Second Grade Language Arts: Decoding Folktales with Virtual Reality - A VR Storytelling Approach": 1 + "Second Grade Language Arts: Decoding Folktales using 3D Printing Technology - A Hands-On Approach": 1 + "Second Grade Language Arts: Decoding Folktales with Augmented Reality - A Mixed Reality Approach": 1 + "3rd Grade English: Exploring Storytelling and Fables through Podcasts using Audacity": 1 + "3rd Grade English: Storytelling and Fables Dissected with Podcasts and VoiceThread": 1 + "3rd Grade English: Integrating Storytelling and Fables into Podcasts using GarageBand": 1 + "3rd Grade English: Storytelling and Fables Unveiled with Podcasts and Soundtrap": 1 + "3rd Grade English: Storytelling and Fables Explored with Podcasts via Adobe Audition": 1 + "3rd Grade English: Enhancing Storytelling and Fables with Podcasts using Anchor ": 1 + "3rd Grade English: Storytelling and Fables Illuminated through Podcasts with Spreaker": 1 + "3rd Grade English: Storytelling and Fables Presented with Podcasts using Podcast Addict": 1 + "3rd Grade English: Storytelling and Fables Analyzed with Podcasts and Podbean": 1 + "3rd Grade English: Evolving Storytelling and Fables with Podcasts via Buzzsprout": 1 + "1st Grade Reading: Enhancing Phonics Skills with Interactive Whiteboards": 1 + "1st Grade Reading: Fun with Phonics and Flashcards": 1 + "1st Grade Reading: Improving Phonics with Tablet Learning Apps": 1 + "1st Grade Reading: Phonics Mastery through E-books": 1 + "1st Grade Reading: Phonics Fun with Online Games": 1 + "1st Grade Reading: Enhancing Phonics with Audio Books": 1 + "1st Grade Reading: Phonics Improvement with Virtual Reality Tools": 1 + "1st Grade Reading: Fun with Phonics and Augmented Reality Apps": 1 + "1st Grade Reading: Phonics Learning with Interactive Websites": 1 + "1st Grade Reading: Phonics Enhancement with Smartboard Activities": 1 + "Exploring South Atlantic States: Utilizing Google Earth and Google Cardboard VR for 4th Grade Geography with Augmented Reality Navigation": 1 + "4th Grade Geography: Detailed Study of South Atlantic States using Google Earth, Google Cardboard VR, and Interactive 3D Maps": 1 + "Incorporating Virtual Reality: South Atlantic States in 4th Grade Geography with Google Earth, Google Cardboard VR and Oculus Rift": 1 + "4th Grade Geography: South Atlantic States Exploration with Google Earth, Google Cardboard VR and Drone Technology ": 1 + "Investigating South Atlantic States with Google Earth, Google Cardboard VR and GIS in 4th Grade Geography": 1 + "4th Grade Geography: South Atlantic States and the Application of Google Earth, Google Cardboard VR with Geospatial Analysis": 1 + "Studying South Atlantic States: Google Earth, Google Cardboard VR and LiDAR Technology in 4th Grade Geography": 1 + "South Atlantic States: 4th Grade Geography using Google Earth, Google Cardboard VR and 360-degree Video Technology": 1 + "Delving into 4th Grade Geography: South Atlantic States with Google Earth, Google Cardboard VR and Interactive Whiteboard": 1 + "4th Grade Geography: Learning South Atlantic States through Google Earth, Google Cardboard VR, and Augmented Reality Apps.": 1 + "8th Grade Science: Understanding Newton’s Laws of Motion through Force Diagrams": 1 + "8th Grade Science: Exploring Acceleration and Deceleration in Physics with Speed-Time Graphs": 1 + "8th Grade Science: The Role of Gravity in Forces and Motion - An Introduction to Physics": 1 + "8th Grade Science: Utilizing Simulations to Understand Physics - Forces and Motion": 1 + "8th Grade Science: An Exploration of Friction in Physics - Forces and Motion": 1 + "8th Grade Science: The Impact of Levers and Pulleys on Forces and Motion": 1 + "8th Grade Science: An Introduction to Physics - Forces, Motion, and the Laws of Inertia": 1 + "8th Grade Science: Discovering the Conservation of Momentum in Forces and Motion": 1 + "8th Grade Science: The Use of Vectors in Understanding Forces and Motion": 1 + "8th Grade Science: Physics - Forces, Motion, and the Application of Torque.": 1 + "Kindergarten Physical Science: Exploring the Five Senses through Microscope Use": 1 + "Understanding the World: Kindergarten Physical Science with a Focus on Five Senses and Stethoscope Use": 1 + "Kindergarten Physical Science: Developing Five Senses with the Aid of Magnifying Glasses": 1 + "Kindergarten Physical Science: A Deep Dive into the Five Senses Using Interactive Whiteboards": 1 + "Exploring the Five Senses with Kindergarten Physical Science and Tactile Learning Tools": 1 + "Kindergarten Physical Science: Enhancing Sensory Learning Through the Use of Virtual Reality Technology": 1 + "Physical Science for Kindergarteners: Exploring the Five Senses with Auditory Learning Tools": 1 + "Exploring the Five Senses: A Course in Kindergarten Physical Science using Olfactory Learning Tools": 1 + "Kindergarten Physical Science: An In-depth Study of the Five Senses through Taste Test Kits": 1 + "The Science of Five Senses: A Kindergarten Physical Science Course using Thermometers for Touch Exploration.": 1 + "6th Grade Art: Mastering Sketching and Painting with Graphite Pencils, Pastels, and Charcoal": 1 + "6th Grade Art: Exploring Sketching and Painting with Graphite Pencils, Pastels, and Acrylic Paints": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, and Watercolors": 1 + "6th Grade Art: Discovering Sketching and Painting with Graphite Pencils, Pastels, and Oil-Based Mediums": 1 + "6th Grade Art: Introduction to Sketching, Painting and Shading with Graphite Pencils and Pastels": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, and Digital Art Tools": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, and Mixed Media Techniques": 1 + "6th Grade Art: Exploring Sketching and Painting with Graphite Pencils, Pastels, and Chalks ": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, and Collage Techniques": 1 + "6th Grade Art: Mastering Sketching and Painting with Graphite Pencils, Pastels, and Conte Crayons.": 1 + "11th Grade History: The Influence of Bessemer Process on Crucible Steel Technique and Steel Production": 1 + "Cyanide Leaching and its Environmental Impact: Addressing Through Solution 1 - Electrolysis": 1 + "Solution 2: Use of Microorganisms for Cyanide Leaching’s Environmental Impact": 1 + "Solution 3: Bio-remediation - An Unexplored Solution for Cyanide Leaching’s Environmental Impact": 1 + "Solution 4: Phytoremediation - A Green Solution to Cyanide Leaching’s Environmental Impact": 1 + "Solution 5: Carbon Sequestration - A Potential Solution for Cyanide Leaching’s Environmental Impact": 1 + "Solution 6: Nanotechnology - A Novel Approach to Reduce Cyanide Leaching’s Environmental Impact": 1 + "Solution 7: Chemical Oxidation - An Approach to Mitigate Cyanide Leaching’s Environmental Impact": 1 + "Solution 8: Chemical Precipitation - A Traditional Solution for Cyanide Leaching’s Environmental Impact": 1 + "Solution 9: Use of Adsorbents for Cyanide Leaching’s Environmental Impact": 1 + "Solution 10: Membrane Technology - A Promising Solution for Cyanide Leaching’s Environmental Impact": 1 + "3rd Grade Physical Education: Enhancing Coordination with Pogo Sticks through Balance Games": 1 + "3rd Grade Physical Education: Utilizing Pogo Sticks and Video Analysis for Improved Coordination": 1 + "3rd Grade Physical Education: Interactive Gaming and Pogo Sticks for Coordination Enhancement": 1 + "3rd Grade Physical Education: Boosting Coordination with Pogo Sticks and Agility Ladders": 1 + "3rd Grade Physical Education: Pogo Sticks and Virtual Reality: A New Approach to Coordination Improvement": 1 + "3rd Grade Physical Education: Increasing Coordination with Pogo Sticks and Reaction Balls": 1 + "3rd Grade Physical Education: Pogo Sticks and Fitness Trackers: A Modern Approach to Coordination Improvement": 1 + "3rd Grade Physical Education: Coordination Improvement with Pogo Sticks and Balance Boards": 1 + "3rd Grade Physical Education: Using Pogo Sticks and Sensor Technology for Better Coordination": 1 + "3rd Grade Physical Education: Boosting Coordination with Pogo Sticks and Mindfulness Techniques": 1 + "10th Grade Music: Analyzing Mozart’s Symphony No.40 in G minor Through Sibelius Music Notation Software and Tempo Mapping with Metronome ": 1 + "10th Grade Music: Decoding Mozart’s Symphony No.25 in G minor Using Sibelius Music Notation Software, Tempo Mapping and Digital Audio Workstation ": 1 + "10th Grade Music: Understanding Mozart’s Symphony No.41 in C major With Sibelius Music Notation Software, Tempo Mapping, and Music Theory Concepts ": 1 + "10th Grade Music: Exploring Mozart’s Symphony No.35 in D major Through Sibelius Music Notation Software, Tempo Mapping, and Pitch Recognition ": 1 + "10th Grade Music: Dissecting Mozart’s Symphony No.36 in C major Using Sibelius Music Notation Software, Tempo Mapping, and Midi Controllers ": 1 + "10th Grade Music: Unraveling Mozart’s Symphony No.38 in D major With Sibelius Music Notation Software, Tempo Mapping, and Key Signature Analysis ": 1 + "10th Grade Music: Examining Mozart’s Symphony No.39 in E flat major Through Sibelius Music Notation Software, Tempo Mapping, and Interval Recognition ": 1 + "10th Grade Music: Interpreting Mozart’s Symphony No.28 in C major Using Sibelius Music Notation Software, Tempo Mapping, and Music Sequencing ": 1 + "10th Grade Music: Investigating Mozart’s Symphony No.29 in A major With Sibelius Music Notation Software, Tempo Mapping, and Time Signature Analysis ": 1 + "10th Grade Music: Studying Mozart’s Symphony No.31 in D major Through Sibelius Music Notation Software, Tempo Mapping, and Beat Detection Techniques.": 1 + "1st Grade Reading: Adventure in Storyland with Phonics": 1 + "1st Grade Reading: Adventure in Storyland using Interactive Storybooks": 1 + "1st Grade Reading: Exploring Adventure in Storyland through Vocabulary Building": 1 + "1st Grade Reading: Adventure in Storyland with iPad Apps": 1 + "1st Grade Reading: Adventure in Storyland - A Journey through Comprehension Skills": 1 + "1st Grade Reading: Adventure in Storyland - Understanding Plot and Characters": 1 + "1st Grade Reading: Adventure in Storyland - Learning with Audio Books": 1 + "1st Grade Reading: Adventure in Storyland - E-reading for Beginners": 1 + "1st Grade Reading: Adventure in Storyland - Developing Reading Fluency": 1 + "1st Grade Reading: Adventure in Storyland - Enhancing Literacy through Story Mapping": 1 + "10th Grade Literature: Dissecting Animal-Themed Stories Using Metaphor Analysis": 1 + "Exploring Animal Symbolism in 10th Grade Literature: A Focus on Allegory": 1 + "10th Grade Literature: Reading and Analyzing Animal-Themed Narratives Through Historical Context": 1 + "Decoding Animal-Themed Stories in 10th Grade Literature: An Introduction to Semiotics": 1 + "10th Grade Literature: Understanding Animal-Themed Stories Through Psychoanalytic Theory": 1 + "Analyzing Animal-Themed Stories in 10th Grade Literature: An Approach to Structuralism": 1 + "10th Grade Literature: Reading Animal-Themed Stories and Their Cultural Significance": 1 + "Application of Post-Colonial Theory to Animal-Themed Stories in 10th Grade Literature": 1 + "10th Grade Literature: Applying Feminist Theory to Animal-Themed Stories": 1 + "Exploration of Animal-Themed Stories in 10th Grade Literature: A New Criticism Approach": 1 + "10th Grade Literature: Analyzing Animal-Themed Stories Through the Lens of Eco-Criticism.": 1 + "8th Grade Science: Exploring DNA Structures with Microscopy in Introductory Biology": 1 + "8th Grade Science: DNA Sequencing and Structures in Introductory Biology": 1 + "8th Grade Science: Understanding DNA Replication in Introductory Biology": 1 + "8th Grade Science: DNA Structures and Genetic Engineering in Introductory Biology": 1 + "8th Grade Science: DNA Structures and the CRISPR-Cas9 System in Introductory Biology": 1 + "8th Grade Science: Introductory Biology - DNA Structures and Polymerase Chain Reaction": 1 + "8th Grade Science: Bioinformatics and DNA Structures in Introductory Biology": 1 + "8th Grade Science: DNA Structures in Introductory Biology - A Focus on Genomic Mapping": 1 + "8th Grade Science: DNA Structures and the Use of Electrophoresis in Introductory Biology": 1 + "8th Grade Science: Studying DNA Structures through Gel Electrophoresis in Introductory Biology": 1 + "1st Grade History: Exploring Local Heroes through Podcast Creation using Audacity": 1 + "1st Grade History: Analyzing Local Heroes via Garageband Podcast Production": 1 + "1st Grade History: Learning about Local Heroes through Podcast Making with Anchor": 1 + "1st Grade History: Digital Storytelling of Local Heroes via Podcasts on Soundtrap": 1 + "1st Grade History: Unveiling Local Heroes through Podcast Creation with Adobe Audition": 1 + "1st Grade History: Understanding Local Heroes through Podcast Production using Spreaker": 1 + "1st Grade History: Surveying Local Heroes through Podcast Creation on Buzzsprout": 1 + "1st Grade History: Discovering Local Heroes via Podcast Making with Hindenburg": 1 + "1st Grade History: Investigating Local Heroes through Podcast Production on Podbean": 1 + "1st Grade History: Delving into Local Heroes through Podcast Creation using Reaper": 1 + "2nd Grade Social Studies: Exploring Neighborhood Topography with Physical Maps": 1 + "2nd Grade Social Studies: Utilizing Google Earth to Identify Topographical Features in our Neighborhood": 1 + "2nd Grade Social Studies: Learning about Contour Lines in Neighborhood Topography Maps": 1 + "2nd Grade Social Studies: Introduction to GPS and Topographical Features in Neighborhood Maps": 1 + "2nd Grade Social Studies: Using Compasses to Navigate Neighborhood Topography": 1 + "2nd Grade Social Studies: Understanding Elevation on Neighborhood Topographical Maps": 1 + "2nd Grade Social Studies: Interactive Study of Neighborhood Topography using Augmented Reality": 1 + "2nd Grade Social Studies: Identifying Neighborhood Landforms using Topographical Maps ": 1 + "2nd Grade Social Studies: Introduction to Satellite Imagery for Neighborhood Topography": 1 + "2nd Grade Social Studies: Applying GIS Technology to Understand Neighborhood Topography.": 1 + "2nd Grade Science: Exploring African Savannahs Through 360 Degree VR Documentaries ": 1 + "2nd Grade Science: Understanding Polar Animal Habitats Through Interactive Documentary Viewing": 1 + "2nd Grade Science: Exploring Marine Life Habitats Using Augmented Reality Documentaries": 1 + "2nd Grade Science: Discovering Rainforest Animals Through Drone-Captured Documentaries": 1 + "2nd Grade Science: Understanding Desert Animal Habitats Through Time-Lapse Technology Documentaries": 1 + "2nd Grade Science: Exploring Jungle Habitats Using Go-Pro Documentaries": 1 + "2nd Grade Science: Understanding Mountain Animal Habitats Through Satellite Imagery Documentaries": 1 + "2nd Grade Science: Identifying Wetland Animal Habitats Through Infrared Technology Documentaries": 1 + "2nd Grade Science: Exploring Forest Habitats Through Thermal Imaging Documentaries": 1 + "2nd Grade Science: Understanding Grassland Animal Habitats Through 3D Animation Documentaries": 1 + "1st Grade Science: Understanding Recycling with DIY Trash-to-Treasure Crafts: Creating Bottle Cap Mosaics using Glue Guns": 1 + "1st Grade Science: Exploring Recycling & Sustainability Through DIY Trash-to-Treasure Crafts: Making Bottle Cap Mosaics with Plastic Cutters": 1 + "1st Grade Science: Learning about Recycling by Crafting DIY Trash-to-Treasure: Building Bottle Cap Mosaics using Acrylic Paints": 1 + "1st Grade Science: Investigating Recycling through DIY Trash-to-Treasure Crafts: Designing Bottle Cap Mosaics with Tweezers": 1 + "1st Grade Science: Exploring Ecosystems & Recycling with DIY Trash-to-Treasure Crafts: Constructing Bottle Cap Mosaics using Hot Glue": 1 + "1st Grade Science: Discovering Recycling with DIY Trash-to-Treasure Crafts: Forming Bottle Cap Mosaics using Craft Knives": 1 + "1st Grade Science: Delving into Recycling with DIY Trash-to-Treasure Crafts: Developing Bottle Cap Mosaics with Silicone Mats": 1 + "1st Grade Science: Unraveling Recycling through DIY Trash-to-Treasure Crafts: Shaping Bottle Cap Mosaics using Craft Scissors": 1 + "1st Grade Science: Comprehending Recycling with DIY Trash-to-Treasure Crafts: Crafting Bottle Cap Mosaics using PVA Glue": 1 + "1st Grade Science: Examining Recycling & Conservation with DIY Trash-to-Treasure Crafts: Producing Bottle Cap Mosaics using Craft Papers": 1 + "3rd Grade Music: Introduction to Folk Music and the Dulcimer with Harmonic Scales": 1 + "3rd Grade Music: Folk Music Basics and the Dulcimer: Incorporating Rhythm Patterns": 1 + "3rd Grade Music: Exploring the Dulcimer in Folk Music through Melody Creation": 1 + "3rd Grade Music: Folk Music Basics - Learning the Dulcimer with Music Notation": 1 + "3rd Grade Music: Hands-On Dulcimer Skills in Folk Music with Chord Progression": 1 + "3rd Grade Music: Introducing Folk Music and Dulcimer with a Focus on Tempo Control": 1 + "3rd Grade Music: Folk Music Basics and the Dulcimer: An Approach to Songwriting": 1 + "3rd Grade Music: Mastering the Dulcimer in Folk Music with Beat Counting": 1 + "3rd Grade Music: Folk Music Basics and Dulcimer: Understanding Musical Dynamics": 1 + "3rd Grade Music: Folk Music and Dulcimer - A Study of Melodic Intervals": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division through Scratch Programming": 1 + "3rd Grade Mathematics: Understanding Multiplication and Division using Google Classroom Interactive Tools": 1 + "3rd Grade Mathematics: Engaging with Multiplication and Division through the Use of iPads": 1 + "3rd Grade Mathematics: Interactive Learning of Multiplication and Division using Digital Whiteboards": 1 + "3rd Grade Mathematics: Mastering Multiplication and Division through Khan Academy Resources": 1 + "3rd Grade Mathematics: Practical Application of Multiplication and Division using Microsoft Math Solver": 1 + "3rd Grade Mathematics: Multiplication and Division made Easy with Mathspace Digital Platform": 1 + "3rd Grade Mathematics: Enhancing Multiplication and Division Skills using Prodigy Math Game": 1 + "3rd Grade Mathematics: Real-world Problem Solving of Multiplication and Division using Mathletics": 1 + "3rd Grade Mathematics: Hands-on Learning of Multiplication and Division using Lego Education WeDo 2.0": 1 + "6th Grade Social Studies: Understanding Environmental Conservation with Smart Agriculture through Aquaponics": 1 + "Exploring Drip Irrigation: An Introduction to Environmental Conservation in 6th Grade Social Studies": 1 + "6th Grade Social Studies: A Deep Dive into Hydroponics and Environmental Conservation": 1 + "Vertical Farming & Environmental Conservation: A 6th Grade Social Studies Course": 1 + "6th Grade Social Studies: Exploring Permaculture as a Solution to Environmental Conservation": 1 + "6th Grade Social Studies: The Role of Soil-less Cultivation in Environmental Conservation": 1 + "6th Grade Social Studies: Environmental Conservation with Precision Agriculture Technology": 1 + "6th Grade Social Studies: Conservation through Agroforestry - A New Perspective": 1 + "6th Grade Social Studies: Environmental Conservation with Smart Agriculture using GIS Technology": 1 + "Exploring Crop Rotation: An Introduction to Environmental Conservation for 6th Grade Social Studies.": 1 + "4th Grade Science: Examining Ecosystems with Satellite Imagery using Google Earth": 1 + "4th Grade Science: Investigating Ecosystems through Satellite Imagery with Infrared Technology": 1 + "4th Grade Science: Employing GIS Technology to Analyze Ecosystems through Satellite Imagery": 1 + "4th Grade Science: Exploring Ecosystems using Satellite Images and Thermal Sensing Technology": 1 + "4th Grade Science: Utilizing Remote Sensing to Study Ecosystems via Satellite Imagery": 1 + "4th Grade Science: Deciphering Ecosystems with Satellite Imagery using Machine Learning": 1 + "4th Grade Science: Assessing Ecosystems with Satellite Images and Vegetation Indexing": 1 + "4th Grade Science: Understanding Ecosystems through Satellite Imagery with Lidar Technology": 1 + "4th Grade Science: Satellite Imagery and Photogrammetry in Examining Ecosystems": 1 + "4th Grade Science: Exploring Ecosystems with Satellite Imagery using Spectral Analysis.": 1 + "Exploring Addition in 2nd Grade Mathematics through the SplashLearn App: Utilizing Interactive Flashcards": 1 + "Enhancing 2nd Grade Addition Skills using the Number Line Tool on SplashLearn": 1 + "Exploring Addition in 2nd Grade Mathematics through the SplashLearn App: A Focus on Math Puzzles": 1 + "Implementing Arithmetic Blocks in 2nd Grade Addition via the SplashLearn App": 1 + "Exploring Addition in 2nd Grade Mathematics using the Virtual Abacus Tool on SplashLearn": 1 + "Enhancing 2nd Grade Addition using SplashLearn: Emphasizing on Math Games": 1 + "Unraveling the Concept of Regrouping in 2nd Grade Addition through the SplashLearn App": 1 + "Exploring Addition in 2nd Grade Mathematics: Using the SplashLearn App’s Interactive Worksheets": 1 + "Mastering Carry Over in 2nd Grade Addition with the SplashLearn App": 1 + "Exploring Addition in 2nd Grade Mathematics through the SplashLearn App: Utilizing Virtual Reality for Engaging Learning.": 1 + "6th Grade Social Studies: Understanding Environmental Conservation through Reforestation using GIS Technology ": 1 + "6th Grade Social Studies: Exploring Environmental Conservation through Reforestation using Drone Imaging": 1 + "6th Grade Social Studies: Studying Environmental Conservation through Reforestation with the Aid of Satellite Mapping ": 1 + "6th Grade Social Studies: Learning Environmental Conservation through Reforestation using the Concept of Carbon Sequestration": 1 + "6th Grade Social Studies: Investigating Environmental Conservation through Reforestation with IoT Sensors ": 1 + "6th Grade Social Studies: Learning Environmental Conservation through Reforestation using the Concept of Ecosystem Services": 1 + "6th Grade Social Studies: Diving into Environmental Conservation through Reforestation using the Principle of Succession": 1 + "6th Grade Social Studies: Grasping Environmental Conservation through Reforestation using the Concept of Biodiversity": 1 + "6th Grade Social Studies: Examining Environmental Conservation through Reforestation using Machine Learning Algorithms": 1 + "6th Grade Social Studies: Delving into Environmental Conservation through Reforestation using the Principle of Sustainable Forestry.": 1 + "4th Grade History: Exploring Ancient China using Minecraft Education Edition for Interactive Storytelling": 1 + "4th Grade History: Diving into Ancient China with Google Earth and Digital Storytelling": 1 + "4th Grade History: Investigating Ancient China using Augmented Reality Apps and eBooks": 1 + "4th Grade History: Learning about Ancient China with Interactive Whiteboards and Digital Storytelling": 1 + "4th Grade History: Surveying Ancient China through Virtual Reality Tours and eBooks": 1 + "4th Grade History: Uncovering Ancient China using iPad Apps for Interactive Storytelling": 1 + "4th Grade History: Discovering Ancient China with the Use of Smartboards in Digital Storytelling": 1 + "4th Grade History: Journeying through Ancient China using 3D Printing and Interactive eBooks": 1 + "4th Grade History: Exploring Ancient China with Scratch Coding for Digital Storytelling": 1 + "4th Grade History: Studying Ancient China through Gamification Techniques and Interactive eBooks": 1 + "Exploring Coral Reefs with Virtual Reality: A 4th Grade Geography Course Utilizing Google Expeditions": 1 + "Navigating Ocean Biodiversity with VR: A 4th Grade Geography Course Incorporating 3D Modeling ": 1 + "Virtual Reality Investigation of Marine Life: A 4th Grade Geography Course Using Oculus Rift Technology": 1 + "Virtual Reality Exploration of Ocean Biodiversity: A 4th Grade Course with Interactive Mapping Technology": 1 + "Virtual Reality Exploration of Ocean Ecosystems: A 4th Grade Geography Course Utilizing Underwater Drones": 1 + "Virtual Reality Adventure: Deep Sea Exploration Using ROVs in 4th Grade Geography": 1 + "Virtual Reality Dive into Ocean Biodiversity: A 4th Grade Course Implementing 360-degree Videos": 1 + "Virtual Reality Discovery of Oceanic Species: A 4th Grade Geography Course with Augmented Reality Tools": 1 + "Virtual Reality Exploration of Ocean Biodiversity: A 4th Grade Course Using Haptic Feedback Technology ": 1 + "Underwater World: A 4th Grade Geography Course Exploring Ocean Biodiversity Through VR and Photogrammetry.": 1 + "6th Grade Art: Mastering Sketching and Painting with Graphite Pencils, Pastels, Digital Art Tools, and Charcoal Techniques": 1 + "6th Grade Art: A Comprehensive Guide to Sketching, Painting with Graphite Pencils, Pastels, Digital Art Tools and Adobe Illustrator": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, Digital Art Tools, and Watercolor Techniques": 1 + "6th Grade Art: Exploring Artistry with Graphite Pencils, Pastels, Digital Art Tools, and Procreate App": 1 + "6th Grade Art: Developing Skills in Sketching, Painting with Graphite Pencils, Pastels, Digital Art Tools, and Oil Painting": 1 + "6th Grade Art: Introduction to Sketching, Painting with Graphite Pencils, Pastels, Digital Art Tools and 3D Modeling Techniques": 1 + "6th Grade Art: Enhancing Creativity with Graphite Pencils, Pastels, Digital Art Tools, and Acrylic Painting Techniques": 1 + "6th Grade Art: Learning to Sketch and Paint with Graphite Pencils, Pastels, Digital Art Tools, and the Use of Light and Shadow ": 1 + "6th Grade Art: Discovering Art through Sketching, Painting with Graphite Pencils, Pastels, Digital Art Tools, and the Basics of Perspective Drawing": 1 + "6th Grade Art: Introduction to Sketching, Painting with Graphite Pencils, Pastels, Digital Art Tools, and Mixed Media Art Techniques.": 1 + "7th Grade Language Arts: Exploring Environmental Literature through Internet Archive using Google Scholar": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive with Firefox Browser": 1 + "7th Grade Language Arts: A Study of Environmental Literature through Internet Archive and Python Coding": 1 + "7th Grade Language Arts: Analyzing Environmental Literature using Internet Archive and Digital Literacy Concepts": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive with Microsoft Edge": 1 + "7th Grade Language Arts: Understanding Environmental Literature through Internet Archive and VPN Technology ": 1 + "7th Grade Language Arts: Interpreting Environmental Literature via Internet Archive using SEO Principles": 1 + "7th Grade Language Arts: Accessing Environmental Literature through Internet Archive and JavaScript Coding": 1 + "7th Grade Language Arts: Exploring Environmental Literature via Internet Archive with Google Chrome Browser": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive using Data Mining Techniques.": 1 + "3rd Grade Elementary: Exploring Multiplication Concepts through Object Grouping with LEGO Bricks using the Math-U-See Manipulatives": 1 + "3rd Grade Elementary: Applying Multiplication Concepts through Object Grouping with LEGO Bricks and Abacus Calculation": 1 + "3rd Grade Elementary: Understanding Multiplication Concepts through Object Grouping with LEGO Bricks and the Montessori Method": 1 + "3rd Grade Elementary: Mastering Multiplication Concepts through Object Grouping with LEGO Bricks and Online Math Games": 1 + "3rd Grade Elementary: Exploring Multiplication Concepts through Object Grouping with LEGO Bricks using the Visual Math Learning Tool": 1 + "3rd Grade Elementary: Implementing Multiplication Concepts through Object Grouping with LEGO Bricks and Smartboard Technology": 1 + "3rd Grade Elementary: Grasping Multiplication Concepts through Object Grouping with LEGO Bricks using Hands-on Math Labs": 1 + "3rd Grade Elementary: Analyzing Multiplication Concepts through Object Grouping with LEGO Bricks & Interactive Whiteboard Lessons": 1 + "3rd Grade Elementary: Exploring Multiplication Concepts through Object Grouping with LEGO Bricks and Cuisenaire Rods": 1 + "3rd Grade Elementary: Enhancing Multiplication Concepts through Object Grouping with LEGO Bricks using the Prodigy Math Game": 1 + "Fourth Grade History: Analyzing Benjamin Franklin’s Join or Die Cartoon and its Influence During the American Revolution": 1 + "Examining the Use of the Gutenberg Printing Press in Spreading Political Ideas During the American Revolution: A Fourth Grade History Course": 1 + "Fourth Grade History: The Role of the Printing Press and Political Cartoons in the Boston Tea Party": 1 + "Fourth Grade History: The Interplay of the Printing Press, Political Cartoons, and Pamphlets in the American Revolution": 1 + "Understanding the Impact of the Printing Press and Political Cartoons on the American Revolution: A Focus on Paul Revere’s Engravings": 1 + "Fourth Grade History: The Use of the Printing Press and Political Cartoons in the Propagation of Revolutionary Ideas": 1 + "Fourth Grade History: The Influence of the Printing Press and Political Cartoons on the Signing of the Declaration of Independence": 1 + "Spreading the Revolution: How the Printing Press and Political Cartoons Shaped the American Revolution - A Fourth Grade History Course": 1 + "Fourth Grade History: Unpacking the Power of the Printing Press and Thomas Paine’s Common Sense During the American Revolution": 1 + "A Study of the Printing Press, Political Cartoons, and the Liberty Bell: Shaping the American Revolution - A Fourth Grade History Course": 1 + "8th Grade World Cultures: Analyzing Globalization through African Case Studies using Google Earth": 1 + "8th Grade World Cultures: Understanding Globalization through Asian Case Studies with Minecraft Education Edition": 1 + "8th Grade World Cultures: Exploring Globalization through European Case Studies using Virtual Reality Technology": 1 + "8th Grade World Cultures: Investigating Globalization through American Case Studies with Kahoot Quizzes": 1 + "8th Grade World Cultures: Evaluating Globalization through Oceanian Case Studies using Augmented Reality": 1 + "8th Grade World Cultures: Examining Globalization through Middle Eastern Case Studies using Prezi Presentations": 1 + "8th Grade World Cultures: Deciphering Globalization through South American Case Studies with Interactive Whiteboard Activities": 1 + "8th Grade World Cultures: Interpreting Globalization through North American Case Studies using 3D Printing Technology": 1 + "8th Grade World Cultures: Assessing Globalization through Caribbean Case Studies with Quizlet Learning Tools": 1 + "8th Grade World Cultures: Scrutinizing Globalization through Antarctic Case Studies using Podcasts and Audiobooks.": 1 + "2nd Grade Science: Understanding Plant Life with Seed Dissection and Microscope Analysis": 1 + "2nd Grade Science: Exploring Plant Life through Seed Dissection and Digital Microscopy": 1 + "2nd Grade Science: Unraveling Botany Mysteries with Seed Dissection and Magnifying Glass": 1 + "2nd Grade Science: Seed Dissection and DNA Extraction: A Journey into Plant Life": 1 + "2nd Grade Science: Seed Dissection and Photosynthesis: Learning Plant Life": 1 + "2nd Grade Science: Plant Life Investigation with Seed Dissection and Petri Dish Experiments": 1 + "2nd Grade Science: Seed Dissection and Computer Simulation: An Insight into Plant Life": 1 + "2nd Grade Science: Learning Plant Life through Seed Dissection and Virtual Reality Technology": 1 + "2nd Grade Science: Seed Dissection with Tweezers - A Detailed Look into Plant Life": 1 + "2nd Grade Science: Discovering Plant Life through Seed Dissection and Chromatography": 1 + "6th Grade History: The Role of Ancient Egyptian Canals in the Construction of Pyramids": 1 + "6th Grade History: The Use of Ramps and Levers in Building Pyramids Near the Nile": 1 + "6th Grade History: The Impact of Astronomy on Pyramid Placement in Ancient Egypt": 1 + "6th Grade History: The Influence of Nile’s Flooding on the Logistics of Pyramid Construction": 1 + "6th Grade History: The Use of Simple Machines in Pyramid Construction Along the Nile": 1 + "6th Grade History: Understanding the Role of Nile’s Sediment in the Material Selection for Pyramids": 1 + "6th Grade History: The Connection Between Ancient Egyptian Math and Pyramid Building Near the Nile": 1 + "6th Grade History: The Importance of Nile’s Water Transport in the Construction of Pyramids": 1 + "6th Grade History: The Role of Ancient Egyptian Chiseling Techniques in Pyramid Construction": 1 + "6th Grade History: The Significance of the Nile’s Seasonal Cycles in the Planning of Pyramid Construction.": 1 + "Kindergarten Environmental Studies: Introduction to Weather Patterns Using a Barometer": 1 + "Kindergarten Environmental Studies: Exploring Weather Patterns Through Rain Gauges": 1 + "Kindergarten Environmental Studies: Weather Patterns and Thermometer Usage": 1 + "Kindergarten Environmental Studies: A Study of Weather Patterns Using Weather Vane ": 1 + "Kindergarten Environmental Studies: Introduction to Weather Patterns and Cloud Identification ": 1 + "Kindergarten Environmental Studies: Understanding Weather Patterns Through Weather Radar Technology": 1 + "Kindergarten Environmental Studies: Weather Patterns and the Role of Wind Socks": 1 + "Kindergarten Environmental Studies: Weather Patterns - A Practical Approach With Hygrometers": 1 + "Kindergarten Environmental Studies: Introduction to Weather Patterns Using Weather Balloons": 1 + "Kindergarten Environmental Studies: Weather Patterns Explored Through Anemometers.": 1 + "3rd Grade Music: Exploring Rhythms and Melodies through GarageBand": 1 + "3rd Grade Music: Understanding Rhythms and Melodies using Audacity": 1 + "3rd Grade Music: Discovering Rhythms and Melodies with Soundtrap": 1 + "3rd Grade Music: Investigating Rhythms and Melodies via FL Studio": 1 + "3rd Grade Music: Navigating Rhythms and Melodies through Ableton Live": 1 + "3rd Grade Music: Delving into Rhythms and Melodies using Logic Pro X": 1 + "3rd Grade Music: Examining Rhythms and Melodies with Pro Tools": 1 + "3rd Grade Music: Unveiling Rhythms and Melodies via Cubase": 1 + "3rd Grade Music: Learning Rhythms and Melodies using Sibelius Software": 1 + "3rd Grade Music: Decoding Rhythms and Melodies through MuseScore": 1 + "10th Grade Physical Education: Understanding the Physics of Tennis Swings and Ball Spin with 3D Motion Analysis": 1 + "Biomechanics of Tennis Swings: A Detailed Study with Motion Capture Technology in 10th Grade Physical Education": 1 + "10th Grade Physical Education: Exploring Tennis Swing Techniques and Ball Spin using High-Speed Cameras": 1 + "The Science of Tennis Swings: Using Force Plate Technology in 10th Grade Physical Education": 1 + "10th Grade Physical Education: The Influence of Racket Design on Tennis Swings and Ball Spin": 1 + "10th Grade Physical Education: Studying Tennis Ball Spin and Swings with Doppler Radar Technology": 1 + "Using Biomechanical Analysis to Understand Tennis Swings and Ball Spin in 10th Grade Physical Education": 1 + "10th Grade Physical Education: Incorporating Wearable Technology to Study Tennis Swings and Ball Spin": 1 + "The Science of Tennis Swings: Using Video Analysis Software in 10th Grade Physical Education": 1 + "10th Grade Physical Education: Exploring Ball Spin and Tennis Swings with Accelerometer Technology.": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive using Python Data Mining Techniques": 1 + "7th Grade Language Arts: Utilizing SQL in Data Mining for Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Exploring Environmental Literature through Internet Archive using Text Mining with R": 1 + "7th Grade Language Arts: Leveraging Apache Hadoop for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive using Machine Learning Algorithms for Data Mining": 1 + "7th Grade Language Arts: Utilizing Big Data Analytics for Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive using Data Mining Techniques with Tableau": 1 + "7th Grade Language Arts: Accessing Environmental Literature via Internet Archive using SPSS in Data Mining": 1 + "7th Grade Language Arts: Utilizing SAS in Data Mining for Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Exploring Environmental Literature through Internet Archive using Data Mining Techniques with RapidMiner.": 1 + "5th Grade History: The American Revolution - Navigating by Stars with the Sextant": 1 + "5th Grade History: The American Revolution - Utilizing Astrological Maps in Star Navigation": 1 + "5th Grade History: The American Revolution - Star Navigation: The Impact of the Quadrant ": 1 + "5th Grade History: The American Revolution - Navigating by Stars: An Exploration of Celestial Spheres": 1 + "5th Grade History: The American Revolution - Star Navigation: Discovering the Astrolabe": 1 + "5th Grade History: The American Revolution - The Role of the Cross-staff in Star Navigation": 1 + "5th Grade History: The American Revolution - Star Navigation and the Revolutionary Nocturnal Tool": 1 + "5th Grade History: The American Revolution - Celestial Navigation: The Backstaff Technique ": 1 + "5th Grade History: The American Revolution - Navigating by Stars: Understanding the Principle of the Horizon System": 1 + "5th Grade History: The American Revolution - The Azimuth Compass in Star Navigation": 1 + "11th Grade Physical Education: Understanding Cardiovascular Health through Heart Rate Monitors": 1 + "11th Grade Physical Education: Exploring Wellness through Diet Tracking Apps": 1 + "11th Grade Physical Education: Improving Strength and Conditioning with Resistance Training": 1 + "11th Grade Physical Education: Boosting Health with Sleep Monitoring Technology ": 1 + "11th Grade Physical Education: Incorporating Yoga for Mind and Body Wellness ": 1 + "11th Grade Physical Education: Achieving Fitness Goals using Step Counters": 1 + "11th Grade Physical Education: Nutrition Essentials and Calorie Counting Tools": 1 + "11th Grade Physical Education: Basic Anatomy and Physiology through Interactive 3D Models": 1 + "11th Grade Physical Education: Stress Management through Biofeedback Devices": 1 + "11th Grade Physical Education: Endurance Training with Cycling Simulators.": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations and Their Use of Sundials in Astronomy": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations and Their Use of Astrolabes in Astronomy": 1 + "6th Grade Social Studies: An In-depth Study of Ancient Civilizations and Their Use of Star Charts in Astronomy": 1 + "6th Grade Social Studies: Examination of Ancient Civilizations and Their Use of Gnomon in Astronomy": 1 + "6th Grade Social Studies: Ancient Civilizations and Their Utilization of Quadrants in Astronomy": 1 + "6th Grade Social Studies: The Role of Calendars in Ancient Civilizations’ Understanding of Astronomy": 1 + "6th Grade Social Studies: Uncovering Ancient Civilizations and Their Use of Armillary Spheres in Astronomy": 1 + "6th Grade Social Studies: Ancient Civilizations and Their Use of Water Clocks in Timekeeping and Astronomy": 1 + "6th Grade Social Studies: Probing Ancient Civilizations and Their Use of Observatories in Astronomy": 1 + "6th Grade Social Studies: Ancient Civilizations and Their Use of Astroliths in Understanding Astronomy": 1 + "Kindergarten Art: Exploring Colors and Shapes with Watercolor Paints": 1 + "Kindergarten Art: Discovering Shapes and Colors through Digital Art Software": 1 + "Kindergarten Art: Learning Colors and Shapes with Oil Pastels": 1 + "Kindergarten Art: Understanding Shapes and Colors using Collage Techniques": 1 + "Kindergarten Art: Exploring Colors and Shapes with Clay Sculpting": 1 + "Kindergarten Art: Navigating Colors and Shapes through Origami Folding": 1 + "Kindergarten Art: Investigating Colors and Shapes with Acrylic Paints": 1 + "Kindergarten Art: Discovering Colors and Shapes through Photography": 1 + "Kindergarten Art: Exploring Colors and Shapes using Printmaking Techniques": 1 + "Kindergarten Art: Learning about Colors and Shapes through Mixed Media Art": 1 + "Exploring Roller Coaster Physics Using Interactive Physics Simulations and Velocity-Time Graphs: A 7th Grade Science Study with LabQuest 2": 1 + "Investigating Roller Coaster Dynamics: A 7th Grade Science Study Using Interactive Physics, Acceleration Calculations and Velocity-Time Graphs": 1 + "Roller Coaster Physics Exploration: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs and Magnetic Levitation": 1 + "Understanding Roller Coaster Physics: A 7th Grade Study Using Interactive Physics, Velocity-Time Graphs and Data Loggers": 1 + "A 7th Grade Science Study: Roller Coaster Physics Explored through Interactive Physics, Velocity-Time Graphs and Force Sensors": 1 + "Exploring the Physics of Roller Coasters: A 7th Grade Science Study with Interactive Physics, Velocity-Time Graphs and the Conservation of Energy concept": 1 + "Roller Coaster Physics: A Comprehensive 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs and Momentum Theory": 1 + "The Science of Roller Coasters: A 7th Grade Study with Interactive Physics, Velocity-Time Graphs and 3D Printing Technology": 1 + "In-depth Study of Roller Coaster Physics: A 7th Grade Science Exploration Using Interactive Physics, Velocity-Time Graphs and VR Technology": 1 + "Investigating Roller Coaster Physics: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs and Arduino Microcontrollers": 1 + "8th Grade Science: Exploring Photosynthesis in Biology Using Microscopes and Lab Experiments": 1 + "8th Grade Science: Studying Photosynthesis in Biology with Chromatography Lab Experiments": 1 + "8th Grade Science: Understanding Photosynthesis in Biology through Spectrophotometry and Lab Experiments": 1 + "8th Grade Science: Examining Photosynthesis in Biology Using Light Intensity Meters in Lab Experiments": 1 + "8th Grade Science: Investigating Photosynthesis in Biology with Cellular Respiration Concept and Lab Experiments": 1 + "8th Grade Science: Probing Photosynthesis in Biology Using pH Meters and Lab Experiments": 1 + "8th Grade Science: Exploring Photosynthesis in Biology with Biochemical Pathways and Lab Experiments": 1 + "8th Grade Science: Discovering Photosynthesis in Biology Using Thermometers in Lab Experiments": 1 + "8th Grade Science: Delving into Photosynthesis in Biology with the Calvin Cycle Concept and Lab Experiments": 1 + "8th Grade Science: Investigating Photosynthesis in Biology Using Colorimeters and Lab Experiments.": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Number Lines": 1 + "2nd Grade Mathematics: Intro to Multiplication Using Abacus": 1 + "2nd Grade Mathematics: Multiplication Basics with Interactive Whiteboards": 1 + "2nd Grade Mathematics: Exploring Multiplication through Grid Method": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Math Manipulatives": 1 + "2nd Grade Mathematics: Learning Multiplication through Digital Flashcards": 1 + "2nd Grade Mathematics: Intro to Multiplication Using Times Table Chart": 1 + "2nd Grade Mathematics: Multiplication Mastery with Math Games": 1 + "2nd Grade Mathematics: Intro to Multiplication Using Educational Apps": 1 + "2nd Grade Mathematics: Multiplication Foundations with Repeated Addition Concept": 1 + "1st Grade Music: Exploring Rhythm and Melody with Ableton Live and MIDI Controllers": 1 + "1st Grade Music: Introduction to Rhythm and Melody Using Ableton Live and Looping Techniques": 1 + "1st Grade Music: Understanding Rhythm and Melody Through Ableton Live and Virtual Instruments": 1 + "1st Grade Music: Beginning Rhythm and Melody with Ableton Live and Electronic Drum Pads": 1 + "1st Grade Music: Introduction to Rhythm and Melody using Ableton Live and Audio Effects": 1 + "1st Grade Music: Rhythm and Melody Basics using Ableton Live and Music Theory Concepts": 1 + "1st Grade Music: Discover Rhythm and Melody with Ableton Live and Beat Making Tools": 1 + "1st Grade Music: Intro to Rhythm and Melody using Ableton Live and Digital Audio Workstations": 1 + "1st Grade Music: Starting Rhythm and Melody with Ableton Live and Music Production Software": 1 + "1st Grade Music: Basics of Rhythm and Melody using Ableton Live and Sound Mixing Techniques": 1 + "9th Grade History: The Role of Franklin Stove in the American Revolution Era’s Postal Service": 1 + "9th Grade History: The Impact of Horse-Drawn Carriages in Postal Service during the American Revolution": 1 + "9th Grade History: The Utilization of Semaphore Systems in the American Revolution’s Postal Service": 1 + "9th Grade History: How Pigeon Post Influenced Communication in the American Revolution Era": 1 + "9th Grade History: The Importance of Postal Routes in the American Revolution Era": 1 + "9th Grade History: The Evolution of Postal Stamps during the American Revolution": 1 + "9th Grade History: The Role of the Printing Press in the Postal Service of the American Revolution Era": 1 + "9th Grade History: The Influence of the Telegraph System on the American Revolution’s Postal Service": 1 + "9th Grade History: The Use of Cipher Codes in the American Revolution’s Postal Service": 1 + "9th Grade History: The Development of the Mail Coach in the Postal Service of the American Revolution Era": 1 + "8th Grade Music: The Influence of Pipe Organ and Gregorian Chant on the Evolution of Classical Music": 1 + "8th Grade Music: The Role of Pipe Organ and Counterpoint in the Development of Classical Music": 1 + "8th Grade Music: The Impact of Pipe Organ, Church Modes, and Sheet Music on Classical Music Evolution": 1 + "8th Grade Music: The Transition from Pipe Organ and Church Modes to Harpsichord in Classical Music Evolution": 1 + "8th Grade Music: The Impact of Pipe Organ, Church Modes, and Polyphony on the Progression of Classical Music ": 1 + "8th Grade Music: The Effect of Pipe Organ, Church Modes, and the Metronome on Classical Music Evolution": 1 + "8th Grade Music: Exploring the Influence of Pipe Organ, Church Modes, and the Concert Pitch on Classical Music Evolution": 1 + "8th Grade Music: The Implication of Pipe Organ, Church Modes, and Music Notation in the Evolution of Classical Music": 1 + "8th Grade Music: The Impact of Pipe Organ, Church Modes, and the Equal Temperament on Classical Music Evolution": 1 + "8th Grade Music: The Influence of Pipe Organ, Church Modes, and the Fortepiano on the Evolution of Classical Music": 1 + "10th Grade Music: Interpreting Debussy’s Preludes Using LilyPond Music Notation Software and MIDI Keyboards": 1 + "10th Grade Music: An Examination of Debussy’s Preludes Through LilyPond Software and Sibelius Scorewriter Program": 1 + "10th Grade Music: Analyzing Debussy’s Preludes with LilyPond Notation Software and Audacity Audio Editor": 1 + "10th Grade Music: A Deep Dive into Debussy’s Preludes Using LilyPond and Notion Music Composition Software": 1 + "10th Grade Music: Debussy’s Preludes - A Study Through LilyPond Software and the Concept of Harmonic Analysis": 1 + "10th Grade Music: Exploring Debussy’s Preludes Using LilyPond Software and the Theory of Tonal Harmony": 1 + "10th Grade Music: Decoding Debussy’s Preludes with LilyPond Notation Software and the Practice of Music Transcription": 1 + "10th Grade Music: Understanding Debussy’s Preludes Using LilyPond Software and Finale Notepad Music Writing Software": 1 + "10th Grade Music: An In-Depth Look at Debussy’s Preludes Through LilyPond Software and the Application of Music Theory": 1 + "10th Grade Music: Interpreting Debussy’s Preludes Through LilyPond Music Notation Software and the Use of Digital Audio Workstations.": 1 + "4th Grade History: The First Americans - The Use of Flint Knapping in the Crafting of Early Harpoons": 1 + "4th Grade History: The First Americans - The Role of Sinew in Constructing Early Harpoons": 1 + "4th Grade History: The First Americans - The Evolution of Harpoon Points in Ancient Hunting Techniques": 1 + "4th Grade History: The First Americans - The Application of Launching Devices in Early Harpoon Hunting": 1 + "4th Grade History: The First Americans - The Influence of Ivory in Creating Durable Early Harpoons": 1 + "4th Grade History: The First Americans - The Incorporation of Bone in Primitive Harpoon Construction": 1 + "4th Grade History: The First Americans - The Impact of Stone Tools in Early Harpoon Crafting": 1 + "4th Grade History: The First Americans - The Use of Harpoon Foreshafts in Ancient Hunting Techniques": 1 + "4th Grade History: The First Americans - The Role of Fire in Shaping Wooden Harpoon Shafts": 1 + "4th Grade History: The First Americans - The Integration of Feather Fletching in Early Harpoon Design": 1 + "1st Grade Environmental Studies: Exploring Our Planet with Stream Gauges and Rain Gauges": 1 + "1st Grade Environmental Studies: Diving into Aquatic Habitats with Stream Gauges and Microscopes": 1 + "1st Grade Environmental Studies: Discovering Ecosystems using Stream Gauges and Soil Testing Kits": 1 + "1st Grade Environmental Studies: Unveiling Earth’s Secrets with Stream Gauges and Topographic Maps": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges and GPS Technology": 1 + "1st Grade Environmental Studies: Exploring Our Planet with Stream Gauges and Solar Panels": 1 + "1st Grade Environmental Studies: Understanding Weather Patterns using Stream Gauges and Anemometers": 1 + "1st Grade Environmental Studies: Charting Climate Change with Stream Gauges and Thermometers": 1 + "1st Grade Environmental Studies: Investigating the Water Cycle with Stream Gauges and Evaporation Bowls": 1 + "1st Grade Environmental Studies: Learning about Geology with Stream Gauges and Rock Sample Kits": 1 + "1st Grade Environmental Studies: Studying Biodiversity with Stream Gauges and Binoculars": 1 + "Revolutionary War Era: Unraveling the Secrets of the Culper Spy Ring and its Use of Invisible Ink - An In-depth 8th Grade History Course": 1 + "8th Grade History: The Culper Spy Ring, its Espionage Tactics, and the Art of Dead Drops during the Revolutionary War Era": 1 + "Decoding the Revolutionary War Era: The Culper Spy Ring’s Utilization of Ciphers - An Advanced 8th Grade History Course": 1 + "The Revolutionary War Era: A Detailed Study of the Culper Spy Ring’s Use of Hidden Compartments for Espionage - 8th Grade History Course": 1 + "8th Grade History: The Culper Spy Ring, Revolutionary War Era Espionage, and the Advent of the Sympathetic Stain": 1 + "The Revolutionary War Era: The Culper Spy Ring’s Innovative Use of Mask Letters - An In-depth 8th Grade History Course": 1 + "8th Grade History: The Revolutionary War Era, the Culper Spy Ring, and the Subtle Art of Surveillance": 1 + "Revolutionary War Era: Deciphering Code Books and the Culper Spy Ring - A Detailed 8th Grade History Course": 1 + "The Revolutionary War Era: The Culper Spy Ring’s Espionage Tactics and the Hidden Language of Signals - 8th Grade History Course": 1 + "Unmasking Espionage Techniques: The Culper Spy Ring’s Use of Pseudonyms in the Revolutionary War Era - An Advanced 8th Grade History Course": 1 + "11th Grade Science: Exploring Heredity through Punnett Squares Using Genetic Algorithms": 1 + "11th Grade Science: Decoding Heredity through Punnett Squares and DNA Sequencing": 1 + "11th Grade Science: Understanding Genetic Inheritance with Punnett Squares and Gene Mapping": 1 + "11th Grade Science: Unraveling Heredity through Punnett Squares and Genomic Data": 1 + "11th Grade Science: Analyzing Heredity using Punnett Squares and Genome Editing Tools": 1 + "11th Grade Science: Interpreting Heredity through Punnett Squares and Biotechnology": 1 + "11th Grade Science: Studying Heredity through Punnett Squares and Genetic Engineering Concepts": 1 + "11th Grade Science: Unveiling Heredity through Punnett Squares and the Central Dogma of Molecular Biology": 1 + "11th Grade Science: Discovering Heredity through Punnett Squares and Proteomics": 1 + "11th Grade Science: Deciphering Heredity through Punnett Squares and CRISPR Technology": 1 + "2nd Grade Science: Using DJI Phantom Drones for Animal Habitat Surveys": 1 + "2nd Grade Science: Utilizing Infrared Technology for Animal Habitat Surveys Using Drones": 1 + "2nd Grade Science: Incorporating GPS Tracking in Drone-based Animal Habitat Surveys": 1 + "2nd Grade Science: Using Drones and Lidar Technology for Animal Habitat Surveys": 1 + "2nd Grade Science: Deploying Drones with Thermal Imaging for Animal Habitat Surveys": 1 + "2nd Grade Science: Using Drones and Satellite Imagery for Animal Habitat Surveys": 1 + "2nd Grade Science: Using Drones for Animal Habitat Surveys with AI Data Analysis": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping Technology": 1 + "2nd Grade Science: Using Drones and Sonar Technology for Underwater Animal Habitat Surveys": 1 + "2nd Grade Science: Utilizing Drones and Machine Learning for Efficient Animal Habitat Surveys.": 1 + "3rd Grade English: Exploring Storytelling with Digital Tools": 1 + "3rd Grade English: Journey into Storytelling using Interactive Whiteboards": 1 + "3rd Grade English: Storytelling Enhancement through Audiobooks": 1 + "3rd Grade English: Harnessing Storytelling Power with Communication Apps": 1 + "3rd Grade English: Journey into Storytelling using eBooks": 1 + "3rd Grade English: Creative Storytelling with Online Storyboarding": 1 + "3rd Grade English: Journey into Storytelling - Integrating Virtual Reality ": 1 + "3rd Grade English: Storytelling Mastery with Podcasting": 1 + "3rd Grade English: Enhancing Narrative Skills through Digital Storytelling": 1 + "3rd Grade English: Journey into Storytelling using Animation Software": 1 + "3rd Grade English: Storytelling with Multimedia Presentations": 1 + "6th Grade Science: Exploring The Solar System and Its Wonders Through Telescopes": 1 + "6th Grade Science: The Solar System and Its Wonders with Interactive 3D Models": 1 + "6th Grade Science: Understanding The Solar System and Its Wonders Using Space Probes": 1 + "6th Grade Science: The Solar System and Its Wonders - A Deep Dive into Planetary Science": 1 + "6th Grade Science: The Wonders of The Solar System through the Lens of Astrophysics": 1 + "6th Grade Science: The Solar System and Its Wonders - A Study using Satellites": 1 + "6th Grade Science: The Solar System and Its Wonders - Understanding Through Virtual Reality": 1 + "6th Grade Science: The Solar System and Its Wonders - Comprehending with Computer Simulations": 1 + "6th Grade Science: Exploring The Solar System’s Wonders with Robotic Spacecrafts": 1 + "6th Grade Science: The Solar System and Its Wonders - Learning with Planetarium Software.": 1 + "2nd Grade Social Studies: The Impact of Tractors on our Agricultural Community": 1 + "2nd Grade Social Studies: The Influence of Irrigation Systems on our Rural Areas": 1 + "2nd Grade Social Studies: The Role of Ploughing Machines in our Farming Community": 1 + "2nd Grade Social Studies: The Effect of Crop Harvesting Equipment on our Local Economy": 1 + "2nd Grade Social Studies: The Significance of Fertilizer Spreaders in our Agricultural Growth": 1 + "2nd Grade Social Studies: Understanding the Impact of Seed Drills in our Farmlands": 1 + "2nd Grade Social Studies: The Impact of Combine Harvesters on our Community’s Productivity": 1 + "2nd Grade Social Studies: The Influence of Hay Balers on our Rural Lifestyle": 1 + "2nd Grade Social Studies: The Role of Dairy Machines in our Community’s Dairy Production": 1 + "2nd Grade Social Studies: The Effect of GPS Technology on our Farming Practices.": 1 + "12th Grade Physical Education: Enhancing Swimming Endurance Training with Paddles, Ankle Weights and the Concept of Drag": 1 + "12th Grade Physical Education: Fins and Paddles in Swimming Endurance Training: Understanding the Concept of Drag": 1 + "12th Grade Physical Education: Using Resistance Bands in Swimming Endurance Training with Paddles and the Concept of Drag": 1 + "12th Grade Physical Education: Implementing Heart Rate Monitors in Swimming Endurance Training with Paddles and Drag Concept": 1 + "12th Grade Physical Education: Incorporating Underwater Cameras in Swimming Endurance Training with Paddles and the Concept of Drag": 1 + "12th Grade Physical Education: Swimming Endurance Training with Paddles, Buoyancy Belts, and Understanding Drag": 1 + "12th Grade Physical Education: Using Swim Blocks for Endurance Training with Paddles and the Concept of Drag": 1 + "12th Grade Physical Education: Swimming Endurance Training with Paddles and the Concept of Drag: The Impact of Swim Caps": 1 + "12th Grade Physical Education: Using the Pool Ladder in Swimming Endurance Training with Paddles and the Concept of Drag": 1 + "12th Grade Physical Education: Applying the Concept of Propulsion in Swimming Endurance Training with Paddles and Drag Understanding.": 1 + "5th Grade Music: Exploring Rhythm and Beats with a Metronome": 1 + "Discovering Rhythm and Beats through Digital Music Software in 5th Grade Music": 1 + "5th Grade Music: Understanding Rhythm and Beats with Djembe Drums": 1 + "5th Grade Music: Mastering Rhythm and Beats using Guitar": 1 + "Exploring Rhythm and Beats with Piano in 5th Grade Music": 1 + "5th Grade Music: Comprehending Rhythm and Beats through Percussion Instruments": 1 + "Interactive Rhythm and Beats: A 5th Grade Music Course Using Music Apps": 1 + "5th Grade Music: Delving into Rhythm and Beats with Drum Machines": 1 + "5th Grade Music: Investigating Rhythm and Beats with Beatboxing Techniques": 1 + "5th Grade Music: Learning Rhythm and Beats through Digital Audio Workstations.": 1 + "6th Grade Mathematics: Understanding Fractions using Dynamic Number Line App and iPads": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App and Interactive Whiteboards": 1 + "6th Grade Mathematics: Learning Fractions with Dynamic Number Line App through Google Classroom": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App and SMART Boards": 1 + "6th Grade Mathematics: Exploring Fractions with the Dynamic Number Line App and Virtual Reality": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App and LCD Projectors": 1 + "6th Grade Mathematics: Unpacking Fractions with Dynamic Number Line App via Zoom Classes": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App and Digital Manipulatives": 1 + "6th Grade Mathematics: Comprehending Fractions using the Dynamic Number Line App and Visual Learning Strategies": 1 + "6th Grade Mathematics: Introduction to Fractions using Dynamic Number Line App and the Concept of Equivalent Fractions.": 1 + "8th Grade Science: Understanding Data Analysis with Python Programming using Matplotlib": 1 + "8th Grade Science: Unraveling Data Analysis with Python Programming and Pandas Library": 1 + "Understanding Data Analysis with Python Programming: A Practical Approach with Jupyter Notebooks for 8th Graders": 1 + "8th Grade Science: Data Analysis and Visualization with Python Programming using Seaborn": 1 + "Python Data Analysis for 8th Grade Science: Exploring Scientific Data with NumPy": 1 + "8th Grade Science: Python Programming and Data Analysis using SciPy": 1 + "Python Programming for 8th Grade Science: Data Analysis with PyCharm IDE": 1 + "8th Grade Science: Data Analysis with Python Programming & Introduction to Machine Learning": 1 + "8th Grade Science: Understanding Data Analysis with Python Programming using Anaconda Distribution": 1 + "8th Grade Science: Exploring Data Analysis through Python Programming and SQL Integration.": 1 + "3rd Grade English: Analyzing Aesop’s Fables Using Google Text-to-Speech Technology": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly Text-to-Speech": 1 + "3rd Grade English: Implementing Microsoft Azure in Storytelling and Fables Analysis": 1 + "3rd Grade English: Utilizing Natural Reader Software for Fables Analysis": 1 + "3rd Grade English: Storytelling Analysis through IBM Watson Text-to-Speech Technology": 1 + "3rd Grade English: Fables Analysis and Storytelling Using iSpeech Technology": 1 + "3rd Grade English: Storytelling and Fables Analysis With Nuance’s Dragon Software": 1 + "3rd Grade English: Decoding Fables Using Acapela Text-to-Speech Technology": 1 + "3rd Grade English: Exploring Narratives with Neospeech Text-to-Speech Technology": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Balabolka Text-to-Speech Software.": 1 + "4th Grade History: Columbus and the Discovery of America through Navigation Techniques": 1 + "4th Grade History: The Role of the Compass in the Discovery of America": 1 + "4th Grade History: Understanding the Discovery of America through Cartography": 1 + "4th Grade History: The Impact of the Astrolabe in the Discovery of America": 1 + "4th Grade History: The Discovery of America and the Evolution of Shipbuilding ": 1 + "4th Grade History: Discovery of America: An Insight into Early Nautical Instruments": 1 + "4th Grade History: The Role of Astronomy in the Discovery of America ": 1 + "4th Grade History: The Discovery of America: Understanding the Concepts of Latitude and Longitude": 1 + "4th Grade History: Discovery of America: The Importance of Sextants in Navigation ": 1 + "4th Grade History: Exploring the Discovery of America through the Use of Quadrants": 1 + "4th Grade History: Exploring Early American History Through Archival Research Using Microfilm": 1 + "4th Grade History: Investigating Early American History Through Archival Research with Digital Databases": 1 + "4th Grade History: Learning Early American History Through Archival Research Utilizing Primary Source Analysis": 1 + "4th Grade History: Discovering Early American History Using Archival Research and Photographic Records": 1 + "4th Grade History: Unraveling Early American History with Archival Research and Oral Histories": 1 + "4th Grade History: Probing Early American History Through Archival Research and Map Interpretation": 1 + "4th Grade History: Deciphering Early American History Using Archival Research and Handwritten Letters": 1 + "4th Grade History: Uncovering Early American History Through Archival Research and Newspaper Archives": 1 + "4th Grade History: Examining Early American History Using Archival Research and Census Records": 1 + "4th Grade History: Navigating Early American History Through Archival Research with Artifact Analysis": 1 + "4th Grade History: The First Americans - Examining the Use of Flint Tools in Animal Skin Shelter Construction": 1 + "4th Grade History: The First Americans - Understanding the Role of Bone Needles in Animal Skin Tent Making": 1 + "4th Grade History: The First Americans - Survey of Stone Scrapers Utilization in Animal Skin Wigwam Building ": 1 + "4th Grade History: The First Americans - Exploring the Use of Sinew Thread in Animal Skin Tipi Construction": 1 + "4th Grade History: The First Americans - Analysis of Fire Hardening Technique in Animal Skin Shelter Creation": 1 + "4th Grade History: The First Americans - Study of Antler Tine Awls in Crafting Animal Skin Huts": 1 + "4th Grade History: The First Americans - Investigation of Hide Glue Application in Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Discovering the Use of Bone Knives in Animal Skin Yurt Construction": 1 + "4th Grade History: The First Americans - Learning about Drying and Tanning Process in Preparing Animal Skins for Shelter": 1 + "4th Grade History: The First Americans - Delving into the Use of Ochre for Waterproofing Animal Skin Shelters.": 1 + "4th Grade Social Studies: American History Through Maps": 1 + "4th Grade Social Studies: American History and The Industrial Revolution": 1 + "4th Grade Social Studies: Understanding American History Through Timelines": 1 + "4th Grade Social Studies: Exploring America’s Past with Virtual Reality": 1 + "4th Grade Social Studies: American History and the Evolution of the Railroad": 1 + "4th Grade Social Studies: The Story of American History Through Photography": 1 + "4th Grade Social Studies: American History - The Age of Invention": 1 + "4th Grade Social Studies: Decoding American History With Cryptography": 1 + "4th Grade Social Studies: American History and the Rise of the Internet": 1 + "4th Grade Social Studies: American History - The Space Age Exploration": 1 + "8th Grade Social Studies: Exploring Democracy and Government through the Lens of Quantum Computing and Cryptography": 1 + "Quantum Computing & Blockchain: A New Perspective on Democracy and Government for 8th Graders": 1 + "Democracy and Government in the Age of Quantum Computing: A Deep Dive into Quantum Encryption for 8th Graders": 1 + "Quantum Computing and AI: Reimagining 8th Grade Social Studies, Democracy, and Government": 1 + "8th Grade Social Studies: Investigating Government Transparency with Quantum Computing and Data Analytics": 1 + "Quantum Computing & IoT: Rethinking Democracy and Government in 8th Grade Social Studies": 1 + "8th Grade Social Studies: Democracy and Government in the Context of Quantum Computing and Machine Learning": 1 + "Quantum Computing & Cybersecurity: An 8th Grade Study of Democracy and Government": 1 + "8th Grade Social Studies: Understanding Democracy and Government through Quantum Computing and Big Data": 1 + "Quantum Algorithms and their Impact on Democracy and Government: An 8th Grade Social Studies Course.": 1 + "9th Grade Biology: Using Microscopes to Examine Cell Structures with Gel Electrophoresis": 1 + "9th Grade Biology: Analyzing Cell Structures with Gel Electrophoresis and Polymerase Chain Reaction": 1 + "9th Grade Biology: Employing Spectrophotometry in Examining Cell Structures with Gel Electrophoresis": 1 + "9th Grade Biology: Cell Structures Exploration with Gel Electrophoresis and Chromatography": 1 + "9th Grade Biology: The Role of DNA Sequencing in Examining Cell Structures with Gel Electrophoresis": 1 + "9th Grade Biology: A Study of Cell Structures Using Gel Electrophoresis and Fluorescence Microscopy": 1 + "9th Grade Biology: Examining Cell Structures with Gel Electrophoresis and Flow Cytometry": 1 + "9th Grade Biology: Understanding Cell Structures through Gel Electrophoresis and Centrifugation": 1 + "9th Grade Biology: Integrating Gel Electrophoresis with Cell Culture Techniques for Cell Structures Examination": 1 + "9th Grade Biology: Combining Gel Electrophoresis and Electron Microscopy for Detailed Cell Structures Analysis": 1 + "3rd Grade English: Enhancing Reading Comprehension with Interactive eBooks": 1 + "Applying Phonics in 3rd Grade English for Improved Reading Comprehension": 1 + "3rd Grade English: Vocabulary Expansion using Flashcards Technique": 1 + "Improving 3rd Grade English Reading Comprehension with Audio Books": 1 + "3rd Grade English: Vocabulary Building with Word Games": 1 + "Using E-Readers for Enhanced Reading Comprehension in 3rd Grade English": 1 + "3rd Grade English: Boosting Vocabulary with Word Association Techniques": 1 + "Reading Comprehension and Vocabulary in 3rd Grade English: A Focus on Graphic Organizers": 1 + "3rd Grade English: Enhancing Reading Comprehension with Story Mapping": 1 + "3rd Grade English: Expanding Vocabulary using Digital Word Walls": 1 + "1st Grade Language Arts: Introducing Phonics and Spelling with Digital Flashcards on Smart Boards using the Jolly Phonics Program": 1 + "1st Grade Language Arts: Exploring Phonics and Spelling with Interactive Digital Flashcards on Smart Boards and iPads": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards on Smart Boards using the Montessori Method": 1 + "1st Grade Language Arts: Mastering Phonics and Spelling with Digital Flashcards and Virtual Reality Tools on Smart Boards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards using Smart Boards and Text-to-Speech Technology": 1 + "1st Grade Language Arts: Learning Phonics and Spelling with Digital Flashcards on Smart Boards using the Orton-Gillingham Approach": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Digital Flashcards on Smart Boards using the Lexia Core5 Reading Program": 1 + "1st Grade Language Arts: Phonics and Spelling Mastery with Digital Flashcards on Smart Boards using Google Classroom Integration": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling with Augmented Reality Digital Flashcards on Smart Boards": 1 + "1st Grade Language Arts: Phonics and Spelling Basics with Digital Flashcards on Smart Boards using the Hooked on Phonics Method.": 1 + "3rd Grade Mathematics: Mastering Fractions using Fraction Bars and Interactive Whiteboards": 1 + "3rd Grade Mathematics: Intro to Fractions via Fraction Bars and Digital Apps": 1 + "3rd Grade Mathematics: Understanding Fractions through Fraction Bars and Manipulatives": 1 + "3rd Grade Mathematics: Learning Fractions with Fraction Bars and Online Games": 1 + "3rd Grade Mathematics: Fraction Bars and Virtual Reality in Fraction Understanding": 1 + "3rd Grade Mathematics: Fraction Comprehension via Fraction Bars and Interactive Online Platforms": 1 + "3rd Grade Mathematics: Grasping Fractions with Fraction Bars and Hands-on Activities": 1 + "3rd Grade Mathematics: Fraction Bars and Classroom Projector for Fraction Exploration": 1 + "3rd Grade Mathematics: Approach to Fractions with Fraction Bars and Math Software": 1 + "3rd Grade Mathematics: Fraction Bars and Tablet Applications for Fraction Familiarity": 1 + "5th Grade Physical Education: Mastering Basketball Strategies": 1 + "5th Grade Physical Education: Understanding Soccer Tactics ": 1 + "5th Grade Physical Education: Exploring Baseball Dynamics ": 1 + "5th Grade Physical Education: Advancing in Volleyball Techniques ": 1 + "5th Grade Physical Education: Harnessing the Power of Cricket Equipment ": 1 + "5th Grade Physical Education: Engaging with Touch Football Technology ": 1 + "5th Grade Physical Education: The Science of Table Tennis ": 1 + "5th Grade Physical Education: A Deep Dive into Badminton Rules ": 1 + "5th Grade Physical Education: Harnessing the Power of Jump Ropes in Double Dutch ": 1 + "5th Grade Physical Education: A Study of Lacrosse Gear.": 1 + "Discovering 1st Grade Mathematics: Understanding Shapes and Numbers through Abacus Manipulation": 1 + "Exploring 1st Grade Mathematics: Shapes and Numbers Using Cuisenaire Rods": 1 + "Diving into 1st Grade Mathematics: Learning Shapes and Numbers with Base Ten Blocks": 1 + "Mastery of 1st Grade Mathematics: Shapes and Numbers through Tangram Puzzles": 1 + "Unveiling 1st Grade Mathematics: Shapes and Numbers Utilizing Geoboards": 1 + "Navigating 1st Grade Mathematics: Shapes and Numbers via Fraction Circles": 1 + "The Journey through 1st Grade Mathematics: Shapes and Numbers with the Aid of Pattern Blocks": 1 + "Exploring 1st Grade Mathematics: Shapes and Numbers Through the Lens of Montessori Materials": 1 + "Enriching 1st Grade Mathematics: Understanding Shapes and Numbers through Digital Math Games": 1 + "Delving into 1st Grade Mathematics: Shapes and Numbers Using the Concept of Number Lines.": 1 + "10th Grade Physical Education: Mastering the Overhand Serve in Volleyball with Video Analysis ": 1 + "Physical Education for 10th Graders: Improving Spike Technique using Sports Biomechanics ": 1 + "10th Grade PE: Fundamentals of Volleyball and Spike Technique using Resistance Training ": 1 + "Physical Education: 10th Grade Volleyball Course Focusing on Setting Techniques with Training Cones ": 1 + "10th Grade PE: Volleyball Tactics and Spike Techniques using Ball Rebounders ": 1 + "Physical Education: 10th Grade Volleyball Fundamentals and Spike Technique with the Use of Plyometrics ": 1 + "10th Grade PE: Volleyball Blocking and Spiking Technique using Video Replay ": 1 + "Physical Education for 10th Graders: Fundamentals of Volleyball and Spike Technique with VR Training ": 1 + "10th Grade PE: Understanding Volleyball Rotation Strategy and Spike Technique": 1 + "10th Grade Physical Education: Volleyball Passing and Spike Technique using Training Bands.": 1 + "6th Grade Science: The Scientific Revolution and the Microscope - An Introduction to Cell Theory": 1 + "The Impact of the Telescope in the Scientific Revolution: A 6th Grade Science Course": 1 + "6th Grade Science: The Scientific Revolution and the Microscope’s Role in Discovering Microorganisms": 1 + "The Scientific Revolution: A Detailed Study of Galileo’s Telescope in 6th Grade Science": 1 + "6th Grade Science: The Influence of the Microscope in the Evolution of Human Anatomy Study": 1 + "The Scientific Revolution: How the Microscope Changed our Understanding of Diseases - A 6th Grade Science Course": 1 + "6th Grade Science: The Scientific Revolution, Microscopes, and the Discovery of Cells": 1 + "6th Grade Science: An In-Depth Look at the Impact of Microscopes on the Scientific Revolution": 1 + "The Scientific Revolution and the Microscope: A 6th Grade Science Course on the Discovery of Bacteria": 1 + "6th Grade Science: The Scientific Revolution and the Microscope - Unveiling the World of Microbiology.": 1 + "Utilizing Anemometers in 5th Grade Science: An In-depth Exploration of Weather Systems with Barometers and Weather Balloons": 1 + "Atmospheric Pressure Measurements: A 5th Grade Science Course on Weather Stations using Barometers, Weather Balloons and Hygrometers": 1 + "Exploring Weather Systems with Thermometers: A Comprehensive 5th Grade Science Course on Atmospheric Pressure": 1 + "Understanding Weather Systems with Barometers, Weather Balloons and Pyranometers: An Advanced 5th Grade Science Course": 1 + "Atmospheric Pressure and Radiosondes: A 5th Grade Science Course on Weather Stations and Weather Balloons": 1 + "Exploring Weather Systems with Barometers, Weather Balloons and Ceilometers: A 5th Grade Science Course on Atmospheric Pressure": 1 + "A 5th Grade Science Course on Weather Systems: In-depth Study using Barometers, Weather Balloons and Disdrometers": 1 + "Anemometers in Action: A 5th Grade Science Course on Atmospheric Pressure in Weather Stations with Barometers and Weather Balloons": 1 + "Atmospheric Pressure and Weather Forecasts: A 5th Grade Science Course using Barometers, Weather Balloons and Weather Radar": 1 + "Weather Station Functions: A 5th Grade Science Course on Atmospheric Pressure using Barometers, Weather Balloons and Rain Gauges.": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Using Interactive Whiteboards and Google Slides": 1 + "Incorporating Padlet in Creative Narration with Flipgrid: 2nd Grade Language Arts Course": 1 + "Creative Narration with Flipgrid and Kahoot: An Interactive 2nd Grade Language Arts Course": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Using Interactive Whiteboards and Storybird": 1 + "Developing 2nd Grade Language Skills through Creative Narration with Flipgrid and Nearpod": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Using Interactive Whiteboards and Puppet Pals": 1 + "2nd Grade Language Arts Course: Creative Narration with Flipgrid and Book Creator on Interactive Whiteboards": 1 + "Engaging 2nd Graders with Creative Narration: Flipgrid and Seesaw Integrated Language Arts Course": 1 + "Creative Narration with Flipgrid: 2nd Grade Language Arts Course Applying Interactive Whiteboards and Edmodo": 1 + "Enhancing Language Skills in 2nd Grade: A Course on Creative Narration with Flipgrid and Scratch Jr. on Interactive Whiteboards.": 1 + "4th Grade Art: Exploring Color Theory with Prismacolor Pencils": 1 + "4th Grade Art: Introduction to Color Wheel and Shading Techniques using Crayola Colored Pencils": 1 + "4th Grade Art: Understanding Primary and Secondary Colors through Colored Pencils": 1 + "4th Grade Art: Using Faber-Castell Colored Pencils to Learn Shading Techniques": 1 + "4th Grade Art: Harnessing Light and Shadow in Art through Colored Pencils": 1 + "4th Grade Art: Discovering Color Harmony with Staedtler Colored Pencils": 1 + "4th Grade Art: Learning Color Theory and Shading Techniques using Digital Art Tools": 1 + "4th Grade Art: Mastering Tints, Tones and Shades with Colored Pencils": 1 + "4th Grade Art: Analyzing Color Psychology through Colored Pencil Artwork": 1 + "4th Grade Art: Exploring Monochromatic Art using Colored Pencils.": 1 + "8th Grade Social Studies: Decoding Democracy and Government Using the Caesar Cipher as a Cryptography Tool": 1 + "Unraveling Government Systems: An 8th Grade Exploration of Democracy with Enigma Machine Cryptography": 1 + "8th Grade Studies: Understanding Democracy Using Cryptanalysis Technology ": 1 + "Decoding Democracy: An 8th Grade Study of Government Systems Through Hash Functions": 1 + "8th Grade Social Studies: Democracy Exploration with the Use of Quantum Cryptography": 1 + "The Code of Democracy: 8th Grade Social Studies Using Asymmetric Cryptography Tools": 1 + "8th Grade Decoding Democracy: A Deep Dive into Government Systems with Steganography": 1 + "Social Studies for 8th Grade: Decoding Democracy and Government using Digital Signatures": 1 + "8th Grade Exploration of Democracy: Decoding Government Systems with Elliptic Curve Cryptography": 1 + "8th Grade Social Studies: Democracy through the Lens of Cryptography with the Advanced Encryption Standard (AES).": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil and Paper": 1 + "3rd Grade Language Arts: Writing Simple Sentences using Microsoft Word": 1 + "3rd Grade Language Arts: Crafting Simple Sentences with Sentence Diagramming": 1 + "3rd Grade Language Arts: Writing Simple Sentences using Digital Tablets": 1 + "3rd Grade Language Arts: Constructing Simple Sentences with Parts of Speech": 1 + "3rd Grade Language Arts: Writing Simple Sentences using Interactive Whiteboard": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Storytelling Techniques": 1 + "3rd Grade Language Arts: Writing Simple Sentences using Sentence Puzzles": 1 + "3rd Grade Language Arts: Building Simple Sentences with Grammar Games": 1 + "3rd Grade Language Arts: Writing Simple Sentences using Online Learning Platforms": 1 + "2nd Grade Language Arts: Creative Storytelling using Storyboarding Technique with Microsoft Paint": 1 + "Developing Narratives in 2nd Grade Language Arts: Utilizing Storyboarding and Google Slides": 1 + "2nd Grade Language Arts: Enhancing Creative Storytelling through Storyboarding and iPad Apps": 1 + "2nd Grade Language Arts: Interactive Storyboarding Technique using Smartboard Technology": 1 + "Storytelling Mastery: Using Storyboarding Technique and Adobe Illustrator in 2nd Grade Language Arts": 1 + "2nd Grade Language Arts: Storyboarding Technique and Digital Storytelling with ScratchJr": 1 + "Utilizing PowerPoint in 2nd Grade Language Arts: Storyboarding for Creative Storytelling": 1 + "2nd Grade Language Arts: Creative Storytelling through Storyboarding and Comic Strip Creation": 1 + "2nd Grade Language Arts: Storyboarding Technique meets Augmented Reality for Storytelling": 1 + "Using Storyboard That in 2nd Grade Language Arts: A New Approach to Creative Storytelling.": 1 + "Fourth Grade Music: Exploring Rhythms and Beats with a Metronome": 1 + "Fourth Grade Music: Discovering Rhythms and Beats via GarageBand": 1 + "Fourth Grade Music: Navigating Rhythms and Beats using Drum Kit": 1 + "Fourth Grade Music: Learning Rhythms and Beats through Digital Audio Workstations": 1 + "Fourth Grade Music: Studying Rhythms and Beats with Beat Making Software": 1 + "Fourth Grade Music: Unraveling Rhythms and Beats using Interactive Whiteboard": 1 + "Fourth Grade Music: Mastering Rhythms and Beats with Electronic Keyboards": 1 + "Fourth Grade Music: Delving into Rhythms and Beats using Music Sequencers": 1 + "Fourth Grade Music: Understanding Rhythms and Beats through Music Notation Software": 1 + "Fourth Grade Music: Exploring Rhythms and Beats using iPad Music Apps": 1 + "6th Grade Health: Basic Nutrition Knowledge through MyPlate Guidelines": 1 + "6th Grade Health: Understanding Basic Nutrition with the Food Pyramid": 1 + "6th Grade Health: Basic Nutrition Knowledge and Calorie Counting": 1 + "6th Grade Health: Utilizing Nutritional Facts Labels for Basic Nutrition": 1 + "6th Grade Health: Basic Nutrition Knowledge and Dietary Fiber Importance": 1 + "6th Grade Health: Gaining Basic Nutrition Knowledge through Meal Planning": 1 + "6th Grade Health: Basic Nutrition and the Role of Proteins": 1 + "6th Grade Health: Basic Nutrition Knowledge with a Focus on Vitamins and Minerals": 1 + "6th Grade Health: Understanding Basic Nutrition using Dietary Guidelines": 1 + "6th Grade Health: Basic Nutrition Knowledge - The Importance of Hydration.": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Focus on Tennis and Racket Technology": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Key Concepts in Golf Swing Mechanics": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Exploring Archery and Bow Technology": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Understanding the Physics of Table Tennis": 1 + "9th Grade Physical Education: Introduction to Individual Sports - The Art of Badminton and Shuttlecock Design": 1 + "9th Grade Physical Education: Introduction to Individual Sports - In-depth Study of Fencing and Foil Techniques": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Bowling and Ball Dynamics": 1 + "9th Grade Physical Education: Introduction to Individual Sports - The Science of Squash Rackets": 1 + "9th Grade Physical Education: Introduction to Individual Sports - Examining Track and Field, Focus on Javelin Throw": 1 + "9th Grade Physical Education: Introduction to Individual Sports - The Impact of Technology in Swimming.": 1 + "2nd Grade Mathematics: Utilizing Abacus for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Multiplying and Dividing Fractions with Grids Using Microsoft Excel": 1 + "Exploring the Number Line: 2nd Grade Mathematics Focused on Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Leveraging Manipulatives for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Applying the Area Model to Multiply and Divide Fractions with Grids": 1 + "2nd Grade Mathematics: Using Virtual Manipulatives for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Incorporating Fraction Bars to Multiply and Divide Fractions with Grids": 1 + "2nd Grade Mathematics: Employing the Montessori Method for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Fraction Multiplication and Division with Grids and the Use of Fraction Circles": 1 + "2nd Grade Mathematics: Utilizing Fraction Strips for Multiplying and Dividing Fractions with Grids": 1 + "7th Grade Physical Education: Mastering Balance Beam Techniques with Flexibility Bands in Gymnastics": 1 + "Physical Education for 7th Graders: Incorporating Flexibility Training in Balance Beam Techniques using Stability Balls ": 1 + "7th Grade Gymnastics: Flexibility Training and Balance Beam Techniques with the Aid of Resistance Bands": 1 + "Gymnastics for 7th Grade: Enhancing Balance Beam Performance through Pilates Flexibility Exercises": 1 + "Physical Education - 7th Grade: Balance Beam Techniques and Flexibility Training using Yoga Concepts": 1 + "7th Grade Physical Education: Exploring Gymnastics’ Balance Beam Techniques with a Focus on Flexibility Training using Foam Rollers": 1 + "Gymnastics in 7th Grade: Improving Balance Beam Techniques through Flexibility Training with Stretching Straps": 1 + "7th Grade PE: Incorporating TRX Training in Balance Beam Techniques for Improved Flexibility": 1 + "Physical Education for 7th Grade: Utilizing Exercise Balls for Enhanced Flexibility in Balance Beam Techniques": 1 + "Gymnastics for 7th Graders: Balance Beam Techniques and Flexibility Training using Therabands.": 1 + "3rd Grade English: Exploring Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate.": 1 + "3rd Grade English: Storytelling in Various Cultures Using Shadow Puppetry with Overhead Projectors and Stop-Motion Animation.": 1 + "3rd Grade English: Incorporating iPad Apps in Storytelling Through Shadow Puppetry and Stop-Motion Animation.": 1 + "3rd Grade English: Understanding Cultural Narratives through Shadow Puppetry and Stop-Motion Animation with Lego Figures.": 1 + "3rd Grade English: Storytelling in Diverse Cultures Using Shadow Puppetry with Laser Cutters and Stop-Motion Animation Techniques.": 1 + "3rd Grade English: Employing Green Screen Technology in Storytelling Through Shadow Puppetry and Stop-Motion Animation.": 1 + "3rd Grade English: Using LED Lights in Shadow Puppetry and Stop-Motion Animation for Storytelling in Various Cultures.": 1 + "3rd Grade English: Utilizing Digital Cameras for Stop-Motion Animation and Shadow Puppetry in Cultural Storytelling.": 1 + "3rd Grade English: Implementing Raspberry Pi in Storytelling Through Shadow Puppetry and Stop-Motion Animation Techniques.": 1 + "3rd Grade English: Exploring Cultural Stories via Shadow Puppetry with 3D Printing and Stop-Motion Animation Techniques.": 1 + "6th Grade Social Studies: Exploring Cultural Diversity through Storytelling": 1 + "6th Grade Social Studies: Understanding Cultural Diversity using Virtual Reality": 1 + "6th Grade Social Studies: Cultural Diversity and its Impact studied through Documentaries": 1 + "6th Grade Social Studies: Understanding Cultural Diversity through Global Cuisine": 1 + "6th Grade Social Studies: Analyzing Cultural Diversity through Anthropology": 1 + "6th Grade Social Studies: Understanding Cultural Diversity through Folklore and Myths": 1 + "6th Grade Social Studies: Cultural Diversity Explored through Art and Music": 1 + "6th Grade Social Studies: Understanding Cultural Diversity using Interactive Maps": 1 + "6th Grade Social Studies: Cultural Diversity Examination through Language Studies": 1 + "6th Grade Social Studies: Understanding Cultural Diversity through Historical Events": 1 + "8th Grade History: The Impact of Industrial Cotton Mills on Ecosystems Using GIS Mapping and 10 Regenerative Approaches": 1 + "8th Grade History: Cotton Mills’ Role in Ecosystem Disruption: The Loom Technology and 10 Sustainable Solutions": 1 + "8th Grade History: The Ecosystem Impact of the Spinning Jenny in Cotton Mills and 10 Restoration Strategies": 1 + "8th Grade History: The Power Loom in Cotton Mills: Its Ecosystem Effects and 10 Ecological Restoration Methods": 1 + "8th Grade History: Cotton Mills and the Environment: The Role of the Spinning Mule and 10 Regenerative Techniques": 1 + "8th Grade History: The Impact of Water Frame in Cotton Mills on Ecosystems and 10 Potential Remedies": 1 + "8th Grade History: Cotton Mills and Ecological Disruption: The Influence of the Flying Shuttle and 10 Restoration Approaches": 1 + "8th Grade History: The Environmental Impact of Cotton Gins in Cotton Mills and 10 Solutions for Regeneration": 1 + "8th Grade History: Cotton Mills and the Environment: The Role of the Throstle Machine and 10 Sustainable Solutions": 1 + "8th Grade History: The Impact of the Carding Machine in Cotton Mills on Ecosystems and 10 Regenerative Strategies": 1 + "6th Grade Social Studies: Deciphering Egypt’s Ancient Civilizations and the Role of Papyrus in Hieroglyphics": 1 + "6th Grade Social Studies: Unraveling Egypt’s Ancient Civilizations through the Lens of the Rosetta Stone and Hieroglyphics": 1 + "6th Grade Social Studies: Exploring Egypt’s Ancient Civilizations and the Significance of Pyramids in Hieroglyphic Communication": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations: The Influence of Solar Calendars and Hieroglyphics": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Impact of Chariots on Hieroglyphic Representations": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations - Understanding Hieroglyphics with the Help of Scribes": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations: Decoding Hieroglyphics through the Study of Obelisks": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Role of Hieroglyphics in Mummification Rituals": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations: The Contribution of the Nile River to Hieroglyphic Symbolism": 1 + "6th Grade Social Studies: Understanding Egypt’s Ancient Civilizations through the Prism of Pharaohs and Hieroglyphics": 1 + "8th Grade World Cultures: Analyzing Globalization through North American Indigenous Cultures using Fusion 360 and 3D Printing Technology": 1 + "8th Grade World Cultures: Exploring Globalization through North American Urban Studies using CAD Software and 3D Printing Technology": 1 + "8th Grade World Cultures: Deciphering Globalization through North American Economic Policies using Tinkercad and 3D Printing Technology": 1 + "8th Grade World Cultures: Understanding Globalization through North American Immigration Patterns using SketchUp and 3D Printing Technology": 1 + "8th Grade World Cultures: Interpreting Globalization through North American Environmental Studies using AutoCAD and 3D Printing Technology": 1 + "8th Grade World Cultures: Examining Globalization through North American Political Movements using Rhino 3D and 3D Printing Technology": 1 + "8th Grade World Cultures: Investigating Globalization through North American Technological Advancements using Blender and 3D Printing Technology": 1 + "8th Grade World Cultures: Explicating Globalization through North American Social Issues using 3D Slash and 3D Printing Technology": 1 + "8th Grade World Cultures: Dissecting Globalization through North American Historical Events using SolidWorks and 3D Printing Technology": 1 + "8th Grade World Cultures: Unraveling Globalization through North American Artistic Expression using FreeCAD and 3D Printing Technology": 1 + "2nd Grade Social Studies: Understanding the Role of MRI Machines and Radiologists in Our Community": 1 + "2nd Grade Social Studies: The Use of MRI Machines and CT Scanners in Our Local Healthcare": 1 + "2nd Grade Social Studies: The Importance of MRI Machines and Sonography in Our Health System": 1 + "2nd Grade Social Studies: Exploring the Impact of MRI Machines and X-Ray Technology in Our Community": 1 + "2nd Grade Social Studies: MRI Machines, Ultrasound Technology and Their Significance in Our Community": 1 + "2nd Grade Social Studies: MRI Machines and Nuclear Medicine – A Look into Our Healthcare System": 1 + "2nd Grade Social Studies: Unveiling the Importance of MRI Machines and PET Scans in Our Community": 1 + "2nd Grade Social Studies: A Deep Dive into the Role of MRI Machines and Radiation Therapy in Our Community": 1 + "2nd Grade Social Studies: MRI Machines and Digital Radiography: Their Value in Our Community": 1 + "2nd Grade Social Studies: The Relevance of MRI Machines and Magnetic Resonance Angiography in Our Community’s Health": 1 + "Our Green World: Exploring the Carbon Cycle using Weather Stations and Satellite Imagery - A First Grade Environmental Studies Course": 1 + "Understanding the Carbon Cycle: A Deep Dive into Weather Stations and Photosynthesis - First Grade Environmental Studies": 1 + "Environmental Studies for First Graders: The Carbon Cycle and Weather Stations with a Focus on Greenhouse Gases": 1 + "Our Green World: A Comprehensive Study of Carbon Cycle using Weather Stations and Climate Models for First Graders": 1 + "First Grade Environmental Studies: Carbon Cycle, Weather Stations, and the Role of Deforestation ": 1 + "Investigating the Carbon Cycle: Weather Stations, Oceanic Carbon Sinks and First Grade Environmental Studies": 1 + "Environmental Studies for First Graders: Weather Stations, Carbon Cycle, and the Impact of Fossil Fuels": 1 + "Our Green World: First Grade Exploration of the Carbon Cycle, Weather Stations, and Solar Energy": 1 + "The Carbon Cycle and Weather Stations: A First Grade Study on Environmental Studies and the Importance of Recycling": 1 + "Weather Stations and the Carbon Cycle: A Comprehensive First Grade Environmental Studies Course on Soil Carbon Sequestration.": 1 + "2nd Grade Elementary Music: Introduction to Rhythm using Percussion Instruments": 1 + "2nd Grade Elementary Music: Discovering Rhythm through Drumming": 1 + "2nd Grade Elementary Music: Rhythm Basics with Clapping Exercises": 1 + "2nd Grade Elementary Music: Understanding Rhythm through Metronome Practice": 1 + "2nd Grade Elementary Music: Exploring Rhythm with Music Software": 1 + "2nd Grade Elementary Music: Introduction to Rhythm through Beatboxing": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion": 1 + "2nd Grade Elementary Music: Rhythm and Timing through Dance Moves": 1 + "2nd Grade Elementary Music: Rhythm Essentials with Rhythm Sticks": 1 + "2nd Grade Elementary Music: Introduction to Rhythm via Interactive Music Apps": 1 + "4th Grade Social Studies: The American Revolution - Exploration of the Telegraph and the Printing Press": 1 + "4th Grade Social Studies: The American Revolution - A Deep Dive into the Telegraph and the Cotton Gin": 1 + "4th Grade Social Studies: Analyzing the Role of the Telegraph and the Steam Engine during the American Revolution": 1 + "4th Grade Social Studies: Unveiling the American Revolution - The Telegraph Meets the Spinning Jenny": 1 + "4th Grade Social Studies: The American Revolution - From the Telegraph to the Sewing Machine": 1 + "4th Grade Social Studies: The American Revolution - The Telegraph and its Comparison to the Power Loom": 1 + "4th Grade Social Studies: The American Revolution and the Telegraph - Understanding the Impact of the Water Frame": 1 + "4th Grade Social Studies: The American Revolution - Exploring the Telegraph and the Flying Shuttle": 1 + "4th Grade Social Studies: A Glimpse of the American Revolution - The Telegraph vs. the Spinning Mule": 1 + "4th Grade Social Studies: The American Revolution - The Telegraph and the Pivotal Role of the Hot Air Balloon.": 1 + "10th Grade Art: Mastering the Use of Layers in Digital Art through ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Exploring Color Theory in Digital Art using ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Understanding Digital Art through ArtRage’s Watercolor Brush and Stylus Tools": 1 + "10th Grade Art: Enhancing Digital Art Skills with ArtRage’s Watercolor Brush and Blend Modes": 1 + "10th Grade Art: Crafting Textures in Digital Art using ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: Developing Perspective in Digital Art with ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Understanding Digital Art through ArtRage’s Watercolor Brush and Layer Masks": 1 + "10th Grade Art: Delving into Composition in Digital Art using ArtRage’s Watercolor Brush": 1 + "10th Grade Art: Exploring Digital Art’s Depth with ArtRage’s Watercolor Brush and Gradients.": 1 + "2nd Grade Art: Basic Pencil Drawing Techniques": 1 + "2nd Grade Art: Introduction to Pastel Drawing Techniques": 1 + "2nd Grade Art: Basic Drawing Techniques using Charcoal": 1 + "2nd Grade Art: Exploring Watercolor Drawing Techniques": 1 + "2nd Grade Art: Basic Drawing Techniques with Crayons": 1 + "2nd Grade Art: Learning Basic Sketching Techniques": 1 + "2nd Grade Art: Basic Drawing Techniques using Digital Tablets": 1 + "2nd Grade Art: Basic Drawing Techniques and Color Theory": 1 + "2nd Grade Art: Basic Drawing Techniques with Oil Pastels": 1 + "2nd Grade Art: Exploring Basic Drawing Techniques with Graphite Pencils": 1 + "8th Grade Physical Education: Fitness and Health Basics with Treadmill Training ": 1 + "8th Grade Physical Education: Incorporating Heart Rate Monitors into Fitness and Health Basics ": 1 + "8th Grade Physical Education: Fitness and Health Basics with Focus on Nutritional Concepts ": 1 + "8th Grade Physical Education: Fitness and Health Basics using Resistance Bands ": 1 + "8th Grade Physical Education: Fitness and Health Basics with Step Aerobics Techniques ": 1 + "8th Grade Physical Education: Fitness and Health Basics Exploring Yoga Principles ": 1 + "8th Grade Physical Education: Fitness and Health Basics with Kettlebell Exercises ": 1 + "8th Grade Physical Education: Fitness and Health Basics using Body Mass Index (BMI) Calculations ": 1 + "8th Grade Physical Education: Fitness and Health Basics Incorporating Basketball Skills ": 1 + "8th Grade Physical Education: Fitness and Health Basics with Swimming Techniques.": 1 + "4th Grade History: The Influence of The First American Settlers’ Use of the Wheel and the Loom in Trade Development": 1 + "4th Grade History: The Impact of the Cartwheel on Trade Among the First American Settlers": 1 + "4th Grade History: The Role of the Spinning Wheel in the Trade Evolution of the First American Settlers": 1 + "4th Grade History: Unraveling the Impact of the Wheel and the Printing Press on Trade Among the First American Settlers": 1 + "4th Grade History: The First American Settlers - Trade Development through the Wheel and the Plough": 1 + "4th Grade History: The Influence of the Wheel and the Compass on the Trade Patterns of the First American Settlers": 1 + "4th Grade History: The First American Settlers - The Wheel, the Pottery Wheel, and Their Role in Trade Development": 1 + "4th Grade History: The Wheel and the Watermill - Pioneering Tools of Trade Among the First American Settlers": 1 + "4th Grade History: The Role of the Wheel and the Telescope in the Trade Expansion of the First American Settlers": 1 + "4th Grade History: Evolution of Trade Among the First American Settlers - The Wheel and the Impact of the Clock": 1 + "3rd Grade Language Arts: Exploring Wildlife through Storytelling and iPad Applications": 1 + "3rd Grade Language Arts: Interactive Reading on Wildlife using Smartboard Technology": 1 + "3rd Grade Language Arts: Immersive Learning about Wildlife through Virtual Reality Story Reading": 1 + "3rd Grade Language Arts: Engaging Wildlife Stories with Text-to-Speech Software": 1 + "3rd Grade Language Arts: Wildlife Adventures through Augmented Reality Reading Sessions": 1 + "3rd Grade Language Arts: Reading and Understanding Wildlife Stories using E-Book Technology": 1 + "3rd Grade Language Arts: Wildlife Story Exploration using Audiobook Tools": 1 + "3rd Grade Language Arts: Learning about Wildlife through Interactive Digital Stories": 1 + "3rd Grade Language Arts: Wildlife Storytelling with Kindle E-Reader Technology": 1 + "3rd Grade Language Arts: Hands-on Wildlife Reading Lessons using Tablet Technology.": 1 + "6th Grade Social Studies: Exploring the Impact of Fire on the Invention of the Wheel in Technology and Innovation History": 1 + "6th Grade Social Studies: The Role of Fire in the Development of Early Metallurgy and Technological Progress": 1 + "6th Grade Social Studies: Fire and Its Influence on Bronze Age Technology and Innovation": 1 + "6th Grade Social Studies: Fire’s Impact on the Evolution of Cooking Utensils in Technology and Innovation History": 1 + "6th Grade Social Studies: Understanding the Impact of Fire on the Development of Glassmaking in Ancient Civilizations": 1 + "6th Grade Social Studies: The Role of Fire in the Invention of Steam Power in Technology and Innovation History": 1 + "6th Grade Social Studies: Fire’s Contribution to the Advancement of Smithing Techniques in Medieval Technology": 1 + "6th Grade Social Studies: Fire and Its Impact on the Development of Gunpowder in Technology and Innovation History": 1 + "6th Grade Social Studies: The Significance of Fire in the Evolution of Ceramic Technology and Innovation": 1 + "6th Grade Social Studies: Understanding Fire’s Role in the Invention of the Printing Press in Technology and Innovation History.": 1 + "9th Grade Music: Exploring Classical Compositions through Piano": 1 + "9th Grade Music: Understanding Classical Compositions with Violin": 1 + "9th Grade Music: Unraveling Classical Compositions using Music Theory": 1 + "9th Grade Music: Analyzing Classical Compositions through Digital Audio Workstations": 1 + "9th Grade Music: Understanding Classical Compositions and Harmony": 1 + "9th Grade Music: Dissecting Classical Compositions using Orchestration": 1 + "9th Grade Music: Understanding Classical Compositions through Conducting Techniques": 1 + "9th Grade Music: Examining Classical Compositions with Sheet Music": 1 + "9th Grade Music: Decoding Classical Compositions using Tempo and Rhythm": 1 + "9th Grade Music: Understanding Classical Compositions through Melodic Analysis": 1 + "5th Grade Language Arts: Exploring The World of Fiction with Story Mapping": 1 + "5th Grade Language Arts: The World of Fiction through Digital Storytelling": 1 + "5th Grade Language Arts: Understanding The World of Fiction with E-Books": 1 + "5th Grade Language Arts: The World of Fiction and the Art of Visualization": 1 + "5th Grade Language Arts: The World of Fiction - An Introduction to Audiobooks": 1 + "5th Grade Language Arts: The World of Fiction Explored through Interactive Whiteboards": 1 + "5th Grade Language Arts: The World of Fiction and the Role of Podcasts": 1 + "5th Grade Language Arts: The World of Fiction Unveiled with Augmented Reality": 1 + "5th Grade Language Arts: The World of Fiction - A Journey with Virtual Reality": 1 + "5th Grade Language Arts: The World of Fiction Explored Through Blogging": 1 + "4th Grade History: Exploring the American Revolution with Lenovo Mirage Solo VR and Google Expeditions": 1 + "4th Grade History: Immersive Learning of the American Revolution using Lenovo Mirage Solo VR and Augmented Reality": 1 + "4th Grade History: The American Revolution in VR via Lenovo Mirage Solo and 3D Visualization": 1 + "4th Grade History: Discovering the American Revolution using Lenovo Mirage Solo VR and Interactive Timelines": 1 + "4th Grade History: Understanding the American Revolution through Lenovo Mirage Solo VR and Virtual Field Trips": 1 + "4th Grade History: Experiencing the American Revolution with Lenovo Mirage Solo VR and Digital Storytelling": 1 + "4th Grade History: Navigating the American Revolution using Lenovo Mirage Solo VR and Interactive Mapping": 1 + "4th Grade History: Virtual Journey through the American Revolution using Lenovo Mirage Solo and 360-Degree Videos": 1 + "4th Grade History: Lenovo Mirage Solo VR Exploration of the American Revolution with Gamified Learning": 1 + "4th Grade History: Engaging with the American Revolution through Lenovo Mirage Solo VR and Virtual Reality Simulations": 1 + "2nd Grade Science: Exploring Animal Habitats Using Binoculars and Documentaries": 1 + "2nd Grade Science: Understanding Animal Habitats Through Interactive Apps and Documentaries": 1 + "2nd Grade Science: Analyzing Animal Habitats Using Microscopes and Documentaries": 1 + "2nd Grade Science: Investigating Animal Habitats Through Virtual Reality and Documentaries": 1 + "2nd Grade Science: Understanding Animal Habitats with Drones and Documentary Viewing": 1 + "2nd Grade Science: Learning about Animal Habitats Through 3D Modeling and Documentaries": 1 + "2nd Grade Science: Understanding Animal Habitats Through Augmented Reality and Documentaries": 1 + "2nd Grade Science: Discovering Animal Habitats Using Robotics and Documentary Viewing": 1 + "2nd Grade Science: Exploring Animal Habitats Through Telescopes and Documentaries": 1 + "2nd Grade Science: Understanding Animal Habitats Through Satellite Imagery and Documentaries": 1 + "9th Grade Health: Understanding Nutrition and Wellness through MyFitnessPal Calorie Counting and BMI Calculation": 1 + "9th Grade Health: Nutrition and Wellness Comprehension using Fitbit Tracking and Calorie Counting": 1 + "Health Education: Nutrition and Wellness Analysis through Calorie Counting and BMI Calculation with Bioelectrical Impedance Analysis ": 1 + "9th Grade Health: Nutrition Mastery through Google Fit Calorie Tracking and BMI Calculation ": 1 + "Health Curriculum: Nutrition and Wellness Knowledge via Calorie Counting and BMI Calculation using Smart Scales": 1 + "9th Grade Health: Nutrition Comprehension through Calorie Counting and BMI Calculation using Apple Health App": 1 + "Nutrition and Wellness Education: Comprehending Health through Calorie Counting and BMI Calculation with Garmin Fitness Tracker": 1 + "Health Studies: Nutrition and Wellness Understanding through Calorie Counting and BMI Calculation utilizing Ketogenic Diet ": 1 + "9th Grade Health: Nutrition and Wellness Insights through Calorie Counting and BMI Calculation with the help of a Nutritionist": 1 + "9th Grade Health: Nutrition and Wellness Grasp through Calorie Counting and BMI Calculation using the concept of Macronutrient Balancing.": 1 + "2nd Grade Music: Exploring Rhythm Basics with Ableton MIDI Controllers through Soundtrap": 1 + "2nd Grade Music: Investigating Rhythm Fundamentals with Novation MIDI Controllers on Soundtrap": 1 + "2nd Grade Music: Understanding Rhythm Structures with Akai Professional MIDI Controllers via Soundtrap": 1 + "2nd Grade Music: Learning Rhythm Essentials with M-Audio MIDI Controllers through Soundtrap": 1 + "2nd Grade Music: Enhancing Rhythm Concepts with Korg MIDI Controllers via Soundtrap": 1 + "2nd Grade Music: Mastering Rhythm Principles with Roland MIDI Controllers on Soundtrap": 1 + "2nd Grade Music: Discovering Rhythm Core Ideas with Arturia MIDI Controllers via Soundtrap": 1 + "2nd Grade Music: Unveiling Rhythm Elements with Behringer MIDI Controllers through Soundtrap": 1 + "2nd Grade Music: Grasping Rhythm Basics with Nektar MIDI Controllers on Soundtrap": 1 + "2nd Grade Music: Diving into Rhythm Foundations with Yamaha MIDI Controllers via Soundtrap": 1 + "Evaluating the Impact of Rainwater Harvesting Via Greywater Systems on Native Plants Using Python-Based Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "Analysis of Rainwater Harvesting Impact Using Greywater Systems on Native Plants Using TensorFlow Machine Learning in 2nd Grade Environmental Studies": 1 + "Investigating Rainwater Harvesting Effect on Native Plants Using Greywater Systems and Keras Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "Investigation of Rainwater Harvesting Influence Using Greywater Systems on Native Plants with Scikit-Learn Machine Learning in 2nd Grade Environmental Studies": 1 + "Study of Rainwater Harvesting Impact on Native Plants Using Greywater Systems and PyTorch Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "Research on Rainwater Harvesting Impact Using Greywater Systems on Native Plants Using Decision Tree Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "Understanding the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants Using Convolutional Neural Networks in 2nd Grade Environmental Studies": 1 + "Exploring Rainwater Harvesting Effects Using Greywater Systems on Native Plants Using Support Vector Machine Learning in 2nd Grade Environmental Studies": 1 + "In-depth Study on Rainwater Harvesting Impact Using Greywater Systems on Native Plants Using Random Forest Machine Learning Algorithms in 2nd Grade Environmental Studies": 1 + "Detailed Analysis of Rainwater Harvesting Using Greywater Systems on Native Plants Using Deep Learning Neural Networks in 2nd Grade Environmental Studies": 1 + "1st Grade Elementary English: Enhancing Basic Vocabulary through Storytelling": 1 + "1st Grade Elementary English: Building Basic Vocabulary using Flashcards": 1 + "1st Grade Elementary English: Developing Basic Vocabulary Skills with Digital Games": 1 + "1st Grade Elementary English: Improving Vocabulary through Interactive Whiteboard Activities": 1 + "1st Grade Elementary English: Strengthening Basic Vocabulary with Picture Books": 1 + "1st Grade Elementary English: Expanding Vocabulary through Phonics-based Learning": 1 + "1st Grade Elementary English: Nurturing Vocabulary Skills with Augmented Reality Apps": 1 + "1st Grade Elementary English: Boosting Vocabulary using Animated Video Lessons": 1 + "1st Grade Elementary English: Building Basic Vocabulary through Creative Writing Exercises": 1 + "1st Grade Elementary English: Enhancing Vocabulary Skills with Spelling Bees.": 1 + "4th Grade Geography: Exploring Continents with Google Earth Satellite Photos and Landsat Imagery ": 1 + "4th Grade Geography: Analyzing Continents using Drone Photography and Landsat Imagery": 1 + "4th Grade Geography: Deciphering Continents with Infrared Imaging and Landsat Imagery": 1 + "4th Grade Geography: Investigating Continents through 3D Mapping Technology and Landsat Imagery": 1 + "4th Grade Geography: Surveying Continents using GPS Technology and Landsat Imagery": 1 + "4th Grade Geography: Examining Continents with Augmented Reality Technology and Landsat Imagery": 1 + "4th Grade Geography: Unveiling Continents using Lidar Technology and Landsat Imagery": 1 + "4th Grade Geography: Scrutinizing Continents with Machine Learning Algorithms and Landsat Imagery": 1 + "4th Grade Geography: Discovering Continents through Aerial Photography and Landsat Imagery": 1 + "4th Grade Geography: Observing Continents with Geospatial Analysis and Landsat Imagery": 1 + "9th Grade Music: Exploring Sibelius Software Through the Study of Chord Progression": 1 + "9th Grade Music: Symphony of Sounds - A Study of Music Theory with Sibelius Software and MIDI Keyboards": 1 + "9th Grade Music: A Deep Dive into Notation with Sibelius Software": 1 + "9th Grade Music: Symphony of Sounds - Understanding Rhythm through Sibelius Software": 1 + "9th Grade Music: Sibelius Software and the Science of Sound Waves - A Music Theory Study": 1 + "9th Grade Music: Analysing Sheet Music Through the Sibelius Software Platform": 1 + "9th Grade Music: Symphony of Sounds - Learning Music Theory with Sibelius Software and Digital Audio Workstations": 1 + "9th Grade Music: Harmony and Melody - A Study of Music Theory using Sibelius Software": 1 + "9th Grade Music: Sibelius Software and the Art of Music Composition": 1 + "9th Grade Music: Symphony of Sounds - Unraveling the Mysteries of Music Theory with Sibelius Software and Virtual Instruments.": 1 + "2nd Grade Language Arts: Enhancing Storytelling through Minecraft Gaming Concepts": 1 + "2nd Grade Language Arts: Utilizing Scratch Programming for Storytelling Enhancement": 1 + "2nd Grade Language Arts: Storytelling Augmentation with Virtual Reality Gamification": 1 + "2nd Grade Language Arts: Improving Storytelling Skills with Lego Digital Designer Concepts": 1 + "2nd Grade Language Arts: Storytelling Enhancement using Google Earth Gamification Techniques": 1 + "2nd Grade Language Arts: Storytelling Development through Augmented Reality Gaming Concepts": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Roblox Game Creation Techniques": 1 + "2nd Grade Language Arts: Storytelling Skill Enhancement through Kahoot Gamification Methods": 1 + "2nd Grade Language Arts: Applying Prodigy Math Game Concepts for Storytelling Skills": 1 + "2nd Grade Language Arts: Storytelling Enhancement using Kodu Game Lab Gamification Techniques": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Interactive Whiteboards, Google Slides and Padlet": 1 + "2nd Grade Language Arts: Boosting Narration Skills with Adobe Spark, Whiteboards and Padlet": 1 + "2nd Grade Language Arts: Storytelling Enhancement via Smart Boards, Padlet and Flipgrid": 1 + "2nd Grade Language Arts: Improving Storytelling with Interactive Whiteboards, Padlet and Canva": 1 + "2nd Grade Language Arts: Storytelling with Interactive Whiteboards, Padlet and the Concept of Digital Storyboarding": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Interactive Whiteboards, Padlet and Prezi": 1 + "2nd Grade Language Arts: Advancing Storytelling with Interactive Whiteboards, Padlet and the Use of Podcasts": 1 + "2nd Grade Language Arts: Storytelling Enhancement with Interactive Whiteboards, Padlet and Microsoft Sway": 1 + "2nd Grade Language Arts: Boosting Storytelling with Interactive Whiteboards, Padlet and Pixton Comic Maker": 1 + "2nd Grade Language Arts: Improving Narrative Skills with Interactive Whiteboards, Padlet and the Concept of Virtual Reality Storytelling.": 1 + "Implementing the MyFitnessPal App for Achieving Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Utilizing Fitbit Technology for Realizing Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Achieving Fitness Goals using TRX System, Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Realizing Fitness Goals with Calisthenics, Smart Scales and HIIT Workouts in 9th Grade Physical Education": 1 + "Utilizing Apple Watch for Monitoring Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Achieving Fitness Goals with Calisthenics, Smart Scales and the Concept of Progressive Overload in 9th Grade Physical Education": 1 + "Incorporating Yoga into Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Using Resistance Bands for Realizing Fitness Goals with Calisthenics and Smart Scales in 9th Grade Physical Education": 1 + "Realizing Fitness Goals with Calisthenics, Smart Scales, and Plyometric Exercises in 9th Grade Physical Education": 1 + "Achieving Fitness Goals using Garmin Fitness Tracker, Calisthenics and Smart Scales in 9th Grade Physical Education.": 1 + "1st Grade Science: Exploring the Solar System with Telescopes": 1 + "1st Grade Science: Introduction to the Planets using 3D Models": 1 + "1st Grade Science: Understanding the Solar System through Virtual Reality": 1 + "1st Grade Science: Journey through the Solar System with Robotics": 1 + "1st Grade Science: Basics of the Solar System using Augmented Reality": 1 + "1st Grade Science: The Solar System and the Hubble Space Telescope": 1 + "1st Grade Science: Interactive Learning about the Solar System with Apps": 1 + "1st Grade Science: The Solar System and its Planets through Microscope Studies": 1 + "1st Grade Science: The Solar System Explored through Planetarium Visits": 1 + "1st Grade Science: Learning about the Solar System with Computer Simulations": 1 + "10th Grade Social Studies: An In-depth Study of World Civilizations and the Evolution of Democracy with Focus on the Printing Press": 1 + "Understanding Democracy: A Detailed Course on the Rise of World Civilizations in 10th Grade Social Studies using Map Reading": 1 + "Introduction to World Civilizations: The Role of the Wheel and its Impact on Democracy in 10th Grade Social Studies": 1 + "10th Grade Social Studies: Exploring World Civilizations and Democracy through the Lens of Agricultural Innovations": 1 + "Decoding Democracy: An Analysis of World Civilizations with Emphasis on Writing Systems in 10th Grade Social Studies": 1 + "Understanding World Civilizations: A Detailed Study on the Concept of Democracy and the Influence of the Compass in 10th Grade Social Studies": 1 + "10th Grade Social Studies: Investigating World Civilizations and Democracy through the Impact of the Plow": 1 + "Navigating World Civilizations: The Concept of Democracy and the Role of the Sextant in 10th Grade Social Studies": 1 + "10th Grade Social Studies: The Impact of the Paper on World Civilizations and the Growth of Democracy": 1 + "Delving into Democracy: A Comprehensive Study of World Civilizations with a Focus on the Pottery Wheel in 10th Grade Social Studies.": 1 + "Exploring Roller Coaster Physics in 7th Grade Science Using PhET Simulations and Newton’s Laws": 1 + "The Physics of Fun: A Deep Dive into Roller Coaster Mechanics Using PhET Simulations and Velocity Concepts in 7th Grade Science": 1 + "Understanding Roller Coaster Mechanics: Using PhET Simulations and Acceleration Concepts in 7th Grade Science": 1 + "The Physics Behind the Thrill: Integrating PhET Simulations and Friction Concepts in the Study of Roller Coasters for 7th Grade Science": 1 + "The Science of Speed: Using PhET Simulations and Kinematic Equations to Study Roller Coaster Mechanics in 7th Grade Science": 1 + "Physics in Motion: Exploring Roller Coaster Mechanics with PhET Simulations and the Concept of Momentum in 7th Grade Science": 1 + "The Physics of Roller Coasters: Applying PhET Simulations and Gravitational Force in 7th Grade Science": 1 + "The Fun of Physics: Using PhET Simulations and Energy Conservation Principles to Study Roller Coaster Mechanics in 7th Grade Science": 1 + "Roller Coaster Science: Understanding Physics with PhET Simulations and the Concept of Inertia in 7th Grade Science": 1 + "A Ride Through Physics: 7th Grade Science Course on Roller Coaster Mechanics Using PhET Simulations and the Law of Action-Reaction.": 1 + "Soundtrap and Vivaldi’s Concertos: An 8th Grade Music Course Exploring Classical Music through MIDI Technology": 1 + "Soundtrap, Vivaldi’s Concertos, and DAW Integration: An 8th Grade Course in Classical Music": 1 + "Understanding Vivaldi’s Concertos through Soundtrap and Synthesizer Application: An 8th Grade Music Course": 1 + "Soundtrap and Vivaldi’s Concertos: A Digital Audio Workstation Approach in 8th Grade Music Course": 1 + "Vivaldi’s Concertos in Soundtrap: An 8th Grade Music Course Using Beat Making Techniques": 1 + "Soundtrap and Vivaldi’s Concertos: An 8th Grade Music Course Introducing Looping Technology": 1 + "Vivaldi’s Concertos Unveiled through Soundtrap and Audio Mixing Techniques: An 8th Grade Music Course": 1 + "Classical Music Composition with Vivaldi’s Concertos and Soundtrap: An 8th Grade Course Using Sequencing Software": 1 + "Vivaldi’s Concertos and Soundtrap: An 8th Grade Music Course Incorporating Virtual Instruments": 1 + "An 8th Grade Music Course: Exploring Vivaldi’s Concertos with Soundtrap and Music Production Software.": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution using Character Mapping": 1 + "6th Grade Language Arts: Exploring Conflict and Resolution in Literature through the Lens of Foreshadowing": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution using Symbolism": 1 + "6th Grade Language Arts: Understanding Conflict and Resolution in Novels using Plot Diagrams": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution with Irony": 1 + "6th Grade Language Arts: Studying Conflict and Resolution in Short Stories using Point of View Analysis": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution using Flashbacks": 1 + "6th Grade Language Arts: Investigating Conflict and Resolution in Drama using Dialogue Analysis": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution using the Hero’s Journey Framework": 1 + "6th Grade Language Arts: Understanding Conflict and Resolution in Poetry using Metaphor Analysis": 1 + "6th Grade Language Arts: Analyzing Story Elements through the Lens of Conflict and Resolution using the iPad app Story Map": 1 + "9th Grade Social Studies: The American Civil War, the Evolution of Naval Warfare, and the Impact of Ironclad Ships": 1 + "The Role of Submarines in the Evolution of Naval Warfare During the American Civil War: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The American Civil War, Naval Warfare, and the Introduction of Torpedo Technology": 1 + "American Civil War and the Evolution of Naval Blockade Strategy: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The American Civil War, the Evolution of Naval Warfare, and the Use of Mines": 1 + "The American Civil War: Naval Warfare, the Evolution of Ship Armor, and its Effects - A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The American Civil War, Naval Warfare, and the Development of Naval Ranks and Hierarchies": 1 + "The American Civil War and the Evolution of Naval Warfare: The Importance of Supply Chains - A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: The American Civil War and the Evolution of Naval Warfare, Focusing on River Warfare": 1 + "The American Civil War, the Evolution of Naval Warfare, and the Impact of the Telegraph: A 9th Grade Social Studies Course.": 1 + "6th Grade History: Exploring the Influence of Nile’s Sediment on Pyramid Construction Using Ground-Penetrating Radar": 1 + "Deciphering the Role of Nile’s Sediment in the Material Selection for Pyramids with Core Sampling in 6th Grade History": 1 + "6th Grade History: Analyzing the Impact of Nile’s Sediment on Pyramid Materials with Carbon Dating Techniques": 1 + "6th Grade History: A Detailed Study of Nile’s Sediment and its Impact on Pyramid Construction Using Soil Analysis": 1 + "Investigating Nile’s Sediment in Pyramid Materials Selection with Stratigraphy in 6th Grade History Lessons": 1 + "6th Grade History: The Use of Geophysics in Understanding the Role of Nile’s Sediment in Pyramid Construction": 1 + "6th Grade History: Unraveling the Mystery of Pyramid Construction with Nile’s Sediment and Petrographic Microscopy": 1 + "6th Grade History: The Role of Nile’s Sediment in the Material Selection for Pyramids - A Study with Seismic Reflection Techniques": 1 + "6th Grade History: Utilizing the Magnetic Susceptibility Technique to Understand Nile’s Sediment in Pyramid Construction": 1 + "6th Grade History: The Influence of Nile’s Sediment on Pyramid Materials: A Comprehensive Study with X-Ray Diffraction Analysis": 1 + "Utilizing Interactive Whiteboards in Enhancing 2nd Grade Addition with SplashLearn: A Focus on Math Games": 1 + "Incorporating SmartBoard Technology in 2nd Grade Addition Enhancement: A Deep Dive into SplashLearn Math Games": 1 + "Building 2nd Grade Addition Skills with SplashLearn through iPad Applications: Spotlight on Math Games": 1 + "Enriching 2nd Grade Addition using SplashLearn on Chromebooks: Highlighting Math Games": 1 + "Emphasizing on Math Games while Enhancing 2nd Grade Addition with SplashLearn: An Exploration of Virtual Reality": 1 + "Enhancing 2nd Grade Addition Skills with SplashLearn: Focusing on Math Games through the Use of Augmented Reality": 1 + "Leveraging 3D Printing in Enhancing 2nd Grade Addition using SplashLearn: A Concentration on Math Games": 1 + "The Role of Robotics in Enhancing 2nd Grade Addition Skills with SplashLearn: A Study of Math Games": 1 + "Innovating 2nd Grade Addition Enhancement with SplashLearn using Gamification Strategies: A Close Look at Math Games": 1 + "Enhancing 2nd Grade Addition with SplashLearn via Digital Interactive Notebooks: A Special Emphasis on Math Games": 1 + "6th Grade Social Studies: The Impact of the Wheel on the Development of the Pottery Wheel in Technology and Innovation History": 1 + "6th Grade Social Studies: The Evolution of the Wheel and its Influence on Water Mill Technology in History": 1 + "6th Grade Social Studies: The Wheel’s Role in the Progress of Agriculture: The Plough in Technology and Innovation History": 1 + "6th Grade Social Studies: The Wheel in Warfare: The Evolution of Chariot Technology and Innovation History": 1 + "6th Grade Social Studies: The Wheel and Transport: The Advent of the Wagon in Technological and Innovation History": 1 + "6th Grade Social Studies: Wheel’s Contribution in Architecture: The Invention of the Crane in Technology and Innovation History": 1 + "6th Grade Social Studies: The Evolution of the Wheel in the Birth of the Clock: Timekeeping Technology and Innovation History": 1 + "6th Grade Social Studies: The Effect of the Wheel on Maritime: The Capstan in Technology and Innovation History": 1 + "6th Grade Social Studies: The Wheel’s Impact on the Printing Press in Technology and Innovation History": 1 + "6th Grade Social Studies: The Wheel and Energy Generation: The Windmills in Technology and Innovation History": 1 + "3rd Grade History: Exploring Archimedes’ Screw in Ancient Roman Aqueducts": 1 + "3rd Grade History: The Role of Cement in Building Ancient Roman Aqueducts": 1 + "3rd Grade History: The Use of Gravity in Ancient Roman Aqueducts Design": 1 + "3rd Grade History: Ancient Roman Aqueducts and the Concept of Water Flow": 1 + "3rd Grade History: The Importance of Surveying in Constructing Ancient Roman Aqueducts": 1 + "3rd Grade History: Understanding the Tunneling Techniques in Ancient Roman Aqueducts": 1 + "3rd Grade History: The Role of Hydraulic Mining in Ancient Roman Aqueducts": 1 + "3rd Grade History: Ancient Roman Aqueducts and the Concept of Erosion Control": 1 + "3rd Grade History: The Use of Pulley Systems in Building Ancient Roman Aqueducts": 1 + "3rd Grade History: The Influence of Geometry on Ancient Roman Aqueducts Design": 1 + "5th Grade History: Exploring Ancient Egypt with Carbon Dating": 1 + "5th Grade History: Deciphering Ancient Egypt with Hieroglyphics": 1 + "5th Grade History: Unearthing Ancient Egypt with Ground Penetrating Radar": 1 + "5th Grade History: Understanding Ancient Egypt with Stratigraphy": 1 + "5th Grade History: Excavating Ancient Egypt with Trowels": 1 + "5th Grade History: Revealing Ancient Egypt with Aerial Photography": 1 + "5th Grade History: Investigating Ancient Egypt with Excavation Grids": 1 + "5th Grade History: Examining Ancient Egypt with Artifact Analysis": 1 + "5th Grade History: Discovering Ancient Egypt through Pottery Sherd Study": 1 + "5th Grade History: Interpreting Ancient Egypt with 3D Modelling Technology": 1 + "6th Grade Science: The Scientific Revolution: The Impact of the Compass on Maritime Navigation": 1 + "6th Grade Science: The Evolution of Compass and its Role in the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: Understanding the Compass and Magnetic Fields": 1 + "6th Grade Science: The Impact of the Compass on Cartography during the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: The Compass and its Influence on Exploration": 1 + "6th Grade Science: The Compass and its Role in Advancing Astronomy during the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: The Transformation of Trade Routes with the Compass": 1 + "6th Grade Science: The Scientific Revolution: The Compass’ Impact on Global Positioning System Concepts": 1 + "6th Grade Science: The Scientific Revolution: The Compass and the Rise of Geographical Science": 1 + "6th Grade Science: The Scientific Revolution: The Compass and its Influence on Nautical Astronomy": 1 + "6th Grade Music: Analyzing Beethoven’s Symphony No.5 Utilising the Piano Forte and Sibelius Notation Software": 1 + "6th Grade Music: Discovering Beethoven’s Symphony No.9 through the Lens of the Piano Forte using Finale Notation Software": 1 + "Music for 6th Graders: Exploration of Beethoven’s Symphony No.3 with Piano Forte and MuseScore Technology": 1 + "6th Grade Music: Deep Dive into Beethoven’s Symphony No.7 Using Piano Forte and NoteFlight Music Notation Software": 1 + "Music Course for 6th Graders: Understanding Beethoven’s Symphony No. 1 through the Piano Forte and MagicScore Notation Software": 1 + "6th Grade Music: Decoding Beethoven’s Symphony No.2 with Piano Forte using Capella Music Notation Software": 1 + "6th Grade Music: A Comprehensive Look at Beethoven’s Symphony No.4 Using Piano Forte and Dorico Notation Software": 1 + "Music Education for 6th Graders: Beethoven’s Symphony No.6 Explored through Piano Forte and Crescendo Music Notation Software": 1 + "6th Grade Music: Delving into Beethoven’s Symphony No.8 using Piano Forte and LilyPond Notation Software": 1 + "6th Grade Music: A Study of Beethoven’s Symphony No.10 with Piano Forte using Avid Sibelius Music Notation Software": 1 + "CalorieKing App and the Role of Macronutrients: A Comprehensive 9th Grade Physical Education Course Focusing on Body Mass Index Calculations ": 1 + "Usage of Fitbit Tracker in CalorieKing App and Macronutrients Study: A Detailed 9th Grade Physical Education Course ": 1 + "CalorieKing App and the Role of Macronutrients: An In-depth 9th Grade Physical Education Course with MyFitnessPal Integration ": 1 + "Understanding Macronutrients with CalorieKing App and Heart Rate Monitors: A Comprehensive 9th Grade Physical Education Course ": 1 + "CalorieKing App and Macronutrients Role: A Comprehensive 9th Grade Physical Education Course with Pedometer Usage ": 1 + "Incorporating Garmin Fitness Tracker with CalorieKing App and Macronutrients: A Detailed 9th Grade Physical Education Course ": 1 + "CalorieKing App, Macronutrients, and Sleep Cycle Analysis: A Comprehensive 9th Grade Physical Education Course ": 1 + "A Comprehensive 9th Grade Physical Education Course on Macronutrients: CalorieKing App and Hydration Tracking ": 1 + "CalorieKing App and Macronutrients in a 9th Grade Physical Education Course: An Emphasis on Caloric Intake and Energy Expenditure ": 1 + "The Role of Macronutrients and the CalorieKing App: A Comprehensive 9th Grade Physical Education Course with Step Counter Integration.": 1 + "1st Grade Environmental Studies: Understanding Weather Patterns with Rain Gauges": 1 + "1st Grade Environmental Studies: An Introduction to Weather Patterns Using Thermometers": 1 + "1st Grade Environmental Studies: Cloud Identification with Digital Sky Imaging": 1 + "1st Grade Environmental Studies: Weather Patterns Study via Satellite Imaging": 1 + "1st Grade Environmental Studies: Introduction to Weather Patterns Using Barometers": 1 + "1st Grade Environmental Studies: Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Analyzing Weather Patterns with Weather Stations": 1 + "1st Grade Environmental Studies: Cloud Identification with the Help of Anemometers": 1 + "1st Grade Environmental Studies: Introduction to Weather Patterns using Doppler Radar Technology": 1 + "1st Grade Environmental Studies: Exploring Weather Patterns with Hygrometers.": 1 + "1st Grade Physical Education: Mastering Soccer Skills with Team Play": 1 + "1st Grade Physical Education: Learning Basketball Techniques in Team Sports": 1 + "1st Grade Physical Education: Fundamentals of Baseball in Team Sports": 1 + "1st Grade Physical Education: Fun with Team Sports Using Digital Scoreboards": 1 + "1st Grade Physical Education: Enjoying Volleyball in Team Sports": 1 + "1st Grade Physical Education: Team Sports with a Focus on Tennis Techniques": 1 + "1st Grade Physical Education: Understanding Cricket Rules in Team Sports": 1 + "1st Grade Physical Education: Team Sports Utilizing Heart Rate Monitors": 1 + "1st Grade Physical Education: Team Sports With Emphasis on Hockey Strategy": 1 + "1st Grade Physical Education: Exploring Rugby Basics in Team Sports": 1 + "7th Grade Language Arts: The Impact of Quantum Entanglement on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Influence of Tachyon Particles on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Role of Wormholes in Multiverse Theory and Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Effect of Einstein-Rosen Bridges on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Importance of Space-Time Continuum in Multiverse Theory of Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Impact of Teleportation Devices on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Influence of Chrono-Spatial Relativity on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Role of Quantum Foam in Multiverse Theory of Time Travel Science Fiction": 1 + "7th Grade Language Arts: Exploring the Schwarzschild Radius Impact on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Effect of Gravity Wells on Multiverse Theory in Time Travel Science Fiction": 1 + "2nd Grade Science: Exploring Life Cycles and Habitats with Microscopes": 1 + "2nd Grade Science: Understanding Life Cycles using 3D Models and studying Habitats": 1 + "2nd Grade Science: Digital Learning of Life Cycles and Habitats with Interactive Apps": 1 + "2nd Grade Science: Life Cycles and Habitats - A hands-on approach with Terrariums": 1 + "2nd Grade Science: Studying Life Cycles by Raising Butterflies and Exploring Habitats": 1 + "2nd Grade Science: Life Cycles and Habitats - A Deep Dive using Virtual Reality": 1 + "2nd Grade Science: Exploring Life Cycles and Habitats through Augmented Reality": 1 + "2nd Grade Science: Investigating Life Cycles with Time-lapse Photography and Habitats Study": 1 + "2nd Grade Science: Life Cycles and Habitats - An Exploration with Field Trips": 1 + "2nd Grade Science: Learning Life Cycles and Habitats using Scientific Experiment Kits.": 1 + "3rd Grade Elementary: Multiplication Foundations using Abacus Techniques and Online Math Games": 1 + "3rd Grade Elementary: Exploring Multiplication Foundations with Digital Flashcards and Online Math Games": 1 + "3rd Grade Elementary: Understanding Multiplication Basics through Interactive Whiteboard Exercises and Online Math Games": 1 + "3rd Grade Elementary: Building Multiplication Foundations with Prodigy Software and Online Math Games": 1 + "3rd Grade Elementary: Multiplication Foundations and Problem Solving with Khan Academy Resources and Online Math Games": 1 + "3rd Grade Elementary: Multiplication Foundations using Mathematical Manipulatives and Online Math Games": 1 + "3rd Grade Elementary: Enhancing Multiplication Skills with Virtual Reality Tools and Online Math Games": 1 + "3rd Grade Elementary: Unlocking Multiplication Foundations with iPad Apps and Online Math Games": 1 + "3rd Grade Elementary: Mastering Multiplication Basics using Google Classroom Assignments and Online Math Games": 1 + "3rd Grade Elementary: Introduction to Multiplication Foundations with SMART Board Activities and Online Math Games": 1 + "1st Grade Introduction to Planets: Exploring Mars through Telescopes": 1 + "1st Grade Introduction to Planets: Learning about Jupiter with 3D Models": 1 + "1st Grade Introduction to Planets: Discovering Saturn’s Rings via Virtual Reality": 1 + "1st Grade Introduction to Planets: Understanding Venus through Astrophotography": 1 + "1st Grade Introduction to Planets: Neptune Study using Interactive Digital Maps": 1 + "1st Grade Introduction to Planets: Probing the Mysteries of Pluto with Robotic Technology": 1 + "1st Grade Introduction to Planets: Learning about Earth’s Moon with Augmented Reality": 1 + "1st Grade Introduction to Planets: A Deep Dive into Uranus using 4D Simulations": 1 + "1st Grade Introduction to Planets: Interactive Exploration of Mercury with Mobile Apps": 1 + "1st Grade Introduction to Planets: The Wonders of the Sun through Solar Telescopes": 1 + "4th Grade Science: Exploring Earth’s Ecosystem through Microscopes": 1 + "4th Grade Science: Studying Photosynthesis in Earth’s Ecosystem": 1 + "4th Grade Science: Basics of Earth’s Ecosystem with Telescopes": 1 + "4th Grade Science: The Role of Water Cycle in Earth’s Ecosystem": 1 + "4th Grade Science: Basics of Earth’s Ecosystem and the Food Chain": 1 + "4th Grade Science: Exploring Earth’s Ecosystem through Satellite Imaging": 1 + "4th Grade Science: Understanding Earth’s Ecosystem through Carbon Dating": 1 + "4th Grade Science: The Impact of Climate Change on Earth’s Ecosystem": 1 + "4th Grade Science: Basics of Earth’s Ecosystem and Soil Analysis": 1 + "4th Grade Science: Learning about Earth’s Ecosystem through Robotics.": 1 + "2nd Grade Science: Exploring Marine Habitats with Drones, Underwater Cameras and Shark Documentaries": 1 + "2nd Grade Science: Discovering Forest Biomes with Drones, Infrared Cameras and National Geographic Documentaries": 1 + "2nd Grade Science: Analyzing Desert Ecosystems with Drones, Thermal Imaging and Planet Earth Documentaries": 1 + "2nd Grade Science: Understanding Arctic Habitats with Drones, Ice-penetrating Radar and Polar Bear Documentaries": 1 + "2nd Grade Science: Examining Jungle Habitats with Drones, LIDAR Technology and Rainforest Documentaries": 1 + "2nd Grade Science: Investigating Mountainous Regions with Drones, 3D Mapping and Mount Everest Documentaries": 1 + "2nd Grade Science: Observing Wetland Habitats with Drones, Water Quality Sensors and Swamp Documentaries": 1 + "2nd Grade Science: Studying Grassland Habitats with Drones, Soil Sampling Kits and Bison Documentaries": 1 + "2nd Grade Science: Surveying River Ecosystems with Drones, Flow Meters and Salmon Migration Documentaries": 1 + "2nd Grade Science: Researching Island Habitats with Drones, Satellite Imagery and Galapagos Documentaries.": 1 + "3rd Grade’s Exploration of the Solar System: Understanding Planets through Hubble Space Telescope’s Infrared Imaging.": 1 + "3rd Grade’s In-Depth Study to the Solar System: Utilizing Radio Astronomy for Cosmic Body Discovery.": 1 + "A Comprehensive Guide for 3rd Grade: Decoding Solar System Mysteries through Spectroscopy.": 1 + "3rd Grade’s Detailed Guide to the Solar System: Learning about Cosmic Bodies through Space Probes.": 1 + "3rd Grade’s Journey through the Solar System: A Detailed Study of Planets using Satellite Imagery.": 1 + "Advanced Solar System Study for 3rd Grade: Understanding Stars and Planets through Astrobiology.": 1 + "3rd Grade’s Solar System Adventure: Unraveling Cosmic Bodies with Solar Telescopes.": 1 + "3rd Grade’s Guide to the Solar System: A Deep Dive into Space Exploration using Mars Rovers.": 1 + "3rd Grade’s Path to Discovering the Solar System: Learning about Celestial Bodies through Astronomical Spectroscopy.": 1 + "3rd Grade’s Voyage to the Solar System: An In-Depth Study of Cosmic Bodies using Kepler Space Telescope.": 1 + "4th Grade Environmental Studies: Exploring Climate Change and Ecosystems through Biofuel Technology and Solar Energy Utilization": 1 + "4th Grade Environmental Studies: Understanding Climate Change and Ecosystems through Biofuel Technology and Wind Power Implementation": 1 + "4th Grade Environmental Studies: Decoding Climate Change and Ecosystems with Biofuel Technology and Geothermal Energy Solutions": 1 + "4th Grade Environmental Studies: Analysing Climate Change and Ecosystems through Biofuel Technology and Hydroelectric Power Concepts": 1 + "4th Grade Environmental Studies: Understanding Climate Change and Ecosystems through Biofuel Technology with Carbon Capture Strategies": 1 + "4th Grade Environmental Studies: Discerning Climate Change and Ecosystems through Biofuel Technology and Tidal Energy Applications": 1 + "4th Grade Environmental Studies: Unfolding Climate Change and Ecosystems through Biofuel Technology and Energy Efficiency Measures": 1 + "4th Grade Environmental Studies: Evaluating Climate Change and Ecosystems through Biofuel Technology and Biomass Energy Techniques": 1 + "4th Grade Environmental Studies: Understanding Climate Change and Ecosystems through Biofuel Technology with Nuclear Energy Approaches": 1 + "4th Grade Environmental Studies: Assessing Climate Change and Ecosystems through Biofuel Technology and Energy Conservation Initiatives": 1 + "5th Grade American History: Revolutionary War - The Role of Cannons": 1 + "5th Grade American History: Revolutionary War - The Impact of Muskets": 1 + "5th Grade American History: Revolutionary War - The Use of Ships": 1 + "5th Grade American History: Revolutionary War - The Importance of Spies": 1 + "5th Grade American History: Revolutionary War - The Role of Printing Presses": 1 + "5th Grade American History: Revolutionary War - The Significance of Horses": 1 + "5th Grade American History: Revolutionary War - The Influence of Maps and Navigation": 1 + "5th Grade American History: Revolutionary War - The Role of Bayonets": 1 + "5th Grade American History: Revolutionary War - The Impact of Siege Tactics": 1 + "5th Grade American History: Revolutionary War - The Use of Signal Flags": 1 + "9th Grade Language Arts: Utilizing Google Translate for Enhanced Information Processing": 1 + "9th Grade Language Arts: Maximizing Word Processing Software for Improved Information Processing": 1 + "9th Grade Language Arts: Leveraging Merriam-Webster Online for Better Information Processing": 1 + "9th Grade Language Arts: Implementing Grammarly for Effective Information Processing": 1 + "9th Grade Language Arts: Using Text-to-Speech Tools for Optimal Information Processing": 1 + "9th Grade Language Arts: Benefit from Oxford Learner’s Dictionaries for Information Processing": 1 + "9th Grade Language Arts: Applying Vocabulary.com for Advanced Information Processing": 1 + "9th Grade Language Arts: Using Text-to-Voice Software for Enhanced Information Processing": 1 + "9th Grade Language Arts: Integrating Microsoft Word’s Spelling and Grammar Check for Improved Information Processing": 1 + "9th Grade Language Arts: Exploring Cambridge Dictionary Online for Efficient Information Processing": 1 + "4th Grade Music: Exploring Handel’s Suites Through Piano Interpretation and Sound Synthesis with Pro Tools Software and MIDI Controllers": 1 + "4th Grade Music: Handel’s Suites, Piano Interpretation and Sound Synthesis with Pro Tools Software & Logic Pro X": 1 + "4th Grade Music: Understanding Handel’s Suites through Piano Interpretation and Sound Synthesis with Pro Tools Software and Audacity": 1 + "4th Grade Music: Handel’s Suites Through Piano Interpretation and Sound Synthesis with Pro Tools Software and the concept of Music Sequencing": 1 + "4th Grade Music: Handel’s Suites Study with Piano Interpretation, Sound Synthesis using Pro Tools Software and GarageBand": 1 + "4th Grade Music: Handel’s Suites Analysis Through Piano Interpretation and Sound Synthesis with Pro Tools Software and Ableton Live": 1 + "4th Grade Music: Interactive Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools Software and FL Studio": 1 + "4th Grade Music: Handel’s Suites Through Piano Interpretation and Sound Synthesis with Pro Tools Software and Cubase for Kids": 1 + "4th Grade Music: Handel’s Suites, Piano Interpretation and Sound Synthesis with Pro Tools Software & the Application of Sound Forge": 1 + "4th Grade Music: Diving into Handel’s Suites using Piano Interpretation and Sound Synthesis with Pro Tools Software and Reason.": 1 + "1st Grade Physical Education: Enhancing Team Sports & Volleyball Serving Techniques with Cone Training, Heart Rate Monitors, and Balance Boards": 1 + "1st Grade Physical Education: Utilizing Resistance Bands in Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Incorporating Yoga Mats in Team Sports & Volleyball Serving Techniques with Cone Training and Heart Rate Monitors": 1 + "1st Grade Physical Education: Applying the Concept of Plyometrics in Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Using Video Analysis Technology in Team Sports & Volleyball Serving Techniques with Cone Training and Heart Rate Monitors": 1 + "1st Grade Physical Education: Infusing Agility Ladders in Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Incorporating Medicine Balls in Team Sports & Volleyball Serving Techniques with Cone Training and Heart Rate Monitors": 1 + "1st Grade Physical Education: Applying the Concept of Interval Training in Team Sports & Volleyball Serving Techniques with Cone Training": 1 + "1st Grade Physical Education: Utilizing Virtual Reality in Team Sports & Volleyball Serving Techniques with Cone Training and Heart Rate Monitors": 1 + "1st Grade Physical Education: Enhancing Team Sports & Volleyball Serving Techniques with Cone Training, Heart Rate Monitors, and TRX Suspension Trainers.": 1 + "8th Grade Science: Exploring Mitosis and Meiosis using a Compound Microscope in Introductory Biology": 1 + "8th Grade Science: Investigating Cell Division through DNA Staining Techniques in Introductory Biology": 1 + "8th Grade Science: Studying Chromosome Segregation during Cell Division via Fluorescence Microscopy in Introductory Biology": 1 + "8th Grade Science: Understanding Cell Division through the Application of Digital Imaging in Introductory Biology": 1 + "8th Grade Science: Probing Cell Division Using a Flow Cytometer in Introductory Biology": 1 + "8th Grade Science: Analyzing Cell Division through Electrophoresis Techniques in Introductory Biology": 1 + "8th Grade Science: Investigating Cell Division through the Lens of a Scanning Electron Microscope in Introductory Biology": 1 + "8th Grade Science: Exploring Cell Cycle Phases using Centrifugation in Introductory Biology": 1 + "8th Grade Science: Examining Cell Division through the Use of Cell Culture Techniques in Introductory Biology": 1 + "8th Grade Science: Investigating Cell Division through the Lens of a Microscope and PCR Amplification in Introductory Biology.": 1 + "4th Grade Physical Education: Mastering Baseball Pitching Techniques with Blast Motion Bat Sensor": 1 + "4th Grade Physical Education: Enhancing Baseball Batting Strength using Blast Motion Bat Sensor and Resistance Bands": 1 + "4th Grade Physical Education: Boosting Baseball Skills with Blast Motion Bat Sensor and Virtual Reality Training": 1 + "4th Grade Physical Education: Mastering Baseball Swing Analysis with Blast Motion Bat Sensor and High-Speed Cameras": 1 + "4th Grade Physical Education: Improving Baseball Batting Accuracy with Blast Motion Bat Sensor and Laser Guide": 1 + "4th Grade Physical Education: Mastering Baseball with Blast Motion Bat Sensor and Biomechanical Analysis": 1 + "4th Grade Physical Education: Enhancing Baseball Game Strategy using Blast Motion Bat Sensor and AI Coaching": 1 + "4th Grade Physical Education: Mastering Baseball Stance with Blast Motion Bat Sensor and Posture Correctors": 1 + "4th Grade Physical Education: Boosting Baseball Grip Technique with Blast Motion Bat Sensor and Grip Strengtheners": 1 + "4th Grade Physical Education: Mastering Baseball with Blast Motion Bat Sensor and Performance Tracking Software.": 1 + "7th Grade Physical Education: Mastering Balance Beam Techniques in Gymnastics through Flexibility Training using Foam Rollers and a Stability Ball ": 1 + "7th Grade Physical Education: Enhancing Flexibility with Foam Rollers & Yoga in Gymnastics’ Balance Beam Techniques": 1 + "7th Grade Physical Education: Exploring Video Assisted Learning for Balance Beam Techniques in Gymnastics": 1 + "7th Grade Physical Education: Incorporating Pilates for Flexibility Training in Balance Beam Techniques": 1 + "7th Grade Physical Education: Utilizing Resistance Bands in Flexibility Training for Gymnastics’ Balance Beam Techniques": 1 + "7th Grade Physical Education: Bio-mechanical Analysis of Balance Beam Techniques in Gymnastics": 1 + "7th Grade Physical Education: Exploring Balance Beam Techniques using Foam Rollers and Virtual Reality for Flexibility Training": 1 + "7th Grade Physical Education: Foam Rollers and Massage Therapy: A New Approach to Flexibility Training for Balance Beam Techniques": 1 + "7th Grade Physical Education: Balance Beam Techniques with a Focus on Flexibility Training using Foam Rollers and the Alexander Technique": 1 + "7th Grade Physical Education: Exploring Gymnastics’ Balance Beam Techniques using Foam Rollers and TRX Suspension Training for Flexibility Enhancement.": 1 + "8th Grade Music: Exploring Pro Tools MIDI Sequencers and GarageBand for Orchestration in Classical Music with Logic Pro X": 1 + "8th Grade Music: Utilizing Pro Tools MIDI Sequencers, GarageBand, and Ableton Live for Orchestration in Classical Music": 1 + "8th Grade Music: Application of Pro Tools MIDI Sequencers and GarageBand in Classical Music Composition using Sibelius": 1 + "8th Grade Music: Mastering Pro Tools MIDI Sequencers and GarageBand for Orchestration in Classical Music with Cubase": 1 + "8th Grade Music: Harnessing Pro Tools MIDI Sequencers and GarageBand for Orchestration in Classical Music through FL Studio": 1 + "8th Grade Music: Expanding Pro Tools MIDI Sequencers and GarageBand Techniques with Propellerhead Reason in Classical Music": 1 + "8th Grade Music: Pro Tools MIDI Sequencers, GarageBand and Audacity: A Comprehensive Approach to Orchestration in Classical Music": 1 + "8th Grade Music: Utilizing Pro Tools MIDI Sequencers, GarageBand, and Reaper for Orchestration in Classical Music": 1 + "8th Grade Music: Pro Tools MIDI Sequencers and GarageBand for Orchestration in Classical Music - An Integration of Soundtrap": 1 + "8th Grade Music: Advanced Orchestration in Classical Music using Pro Tools MIDI Sequencers, GarageBand, and Cakewalk by BandLab.": 1 + "2nd Grade Music: Exploring Sound with The Triangle: A Study of Percussion Techniques": 1 + "2nd Grade Music: The Triangle and Its Role in Rhythm: An Introduction to Tempo": 1 + "2nd Grade Music: The Triangle in Orchestras: Understanding Ensemble Dynamics ": 1 + "2nd Grade Music: The Triangle: A Comprehensive Look at Its History and Evolution": 1 + "2nd Grade Music: The Triangle and Pitch: How Simple Instruments Create Melody": 1 + "2nd Grade Music: Experimenting with The Triangle: A Study of Different Materials and Sound Quality": 1 + "2nd Grade Music: The Triangle: An Exploration of Volume and Dynamics": 1 + "2nd Grade Music: The Art of Playing the Triangle: Mastering Basic Percussion Techniques": 1 + "2nd Grade Music: The Triangle and Music Notation: Learning to Read Simple Sheet Music": 1 + "2nd Grade Music: The Triangle: Exploring Sound Production and Acoustics.": 1 + "3rd Grade Social Studies: Discovering Local History Through GIS Map Reading": 1 + "3rd Grade Social Studies: Examining Local History Through Satellite Imagery and Map Reading": 1 + "3rd Grade Social Studies: Unveiling Local History Through Cartography and Map Reading": 1 + "3rd Grade Social Studies: Navigating Local History Through GPS and Map Reading": 1 + "3rd Grade Social Studies: Investigating Local History Through Compass Use and Map Reading": 1 + "3rd Grade Social Studies: Exploring Local History Through Topographic Map Reading": 1 + "3rd Grade Social Studies: Delving into Local History Through Interactive Digital Map Reading": 1 + "3rd Grade Social Studies: Decoding Local History Through Map Symbols and Map Reading": 1 + "3rd Grade Social Studies: Tracing Local History Through Historical Map Reading": 1 + "3rd Grade Social Studies: Interpreting Local History Through Map Scale and Map Reading.": 1 + "3rd Grade Music: Exploring Rhythm and Beats with Drums": 1 + "3rd Grade Music: Discovering Rhythm and Beats through Percussion Instruments": 1 + "3rd Grade Music: Utilizing Metronomes to Discover Rhythm and Beats": 1 + "3rd Grade Music: Discovering Rhythm and Beats with Digital Audio Workstations ": 1 + "3rd Grade Music: Understanding Rhythm and Beats through Piano Play": 1 + "3rd Grade Music: Discovering Rhythm and Beats using GarageBand": 1 + "3rd Grade Music: Learning Rhythm and Beats through Clapping Exercises": 1 + "3rd Grade Music: Discovering Rhythm and Beats with Music Blocks": 1 + "3rd Grade Music: Exploring Rhythm and Beats through Songwriting": 1 + "3rd Grade Music: Discovering Rhythm and Beats with Interactive Music Games": 1 + "6th Grade Art: Exploring Color Theory with Watercolor Techniques": 1 + "6th Grade Art: Delving into Color Theory Using Digital Art Software": 1 + "6th Grade Art: An Exploration of Color Theory through Acrylic Painting": 1 + "6th Grade Art: Understanding Color Theory with Pastel Drawing": 1 + "6th Grade Art: Color Theory and the Application of Prismacolor Pencils": 1 + "6th Grade Art: Color Theory Explored through Collage Making": 1 + "6th Grade Art: Exploring Color Theory via Oil Painting": 1 + "6th Grade Art: Color Theory in Charcoal Drawing": 1 + "6th Grade Art: Exploring Color Theory through Mixed Media Art": 1 + "6th Grade Art: An In-depth Look at Color Theory using Gouache Painting": 1 + "2nd Grade Social Studies: Analyzing Communities through Population Density Using Statistical Graphs ": 1 + "2nd Grade Social Studies: Exploring Population Density through Interactive Maps in Communities": 1 + "2nd Grade Social Studies: Understanding Communities via Population Density using GIS Technology": 1 + "2nd Grade Social Studies: Examining Communities through Population Density with Cartographic Techniques": 1 + "2nd Grade Social Studies: Analyzing Communities through Population Density via Data Visualization Tools": 1 + "2nd Grade Social Studies: Surveying Communities via Population Density Using Census Data ": 1 + "2nd Grade Social Studies: Investigating Communities through Population Density Utilizing Demographic Software": 1 + "2nd Grade Social Studies: Studying Communities by Analyzing Population Density with Geospatial Analysis": 1 + "2nd Grade Social Studies: Scrutinizing Communities via Population Density Employing Infographics": 1 + "2nd Grade Social Studies: Delving into Communities through Population Density using Topographical Mapping": 1 + "9th Grade History: Impact of the Steam Engine during the Industrial Revolution": 1 + "9th Grade History: The Role of the Spinning Jenny in the Industrial Revolution": 1 + "9th Grade History: Industrial Revolution and the Emergence of the Railroad System": 1 + "9th Grade History: Influence of Telegraph Communication during the Industrial Revolution": 1 + "9th Grade History: The Power Loom’s Contribution to the Industrial Revolution": 1 + "9th Grade History: The Impact of Mechanized Textile Production during the Industrial Revolution": 1 + "9th Grade History: The Role of the Cotton Gin in the Industrial Revolution": 1 + "9th Grade History: How the Bessemer Process Shaped the Industrial Revolution": 1 + "9th Grade History: The Influence of the Assembly Line on the Industrial Revolution": 1 + "9th Grade History: Steam Power and Its Effect on Industrial Revolution Manufacturing": 1 + "Ninth Grade History: Exploration of the American Revolution Through Primary Sources": 1 + "Ninth Grade History: Understanding the American Revolution Through Political Cartoons": 1 + "Ninth Grade History: Analyzing the American Revolution Using Geographic Information Systems (GIS)": 1 + "Ninth Grade History: Dissecting the American Revolution Through Battle Strategies": 1 + "Ninth Grade History: The American Revolution - A Deep Dive into Revolutionary War Espionage Techniques": 1 + "Ninth Grade History: The American Revolution and the Role of Naval Technology": 1 + "Ninth Grade History: Decoding the American Revolution Through Propaganda Analysis": 1 + "Ninth Grade History: Exploration of the American Revolution With a Focus on Gunpowder Technology": 1 + "Ninth Grade History: The Influence of the Printing Press on the American Revolution ": 1 + "Ninth Grade History: The American Revolution - The Impact of Agricultural Innovations.": 1 + "Analyzing the Impact of Climate Change on Ecosystems through Virtual Reality Simulations in 5th Grade Science": 1 + "Exploring Ecosystems and Climate Change: A 5th Grade Science Course using Augmented Reality Tools": 1 + "Ecosystems and Climate Change: A 5th Grade Science Exploration via Interactive 3D Modeling": 1 + "Ecosystems, Climate Change and GIS: An Interactive Study for 5th Grade Science": 1 + "5th Grade Science: An In-Depth Analysis of Ecosystems and Climate Change using Data Visualization Techniques": 1 + "Climate Change Effects on Ecosystems: A 5th Grade Science Course with Drone Technology": 1 + "Ecosystems and Climate Change: A 5th Grade Science Course through the Lens of Satellite Imagery": 1 + "Investigating Ecosystems and Climate Change in 5th Grade Science using Machine Learning Algorithms": 1 + "5th Grade Science: Exploring Ecosystems and Climate Change through Bioinformatics Tools": 1 + "A Study on Ecosystems and Climate Change in 5th Grade Science using Remote Sensing Technology.": 1 + "6th Grade Music: In-depth Analysis of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano, and Melodic Contour Concept with the Aid of Sibelius Notation Software": 1 + "6th Grade Music: Comprehensive Course on Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and Audacity Audio Editing Tools": 1 + "6th Grade Music: Exploration of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and iPad Pro for Digital Music Notation": 1 + "6th Grade Music: Detailed Study of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour Understanding, and the Use of MIDI Technology": 1 + "6th Grade Music: Thorough Examination of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and Analysis using Music Theory Apps": 1 + "6th Grade Music: Expansive Insight into Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and the Application of Synthesia Piano Tutorial Software": 1 + "6th Grade Music: In-depth Understanding of Chopin’s Revolutionary Etudes using Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and the Integration of SmartMusic Interactive Practice Tool": 1 + "6th Grade Music: Comprehensive Study of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and the application of Ableton Live Music Production Software": 1 + "6th Grade Music: Detailed Investigation of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and the use of NoteFlight Score Writing Platform": 1 + "6th Grade Music: In-depth Discovery of Chopin’s Revolutionary Etudes with Digital Sheet Music, Roland FP-30 Digital Piano, Melodic Contour, and the Introduction of GarageBand for Music Composition and Editing.": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills Using Smart Tablets with ABCmouse and Speech-To-Text Technology": 1 + "1st Grade Language Arts: Utilizing Interactive Whiteboard to Enhance Phonics and Spelling Skills in ABCmouse": 1 + "1st Grade Language Arts: Incorporating Augmented Reality in Phonics and Spelling Lessons Using ABCmouse on Tablets": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills Using ABCmouse and Digital Flashcards on Smart Tablets": 1 + "1st Grade Language Arts: Leveraging Voice Recognition Software in ABCmouse for Improved Phonics and Spelling Skills": 1 + "1st Grade Language Arts: Applying Gamification Techniques in ABCmouse to Boost Phonics and Spelling Skills on Smart Tablets": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills Using ABCmouse with E-Books on Smart Tablets": 1 + "1st Grade Language Arts: Improving Phonics and Spelling Skills Through ABCmouse and Virtual Reality on Tablets": 1 + "1st Grade Language Arts: Enhancing Phonics and Spelling Skills with ABCmouse and Interactive Storytelling on Smart Tablets": 1 + "1st Grade Language Arts: Utilizing Text-to-Speech Tools in ABCmouse to Develop Phonics and Spelling Skills on Tablets": 1 + "1st Grade Music: Exploring Rhythm with Hand Drums and the Concept of Syncopation": 1 + "Discovering Melody Basics with Ableton Live: A Course for 1st Graders ": 1 + "1st Grade Music: Introduction to Syncopation using Hand Drums and Ableton Live": 1 + "Learning Rhythm and Melody Basics with Hand Drums via Ableton Live Software for 1st Graders": 1 + "1st Grade Music: Understanding the Idea of Syncopation using Hand Drums": 1 + "Syncopation and Melody Basics: A 1st Grade Music Course with Hand Drums and Ableton Live": 1 + "1st Grade Music: Harnessing the Power of Syncopation with Hand Drums and Ableton Live": 1 + "1st Grade Music: Mastering Rhythm Basics using Hand Drums and Beat Sequencer ": 1 + "1st Grade Music: Delving into Syncopation with Hand Drums and Ableton Live": 1 + "Music for 1st Graders: Discovering Rhythm and Melody Basics with Hand Drums, Ableton Live, and Musical Notation.": 1 + "2nd Grade Mathematics: Understanding Addition with Abacus": 1 + "2nd Grade Mathematics: Mastering Subtraction using Abacus": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Abacus": 1 + "2nd Grade Mathematics: Learning Division Techniques with Abacus": 1 + "2nd Grade Mathematics: Exploring Place Values using Abacus": 1 + "2nd Grade Mathematics: Grasping Number Patterns with Abacus": 1 + "2nd Grade Mathematics: Deciphering Fractions with Abacus": 1 + "2nd Grade Mathematics: Comprehending Number Sequences with Abacus": 1 + "2nd Grade Mathematics: Discovering Prime Numbers with Abacus": 1 + "2nd Grade Mathematics: Demystifying Number Bonds with Abacus": 1 + "1st Grade Language Arts: Introduction to Phonics and Spelling using Interactive Digital Flashcards on Smart Boards": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling Mastery using Kindle Fire Tablets and Digital Flashcards": 1 + "1st Grade Language Arts: Learning Phonics and Spelling with SMART Board Technology and Customizable Digital Flashcards": 1 + "1st Grade Language Arts: Phonics and Spelling Skills Development with Digital Flashcards and iPads": 1 + "1st Grade Language Arts: In-Depth Phonics and Spelling Practice using Digital Flashcards on Chromebooks": 1 + "1st Grade Language Arts: Exploring Phonics and Spelling with Interactive Digital Flashcards on Microsoft Surface Pro": 1 + "1st Grade Language Arts: Phonics and Spelling Enhancement using Digital Flashcards and Augmented Reality Technology": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling Comprehension using Digital Flashcards on Android Tablets": 1 + "1st Grade Language Arts: Phonics and Spelling Basics with Interactive Digital Flashcards and Voice Recognition Software": 1 + "1st Grade Language Arts: Beginning Phonics and Spelling Instruction using Digital Flashcards on Raspberry Pi Computers.": 1 + "4th Grade Mathematics: Introduction to Fractions using Number Lines": 1 + "4th Grade Mathematics: Mastering Fractions with the Aid of Fraction Bars": 1 + "4th Grade Mathematics: Understanding Fractions through Pie Charts": 1 + "4th Grade Mathematics: Simplifying Fractions with Fraction Tiles Tool": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction Using Interactive Whiteboard": 1 + "4th Grade Mathematics: Learning Fraction Equivalents with Fraction Circles": 1 + "4th Grade Mathematics: Fraction Multiplication and Division Using Virtual Manipulatives": 1 + "4th Grade Mathematics: Exploring Fraction Word Problems with Digital Apps": 1 + "4th Grade Mathematics: Discovering Fraction Decomposition Using Fraction Strips": 1 + "4th Grade Mathematics: Comparing and Ordering Fractions with Fraction Model Software": 1 + "4th Grade History: Columbus, the Compass, and the Discovery of America": 1 + "4th Grade History: Charting the Course - Columbus and the Discovery of America through Astrolabes": 1 + "4th Grade History: Columbus’s Voyage: Discovery of America through Quadrants": 1 + "4th Grade History: Sea Exploration: Columbus’s Use of Cross-Staff in the Discovery of America": 1 + "4th Grade History: Columbus, the Backstaff, and the Discovery of America": 1 + "4th Grade History: Columbus’s Journey: Discovery of America through Lead Lines": 1 + "4th Grade History: Columbus and the Discovery of America: A Look into Early Navigation Wheels": 1 + "4th Grade History: Columbus’s Exploration: The Discovery of America through the Use of Sextants": 1 + "4th Grade History: Columbus, the Nocturnal, and the Discovery of America": 1 + "4th Grade History: Columbus and the Discovery of America: An Examination of Early Chronometers": 1 + "4th Grade History: Columbus’s Voyage: Discovery of America through the Use of Astrolabes": 1 + "2nd Grade Health Education: Understanding Food Groups Through MyPlate ": 1 + "Interactive Learning in 2nd Grade Health: Nutrition and Health with Food Pyramid": 1 + "The Role of Technology in 2nd Grade Health: Using Smart Apps for Balanced Diet Education": 1 + "2nd Grade Health: Exploring Food, Nutrition, and Health Through Virtual Reality": 1 + "2nd Grade Health Education: Incorporating Physical Activity Trackers in Nutrition Lessons": 1 + "2nd Grade Health Education: Interactive Food Games for Nutrition Understanding": 1 + "2nd Grade Health Education: Food, Nutrition, and Health with Augmented Reality": 1 + "2nd Grade Health Education: Food, Nutrition, and Health - Learning with 3D Food Models": 1 + "2nd Grade Health Education: Digital Food Diary for Nutrition and Health Lessons": 1 + "2nd Grade Health Education: Discovering Healthy Eating Habits with Interactive Whiteboards.": 1 + "Sixth Grade Language Arts: Enhancing Reading Comprehension with Flashcards & Mind Maps": 1 + "Sixth Grade Language Arts: Boosting Reading Comprehension through Flashcards & Interactive eBooks": 1 + "Sixth Grade Language Arts: Using Flashcards & Digital Apps to Improve Reading Comprehension": 1 + "Sixth Grade Language Arts: Employing Flashcards & Audio-Visual Tools for Better Reading Comprehension": 1 + "Sixth Grade Language Arts: Improving Reading Comprehension with Flashcards & Speed Reading Techniques": 1 + "Sixth Grade Language Arts: Enhancing Reading Comprehension using Flashcards & Gamified Learning": 1 + "Sixth Grade Language Arts: Boosting Reading Comprehension with Flashcards & Collaborative Learning Methods": 1 + "Sixth Grade Language Arts: Using Flashcards & Augmented Reality to Improve Reading Comprehension": 1 + "Sixth Grade Language Arts: Employing Flashcards & Online Quizzes for Better Reading Comprehension": 1 + "Sixth Grade Language Arts: Improving Reading Comprehension with Flashcards & Context Clue Strategies": 1 + "4th Grade Social Studies: Exploring American History Through Virtual Reality and Google Earth ": 1 + "4th Grade Social Studies: Learning the US Geography Through Virtual Reality and Interactive Maps": 1 + "4th Grade Social Studies: Understanding the United States Government System Through Virtual Reality and Minecraft Education Edition": 1 + "4th Grade Social Studies: Discovering American Culture Through Virtual Reality and Augmented Reality Apps": 1 + "4th Grade Social Studies: Analyzing the United States Economics Through Virtual Reality and Financial Literacy Games": 1 + "4th Grade Social Studies: Understanding the United States of America Through Virtual Reality and 3D Printing Technology": 1 + "4th Grade Social Studies: Studying American Indigenous History Through Virtual Reality and Digital Storytelling Tools": 1 + "4th Grade Social Studies: Exploring Civil Rights Movements in the United States Through Virtual Reality and Interactive Timelines": 1 + "4th Grade Social Studies: Learning About American Immigration Through Virtual Reality and Data Visualization Tools": 1 + "4th Grade Social Studies: Understanding the United States Environment Through Virtual Reality and Climate Change Simulations.": 1 + "1st Grade Mathematics: Enhancing Number Bonds with Math Learning Apps using iPad ": 1 + "1st Grade Mathematics: Exploring Number Bonds with Math Learning Apps through Interactive Whiteboards": 1 + "1st Grade Mathematics: Mastering Number Bonds with Math Learning Apps using Zoom Virtual Classroom": 1 + "1st Grade Mathematics: Strengthening Number Bonds with Math Learning Apps via Google Classroom": 1 + "1st Grade Mathematics: Building Number Bonds with Math Learning Apps using Digital Manipulatives": 1 + "1st Grade Mathematics: Boosting Number Bonds with Math Learning Apps through Virtual Reality ": 1 + "1st Grade Mathematics: Improving Number Bonds with Math Learning Apps via Augmented Reality ": 1 + "1st Grade Mathematics: Engaging Number Bonds with Math Learning Apps using the Concept of Place Value": 1 + "1st Grade Mathematics: Developing Number Bonds with Math Learning Apps using Smart Board Technology": 1 + "1st Grade Mathematics: Solidifying Number Bonds with Math Learning Apps using the Concept of Addition and Subtraction": 1 + "4th Grade Language Arts: Crafting Stories using Storyboard That Software": 1 + "4th Grade Language Arts: Creating Narratives with Toon Boom Storyboard Pro": 1 + "4th Grade Language Arts: Building Stories using Plotagon Storyboarding Technology": 1 + "4th Grade Language Arts: Story Composition with Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Story Development using Adobe Storyboard Software": 1 + "4th Grade Language Arts: Narrative Design with Celtx Storyboarding Technology": 1 + "4th Grade Language Arts: Story Crafting using Plot Devices in FrameForge Storyboard Software": 1 + "4th Grade Language Arts: Constructing Tales with Microsoft PowerPoint as a Storyboarding Tool": 1 + "4th Grade Language Arts: Story Creation using Google Slides for Storyboarding": 1 + "4th Grade Language Arts: Tale Formation with Boords Storyboarding Technology.": 1 + "2nd Grade Art: Exploring Primary Colors with Watercolor Paints and Paintbrushes": 1 + "2nd Grade Art: Understanding Color Wheel with Watercolor Paints and Mixing Palette": 1 + "2nd Grade Art: Introduction to Complementary Colors Using Watercolor Paints and Sponge Techniques": 1 + "2nd Grade Art: Basic Color Theory Using Watercolor Paints and Easel Stand": 1 + "2nd Grade Art: Creating Shades and Tints with Watercolor Paints and Paper Towels": 1 + "2nd Grade Art: Exploring Warm and Cool Colors with Watercolor Paints and Wash Techniques": 1 + "2nd Grade Art: Basic Color Theory Using Watercolor Paints and Masking Fluid": 1 + "2nd Grade Art: Learning about Saturation with Watercolor Paints and Water Cups": 1 + "2nd Grade Art: Basic Color Theory Using Watercolor Paints and Palette Knife Techniques": 1 + "2nd Grade Art: Exploring Color Mood with Watercolor Paints and Layering Techniques": 1 + "4th Grade Science: Detailed Exploration of the Solar System Using Star Walk 2 Mobile Application": 1 + "4th Grade Science: Comprehensive Study of the Solar System with Augmented Reality Technology": 1 + "4th Grade Science: Interactive Study of the Solar System Utilizing the SkySafari Mobile App": 1 + "4th Grade Science: In-depth Learning of the Solar System Using Google Sky Map Application": 1 + "4th Grade Science: Immersive Study of the Solar System Employing Virtual Reality Technology": 1 + "4th Grade Science: Detailed Study of the Solar System Using Celestia Mobile Application": 1 + "4th Grade Science: Interactive Learning of the Solar System Using Stellarium Mobile Sky Map": 1 + "4th Grade Science: Engaging Study of the Solar System through NASA’s Eyes Mobile Application": 1 + "4th Grade Science: Interactive Study of the Solar System Using Space Mission Technology": 1 + "4th Grade Science: Hands-on Learning of the Solar System Utilizing the Solar Walk 2 Mobile App.": 1 + "4th Grade History: The Era of Exploration, Caravels, Astrolabe & the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Age of Discovery, Compass Usage, Caravels and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Exploration Era: Caravels, Sextant Utilization and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Era of Exploration: Caravels, The Invention of the Chronometer and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Age of Discovery: Caravels, The Use of Lateen Sails and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Era of Exploration: Caravels, The Impact of the Quadrant and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Age of Discovery: Caravels, The Concept of Dead Reckoning and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Exploration Era: Caravels, The Importance of the Cross-Staff and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Era of Exploration: Caravels, The Role of the Backstaff and the Revolutionary Nocturnal Device.": 1 + "4th Grade History: The Era of Exploration: Caravels, The Emergence of the Celestial Navigation and the Revolutionary Nocturnal Device.": 1 + "1st Grade Social Studies: Exploring Community Interactions via Google Earth Virtual Field Trips": 1 + "1st Grade Social Studies: Understanding Community Dynamics through Zoom Virtual Field Trips": 1 + "1st Grade Social Studies: Learning Community Interactions through VR Technology Virtual Field Trips": 1 + "1st Grade Social Studies: Investigating Community Interactions via Interactive Whiteboard Virtual Field Trips": 1 + "1st Grade Social Studies: Exploring Community Interactions through Augmented Reality Virtual Field Trips": 1 + "1st Grade Social Studies: Uncovering Community Interactions via 360-degree Video Virtual Field Trips": 1 + "1st Grade Social Studies: Discovering Community Interactions through Drone-Captured Virtual Field Trips": 1 + "1st Grade Social Studies: Understanding Community Dynamics through Webcam Virtual Field Trips": 1 + "1st Grade Social Studies: Learning Community Interactions via 3D Modelling Virtual Field Trips": 1 + "1st Grade Social Studies: Exploring Community Interactions through Digital Mapping Virtual Field Trips": 1 + "6th Grade English: Enhancing Vocabulary through Skits and Role-Playing using Interactive Whiteboards": 1 + "6th Grade English: Vocabulary Boosting with Skits and Role-Playing aided by Digital Storytelling Tools": 1 + "6th Grade English: Vocabulary Development through Skits and Role-Playing using iPads": 1 + "6th Grade English: Improving Vocabulary through Skits and Role-Playing with the aid of Virtual Reality Technology": 1 + "6th Grade English: Vocabulary Enrichment through Skits and Role-Playing utilizing Google Classroom": 1 + "6th Grade English: Skits and Role-Playing as Vocabulary Enhancement Tools enhanced by Augmented Reality": 1 + "6th Grade English: Vocabulary Augmentation through Skits and Role-Playing with the use of Digital Flashcards": 1 + "6th Grade English: Vocabulary Expansion through Skits and Role-Playing using Podcasts": 1 + "6th Grade English: Vocabulary Advancement through Skits and Role-Playing supported by Multimedia Presentations": 1 + "6th Grade English: Enriching Vocabulary through Skits and Role-Playing via YouTube Videos.": 1 + "2nd Grade History: Understanding the Black Death through the Lens of Archaeological Tools": 1 + "Exploring the Middle Ages: The Impact of The Black Death and the Concept of Miasma on Feudalism with Emphasis on Heraldry": 1 + "The Black Death and Feudal System in the Middle Ages: An In-depth Study of Medieval Medicine": 1 + "The Black Death, Miasma, and Feudal System: The Role of Alchemy in Medieval Times": 1 + "Investigating the Black Death: The Concept of Miasma and its Effect on Feudal System using Medieval Cartography": 1 + "2nd Grade History: The Black Death, the Concept of Miasma and its Impact on the Feudal System - Examining through the Magnifying Glass of Medieval Architecture": 1 + "Unraveling the Middle Ages: The Black Death, Miasma, and the Feudal System - A Closer Look at Medieval Agriculture Techniques": 1 + "The Black Death: Investigating its Impact on the Feudal System with the Concept of Miasma and Medieval Siege Weapons": 1 + "2nd Grade History: The Black Death, Miasma, and the Feudal System - An Insight into Medieval Textile Production": 1 + "The Black Death and the Fall of the Feudal System: Exploring the Middle Ages with the Concept of Miasma and Medieval Shipbuilding Techniques.": 1 + "2nd Grade Art: Fun with Watercolors and Brushes": 1 + "2nd Grade Art: Exploring Colors with Watercolors and Palette": 1 + "2nd Grade Art: Creative Splashes with Watercolors and Sponges": 1 + "2nd Grade Art: Learning Shading with Watercolors and Tissue Paper ": 1 + "2nd Grade Art: Fun with Watercolors and Masking Fluid Techniques ": 1 + "2nd Grade Art: Watercolor Magic with Salt Textures ": 1 + "2nd Grade Art: Fun with Watercolors and Spray Bottles": 1 + "2nd Grade Art: Adventures with Watercolors and Wax Resist Technique ": 1 + "2nd Grade Art: Fun with Watercolors and Wet on Wet Technique ": 1 + "2nd Grade Art: Discovering Shapes with Watercolors and Stencils": 1 + "7th Grade English: Exploring Science Fiction Literature through the Lens of Virtual Reality ": 1 + "7th Grade English: Delving into Science Fiction Literature using Augmented Reality": 1 + "7th Grade English: Examining Science Fiction Literature through the Concept of Time Travel": 1 + "7th Grade English: Investigating Science Fiction Literature and the Impact of Artificial Intelligence ": 1 + "7th Grade English: Understanding Science Fiction Literature through the Concept of Multiverses ": 1 + "7th Grade English: Studying Science Fiction Literature with a Focus on Holographic Technology ": 1 + "7th Grade English: Exploring Science Fiction Literature in the Context of Space Exploration": 1 + "7th Grade English: Navigating Science Fiction Literature through Future Predictive Technologies ": 1 + "7th Grade English: Discovering Science Fiction Literature and the Role of Bioengineering ": 1 + "7th Grade English: Interpreting Science Fiction Literature through the Concept of Teleportation": 1 + "2nd Grade Social Studies: Exploring Local Communities through Map Reading": 1 + "2nd Grade Social Studies: Introduction to Local Communities with VR Technology": 1 + "2nd Grade Social Studies: Local Communities and the Internet": 1 + "2nd Grade Social Studies: Understanding Local Communities through Census Data": 1 + "2nd Grade Social Studies: Local Communities and Their Historical Monuments": 1 + "2nd Grade Social Studies: Introduction to Local Communities Using Google Earth": 1 + "2nd Grade Social Studies: Examining Local Communities through GPS Technology": 1 + "2nd Grade Social Studies: Local Communities and Their Cultural Heritage": 1 + "2nd Grade Social Studies: Using Documentary Films to Understand Local Communities": 1 + "2nd Grade Social Studies: Local Communities and Their Natural Resources": 1 + "Utilizing ScratchJr for Enriching 1st Grade Mathematics: Understanding Shapes and Numbers through Digital Math Games": 1 + "Engaging 1st Graders with Tablet-Based Math Games: Exploring Shapes and Numbers": 1 + "Enriching 1st Grade Mathematics with Kahoot!: Understanding Shapes and Numbers through Interactive Quizzes": 1 + "Integrating Tynker in 1st Grade Mathematics: Learning Shapes and Numbers through Coding Games": 1 + "Enriching 1st Grade Mathematics with Prodigy: Enhancing Understanding of Shapes and Numbers through Game-Based Learning": 1 + "Using Google Classroom for 1st Grade Mathematics: Engaging Students in Shapes and Numbers with Digital Math Games": 1 + "Implementing Augmented Reality in 1st Grade Mathematics: Understanding Shapes and Numbers through Interactive Math Games": 1 + "Incorporating Seesaw in 1st Grade Mathematics: Boosting Understanding of Shapes and Numbers through Digital Portfolio Games": 1 + "1st Grade Math Enrichment with ABCmouse: Exploring Shapes and Numbers through Fun and Interactive Games": 1 + "Enriching 1st Grade Mathematics with Minecraft: Learning Shapes and Numbers in a 3D Gaming Environment.": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Microsoft Word ": 1 + "6th Grade English: Essay Writing with Mind Mapping Techniques and Google Docs ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and PowerPoint ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Prezi Presentations ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Concept Mapping Software ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Evernote ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Inspiration Software ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and XMind": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and MindMeister ": 1 + "6th Grade English: Essay Writing using Mind Mapping Techniques and Lucidchart.": 1 + "5th Grade Art: Mastering Watercolors with Round Brushes": 1 + "5th Grade Art: Exploring Watercolors through Landscape Painting": 1 + "5th Grade Art: The Art of Mixing Watercolors": 1 + "5th Grade Art: Exploring Watercolors with Palette Knives": 1 + "5th Grade Art: Watercolors and the Science of Color Theory": 1 + "5th Grade Art: Creating Textures with Watercolors": 1 + "5th Grade Art: Exploring Watercolors using Wet-on-Wet Technique": 1 + "5th Grade Art: Exploring Watercolors on Canvas": 1 + "5th Grade Art: Mastering Watercolors with Flat Brushes": 1 + "5th Grade Art: Exploring Watercolors with Digital Tools": 1 + "Exploring Newton’s Laws in Physical Science: A 6th Grade Course on Force Diagrams and Projectile Motion using Computer Simulations": 1 + "Investigating Force Diagrams with Vector Analysis: Newton’s Laws in 6th Grade Physical Science": 1 + "Newton’s Laws in Physical Science: A Comprehensive Study of Projectile Motion using Tracker Technology for 6th Graders": 1 + "The Magic of Newton’s Laws: A 6th Grade Course on Smart Sensors and Force Diagrams in Physical Science": 1 + "Applying Newton’s Laws: A 6th Grade Course on Projectile Motion using PhET Simulations in Physical Science": 1 + "Newton’s Laws in Action: A 6th Grade Course on Force Diagrams and Projectile Motion with Interactive Whiteboard Exercises": 1 + "Exploring Inertia and Momentum: A 6th Grade Course on Newton’s Laws using Force Diagrams ": 1 + "Newton’s Laws Uncovered: A 6th Grade Course on Force Diagrams and Projectile Motion using Vernier Sensors": 1 + "Mastering Newton’s Laws: An In-Depth 6th Grade Course on Projectile Motion and Force Diagrams using LabQuest 2": 1 + "The Science of Motion: An Applied Course on Newton’s Laws using Force Diagrams and Projectile Motion for 6th Graders.": 1 + "9th Grade Social Studies: Exploring Cultures Around the World Through Google Earth": 1 + "9th Grade Social Studies: Understanding Global Cultures Using Virtual Reality Technology": 1 + "9th Grade Social Studies: Examining World Cultures Through the Lens of Anthropology": 1 + "9th Grade Social Studies: Discovering Cultures Around the World Through Documentary Filmmaking": 1 + "9th Grade Social Studies: Analyzing World Cultures with Geographic Information Systems (GIS)": 1 + "9th Grade Social Studies: Comparative Study of World Cultures Using Statistical Data Analysis": 1 + "9th Grade Social Studies: Exploring Cultural Diversity Through Ethnographic Fieldwork Toolkit": 1 + "9th Grade Social Studies: Understanding Cultures Around the World Through Linguistics": 1 + "9th Grade Social Studies: Investigating Global Cultures Through Historical Archaeology": 1 + "9th Grade Social Studies: World Cultures Explored Through Cultural Anthropology Tools.": 1 + "2nd Grade Art: Exploring Landscape Sketching with Digital Oil Paints on iPads using Procreate App": 1 + "2nd Grade Art: Discovering Landscape Drawing with Digital Oil Paints on Tablets using Adobe Fresco": 1 + "2nd Grade Art: Mastering Landscape Sketching with Digital Oil Paints on Samsung Tablets using Concepts App": 1 + "2nd Grade Art: Learning Scenery Drawing with Digital Oil Paints on Tablets using Autodesk SketchBook": 1 + "2nd Grade Art: Journey to Landscape Sketching with Digital Oil Paints on Tablets using Layering Technique": 1 + "2nd Grade Art: Unveiling Landscape Drawing with Digital Oil Paints on Tablets and Wacom Stylus Pen": 1 + "2nd Grade Art: Exploring Landscape Sketching with Digital Oil Paints on Tablets using Pixelmator": 1 + "2nd Grade Art: Delving into Landscape Drawing with Digital Oil Paints on Tablets using Infinite Painter": 1 + "2nd Grade Art: Navigating through Landscape Sketching with Digital Oil Paints on Tablets using ArtFlow Studio": 1 + "2nd Grade Art: Experimenting Landscape Drawing with Digital Oil Paints on Tablets using the Smudging Technique": 1 + "1st Grade Science: Exploring Animal Habitats Through Microscopes": 1 + "1st Grade Science: Introduction to Animal Habitats Using Interactive Digital Maps": 1 + "1st Grade Science: Understanding Animal Habitats Through Virtual Reality": 1 + "1st Grade Science: Introduction to Animal Habitats and Ecosystems Through 3D Modeling": 1 + "1st Grade Science: Exploration of Animal Habitats Using Augmented Reality Tools": 1 + "1st Grade Science: Discovering Animal Habitats Through Computer Simulations": 1 + "1st Grade Science: Introduction to Animal Habitats Using Drone Technology": 1 + "1st Grade Science: Learning About Animal Habitats With Biome Kits": 1 + "1st Grade Science: Introduction to Animal Habitats and Biodiversity Through Mobile Apps ": 1 + "1st Grade Science: Investigating Animal Habitats Using Field Cameras": 1 + "1st Grade Elementary: Discovering Geometry with Digital Drawing Tools": 1 + "1st Grade Elementary: Interactive Learning with iPads: Fun with Numbers and Shapes": 1 + "1st Grade Elementary: Exploring Math Concepts with Virtual Reality: Numbers and Shapes": 1 + "1st Grade Elementary: Fun with Numbers and Shapes Using Math Apps": 1 + "1st Grade Elementary: Enhancing Geometry Skills with 3D Printing: Fun with Numbers and Shapes": 1 + "1st Grade Elementary: Introduction to Fractions with Tangram Puzzles": 1 + "1st Grade Elementary: Fun with Numbers and Shapes: Learning with Educational Robots": 1 + "1st Grade Elementary: Making Math Fun with Smartboard Games: Numbers and Shapes": 1 + "1st Grade Elementary: Digital Storytelling with Numbers and Shapes": 1 + "1st Grade Elementary: Fun with Numbers and Shapes: Understanding Symmetry with Mirroring Tools": 1 + "4th Grade Mathematics: Teaching Fraction Addition and Subtraction Using Like Denominators Through Interactive Whiteboards": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators with the Aid of Microsoft Excel": 1 + "4th Grade Mathematics: Exploring Fraction Addition and Subtraction Using Like Denominators with Math Manipulatives": 1 + "4th Grade Mathematics: Understanding Fraction Addition and Subtraction using Like Denominators Through Virtual Reality": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators: A Focus on Number Lines": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators Using Mathematical Software": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators and the Role of Tablets in Learning": 1 + "4th Grade Mathematics: Enhancing Fraction Addition and Subtraction using Like Denominators Through Educational Apps": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators: A Dive into Digital Learning Platforms": 1 + "4th Grade Mathematics: Fraction Addition and Subtraction using Like Denominators with Visual Aid Tools.": 1 + "7th Grade Science: Exploring Roller Coaster Physics with Newton’s Laws - The Impact of Gravity and Use of Accelerometers": 1 + "7th Grade Science: Implementing Vectors in Roller Coaster Physics - Newton’s Laws and Gravity": 1 + "7th Grade Science: Roller Coaster Physics - Application of Newton’s Laws, Gravity, and Friction": 1 + "7th Grade Science: Newton’s Laws in Roller Coaster Physics - The Gravity Impact and the Role of Potential Energy": 1 + "7th Grade Science: Roller Coaster Physics - Exploring Gravity Impact through Newton’s Laws and Free Fall Concepts": 1 + "7th Grade Science: Newton’s Laws and Gravity - The Influence on Roller Coaster Physics and the Inertia Concept": 1 + "7th Grade Science: Understanding Roller Coaster Physics with Newton’s Laws - The Effect of Gravity and the Use of Simulation Software": 1 + "7th Grade Science: Roller Coaster Physics - Studying Gravity Impact with Newton’s Laws and the Conservation of Energy Principle": 1 + "7th Grade Science: Unveiling Roller Coaster Physics - Newton’s Laws, Gravity, and the Centripetal Force": 1 + "7th Grade Science: Roller Coaster Physics - The Interplay of Gravity, Newton’s Laws, and Kinetic Energy.": 1 + "9th Grade English: Analyzing Shakespeare’s Works with Python-based AI Language Processing and Deep Learning": 1 + "9th Grade English: Decoding Shakespeare with NLP and TensorFlow Deep Learning": 1 + "9th Grade English: Exploring Shakespeare’s Literature with AI Language Processing through IBM Watson": 1 + "9th Grade English: Understanding Shakespeare with AI Language Processing using Google’s BERT": 1 + "9th Grade English: Studying Shakespeare’s Literature with AI Language Processing and Deep Learning in R Programming": 1 + "9th Grade English: Interpreting Shakespeare’s Texts with AI Language Processing and Keras Deep Learning": 1 + "9th Grade English: Investigating Shakespeare through AI Language Processing and Deep Learning with PyTorch": 1 + "9th Grade English: Navigating Shakespeare’s Literature with AI Language Processing and Deep Learning using Hugging Face’s Transformers": 1 + "9th Grade English: Unraveling Shakespeare’s Literature with AI Language Processing and Deep Learning in Julia Programming": 1 + "9th Grade English: Examining Shakespeare’s Works with AI Language Processing and Deep Learning using OpenAI’s GPT-3.": 1 + "9th Grade English: Unpacking Shakespeare’s Prose using Python’s NLTK and TextBlob for Sentiment Analysis": 1 + "9th Grade English: Using Python’s NLTK and Seaborn for Visualizing Sentiment Analysis in Shakespeare’s Prose": 1 + "9th Grade English: Discovering Shakespeare’s Prose through Python’s NLTK and Matplotlib for Sentiment Analysis": 1 + "9th Grade English: Exploring Sentiment Analysis in Shakespeare’s Prose using Python’s NLTK and TensorFlow": 1 + "9th Grade English: Analyzing Sentiment in Shakespeare’s Prose using Python’s NLTK and Pandas DataFrames": 1 + "9th Grade English: Delving into Shakespeare’s Prose using Python’s NLTK and Scikit-learn for Sentiment Analysis": 1 + "9th Grade English: Interpreting Shakespeare’s Prose using Python’s NLTK and the Bag-of-Words Model for Sentiment Analysis": 1 + "9th Grade English: Implementing Sentiment Analysis in Shakespeare’s Prose using Python’s NLTK and Word2Vec": 1 + "9th Grade English: Decoding Shakespeare’s Prose using Python’s NLTK and Jupyter Notebooks for Sentiment Analysis": 1 + "9th Grade English: Investigating Shakespeare’s Prose using Python’s NLTK and Latent Dirichlet Allocation for Sentiment Analysis.": 1 + "4th Grade Geography: Exploring Earth’s Landscape with Google Earth": 1 + "4th Grade Geography: Understanding Topography through 3D Printing Models": 1 + "4th Grade Geography: Learning Earth’s Biomes Using Interactive Digital Maps": 1 + "4th Grade Geography: Studying Earth’s Features through Virtual Reality": 1 + "4th Grade Geography: Analyzing Earth’s Climate Zones with Weather Data": 1 + "4th Grade Geography: Exploring Earth’s Continents and Oceans Using GPS Technology": 1 + "4th Grade Geography: Studying Plate Tectonics with Earthquake Simulators": 1 + "4th Grade Geography: Understanding Earth’s Water Cycle through Augmented Reality": 1 + "4th Grade Geography: Exploring Earth’s Atmosphere with Weather Balloons": 1 + "4th Grade Geography: Learning about Earth’s Natural Resources through Minecraft Education Edition": 1 + "5th Grade Music: Exploring Beethoven with the Piano": 1 + "5th Grade Music: Understanding Mozart through Violin Techniques": 1 + "5th Grade Music: Discovering Bach with Music Notation Software": 1 + "5th Grade Music: Introduction to Chopin using iPad Musical Apps": 1 + "5th Grade Music: Learning about Handel with Interactive Whiteboards": 1 + "5th Grade Music: Engaging with Vivaldi through Digital Audio Workstations": 1 + "5th Grade Music: Unveiling Haydn through the Art of Conducting": 1 + "5th Grade Music: Delving into Tchaikovsky with the Clarinet": 1 + "5th Grade Music: Exploring Schubert’s Works through Music Production Software": 1 + "5th Grade Music: Understanding Verdi with Guitar Techniques": 1 + "4th Grade Music: Exploring Handel’s Water Music Suites through Piano Interpretation and Sound Synthesis with Pro Tools Software and Reason using MIDI Controllers": 1 + "4th Grade Music: A Detailed Study on Handel’s Keyboard Suites using Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Audio Mixing Techniques": 1 + "4th Grade Music: Decoding Handel’s Suites with Piano Interpretation, Pro Tools Software, Reason, and Sound Design Concepts": 1 + "4th Grade Music: Learning Handel’s Suites through Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Introduction to Acoustics": 1 + "4th Grade Music: Understanding Handel’s Suites using Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Digital Audio Workstations": 1 + "4th Grade Music: In-depth Analysis of Handel’s Suites using Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Music Notation Software": 1 + "4th Grade Music: Exploring Handel’s Suites with Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Virtual Studio Technology": 1 + "4th Grade Music: Handel’s Suites: A Study in Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Music Sequencing": 1 + "4th Grade Music: Journey into Handel’s Suites using Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Audio Sampling Techniques": 1 + "4th Grade Music: Mastering Handel’s Suites through Piano Interpretation, Sound Synthesis with Pro Tools Software, Reason and Audio Editing Techniques": 1 + "Utilizing the Graphing Calculator: Deep Dive into Systems of Equations in 11th Grade Algebra Fundamentals": 1 + "Algebra Fundamentals: Exploring Systems of Equations with Matrix Method in 11th Grade Mathematics": 1 + "Algebra Fundamentals: A Focus on Systems of Equations using Cramer’s Rule in 11th Grade Mathematics": 1 + "Algebra Fundamentals: Analyzing Systems of Equations through Substitution Method in 11th Grade Mathematics": 1 + "Delving into 11th Grade Algebra: Systems of Equations and the Elimination Method": 1 + "Algebra Fundamentals: Exploring Systems of Equations using Wolfram Alpha in 11th Grade Mathematics": 1 + "Algebra Fundamentals: Systems of Equations and Graphical Solutions in 11th Grade Mathematics": 1 + "Algebra in 11th Grade: Focusing on Systems of Equations using Desmos Graphing Calculator": 1 + "Algebra Fundamentals: Solving Systems of Equations using Augmented Matrix in 11th Grade Mathematics": 1 + "Algebra Fundamentals: Discovering Systems of Equations through the Gauss-Jordan Elimination in 11th Grade Mathematics": 1 + "8th Grade Music: Exploring Harpsichord’s Influence in the Transition from Baroque to Classical Music through Clavichord": 1 + "8th Grade Music: A Detailed Study on the Role of Harpsichord and Polyphony in the Transition from Baroque to Classical Music": 1 + "8th Grade Music: Understanding the Harpsichord’s Impact through Sonata Allegro form in the Shift from Baroque to Classical Music": 1 + "8th Grade Music: The Harpsichord and Its Role in Early Temperament Tuning Systems during the Baroque to Classical Transition": 1 + "8th Grade Music: Harpsichord’s Role in the Evolution of Orchestration from the Baroque to Classical Era": 1 + "8th Grade Music: Analyzing Harpsichord’s Influence on the Development of Fortepiano during the Baroque to Classical Transition": 1 + "8th Grade Music: The Harpsichord’s Contribution to the Transition from Basso Continuo to Alberti Bass in Baroque to Classical Music": 1 + "8th Grade Music: Studying Harpsichord’s Role in the Evolution of the Concerto Grosso to the Solo Concerto": 1 + "8th Grade Music: The Harpsichord and Its Role in the Transition from Modal to Tonal Harmony in Baroque to Classical Music": 1 + "8th Grade Music: Harpsichord’s Influence on the Emergence of Homophonic Texture during the Transition from Baroque to Classical Music": 1 + "6th Grade Physical Education: Using Garmin Vivofit Jr2 for Fitness Tracking": 1 + "6th Grade Gym Class: Incorporating Fitbit Ace for Kids in Step Counting": 1 + "6th Grade PE: Boosting Fitness with the Use of Striiv - Smart Pedometer": 1 + "Middle School Physical Education: Advancing Fitness with Garmin Vívofit Jr. Pedometers": 1 + "6th Grade Physical Education: Employing UNICEF Kid Power Bands for Activity Tracking": 1 + "6th Grade PE: Enhancing Fitness through OZO Fitness SC2 Digital Pedometer": 1 + "6th Grade Physical Education: Promoting Health with 3DFitBud Simple Step Counter": 1 + "Middle School PE: Utilizing Omron Tri-Axis Pedometer in Fitness Monitoring": 1 + "6th Grade Physical Education: Integrating Realalt 3DTriSport Walking Pedometer in Fitness Journeys": 1 + "6th Grade PE: Implementing PINGKO Outdoor Multi-Function Portable Pedometer for Fitness Tracking": 1 + "5th Grade Science: Exploring Forest Ecosystems and Habitats with Infrared Thermal Imaging Drones": 1 + "5th Grade Science: Studying Marine Ecosystems Using Underwater Infrared Thermal Imaging Cameras": 1 + "5th Grade Science: Investigating Desert Ecosystems and Habitats through Satellite-Based Infrared Thermal Imaging ": 1 + "5th Grade Science: Examining Rainforest Ecosystems Using Drone Equipped Infrared Thermal Imaging Technology": 1 + "5th Grade Science: Understanding Arctic Habitats with Infrared Thermal Imaging and GIS Mapping Techniques": 1 + "5th Grade Science: Exploring Grassland Ecosystems with Handheld Infrared Thermal Imaging Cameras": 1 + "5th Grade Science: Investigating Mountain Ecosystems Using Infrared Thermal Imaging Mounted on Drones": 1 + "5th Grade Science: Understanding Wetland Habitats with Infrared Thermal Imaging and Wildlife Tracking Technologies": 1 + "5th Grade Science: Studying Tropical Ecosystems Using Infrared Thermal Imaging Paired with Machine Learning Algorithms": 1 + "5th Grade Science: Exploring Urban Ecosystems and Habitats with Infrared Thermal Imaging Attached to Aerial Balloons.": 1 + "9th Grade Music: Exploring the Lute in Harmony during Medieval Times": 1 + "9th Grade Music: Understanding Gregorian Chants in Medieval Harmony": 1 + "9th Grade Music: The Role of Monophony in Medieval Harmony": 1 + "9th Grade Music: Harmony in Medieval Times through the Lens of the Pipe Organ": 1 + "9th Grade Music: The Influence of the Psaltery on Harmony in Medieval Times": 1 + "9th Grade Music: Exploring Polyphony in Medieval Harmony": 1 + "9th Grade Music: The Use of the Hurdy-Gurdy in Medieval Harmony": 1 + "9th Grade Music: Harmony in Medieval Times - The Role of the Rebec": 1 + "9th Grade Music: The Impact of the Harpsichord on Medieval Harmony": 1 + "9th Grade Music: The Lyre and its Contribution to Harmony in Medieval Times": 1 + "9th Grade Music: Symphony of Sounds - Violin and the Concept of Timbre with Bowing Techniques": 1 + "9th Grade Music: Symphony of Sounds - Violin, Timbre, and the Art of Vibrato": 1 + "9th Grade Music: Symphony of Sounds - Exploring Violin Timbre through Digital Sound Processing": 1 + "9th Grade Music: Symphony of Sounds - Violin, Timbre and the Application of Pedal Effects": 1 + "9th Grade Music: Symphony of Sounds - Violin, Timbre, and the Study of Harmonics": 1 + "9th Grade Music: Symphony of Sounds - Violin Timbre Explorations with Music Production Software": 1 + "9th Grade Music: Symphony of Sounds - Violin, Timbre, and Introduction to MIDI Technology": 1 + "9th Grade Music: Symphony of Sounds - Understanding Violin Timbre through Frequency Analysis": 1 + "9th Grade Music: Symphony of Sounds - Violin, Timbre, and the Role of Acoustic Resonance": 1 + "9th Grade Music: Symphony of Sounds - Violin and the Concept of Timbre in Electronic Amplification.": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables Using Flashcards": 1 + "3rd Grade Mathematics: Exploring Times Tables Through Digital Apps for Multiplication Mastery": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables and Interactive Whiteboards": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables Using Manipulatives": 1 + "3rd Grade Mathematics: Utilizing Times Tables Through SmartBoard Technology for Multiplication Mastery": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables Using Math Puzzles": 1 + "3rd Grade Mathematics: Enhancing Multiplication Skills with Times Tables and Educational Games": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables Through Virtual Reality Tools": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables Using Online Quizzes": 1 + "3rd Grade Mathematics: Using Times Tables and Augmented Reality for Multiplication Mastery": 1 + "3rd Grade Mathematics: Introduction to Basic Multiplication Using the Times Table": 1 + "3rd Grade Mathematics: Division Mastery with Long Division Techniques": 1 + "3rd Grade Mathematics: Basic Multiplication and Division Using Abacus": 1 + "3rd Grade Mathematics: Interactive Learning of Multiplication Through Digital Apps": 1 + "3rd Grade Mathematics: Division Basics Using the Chunking Method": 1 + "3rd Grade Mathematics: Basic Multiplication with Grid Method": 1 + "3rd Grade Mathematics: Understanding Division Using Number Line Technique": 1 + "3rd Grade Mathematics: Basic Multiplication and Division Explored Through Math Games": 1 + "3rd Grade Mathematics: Exploring Division with Remainders": 1 + "3rd Grade Mathematics: Multiplication Mastery with Repeated Addition Technique": 1 + "2nd Grade Physical Education: Fun with Soccer and Ball Control Techniques": 1 + "2nd Grade Physical Education: Fun with Team Sports Using Interactive Video Games": 1 + "2nd Grade Physical Education: Exploring Basketball and Dribbling Techniques": 1 + "2nd Grade Physical Education: Fun with Team Sports Emphasizing on Sportsmanship": 1 + "2nd Grade Physical Education: Fun with Volleyball and Serving Techniques": 1 + "2nd Grade Physical Education: Fun with Team Sports Utilizing Fitness Trackers": 1 + "2nd Grade Physical Education: Fun with Baseball and Batting Techniques": 1 + "2nd Grade Physical Education: Fun with Team Sports Incorporating Yoga for Flexibility": 1 + "2nd Grade Physical Education: Fun with Hockey and Puck Control Techniques": 1 + "2nd Grade Physical Education: Engaging in Team Sports with Heart Rate Monitors": 1 + "4th Grade History: Exploring the American Revolution through Lenovo Mirage Solo VR and Interactive Timelines using Google Earth": 1 + "4th Grade History: The American Revolution Uncovered with Lenovo Mirage Solo VR, Interactive Timelines, and Kahoot Quizzes": 1 + "4th Grade History: Learning the American Revolution with Lenovo Mirage Solo VR, Interactive Timelines, and Padlet Boards": 1 + "4th Grade History: The American Revolution via Lenovo Mirage Solo VR, Interactive Timelines, and Scratch Programming": 1 + "4th Grade History: Unraveling the American Revolution with Lenovo Mirage Solo VR, Interactive Timelines, and Minecraft Education Edition": 1 + "4th Grade History: The American Revolution Journey with Lenovo Mirage Solo VR, Interactive Timelines, and Flipgrid Discussions": 1 + "4th Grade History: Discovering the American Revolution using Lenovo Mirage Solo VR, Interactive Timelines, and Quizlet Flashcards": 1 + "4th Grade History: American Revolution Adventures with Lenovo Mirage Solo VR, Interactive Timelines, and Socrative Assessments": 1 + "4th Grade History: The American Revolution Exploration with Lenovo Mirage Solo VR, Interactive Timelines, and Nearpod Lessons": 1 + "4th Grade History: Unveiling the American Revolution with Lenovo Mirage Solo VR, Interactive Timelines, and Seesaw Activities": 1 + "1st Grade Science: Exploring the Solar System with 3D Models in Planetarium Visits": 1 + "1st Grade Science: A Deep Dive into the Solar System Using Telescope Observations at the Planetarium": 1 + "1st Grade Science: The Solar System Explored through Planetarium Visits Using Virtual Reality Technology": 1 + "1st Grade Science: Understanding the Solar System through Interactive Planetarium Visits with Augmented Reality": 1 + "1st Grade Science: The Solar System’s Secrets Revealed by Hands-on Experiments at the Planetarium": 1 + "1st Grade Science: Solar System Exploration through Planetarium Visits and Application of the Scientific Method": 1 + "1st Grade Science: Learning the Solar System Dynamics through Planetarium Visits with Simulation Software": 1 + "1st Grade Science: An In-depth Study of the Solar System using Digital Projection at the Planetarium": 1 + "1st Grade Science: The Solar System Explored through Planetarium Visits with Space Flight Simulation": 1 + "1st Grade Science: Discovering the Solar System through Planetarium Visits Using Holographic Displays.": 1 + "4th Grade History: Columbus and the Discovery of America - Navigating with Astrolabes and Quadrants": 1 + "4th Grade History: The Role of Compass in Columbus’s Journey - Unveiling America": 1 + "4th Grade History: The Impact of Caravels in Columbus’s Discovery of America": 1 + "4th Grade History: From Europe to America - The Influence of Lateen Sails in Columbus’s Expedition ": 1 + "4th Grade History: Columbus’s Exploration - The Role of Celestial Navigation in Discovering America": 1 + "4th Grade History: Charting the Course - The significance of Cross Staff in Columbus’s Journey to America": 1 + "4th Grade History: Columbus and the Discovery of America - Understanding the Astrolabe and Nocturnal": 1 + "4th Grade History: Columbus’s Voyage - The Importance of Cartography in the Discovery of America": 1 + "4th Grade History: Columbus’s Expedition - The Role of the Hourglass in Navigating to America": 1 + "4th Grade History: The Discovery of America - The Impact of the Mariner’s Astrolabe in Columbus’s Journey": 1 + "9th Grade Physical Education: A Detailed Study of Javelin Throw Technologies and Techniques": 1 + "9th Grade Physical Education: Introduction to Track and Field - Emphasis on Javelin Throw and Aerodynamics": 1 + "Individual Sports in Physical Education: Javelin Throw - Incorporating Biomechanics in 9th Grade": 1 + "9th Grade Physical Education: Exploring Track and Field - The Science Behind Javelin Throw": 1 + "Introduction to Individual Sports: 9th Grade Physical Education Focusing on Javelin Throw and Velocity": 1 + "9th Grade Physical Education: Track and Field Studies - The Art and Science of Javelin Throw": 1 + "Physical Education for 9th Graders: Understanding Track and Field - Javelin Throw and Angular Momentum": 1 + "9th Grade Physical Education: Delving into Individual Sports - Javelin Throw and Flight Path Analysis": 1 + "Introduction to Individual Sports - 9th Grade Physical Education: Track and Field with Focus on Javelin Throw and Kinetic Energy": 1 + "9th Grade Physical Education: Track and Field Exploration - Special Focus on Javelin Throw and Force Distribution.": 1 + "10th Grade Language Arts: Creative Writing Workshop with Focus on Storytelling Techniques": 1 + "10th Grade Language Arts: Creative Writing Workshop utilizing Google Docs": 1 + "10th Grade Language Arts: Creative Writing Workshop - Exploring Character Development": 1 + "10th Grade Language Arts: Creative Writing Workshop - Introduction to Symbolism": 1 + "10th Grade Language Arts: Creative Writing Workshop - Using Microsoft Word for Drafting and Editing": 1 + "10th Grade Language Arts: Creative Writing Workshop - Understanding Literary Genres": 1 + "10th Grade Language Arts: Creative Writing Workshop - Mastering Dialogue Techniques": 1 + "10th Grade Language Arts: Creative Writing Workshop - Exploring Descriptive Imagery": 1 + "10th Grade Language Arts: Creative Writing Workshop - Utilizing Grammarly for Proofreading": 1 + "10th Grade Language Arts: Creative Writing Workshop - Focus on Plot Structuring": 1 + "10th Grade Language Arts: Creative Writing Workshop - Introduction to Metaphors and Similes.": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football through Passing Techniques": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football and the Importance of Teamwork": 1 + "1st Grade Physical Education: Fun with Team Sports - Mastering the Art of Tackling in Football": 1 + "1st Grade Physical Education: Fun with Team Sports - Learning the Rules of Football": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football through the Use of Strategy Boards": 1 + "1st Grade Physical Education: Fun with Team Sports - Exploring Football Using Interactive Digital Tools": 1 + "1st Grade Physical Education: Fun with Team Sports - Football and the Concept of Offside": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football with Ball Control Drills": 1 + "1st Grade Physical Education: Fun with Team Sports - Football, the Art of Dribbling ": 1 + "1st Grade Physical Education: Fun with Team Sports - Understanding Football through Goal Scoring Techniques": 1 + "6th Grade Music: Exploring Rhythm and Melody through Digital Audio Workstations": 1 + "6th Grade Music: Discovering Rhythm and Melody with GarageBand": 1 + "6th Grade Music: Understanding Rhythm and Melody using Piano Roll Editors": 1 + "6th Grade Music: Navigating Rhythm and Melody with Music Notation Software": 1 + "6th Grade Music: Delving into Rhythm and Melody with MIDI Controllers": 1 + "6th Grade Music: Exploring Rhythm and Melody through Loop Stations": 1 + "6th Grade Music: Grasping Rhythm and Melody with Beat Making Software": 1 + "6th Grade Music: Unraveling Rhythm and Melody using Virtual Drum Machines": 1 + "6th Grade Music: Exploring Rhythm and Melody through Music Theory Concepts": 1 + "6th Grade Music: Experiencing Rhythm and Melody with Digital Samplers": 1 + "5th Grade Music: Mastering Music Theory and Note Reading through Drumming Using Percussion Sheet Music": 1 + "5th Grade Music: Enhancing Note Reading and Music Theory with Drum Pad Apps ": 1 + "5th Grade Music: Advanced Music Theory and Note Reading through Electronic Drumming ": 1 + "5th Grade Music: Mastering Music Theory and Note Reading with Drumming and Metronome Use": 1 + "5th Grade Music: Learning Music Theory and Note Reading through Drumming with Music Notation Software": 1 + "5th Grade Music: Developing Music Theory and Note Reading Skills using Drum Sets and Dynamics": 1 + "5th Grade Music: Understanding Music Theory and Note Reading through Drumming with Beat Sequencers": 1 + "5th Grade Music: Exploring Music Theory and Note Reading using Drumming and Rhythm Patterns": 1 + "5th Grade Music: Improving Music Theory and Note Reading through Drumming with Tempo Changes": 1 + "5th Grade Music: Mastering Music Theory and Note Reading through Drumming using MIDI Controllers": 1 + "Incorporating the Use of Protective Helmets in 7th Grade Physical Education: A Comprehensive Guide to Kickboxing": 1 + "The Impact of Sports Headgear in Enhancing Safety during 7th Grade Kickboxing Sessions": 1 + "Utilizing Smart Helmets in 7th Grade Physical Education: An Insight into Kickboxing Safety": 1 + "The Role of Headgear in 7th Grade Physical Education: Enhancing Kickboxing Experience with GoPro Cameras": 1 + "Understanding Headgear’s Role in 7th Grade Physical Education: Kickboxing Techniques Using Virtual Reality": 1 + "A Detailed Study of the Importance of Headgear in 7th Grade Kickboxing: The Use of Sensor Technology": 1 + "The Role of Headgear in 7th Grade Physical Education: Kickboxing Safety Using Smart Headbands": 1 + "Leveraging Headgear for Safety in 7th Grade Kickboxing: The Importance of Impact Sensors": 1 + "The Significance of Headgear in 7th Grade Physical Education: Utilizing Helmet Cameras for Kickboxing Training": 1 + "Understanding the Role of Headgear in 7th Grade Physical Education: Kickboxing Techniques Enhanced with RFID Technology": 1 + "6th Grade Social Studies: Tracing the Evolution of Microprocessors with Raspberry Pi - Understanding CPU Architecture Through Binary Code": 1 + "6th Grade Social Studies: Exploring Microprocessors Evolution with Arduino - Deciphering CPU Architecture Through Binary Code": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture Through Binary Code with Logic Gates": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Using Assembly Language to Understand CPU Architecture": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture and Transistors Through Binary Code": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Exploring CPU Architecture with Breadboard Circuits and Binary Code": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture Through Binary Code and Integrated Circuits": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Decoding CPU Architecture Through Binary Code and VHDL": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - A Dive into CPU Architecture with Logic Analyzers and Binary Code": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture with FPGA Boards and Binary Code": 1 + "Rugby: The Game and Its Tactics - Utilization of Video Analysis Technology in 8th Grade Physical Education for Ten Different Set Plays": 1 + "Rugby: Studying Scrum Tactics with VR Simulations in 8th Grade Physical Education": 1 + "Rugby: Understanding Ruck Tactics through GPS Tracking Systems in 8th Grade Physical Education": 1 + "Rugby: The Game and Its Tactics - Application of Performance Analysis Software in 8th Grade Physical Education for Ten Unique Set Plays": 1 + "Rugby: Mastery of Lineout Tactics using Drones in 8th Grade Physical Education": 1 + "Rugby: The Game and Its Tactics - A Deep Dive into Maul Strategies with Wearable Tech in 8th Grade Physical Education": 1 + "Rugby: Understanding Try Scoring Tactics through 3D Motion Capture in 8th Grade Physical Education": 1 + "Rugby: The Game and Its Tactics - Incorporating Biomechanical Analysis in 8th Grade Physical Education for Ten Different Set Plays": 1 + "Rugby: The Game and Its Tactics - Utilizing Player Tracking Systems to Study Set Plays in 8th Grade Physical Education": 1 + "Rugby: The Game and Its Tactics - A Comprehensive Study of Kick Tactics using Ball Tracking Technology in 8th Grade Physical Education.": 1 + "4th Grade History: The First Americans - The Utilization of Bison Skins and the Concept of Tanning": 1 + "4th Grade History: The First Americans - The Use of Flint Tools for Animal Skin Tanning": 1 + "4th Grade History: The First Americans - The Technology of Smoke Tanning in Bison Skin Processing": 1 + "4th Grade History: The First Americans - The Role of Rawhide in the Tanning Process": 1 + "4th Grade History: The First Americans - The Utilization of Animal Skins and the Evolution of Tanning Techniques": 1 + "4th Grade History: The First Americans - The Art of Brain Tanning in Animal Skin Processing": 1 + "4th Grade History: The First Americans - The Use of Animal Fats in the Tanning Process": 1 + "4th Grade History: The First Americans - The Significance of Drying Racks in the Tanning Process": 1 + "4th Grade History: The First Americans - The Use of Scraper Tools in Animal Skin Tanning": 1 + "4th Grade History: The First Americans - The Importance of Salting in the Tanning of Animal Skins": 1 + "4th Grade History: The First Americans - The Innovation of Bark Tanning in Animal Skin Processing": 1 + "4th Grade History: Exploring the American Revolution with Lenovo Mirage Solo Virtual Reality Tours and Google Classroom Integration": 1 + "4th Grade History: Unveiling the American Revolution through Lenovo Mirage Solo VR Tours and Interactive Timelines": 1 + "4th Grade History: Immersion in the American Revolution via Lenovo Mirage Solo VR Tours and Augmented Reality Artifacts": 1 + "4th Grade History: Understanding the American Revolution through Lenovo Mirage Solo VR Tours and 3D Printed Historical Replicas": 1 + "4th Grade History: Journeying through the American Revolution with Lenovo Mirage Solo VR Tours and Virtual Field Trips": 1 + "4th Grade History: Engaging with the American Revolution through Lenovo Mirage Solo VR Tours and Gamified Learning Modules": 1 + "4th Grade History: Living the American Revolution through Lenovo Mirage Solo VR Tours and Holographic Characters": 1 + "4th Grade History: Discovering the American Revolution via Lenovo Mirage Solo VR Tours and Drone Captured Battlefields": 1 + "4th Grade History: Experiencing the American Revolution through Lenovo Mirage Solo VR Tours and Machine Learning Quizzes": 1 + "4th Grade History: Delving into the American Revolution with Lenovo Mirage Solo VR Tours and Data Visualization of Historical Events": 1 + "5th Grade History: Exploring Ancient Egypt with Shovels and Trowels": 1 + "5th Grade History: Deciphering Hieroglyphics in Ancient Egypt": 1 + "5th Grade History: Unearthing Ancient Egypt with Ground Penetrating Radar": 1 + "5th Grade History: Investigating Ancient Egypt through Carbon Dating Techniques": 1 + "5th Grade History: Unearthing Ancient Egypt with Excavation Tools": 1 + "5th Grade History: Understanding Ancient Egypt through Stratigraphy": 1 + "5th Grade History: Unveiling Ancient Egypt with Photogrammetry": 1 + "5th Grade History: Discovering Ancient Egypt with Aerial Photography": 1 + "5th Grade History: Revealing Ancient Egypt with 3D Modeling Tools": 1 + "5th Grade History: Excavating Ancient Egypt using Metal Detectors": 1 + "4th Grade Language Arts: Understanding Characters through Role-Playing using Digital Storytelling Tools ": 1 + "4th Grade Language Arts: Comprehending Characters with Role-Playing and Interactive Whiteboards ": 1 + "4th Grade Language Arts: Exploring Characters via Role-Playing with Online Simulation Games ": 1 + "4th Grade Language Arts: Unraveling Characters through Role-Playing and Voice Recording Technology ": 1 + "4th Grade Language Arts: Deciphering Characters using Role-Playing and Augmented Reality ": 1 + "4th Grade Language Arts: Interpretation of Characters through Role-Playing and Digital Puppetry ": 1 + "4th Grade Language Arts: Character Analysis with Role-Playing and Video Conferencing Tools ": 1 + "4th Grade Language Arts: Understanding Characters through Role-Playing and Virtual Reality ": 1 + "4th Grade Language Arts: Character Perception with Role-Playing and Interactive Digital Boards ": 1 + "4th Grade Language Arts: Grasping Characters through Role-Playing using Multimedia Presentation Software": 1 + "Fifth Grade Social Studies: Exploring American History Through Maps": 1 + "Fifth Grade Social Studies: Understanding American History Using Timelines": 1 + "Fifth Grade Social Studies: Studying American History with Virtual Reality": 1 + "Fifth Grade Social Studies: Exploring American History Through Interactive Whiteboard Activities": 1 + "Fifth Grade Social Studies: Analyzing American History Using Primary Sources": 1 + "Fifth Grade Social Studies: Delving into American History with Digital Storytelling": 1 + "Fifth Grade Social Studies: Exploring American History Through Documentary Analysis ": 1 + "Fifth Grade Social Studies: Investigating American History Using Augmented Reality": 1 + "Fifth Grade Social Studies: Learning American History Through Online Quizzes ": 1 + "Fifth Grade Social Studies: Exploring American History with Interactive Games": 1 + "The Use of Body Mass Index (BMI) in Integrating Garmin Fitness Tracker with CalorieKing App and Macronutrients: An Advanced 9th Grade Physical Education Course": 1 + "Hands-on Training: Utilizing Heart Rate Monitors in Conjunction with Garmin Fitness Tracker, CalorieKing App, and Macronutrients for 9th Grade Physical Education": 1 + "An In-depth Analysis of Sleep Patterns: Merging Garmin Fitness Tracker with CalorieKing App and Macronutrients for 9th Grade Physical Education Course": 1 + "A Comprehensive 9th Grade Physical Education Course: Incorporating Garmin Fitness Tracker, CalorieKing App, Macronutrients, and Yoga Techniques": 1 + "Exploring Pedometer Applications while Incorporating Garmin Fitness Tracker with CalorieKing App and Macronutrients: A 9th Grade Physical Education Course": 1 + "A 9th Grade Physical Education Course on Integrating Garmin Fitness Tracker with CalorieKing App, Macronutrients, and a Focus on Hydration": 1 + "A Detailed 9th Grade Physical Education Course: Combining Garmin Fitness Tracker, CalorieKing App, Macronutrients, and the Concept of Aerobic Vs Anaerobic Exercise": 1 + "The Role of Resistance Training in a 9th Grade Physical Education Course: Incorporating Garmin Fitness Tracker with CalorieKing App and Macronutrients": 1 + "A 9th Grade Physical Education Course: Garmin Fitness Tracker, CalorieKing App, Macronutrients, and the Introduction to High-Intensity Interval Training (HIIT)": 1 + "Exploring the Impact of a Balanced Diet: Integrating Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade Physical Education Course.": 1 + "7th Grade Chemistry & Lab Safety: Mastering Pipettes, Bunsen Burners & The pH Scale": 1 + "The Art of 7th Grade Chemistry: Understanding Pipettes, Bunsen Burners & The Periodic Table": 1 + "Exploring 7th Grade Chemistry: Pipettes, Bunsen Burners & Introduction to Molecular Structures": 1 + "7th Grade Chemistry Deep Dive: Pipettes, Bunsen Burners & The Laws of Thermodynamics": 1 + "7th Grade Chemistry & Lab Safety: Mastering Pipettes, Bunsen Burners & The Use of Microscopes": 1 + "Advanced 7th Grade Chemistry: Pipettes, Bunsen Burners & Experimenting with Chemical Reactions": 1 + "7th Grade Chemistry & Lab Safety: Pipettes, Bunsen Burners & The Study of Atomic Structure": 1 + "7th Grade Chemistry: Pipettes, Bunsen Burners & The Exploration of Chemical Bonds": 1 + "Navigating 7th Grade Chemistry: Pipettes, Bunsen Burners & The Science of Electrochemistry": 1 + "7th Grade Chemistry & Lab Safety: Pipettes, Bunsen Burners & The Concept of Stoichiometry.": 1 + "4th Grade Art: Exploring Color Theory with Adobe Photoshop": 1 + "4th Grade Art: Understanding Color Theory through Digital Art using Procreate": 1 + "4th Grade Art: Experimenting with Color Theory using MS Paint": 1 + "4th Grade Art: Discovering Color Theory through Digital Illustration using Autodesk Sketchbook": 1 + "4th Grade Art: Studying Color Theory with the aid of GIMP": 1 + "4th Grade Art: Exploring Color Theory and RGB color model using Corel Painter": 1 + "4th Grade Art: Delving into Color Theory with Krita Digital Painting": 1 + "4th Grade Art: Learning Color Theory using Clip Studio Paint": 1 + "4th Grade Art: Understanding Color Theory and CMYK model with Adobe Illustrator": 1 + "4th Grade Art: Exploring Color Theory and Digital Art using ArtRage": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns through Hygrometry Using Anemometers ": 1 + "Exploring Weather Patterns: A Focus on Hygrometry and Barometers for 4th Grade Environmental Studies": 1 + "4th Grade Studies: Understanding Weather Patterns through Hygrometry and Rain Gauges ": 1 + "4th Grade Environmental Studies: Delving into Weather Patterns with Hygrometry and Thermometers ": 1 + "4th Grade Environmental Studies: Unraveling Weather Patterns Through Hygrometry and Doppler Radar ": 1 + "Hygrometry in Action: Understanding Weather Patterns Using Weather Balloons in 4th Grade Environmental Studies ": 1 + "4th Grade Environmental Studies: Decoding Weather Patterns through Hygrometry and Weather Satellites ": 1 + "4th Grade Environmental Studies: Weather Patterns and Hygrometry - A Study with Weather Stations ": 1 + "Weather Patterns Uncovered: Hygrometry and Psychrometers in 4th Grade Environmental Studies ": 1 + "4th Grade Environmental Studies: Understanding Weather Patterns through Hygrometry and the Concept of Dew Point.": 1 + "4th Grade Social Studies: The United States of America - Exploring American Geography with ArcGIS Software": 1 + "4th Grade Social Studies: The United States of America - Learning American Topography through Google Earth": 1 + "4th Grade Social Studies: The United States of America - Applying QGIS for American Geography Exploration": 1 + "4th Grade Social Studies: The United States of America - Discovering American Landscapes with Drone Technology": 1 + "4th Grade Social Studies: The United States of America - Exploring American Geography with Satellite Imagery": 1 + "4th Grade Social Studies: The United States of America - Utilizing GPS Technology for American Geography Studies": 1 + "4th Grade Social Studies: The United States of America - Navigating American Geography with Digital Mapping Techniques": 1 + "4th Grade Social Studies: The United States of America - Mastering American Geography with 3D Modeling Tools": 1 + "4th Grade Social Studies: The United States of America - Examining American Geography with Virtual Reality Expeditions": 1 + "4th Grade Social Studies: The United States of America - Investigating American Geography with Geo-Referencing Techniques.": 1 + "2nd Grade Physical Education: Introduction to Soccer with Ball Control Techniques": 1 + "2nd Grade Physical Education: Introduction to Basketball with Dribbling Skills": 1 + "2nd Grade Physical Education: Introduction to Baseball with Batting Techniques": 1 + "2nd Grade Physical Education: Introduction to Volleyball with Serving Skills": 1 + "2nd Grade Physical Education: Introduction to Football with Passing Techniques": 1 + "2nd Grade Physical Education: Introduction to Hockey with Stick Handling Skills": 1 + "2nd Grade Physical Education: Introduction to Cricket with Batting Techniques": 1 + "2nd Grade Physical Education: Introduction to Rugby with Passing Techniques": 1 + "2nd Grade Physical Education: Introduction to Rounders with Batting Techniques": 1 + "2nd Grade Physical Education: Introduction to Netball with Passing and Shooting Techniques": 1 + "7th Grade English Language Arts: Boosting Poetry Comprehension using Personification and Similes through Interactive Digital Workbooks": 1 + "7th Grade English Language Arts: Utilizing Audio-Visual Aids for Enhanced Understanding of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Improving Poetry Comprehension with Personification, Similes, and Metaphors": 1 + "7th Grade English Language Arts: Leveraging Online Discussion Forums to Understand Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Enhancing Poetry Comprehension through Personification, Similes, and Hyperbole": 1 + "7th Grade English Language Arts: Employing Virtual Reality for Engaging Study of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Using Quizlet for Mastering Personification and Similes in Poetry Comprehension": 1 + "7th Grade English Language Arts: Applying Google Classroom for Collaborative Learning of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: In-depth Study of Personification and Similes in Poetry through Project-Based Learning": 1 + "7th Grade English Language Arts: Enhancing Poetry Comprehension through Personification, Similes, and Alliteration.": 1 + "3rd Grade History: Exploring Ancient Egyptian Pyramids using Virtual Reality Role-Play and Google Earth VR": 1 + "3rd Grade History: Unraveling Mysteries of Ancient Egyptian Hieroglyphs through Virtual Reality Role-Play and Rosetta Stone Software": 1 + "3rd Grade History: Discovering Ancient Egyptian Mummification Process through Virtual Reality Role-Play and 3D Printing Technology": 1 + "3rd Grade History: Understanding Ancient Egyptian Society’s Agriculture System through Virtual Reality Role-Play and Farming Simulation Software": 1 + "3rd Grade History: Learning about Ancient Egyptian Gods through Virtual Reality Role-Play and Augmented Reality Flashcards": 1 + "3rd Grade History: Journeying through Ancient Egyptian Nile Civilization using Virtual Reality Role-Play and Geographic Information System (GIS) Technology": 1 + "3rd Grade History: Studying Ancient Egyptian Pharaohs with Virtual Reality Role-Play and Interactive 3D Models": 1 + "3rd Grade History: Deconstructing Ancient Egyptian Architecture using Virtual Reality Role-Play and CAD Software": 1 + "3rd Grade History: Deciphering Ancient Egyptian Society’s Trade and Economy through Virtual Reality Role-Play and Economic Simulation Games": 1 + "3rd Grade History: Exploring Ancient Egyptian Warfare using Virtual Reality Role-Play and Military Strategy Simulation Software.": 1 + "4th Grade English: Embracing Literature: Exploring Interactive E-books on Google Play Books and their Impact using Augmented Reality": 1 + "4th Grade English: Analyzing the Influence of Google Play Books’ Interactive E-books with Text-to-Speech Technology ": 1 + "4th Grade English: Using Voice Recognition to Enhance Interaction with E-books on Google Play Books": 1 + "4th Grade English: The Effect of Interactive E-books on Google Play Books: A Deep Dive into Digital Bookmarks ": 1 + "4th Grade English: Embracing Literature: Understanding Interactive E-books on Google Play Books through Touchscreen Technology": 1 + "4th Grade English: The Role of Interactive E-books on Google Play Books: Enhancing Learning with Virtual Reality": 1 + "4th Grade English: Integrating Interactive E-books on Google Play Books: The Power of Cloud Storage ": 1 + "4th Grade English: The Impact of Interactive E-books on Google Play Books: A Study on E-ink Technology": 1 + "4th Grade English: Embracing Literature: Interactive E-books on Google Play Books and their Impact through Digital Highlighting Tools": 1 + "4th Grade English: The Influence of Interactive E-books on Google Play Books: A Focus on Hyperlink Technology.": 1 + "First Grade Art: Creating Your Own Fossil Artwork Using Clay": 1 + "First Grade Art: Creating Your Own Fossil Artwork With Paper Mache": 1 + "First Grade Art: Developing Fossil Artwork Through Printmaking ": 1 + "First Grade Art: Crafting Fossil Artwork via Acrylic Paints ": 1 + "First Grade Art: Constructing Fossil Artwork with Plaster of Paris": 1 + "First Grade Art: Creating Fossil Artwork Using Collage Techniques ": 1 + "First Grade Art: Building Fossil Artwork with Recycled Materials ": 1 + "First Grade Art: Designing Fossil Artwork through Digital Art Tools ": 1 + "First Grade Art: Creating Your Own Fossil Artwork Using Oil Pastels ": 1 + "First Grade Art: Creating Your Own Fossil Artwork with Watercolors ": 1 + "First Grade Art: Creating Fossil Artwork via Mixed Media Techniques": 1 + "1st Grade Art: Exploring Geometrical Shapes and Primary Colors with Crayon Art and Origami Collage using Scissors": 1 + "1st Grade Art: Understanding Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques": 1 + "1st Grade Art: Exploring 2D Shapes and RGB Color Theory using Crayon Art and Origami Collage Techniques": 1 + "1st Grade Art: A Detailed Study of Circles and Rainbow Colors using Crayon Art, Origami Collage Techniques, and Protractors": 1 + "1st Grade Art: A Deep Dive into Triangles and Color Mixing using Crayon Art and Origami Collage Techniques with the aid of Rulers": 1 + "1st Grade Art: An In-depth Study of Shapes and Colors using Crayon Art and Origami Collage Techniques with Compasses": 1 + "1st Grade Art: Exploring Squares and Shades of Colors using Crayon Techniques, Origami Collages, and Digital Art Software": 1 + "1st Grade Art: Learning about Polygons and Complementary Colors through Crayon Art and Origami Collage Techniques using Glue": 1 + "1st Grade Art: Discovering Geometric Shapes and Warm Colors using Crayon Art, Origami Collage Techniques, and Stencils": 1 + "1st Grade Art: A Comprehensive Study of Rectangles and Pastel Colors using Crayon Art, Origami Collage Techniques, and Craft Paper.": 1 + "6th Grade Social Studies: Samuel Morse’s Telegraph and the Role of Morse Code in Communication Revolution": 1 + "6th Grade Social Studies: The Telegraph: Morse Code and the Emergence of Long-Distance Communication": 1 + "6th Grade Social Studies: Morse Code and the Evolution of Telegraphy: A Deep Dive into the Electromagnetic Telegraph": 1 + "6th Grade Social Studies: Morse Code, the Telegraph, and the Impact on Global Communication Systems": 1 + "6th Grade Social Studies: The Invention of the Telegraph and the Importance of Morse Code in 19th Century Communication": 1 + "6th Grade Social Studies: How Morse Code Transformed The Telegraph and Revolutionized Communication": 1 + "6th Grade Social Studies: The Influence of Morse Code on the Telegraph’s Development and Communication Advances": 1 + "6th Grade Social Studies: Morse Code’s Application in Telegraph Technology: A Breakthrough in Communication": 1 + "6th Grade Social Studies: Morse Code: Its Pivotal Role in the Evolution of Telegraph Systems and Global Communication": 1 + "6th Grade Social Studies: The Telegraph and Morse Code: Catalysts of the 19th Century Communication Revolution": 1 + "5th Grade Art: Watercolor Artistry Using Masking Fluid Techniques and Round Brushes": 1 + "5th Grade Art: Exploring Watercolor Artistry with Masking Fluid Techniques and Palette Knives": 1 + "5th Grade Art: Mastering Watercolor Artistry Using Masking Fluid Techniques and Sable Hair Brushes": 1 + "5th Grade Art: Discovering Watercolor Artistry with Masking Fluid Techniques and Synthetic Brushes": 1 + "5th Grade Art: Watercolor Artistry Using Masking Fluid Techniques and Mixing Palettes": 1 + "5th Grade Art: Enhancing Watercolor Artistry with Masking Fluid Techniques and Easel Usage": 1 + "5th Grade Art: Watercolor Artistry Using Masking Fluid Techniques and Fan Brushes": 1 + "5th Grade Art: Watercolor Artistry and Masking Fluid Techniques with Acrylic Paints": 1 + "5th Grade Art: The Art of Watercolor Using Masking Fluid Techniques and Flat Brushes": 1 + "5th Grade Art: Watercolor Artistry with Masking Fluid Techniques and Canvas Textures": 1 + "5th Grade Science: Understanding Ecosystems - Using Microscopes to Explore Food Chains ": 1 + "5th Grade Science: Understanding Ecosystems - Dissecting Food Chains with Interactive Software ": 1 + "5th Grade Science: Understanding Ecosystems - Utilizing Digital Simulations to Study Food Chains ": 1 + "5th Grade Science: Understanding Ecosystems - Investigating Food Chains through Experiments ": 1 + "5th Grade Science: Understanding Ecosystems - Analyzing Food Chains using Diagrams ": 1 + "5th Grade Science: Understanding Ecosystems - Exploring Food Chains with 3D Models ": 1 + "5th Grade Science: Understanding Ecosystems - Learning Food Chains through Virtual Reality ": 1 + "5th Grade Science: Understanding Ecosystems - Employing Data Analysis Tools to Understand Food Chains ": 1 + "5th Grade Science: Understanding Ecosystems - The Power of Graphs in Visualizing Food Chains ": 1 + "5th Grade Science: Understanding Ecosystems - Enhancing Food Chains Knowledge through Augmented Reality": 1 + "7th Grade English: Exploring Science Fiction Literature through Jules Verne’s Works": 1 + "7th Grade English: Exploring Science Fiction Literature with a Focus on Futuristic Technology": 1 + "7th Grade English: Analysis of Time Travel Concepts in Science Fiction Literature": 1 + "7th Grade English: Exploring Alien Cultures in Science Fiction Literature": 1 + "7th Grade English: Decoding Metaphors in Science Fiction Literature": 1 + "7th Grade English: Exploring Science Fiction Literature: An In-depth Study of Space Exploration": 1 + "7th Grade English: Science Fiction Literature - Understanding Artificial Intelligence": 1 + "7th Grade English: The Role of Dystopia in Science Fiction Literature": 1 + "7th Grade English: Science Fiction Literature and its Depiction of Post-Apocalyptic Societies": 1 + "7th Grade English: Science Fiction Literature - A Study of Extraterrestrial Life": 1 + "7th Grade English: Exploring Science Fiction Literature through the Lens of Virtual Reality.": 1 + "4th Grade Art: Exploring Cubism through Printmaking with Linocut Tools ": 1 + "4th Grade Art: Understanding Impressionism Through Printmaking Using Woodcut Techniques ": 1 + "4th Grade Art: Mastering Renaissance Art Through Printmaking with Stencils ": 1 + "4th Grade Art: Investigating Abstract Art with Silkscreen Printmaking ": 1 + "4th Grade Art: Discovering Surrealism Through Printmaking Using Lithography ": 1 + "4th Grade Art: Studying Pop Art Through Printmaking with Mono-printing Techniques ": 1 + "4th Grade Art: Analyzing Realism Through Printmaking Using Etching Technology ": 1 + "4th Grade Art: Delving Into Expressionism Through Printmaking with Block Printing Tools ": 1 + "4th Grade Art: Examining Art Nouveau Using Printmaking with Collograph Techniques ": 1 + "4th Grade Art: Uncovering Symbolism Through Printmaking Using Drypoint Techniques": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers with Lego Blocks": 1 + "1st Grade Mathematics: Exploring Geometry with Interactive Cubes ": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers with Tangram Puzzles ": 1 + "1st Grade Mathematics: Learning Numbers with Abacus and Interactive Blocks": 1 + "1st Grade Mathematics: Engaging with Shapes through Augmented Reality ": 1 + "1st Grade Mathematics: Discovering 2D and 3D Shapes with Interactive Blocks ": 1 + "1st Grade Mathematics: Exploring Numbers and Shapes with Virtual Manipulatives ": 1 + "1st Grade Mathematics: Learning about Shapes and Numbers with Geoboard ": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers with Interactive Pattern Blocks ": 1 + "1st Grade Mathematics: Exploring Geometry with Tinkertoy Construction Set": 1 + "9th Grade Social Studies: Engaging with Arctic Wildlife through Augmented Reality using Wikitude, Microsoft HoloLens, and VR Goggles": 1 + "9th Grade Social Studies: Exploration of Polar Bears in Arctic Wildlife through Augmented Reality using Wikitude and Microsoft HoloLens": 1 + "9th Grade Social Studies: Understanding Arctic Fox Behavior Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Google Cardboard": 1 + "9th Grade Social Studies: Study of Arctic Wildlife Migration Patterns Through Augmented Reality Using Wikitude and Microsoft HoloLens": 1 + "9th Grade Social Studies: Exploring Arctic Marine Life Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Unity 3D": 1 + "9th Grade Social Studies: Analysis of Arctic Climate Impact on Wildlife Through Augmented Reality Using Wikitude and Microsoft HoloLens": 1 + "9th Grade Social Studies: Arctic Bird Species Identification Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Oculus Rift": 1 + "9th Grade Social Studies: Understanding Arctic Wildlife Adaptation Mechanisms Through Augmented Reality Using Wikitude and Microsoft HoloLens": 1 + "9th Grade Social Studies: Conservation of Arctic Wildlife Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Leap Motion Controller": 1 + "9th Grade Social Studies: Studying Arctic Plant-Wildlife Interactions Through Augmented Reality Using Wikitude and Microsoft HoloLens": 1 + "8th Grade Music: Exploring Classical Music Evolution with Garageband Software": 1 + "8th Grade Music: Investigation of Classical Music Progression through Audacity": 1 + "8th Grade Music: Discovery of Classical Music Transformation with Digital Audio Workstations": 1 + "8th Grade Music: Tracing Classical Music Evolution through MIDI Technology": 1 + "8th Grade Music: Study of Classical Music Development with Music Sequencing Software": 1 + "8th Grade Music: Understanding Classical Music Change using Digital Sound Processing": 1 + "8th Grade Music: Analysis of Classical Music Evolution through FL Studio": 1 + "8th Grade Music: Probing into Classical Music Evolution with Music Notation Software": 1 + "8th Grade Music: Examination of Classical Music Progress through Synthesizer Technology": 1 + "8th Grade Music: Unraveling Classical Music Evolution with Digital Audio Editor": 1 + "6th Grade Social Studies: Exploring Environmental Conservation through Smart Agriculture and the Role of Drones ": 1 + "Understanding Hydroponics: An Introduction to Environmental Conservation in 6th Grade Social Studies": 1 + "6th Grade Social Studies: An Introduction to Environmental Conservation using Smart Agriculture and Vertical Farming Techniques": 1 + "6th Grade Social Studies: An Insight into Environmental Conservation with Smart Agriculture and IoT Devices": 1 + "Environmental Conservation through Smart Agriculture: 6th Grade Social Studies with Emphasis on Crop Rotation": 1 + "6th Grade Social Studies: Environmental Conservation with Smart Agriculture and Precision Farming": 1 + "6th Grade Social Studies: Environmental Conservation and Smart Agriculture using GPS Technology": 1 + "6th Grade Social Studies: Environmental Conservation through Smart Agriculture and the use of Soil Sensors": 1 + "Environmental Conservation and Smart Agriculture: 6th Grade Social Studies focusing on Permaculture Design": 1 + "6th Grade Social Studies: Exploring Environmental Conservation with Smart Agriculture and Aquaponics.": 1 + "8th Grade Science: Exploring DNA Replication and Chromosome Segregation During Mitosis Using Microscopes in Introductory Biology": 1 + "8th Grade Science: PCR Amplification: DNA and Chromosomes During Cell Division in Introductory Biology": 1 + "8th Grade Science: Investigating DNA Structure and Chromosome Dynamics During Meiosis Using Gel Electrophoresis in Introductory Biology": 1 + "8th Grade Science: Unraveling DNA and Chromosome Movements During Cell Division Through Fluorescent Tagging in Introductory Biology": 1 + "8th Grade Science: DNA Sequencing and Chromosome Behavior During Cell Division in Introductory Biology": 1 + "8th Grade Science: Probing DNA Methylation and Chromosome Arrangement During Cell Division Using Epigenetic Markers in Introductory Biology": 1 + "8th Grade Science: DNA Recombination and Chromosome Behavior During Cell Division: A CRISPR-Cas9 Approach in Introductory Biology": 1 + "8th Grade Science: Understanding DNA and Chromosome Behavior During Cell Division Through Bioinformatics in Introductory Biology": 1 + "8th Grade Science: Analyzing DNA and Chromosome Behavior During Cell Division Using Flow Cytometry in Introductory Biology": 1 + "8th Grade Science: Exploring DNA Replication Errors and Chromosome Behavior During Cell Division Using Mutagenesis in Introductory Biology.": 1 + "Understanding American Government with Constitutional Analysis: A 10th Grade Social Studies Course Using Interactive Multimedia Tools": 1 + "Analyzing the American Constitution: A 10th Grade Social Studies Course with Emphasis on Federalism": 1 + "Understanding American Government: A 10th Grade Course Using AI-based Simulations for Constitutional Analysis": 1 + "A 10th Grade Social Studies Course: Examining American Government through Constitutional Analysis and VR Experiences": 1 + "Understanding American Government: A 10th Grade Course Incorporating Blockchain Technology in Constitutional Analysis": 1 + "A 10th Grade Social Studies Course: American Government and Constitutional Analysis via Augmented Reality": 1 + "Deciphering American Government: A 10th Grade Social Studies Course with Focus on Constitutional Analysis Using E-Learning Platforms ": 1 + "Understanding American Government: A Detailed Study of Constitutional Analysis in a 10th Grade Social Studies Course Using Data Visualization Techniques": 1 + "A Comprehensive 10th Grade Course: American Government and Constitutional Analysis using Collaborative Online Tools": 1 + "Understanding American Government: A 10th Grade Social Studies Course with Emphasis on Constitutional Analysis using Machine Learning Algorithms.": 1 + "7th Grade Music: Introduction to Musical Notes through Piano": 1 + "7th Grade Music: Learning Musical Notes using Sibelius Software": 1 + "7th Grade Music: Understanding Musical Notes with Acoustic Guitar": 1 + "7th Grade Music: Introduction to Musical Notes and Staff Notation": 1 + "7th Grade Music: Deciphering Musical Notes through Music Sequencing Technology ": 1 + "7th Grade Music: Exploring Musical Notes using a Digital Keyboard": 1 + "7th Grade Music: Musical Notes- A Comprehensive Course with the Flute ": 1 + "7th Grade Music: Introduction to Musical Notes & Rhythm through Drumming": 1 + "7th Grade Music: Learning Musical Notes using Music Production Software": 1 + "7th Grade Music: Introduction to Musical Notes and Clefs through Violin.": 1 + "5th Grade Science: Exploring Frequency and Pitch in Musical Instruments with Oscilloscopes": 1 + "5th Grade Science: The Physics of Sound Waves in String Instruments": 1 + "5th Grade Science: The Science of Resonance in Musical Instruments using Tuning Forks": 1 + "5th Grade Science: Understanding Timbre in Musical Instruments with Spectrographs": 1 + "5th Grade Science: Studying Sound Amplification in Brass Instruments": 1 + "5th Grade Science: Investigating Acoustic Resonance in Woodwind Instruments with Sound Sensors": 1 + "5th Grade Science: The Role of Materials in Sound Production of Musical Instruments": 1 + "5th Grade Science: The Physics of Sound in Percussion Instruments using Waveform Monitors": 1 + "5th Grade Science: Exploring Sound Intensity in Musical Instruments with Decibel Meters": 1 + "5th Grade Science: The Science of Harmonics in String Instruments using Frequency Analyzers": 1 + "Soil Moisture Sensors in Furrow Irrigation: An Introduction to Water Conservation Techniques for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: Introduction to Evapotranspiration and Water Conservation Techniques in 2nd Grade Environmental Studies": 1 + "Furrow Irrigation with Drip Systems: An Introduction to Water Conservation Techniques for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: A Study of Rainwater Harvesting Techniques for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation using Smart Sprinklers: A Water Conservation Course for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: Understanding Water Footprint in 2nd Grade Environmental Studies": 1 + "Furrow Irrigation Techniques using Soil Moisture Meters: A Water Conservation Course for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: An Introduction to Greywater Recycling for 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: Exploring Water-saving Irrigation Controllers in 2nd Grade Environmental Studies": 1 + "Furrow Irrigation with Automated Systems: An Introduction to Water Conservation Techniques for 2nd Grade Environmental Studies": 1 + "Tenth Grade Music: Exploring Chord Progressions with Sibelius Software and MIDI Keyboard ": 1 + "Tenth Grade Music: Understanding Melodic Structures using Sibelius Software and Audacity ": 1 + "Tenth Grade Music: Analyzing Rhythm Patterns with Sibelius Software and Metronome Application ": 1 + "Tenth Grade Music: Decoding Harmony in Music Theory with Sibelius Software and Harmony Explorer ": 1 + "Tenth Grade Music: Learning Scales and Modes through Sibelius Software and Virtual Piano ": 1 + "Tenth Grade Music: Composition Techniques with Sibelius Software and Digital Audio Workstation ": 1 + "Tenth Grade Music: Exploring Key Signatures in Music Theory using Sibelius Software and Key Signature Trainer ": 1 + "Tenth Grade Music: Understanding Interval Training with Sibelius Software and EarMaster ": 1 + "Tenth Grade Music: Incorporating Dynamics in Music Theory using Sibelius Software and Volume Mixer ": 1 + "Tenth Grade Music: Mastering Tempo Changes with Sibelius Software and a Digital Metronome.": 1 + "6th Grade Art: Introduction to Clay Sculpture": 1 + "6th Grade Art: The Art of Sculpture Using Wood Carving Tools": 1 + "6th Grade Art: The Art of Bronze Sculpture": 1 + "6th Grade Art: The Art of Sculpture: Exploring 3D Printing Techniques": 1 + "6th Grade Art: The Art of Sculpture: A Dive into Stone Carving": 1 + "6th Grade Art: The Art of Sculpture: Understanding Plaster Casting": 1 + "6th Grade Art: The Art of Wire Sculpture": 1 + "6th Grade Art: The Art of Ice Sculpture Using Chainsaws": 1 + "6th Grade Art: The Art of Sculpture: Mastering Molding Techniques": 1 + "6th Grade Art: The Art of Sculpture with Found Objects": 1 + "6th Grade Art: The Art of Sculpture: Focusing on Ceramic Tools": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Whiteboard, Markers, and Flashcards": 1 + "3rd Grade Elementary: Mastering Multiplication with Whiteboard, Markers, and a Multiplication Chart": 1 + "3rd Grade Elementary: Exploring Multiplication through Whiteboard, Markers, and Interactive Math Games": 1 + "3rd Grade Elementary: Introduction to Multiplication with Whiteboard, Markers, and Number Lines": 1 + "3rd Grade Elementary: Discovering Multiplication Using Whiteboard, Markers, and Manipulatives": 1 + "3rd Grade Elementary: Learning Multiplication with Whiteboard, Markers, and Digital Math Apps": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Whiteboard, Markers, and Calculator Tricks": 1 + "3rd Grade Elementary: Hands-On Multiplication with Whiteboard, Markers, and Grid Paper": 1 + "3rd Grade Elementary: Introduction to Multiplication Using Whiteboard, Markers, and Math Puzzles": 1 + "3rd Grade Elementary: Building Multiplication Skills with Whiteboard, Markers, and Math Workbooks": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Exploring the Brush Tool": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Using Layers": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Mastering the Eraser Tool": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Discovering the Color Wheel": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Learning about Symmetry Tools": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Introduction to Gradient Fills": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Working with Text Tools": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Navigating through the User Interface": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Exploring Advanced Selection Tools": 1 + "2nd Grade Art: A Beginner’s Guide to SketchBook for Digital Art - Understanding the Concept of Layer Blending Modes": 1 + "4th Grade Art: Mastering Color Theory and Shading Techniques with Prismacolor Pencils": 1 + "4th Grade Art: Exploring Color Theory and Shading Techniques using Crayola Colored Pencils": 1 + "4th Grade Art: Introduction to Color Wheel and Shading Techniques with Faber-Castell Colored Pencils": 1 + "4th Grade Art: Understanding Color Theory and Shading Techniques through Digital Art Software": 1 + "4th Grade Art: Discovering Color Theory and Shading Techniques with Watercolor Pencils": 1 + "4th Grade Art: A Deep Dive into Color Theory and Shading Techniques using Oil Pastels": 1 + "4th Grade Art: Applying Color Theory and Shading Techniques with Staedtler Colored Pencils": 1 + "4th Grade Art: Introduction to Light and Shadow through Color Theory and Shading Techniques using Colored Pencils": 1 + "4th Grade Art: Exploring Color Mixing and Shading Techniques with Derwent Colored Pencils": 1 + "4th Grade Art: Understanding the Role of Complementary Colors in Shading Techniques using Colored Pencils": 1 + "1st Grade Art and Color Theory: Introduction to Clay Sculpting with Pottery Wheel": 1 + "1st Grade Art and Color Theory: Exploring Clay Sculpting with Rolling Pins": 1 + "1st Grade Art and Color Theory: Fundamentals of Clay Sculpting with Clay Loop Tools": 1 + "1st Grade Art and Color Theory: Introduction to Clay Sculpting Using Wire Clay Cutters": 1 + "1st Grade Art and Color Theory: Clay Sculpting Basics with Kid-friendly Clay Extruders": 1 + "1st Grade Art and Color Theory: Discovering Clay Sculpting with Clay Molds": 1 + "1st Grade Art and Color Theory: Clay Sculpting Adventures with Texture Combs": 1 + "1st Grade Art and Color Theory: Clay Sculpting 101 with Rib Tools": 1 + "1st Grade Art and Color Theory: Exploring Clay Sculpting Concepts with Needle Tools": 1 + "1st Grade Art and Color Theory: Clay Sculpting Journey with Kid’s Clay Press.": 1 + "8th Grade History: The Role of Chinese Woodblock Printing in the Development of Gutenberg’s Printing Press in Renaissance Europe": 1 + "8th Grade History: Impact of Woodblock Printing on the Creation of Movable Type during the Renaissance": 1 + "8th Grade History: The Influence of Traditional Woodblock Printing on Gutenberg’s Metal-Based Printing Press": 1 + "8th Grade History: The Transition from Woodblock Printing to Movable Type in the Renaissance Era": 1 + "8th Grade History: From Woodblock to Press: The Technological Evolution in Renaissance Printing": 1 + "8th Grade History: Woodblock Printing and Its Influence on the Gutenberg Press during the Renaissance": 1 + "8th Grade History: The Role of Woodblock Printing in the Invention of Mechanical Movable Type in the Renaissance": 1 + "8th Grade History: Tracing the Path from Woodblock Printing to the Gutenberg Press: A Renaissance Revolution": 1 + "8th Grade History: Woodblock Printing and Its Effect on the Innovation of the Printing Press in the Renaissance Era": 1 + "8th Grade History: The Evolution from Woodblock Printing to the Gutenberg Press during the Renaissance Period.": 1 + "The Impact of the Black Death on Feudalism: An Examination of Medieval Hygiene Practices and the Advancements in Plumbing Using Aqueducts in 2nd Grade History ": 1 + "The Impact of the Black Death on Feudalism: A Study of Medieval Sanitation and the Progress in Plumbing Highlighting the Use of Sewage Systems in 2nd Grade History ": 1 + "The Role of the Black Death in the Decline of Feudalism: Focusing on Medieval Hygiene Practices and the Innovations in Plumbing Including Chamber Pots in 2nd Grade History ": 1 + "The Influence of the Black Death on Feudalism: A Detailed Look at Medieval Hygiene Practices and the Breakthroughs in Plumbing with the Introduction of the Latrine in 2nd Grade History ": 1 + "The Consequence of the Black Death on Feudalism: Scrutinizing Medieval Hygiene Practices and the Evolution in Plumbing Utilizing Wells in 2nd Grade History ": 1 + "The Outcome of the Black Death on Feudalism: A Deep Dive into Medieval Hygiene Practices and the Advancements in Plumbing Focusing on the Garderobe in 2nd Grade History ": 1 + "The Effect of the Black Death on Feudalism: An Insight into Medieval Hygiene Practices and the Progression in Plumbing with the Invention of Cesspits in 2nd Grade History ": 1 + "The Ramifications of the Black Death on Feudalism: A Detailed Analysis of Medieval Hygiene Practices and the Developments in Plumbing Emphasizing the Use of Public Baths in 2nd Grade History ": 1 + "The Aftermath of the Black Death on Feudalism: A Study on Medieval Hygiene Practices and the Improvements in Plumbing Implementing the Privy in 2nd Grade History ": 1 + "The Result of the Black Death on Feudalism: A Comprehensive Review of Medieval Hygiene Practices and the Achievements in Plumbing with the Advent of Sewerage in 2nd Grade History": 1 + "8th Grade Science: PCR Amplification and Gel Electrophoresis: Examining DNA and Chromosomes During Cell Division in Introductory Biology": 1 + "Understanding DNA Sequencing in 8th Grade Science: PCR Amplification and Chromosomes During Cell Division": 1 + "8th Grade Science: Implementing Microscopes in PCR Amplification: Studying DNA and Chromosomes During Cell Division": 1 + "8th Grade Science: PCR Amplification and CRISPR Technology: An In-Depth Study of DNA and Chromosomes in Cell Division": 1 + "Incorporating Bioinformatics in 8th Grade Science: PCR Amplification and Chromosomes During Cell Division": 1 + "8th Grade Science: Exploring DNA and Chromosomes During Cell Division through PCR Amplification and Microarray Analysis": 1 + "8th Grade Science: PCR Amplification and Flow Cytometry: Detailed Study of DNA and Chromosomes During Cell Division": 1 + "Analyzing DNA and Chromosomes with PCR Amplification and Next-Generation Sequencing in 8th Grade Science": 1 + "8th Grade Science: PCR Amplification and Spectrophotometry: A Comprehensive Look at DNA and Chromosomes During Cell Division": 1 + "8th Grade Science: PCR Amplification, DNA, Chromosomes, and the Role of Nanotechnology in Cell Division.": 1 + "9th Grade Music: Appreciating Classics in Music History through Piano Technology": 1 + "9th Grade Music: Exploring Classics in Music History with Violin Techniques": 1 + "9th Grade Music: Understanding Classics in Music History using Audio Recording Software": 1 + "9th Grade Music: Discovering Classics in Music History through the Lens of Music Notation": 1 + "9th Grade Music: Decoding Classics in Music History with Music Theory Concepts": 1 + "9th Grade Music: Interpreting Classics in Music History through Electronic Synthesizers": 1 + "9th Grade Music: Appreciating Classics in Music History via Digital Audio Workstations": 1 + "9th Grade Music: Exploring Classics in Music History through the Art of Conducting": 1 + "9th Grade Music: Navigating Classics in Music History with Sheet Music Reading Skills": 1 + "9th Grade Music: Delving into Classics in Music History using MIDI Technology.": 1 + "Utilizing Dartfish Software in 6th Grade Physical Education: Mastering Tennis Through Biomechanics Concepts": 1 + "6th Grade Physical Education: Understanding Tennis Swing using High-Speed Cameras and Biomechanics Concepts": 1 + "6th Grade Physical Education: Mastering Tennis through Biomechanics Concepts using Motion Capture Technology": 1 + "Kinovea Software Application in 6th Grade Physical Education: Improving Tennis Skills through Biomechanics": 1 + "6th Grade Physical Education: Enhancing Tennis Performance with Force Plate Technology and Biomechanics ": 1 + "6th Grade Physical Education: Mastering Tennis through Biomechanics Concepts using 3D Motion Analysis": 1 + "Using Electromyography in 6th Grade Physical Education: A Biomechanical Approach to Tennis Mastery": 1 + "6th Grade Physical Education: Tennis Mastery through Biomechanics Concepts via Pressure Mat Analysis": 1 + "6th Grade Physical Education: Mastering Tennis with Inertial Sensors and Biomechanics Concepts": 1 + "6th Grade Physical Education: Exploring Tennis Through Biomechanics Concepts and Video Analysis Tools.": 1 + "8th Grade Music: The Evolution of Classical Music, the Harpsichord, and the Emergence of Sonatas with Focus on the Fortepiano": 1 + "Exploring the Impact of Sheet Music on the Evolution of Classical Music in 8th Grade": 1 + "8th Grade Music: An In-depth Study of the Harpsichord and the Early Sonatas": 1 + "8th Grade Music: The Role of Metronomes in the Evolution of Classical Music": 1 + "8th Grade Music: The Emergence of Sonatas - An Introduction to Musical Notation": 1 + "Understanding the Role of the Harpsichord in the Development of Classical Music: An 8th Grade Perspective": 1 + "8th Grade Music: The Influence of the Violin Bow on the Evolution of Classical Music": 1 + "The Evolution of Classical Music and Sonatas: A Focus on the Harpsichord for 8th Graders": 1 + "8th Grade Music: Classical Music Evolution, the Harpsichord, and the Rise of Sonatas - A Study on the Role of the Piano": 1 + "8th Grade Music: The Emergence of Sonatas and the Evolution of the Harpsichord - Exploring the Concept of Counterpoint.": 1 + "5th Grade Science: Investigating Ecosystems and Habitats Through Soil Analysis Techniques Using Microscopes": 1 + "5th Grade Science: Understanding Ecosystems Through pH Soil Testing Techniques": 1 + "5th Grade Science: Exploring Habitats Through Soil Analysis Techniques Using Moisture Meters": 1 + "5th Grade Science: Examining Ecosystems and Habitats Through Soil Sampling and Analysis with Sieve Sets": 1 + "5th Grade Science: Investigating Soil Biodiversity in Ecosystems and Habitats Using Berlese Funnels": 1 + "5th Grade Science: Delving into Ecosystems Through Soil Analysis Techniques Using Spectrophotometers": 1 + "5th Grade Science: Unveiling Habitats Through Soil Analysis Techniques Using Soil Augers": 1 + "5th Grade Science: Probing Ecosystems and Habitats Through Soil Analysis Techniques Using Quadrat Sampling": 1 + "5th Grade Science: Dissecting Ecosystems Through Soil Analysis Techniques Using Infiltrometers": 1 + "5th Grade Science: Discovering Habitats Through Soil Analysis Techniques Using GIS Technology.": 1 + "10th Grade Geometry: Mastering Shapes and Angles with The Pythagorean Theorem": 1 + "Geometry for 10th Grade: Exploring Shapes and Angles using AutoCAD": 1 + "10th Grade Geometry: Understanding Shapes and Angles through Euclidean Proofs": 1 + "Geometry in 10th Grade: Comprehending Angles and Shapes with Geogebra": 1 + "Advanced 10th Grade Geometry: Shapes, Angles, and the application of Trigonometry": 1 + "10th Grade Geometry: A Comprehensive Guide to Shapes and Angles using the Compass and Straightedge": 1 + "Geometry in Depth: A 10th Grade Course on Shapes and Angles with the Utilization of Geometers Sketchpad": 1 + "10th Grade Geometry: Understanding Shapes and Angles through Coordinate Geometry": 1 + "Geometry for 10th Graders: A Deep Dive into Shapes and Angles with SolidWorks": 1 + "10th Grade Geometry: Mastering Shapes and Angles with the Use of Digital Protractors.": 1 + "7th Grade Art: Creating Wildlife Portraits using Adobe Photoshop": 1 + "7th Grade Art: Creating Wildlife Portraits using Digital Software and Wacom Tablets": 1 + "7th Grade Art: Exploring Wildlife Portraits with Corel Painter Software": 1 + "7th Grade Art: Wildlife Portraits Creation using Digital Tablets and Sketchbook Pro": 1 + "7th Grade Art: Learning Wildlife Portraits using Digital Software and Layering Techniques": 1 + "7th Grade Art: Creating Wildlife Portraits with Adobe Illustrator and Digital Tablets": 1 + "7th Grade Art: Crafting Wildlife Portraits using Digital Software and Texture Brushes": 1 + "7th Grade Art: Designing Wildlife Portraits using Procreate App on iPad": 1 + "7th Grade Art: Wildlife Portraits Creation using Digital Software and Color Theory": 1 + "7th Grade Art: Crafting Wildlife Portraits using Autodesk SketchBook and Digital Pen.": 1 + "Utilizing Adobe Digital Editions and Interactive Multimedia for Environmental Literature Analysis in 7th Grade Language Arts": 1 + "Exploring Environmental Literature in 7th Grade Language Arts with Adobe Digital Editions and Virtual Reality": 1 + "Adobe Digital Editions and the Use of Digital Markup Tools in 7th Grade Environmental Literature Studies": 1 + "Interactive Reading: Adobe Digital Editions & Text-to-Speech Technology in 7th Grade Environmental Literature": 1 + "Applying Adobe Digital Editions and Digital Annotation Tools in 7th Grade Environmental Literature": 1 + "Enhancing 7th Grade Environmental Literature Learning Through Adobe Digital Editions and Gamification": 1 + "A Deep Dive into 7th Grade Environmental Literature Using Adobe Digital Editions and E-Reader Functions": 1 + "7th Grade Environmental Literature: Adobe Digital Editions and the Use of Interactive Quizzes": 1 + "Adobe Digital Editions and the Integration of Interactive Timelines in 7th Grade Environmental Literature": 1 + "The Application of Adobe Digital Editions and Audiovisual Aids in 7th Grade Environmental Literature.": 1 + "4th Grade Social Studies: The American Revolution - The Role of the Printing Press and Benjamin Franklin’s Inventions": 1 + "4th Grade Social Studies: The American Revolution - Impact of the Printing Press and the Concept of Propaganda": 1 + "4th Grade Social Studies: The American Revolution - Exploring the Printing Press and the Use of Political Cartoons": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press and the Revolutionary Use of Pamphlets": 1 + "4th Grade Social Studies: The American Revolution - How the Printing Press and the Postal System Shaped Public Opinion": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, the Almanac and Their Role in Dissemination of Ideas": 1 + "4th Grade Social Studies: The American Revolution - The Influence of the Printing Press and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, Newspapers and Revolutionary Rhetoric": 1 + "4th Grade Social Studies: The American Revolution - The Role of the Printing Press and the Quill Pen in Communication": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press and the Development of Revolutionary Literature.": 1 + "Exploring 11th Grade Algebra: Mastering Systems of Equations through the Elimination Method with Graphing Calculators": 1 + "Understanding 11th Grade Algebra: Using the Quadratic Formula in Systems of Equations and the Elimination Method": 1 + "Advanced 11th Grade Algebra: Unraveling Systems of Equations with the Elimination Method and Matrix Operations": 1 + "11th Grade Algebra Breakdown: Decoding Systems of Equations and the Elimination Method with Cramer’s Rule": 1 + "Comprehensive 11th Grade Algebra: Unveiling Systems of Equations and the Elimination Method Through Algebra Tiles": 1 + "11th Grade Algebra Insights: Systems of Equations and the Elimination Method using Wolfram Alpha": 1 + "Navigating 11th Grade Algebra: Systems of Equations and the Elimination Method Utilizing the Substitution Method": 1 + "11th Grade Algebra Unpacked: Conquering Systems of Equations using the Elimination Method and Geogebra Tools": 1 + "In-Depth 11th Grade Algebra: Discovering Systems of Equations and the Elimination Method via Khan Academy": 1 + "11th Grade Algebra Mastery: A Deep Dive into Systems of Equations and the Elimination Method with Desmos Graphing Calculator.": 1 + "2nd Grade Mathematics: Mastering Multiplication with SMART Board Interactive Games and Abacus Tools": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills through SMART Board Interactive Games and Flashcards": 1 + "2nd Grade Mathematics: Learning Multiplication via SMART Board Interactive Games and Virtual Reality": 1 + "2nd Grade Mathematics: Improving Multiplication with SMART Board Games and Mathematical Puzzles": 1 + "2nd Grade Mathematics: Mastering Multiplication through SMART Board Interactive Games and Tablet Apps": 1 + "2nd Grade Mathematics: Strengthening Multiplication Skills with SMART Board Interactive Games and Online Quizzes": 1 + "2nd Grade Mathematics: Advancing Multiplication through SMART Board Interactive Games and Physical Manipulatives": 1 + "2nd Grade Mathematics: Understanding Multiplication via SMART Board Interactive Games and Augmented Reality": 1 + "2nd Grade Mathematics: Perfecting Multiplication with SMART Board Interactive Games and Educational Workbooks": 1 + "2nd Grade Mathematics: Excelling in Multiplication through SMART Board Interactive Games and Projector-Based Activities.": 1 + "6th Grade Social Studies: The Impact of Otis Safety Elevator in Technological Progress and Innovation": 1 + "6th Grade Social Studies: The Role of the Electric Elevator in Technological Progress and the Concept of Vertical Transportation": 1 + "6th Grade Social Studies: Exploring the Influence of the Hydraulic Elevator System in Technological Innovation": 1 + "6th Grade Social Studies: Understanding the Electric Elevator’s Contribution to Skyscraper Construction Technology": 1 + "6th Grade Social Studies: The Electric Elevator and Its Role in the Advent of Steel Frame Structures": 1 + "6th Grade Social Studies: The Electric Elevator: A Key Driver in the Evolution of Modern Architecture": 1 + "6th Grade Social Studies: The Impact of the Electric Elevator on Urbanization and Technological Progress": 1 + "6th Grade Social Studies: Technological Innovations: Focusing on the Electric Elevator’s Role in Building Design": 1 + "6th Grade Social Studies: The Pivotal Role of the Electric Elevator in High-rise Building Technology": 1 + "6th Grade Social Studies: The Electric Elevator and its Influence on the Development of the Counterweight System.": 1 + "4th Grade English: Journey through Storytelling: Exploring Narratives with StoryboardThat": 1 + "4th Grade English: Storyboard Creation with Toon Boom in Journey through Storytelling": 1 + "4th Grade English: Journey through Storytelling: Enhancing Interpretation Skills with Adobe Spark": 1 + "4th Grade English: Storyboarding and Storytelling: A Deep Dive with Canva": 1 + "4th Grade English: Employing PowToon for Story Creation in Journey through Storytelling": 1 + "4th Grade English: Journey through Storytelling: Developing Narratives with Microsoft Sway": 1 + "4th Grade English: Journey through Storytelling: Storyboard Creation with Google Slides": 1 + "4th Grade English: Plotagon Education in 4th Grade English: Journey through Storytelling": 1 + "4th Grade English: Journey through Storytelling: Incorporating Prezi for Story Interpretation": 1 + "4th Grade English: Journey through Storytelling: Crafting Narratives with Moovly Storyboarding": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction Using Montessori Arithmetic Boards and Number Beads": 1 + "Advanced 2nd Grade Math: Exploring Addition and Subtraction through Montessori Boards and the Place Value Concept": 1 + "2nd Grade Mathematics Mastery: Utilizing Montessori Arithmetic Boards and Abacus for Addition and Subtraction": 1 + "Detailed Study of 2nd Grade Math: Addition and Subtraction Mastery with Montessori Boards and Digital Tools": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Montessori Boards and Interactive Whiteboard Activities": 1 + "2nd Grade Math: Comprehensive Understanding of Addition and Subtraction Using Montessori Boards and Fraction Circles": 1 + "Second Grade Math: A Deep Dive into Addition and Subtraction with Montessori Arithmetic Boards and Educational Math Apps": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills Using Montessori Boards and Virtual Manipulatives": 1 + "2nd Grade Mathematics In-depth: Addition and Subtraction Mastery using Montessori Boards and the Bar Model Method": 1 + "2nd Grade Math: A Detailed Approach to Addition and Subtraction Using Montessori Arithmetic Boards and Math-based Board Games": 1 + "9th Grade Social Studies: Exploring the American Revolution through Document Analysis": 1 + "The American Revolution in 9th Grade Social Studies: A Focus on Political Cartography": 1 + "Deciphering the American Revolution: Using Cryptography in 9th Grade Social Studies": 1 + "9th Grade Social Studies: The American Revolution and the Role of Print Media": 1 + "Analyzing the American Revolution through Data Visualization in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Understanding the American Revolution through Battlefield Strategies": 1 + "The American Revolution in 9th Grade Social Studies: Exploring through Augmented Reality": 1 + "9th Grade Social Studies: The American Revolution and its Economic Impact": 1 + "Investigating the American Revolution’s Propaganda in 9th Grade Social Studies": 1 + "9th Grade Social Studies: The American Revolution and the Influence of Naval Technology.": 1 + "The Use of the Fiber Twisting Method in the Invention and Application of Rope-making Technology in Constructing the Great Wall: A 6th Grade History Course": 1 + "The Role of Spinning Wheels in Ancient Chinese Rope-making Techniques for the Construction of the Great Wall: A 6th Grade History Course": 1 + "The Evolution of Loom Technology in the Production of Ropes for Building the Great Wall of China: A 6th Grade History Course": 1 + "The Integration of Primitive Pulley Systems in Rope-making for the Construction of the Great Wall: A 6th Grade History Course": 1 + "The Impact of Hemp Processing Techniques in Rope-making for the Great Wall Construction: A 6th Grade History Course": 1 + "The Influence of Silk-Reeling Technology in Rope-making for the Assembly of the Great Wall: A 6th Grade History Course": 1 + "The Implementation of Ancient Spindles in Rope-making Processes during the Great Wall Construction: A 6th Grade History Course": 1 + "The Utilization of Bamboo Weaving Techniques in Rope-making for the Great Wall of China: A 6th Grade History Course": 1 + "The Contribution of Flax Processing in Ancient Chinese Rope-making for the Great Wall Construction: A 6th Grade History Course": 1 + "The Significance of Reed Twisting Techniques in Rope-making for the Building of the Great Wall: A 6th Grade History Course": 1 + "Exploring 1st Grade Mathematics: Understanding Shapes and Numbers with Fraction Circles through Abacus": 1 + "Mastering 1st Grade Math: Introducing Shapes and Numbers Using Fraction Circles and Digital Whiteboard": 1 + "A Deep Dive into 1st Grade Mathematics: Shapes, Numbers, and Fraction Circles with Graphing Calculators": 1 + "Navigating 1st Grade Math: Enhancing Learning of Shapes and Numbers through Fraction Circicles and Montessori Counting Beads": 1 + "1st Grade Mathematics Mastery: A Focus on Shapes, Numbers, and Fraction Circles Utilizing Smartboard Technology": 1 + "Unpacking 1st Grade Mathematics: A Journey through Shapes and Numbers with Fraction Circles and Tangible Manipulatives ": 1 + "Interactive 1st Grade Math: Exploring Shapes and Numbers Using Fraction Circles and Virtual Reality Tools": 1 + "1st Grade Mathematics: A Comprehensive Guide to Shapes and Numbers with Fraction Circles and Proportional Reasoning ": 1 + "Navigating 1st Grade Mathematics: A Focus on Shapes, Numbers, and Fraction Circles through the Lens of Spatial Visualization ": 1 + "Exploring 1st Grade Mathematics: Deepening Understanding of Shapes and Numbers with Fraction Circles and Geoboard Tools": 1 + "5th Grade Music: Mastering Rhythm and Beats with Djembe Drums": 1 + "Comprehending Rhythm through the Xylophone: A Course for 5th Graders": 1 + "Interactive Learning: 5th Grade Music with Digital Drum Pads": 1 + "5th Grade Music: Learning Beats and Rhythm through the Cajon": 1 + "Rhythm and Beats: Exploring Music Theory with Bongos for 5th Graders": 1 + "5th Grade Music: An Introduction to Rhythm with Maracas": 1 + "The Magic of Congas: Comprehending Rhythm and Beats for 5th Graders": 1 + "5th Grade Music: Understanding Rhythm and Beats through Tambourines": 1 + "Music Education: Exploring Rhythm and Beats with Timpani for 5th Graders": 1 + "Advanced Rhythm Techniques: A 5th Grade Music Course with Electronic Drum Kits": 1 + "4th Grade English: Exploring Story Elements Through Character Development": 1 + "4th Grade English: An In-depth Study of Story Elements Using Graphic Organizers": 1 + "4th Grade English: Unpacking Story Elements Through Plot Analysis": 1 + "4th Grade English: Using Digital Storytelling to Explore Story Elements": 1 + "4th Grade English: Exploring Story Elements Through Interactive Journals": 1 + "4th Grade English: Leveraging Story Maps in Understanding Story Elements": 1 + "4th Grade English: Story Elements Exploration: A Focus on Theme Identification": 1 + "4th Grade English: Utilizing Literary Circles to Discover Story Elements": 1 + "4th Grade English: Story Elements Analysis through Creative Writing Assignments": 1 + "4th Grade English: Enhancing Understanding of Story Elements with Multimedia Presentations": 1 + "3rd Grade Mathematics: Exploring Multiplication Tables with Interactive Whiteboard": 1 + "3rd Grade Mathematics: Discovering Multiplication Tables through Educational Apps": 1 + "3rd Grade Mathematics: Utilizing Flashcards in Multiplication Tables": 1 + "3rd Grade Mathematics: Learning Multiplication Tables through Digital Games": 1 + "3rd Grade Mathematics: Hands-on Learning of Multiplication Tables Using Manipulatives": 1 + "3rd Grade Mathematics: Mastering Multiplication Tables with Smartboards": 1 + "3rd Grade Mathematics: Navigating Multiplication Tables via Augmented Reality": 1 + "3rd Grade Mathematics: Decoding Multiplication Tables with Virtual Reality Tools": 1 + "3rd Grade Mathematics: Integration of Tablets in Learning Multiplication Tables": 1 + "3rd Grade Mathematics: Understanding Multiplication Tables using Math Software Programs": 1 + "7th Grade Language Arts: Exploring Acrostic Poems with iPads, Pages, and Digital Pen for Enhanced Creativity": 1 + "7th Grade Language Arts: Journey through Acrostic Poems using iPads, Pages and Voice Recording for Interactive Learning": 1 + "7th Grade Language Arts: Delving into Acrostic Poems with iPads, Pages and Adobe Spark for Digital Storytelling": 1 + "7th Grade Language Arts: Navigating Acrostic Poems using iPads, Pages, and GarageBand for Musical Interpretation": 1 + "7th Grade Language Arts: Journey through Acrostic Poems using iPads, Pages, and Augmented Reality for Immersive Learning": 1 + "7th Grade Language Arts: Exploring Acrostic Poems with iPads, Pages, and Google Classroom for Collaborative Learning": 1 + "7th Grade Language Arts: Journey through Acrostic Poems using iPads, Pages, and Keynote for Visual Presentation": 1 + "7th Grade Language Arts: Venturing Acrostic Poems using iPads, Pages, and iMovie for Cinematic Creativity": 1 + "7th Grade Language Arts: Journey through Acrostic Poems using iPads, Pages, and Book Creator for Digital Publishing": 1 + "7th Grade Language Arts: Exploring Acrostic Poems with iPads, Pages, and Podcasting for Auditory Learning.": 1 + "2nd Grade Science: Exploring Grassland Ecosystems using Phantom 4 Drones, Soil Sampling Kits, Bison Documentaries and Rain Gauge": 1 + "2nd Grade Science: Investigating Grassland Habitats with Mavic 2 Pro Drones, Soil pH Testing Kits, Bison Documentaries and Weather Station": 1 + "2nd Grade Science: Studying Grassland Biomes with DJI Inspire Drones, Soil Nutrient Kits, Bison Documentaries and Star Mapping": 1 + "2nd Grade Science: Unraveling Grassland Habitats with Parrot Anafi Drones, Soil Moisture Kits, Bison Documentaries and Microscopes": 1 + "2nd Grade Science: Decoding Grassland Ecosystems using Skydio 2 Drones, Soil Temperature Kits, Bison Documentaries and Plant Identification Guides": 1 + "2nd Grade Science: Examining Grassland Habitats with Autel Robotics Drones, Soil Texture Kits, Bison Documentaries and Birdwatching Binoculars": 1 + "2nd Grade Science: Exploring Grassland Biomes with Yuneec Typhoon Drones, Soil Composition Kits, Bison Documentaries and Wildlife Cameras": 1 + "2nd Grade Science: Investigating Grassland Habitats using PowerVision Drones, Soil Fertility Testing Kits, Bison Documentaries and Insect Nets": 1 + "2nd Grade Science: Studying Grassland Ecosystems with Holy Stone Drones, Soil Salinity Kits, Bison Documentaries and Solar Observing Glasses": 1 + "2nd Grade Science: Unfolding Grassland Habitats with DJI Mavic Mini Drones, Soil Analysis Kits, Bison Documentaries and Terrestrial Globe": 1 + "6th Grade PE: Enhancing Fitness and Health Awareness through Yoga with Yoga Mats and Breathing Techniques": 1 + "6th Grade PE: Interactive Fitness and Health Awareness via Yoga and Breathing Techniques using Fitness Tracker": 1 + "6th Grade PE: Fitness and Health Awareness through Yoga and Breathing Techniques using Heart Rate Monitors": 1 + "6th Grade PE: Improving Fitness and Health Awareness with Yoga Poses and Breathing Techniques using Exercise Balls": 1 + "6th Grade PE: Fitness and Health Awareness via Yoga and Breathing Techniques employing Smart Watch Technology": 1 + "6th Grade PE: Fitness and Health Awareness through Yoga and Breathing Techniques utilizing Yoga Blocks": 1 + "6th Grade PE: Fitness and Health Awareness via Yoga and Pranayama Breathing Techniques": 1 + "6th Grade PE: Fitness and Health Awareness through Yoga and Breathing Techniques using Resistance Bands": 1 + "6th Grade PE: Fitness and Health Awareness via Yoga and Breathing Techniques with Bodyweight Exercises": 1 + "6th Grade PE: Enhancing Fitness and Health Awareness through Yoga and Breathing Techniques using Fitness Apps": 1 + "10th Grade Chemistry: Exploring Chemical Bonding with Virtual Reality Simulations": 1 + "10th Grade Chemistry: Understanding Chemical Bonding through Periodic Table Exploration": 1 + "10th Grade Chemistry: Hands-On Learning with Chemical Bonding and Atomic Structure": 1 + "10th Grade Chemistry: Interactive Chemical Bonding Lessons with 3D Models": 1 + "10th Grade Chemistry: Chemical Bonding Analysis using Spectrophotometers": 1 + "10th Grade Chemistry: Chemical Bonding Experiments with pH Meters": 1 + "10th Grade Chemistry: Chemical Bonding Studies using Molecular Modelling Software": 1 + "10th Grade Chemistry: Advanced Chemical Bonding with Balancing Chemical Equations": 1 + "10th Grade Chemistry: Chemical Bonding and Ionization Energy": 1 + "10th Grade Chemistry: In-depth Chemical Bonding with Electron Configuration.": 1 + "3rd Grade History: Exploring Ancient Egypt with Google Earth Interactive Timelines": 1 + "3rd Grade History: A Voyage to Ancient Egypt Utilizing Virtual Reality Timelines": 1 + "3rd Grade History: Journey to Ancient Egypt through Augmented Reality Timelines": 1 + "3rd Grade History: Discovery of Ancient Egypt via 3D Printing Interactive Timelines": 1 + "3rd Grade History: Travel to Ancient Egypt Using Interactive Holographic Timelines": 1 + "3rd Grade History: Trip to Ancient Egypt via Touchscreen Interactive Timelines": 1 + "3rd Grade History: Expedition to Ancient Egypt with Online Interactive Timelines": 1 + "3rd Grade History: Adventure to Ancient Egypt via Animation Enhanced Timelines": 1 + "3rd Grade History: Odyssey to Ancient Egypt Using Interactive Digital Timelines": 1 + "3rd Grade History: Trek to Ancient Egypt via Interactive Timelines on Mobile Apps": 1 + "10th Grade History: The Role of Flintlock Muskets in the American Revolution Era": 1 + "10th Grade History: The Impact of Cannon Technology During the American Revolution": 1 + "10th Grade History: The Significance of Black Powder in the Warfare of the American Revolution": 1 + "10th Grade History: The Influence of Long Rifles on the American Revolution Battles": 1 + "10th Grade History: The Role of Bayonets in the Infantry Tactics of the American Revolution": 1 + "10th Grade History: The Impact of Blockade Running as a Strategy in the American Revolution Era": 1 + "10th Grade History: The Role of Ironclad Ships in the Maritime Warfare of the American Revolution": 1 + "10th Grade History: The Strategic Importance of Fortifications in the American Revolution Era": 1 + "10th Grade History: The Role of Guerrilla Warfare Tactics in the American Revolution": 1 + "10th Grade History: The Importance of Naval Warfare Technology in the American Revolution Era.": 1 + "5th Grade Social Studies: Analyzing Local Communities Using Census Data & Google Maps": 1 + "5th Grade Social Studies: Understanding Local Communities Through Census Data & Excel Spreadsheets": 1 + "5th Grade Social Studies: Comprehending Local Communities Using Census Data & Tableau Visualization": 1 + "5th Grade Social Studies: Examining Local Communities Using Census Data & GIS Technology": 1 + "5th Grade Social Studies: Interpreting Local Communities Through Census Data & Python Programming": 1 + "5th Grade Social Studies: Exploring Local Communities Using Census Data & Data Mining Techniques": 1 + "5th Grade Social Studies: Studying Local Communities Using Census Data & Statistical Analysis": 1 + "5th Grade Social Studies: Investigating Local Communities using Census Data & SQL Queries": 1 + "5th Grade Social Studies: Grasping Local Communities Through Census Data & QGIS Software": 1 + "5th Grade Social Studies: Discovering Local Communities Using Census Data & SPSS Statistics.": 1 + "5th Grade English: Exploring Storytelling through Character Development": 1 + "5th Grade English: Storytelling Basics using Narrative Arcs": 1 + "5th Grade English: Storytelling Essentials: Focusing on Plot Structure": 1 + "5th Grade English: Utilizing Imagery in Basic Storytelling": 1 + "5th Grade English: Fundamentals of Storytelling: An Introduction to Dialogue": 1 + "5th Grade English: Storytelling with Digital Tools: Basics and Applications": 1 + "5th Grade English: Basics of Storytelling using Interactive Whiteboards": 1 + "5th Grade English: Storytelling Basics: The Importance of Setting": 1 + "5th Grade English: The Role of Conflict in Basic Storytelling": 1 + "5th Grade English: Exploring Storytelling through the use of Flashbacks.": 1 + "5th Grade Science: Exploring the Mayans’ Use of Salt in Food Preservation": 1 + "5th Grade Science: Understanding the Mayans’ Drying Techniques for Food Preservation": 1 + "5th Grade Science: The Role of Smoking in the Mayans’ Food Preservation Methods": 1 + "5th Grade Science: An In-depth Study of the Mayans’ Fermentation Techniques for Food Preservation": 1 + "5th Grade Science: The Use of Pottery in the Mayans’ Methods of Food Preservation": 1 + "5th Grade Science: Exploring the Mayans’ Curing Techniques in Food Preservation": 1 + "5th Grade Science: Unveiling the Mayan’s Use of Sugaring as a Food Preservation Method": 1 + "5th Grade Science: The Impact of Cool Storage on the Mayans’ Food Preservation Process": 1 + "5th Grade Science: The Mayans’ Food Preservation: A Focus on Sun Drying Techniques": 1 + "5th Grade Science: Exploring the Mayans’ Use of Oil and Fat in Food Preservation": 1 + "7th Grade English: Exploring Poetry Through Imagery": 1 + "7th Grade English: Analyzing Poetry Using Metaphors": 1 + "Exploring Poetry with Figurative Language in 7th Grade English": 1 + "7th Grade English: Understanding Poetry Through Symbolism": 1 + "7th Grade English: Interpreting Poetry with Personification": 1 + "7th Grade English: Examining Poetry Through Rhyme Schemes": 1 + "7th Grade English: Decoding Poetry with Alliteration": 1 + "7th Grade English: Exploring Poetry Using Digital Interactive Tools": 1 + "7th Grade English: Studying Poetry with Multimedia Presentation": 1 + "7th Grade English: Exploring Poetry Through Online Collaboration Tools": 1 + "4th Grade Language Arts: Exploring Story Elements through Character Development": 1 + "4th Grade Language Arts: Utilizing Mind Maps in Exploring Story Elements": 1 + "4th Grade Language Arts: Exploring Story Elements with Digital Storytelling": 1 + "4th Grade Language Arts: Exploring Story Elements using Interactive Whiteboards": 1 + "4th Grade Language Arts: Exploring Story Elements through Plot Structure Analysis": 1 + "4th Grade Language Arts: Using Graphic Organizers to Explore Story Elements": 1 + "4th Grade Language Arts: Exploring Story Elements through Theme Recognition ": 1 + "4th Grade Language Arts: Utilizing Smart Board Technology in Exploring Story Elements": 1 + "4th Grade Language Arts: Exploring Story Elements with PowerPoint Presentations ": 1 + "4th Grade Language Arts: Exploring Story Elements through Conflict Resolution Techniques": 1 + "11th Grade English: Deep Dive into American Literature with Focus on Symbolism ": 1 + "11th Grade English: American Literature Study through the Lens of Feminism ": 1 + "11th Grade English: Exploring American Literature with Digital Humanities Tools": 1 + "11th Grade English: American Literature Study using Textual Analysis Software": 1 + "11th Grade English: A Comprehensive Study of American Literature using Interactive E-books ": 1 + "11th Grade English: Engaging with American Literature through Online Discussion Forums ": 1 + "11th Grade English: American Literature Study with Focus on Postmodernism ": 1 + "11th Grade English: American Literature Analysis using Literary Theory ": 1 + "11th Grade English: Decoding American Literature with Structuralism ": 1 + "11th Grade English: American Literature Study and Annotation with Hypothes.is": 1 + "11th Grade English: Examining American Literature through the Lens of Psychoanalytic Theory": 1 + "2nd Grade Art: Introduction to Charcoal Sketching with Willow Sticks": 1 + "2nd Grade Art: Basics of Charcoal Sketching Using Art Easels": 1 + "2nd Grade Art: Charcoal Sketching Techniques with Kneaded Erasers": 1 + "2nd Grade Art: Exploring Charcoal Sketching with Fixatives": 1 + "2nd Grade Art: Charcoal Sketching Basics Using Drawing Boards": 1 + "2nd Grade Art: Introduction to Charcoal Sketching and Shading Techniques": 1 + "2nd Grade Art: Charcoal Sketching Using Vine Charcoal Sticks": 1 + "2nd Grade Art: Basics of Charcoal Sketching and Understanding Tonal Values": 1 + "2nd Grade Art: Charcoal Drawing Basics with Compressed Charcoal": 1 + "2nd Grade Art: Exploring the Basics of Charcoal Sketching with Blending Stumps.": 1 + "8th Grade Music: Understanding Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers, Reason DAW and Sibelius Notation Software": 1 + "8th Grade Music: Applying Orchestration Principles in Classical Music with GarageBand MIDI Sequencers, Reason DAW and Pro Tools Mixing Techniques": 1 + "8th Grade Music: Using GarageBand MIDI Sequencers and Reason DAW for Classical Music Orchestration: Focus on Dynamics Processing": 1 + "8th Grade Music: Exploring Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers, Reason DAW and Logic Pro X Recording Techniques": 1 + "8th Grade Music: Classical Music Orchestration with GarageBand MIDI Sequencers, Reason DAW and Ableton Live’s Looping Functions": 1 + "8th Grade Music: Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers, Reason DAW and Audacity’s Editing Techniques": 1 + "8th Grade Music: Unraveling Orchestration Principles in Classical Music with GarageBand MIDI Sequencers, Reason DAW and FL Studio’s Beat Making Tools": 1 + "8th Grade Music: Mastering Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers, Reason DAW and Cubase’s Mixing and Mastering Techniques": 1 + "8th Grade Music: Orchestration Principles in Classical Music Using GarageBand MIDI Sequencers, Reason DAW and Soundtrap’s Collaboration Tools": 1 + "8th Grade Music: Delving into Orchestration Principles in Classical Music with GarageBand MIDI Sequencers, Reason DAW and Reaper’s Multitracking Capabilities.": 1 + "8th Grade Social Studies: Analyzing Democracy through the Lens of Bitcoin’s Blockchain Technology": 1 + "Exploring Government Structures with Ethereum Blockchain in 8th Grade Social Studies": 1 + "Understanding Decentralization: A Focus on Cryptocurrency Mining in 8th Grade Social Studies": 1 + "8th Grade Social Studies: Decoding Democracy with Smart Contracts and Blockchain Technology": 1 + "Understanding Democracy and Government using Hyperledger Fabric in 8th Grade Social Studies": 1 + "8th Grade Social Studies: Investigating Government Structures via Peer-to-Peer Networks in Blockchain": 1 + "Exploring Consensus Algorithms: The Heart of Blockchain in 8th Grade Social Studies": 1 + "8th Grade Social Studies: Applying Decentralized Ledger Technology to Democracy and Government": 1 + "Democracy and Government in 8th Grade Social Studies: A Study on Blockchain’s Proof-of-Stake Concept": 1 + "8th Grade Social Studies: Examining Blockchain’s Impact on Democracy using the Ripple Protocol.": 1 + "3rd Grade Mathematics: Exploring Fraction Basics using Fraction Strips and Manipulatives": 1 + "3rd Grade Mathematics: Introduction to Fractions with Fraction Strips and Interactive Whiteboards": 1 + "3rd Grade Mathematics: Mastering Fraction Basics with Fraction Strips and Digital Apps": 1 + "3rd Grade Mathematics: Fraction Basics through Fraction Strips and Virtual Reality": 1 + "3rd Grade Mathematics: Fraction Basics with Fraction Strips and Proportional Reasoning": 1 + "3rd Grade Mathematics: Understanding Fraction Basics using Fraction Strips and Number Lines": 1 + "3rd Grade Mathematics: Fraction Basics and Fraction Strips with Decimals Integration": 1 + "3rd Grade Mathematics: Fraction Basics Explored with Fraction Strips and Geometric Shapes": 1 + "3rd Grade Mathematics: Fraction Basics using Fraction Strips and Collaborative Learning Technologies": 1 + "3rd Grade Mathematics: Fraction Basics through Fraction Strips and Math Games Software": 1 + "7th Grade Music: Exploring Melodies with Behringer Neutron Synthesizers and Steinberg Dorico Music Notation Software": 1 + "7th Grade Music: Understanding Melodies through MIDI Technology with Behringer Synthesizers and Steinberg Dorico Software": 1 + "7th Grade Music: Investigating Melodies with Behringer DeepMind 12 Synthesizers and Steinberg Dorico Notation Software": 1 + "7th Grade Music: Studying Melodies using Behringer Synthesizers and Steinberg Dorico Software with a Focus on Chord Progressions": 1 + "7th Grade Music: Analyzing Melodies with the Aid of Behringer Model D Synthesizers and Steinberg Dorico Notation Software": 1 + "7th Grade Music: Creating Melodies with Behringer Poly D Synthesizers and Steinberg Dorico Music Notation Software: A Focus on Polyphony": 1 + "7th Grade Music: An Introduction to Melodies with Behringer Synthesizers and Steinberg Dorico Software using Audio Mixing Techniques": 1 + "7th Grade Music: Deconstructing Melodies with Behringer Crave Synthesizers and Steinberg Dorico Music Notation Software": 1 + "7th Grade Music: Learning Melodies with Behringer Synthesizers and Steinberg Dorico Software: The Art of Sound Design": 1 + "7th Grade Music: Melodies and Counterpoint Studies using Behringer Synthesizers and Steinberg Dorico Notation Software.": 1 + "5th Grade Science: Understanding Climate Change through GIS Technology and Lidar Data - An In-depth Study of Ocean Acidification": 1 + "5th Grade Science: Exploring Ecosystems: A Deep Dive using GIS Technology, Lidar Data and Drone Surveys": 1 + "5th Grade Science: Climate Change and Ecosystems - Examining Deforestation through GIS Technology and Lidar Data": 1 + "5th Grade Science: A Detailed Look at Climate Change and Ecosystems using GIS Technology, Lidar Data and Satellite Imagery": 1 + "5th Grade Science: Climate Change, Ecosystems, and the Role of Carbon Sequestration - A Deep Dive using GIS Technology and Lidar Data": 1 + "5th Grade Science: Climate Change and Ecosystems - Investigating the Impact of Greenhouse Gases using GIS Technology, Lidar Data and Thermographic Cameras": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive into Renewable Energy Solutions using GIS Technology and Lidar Data": 1 + "5th Grade Science: Exploring the Connection between Climate Change, Ecosystems, and Soil Health using GIS Technology and Lidar Data": 1 + "5th Grade Science: Climate Change and Ecosystems - A Focused Look at the Paris Agreement using GIS Technology, Lidar Data and Case Studies": 1 + "5th Grade Science: Climate Change and Ecosystems - A Deep Dive into the Impact of Industrialization using GIS Technology, Lidar Data and Historical Analysis.": 1 + "5th Grade Health: Understanding the Food Pyramid in Nutrition and Hygiene": 1 + "5th Grade Health: Exploring Handwashing Techniques in Hygiene and Nutrition": 1 + "5th Grade Health: The Role of Dietary Fiber in Nutrition and Hygiene": 1 + "5th Grade Health: Introduction to BMI and its Relevance in Nutrition and Hygiene": 1 + "5th Grade Health: The Science of Dental Hygiene and Nutrition": 1 + "5th Grade Health: Learning about Vitamins and Minerals in Nutrition and Hygiene": 1 + "5th Grade Health: The Impact of Processed Foods on Nutrition and Hygiene": 1 + "5th Grade Health: Basics of Calorie Counting in Nutrition and Hygiene": 1 + "5th Grade Health: Exploring the Connection between Hydration and Nutrition": 1 + "5th Grade Health: Basic Nutrition and Hygiene with a focus on Food Allergies": 1 + "6th Grade Language Arts: Exploring Storytelling Fundamentals with Digital Storyboards using PowerPoint": 1 + "6th Grade Language Arts: Delving into Storytelling Basics with Digital Storyboards and Adobe Spark": 1 + "6th Grade Language Arts: Mastering Storytelling Principles with Digital Storyboards via Canva": 1 + "6th Grade Language Arts: Unraveling Storytelling Elements with Digital Storyboards and Prezi": 1 + "6th Grade Language Arts: Investigating Storytelling Techniques with Digital Storyboards using Google Slides": 1 + "6th Grade Language Arts: Understanding Storytelling Concepts with Digital Storyboards and StoryboardThat": 1 + "6th Grade Language Arts: Discovering Storytelling Fundamentals with Digital Storyboards via Trello": 1 + "6th Grade Language Arts: Learning Storytelling Essentials with Digital Storyboards and Microsoft Sway": 1 + "6th Grade Language Arts: Analyzing Storytelling Basics with Digital Storyboards using Moovly": 1 + "6th Grade Language Arts: Studying Storytelling Principles with Digital Storyboards and Animaker.": 1 + "Ancient Chinese Civilization: The Use of Iron Wedges and Winch Technology in the Great Wall Construction for 6th Grade History": 1 + "The Impact of Iron Wedges and Rope Pulley Systems in the Building of the Great Wall: A 6th Grade History Course": 1 + "Exploring the Significance of Iron Wedges and Levers in the Construction of the Great Wall: A 6th Grade History Journey": 1 + "The Role of Iron Wedges and Crane Technology in Erecting the Great Wall: A 6th Grade History Study": 1 + "Ancient Chinese Civilization: The Influence of Iron Wedges and Scaffolding in Building the Great Wall for 6th Grade History": 1 + "The Interplay of Iron Wedges and Wheelbarrow Technology in the Great Wall Construction: A 6th Grade History Investigation": 1 + "A Deep Dive into the Role of Iron Wedges and Archimedes’ Screw in the Great Wall Construction for 6th Grade History": 1 + "Ancient Chinese Civilization: The Use of Iron Wedges and Chisel Tools in the Great Wall Construction for 6th Grade History": 1 + "The Integration of Iron Wedges and Surveying Tools in the Building of the Great Wall: A 6th Grade History Review": 1 + "The Contribution of Iron Wedges and Hydraulic Technology to the Construction of the Great Wall: A 6th Grade History Exploration": 1 + "4th Grade History: The Role of Compass in Columbus’s Journey to Discover America": 1 + "The Impact of Quadrant Technology in Columbus’s Discovery of America: A 4th Grade History Course": 1 + "4th Grade History: The Importance of Lateen Sails in Columbus’s American Discovery": 1 + "Columbus’s Discovery of America: The Influence of the Cross-Staff in 4th Grade History": 1 + "Exploring the Impact of the Hourglass in Columbus’s Voyage: A 4th Grade History Course": 1 + "4th Grade History: The Use of the Astrolabe and Maps in Columbus’s American Discovery": 1 + "The Role of the Log and Line in Columbus’s Discovery of America: A History Course for 4th Graders": 1 + "4th Grade History: The Significance of the Sextant in Columbus’s Journey to America": 1 + "Columbus’s Voyage to America: Focusing on the Nocturnal Tool in 4th Grade History": 1 + "4th Grade History: The Discovery of America - The Crucial Role of Shipbuilding Techniques in Columbus’s Journey.": 1 + "6th Grade Social Studies: Understanding the Ancient Egyptian Civilization and their Use of Sundials for Timekeeping": 1 + "6th Grade Social Studies: Exploring the Development of Sundials in Ancient Greek Civilizations": 1 + "6th Grade Social Studies: Ancient Sumerians and their Contribution to Sundial Technology": 1 + "6th Grade Social Studies: The Influence of Sundials on Ancient Roman Timekeeping Methods": 1 + "6th Grade Social Studies: The Ancient Aztecs and their Adaptation of Sundials for Agricultural Purposes": 1 + "6th Grade Social Studies: The Role of Sundials in Ancient Chinese Astronomy and Timekeeping": 1 + "6th Grade Social Studies: The Use of Sundials in Ancient Indian Civilizations and its Impact on their Calendar System": 1 + "6th Grade Social Studies: Sundials in Ancient Mesopotamia: Understanding the Concept of Shadows": 1 + "6th Grade Social Studies: The Ancient Babylonians and their Use of Sundials for Solar Observations": 1 + "6th Grade Social Studies: Exploring the Integration of Sundials in Ancient Mayan Astronomical Observations.": 1 + "11th Grade Biology: Exploring Cell Structures using Microscopes": 1 + "Advanced 11th Grade Biology: Discover Cell Structures through DNA Sequencing": 1 + "11th Grade Biology: Dive into Cell Structures via Electron Microscopy": 1 + "11th Grade Biology: Cell Structures and the Art of Light Microscopy": 1 + "11th Grade Biology: Unfolding the Mystery of Cell Structures through Gel Electrophoresis": 1 + "11th Grade Biology: The Journey of Discovering Cell Structures with Fluorescence Microscopy": 1 + "11th Grade Biology: Cell Structures and Their Analysis with Spectrophotometry": 1 + "11th Grade Biology: Unraveling Cell Structures through the Lens of Confocal Microscopy": 1 + "11th Grade Biology: Cell Structures Explored with X-ray Crystallography": 1 + "11th Grade Biology: A Deep Dive into Cell Structures with the Help of PCR Technology.": 1 + "Understanding Photosynthesis: 4th Grade Science and Plant Biology with Microscope": 1 + "Cellular Exploration: 4th Grade Science and Plant Biology with Digital Imaging Technology": 1 + "Green Energy: 4th Grade Plant Biology focusing on Chlorophyll and Sunlight": 1 + "Growing Minds: 4th Grade Science and Plant Biology with Hydroponics Systems": 1 + "Seed to Fruit: 4th Grade Science and Plant Biology with a focus on Reproduction": 1 + "Little Botanists: 4th Grade Science and Plant Biology using Lab Dissection Kits": 1 + "Roots and Shoots: 4th Grade Science and Plant Biology exploring Plant Anatomy": 1 + "Soil and Life: 4th Grade Science and Plant Biology with pH Testing Kits": 1 + "Breathe In: 4th Grade Science and Plant Biology studying Photosynthesis with CO2 Monitors": 1 + "The Cycle of Life: 4th Grade Science and Plant Biology examining Plant Life Cycles.": 1 + "7th Grade English: Examining Poetry Through Rhyme Schemes with Metaphors": 1 + "7th Grade English: Analyzing Poetry using Rhyme Schemes and Similes": 1 + "7th Grade English: Understanding Poetry Through Rhyme Schemes and Alliteration": 1 + "7th Grade English: Studying Poetry with Rhyme Schemes and Digital Annotation Tools": 1 + "7th Grade English: Exploring Poetry Through Rhyme Schemes and the use of Imagery": 1 + "7th Grade English: Investigating Poetry with Rhyme Schemes and Symbolism": 1 + "7th Grade English: Interpreting Poetry Through Rhyme Schemes & Irony": 1 + "7th Grade English: Evaluating Poetry using Rhyme Schemes and Hyperboles": 1 + "7th Grade English: Deciphering Poetry Through Rhyme Schemes and Personification": 1 + "7th Grade English: Dissecting Poetry using Rhyme Schemes and Online Collaboration Platforms.": 1 + "4th Grade History: The Caravels in The Era of Exploration: Their Design and Function": 1 + "4th Grade History: The Backstaff in The Era of Exploration: Its Impact on Navigation": 1 + "4th Grade History: The Nocturnal Device in The Era of Exploration: Revolutionizing Night Navigation": 1 + "4th Grade History: The Astrolabe in The Era of Exploration: Its Role in Latitude Calculation": 1 + "4th Grade History: The Quadrant in The Era of Exploration: An Essential Tool in Celestial Navigation": 1 + "4th Grade History: The Cross-Staff in The Era of Exploration: Its Importance in Determining Altitude": 1 + "4th Grade History: The Compass in The Era of Exploration: Guiding Explorers Across Oceans": 1 + "4th Grade History: The Log and Line Technique in The Era of Exploration: Estimating Speed on the Sea": 1 + "4th Grade History: Maps in The Era of Exploration: Charting Unknown Waters": 1 + "4th Grade History: The Sextant in The Era of Exploration: Evolution of Angular Measurement.": 1 + "2nd Grade Science: Exploring Weather Patterns with a Barometer": 1 + "2nd Grade Science: Investigating Weather Patterns Using Rain Gauges": 1 + "2nd Grade Science: Discovering Weather Patterns with a Thermometer": 1 + "2nd Grade Science: Exploring Weather Patterns with a Wind Vane": 1 + "2nd Grade Science: Understanding Weather Patterns through Cloud Observation": 1 + "2nd Grade Science: Examining Weather Patterns Using Weather Maps": 1 + "2nd Grade Science: Analyzing Weather Patterns with a Hygrometer": 1 + "2nd Grade Science: Surveying Weather Patterns Using Weather Balloons": 1 + "2nd Grade Science: Assessing Weather Patterns with a Weather Satellite": 1 + "2nd Grade Science: Interpreting Weather Patterns through a Weather Radar.": 1 + "2nd Grade Health: Understanding Nutrition Basics with MyPlate Interactive Food Plate Games": 1 + "2nd Grade Health: Learning About Nutrition with Augmented Reality Food Plate Games": 1 + "2nd Grade Health: Grasping Nutrition Essentials with Interactive Food Pyramid Games": 1 + "2nd Grade Health: Engaging with Nutrition Fundamentals through Virtual Food Plate Games": 1 + "2nd Grade Health: Nutrition Basics Explored through Interactive MyPlate Games on iPad": 1 + "2nd Grade Health: Discovering Nutrition Basics with VR Food Plate Games": 1 + "2nd Grade Health: Nutrition Basics Unveiled with Interactive 3D Food Plate Games": 1 + "2nd Grade Health: Unpacking Nutrition Fundamentals with Gamified Food Plate Activities on Smartboards": 1 + "2nd Grade Health: Interactive Learning of Nutrition Basics with Food Plate Games using Tablets": 1 + "2nd Grade Health: Exploring Nutrition Basics with Digital Food Plate Games on Chromebooks": 1 + "4th Grade English: Enhancing Reading Comprehension through Storytelling and E-Books using Kindle": 1 + "4th Grade English: Interactive Storytelling and E-Books on iBooks for Reading Comprehension": 1 + "4th Grade English: Reading Comprehension through Storytelling and E-Books using Google Classroom": 1 + "4th Grade English: Improving Reading Comprehension with Storytelling and E-Books on Nook": 1 + "4th Grade English: Reading Comprehension through Storytelling and E-Books using Audible Audio Books": 1 + "4th Grade English: Exploring Reading Comprehension through Storytelling and E-Books with the FlipGrid tool": 1 + "4th Grade English: Reading Comprehension through Digital Storytelling and E-Books on iPad": 1 + "4th Grade English: Reading Comprehension through Storytelling and E-Books using Microsoft Teams": 1 + "4th Grade English: Enhancing Reading Comprehension with Storytelling and E-Books on OverDrive": 1 + "4th Grade English: Reading Comprehension through Storytelling and E-Books using the Zoom Platform": 1 + "6th Grade Language Arts: Mastering Grammar with Diagramming Sentences": 1 + "6th Grade Language Arts: Grammar Mastery using Interactive Online Quizzes": 1 + "6th Grade Language Arts: Enhancing Grammar Skills with Microsoft Word Tools": 1 + "6th Grade Language Arts: Mastering Grammar through Google Docs Collaboration": 1 + "6th Grade Language Arts: Grammar Excellence with Parts of Speech Flashcards": 1 + "6th Grade Language Arts: Improving Grammar Proficiency using Educational Apps": 1 + "6th Grade Language Arts: Mastering Grammar with Sentence Structure Worksheets": 1 + "6th Grade Language Arts: Enhancing Grammar Skills through Virtual Classroom Discussions": 1 + "6th Grade Language Arts: Grammar Mastery using PowerPoint Presentations": 1 + "6th Grade Language Arts: Understanding Grammar with Digital Storytelling Tools.": 1 + "6th Grade Mathematics: Mastering Fraction Equivalence with Fraction Circes & Number Line Method Using TI-83 Plus Graphing Calculator and Geogebra Software": 1 + "Exploring Fraction Equivalence in 6th Grade Mathematics Using TI-83 Plus Graphing Calculator & Introduction to Decimal Conversion": 1 + "6th Grade Mathematics: In-depth Study of Fraction Equivalence Using Fraction Circles, Number Line Method and TI-83 Plus Graphing Calculator with Python Programming for Calculation": 1 + "6th Grade Mathematics: Applying Fraction Equivalence through Fraction Circles, Number Line Method, and TI-83 Plus Graphing Calculator with the Use of Mathspace Digital Platform": 1 + "Understanding Fraction Equivalence in 6th Grade Mathematics: A Comprehensive Approach Using Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator, and the Concept of Ratios": 1 + "6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator and the Integration of Mathletics Online Learning Tool": 1 + "In-depth Exploration of Fraction Equivalence in 6th Grade Mathematics Using Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator, and the Application of Proportional Relationships": 1 + "6th Grade Mathematics: A Detailed Study on Fraction Equivalence Using Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator, and the Utilisation of Mathseeds Interactive Learning Platform": 1 + "Mastering Fraction Equivalence in 6th Grade Mathematics: Incorporating Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator, and the Introduction to the Concept of Simplifying Fractions": 1 + "6th Grade Mathematics: Learning Fraction Equivalence with Fraction Circles, Number Line Method, TI-83 Plus Graphing Calculator and the Integration of IXL Learning System.": 1 + "1st Grade Music: Discovering Rhythm with Maracas through Interactive Whiteboard Lessons": 1 + "1st Grade Music: Utilizing iPad Apps to Discover Rhythm with Maracas": 1 + "1st Grade Music: Exploring Rhythm with Maracas and Beat Detection Technology": 1 + "1st Grade Music: Discovering Rhythm with Maracas using Sound Editing Software": 1 + "1st Grade Music: Uncovering Rhythm with Maracas and Motion Sensors": 1 + "1st Grade Music: Discovering Rhythm Patterns with Maracas and Music Notation Software": 1 + "1st Grade Music: Learning Rhythm with Maracas through Virtual Reality Experiences": 1 + "1st Grade Music: Discovering Rhythm with Maracas and Digital Audio Workstations": 1 + "1st Grade Music: Exploring Rhythm and Tempo with Maracas using Metronome Apps": 1 + "1st Grade Music: Interactive Rhythm Discovery with Maracas and Smartboard Technology": 1 + "4th Grade History: The First Americans - Analysis of Bone Awl Usage in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Exploring Flint Knife Role in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Examination of Stone Scraper in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Investigation of Sinew Thread in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Study of Bone Needle Usage in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Unveiling the Role of Fire-Heated Rock in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Delving Into the Use of Wooden Mallet in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - The Influence of Tanning Process on Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Understanding the Role of Rawhide Strips in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans - Evaluating Bone Awl and Sinew Thread in Hide Glue Application for Animal Skin Shelter Assembly": 1 + "4th Grade History: The First Americans and their Use of The Bow and Arrow": 1 + "4th Grade History: The First Americans and their Stone Tool Technology": 1 + "4th Grade History: The First Americans and their Introduction to Farming": 1 + "4th Grade History: The First Americans and their Use of Canoes for Transportation": 1 + "4th Grade History: The First Americans and their Development of Pottery": 1 + "4th Grade History: The First Americans and their Use of Smoke Signals for Communication": 1 + "4th Grade History: The First Americans and their Use of Totem Poles for Spiritual Practices": 1 + "4th Grade History: The First Americans and their Use of Teepees for Shelter": 1 + "4th Grade History: The First Americans and their Use of The Atlatl in Hunting": 1 + "4th Grade History: The First Americans and their Concept of Clan Systems for Social Structure.": 1 + "5th Grade Mathematics: Mastering Fraction Simplification with Prime Factorization and GCF using Fraction Circles and Number Lines": 1 + "5th Grade Mathematics: Enhancing Fraction Simplification Skills through Prime Factorization, GCF and Virtual Manipulatives": 1 + "5th Grade Mathematics: In-depth Study of Fraction Simplification using Prime Factorization, GCF, Fraction Circles and Math Apps": 1 + "5th Grade Mathematics: Fraction Simplification via Prime Factorization, GCF, Fraction Circicles and the Lattice Method": 1 + "5th Grade Mathematics: Practical Application of Fraction Simplification with Prime Factorization, GCF and Fraction Circles using Math Software": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization, GCF, Fraction Circles and the Cross-Multiplication Method": 1 + "5th Grade Mathematics: Advanced Fraction Simplification using Prime Factorization, GCF, Fraction Circles and Digital Interactive Tools": 1 + "5th Grade Mathematics: Fraction Simplification with Prime Factorization, GCF, Fraction Circles and the Integration of Geometric Shapes": 1 + "5th Grade Mathematics: Fraction Simplification Mastery with Prime Factorization, GCF, Fraction Circles and Algebraic Expressions": 1 + "5th Grade Mathematics: Comprehensive Study of Fraction Simplification with Prime Factorization, GCF, Fraction Circles and the Butterfly Method.": 1 + "4th Grade Geography: Exploring Our World’s Continents and Oceans with Google Earth": 1 + "4th Grade Geography: Understanding Our World’s Continents and Oceans through Interactive Maps": 1 + "4th Grade Geography: Studying Our World’s Continents and Oceans using GPS Technology": 1 + "4th Grade Geography: Discovering Our World’s Continents and Oceans with Augmented Reality": 1 + "4th Grade Geography: Investigating Our World’s Continents and Oceans using Satellite Imagery": 1 + "4th Grade Geography: Learning About Our World’s Continents and Oceans through Virtual Reality": 1 + "4th Grade Geography: Navigating Our World’s Continents and Oceans using GIS Tools": 1 + "4th Grade Geography: Exploring Our World’s Continents and Oceans with Mapping Software": 1 + "4th Grade Geography: Uncovering Our World’s Continents and Oceans with Digital Atlases": 1 + "4th Grade Geography: Analyzing Our World’s Continents and Oceans using Geospatial Data.": 1 + "3rd Grade History: Exploring Ancient Egypt with Virtual Reality Archaeology Simulations and 3D Pyramids.": 1 + "3rd Grade History: Uncover Ancient Egypt using Virtual Reality Archaeology Simulations and Hieroglyphics Decoder.": 1 + "3rd Grade History: Discover Ancient Egypt with Virtual Reality Archaeology Simulations and Digital Sarcophagus.": 1 + "3rd Grade History: Journey to Ancient Egypt with Virtual Reality Archaeology Simulations and Interactive Nile River Map.": 1 + "3rd Grade History: Delve into Ancient Egypt with VR Archaeology Simulations and Sphinx Reconstruction Software.": 1 + "3rd Grade History: Experience Ancient Egypt with Virtual Reality Archaeology Simulations and Mummy Preservation Techniques.": 1 + "3rd Grade History: Investigate Ancient Egypt with Virtual Reality Archaeology Simulations and Time-lapse Pharaohs’ Reign Charts.": 1 + "3rd Grade History: Learning Ancient Egypt through Virtual Reality Archaeology Simulations and VR Papyrus Making.": 1 + "3rd Grade History: Understand Ancient Egypt with Virtual Reality Archaeology Simulations and Interactive Tomb Exploration.": 1 + "3rd Grade History: Deciphering Ancient Egypt with Virtual Reality Archaeology Simulations and Rosetta Stone Translator.": 1 + "10th Grade Geometry: Mastering Shapes and Angles with Pythagorean Theorem through Euclidean Proofs": 1 + "Advanced 10th Grade Geometry: Understanding Shapes and Angles through Euclidean Proofs Using AutoCAD": 1 + "10th Grade Geometry: Exploring Euclidean Proofs with Geometric Transformations for Shapes and Angles": 1 + "10th Grade Geometry: Analyzing Shapes and Angles with Geogebra Software through Euclidean Proofs": 1 + "10th Grade Geometry: Euclidean Proofs and their Applications in Understanding Shapes and Angles with Compass and Straightedge": 1 + "10th Grade Geometry: Decoding Shapes and Angles through Euclidean Proofs with Desmos Graphing Calculator": 1 + "10th Grade Geometry: Unraveling Shapes and Angles with Congruence and Similarity through Euclidean Proofs": 1 + "10th Grade Geometry: Delving into Shapes and Angles through Euclidean Proofs Using Interactive Geometry Software": 1 + "10th Grade Geometry: Comprehending Shapes and Angles through Euclidean Proofs with Geometric Construction Tools": 1 + "10th Grade Geometry: A Study of Shapes and Angles through Euclidean Proofs with the Aid of Digital Geometry Platforms.": 1 + "6th Grade: Understanding World Geography with Google Earth’s Satellite Imagery ": 1 + "6th Grade: Exploring Global Topography using Satellite Imagery and GIS": 1 + "6th Grade: Deciphering World Geography with Satellite Imagery and Infra-red Technology": 1 + "6th Grade: Grasping World Geography through Satellite Imagery and 3D Mapping": 1 + "6th Grade: Learning World Geography with Satellite Imagery using LiDAR Technology": 1 + "6th Grade: Understanding World Geography using Satellite Imagery and Geospatial Analysis": 1 + "6th Grade: Investigating World Geography with Satellite Imagery and Photogrammetry": 1 + "6th Grade: Unfolding World Geography through Satellite Imagery and Terrain Analysis": 1 + "6th Grade: Discovering World Geography with Satellite Imagery and Remote Sensing Techniques": 1 + "6th Grade: Interpreting World Geography with Satellite Imagery and Cartographic Projections": 1 + "8th Grade Music: Utilizing Ableton Live in Loop Pedal and Beat Making in Music Production": 1 + "8th Grade Music: The Role of Loop Pedals and Beat Making in Music Production using MIDI Controllers": 1 + "8th Grade Music: Exploring Music Production through Loop Pedals and Beat Making with FL Studio": 1 + "8th Grade Music: The Impact of Loop Pedals and Beat Making in Digital Audio Workstation Music Production": 1 + "8th Grade Music: Introduction to Pro Tools for Loop Pedals and Beat Making in Music Production": 1 + "8th Grade Music: Understanding the Role of Loop Pedals and Beat Making in Music Production with GarageBand": 1 + "8th Grade Music: Cubase and Its Applications in Loop Pedals and Beat Making in Music Production": 1 + "8th Grade Music: The Role of Loop Pedals and Beat Making in Music Production with Logic Pro X": 1 + "8th Grade Music: Exploring the Use of Reason Software in Loop Pedal and Beat Making in Music Production": 1 + "8th Grade Music: The Role of Loop Pedals and Beat Making in Music Production using Reaper.": 1 + "2nd Grade: Analyzing Urban and Rural Communities with Census Data using Google Sheets in Social Studies": 1 + "2nd Grade: Exploring Population Density through Census Data with ArcGIS in Social Studies": 1 + "2nd Grade: Understanding Demographics with Census Data using Excel Pivot Tables in Social Studies": 1 + "2nd Grade: Studying Migration Patterns with Census Data using Data Visualization Tools in Social Studies": 1 + "2nd Grade: Analyzing Communities’ Economic Status with Census Data using Python in Social Studies": 1 + "2nd Grade: Investigating Ethnic Diversity with Census Data using Tableau in Social Studies": 1 + "2nd Grade: Analyzing Communities with Census Data using SPSS in Social Studies: A Focus on Age Distribution": 1 + "2nd Grade: Exploring Household Structures with Census Data using SQL Queries in Social Studies": 1 + "2nd Grade: Studying Communities’ Educational Levels with Census Data using R Programming in Social Studies": 1 + "2nd Grade: Investigating Communities’ Employment Rate with Census Data using Power BI in Social Studies.": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being with Focus on Heart Rate Monitors": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being through Yoga Techniques": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being using Resistance Bands": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being with emphasis on Treadmill Training ": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being incorporating Pedometer Tracking ": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being through the use of Fitness Apps": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being utilizing Bodyweight Exercises": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being with a focus on Nutrition Concepts": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being through Dance Fitness Techniques ": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being implementing CrossFit Training Techniques.": 1 + "11th Grade Science: Exploring Environmental Systems with Geographic Information Systems": 1 + "11th Grade Science: Introduction to Environmental Systems Through Remote Sensing Technology": 1 + "11th Grade Science: Understanding Environmental Systems Using Climate Modeling ": 1 + "11th Grade Science: Analysis of Environmental Systems with Ecosystem Services Concept": 1 + "11th Grade Science: Introduction to Environmental Systems Through Biodiversity Conservation Techniques": 1 + "11th Grade Science: Exploring Environmental Systems with Environmental Impact Assessment": 1 + "11th Grade Science: Understanding Environmental Systems Using Carbon Footprint Analysis": 1 + "11th Grade Science: Introduction to Environmental Systems Through Water Quality Monitoring": 1 + "11th Grade Science: Analysis of Environmental Systems with Air Pollution Tracking Technology": 1 + "11th Grade Science: Exploring Environmental Systems with Soil Testing Kits": 1 + "2nd Grade Science: Unveiling Bear Habitats with GPS Tracking, Motion Sensor Technology, Radio Telemetry, and Drone Observations": 1 + "Comprehensive Study on Bear Habitats: Using GPS, Motion Sensors, Radio Telemetry, and Satellite Imaging in 2nd Grade Science": 1 + "Exploring Bear Habitats in 2nd Grade Science: Incorporating GPS Tracking, Motion Sensor Technology, Radio Telemetry, and Thermal Imaging ": 1 + "2nd Grade Science: Analysis of Bear Habitats using GPS, Motion Sensors, Radio Telemetry, and Infrared Cameras": 1 + "Understanding Bear Habitats in 2nd Grade Science: Employing GPS Tracking, Motion Sensor Tech, Radio Telemetry, and Lidar Technology": 1 + "2nd Grade Science: Detailing Bear Habitats with GPS Tracking, Motion Sensors, Radio Telemetry, and Geographical Information System": 1 + "2nd Grade Science: Dissecting Bear Habitats with GPS, Motion Sensor Technology, Radio Telemetry, and Ultrasonic Measurements": 1 + "2nd Grade Science: Navigating Bear Habitats using GPS Tracking, Motion Sensors, Radio Telemetry, and Augmented Reality": 1 + "Innovations in 2nd Grade Science: Bear Habitats through GPS, Motion Sensor Technology, Radio Telemetry, and Sonar Exploration": 1 + "2nd Grade Science: Interpreting Bear Habitats via GPS Tracking, Motion Sensor Tech, Radio Telemetry, and 3D Mapping": 1 + "6th Grade Social Studies: Exploring the Pyramids in Ancient Civilizations and the Development of Hieroglyphics": 1 + "6th Grade Social Studies: The Ancient Civilizations’ Use of the Abacus and the Evolution of Written Language": 1 + "6th Grade Social Studies: Unraveling the Mystery of Stonehenge in Ancient Civilizations and the Progress of Written Language": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Development of Papyrus in Written Language": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Invention of The Wheel: A Journey Through Written Language": 1 + "6th Grade Social Studies: The Ancient Civilizations’ Mastery of Irrigation Systems and the Birth of Written Language": 1 + "6th Grade Social Studies: The Role of Bronze in Ancient Civilizations and the Development of Written Language": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Advancement of Written Language through the Printing Press": 1 + "6th Grade Social Studies: The Ancient Civilizations and the Development of Written Language: A Study of the Quill Pen": 1 + "6th Grade Social Studies: Uncovering the Aqueducts of Ancient Civilizations and the Evolution of Written Language.": 1 + "3rd Grade English: Exploring Narratives with Smart Board Activities and Story Maps": 1 + "3rd Grade English: Unpacking Narratives through Interactive Whiteboard Activities using Google Slides": 1 + "3rd Grade English: Understanding Narratives through Interactive Whiteboard and Padlet Activities": 1 + "3rd Grade English: Analyzing Narratives through Interactive Whiteboard Activities and Kahoot Quizzes": 1 + "3rd Grade English: Unpacking Narratives using Interactive Whiteboard Activities and Quizlet Games": 1 + "3rd Grade English: Interpreting Narratives through Interactive Whiteboard Activities and Nearpod Lessons": 1 + "3rd Grade English: Unpacking Narratives with Interactive Whiteboard Activities and Flipgrid Discussions": 1 + "3rd Grade English: Exploring Narratives through Interactive Whiteboard Activities and EdPuzzle Videos": 1 + "3rd Grade English: Unpacking Narratives using Interactive Whiteboard Activities and Seesaw Assignments": 1 + "3rd Grade English: Studying Narratives through Interactive Whiteboard Activities and Pear Deck Presentations": 1 + "5th Grade Music: Exploring Rhythm Patterns with Roland Electronic Drums ": 1 + "5th Grade Music: Creating Rhythm Patterns using MIDI Technology and Electronic Drums": 1 + "5th Grade Music: Rhythm Patterns in Action with Electronic Drums and Ableton Live": 1 + "5th Grade Music: Rhythm Patterns and Beat Sequencing with Electronic Drums": 1 + "5th Grade Music: Rhythm Patterns in Action: An Introduction to Digital Audio Workstations with Electronic Drums": 1 + "5th Grade Music: Rhythm Patterns in Action with Electronic Drums and GarageBand": 1 + "5th Grade Music: Discovering Rhythm Patterns with Electronic Drums and Music Notation Software": 1 + "5th Grade Music: A Study of Rhythm Patterns using Electronic Drums and Loop Stations": 1 + "5th Grade Music: The Art of Rhythm Patterns: A Deep Dive into Drum Synthesis with Electronic Drums": 1 + "5th Grade Music: Rhythm Patterns in Action: Understanding Time Signatures with Electronic Drums.": 1 + "6th Grade Science: Exploring Earth’s Ecosystems through Microscopes": 1 + "6th Grade Science: Investigating Earth’s Ecosystems with Satellite Imagery": 1 + "6th Grade Science: Understanding Earth’s Ecosystems Using Data Analysis": 1 + "6th Grade Science: Introduction to Earth’s Ecosystems through Climate Studies": 1 + "6th Grade Science: Studying Earth’s Ecosystems with GIS Technology": 1 + "6th Grade Science: Understanding Earth’s Ecosystems through Biodiversity Analysis": 1 + "6th Grade Science: Exploring Earth’s Ecosystems Using Soil Testing Kits": 1 + "6th Grade Science: Introduction to Earth’s Ecosystems through Remote Sensing": 1 + "6th Grade Science: Learning about Earth’s Ecosystems with Environmental Monitoring Tools": 1 + "6th Grade Science: Discovering Earth’s Ecosystems through Species Distribution Modelling": 1 + "3rd Grade English: Enhancing Storytelling through Adobe Illustrator Graphic Design": 1 + "3rd Grade English: Storytelling using Canva for Graphic Design": 1 + "3rd Grade English: Incorporating Color Theory in Storytelling with Graphic Design": 1 + "3rd Grade English: Storytelling with Typographic Elements in Graphic Design": 1 + "3rd Grade English: Utilizing Photoshop in Storytelling through Graphic Design": 1 + "3rd Grade English: Exploring Digital Illustration for Storytelling in Graphic Design": 1 + "3rd Grade English: Storytelling with Graphic Design using Procreate": 1 + "3rd Grade English: Storytelling and Layout Design in InDesign": 1 + "3rd Grade English: Integrating Animation in Storytelling through Graphic Design": 1 + "3rd Grade English: Storytelling by Designing Characters with Graphic Design Tools": 1 + "3rd Grade English: Learning Global Narratives through Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Storyboard Pro": 1 + "3rd Grade English: Exploring Global Narratives with Shadow Puppetry using Laser Cutters and Stop-Motion Animation in Adobe Animate": 1 + "3rd Grade English: Introducing Global Narratives through Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Basic Coding Concepts": 1 + "3rd Grade English: Understanding Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Green Screen Technology": 1 + "3rd Grade English: Unfolding Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Digital Storytelling Techniques": 1 + "3rd Grade English: Discovering Global Narratives through Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Flipbook Animation": 1 + "3rd Grade English: Interpreting Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate and 3D Printing Technology": 1 + "3rd Grade English: Exploring Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Augmented Reality Concepts": 1 + "3rd Grade English: Mastering Global Narratives with Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Digital Painting Techniques": 1 + "3rd Grade English: Analyzing Global Narratives through Shadow Puppetry and Stop-Motion Animation using Adobe Animate and Photo Manipulation Software.": 1 + "4th Grade Science: Exploring Earth’s Ecosystem with Telescopes & Microscopes": 1 + "4th Grade Science: Basics of Earth’s Ecosystem and Galaxy Analysis with Telescopes": 1 + "4th Grade Science: Studying Earth’s Ecosystem using Telescopes and Satellite Imagery": 1 + "4th Grade Science: Insights into Earth’s Ecosystem with Telescopes and Drones": 1 + "4th Grade Science: Basics of Earth’s Ecosystem with Telescopes and GIS Technology": 1 + "4th Grade Science: Earth’s Ecosystem and Climate Change Study with Telescopes and Thermometers": 1 + "4th Grade Science: Understanding Earth’s Ecosystem with Telescopes and Photovoltaic Cells": 1 + "4th Grade Science: Fundamentals of Earth’s Ecosystem with Telescopes and Spectrometers": 1 + "4th Grade Science: Examining Earth’s Ecosystem with Telescopes and Weather Balloons": 1 + "4th Grade Science: Basics of Earth’s Ecosystem with Telescopes and Rain Gauges.": 1 + "3rd Grade Health: Nutrition Education with Interactive Board Games and Healthy Meal Planning": 1 + "3rd Grade Health: Nutrition Education using Digital Flashcards and Interactive Games": 1 + "3rd Grade Health: Nutrition Education with Virtual Reality Games and Food Pyramid Lessons": 1 + "3rd Grade Health: Nutrition Education with Interactive Puzzles and Dietary Fiber Study": 1 + "3rd Grade Health: Nutrition Education through Interactive Role Play Games and Vitamin Importance": 1 + "3rd Grade Health: Nutrition Education using Multimedia Games and Balanced Diet Analysis": 1 + "3rd Grade Health: Nutrition Education with Mobile Apps and Macronutrients Learning": 1 + "3rd Grade Health: Nutrition Education with Educational Video Games and Caloric Intake Management": 1 + "3rd Grade Health: Nutrition Education using Interactive Whiteboard Games and Hydration Importance": 1 + "3rd Grade Health: Nutrition Education with Augmented Reality Games and Food Group Classification": 1 + "2nd Grade Mathematics: Teaching Basic Shapes with LEGO Mindstorms Robotics": 1 + "2nd Grade Mathematics: Exploring Shapes with Sphero Educational Robotics": 1 + "2nd Grade Mathematics: Introducing Geometric Shapes with Ozobot Robotics": 1 + "Teaching 2nd Grade Mathematics: Incorporating Polygon Concepts with VEX Robotics": 1 + "2nd Grade Mathematics: Illuminating Circles and Squares with Bee-Bot Robotics": 1 + "2nd Grade Mathematics: Understanding Basic Shapes through Dash and Dot Robotics": 1 + "2nd Grade Mathematics: Integrating Triangle Studies with Cubelets Robotics": 1 + "2nd Grade Mathematics: Teaching Basic Shapes with mBot Robotics": 1 + "2nd Grade Mathematics: Learning About Rectangles with KIBO Robotics": 1 + "2nd Grade Mathematics: Discovering Shapes with Robo Wunderkind Robotics.": 1 + "7th Grade Algebra: Discovering Number Patterns and Variable Relationships with Desmos and Geogebra Tools": 1 + "7th Grade Algebra: An Exploration of Linear Equations with Desmos and Google Sheets": 1 + "7th Grade Algebra: Unlocking the Mysteries of Quadratic Functions using Desmos and Python Programming": 1 + "7th Grade Algebra: Understanding Variables and Coefficients with Desmos and Excel Spreadsheets": 1 + "7th Grade Algebra: Investigating the Secrets of Exponential Growth with Desmos and MATLAB": 1 + "7th Grade Algebra: Decoding the Puzzles of Rational Numbers with Desmos and TI-84 Calculators": 1 + "7th Grade Algebra: Unraveling the Enigma of Algebraic Expressions with Desmos and Wolfram Alpha": 1 + "7th Grade Algebra: Probing the Intricacies of Absolute Value with Desmos and R Programming": 1 + "7th Grade Algebra: Deciphering the Code of Linear Inequalities with Desmos and Khan Academy Resources": 1 + "7th Grade Algebra: Exploring the Complexities of Factorization using Desmos and MapleSoft Software": 1 + "Exploring Basic Addition with Montessori Numberland App and iPad Technology for 2nd Graders": 1 + "Engaging with Tactile Learning: Basic Addition through Montessori Numberland App and Touch Screen Technology for 2nd Graders": 1 + "Enhancing Basic Addition Skills with Montessori Numberland App and Voice Recognition Technology for 2nd Graders": 1 + "Interactive Learning of Basic Addition through Montessori Numberland App with 3D Visualization for 2nd Graders": 1 + "Basic Addition Mastery through Montessori Numberland App and Virtual Reality for 2nd Graders": 1 + "Interactive Learning of Basic Addition with Montessori Numberland App and Gamification for 2nd Graders": 1 + "Montessori Numberland App for Basic Addition: Incorporating Artificial Intelligence for Interactive Learning in 2nd Graders": 1 + "Incorporating Augmented Reality in Basic Addition: Interactive Learning through Montessori Numberland App for 2nd Graders": 1 + "Using Montessori Numberland App and Personalized Learning Techniques for Basic Addition Mastery in 2nd Graders": 1 + "Exploring Basic Addition with Montessori Numberland App and Digital Whiteboard Technology for 2nd Graders.": 1 + "7th Grade Music: Mastering the Art of Crescendo and Decrescendo Interpretation on the Flute using Finale Notation Software and Garageband": 1 + "7th Grade Music: A Deep Dive into Flute Dynamics using Finale Notation Software and the Sibelius AudioScore Tool": 1 + "7th Grade Music: Exploring Forte and Piano Interpretation on the Flute with Finale Notation Software and Audacity": 1 + "7th Grade Music: Understanding Staccato and Legato Techniques on the Flute using Finale Notation Software and the Metronome Tool": 1 + "7th Grade Music: Comprehensive Guide to Dynamics on the Flute using Finale Notation Software and the Logic Pro X Recording Software": 1 + "7th Grade Music: Enhancing the Art of Dynamics Interpretation on the Flute using Finale Notation Software and the Pro Tools Editing Software ": 1 + "7th Grade Music: Advanced Study of Flute Dynamics and the Finale Notation Software with the use of the Reaper DAW": 1 + "7th Grade Music: Mastering the Art of Flute Dynamics Interpretation using Finale Notation Software and the Ableton Live Sequencer": 1 + "7th Grade Music: Deepening Understanding of Dynamics on the Flute with Finale Notation Software and the WavePad Sound Editor": 1 + "7th Grade Music: The Art of Dynamics Interpretation on the Flute using Finale Notation Software and the Cubase Mixing Console": 1 + "1st Grade Environmental Studies: Exploring the Use of Solar-Powered LED Grow Lights in Hydroponics for Sustainable Farming": 1 + "Understanding the Role of pH Meters in Nutrient Solution Management for Hydroponic Farming: A 1st Grade Environmental Studies Course": 1 + "1st Grade Environmental Studies: The Impact of LED Grow Lights and the Use of Automated Irrigation in Hydroponics": 1 + "1st Grade Environmental Studies: Introducing Aeroponics alongside LED Grow Lights in Sustainable Farming Practices": 1 + "The Role of Nutrient Film Technique in Hydroponics and LED Grow Light Impact: A Study for 1st Grade Environmental Studies": 1 + "1st Grade Environmental Studies: Exploring the Impact of LED Grow Lights in Hydroponics and the Role of Organic Nutrients in Solution Management": 1 + "Introduction to the Use of Water Quality Monitoring in Hydroponics and LED Grow Light Impact: A 1st Grade Environmental Studies Course": 1 + "1st Grade Environmental Studies: The Role of LED Grow Lights in Hydroponics and the Use of pH Adjusters for Nutrient Solution Management": 1 + "Sustainable Farming in 1st Grade Environmental Studies: The Impact of LED Grow Lights in Hydroponics and the Role of Vermicompost in Nutrient Solution Management": 1 + "1st Grade Environmental Studies: Incorporating the Use of Drip Irrigation Systems in Hydroponics alongside LED Grow Light Studies.": 1 + "8th Grade Music: Exploring Beethoven’s Orchestration Principles in Classical Music using GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools and Audacity Audio Editor": 1 + "8th Grade Music: Unveiling Mozart’s Orchestration Techniques in Classical Music with GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools, and Pro Tools Software": 1 + "8th Grade Music: Investigating Bach’s Orchestration Principles in Classical Music using GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools and Ableton Live": 1 + "8th Grade Music: Dissecting Tchaikovsky’s Orchestration Techniques in Classical Music with GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools, and Cubase Recording Software": 1 + "8th Grade Music: Decoding Vivaldi’s Orchestration Principles in Classical Music using GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools and Sibelius Music Notation Software": 1 + "8th Grade Music: Understanding Handel’s Orchestration Techniques in Classical Music with GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools, and Logic Pro X": 1 + "8th Grade Music: Examining Chopin’s Orchestration Principles in Classical Music using GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools and Mixcraft Recording Software": 1 + "8th Grade Music: Analyzing Debussy’s Orchestration Techniques in Classical Music with GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools, and Reaper Digital Audio Workstation": 1 + "8th Grade Music: Deciphering Haydn’s Orchestration Principles in Classical Music using GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools and Traktor DJ Software": 1 + "8th Grade Music: Interpreting Mendelssohn’s Orchestration Techniques in Classical Music with GarageBand MIDI Sequencers, Reason DAW, FL Studio’s Beat Making Tools, and Soundtrap Online Music Studio": 1 + "3rd Grade Mathematics: Understanding Length Measurements with Rulers in Environment": 1 + "3rd Grade Mathematics: Exploring Environmental Volume Measurements with Beakers": 1 + "3rd Grade Mathematics: Mastering Weight Measurements in Environment using Balances": 1 + "3rd Grade Mathematics: Discovering Temperature Measurements in Environment with Thermometers": 1 + "3rd Grade Mathematics: Understanding Environmental Measurements through the Concept of Area": 1 + "3rd Grade Mathematics: Exploring Environmental Measurements with Digital Scales": 1 + "3rd Grade Mathematics: Mastering Measurements in Environment using Protractors for Angles": 1 + "3rd Grade Mathematics: Introduction to Environmental Measurements using Stopwatch for Time": 1 + "3rd Grade Mathematics: Understanding Measurements in Environment through the Concept of Perimeter": 1 + "3rd Grade Mathematics: Learning about Environmental Measurements with Compass for Directions.": 1 + "Mastering Quadratic Inequalities in 11th Grade Math using Wolfram Alpha and Polynomial Long Division": 1 + "Exploring Algebraic Expressions in 11th Grade Math with Wolfram Alpha and the FOIL Method": 1 + "Understanding Rational Expressions in 11th Grade Mathematics through Wolfram Alpha and Synthetic Division": 1 + "11th Grade Mathematics: Mastering Linear Inequalities with Wolfram Alpha and the Slope-Intercept Form": 1 + "Advanced Algebraic Expressions in 11th Grade Math: Utilizing Wolfram Alpha and the Remainder Theorem": 1 + "Grasping Absolute Value Inequalities in 11th Grade Mathematics through Wolfram Alpha and the Distance Formula": 1 + "11th Grade Mathematics: Enhancing Skills in Radical Expressions using Wolfram Alpha and the Quadratic Formula": 1 + "Mastering Systems of Inequalities in 11th Grade Math using Wolfram Alpha and the Graphical Method": 1 + "11th Grade Mathematics: Deep Dive into Polynomial Expressions with Wolfram Alpha and the Binomial Theorem": 1 + "Proficiency in Factoring Algebraic Expressions in 11th Grade Math using Wolfram Alpha and the Factor Theorem.": 1 + "10th Grade English: Exploring Shakespearean Literature Analysis through Metaphor using SparkNotes": 1 + "10th Grade English: Exploring Modern Literature Analysis through Metaphor with Google Scholar": 1 + "10th Grade English: Analyzing Metaphor in Victorian Literature using JSTOR": 1 + "10th Grade English: Exploring Literature Analysis through Metaphor with the Aid of Grammarly": 1 + "10th Grade English: Incorporating Textual Analysis Software in Exploring Metaphor in Literature": 1 + "10th Grade English: Using Turnitin for Literature Analysis through Metaphor": 1 + "10th Grade English: Delving into Metaphor in American Literature with Project Gutenberg": 1 + "10th Grade English: Exploring Metaphor in Literature Analysis using Online Thesaurus": 1 + "10th Grade English: Applying NLP Tools in Literature Analysis through Metaphor": 1 + "10th Grade English: Exploring Literature Analysis through Metaphor with the Aid of Kindle’s X-Ray Feature": 1 + "5th Grade History: Exploring Ancient Egypt with Infrared Aerial Photography": 1 + "5th Grade History: Unveiling Ancient Egypt using Lidar Technology in Aerial Photography": 1 + "5th Grade History: Revealing Ancient Egypt’s Pyramids with Aerial Drone Photography": 1 + "5th Grade History: Deciphering Ancient Egypt using Satellite Imagery in Aerial Photography": 1 + "5th Grade History: Unmasking Ancient Egypt with High-Resolution Aerial Photography": 1 + "5th Grade History: Discovering Ancient Egypt’s Landscapes using Thermal Imaging in Aerial Photography": 1 + "5th Grade History: Investigating Ancient Egypt with 3D Mapping in Aerial Photography": 1 + "5th Grade History: Exposing Ancient Egypt using Geospatial Technology in Aerial Photography": 1 + "5th Grade History: Exploring Ancient Egypt’s Hieroglyphics with Macro Aerial Photography": 1 + "5th Grade History: Unraveling Ancient Egypt with Stereo Aerial Photography.": 1 + "4th Grade Art: Color Theory Mastery with Prismacolor Colored Pencils and Layering Techniques": 1 + "4th Grade Art: Exploring Color Theory with Watercolor Pencils and Blending Techniques": 1 + "4th Grade Art: An In-Depth Study of Color Theory Using Oil Pastels and Smudging Techniques": 1 + "4th Grade Art: Color Theory Excellence with Digital Painting and Blending Modes": 1 + "4th Grade Art: Understanding Color Theory through Acrylic Paints and Glazing Techniques": 1 + "4th Grade Art: Color Theory Mastery with Charcoal Pencils and Shading Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens and Layering Techniques": 1 + "4th Grade Art: Color Theory Mastery with Pastel Pencils and Scumbling Techniques": 1 + "4th Grade Art: Color Theory Proficiency with Crayons and Rubbing Techniques": 1 + "4th Grade Art: Exploring Color Theory with Gouache Paint and Wet-on-Wet Techniques.": 1 + "First Grade Environmental Studies: Exploring Solar Energy Through Photovoltaic Cells Using Solar Panels": 1 + "Harnessing Sun’s Power: A Study of Solar Energy and Photovoltaic Cells with SunOvens in First Grade": 1 + "First Grade Environmental Studies: Solar Energy Comprehension Through Photovoltaic Cells & Solar-Powered Cars": 1 + "Understanding Solar Energy: An In-depth Study of Photovoltaic Cells and Solar Batteries for First Graders": 1 + "First Grade Environmental Studies: Solar Energy Conversion Through Photovoltaic Cells and Solar Cookers": 1 + "Sun’s Power for Little Minds: First Grade Exploration of Photovoltaic Cells and Solar Watches": 1 + "First Grade Environmental Studies: Hands-on Learning of Solar Energy Using Photovoltaic Cells and Solar Lamps": 1 + "Solar Energy Simplified: A First Grader’s Guide to Photovoltaic Cells and Solar Chargers": 1 + "First Grade Environmental Studies: Solar Energy and Photovoltaic Cells Demonstrated Through Solar Water Heaters": 1 + "Bright Young Minds: Grasping Solar Energy Through Photovoltaic Cells and Solar Radios in First Grade": 1 + "2nd Grade Mathematics: Mastering Multiplication using Interactive Whiteboard, Base Ten Blocks and Abacus Techniques": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills with Interactive Whiteboard, Base Ten Blocks and Smart Notebook Software": 1 + "2nd Grade Mathematics: Multiplication Mastery with Interactive Whiteboard, Base Ten Blocks and Singapore Math Method": 1 + "2nd Grade Mathematics: Exploring Multiplication through Interactive Whiteboard, Base Ten Blocks and TouchMath Curriculum": 1 + "2nd Grade Math: Multiplication Proficiency with Interactive Whiteboard, Base Ten Blocks and Math-U-See Manipulatives": 1 + "2nd Grade Mathematics: Multiplication Mastery with Interactive Whiteboard, Base Ten Blocks and GeoGebra Tools": 1 + "2nd Grade Mathematics: Perfecting Multiplication with Interactive Whiteboard, Base Ten Blocks and Montessori Method": 1 + "2nd Grade Mathematics: Multiplication Mastery with Interactive Whiteboard, Base Ten Blocks and Prodigy Math Game": 1 + "2nd Grade Math: Multiplication Skills Development with Interactive Whiteboard, Base Ten Blocks and Nearpod Virtual Lessons": 1 + "2nd Grade Mathematics: Achieving Multiplication Mastery with Interactive Whiteboard, Base Ten Blocks and Khan Academy Resources": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Tambourine Techniques ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Clapping Patterns ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Foot Stomping Techniques ": 1 + "2nd Grade Elementary Music: Exploring Rhythm with Body Percussion & Digital Metronome ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Drumsticks ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Handbells ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Music Notation Software ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Beatboxing ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Music Software Loops ": 1 + "2nd Grade Elementary Music: Rhythm Foundation with Body Percussion & Interactive Music Games": 1 + "8th Grade History: From Woodblock to Gutenberg’s Press: The Technological Evolution of Printing During the Renaissance": 1 + "8th Grade History: The Impact of Movable Type on Renaissance Printing": 1 + "8th Grade History: The Gutenberg Press: Transforming Printing in the Renaissance": 1 + "8th Grade History: Renaissance Printing: The Journey from Woodblock to Press to Movable Type": 1 + "8th Grade History: The Evolution of Renaissance Printing: A Focus on Papermaking": 1 + "8th Grade History: From Woodcut to Printing Press: The Role of Ink in Renaissance Printing": 1 + "8th Grade History: The Transition from Woodblock to Press: The Use of Parchment in Renaissance Printing": 1 + "8th Grade History: From Woodblock to Press: The Advancement of Printing Technology in the Renaissance Era": 1 + "8th Grade History: The Role of the Printing Press in the Technological Evolution of the Renaissance": 1 + "8th Grade History: The Transformation from Woodblock to Press: Gutenberg’s Innovations in Renaissance Printing.": 1 + "1st Grade Elementary English: Enhancing Vocabulary through Interactive Storytelling on iPad": 1 + "1st Grade Elementary English: Building Basic Vocabulary through Creative Writing Exercises using Microsoft Word": 1 + "1st Grade Elementary English: Developing Vocabulary through Storybird Creative Writing Exercises": 1 + "1st Grade Elementary English: Amplifying Vocabulary with Google Docs in Creative Writing Exercises ": 1 + "1st Grade Elementary English: Strengthening Vocabulary via Prezi-based Creative Writing Tasks": 1 + "1st Grade Elementary English: Boosting Vocabulary through Creative Writing Exercises on Kindle": 1 + "1st Grade Elementary English: Nurturing Vocabulary with Flipgrid Enhanced Creative Writing Exercises ": 1 + "1st Grade Elementary English: Vocabulary Expansion through Trello Board Creative Writing Exercises": 1 + "1st Grade Elementary English: Vocabulary Improvement through Creative Writing Exercises using Evernote": 1 + "1st Grade Elementary English: Vocabulary Enrichment with Podcast-based Creative Writing Exercises": 1 + "4th Grade Language Arts: Using Interactive Storyboards to Analyze Plot Structure in Classic Children’s Literature": 1 + "4th Grade Language Arts: Exploring Story Elements via Plot Structure Analysis using Google Classroom": 1 + "4th Grade Language Arts: Implementing Padlet for Plot Structure Analysis in Story Elements Exploration": 1 + "4th Grade Language Arts: Applying Mind Mapping Techniques in Plot Structure Analysis to Discover Story Elements": 1 + "4th Grade Language Arts: Leveraging Digital Storytelling Tools for Plot Structure Analysis in Story Elements": 1 + "4th Grade Language Arts: Utilizing the Freytag’s Pyramid Model in Exploring Story Elements through Plot Structure Analysis": 1 + "4th Grade Language Arts: Exploring Story Elements through Plot Structure Analysis using the Show, Don’t Tell Concept": 1 + "4th Grade Language Arts: The Role of Animoto in Analyzing Plot Structure to Uncover Story Elements": 1 + "4th Grade Language Arts: Exploring Story Elements through Plot Structure Analysis with the aid of PowerPoint Presentations": 1 + "4th Grade Language Arts: Applying the Three-Act Structure Concept in Plot Analysis to Discover Story Elements": 1 + "7th Grade Music Theory and the Impact of Classical Composers via Piano": 1 + "Exploring 7th Grade Music and Beethoven’s Influence through Digital Composition": 1 + "Introducing 7th Graders to Classical Composers and Notation Software": 1 + "Musical Exploration in 7th Grade: Classical Composers and MIDI Keyboards": 1 + "7th Grade Introduction to Classical Composers with Violin": 1 + "The World of Classical Composers: A 7th Grade Music Course Utilizing GarageBand": 1 + "Classical Composers and Their Music: A 7th Grade Course with Focus on Conducting": 1 + "7th Grade Music and Classical Composers: A Comprehensive Study using Music Production Software": 1 + "7th Grade Music: Understanding Classical Composers through the Lens of Digital Recording": 1 + "Classical Composers and their Influence: 7th Grade Music Education with Acoustic Guitar.": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with Mathway, GeoGebra and Quadratic Equations": 1 + "6th Grade Mathematics: Utilizing TI-84 Plus for Algebraic Expressions and Graphing Calculations": 1 + "6th Grade Mathematics: Discovering Algebraic Expressions with Mathway and Desmos Graphing Calculator": 1 + "6th Grade Mathematics: Mastering Algebraic Expressions with Mathway and Casio fx-991EX Classwiz": 1 + "6th Grade Mathematics: Delving into the world of Algebraic Expressions with Mathway and Microsoft Mathematics": 1 + "6th Grade Mathematics: Understanding Algebraic Expressions using Mathway and Exponential Functions": 1 + "6th Grade Mathematics: Examining Algebraic Expressions with Mathway, Graphing Calculators and the Concept of Variables": 1 + "6th Grade Mathematics: Interpreting Algebraic Expressions with Mathway, Graphing Calculators and Linear Equations": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with Mathway, Graphing Calculators and Real Numbers.": 1 + "6th Grade Mathematics: Investigating Algebraic Expressions using Mathway, Graphing Calculators and the Pythagorean Theorem.": 1 + "5th Grade Physical Education: Basics of Football with Training Cones": 1 + "5th Grade Physical Education: Learning Team Basketball with Scoreboards": 1 + "5th Grade Physical Education: Introduction to Volleyball with Training Nets": 1 + "5th Grade Physical Education: Basics of Baseball Using Batting Tees": 1 + "5th Grade Physical Education: Essentials of Soccer with Goalkeeping Gloves": 1 + "5th Grade Physical Education: Basics of Hockey Using Pucks": 1 + "5th Grade Physical Education: Team Sports Essentials with Heart Rate Monitors": 1 + "5th Grade Physical Education: Understanding Cricket with Cricket Bats": 1 + "5th Grade Physical Education: Team Handball Basics with Handball Goals": 1 + "5th Grade Physical Education: Rugby Fundamentals Using Training Balls.": 1 + "Investigating Roller Coaster Physics: A Deep Dive into Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers and Newton’s Second Law": 1 + "An In-depth Study of Roller Coaster Physics: Exploring G-forces with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Accelerometers": 1 + "Investigating Roller Coaster Physics: A Comprehensive Analysis of Momentum Conservation using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers and Collision Theory": 1 + "Exploring Roller Coaster Physics: Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers and Laser Rangefinders for Accurate Distance Measurements": 1 + "Roller Coaster Physics: A Practical 7th Grade Study on Kinetic Energy Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Energy Transformation Concepts": 1 + "7th Grade Science Study: Investigating Roller Coaster Physics with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Pendulum Motion Principles": 1 + "Investigating Roller Coaster Physics: A 7th Grade Study on Centripetal Force Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers and Circular Motion Concepts": 1 + "Roller Coaster Physics: A Detailed Study of Frictional Forces Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers and Surface Material Testing": 1 + "Roller Coaster Physics: Understanding Potential Energy with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Height Proportional Energy Concepts": 1 + "Investigating Roller Coaster Physics: A 7th Grade Study on Mechanical Energy Conservation Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Energy Loss Due to Air Resistance.": 1 + "8th Grade Art: Mastering Basics of Sketching with Pen and Ink using Graphite and Charcoal": 1 + "8th Grade Art: Introduction to Sketching with Pen, Ink and Graphite using Cross-hatching Technique": 1 + "8th Grade Art: Exploring Sketching with Pen, Ink, Graphite and Blending Stumps": 1 + "8th Grade Art: Developing Sketching Skills with Pen, Ink and Graphite using the Shading Technique": 1 + "8th Grade Art: Learning to Sketch with Pen, Ink, Graphite and a Light Box": 1 + "8th Grade Art: Essentials of Sketching with Pen, Ink, Graphite and a Sketch Pad": 1 + "8th Grade Art: The Art of Sketching with Pen, Ink, Graphite and a Drawing Tablet ": 1 + "8th Grade Art: Basics of Sketching with Pen, Ink, Graphite and an Eraser Shield": 1 + "8th Grade Art: Understanding Sketching with Pen, Ink, Graphite and the Concept of Perspective ": 1 + "8th Grade Art: Discovering Sketching with Pen, Ink, Graphite and the Use of a Ruler": 1 + "5th Grade English: Interactive Story Elements Exploration using Point of View Practice in Google Classroom": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice with Podcasts": 1 + "5th Grade English: Digital Story Elements Exploration using Point of View Practice on iPad": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice through Virtual Reality": 1 + "5th Grade English: Story Elements Exploration using Point of View and Foreshadowing Practice": 1 + "5th Grade English: Narrative Story Elements Exploration using Point of View Practice with E-books": 1 + "5th Grade English: Multi-Media Story Elements Exploration using Point of View Practice on YouTube": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice with Animated Videos": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice through Video Conferencing": 1 + "5th Grade English: Story Elements Exploration using Point of View Practice with Interactive Whiteboards.": 1 + "Exploring Polar Bears in the Arctic: A 9th Grade Social Studies Course using Wikitude, Microsoft HoloLens, VR Goggles, and Google Cardboard": 1 + "Studying Arctic Foxes through Augmented Reality: A Comprehensive 9th Grade Social Studies Course with Wikitude, Microsoft HoloLens and VR Goggles": 1 + "9th Grade Social Studies: Understanding Arctic Wolves through Augmented Reality using Wikitude, Microsoft HoloLens, VR Goggles, and Leap Motion Controllers": 1 + "Arctic Marine Life: A 9th Grade Social Studies Course using Augmented Reality through Wikitude, Microsoft HoloLens, VR Goggles, and Oculus Rift": 1 + "9th Grade Social Studies: Engaging with Arctic Seals through Augmented Reality using Wikitude, Microsoft HoloLens, VR Goggles, and Magic Leap One": 1 + "Augmented Reality Exploration of Arctic Birds: A 9th Grade Social Studies Course using Wikitude, Microsoft HoloLens, VR Goggles, and HTC Vive": 1 + "9th Grade Social Studies: An In-Depth Study of Arctic Whales through Augmented Reality using Wikitude, Microsoft HoloLens, VR Goggles, and Samsung Gear VR": 1 + "Investigating Arctic Hares in 9th Grade Social Studies using Augmented Reality with Wikitude, Microsoft HoloLens, VR Goggles, and PlayStation VR": 1 + "9th Grade Social Studies: Interactive Study of Arctic Caribou through Augmented Reality using Wikitude, Microsoft HoloLens, VR Goggles, and Fove 0": 1 + "Understanding the Arctic Musk Ox: A 9th Grade Social Studies Course using Augmented Reality through Wikitude, Microsoft HoloLens, VR Goggles, and Dell Visor.": 1 + "8th Grade History: The Renaissance Era: The Emergence of Double-entry Bookkeeping and the Use of the Paper Ledger in Europe": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe: The Impact of the Printing Press on Ledger Production": 1 + "8th Grade History: The Role of the Abacus in the Development of Double-entry Bookkeeping during the Renaissance Era": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe and the Evolution of the Quill Pen": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping: The Introduction of Arabic Numerals in European Accounting": 1 + "8th Grade History: The Renaissance Era: The Transformation of Double-entry Bookkeeping through Parchment Ledgers": 1 + "8th Grade History: The Renaissance Era: The Influence of Italian Merchants on Double-entry Bookkeeping and Paper Ledger Use": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping in Europe: The Role of the Paper Ledger in Maritime Trade": 1 + "8th Grade History: The Renaissance Era: The Rise of Double-entry Bookkeeping and Paper Ledger: The Role of the Coin Scale": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping and the Impact of the Gutenberg Printing Press on Ledger Production in Europe": 1 + "4th Grade Language Arts: Exploring Creative Writing with Grammarly Language App": 1 + "4th Grade Language Arts: Venturing into Creative Writing using Microsoft Word’s Editor": 1 + "4th Grade Language Arts: Immersion in Creative Writing with Google Docs Speech-to-Text Feature": 1 + "4th Grade Language Arts: Unleashing Creativity in Writing using the ProWritingAid App": 1 + "4th Grade Language Arts: Mastering Creative Writing with the Hemingway Editor Tool": 1 + "4th Grade Language Arts: Enhancing Creative Writing Skills with Evernote’s Web Clipper": 1 + "4th Grade Language Arts: Diving into Creative Writing using the Scrivener Writing Software": 1 + "4th Grade Language Arts: Innovating Creative Writing with the Storyist App": 1 + "4th Grade Language Arts: Advancing in Creative Writing using the FocusWriter Tool": 1 + "4th Grade Language Arts: Excursion into Creative Writing with the Use of the Ulysses Writing App.": 1 + "4th Grade Music: Mastering Handel’s Suites Through Piano Interpretation and Audio Effects Using Pro Tools Software and MIDI Controller.": 1 + "Understanding Handel’s Suites: A Deep Dive into Piano Interpretation and Digital Audio Workstation with Pro Tools Software in 4th Grade Music.": 1 + "4th Grade Music: Exploring Handel’s Suites via Piano Interpretation and Audio Mixing Techniques with Pro Tools Software.": 1 + "Advanced 4th Grade Music: Handel’s Suites, Piano Interpretation, and Audio Effects Using Pro Tools Software and Digital Equalizers.": 1 + "4th Grade Music: Comprehensive Study of Handel’s Suites through Piano Interpretation and Sound Design Using Pro Tools Software.": 1 + "4th Grade Music: Mastering Handel’s Suites with Piano Interpretation, Pro Tools Software, and Sound Engineering Concepts.": 1 + "4th Grade Music: Handel’s Suites, Piano Interpretation and Audio Effects - An In-depth Study Using Pro Tools Software and Audio Interfaces.": 1 + "4th Grade Music: Analyzing Handel’s Suites Through Piano Interpretation, Audio Effects, and Mix Automation Techniques Using Pro Tools Software.": 1 + "4th Grade Music: Handel’s Suites, Piano Interpretation and Advanced Audio Editing Using Pro Tools Software and Virtual Instruments.": 1 + "4th Grade Music: Exploring Handel’s Suites through Piano Interpretation and Audio Effects with Pro Tools Software and Amplification Techniques.": 1 + "4th Grade Social Studies: The American Revolution - The Influence of the Printing Press, Benjamin Franklin’s Contributions, and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Role of the Gutenberg Printing Press and the Distribution of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, The Concept of Freedom of Speech and the Proliferation of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Impact of the Printing Press, the Introduction of Political Cartoons and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Influence of the Printing Press, the Use of Pamphlets and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, the Emergence of Newspapers and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Role of the Printing Press, the Advent of Postal Services and the Dissemination of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, the Importance of Literacy and the Distribution of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Impact of the Printing Press, the Role of Town Criers, and the Spread of Broadsides": 1 + "4th Grade Social Studies: The American Revolution - The Printing Press, the Concept of Freedom of the Press and the Circulation of Broadsides": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction Using Abacus Through Visual Representation Techniques": 1 + "2nd Grade Mathematics: Achieving Addition and Subtraction Mastery with Number Line Visualization ": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction Mastery Through Math Manipulatives Visualization Techniques": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills Through Interactive Whiteboard Visual Representation Techniques": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Through Visual Representation Techniques Using Interactive Software ": 1 + "2nd Grade Mathematics: Mastery of Addition and Subtraction Through Tablet Based Visual Representation Techniques": 1 + "2nd Grade Mathematics: Understanding Addition and Subtraction Through Counting Beads Visual Representation Techniques": 1 + "2nd Grade Mathematics: Gaining Addition and Subtraction Mastery Through Virtual Reality Visual Representation Techniques ": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery Through Visual Representation Techniques Using Smartboard Technology ": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Geoboard Visualization Techniques": 1 + "9th Grade History: The Impact of Gutenberg’s Printing Press and Watt’s Steam Engine on Communication during the American Revolution Era": 1 + "9th Grade History: The Influence of Gutenberg’s Printing Press and the Cotton Gin in the American Revolution Era": 1 + "9th Grade History: Exploring the Role of Gutenberg’s Printing Press, Steam Power, and the Sextant in the American Revolution Era": 1 + "9th Grade History: The Role of Gutenberg’s Printing Press, Steam Power, and the Telegraph in the American Revolution Period": 1 + "9th Grade History: The Effects of Gutenberg’s Printing Press, Steam Power, and the Spinning Jenny on the American Revolution Era": 1 + "9th Grade History: The Interplay between Gutenberg’s Printing Press, Steam Power, and the Musket during the American Revolution Era": 1 + "9th Grade History: Gutenberg’s Printing Press, Steam Power, and the Impact of the Compass during the American Revolution Era": 1 + "9th Grade History: The Role of Gutenberg’s Printing Press, Steam Power, and the Wheelbarrow in the American Revolution Era": 1 + "9th Grade History: Understanding the Influence of Gutenberg’s Printing Press, Steam Power, and the Telescope during the American Revolution Era": 1 + "9th Grade History: The Role of Gutenberg’s Printing Press, Steam Power, and the Concept of Mass Production during the American Revolution Era": 1 + "First Grade Language Arts: Enhancing Basic Vocabulary using Rosetta Stone Interactive Software": 1 + "First Grade Language Arts: Building Basic Vocabulary using Interactive Duolingo Software": 1 + "First Grade Language Arts: Developing Basic Vocabulary using Interactive Quizlet Software": 1 + "First Grade Language Arts: Boosting Basic Vocabulary using Interactive Memrise Software": 1 + "First Grade Language Arts: Strengthening Basic Vocabulary using ABCmouse Interactive Software": 1 + "First Grade Language Arts: Expanding Basic Vocabulary using Interactive Kahoot Software": 1 + "First Grade Language Arts: Cultivating Basic Vocabulary using Interactive Babbel Software": 1 + "First Grade Language Arts: Nurturing Basic Vocabulary using Interactive Lingvist Software": 1 + "First Grade Language Arts: Improving Basic Vocabulary using Interactive Busuu Software": 1 + "First Grade Language Arts: Advancing Basic Vocabulary using Interactive Anki Software": 1 + "First Grade Language Arts: Refining Basic Vocabulary using Interactive FluentU Software": 1 + "10th Grade Mathematics: Geometry - The Role of Protractors in Understanding Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Applying Pythagorean Theorem to Understand Congruence and Similarity": 1 + "10th Grade Mathematics: Geometry - Using CAD Software to Study Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Understanding Congruence and Similarity in Shapes and Patterns through the Euclidean Plane": 1 + "10th Grade Mathematics: Geometry - The Influence of Scale Factors on Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Exploring Congruence and Similarity in Shapes and Patterns using Geometric Transformations": 1 + "10th Grade Mathematics: Geometry - The Impact of Angle Measures on Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Using Geoboards to Explore Congruence and Similarity in Shapes and Patterns": 1 + "10th Grade Mathematics: Geometry - Understanding Congruence and Similarity in Shapes and Patterns through Coordinate Geometry": 1 + "10th Grade Mathematics: Geometry - Applying the Principles of Ratios to Understand Congruence and Similarity in Shapes and Patterns": 1 + "Eighth Grade Music: Understanding Musical Notations through Piano": 1 + "Eighth Grade Music: Exploring Musical Notations via Guitar Tabs": 1 + "Eighth Grade Music: Deciphering Musical Notations with Digital Software": 1 + "Eighth Grade Music: Understanding Musical Notations using Metronomes": 1 + "Eighth Grade Music: Mastering Musical Notations through Sight Reading Techniques": 1 + "Eighth Grade Music: Interpreting Musical Notations with the aid of Midi Keyboards": 1 + "Eighth Grade Music: Learning Musical Notations through Music Composition Software": 1 + "Eighth Grade Music: Grasping Musical Notations with the help of Virtual Drum Sets": 1 + "Eighth Grade Music: Discovering Musical Notations using Music Theory Books": 1 + "Eighth Grade Music: Studying Musical Notations through Voice Pitch Recognition Tools": 1 + "Fifth Grade Social Studies: The American Revolution; The Role of Cannons and Gunpowder": 1 + "Fifth Grade Social Studies: The American Revolution; Cannons and the Introduction of Grape Shots": 1 + "Fifth Grade Social Studies: The American Revolution; The Tactical Use of Cannons and Mortars": 1 + "Fifth Grade Social Studies: The American Revolution; The Impact of Cannons and Siege Warfare": 1 + "Fifth Grade Social Studies: The American Revolution; The Evolution of Cannons and Artillery Tactics": 1 + "Fifth Grade Social Studies: The American Revolution; Cannons and the Development of Firing Techniques": 1 + "Fifth Grade Social Studies: The American Revolution; The Science of Cannons and Ballistics": 1 + "Fifth Grade Social Studies: The American Revolution; The Influence of Cannons on Battlefield Strategies": 1 + "Fifth Grade Social Studies: The American Revolution; Understanding the Use of Cannons and Cannonballs": 1 + "Fifth Grade Social Studies: The American Revolution; Cannons and the Emergence of Artillery Units.": 1 + "3rd Grade English: Learning Basic Grammar through Scrabble Board Games": 1 + "3rd Grade English: Improving Grammar Skills with Interactive Kahoot! Quizzes": 1 + "3rd Grade English: Mastering Basic Grammar through Minecraft Education Edition": 1 + "3rd Grade English: Grammar Enhancement with Google Classroom Activities": 1 + "3rd Grade English: Learning Basic Grammar with ABCMouse Educational App Games": 1 + "3rd Grade English: Exploring Grammar through Starfall’s Interactive Games": 1 + "3rd Grade English: Learning Grammar Basics with Duolingo Language Learning App": 1 + "3rd Grade English: Grammar Skill Building through Prodigy Learning Games": 1 + "3rd Grade English: Enhancing Grammar with Smart Board Technology Games": 1 + "3rd Grade English: Basic Grammar Mastery with Rosetta Stone Language Learning Tools": 1 + "4th Grade Mathematics: Mastering Multiplication with the Abacus": 1 + "4th Grade Mathematics: Enhancing Multiplication Skills with Times Tables": 1 + "4th Grade Mathematics: Mastering Multiplication Using Digital Calculators": 1 + "4th Grade Math: Multiplication Mastery through Math Games": 1 + "4th Grade Mathematics: Mastering Multiplication with Online Interactive Tools": 1 + "4th Grade Mathematics: Enhancing Multiplication Skills with Flashcards": 1 + "4th Grade Mathematics: Mastering Multiplication through Virtual Reality Tech": 1 + "4th Grade Mathematics: Mastering Multiplication with Math Puzzles": 1 + "4th Grade Mathematics: Mastering Multiplication Using Mobile Apps": 1 + "4th Grade Mathematics: Mastering Multiplication with the Grid Method.": 1 + "9th Grade Social Studies: Unraveling Asian Civilizations using Google Earth and VR Technology": 1 + "Exploring African Tribes through Google Earth and Drone Footage: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: A Deep Dive into European History using Google Earth and Interactive Timelines": 1 + "Navigating the Ancient Civilizations of South America: A 9th Grade Google Earth and GIS Mapping Study": 1 + "9th Grade Social Studies: Analyzing Middle Eastern Cultures through Google Earth and Satellite Imagery": 1 + "Tracing the Evolution of North American Native Tribes using Google Earth and 3D Modeling: A 9th Grade Social Studies Course": 1 + "9th Grade Social Studies: Discovering Oceanic Cultures through Google Earth and Underwater Sonar Technologies": 1 + "Exploring World Cultures through Google Earth and Augmented Reality: A Detailed Study for 9th Graders": 1 + "9th Grade Social Studies: Unveiling the Mysteries of Antarctic Tribes with Google Earth and Thermal Imaging": 1 + "A Journey through Ancient Civilizations: A 9th Grade Social Studies Course using Google Earth and Lidar Technology.": 1 + "6th Grade Music: Exploring Symphony History and Beethoven’s Innovations with the Piano Forte": 1 + "Symphony History: Understanding Mozart’s Influence on Piano Forte in 6th Grade Classical Music": 1 + "6th Grade Music: The Evolution of Symphony and the Role of Harpsichord to Piano Forte Transition": 1 + "6th Grade Music: The Symphony History and the Impact of Piano Forte on Haydn’s Compositions": 1 + "An In-depth Study of Symphony History and the Piano Forte’s Role in 6th Grade Baroque Music": 1 + "6th Grade Music: Symphony History and the Role of Piano Forte in the Age of Enlightenment": 1 + "6th Grade Music: Exploring Symphony History and the Piano Forte’s Influence in Romantic Period Music": 1 + "Symphony History: An Examination of Bach’s Use of Piano Forte in 6th Grade Classical Music": 1 + "6th Grade Music: Symphony History and the Piano Forte’s Role in the Classical Sonata Form": 1 + "6th Grade Music: Understanding Symphony History and the Piano Forte’s Impact on Orchestral Texture.": 1 + "2nd Grade Music: Mastering the Rhythm of Notes and Melodies with a Tambourine using GarageBand Interactive Software and iPad Pro": 1 + "2nd Grade Music: Enhancement of Melody Comprehension with Tambourine and GarageBand Software on Mac": 1 + "2nd Grade Music: Exploring Rhythmic Patterns with Tambourine through GarageBand Software and Interactive Whiteboard": 1 + "2nd Grade Music: Utilizing GarageBand Software and a Tambourine to Decode Musical Notation": 1 + "2nd Grade Music: Introduction to Tambourine Techniques and Melody Creation in GarageBand on Macbook Air": 1 + "2nd Grade Music: Engaging with Tambourine Rhythms and Melodies using GarageBand Software on Apple TV": 1 + "2nd Grade Music: Exploring Beats and Tones with Tambourine and GarageBand Software on iPad Air": 1 + "2nd Grade Music: Enhancing Musical Literacy with Tambourine and GarageBand Software on iMac": 1 + "2nd Grade Music: Discovering Tambourine Rhythms and Melodies using GarageBand Software and MIDI Controller": 1 + "2nd Grade Music: Experimenting with Tambourine Rhythms on GarageBand Software using MacBook Pro.": 1 + "5th Grade History: Exploring Ancient Egypt through Cartography and Satellite Imagery": 1 + "5th Grade History: Revealing Ancient Egypt through Cartography with the Use of GIS Technology": 1 + "5th Grade History: Understanding Ancient Egypt through Cartography and 3D Modeling": 1 + "5th Grade History: Deciphering Ancient Egypt through Cartography and Lidar Technology": 1 + "5th Grade History: Investigating Ancient Egypt through Cartography and Drone Surveys": 1 + "5th Grade History: Discovering Ancient Egypt through Cartography and Augmented Reality": 1 + "5th Grade History: Analyzing Ancient Egypt through Cartography and Digital Mapping": 1 + "5th Grade History: Unraveling Ancient Egypt through Cartography and Geospatial Analysis": 1 + "5th Grade History: Navigating Ancient Egypt through Cartography and Photogrammetry": 1 + "5th Grade History: Unveiling Ancient Egypt through Cartography and Virtual Reality Exploration": 1 + "5th Grade Art: Exploring Watercolors using Wet-on-Wet Technique with Synthetic Brushes": 1 + "5th Grade Art: Creating Landscapes using Wet-on-Wet Watercolor Technique and Palette Knives": 1 + "5th Grade Art: Mastering Wet-on-Wet Technique in Watercolors with Mop Brushes": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique Exploration with Masking Fluid": 1 + "5th Grade Art: Introduction to Wet-on-Wet Watercolor Technique using Cotton Paper": 1 + "5th Grade Art: Texture Effects in Wet-on-Wet Watercolor Technique using Salt": 1 + "5th Grade Art: Wet-on-Wet Technique in Watercolors: Experimenting with Tissue Paper": 1 + "5th Grade Art: Wet-on-Wet Technique Exploration in Watercolors using Sponges ": 1 + "5th Grade Art: Exploring Watercolors with Wet-on-Wet Technique and Mixing Palette": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique with a Focus on Color Theory.": 1 + "3rd Grade English: Journey through Storytelling with Puppetry": 1 + "3rd Grade English: Exploring Narratives via Digital Storytelling": 1 + "3rd Grade English: Interactive Journey through Storytelling using iPads": 1 + "3rd Grade English: Journey through Storytelling with Flipbook Animation": 1 + "3rd Grade English: Experiencing Tales with Virtual Reality Storytelling ": 1 + "3rd Grade English: Storytelling Journey with Multimedia Presentation Tools": 1 + "3rd Grade English: Journey through Storytelling using Storyboard Software": 1 + "3rd Grade English: Interactive Book Creation in Storytelling Journey": 1 + "3rd Grade English: Journey through Storytelling using Voice Recording Technology ": 1 + "3rd Grade English: Journey through Storytelling with Comic Strip Creation.": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly, Pages for Formatting, and Google Docs for Collaboration": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing Skills on iPads using Grammarly, Pages, and Voice Typing Tool": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly, Pages, and iMovie for Digital Storytelling": 1 + "4th Grade Language Arts: Improving Paragraph Writing on iPads using Grammarly, Pages, and Kahoot for Interactive Learning": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly, Pages, and Book Creator for Story Writing": 1 + "4th Grade Language Arts: Developing Paragraph Writing Skills on iPads using Grammarly, Pages, and Edmodo for Classroom Management": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly, Pages, and Popplet for Mind Mapping": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing on iPads using Grammarly, Pages, and Notability for Note Taking": 1 + "4th Grade Language Arts: Mastering Paragraph Writing on iPads using Grammarly, Pages, and Skitch for Visual Learning": 1 + "4th Grade Language Arts: Improving Paragraph Writing on iPads using Grammarly, Pages, and Quizlet for Vocabulary Building": 1 + "5th Grade Science: Investigating Acoustic Resonance in Flutes using Sound Sensors and Fourier Analysis": 1 + "5th Grade Science: Exploring Sound Waves in Clarinets with Sound Sensors and Oscilloscope": 1 + "5th Grade Science: Decoding Acoustic Resonance in Saxophones using Sound Sensors and Frequency Spectrum": 1 + "5th Grade Science: Analysing Acoustic Resonance in Oboes with Sound Sensors and Wave Interference": 1 + "5th Grade Science: Unveiling Acoustic Resonance in Bassoons using Sound Sensors and Resonance Theory": 1 + "5th Grade Science: Delving into Acoustic Resonance in Piccolos with Sound Sensors and Sound Wave Propagation": 1 + "5th Grade Science: Investigating Acoustic Resonance in Bagpipes using Sound Sensors and Waveforms": 1 + "5th Grade Science: Unraveling Acoustic Resonance in Recorders with Sound Sensors and Harmonic Analysis": 1 + "5th Grade Science: Deciphering Acoustic Resonance in English Horns using Sound Sensors and Amplitude Modulation": 1 + "5th Grade Science: Probing Acoustic Resonance in Pan Flutes using Sound Sensors and Sound Intensity Level.": 1 + "8th Grade Social Studies: Exploring World Cultures with Google Earth Technology": 1 + "8th Grade Social Studies: Comprehending Global Civilizations through Wikipedia Research": 1 + "8th Grade Social Studies: Unraveling World Cultures with Google Scholar Research Skills": 1 + "8th Grade Social Studies: Understanding World Cultures through YouTube Documentaries": 1 + "8th Grade Social Studies: Grasping Global Societies with VR (Virtual Reality) Tours": 1 + "8th Grade Social Studies: Investigating World Cultures with Digital Archival Research": 1 + "8th Grade Social Studies: Deciphering World Cultures with Online Database Research": 1 + "8th Grade Social Studies: Discovering World Cultures with Podcast Listening Skills": 1 + "8th Grade Social Studies: Studying World Cultures through Interactive Web Applications": 1 + "8th Grade Social Studies: Learning World Cultures with Infographic Analysis Skills": 1 + "2nd Grade History: American Pioneers and Their Use of the Conestoga Wagon": 1 + "2nd Grade History: The Role of Fire in American Settlers’ Lives": 1 + "2nd Grade History: American Pioneers and the Introduction of Hand Operated Grain Mills": 1 + "2nd Grade History: American Settlers and the Development of Log Cabins": 1 + "2nd Grade History: American Pioneers and the Use of Flintlock Rifles": 1 + "2nd Grade History: Ploughing Tools of American Settlers": 1 + "2nd Grade History: American Pioneers and the Technology of Oxen Yokes": 1 + "2nd Grade History: American Settlers and the Concept of Claiming Land": 1 + "2nd Grade History: American Pioneers and Their Use of Spinning Wheels": 1 + "2nd Grade History: The Impact of the Loom in American Settlers’ Lives": 1 + "8th Grade History: The Founding of America - The Effect of the Telegraph on the Pony Express": 1 + "8th Grade History: The Founding of America - The Introduction of Steam Engines and the Telegraph": 1 + "8th Grade History: The Founding of America - The Influence of the Telegraph and Cotton Gin on Economy": 1 + "8th Grade History: The Founding of America - The Impact of the Telegraph on the Transcontinental Railroad": 1 + "8th Grade History: The Founding of America - The Telegraph and the Rise of Newspapers": 1 + "8th Grade History: The Founding of America - The Effect of the Telegraph and Morse Code": 1 + "8th Grade History: The Founding of America - The Telegraph and its Impact on the Civil War": 1 + "8th Grade History: The Founding of America - How the Telegraph Influenced the Gold Rush": 1 + "8th Grade History: The Founding of America - The Telegraph and the Expansion of the Postal Service": 1 + "8th Grade History: The Founding of America - The Telegraph and The Invention of the Typewriter": 1 + "10th Grade Social Studies: Detailed Analysis of World Civilizations and Democracy’s Evolution with Emphasis on the Printing Press and the Role of Papermaking": 1 + "World Civilizations in 10th Grade Social Studies: An Intensive Study of Democracy and the Impact of the Printing Press and the Compass": 1 + "The Evolution of Democracy: 10th Grade Social Studies, Focusing on the Printing Press and the Influence of Gunpowder": 1 + "10th Grade Social Studies: World Civilizations, Democratic Evolution, and the Impact of the Printing Press and Papyrus": 1 + "An In-depth Study of Democracy and World Civilizations in 10th Grade Social Studies: The Printing Press and the Importance of the Sundial": 1 + "Role of the Printing Press and the Abacus in the Evolution of Democracy: A 10th Grade Social Studies Course": 1 + "World Civilizations in Focus: 10th Grade Social Studies with Emphasis on the Printing Press and the Astrolabe": 1 + "10th Grade Social Studies: A Deep Dive into Democracy, World Civilizations, and the Printing Press, with Additional Focus on the Wheel": 1 + "An Extensive Study of the Printing Press and the Sextant in the Evolution of Democracy: A 10th Grade Social Studies Course": 1 + "Democracy’s Evolution and World Civilizations: A 10th Grade Social Studies Course Highlighting the Printing Press and the Telescope.": 1 + "Ancient Civilizations: The Role of Archimedes’ Screw in Roman Aqueduct System": 1 + "Ancient Civilizations: The Impact of Hydraulic Cement on Roman Aqueducts": 1 + "Ancient Civilizations: The Use of Gravity in Roman Aqueduct Engineering": 1 + "Ancient Civilizations: Understanding the Qanat System in Roman Aqueduct Practices": 1 + "Ancient Civilizations: The Influence of Roman Aqueducts on Modern Irrigation Techniques": 1 + "Ancient Civilizations: An Examination of the Roman Vitruvian Water Wheel in Aqueducts": 1 + "Ancient Civilizations: The Use of Opus Caementicium in Roman Aqueducts": 1 + "Ancient Civilizations: Exploring the Use of Siphons in Roman Aqueducts": 1 + "Ancient Civilizations: Roman Aqueducts and the Role of the Drop Shaft": 1 + "Ancient Civilizations: The Impact of Roman Aqueducts on Environmental Practices: A Study on the Tunnelling Shield Technology.": 1 + "A 5th Grade Science Course: Advanced Exploration of Weather Systems using Barometers, Weather Balloons, Disdrometers, and Anemometers": 1 + "Meteorological Studies in 5th Grade: Comprehensive Analysis of Weather Systems using Barometers, Weather Balloons, Disdrometers, and Radiosondes": 1 + "Weather Systems Examination for 5th Graders: Detailed Study with Barometers, Weather Balloons, Disdrometers, and Hygrometers": 1 + "Decoding Weather: A 5th Grade Science Course Focusing on Barometers, Weather Balloons, Disdrometers, and Thermometers": 1 + "Weather Wonders: A 5th Grade Science Course Exploring Weather Systems with Barometers, Weather Balloons, Disdrometers, and Pyranometers": 1 + "5th Grade Meteorological Mastery: In-depth Study of Weather Systems using Barometers, Weather Balloons, Disdrometers, and Wind Vanes": 1 + "Atmosphere and Weather: A 5th Grade Science Course using Barometers, Weather Balloons, Disdrometers, and Ceilometers": 1 + "Weather Science for 5th Graders: Comprehensive Study with Barometers, Weather Balloons, Disdrometers, and Rain Gauges": 1 + "Discovering Weather: A 5th Grade Science Course Delving into Systems with Barometers, Weather Balloons, Disdrometers, and Weather Satellites": 1 + "Unraveling Weather Mysteries: A 5th Grade Science Course with Barometers, Weather Balloons, Disdrometers, and Doppler Radar.": 1 + "6th Grade Physical Education: Basketball Techniques and Teamwork": 1 + "6th Grade Physical Education: Soccer Strategies and Fitness": 1 + "6th Grade Physical Education: Volleyball Skills and Team Building": 1 + "6th Grade Physical Education: Fitness through Fitbit Technology and Teamwork": 1 + "6th Grade Physical Education: The Science of Fitness and Teamwork": 1 + "6th Grade Physical Education: Fitness, Teamwork, and the Role of Nutrition": 1 + "6th Grade Physical Education: Fitness through Gymnastics and Teamwork ": 1 + "6th Grade Physical Education: Fitness and Teamwork with Digital Fitness Apps": 1 + "6th Grade Physical Education: Fitness and Teamwork through Dance ": 1 + "6th Grade Physical Education: Fitness and Teamwork in Track and Field Events.": 1 + "4th Grade Mathematics: Introduction to Basic Algebra with Abacus": 1 + "4th Grade Mathematics: Basic Algebra & Problem Solving using Geometric Shapes": 1 + "4th Grade Mathematics: Exploring Algebra through Number Line": 1 + "4th Grade Mathematics: Basic Algebra and Problem Solving using Digital Tools": 1 + "4th Grade Mathematics: Fundamental Algebra and Fractional Concepts": 1 + "4th Grade Mathematics: Basic Algebra and Problem Solving with Graphing Calculators": 1 + "4th Grade Mathematics: Understanding Algebra through Decimals": 1 + "4th Grade Mathematics: Basic Algebra & Problem Solving using Kinesthetic Learning": 1 + "4th Grade Mathematics: Introduction to Algebra using Virtual Manipulatives": 1 + "4th Grade Mathematics: Basic Algebra and Problem Solving with Interactive Whiteboard Solutions": 1 + "5th Grade Knowledge: Understanding Climate Change Through Satellite Imagery": 1 + "5th Grade Science: Addressing Deforestation with Drone Technology": 1 + "5th Grade Education: Combating Pollution with Renewable Energy Solutions": 1 + "5th Grade Learning: Exploring Water Scarcity Through Desalination Concepts": 1 + "5th Grade Study: Mitigating Overfishing with Marine Reserve Implementation ": 1 + "5th Grade Course: Tackling Biodiversity Loss with Conservation Efforts": 1 + "5th Grade Curriculum: Resolving Air Quality Issues with Clean Energy Technologies ": 1 + "5th Grade Lesson: Confronting Soil Erosion with Sustainable Farming Practices ": 1 + "5th Grade Program: Countering Global Warming with Carbon Sequestration Techniques ": 1 + "5th Grade Class: Navigating Resource Depletion with Recycling Programs ": 1 + "5th Grade Module: Diminishing Plastic Waste with Biodegradable Materials": 1 + "6th Grade Music: Mastering Rhythms and Beats with Metronome": 1 + "6th Grade Music: Exploring Rhythms and Beats through Digital Audio Workstations": 1 + "6th Grade Music: Understanding Rhythms and Beats with Drums": 1 + "6th Grade Music: Grasping Rhythms and Beats with Percussion Instruments": 1 + "6th Grade Music: Studying Rhythms and Beats using Music Notation Software": 1 + "6th Grade Music: Discovering Rhythms and Beats through Beatboxing": 1 + "6th Grade Music: Comprehending Rhythms and Beats with Guitar": 1 + "6th Grade Music: Navigating Rhythms and Beats through Piano": 1 + "6th Grade Music: Learning Rhythms and Beats using Loop Stations": 1 + "6th Grade Music: Decoding Rhythms and Beats using Music Sequencers": 1 + "Third Grade Social Studies: An Interactive Virtual Reality Exploration of Local Community and Government through Historical Monuments": 1 + "Third Grade Social Studies: Utilizing Augmented Reality to Investigate Local Community, Government, and Historical Monuments": 1 + "Third Grade Social Studies: Applying GIS Mapping to Study Local Community, Government and Historical Monuments": 1 + "Third Grade Social Studies: A Close Look at Historical Monuments using 3D Modelling Techniques": 1 + "Third Grade Social Studies: Local Community and Government - Analyzing Historical Monuments with Drone Technology": 1 + "Third Grade Social Studies: Time Travel to Historical Monuments - A Holographic Approach to Local Community and Government": 1 + "Third Grade Social Studies: Local Community and Government - A Deep Dive into Historical Monuments using Scuba Diving Technology": 1 + "Third Grade Social Studies: Excavating Local Community and Government - A Look at Historical Monuments through Archaeology Tools ": 1 + "Third Grade Social Studies: Local Community and Government - A Close Look at Historical Monuments using Photogrammetry": 1 + "Third Grade Social Studies: Local Community and Government - Exploring Historical Monuments with Virtual Field Trips.": 1 + "3rd Grade English: Using Maya 3D Animation and Adobe Premiere for Storytelling from Various Cultures": 1 + "3rd Grade English: Incorporating Sound Design in Maya 3D Animation for Cultural Storytelling": 1 + "3rd Grade English: Storyboarding Techniques in Maya 3D Animation for Storytelling From Diverse Cultures": 1 + "3rd Grade English: Using Maya 3D Animation and Python Scripting for Diverse Cultural Storytelling": 1 + "3rd Grade English: Texture Mapping in Maya 3D Animation for Storytelling Across Cultures": 1 + "3rd Grade English: Using Maya 3D Animation and Virtual Reality for Immersive Cultural Storytelling": 1 + "3rd Grade English: Character Rigging in Maya 3D Animation for Storytelling from Various Cultures": 1 + "3rd Grade English: Using Maya 3D Animation and Lighting Techniques for Cultural Storytelling": 1 + "3rd Grade English: Using Maya 3D Animation and After Effects for Visual Storytelling of Different Cultures": 1 + "3rd Grade English: Employing Dynamics & Effects in Maya 3D Animation for Storytelling from Diverse Cultures": 1 + "7th Grade Art: Understanding Color Theory Through Watercolor Paints": 1 + "7th Grade Art: Exploring Color Theory Using Adobe Photoshop": 1 + "7th Grade Art: Understanding Color Theory with Acrylics": 1 + "7th Grade Art: Mastering Color Theory Through Oil Pastels": 1 + "7th Grade Art: Grasping Color Theory Using Prismacolor Pencils": 1 + "7th Grade Art: Understanding Color Theory Through Digital Art": 1 + "7th Grade Art: Exploring Color Theory Using Procreate": 1 + "7th Grade Art: Understanding Color Theory Through Charcoal Drawing": 1 + "7th Grade Art: Mastering Color Theory with Gouache Paint": 1 + "7th Grade Art: Understanding Color Theory Using Airbrush Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Copic Marker Pens and Layering Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens and Brush Stroke Layering Techniques": 1 + "4th Grade Art: Enhancing Color Theory with Marker Pens and Layering Techniques using Acrylic Medium": 1 + "4th Grade Art: Exploring Color Wheel Concepts with Marker Pens and Layering Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Watercolor Marker Pens and Layering Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens, Layering Techniques, and Digital Art Platforms": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens and Layering Techniques using Collage Method": 1 + "4th Grade Art: Understanding RGB and CMYK in Color Theory with Marker Pens and Layering Techniques": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens and Layering Techniques in Mixed Media Art": 1 + "4th Grade Art: Advancing in Color Theory with Marker Pens and Layering Techniques using Stencils.": 1 + "6th Grade Mathematics: Using Graphing Calculators in the Introduction to Algebraic Expressions: A Deep Dive into Linear Equations": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions through Python Programming: A Deep Dive into Linear Equations": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Detailed Study of Slope-Intercept Form in Linear Equations": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: Understanding Linear Equations through Matrix Operations": 1 + "6th Grade Mathematics: Applying Wolfram Alpha in Introduction to Algebraic Expressions: A Deep Dive into Linear Equations": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Deep Dive into Solving Linear Equations using Cramer’s Rule": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Deep Dive into Linear Equations using Geometric Representations": 1 + "6th Grade Mathematics: Utilizing Desmos in the Introduction to Algebraic Expressions: A Deep Dive into Linear Equations": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Deep Dive into Linear Equations with a Focus on Quadratic Functions": 1 + "6th Grade Mathematics: Introduction to Algebraic Expressions: A Deep Dive into Linear Equations using Interactive Whiteboards.": 1 + "5th Grade History: The Revolutionary War Era - A Study of Muskets ": 1 + "5th Grade History: The Revolutionary War Era - Understanding the Role of Cannons ": 1 + "5th Grade History: The Revolutionary War Era - Exploring the Impact of the Printing Press ": 1 + "5th Grade History: The Revolutionary War Era - Focusing on Espionage Techniques": 1 + "5th Grade History: The Revolutionary War Era - The Importance of Naval Technology ": 1 + "5th Grade History: The Revolutionary War Era - The Use of Horses in Warfare ": 1 + "5th Grade History: The Revolutionary War Era - Deciphering Revolutionary War Codes ": 1 + "5th Grade History: The Revolutionary War Era - Examining Medical Tools and Techniques": 1 + "5th Grade History: The Revolutionary War Era - The Influence of Fortification Design ": 1 + "5th Grade History: The Revolutionary War Era - The Evolution of Military Uniforms": 1 + "3rd Grade Mathematics: Practical Application of Multiplication using Abacus and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Understanding Division through Microsoft Math Solver and Long Division Method": 1 + "3rd Grade Mathematics: Using Manipulatives to Enhance Multiplication Skills alongside Microsoft Math Solver": 1 + "3rd Grade Mathematics: Exploring Division with Fraction Bars and Microsoft Math Solver": 1 + "3rd Grade Mathematics: The Role of Arrays in Multiplication and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Division Made Easy with Number Lines and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Comprehending Multiplication through Grouping Method and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Division Concepts with Base-10 Blocks and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Multiplication Mastery through Grid Method and Microsoft Math Solver": 1 + "3rd Grade Mathematics: Division Strategies using Place Value Charts and Microsoft Math Solver": 1 + "Exploring Geometry and Counting: A 1st Grade Mathematics Course with Abacus and Tangram Puzzles": 1 + "Discovering Shapes and Numbers: An Abacus Driven 1st Grade Course with Fraction Concepts": 1 + "Learning Shapes and Numbers: A 1st Grade Mathematics Course with Abacus and Digital Flashcards": 1 + "Discovering Shapes and Numbers: A 1st Grade Mathematics Course with Abacus and Interactive Whiteboard Exercises": 1 + "Uncovering Shapes and Numbers: A 1st Grade Mathematics Course with Abacus and Montessori Materials": 1 + "Exploring Shapes and Number Patterns: A 1st Grade Mathematics Course with Abacus and Pattern Blocks": 1 + "Understanding Shapes and Numbers: A 1st Grade Mathematics Course with Abacus Use and Multiplication Concepts": 1 + "Exploring Shapes and Numbers: A 1st Grade Mathematics Course with Abacus and iPad Apps": 1 + "Delving into Shapes and Numbers: A 1st Grade Mathematics Course Using an Abacus and Lego Blocks": 1 + "Discovering Shapes and Numbers: A 1st Grade Mathematics Course with Abacus and 3D Printers.": 1 + "2nd Grade Health: Utilizing Interactive Food Pyramid in Nutrition Education ": 1 + "2nd Grade Health: Implementing Dietary Guidelines through Mobile Apps in Nutrition Education ": 1 + "2nd Grade Health: Employing Virtual Reality for Dietary Guidelines in Nutrition Education": 1 + "2nd Grade Health: Using Smart Kitchen Technology in Implementing Dietary Guidelines ": 1 + "2nd Grade Health: Integrating Dietary Guidelines through Gamified Learning in Nutrition Education ": 1 + "2nd Grade Health: Using Augmented Reality to Teach Dietary Guidelines in Nutrition Education ": 1 + "2nd Grade Health: Implementing Dietary Guidelines with Fitness Tracking in Nutrition Education ": 1 + "2nd Grade Health: Utilizing IoT-Based Kitchen Appliances in Dietary Guidelines Education ": 1 + "2nd Grade Health: Using 3D Printing Technology for Dietary Guidelines Demonstration ": 1 + "2nd Grade Health: Implementing Dietary Guidelines through Social Media Platforms in Nutrition Education.": 1 + "2nd Grade English: Mastering Preposition Placement via Interactive Digital Flashcards using Kahoot": 1 + "2nd Grade English: Perfecting Preposition Placement in Sentence Structure with Quizlet Flashcards ": 1 + "2nd Grade English: Enhancing Preposition Placement using Digital Flashcards on Google Classroom ": 1 + "2nd Grade English: Conquering Preposition Placement using Augmented Reality (AR) Flashcards ": 1 + "2nd Grade English: Understanding Preposition Placement through Digital Flashcards on Seesaw": 1 + "2nd Grade English: Excelling in Preposition Placement using Interactive Flashcards on Nearpod ": 1 + "2nd Grade English: Refining Preposition Placement Skills through Digital Flashcards on Canvas ": 1 + "2nd Grade English: Improving Preposition Placement using Adaptive Flashcards on Edmodo ": 1 + "2nd Grade English: Achieving Preposition Placement Proficiency with Flashcards on Microsoft Teams ": 1 + "2nd Grade English: Advancing Preposition Placement in Sentence Structure using 3D Flashcards.": 1 + "2nd Grade Introduction to Algebra: Exploring Functions with Graphing Tools": 1 + "2nd Grade Introduction to Algebra: Introduction to Linear Functions": 1 + "2nd Grade Introduction to Algebra: Understanding Functions Using Interactive Software": 1 + "2nd Grade Introduction to Algebra: Introduction to Functions with Calculators": 1 + "2nd Grade Introduction to Algebra: Functions Exploration with Virtual Manipulatives": 1 + "2nd Grade Introduction to Algebra: Discovering Functions with Digital Whiteboards": 1 + "2nd Grade Introduction to Algebra: Investigating Functions using Math Apps": 1 + "2nd Grade Introduction to Algebra: Introduction to Quadratic Functions": 1 + "2nd Grade Introduction to Algebra: Introduction to Functions with 3D Models": 1 + "2nd Grade Introduction to Algebra: Introduction to Functions using Geometric Shapes": 1 + "6th Grade Language Arts: Analyzing Foreshadowing in Literature Using Digital Annotation Tools": 1 + "6th Grade Language Arts: Detecting Foreshadowing in Short Stories with Guided Reading Worksheets": 1 + "6th Grade Language Arts: Understanding Foreshadowing via Interactive E-Books": 1 + "6th Grade Language Arts: Utilizing Graphic Organizers to Identify Foreshadowing Elements": 1 + "6th Grade Language Arts: Exploring Foreshadowing in Classic Literature via Audiobook Analysis": 1 + "6th Grade Language Arts: Deciphering Foreshadowing through Storyboarding Techniques": 1 + "6th Grade Language Arts: Discovering Foreshadowing in Poetry Using Metaphor Analysis": 1 + "6th Grade Language Arts: Unveiling Foreshadowing in Drama with Script Analysis Software": 1 + "6th Grade Language Arts: Investigating Foreshadowing in Novels through Character Mapping": 1 + "6th Grade Language Arts: Identifying Foreshadowing in Fiction Using Plot Diagrams.": 1 + "2nd Grade History: American Pioneers and Their Use of Spinning Wheels and Looms": 1 + "2nd Grade History: American Pioneers, Spinning Wheels and the Introduction of the Cotton Gin": 1 + "2nd Grade History: American Pioneers’ Use of Spinning Wheels and Hand Spindles": 1 + "2nd Grade History: American Pioneers, Spinning Wheels and the Evolution of Wool Carding": 1 + "2nd Grade History: The Impact of Spinning Wheels and the Printing Press on American Pioneers": 1 + "2nd Grade History: American Pioneers, Spinning Wheels and the Use of the Butter Churn": 1 + "2nd Grade History: Spinning Wheels, Distaffs and the American Pioneers": 1 + "2nd Grade History: American Pioneers, Spinning Wheels and the Advent of the Spinning Jenny": 1 + "2nd Grade History: American Pioneers, Spinning Wheels and the Role of the Quill Wheel": 1 + "2nd Grade History: Spinning Wheels, American Pioneers and the Introduction of the Drop Spindle": 1 + "1st Grade Art: Exploring Squares and Circles with Crayola Crayons and Monoprint Techniques": 1 + "1st Grade Art: Understanding Red and Blue through Wax Crayon Art and Relief Printmaking": 1 + "1st Grade Art: Discovering Triangles and Greens using Oil Pastels and Woodcut Techniques": 1 + "1st Grade Art: Learning about Ovals and Yellows with Watercolor Crayons and Linocut Printmaking": 1 + "1st Grade Art: Grasping Rectangles and Purples through Charcoal and Silk-Screen Techniques": 1 + "1st Grade Art: Studying Hexagons and Oranges with Soft Pastels and Intaglio Printmaking": 1 + "1st Grade Art: Learning about Pentagons and Browns using Chalk Pastels and Stencil Techniques": 1 + "1st Grade Art: Exploring Octagons and Blacks with Oil Crayons and Lithography Techniques": 1 + "1st Grade Art: Understanding Diamonds and Whites through Dry Crayon Art and Collagraph Printmaking": 1 + "1st Grade Art: Discovering Hearts and Pinks using Jumbo Crayons and Block Printing Techniques": 1 + "1st Grade Science: Exploring Mars through Planetarium Visits Using Holographic Displays and Augmented Reality Tools": 1 + "1st Grade Science: A Journey to Jupiter: Understanding Gas Giants via Planetarium Visits and Holographic Displays": 1 + "1st Grade Science: Venus Unveiled: Using Planetarium Visits and Holographic Displays to Learn About Greenhouse Effect": 1 + "1st Grade Science: Learning About Lunar Phases through Planetarium Visits Using Holographic Displays and 3D Models": 1 + "1st Grade Science: Discovering Neptune’s Winds through Planetarium Visits Using Holographic Displays and Weather Simulation Software": 1 + "1st Grade Science: Unraveling the Mysteries of Saturn’s Rings with Holographic Displays at Planetarium Visits": 1 + "1st Grade Science: Mercury: Understanding Extreme Temperatures through Planetarium Visits Using Holographic Displays and Heat Sensors": 1 + "1st Grade Science: Exploring Uranus’ Tilt through Planetarium Visits Using Holographic Displays and Gyroscope Technology": 1 + "1st Grade Science: Journey Through the Asteroid Belt: Planetarium Visits Using Holographic Displays and Virtual Reality Simulations": 1 + "1st Grade Science: Pluto and Beyond: Discovering the Kuiper Belt through Planetarium Visits Using Holographic Displays and Infrared Telescopes": 1 + "2nd Grade Science: Learning Photosynthesis through Seed Dissection and Chromatography Using Microscopes": 1 + "2nd Grade Science: Discovering Plant Cell Structure with Seed Dissection and Chromatography Experiments": 1 + "2nd Grade Science: Exploring Germination through Seed Dissection and Chromatography with Magnifying Glasses": 1 + "2nd Grade Science: Understanding Plant Growth: A Study through Seed Dissection and Chromatography Using Light Microscopes": 1 + "2nd Grade Science: Discovering Plant Life Cycle through Seed Dissection and Chromatography with Digital Microscopes ": 1 + "2nd Grade Science: Investigating Plant Metabolism through Seed Dissection and Chromatography Techniques": 1 + "2nd Grade Science: Exploring DNA and Genetics in Plant Life through Seed Dissection and Chromatography": 1 + "2nd Grade Science: Learning about Plant Biochemistry through Seed Dissection and Chromatography Experiments": 1 + "2nd Grade Science: Understanding Cellular Respiration in Plants through Seed Dissection and Chromatography Using Microscopes ": 1 + "2nd Grade Science: A Close Look at Plant Cell Division through Seed Dissection and Chromatography Techniques.": 1 + "Third Grade Music: Exploring the Guitar with Fretlight Learning Technology": 1 + "Third Grade Music: Mastering the Guitar using ChordBuddy Device": 1 + "Third Grade Music: Discovering the Guitar - Learning with TuxGuitar Software": 1 + "Third Grade Music: Understanding the Guitar through Yousician App": 1 + "Third Grade Music: Engaging the Guitar with Guitar Pro Software": 1 + "Third Grade Music: Learning Guitar using Fender Play Digital Lessons": 1 + "Third Grade Music: Discovering the Guitar - Learning with Ultimate Guitar: Chords & Tabs": 1 + "Third Grade Music: Navigating the Guitar using JamPlay Video Lessons ": 1 + "Third Grade Music: Embracing the Guitar with Rocksmith Game": 1 + "Third Grade Music: Discovering the Guitar - Learning with GarageBand Application.": 1 + "Fourth Grade History: The Role of the Iron Plow in Medieval Agriculture": 1 + "Fourth Grade History: The Impact of Crop Rotation in Medieval Farming ": 1 + "Fourth Grade History: The Evolution of the Horse Collar in Medieval Agriculture": 1 + "Fourth Grade History: The Influence of the Waterwheel on Medieval Farming": 1 + "Fourth Grade History: The Adoption of the Three-field System in Medieval Agriculture": 1 + "Fourth Grade History: The Importance of the Windmill in Medieval Farming": 1 + "Fourth Grade History: The Significance of the Plow Harness in Medieval Agriculture": 1 + "Fourth Grade History: The Role of Irrigation Systems in Medieval Farming": 1 + "Fourth Grade History: The Impact of the Heavy Plow in Medieval Agriculture": 1 + "Fourth Grade History: The Revolution of the Treadmill Crane in Medieval Farming.": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques and iPads ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques and Storyboard Software ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques & Flipbook Animation ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques with Digital Drawing Tablets": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques and Voice Over ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Exploring Graphic Novel Techniques with Adobe Illustrator ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques and Online Collaboration Tools": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques with Interactive Whiteboards ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques and Cloud-Based Storytelling Software ": 1 + "1st Grade Language Arts: Adventures in Storytelling - Using Graphic Novel Techniques with Virtual Reality Technology": 1 + "6th Grade Mathematics: Introduction to Fractions using Fraction Circles and Digital Protractors": 1 + "6th Grade Mathematics: Exploring Fractions with Fraction Circles and Interactive Whiteboard Technology": 1 + "6th Grade Mathematics: Introduction to Fractions using Fraction Circles and Online Fraction Calculators": 1 + "6th Grade Mathematics: Understanding Fractions with Fraction Circles and Mathematical Software": 1 + "6th Grade Mathematics: Fraction Fundamentals with Fraction Circles and Virtual Manipulatives": 1 + "6th Grade Mathematics: Discovering Fractions using Fraction Circles and iPads": 1 + "6th Grade Mathematics: Fraction Basics using Fraction Circles and Geometric Shapes": 1 + "6th Grade Mathematics: Exploring Fractions with Fraction Circles and 3D Printing Technology": 1 + "6th Grade Mathematics: Introduction to Fractions using Fraction Circles and Mixed Numbers": 1 + "6th Grade Mathematics: Fraction Exploration with Fraction Circles and Google Classroom Tools": 1 + "Implementing Puppet Pals HD in Kindergarten Language Arts: A Study on iPad Integration ": 1 + "Integrating Book Creator on iPads for Kindergarten Language Arts: Puppetry and Tactile Learning Apps Exploration": 1 + "Exploring Interactive Storytelling with Toontastic in Kindergarten Language Arts: Study on iPad Integration": 1 + "Kindergarten Language Arts Enhancement: iPad Integration using PuppetMaster App": 1 + "Improving Kindergarten Language Arts with iPad: Puppetry Lessons using Shadow Puppet Edu App": 1 + "Language Arts in Kindergarten: iPad Application with Tiggly Doctor App for Tactile Learning ": 1 + "Harnessing iPads in Kindergarten Language Arts: Integration of Adobe Spark Video for Puppetry": 1 + "Integrating iPads in Kindergarten Language Arts: An Exploration of the Montessori Crosswords App": 1 + "Investigating iPads in Kindergarten Language Arts: The role of the Reading Eggs App": 1 + "iPads in Kindergarten: Using the Endless Alphabet App for Language Arts and Tactile Learning.": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique Exploration with Masking Fluid and Brushes": 1 + "5th Grade Art: Exploring Wet-on-Wet Watercolor Technique with Masking Fluid and Spray Bottles": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique and Masking Fluid Exploration using Palette Knives": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique Exploration with Masking Fluid and Texture Combs": 1 + "5th Grade Art: Using Sponges in Wet-on-Wet Watercolor Technique Exploration with Masking Fluid": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique Exploration with Masking Fluid: A Focus on the Graded Wash Technique": 1 + "5th Grade Art: Exploring Wet-on-Wet Watercolor Technique with Masking Fluid and Droppers": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique: Masking Fluid Exploration with the Use of Plastic Wrap": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique Exploration with Masking Fluid and Salt Texturing": 1 + "5th Grade Art: Wet-on-Wet Watercolor Technique and Masking Fluid Exploration using Digital Art Software": 1 + "1st Grade Environmental Studies: Using Telescopes for Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Satellite Imagery in Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Applying Barometers in Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Cloud Identification through Cumulus Observation with Weather Maps": 1 + "1st Grade Environmental Studies: Utilizing Weather Balloons for Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Anemometers and Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Radiosondes in Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Cloud Identification through Cumulus Observation - A Focus on Weather Stations": 1 + "1st Grade Environmental Studies: Doppler Radar’s Role in Cloud Identification through Cumulus Observation": 1 + "1st Grade Environmental Studies: Cloud Identification through Cumulus Observation Using Hygrometers": 1 + "Symphony of Sounds: Understanding the Physics of Pizzicato, Rosin’s Effect on Violin Vibrations, and the Use of Electronic Tuners in 9th Grade Music": 1 + "Symphony of Sounds: Examining Pizzicato Technique, Rosin Application, and the Application of Spectrum Analyzers in String Tuning for 9th Grade Music": 1 + "Symphony of Sounds: Exploring the Mechanics of Pizzicato, Rosin’s Role, and 10 Different Methods to Use a Metronome in Violin Tuning for 9th Grade Music": 1 + "Symphony of Sounds: Dissecting the Science Behind Pizzicato, Rosin’s Impact, and the Use of Tuning Forks in 9th Grade Violin Instruction": 1 + "Symphony of Sounds: Deciphering Pizzicato Physics, Rosin’s Contribution, and the Role of Digital Tuning Apps in 9th Grade Music Education": 1 + "Symphony of Sounds: Investigating Pizzicato, Rosin’s Influence, and the Application of the Harmonic Series in Violin Tuning for 9th Graders": 1 + "Symphony of Sounds: Probing into Pizzicato, Rosin’s Effect, and the Use of Pitch Pipes in Precision Tuning for 9th Grade Music Students": 1 + "Symphony of Sounds: Unraveling the Science of Pizzicato, Rosin’s Role, and the Application of Sound Wave Analysis Software in 9th Grade Violin Tuning": 1 + "Symphony of Sounds: Breaking Down Pizzicato, Rosin’s Function, and the Use of Sonic Visualiser in Tuning Stringed Instruments in 9th Grade Music": 1 + "Symphony of Sounds: A Deep Dive into Pizzicato, Rosin’s Role, and the Utilization of Frequency Counters in 9th Grade Violin String Tuning.": 1 + "2nd Grade Art: Introduction to Drawing with Charcoal": 1 + "2nd Grade Art: Learning to Draw using Graphite Pencils": 1 + "2nd Grade Art: Introduction to Drawing - The Basics of Crayons": 1 + "2nd Grade Art: Learning to Draw using Digital Tablets": 1 + "2nd Grade Art: Introduction to Drawing with Watercolor Pencils": 1 + "2nd Grade Art: Learning to Draw - Understanding the Concept of Shading": 1 + "2nd Grade Art: Introduction to Drawing - Exploring Perspective with Pencils": 1 + "2nd Grade Art: Learning to Draw - The Art of Contouring with Markers": 1 + "2nd Grade Art: Introduction to Drawing - Achieving Realism with Colored Pencils": 1 + "2nd Grade Art: Learning to Draw - The Use of Light and Shadow with Charcoal": 1 + "6th Grade Art: Introduction to Sketching with Charcoal": 1 + "6th Grade Art: Exploring Watercolor Painting Techniques": 1 + "6th Grade Art: Basics of Acrylic Painting": 1 + "6th Grade Art: Introduction to Digital Sketching": 1 + "6th Grade Art: Understanding the Use of Pastels in Sketching": 1 + "6th Grade Art: Beginner’s Guide to Oil Painting": 1 + "6th Grade Art: Introduction to Sketching using Pencils": 1 + "6th Grade Art: Learning the Art of Spray Painting": 1 + "6th Grade Art: Exploring Sketching on Digital Tablets": 1 + "6th Grade Art: Basics of Gouache Painting Techniques": 1 + "8th Grade Music: Exploring Handel’s Oratorios through Vocal Ensemble with Sight-Reading Techniques": 1 + "8th Grade Music: Understanding Handel’s Oratorios using Audacity for Choir Performance ": 1 + "8th Grade Music: Delving into Handel’s Oratorios with Choir Performance and Music Notation": 1 + "8th Grade Music: The Art of Handel’s Oratorios with Choir Performance using Midi Keyboard": 1 + "8th Grade Music: Grasping Handel’s Oratorios through Choir Performance and Rhythm Recognition": 1 + "8th Grade Music: Analyzing Handel’s Oratorios with GarageBand for Choir Performance": 1 + "8th Grade Music: Interpreting Handel’s Oratorios with Choir Performance and Voice Projection Techniques": 1 + "8th Grade Music: Unraveling Handel’s Oratorios using Sibelius Software for Choir Performance ": 1 + "8th Grade Music: Insight into Handel’s Oratorios with Choir Performance and Harmonic Analysis ": 1 + "8th Grade Music: Discovering Handel’s Oratorios through Choir Performance using Digital Audio Workstation (DAW)": 1 + "9th Grade Social Studies: Analyzing Government Systems with ArcGIS Software for GIS": 1 + "Understanding Government Systems: A Deep Dive into QGIS for 9th Grade Social Studies": 1 + "9th Grade Social Studies: Exploring Government Systems with GIS and Python Programming": 1 + "9th Grade Social Studies: Application of Google Earth in Analyzing Government Systems": 1 + "GIS and Government Systems: Utilizing Cartographic Design in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Leveraging Satellite Imagery in Government Systems Analysis": 1 + "9th Grade Social Studies: Using OpenStreetMap for Government Systems Analysis": 1 + "9th Grade Social Studies: Spatial Analysis of Government Systems with GIS": 1 + "9th Grade Social Studies: Government Systems Analysis using GIS and Remote Sensing": 1 + "9th Grade Social Studies: Analyzing Government Systems with GIS and Map Projections": 1 + "2nd Grade Mathematics: Exploring Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Fraction Adventures using iPads with The Math Learning Center’s Fraction Calculator": 1 + "2nd Grade Mathematics: Understanding Fraction Concepts through The Math Learning Center’s Calculator and Smartboard Technology": 1 + "2nd Grade Mathematics: Fraction Adventures with The Math Learning Center’s Calculator and Fraction Strips": 1 + "2nd Grade Mathematics: Engaging Fraction Demonstrations using The Math Learning Center’s Calculator and Virtual Manipulatives": 1 + "2nd Grade Mathematics: Fraction Adventures with The Math Learning Center’s Calculator and Number Line Tools": 1 + "2nd Grade Mathematics: Fraction Exploration with The Math Learning Center’s Calculator and Augmented Reality Technology": 1 + "2nd Grade Mathematics: Fraction Adventures Incorporating The Math Learning Center’s Calculator and Interactive Games": 1 + "2nd Grade Mathematics: Practical Fraction Learning with The Math Learning Center’s Calculator and Real-world Applications": 1 + "2nd Grade Mathematics: Fraction Adventures using The Math Learning Center’s Calculator and 3D Printing for Visual Learning.": 1 + "3rd Grade English: Adventures in Reading with Interactive Storytelling": 1 + "3rd Grade English: Adventures in Reading and Vocabulary Building through Digital Flashcards": 1 + "3rd Grade English: Adventures in Reading using Audiobooks": 1 + "3rd Grade English: Adventures in Reading and Comprehension with E-Books": 1 + "3rd Grade English: Adventures in Reading and Grammar through Educational Apps": 1 + "3rd Grade English: Adventures in Reading and Improving Pronunciation with Speech Recognition Technology": 1 + "3rd Grade English: Adventures in Reading and Creative Writing using Word Processing Software": 1 + "3rd Grade English: Adventures in Reading and Spelling with Online Quizzes": 1 + "3rd Grade English: Adventures in Reading and Story Analysis using Mind Mapping Tools": 1 + "3rd Grade English: Adventures in Reading and Sentence Structure with Interactive Whiteboards": 1 + "8th Grade Art: Intro to Charcoal Drawing and Acrylic Painting": 1 + "8th Grade Art: Exploring Watercolor Techniques in Drawing and Painting": 1 + "8th Grade Art: The Basics of Oil Pastels in Drawing and Painting": 1 + "8th Grade Art: Intro to Drawing and Painting with Graphite Pencils": 1 + "8th Grade Art: Introduction to Digital Drawing and Painting Techniques": 1 + "8th Grade Art: Exploring Perspective in Drawing and Painting": 1 + "8th Grade Art: Intro to Drawing and Painting with Gouache": 1 + "8th Grade Art: Introduction to Drawing and Painting using Mixed Media": 1 + "8th Grade Art: The Basics of 3D Drawing and Painting Techniques": 1 + "8th Grade Art: Intro to Drawing and Painting with Colored Pencils": 1 + "7th Grade Physical Education: Mastering Balance Beam Techniques using Foam Rollers, Pilates Balls, and the Alexander Technique": 1 + "7th Grade Physical Education: Enhancing Flexibility Training with Foam Rollers and TRX Suspension for Balance Beam Techniques": 1 + "7th Grade Physical Education: Incorporating Yoga Poses into Balance Beam Techniques using Foam Rollers and the Alexander Technique": 1 + "7th Grade Physical Education: Balance Beam Techniques using Foam Rollers and the Alexander Technique with a Spotlight on Resistance Bands": 1 + "7th Grade Physical Education: Balance Beam Techniques and Flexibility Training using Foam Rollers, the Alexander Technique, and Digital Posture Analysis": 1 + "7th Grade Physical Education: Balance Beam Techniques with a Focus on Flexibility Training using Foam Rollers, the Alexander Technique and Core Stabilization Exercises": 1 + "7th Grade Physical Education: Balance Beam Techniques using Foam Rollers, the Alexander Technique, and the Integration of Gyrotonic Expansion System": 1 + "7th Grade Physical Education: Flexibility Training for Balance Beam Techniques using Foam Rollers, the Alexander Technique, and Mindfulness Practices": 1 + "7th Grade Physical Education: Balance Beam Techniques and Flexibility Training using Foam Rollers, the Alexander Technique, and Biofeedback Technology": 1 + "7th Grade Physical Education: Balance Beam Techniques using Foam Rollers, the Alexander Technique, and In-depth Study of Kinesthetic Awareness.": 1 + "Evaluating the Impact of Rainwater Harvesting Using Greywater Systems on the Life Cycle of Native Plants with a Focus on Solar-Powered Pumps in 2nd Grade Environmental Studies: Incorporating Soil Moisture Sensors": 1 + "Implementation of Automated Irrigation Systems in Evaluating the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants": 1 + "Using Drip Irrigation in the Assessment of Rainwater Harvesting Impact on Native Plants in 2nd Grade Environmental Studies": 1 + "Understanding the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants: A Study Focused on the Application of Solar-Powered Pumps and Water Quality Testing Kits": 1 + "Evaluating the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants: Incorporating Rain Gauge Measurements in 2nd Grade Environmental Studies": 1 + "Analysis of Rainwater Harvesting Using Greywater Systems and its Impact on Native Plants: The Use of Photovoltaic Cells in Solar-Powered Pumps": 1 + "Impact Assessment of Rainwater Harvesting on Native Plants Using Greywater Systems and Solar-Powered Pumps: The Role of Weather Forecasting Technology": 1 + "Exploring the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants: Incorporating Satellite Imagery in 2nd Grade Environmental Studies": 1 + "A Detailed Study on the Impact of Rainwater Harvesting Using Greywater Systems on Native Plants: Role of Data Loggers in Solar-Powered Pumps in 2nd Grade Environmental Studies": 1 + "Evaluating the Impact of Rainwater Harvesting Using Greywater Systems through the Lens of Native Plants’ Life Cycle: Implementation of Remote Sensing Technology in 2nd Grade Environmental Studies.": 1 + "1st Grade Language Arts: Mastering Phonetics with Interactive Whiteboards": 1 + "1st Grade Language Arts: Developing Reading Skills through E-books": 1 + "1st Grade Language Arts: Enhancing Writing Proficiency with Digital Storytelling": 1 + "1st Grade Language Arts: Learning to Read with Audio Books ": 1 + "1st Grade Language Arts: Boosting Writing Skills through Word Processing Software": 1 + "1st Grade Language Arts: Reading Improvement with Guided Reading Apps ": 1 + "1st Grade Language Arts: Advancing Writing Skills through Online Grammar Games ": 1 + "1st Grade Language Arts: Reading Enrichment via Virtual Reality Storytelling ": 1 + "1st Grade Language Arts: Writing Enhancement through Collaborative Online Platforms": 1 + "1st Grade Language Arts: Reading Mastery through Phonics-Based Learning Software": 1 + "3rd Grade Science: Studying Butterfly Metamorphosis with Infrared Imaging and Microscopic Analysis ": 1 + "3rd Grade Science: In-Depth Exploration of Butterfly Metamorphosis through Infrared Imaging and Time-lapse Photography ": 1 + "3rd Grade Science: Investigating Butterfly Metamorphosis: An Intricate Study using Infrared Imaging and Digital Microscopy": 1 + "3rd Grade Science: Butterfly Metamorphosis Unveiled with Infrared Imaging and 3D Modelling ": 1 + "3rd Grade Science: Butterfly Metamorphosis: A Detailed Examination with Infrared Imaging and Specimen Dissection": 1 + "3rd Grade Science: The Magic of Butterfly Metamorphosis: A Deep Dive using Infrared Imaging and Augmented Reality": 1 + "3rd Grade Science: Butterfly Metamorphosis: A Comprehensive Study with Infrared Imaging and DNA Sequencing": 1 + "3rd Grade Science: Butterfly Metamorphosis Explored with Infrared Imaging and Cryogenic Electron Microscopy": 1 + "3rd Grade Science: Butterfly Metamorphosis: A Scientific Journey using Infrared Imaging and Virtual Reality Simulation": 1 + "3rd Grade Science: Butterfly Metamorphosis: A Close-Up with Infrared Imaging and Interactive Lab Experiments.": 1 + "4th Grade History: Immersive Study of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and Google Expeditions": 1 + "4th Grade History: Understanding the American Revolution through Lenovo Mirage Solo VR, Augmented Reality and Interactive Timeline Tools ": 1 + "4th Grade History: In-depth Learning of the American Revolution with Lenovo Mirage Solo VR and Augmented Reality using 3D Printing Technology": 1 + "4th Grade History: Picturing the American Revolution using Lenovo Mirage Solo VR, Augmented Reality and Holographic Projections": 1 + "4th Grade History: Interactive Learning of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and Virtual Field Trips": 1 + "4th Grade History: Comprehensive Study of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and Cloud-based Collaborative Tools ": 1 + "4th Grade History: Exploring the American Revolution through Lenovo Mirage Solo VR, Augmented Reality and Gamification Techniques": 1 + "4th Grade History: Hands-on Learning of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and Digital Storytelling Tools": 1 + "4th Grade History: Immersive Learning of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and AI Chatbots": 1 + "4th Grade History: Engaging Study of the American Revolution with Lenovo Mirage Solo VR, Augmented Reality and Makerspace Lab Activities.": 1 + "6th Grade Physical Education: Mastering Hockey Stick Handling Techniques using Virtual Reality Simulation": 1 + "6th Grade Physical Education: Basics of Hockey Stick Handling Techniques with a Focus on Grip Positioning": 1 + "6th Grade Physical Education: Enhancing Hockey Skills through Advanced Stick Handling Techniques and Biomechanics": 1 + "6th Grade Physical Education: Basics of Hockey Stick Handling Techniques Using Smart Puck Technology": 1 + "6th Grade Physical Education: Hockey Stick Handling Techniques with an Introduction to Force and Motion Concepts": 1 + "6th Grade Physical Education: Hockey Stick Handling Techniques - A Detailed Study using Slow Motion Video Analysis": 1 + "6th Grade Physical Education: Basics of Hockey Using Stick Handling Techniques - Incorporating Balance and Coordination Drills": 1 + "6th Grade Physical Education: Effective Hockey Stick Handling Techniques using Weighted Practice Sticks": 1 + "6th Grade Physical Education: Basics of Hockey Stick Handling Techniques with a Focus on Dribbling and Puck Control": 1 + "6th Grade Physical Education: Introduction to Hockey Stick Handling Techniques Using Interactive Digital Training Platforms": 1 + "1st Grade Mathematics: Exploring Geometry with Interactive Pattern Blocks and Smartboard Technology": 1 + "1st Grade Mathematics: Introduction to Fractions using Interactive Pattern Blocks": 1 + "1st Grade Mathematics: Understanding Addition and Subtraction with Interactive Pattern Blocks and Digital Tablets": 1 + "1st Grade Mathematics: Discovering Shapes and Numbers with Interactive Pattern Blocks and Augmented Reality": 1 + "1st Grade Mathematics: Interactive Learning of Measurement Concepts with Pattern Blocks": 1 + "1st Grade Mathematics: Exploring Numerical Patterns with Interactive Pattern Blocks and Educational Software": 1 + "1st Grade Mathematics: Mastering Counting Techniques with Interactive Pattern Blocks and Virtual Manipulatives": 1 + "1st Grade Mathematics: Learning about Symmetry with Interactive Pattern Blocks and Mirror Reflections": 1 + "1st Grade Mathematics: Discovering Mathematical Relations with Interactive Pattern Blocks and Coding Basics": 1 + "1st Grade Mathematics: Exploring Place Value with Interactive Pattern Blocks and Touch-Screen Devices.": 1 + "9th Grade Social Studies: The Enigma Machine and Cryptography in World War II": 1 + "9th Grade Social Studies: Radar Technology in the World War II Era": 1 + "9th Grade Social Studies: Exploration of the Manhattan Project during World War II": 1 + "9th Grade Social Studies: The Role of Propaganda in World War II": 1 + "9th Grade Social Studies: World War II Era - The Impact of Nuclear Technology": 1 + "9th Grade Social Studies: Jet Engine Advancements during World War II": 1 + "9th Grade Social Studies: Unveiling the Blitzkrieg Tactic in World War II": 1 + "9th Grade Social Studies: World War II Era - The Rise of Sonar Technology": 1 + "9th Grade Social Studies: The Role of Radio Communication in World War II": 1 + "9th Grade Social Studies: Decoding the Holocaust: The Role of Zyklon B in World War II": 1 + "4th Grade Language Arts: Exploring Metaphors in Poetry Using SMART Board Interactive Whiteboard": 1 + "4th Grade Language Arts: A Study of Metaphors in Poetry Utilizing Promethean ActivBoard": 1 + "4th Grade Language Arts: Discovering Metaphors in Poetry with Google Jamboard": 1 + "4th Grade Language Arts: Investigating Metaphors in Poetry Using Miro Interactive Whiteboard": 1 + "4th Grade Language Arts: Examining Metaphors in Poetry through Microsoft Surface Hub": 1 + "4th Grade Language Arts: Learning Metaphors in Poetry Employing eBeam Interactive Whiteboard": 1 + "4th Grade Language Arts: Metaphors in Poetry Explored Using Hitachi StarBoard": 1 + "4th Grade Language Arts: Unfolding Metaphors in Poetry via Sharp AQUOS BOARD Interactive Display System": 1 + "4th Grade Language Arts: Probing Metaphors in Poetry with PolyVision eno Interactive Whiteboard": 1 + "4th Grade Language Arts: Metaphor Analysis in Poetry Leveraging Newline Interactive Display.": 1 + "2nd Grade Language Arts: Exploring Audacity for Storytelling Adventures through Podcasting": 1 + "Storytelling Adventures through Podcasting: Utilizing GarageBand in 2nd Grade Language Arts": 1 + "2nd Grade Language Arts: Adventures in Storytelling with Soundtrap Podcasting": 1 + "Storytelling Adventures through Podcasting: An Introduction to Adobe Audition for 2nd Graders": 1 + "2nd Grade Language Arts: Storytelling Adventures using Podcasting and Anchor.fm": 1 + "Storytelling Adventures through Podcasting with Audacity: A 2nd Grade Language Arts Course": 1 + "2nd Grade Language Arts: Adventures in Storytelling through Podcasting with Pro Tools": 1 + "Storytelling Adventures through Podcasting: Exploring the World of Language with Hindenburg in 2nd Grade": 1 + "2nd Grade Language Arts: Using Buzzsprout for Storytelling Adventures in Podcasting": 1 + "Adventures in Storytelling: 2nd Grade Language Arts through Podcasting with Spreaker Studio.": 1 + "2nd Grade Mathematics: Fun with Multiplication using Abacus": 1 + "2nd Grade Mathematics: Interactive Multiplication with Digital Flashcards": 1 + "2nd Grade Mathematics: Learning Multiplication through iPads": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills with Virtual Reality": 1 + "2nd Grade Mathematics: Multiplication Mastery through Math Apps": 1 + "2nd Grade Mathematics: Fun with Multiplication and Times Tables": 1 + "2nd Grade Mathematics: Exploring Multiplication with Interactive Whiteboards": 1 + "2nd Grade Mathematics: Multiplication Magic with Smartboard Games ": 1 + "2nd Grade Mathematics: Fun with Multiplication using Manipulatives": 1 + "2nd Grade Mathematics: Multiplication Concepts through Computer Programming": 1 + "1st Grade Environmental Studies: Exploring Local Bird Food Chains Using Binoculars, Ecological Pyramids, and Field Guides": 1 + "Discovering Local Amphibian Food Chains: A 1st Grade Environmental Studies Course Using Binoculars, Ecological Pyramids, and Digital Cameras": 1 + "1st Grade Environmental Studies: Observing Local Insect Food Chains with Binoculars, Ecological Pyramids, and Microscopes": 1 + "Environmental Studies for 1st Grade: Unraveling Local Aquatic Food Chains using Binoculars, Ecological Pyramids, and Water Testing Kits": 1 + "1st Grade Environmental Studies: Using Binoculars, Ecological Pyramids, and Soil Test Kits to Investigate Local Terrestrial Food Chains": 1 + "Local Mammal Food Chains: A 1st Grade Environmental Studies Course with Binoculars, Ecological Pyramids, and Night Vision Cameras": 1 + "1st Grade Environmental Studies: Exploring Local Plant Food Chains Using Binoculars, Ecological Pyramids, and pH Soil Testing": 1 + "Investigating Local Reptile Food Chains: A 1st Grade Environmental Studies Course Using Binoculars, Ecological Pyramids, and Temperature Loggers": 1 + "1st Grade Environmental Studies: Uncovering Local Food Chains using Binoculars, Ecological Pyramids, and Drone Technology for Aerial Surveys": 1 + "Environmental Studies for 1st Grade: Analyzing Local Fungi Food Chains Using Binoculars, Ecological Pyramids, and Spore Print Identification Kits.": 1 + "10th Grade English: Exploring Shakespeare with Literature and Composition Basics": 1 + "10th Grade English: Creative Writing and Literature Analysis Using Google Docs": 1 + "10th Grade English: Literature and Composition Basics with Focus on Poetry Analysis": 1 + "10th Grade English: Literature and Composition Basics Using Digital Storytelling Tools": 1 + "10th Grade English: Literature and Composition Basics - An Introduction to Plagiarism Detection Tools": 1 + "10th Grade English: Literature and Composition Basics - Developing Critical Thinking with Turnitin": 1 + "10th Grade English: Mastering Literature and Composition with Grammarly": 1 + "10th Grade English: Literature and Composition - Improving Writing Skills with Microsoft Word Features": 1 + "10th Grade English: Literature and Composition Basics - Enhancing Reading Skills through Audiobooks": 1 + "10th Grade English: Literature and Composition Basics - Exploring Digital Thesaurus for Enhanced Vocabulary.": 1 + "1st Grade Environmental Studies: Understanding Our Planet with Stream Gauges and Rain Gauges": 1 + "1st Grade Environmental Studies: Delving into Hydrology with Stream Gauges and Topographic Maps": 1 + "1st Grade Environmental Studies: Exploring Our Planet with Stream Gauges and Compasses": 1 + "1st Grade Environmental Studies: Understanding River Ecosystems with Stream Gauges and pH Meters": 1 + "1st Grade Environmental Studies: Discovering Water Cycle with Stream Gauges and Evaporation Experiments": 1 + "1st Grade Environmental Studies: Unraveling Climate Patterns with Stream Gauges and Weather Stations": 1 + "1st Grade Environmental Studies: Investigating Soil Erosion with Stream Gauges and Soil Testing Kits": 1 + "1st Grade Environmental Studies: Probing into Water Pollution with Stream Gauges and Turbidity Tests": 1 + "1st Grade Environmental Studies: Learning about Aquatic Life with Stream Gauges and Aquarium Kits": 1 + "1st Grade Environmental Studies: Studying Flood Prevention with Stream Gauges and Landscape Models.": 1 + "3rd Grade Mathematics: Multiplication and Division Enhanced with Times Table Math App": 1 + "3rd Grade Mathematics: Exploring Division and Multiplication Through Prodigy Math Tool": 1 + "3rd Grade Mathematics: Learning Multiplication & Division with MathBoard App": 1 + "3rd Grade Mathematics: Enhancing Division and Multiplication Skills using Mathway Tool": 1 + "3rd Grade Mathematics: Mastering Division and Multiplication with Math Ninja App": 1 + "3rd Grade Mathematics: Division and Multiplication Made Easy with Khan Academy Lessons": 1 + "3rd Grade Mathematics: Interactive Multiplication and Division Learning with Photomath Tool": 1 + "3rd Grade Mathematics: Multiplication and Division Training Using Mathletics App": 1 + "3rd Grade Mathematics: Developing Multiplication & Division Skills with the Use of Cymath Tool": 1 + "3rd Grade Mathematics: Exploring the Concepts of Division and Multiplication through Cool Math App": 1 + "5th Grade Art: Exploring the Colors of the Renaissance through Acrylic Painting": 1 + "5th Grade Art: The Colors of the Renaissance & Brush Techniques": 1 + "5th Grade Art: The Colors of the Renaissance - A Study of Oil Paints": 1 + "5th Grade Art: The Colors of the Renaissance - Understanding Perspective": 1 + "5th Grade Art: The Colors of the Renaissance in Watercolors": 1 + "5th Grade Art: The Colors of the Renaissance through Charcoal Drawing": 1 + "5th Grade Art: Sculpting and the Colors of the Renaissance ": 1 + "5th Grade Art: The Colors of the Renaissance - Canvas Preparation Techniques ": 1 + "5th Grade Art: The Colors of the Renaissance - Mixed Media Approach": 1 + "5th Grade Art: The Colors of the Renaissance - Understanding Color Theory": 1 + "Fourth Grade History: The Influence of Gutenberg’s Press on Political Cartoons and Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Role of Copperplate Engraving in the Production of Revolutionary War Pamphlets and Cartoons": 1 + "Fourth Grade History: The Impact of the Printing Press and the Lantern Slide on Political Cartoons during the American Revolution": 1 + "Fourth Grade History: The Use of the Printing Press, Quill Pens, and Political Cartoons in the American Revolution": 1 + "Fourth Grade History: The Interplay of the Printing Press, Political Satire, and Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Influence of the Printing Press, Linotype, and Political Cartoons in the American Revolution": 1 + "Fourth Grade History: The Role of the Printing Press, Woodcut Illustrations, and Pamphlets in the American Revolution": 1 + "Fourth Grade History: The Effect of the Printing Press, Political Cartoons, and Pamphlets on Revolutionary War Propaganda": 1 + "Fourth Grade History: The Impact of the Printing Press, Benjamin Franklin’s Political Cartoons, and Revolutionary Pamphlets ": 1 + "Fourth Grade History: The Interplay of the Printing Press, Lithography, and Pamphlets in the American Revolution.": 1 + "4th Grade Social Studies: Exploring America’s Geographic Diversity with ArcGIS Software": 1 + "4th Grade Social Studies: Understanding USA’s Geographic Diversity using Google Earth Pro": 1 + "4th Grade Social Studies: Mapping the Geographic Diversity of the USA using QGIS Tools": 1 + "4th Grade Social Studies: Delving into the Geographic Diversity of the USA using GIS Cloud Tools": 1 + "4th Grade Social Studies: Decoding USA’s Geographic Diversity with Mapbox GIS Tools": 1 + "4th Grade Social Studies: USA’s Geographic Diversity Study using Geocoding Techniques": 1 + "4th Grade Social Studies: Unveiling the Geographic Diversity of the USA with Geospatial Analysis": 1 + "4th Grade Social Studies: USA’s Geographic Diversity Explored through Data Visualization Tools": 1 + "4th Grade Social Studies: USA’s Geographic Diversity and GIS: An Introduction to GeoJSON": 1 + "4th Grade Social Studies: Navigating the Geographic Diversity of the USA using GPS Technology": 1 + "5th Grade Art: Mastering Portraits with Colored Pencils and Charcoal": 1 + "5th Grade Art: Learning to Draw and Paint Animals with Colored Pencils and Watercolors": 1 + "5th Grade Art: Exploring Landscapes through Colored Pencils and Pastels": 1 + "5th Grade Art: Drawing and Painting Cartoon Characters with Colored Pencils and Digital Tools": 1 + "5th Grade Art: Using Colored Pencils and Gouache in Still Life": 1 + "5th Grade Art: Learning to Draw and Paint Human Figures with Colored Pencils and Acrylics": 1 + "5th Grade Art: Discovering Abstract Art with Colored Pencils and Mixed Media Techniques": 1 + "5th Grade Art: Exploring Texture in Art with Colored Pencils and Oil Pastels": 1 + "5th Grade Art: Creating 3D Art with Colored Pencils and Sculpting Materials": 1 + "5th Grade Art: Learning to Draw and Paint Architectural Structures with Colored Pencils and Ink Pens": 1 + "4th Grade History: Exploring Early American History with Archival Research, Oral Histories, and Chronological Timelines": 1 + "4th Grade History: Unraveling Early American History through Archival Research, Oral Histories, and Map Reading Techniques": 1 + "4th Grade History: Decoding Early American History using Archival Research, Oral Histories, and Artifact Analysis": 1 + "4th Grade History: Unmasking Early American History with Archival Research, Oral Histories, and Hieroglyphics Decoding": 1 + "4th Grade History: Investigating Early American History with Archival Research, Oral Histories, and Geographical Information Systems": 1 + "4th Grade History: Understanding Early American History with Archival Research, Oral Histories, and Primary Source Interpretation": 1 + "4th Grade History: Dissecting Early American History using Archival Research, Oral Histories, and Digital Humanities Tools": 1 + "4th Grade History: Unveiling Early American History with Archival Research, Oral Histories, and Virtual Reality Simulations": 1 + "4th Grade History: Unearthing Early American History through Archival Research, Oral Histories, and Carbon Dating Techniques": 1 + "4th Grade History: Deconstructing Early American History with Archival Research, Oral Histories, and 3D Modeling Technology": 1 + "6th Grade Mathematics: Introduction to Geometry with Protractors": 1 + "Geometry Basics in 6th Grade Mathematics: Exploring Angles with Compass": 1 + "6th Grade Mathematics: Pythagorean Theorem in Geometry Basics": 1 + "Geometry Basics Utilizing Interactive Software: A 6th Grade Mathematics Course": 1 + "6th Grade Mathematics: Geometry Basics and the Use of Geometric Shapes": 1 + "Geometry Basics: Area and Perimeter Studies in 6th Grade Mathematics": 1 + "6th Grade Mathematics: Understanding Geometry Basics with Graphing Calculators": 1 + "Interactive 6th Grade Mathematics: Geometry Basics with 3D Modeling": 1 + "6th Grade Mathematics: Geometry Basics Explored Through Geogebra ": 1 + "Geometry Basics in 6th Grade Mathematics: The Role of Coordinates and Graphs.": 1 + "6th Grade Mathematics: Exploring Algebraic Expressions with Mathway and TI-84 Plus Graphing Calculator ": 1 + "6th Grade Mathematics: Understanding the Concept of Variables using Mathway and Desmos Graphing Calculator": 1 + "6th Grade Mathematics: Learning Algebraic Expressions with Mathway, GeoGebra Tools and the Idea of Constants": 1 + "6th Grade Mathematics: Breaking Down Algebraic Expressions with Mathway, Casio fx-9860GII Graphing Calculator and the Power of Coefficients": 1 + "6th Grade Mathematics: Deciphering Algebraic Expressions using Mathway, HP Prime Graphing Calculator and the Principle of Equations": 1 + "6th Grade Mathematics: Analyzing Algebraic Expressions with Mathway, Sharp EL-9600 Graphing Calculator and the Rule of Exponents": 1 + "6th Grade Mathematics: Mastering Algebraic Expressions using Mathway, Texas Instruments TI-Nspire CX II Graphing Calculator and the Theory of Polynomials": 1 + "6th Grade Mathematics: Navigating Algebraic Expressions with Mathway, Casio fx-9750GII Graphing Calculator and the Concept of Quadratic Equations": 1 + "6th Grade Mathematics: Unraveling Algebraic Expressions using Mathway, Desmos Online Calculator and the Notion of Linear Equations": 1 + "6th Grade Mathematics: Simplifying Algebraic Expressions with Mathway, GeoGebra Calculator App and the Concept of Inequalities.": 1 + "1st Grade Social Studies: Exploring Community Interactions with Google Earth Virtual Field Trips": 1 + "1st Grade Social Studies: Investigating Community Interactions via Skype Virtual Museum Tours": 1 + "1st Grade Social Studies: Understanding Community Interactions through Virtual Reality Field Trips": 1 + "1st Grade Social Studies: Interactive Whiteboard Virtual Field Trips to Historic Sites using Stellarium": 1 + "1st Grade Social Studies: Exploring Community Interactions with Zoom Virtual Zoo Tours": 1 + "1st Grade Social Studies: Experiencing Community Interactions through Interactive Whiteboard Virtual Aquarium Visits": 1 + "1st Grade Social Studies: Investigating Community Interactions via Augmented Reality City Tours": 1 + "1st Grade Social Studies: Interactive Whiteboard Virtual Field Trips to National Parks using Google Street View": 1 + "1st Grade Social Studies: Discovering Community Interactions with Virtual Reality Farm Tours": 1 + "1st Grade Social Studies: Investigating Community Interactions via Interactive Whiteboard Virtual Space Explorations using NASA’s Eyes program.": 1 + "6th Grade Social Studies: Utilizing Radiocarbon Dating to Understand Ancient Egyptian Civilization through Hieroglyphics and Nile Flooding Patterns": 1 + "Decoding the Past: Application of Spectroscopy in 6th Grade Social Studies to Unearth Ancient Civilizations via Hieroglyphics and Nile Flooding": 1 + "6th Grade Social Studies: Unravelling the Secrets of Ancient Egyptian Civilization using Carbon-14 Dating and Hieroglyphic Analysis": 1 + "Chronicles of the Nile: Incorporating GIS Technology in 6th Grade Social Studies to Understand Ancient Civilizations through Hieroglyphics and Flood Patterns": 1 + "6th Grade Social Studies: Exploring Ancient Civilizations with Carbon Dating, Hieroglyphics and Nile Flooding using the Rosetta Stone": 1 + "6th Grade Social Studies: Deciphering Ancient Egyptian Hieroglyphics and Nile Flooding Patterns using Carbon Dating and Infrared Imaging": 1 + "The Time-Traveling 6th Grader: Employing Carbon Dating and Dendrochronology in Understanding Ancient Civilizations through Hieroglyphics and Nile Flooding": 1 + "6th Grade Social Studies: Analyzing Ancient Civilizations through Hieroglyphics and Nile Flooding using Carbon Dating and Satellite Imagery": 1 + "6th Grade Social Studies: Exploring the Role of DNA Analysis in Understanding Ancient Civilizations through Hieroglyphics and Nile Flooding Patterns": 1 + "6th Grade Social Studies: Leveraging Carbon Dating and Archaeoastronomy to Decode Ancient Civilizations through Hieroglyphics and Nile Flooding.": 1 + "1st Grade Science: Learning about Recycling through DIY Crafting: Building Bottle Cap Mosaics using Acrylic Paints and Foam Brushes": 1 + "1st Grade Science: Recycling Education via Treasure-from-Trash: Creating Bottle Cap Mosaics with Acrylic Paints and Glue Sticks": 1 + "1st Grade Science: Understanding Recycling by Crafting DIY Mosaics: Using Bottle Caps, Acrylic Paints, and Craft Knives": 1 + "1st Grade Science: Exploring Recycling with Trash-to-Treasure: Constructing Bottle Cap Mosaics with Acrylic Paints and Popsicle Sticks": 1 + "1st Grade Science: Recycling Lessons through DIY Art: Building Bottle Cap Mosaics using Acrylic Paints and Wax Paper": 1 + "1st Grade Science: Recycling Awareness through DIY Crafts: Assembling Bottle Cap Mosaics using Acrylic Paints and Mod Podge": 1 + "1st Grade Science: Teaching Recycling through DIY Mosaics: Crafting with Bottle Caps, Acrylic Paints, and Plastic Palettes": 1 + "1st Grade Science: Learning about Recycling with Art: Building Bottle Cap Mosaics using Acrylic Paints and Canvas Boards": 1 + "1st Grade Science: Recycling Education by Crafting: Creating Bottle Cap Mosaics with Acrylic Paints and Spray Sealants": 1 + "1st Grade Science: Discovering Recycling through DIY Crafts: Constructing Bottle Cap Mosaics with Acrylic Paints and Disposable Aprons.": 1 + "11th Grade Science: DNA Sequencing and Genomics with Polymerase Chain Reaction": 1 + "Advanced Bioinformatics: DNA Sequencing and Genomics for 11th Grade Science": 1 + "11th Grade Science: DNA Sequencing, Genomics and CRISPR-Cas9 Techniques": 1 + "Exploring Next-Generation Sequencing in 11th Grade DNA and Genomics": 1 + "11th Grade Science: DNA Sequencing and Genomics using Microarray Technology": 1 + "Detailed Study of Genetic Markers: DNA Sequencing and Genomics for 11th Graders": 1 + "11th Grade Science: DNA Sequencing, Genomics and Gel Electrophoresis": 1 + "Introduction to Pyrosequencing in 11th Grade DNA and Genomics": 1 + "11th Grade Science: DNA Sequencing, Genomics, and the Human Genome Project": 1 + "Applications of Sanger Sequencing in 11th Grade DNA and Genomics.": 1 + "4th Grade Language Arts: Enhancing Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Google Docs for Interactive Learning": 1 + "4th Grade Language Arts: Improving Paragraph Writing with iPads using Grammarly, Pages, Kahoot, and Mind Mapping Techniques": 1 + "4th Grade Language Arts: Boosting Paragraph Writing Skills on iPads using Grammarly, Pages, Kahoot, and Flashcard Apps for Interactive Learning": 1 + "4th Grade Language Arts: Refining Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Prezi Presentations for Interactive Learning": 1 + "4th Grade Language Arts: Advancing Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Storyboard That for Interactive Learning": 1 + "4th Grade Language Arts: Progressing Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Quizlet for Interactive Learning": 1 + "4th Grade Language Arts: Perfecting Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Voice Typing Technology for Interactive Learning": 1 + "4th Grade Language Arts: Strengthening Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Digital Whiteboards for Interactive Learning": 1 + "4th Grade Language Arts: Developing Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Padlet for Interactive Learning": 1 + "4th Grade Language Arts: Amplifying Paragraph Writing on iPads using Grammarly, Pages, Kahoot, and Flipgrid for Interactive Learning": 1 + "7th Grade English: Analyzing Metaphor in Poetry Through the Use of Rhyme Schemes and Imagery": 1 + "7th Grade English: Exploring Poetry Through Rhyme Schemes, Imagery, and the Use of Annotating Software": 1 + "7th Grade English: Dive into Poetry - Rhyme Schemes, Imagery, and Hyperbole Exploration": 1 + "7th Grade English: Exploring Poetry Through Rhyme Schemes, Imagery, and the Application of iambic Pentameter": 1 + "7th Grade English: Discovering Poetry: An In-depth Look at Rhyme Schemes, Imagery, and Sonnets": 1 + "7th Grade English: Poetry Exploration: Rhyme Schemes, Imagery, and the Use of Digital Portfolios": 1 + "7th Grade English: Unveiling Poetry - Rhyme Schemes, Imagery, and the Role of Alliteration": 1 + "7th Grade English: Poetry Decoded - Rhyme Schemes, Imagery, and the Application of Google Classroom": 1 + "7th Grade English: Poetry Analysis Through Rhyme Schemes, Imagery, and Understanding Figurative Language": 1 + "7th Grade English: Poetry Exploration: Rhyme Schemes, Imagery, and the Interactive Use of Poetry Apps.": 1 + "3rd Grade English: Developing Storytelling Skills using GarageBand for Podcast Creation on Buzzsprout": 1 + "3rd Grade English: Fables Exploration and Podcasting with Audacity on Buzzsprout": 1 + "3rd Grade English: Interactive Storytelling and Fable Podcasting via Buzzsprout using Voice Modulation Tools": 1 + "3rd Grade English: Enhancing Fables through Podcasts with Sound Effects on Buzzsprout": 1 + "3rd Grade English: Learning Character Development in Storytelling through Podcasts on Buzzsprout": 1 + "3rd Grade English: Understanding Plot Structure in Fables through Podcast Creation on Buzzsprout": 1 + "3rd Grade English: Storytelling & Fable Podcasting: Fostering Creativity with Adobe Audition on Buzzsprout": 1 + "3rd Grade English: Immersive Storytelling and Fables with 3D Sound Podcasts on Buzzsprout": 1 + "3rd Grade English: Storytelling Evolution and Fable Narration using Logic Pro X for Podcasts on Buzzsprout": 1 + "3rd Grade English: Fables and Storytelling: Exploring Themes through Podcasts on Buzzsprout.": 1 + "Integrating Interactive Whiteboard in Microsoft Teams for Fifth Grade Social Studies: Exploring American Government through Online Voting Simulations": 1 + "Utilizing Breakout Rooms in Microsoft Teams for Fifth Grade Social Studies: Studying American Government through Online Voting Simulations": 1 + "Microsoft Teams and Poll Everywhere in Fifth Grade Social Studies: Analyzing American Government through Online Voting Simulations": 1 + "Microsoft Teams with Padlet Integration in Fifth Grade Social Studies: Investigating American Government through Online Voting Simulations": 1 + "Microsoft Teams and Kahoot for Fifth Grade Social Studies: Engaging in American Government through Online Voting Simulations": 1 + "Microsoft Teams and Google Docs in Fifth Grade Social Studies: Collaborative Learning of American Government through Online Voting Simulations": 1 + "Implementing Flipgrid in Microsoft Teams for Fifth Grade Social Studies: Studying American Government through Online Voting Simulations": 1 + "Microsoft Teams and Nearpod in Fifth Grade Social Studies: Interactive Study of American Government through Online Voting Simulations": 1 + "Microsoft Teams with Edpuzzle Integration in Fifth Grade Social Studies: Understanding American Government through Online Voting Simulations": 1 + "Microsoft Teams and Pear Deck for Fifth Grade Social Studies: Interactive Exploration of American Government through Online Voting Simulations.": 1 + "3rd Grade Geography: Exploring Continents and Oceans Through Google Earth": 1 + "3rd Grade Geography: Uncovering Continents and Oceans via GPS Technology": 1 + "3rd Grade Geography: Discovering Continents and Oceans Through Cartography with Compass Use": 1 + "3rd Grade Geography: Learning Continents and Oceans Through Cartography and Satellite Imagery": 1 + "3rd Grade Geography: Understanding Continents and Oceans Through Cartography Using Map Projections": 1 + "3rd Grade Geography: Discovering Continents and Oceans Through Cartography with Topographic Maps": 1 + "3rd Grade Geography: Exploring Continents and Oceans Through Cartography and GIS Technology": 1 + "3rd Grade Geography: Navigating Continents and Oceans Through Cartography Using Physical Maps": 1 + "3rd Grade Geography: Unveiling Continents and Oceans Through Cartography with the Use of Scale Models": 1 + "3rd Grade Geography: Identifying Continents and Oceans Through Cartography Using Digital Interactive Maps": 1 + "7th Grade Language Arts: Exploring Shakespeare’s Rhyme Schemes in Poetry using eBeam Interactive Whiteboards, Google Slides and Kahoot Quizzes.": 1 + "7th Grade Language Arts: Studying Emily Dickinson’s Rhyme Schemes with eBeam Interactive Whiteboards, Google Slides and Prezi Presentations.": 1 + "7th Grade Language Arts: Analyzing Rhyme Schemes in Robert Frost’s Poetry using eBeam Interactive Whiteboards, Google Slides and Pear Deck.": 1 + "7th Grade Language Arts: Deciphering Rhyme Schemes in Edgar Allan Poe’s Poetry with eBeam Interactive Whiteboards, Google Slides and Flipgrid Discussions.": 1 + "7th Grade Language Arts: Understanding Rhyme Schemes in Dr. Seuss’ Poetry using eBeam Interactive Whiteboards, Google Slides and Nearpod VR.": 1 + "7th Grade Language Arts: Unraveling Rhyme Schemes in Walt Whitman’s Poetry with eBeam Interactive Whiteboards, Google Slides and Socrative Student Response System.": 1 + "7th Grade Language Arts: Dissecting Rhyme Schemes in Sylvia Plath’s Poetry using eBeam Interactive Whiteboards, Google Slides and Padlet Boards.": 1 + "7th Grade Language Arts: Grasping Rhyme Schemes in Langston Hughes’ Poetry with eBeam Interactive Whiteboards, Google Slides and Quizlet Live.": 1 + "7th Grade Language Arts: Interpreting Rhyme Schemes in Maya Angelou’s Poetry using eBeam Interactive Whiteboards, Google Slides and Edpuzzle Video Lessons.": 1 + "7th Grade Language Arts: Decoding Rhyme Schemes in William Blake’s Poetry with eBeam Interactive Whiteboards, Google Slides and Seesaw Learning Platform.": 1 + "6th Grade Social Studies: Understanding the Role of Shaduf in Nile’s Irrigation and its Impact on Egypt’s Ancient Civilizations": 1 + "The Impact of Nile’s Irrigation Systems: A Deep Dive into the Use of Basins in Ancient Egypt’s Civilizations for 6th Grade Social Studies": 1 + "6th Grade Social Studies: Canal Irrigation’s Influence on the Agricultural Success of Egypt’s Ancient Civilizations": 1 + "Social Studies for 6th Grade: Exploring the Impact of the Nilometer on Nile’s Irrigation and Ancient Egypt’s Prosperity": 1 + "6th Grade Social Studies: How the Invention of the Saqiya Affected Nile’s Irrigation and Egypt’s Ancient Civilizations": 1 + "Nile’s Irrigation and its Impact on Egypt’s Ancient Civilizations: A Focus on the Water Wheel for 6th Grade Social Studies ": 1 + "6th Grade Social Studies: The Effects of Ancient Aqueducts on Nile’s Irrigation and the Evolution of Egypt’s Civilizations": 1 + "Social Studies for 6th Grade: The Role of the Water Clock in Nile’s Irrigation and its Influence on Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: Nile’s Irrigation and the Impact of the Scribe’s Record Keeping on Ancient Egypt’s Civilizations": 1 + "The Influence of the Archimedes’ Screw on Nile’s Irrigation and the Development of Egypt’s Ancient Civilizations: A 6th Grade Social Studies Course.": 1 + "1st Grade Physical Education: Mastering Double Dutch Ropes with Video Analysis Tools": 1 + "1st Grade Physical Education: Exploring Double Dutch Ropes and Coordination Skills using VR Technology": 1 + "1st Grade Physical Education: Interactive Learning of Double Dutch Jump Ropes with Motion Sensor Devices": 1 + "1st Grade Physical Education: Enhancing Coordination Skills through Double Dutch Jump Ropes and Balance Boards": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and Coordination Skill Development using Fitness Trackers": 1 + "1st Grade Physical Education: Exploring the Physics of Double Dutch Jump Ropes": 1 + "1st Grade Physical Education: Double Dutch Ropes and Coordination Skills: A Focus on Teamwork": 1 + "1st Grade Physical Education: Incorporating Music in Double Dutch Jump Ropes for Better Coordination": 1 + "1st Grade Physical Education: Using Sports Science to Improve Double Dutch Jump Rope Skills": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and Coordination Skills with Smart Mat Technology": 1 + "4th Grade Language Arts: Story Composition with Canva Storyboarding Tools - Focusing on Digital Illustration": 1 + "4th Grade Language Arts: Exploring Narrative Structure using Canva Storyboard Tools": 1 + "4th Grade Language Arts: Character Development with Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Utilizing Canva Storyboarding Tools for Plot Creation": 1 + "4th Grade Language Arts: Enhancing Dialogue Writing with Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Scene Setting with Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Using Canva Storyboarding Tools for Conflict Resolution": 1 + "4th Grade Language Arts: Understanding Point of View using Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Building Suspense in Stories with Canva Storyboarding Tools": 1 + "4th Grade Language Arts: Crafting Story Climax using Canva Storyboarding Tools": 1 + "Advanced 11th Grade Mathematics: Utilizing Wolfram Alpha, Python Programming and Matplotlib for Graphical Representation of Radical Expressions in Algebra": 1 + "11th Grade Mathematics: Applying Wolfram Alpha, Python Programming and NumPy for Solving Radical Expressions in Algebra ": 1 + "In-depth 11th Grade Mathematics: Utilizing Wolfram Alpha, Python Programming and Jupyter Notebooks for Radical Expressions in Algebra ": 1 + "11th Grade Mathematics: Exploiting Wolfram Alpha, Python Programming and Spyder IDE for Radical Expressions in Algebra ": 1 + "Advanced 11th Grade Mathematics: Leveraging Wolfram Alpha, Python Programming and Pandas for Data Analysis of Radical Expressions in Algebra ": 1 + "11th Grade Mathematics: Integrating Wolfram Alpha, Python Programming and Scipy for Computational Analysis of Radical Expressions in Algebra ": 1 + "11th Grade Mathematics: Combining Wolfram Alpha, Python Programming and Anaconda for Radical Expressions in Algebra ": 1 + "Advanced 11th Grade Mathematics: Using Wolfram Alpha, Python Programming and PyCharm for Radical Expressions in Algebra ": 1 + "11th Grade Mathematics: Exploiting Wolfram Alpha, Python Programming and TensorFlow for Neural Network Analysis of Radical Expressions in Algebra ": 1 + "In-depth 11th Grade Mathematics: Leveraging Wolfram Alpha, Python Programming and Keras for Machine Learning Analysis of Radical Expressions in Algebra.": 1 + "8th Grade Music: Exploring Ableton Live and Sound Design through Loop Pedals in Modern Music Production": 1 + "8th Grade Music: The Role of MIDI Controllers in Loop Pedals and Sound Design for Modern Music": 1 + "8th Grade Music: The Integration of Loop Pedals, Sound Design, and Digital Audio Workstations in Modern Music Production": 1 + "8th Grade Music: Learning Sound Design with Loop Pedals and Virtual Instruments in Contemporary Music Production": 1 + "8th Grade Music: Understanding the Use of Loop Pedals and Sound Design with Pro Tools in Modern Music Production": 1 + "8th Grade Music: The Application of Loop Pedals, Sound Design, and Audio Interfaces in Today’s Music Production": 1 + "8th Grade Music: The Interplay of Loop Pedals, Sound Design, and Synthesizer in Modern Music Production": 1 + "8th Grade Music: The Integration of Loop Pedals, Sound Design, and Sequencers in Modern Music Production": 1 + "8th Grade Music: Mastering the Use of Loop Pedals and Sound Design with Cubase in Modern Music Creation": 1 + "8th Grade Music: The Symbiosis of Loop Pedals, Sound Design, and Drum Machines in Contemporary Music Production": 1 + "6th Grade Social Studies: Unraveling the Secrets of Egypt’s Pyramids and the Use of Pulley Systems in Their Construction": 1 + "6th Grade Social Studies: The Role of Papyrus in Documenting Egypt’s Ancient Civilizations and Mummification Rituals": 1 + "6th Grade Social Studies: Canopic Jars and Their Importance in Egypt’s Mummification Rituals": 1 + "6th Grade Social Studies: Exploring Egypt’s Ancient Civilizations and the Use of Astronomy in Predicting Nile Floods": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Role of Cartouches in Hieroglyphics": 1 + "6th Grade Social Studies: The Application of Mathematics in Building Egypt’s Ancient Pyramids": 1 + "6th Grade Social Studies: Exploring the Ancient Egyptian Concept of Ka and Its Role in Mummification Rituals": 1 + "6th Grade Social Studies: Understanding the Use of Obelisks in Egypt’s Ancient Civilizations": 1 + "6th Grade Social Studies: The Role of the Rosetta Stone in Deciphering Hieroglyphics": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Use of Chisels in Creating Hieroglyphics.": 1 + "4th Grade Science: Exploring Neptune’s Atmospheric Composition with Space Rovers and Magnetometers": 1 + "4th Grade Science: Investigating Neptune’s Magnetic Field using Advanced Space Rovers and Magnetometers": 1 + "4th Grade Science: Diving into Neptune’s Mysteries with the Help of Space Rovers, Magnetometers and Spectrometers": 1 + "4th Grade Science: Unveiling Neptune’s Secrets: Space Rovers, Magnetometers and the Role of Radio Telescopes": 1 + "4th Grade Science: Neptune’s Exploration with Space Rovers, Magnetometers and Infrared Imaging": 1 + "4th Grade Science: Discovering Neptune’s Features with Space Rovers, Magnetometers and High-Resolution Cameras": 1 + "4th Grade Science: Neptune’s Mysteries: Unraveling with Space Rovers, Magnetometers and Gravitational Lensing": 1 + "4th Grade Science: Pioneering Neptune Research with Space Rovers, Magnetometers and the Hubble Telescope": 1 + "4th Grade Science: Neptune’s Deep Dive: Space Rovers, Magnetometers and the Use of Spectral Analysis": 1 + "4th Grade Science: Probing Neptune’s Mysteries with Space Rovers, Magnetometers and Radial Velocity Measurements.": 1 + "3rd Grade English: Exploring Adventure Stories using Interactive E-books": 1 + "3rd Grade English: Adventure Stories and Vocabulary Enhancement through Story Mapping": 1 + "3rd Grade English: Adventure Stories Analysis and Vocabulary Enhancement with Flashcards": 1 + "3rd Grade English: Enhancing Vocabulary through Adventure Stories using Online Quizzes": 1 + "3rd Grade English: Adventure Stories and Vocabulary Improvement with Audiobooks": 1 + "3rd Grade English: Adventure Stories Study and Vocabulary Enhancement through Podcasts": 1 + "3rd Grade English: Adventure Stories and Vocabulary Enhancement using Digital Storytelling": 1 + "3rd Grade English: Adventure Stories Interpretation and Vocabulary Enhancement with Animation Software": 1 + "3rd Grade English: Adventure Stories and Vocabulary Enhancement through Gamified Learning": 1 + "3rd Grade English: Adventure Stories Dissection and Vocabulary Enhancement using Virtual Reality": 1 + "5th Grade Science: Understanding Ecosystems and Climate Change through Carbon Footprint Analysis": 1 + "Exploring Ecosystems and Climate Change: A Case Study using pH Soil Testing in 5th Grade Science": 1 + "5th Grade Science: Ecosystems and Climate Change: A Study through Weather Forecasting Technology": 1 + "5th Grade Science: Investigating Ecosystems and Climate Change through Satellite Imaging": 1 + "Understanding Ecosystems and Climate Change with Microscopic Organisms: A 5th Grade Science Study": 1 + "5th Grade Science: Ecosystems and Climate Change: A Study with Solar Energy Utilization": 1 + "Exploring Ecosystems and Climate Change through Hydrologic Cycle: A 5th Grade Science Study": 1 + "5th Grade Science: A Study on Ecosystems and Climate Change using Air Quality Monitors": 1 + "Ecosystems and Climate Change: A 5th Grade Science Study with a Focus on Greenhouse Gases": 1 + "5th Grade Science: Exploring Ecosystems and Climate Change using Bio-indicators.": 1 + "9th Grade Biology: Exploring Genetics with PCR Technology and Gel Electrophoresis": 1 + "9th Grade Biology: A Deep Dive into DNA Sequencing and PCR Technology": 1 + "9th Grade Biology: Unraveling Genetics through PCR Technology and DNA Microarrays": 1 + "9th Grade Biology: DNA Replication and Amplification Using PCR and Thermocycler Technology": 1 + "9th Grade Biology: Delving into Genetics Using PCR and Sanger Sequencing Techniques": 1 + "9th Grade Biology: Unpacking Genetics by PCR Technology and Restriction Fragment Length Polymorphism": 1 + "9th Grade Biology: Investigating Genetics with PCR Technology and Next-Generation Sequencing": 1 + "9th Grade Biology: Genetic Exploration through PCR Technology and Southern Blotting": 1 + "9th Grade Biology: Understanding Genetics with PCR Technology and Fluorescent in-situ Hybridization": 1 + "9th Grade Biology: Exploring Genetics Applying PCR Technology and Comparative Genomic Hybridization.": 1 + "6th Grade Music: Exploring Wagner’s Operas and the Concept of Leitmotif through Digital Sound Mixing": 1 + "6th Grade Music: Understanding Wagner’s Operas and the Concept of Leitmotif Using Music Composition Software": 1 + "6th Grade Music: Decoding Wagner’s Operas and the Concept of Leitmotif through Audio Visualization Tools": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: A Deep Dive into MIDI Technology": 1 + "6th Grade Music: Introduction to Wagner’s Operas and the Concept of Leitmotif Using Virtual Instruments": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: An Analysis with Digital Sheet Music": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: A Study Using Digital Audio Workstations": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: A Journey with Music Production Software": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: Exploring with Music Theory Apps": 1 + "6th Grade Music: Wagner’s Operas and the Concept of Leitmotif: Insights from Sound Editing Tools": 1 + "3rd Grade English: Analyzing Aesop’s Fables Using iSpeech and Dragon Dictation Technology": 1 + "3rd Grade English: Storytelling with iSpeech and Adobe Spark in Fables Analysis": 1 + "3rd Grade English: Understanding Fables Using iSpeech and Google Classroom Integration": 1 + "3rd Grade English: Fables Analysis and Storytelling with iSpeech and Trello Collaboration": 1 + "3rd Grade English: Incorporating iSpeech and Microsoft OneNote in Fables Analysis": 1 + "3rd Grade English: Interactive Fables Analysis Using iSpeech and Kahoot!": 1 + "3rd Grade English: Fables Analysis and Storytelling with iSpeech and Prezi Presentations": 1 + "3rd Grade English: Fables Exploration with iSpeech and Quizlet Live Tools": 1 + "3rd Grade English: iSpeech Technology and Fables Analysis using Nearpod Interactivity ": 1 + "3rd Grade English: Storytelling Fables through iSpeech and Canva Graphic Design": 1 + "4th Grade Language Arts: Enhancing Vocabulary through Digital Crossword Puzzles using ABCmouse Software": 1 + "4th Grade Language Arts: Strengthening Vocabulary with Printed Crossword Puzzles and Word Search Tools": 1 + "4th Grade Language Arts: Expanding Vocabulary through Interactive Crossword Puzzles using Kahoot!": 1 + "4th Grade Language Arts: Boosting Vocabulary with Crossword Puzzles using Classroom Word Wall": 1 + "4th Grade Language Arts: Enriching Vocabulary through Crossword Puzzles using Smartboard Technology": 1 + "4th Grade Language Arts: Developing Vocabulary using Crossword Puzzles and Flashcards Strategies": 1 + "4th Grade Language Arts: Building Vocabulary through Crossword Puzzles using Google Classroom Platform": 1 + "4th Grade Language Arts: Improving Vocabulary with Crossword Puzzles incorporating Quizlet Study Sets": 1 + "4th Grade Language Arts: Advancing Vocabulary through Crossword Puzzles using Flipgrid Video Responses": 1 + "4th Grade Language Arts: Mastering Vocabulary with Crossword Puzzles using the Socrative Student App.": 1 + "Rugby: Enhancing 8th Grade Lineout Tactics with DJI Phantom 4 Pro Drone and 10 Unique Strategies": 1 + "Mastering Lineout Tactics in Rugby Using Parrot ANAFI Drone: An 8th Grade Physical Education Course with 10 Implementable Methods": 1 + "Rugby and Tech: 10 Ways to Improve 8th Grade Lineout Tactics with AR.Drone 2.0": 1 + "Rugby Tactics: Utilizing GoPro Hero7 in Drone Analysis of 8th Grade Lineout Tactics": 1 + "8th Grade Rugby: Perfecting Lineout Tactics with the use of Mavic 2 Pro Drone and 10 Practical Techniques": 1 + "Advanced Rugby: 8th Grade Lineout Tactics Mastery using Drones and VR Technology - 10 Innovative Approaches": 1 + "Rugby Mastery: Utilizing Yuneec Typhoon H Pro Drone in 8th Grade Lineout Tactics with 10 Comprehensive Strategies": 1 + "Rugby Lineout Tactics in 8th Grade: Mastery through DJI Inspire 2 Drone and 10 Tactical Solutions": 1 + "Rugby: 10 Effective Lineout Tactics for 8th Graders using Drones and Video Analysis Software": 1 + "Drone-Assisted Rugby: Mastering 8th Grade Lineout Tactics with Autel Robotics X-Star Premium Drone and 10 Tactical Solutions.": 1 + "5th Grade Mathematics: Dive into Division with Long Division Techniques": 1 + "5th Grade Mathematics: Exploring Fractional Division in Depth": 1 + "5th Grade Mathematics: Mastering Division with the Aid of Calculators": 1 + "5th Grade Mathematics: Learning Division through Interactive Whiteboards": 1 + "5th Grade Mathematics: Division Mastery with Abacus Techniques": 1 + "5th Grade Mathematics: Division Made Easy with Visual Models": 1 + "5th Grade Mathematics: Understanding Division through Number Lines": 1 + "5th Grade Mathematics: Exploring Division with Digital Learning Tools": 1 + "5th Grade Mathematics: Division Mastery using Mental Math Strategies": 1 + "5th Grade Mathematics: Dive into Division with Online Math Games": 1 + "5th Grade English: Exploring Poetry and Prose through Digital Storytelling": 1 + "5th Grade English: Learning Poetry and Prose with Interactive Whiteboards": 1 + "5th Grade English: Discovering Poetry and Prose using Google Docs": 1 + "5th Grade English: Analysing Poetry and Prose through the use of Mind Maps": 1 + "5th Grade English: Understanding Poetry and Prose with the aid of E-books": 1 + "5th Grade English: Decoding Poetry and Prose through Multimedia Presentations": 1 + "5th Grade English: Exploring Poetry and Prose with the help of Podcasts": 1 + "5th Grade English: Discovering Poetry and Prose using Online Discussion Boards": 1 + "5th Grade English: Learning Poetry and Prose through Virtual Reality": 1 + "5th Grade English: Mastering Poetry and Prose with the use of Digital Flashcards.": 1 + "9th Grade Geometry: Mastering Shapes and Theorems with Pythagorean Theorem": 1 + "9th Grade Geometry: Understanding Shapes and Theorems with AutoCAD": 1 + "9th Grade Geometry: Comprehending Shapes & Theorems via Constructions with Compass and Straightedge": 1 + "9th Grade Geometry: Grasping Shapes and Theorems with Geometric Proofs": 1 + "9th Grade Geometry: Understanding Shapes and Theorems using Euclid’s Elements": 1 + "9th Grade Geometry: Exploring Shapes and Theorems with Geogebra Technology": 1 + "9th Grade Geometry: Understanding Shapes and Theorems through Geometric Transformations": 1 + "9th Grade Geometry: Mastering Shapes and Theorems with Triangle Inequalities": 1 + "9th Grade Geometry: Learning Shapes and Theorems through Trigonometric Ratios and Functions": 1 + "9th Grade Geometry: Understanding Shapes and Theorems with the use of SolidWorks Software.": 1 + "6th Grade Music: Exploring Rhythms and Beats using Ableton Live Music Sequencer": 1 + "6th Grade Music: Understanding Rhythms with GarageBand Music Sequencer": 1 + "6th Grade Music: Decoding Rhythms using FL Studio’s Music Sequencer": 1 + "6th Grade Music: Breaking Down Beats with Logic Pro X Music Sequencer": 1 + "6th Grade Music: Exploring Beat Patterns using Cubase Music Sequencer": 1 + "6th Grade Music: Discovering Rhythms through Pro Tools Music Sequencer": 1 + "6th Grade Music: Unraveling Beats with Maschine Music Sequencer": 1 + "6th Grade Music: Demystifying Rhythms with Reaper Music Sequencer": 1 + "6th Grade Music: Grasping Beats with Bitwig Studio Music Sequencer": 1 + "6th Grade Music: Understanding Rhythms with Reason Studios Music Sequencer": 1 + "2nd Grade Music: Developing Basic Rhythm Concepts with Metronomes, Drumming Patterns, and Tuned Percussions": 1 + "2nd Grade Music: Amplifying Rhythm Understanding using Metronomes, Drumming Patterns, and Digital Music Software": 1 + "2nd Grade Music: Enhancing Basic Rhythm Concepts with Metronomes, Drumming Patterns, and Music Notation": 1 + "2nd Grade Music: Exploring Rhythm through Metronomes, Drumming Patterns, and Interactive Music Apps": 1 + "2nd Grade Music: Mastering Rhythm with Metronomes, Drumming Patterns, and MIDI Controllers": 1 + "2nd Grade Music: Teaching Basic Rhythm Concepts using Metronomes, Drumming Patterns, and Rhythm Flashcards": 1 + "2nd Grade Music: Building Rhythmic Skills with Metronomes, Drumming Patterns, and Electronic Drum Kits": 1 + "2nd Grade Music: Nurturing Rhythm Awareness using Metronomes, Drumming Patterns, and Music Theory Games": 1 + "2nd Grade Music: Establishing Rhythm Basics with Metronomes, Drumming Patterns, and Multicultural Percussion Instruments": 1 + "2nd Grade Music: Advancing Rhythm Comprehension using Metronomes, Drumming Patterns, and Digital Audio Workstations": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards using Smart Notebook Software": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards through PowerPoint Presentations": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards incorporating Google Slides": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards utilizing Animation": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards exploring Phonetic Sounds": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards and Touchscreen Technology": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards using Virtual Reality": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards and Digital Pen Technology": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards incorporating Microsoft OneNote": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards using Augmented Reality Technology": 1 + "3rd Grade English: Interactive Exploration of Simple Story Structures Using Story Maps": 1 + "3rd Grade English: Utilizing Storytelling Apps to Understand Simple Story Structures": 1 + "3rd Grade English: Understanding Simple Story Structures through Digital Storyboards": 1 + "3rd Grade English: Exploring Simple Story Structures with Interactive Whiteboards": 1 + "3rd Grade English: Using Powerpoint for Deconstructing Simple Story Structures": 1 + "3rd Grade English: Exploring Simple Story Structures via Interactive Animation Tools": 1 + "3rd Grade English: Comprehending Simple Story Structures with Digital Flashcards": 1 + "3rd Grade English: Learning Simple Story Structures through Online Graphic Organizers": 1 + "3rd Grade English: Enhancing Understanding of Simple Story Structures Using Smartboards ": 1 + "3rd Grade English: Exploring Simple Story Structures with E-Books and Interactive Tools": 1 + "3rd Grade English: Mastering Storytelling with Interactive Whiteboard & Google Slides": 1 + "3rd Grade English: Creative Storytelling Through Interactive Whiteboard & Digital Animation": 1 + "3rd Grade English: Storytelling Basics with Interactive Whiteboard & iPad Apps": 1 + "3rd Grade English: Storytelling Essentials with Interactive Whiteboard & Voice Recording Tools": 1 + "3rd Grade English: Developing Storytelling Skills with Interactive Whiteboard & Microsoft PowerPoint": 1 + "3rd Grade English: Storytelling Techniques using Interactive Whiteboard & Digital Storyboarding": 1 + "3rd Grade English: Storytelling Foundations with Interactive Whiteboard & Video Editing Software": 1 + "3rd Grade English: Expressive Storytelling with Interactive Whiteboard & Augmented Reality Tools": 1 + "3rd Grade English: Storytelling Basics with Interactive Whiteboard & Virtual Reality Technology": 1 + "3rd Grade English: Interactive Storytelling with Whiteboard & Cloud-Based Collaboration Platforms": 1 + "3rd Grade History: The Influence of Geometry and Archimedes’ Principle on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Role of the Lever in the Design of Ancient Roman Aqueducts": 1 + "3rd Grade History: The Impact of Geometry and the Pulley System on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: Geometry and the Use of the Wedge in Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Influence of Geometry and the Invention of the Wheel on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Application of Geometry and the Screw in Ancient Roman Aqueducts Design": 1 + "3rd Grade History: Geometry and the Use of the Inclined Plane in Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Influence of Geometry and the Concept of Buoyancy on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: Geometry and the Pythagorean Theorem in the Design of Ancient Roman Aqueducts": 1 + "3rd Grade History: The Role of Geometry and the Compass in Ancient Roman Aqueducts Design": 1 + "2nd Grade Mathematics: Exploring Fractions using Fraction Circles on The Math Learning Center’s Calculator and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Understanding Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Lego Blocks": 1 + "2nd Grade Mathematics: Visualizing Fractions with The Math Learning Center’s Calculator and Smartboard using Fraction Bars": 1 + "2nd Grade Mathematics: Diving into Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Fraction Strips": 1 + "2nd Grade Mathematics: Deconstructing Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Pizza Models": 1 + "2nd Grade Mathematics: Learning Fractions with The Math Learning Center’s Calculator and iWhiteboard using Fraction Tiles": 1 + "2nd Grade Mathematics: Exploring Fractions using Number Lines on The Math Learning Center’s Calculator and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Discovering Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Fraction Cubes": 1 + "2nd Grade Mathematics: Grasping Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Fraction Worksheets": 1 + "2nd Grade Mathematics: Building Fractions with The Math Learning Center’s Calculator and Interactive Whiteboard using Fraction Puzzles": 1 + "9th Grade Social Studies: Understanding the Role of Telegraph in the American Civil War": 1 + "9th Grade Social Studies: The Influence of Railroads during the American Civil War": 1 + "9th Grade Social Studies: The Concept of Total War in the American Civil War": 1 + "9th Grade Social Studies: The Role of Photography in the American Civil War": 1 + "9th Grade Social Studies: Medical Technologies and Practices during the American Civil War": 1 + "9th Grade Social Studies: The Impact of Ironclad Warships in the American Civil War": 1 + "9th Grade Social Studies: The Emancipation Proclamation in the Context of the American Civil War": 1 + "9th Grade Social Studies: The Role of Balloons for Reconnaissance in the American Civil War": 1 + "9th Grade Social Studies: The Introduction of Rifled Muskets in the American Civil War": 1 + "9th Grade Social Studies: The Strategic Use of Trench Warfare in the American Civil War": 1 + "5th Grade: Discovering American History Through Interactive Maps": 1 + "5th Grade: Exploring American Revolution in American History Using Augmented Reality": 1 + "5th Grade: Discovering American History: A Deep Dive into the Civil War with Virtual Reality": 1 + "5th Grade: Understanding American History: The Power of Multimedia Presentations": 1 + "5th Grade: Investigating American History: Using Digital Timelines for Learning ": 1 + "5th Grade: Discovering American History: The Influence of the Printing Press": 1 + "5th Grade: American History: Exploring Colonization through Simulation Games": 1 + "5th Grade: Discovering American History: The Impact of Telegraph on Communication": 1 + "5th Grade: American History: Learning about Industrialization Using Online Databases": 1 + "5th Grade: Discovering American History: The Role of Railroads Studied through 3D Modelling": 1 + "4th Grade Mathematics: Exploring Statistics with MS Excel through Climate Change Data": 1 + "4th Grade Mathematics: Understanding Probability in Statistics through Climate Change Data": 1 + "4th Grade Mathematics: Data Analysis of Climate Change Using Python Programming": 1 + "4th Grade Mathematics: Interpreting Statistics through Climate Change Data using Graphical Representations": 1 + "4th Grade Mathematics: Understanding Variance in Statistics through Climate Change Data": 1 + "4th Grade Mathematics: Using Google Sheets for Statistical Analysis of Climate Change Data": 1 + "4th Grade Mathematics: Deciphering Statistics through Climate Change Data using SPSS": 1 + "4th Grade Mathematics: Learning Correlation in Statistics through Climate Change Data": 1 + "4th Grade Mathematics: Understanding Regression Analysis through Climate Change Data": 1 + "4th Grade Mathematics: Analyzing Climate Change Data using Statistical Hypothesis Testing.": 1 + "2nd Grade Science: Exploring Weather Patterns with Rain Gauges and Barometers": 1 + "2nd Grade Science: Using Rain Gauges and Thermometers for Weather Pattern Investigation": 1 + "2nd Grade Science: Investigating Weather Patterns with Rain Gauges and Anemometers": 1 + "2nd Grade Science: Understanding Weather Patterns through Rain Gauges and Hygrometers": 1 + "2nd Grade Science: Analyzing Weather Patterns Using Rain Gauges and Weather Satellites": 1 + "2nd Grade Science: Studying Weather Patterns with Rain Gauges and Weather Balloons": 1 + "2nd Grade Science: Probing Weather Patterns Using Rain Gauges and Weather Vane": 1 + "2nd Grade Science: Investigating Weather Patterns with Rain Gauges and Radar Technology": 1 + "2nd Grade Science: Exploring Weather Patterns with Rain Gauges and Climatology Concepts": 1 + "2nd Grade Science: Investigating Weather Patterns Using Rain Gauges and Weather Maps.": 1 + "4th Grade History: Exploring the American Revolution with Google Cardboard Virtual Reality and Google Earth": 1 + "4th Grade History: Engaging in the American Revolution using Google Cardboard Virtual Reality and 3D Printing": 1 + "4th Grade History: Immersing in the American Revolution through Google Cardboard Virtual Reality and Augmented Reality": 1 + "4th Grade History: Discovering the American Revolution with Google Cardboard Virtual Reality and Interactive Whiteboards": 1 + "4th Grade History: Navigating the American Revolution with Google Cardboard Virtual Reality and Historical Map Technologies": 1 + "4th Grade History: Experiencing the American Revolution Adventures with Google Cardboard Virtual Reality and Time-Travel Simulations": 1 + "4th Grade History: Living the American Revolution with Google Cardboard Virtual Reality and Virtual Museum Tours": 1 + "4th Grade History: Delving into the American Revolution with Google Cardboard Virtual Reality and Podcasts": 1 + "4th Grade History: Grasping the American Revolution through Google Cardboard Virtual Reality and Gamification Strategies": 1 + "4th Grade History: Learning the American Revolution with Google Cardboard Virtual Reality and Digital Storytelling.": 1 + "2nd Grade Physical Education: Introduction to Cricket with Focus on Batting Techniques Using a Willow Bat": 1 + "2nd Grade Physical Education: Understanding Cricket Batting Techniques with a Grip Cone": 1 + "2nd Grade Physical Education: Cricket Batting Techniques and the Use of Cricket Simulator Technology": 1 + "2nd Grade Physical Education: Introduction to the Concept of Cover Drive in Cricket Batting": 1 + "2nd Grade Physical Education: Cricket Batting Techniques: Mastering the Pull Shot": 1 + "2nd Grade Physical Education: Exploring Cricket Batting Techniques with Video Analysis Software": 1 + "2nd Grade Physical Education: Introduction to Cricket and Batting Techniques: The Art of the Forward Defense": 1 + "2nd Grade Physical Education: Enhancing Cricket Skills: Batting Techniques and Use of Batting Gloves": 1 + "2nd Grade Physical Education: Cricket Batting Techniques: The Cut Shot and Batting Pads Use": 1 + "2nd Grade Physical Education: Unveiling Cricket Batting Techniques with the Aid of Smart Ball Technology": 1 + "6th Grade History: The Significance of Ancient Chinese Pagodas and the Use of Dou Gong Bracketing Systems in Tang Dynasty": 1 + "6th Grade History: Exploring the Role of Lu Ban’s Woodworking Tools in the Construction of Ancient Chinese Pagodas": 1 + "6th Grade History: Ancient Chinese Pagodas & Dou Gong: Influence of Feng Shui on Architectural Design": 1 + "6th Grade History: Ancient Chinese Pagodas, Dou Gong Systems, and the Application of Geometric Principles": 1 + "6th Grade History: The Impact of the Compass in Designing Ancient Chinese Pagodas and Dou Gong Bracketing Systems": 1 + "6th Grade History: Ancient Chinese Pagodas: A Study of Dou Gong Bracketing Systems and Bamboo Scaffolding Techniques": 1 + "6th Grade History: The Use of Abacus in Calculating Dimensions for Ancient Chinese Pagodas and Dou Gong Bracketing Systems": 1 + "6th Grade History: The Role of Ancient Chinese Pagodas in Society & Use of Dou Gong Bracketing Systems in Ming Dynasty": 1 + "6th Grade History: Ancient Chinese Pagodas and the Use of Dou Gong Bracketing Systems: Role of Bronze Casting Techniques": 1 + "6th Grade History: Ancient Chinese Pagodas and Dou Gong Bracketing Systems: Understanding the Role of Taoist Sacred Geometry.": 1 + "5th Grade History: Exploring Pyramids of Ancient Civilizations": 1 + "5th Grade History: Unveiling the Ancient Civilizations through Pottery": 1 + "5th Grade History: Decoding Ancient Civilizations with Hieroglyphics": 1 + "5th Grade History: Understanding Ancient Civilizations through Bronze Tools": 1 + "5th Grade History: Discovering Ancient Civilizations via the Wheel Technology": 1 + "5th Grade History: Unveiling Ancient Civilizations: The Role of Agriculture": 1 + "5th Grade History: The Impact of Fire in Ancient Civilizations": 1 + "5th Grade History: Ancient Civilizations and the Use of Stone Tools": 1 + "5th Grade History: Unveiling Ancient Civilizations: The Concept of Trade": 1 + "5th Grade History: The Influence of the Written Word in Ancient Civilizations": 1 + "4th Grade Science: Exploring Sound Waves with Tuning Forks": 1 + "4th Grade Science: Understanding The Science of Sound Through Oscilloscopes": 1 + "4th Grade Science: Decoding Sound Waves with Spectrographs": 1 + "4th Grade Science: The Science of Sound: An Introduction to Acoustics": 1 + "4th Grade Science: The Science of Sound: Exploring Frequency and Pitch": 1 + "4th Grade Science: Discovering the Science of Sound with Resonance Tubes": 1 + "4th Grade Science: Exploring the Science of Sound with Sonometers": 1 + "4th Grade Science: Diving into the Science of Sound with Echo and Reverberation": 1 + "4th Grade Science: Unraveling the Science of Sound with Decibel Meters": 1 + "4th Grade Science: Delving into the Science of Sound: Understanding Amplitude and Volume": 1 + "First Grade Environmental Studies: Exploring Solar Energy Through Photovoltaic Cells Using Solar Panels and Digital Multimeters": 1 + "First Grade Environmental Studies: Understanding Solar Energy Conversion Through Photovoltaic Cells and Solar Panels with Circuit Analysis": 1 + "First Grade Environmental Studies: Investigating Solar Energy Through Photovoltaic Cells Using Solar Panels and Solar Charge Controllers": 1 + "First Grade Environmental Studies: Delving into Solar Energy with Photovoltaic Cells and Solar Panels Using Microinverters": 1 + "First Grade Environmental Studies: Examining Solar Energy Through Photovoltaic Cells and Solar Panels with the Aid of Energy Meters": 1 + "First Grade Environmental Studies: Studying Solar Energy Conversion Through Photovoltaic Cells and Solar Panels with the Use of Battery Monitors": 1 + "First Grade Environmental Studies: Understanding Solar Energy Through Photovoltaic Cells and Solar Panels Using Sun Trackers": 1 + "First Grade Environmental Studies: Discovering Solar Energy Through Photovoltaic Cells Using Solar Panels and Solar Irradiance Meters": 1 + "First Grade Environmental Studies: Exploring Solar Energy Through Photovoltaic Cells and Solar Panels with Solar Regulators": 1 + "First Grade Environmental Studies: Investigating Solar Energy Through Photovoltaic Cells Using Solar Panels and Energy Storage Systems": 1 + "2nd Grade Social Studies: Exploring Our Community’s Healthcare System": 1 + "2nd Grade Social Studies: Our Community’s Mail System and Post Office Operations": 1 + "2nd Grade Social Studies: Understanding The Roles of Firefighters in Our Community": 1 + "2nd Grade Social Studies: Studying The Impact of Local Agriculture on Our Community": 1 + "2nd Grade Social Studies: Unpacking Our Community’s Recycling Program": 1 + "2nd Grade Social Studies: The Importance of Public Transportation in Our Community": 1 + "2nd Grade Social Studies: The Role of Technology in Our Community’s Education System": 1 + "2nd Grade Social Studies: Exploring Our Community’s Local Government": 1 + "2nd Grade Social Studies: Understanding The Workings of Our Community’s Police Department": 1 + "2nd Grade Social Studies: Our Community and the Use of Solar Energy": 1 + "3rd Grade Health: Understanding Nutrition through Minecraft-Based Interactive Games using Python Programming": 1 + "Interactive Nutrition Education: Incorporating VR Technology in Minecraft Games for 3rd Graders": 1 + "3rd Grade Health: Learning Nutritional Values with Minecraft and AI-enhanced Interactive Games": 1 + "Nutritional Education with Minecraft: Integrating Augmented Reality for 3rd Grade Health": 1 + "3rd Grade Health: A Nutrition Course using Minecraft-Based Games and 3D Modeling": 1 + "Digital Nutrition Education: Incorporating Coding with Minecraft Games for 3rd Graders": 1 + "3rd Grade Health: Minecraft-Based Nutritional Studies with Scratch Programming Interactive Games": 1 + "3rd Grade Nutritional Education: Using Minecraft with IoT Based Interactive Games": 1 + "Interactive Nutrition Learning: Incorporating Animation Design in Minecraft for 3rd Grade Health": 1 + "3rd Grade Health: A Deep Dive into Nutrition using Minecraft and Machine Learning Techniques.": 1 + "1st Grade Environmental Studies: Exploring Ecosystems with Stream Gauges, Soil pH Testing Kits and Microscopes": 1 + "1st Grade Environmental Studies: Unveiling Ecosystems by Stream Gauges, Soil Testing Kits and Drone Technology": 1 + "1st Grade Environmental Studies: Understanding Ecosystems through Stream Gauges, Soil Testing Kits and Rainfall Measurement": 1 + "1st Grade Environmental Studies: Discovering Ecosystems using Stream Gauges, Soil Testing Kits and the Concept of Biodiversity": 1 + "1st Grade Environmental Studies: Investigating Ecosystems with Stream Gauges, Soil Testing Kits and Satellite Imagery": 1 + "1st Grade Environmental Studies: Examining Ecosystems using Stream Gauges, Soil Testing Kits and Thermographic Cameras": 1 + "1st Grade Environmental Studies: Learning Ecosystems through Stream Gauges, Soil Testing Kits and the Principle of Food Chains": 1 + "1st Grade Environmental Studies: Probing Ecosystems with Stream Gauges, Soil Testing Kits and Seismograph Technology": 1 + "1st Grade Environmental Studies: Uncovering Ecosystems by Stream Gauges, Soil Testing Kits and the Concept of Ecological Footprints": 1 + "1st Grade Environmental Studies: Studying Ecosystems through Stream Gauges, Soil Testing Kits and the Principle of Conservation of Energy.": 1 + "Symphony History: Exploring Mozart’s Influence on Piano Forte through Sonata Form in 6th Grade Classical Music": 1 + "Symphony History: Grasping Mozart’s Influence on Piano Forte by Utilizing Sibelius Software in 6th Grade Music": 1 + "Symphony History: Unveiling Mozart’s Impact on Piano Forte with the Concept of Rondo Form in 6th Grade Classical Music": 1 + "Symphony History: Decoding Mozart’s Influence on Piano Forte using Music Analysis in 6th Grade Classical Music": 1 + "Symphony History: Mozart’s Influence on Piano Forte - A Study through the Lens of Music Theory in 6th Grade Classical Music": 1 + "Symphony History: Analyzing Mozart’s Influence on Piano Forte through the Use of Sequencer Software in 6th Grade Classical Music": 1 + "Symphony History: Probing into Mozart’s Influence on Piano Forte through the Application of Cadenza in 6th Grade Classical Music": 1 + "Symphony History: Understanding Mozart’s Influence on Piano Forte by Examining the Use of Counterpoint in 6th Grade Classical Music": 1 + "Symphony History: Interpreting Mozart’s Influence on Piano Forte with Finale Notation Software in 6th Grade Classical Music": 1 + "Symphony History: Evaluating Mozart’s Influence on Piano Forte through the Study of Orchestration in 6th Grade Classical Music": 1 + "2nd Grade Language Arts: Exploring Grammar with Interactive eBooks using Kindle": 1 + "Fun with Grammar: A 2nd Grade Language Arts Course using iPads and eBooks": 1 + "2nd Grade Language Arts: Learning Grammar through Interactive eBooks on Chromebooks": 1 + "Grammar Fun: 2nd Grade Language Arts Course using eBooks and Google Classroom": 1 + "2nd Grade Language Arts: Interactive Grammar Lessons with eBooks and Tablets": 1 + "Fun with Grammar: A 2nd Grade Language Arts Course using eBooks on Android Tablets": 1 + "2nd Grade Language Arts: Enhancing Grammar Skills with eBooks using EdTech Software": 1 + "Grammar Exploration: A 2nd Grade Language Arts Course with eBooks on Microsoft Surface": 1 + "2nd Grade Language Arts: Grammar Fun with Interactive eBooks using Interactive Whiteboards": 1 + "Interactive Grammar Learning: A 2nd Grade Language Arts Course using eBooks and Smartphones": 1 + "1st Grade Spanish: Immersive Learning of Phrases using VR Headsets and Bilingual Flashcards": 1 + "1st Grade Spanish: Language Acquisition through Oculus VR and Flashcards": 1 + "1st Grade Spanish: Interactive Learning with Google Cardboard VR and Flashcards": 1 + "1st Grade Spanish: Using Virtual Reality Technology and Flashcards with Augmented Reality": 1 + "1st Grade Spanish: Enhanced Learning Experience through VR Headsets and Interactive Flashcards": 1 + "1st Grade Spanish: Language Practice using VR Goggles and Audio-Visual Flashcards": 1 + "1st Grade Spanish: Immersive Phrases Learning through PlayStation VR and Flashcards": 1 + "1st Grade Spanish: Utilizing HTC Vive VR and Image-Based Flashcards for Language Learning": 1 + "1st Grade Spanish: Immersion Learning with VR Technology and Digital Flashcards on Tablets": 1 + "1st Grade Spanish: Language Learning through Microsoft HoloLens VR and Flashcards with QR Codes": 1 + "12th Grade Social Studies: Advanced U.S. Government with Emphasis on Constitutional Interpretation": 1 + "12th Grade Social Studies: Advanced U.S. Government and the Role of Social Media in Politics": 1 + "12th Grade Social Studies: Advanced U.S. Government - Understanding Political Campaign Strategy": 1 + "12th Grade Social Studies: Advanced U.S. Government - A Focus on Blockchain Technology in Public Services": 1 + "12th Grade Social Studies: Advanced U.S. Government - The Use of Big Data in Policy Making": 1 + "12th Grade Social Studies: Advanced U.S. Government - The Impact of Artificial Intelligence on Governance": 1 + "12th Grade Social Studies: Advanced U.S. Government - Federal Budgeting and Financial Management ": 1 + "12th Grade Social Studies: Advanced U.S. Government - Cybersecurity and National Defense": 1 + "12th Grade Social Studies: Advanced U.S. Government - The Role of Polling Technology in Elections": 1 + "12th Grade Social Studies: Advanced U.S. Government - Exploring the Impact of Satellite Technology on Surveillance.": 1 + "7th Grade Art: Designing Wildlife Portraits using Procreate App on iPad with Brush Techniques": 1 + "7th Grade Art: Creating Wildlife Portraits using Procreate App and Layering Techniques on iPad ": 1 + "7th Grade Art: Mastering Clipping Mask Feature for Wildlife Portraits in Procreate on iPad": 1 + "7th Grade Art: Designing Wildlife Portraits using Procreate App & Stencils on iPad": 1 + "7th Grade Art: Wildlife Portraiture using Procreate’s Smudge Tool on iPad": 1 + "7th Grade Art: Exploring Texture Brushes for Wildlife Portraits in Procreate on iPad": 1 + "7th Grade Art: Designing Wildlife Portraits with Procreate App & Digital Watercolor Techniques on iPad": 1 + "7th Grade Art: Creating Wildlife Portraits using Procreate App and Alpha Lock on iPad": 1 + "7th Grade Art: Wildlife Portraiture using Procreate’s Blending Modes on iPad": 1 + "7th Grade Art: Developing Wildlife Portraits with Procreate App & Gaussian Blur on iPad.": 1 + "10th Grade History: The Role of Smuggling Ships in Blockade Running during the American Revolution Era": 1 + "10th Grade History: The Effect of Navigation Tools on Blockade Running in the American Revolution Era": 1 + "10th Grade History: The Impact of Naval Blockades in the Revolutionary War: A Study on the Culper Spy Ring": 1 + "10th Grade History: The Use of Invisible Ink in Blockade Running Communications during the American Revolution Era": 1 + "10th Grade History: The Influence of Blockade Runners and their Use of Sextants during the American Revolution Era": 1 + "10th Grade History: The Role of Signal Lanterns in Blockade Running during the American Revolution Era": 1 + "10th Grade History: The Impact of Smuggling Tunnels on Blockade Running Strategies during the American Revolution Era": 1 + "10th Grade History: The Role of Horseback Riders in Blockade Running during the American Revolution Era": 1 + "10th Grade History: The Impact of Blockade Running on the American Revolution: A Focus on the Use of Ciphers": 1 + "10th Grade History: The Role of Silent Canoes in Blockade Running during the American Revolution Era": 1 + "6th Grade English: Enhancing Vocabulary with Frayer Model using Flashcards": 1 + "6th Grade English: Vocabulary Expansion with Frayer Model and Quizlet App": 1 + "6th Grade English: Vocabulary Building with Frayer Model and Interactive Whiteboards": 1 + "6th Grade English: Vocabulary Development with Frayer Model and Google Classroom": 1 + "6th Grade English: Enriching Vocabulary with Frayer Model and Microsoft Word Templates": 1 + "6th Grade English: Vocabulary Enrichment with Frayer Model and Kahoot Games": 1 + "6th Grade English: Vocabulary Improvement with Frayer Model and Smart Boards": 1 + "6th Grade English: Vocabulary Augmentation with Frayer Model and Digital Flashcards": 1 + "6th Grade English: Vocabulary Enhancement with Frayer Model and Online Dictionaries": 1 + "6th Grade English: Vocabulary Advancement with Frayer Model and PowerPoint Presentations.": 1 + "10th Grade History: The Role of Signal Flags in Naval Blockades during the Revolutionary War: A Deep Dive into the Culper Spy Ring": 1 + "10th Grade History: Invisible Ink Technology: Its Impact on Naval Blockades and the Culper Spy Ring in the Revolutionary War": 1 + "10th Grade History: The Power of Cryptography in Revolutionary War: Naval Blockades and the Culper Spy Ring": 1 + "10th Grade History: The Revolutionary War: The Culper Spy Ring and the Impact of Naval Mines in Blockades": 1 + "10th Grade History: The Revolutionary War: Submarine Warfare, Naval Blockades and the Culper Spy Ring": 1 + "10th Grade History: The Revolutionary War: The Culper Spy Ring and the Effect of Semaphore Communication in Naval Blockades": 1 + "10th Grade History: The Revolutionary War: The Impact of Cannon Technology on Naval Blockades and the Culper Spy Ring": 1 + "10th Grade History: The Revolutionary War: The Culper Spy Ring and the Influence of Frigate Design on Naval Blockades": 1 + "10th Grade History: Naval Blockades in the Revolutionary War: The Culper Spy Ring and the Operational Use of Sea Shanties": 1 + "10th Grade History: Compasses and Navigation: Their Impact on Naval Blockades and the Culper Spy Ring in the Revolutionary War": 1 + "2nd Grade Music: The Triangle and the Metronome: An Exploration of Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and Digital Audio Workstations: Mastering Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle in GarageBand: A Journey into Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and the Sound Level Meter: Unraveling the Mysteries of Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and Music Sequencing Software: Delving into Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle in Ableton Live: An In-depth Study of Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and Music Notation Software: A Practical Approach to Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and MIDI Controllers: An Interactive Exploration of Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and the Oscilloscope: A Tech-Savvy Approach to Volume and Dynamics ": 1 + "2nd Grade Music: The Triangle and Sound Spectrum Analyzers: Unleashing the Power of Volume and Dynamics": 1 + "Exploring Polar Bear Adaptation in Arctic Wildlife through Augmented Reality Using Wikitude, Microsoft HoloLens, and Google Cardboard in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Understanding Arctic Fox Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Virtual Reality Goggles": 1 + "9th Grade Social Studies: Understanding Snowy Owl Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Oculus Rift": 1 + "Investigating Reindeer Adaptation in Arctic Wildlife through Augmented Reality Using Wikitude, Microsoft HoloLens, and Leap Motion Controller in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Analyzing Arctic Hare Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and HTC Vive Pro": 1 + "Understanding Walrus Adaptation in Arctic Wildlife through Augmented Reality Using Wikitude, Microsoft HoloLens, and PlayStation VR in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Examination of Arctic Tern Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Samsung Gear VR": 1 + "9th Grade Social Studies: Unpacking Musk Oxen Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Magic Leap One": 1 + "Arctic Seal Adaptation Studies in 9th Grade Social Studies Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Zeiss VR One": 1 + "9th Grade Social Studies: Delving into Snow Bunting Adaptation Mechanisms Through Augmented Reality Using Wikitude, Microsoft HoloLens, and Google Daydream View": 1 + "Mastering 2D and 3D Shapes with Addition and Subtraction: A 1st Grade Mathematics Course Utilizing Abacus and TouchMath": 1 + "Exploring Numerical Patterns and Geometrical Shapes: A 1st Grade Mathematics Course with Abacus, Multiplication and Fraction Basics": 1 + "Understanding Basic Shapes and Numerical Counting: A 1st Grade Mathematics Course Incorporating Abacus, Multiplication and Digital Learning Tools": 1 + "Learning Shapes and Numbers through Abacus and Multiplication: A 1st Grade Mathematics Course with the Introduction of Protractors": 1 + "Distinguishing Shapes and Numbers: A 1st Grade Mathematics Course with Abacus, Multiplication and the Use of Interactive Whiteboards": 1 + "Navigating through Shapes, Numbers, and Multiplication: A 1st Grade Mathematics Course with Abacus and Introduction to Algebra": 1 + "Grasping Shapes and Numbers: A 1st Grade Mathematics Course with Abacus, Multiplication and Measurement Concepts": 1 + "Discovering Shapes and Numbers through Abacus and Multiplication: A 1st Grade Mathematics Course with the Integration of Smartboard Technology": 1 + "Understanding Shapes and Numerical Values: A 1st Grade Mathematics Course with Abacus, Multiplication and the Introduction of Calculators": 1 + "Deciphering Shapes and Numbers: A 1st Grade Mathematics Course with Abacus, Multiplication and Real-world Problem Solving Techniques.": 1 + "Exploring Tesseract Technology in Multiverse Theory: A Comprehensive 7th Grade Language Arts Course ": 1 + "Delving into Wormhole Concepts in Fourth Dimension Time Travel Science Fiction: A 7th Grade Language Arts Course": 1 + "Quantum Entanglement and its Role in Multiverse Theory: A Detailed 7th Grade Language Arts Course": 1 + "Unraveling Time Dilation in Fourth Dimension Time Travel Science Fiction: A 7th Grade Language Arts Course": 1 + "A Detailed Study of Parallel Universes in Multiverse Theory: A 7th Grade Language Arts Course": 1 + "The Impact of Teleportation Technology in Fourth Dimension Time Travel Sci-Fi: A 7th Grade Language Arts Course": 1 + "The Role of Quantum Mechanics in Multiverse Theory: An Extensive 7th Grade Language Arts Course": 1 + "Interstellar Travel and Fourth Dimension Time Travel in Science Fiction: A 7th Grade Language Arts Course": 1 + "Understanding the Role of Black Holes in Multiverse Theory: A Comprehensive 7th Grade Language Arts Course": 1 + "Fourth Dimension Time Travel and the Theory of Relativity in Science Fiction: A 7th Grade Language Arts Course": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Abacus and Number Line": 1 + "2nd Grade Mathematics: Exploring Multiplication Using Abacus and Digital Interactive Whiteboard": 1 + "2nd Grade Mathematics: The Art of Multiplication with Abacus and Flashcards": 1 + "2nd Grade Mathematics: Understanding Multiplication through Abacus and Math Manipulatives": 1 + "2nd Grade Mathematics: Interactive Multiplication with Abacus and Smartboard": 1 + "2nd Grade Mathematics: Discovering Multiplication with Abacus and Grid Paper": 1 + "2nd Grade Mathematics: Introduction to Multiplication with Abacus and Mental Math Strategies": 1 + "2nd Grade Mathematics: Mastering Multiplication with Abacus and Learning Apps": 1 + "2nd Grade Mathematics: Multiplication Made Easy with Abacus and Counters": 1 + "2nd Grade Mathematics: Fun with Multiplication using Abacus and Math Games.": 1 + "11th Grade Chemistry: Key Concepts in Organic Chemistry with Lab Experiments using Spectroscopy": 1 + "11th Grade Chemistry: A Deep Dive into Organic Chemistry with In-depth Study on Hydrocarbons": 1 + "11th Grade Chemistry: Organic Chemistry Concepts and Practical Application using Gas Chromatography": 1 + "11th Grade Chemistry: Organic Chemistry Concepts with an Emphasis on Stereochemistry": 1 + "11th Grade Chemistry: Organic Chemistry Concepts and the Role of Catalysts": 1 + "11th Grade Chemistry: Organic Chemistry Concepts with Experiments using Mass Spectrometry": 1 + "11th Grade Chemistry: Organic Chemistry and the Understanding of Molecular Structures through X-Ray Crystallography": 1 + "11th Grade Chemistry: Organic Chemistry Concepts and the Study of Functional Groups": 1 + "11th Grade Chemistry: Organic Chemistry Concepts with a Focus on NMR Spectroscopy": 1 + "11th Grade Chemistry: Organic Chemistry Concepts and the Application of Infrared Spectroscopy.": 1 + "3rd Grade Social Studies: Deciphering Local History Through Map Symbols and Map Reading using Google Earth": 1 + "3rd Grade Social Studies: Exploring Local History Through Map Symbols and Map Reading with Compass Navigation": 1 + "3rd Grade Social Studies: Interpreting Local History Through Map Symbols and Map Reading with Satellite Imagery": 1 + "3rd Grade Social Studies: Unraveling Local History Through Map Symbols and Map Reading using Geographic Information System (GIS)": 1 + "3rd Grade Social Studies: Understanding Local History Through Map Symbols and Map Reading with the Use of Topographic Maps": 1 + "3rd Grade Social Studies: Navigating Local History Through Map Symbols and Map Reading using GPS Technology": 1 + "3rd Grade Social Studies: Analyzing Local History Through Map Symbols and Map Reading with Cartographic Software": 1 + "3rd Grade Social Studies: Investigating Local History Through Map Symbols and Map Reading with Digital Mapping Tools": 1 + "3rd Grade Social Studies: Discovering Local History Through Map Symbols and Map Reading using Augmented Reality (AR) Maps": 1 + "3rd Grade Social Studies: Tracing Local History Through Map Symbols and Map Reading with the Help of Scale Models": 1 + "4th Grade Mathematics: Mastering Fractions with Fraction Bars and Virtual Manipulatives": 1 + "4th Grade Math: Fraction Basics using Fraction Bars and Interactive Whiteboard": 1 + "4th Grade Mathematics: Exploring Fractions with Fraction Bars and iPad Apps": 1 + "4th Grade Mathematics: Understanding Fraction Basics using Fraction Bars and Smartboard Technology": 1 + "4th Grade Math: Fraction Basics using Fraction Bars and Google Classroom": 1 + "4th Grade Mathematics: Fraction Basics using Fraction Bars and Learning with YouTube Tutorials": 1 + "4th Grade Mathematics: Fraction Basics using Fraction Bars and Interactive Online Games": 1 + "4th Grade Mathematics: Fraction Basics using Fraction Bars and Digital Flashcards": 1 + "4th Grade Math: Fraction Basics using Fraction Bars and Introduction to Decimal Equivalents": 1 + "4th Grade Mathematics: Fraction Basics using Fraction Bars and Utilizing Python Programming for Calculation": 1 + "4th Grade History: The Era of Exploration - Understanding the Backstaff and the Astrolabe ": 1 + "4th Grade History: The Era of Exploration - The Role of Compass in the Backstaff Era": 1 + "4th Grade History: Unraveling the Secrets of the Quadrant in the Era of Exploration": 1 + "4th Grade History: The Era of Exploration - Deciphering Maps and the Backstaff": 1 + "4th Grade History: The Era of Exploration - The Backstaff and the Art of Celestial Navigation": 1 + "4th Grade History: The Era of Exploration - Understanding the Backstaff and the Cross-staff": 1 + "4th Grade History: The Era of Exploration - The Impact of the Sextant and the Backstaff": 1 + "4th Grade History: The Era of Exploration - The Backstaff and the Intricacies of Dead Reckoning": 1 + "4th Grade History: The Era of Exploration - Understanding the Backstaff and the Chip Log": 1 + "4th Grade History: The Era of Exploration - The Backstaff and the Evolution of Timekeeping Technology": 1 + "Our Green World: Detailed Exploration of the Carbon Cycle with pH Test Kits and Microscopes for First Graders": 1 + "Exploring Nature: An In-depth Study of the Carbon Cycle using pH Test Kits and Soil Sample Analysis for First Graders": 1 + "Our Green World: Comprehensive Study of the Carbon Cycle using pH Test Kits and Interactive Digital Models for First Graders": 1 + "Eco-Ed: Detailed Examination of the Carbon Cycle using pH Test Kits and Infographics for Young Learners": 1 + "Our Green World: Carbon Cycle Analysis using pH Test Kits and Virtual Reality Technology for First Graders": 1 + "Understanding Earth: Detailed Study of the Carbon Cycle using pH Test Kits and Drone Mapping for First Graders": 1 + "Our Green World: An In-depth Look at the Carbon Cycle using pH Test Kits and Augmented Reality Apps for First Graders": 1 + "Eco Warriors: Exploring the Carbon Cycle using pH Test Kits and Satellite Imagery for First Graders": 1 + "Our Green World: Comprehensive Analysis of the Carbon Cycle using pH Test Kits and 3D Printing Technology for First Graders": 1 + "Our Green World: Studying Carbon Cycle using pH Test Kits and Time-Lapse Photography for First Graders": 1 + "10th Grade Art: Interpreting Digital Art through ArtRage’s Watercolor Brush, Airbrush Tool, and Canvas Settings": 1 + "10th Grade Art: Exploring Smudge Tool for Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: Using Layers in Digital Art Interpretation through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings with Stencil Feature": 1 + "10th Grade Art: Incorporating Oil Brush in Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: The Role of Palette Knife in Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings using Selection Tools": 1 + "10th Grade Art: Exploring the Usage of Color Picker in Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "10th Grade Art: Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings with the Aid of Gradient Fill": 1 + "10th Grade Art: Understanding the Impact of Perspective in Interpreting Digital Art through ArtRage’s Watercolor Brush and Canvas Settings": 1 + "4th Grade Art: Exploring Color Theory with Acrylic Paints, Glazing Techniques, and Brushwork": 1 + "4th Grade Art: Understanding Color Theory through Acrylic Paints, Glazing Techniques, and the Color Wheel": 1 + "4th Grade Art: Mastering Color Theory using Acrylic Paints, Glazing Techniques, and Palette Knives": 1 + "4th Grade Art: A Deep Dive into Color Theory with Acrylic Paints, Glazing Techniques, and Easel Usage": 1 + "4th Grade Art: Exploring Color Relationships through Acrylic Paints, Glazing Techniques, and Digital Art Software": 1 + "4th Grade Art: Understanding Color Theory through Acrylic Paints, Glazing Techniques, and Light Boxes": 1 + "4th Grade Art: Applying Color Theory through Acrylic Paints, Glazing Techniques, and Canvas Preparation": 1 + "4th Grade Art: Learning Color Theory with Acrylic Paints, Glazing Techniques, and Sketching": 1 + "4th Grade Art: Unfolding Color Theory with Acrylic Paints, Glazing Techniques, and the RGB model": 1 + "4th Grade Art: Discovering Color Theory through Acrylic Paints, Glazing Techniques, and the use of Mixed Media.": 1 + "Exploring Calisthenics Technique in 9th Grade Health and Fitness using Vicon Motion Capture Technology": 1 + "Understanding Calisthenics Technique in 9th Grade Health and Fitness with the Application of Inertial Motion Capture Technology": 1 + "Examining Calisthenics Technique in 9th Grade Health and Fitness through Qualisys Motion Capture System": 1 + "A Detailed Study of 9th Grade Calisthenics Technique in Health and Fitness using OptiTrack Motion Capture Technology": 1 + "Implementing Rokoko Smartsuit Pro for Understanding Calisthenics Technique in 9th Grade Health and Fitness": 1 + "Interpreting 9th Grade Calisthenics Technique in Health and Fitness using Perception Neuron Motion Capture System": 1 + "9th Grade Health and Fitness: A Detailed Analysis of Calisthenics Technique using Xsens Motion Capture Technology": 1 + "Leveraging Kinect Motion Capture for Understanding Calisthenics Technique in 9th Grade Health and Fitness": 1 + "Comprehensive Study of 9th Grade Calisthenics Technique in Health and Fitness using PhaseSpace Motion Capture System": 1 + "Analyzing 9th Grade Calisthenics Technique in Health and Fitness through the Use of Motion Analysis Corporation Technology.": 1 + "2nd Grade Science: Investigating Weather Patterns with Rain Gauges, Thermometers, and Barometers": 1 + "2nd Grade Science: Utilizing Weather Satellites for Rain Gauge and Thermometer Data Analysis": 1 + "2nd Grade Science: Decoding Weather Patterns with Rain Gauges, Thermometers, and Radar Technology": 1 + "2nd Grade Science: Studying Weather Patterns using Rain Gauges, Thermometers, and Cloud Recognition": 1 + "2nd Grade Science: Exploring Weather Prediction with Rain Gauges, Thermometers, and Anemometers": 1 + "2nd Grade Science: Using Rain Gauges and Thermometers in Weather Pattern Investigation with Hygrometers": 1 + "2nd Grade Science: Weather Pattern Investigation using Rain Gauges, Thermometers, and GIS Technology": 1 + "2nd Grade Science: Investigating Weather Patterns with Rain Gauges, Thermometers, and Wind Vanes": 1 + "2nd Grade Science: Understanding Weather Patterns with Rain Gauges, Thermometers, and Doppler Radar": 1 + "2nd Grade Science: Analyzing Weather Patterns using Rain Gauges, Thermometers, and Weather Balloons.": 1 + "4th Grade History: Exploring the American Revolution Through HTC Vive VR Tours and Interactive Timeline Activities": 1 + "4th Grade History: Navigating the American Revolution with HTC Vive VR and Google Earth": 1 + "4th Grade History: Utilizing HTC Vive VR and Augmented Reality Tools in Studying the American Revolution": 1 + "4th Grade History: The American Revolution Explored Through HTC Vive VR and 3D Printing Artifacts": 1 + "4th Grade History: Navigating the American Revolution with HTC Vive VR and Virtual Field Trips": 1 + "4th Grade History: Using HTC Vive VR and Interactive Quizzes for an Immersive American Revolution Study": 1 + "4th Grade History: Learning the American Revolution with HTC Vive VR and Podcasts": 1 + "4th Grade History: Exploring the American Revolution with HTC Vive VR and Digital Storytelling Tools": 1 + "4th Grade History: Navigating the American Revolution Using HTC Vive VR and Gamified Learning Platforms": 1 + "4th Grade History: Analyzing the American Revolution Through HTC Vive VR and Infographics Tools.": 1 + "Advanced Modern Learning: Integrating the Razer Hydra and Leap Motion for Immersive VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Modern Learning: Utilizing Razer Hydra and Oculus Rift for VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies ": 1 + "Enhancing Education with Razer Hydra: Incorporating Google Cardboard VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Modern Learning: Employing Razer Hydra and Microsoft Hololens for VR and Haptic Feedback in Teaching 6th Grade Indus Valley Civilization Studies": 1 + "Technological Integration in Modern Learning: Razer Hydra, HTC Vive and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Modern Learning: Combining Razer Hydra, PlayStation VR and Haptic Feedback for 6th Grade Indus Valley Civilization Studies": 1 + "Modern Learning: Merging Razer Hydra and Unity3D for VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Future of Education: Razer Hydra, Samsung Gear VR and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Innovative Learning: Razer Hydra, Unreal Engine and Haptic Feedback in 6th Grade Indus Valley Civilization Studies": 1 + "Modern Learning: Razer Hydra, Magic Leap and Haptic Feedback for In-Depth 6th Grade Indus Valley Civilization Studies.": 1 + "4th Grade Science: Exploring the Solar System Using Stellarium Planetarium Software": 1 + "4th Grade Science: Study of Solar System Phenomena with Starry Night Planetarium Software": 1 + "4th Grade Science: Understanding the Solar System through Universe Sandbox Simulation Software": 1 + "4th Grade Science: Investigating the Solar System using Celestia Space Simulator": 1 + "4th Grade Science: Study of the Solar System with the use of SkySafari Planetarium Software and Telescopes": 1 + "4th Grade Science: Delving into the Solar System with WorldWide Telescope Software": 1 + "4th Grade Science: Study of the Solar System and its Planetary Movements with Star Walk Planetarium Software": 1 + "4th Grade Science: A Detailed Study of the Solar System using Cosmographia Planetarium Software": 1 + "4th Grade Science: Study of the Solar System with the use of SkyGuide Planetarium Software and Analyzing Spectral Data": 1 + "4th Grade Science: Exploring the Solar System’s Planets using Solar Walk 2 Planetarium Software.": 1 + "1st Grade Physical Education: Mastering Double Dutch Jump Ropes with Smart Mat and Hula Hoop Techniques": 1 + "Enhancing Coordination Skills through Smart Mat Technology and Balance Beam Exercises in 1st Grade Physical Education": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes and Coordination Skills using Smart Mat and Agility Ladder Technology": 1 + "1st Grade Physical Education: Developing Coordination Skills with Double Dutch Jump Ropes, Smart Mat and Yoga Poses": 1 + "Double Dutch Jump Ropes and Coordination Skills with Smart Mat and Resistance Bands in 1st Grade Physical Education": 1 + "1st Grade Physical Education: Combining Double Dutch Jump Ropes and Smart Mat Technology with Pogo Stick Exercises": 1 + "1st Grade Physical Education: Improving Coordination Skills using Double Dutch Jump Ropes, Smart Mat and Jumping Jacks": 1 + "Double Dutch Jump Ropes and Coordination Enhancement with Smart Mat and Ball Throwing Techniques in 1st Grade Physical Education": 1 + "1st Grade Physical Education: Double Dutch Jump Ropes, Smart Mat Technology and Coordination Skills with Tug-of-War Games": 1 + "Incorporating Wall Climbing Techniques in 1st Grade Physical Education: Double Dutch Jump Ropes and Coordination Skills with Smart Mat Technology.": 1 + "2nd Grade Mathematics: Understanding Fractions with Zoomable Online Fraction Tiles": 1 + "2nd Grade Mathematics: Fraction Mastery using Interactive Whiteboard and Online Fraction Tiles": 1 + "2nd Grade Mathematics: Fraction Concepts in Depth with Google Classroom and Online Fraction Tiles ": 1 + "2nd Grade Math: Using Fraction Tiles on iPads to Explore Fractions": 1 + "2nd Grade Mathematics: Exploring Fractions with Online Fraction Tiles and Smartboard Integration": 1 + "2nd Grade Math: Dive into Fractions with Virtual Reality Fraction Tiles ": 1 + "2nd Grade Mathematics: Interactive Learning with Online Fraction Tiles and Digital Pen Technology": 1 + "2nd Grade Math: Fraction Exploration with Online Tiles and Augmented Reality": 1 + "2nd Grade Mathematics: Fraction Proficiency with Interactive Online Fraction Tiles and Touchscreen Displays": 1 + "2nd Grade Math: Fraction Comprehension with Online Fraction Tiles and 3D Printing Technology": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction in Everyday Life": 1 + "2nd Grade Mathematics: Real-world Applications of Multiplication and Division": 1 + "2nd Grade Mathematics: Understanding Fractions in Daily Life": 1 + "2nd Grade Mathematics: The Impact of Geometry in Everyday Life": 1 + "2nd Grade Mathematics: Discovering the Role of Measurements in Daily Activities": 1 + "2nd Grade Mathematics: The Significance of Place Value in Everyday Life": 1 + "2nd Grade Mathematics: Applying Math Patterns in Daily Life": 1 + "2nd Grade Mathematics: The Role of Digital Calculators in Everyday Mathematics": 1 + "2nd Grade Mathematics: Understanding Time and its Applications in Everyday Life": 1 + "2nd Grade Mathematics: The Influence of Money and Commerce in Daily Life": 1 + "1st Grade Social Studies: Exploring Democracy in Community Interactions through Storytelling": 1 + "1st Grade Social Studies: Understanding Democracy in Community Interactions with Role-Playing Games": 1 + "1st Grade Social Studies: The Concept of Democracy in Community Interactions: A Study through Digital Technology": 1 + "1st Grade Social Studies: Democracy and Community Interactions: Insights through Classroom Debates": 1 + "1st Grade Social Studies: Investigating Democracy in Community Interactions using Interactive Maps": 1 + "1st Grade Social Studies: The Concept of Democracy in Community Interactions: A Look through Historical Document Analysis": 1 + "1st Grade Social Studies: Democracy in Community Interactions: Learning through Animated Videos": 1 + "1st Grade Social Studies: The Concept of Democracy in Community Interactions: Exploration through Virtual Reality": 1 + "1st Grade Social Studies: Understanding Democracy in Community Interactions through Field Trips": 1 + "1st Grade Social Studies: Democracy and Community Interactions: A Study through Art and Craft Activities": 1 + "1st Grade Mathematics: Exploring Geometric Shapes using Pattern Blocks": 1 + "1st Grade Mathematics: Intro to 2D Shapes with Smartboard Technology": 1 + "1st Grade Mathematics: Understanding Circles and Squares through iPad Apps": 1 + "1st Grade Mathematics: Learning about Triangles with Interactive Whiteboards": 1 + "1st Grade Mathematics: Discovering Polygons using Virtual Reality": 1 + "1st Grade Mathematics: Introduction to Shapes with Geoboards": 1 + "1st Grade Mathematics: Exploring Rectangles using Augmented Reality": 1 + "1st Grade Mathematics: Understanding Basic Geometry with Tangram Puzzles": 1 + "1st Grade Mathematics: Discovering 3D Shapes through 3D Printing Technology": 1 + "1st Grade Mathematics: Learning about Shapes using Digital Sketching Tools": 1 + "7th Grade Social Studies: Exploring Ancient Egyptian Hieroglyphics": 1 + "7th Grade Social Studies: The Role of the Wheel in Ancient Mesopotamian Civilization": 1 + "7th Grade Social Studies: The Art of War in Ancient Chinese Dynasties": 1 + "7th Grade Social Studies: Understanding the Roman Aqueducts": 1 + "7th Grade Social Studies: The Mayan Calendar and Its Influence on Ancient Civilizations": 1 + "7th Grade Social Studies: The Pyramids: Engineering Marvels of Ancient Egypt": 1 + "7th Grade Social Studies: Agriculture and Irrigation in the Ancient Indus Valley": 1 + "7th Grade Social Studies: Ancient Greek Philosophy and Its Impact on Western Thought": 1 + "7th Grade Social Studies: The Invention of the Alphabet in Phoenician Civilization": 1 + "7th Grade Social Studies: The Use of Bronze in Ancient Sumerian Society.": 1 + "4th Grade Social Studies: Analysing 20th Century Cultural Movements through Pop Music with Spotify": 1 + "4th Grade Social Studies: Exploring 20th Century Cultural Movements through Pop Music using YouTube": 1 + "4th Grade Social Studies: Understanding 20th Century Cultural Movements with Pop Music via iTunes": 1 + "4th Grade Social Studies: Decoding 20th Century Cultural Movements through Pop Music with Pandora Radio": 1 + "4th Grade Social Studies: Tracing 20th Century Cultural Movements using Pop Music and SoundCloud": 1 + "4th Grade Social Studies: Examining 20th Century Cultural Movements through Pop Music with Apple Music": 1 + "4th Grade Social Studies: Investigating 20th Century Cultural Movements using Pop Music and Record Players": 1 + "4th Grade Social Studies: Uncovering 20th Century Cultural Movements through Pop Music with Vinyl Records": 1 + "4th Grade Social Studies: Discovering 20th Century Cultural Movements using Pop Music and Cassette Tapes": 1 + "4th Grade Social Studies: Studying 20th Century Cultural Movements through Pop Music with the Concept of Remixing": 1 + "4th Grade Social Studies: The Role of Benjamin Franklin’s Printing Press in the American Revolution": 1 + "4th Grade Social Studies: How Colonial Pamphlets Influenced the American Revolution": 1 + "4th Grade Social Studies: Broadsides and Their Impact on the Revolutionary War": 1 + "4th Grade Social Studies: The Quill Pen - A Simple Tool with Revolutionary Impact": 1 + "4th Grade Social Studies: The Power of Political Cartoons in the American Revolution": 1 + "4th Grade Social Studies: The Influence of the Cotton Gin on the American Revolution": 1 + "4th Grade Social Studies: The Impact of the Telegraph in the American Revolution": 1 + "4th Grade Social Studies: The Role of the Boston Post Road in the Spread of Revolutionary Ideas": 1 + "4th Grade Social Studies: The Use of Carrier Pigeons in the American Revolution": 1 + "4th Grade Social Studies: The Influence of Lantern Signals in the American Revolution": 1 + "VocabularySpellingCity: Using Flashcards for Enhanced Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Incorporating Digital Quizzes for Improved Grammar Punctuation Skills in 3rd Grade English.": 1 + "VocabularySpellingCity: Utilizing Interactive Whiteboard Technology for Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Implementing Gamification for Effective Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Leverage Virtual Reality for Immersive Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Exploiting Text-to-Speech Tools for Grammar Punctuation Comprehension in 3rd Grade English.": 1 + "VocabularySpellingCity: Adopting Animated Lessons for Dynamic Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Harnessing Cloud-Based Learning for Accessible Grammar Punctuation Skills in 3rd Grade English.": 1 + "VocabularySpellingCity: Applying Adaptive Learning Technology for Personalized Grammar Punctuation Learning in 3rd Grade English.": 1 + "VocabularySpellingCity: Empowering E-Learning Tools for Engaging Grammar Punctuation Learning in 3rd Grade English.": 1 + "1st Grade Environmental Studies: Utilizing Radiosondes and Doppler Radar in Cumulus Cloud Identification": 1 + "Harnessing Radiosondes and Satellites for Cloud Identification in 1st Grade Environmental Studies": 1 + "1st Grade Environmental Studies: Cumulus Cloud Observation using Radiosondes and Weather Balloons": 1 + "Radiosondes and Infrared Imaging in Cumulus Cloud Identification for 1st Grade Environmental Studies": 1 + "1st Grade Environmental Studies: Radiosondes and GIS Technology in Cloud Identification": 1 + "Radiosondes in Cloud Identification: A Study on Cumulus Clouds using Lidar Technology for 1st Graders": 1 + "1st Grade Environmental Studies: Cumulus Cloud Identification using Radiosondes and Photogrammetry Techniques": 1 + "Cumulus Cloud Observation and Identification using Radiosondes and Spectroscopy for 1st Grade Environmental Studies": 1 + "1st Grade Environmental Studies: Radiosondes and Thermographic Cameras in Cumulus Cloud Identification": 1 + "Radiosondes in Cumulus Cloud Identification: An Introduction to Weather Stations for 1st Grade Environmental Studies.": 1 + "7th Grade English: Exploring Poetry Through Google Docs Collaboration": 1 + "7th Grade English: Analyzing Poetry Using Padlet for Online Group Work": 1 + "7th Grade English: Delving into Poetry with Microsoft Teams for Interactive Learning": 1 + "7th Grade English: Understanding Poetry through Slack Discussions and Collaborations": 1 + "7th Grade English: Exploring Poetry Through the Lens of Zoom Online Collaboration": 1 + "7th Grade English: Navigating Poetry Using Trello for Classroom Collaboration": 1 + "7th Grade English: Investigating Poetry with the Help of Asana Online Tools": 1 + "7th Grade English: Poetry Exploration via Skype Collaboration Tools": 1 + "7th Grade English: Dissecting Poetry Using the Canvas Learning Management System": 1 + "7th Grade English: Delving into Poetry with Edmodo for Online Collaboration": 1 + "9th Grade Mathematics: Geometry Essentials - Exploring Circle Equations using Pythagorean Theorem": 1 + "9th Grade Mathematics: Geometry Essentials - Mastering Circle Equations with Geogebra Technology": 1 + "9th Grade Mathematics: Geometry Essentials - Understanding Circle Equations through Coordinate Geometry": 1 + "9th Grade Mathematics: Geometry Essentials - Applying Trigonometry in Circle Equations": 1 + "9th Grade Mathematics: Geometry Essentials - Circle Equations Exploration via Graphing Calculators": 1 + "9th Grade Mathematics: Geometry Essentials - Analyzing Circle Equations using Euclidean Geometry Concepts": 1 + "9th Grade Mathematics: Geometry Essentials - Circle Equations and their Applications in Real-life Scenarios": 1 + "9th Grade Mathematics: Geometry Essentials - Circle Equations with the Aid of Interactive Geometry Software": 1 + "9th Grade Mathematics: Geometry Essentials - Exploring Circle Equations through Analytic Geometry": 1 + "9th Grade Mathematics: Geometry Essentials - Deducing Circle Equations using Linear Algebra.": 1 + "5th Grade American History: Revolutionary War - The Use of Signal Flags and Spy Glasses": 1 + "5th Grade American History: Revolutionary War - The Application of Signal Flags and Secret Codes": 1 + "5th Grade American History: Revolutionary War - The Role of Signal Flags and Semaphore System": 1 + "5th Grade American History: Revolutionary War - The Impact of Signal Flags and Optical Telegraph": 1 + "5th Grade American History: Revolutionary War - Understanding Signal Flags and Pigeon Post": 1 + "5th Grade American History: Revolutionary War - The Interplay of Signal Flags and Invisible Ink": 1 + "5th Grade American History: Revolutionary War - The Importance of Signal Flags and Cryptography": 1 + "5th Grade American History: Revolutionary War - The Utilization of Signal Flags and Drum Signals": 1 + "5th Grade American History: Revolutionary War - The Integration of Signal Flags and Smoke Signals": 1 + "5th Grade American History: Revolutionary War - The Function of Signal Flags and Morse Code": 1 + "10th Grade Physical Education: The Economics of Sports - Evaluating Player Transfer Fees with Statistical Analysis Tools": 1 + "10th Grade Physical Education: The Economics of Sports - Exploring Football Player Transfer Fees using Financial Modelling Techniques": 1 + "10th Grade Physical Education: The Economics of Sports - Investigating Basketball Player Transfer Fees through Econometric Analysis": 1 + "10th Grade Physical Education: The Economics of Sports - Examining Baseball Player Transfer Fees through the Lens of Game Theory": 1 + "10th Grade Physical Education: The Economics of Sports - Assessing Soccer Player Transfer Fees using Forecasting Methods": 1 + "10th Grade Physical Education: The Economics of Sports - Understanding Cricket Player Transfer Fees through Cost-Benefit Analysis": 1 + "10th Grade Physical Education: The Economics of Sports - Analyzing Rugby Player Transfer Fees with Regression Models": 1 + "10th Grade Physical Education: The Economics of Sports - Dissecting Tennis Player Transfer Fees using Market Pricing Strategies": 1 + "10th Grade Physical Education: The Economics of Sports - Scrutinizing Golf Player Transfer Fees using Price Elasticity Concepts": 1 + "10th Grade Physical Education: The Economics of Sports - Probing Athletics Player Transfer Fees through Comparative Market Analysis": 1 + "The Impact of Iron Horseshoes on Horse Nutrition and Revolutionary War Tactics: A Detailed Study for 8th Grade History": 1 + "Exploring the Effect of Forge Technology in Horse Nutrition and Revolutionary War Strategies: An 8th Grade History Course": 1 + "The Tongs and Anvil: Their Role in Horse Nutrition and Military Maneuvers During the Revolutionary War for 8th Grade History": 1 + "The Crucial Role of the Blacksmith’s Hammer in Horse Nutrition and Revolutionary War Tactics: An 8th Grade History Course": 1 + "The Function of Quenching in Blacksmithing, Horse Nutrition and Revolutionary War Tactics: A Comprehensive 8th Grade History Course": 1 + "The Influence of the Blast Furnace on Horse Nutrition and Revolutionary War Tactics: An In-depth 8th Grade History Course": 1 + "The Impact of Blacksmith’s Bellows on Horse Nutrition and Revolutionary War Strategies: A Curated 8th Grade History Course": 1 + "Understanding the Role of Smithing Techniques in Horse Nutrition and Military Tactics During the Revolutionary War: An 8th Grade History Course": 1 + "The Role of Blacksmith’s Pliers in Horse Nutrition and Revolutionary War Strategies: An Engaging 8th Grade History Course": 1 + "Forge Welding’s Impact on Horse Nutrition and Revolutionary War Tactics: An 8th Grade History Course.": 1 + "10th Grade Music: Exploring Beethoven’s Symphonies through Music Theory and Piano": 1 + "10th Grade Music: Analyzing Mozart’s Sonatas using Music Theory and Sibelius Software": 1 + "10th Grade Music: A Deep Dive into Chopin’s Nocturnes using Music Theory and MIDI Controllers": 1 + "10th Grade Music: Understanding Wagner’s Operas through Music Theory and Digital Audio Workstations": 1 + "10th Grade Music: Appreciating Vivaldi’s Concertos through Music Theory and Notation Software": 1 + "10th Grade Music: A Study of Bach’s Fugues using Music Theory and Synthesizers": 1 + "10th Grade Music: Discovering Tchaikovsky’s Ballets through Music Theory and Virtual Instruments": 1 + "10th Grade Music: A Journey through Handel’s Oratorios using Music Theory and Music Production Software": 1 + "10th Grade Music: Exploring Schubert’s Lieder through Music Theory and Digital Sampling": 1 + "10th Grade Music: Unraveling Verdi’s Operas using Music Theory and Music Sequencing Software": 1 + "4th Grade History: The Era of Exploration - Understanding Caravels, the Invention of the Chronometer, and the Revolutionary Nocturnal Device through the Use of Compass": 1 + "The Age of Discovery: An In-depth Study on Caravels, Chronometer, Nocturnal Device, and the Impact of Astrolabe in 4th Grade History": 1 + "4th Grade History: The Influence of Quadrants in the Era of Exploration - A Journey through Caravels, Chronometers and Nocturnals ": 1 + "4th Grade History: The Era of Exploration - Examining Caravels, Chronometers, Nocturnals and the Role of Cross-Staff": 1 + "The Era of Exploration: 4th Grade History - Unveiling Caravels, Chronometers, Nocturnals and the Revolutionary Sextant": 1 + "4th Grade History: Caravels, Chronometers, Nocturnals and the Significance of Armillary Spheres in the Era of Exploration": 1 + "Sailing through 4th Grade History: The Era of Exploration with Caravels, Chronometers, Nocturnals and the Introduction of Jacob’s Staff": 1 + "4th Grade History: The Era of Exploration - Caravels, Chronometers, Nocturnals and the Backstaff: A New Perspective": 1 + "Exploring the Era: A 4th Grade History Course on Caravels, Chronometers, Nocturnals and the Innovative Use of Astrolabe": 1 + "4th Grade History: Caravels, Chronometers, Nocturnals and the Pivotal Role of the Quadrant in the Era of Exploration": 1 + "1st Grade Language Arts: Utilizing Phonics in Reading Comprehension": 1 + "1st Grade Language Arts: Implementing Story Maps for Improved Reading Comprehension": 1 + "1st Grade Language Arts: Using Digital Storybooks to Enhance Reading Comprehension": 1 + "1st Grade Language Arts: Introduction to Reading Comprehension with Flashcards": 1 + "1st Grade Language Arts: Reading Comprehension through Interactive Whiteboards": 1 + "1st Grade Language Arts: Reading Comprehension with Guided Reading Strategies": 1 + "1st Grade Language Arts: Introduction to Reading Comprehension using iPad Apps": 1 + "1st Grade Language Arts: Enhancing Reading Comprehension through Audio Books": 1 + "1st Grade Language Arts: Reading Comprehension Improvement with Sentence Strips": 1 + "1st Grade Language Arts: Boosting Reading Comprehension using Word Walls.": 1 + "4th Grade History: The First American Settlers - Exploring the Use of the Bow and Arrow, along with Stone Tools": 1 + "4th Grade History: Early American Settlers - The Birth of Agriculture and Bow and Arrow Usage": 1 + "4th Grade History: First American Settlers - The Introduction of Pottery and the Bow and Arrow": 1 + "4th Grade History: First American Settlers - Understanding the Bow and Arrow and the Atlatl": 1 + "4th Grade History: The First American Settlers - The Bow, Arrow, and Hide Tanning Techniques": 1 + "4th Grade History: Early American Settlers - The Use of the Bow and Arrow and the Invention of the Canoe": 1 + "4th Grade History: The First American Settlers - Bow and Arrow Use and the Development of Weaving": 1 + "4th Grade History: The First American Settlers - Introduction to the Bow and Arrow and the Concept of Trade": 1 + "4th Grade History: First American Settlers - Incorporating the Bow, Arrow, and Indigenous Medicine": 1 + "4th Grade History: The First American Settlers - The Bow, Arrow, and the Art of Basket Weaving": 1 + "1st Grade Mathematics: Understanding Basic Geometry with Tangram Puzzles Using Interactive Whiteboard": 1 + "1st Grade Mathematics: Exploring Basic Geometry with Tangram Puzzles and 3D Modeling Software": 1 + "1st Grade Mathematics: Mastering Basic Geometry with Tangram Puzzles and Digital Smartboard": 1 + "1st Grade Mathematics: Grasping Basic Geometry using Tangram Puzzles and Virtual Reality Technology": 1 + "1st Grade Mathematics: Understanding Basic Geometry with Tangram Puzzles through Augmented Reality": 1 + "1st Grade Mathematics: Discovering Basic Geometry with Tangram Puzzles and iPad Apps": 1 + "1st Grade Mathematics: Learning Basic Geometry with Tangram Puzzles and Python Programming": 1 + "1st Grade Mathematics: Studying Basic Geometry with Tangram Puzzles and Geogebra Software": 1 + "1st Grade Mathematics: Comprehending Basic Geometry using Tangram Puzzles and Geometric Construction Tools": 1 + "1st Grade Mathematics: Delving into Basic Geometry with Tangram Puzzles and Minecraft Game": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division with Abacus": 1 + "3rd Grade Mathematics: Utilizing Interactive Online Tools for Multiplication and Division": 1 + "3rd Grade Mathematics: Mastering Multiplication and Division Through Gamification": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division Using Math Apps": 1 + "3rd Grade Mathematics: Discovering Multiplication and Division with Physical Manipulatives": 1 + "3rd Grade Mathematics: Applying the Times Tables in Multiplication and Division": 1 + "3rd Grade Mathematics: Integrating Smartboards in Learning Multiplication and Division": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division Through Problem Solving": 1 + "3rd Grade Mathematics: Learning Multiplication and Division with Digital Flashcards": 1 + "3rd Grade Mathematics: Understanding Multiplication and Division through Visual Representation Tools": 1 + "4th Grade Language Arts: Deciphering Characters through Role-Playing and Augmented Reality utilizing Google Expeditions": 1 + "Interactive 4th Grade Language Arts: Deciphering Characters using Minecraft Education and Role-Playing": 1 + "Exploring Character Deciphering in 4th Grade Language Arts through Role-Playing and Augmented Reality with ClassVR ": 1 + "4th Grade Language Arts: Deciphering Characters using Role-Playing and ARKit Augmented Reality": 1 + "Immersive 4th Grade Language Arts: Character Deciphering using Role-Playing and Merge Cube Augmented Reality": 1 + "4th Grade Language Arts: Deciphering Characters with Kodu Game Lab and Role-Playing Adventures": 1 + "Engaging 4th Grade Language Arts: Deciphering Characters using Role-Playing and Augmented Reality with Aurasma": 1 + "4th Grade Language Arts: Deciphering Characters using Role-Playing and ARToolKit Augmented Reality": 1 + "4th Grade Language Arts: Deciphering Characters using Role-Playing and Augmented Reality with SketchUp Viewer": 1 + "In-depth 4th Grade Language Arts: Deciphering Characters through Role-Playing and Augmented Reality using Blippar": 1 + "8th Grade Social Studies: The Role of Democracy and its Evolution: Exploring the Impact of Alexander Graham Bell’s Telephone on Voting Systems.": 1 + "Technological Advancements in Democracy: How the Telegraph Revolutionized 8th Grade Social Studies.": 1 + "Decoding Morse Code: The Evolution of Democracy in 8th Grade Social Studies.": 1 + "8th Grade Social Studies: The Role of the Printing Press in the Evolution of Democracy.": 1 + "Understanding Democracy: The Impact of Early Broadcasting Technologies in 8th Grade Social Studies.": 1 + "8th Grade Social Studies: The Role of the Internet in the Evolution of Democracy.": 1 + "From Papyrus to PDF: The Impact of Written Communication Tools on Democracy in 8th Grade Social Studies.": 1 + "8th Grade Social Studies: The Influence of the Radio on Democratic Processes.": 1 + "Democracy Through a New Lens: The Impact of Television on 8th Grade Social Studies.": 1 + "8th Grade Social Studies: Social Media’s Role in Modern Democracy and its Evolution.": 1 + "2nd Grade Art: Exploring Landscape Drawing with Digital Oil Paints on iPad Pro using Procreate and Wacom Stylus Pen": 1 + "2nd Grade Art: Mastering Landscape Drawing with Digital Oil Paints on Galaxy Tab S6 and Wacom Stylus Pen using Autodesk Sketchbook": 1 + "2nd Grade Art: Learning Landscape Drawing with Digital Oil Paints on Surface Pro 7 with Adobe Fresco and Wacom Stylus Pen": 1 + "2nd Grade Art: Creating Landscapes with Digital Oil Paints on Amazon Fire HD 10 Tablet using ArtRage and Wacom Stylus Pen": 1 + "2nd Grade Art: Discovering Landscape Drawing with Digital Oil Paints on Lenovo Tab M10 Plus using Infinite Painter and Wacom Stylus Pen": 1 + "2nd Grade Art: Enhancing Landscape Drawing with Digital Oil Paints on iPad Air using Sketches Pro and Wacom Stylus Pen": 1 + "2nd Grade Art: Understanding Landscape Drawing with Digital Oil Paints on Huawei MediaPad M5 Lite using Tayasui Sketches and Wacom Stylus Pen": 1 + "2nd Grade Art: Nurturing Creativity through Landscape Drawing with Digital Oil Paints on Samsung Galaxy Tab A using Paintstorm Studio and Wacom Stylus Pen": 1 + "2nd Grade Art: Unveiling Landscape Drawing with Digital Oil Paints on iPad Mini using Concepts App and Wacom Stylus Pen": 1 + "2nd Grade Art: Developing Art Skills through Landscape Drawing with Digital Oil Paints on Acer Iconia One 10 using Medibang Paint and Wacom Stylus Pen": 1 + "2nd Grade Music: Mastering Rhythm with a Tambourine and Online Music Games Using GarageBand": 1 + "2nd Grade Music: Exploring Melodies through a Tambourine and Music Theory with Online Games": 1 + "2nd Grade Music: Understanding Rhythm in Music with Tambourine, Online Games, and Metronome Use": 1 + "2nd Grade Music: Rhythm and Melody Exploration with Tambourine, Digital Audio Workstations, and Online Games": 1 + "2nd Grade Music: Interactive Learning of Music Notes and Melodies with a Tambourine and Soundtrap Online Games": 1 + "2nd Grade Music: Learn Music Notes and Melodies using a Tambourine, Online Games, and Music Composition Software": 1 + "2nd Grade Music: Exploring the Rhythm and Melodies with a Tambourine, Online Games, and MIDI Controllers": 1 + "2nd Grade Music: Discovering Music Patterns with a Tambourine, Online Games, and Notation Software": 1 + "2nd Grade Music: Tambourine Rhythms, Melodies, and Online Games Enhanced with Virtual Instruments": 1 + "2nd Grade Music: Rhythm and Melodies - A Tambourine and Online Games Approach with Audio Editing Tools.": 1 + "2nd Grade Introduction to Algebra: Exploring Number Patterns with Abacus": 1 + "2nd Grade Introduction to Algebra: Utilizing the Number Line in Number Patterns": 1 + "2nd Grade Introduction to Algebra: Discovering Number Patterns with Digital Tools": 1 + "2nd Grade Introduction to Algebra: Exploring Number Patterns using Math Manipulatives": 1 + "2nd Grade Introduction to Algebra: Understanding Number Patterns through Times Tables": 1 + "2nd Grade Introduction to Algebra: Exploring Number Patterns with Graphing Calculator": 1 + "2nd Grade Introduction to Algebra: Mastering Number Patterns using Interactive Whiteboards": 1 + "2nd Grade Introduction to Algebra: Experimenting Number Patterns with Math Games": 1 + "2nd Grade Introduction to Algebra: Decoding Number Patterns using Fraction Bars": 1 + "2nd Grade Introduction to Algebra: Exploring Number Patterns with Geometric Shapes.": 1 + "1st Grade Reading: Enhancing Story Comprehension and Character Analysis using Phonics and Interactive eBooks": 1 + "1st Grade Reading: Story Comprehension and Character Analysis using Phonics and Augmented Reality Technology": 1 + "1st Grade Reading: Story Comprehension and Character Analysis: Integrating Phonics with Digital Storytelling Tools": 1 + "1st Grade Reading: Expanding Story Comprehension and Character Analysis through Phonics and Voice Recognition Software": 1 + "1st Grade Reading: Story Comprehension and Character Analysis with Phonics and Animation Tools": 1 + "1st Grade Reading: Story Comprehension and Character Analysis using Phonics and Touch Screen Technology": 1 + "1st Grade Reading: Story Comprehension and Character Analysis: Phonics and Gamification Techniques": 1 + "1st Grade Reading: Story Comprehension and Character Analysis with Phonics and Virtual Reality": 1 + "1st Grade Reading: Improving Story Comprehension and Character Analysis using Phonics and Text-to-Speech Software": 1 + "1st Grade Reading: Story Comprehension and Character Analysis using Phonics and Interactive Whiteboards": 1 + "2nd Grade Science: Exploring Frog Life Cycles with Virtual Reality Dissections": 1 + "2nd Grade Science: Introduction to Amphibian Life Cycles using Microscope-Assisted Dissections": 1 + "2nd Grade Science: Detailed Study of Salamander Life Cycles through Digital Imaging Dissections": 1 + "2nd Grade Science: Exploring Newt Life Cycles with 3D Printed Models and Dissections": 1 + "2nd Grade Science: Discovering Amphibian Life Cycles with Augmented Reality Dissections": 1 + "2nd Grade Science: Practical Examination of Toad Life Cycles with Laser Pointer Dissections": 1 + "2nd Grade Science: Comprehensive Study of Amphibian Life Cycles using High-Resolution Scanning Dissections": 1 + "2nd Grade Science: In-depth Study of Frog Life Cycles through Smartboard Displayed Dissections": 1 + "2nd Grade Science: Learning about Amphibian Life Cycles with Interactive App-based Dissections": 1 + "2nd Grade Science: Understanding Salamander Life Cycles with Hands-on Dissections using Dissection Kits.": 1 + "4th Grade Language Arts: Exploring Poetry with Haikus using Interactive Whiteboards": 1 + "4th Grade Language Arts: A Journey into Poetry with Haikus and Digital Storytelling": 1 + "4th Grade Language Arts: Using Google Classroom to Explore Poetry with Haikus": 1 + "4th Grade Language Arts: Delving into Poetry with Haikus and Online Collaboration Tools": 1 + "4th Grade Language Arts: Exploring Poetry with Haikus through Virtual Reality": 1 + "4th Grade Language Arts: Integrating iPads in Exploring Poetry with Haikus": 1 + "4th Grade Language Arts: A Deep Dive into Poetry with Haikus using Mind Mapping Tools": 1 + "4th Grade Language Arts: Using Augmented Reality to Explore Poetry with Haikus": 1 + "4th Grade Language Arts: Poetry Exploration with Haikus and Podcasting": 1 + "4th Grade Language Arts: Exploring Poetry with Haikus using Digital Animation Tools": 1 + "9th Grade Language Arts: Analyzing Symbolism in Romantic Poetry Using Prezi Presentations and Google Docs": 1 + "9th Grade Language Arts: Exploring Symbolism in Modern Poetry Through Prezi Presentations and Padlet Boards": 1 + "9th Grade Language Arts: Understanding Symbolism in Classical Poetry Through Prezi Presentations and Kahoot Quizzes": 1 + "9th Grade Language Arts: Deciphering Symbolism in Poetry with Prezi Presentations and Flipgrid Discussions": 1 + "9th Grade Language Arts: Interpreting Symbolism in American Poetry Using Prezi Presentations and Quizlet Flashcards": 1 + "9th Grade Language Arts: Unveiling Symbolism in English Poetry Through Prezi Presentations and Interactive Whiteboards": 1 + "9th Grade Language Arts: Studying Symbolism in Poetry Using Prezi Presentations and Collaborative Google Slides": 1 + "9th Grade Language Arts: Comprehending Symbolism in Metaphysical Poetry Through Prezi Presentations and Virtual Reality Technology": 1 + "9th Grade Language Arts: Exploring Symbolism in Contemporary Poetry Using Prezi Presentations and Digital Storytelling Tools": 1 + "9th Grade Language Arts: Unraveling Symbolism in Poetry Through Prezi Presentations and Mind Mapping Software": 1 + "2nd Grade Science: Utilizing DJI Phantom Drones for Detailed Animal Habitat Surveys through 3D Mapping Technology": 1 + "2nd Grade Science: Implementing Geographic Information Systems (GIS) in Drone-based Animal Habitat Surveys using 3D Mapping Technology": 1 + "2nd Grade Science: Applying LIDAR Technology in Drone-based Animal Habitat Surveys with 3D Mapping": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping and Thermal Imaging Technology": 1 + "2nd Grade Science: Drone-based Aquatic Animal Habitat Surveys using 3D Mapping and Sonar Technology": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping and Satellite Imagery Integration": 1 + "2nd Grade Science: Exploring Bat Habitats through Drone-based Surveys using 3D Mapping and Echolocation Technology": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping and Infrared Camera Technology": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping and GPS Tracking Technology": 1 + "2nd Grade Science: Drone-based Animal Habitat Surveys using 3D Mapping and Data Analysis with Python Programming.": 1 + "5th Grade Mathematics: Mastering Division with the Aid of Scientific Calculators": 1 + "5th Grade Mathematics: Mastering Division using TI-84 Plus Calculator": 1 + "5th Grade Mathematics: Mastering Division with Excel Spreadsheets": 1 + "5th Grade Mathematics: Mastering Division through Python Programming": 1 + "5th Grade Mathematics: Mastering Division with the Aid of Mobile Calculator Apps": 1 + "5th Grade Mathematics: Mastering Division using Online Calculator Tools": 1 + "5th Grade Mathematics: Mastering Division with the Aid of Geogebra": 1 + "5th Grade Mathematics: Mastering Division using Casio FX-991ES Calculator": 1 + "5th Grade Mathematics: Mastering Division with the Aid of Mathway Calculator": 1 + "5th Grade Mathematics: Mastering Division using Long Division Method.": 1 + "2nd Grade Music: Creating Latin Rhythmic Patterns with a Tambourine and a Metronome through GarageBand Software on iPad": 1 + "Interactive Whiteboard and GarageBand: A Deep Dive into African Rhythmic Patterns with Tambourine for 2nd Grade Music Students ": 1 + "2nd Grade Music: Exploring Jazz Rhythmic Patterns with Tambourine, Maracas, and GarageBand Software": 1 + "2nd Grade Music: Understanding Polyrhythms with Tambourine using GarageBand Software and Interactive Whiteboard": 1 + "2nd Grade Music: Introduction to Syncopation with Tambourine through GarageBand Software and SmartBoard Technology": 1 + "Exploring Rhythmic Patterns: Using Tambourine and GarageBand Software for Cross-Rhythm Studies in 2nd Grade Music": 1 + "2nd Grade Music: Learning Swing Rhythms with Tambourine, Beat Sequencer in GarageBand Software, and Interactive Whiteboard": 1 + "2nd Grade Music: Beat Division and Rhythm Patterns with Tambourine through GarageBand and Interactive Whiteboard Technology": 1 + "2nd Grade Music: Tambourine Rhythmic Patterns and MIDI Mapping on GarageBand Software via Interactive Whiteboard": 1 + "2nd Grade Music: Exploring Rhythmic Structures with Tambourine, GarageBand Software and Interactive Whiteboard Projector.": 1 + "2nd Grade Mathematics: Unraveling the Mystery of Fractions using Google’s Online Fraction Calculator and Number Lines": 1 + "2nd Grade Mathematics: Mastering Fractions through Google’s Online Fraction Calculator and Interactive Whiteboard": 1 + "2nd Grade Mathematics: Exploring Fractions with Google’s Online Fraction Calculator and Manipulatives": 1 + "2nd Grade Mathematics: Understanding Fractions using Google’s Online Fraction Calculator and Fraction Strips": 1 + "2nd Grade Mathematics: Learning Fractions with Google’s Online Fraction Calculator and Virtual Fraction Bars": 1 + "2nd Grade Mathematics: Discovering Fractions through Google’s Online Fraction Calculator and Fraction Circles": 1 + "2nd Grade Mathematics: Grasping Fractions using Google’s Online Fraction Calculator and Fraction Tiles": 1 + "2nd Grade Mathematics: Navigating Fractions with Google’s Online Fraction Calculator and Fraction Models": 1 + "2nd Grade Mathematics: Deciphering Fractions using Google’s Online Fraction Calculator and Fraction Worksheets": 1 + "2nd Grade Mathematics: Demystifying Fractions with Google’s Online Fraction Calculator and Fraction Games": 1 + "3rd Grade Mathematics: Exploring Multiplication and Division using Google Slides on Google Classroom": 1 + "3rd Grade Mathematics: Mastering Multiplication and Division with Google Forms on Google Classroom": 1 + "3rd Grade Mathematics: Understanding Multiplication and Division using Google Docs Interactive Tools": 1 + "3rd Grade Mathematics: Enhancing Multiplication and Division Skills with Google Drawings on Google Classroom": 1 + "3rd Grade Mathematics: Learning Multiplication and Division through Google Sheets on Google Classroom": 1 + "3rd Grade Mathematics: Simplifying Multiplication and Division using Google Classroom’s Jamboard": 1 + "3rd Grade Mathematics: Interactive Multiplication and Division Lessons using Google Sites on Google Classroom": 1 + "3rd Grade Mathematics: Grasping Multiplication and Division using Google Classroom’s CS First Tool": 1 + "3rd Grade Mathematics: Becoming Proficient in Multiplication and Division through Google Classroom’s Applied Digital Skills": 1 + "3rd Grade Mathematics: Excelling in Multiplication and Division using Google Classroom’s Google Earth Projects": 1 + "3rd Grade English: Using Adobe Animate for Incorporating Japanese Anime in Storytelling": 1 + "3rd Grade English: Leveraging iPad Apps to Incorporate Indian Folklore Animation in Storytelling": 1 + "3rd Grade English: Incorporating African Tribal Animation in Storytelling via Procreate": 1 + "3rd Grade English: Storytelling with Chinese Shadow Puppet Animation using PowerPoint": 1 + "3rd Grade English: Storytelling through Native American Animation using Sketchbook Pro": 1 + "3rd Grade English: Using Stop Motion Animation to Incorporate Italian Fable in Storytelling": 1 + "3rd Grade English: Adobe Spark for Incorporating Greek Mythology Animation in Storytelling": 1 + "3rd Grade English: Incorporating Celtic Animation in Storytelling Using Toon Boom Harmony": 1 + "3rd Grade English: Using FlipaClip for Mexican Folklore Animation in Storytelling": 1 + "3rd Grade English: Storytelling with Australian Aboriginal Animation using After Effects": 1 + "6th Grade Music: Mastering Beats with Bitwig Studio Music Sequencer using MIDI Controllers": 1 + "6th Grade Music: Understanding Tempo with Bitwig Studio Music Sequencer and Metronome": 1 + "6th Grade Music: Utilizing Automation in Beats Creation with Bitwig Studio Music Sequencer": 1 + "6th Grade Music: Exploring Bitwig Studio Music Sequencer and Sampling Techniques for Beats": 1 + "6th Grade Music: Layering Sounds in Beats with Bitwig Studio Music Sequencer and VST Plugins": 1 + "6th Grade Music: Rhythm Creation with Bitwig Studio Music Sequencer and Drum Machine": 1 + "6th Grade Music: Mixing and Mastering Beats with Bitwig Studio Music Sequencer and Equalization Techniques": 1 + "6th Grade Music: Sound Design for Beats with Bitwig Studio Music Sequencer and Synthesizers": 1 + "6th Grade Music: Beat Sequencing with Bitwig Studio Music Sequencer and Looping Techniques": 1 + "6th Grade Music: Bitwig Studio Music Sequencer and the Art of Beat Arrangement using Sidechain Compression.": 1 + "Mastering Carry Over in 2nd Grade Addition with the SplashLearn App using Gamification Techniques": 1 + "Improving 2nd Grade Addition Skills: Using SplashLearn App and Interactive Whiteboards": 1 + "Mastering Carry Over in 2nd Grade Addition: A Deep Dive into SplashLearn App’s Animated Lessons": 1 + "Harnessing the Power of Flashcards in Mastering Carry Over with the SplashLearn App": 1 + "Using the SplashLearn App to Master Carry Over in 2nd Grade Addition with Virtual Manipulatives": 1 + "Mastering Carry Over in 2nd Grade Addition: SplashLearn App Enhanced with Augmented Reality": 1 + "Improve 2nd Grade Addition with Carry Over: A Detailed Guide to SplashLearn App’s Multiplayer Mode": 1 + "SplashLearn App and Tablets: Mastering Carry Over in 2nd Grade Addition ": 1 + "Mastering Carry Over in 2nd Grade Addition with the SplashLearn App: Exploring the Quiz Feature": 1 + "Integrating SplashLearn App with Smartboards for Effective Mastery of Carry Over in 2nd Grade Addition.": 1 + "9th Grade Health: Understanding Macronutrients through Nutritional Biochemistry and Role of Dietary Fibers": 1 + "Exploring Nutritional Biochemistry: A Comprehensive Study on Macronutrients with Specific Focus on Glycemic Index in 9th Grade Health": 1 + "9th Grade Health: The Impact of Macronutrients on Body and Wellness - An Insight into Nutritional Biochemistry with Calorie Counting": 1 + "Nutrition and Wellness in 9th Grade Health: A Detailed Study on Macronutrients using Food Pyramid Concept": 1 + "Nutritional Biochemistry and Macronutrients: A 9th Grade Health Course Incorporating the use of Nutritional Analysis Software": 1 + "9th Grade Health: Macronutrients, Nutritional Biochemistry and Application of MyPlate Dietary Guidelines": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry with a Focus on BMR Calculation": 1 + "Nutrition and Wellness for 9th Grade: A Deep Dive into Macronutrients with Nutritional Biochemistry using the DASH Diet": 1 + "9th Grade Health: Understanding Macronutrients and Nutritional Biochemistry with the Use of Nutri-Score Labeling System": 1 + "9th Grade Health: A Study of Macronutrients, Nutritional Biochemistry, and the Role of Omega-3 Fatty Acids.": 1 + "1st Grade Spanish: Enhancing Vocabulary with Anki App, Google Translate, and Duolingo: 10 Strategies to Master the Language": 1 + "1st Grade Spanish: Expanding Vocabulary through Interactive Flashcards using Google Translate, Anki App, and Quizlet ": 1 + "1st Grade Spanish: Boosting Vocabulary with Anki App, Google Translate, and Rosetta Stone: 10 Effective Techniques": 1 + "1st Grade Spanish: Augmenting Vocabulary via Interactive Flashcards using Google Translate, Anki App, and Kahoot Games": 1 + "1st Grade Spanish: Building Vocabulary with Anki App, Google Translate, and Babbel: 10 Unique Methods": 1 + "1st Grade Spanish: Increasing Vocabulary through Interactive Flashcards using Google Translate, Anki App, and Memrise ": 1 + "1st Grade Spanish: Advancing Vocabulary with Anki App, Google Translate, and FluentU: 10 Innovative Approaches": 1 + "1st Grade Spanish: Developing Vocabulary via Interactive Flashcards using Google Translate, Anki App, and Busuu ": 1 + "1st Grade Spanish: Enriching Vocabulary with Anki App, Google Translate, and Lingvist: 10 Proven Techniques": 1 + "1st Grade Spanish: Amplifying Vocabulary through Interactive Flashcards using Google Translate, Anki App, and Tandem: 10 Successful Methods": 1 + "7th Grade History: Deep Dive into the Constitution using Virtual Reality": 1 + "7th Grade History: Analyzing the Constitution through Interactive 3D Models": 1 + "7th Grade History: Decoding the Constitution with Digital Mind Maps": 1 + "7th Grade History: Understanding the Constitution through Augmented Reality": 1 + "7th Grade History: Exploring the Constitution using Gamification Techniques": 1 + "7th Grade History: Studying the Constitution with AI-Assisted Learning Tools": 1 + "7th Grade History: Unraveling the Constitution through Podcasts and Audio Resources": 1 + "7th Grade History: Navigating the Constitution using Online Collaboration Tools": 1 + "7th Grade History: Breaking Down the Constitution with Educational Software ": 1 + "7th Grade History: Interpreting the Constitution using Interactive Whiteboard Activities": 1 + "2nd Grade English: Mastering Preposition Placement in Sentence Structure using Quizlet Flashcards & Google Classroom": 1 + "2nd Grade English: Enhancing Preposition Use in Sentences with Quizlet Flashcards & Interactive Whiteboards": 1 + "2nd Grade English: Perfecting Preposition Placement using Quizlet Flashcards & Kahoot Games": 1 + "2nd Grade English: Improving Preposition Usage in Sentence Structure with Quizlet Flashcards & Nearpod Activities": 1 + "2nd Grade English: Developing Preposition Placement Skills in Sentences using Quizlet Flashcards & Smartboard Technology": 1 + "2nd Grade English: Strengthening Preposition Placement in Sentence Structure with Quizlet Flashcards & Flipgrid Discussions": 1 + "2nd Grade English: Learning Preposition Placement in Sentences using Quizlet Flashcards & Seesaw Assignments": 1 + "2nd Grade English: Perfecting Preposition Placement with Quizlet Flashcards & Padlet Collaboration": 1 + "2nd Grade English: Excelling in Preposition Use in Sentence Structure using Quizlet Flashcards & Edpuzzle Videos": 1 + "2nd Grade English: Advancing Preposition Placement Skills in Sentences with Quizlet Flashcards & Pear Deck Presentations": 1 + "8th Grade Physical Education: The Science of Sports and the Application of Biomechanics": 1 + "8th Grade Physical Education: The Science of Sports and the Use of Heart Rate Monitors": 1 + "8th Grade Physical Education: The Science of Sports and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports and the Impact of Aerodynamics": 1 + "8th Grade Physical Education: The Science of Sports and the Importance of Hydration": 1 + "8th Grade Physical Education: The Science of Sports and the Integration of GPS Tracking ": 1 + "8th Grade Physical Education: The Science of Sports and the Examination of Muscle Physiology": 1 + "8th Grade Physical Education: The Science of Sports and the Study of Kinematics": 1 + "8th Grade Physical Education: The Science of Sports and the Exploration of Sports Psychology": 1 + "8th Grade Physical Education: The Science of Sports and the Understanding of Exercise Physiology": 1 + "2nd Grade Mathematics: Mastering Multiplication with the Soroban Abacus": 1 + "2nd Grade Mathematics: Simplifying Multiplication with Number Line Techniques": 1 + "2nd Grade Mathematics: Exploring Multiplication using Excel Spreadsheets": 1 + "2nd Grade Mathematics: Multiplication Mastery with Montessori Counters": 1 + "2nd Grade Mathematics: Multiplication Made Easy with Digital Counters and Apps": 1 + "2nd Grade Mathematics: Multiplication Fundamentals using Grid Method": 1 + "2nd Grade Mathematics: Learning Multiplication with Fun Math Games": 1 + "2nd Grade Mathematics: Multiplication Skill Enhancement with Flashcards": 1 + "2nd Grade Mathematics: Grasping Multiplication using Virtual Manipulatives": 1 + "2nd Grade Mathematics: Simplifying Multiplication with Interactive Whiteboard Activities": 1 + "3rd Grade History: Investigating Ancient Egypt’s Pyramids with Archaeology Simulations, Ground-Penetrating Radar, and Infrared Imaging": 1 + "3rd Grade History: Deciphering Hieroglyphs in Ancient Egypt using Archaeology Simulations and Ground-Penetrating Radar": 1 + "3rd Grade History: Unearthing Ancient Egypt’s Tombs with Archaeology Simulations, Ground-Penetrating Radar, and 3D Scanning Technology": 1 + "3rd Grade History: Exploring Ancient Egypt’s Irrigation Systems with Archaeology Simulations, Ground-Penetrating Radar, and Satellite Imagery": 1 + "3rd Grade History: Discovering Ancient Egyptian Artifacts with Archaeology Simulations, Ground-Penetrating Radar, and Carbon Dating": 1 + "3rd Grade History: Studying Ancient Egyptian Mummification with Archaeology Simulations, Ground-Penetrating Radar, and DNA Analysis": 1 + "3rd Grade History: Investigating Ancient Egyptian Architecture with Archaeology Simulations, Ground-Penetrating Radar, and Laser Scanning": 1 + "3rd Grade History: Examining Ancient Egyptian Agriculture with Archaeology Simulations, Ground-Penetrating Radar, and Soil Analysis": 1 + "3rd Grade History: Probing into Ancient Egyptian Temples with Archaeology Simulations, Ground-Penetrating Radar, and Photogrammetry": 1 + "3rd Grade History: Unraveling Ancient Egypt’s Social Structure with Archaeology Simulations, Ground-Penetrating Radar, and Linguistic Analysis": 1 + "Exploring Metaphors in Poetry and Drama through Dramatic Monologues: A 7th Grade Language Arts Course": 1 + "7th Grade Language Arts: Investigating Poetry and Drama using Dramatic Monologues and Mind Maps": 1 + "Diving into Imagery in Poetry and Drama: 7th Grade Language Arts Course with Dramatic Monologues": 1 + "Analyzing Character Development in Poetry and Drama: A 7th Grade Language Arts Course using Dramatic Monologues": 1 + "7th Grade Language Arts: Exploring Poetry and Drama through Dramatic Monologues using Digital Storytelling": 1 + "Understanding Themes in Poetry and Drama through Dramatic Monologues: A 7th Grade Language Arts Course": 1 + "7th Grade Language Arts: Investigating Poetry and Drama using Dramatic Monologues and Padlet": 1 + "From Reading to Performing: Investigating Poetry and Drama via Dramatic Monologues in 7th Grade Language Arts": 1 + "7th Grade Language Arts: Investigating Poetry and Drama through Dramatic Monologues using Google Classroom": 1 + "Exploring Conflict in Poetry and Drama: A 7th Grade Language Arts Course with Dramatic Monologues.": 1 + "3rd Grade Music: Introduction to GarageBand for Electronic Music": 1 + "3rd Grade Music: Exploring Electronic Music with Ableton Live": 1 + "3rd Grade Music: Understanding Synthesis in Electronic Music": 1 + "3rd Grade Music: Creating Beats with Drum Machines": 1 + "3rd Grade Music: Exploring Electronic Music with MIDI Controllers": 1 + "3rd Grade Music: Using Samplers in Electronic Music Production": 1 + "3rd Grade Music: Exploring Electronic Music with Logic Pro X": 1 + "3rd Grade Music: Understanding Electronic Music Sequencing": 1 + "3rd Grade Music: Exploring Electronic Music with FL Studio": 1 + "3rd Grade Music: Dive into DJing Electronic Music": 1 + "3rd Grade English: Analyzing Aesop’s Fables using Podcasts and Podbean with Google Classroom Integration": 1 + "Storytelling in 3rd Grade English: Dissecting Fables with Podcasts on Podbean and Interactive Whiteboard Activities": 1 + "3rd Grade English: Exploring Storytelling and Fables through Podcasts on Podbean and Flipgrid Discussions": 1 + "English for 3rd Graders: Fable Analysis with Podcasts, Podbean and Digital Storytelling Tools": 1 + "3rd Grade English: Utilizing Podcasts and Podbean for Fable Analysis with the Aid of Edmodo": 1 + "Storytelling in 3rd Grade English: Fable Studies with Podcasts, Podbean and Interactive Kahoot Quizzes": 1 + "English for 3rd Graders: Analyzing Fables using Podcasts and Podbean with the Supplement of Google Slides": 1 + "3rd Grade English: Fables Dissected using Podcasts, Podbean and the Padlet Tool for Class Discussions": 1 + "3rd Grade English: Storytelling and Fable Analysis with Podcasts, Podbean and Funbrain Games Integration": 1 + "English for 3rd Graders: Exploring Storytelling and Fables with Podcasts, Podbean and the Integration of Quizlet Flashcards.": 1 + "Symphony of Sounds: An In-Depth Study of Pizzicato, Rosin’s Effect, and the Use of Pitch Pipes and Electronic Tuners in Precision Tuning for 9th Grade Music Students": 1 + "Exploring Music: The Impact of Pizzicato, Rosin, Pitch Pipes and Metronomes on Precision Tuning for 9th Graders": 1 + "Decoding Symphony: The Role of Pizzicato, Rosin, Pitch Pipes, and Digital Equalizers in Precision Tuning for 9th Grade Music Enthusiasts": 1 + "The Science of Sound: Probing into Pizzicato, Rosin’s Effect, Pitch Pipes, and the Use of Sound Spectrum Analyzers in Precision Tuning for 9th Graders": 1 + "Mastering Melody: A Deep Dive into Pizzicato, Rosin, Pitch Pipes, and the Role of Audio Sequencers in Precision Tuning for 9th Grade Music Scholars": 1 + "Harmony in Practice: Investigating Pizzicato, Rosin’s Effect, Pitch Pipes, and the Application of Auto-Tuners in Precision Tuning for 9th Grade Musicians": 1 + "The Art of Acoustics: Examining Pizzicato, Rosin, Pitch Pipes, and the Use of Digital Audio Workstations (DAWs) in Precision Tuning for 9th Grade Music Students": 1 + "Sound and Silence: The Interplay of Pizzicato, Rosin, Pitch Pipes, and Mixing Consoles in Precision Tuning for 9th Grade Music Learners": 1 + "Exploring Music Technology: Incorporating Pizzicato, Rosin, Pitch Pipes, and MIDI Controllers in Precision Tuning for 9th Grade Music Students": 1 + "Understanding Sound: The Influence of Pizzicato, Rosin, Pitch Pipes, and Loop Stations in Precision Tuning for 9th Graders": 1 + "1st Grade Environmental Studies: Exploring Ecosystems with Garmin eTrex GPS technology, Stream Gauges and Soil Composition Analysis": 1 + "1st Grade Environmental Studies: Navigating Forest Biodiversity using Stream Gauges, GPS Technology and Humidity Sensors": 1 + "1st Grade Environmental Studies: Understanding Nature’s Patterns with Stream Gauges, GPS Technology and Rainfall Measurement Tools": 1 + "1st Grade Environmental Studies: Exploring Nature’s Wonders with Stream Gauges, GPS Technology and Solar Energy Demonstrations": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges, GPS Technology and Microscopic Organism Identification": 1 + "1st Grade Environmental Studies: Exploring Wilderness Survival with Stream Gauges, GPS Technology and Compass Navigation Skills": 1 + "1st Grade Environmental Studies: Understanding Aquatic Ecosystems with Stream Gauges, GPS Technology and Water pH Testing": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges, GPS Technology and Plant Identification Techniques": 1 + "1st Grade Environmental Studies: Exploring Nature’s Secrets with Stream Gauges, GPS Technology and Birdwatching Guides": 1 + "1st Grade Environmental Studies: Understanding Nature’s Cycles with Stream Gauges, GPS Technology and Moon Phase Observations.": 1 + "4th Grade Mathematics: Mastering Multiplication with the Grid Method through Smartboard Technology": 1 + "Interactive Whiteboard Learning: 4th Grade Mathematics and the Grid Method for Multiplication": 1 + "Mastering Multiplication: Incorporating the Grid Method and Abacus in 4th Grade Mathematics": 1 + "4th Grade Mathematics: Utilizing Tablets to Master Multiplication with the Grid Method": 1 + "Multiplication Mastery: The Grid Method on Digital Platforms in 4th Grade Mathematics": 1 + "4th Grade Mathematics: Advanced Multiplication Skills with Grid Method using Math Software": 1 + "4th Grade Mathematics: Exploring Multiplication with the Grid Method and Virtual Manipulatives": 1 + "Mastering Multiplication with the Grid Method and Graph Paper: A Course for 4th Grade Mathematics": 1 + "4th Grade Mathematics: Harnessing the Power of the Grid Method and Calculators for Multiplication Mastery": 1 + "4th Grade Mathematics: Using the Grid Method and Online Games for Multiplication Success.": 1 + "4th Grade Social Studies: The Role of Eli Whitney’s Cotton Gin in the American Revolution": 1 + "4th Grade Social Studies: Impact of the Cotton Gin on Slave Labor during the American Revolution": 1 + "4th Grade Social Studies: Understanding the Consequences of the Cotton Gin on the Economy of Revolutionary America": 1 + "4th Grade Social Studies: In-Depth Analysis of the Cotton Gin in the American Revolution": 1 + "4th Grade Social Studies: The Cotton Gin’s Effect on the South’s Involvement in the American Revolution": 1 + "4th Grade Social Studies: Cotton Gin and its Influence on the Agricultural Economy during the American Revolution": 1 + "4th Grade Social Studies: The Cotton Gin: A Catalyst of Change in America’s Revolutionary War": 1 + "4th Grade Social Studies: The Cotton Gin and the Dynamics of the American Revolution": 1 + "4th Grade Social Studies: Tracing the Impact of Cotton Gin Technology on the American Revolution": 1 + "4th Grade Social Studies: The Interplay of the Cotton Gin and Slavery in the American Revolutionary Era.": 1 + "5th Grade Physical Education: Application of Suunto’s Training Load Pro and Heart Rate Monitors in Team Sports and Cooperation": 1 + "Utilizing Suunto’s Training Load Pro and GPS Tracking in Team Sports: A 5th Grade Physical Education Course": 1 + "Integrating Suunto’s Training Load Pro and Fitness Apps in Fifth Grade Team Sports and Cooperation": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Wearable Fitness Technology in Team Sports": 1 + "Harnessing the Power of Suunto’s Training Load Pro and Virtual Reality in 5th Grade Team Sports and Cooperation": 1 + "Fifth Grade Physical Education: Suunto’s Training Load Pro, Smartwatches and Team Sports": 1 + "A Comprehensive Guide to Suunto’s Training Load Pro and Exercise Gaming in 5th Grade Physical Education": 1 + "Exploring Suunto’s Training Load Pro and Fitness Drones in 5th Grade Team Sports and Cooperation": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Interactive Whiteboards in Team Sports": 1 + "Interactive Learning with Suunto’s Training Load Pro and Digital Scoreboards in 5th Grade Physical Education.": 1 + "7th Grade Algebra: Unraveling Variables with Coordinate Planes and Graphing Calculators": 1 + "7th Grade Algebra: Exploring Number Relationships on Coordinate Planes through the Application of the Pythagorean Theorem": 1 + "7th Grade Algebra: Mapping Variables with Coordinate Planes and Dynamic Geometry Software": 1 + "7th Grade Algebra: Understanding Numbers and Variables through Coordinate Planes and Linear Equations": 1 + "7th Grade Algebra: Utilizing Coordinate Planes and Geogebra for an In-depth Understanding of Numbers and Variables": 1 + "7th Grade Algebra: Visualizing Variables with Coordinate Planes and Desmos Graphing Tools": 1 + "7th Grade Algebra: Unlocking the Complexity of Variables using Coordinate Planes and Quadratic Functions": 1 + "7th Grade Algebra: Exploring the Mystery of Numbers using Coordinate Planes and Algebra Tiles": 1 + "7th Grade Algebra: Deciphering Variables with Coordinate Planes and the Distributive Property": 1 + "7th Grade Algebra: Mapping the Journey of Numbers and Variables with Coordinate Planes and STEMscopes Software.": 1 + "9th Grade Physical Education: Utilizing Virtual Reality Technology in Swimming for Enhanced Training.": 1 + "9th Grade Physical Education: The Role of Hydrodynamic Swimsuits in Competitive Swimming.": 1 + "9th Grade PE: Exploring Underwater Cameras for Technique Analysis in Swimming.": 1 + "9th Grade Physical Education: The Impact of Stroke Analysis Software in Swimming Training.": 1 + "9th Grade PE: Introduction to Individual Sports - The Applications of Swim Trackers in Performance Monitoring.": 1 + "9th Grade Physical Education: The Role of Robotic Pool Cleaners in Maintaining Swimming Environments.": 1 + "9th Grade PE: Understanding the Impact of GPS Watches in Open Water Swimming.": 1 + "9th Grade Physical Education: Exploring the Use of Aquatic Treadmills in Swimming Rehabilitation.": 1 + "9th Grade PE: Introduction to Individual Sports - The Impact of Underwater Audio Devices in Swimming Training.": 1 + "9th Grade Physical Education: Using Swim Caps with Integrated Sensors for Performance Optimization in Swimming.": 1 + "8th Grade Music: Analysis of Mozart’s Influence on the Transition from Harpsichord to Piano in Classical Music": 1 + "The Impact of Mozart on the Emergence of Polyphony: A Detailed Study for 8th Grade Music": 1 + "Classical Music Transition: Mozart’s Influence on the Shift from Harpsichord to Piano ": 1 + "Mozart’s Influence on the Evolution of Polyphonic Music: An 8th Grade Music Course": 1 + "8th Grade Music: Exploring Mozart’s Role in the Development of Piano in Classical Music": 1 + "The Role of Mozart in the Emergence of Polyphony and Piano: A Focused Study for 8th Grade Music": 1 + "8th Grade Music: The Transition from Harpsichord to Piano through Mozart’s Influence": 1 + "Mozart’s Influence on Classical Music: A Shift from Harpsichord to Piano for 8th Grade Students": 1 + "Exploring Classical Music: Mozart’s Influence on the Evolution of Polyphony and Piano for 8th Graders": 1 + "8th Grade Music: Understanding Mozart’s Impact on the Transition of Harpsichord to Piano in Classical Music": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets": 1 + "First Grade Computing: Data Entry and Formatting Cells in Google Sheets": 1 + "Elementary Computing: Exploring Keyboard Shortcuts in Google Sheets": 1 + "First Grade Computing: Introduction to Cell Referencing in Google Sheets": 1 + "Elementary Computing: Discovering Data Sorting in Google Sheets": 1 + "First Grade Computing: Understanding Basic Functions in Google Sheets": 1 + "Elementary Computing: Learning Data Filtering Techniques in Google Sheets": 1 + "First Grade Computing: Exploring Chart Creation in Google Sheets": 1 + "Elementary Computing: Getting Started with Conditional Formatting in Google Sheets": 1 + "First Grade Computing: Exploring Data Validation in Google Sheets.": 1 + "Enhancing 2nd Grade Math Skills: Utilizing the Abacus Tool in Addition through SplashLearn App’s Interactive Worksheets": 1 + "An In-depth Study of 2nd Grade Addition: Implementing Flash Cards in SplashLearn App’s Interactive Worksheets": 1 + "Exploring Addition in 2nd Grade Mathematics: Using Montessori Beads with SplashLearn App’s Interactive Worksheets": 1 + "Making Addition Fun in 2nd Grade Math: Incorporating Virtual Reality in SplashLearn App’s Interactive Worksheets": 1 + "Mastering Addition: Utilizing Number Lines in 2nd Grade Math through SplashLearn App’s Interactive Worksheets": 1 + "A Comprehensive Approach to 2nd Grade Addition: Using SplashLearn App’s Interactive Worksheets with the SMART Board": 1 + "Effective Addition Learning in 2nd Grade: Incorporating the Place Value Concept in SplashLearn App’s Interactive Worksheets": 1 + "Exploring Addition in 2nd Grade Mathematics: Integrating Manipulatives via the SplashLearn App’s Interactive Worksheets": 1 + "Strengthening Addition in 2nd Grade Math: Using SplashLearn App’s Interactive Worksheets with the Counting Sticks Tool": 1 + "Advanced Addition Learning: Incorporating the Base Ten Blocks Concept in 2nd Grade through SplashLearn App’s Interactive Worksheets.": 1 + "3rd Grade Geography: Studying World Continents and Oceans via Google Earth Satellite Imagery": 1 + "3rd Grade Geography: Exploration of World Continents and Oceans using Drone Technology": 1 + "3rd Grade Geography: Unveiling World Continents and Oceans through Satellite GPS Mapping": 1 + "3rd Grade Geography: Learning World Continents and Oceans through 3D Satellite Imagery": 1 + "3rd Grade Geography: Interpretation of World Continents and Oceans using Satellite Heatmap Technology": 1 + "3rd Grade Geography: Understanding World Continents and Oceans through Infrared Satellite Imagery": 1 + "3rd Grade Geography: Investigation of World Continents and Oceans using Satellite LIDAR Technology": 1 + "3rd Grade Geography: Discovering World Continents and Oceans through Augmented Reality Satellite Imagery": 1 + "3rd Grade Geography: Exploring World Continents and Oceans using Virtual Reality Satellite Imagery": 1 + "3rd Grade Geography: Analyzing World Continents and Oceans through Satellite Time-Lapse Imagery.": 1 + "3rd Grade History: Explore Pyramids of Giza with VR Archaeology Simulations and Interactive Hieroglyphics Decoder": 1 + "3rd Grade History: Unearth Ancient Egyptian Artifacts in VR Archaeology Simulations using 3D Laser Scanning": 1 + "3rd Grade History: Walk Like An Egyptian - Virtual Reality Archaeology Simulations with Motion Capture Technology": 1 + "3rd Grade History: Discover Ancient Egypt’s Sphinx with VR Archaeology Simulations and Augmented Reality Tools": 1 + "3rd Grade History: VR Archaeology Simulations - Excavating Ancient Egyptian Tombs with Ground Penetrating Radar": 1 + "3rd Grade History: Dive into Nile River History with Submersible ROV and VR Archaeology Simulations": 1 + "3rd Grade History: VR Archaeology Simulations - Deciphering Ancient Egypt with Cryptography Tools": 1 + "3rd Grade History: Experience Pharaoh’s Reign with Virtual Reality Archaeology Simulations and Timeline Visualization Software": 1 + "3rd Grade History: Unravel Mysteries of Ancient Egypt in VR Archaeology Simulations using Infrared Imaging Technology": 1 + "3rd Grade History: Virtual Reality Archaeology Simulations - Exploring Ancient Egyptian Agriculture with Satellite Imagery.": 1 + "6th Grade History: Detailed Study of the Ox-drawn Plow, Pottery Wheel, and Bronze Metallurgy on Ancient Civilizations": 1 + "6th Grade History: Exploring the Effects of the Ox-drawn Plow, Pottery Wheel, and Hieroglyphic Writing on Ancient Civilizations": 1 + "6th Grade History: Impact of Ox-drawn Plow, Pottery Wheel, and Iron Smelting on the Development of Ancient Civilizations": 1 + "6th Grade History: The Role of the Ox-drawn Plow, Pottery Wheel, and the Arch in Ancient Civilizations": 1 + "6th Grade History: Understanding the Influence of the Ox-drawn Plow, Pottery Wheel, and Sundial on Ancient Civilizations": 1 + "6th Grade History: Uncovering the Effects of the Ox-drawn Plow, Pottery Wheel, and the Wheelbarrow in Ancient Civilizations": 1 + "6th Grade History: Examining the Ox-drawn Plow, Pottery Wheel, and the Concept of Currency in Ancient Civilizations": 1 + "6th Grade History: The Contribution of the Ox-drawn Plow, Pottery Wheel, and Irrigation Systems on Ancient Civilizations": 1 + "6th Grade History: Tracing the Impact of the Ox-drawn Plow, Pottery Wheel, and the Invention of the Saddle in Ancient Civilizations": 1 + "6th Grade History: The Influence of the Ox-drawn Plow, Pottery Wheel, and the Development of the Alphabet on Ancient Civilizations": 1 + "10th Grade Language Arts: Exploring Shakespeare Through Interactive Storytelling": 1 + "10th Grade Language Arts: Analyzing Shakespeare with Digital Annotations ": 1 + "10th Grade Language Arts: Unraveling Shakespeare’s Plays with Virtual Reality": 1 + "10th Grade Language Arts: Studying Shakespeare through Gamification Techniques": 1 + "10th Grade Language Arts: Understanding Shakespeare with AI Language Analysis ": 1 + "10th Grade Language Arts: Delving into Shakespeare using Text-to-Speech Software": 1 + "10th Grade Language Arts: Interpreting Shakespeare through Social Media Platforms": 1 + "10th Grade Language Arts: Decoding Shakespeare with Online Discussion Forums": 1 + "10th Grade Language Arts: Learning Shakespeare through Podcasts and Audio Resources": 1 + "10th Grade Language Arts: Exploring Shakespeare’s World with Augmented Reality": 1 + "Incorporating Adverb Placement into Sentence Structure Skills: A 2nd Grade English Course using Edmodo Online Quizzes and Google Classroom for Interactive Learning": 1 + "Mastering Adverb Placement with Sentence Diagramming: A 2nd Grade English Course using Edmodo Online Quizzes ": 1 + "Enhancing English Skills through Adverb Placement: A 2nd Grade Course using Edmodo Online Quizzes and Pear Deck for Active Engagement": 1 + "Incorporating Adverb Placement into Sentence Structure Skills: A 2nd Grade English Course using Edmodo Online Quizzes and Flipgrid for Student Interaction": 1 + "Adverb Placement Mastery in Sentence Structure: A 2nd Grade English Course using Edmodo Online Quizzes and Kahoot for Gamified Learning ": 1 + "Interactive Learning of Adverb Placement in Sentence Structure: A 2nd Grade English Course using Edmodo Online Quizzes and Padlet for Collaborative Learning": 1 + "Expanding Sentence Structure Skills through Adverb Placement: A 2nd Grade English Course using Edmodo Online Quizzes and Nearpod for Lesson Presentation": 1 + "Fostering Sentence Structure Skills through Adverb Placement: A 2nd Grade English Course using Edmodo Online Quizzes and Quizlet for Vocabulary Building": 1 + "Incorporating Adverb Placement into Sentence Structure Skills: A 2nd Grade English Course using Edmodo Online Quizzes and Seesaw for Student Portfolios": 1 + "Enhancing 2nd Grade English Skills through Adverb Placement: A Course using Edmodo Online Quizzes and Socrative for Immediate Feedback.": 1 + "9th Grade English: Analyzing Shakespeare’s Sonnets using AI Language Processing and Python with TensorFlow": 1 + "9th Grade English: Implementing NLTK for Analyzing Shakespeare’s Sonnets in Python": 1 + "9th Grade English: Deep Learning Approach to Shakespeare’s Sonnets Analysis using Python": 1 + "9th Grade English: Application of Keras in Analyzing Shakespeare’s Sonnets with Python": 1 + "9th Grade English: Using Python and Scikit-Learn for AI Analysis of Shakespeare’s Sonnets": 1 + "9th Grade English: Shakespeare’s Sonnets Analysis using Python and Machine Learning Algorithms": 1 + "9th Grade English: Python Text Mining techniques for Analyzing Shakespeare’s Sonnets": 1 + "9th Grade English: Exploring Shakespeare’s Sonnets with Python and PyTorch": 1 + "9th Grade English: Sentiment Analysis of Shakespeare’s Sonnets using Python and AI": 1 + "9th Grade English: Decoding Shakespeare’s Sonnets using Python and NLP Libraries": 1 + "7th Grade Art: Mastering Cross-Hatching with Charcoal Powder using Chamois Cloth": 1 + "Charcoal Drawing Techniques: Exploring Cross-Hatching with Charcoal Powder and Kneaded Erasers for 7th Graders ": 1 + "7th Grade Art: Charcoal Drawing Techniques: Mastering Cross-Hatching with Charcoal Powder and Blending Stumps": 1 + "7th Grade Art: Enhancing Cross-Hatching Skills with Charcoal Powder and Sandpaper Pads": 1 + "Charcoal Drawing Techniques for 7th Graders: Exploring Cross-Hatching with Charcoal Powder and Vine Charcoal": 1 + "7th Grade Art: Mastering Cross-Hatching with Charcoal Powder using Toned Paper": 1 + "Charcoal Drawing Techniques: Cross-Hatching Mastery with Charcoal Powder and Compressed Charcoal for 7th Graders": 1 + "7th Grade Art: Charcoal Drawing Techniques: Mastering Cross-Hatching using Tortillions with Charcoal Powder": 1 + "Exploring Cross-Hatching with Charcoal Powder and Pencil Sharpeners: 7th Grade Art and Charcoal Drawing Techniques": 1 + "7th Grade Art: Charcoal Drawing Techniques: Cross-Hatching Mastery with Charcoal Powder and White Charcoal": 1 + "3rd Grade Mathematics: Mastering Multiplication with Storytelling Techniques using Interactive Digital Flashcards": 1 + "3rd Grade Mathematics: Exploring Multiplication Mastery through Storytelling and Virtual Reality Technology ": 1 + "3rd Grade Mathematics: Improving Multiplication Skills with Storytelling Techniques and Gamified Learning Apps": 1 + "3rd Grade Mathematics: Harnessing the Power of Storytelling and AI Tutors for Multiplication Mastery": 1 + "3rd Grade Mathematics: The Art of Multiplication using Storytelling Techniques and Interactive Whiteboards": 1 + "3rd Grade Mathematics: Mastering Multiplication through Storytelling and Augmented Reality Techniques": 1 + "3rd Grade Mathematics: Advancing Multiplication Skills with Storytelling Techniques and Online Puzzle Games": 1 + "3rd Grade Mathematics: Fostering Multiplication Mastery with Storytelling Techniques and Smart Learning Platforms": 1 + "3rd Grade Mathematics: Storytelling Techniques and Tablet-Based Apps for Multiplication Excellence": 1 + "3rd Grade Mathematics: Multiplication Mastery by Leveraging Storytelling Techniques and Visual Learning Tools.": 1 + "6th Grade Mathematics: Mastering Fractions with Fraction Circles, Digital Protractors, and Graphing Calculators": 1 + "6th Grade Mathematics: Intro to Fractions using Fraction Circles, Digital Protractors, and Algebraic Equations": 1 + "6th Grade Math: Fraction Circles and Digital Protractors - The Role of Decimal Conversion": 1 + "6th Grade Mathematics: Leveraging Fraction Circles and Digital Protractors for Fraction Addition": 1 + "6th Grade Math: Exploring Fractions with Fraction Circles, Digital Protractors, and Interactive Whiteboards": 1 + "6th Grade Mathematics: Fraction Circles and Digital Protractors - A Deep Dive into Fraction Subtraction": 1 + "6th Grade Mathematics: Fraction Simplification using Fraction Circles, Digital Protractors, and Ratio Tables": 1 + "6th Grade Math: Fraction Circles and Digital Protractors - Understanding Fraction Multiplication": 1 + "6th Grade Mathematics: Fraction Circles, Digital Protractors, and Geometry for Fraction Division": 1 + "6th Grade Math: Fraction Circles, Digital Protractors, and Probability Theory in Fraction Understanding.": 1 + "6th Grade Music: Exploring Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Garageband Software": 1 + "6th Grade Music: A Deep Dive into Chopin’s Revolutionary Etudes using Digital Sheet Music, Casio Privia PX-160 and Sibelius Annotation Tool": 1 + "6th Grade Music: Understanding Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Interactive Metronome Technology": 1 + "6th Grade Music: Mastering Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Noteflight Music Notation Solution": 1 + "6th Grade Music: Analyzing Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Midi Sequencing": 1 + "6th Grade Music: A Study of Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Music Theory Concepts": 1 + "6th Grade Music: Decoding Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Soundtrap Audio Editing Platform": 1 + "6th Grade Music: Delving into Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Virtual Piano Assistant": 1 + "6th Grade Music: Interpreting Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and MuseScore Composition Tool": 1 + "6th Grade Music: A Journey through Chopin’s Revolutionary Etudes with Digital Sheet Music, Casio Privia PX-160 and Tempo Adjustment Technology": 1 + "9th Grade Health: Understanding the Role of Macronutrients in Body Wellness through MyFitnessPal Calorie Tracking": 1 + "Nutritional Biochemistry for 9th Graders: Impact of Macronutrients on Body and Wellness with Caloric Analysis using Fitbit": 1 + "9th Grade Health: Macronutrient Impact on Body and Wellness - A Deep Dive into Nutritional Biochemistry using Glycemic Index": 1 + "9th Grade Health: Analyzing the Impact of Macronutrients on Body Wellness through Nutritional Biochemistry and BMR Calculations": 1 + "9th Grade Health: Macronutrient Insight - Body Wellness through Nutritional Biochemistry and DEXA Scan Analysis": 1 + "Nutritional Biochemistry in 9th Grade Health: Exploring Macronutrient Impact on Body Wellness with Food Data Central Database": 1 + "9th Grade Health: A Detailed Study on Macronutrients Impact using Nutritional Biochemistry and Microbiome Sequencing": 1 + "9th Grade Health: Macronutrient Impact on Body Wellness - An Insight into Nutritional Biochemistry through Nutri-Score Labeling": 1 + "Nutritional Biochemistry for 9th Graders: Understanding Macronutrient Impact on Body Wellness with DNA Diet Analysis": 1 + "9th Grade Health: Exploring Macronutrient Impact on Body Wellness using Nutritional Biochemistry and Ketogenic Diet.": 1 + "Kindergarten Physical Science: Discovering the Five Senses through the Use of Microscopes": 1 + "Kindergarten Physical Science: Understanding the Five Senses with Interactive Smart Board Activities": 1 + "Kindergarten Physical Science: Using Magnifying Glasses to Explore the Sense of Sight": 1 + "Kindergarten Physical Science: Experimenting the Five Senses with Tactile Learning Tools": 1 + "Kindergarten Physical Science: Exploring the Five Senses with Augmented Reality": 1 + "Kindergarten Physical Science: Enhancing Sensory Perception with Virtual Reality Tools": 1 + "Kindergarten Physical Science: Learning the Five Senses through Sound Wave Experiments": 1 + "Kindergarten Physical Science: Exploring the Five Senses with Scientific Observation Tools": 1 + "Kindergarten Physical Science: The Five Senses and the Concept of Taste Buds": 1 + "Kindergarten Physical Science: Interactive Experiments of the Five Senses Using Touch Screens.": 1 + "2nd Grade Art: Exploring Color Theory with Acrylic Paints and Palette Knives": 1 + "2nd Grade Art: Basics of Color Theory and Brush Techniques with Acrylic Paints": 1 + "2nd Grade Art: Understanding Color Theory with Acrylic Paints and Canvas ": 1 + "2nd Grade Art: Introduction to Color Theory using Acrylic Paints and Easel Stand": 1 + "2nd Grade Art: Learning Color Theory through Acrylic Paints and Stencil Tools": 1 + "2nd Grade Art: Discovering Color Theory with Acrylic Paints and Mixing Trays": 1 + "2nd Grade Art: Basics of Color Theory and Layering Technique with Acrylic Paints": 1 + "2nd Grade Art: Color Theory and Texture Exploration with Acrylic Paints and Sponges": 1 + "2nd Grade Art: Basics of Color Theory with Acrylic Paints and Digital Art Software": 1 + "2nd Grade Art: Applying Color Theory using Acrylic Paints and Projector for Demonstration.": 1 + "7th Grade Music: Mastering the Art of Reading Sheet Music with the Flute using Finale Notation Software and Metronome ": 1 + "7th Grade Music: Enhancing Flute Performance through Sheet Music Reading and Finale Notation Software: A Focus on Dynamics ": 1 + "7th Grade Music: Learning to Read Sheet Music and Utilize Finale Notation Software for Flute with Sibelius Music Production Software": 1 + "7th Grade Music: Exploring the Art of Reading Sheet Music with the Flute using Finale Notation Software and Transposing Techniques": 1 + "7th Grade Music: Mastering the Flute and Sheet Music Reading using Finale Notation Software and MIDI Keyboards": 1 + "7th Grade Music: Developing Flute Skills through Sheet Music Reading and Finale Notation Software: An Introduction to Tempo": 1 + "7th Grade Music: Understanding Sheet Music for Flute using Finale Notation Software and the Circle of Fifths Concept": 1 + "7th Grade Music: Advancing Flute Performance through Sheet Music Reading and Finale Notation Software with the Use of a Tuner": 1 + "7th Grade Music: Navigating Sheet Music Reading for Flute with Finale Notation Software and the Concept of Key Signatures": 1 + "7th Grade Music: Enhancing Flute Skills through Sheet Music Reading and Finale Notation Software: A Focus on Melodic Phrasing": 1 + "6th Grade Music: Exploring Classical Composers through Piano": 1 + "6th Grade Music: A Journey Through Classical Composers with Violin": 1 + "6th Grade Music: Discovering Classical Composers through the Lens of Sheet Music": 1 + "6th Grade Music: A Journey Through Classical Composers using Music Theory": 1 + "6th Grade Music: Classical Composers and Their Influence on Modern Sound Technology": 1 + "6th Grade Music: Exploring Classical Composers through Digital Audio Workstations": 1 + "6th Grade Music: A Journey Through Classical Composers using Music Notation Software": 1 + "6th Grade Music: Analyzing Classical Composers through Tempo and Dynamics": 1 + "6th Grade Music: A Journey Through Classical Composers with a Focus on Symphony Orchestra": 1 + "6th Grade Music: Classical Composers Explored through the Art of Conducting.": 1 + "2nd Grade Social Studies: Exploring the Use of Digital Cameras in Community Journalism": 1 + "2nd Grade Social Studies: Understanding the Role of Social Media in Community Journalism": 1 + "2nd Grade Social Studies: Discovering the Impact of Blogging in Community Journalism": 1 + "2nd Grade Social Studies: The Use of Podcasting in Community Journalism": 1 + "2nd Grade Social Studies: The Significance of Video Editing in Community Journalism": 1 + "2nd Grade Social Studies: Exploring the Use of Graphic Design in Community Journalism": 1 + "2nd Grade Social Studies: Understanding the Role of Online Newsletters in Community Journalism": 1 + "2nd Grade Social Studies: The Use of Live Streaming in Community Journalism": 1 + "2nd Grade Social Studies: The Importance of Email Communication in Community Journalism": 1 + "2nd Grade Social Studies: Exploring the Use of Mobile Apps in Community Journalism": 1 + "6th Grade Social Studies: The Role of Edison’s Incandescent Light Bulb in the Evolution of Electrical Technology": 1 + "6th Grade Social Studies: The Impact of the Light Bulb on the Telegraph System in the History of Electricity": 1 + "6th Grade Social Studies: Exploring the Influence of Light Bulbs on the Development of Modern Power Grids": 1 + "6th Grade Social Studies: The Light Bulb’s Contribution to the Invention of Electric Motors": 1 + "6th Grade Social Studies: How the Light Bulb Revolutionized the Use of Alternating and Direct Currents": 1 + "6th Grade Social Studies: The Impact of the Light Bulb on the Invention of Electrical Appliances": 1 + "6th Grade Social Studies: The Light Bulb’s Influence on the Advancement of Electrical Engineering ": 1 + "6th Grade Social Studies: How the Light Bulb Ignited the Development of Renewable Energy Sources": 1 + "6th Grade Social Studies: The Role of the Light Bulb in the Creation of the Modern Electric Power Industry": 1 + "6th Grade Social Studies: The Influence of the Light Bulb on Radio Wave Technology in the History of Electricity.": 1 + "4th Grade Science: Exploring Mars’ Topography using Solar Walk 2 Planetarium Software and Google Earth": 1 + "4th Grade Science: Understanding Jupiter’s Moons with Solar Walk 2 Planetarium Software and Telescopic Observations": 1 + "4th Grade Science: Studying Venus’ Atmosphere using Solar Walk 2 Planetarium Software and Spectroscopy": 1 + "4th Grade Science: Exploring Saturn’s Rings with Solar Walk 2 Planetarium Software and Radio Astronomy": 1 + "4th Grade Science: Investigating Neptune’s Winds using Solar Walk 2 Planetarium Software and Doppler Radar": 1 + "4th Grade Science: Examining Mercury’s Craters with Solar Walk 2 Planetarium Software and Satellite Imagery": 1 + "4th Grade Science: Learning about Uranus’ Tilt using Solar Walk 2 Planetarium Software and Gyroscope Technology": 1 + "4th Grade Science: Delving into Pluto’s Ice Mountains using Solar Walk 2 Planetarium Software and Cryogeology": 1 + "4th Grade Science: Probing the Oceans of Europa with Solar Walk 2 Planetarium Software and Hydrology Concepts": 1 + "4th Grade Science: Unraveling the Mystery of Black Holes using Solar Walk 2 Planetarium Software and Einstein’s Theory of Relativity": 1 + "8th Grade Social Studies: Exploring Democracy and Government Principles with Python-based Computer Vision Techniques": 1 + "Deep Learning in 8th Grade Social Studies: Understanding Democracy and Government Principles through TensorFlow": 1 + "8th Grade Social Studies: Democracy and Government Principles Explored through the Lens of OpenCV Techniques": 1 + "AI and 8th Grade Social Studies: A Deep Dive into Democracy and Government Principles via Machine Learning Algorithms": 1 + "8th Grade Social Studies: Investigating Democracy and Government Principles with Neural Networks and Computer Vision": 1 + "8th Grade Social Studies: Leveraging Facial Recognition Technology to Understand Democracy and Government Principles": 1 + "8th Grade Social Studies: Democracy and Government Principles through Image Processing Algorithms": 1 + "8th Grade Social Studies: A Study of Democracy and Government Principles in the Context of Augmented Reality Technologies": 1 + "Understanding Democracy and Government Principles in 8th Grade Social Studies through Object Detection Techniques": 1 + "8th Grade Social Studies: Democracy and Government Principles Analysed through the Lens of Convolutional Neural Networks": 1 + "6th Grade Art: Watercolor Exploration with Brush Control: Mastering Wash Techniques": 1 + "6th Grade Art: Exploring Watercolor Textures: Mastering Wash Techniques with Sponges": 1 + "6th Grade Art: Watercolor Exploration: Mastering Wet on Wet Wash Techniques": 1 + "6th Grade Art: Exploring Transparency in Watercolor: Mastering Wash Techniques": 1 + "6th Grade Art: Detailed Watercolor Exploration: Mastering Wash Techniques with Fine Brushes": 1 + "6th Grade Art: Watercolor Exploration: Mastering Gradient Wash Techniques with Flat Brushes": 1 + "6th Grade Art: Watercolor Exploration: Mastering Wash Techniques using Palette Knives": 1 + "6th Grade Art: Mixed Media Art: Watercolor Exploration and Collage: Mastering Wash Techniques": 1 + "6th Grade Art: Watercolor Exploration: Mastering Variegated Wash Techniques": 1 + "6th Grade Art: Watercolor Exploration: Mastering Flat Wash Techniques with Round Brushes": 1 + "Mastering Carry Over in 2nd Grade Addition using Number Line Tool with the SplashLearn App": 1 + "Exploring 2nd Grade Addition with Carry Over through Interactive Whiteboard and SplashLearn App ": 1 + "Understanding Carry Over in 2nd Grade Addition using Virtual Manipulatives in the SplashLearn App": 1 + "Enhancing Skills in 2nd Grade Addition with Carry Over using Tablet-based SplashLearn App": 1 + "Mastering Carry Over in 2nd Grade Addition using SplashLearn App on Smartboard": 1 + "Learn Carry Over in 2nd Grade Addition Through Gamification in SplashLearn App": 1 + "Interactive Learning of Carry Over in 2nd Grade Addition using SplashLearn App on iPad": 1 + "Engaging in 2nd Grade Addition with Carry Over using AR Technology in SplashLearn App": 1 + "Mastering Carry Over Concept in 2nd Grade Addition using Virtual Reality with SplashLearn App": 1 + "Exploring 2nd Grade Addition with Carry Over using Voice Recognition in the SplashLearn App.": 1 + "Democracy Through a Digital Lens: Understanding the Impact of Social Media on 8th Grade Social Studies": 1 + "Exploring Democracy: The Role of Virtual Reality in 8th Grade Social Studies Education": 1 + "Decoding Democracy: The Influence of YouTube on 8th Grade Social Studies": 1 + "Democracy in the Digital Age: A Study of Podcasting’s Effect on 8th Grade Social Studies": 1 + "The New Digital Democracy: Investigating the Impact of E-Learning Tools on 8th Grade Social Studies": 1 + "Understanding Democracy: The Implications of Artificial Intelligence on 8th Grade Social Studies": 1 + "Democracy Through a Technological Lens: The Effect of Interactive Whiteboards on 8th Grade Social Studies": 1 + "Redefining Democracy: The Impact of Video Conferencing on 8th Grade Social Studies": 1 + "Democracy in the 21st Century: Assessing the Influence of Online Surveys on 8th Grade Social Studies": 1 + "Democracy Reimagined: The Role of Digital Storytelling Tools in 8th Grade Social Studies": 1 + "6th Grade: Enhancing English Language Arts with Grammarly: Developing Writing Skills": 1 + "6th Grade: Utilizing Google Docs for Developing Writing Skills in English Language Arts": 1 + "6th Grade: Developing Writing Skills in English Language Arts using Vocabulary Expansion Tools": 1 + "6th Grade: Interactive Whiteboard Integration for Developing Writing Skills in English Language Arts": 1 + "6th Grade: Developing Writing Skills in English Language Arts via Peer Review Techniques": 1 + "6th Grade: Developing Writing Skills in English Language Arts: A Focus on Mind Mapping": 1 + "6th Grade: Developing Writing Skills in English Language Arts through Online Journaling": 1 + "6th Grade: Developing Writing Skills in English Language Arts: Exploring Creative Writing Software": 1 + "6th Grade: Developing Writing Skills in English Language Arts with the Use of Digital Storytelling Tools": 1 + "6th Grade: Developing Writing Skills in English Language Arts: Incorporating Thesaurus for Vocabulary Enhancement": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil, Paper, and Erasers": 1 + "3rd Grade Language Arts: Implementing Cursive Writing in Simple Sentences with Pencil and Paper": 1 + "3rd Grade Language Arts: Crafting Simple Sentences with Pencil and Paper Using Grammarly": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil, Paper, and Whiteboard": 1 + "3rd Grade Language Arts: Using Microsoft Word to Write Simple Sentences with Pencil and Paper": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil, Paper, and iPads": 1 + "3rd Grade Language Arts: Exploring Word Order in Simple Sentences with Pencil and Paper": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil, Paper, and Digital Tablets": 1 + "3rd Grade Language Arts: Applying Punctuation in Simple Sentences with Pencil and Paper": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencil, Paper, and Spelling Check Tools": 1 + "8th Grade Music: Exploring Bach’s Fugues through Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Using Sibelius Software for Analyzing Beethoven’s Symphonies with MIDI Technology": 1 + "8th Grade Music: Studying the Complexity of Mozart’s Sonatas with Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Delving into Chopin’s Nocturnes using Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Understanding Wagner’s Operas through Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Interpreting Vivaldi’s Concertos with Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Examining Schubert’s Lieder using Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Dissecting Handel’s Oratorios through Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Investigating Tchaikovsky’s Ballets using Sibelius Software and MIDI Technology": 1 + "8th Grade Music: Probing into Liszt’s Transcriptions with Sibelius Software and MIDI Technology": 1 + "5th Grade Art: Discovering Abstract Art with Colored Pencils, Watercolors, and Mixed Media Techniques": 1 + "5th Grade Art: Mastering Abstract Art with Charcoal, Colored Pencils, and Mixed Media Techniques": 1 + "5th Grade Art: Exploring Cubism through Colored Pencils and Mixed Media Techniques": 1 + "5th Grade Art: Abstract Art with Colored Pencils and Mixed Media Techniques using Adobe Photoshop": 1 + "5th Grade Art: Learning Abstract Art with Colored Pencils, Oil Pastels, and Mixed Media Techniques": 1 + "5th Grade Art: Unraveling Abstract Art with Colored Pencils, Mixed Media Techniques, and 3D Printing": 1 + "5th Grade Art: Embracing Abstract Art with Colored Pencils, Clay Sculpting, and Mixed Media Techniques": 1 + "5th Grade Art: Understanding Abstract Art with Colored Pencils, Mixed Media Techniques, and the Rule of Thirds": 1 + "5th Grade Art: Abstract Art with Colored Pencils, Mixed Media Techniques, and Digital Illustration Tools": 1 + "5th Grade Art: Exploring Abstract Art with Colored Pencils, Mixed Media Techniques, and the Golden Ratio.": 1 + "2nd Grade Science: Exploring Weather Patterns with Rain Gauges, Thermometers, and Barometers": 1 + "2nd Grade Science: Utilizing Wind Vanes in Conjunction with Rain Gauges and Thermometers for Weather Investigations": 1 + "2nd Grade Science: Understanding Weather Patterns Using Rain Gauges, Thermometers, and Cloud Identification": 1 + "2nd Grade Science: Investigating Weather Patterns with Rain Gauges, Thermometers, and Anemometers": 1 + "2nd Grade Science: Examining Weather Patterns Using Rain Gauges, Thermometers, and Hygrometers": 1 + "2nd Grade Science: Decoding Weather Patterns with Rain Gauges, Thermometers, and Satellite Imagery": 1 + "2nd Grade Science: Unraveling Weather Patterns with Rain Gauges, Thermometers, and Weather Maps": 1 + "2nd Grade Science: Probing Weather Trends Using Rain Gauges, Thermometers, and Digital Weather Stations": 1 + "2nd Grade Science: Analyzing Weather Patterns with Rain Gauges, Thermometers, and Weather Balloons": 1 + "2nd Grade Science: Interpreting Weather Patterns through Rain Gauges, Thermometers, and Radar Technology.": 1 + "Symphony History: Exploring Mozart’s Influence on Piano Forte through Cadenza Application in 6th Grade Classical Music using Melodic Analysis Software": 1 + "Decoding Mozart’s Impact on Piano Forte through Cadenza and Harmonic Progression in 6th Grade Classical Music": 1 + "Investigating Mozart’s Influence on Piano Forte through Cadenza in 6th Grade Classical Music using Music Transcription Software": 1 + "Symphony History: Mozart’s Influence on Piano Forte through Cadenza and Sonata Form in 6th Grade Classical Music": 1 + "Symphony History: A Deep-Dive into Mozart’s Impact on Piano Forte through Cadenza and Counterpoint Techniques in 6th Grade Classical Music": 1 + "Analyzing Mozart’s Influence on Piano Forte through Cadenza in 6th Grade Classical Music using Digital Sheet Music Technology": 1 + "Symphony History: Understanding Mozart’s Effect on Piano Forte through Cadenza and the use of Modulation in 6th Grade Classical Music": 1 + "Symphony History: Mozart’s Influence on Piano Forte through Cadenza in 6th Grade Classical Music - A Study using Music Composition Software": 1 + "Exploring Mozart’s Influence on Piano Forte through the Lens of Cadenza and Texture Analysis in 6th Grade Classical Music": 1 + "Symphony History: Mozart’s Impact on Piano Forte and Cadenza Application in 6th Grade Classical Music - A Study using Music Theory Analysis Tools": 1 + "11th Grade Science: Understanding the Role of CRISPR in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: Exploring Bioluminescence in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: The Impact of Polymerase Chain Reaction (PCR) in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: The Application of Gel Electrophoresis in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: Cloning Techniques in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: Bioinformatics and Its Role in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: The Science of DNA Sequencing in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: The Use of Microarrays in Genetically Modified Organisms and Biotechnology": 1 + "11th Grade Science: Genetically Modified Organisms and Biotechnology – A Study on Genetic Engineering": 1 + "11th Grade Science: The Role of Transgenic Technology in Genetically Modified Organisms and Biotechnology": 1 + "2nd Grade Health: Exploring Nutrition Basics with 3D Printed Food Models": 1 + "2nd Grade Health: Understanding Nutrition Basics through Interactive 3D Food Models on VR": 1 + "2nd Grade Health: Grasping Nutrition Basics using Augmented Reality and 3D Food Models": 1 + "2nd Grade Health: Learning Nutrition Basics with 3D Food Models and Microscopic Analysis": 1 + "2nd Grade Health: Nutrition Basics and Calculating Calories using 3D Food Models": 1 + "2nd Grade Health: Understanding Nutrition Basics with 3D Food Models and Dietary Apps": 1 + "2nd Grade Health: Exploring Nutrition Basics with 3D Food Models and Taste Simulation Technology": 1 + "2nd Grade Health: Understanding Nutrition Basics with 3D Food Models and AI Nutritionist": 1 + "2nd Grade Health: Nutrition Basics in Practice with 3D Food Models and Hands-on Cooking Lessons": 1 + "2nd Grade Health: Interactive Learning of Nutrition Basics with 3D Food Models and Gamified Lessons.": 1 + "6th Grade Social Studies: Understanding Cultural Diversity through the Lens of Anthropology": 1 + "6th Grade Social Studies: Application of GIS in Understanding Cultural Diversity": 1 + "6th Grade Social Studies: A Deep Dive into Cultural Diversity through Ethnography": 1 + "6th Grade Social Studies: Understanding Cultural Diversity through Linguistic Analysis": 1 + "6th Grade Social Studies: The Role of Archaeology in Understanding Cultural Diversity": 1 + "6th Grade Social Studies: Exploring Cultural Diversity through Film Studies": 1 + "6th Grade Social Studies: Understanding Cultural Diversity using Oral History Techniques": 1 + "6th Grade Social Studies: Cultural Anthropology’s Perspective on Cultural Diversity": 1 + "6th Grade Social Studies: Comparative Study of Cultural Diversity using Ethnobotany": 1 + "6th Grade Social Studies: Exploring Cultural Diversity through the Study of Folklore and Mythology.": 1 + "4th Grade Music: Exploring Beat Patterns with Ableton Live": 1 + "4th Grade Music: Mastering Rhythm through GarageBand Music Production": 1 + "4th Grade Music: Melody Construction using Logic Pro X Digital Music Production": 1 + "4th Grade Music: Understanding Rhythm and Melody through MIDI Technology in Digital Music Production": 1 + "4th Grade Music: Integrating Synthesizers in Rhythm and Melody through Digital Music Production": 1 + "4th Grade Music: Unraveling Rhythmic Patterns with FL Studio": 1 + "4th Grade Music: Comprehending Melody through Pro Tools Digital Music Production": 1 + "4th Grade Music: Exploring Rhythm with Cubase in Digital Music Production": 1 + "4th Grade Music: Understanding Rhythm and Melody through Digital Audio Workstations (DAWs)": 1 + "4th Grade Music: Mastering Melody with Reason Software in Digital Music Production": 1 + "Environmental Conservation through Drone Technology in Smart Agriculture: 6th Grade Social Studies with Emphasis on Crop Rotation": 1 + "Utilizing Soil Sensors for Environmental Conservation in Smart Agriculture: 6th Grade Social Studies Course": 1 + "Exploring Vertical Farming for Conservation in Smart Agriculture: 6th Grade Social Studies with Emphasis on Crop Rotation": 1 + "The Role of Precision Irrigation in Environmental Conservation: 6th Grade Social Studies Course on Smart Agriculture and Crop Rotation": 1 + "Environmental Conservation through Hydroponics in Smart Agriculture: A 6th Grade Social Studies Course": 1 + "Advanced GIS Applications in Environmental Conservation and Smart Agriculture: 6th Grade Social Studies with Emphasis on Crop Rotation": 1 + "The Impact of Bioengineering on Environmental Conservation in Smart Agriculture: 6th Grade Social Studies Course": 1 + "Satellite Imaging for Environmental Conservation in Smart Agriculture: 6th Grade Social Studies with Emphasis on Crop Rotation": 1 + "Using AI and Machine Learning in Environmental Conservation through Smart Agriculture: 6th Grade Social Studies Course": 1 + "The Role of Aquaponics in Environmental Conservation: 6th Grade Social Studies with Emphasis on Smart Agriculture and Crop Rotation.": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets Using Conditional Formatting": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets with Pivot Tables": 1 + "First Grade Elementary Computing: Utilizing Cell Referencing to Master Basic Formulas in Google Sheets": 1 + "First Grade Elementary Computing: Understanding Data Validation while Mastering Basic Formulas in Google Sheets": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets through Data Sorting ": 1 + "First Grade Elementary Computing: Mastering Basic Formulas and Chart Creation in Google Sheets": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets with Named Ranges": 1 + "First Grade Elementary Computing: Harnessing the Power of Array Formulas in Google Sheets": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets through VLookup Function": 1 + "First Grade Elementary Computing: Mastering Basic Formulas in Google Sheets with Filter Views": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Counting Beads and Abacus Techniques": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction via Counting Beads and Montessori Methods": 1 + "2nd Grade Mathematics: Grasping Addition and Subtraction Through Counting Beads and Digital Apps": 1 + "2nd Grade Mathematics: Understanding Addition and Subtraction with Counting Beads and Interactive Whiteboard Activities": 1 + "2nd Grade Mathematics: Learning Addition and Subtraction Through Counting Beads and Number Line Techniques": 1 + "2nd Grade Mathematics: Simplifying Addition and Subtraction with Counting Beads and Smartboard Games": 1 + "2nd Grade Mathematics: Decoding Addition and Subtraction Using Counting Beads and Manipulatives": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery through Counting Beads and Virtual Reality Techniques": 1 + "2nd Grade Mathematics: A Deep Dive into Addition and Subtraction with Counting Beads and Place Value Concepts": 1 + "2nd Grade Mathematics: Enhancing Addition and Subtraction Skills with Counting Beads and LEGO Math Concepts.": 1 + "2nd Grade Art: Introduction to Color Mixing with Watercolors": 1 + "2nd Grade Art: Exploring Color Mixing using Acrylics": 1 + "2nd Grade Art: Introduction to Color Mixing and Blending Techniques": 1 + "2nd Grade Art: Discovering Color Mixing with Oil Pastels": 1 + "2nd Grade Art: Hands-on Color Mixing using Tempera Paints": 1 + "2nd Grade Art: Color Mixing Basics with Paint Brushes": 1 + "2nd Grade Art: Introduction to Color Mixing using Digital Art Software": 1 + "2nd Grade Art: Mastering Color Mixing through Collage Techniques": 1 + "2nd Grade Art: Introduction to Color Mixing: Understanding the Color Wheel": 1 + "2nd Grade Art: Exploring Color Theory and Mixing with Crayons": 1 + "3rd Grade Music: Exploring Rhythm and Melody through the Piano": 1 + "3rd Grade Music: Introduction to Rhythm and Melody with Hand Drums": 1 + "3rd Grade Music: Understanding Rhythm and Melody through the Recorder": 1 + "3rd Grade Music: Rhythm and Melody Exploration with Electronic Keyboards": 1 + "3rd Grade Music: Learning Rhythm and Melody using the Ukulele": 1 + "3rd Grade Music: Developing Rhythm and Melody Skills with the Guitar": 1 + "3rd Grade Music: Rhythm and Melody Basics using the Violin": 1 + "3rd Grade Music: Rhythm and Melody Study with the Xylophone": 1 + "3rd Grade Music: Understanding Rhythm and Melody through Percussion Instruments": 1 + "3rd Grade Music: Rhythm and Melody Discovery with the Harmonica": 1 + "8th Grade History: The Role of the Sextant in Revolutionary War Era Cartography and Diplomacy": 1 + "Revolutionary War Era: The Impact of Longitude Calculation in 8th Grade History": 1 + "The Influence of Compasses in Revolutionary War Cartography: An 8th Grade History Course": 1 + "8th Grade History: Revolutionary War Diplomacy through the Lens of Telescope Technology": 1 + "Exploring the Printing Press: Its Effects on Revolutionary War Cartography and Diplomacy in 8th Grade History": 1 + "8th Grade History: The Revolutionary War Era - Diplomacy and Cartography with the Quadrant": 1 + "Revolutionary War Era Cartography: The Influence of Gunter’s Chain in Diplomacy - An 8th Grade History Course": 1 + "8th Grade History: The Revolutionary War and the Diplomatic Influence of Pencil in Cartography": 1 + "The Astrolabe’s Impact on Revolutionary War Cartography and Diplomacy: An 8th Grade History Course": 1 + "8th Grade History: The Revolutionary War Era - Diplomacy and Cartography with the Use of Logarithmic Tables.": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation with Watercolors": 1 + "5th Grade Art: Exploring Collage in Mixed Media Art Creation ": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation Using Acrylic Paints": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - Focus on Pastels": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - An Introduction to Charcoal": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - Exploring Oil Paints": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation and Sculpting Tools": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - Digital Art Techniques": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - The Power of Printmaking": 1 + "5th Grade Art: The Magic of Mixed Media Art Creation - Unleashing Creativity with Gouache Paints": 1 + "3rd Grade Music: Understanding Rhythm and Melody Basics using the Violin and Sheet Music": 1 + "3rd Grade Music: Exploring Rhythm and Melody Basics with the Violin and Metronome": 1 + "3rd Grade Music: Discovering Rhythm and Melody Basics through Violin and Tuning Fork": 1 + "3rd Grade Music: Studying Rhythm and Melody Basics using Violin and Music Stand": 1 + "3rd Grade Music: Rhythm and Melody Basics with Violin and Suzuki Method": 1 + "3rd Grade Music: Grasping Rhythm and Melody Basics using Violin and Digital Tuner": 1 + "3rd Grade Music: Mastering Rhythm and Melody Basics with Violin and Bow Technique": 1 + "3rd Grade Music: Rhythm and Melody Basics using Violin and Pizzicato Technique": 1 + "3rd Grade Music: Learning Rhythm and Melody Basics on Violin with Music Theory Concept": 1 + "3rd Grade Music: Rhythm and Melody Basics using Violin and Rosin Application Technique": 1 + "2nd Grade Music: Exploring Rhythm through Djembe Drums and Percussion Instruments with Metronome": 1 + "2nd Grade Music: Discovering Rhythm with Hand Drums in Percussion Instruments using Music Software": 1 + "2nd Grade Music: Studying Rhythm through Bongo Drums in Percussion Instruments with a Beat Sequencer": 1 + "2nd Grade Music: Understanding Rhythm using Cajon Drums in Percussion Instruments and Digital Sound Mixers": 1 + "2nd Grade Music: Mastering Rhythm with Tabla Drums and Percussion Instruments using an Audio Equalizer": 1 + "2nd Grade Music: Learning Rhythm through Conga Drums in Percussion Instruments and MIDI Controllers": 1 + "2nd Grade Music: Exploring Rhythm with Taiko Drums in Percussion Instruments using a Loop Station": 1 + "2nd Grade Music: Investigating Rhythm through Frame Drums in Percussion Instruments with Music Production Software": 1 + "2nd Grade Music: Unraveling Rhythm using Timpani Drums in Percussion Instruments and a Digital Audio Workstation": 1 + "2nd Grade Music: Delving into Rhythm with Bodhran Drums and Percussion Instruments using a Rhythm Trainer App": 1 + "2nd Grade Science: Examining Penguin Adaptation Strategies in Antarctic Islands using Google Earth": 1 + "2nd Grade Science: Unveiling Bat Adaptation Methods in Tropical Islands through Virtual Reality Exploration": 1 + "2nd Grade Science: Discovering Reptile Survival Tactics on Desert Islands using Interactive 3D Models": 1 + "2nd Grade Science: Exploring Seahorse Adaptation Mechanisms in Coral Islands using Augmented Reality": 1 + "2nd Grade Science: Understanding Bird Adaptation Techniques in Forest Islands through Drone Footage": 1 + "2nd Grade Science: Investigating Insect Survival Strategies on Tundra Islands using Satellite Imagery": 1 + "2nd Grade Science: Studying Mammal Adaptation Strategies on Savanna Islands using GIS Technology": 1 + "2nd Grade Science: Analyzing Amphibian Adaptation Methods on Freshwater Islands through Microscopic Imaging": 1 + "2nd Grade Science: Unraveling Fish Survival Techniques on Volcanic Islands using Sonar Technology": 1 + "2nd Grade Science: Probing Plant Adaptation Mechanisms on Mountainous Islands using Time-Lapse Photography.": 1 + "4th Grade Physical Education: Introduction to Butterfly Stroke in Swimming with Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Breaststroke Basics and Stopwatch Time Tracking ": 1 + "4th Grade Physical Education: Freestyle Swimming Techniques and Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Swimming Drills with Stopwatch Time Tracking and Dive Start Instruction": 1 + "4th Grade Physical Education: Stopwatch Time Tracking and Swimming Endurance Training": 1 + "4th Grade Physical Education: Backstroke Development and Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Flip Turn Techniques in Swimming with Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Swimming Safety Procedures and Stopwatch Time Tracking": 1 + "4th Grade Physical Education: Stopwatch Time Tracking and Introduction to Swimming Competition Rules": 1 + "4th Grade Physical Education: Swimming Equipment Understanding and Stopwatch Time Tracking.": 1 + "5th Grade Mathematics: Mastering Multiplication and Division using Mathway App ": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division using the Khan Academy ": 1 + "5th Grade Mathematics: Understanding Multiplication and Division through Prodigy Math Game ": 1 + "5th Grade Mathematics: Learning Multiplication and Division with the Help of Microsoft Mathematics ": 1 + "5th Grade Mathematics: Enhancing Multiplication and Division Skills using MathBoard App ": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division via Mathspace ": 1 + "5th Grade Mathematics: Exploring Multiplication and Division Concepts using DreamBox Learning Math ": 1 + "5th Grade Mathematics: Grasping Multiplication and Division through the DoodleMaths App ": 1 + "5th Grade Mathematics: Interactive Learning of Multiplication and Division using Wolfram Mathematica ": 1 + "5th Grade Mathematics: Excelling in Multiplication and Division with the Use of Photomath App.": 1 + "2nd Grade Art: Mastering Portraits with Graphite Pencils and Sketch Pads": 1 + "2nd Grade Art: Exploring Nature Drawing Using Graphite Pencils and Light Box": 1 + "2nd Grade Art: Learning to Draw Animals with Graphite Pencils and Tracing Paper": 1 + "2nd Grade Art: Discovering Perspective Drawing with Graphite Pencils and Rulers": 1 + "2nd Grade Art: Understanding Shading Techniques with Graphite Pencils and Blending Stumps": 1 + "2nd Grade Art: Creating Self-Portraits with Graphite Pencils and Mirrors": 1 + "2nd Grade Art: Learning to Draw Still Life with Graphite Pencils and Easels": 1 + "2nd Grade Art: Mastering Cartoon Drawing with Graphite Pencils and Animation Software": 1 + "2nd Grade Art: Drawing Landscapes Using Graphite Pencils and Grid Method": 1 + "2nd Grade Art: Learning Human Anatomy Drawing with Graphite Pencils and Manikins": 1 + "8th Grade Physical Education: Understanding the Science of Sports through Biomechanics and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports Physiology and the Role of Nutrition ": 1 + "8th Grade Physical Education: The Science of Sports, Heart Rate Monitoring, and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports Training, Using Fitness Trackers, and the Role of Nutrition": 1 + "8th Grade Physical Education: Exploring Sports Psychology and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports, Motor Skills Development, and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports Medicine, Injury Prevention, and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports, Using Video Analysis Tools, and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports, Exploring Kinematics, and the Role of Nutrition": 1 + "8th Grade Physical Education: The Science of Sports, Understanding Muscle Metabolism, and the Role of Nutrition": 1 + "1st Grade Art: Understanding Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Scissors": 1 + "1st Grade Art: Exploring Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques with Watercolor Pencils": 1 + "1st Grade Art: Mastering Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Glue Sticks": 1 + "1st Grade Art: Introduction to Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Tracing Paper": 1 + "1st Grade Art: In-Depth Study of Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques with Construction Paper": 1 + "1st Grade Art: Discovering Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Washable Markers": 1 + "1st Grade Art: Learning Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques with Rulers": 1 + "1st Grade Art: Understanding Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Tissue Paper": 1 + "1st Grade Art: Grasping Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques with Colored Pencils": 1 + "1st Grade Art: Delving into Basic Shapes and the Color Wheel through Crayon Art and Origami Collage Techniques Using Paint Brushes": 1 + "6th Grade Social Studies: Environmental Conservation through Composting with the Use of Worm Farming": 1 + "6th Grade Social Studies: Exploring the Benefits of Rainwater Harvesting in Environmental Conservation": 1 + "6th Grade Social Studies: Solar Energy Technology and Its Role in Environmental Conservation": 1 + "6th Grade Social Studies: Composting and Recycling: The Role of Waste Management in Environmental Conservation": 1 + "6th Grade Social Studies: Understanding the Impact of Hydroponics on Environmental Conservation": 1 + "6th Grade Social Studies: The Role of Wind Energy in Environmental Conservation and Composting": 1 + "6th Grade Social Studies: The Use of Biochar in Composting for Environmental Conservation ": 1 + "6th Grade Social Studies: Exploring the Power of Geothermal Energy in Environmental Conservation": 1 + "6th Grade Social Studies: Environmental Conservation: The Role of Organic Farming and Composting": 1 + "6th Grade Social Studies: The Impact of Green Architecture on Environmental Conservation.": 1 + "3rd Grade English: Exploring Classic Fairy Tales through Digital Storytelling using Adobe Spark": 1 + "3rd Grade English: Dissecting Classic Fairy Tales through Interactive Animations with Scratch": 1 + "3rd Grade English: Understanding Fairy Tales through Animated Storyboards using Storyboard That": 1 + "3rd Grade English: Experience Classic Fairy Tales through Virtual Reality Storytelling": 1 + "3rd Grade English: Interpreting Fairy Tales through Digital Comic Creation using Pixton": 1 + "3rd Grade English: Exploring Classic Fairy Tales through Podcasting using Anchor": 1 + "3rd Grade English: Classic Fairy Tales: Learning via Interactive Whiteboards and Smartboard Technology": 1 + "3rd Grade English: Classic Fairy Tales Retold through Stop Motion Animation with Stickbots Studio": 1 + "3rd Grade English: Illustrating Classic Fairy Tales using Digital Drawing with Procreate": 1 + "3rd Grade English: Reimagining Classic Fairy Tales through Digital Story Maps using ArcGIS.": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencils and Lined Paper": 1 + "3rd Grade Language Arts: Exploring Simple Sentences using Pencil, Paper and Erasers": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencils on Graph Paper": 1 + "3rd Grade Language Arts: Creating Simple Sentences with Pencil, Paper, and a Ruler": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencils and Composition Notebooks": 1 + "3rd Grade Language Arts: Developing Simple Sentences with Pencil, Paper, and a Thesaurus": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencils, Paper, and a Dictionary": 1 + "3rd Grade Language Arts: Constructing Simple Sentences with Pencil, Paper, and a Grammar Guide": 1 + "3rd Grade Language Arts: Writing Simple Sentences with Pencils and Sticky Notes": 1 + "3rd Grade Language Arts: Composing Simple Sentences with Pencil, Paper, and a Rhyming Dictionary": 1 + "Exploring Ecosystems and Climate Change: A 5th Grade Science Course using Google ARCore": 1 + "Utilizing Microsoft Hololens: A 5th Grade Science Course on Ecosystems and Climate Change": 1 + "Exploring Ecosystems and Climate Change: A 5th Grade Science Course using Augmented Reality and Virtual Reality Tech": 1 + "Discovering Climate Change through Pokemon Go: A 5th Grade Science Course on Ecosystems": 1 + "Learning about Ecosystems using Magic Leap: A 5th Grade Science Course on Climate Change": 1 + "Exploring Ecosystems and Climate Change: A 5th Grade Science Course using Augmented Reality and Artificial Intelligence Concepts": 1 + "Enriching 5th Grade Science: Ecosystems and Climate Change with Oculus Rift Augmented Reality": 1 + "Understanding Ecosystems and Climate Change: A 5th Grade Science Course using Apple’s ARKit Technology": 1 + "Ecosystems and Climate Change: A 5th Grade Science Course utilizing the Concept of Biomimicry and Augmented Reality": 1 + "Exploring Ecosystems and Climate Change: A 5th Grade Science Course using Biofeedback Technology and Augmented Reality Tools.": 1 + "10th Grade Physical Education: Decoding Basketball Strategies with Video Analysis using Hudl Software": 1 + "Understanding Offensive and Defensive Basketball Strategies through Video Analysis using GoPro in 10th Grade Physical Education": 1 + "10th Grade Physical Education: Exploring Basketball Strategies with 360-Degree Video Analysis": 1 + "10th Grade Physical Education: Dribbling and Shooting Techniques Analysis using Slo-Mo Video Technology": 1 + "Advanced Basketball Strategies and Techniques: A Comprehensive Video Analysis using AI-powered Software for 10th Graders": 1 + "10th Grade Physical Education: Motion Tracking in Basketball Strategy Analysis using Video Technology": 1 + "Evaluating Basketball Tactics with VR Technology in 10th Grade Physical Education": 1 + "10th Grade Physical Education: Studying Basketball Gameplay Strategies using Drone Video Analysis": 1 + "10th Grade Physical Education: Understanding Basketball Zone Defense Strategies through Video Analysis using SportsCode Software": 1 + "Basketball Plays Analysis: Utilizing Video Replay Technology in 10th Grade Physical Education.": 1 + "1st Grade Introduction to Planets: Learning Through Telescopes": 1 + "1st Grade Introduction to Planets: Explore with 3D Solar System Models": 1 + "1st Grade Introduction to Planets: An Interactive Journey with Virtual Reality": 1 + "1st Grade Introduction to Planets: Discovering Space with Planetarium Software": 1 + "1st Grade Introduction to Planets: Understanding Orbits Through Animation Tools ": 1 + "1st Grade Introduction to Planets: Astronomical Observations with Binoculars": 1 + "1st Grade Introduction to Planets: Solar System Exploration using Augmented Reality": 1 + "1st Grade Introduction to Planets: Grasping Planetary Movements with Globe Models": 1 + "1st Grade Introduction to Planets: Visualizing Space with Star Charts": 1 + "1st Grade Introduction to Planets: Hands-on Learning with DIY Planetarium Kits": 1 + "2nd Grade Math: Multiplication Mastery with Smart Boards using Number Lines": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards and iPads": 1 + "2nd Grade Math: Multiplication Mastery using Virtual Manipulatives on Interactive Whiteboards": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards and Times Tables": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards using Math Apps": 1 + "2nd Grade Math: Multiplication Mastery with Promethean Boards and Digital Flashcards": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards and Google Classroom ": 1 + "2nd Grade Math: Exploring Grid Method Multiplication on Interactive Whiteboards": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards and Math Games": 1 + "2nd Grade Math: Multiplication Mastery with Interactive Whiteboards using Visual Learning Tools": 1 + "The Science of Five Senses: Exploring Touch Sensitivity using Thermometers and Heat Pads in Kindergarten": 1 + "A Kindergarten Course on Sensory Science: Using Thermometers and Cold Packs for Touch Exploration ": 1 + "The Science of Five Senses: Understanding Touch with Thermometers and IR Cameras in Kindergarten ": 1 + "Kindergarten Physical Science: Exploring Thermometers and Texture Mats for Tactile Learning ": 1 + "The Science of Five Senses: A Kindergarten Course Using Thermometers and Pressure Maps for Touch Exploration ": 1 + "A Kindergarten Study on Sensory Science: Thermometers and Tactile Imaging for Touch Exploration ": 1 + "The Science of Five Senses: Incorporating Thermometers and Braille Materials in Kindergarten Physical Science ": 1 + "Kindergarten Sensory Science: Utilizing Thermometers and Haptic Technology for Touch Exploration ": 1 + "The Science of Five Senses: Using Thermometers and Vibration Plates for Tactile Learning in Kindergarten ": 1 + "A Kindergarten Course on Sensory Science: Exploring Touch with Thermometers and Ultrasonic Sensors.": 1 + "7th Grade World History: Ancient Civilizations and the Wheel": 1 + "7th Grade World History: Ancient Civilizations and the Concept of Democracy": 1 + "7th Grade World History: Ancient Civilizations and Use of Fire": 1 + "7th Grade World History: Ancient Civilizations and the Development of Writing": 1 + "7th Grade World History: Ancient Civilizations and the Invention of the Plow": 1 + "7th Grade World History: Ancient Civilizations and the Use of Bronze Tools": 1 + "7th Grade World History: Ancient Civilizations and the Irrigation Systems": 1 + "7th Grade World History: Ancient Civilizations and the Concept of Trade": 1 + "7th Grade World History: Ancient Civilizations and the Use of Stone Tools": 1 + "7th Grade World History: Ancient Civilizations and the Invention of Pottery.": 1 + "10th Grade Music: Dissecting Mozart’s Symphony No.38 in D major Using Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and Avid Pro Tools for Audio Mixing": 1 + "10th Grade Music: Exploring Mozart’s Symphony No.38 in D major With Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Circle of Fifths Concept": 1 + "10th Grade Music: Understanding Mozart’s Symphony No.38 in D major Through Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Use of Digital Audio Workstations": 1 + "10th Grade Music: Decoding Mozart’s Symphony No.38 in D major With Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Application of MIDI Controllers": 1 + "10th Grade Music: Analyzing Mozart’s Symphony No.38 in D major Using Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Harmony Theory": 1 + "10th Grade Music: Studying Mozart’s Symphony No.38 in D major With Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Introduction to Sound Waves and Frequencies": 1 + "10th Grade Music: Interpreting Mozart’s Symphony No.38 in D major Through Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Use of Audio Processing Plugins": 1 + "10th Grade Music: Unpacking Mozart’s Symphony No.38 in D major Using Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Exploration of Acoustic Properties": 1 + "10th Grade Music: Navigating Mozart’s Symphony No.38 in D major With Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Use of Melodyne for Pitch Correction": 1 + "10th Grade Music: Delving into Mozart’s Symphony No.38 in D major Through Sibelius Music Notation Software, Tempo Mapping, Key Signature Analysis, and the Application of the Pythagorean Comma in Music Theory.": 1 + "1st Grade Health: Understanding Hygiene through the Use of Non-Alcoholic Hand Sanitizers": 1 + "1st Grade Health: The Role of Antibacterial Hand Gels in Promoting Hygiene": 1 + "1st Grade Health: Learning Hygiene with the Application of Organic Hand Sanitizers": 1 + "1st Grade Health: Enhancing Hygiene Awareness through the Use of Touchless Hand Sanitizer Dispensers": 1 + "1st Grade Health: Exploring Hygiene through the Science of Hand Sanitizers": 1 + "1st Grade Health: The Importance of Hygiene: A Study on Foaming Hand Sanitizers": 1 + "1st Grade Health: A Practical Approach to Hygiene Using Alcohol-Based Hand Sanitizers": 1 + "1st Grade Health: Understanding Hygiene through the Lens of Hand Sanitizer Ingredients": 1 + "1st Grade Health: Promoting Hygiene through the Use of Portable Hand Sanitizers": 1 + "1st Grade Health: The Effect of Scented Hand Sanitizers on Hygiene Practices": 1 + "4th Grade History: Prehistoric America - Utilization of Animal Skins and Stone Scrapers in Shelter Building": 1 + "4th Grade History: Prehistoric America - Use of Mammoth Skins and Stone Scrapers in Survival Techniques": 1 + "4th Grade History: Prehistoric America - Animal Skins and Flint Scrapers: Tools for Survival": 1 + "4th Grade History: Prehistoric America - Primitive Tools: Animal Skins and Quartz Scraper Technology": 1 + "4th Grade History: Prehistoric America - Prehistoric America: Understanding the Role of Animal Skins and Stone Scrapers in Food Processing": 1 + "4th Grade History: Prehistoric America - Survival in Prehistoric America: Animal Skins and Stone Scrapers in Clothing Production": 1 + "4th Grade History: Prehistoric America - The Evolution of Tools: Animal Skins and Stone Scrapers in Prehistoric America": 1 + "4th Grade History: Prehistoric America - The Importance of Animal Skins and Stone Scrapers in Prehistoric Hunting": 1 + "4th Grade History: Prehistoric America - Artifacts of Prehistoric America: Examining Animal Skins and Stone Scrapers in Ancient Tool Making": 1 + "4th Grade History: Prehistoric America - Prehistoric Technology: The Role of Animal Skins and Stone Scrapers in Resource Extraction": 1 + "2nd Grade Language Arts: Exploring Basic Sentence Structures through Storytelling": 1 + "2nd Grade Language Arts: Understanding Basic Sentence Structures with Interactive Whiteboards": 1 + "2nd Grade Language Arts: Mastering Basic Sentence Structures using Online Quizzes": 1 + "2nd Grade Language Arts: Decoding Basic Sentence Structures with Reading Apps": 1 + "2nd Grade Language Arts: Analyzing Basic Sentence Structures with Sentence Diagramming": 1 + "2nd Grade Language Arts: Engaging with Basic Sentence Structures through Digital Flashcards": 1 + "2nd Grade Language Arts: Learning Basic Sentence Structures using Educational Games": 1 + "2nd Grade Language Arts: Improving Basic Sentence Structures with Collaborative Online Platforms": 1 + "2nd Grade Language Arts: Reinforcing Basic Sentence Structures through Multimedia Presentations": 1 + "2nd Grade Language Arts: Visualizing Basic Sentence Structures with Graphic Organizers": 1 + "8th Grade World Cultures: Analyzing Globalization through Case Studies using Digital Storytelling and Google Earth": 1 + "8th Grade World Cultures: Investigating Globalization via Case Studies using Animation Software": 1 + "8th Grade World Cultures: Exploring Globalization with Case Studies using Virtual Reality": 1 + "8th Grade World Cultures: Studying Globalization through Case Studies using Video Editing Tools": 1 + "8th Grade World Cultures: Understanding Globalization through Case Studies using Podcasting Techniques": 1 + "8th Grade World Cultures: Investigating Globalization via Case Studies using Social Media Platforms": 1 + "8th Grade World Cultures: Examining Globalization through Case Studies using Interactive Whiteboards": 1 + "8th Grade World Cultures: Investigating Globalization by Case Studies using Blogging Tools": 1 + "8th Grade World Cultures: Probing Globalization through Case Studies using Slide-Show Presentation Software": 1 + "8th Grade World Cultures: Investigating Globalization through Case Studies using Cloud-Based Collaboration Tools.": 1 + "4th Grade History: Exploring Early American History Through Archival Research Using Primary Source Analysis and Ancestry.com": 1 + "4th Grade History: Learning Early American History With Archival Research Utilizing Primary Source Analysis and Digital Microfilm Scanners": 1 + "4th Grade History: Discovering Early American History Through Archival Research Using Primary Source Analysis and Optical Character Recognition Technology": 1 + "4th Grade History: Understanding Early American History Through Archival Research Utilizing Primary Source Analysis and Virtual Reality Tours": 1 + "4th Grade History: Studying Early American History Through Archival Research Using Primary Source Analysis and Database Search Engines": 1 + "4th Grade History: Navigating Early American History Through Archival Research Utilizing Primary Source Analysis and Historical Mapping Software": 1 + "4th Grade History: Delving into Early American History Through Archival Research Using Primary Source Analysis and Interactive Timelines": 1 + "4th Grade History: Unraveling Early American History Through Archival Research Utilizing Primary Source Analysis and Augmented Reality Apps": 1 + "4th Grade History: Probing Early American History Through Archival Research Using Primary Source Analysis and Digital Storytelling Tools": 1 + "4th Grade History: Decoding Early American History Through Archival Research Utilizing Primary Source Analysis and Cryptography Techniques.": 1 + "4th Grade Art: Mastering Color Theory with Digital Painting and Blending Modes using Photoshop": 1 + "4th Grade Art: Excellence in Color Theory through Digital Painting and Adobe Illustrator Techniques": 1 + "4th Grade Art: Harnessing Color Theory with Digital Painting and Blending Modes in Procreate": 1 + "4th Grade Art: Understanding Color Theory through Digital Painting and Layer Blending Modes in GIMP": 1 + "4th Grade Art: Exploring Color Theory using Digital Painting and Blending Modes in Corel Painter": 1 + "4th Grade Art: Color Theory Excellence with Digital Painting and Blending Modes on iPad Pro ": 1 + "4th Grade Art: Implementing Color Theory with Digital Painting and Blending Modes in Paint Tool SAI": 1 + "4th Grade Art: Embracing Color Theory in Digital Painting and Blending Modes using Microsoft Surface Studio": 1 + "4th Grade Art: Interpreting Color Theory using Digital Painting and Blending Modes in Krita": 1 + "4th Grade Art: Color Theory Mastery through Digital Painting and Blending Modes in Affinity Designer.": 1 + "Second Grade Language Arts: Exploring Folktales with Digital Storytelling Using Adobe Spark": 1 + "Second Grade Language Arts: Investigating Folktales through Digital Storytelling with PowerPoint ": 1 + "Second Grade Language Arts: Unraveling Folktales via Digital Storytelling with Google Slides": 1 + "Second Grade Language Arts: Delving into Folktales with Animation in Digital Storytelling": 1 + "Second Grade Language Arts: Exploring Folktales through Digital Storytelling with Shadow Puppetry": 1 + "Second Grade Language Arts: Narrating Folktales through Digital Storytelling with Podcasts": 1 + "Second Grade Language Arts: Interpreting Folktales with Digital Storytelling using Stop Motion Technique": 1 + "Second Grade Language Arts: Examining Folktales with Digital Storytelling and the Use of Green Screen Technology": 1 + "Second Grade Language Arts: Understanding Folktales with Digital Storytelling using VoiceThread": 1 + "Second Grade Language Arts: Exploring Folktales with Digital Storytelling and Interactive Whiteboard.": 1 + "8th Grade History: The Evolution of Renaissance Printing: A Deep Dive into the Gutenberg Press": 1 + "8th Grade History: The Influence of the Renaissance Printing Revolution: Highlighting Papermaking and Woodblock Printing": 1 + "8th Grade History: Renaissance Printing and the Rise of Moveable Type: A Closer Look at Papermaking": 1 + "8th Grade History: The Evolution of Renaissance Papermaking: A Study on the Impact of Water-powered Paper Mills": 1 + "8th Grade History: The Transformation of Renaissance Printing: Emphasizing the Role of Parchment in Papermaking": 1 + "8th Grade History: Unveiling the Renaissance: Papermaking and the Introduction of the Printing Press": 1 + "8th Grade History: The Renaissance Printing Evolution: A Focus on Papermaking and the Use of Metal Type": 1 + "8th Grade History: The Evolution of Renaissance Printing: Papermaking and the Importance of the Hand Mould": 1 + "8th Grade History: The Renaissance Printing Revolution: An Exploration of Papermaking and Lithography": 1 + "8th Grade History: The Impact of the Printing Press on Renaissance Papermaking: A Comprehensive Study of Ink Technology": 1 + "8th Grade Music: Exploring Classical Music Evolution through MIDI Orchestrations Using Ableton Live and Pro Tools": 1 + "8th Grade Music: Using Ableton Live and Sibelius for MIDI Orchestration in the Study of Classical Music Evolution": 1 + "8th Grade Music: A Study of Classical Music Evolution through MIDI Orchestrations with Ableton Live and FL Studio": 1 + "8th Grade Music: Utilizing Ableton Live and Logic Pro X to Examine Classical Music Evolution through MIDI Orchestrations": 1 + "8th Grade Music: Analyzing Classical Music Evolution with Ableton Live and Cubase through MIDI Orchestrations": 1 + "8th Grade Music: Understanding Classical Music Evolution through MIDI Orchestrations with Ableton Live and Melodyne": 1 + "8th Grade Music: A Deep Dive into Classical Music Evolution using MIDI Orchestrations in Ableton Live and Reason": 1 + "8th Grade Music: Investigating Classical Music Evolution using MIDI Orchestrations with Ableton Live and GarageBand": 1 + "8th Grade Music: Exploring Classical Music Evolution through MIDI Orchestrations Using Ableton Live and Reaper": 1 + "8th Grade Music: The Study of Classical Music Evolution through MIDI Orchestrations using Ableton Live and Studio One.": 1 + "2nd Grade Language Arts: Boosting Storytelling with Promethean Interactive Whiteboards": 1 + "2nd Grade Language Arts: Enhancing Storytelling via Google Slides and Animation": 1 + "2nd Grade Language Arts: Amplifying Storytelling with Padlet and Storyboard That": 1 + "2nd Grade Language Arts: Improving Storytelling with SmartBoard and Augmented Reality": 1 + "2nd Grade Language Arts: Advancing Storytelling with Google Slides and Powtoon": 1 + "2nd Grade Language Arts: Expanding Storytelling Using Padlet and Flipgrid": 1 + "2nd Grade Language Arts: Strengthening Storytelling Through Stop Motion Animation and Interactive Whiteboards": 1 + "2nd Grade Language Arts: Enhancing Storytelling with Google Slides and Prezi": 1 + "2nd Grade Language Arts: Enriching Storytelling using Interactive Whiteboards and Tynker Coding": 1 + "2nd Grade Language Arts: Magnifying Storytelling with Interactive Whiteboards, Google Slides, Padlet and Scratch Programming": 1 + "1st Grade Art: Exploring the Spectrum of Colors and Shapes with Watercolor Painting using Flat Brushes, Palette Knives, and Sponges": 1 + "1st Grade Art: Discovering the Spectrum of Colors and Shapes through Watercolor Painting using Flat Brushes, Palette Knives, and Easel": 1 + "1st Grade Art: Mastery of Colors and Shapes Spectrum with Watercolor Painting using Flat Brushes, Palette Knives, and Masking Fluid": 1 + "1st Grade Art: Unveiling the Spectrum of Colors and Shapes with Watercolor Painting and Flat Brushes, Palette Knives, and Gouache Techniques": 1 + "1st Grade Art: Journey through the Spectrum of Colors and Shapes with Watercolor Painting using Flat Brushes, Palette Knives, and Acrylic Mediums": 1 + "1st Grade Art: Navigating the Spectrum of Colors and Shapes through Watercolor Painting using Flat Brushes, Palette Knives, and Wash Techniques": 1 + "1st Grade Art: Insights into the Spectrum of Colors and Shapes with Watercolor Painting using Flat Brushes, Palette Knives, and Mixed Media": 1 + "1st Grade Art: Revealing the Spectrum of Colors and Shapes via Watercolor Painting with Flat Brushes, Palette Knives, and Glazing Techniques": 1 + "1st Grade Art: Understanding the Spectrum of Colors and Shapes in Watercolor Painting using Flat Brushes, Palette Knives, and Wet-on-Wet Technique": 1 + "1st Grade Art: Investigating the Spectrum of Colors and Shapes through Watercolor Painting using Flat Brushes, Palette Knives, and Digital Art Software": 1 + "2nd Grade English: Exploring Conjunction Placement with Interactive Grammar Games through the Canvas LMS": 1 + "2nd Grade English: Applying Graphic Organizers to Understand Conjunction Placement in Canvas LMS": 1 + "2nd Grade English: Understanding Conjunction Placement using Kahoot Quizzes in Canvas LMS": 1 + "2nd Grade English: Enhancing Conjunction Placement Skills with Smartboard Activities through the Canvas LMS": 1 + "2nd Grade English: Conjunction Placement Mastery using Google Classroom Integration in Canvas LMS": 1 + "2nd Grade English: Utilizing Virtual Whiteboard for Conjunction Placement Lessons in Canvas LMS": 1 + "2nd Grade English: Leveraging Augmented Reality to Teach Conjunction Placement in Canvas LMS": 1 + "2nd Grade English: Understanding Conjunction Placement through Podcasts and the Canvas LMS": 1 + "2nd Grade English: Conjunction Placement Practice with Quizlet Flashcards in Canvas LMS": 1 + "2nd Grade English: Interactive Conjunction Placement Lessons using PowerPoint Presentations in Canvas LMS": 1 + "Enhancing 8th Grade Rugby Passing Skills with PassGrip Rugby Training Ball and Video Analysis: 10 Effective Strategies": 1 + "Implementing Biomechanics Principles and PassGrip Rugby Training Ball in 8th Grade Rugby for Skill Improvement: 10 Techniques": 1 + "Using PassGrip Rugby Training Ball and Drone Technology in 8th Grade Rugby to Enhance Passing Skills: 10 Innovative Methods": 1 + "Combining PassGrip Rugby Training Ball and VR Simulations in 8th Grade Rugby for Passing Skill Enhancement: 10 Solutions": 1 + "Utilizing PassGrip Rugby Training Ball and Fitness Tracker Data in 8th Grade Rugby to Boost Passing Skills: 10 Approaches": 1 + "Applying the PassGrip Rugby Training Ball and Wearable Tech in 8th Grade Rugby for Passing Efficiency: 10 Techniques": 1 + "Optimizing 8th Grade Rugby Passing Skills with PassGrip Rugby Training Ball and Motion Capture Technology: 10 Strategies": 1 + "Enhancing 8th Grade Rugby Passing Skills using PassGrip Rugby Training Ball and Sports Performance Analytics: 10 Methods": 1 + "Improving 8th Grade Rugby Passing Skills with PassGrip Rugby Training Ball and Interactive Mobile Apps: 10 Solutions": 1 + "Using PassGrip Rugby Training Ball and AI Coaching in 8th Grade Rugby to Enhance Passing Skills: 10 Effective Strategies.": 1 + "7th Grade Art: Sketching with Graphite Pencils and Still Life Techniques": 1 + "7th Grade Art: Exploring Charcoal in Sketching and Still Life Techniques": 1 + "7th Grade Art: Pencil Shading Techniques in Sketching and Still Life": 1 + "7th Grade Art: Sketching and Still Life Techniques Using Pastels": 1 + "7th Grade Art: Introduction to Digital Sketching and Still Life Techniques": 1 + "7th Grade Art: Sketching and Still Life Techniques: A Focus on Proportions": 1 + "7th Grade Art: Sketching with Colored Pencils and Still Life Techniques": 1 + "7th Grade Art: Sketching and Still Life Techniques: Understanding Light and Shadow": 1 + "7th Grade Art: Watercolor Techniques in Sketching and Still Life": 1 + "7th Grade Art: Sketching and Still Life Techniques with Oil Pastels": 1 + "7th Grade Art: Sketching and Still Life Techniques: Exploring Perspective": 1 + "1st Grade Environmental Studies: Exploring Solar Charge Controllers and the Impact of Energy Storage Systems with Lithium-Ion Batteries.": 1 + "1st Grade Environmental Studies: The Role of Photovoltaic Cells in Solar Charge Controllers and Energy Storage Systems.": 1 + "1st Grade Environmental Studies: Understanding Solar Charge Controllers and the Impact of Energy Storage Systems using Tesla Powerwalls.": 1 + "1st Grade Environmental Studies: An In-depth Study of Solar Charge Controllers and the Impact of Off-Grid Energy Storage Systems.": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Impact of Energy Storage Systems - A Look at Renewable Energy Microgrids.": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and Energy Storage Systems - A Study of Energy Conversion Efficiency.": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Role of Supercapacitors in Energy Storage Systems.": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Impact of Deep Cycle Batteries on Energy Storage Systems.": 1 + "1st Grade Environmental Studies: Exploring Solar Charge Controllers and the Impact of Hybrid Energy Storage Systems.": 1 + "1st Grade Environmental Studies: Solar Charge Controllers and the Impact of Energy Storage Systems - A Focus on Greenhouse Gas Emissions.": 1 + "7th Grade History: The Role of the Compass in New World Exploration": 1 + "The Use of Astronomy in New World Exploration: A 7th Grade History Course": 1 + "7th Grade History: The Impact of Cartography on New World Explorations": 1 + "The New World and the Astrolabe: A 7th Grade History Course": 1 + "7th Grade History: The Influence of Gunpowder in New World Exploration": 1 + "Navigating the New World: A 7th Grade History Course on Sextants": 1 + "7th Grade History: Examining the Role of Ships in New World Exploration": 1 + "New World Exploration and the Printing Press: A 7th Grade History Focus": 1 + "7th Grade History: Understanding the Impact of Telescopes on New World Exploration": 1 + "The New World and Early Medicine: A 7th Grade History Course": 1 + "7th Grade Music: Exploring Chopin’s Piano Concertos through Oculus Rift VR ": 1 + "7th Grade Music: Study of Chopin’s Piano Concertos with VR and MIDI Keyboard": 1 + "7th Grade Music: Analysis of Chopin’s Piano Concertos using Virtual Reality and Sibelius Music Software": 1 + "7th Grade Music: A Deep Dive into Chopin’s Piano Concertos with Virtual Reality and Pro Tools": 1 + "7th Grade Music: Immersive Study of Chopin’s Piano Concertos using VR and Ableton Live": 1 + "7th Grade Music: Understanding Chopin’s Piano Concertos through VR and Audacity Audio Editor": 1 + "7th Grade Music: Chopin’s Piano Concertos in Focus with Virtual Reality and Logic Pro X": 1 + "7th Grade Music: Exploring Chopin’s Piano Concertos with VR and Garageband": 1 + "7th Grade Music: A Study of Chopin’s Piano Concertos using Virtual Reality and FL Studio": 1 + "7th Grade Music: Discovering Chopin’s Piano Concertos through Virtual Reality and Finale Notation Software": 1 + "4th Grade Music: Interactive Exploration of Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools Software and FL Studio Using MIDI Controllers": 1 + "4th Grade Music: Deep Dive into Handel’s Suites - Sound Design and Synthesis with Pro Tools Software, FL Studio, and Audacity": 1 + "4th Grade Music: Analyzing Handel’s Suites - Piano Interpretation via Sound Synthesis with Pro Tools, FL Studio, and Ableton Live": 1 + "4th Grade Music: Hands-on with Handel’s Suites - Piano Interpretation and Sound Synthesis using Pro Tools Software, FL Studio, and Logic Pro X": 1 + "4th Grade Music: Interactive Study of Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools, FL Studio, and Digital Audio Workstations (DAWs)": 1 + "4th Grade Music: Exploring Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools Software, FL Studio, and Sibelius Software": 1 + "4th Grade Music: In-depth Look at Handel’s Suites - Piano Interpretation and Sound Synthesis using Pro Tools, FL Studio, and GarageBand": 1 + "4th Grade Music: Understanding Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools Software, FL Studio, and Cubase": 1 + "4th Grade Music: Demystifying Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools, FL Studio, and Virtual Studio Technology (VST)": 1 + "4th Grade Music: Interactive Handel’s Suites - Piano Interpretation and Sound Synthesis with Pro Tools Software, FL Studio, and Reaper DAW.": 1 + "3rd Grade Science: Exploring Plant Life with Microscopes": 1 + "3rd Grade Science: Discovering Animal Habitats Through Satellite Imagery": 1 + "3rd Grade Science: Understanding Photosynthesis in Biology": 1 + "3rd Grade Science: Observing Life Cycles with Time-Lapse Photography": 1 + "3rd Grade Science: Examining Ecosystems with Virtual Reality": 1 + "3rd Grade Science: Diving into DNA and Genetics": 1 + "3rd Grade Science: Studying Cell Structures with Microscopes": 1 + "3rd Grade Science: Investigating Adaptation with Evolutionary Theory": 1 + "3rd Grade Science: Exploring Human Anatomy with 3D Models": 1 + "3rd Grade Science: Discovering Ocean Life Through Sonar Technology": 1 + "3rd Grade Science: Understanding Food Chains with Interactive Software": 1 + "4th Grade History: Exploring Maya Civilization with Google Earth and Interactive 3D Models": 1 + "4th Grade History: Understanding Maya Civilization using Virtual Reality and Interactive Timelines": 1 + "4th Grade History: Studying Maya Civilization using Tinkercad 3D Modeling and Interactive Timelines": 1 + "4th Grade History: Analyzing Maya Civilization using SketchUp 3D Modeling and Interactive Timelines": 1 + "4th Grade History: Engaging with Maya Civilization through Minecraft and Interactive Timelines": 1 + "4th Grade History: Discovering Maya Civilization using Augmented Reality and 3D Modeling": 1 + "4th Grade History: Learning about Maya Civilization with 3D Printing Technology and Interactive Timelines": 1 + "4th Grade History: Uncovering Maya Civilization using Interactive Whiteboard Technology and 3D Modeling": 1 + "4th Grade History: Interpreting Maya Civilization through Coding Concepts and 3D Modeling": 1 + "4th Grade History: Navigating Maya Civilization using GIS Mapping Technology and Interactive Timelines": 1 + "12th Grade Physical Education: Mastering Freestyle Stroke Techniques in Swimming with the aid of Video Analysis": 1 + "Utilizing Smart Swim Goggles in Mastering Freestyle Stroke Techniques: A Physical Education Course for 12th Graders": 1 + "Advanced Physical Education: Incorporating GoPro Cameras to Perfect Freestyle Stroke Techniques in Swimming for 12th Grade": 1 + "12th Grade Physical Education: Enhancing Performance in Freestyle Stroke Techniques through Hydrodynamic Principles": 1 + "Advanced 12th Grade Physical Education: Mastering Freestyle Stroke Techniques in Swimming with Resistance Training Tools": 1 + "Physical Education for 12th Grade: Mastering Freestyle Stroke Techniques in Swimming using Biomechanical Analysis": 1 + "12th Grade Physical Education: Utilizing Stroke Sensors for Mastery of Freestyle Swimming Techniques": 1 + "Mastering Freestyle Stroke Techniques in Swimming through Virtual Reality Training: A 12th Grade Physical Education Course": 1 + "12th Grade Physical Education: Perfecting Freestyle Stroke Techniques in Swimming with Underwater Audio Devices": 1 + "Physical Education in 12th Grade: Mastering Freestyle Stroke Techniques in Swimming using Drag Reduction Concept.": 1 + "1st Grade Music: Exploring Melody Fundamentals with Hand Drums and GarageBand": 1 + "1st Grade Music: Discovering Melody Basics with Hand Drums and Audacity": 1 + "1st Grade Music: Unravelling Melody Fundamentals with Hand Drums and FL Studio": 1 + "1st Grade Music: Understanding Melody Concepts with Hand Drums and Ableton Live": 1 + "1st Grade Music: Unraveling Melody Principles with Hand Drums and Pro Tools": 1 + "1st Grade Music: Learning Melody Basics with Hand Drums and Logic Pro X": 1 + "1st Grade Music: Decoding Melody Fundamentals with Hand Drums and Cubase": 1 + "1st Grade Music: Mastering Melody Core Concepts with Hand Drums and Reason": 1 + "1st Grade Music: Navigating Melody Fundamentals with Hand Drums and Cakewalk": 1 + "1st Grade Music: Grasping Melody Foundations with Hand Drums and Bitwig Studio": 1 + "4th Grade Basic Astronomy: Understanding Space Probes and the Hubble Telescope": 1 + "4th Grade Basic Astronomy: The Fundamentals of Space Probes and Radio Telemetry": 1 + "4th Grade Basic Astronomy: The Role of Spectrometry in Space Probes": 1 + "4th Grade Basic Astronomy: Space Probes and the Use of Solar Panels": 1 + "4th Grade Basic Astronomy: Examination of Space Probes and the Voyager Program": 1 + "4th Grade Basic Astronomy: Space Probes and the Concept of Gravity Assists ": 1 + "4th Grade Basic Astronomy: The Basics of Space Probes and Satellite Imaging": 1 + "4th Grade Basic Astronomy: Space Probes and the Technology of Rocket Propulsion": 1 + "4th Grade Basic Astronomy: The Fundamentals of Space Probes and Robotic Arms": 1 + "4th Grade Basic Astronomy: Deciphering Space Probes and Mars Rovers Technology.": 1 + "4th Grade Language Arts: Writing about Oculus Rift- A Deep Dive into Virtual Reality Innovations": 1 + "4th Grade Language Arts: Exploring Modern Innovations - Understanding Virtual Reality Through Google Cardboard": 1 + "4th Grade Language Arts: Deciphering Virtual Reality - A Study of HTC Vive’s Impact on Modern Innovations": 1 + "4th Grade Language Arts: Unraveling the Secrets of Virtual Reality - A Journey into PlayStation VR": 1 + "4th Grade Language Arts: Writing about Modern Innovations - Understanding Augmented Reality with Microsoft HoloLens": 1 + "4th Grade Language Arts: Exploring Modern Innovations - Understanding Virtual Reality Through Samsung Gear VR": 1 + "4th Grade Language Arts: Unpacking Virtual Reality - An Investigation into the Magic Leap One Creator Edition": 1 + "4th Grade Language Arts: Writing about Modern Innovations - Understanding Virtual Reality and the Role of Unity Engine": 1 + "4th Grade Language Arts: Diving into Virtual Reality - A Comprehensive Study of Valve Index": 1 + "4th Grade Language Arts: Decoding Modern Innovations - Understanding Virtual Reality Through the Lens of Google Daydream View": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age and the Impact of Radio Navigation": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age: The Advent of Aerial Photography": 1 + "7th Grade History: The Roaring Twenties - Evolution of Air Traffic Control in Aviation’s Golden Age": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age and the Role of Radar Technology": 1 + "7th Grade History: The Roaring Twenties - The Lindbergh Autopilot in Aviation’s Golden Age": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age: Emergence of Jet Engines": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age and the Invention of the Parachute": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age: The Introduction of Cabin Pressurization": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age: The Development of Air Mail": 1 + "7th Grade History: The Roaring Twenties - Aviation’s Golden Age and the Impact of the Gyroscopic Compass.": 1 + "2nd Grade Social Studies: Exploring Local Communities through Map Reading using Google Earth": 1 + "2nd Grade Social Studies: Analyzing Local Communities with Geographical Information Systems (GIS)": 1 + "2nd Grade Social Studies: Decoding Local Communities through Map Reading and Compass Usage": 1 + "2nd Grade Social Studies: Discovering Local Communities through Map Reading with Satellite Imagery": 1 + "2nd Grade Social Studies: Navigating Local Communities through Map Reading and GPS Technology": 1 + "2nd Grade Social Studies: Unfolding Local Communities via Map Reading and Cartographic Symbols": 1 + "2nd Grade Social Studies: Exploring Local Communities through Map Reading and Orienteering Concepts": 1 + "2nd Grade Social Studies: Learning about Local Communities through Map Reading and Topographic Maps": 1 + "2nd Grade Social Studies: Understanding Local Communities through Map Reading and Scale Concept": 1 + "2nd Grade Social Studies: Investigating Local Communities through Map Reading and Digital Map Applications": 1 + "2nd Grade Science: Investigating Grassland Ecosystems with Yuneec Typhoon Drones & Soil PH Testing Kits": 1 + "Studying Grassland Biomes: A Focus on Soil Composition Using Microscope Analysis in 2nd Grade Science": 1 + "Exploring 2nd Grade Science: Grassland Biomes through Drone Mapping, Bison Behavior Documentaries & Weather Station Data": 1 + "2nd Grade Science: Grassland Biomes - A Detailed Study with Yuneec Typhoon Drones, Soil Sampling Kits & GIS Mapping Techniques": 1 + "Unveiling Grassland Biomes: A 2nd Grade Science Course Using Drones, Wildlife Cameras, and Infrared Thermometers": 1 + "2nd Grade Science: A Deep Dive into Grassland Biomes with Drones, Soil Kits, Bison Documentaries, Wildlife Cameras and Satellite Imagery": 1 + "Detailed Exploration of Grassland Biomes with Drones, Soil Kits, Bison Documentaries, Wildlife Cameras & Telemetry in 2nd Grade Science": 1 + "2nd Grade Science: Grassland Biomes - A Comprehensive Study with Yuneec Typhoon Drones, Soil Composition Kits, Bison Documentaries, Wildlife Cameras & LIDAR Technology": 1 + "Understanding Grassland Biomes: 2nd Grade Science Using Drones, Soil Tests, Bison Documentaries, Wildlife Cameras and Spectrophotometers": 1 + "2nd Grade Science: A Hands-on Approach to Grassland Biomes with Drones, Soil Kits, Wildlife Cameras, Bison Documentaries & Remote Sensing Techniques.": 1 + "8th Grade Social Studies: Exploring History and Politics through Documentary Analysis using Interactive Timelines": 1 + "8th Grade Social Studies: Understanding History and Politics with Documentary Analysis and Google Earth": 1 + "8th Grade Social Studies: Analyzing History and Politics through Documentaries using the Concept of Globalization": 1 + "8th Grade Social Studies: Deciphering History and Politics through Documentary Analysis with Mind Mapping Techniques": 1 + "8th Grade Social Studies: Comprehending History and Politics through Documentary Analysis using Infographics": 1 + "8th Grade Social Studies: Investigating History and Politics through Documentary Analysis with the Power of Storytelling": 1 + "8th Grade Social Studies: Studying History and Politics through Documentary Analysis using Primary Source Verification": 1 + "8th Grade Social Studies: Examining History and Politics through Documentary Analysis with Podcasts": 1 + "8th Grade Social Studies: Interpreting History and Politics through Documentary Analysis using Augmented Reality ": 1 + "8th Grade Social Studies: Assessing History and Politics through Documentary Analysis with Virtual Field Trips.": 1 + "4th Grade Music: Mastering Rhythm through GarageBand Music Production Using MIDI Controllers ": 1 + "Exploring Rhythm in 4th Grade Music: An Introduction to Looping in GarageBand ": 1 + "4th Grade Music: Creating Dynamic Beats with Drum Machines in GarageBand ": 1 + "Mastering Rhythm through GarageBand Music Production: A Focus on Sampling in 4th Grade Music ": 1 + "4th Grade Music: From Basic Beats to Complex Rhythms Using GarageBand’s Drummer Track ": 1 + "4th Grade Music: Mastering Rhythm and Tempo through GarageBand’s Metronome Function ": 1 + "4th Grade Music: Understanding Rhythm Notation through GarageBand Music Production ": 1 + "Mastering Rhythm in 4th Grade Music: An In-depth Study of GarageBand’s Beat Sequencer ": 1 + "4th Grade Music: GarageBand Music Production and the Art of Layering Sounds for Rhythm Mastery ": 1 + "Mastering Rhythm: A Comprehensive Guide to Synthesizers in GarageBand for 4th Grade Music.": 1 + "1st Grade Elementary Health: Understanding Nutrition Through Food Pyramid Exploration": 1 + "1st Grade Elementary Health: Utilizing MyPlate for Better Nutrition Understanding": 1 + "1st Grade Elementary Health: Comprehending Nutrition Using Dietary Guidelines": 1 + "1st Grade Elementary Health: Navigating Nutrition with Interactive Food Apps": 1 + "1st Grade Elementary Health: Understanding Nutrition and Calories Using Kitchen Scales": 1 + "1st Grade Elementary Health: Introduction to Nutrition Labels for Healthy Eating": 1 + "1st Grade Elementary Health: Learning Nutrition with Cooking Demonstrations": 1 + "1st Grade Elementary Health: Understanding Nutrition through a Hands-On Garden Project": 1 + "1st Grade Elementary Health: Interactive Nutrition Lessons Using Tablet Apps": 1 + "1st Grade Elementary Health: Understanding Nutrition Through Dietary Tracking Software": 1 + "9th Grade Social Studies: The American Civil War, Ironclad Warships, and the Evolution of Naval Warfare": 1 + "9th Grade Social Studies: The Role of Submarine Warfare in the American Civil War": 1 + "9th Grade Social Studies: The American Civil War and the Impact of the Gatling Gun on Naval Warfare": 1 + "9th Grade Social Studies: The American Civil War, Torpedo Technology, and the Transformation of Naval Warfare": 1 + "9th Grade Social Studies: The American Civil War and the Advent of Steam-Powered Naval Vessels ": 1 + "9th Grade Social Studies: The American Civil War, Naval Blockades, and the Evolution of Naval Strategy": 1 + "9th Grade Social Studies: The American Civil War, the Telegraph, and its Influence on Naval Communications": 1 + "9th Grade Social Studies: The American Civil War, Naval Mines, and the Evolution of Underwater Warfare": 1 + "9th Grade Social Studies: The American Civil War and the Emergence of Naval Artillery Tactics": 1 + "9th Grade Social Studies: The American Civil War, the Role of the Naval Balloon Corps, and Aerial Reconnaissance in Warfare.": 1 + "11th Grade Music: The Impact of Electric Guitars on Jazz Evolution": 1 + "Exploring the Influence of Amplifiers in 11th Grade Jazz Music History": 1 + "11th Grade Music: The Role of Electric Piano in Jazz Development": 1 + "The Synthesizer: Its Rise in Jazz History - A Course for 11th Grade Music": 1 + "11th Grade Music: Understanding the Effect of Electric Bass in Jazz Progression": 1 + "The Introduction of Electronic Drums in Jazz: An 11th Grade Music Course": 1 + "11th Grade Music: The Significance of MIDI Technology in Jazz Evolution": 1 + "Electric Trumpets in Jazz: A Deep Dive for 11th Grade Music Students": 1 + "11th Grade Music: The Adoption of Electric Violins in Jazz History": 1 + "Analysing the Influence of Sound Mixers in Jazz: A Course for 11th Grade Music Students": 1 + "9th Grade Music: Exploring Harmony in Medieval Times through the Lens of the Pipe Organ and the Use of Monophonic Texture": 1 + "9th Grade Music: Harmony in Medieval Times: An In-depth Study of Pipe Organ and Gregorian Chant": 1 + "9th Grade Music: The Role of Pipe Organ in Medieval Harmony and the Development of Polyphony": 1 + "9th Grade Music: Medieval Harmony and Pipe Organ: A Close Look at Notation Systems": 1 + "9th Grade Music: Understanding Medieval Harmony through Pipe Organ and the Concept of Modes": 1 + "9th Grade Music: The Influence of the Pipe Organ on Medieval Harmony and the Rise of Motets": 1 + "9th Grade Music: Pipe Organ and Harmony in Medieval Times: A Study of Troubadour Songs": 1 + "9th Grade Music: Exploring the Connection between Pipe Organ and Medieval Harmony through the Use of Neumes": 1 + "9th Grade Music: The Pipe Organ’s Role in Medieval Harmony and the Evolution of Organum": 1 + "9th Grade Music: Medieval Harmony through Pipe Organ: Discovering the Impact of Guido of Arezzo’s Solmization": 1 + "8th Grade Science: Introduction to Data Analysis using Microsoft Excel and Pivot Tables": 1 + "8th Grade Science: Exploring Data Analysis with Microsoft Excel and VLOOKUP Function": 1 + "8th Grade Science: Mastering Data Analysis using Microsoft Excel and Conditional Formatting": 1 + "8th Grade Science: Learning Data Analysis with Microsoft Excel and Macros": 1 + "8th Grade Science: Data Analysis using Microsoft Excel and Charting Tools": 1 + "8th Grade Science: Data Analysis through Microsoft Excel and Power Query": 1 + "8th Grade Science: Understanding Data Analysis with Microsoft Excel and Data Sorting Techniques": 1 + "8th Grade Science: Practical Data Analysis using Microsoft Excel and Formulae": 1 + "8th Grade Science: Comprehensive Data Analysis using Microsoft Excel and Data Validation Tools": 1 + "8th Grade Science: Introduction to Data Analysis using Microsoft Excel and Solver Add-in.": 1 + "4th Grade Social Studies: The Role of Newspapers in Promoting Environmentalism in the 20th Century: An Examination of 10 Case Studies": 1 + "4th Grade Social Studies: The Influence of Print Media in Promoting Environmentalism in the 20th Century: A Focus on Magazine Campaigns": 1 + "4th Grade Social Studies: The Impact of Brochures in Spreading Environmental Awareness in the 20th Century: An Analysis of 10 Effective Techniques": 1 + "4th Grade Social Studies: The Contribution of Billboards to Green Movements in the 20th Century: A Study of 10 Successful Campaigns": 1 + "4th Grade Social Studies: The Power of Letterpress Printing in 20th Century Environmental Advocacy: A Review of 10 Significant Milestones": 1 + "4th Grade Social Studies: The Influence of Offset Printing in Advancing 20th Century Environmentalism: A Look at 10 Pivotal Events": 1 + "4th Grade Social Studies: The Impact of Lithography on Environmental Movements in the 20th Century: A Discussion of 10 Noteworthy Instances": 1 + "4th Grade Social Studies: The Role of Screenprinting in Promoting Environmentalism during the 20th Century: An Investigation into 10 Remarkable Campaigns": 1 + "4th Grade Social Studies: The Influence of Print Media via Posters in Environmental Advocacy in the 20th Century: A Study of 10 Crucial Developments": 1 + "4th Grade Social Studies: The Importance of Flyers in Disseminating Environmental Messages in the 20th Century: A Review of 10 Effective Strategies.": 1 + "1st Grade Social Studies: Exploring Democracy through Community Interactions using Google Earth": 1 + "1st Grade Social Studies: Understanding Democratic Principles in Community Interactions with AR Sandbox": 1 + "1st Grade Social Studies: Examining Democracy in Community Interactions using Interactive Mind Maps": 1 + "1st Grade Social Studies: Democracy in Community Interactions Explored through Story Maps": 1 + "1st Grade Social Studies: Investigating Democracy using VR Tours in Community Interactions": 1 + "1st Grade Social Studies: Democracy Study in Community Interactions using Minecraft Education Edition": 1 + "1st Grade Social Studies: Democracy in Community Interactions Explored with Interactive Whiteboards": 1 + "1st Grade Social Studies: Learning Democracy using Gamification in Community Interactions": 1 + "1st Grade Social Studies: Understanding Democracy through Community Interactions with Digital Timelines": 1 + "1st Grade Social Studies: Investigating Democracy in Community Interactions using Interactive Polling Tools.": 1 + "1st Grade Science: Recycling Education by Crafting Bottle Cap Mosaics with Acrylic Paints, Spray Sealants, and Glue Guns": 1 + "Using Hot Glue Guns in 1st Grade Science: Creating Bottle Cap Mosaics with Recycled Materials and Acrylic Paints": 1 + "1st Grade Science: Learning Recycling through Crafting Bottle Cap Mosaics using Acrylic Paints, Spray Sealants and Hot Glue Guns": 1 + "1st Grade Science: Recycling Education - A Practical Approach to Crafting Mosaics with Bottle Caps, Acrylic Paints and a Hot Glue Gun": 1 + "1st Grade Science: A Study of Recycling through Crafting: Making Bottle Cap Mosaics with Acrylic Paints, Spray Sealants and Glue Guns": 1 + "Crafting for Recycling: 1st Grade Science Course on Bottle Cap Mosaics using Acrylic Paints, Spray Sealants and Hot Glue Guns": 1 + "1st Grade Science: An In-depth Study of Recycling through Crafting using Acrylic Paints, Spray Sealants, Bottle Caps, and Hot Glue Guns": 1 + "Recycling Education in 1st Grade Science: Creating Mosaics with Bottle Caps, Acrylic Paints, Spray Sealants and a Hot Glue Gun": 1 + "Hands-on 1st Grade Science: Crafting Mosaics with Acrylic Paints, Spray Sealants, Bottle Caps and Hot Glue Guns for Recycling Education": 1 + "1st Grade Science: Crafting Bottle Cap Mosaics with Acrylic Paints, Spray Sealants, and Hot Glue Guns - A Unique Approach to Recycling Education.": 1 + "8th Grade Science: An In-depth Study of DNA Replication Using Gel Electrophoresis and Microscopes": 1 + "Exploring DNA Replication and Chromosome Segregation During Mitosis with Fluorescence Microscopy: A Course for 8th Graders": 1 + "8th Grade Science: Breaking Down DNA Replication and Mitosis Using Microscopes and Polymerase Chain Reaction Techniques": 1 + "Detailed Study of DNA Replication and Chromosome Segregation During Mitosis Using Microscopes and Spectroscopy for 8th Grade Science Students": 1 + "8th Grade Science: A Deep Dive into Mitosis with Microscopes and Flow Cytometry": 1 + "Understanding DNA Replication and Mitosis: A Microscopic View Using Microscopes and DNA Sequencing for 8th Graders": 1 + "An Insight Into DNA Replication and Chromosome Segregation During Mitosis Using Microscopes and Centrifugation: An 8th Grade Science Course": 1 + "8th Grade Science: Unraveling the Mysteries of DNA Replication and Mitosis Using Microscopes and CRISPR Technology": 1 + "8th Grade Science: Exploring Mitosis and DNA Replication Through Microscopes and Southern Blotting": 1 + "An Introduction to DNA Replication and Mitosis: Using Microscopes and Western Blotting in 8th Grade Science": 1 + "2nd Grade Science: Exploring Mountain Animal Habitats Using Google Earth Satellite Imagery Documentaries": 1 + "2nd Grade Science: Understanding Mountain Animal Habitats Through Drone Captured Film Studies": 1 + "2nd Grade Science: Analyzing Mountain Animal Habitats Through Satellite Imagery Documentaries with AR Technology": 1 + "2nd Grade Science: Studying Mountain Animal Habitats Through Satellite Imagery Documentaries and GIS Mapping": 1 + "2nd Grade Science: Deciphering Mountain Animal Habitats With Satellite Imagery Documentaries Using VR Tech": 1 + "2nd Grade Science: Understanding Mountain Animal Habitats Through Satellite Imagery Documentaries and Predictive Modeling": 1 + "2nd Grade Science: Interpreting Mountain Animal Habitats Through Satellite Imagery Documentaries with 3D Printing Models": 1 + "2nd Grade Science: Unraveling Mountain Animal Habitats Through Satellite Imagery Documentaries and Data Analytics": 1 + "2nd Grade Science: Comprehending Mountain Animal Habitats Through Satellite Imagery Documentaries and Machine Learning": 1 + "2nd Grade Science: Discovering Mountain Animal Habitats Using Satellite Imagery Documentaries and Thermal Imaging Technology.": 1 + "8th Grade Science: Data Interpretation in Experimental Studies Using Microscopes": 1 + "8th Grade Science: Utilizing Spectrophotometers in Data Interpretation in Experimental Studies": 1 + "8th Grade Science: Experimental Studies and Data Interpretation with Chromatography Techniques": 1 + "8th Grade Science: Data Interpretation in Experimental Studies Through DNA Sequencing": 1 + "8th Grade Science: Experimental Studies and Data Interpretation Using pH Meters": 1 + "8th Grade Science: Data Interpretation in Experimental Studies with the Use of Oscilloscopes": 1 + "8th Grade Science: Application of Gas Chromatography in Data Interpretation for Experimental Studies": 1 + "8th Grade Science: Data Interpretation in Experimental Studies Using Electron Microscopy": 1 + "8th Grade Science: Experimental Studies and Data Interpretation with the Use of Centrifuges": 1 + "8th Grade Science: Data Interpretation in Experimental Studies Applying Thermocycling Techniques": 1 + "1st Grade Reading: Understanding Fables through Smartboard Activities and Interactive Whiteboard Software": 1 + "1st Grade Reading: Comprehending Fairy Tales with Smartboard Activities and Text-to-Speech Technology": 1 + "1st Grade Reading: Story Comprehension and Character Recognition in Aesop’s Fables with Smartboard Activities": 1 + "1st Grade Reading: Exploring Folktales with Smartboard Activities and Virtual Reality Tools": 1 + "1st Grade Reading: Character Recognition in Grimm’s Fairy Tales with Smartboard Activities and Augmented Reality": 1 + "1st Grade Reading: Story Comprehension with Smartboard Activities and E-Book Integration": 1 + "1st Grade Reading: Understanding Mythology through Smartboard Activities and Digital Flashcards": 1 + "1st Grade Reading: Comprehending Story Themes with Smartboard Activities and Mind Mapping Tools": 1 + "1st Grade Reading: Character Recognition in Children’s Literature with Smartboard Activities and Interactive Storytelling Apps": 1 + "1st Grade Reading: Story Comprehension and Character Recognition using Smartboard Activities and Interactive Reading Platforms.": 1 + "1st Grade Reading: Mastering Alphabet Sounds with Phonics Flashcards and Interactive Whiteboard Activities": 1 + "1st Grade Reading: Applying Alphabet Sounds through Phonics Flashcards and Educational Apps": 1 + "1st Grade Reading: Enhancing Alphabet Sounds Comprehension with Phonics Flashcards and Speech Recognition Technology": 1 + "1st Grade Reading: Learning Alphabet Sounds using Phonics Flashcards and Augmented Reality Tools": 1 + "1st Grade Reading: Understanding Alphabet Sounds with Phonics Flashcards and Gamified Learning": 1 + "1st Grade Reading: Incorporating Alphabet Sounds with Phonics Flashcards and Touch Screen Technology": 1 + "1st Grade Reading: Building Alphabet Sounds Knowledge with Phonics Flashcards and Digital Storytelling": 1 + "1st Grade Reading: Practicing Alphabet Sounds with Phonics Flashcards and E-Learning Platforms": 1 + "1st Grade Reading: Exploring Alphabet Sounds through Phonics Flashcards and Podcasts": 1 + "1st Grade Reading: Recognizing Alphabet Sounds with Phonics Flashcards and Virtual Reality Learning": 1 + "2nd Grade Environmental Studies: Understanding the Role of Bees in Pollination and Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Pollination in Plant Life Cycle - A Deep Dive into Microscopes": 1 + "2nd Grade Environmental Studies: The Role of Wind in Pollination and Plant Life Cycle": 1 + "2nd Grade Environmental Studies: The Impact of Butterfly Pollination on Plant Life Cycle": 1 + "2nd Grade Environmental Studies: Exploring the Plant Life Cycle Through Pollination Using Digital Imaging Technology": 1 + "2nd Grade Environmental Studies: The Role of Pollination in Plant Life Cycle - An Introduction to Drones in Agriculture": 1 + "2nd Grade Environmental Studies: The Role of Pollination in Plant Life Cycle - A Study of Pollen Grains": 1 + "2nd Grade Environmental Studies: The Role of Pollination in Plant Life Cycle - A Focus on Pollinator Habitats": 1 + "2nd Grade Environmental Studies: Exploring the Role of Pollination in Plant Life Cycle with Augmented Reality": 1 + "2nd Grade Environmental Studies: The Role of Pollination in Plant Life Cycle - The Impact of Pesticides on Pollinators.": 1 + "2nd Grade Art: Integrating Watercolors in Exploring Color Theory through Origami Paper Folding": 1 + "2nd Grade Art: Utilizing Color Wheel in Exploring Color Theory through Origami Paper Folding": 1 + "2nd Grade Art: Incorporating Acrylic Paints in Color Theory through Origami Paper Folding": 1 + "2nd Grade Art: Exploring Color Theory through Origami Paper Folding Using Collage Techniques": 1 + "2nd Grade Art: Discovering Color Theory through Origami Paper Folding with Pastels": 1 + "2nd Grade Art: Exploring Color Theory through Origami Paper Folding and Digital Software": 1 + "2nd Grade Art: Exploring Color Theory through Origami Paper Folding with Mixed Media": 1 + "2nd Grade Art: Applying Crayons in Color Theory Exploration through Origami Paper Folding": 1 + "2nd Grade Art: Exploring Color Theory through Origami Paper Folding using Color Mixing Techniques": 1 + "2nd Grade Art: Understanding Color Theory through Origami Paper Folding with Printmaking Techniques": 1 + "1st Grade Environmental Studies: Exploring Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and The Use of Binoculars": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and The Introduction of Topographic Maps": 1 + "1st Grade Environmental Studies: Understanding Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and Soil Testing Kits": 1 + "1st Grade Environmental Studies: Discovering Ecosystems with Stream Gauges, GPS Technology, Plant Identification Techniques and Weather Monitoring Equipment": 1 + "1st Grade Environmental Studies: Investigating Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and A Focus on Botanical Illustration": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and Bird-Watching Guides": 1 + "1st Grade Environmental Studies: Exploring Flora with Stream Gauges, GPS Technology, Plant Identification Techniques and Microscope Usage": 1 + "1st Grade Environmental Studies: Journey through Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and Compass Navigation Skills": 1 + "1st Grade Environmental Studies: Learning about Biodiversity with Stream Gauges, GPS Technology, Plant Identification Techniques and Animal Track Identification": 1 + "1st Grade Environmental Studies: Navigating Nature with Stream Gauges, GPS Technology, Plant Identification Techniques and the Concept of Sustainable Living": 1 + "Utilizing Solar-Powered LED Grow Lights in 1st Grade Hydroponic Farming: A Study on Its Effectiveness": 1 + "The Role of Vermicompost and the Use of Automated Nutrient Solution Management in 1st Grade Hydroponics": 1 + "Sustainable Farming in 1st Grade Environmental Studies: The Impact of LED Grow Lights in Hydroponics with Raspberry Pi Technology": 1 + "Exploring the Role of Vermicompost in Nutrient Solution Management for 1st Grade Hydroponic Systems Using pH Sensors": 1 + "The Efficacy of LED Grow Lights in First Grade Hydroponics: An Examination of Light Spectrum Control": 1 + "The Role of Vermicompost and the Integration of Drip Irrigation Systems in Sustainable First Grade Farming": 1 + "Sustainable Farming in 1st Grade Environmental Studies: The Impact of LED Grow Lights and the Use of Soil Moisture Sensors in Hydroponics": 1 + "The Role of Vermicompost and the Implementation of Hydroponic Water Recycling Systems in 1st Grade Nutrient Solution Management": 1 + "The Impact of LED Grow Lights on 1st Grade Hydroponic Plant Growth: A Focus on Light Intensity Measurement Tools": 1 + "The Role of Vermicompost and the Integration of Aquaponics in Sustainable 1st Grade Hydroponic Systems.": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB, Excel and the Principle of Monte Carlo Simulation for Climate Change Solutions": 1 + "8th Grade Science: Application of Monte Carlo Simulation and MATLAB in Genetic Data Analysis and Interpretation": 1 + "8th Grade Science: MATLAB and Monte Carlo Simulation for Meteorological Data Analysis and Interpretation": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB, Quantum Computing and Monte Carlo Simulation in Physics": 1 + "8th Grade Science: Chemical Data Analysis and Interpretation using MATLAB and Monte Carlo Simulation with a Focus on Stoichiometry": 1 + "8th Grade Science: Using MATLAB and Monte Carlo Simulation for Astrophysical Data Analysis and Interpretation": 1 + "8th Grade Science: MATLAB and Monte Carlo Simulation for Geological Data Analysis and Interpretation": 1 + "8th Grade Science: Biological Data Analysis and Interpretation using MATLAB and Monte Carlo Simulation for DNA Sequencing": 1 + "8th Grade Science: MATLAB and Monte Carlo Simulation for Ecological Data Analysis and Interpretation": 1 + "8th Grade Science: Data Analysis and Interpretation using MATLAB, Monte Carlo Simulation and Machine Learning for Predictive Modelling in Biology.": 1 + "9th Grade Physical Education: Advanced Fitness and BMI Tracking with a focus on Carbohydrate Intake": 1 + "9th Grade Physical Education: Advanced Fitness and Heart Rate Monitoring with a focus on Protein-rich Diets": 1 + "9th Grade Physical Education: Advanced Fitness and Caloric Burn Calculation with a focus on Vitamin and Mineral Balance": 1 + "9th Grade Physical Education: Advanced Fitness and Body Composition Analysis with a focus on Portion Control Techniques": 1 + "9th Grade Physical Education: Advanced Fitness and Exercise Programming with a focus on Hydration Strategies": 1 + "9th Grade Physical Education: Advanced Fitness and Cardiovascular Endurance Measurement with a focus on Antioxidant-rich Foods": 1 + "9th Grade Physical Education: Advanced Fitness and Wearable Fitness Tech Utilization with a focus on Dietary Fiber Benefits": 1 + "9th Grade Physical Education: Advanced Fitness and Flexibility Assessment with a focus on Healthy Fat Consumption": 1 + "9th Grade Physical Education: Advanced Fitness and Resistance Training Techniques with a focus on Balanced Meal Planning": 1 + "9th Grade Physical Education: Advanced Fitness and Pedometer Use for Step Tracking with a focus on Sugar Intake Reduction.": 1 + "Navigating 1st Grade Mathematics: Exploring Shapes, Numbers, and Fraction Circles with Geoboard Activities ": 1 + "Navigating 1st Grade Mathematics: Utilizing Number Lines for Understanding Shapes and Fraction Circles ": 1 + "Navigating 1st Grade Mathematics: Applying Montessori Materials for Mastery of Shapes, Numbers, and Fraction Circles ": 1 + "Navigating 1st Grade Mathematics: Understanding Shapes, Numbers, and Fraction Circles using Tangrams ": 1 + "Navigating 1st Grade Mathematics: Integrating Digital Tools for Teaching Shapes, Numbers, and Fraction Circles ": 1 + "Navigating 1st Grade Mathematics: Manipulating Magnetic Blocks for Effective Learning of Shapes, Numbers, and Fraction Circles ": 1 + "Navigating 1st Grade Mathematics: Demonstrating Shapes, Numbers, and Fraction Circles using Interactive Whiteboards ": 1 + "Navigating 1st Grade Mathematics: Deploying Pattern Blocks for a Deeper Understanding of Shapes, Numbers, and Fraction Circles ": 1 + "Navigating 1st Grade Mathematics: Exploring Shapes, Numbers, and Fraction Circles using Augmented Reality ": 1 + "Navigating 1st Grade Mathematics: Applying the Concept of Symmetry in Learning Shapes, Numbers, and Fraction Circles.": 1 + "4th Grade History: The American Revolution Through Artifacts": 1 + "4th Grade History: The Role of Printing Presses in The American Revolution": 1 + "4th Grade History: The American Revolution and the Importance of Cannons": 1 + "4th Grade History: The Impact of Letters and Communication in The American Revolution": 1 + "4th Grade History: Understanding The American Revolution Through Cartography": 1 + "4th Grade History: The American Revolution and the Evolution of Musket Technology": 1 + "4th Grade History: Naval Technology in The American Revolution": 1 + "4th Grade History: The American Revolution and the Role of Horse-Drawn Wagons": 1 + "4th Grade History: The American Revolution - The Power of Propaganda": 1 + "4th Grade History: Exploring The American Revolution Through Colonial Currency": 1 + "3rd Grade Mathematics: Understanding Basic Multiplication with the Times Table": 1 + "3rd Grade Mathematics: Mastering Division through Long Division Techniques": 1 + "3rd Grade Mathematics: Exploring Basic Multiplication using Math Manipulatives": 1 + "3rd Grade Mathematics: Learning Division through Interactive Math Games": 1 + "3rd Grade Mathematics: Basic Multiplication and Division with Number Lines": 1 + "3rd Grade Mathematics: Discovering Basic Multiplication using the Grid Method": 1 + "3rd Grade Mathematics: Division Mastery using a Calculator": 1 + "3rd Grade Mathematics: Basic Multiplication and Division through Story Problems": 1 + "3rd Grade Mathematics: Understanding Division using Fractions": 1 + "3rd Grade Mathematics: Basic Multiplication Concepts through Arrays": 1 + "4th Grade Social Studies: Exploring Community Government through Virtual Reality Simulations": 1 + "4th Grade Social Studies: Understanding Community Government through Minecraft-based Simulations": 1 + "4th Grade Social Studies: Grasping Community Governance using AR Interactive Simulations": 1 + "4th Grade Social Studies: Civic Education through Interactive Roblox Government Simulations": 1 + "4th Grade Social Studies: Comprehending Community Governance through Interactive Whiteboard Simulations": 1 + "4th Grade Social Studies: Community Government Insights via 3D Printing Simulations": 1 + "4th Grade Social Studies: Unveiling Local Government using Scratch Coding Simulations": 1 + "4th Grade Social Studies: Delving into Community Administration via AI-Enhanced Simulations": 1 + "4th Grade Social Studies: Probing Community Government through Interactive Simulations on iPads": 1 + "4th Grade Social Studies: Exploring Democracy through Gamified Government Simulations": 1 + "Exploring Doppler Radar: A Comprehensive Course on Weather Patterns for Kindergarten Environmental Studies": 1 + "Kindergarten Environmental Studies: Understanding Weather Patterns Through Anemometer Technology": 1 + "Thermometer and Weather Radar Technology: A Focus on Weather Patterns for Kindergarten Environmental Studies": 1 + "Barometer Use in Kindergarten Environmental Studies: Understanding Weather Patterns": 1 + "Weather Balloon Technology: A Kindergarten Course on Understanding Environmental Studies and Weather Patterns": 1 + "Kindergarten Environmental Studies: Decoding Weather Patterns Through Hygrometer Use": 1 + "Wind Vane Applications in Kindergarten Environmental Studies: Learning Weather Patterns": 1 + "Satellite Imagery in Weather Forecasting: A Kindergarten Course on Environmental Studies": 1 + "Kindergarten Environmental Studies: Understanding Weather Patterns Through Rain Gauge Technology": 1 + "Advanced Weather Station Use: A Kindergarten Course on Environmental Studies and Weather Patterns.": 1 + "2nd Grade History: The Role of Medieval Herbal Remedies during the Black Death: A Focus on the Use of Thyme": 1 + "Deciphering the Impact of Willow Bark: A Study in 2nd Grade History of Medieval Herbal Remedies during the Black Death": 1 + "A Look at the Feudal System: The Role of Garlic in Medieval Herbal Remedies during the Black Death for 2nd Grade History": 1 + "2nd Grade History: Understanding the Impact of Medieval Herbal Remedies on the Feudal System: The Case of Dandelion": 1 + "2nd Grade History: The Role of Chamomile in Medieval Herbal Remedies and its Influence on the Feudal System": 1 + "Exploring the Role of Lavender in Medieval Herbal Remedies during the Black Death: A 2nd Grade History Course": 1 + "The Impact of Nettle on the Feudal System: A 2nd Grade History Course on Medieval Herbal Remedies": 1 + "2nd Grade History: The Influence of Yarrow in Medieval Herbal Remedies during the Black Death and on the Feudal System": 1 + "The Role and Impact of Rosemary in Medieval Herbal Remedies: A 2nd Grade History Course during the Black Death": 1 + "2nd Grade History: The Role of Sage in Medieval Herbal Remedies during the Black Death and its Influence on the Feudal System": 1 + "10th Grade Music: Decoding Mozart’s Symphonies with Sibelius Music Notation Software, Utilizing Dynamic Markings and Sostenuto Pedal Technique": 1 + "10th Grade Music: Analyzing Mozart’s Symphonies with Sibelius Notation Software and Metronome Technology": 1 + "10th Grade Music: Deciphering Mozart’s Symphonies Using Sibelius, Dynamics Interpretation and Music Theory Concepts": 1 + "10th Grade Music: Interpreting Mozart’s Symphonies through Sibelius Notation Software and Application of Counterpoint": 1 + "10th Grade Music: Decoding Mozart’s Symphonies with Sibelius, Dynamics Interpretation and Forte-piano Technique": 1 + "10th Grade Music: Unraveling Mozart’s Symphonies Using Sibelius Notation Software and Historical Context Analysis": 1 + "10th Grade Music: Exploring Mozart’s Symphonies through Sibelius Music Notation and Cadence Recognition": 1 + "10th Grade Music: Understanding Mozart’s Symphonies with Sibelius Software, Dynamics, and Motivic Development": 1 + "10th Grade Music: Decoding Mozart’s Symphonies Using Sibelius, Dynamics Interpretation and Timbre Analysis ": 1 + "10th Grade Music: Breaking Down Mozart’s Symphonies with Sibelius Notation Software and Leitmotif Identification": 1 + "4th Grade Science: Detailed Exploration of the Solar System using NASA’s Eyes Mobile Application and Virtual Reality": 1 + "4th Grade Science: Understanding the Solar System with NASA’s Eyes Mobile Application and 3D Planet Models": 1 + "4th Grade Science: Interactive Study of the Solar System using NASA’s Eyes Mobile Application and Augmented Reality": 1 + "4th Grade Science: Exploring the Solar System through NASA’s Eyes Mobile Application and Telescopic Observations": 1 + "4th Grade Science: Comprehending the Solar System with NASA’s Eyes Mobile Application and Satellite Imagery": 1 + "4th Grade Science: In-depth Study of the Solar System using NASA’s Eyes Mobile Application and Planetarium Software": 1 + "4th Grade Science: Discovering the Solar System with NASA’s Eyes Mobile Application and Space Probes": 1 + "4th Grade Science: An Insight into the Solar System using NASA’s Eyes Mobile Application and Hubble Space Telescope": 1 + "4th Grade Science: Engaging Study of the Solar System through NASA’s Eyes Mobile Application and Space Simulation Games": 1 + "4th Grade Science: Detailed Study of the Solar System using NASA’s Eyes Mobile Application and Mars Rover Technology.": 1 + "3rd Grade Science: A Microscopic Investigation of Plant Life: Roots, Stems, and Leaves": 1 + "3rd Grade Science: Photosynthesis in Detail: Exploring Roots, Stems, and Leaves": 1 + "3rd Grade Science: Plant Life: A Detailed Study on Roots, Stems, Leaves and Seeds through Microscopy": 1 + "3rd Grade Science: Plant Life: Understanding the Role of Chlorophyll in Roots, Stems, and Leaves": 1 + "3rd Grade Science: Investigating Plant Life with Magnifying Glasses: Zooming in on Roots, Stems, and Leaves": 1 + "3rd Grade Science: The DNA of Plant Life: A Genetic Analysis of Roots, Stems, and Leaves": 1 + "3rd Grade Science: Utilizing Lab Experiments to Explore Plant Life: A Focus on Roots, Stems, and Leaves": 1 + "3rd Grade Science: Plant Life: A Hands-on Study of Roots, Stems, and Leaves with Interactive Technology": 1 + "3rd Grade Science: Exploring the Impact of Sunlight on Plant Life: A Detailed Study of Roots, Stems, and Leaves": 1 + "3rd Grade Science: Plant Life: A Comparative Study of Roots, Stems, Leaves, and Flowers Using Dissection Tools.": 1 + "7th Grade Algebra: Mastering Factorization of Quadratics using Desmos and MapleSoft Software with the Quadratic Formula": 1 + "7th Grade Algebra: Unlocking the Mysteries of Factorization with the FOIL Method using Desmos and MapleSoft": 1 + "7th Grade Algebra: Deep Dive into Polynomial Factorization with Desmos and MapleSoft using Synthetic Division": 1 + "7th Grade Algebra: Understanding Prime Factorization using Desmos and MapleSoft Software with Sieve of Eratosthenes": 1 + "7th Grade Algebra: Exploring the Complexities of Difference of Squares Factorization using Desmos and MapleSoft Software": 1 + "7th Grade Algebra: Deciphering Factorization by Grouping with Desmos and MapleSoft Software": 1 + "7th Grade Algebra: Interpreting Factorization of Cubics using Desmos and MapleSoft Software with the Factor Theorem": 1 + "7th Grade Algebra: Analyzing Factorization using Desmos, MapleSoft Software and the Zero Product Property": 1 + "7th Grade Algebra: Unraveling Factorization of Perfect Squares with Desmos and MapleSoft Software": 1 + "7th Grade Algebra: Discovering Factorization using Desmos and MapleSoft Software with the Binomial Theorem.": 1 + "2nd Grade Reading: Mastering Phonics through Songs and Rhymes using ABCMouse": 1 + "2nd Grade Reading: Enhancing Phonics Mastery through Songs, Rhymes and the LeapFrog LeapReader": 1 + "2nd Grade Reading: Mastering Phonics with Songs, Rhymes, and Starfall Technology": 1 + "2nd Grade Reading: Phonics Mastery through Interactive Songs and Rhymes using iPad Apps": 1 + "2nd Grade Reading: Mastering Phonics through Songs, Rhymes, and the Hooked on Phonics Program": 1 + "2nd Grade Reading: Boosting Phonics Skills with Songs, Rhymes, and the Reading Eggs App": 1 + "2nd Grade Reading: Phonics Mastery with Songs, Rhymes, and the use of SMART Board Interactive Whiteboard": 1 + "2nd Grade Reading: Mastering Phonics through Songs, Rhymes and the Epic! Reading App": 1 + "2nd Grade Reading: Enhancing Phonics Comprehension using Songs, Rhymes, and the Raz-Kids Platform": 1 + "2nd Grade Reading: Mastering Phonics through Songs, Rhymes and the use of PhonicsPlay Interactive Games.": 1 + "4th Grade Physical Education: Football Safety and Application of Gyroscopes in Helmet Impact Sensors": 1 + "4th Grade Physical Education: Football, Microcontroller-based Helmet Impact Sensors and Their Application": 1 + "4th Grade Physical Education: Football and Use of Biomechanics in Helmet Impact Sensor Design": 1 + "4th Grade Physical Education: Football and Helmet Impact Sensors - An Exploration of Piezoelectric Materials": 1 + "4th Grade Physical Education: Football and The Role of Accelerometers in Helmet Impact Sensors": 1 + "4th Grade Physical Education: Football and Helmet Impact Sensors: A Study on Strain Gauge Technology": 1 + "4th Grade Physical Education: Football and Helmet Impact Sensors - Understanding Force Sensing Resistors": 1 + "4th Grade Physical Education: Football, Understanding Pressure Transducers in Helmet Impact Sensors": 1 + "4th Grade Physical Education: Football and Helmet Impact Sensors: The Impact of MEMS Technology": 1 + "4th Grade Physical Education: Football and The Role of Wireless Communication in Helmet Impact Sensors.": 1 + "5th Grade Science: Understanding Biodiversity through Microscope Studies": 1 + "5th Grade Science: Exploring Biodiversity with DNA Sequencing": 1 + "5th Grade Science: Understanding Biodiversity using the Concept of Evolution ": 1 + "5th Grade Science: Analyzing Biodiversity with Ecological Footprint Calculations": 1 + "5th Grade Science: Uncovering Biodiversity with the help of GIS Technology ": 1 + "5th Grade Science: Learning Biodiversity through the Study of Endangered Species": 1 + "5th Grade Science: Understanding Biodiversity with Satellite Imagery ": 1 + "5th Grade Science: Investigating Biodiversity through Field Studies ": 1 + "5th Grade Science: Understanding Biodiversity: A Deep Dive into Ecosystem Services ": 1 + "5th Grade Science: Exploring Biodiversity using Bioacoustic Monitoring": 1 + "1st Grade History: Exploring Local Heroes through Google Earth": 1 + "1st Grade History: Uncovering Local Heroes with Augmented Reality Maps": 1 + "1st Grade History: Identifying Local Heroes using Interactive 3D Maps": 1 + "1st Grade History: Discovering Local Heroes through Virtual Reality Map Tours": 1 + "1st Grade History: Interpreting Local Heroes with Digital Cartography Tools": 1 + "1st Grade History: Learning Local Heroes using Geographic Information Systems (GIS)": 1 + "1st Grade History: Investigating Local Heroes with Drone Mapping Technology": 1 + "1st Grade History: Tracing Local Heroes through GPS-based Interactive Maps": 1 + "1st Grade History: Unveiling Local Heroes with Map-Based Coding Activities": 1 + "1st Grade History: Decoding Local Heroes through Map-Integrated Storytelling Apps": 1 + "1st Grade Music: Exploring Rhythm with Hand Drums": 1 + "1st Grade Music: Introduction to Rhythm using Tambourines": 1 + "1st Grade Music: Learning Rhythm Through Hand Percussions and Metronome": 1 + "1st Grade Music: Introduction to Rhythm with Hand Bells": 1 + "1st Grade Music: Exploring Rhythm with Hand Percussions and Music Software": 1 + "1st Grade Music: Learning Rhythm Through Hand Percussions and Beat Notation": 1 + "1st Grade Music: Discovering Rhythm with Hand Percussions and Digital Loops": 1 + "1st Grade Music: Introduction to Rhythm with Maracas": 1 + "1st Grade Music: Exploring Rhythm with Hand Percussions and Tempo Recognition": 1 + "1st Grade Music: Learning Rhythm Through Hand Percussions and Sound Waves": 1 + "Exploring the Impact of Blacksmith’s Forge on Horse Nutrition and Cavalry Strategies During the Revolutionary War: A Detailed 8th Grade History Course": 1 + "The Influence of Iron Horseshoes on Equine Diet and Military Tactics During the Revolutionary War: An 8th Grade History Investigation": 1 + "Understanding the Role of Smithing Hammer Techniques in Equine Health and Battle Strategies During the Revolutionary War: An 8th Grade History Course": 1 + "Dissecting the Effects of Farrier Tools on Horse Nutrition and Military Decisions During the Revolutionary War: An In-depth 8th Grade History Study": 1 + "Impact of Smithing Tongs on Horse’s Dietary Needs and War Techniques During the Revolutionary War: An 8th Grade History Lesson": 1 + "The Role of Anvil in Horse Nutrition and Tactical Developments During the Revolutionary War: An 8th Grade History Exploration": 1 + "Studying the Influence of the Smithing Bellows on Horse Diet and Military Tactics in the Revolutionary War: An 8th Grade History Course": 1 + "The Impact of Smith’s Striker on Equine Nutrition and War Strategies During the Revolutionary War: An 8th Grade History Module": 1 + "Understanding the Role of Quenching Techniques in Horse Nutrition and Armed Forces Strategies During the Revolutionary War: A Comprehensive 8th Grade History Course": 1 + "The Implications of Smithing Chisels on Horse Health and Revolutionary War Tactics: An Advanced 8th Grade History Course.": 1 + "2nd Grade Language Arts: Digital Storytelling with Comic Strips using Procreate and iPencil": 1 + "2nd Grade Language Arts: Exploring Digital Storytelling with Comic Strips using Procreate and Animation Techniques": 1 + "2nd Grade Language Arts: Interactive Storytelling with Comic Strips using Procreate and Augmented Reality ": 1 + "2nd Grade Language Arts: Digital Storytelling with Comic Strips using Procreate and Sound Effects": 1 + "2nd Grade Language Arts: Creating Comic Strips using Procreate and 3D Design for Digital Storytelling": 1 + "2nd Grade Language Arts: Digital Storytelling with Comic Strips using Procreate and Voiceover Narration": 1 + "2nd Grade Language Arts: Digital Storytelling with Animated Comic Strips using Procreate and Stop Motion Techniques": 1 + "2nd Grade Language Arts: Digital Storytelling with Comic Strips using Procreate and Interactive Hyperlinks": 1 + "2nd Grade Language Arts: Immersive Digital Storytelling with Comic Strips using Procreate and Virtual Reality Techniques": 1 + "2nd Grade Language Arts: Engaging Digital Storytelling with Comic Strips using Procreate and Layering Techniques": 1 + "5th Grade Environmental Studies: Recycling and Conservation with Composting Techniques": 1 + "5th Grade Environmental Studies: The Impact of Solar Energy on Recycling and Conservation": 1 + "5th Grade Environmental Studies: Understanding Recycling and Conservation Through Rainwater Harvesting": 1 + "5th Grade Environmental Studies: Recycling and Conservation with Waste-to-Energy Conversion ": 1 + "5th Grade Environmental Studies: Exploring Recycling and Conservation Through Biodegradable Materials ": 1 + "5th Grade Environmental Studies: Wind Power and its Role in Recycling and Conservation ": 1 + "5th Grade Environmental Studies: Recycling and Conservation with the Use of Smart Trash Bins": 1 + "5th Grade Environmental Studies: The Role of AI in Recycling and Conservation ": 1 + "5th Grade Environmental Studies: Recycling and Conservation Through the Lens of Circular Economy ": 1 + "5th Grade Environmental Studies: Recycling and Conservation with the Use of Eco-Friendly Packaging Materials": 1 + "First Grade Environmental Studies: Solar Energy Conversion Using Photovoltaic Cells, Parabolic Solar Cookers, and the Role of Silicon ": 1 + "First Grade Environmental Studies: Exploring Solar Energy Conversion and the Function of Solar Panels in Photovoltaic Cells ": 1 + "First Grade Environmental Studies: Harnessing Solar Energy: Photovoltaic Cells, Solar Cookers, and the Impact of Sun Tracking Systems ": 1 + "First Grade Environmental Studies: Solar Energy Conversion: A Study of Photovoltaic Cells, Solar Cookers, and the Effect of Solar Insolation ": 1 + "First Grade Environmental Studies: Solar Energy Conversion: Photovoltaic Cells, Solar Cookers, and the Benefits of Charge Controllers ": 1 + "First Grade Environmental Studies: Photovoltaic Cells and Solar Cookers: Converting Solar Energy and the Power of Solar Inverters ": 1 + "First Grade Environmental Studies: Solar Energy Conversion with Photovoltaic Cells, Solar Cookers, and the Utilization of Solar Battery Storage ": 1 + "First Grade Environmental Studies: Solar Energy Conversion: Photovoltaic Cells, Solar Cookers, and the Efficiency of Solar Charge Regulators ": 1 + "First Grade Environmental Studies: Solar Energy Conversion: An Investigation into Photovoltaic Cells, Solar Cookers, and the Importance of Solar Radiation Measurement ": 1 + "First Grade Environmental Studies: Solar Energy Conversion Through Photovoltaic Cells, Solar Cookers, and the Application of Solar Reflectors.": 1 + "6th Grade Art: Understanding Sketching Techniques with Graphite Pencils, Pastels, Chalks, and Watercolors": 1 + "6th Grade Art: Introduction to Sketching and Painting with Graphite Pencils, Pastels, Chalks, and Charcoal": 1 + "6th Grade Art: Mastery of Shading Techniques in Sketching and Painting with Graphite Pencils, Pastels, and Chalks": 1 + "6th Grade Art: Exploration of Texture in Sketching and Painting with Graphite Pencils, Pastels, Chalks, and Acrylics": 1 + "6th Grade Art: The Art of Still Life Drawing with Graphite Pencils, Pastels, Chalks, and Oil Paints": 1 + "6th Grade Art: Exploring Sketching and Painting Landscapes with Graphite Pencils, Pastels, Chalks, and Gouache": 1 + "6th Grade Art: Understanding Color Theory in Sketching and Painting with Graphite Pencils, Pastels, Chalks, and Color Wheels": 1 + "6th Grade Art: Advanced Techniques in Sketching and Painting with Graphite Pencils, Pastels, Chalks, and Digital Art Software": 1 + "6th Grade Art: Exploring Sketching and Painting Portraits with Graphite Pencils, Pastels, Chalks, and Ink": 1 + "6th Grade Art: Creating Abstract Art with Graphite Pencils, Pastels, Chalks, and Mixed Media Techniques": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects using Abacus and Lego Blocks": 1 + "3rd Grade Elementary: Enhancing Multiplication Skills through Grouping Objects using Abacus and Math Manipulatives": 1 + "3rd Grade Elementary: Exploring Multiplication via Grouping Objects using Abacus and Number Lines": 1 + "3rd Grade Elementary: Mastering Multiplication through Grouping Objects using Abacus and Interactive Whiteboard": 1 + "3rd Grade Elementary: Understanding Multiplication through Grouping Objects using Abacus and Counting Sticks": 1 + "3rd Grade Elementary: Developing Multiplication Skills through Grouping Objects using Abacus and Virtual Math Games": 1 + "3rd Grade Elementary: Grasping Multiplication Concepts through Grouping Objects using Abacus and Math Apps": 1 + "3rd Grade Elementary: Navigating Multiplication through Grouping Objects using Abacus and Flash Cards": 1 + "3rd Grade Elementary: Comprehending Multiplication through Grouping Objects using Abacus and Base Ten Blocks": 1 + "3rd Grade Elementary: Learning Multiplication through Grouping Objects using Abacus and Digital Math Platforms": 1 + "1st Grade Spanish: Exploring Vocabulary with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Rosetta Stone": 1 + "1st Grade Spanish: Comprehensive Vocabulary Learning with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Duolingo Exercises": 1 + "1st Grade Spanish: In-depth Language Acquisition with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Flipgrid Videos": 1 + "1st Grade Spanish: Vocabulary Mastery with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Google Translate Tools": 1 + "1st Grade Spanish: Language Foundation Building with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Tandem Language Exchange": 1 + "1st Grade Spanish: Interactive Vocabulary Learning with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Memrise Activities": 1 + "1st Grade Spanish: Comprehensive Vocabulary Learning with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Anki Repetition System": 1 + "1st Grade Spanish: Fun Linguistic Journey with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Pimsleur Audio Lessons": 1 + "1st Grade Spanish: Thorough Language Understanding with Babbel, Microsoft Teams Flashcards, Quizlet Games, and Busuu Online Platform ": 1 + "1st Grade Spanish: Engaging Vocabulary Practice with Babbel, Microsoft Teams Flashcards, Quizlet Games, and LingQ Language Learning System.": 1 + "5th Grade Environmental Studies: Exploring Recycling & Conservation via Smart Trash Bins & Solar Energy": 1 + "5th Grade Environmental Studies: Implementing IoT in Recycling & Conservation with Smart Trash Bins": 1 + "5th Grade Environmental Studies: Conservation Techniques via Smart Trash Bins & Water Harvesting": 1 + "5th Grade Environmental Studies: Smart Trash Bins & Composting Techniques in Recycling & Conservation": 1 + "5th Grade Environmental Studies: Recycling & Conservation with Smart Trash Bins & Biodegradable Materials": 1 + "5th Grade Environmental Studies: Smart Trash Bins & The Concept of Circular Economy in Recycling & Conservation": 1 + "5th Grade Environmental Studies: Exploring Recycling & Conservation with Smart Trash Bins & Wind Energy": 1 + "5th Grade Environmental Studies: Smart Trash Bins & Zero Waste Concept in Recycling & Conservation": 1 + "5th Grade Environmental Studies: Recycling & Conservation through Smart Trash Bins & Eco-design": 1 + "5th Grade Environmental Studies: Recycling & Conservation with Smart Trash Bins & Waste-to-Energy Technologies": 1 + "3rd Grade English: Mastering Paragraph Writing using Story Mapping": 1 + "3rd Grade English: Perfecting Paragraph Writing through Mind Maps": 1 + "3rd Grade English: Mastering Paragraph Writing with Google Docs": 1 + "3rd Grade English: Exploring Paragraph Construction using Storyboard That": 1 + "3rd Grade English: Enhancing Paragraph Writing Skills with Microsoft Word": 1 + "3rd Grade English: Mastering Paragraph Writing through Sentence Diagramming": 1 + "3rd Grade English: Improving Paragraph Writing using Graphic Organizers": 1 + "3rd Grade English: Mastering Paragraph Writing with the Help of Grammarly": 1 + "3rd Grade English: Perfecting Paragraph Writing through Peer Review Process": 1 + "3rd Grade English: Mastering Paragraph Writing - Focus on Conjunctions and Transitions.": 1 + "5th Grade History: Understanding Ancient Greek Civilization through the Lens of Bronze Metallurgy, Democracy, and the Phalanx Formation": 1 + "5th Grade History: The Impact of Bronze Metallurgy and Democracy on Ancient Greek Civilization: A Focus on the Acropolis": 1 + "5th Grade History: Ancient Greek Civilization - Bronze Metallurgy, Democracy, and the Introduction of Coinage": 1 + "5th Grade History: Exploring Ancient Greek Civilization with Bronze Metallurgy, Democracy, and the Chariot": 1 + "5th Grade History: Unveiling Ancient Greek Civilization: Bronze Metallurgy, Democracy, and the Amphitheater": 1 + "5th Grade History: Ancient Greek Civilization: The Birth of Democracy, Bronze Metallurgy, and the Olympic Games": 1 + "5th Grade History: The Influence of Bronze Metallurgy and Democracy in Ancient Greek Civilization: A Study of the Trireme": 1 + "5th Grade History: Ancient Greek Civilization: A Journey through Bronze Metallurgy, Democracy, and the Oracle of Delphi": 1 + "5th Grade History: Unraveling Ancient Greek Civilization: The Role of Bronze Metallurgy, Democracy, and the Lyre": 1 + "5th Grade History: Ancient Greek Civilization: An Examination of Bronze Metallurgy, Democracy, and the Concept of Philosophy": 1 + "7th Grade Music: Exploring Rhythm and Beats Using Piano Pedals and Metronomes": 1 + "7th Grade Music: Mastering Tempo with Piano Pedals and Digital Tuners": 1 + "7th Grade Music: Discovering Syncopation with Piano Pedals and Beat Sequencers": 1 + "7th Grade Music: Delving into Polyrhythms Using Piano Pedals and Loop Stations": 1 + "7th Grade Music: Understanding Musical Phrasing with Piano Pedals and MIDI Controllers": 1 + "7th Grade Music: Navigating Jazz Rhythms Using Piano Pedals and Drum Machines": 1 + "7th Grade Music: Exploring Rhythm and Beats Using Piano Pedals and Music Notation Software": 1 + "7th Grade Music: Fusing Rhythm and Melody with Piano Pedals and Audio Interfaces": 1 + "7th Grade Music: Playing with Time Signatures Using Piano Pedals and Multitrack Recorders": 1 + "7th Grade Music: Grasping the Groove with Piano Pedals and Electronic Drum Pads.": 1 + "3rd Grade English: Utilizing Toon Boom Harmony’s Node View in Cultural Storytelling": 1 + "3rd Grade English: Incorporating Toon Boom Harmony’s Timeline in Cultural Storytelling": 1 + "3rd Grade English: Applying Toon Boom Harmony’s Colour Palettes in Cultural Storytelling": 1 + "3rd Grade English: Exploring Cultural Storytelling Through Toon Boom Harmony’s Camera Tools": 1 + "3rd Grade English: Using Toon Boom Harmony’s Rigging Tools in Cultural Storytelling": 1 + "3rd Grade English: Mastering Toon Boom Harmony’s Drawing Tools for Cultural Storytelling": 1 + "3rd Grade English: Harnessing Toon Boom Harmony’s Sound Mixing in Cultural Storytelling": 1 + "3rd Grade English: Incorporating Toon Boom Harmony’s Morphing Tools in Cultural Storytelling": 1 + "3rd Grade English: Applying Toon Boom Harmony’s Vector Technology in Cultural Storytelling": 1 + "3rd Grade English: Exploiting Toon Boom Harmony’s 3D Integration in Cultural Storytelling": 1 + "10th Grade History: Journey Through the Renaissance - A Deep Dive into the Gutenberg Press and Woodblock Printing": 1 + "Delving into the Renaissance: A 10th Grade Study of Gutenberg Press and the Concept of Movable Type": 1 + "10th Grade History: The Impact of Gutenberg Press and the Advent of Papermaking During the Renaissance": 1 + "Renaissance Journey: The Role of Gutenberg Press and the Introduction of Parchment in 10th Grade History": 1 + "10th Grade History: Exploration of Renaissance via Gutenberg Press and the Revolution of Ink Technology": 1 + "Journey Through the Renaissance: Understanding the Gutenberg Press and the Influence of Letterpress Printing - A 10th Grade Study": 1 + "10th Grade History: Gutenberg Press - The Renaissance’s Gift to the World of Typography": 1 + "The Renaissance Uncovered: A 10th Grade Study of Gutenberg Press and the Emergence of Bookbinding Techniques": 1 + "10th Grade History: The Gutenberg Press in the Renaissance - From Alphabets to Illuminated Manuscripts": 1 + "Gutenberg Press & Renaissance - A 10th Grade Study of the Transformation of Script Writing.": 1 + "Revolutionary War Era in 8th Grade History: The Culper Spy Ring’s Use of Invisible Ink": 1 + "Decoding History: The Culper Spy Ring and the Use of Cipher Wheels in 8th Grade Studies": 1 + "Cryptography Techniques of the Revolutionary War: An In-depth Study of The Culper Spy Ring’s Dead Drops": 1 + "The Revolutionary War and the Culper Spy Ring: Exploring the Art of Mask Letters in 8th Grade History": 1 + "History and Cryptography: The Use of Codebooks by the Culper Spy Ring in the Revolutionary War": 1 + "8th Grade History: Revolutionary War’s Culper Spy Ring and their Revolutionary Use of Secret Writing": 1 + "The Culper Spy Ring in the Revolutionary War: Unveiling the Secrets of Steganography in 8th Grade History": 1 + "Revolutionary War Era: The Culper Spy Ring’s Use of Quill Pens for Secret Communications": 1 + "An 8th Grade Historical Dive: The Revolutionary War’s Culper Spy Ring and the Advent of Cryptology": 1 + "Deciphering the Past: The Culper Code and its Significance in the Revolutionary War for 8th Grade History.": 1 + "5th Grade Science: Studying the Lifecycle of a Butterfly Using Microscopy": 1 + "5th Grade Science: Exploring the Lifecycle of a Butterfly with 3D Modeling": 1 + "5th Grade Science: Understanding the Lifecycle of a Butterfly Using Time-lapse Photography": 1 + "5th Grade Science: Lifecycle of a Butterfly - An In-depth Study with Electron Microscope": 1 + "5th Grade Science: Lifecycle of a Butterfly - A Research Project Using Digital Imaging": 1 + "5th Grade Science: Analyzing the Lifecycle of a Butterfly Through Bioinformatics": 1 + "5th Grade Science: Lifecycle of a Butterfly - Detailed Observations Using Telescopic Lens": 1 + "5th Grade Science: Investigating the Lifecycle of a Butterfly Through Spectroscopy": 1 + "5th Grade Science: Lifecycle of a Butterfly - A Comprehensive Study Using Scanning Electron Microscopy": 1 + "5th Grade Science: Lifecycle of a Butterfly - Examination Through Thermal Imaging": 1 + "4th Grade History: Exploring Ancient China through Podcasting and Digital Narratives using Adobe Spark": 1 + "4th Grade History: Understanding Ancient China with Podcasting, iMovie, and Digital Narratives": 1 + "4th Grade History: Deciphering Ancient China via Audacity Podcasting and Digital Storytelling": 1 + "4th Grade History: Unraveling Ancient China using GarageBand for Podcasting and Digital Narratives": 1 + "4th Grade History: Journey Through Ancient China with Podcasting on Soundtrap and Digital Narratives": 1 + "4th Grade History: Discovering Ancient China using Podcasting and Interactive Digital Narratives with ThingLink": 1 + "4th Grade History: Investigating Ancient China using Podcasting, Digital Narratives, and Google Earth": 1 + "4th Grade History: Unravelling Ancient China using Podcasting with Podbean and Digital Narratives": 1 + "4th Grade History: Navigating Ancient China through Podcasting on Anchor and Digital Narratives": 1 + "4th Grade History: Uncovering Ancient China using Podcasting and Digital Narratives with Virtual Reality.": 1 + "9th Grade Biology: Exploring Genetics with Gel Electrophoresis Technology, PCR, and Comparative Genomic Hybridization.": 1 + "9th Grade Biology: Investigating Genetic Variations using PCR Technology, Comparative Genomic Hybridization and DNA Sequencing.": 1 + "9th Grade Biology: A Deeper Look into Genetics with PCR, Comparative Genomic Hybridization, and Microarray Analysis.": 1 + "9th Grade Biology: Understanding Genetics Through PCR, Comparative Genomic Hybridization and Flow Cytometry.": 1 + "9th Grade Biology: Genetic Exploration employing PCR Technology, Comparative Genomic Hybridization, and Fluorescence in situ Hybridization.": 1 + "9th Grade Biology: Comprehensive Study on Genetics using PCR, Comparative Genomic Hybridization, and Next Generation Sequencing.": 1 + "9th Grade Biology: Genetics Examination with PCR, Comparative Genomic Hybridization and Real-time PCR Technology.": 1 + "9th Grade Biology: Detailed Analysis of Genetics using PCR, Comparative Genomic Hybridization, and Mass Spectrometry.": 1 + "9th Grade Biology: Genetics Discovery with PCR Technology, Comparative Genomic Hybridization, and Spectrophotometry Instrumentation.": 1 + "9th Grade Biology: Unearthing Genetics with PCR, Comparative Genomic Hybridization and Chromatography Techniques.": 1 + "Ironclads and The Civil War: A Deep Dive into the Impact of Gatling Guns for 9th Grade American History": 1 + "Ironclads and The Civil War: The Role of Telegraph Communication in 9th Grade American History": 1 + "The Ironclad Revolution: A Study on Cannons in the Civil War for 9th Grade American History": 1 + "The Role of Ironclads in Civil War: A Focus on Military Railroads for 9th Grade American History": 1 + "Ironclads and The Civil War: Understanding the Use of Hot-air Balloons for 9th Grade American History": 1 + "Ironclads and The Civil War: A Study on Medical Advancements for 9th Grade American History": 1 + "Ironclads and The Civil War: A Study on Submarines in the Civil War for 9th Grade American History": 1 + "The Crucial Role of Ironclads and Photography in The Civil War: A Detailed Study for 9th Grade American History": 1 + "Ironclads and The Civil War: A Focus on Naval Mines for 9th Grade American History": 1 + "Ironclads and The Civil War: A Study on the Use of Rifled Muskets for 9th Grade American History": 1 + "1st Grade Elementary Health: Understanding Food Pyramid through Nutrition Labels for Healthy Eating": 1 + "1st Grade Elementary Health: Learning to Read Nutrition Labels for Balanced Diet using MyPlate": 1 + "1st Grade Elementary Health: Introduction to Nutrition Labels and Dietary Guidelines for Healthy Eating": 1 + "1st Grade Elementary Health: Using Nutrition Facts Labels for Healthy Eating Decisions": 1 + "1st Grade Elementary Health: Decoding Nutrition Labels with Interactive Food Label Reader for Healthy Eating": 1 + "1st Grade Elementary Health: Introduction to Nutrition Labels and Calorie Counting for Healthy Eating": 1 + "1st Grade Elementary Health: Navigating Nutrition Labels for Healthy Eating with USDA’s SuperTracker": 1 + "1st Grade Elementary Health: Exploring Macronutrients through Nutrition Labels for Healthy Eating": 1 + "1st Grade Elementary Health: Introduction to Nutrition Labels and Food Portions for Healthy Eating": 1 + "1st Grade Elementary Health: Utilizing QR Codes on Nutrition Labels for Information on Healthy Eating.": 1 + "4th Grade Geography: Exploring Northeast US with Google Cardboard VR and Digital Tangram Puzzles using Google Maps": 1 + "4th Grade Geography: A Detailed Survey of Midwest US Regions with Google Cardboard VR, Digital Tangram Puzzles & Kahoot Quizzes": 1 + "4th Grade Geography: Understanding Western US through Google Cardboard VR and Digital Tangram Puzzles with Minecraft Education Edition": 1 + "4th Grade Geography: A Comprehensive Study of Southern US with Google Cardboard VR, Digital Tangram Puzzles & Interactive Whiteboards": 1 + "4th Grade Geography: Discovering Central US Regions using Google Cardboard VR, Digital Tangram Puzzles & Scratch Programming": 1 + "4th Grade Geography: In-depth Overview of Northern US with Google Cardboard VR, Digital Tangram Puzzles & 3D Printing Concepts": 1 + "4th Grade Geography: Exploring Southwest US Regions with Google Cardboard VR, Digital Tangram Puzzles & Augmented Reality": 1 + "4th Grade Geography: Detailed Study of Northwest US using Google Cardboard VR, Digital Tangram Puzzles and Chromebooks": 1 + "4th Grade Geography: Understanding the Rocky Mountains with Google Cardboard VR, Digital Tangram Puzzles & Tinkercad 3D Design": 1 + "4th Grade Geography: A Comprehensive Overview of Pacific US with Google Cardboard VR, Digital Tangram Puzzles & Virtual Field Trips": 1 + "6th Grade History: Ancient Chinese Pagodas and the Importance of Tongue and Groove Joinery Techniques with Focus on the Use of Chisels": 1 + "Exploring the Role of Miter Saws in Ancient Chinese Pagodas’ Tongue and Groove Joinery Techniques: A 6th Grade History Course": 1 + "6th Grade History: The Application of Hand Planes in Ancient Chinese Pagodas’ Tongue and Groove Joinery Techniques": 1 + "6th Grade History: Ancient Chinese Pagodas and the Importance of Tongue and Groove Joinery Techniques - A Deep Dive into the Use of Mortise and Tenon Joints": 1 + "The Role of Dovetail Joints in Ancient Chinese Pagodas’ Construction: A Detailed Study for 6th Grade History": 1 + "6th Grade History: Ancient Chinese Pagodas - Exploring the Impact of Tongue and Groove Joinery Techniques and the Use of Drawknives": 1 + "The Importance of Tongue and Groove Joinery Techniques and the Use of Adzes in Ancient Chinese Pagodas: A 6th Grade History Course": 1 + "6th Grade History: Ancient Chinese Pagodas and the Influence of Tongue and Groove Joinery Techniques with Emphasis on the Use of Coping Saws": 1 + "A Study of the Use of Butt Joints in Ancient Chinese Pagodas’ Construction: A 6th Grade History Course on Tongue and Groove Joinery Techniques": 1 + "6th Grade History: Ancient Chinese Pagodas and the Significance of Tongue and Groove Joinery Techniques - Incorporating the Use of Gouges.": 1 + "Utilizing Adobe Animate for 3rd Grade English: Analyzing the Morals of Ten Classic Fairy Tales": 1 + "Pixar RenderMan and 3rd Grade English: Understanding the Morals of Classic Fairy Tales with 10 Different Animations": 1 + "3rd Grade English and Blender: Delivering Morals of Classic Fairy Tales through Custom 3D Animation": 1 + "3rd Grade English: Using Maya to Teach Morals of Classic Fairy Tales with 10 Animated Projects": 1 + "3rd Grade English: A Deep Dive into Morals of Classic Fairy Tales with Cinema 4D": 1 + "Exploring Morals of Classic Fairy Tales in 3rd Grade English with Unity: Ten Interactive Animations": 1 + "3rd Grade English: Unveiling Morals of Classic Fairy Tales through After Effects Animation": 1 + "3rd Grade English: Using Toon Boom Harmony to Decode Morals of Ten Classic Fairy Tales": 1 + "ZBrush in 3rd Grade English: Sculpting Morals of Classic Fairy Tales through 10 Animated Stories": 1 + "3rd Grade English: Unraveling Morals of Classic Fairy Tales through 10 Stop Motion Projects with Dragonframe.": 1 + "First Grade Language Arts: Building Vocabulary with Rosetta Stone Interactive Software and Flashcards Technique": 1 + "First Grade Language Arts: Enhancing Basic Vocabulary using Rosetta Stone Interactive Software and Storytelling Method": 1 + "First Grade Language Arts: Vocabulary Improvement using Rosetta Stone Software and Phonics Education": 1 + "First Grade Language Arts: Strengthening Vocabulary with Rosetta Stone and Visual Aids": 1 + "First Grade Language Arts: Vocabulary Enrichment using Rosetta Stone Software and Repetitive Reading Strategy": 1 + "First Grade Language Arts: Vocabulary Enhancement with Rosetta Stone and Role Playing Teaching Method": 1 + "First Grade Language Arts: Advancing Vocabulary using Rosetta Stone Software and Picture Association Technique": 1 + "First Grade Language Arts: Boosting Vocabulary with Rosetta Stone and Kinesthetic Learning Tools": 1 + "First Grade Language Arts: Intensifying Vocabulary using Rosetta Stone and Montessori Materials": 1 + "First Grade Language Arts: Augmenting Vocabulary with Rosetta Stone and Gamification Approach.": 1 + "3rd Grade English: Utilizing Maya 3D Animation, Adobe Premiere, and Photoshop for Storytelling in Aztec Culture": 1 + "3rd Grade English: Using Maya 3D Animation, Adobe Premiere and Python Coding for Narratives from Japanese Folklore": 1 + "3rd Grade English: Storytelling in Ancient Greece Using Maya 3D Animation, Adobe Premiere and Virtual Reality Technology": 1 + "3rd Grade English: Maya 3D Animation, Adobe Premiere, and Scratch Programming for African Cultural Storytelling": 1 + "3rd Grade English: Applying Maya 3D Animation, Adobe Premiere, and PowerPoint in Aboriginal Australian Storytelling": 1 + "3rd Grade English: Maya 3D Animation, Adobe Premiere, and Green Screen Tech for Storytelling in Viking Mythology": 1 + "3rd Grade English: Using Maya 3D Animation, Adobe Premiere, and Blender for Storytelling from Native American Legends": 1 + "3rd Grade English: Storytelling in Celtic Mythology Using Maya 3D Animation, Adobe Premiere, and Augmented Reality": 1 + "3rd Grade English: Maya 3D Animation, Adobe Premiere, and GarageBand for Storytelling in Ancient Egyptian Culture": 1 + "3rd Grade English: Using Maya 3D Animation, Adobe Premiere, and Unity for Narratives from Chinese Folklore": 1 + "8th Grade Art: Intro to Charcoal Drawing with Willow Sticks and Acrylic Painting": 1 + "8th Grade Art: Understanding Light and Shadow in Charcoal Drawing and Acrylic Painting": 1 + "8th Grade Art: Intro to Charcoal Drawing and Acrylic Painting using Easel": 1 + "8th Grade Art: Charcoal Drawing Techniques with Blending Stumps and Acrylic Painting ": 1 + "8th Grade Art: Intro to Charcoal Drawing on Canvas and Acrylic Painting": 1 + "8th Grade Art: Intro to Charcoal Drawing with Fixatives and Acrylic Painting": 1 + "8th Grade Art: Exploring Texture in Charcoal Drawing and Acrylic Painting": 1 + "8th Grade Art: Intro to Charcoal Drawing and Acrylic Painting using Palette Knives": 1 + "8th Grade Art: Advanced Shading in Charcoal Drawing and Acrylic Painting": 1 + "8th Grade Art: Intro to Charcoal Drawing and Acrylic Painting with Brushwork Techniques": 1 + "10th Grade Art: Mastering Digital Art through ArtRage’s Watercolor Brush, Layer Masks, and Stencil Tool": 1 + "10th Grade Art: Exploring Digital Art with ArtRage’s Watercolor Brush, Layer Masks, and the Power of Texturing": 1 + "10th Grade Art: Understanding Digital Art through ArtRage’s Watercolor Brush, Layer Masks, and Digital Ink Techniques": 1 + "10th Grade Art: Delving into Digital Art with ArtRage’s Watercolor Brush, Layer Masks, and the Use of the Palette Knife Tool": 1 + "10th Grade Art: Discovering Digital Art using ArtRage’s Watercolor Brush, Layer Masks, and the Magic of Gradient Fills": 1 + "10th Grade Art: A Study of Digital Art through ArtRage’s Watercolor Brush, Layer Masks, and the Precision of the Line Tool": 1 + "10th Grade Art: Navigating Digital Art with ArtRage’s Watercolor Brush, Layer Masks, and the Innovation of the Tube Tool": 1 + "10th Grade Art: Understanding Digital Art through ArtRage’s Watercolor Brush, Layer Masks, and the Impact of Opacity Settings": 1 + "10th Grade Art: Learning Digital Art via ArtRage’s Watercolor Brush, Layer Masks, and the Functionality of the Eraser Tool": 1 + "10th Grade Art: Unfolding Digital Art through ArtRage’s Watercolor Brush, Layer Masks, and the Versatility of the Smudge Tool": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction with Abacus": 1 + "2nd Grade Mathematics: Understanding Fractions using Fraction Circles": 1 + "2nd Grade Mathematics: Mastering Multiplication Tables with Digital Apps": 1 + "2nd Grade Mathematics: Geometric Shapes Exploration with Interactive Models": 1 + "2nd Grade Mathematics: Journey through Numbers using Mathematical Board Games": 1 + "2nd Grade Mathematics: Enhancing Number Sense with Montessori Materials": 1 + "2nd Grade Mathematics: Tackling Word Problems with Graphic Organizers": 1 + "2nd Grade Mathematics: Discovering Patterns with Tangram Puzzles": 1 + "2nd Grade Mathematics: Learning Money and Time with Real-life Simulations": 1 + "2nd Grade Mathematics: Graphing Concepts using Digital Tools": 1 + "Exploring Beethoven’s Symphonies through the Lens of a 6th Grade Study: A Detailed Examination of the Piano Forte using Audacity Digital Audio Workstation": 1 + "Beethoven’s Symphonies and their Interpretation on Piano Forte: A 6th Grade Study using MIDI Technology on GarageBand ": 1 + "Beethoven’s Symphonies in the Modern Age: A 6th Grade Study on the Piano Forte using Pro Tools Digital Audio Workstation": 1 + "The Impact of Digital Audio Workstations on 6th Grade Study of Beethoven’s Symphonies: Focusing on the Piano Forte and Ableton Live": 1 + "Innovations in Music: A 6th Grade Study of Beethoven’s Symphonies and the Piano Forte using FL Studio and Auto-Tune Technology": 1 + "Unveiling Beethoven’s Symphonies: A 6th Grade Deep Dive into the Piano Forte using Logic Pro X Digital Audio Workstation": 1 + "Innovations in Music: A 6th Grade Study of Beethoven’s Symphonies using the Piano Forte and Cubase Digital Audio Workstation with VST Plugins": 1 + "Beethoven’s Symphonies and the Piano Forte: A 6th Grade Study using REAPER Digital Audio Workstation and Spectral Analysis": 1 + "Deconstructing Beethoven’s Symphonies: A 6th Grade Study of the Piano Forte using Reason Digital Audio Workstation and Equalization Techniques": 1 + "The Evolution of Beethoven’s Symphonies: A 6th Grade Exploration of the Piano Forte using Avid Pro Tools and Spatial Audio Concepts.": 1 + "5th Grade History: The American Revolution - Introduction to Espionage and the Use of Invisible Ink": 1 + "5th Grade History: The American Revolution - Unveiling Espionage Tactics: Spy Codes": 1 + "5th Grade History: The American Revolution - Espionage & The Role of Cipher Devices": 1 + "5th Grade History: The American Revolution - Espionage Tools: Use of Dead Drops ": 1 + "5th Grade History: The American Revolution - Espionage Techniques: The Culper Spy Ring and Signal Flags": 1 + "5th Grade History: The American Revolution - Espionage and Communication: The Role of Pigeons": 1 + "5th Grade History: The American Revolution - Introduction to Espionage: Hidden Compartment Devices": 1 + "5th Grade History: The American Revolution - Espionage: The Art of Disguise and Deception": 1 + "5th Grade History: The American Revolution - Espionage: The Role of Women and Secret Messages": 1 + "5th Grade History: The American Revolution - Espionage: Use of Spy Glasses and Covert Listening Devices.": 1 + "Kindergarten Environmental Studies: Introduction to Weather Patterns and Cloud Identification using Meteorological Balloons": 1 + "Kindergarten Environmental Studies: Understanding Weather Patterns and Cloud Identification through Interactive Weather Maps": 1 + "Kindergarten Environmental Studies: Introduction to Weather Patterns and Cloud Identification with Rain Gauges ": 1 + "Kindergarten Environmental Studies: Exploring Weather Patterns and Cloud Identification using Thermometers ": 1 + "Kindergarten Environmental Studies: Weather Patterns and Cloud Identification: A Study with Barometers ": 1 + "Kindergarten Environmental Studies: Weather Patterns and Cloud Identification: A Hands-On Study with Weather Vanes ": 1 + "Kindergarten Environmental Studies: An Introduction to Weather Patterns and Cloud Identification through Weather Stations ": 1 + "Kindergarten Environmental Studies: Weather Patterns and Cloud Identification using Hygrometers ": 1 + "Kindergarten Environmental Studies: Weather Patterns and Cloud Identification: A Practical Approach with Anemometers ": 1 + "Kindergarten Environmental Studies: Exploring Weather Patterns and Cloud Identification through Weather Satellites ": 1 + "Kindergarten Environmental Studies: A Deep Dive into Weather Patterns and Cloud Identification using Radar Technology.": 1 + "4th Grade Art: Exploring Color Theory with Acrylic Paints, Glazing Techniques, and Light Boxes Using Brush Work": 1 + "4th Grade Art: Color Theory Mastery through Acrylic Paints, Glazing Techniques, Light Boxes, and Digital Art Apps": 1 + "4th Grade Art: Understanding Color Theory through Acrylic Paints, Glazing Techniques, Light Boxes, and Texture Manipulation": 1 + "4th Grade Art: A Deep Dive into Color Theory with Acrylic Paints, Glazing Techniques, Light Boxes, and Palette Knives": 1 + "4th Grade Art: Color Theory Revealed through Acrylic Paints, Glazing Techniques, Light Boxes, and Layering Techniques": 1 + "4th Grade Art: Advanced Color Theory through Acrylic Paints, Glazing Techniques, Light Boxes, and the RGB Color Model": 1 + "4th Grade Art: Harnessing Color Theory through Acrylic Paints, Glazing Techniques, Light Boxes, and Mixed Media Applications": 1 + "4th Grade Art: Color Theory Exploration using Acrylic Paints, Glazing Techniques, Light Boxes, and Stencil Artwork": 1 + "4th Grade Art: Unveiling Color Theory through Acrylic Paints, Glazing Techniques, Light Boxes, and the use of Easels": 1 + "4th Grade Art: Comprehensive Color Theory with Acrylic Paints, Glazing Techniques, Light Boxes, and Perspective Drawing.": 1 + "3rd Grade English: Analyzing Aesop’s Fables with Podcasts, Podbean, Padlet, and Google Classroom": 1 + "3rd Grade English: Dissecting Folktales through Podcasts, Podbean, Padlet and Kahoot Quizzes": 1 + "3rd Grade English: Exploring Fable Morals using Podcasts, Podbean, Padlet and Zoom Discussions": 1 + "3rd Grade English: Fables Dissected using Podcasts, Podbean, Padlet and Book Creator for Storytelling": 1 + "3rd Grade English: Understanding Fables through Podcasts, Podbean, Padlet and Flipgrid for Peer Reviews": 1 + "3rd Grade English: Fables Dissected using Podcasts, Podbean, Padlet, and Quizlet for Vocabulary Building": 1 + "3rd Grade English: Interactive Fable Study using Podcasts, Podbean, Padlet, and Nearpod for Virtual Field Trips": 1 + "3rd Grade English: Fables Dissected using Podcasts, Podbean, Padlet, and Jamboard for Collaborative Brainstorming": 1 + "3rd Grade English: Analyzing Fables using Podcasts, Podbean, Padlet and Socrative for Real-Time Feedback": 1 + "3rd Grade English: Exploring Fable Elements using Podcasts, Podbean, Padlet and Edpuzzle for Video-Based Learning.": 1 + "5th Grade Mathematics: Decoding Decimals with Base-10 Blocks and Geoboard Strategies using Number Lines": 1 + "5th Grade Mathematics: Applying the Abacus in Decoding Decimals with Base-10 Blocks and Geoboard Strategies": 1 + "5th Grade Mathematics: Decoding Decimals through Base-10 Blocks and Geoboard Strategies: Incorporating Fraction Bars": 1 + "5th Grade Mathematics: Decoding Decimals with Base-10 Blocks, Geoboard Strategies, and Digital Math Tools": 1 + "5th Grade Mathematics: Using Place Value Charts in Decoding Decimals with Base-10 Blocks and Geoboard Strategies": 1 + "5th Grade Mathematics: Decoding Decimals with Base-10 Blocks, Geoboard Strategies, and Manipulative Counters": 1 + "5th Grade Mathematics: Decoding Decimals - Integrating Base-10 Blocks, Geoboard Strategies, and Decimal Squares": 1 + "5th Grade Mathematics: Decoding Decimals using Base-10 Blocks, Geoboard Strategies, and Interactive Whiteboard Activities": 1 + "5th Grade Mathematics: Decoding Decimals - Base-10 Blocks, Geoboard Strategies, and the Concept of Equivalence": 1 + "5th Grade Mathematics: Decoding Decimals with Base-10 Blocks, Geoboard Strategies, and the Montessori Decimal System.": 1 + "2nd Grade Language Arts: Exploring Storytelling with Story Maps and Audacity Digital Voice Recording": 1 + "2nd Grade Language Arts: Creative Storytelling using Story Maps and iPad’s Voice Memos": 1 + "2nd Grade Language Arts: Storytelling Enhancement through Story Maps and Google Voice Recording": 1 + "2nd Grade Language Arts: Interactive Storytelling with Story Maps and Zoom’s Audio Recording": 1 + "2nd Grade Language Arts: Creative Storytelling via Story Maps and Adobe Audition Voice Recording": 1 + "2nd Grade Language Arts: Mastering Storytelling with Story Maps and GarageBand Audio Recording": 1 + "2nd Grade Language Arts: Innovative Storytelling with Story Maps and Microsoft’s Voice Recorder": 1 + "2nd Grade Language Arts: Developing Narrative Skills with Story Maps and Soundtrap Voice Recording": 1 + "2nd Grade Language Arts: Engaging Storytelling using Story Maps and the Anchor App for Voice Recording": 1 + "2nd Grade Language Arts: Creative Storytelling Mastery with Story Maps and Audacity Voice Recording Software.": 1 + "1st Grade Environmental Studies: Exploring the Plant World through Microscope Observation": 1 + "1st Grade Environmental Studies: Discovering the Plant World Using Time-Lapse Photography": 1 + "1st Grade Environmental Studies: Learning about Plant Growth through Hydroponics": 1 + "1st Grade Environmental Studies: Understanding Photosynthesis in the Plant World": 1 + "1st Grade Environmental Studies: Exploring Leaf Structure with Microscope Studies": 1 + "1st Grade Environmental Studies: Discovering the Plant World with Botanical Illustration": 1 + "1st Grade Environmental Studies: Investigating Plant Biodiversity through Field Studies": 1 + "1st Grade Environmental Studies: Exploring the Plant World Using Digital Interactive Resources": 1 + "1st Grade Environmental Studies: Understanding Plant Reproduction through Seed Dissection": 1 + "1st Grade Environmental Studies: Discovering the Plant World with a Focus on Medicinal Plants": 1 + "1st Grade Environmental Studies: Learning about Plant Adaptations through Hands-On Experiments": 1 + "5th Grade Language Arts: Exploring Metaphors in Poetry with Interactive Whiteboard": 1 + "5th Grade Language Arts: Understanding Similes in Poetry Using Digital Tools": 1 + "5th Grade Language Arts: Poetry Study - Analysing Symbolism with Online Dictionaries": 1 + "5th Grade Language Arts: Learning Irony in Poetry through PowerPoint Presentations": 1 + "5th Grade Language Arts: Poetry and Figurative Language - A Deep Dive into Hyperbole with E-books": 1 + "5th Grade Language Arts: Decoding Alliteration in Poetry with Audio-visual Aids": 1 + "5th Grade Language Arts: Exploring Personification in Poetry Using Virtual Reality Technology": 1 + "5th Grade Language Arts: Poetry - Studying Onomatopoeia with Digital Sound Effects": 1 + "5th Grade Language Arts: Learning Figurative Language in Poetry - Focus on Idioms with Interactive Quizzes": 1 + "5th Grade Language Arts: Poetry and Figurative Language - Expanding Imagery Understanding through Visual Software": 1 + "Fourth Grade Science: Understanding Volcanoes and Earthquakes through Seismographs": 1 + "Fourth Grade Science: Utilizing GIS Technology for Understanding Volcanoes and Earthquakes": 1 + "Fourth Grade Science: Exploring Volcanoes and Earthquakes with Virtual Reality": 1 + "Fourth Grade Science: Understanding Volcanoes and Earthquakes through Richter Scale": 1 + "Fourth Grade Science: A Deep Dive into Volcanoes and Earthquakes using Plate Tectonics Concept": 1 + "Fourth Grade Science: Studying Volcanoes and Earthquakes with 3D Printing Technology": 1 + "Fourth Grade Science: Understanding Volcanoes and Earthquakes through Geological Time Scale": 1 + "Fourth Grade Science: Understanding Volcanoes and Earthquakes: A Focus on Pyroclastic Flow": 1 + "Fourth Grade Science: Exploring the Impact of Volcanoes and Earthquakes using Drone Technology": 1 + "Fourth Grade Science: Understanding Volcanoes and Earthquakes through the Lens of Geothermal Energy.": 1 + "8th Grade Music: Mastering Orchestration with Pro Tools MIDI Sequencers, Ableton Live, and Logic Pro X in Classical Music": 1 + "8th Grade Music: Exploring Classical Music with Pro Tools MIDI Sequencers, Ableton Live, and Sibelius Notation Software": 1 + "8th Grade Music: Utilizing Pro Tools MIDI Sequencers, Ableton Live, and GarageBand in Classical Music Composition": 1 + "8th Grade Music: Mastering Orchestration with Pro Tools MIDI Sequencers, Ableton Live, and Cubase in Producing Classical Music": 1 + "8th Grade Music: A Deep Dive into Orchestration with Pro Tools MIDI Sequencers, Ableton Live, and FL Studio in Classical Music": 1 + "8th Grade Music: Orchestrating Classical Music using Pro Tools MIDI Sequencers, Ableton Live, and Digital Performer": 1 + "8th Grade Music: Understanding Orchestration in Classical Music using Pro Tools MIDI Sequencers, Ableton Live, and Reason Software": 1 + "8th Grade Music: Mastering Orchestration with Pro Tools MIDI Sequencers, Ableton Live, and Finale Notation Software in Classical Music": 1 + "8th Grade Music: Creativity in Classical Music using Pro Tools MIDI Sequencers, Ableton Live, and Cakewalk SONAR": 1 + "8th Grade Music: Composition and Orchestration with Pro Tools MIDI Sequencers, Ableton Live, and Reaper in Classical Music.": 1 + "Exploring the Impact of Furrow Irrigation on Tomato Plant Life Cycle: Utilizing Soil PH Meters and Drip Irrigation: 2nd Grade Environmental Studies": 1 + "The Influence of Furrow Irrigation on Corn Growth: A Study on Soil PH Meter and Moisture Meter Use: 2nd Grade Environmental Studies": 1 + "The Effects of Furrow Irrigation on Plant Life Cycle: A Comprehensive View on Soil PH Meter and Satellite Imagery: 2nd Grade Environmental Studies": 1 + "The Role of Furrow Irrigation in the Life Cycle of Sunflowers: Soil PH Meter Utilization and Evapotranspiration Concepts: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: Focusing on Soil PH Meter Usage and The Impact of Nitrogen Fertilizers: 2nd Grade Environmental Studies": 1 + "Evaluating the Influence of Furrow Irrigation on Wheat Plant Life Cycle: Soil PH Meters and Crop Rotation Strategies: 2nd Grade Environmental Studies": 1 + "The Effect of Furrow Irrigation on Apple Tree Growth: Utilizing Soil PH Meters and Pruning Techniques: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Its Impact on Plant Life Cycle: A Focus on Soil PH Meter and Drought Resistant Seed Varieties: 2nd Grade Environmental Studies": 1 + "The Influence of Furrow Irrigation on Grapevine Life Cycle: A Study on Soil PH Meter and Grafting Techniques: 2nd Grade Environmental Studies": 1 + "The Impact of Furrow Irrigation on Plant Life Cycle: Using Soil PH Meters and Wireless Sensor Networks for Water Management: 2nd Grade Environmental Studies.": 1 + "4th Grade Language Arts: Exploring Metaphors in Poetry through ARkit-developed Augmented Reality": 1 + "4th Grade Language Arts: Understanding Metaphors in Poetry using Oculus Rift and Augmented Reality": 1 + "4th Grade Language Arts: Learning Metaphors in Poetry through Unity 3D Augmented Reality ": 1 + "4th Grade Language Arts: Empowering Metaphors Comprehension in Poetry via Google ARCore Technology": 1 + "4th Grade Language Arts: Metaphors in Poetry and their Interpretation through Microsoft HoloLens Augmented Reality": 1 + "4th Grade Language Arts: Analyzing Metaphors in Poetry using Vuforia Engine and Augmented Reality": 1 + "4th Grade Language Arts: Enhancing Metaphoric Conceptualization in Poetry through Augmented Reality and Magic Leap Technology": 1 + "4th Grade Language Arts: Decoding Metaphors in Poetry through Augmented Reality and the ZapWorks Tool": 1 + "4th Grade Language Arts: Introducing Metaphors in Poetry through Unreal Engine Augmented Reality": 1 + "4th Grade Language Arts: Discovering Metaphors in Poetry using Augmented Reality and the Lens Studio Tool.": 1 + "Exploring Alliteration in Robert Frost’s ’Acquainted with the Night’ Using eBeam Interactive Whiteboards and Google Classroom in 7th Grade Language Arts: A Deep Dive into 10 Pedagogical Approaches ": 1 + "Enhancing 7th Grade Language Arts with the Study of Alliteration in Robert Frost’s ’Acquainted with the Night’ Using Padlet and Flipgrid: An Exploration of 10 Innovative Techniques": 1 + "Discovering the Power of Alliteration in Robert Frost’s ’Acquainted with the Night’ through Educreations Interactive Whiteboard and Kahoot in 7th Grade Language Arts: 10 Unique Teaching Strategies": 1 + "A Comprehensive Guide to Teaching Alliteration in Robert Frost’s ’Acquainted with the Night’ Utilizing eBeam Interactive Whiteboards and Nearpod in 7th Grade Language Arts: 10 Diverse Methods": 1 + "Unveiling Alliteration in Robert Frost’s ’Acquainted with the Night’ with Padlet, Educreations Interactive Whiteboard and Pear Deck in 7th Grade Language Arts: 10 Distinct Solutions": 1 + "Empowering 7th Grade Language Arts: Understanding Alliteration in Robert Frost’s ’Acquainted with the Night’ Using eBeam Interactive Whiteboards and Socrative: A Detailed Look at 10 Approaches": 1 + "The Art of Alliteration in Robert Frost’s ’Acquainted with the Night’: A Study via Educreations Interactive Whiteboard and Edmodo in 7th Grade Language Arts: 10 Diverse Teaching Techniques": 1 + "Integrating eBeam Interactive Whiteboards, Padlet and Quizlet in Teaching Alliteration in Robert Frost’s ’Acquainted with the Night’ in 7th Grade Language Arts: 10 Effective Strategies": 1 + "Mastering Alliteration in Robert Frost’s ’Acquainted with the Night’ with eBeam Interactive Whiteboards, Padlet, Educreations Interactive Whiteboard and Seesaw in 7th Grade Language Arts: 10 Comprehensive Solutions": 1 + "Exploring Alliteration in Robert Frost’s ’Acquainted with the Night’ through eBeam Interactive Whiteboards, Padlet, Educreations Interactive Whiteboard and Google Slides in 7th Grade Language Arts: 10 Innovative Methods.": 1 + "7th Grade Music: Mastering Bass Clef Notes on a Piano with the aid of MIDI Technology": 1 + "Using Synthesia for Decoding Bass Clef Notes: 7th Grade Music Course": 1 + "7th Grade Music: Learning Bass Clef Notes via Piano with Sibelius Notation Software": 1 + "Decoding Bass Clef Notes with a Piano: Incorporating Metronome Use for 7th Grade Music": 1 + "7th Grade Music: Understanding Bass Clef Notes on a Piano using Digital Audio Workstations": 1 + "The Role of Virtual Piano in Decoding Bass Clef Notes: A 7th Grade Music Course": 1 + "7th Grade Music: Decoding Bass Clef Notes on a Piano with the Help of Sheet Music Apps": 1 + "Exploring Bass Clef Notes on a Piano using Music Theory: A Course for 7th Graders": 1 + "7th Grade Music: Utilizing Online Piano Simulators for Decoding Bass Clef Notes": 1 + "7th Grade Music: A Comprehensive Guide to Reading Sheet Music and Decoding Bass Clef Notes with a Piano using Sight-Reading Techniques": 1 + "Exploring Inertia and Momentum: A 6th Grade Course on Newton’s Laws using Force Diagrams and Interactive Physics Simulations": 1 + "Grasping Inertia: A Detailed Study of Newton’s Laws using Force Diagrams and Lab Experiments for 6th Graders": 1 + "In-depth Analysis of Momentum: A 6th Grade Course on Newton’s Laws using Force Diagrams and Virtual Reality Tools": 1 + "Exploring Inertia and Momentum: A Comprehensive Course using Force Diagrams and 3D Modelling Software for 6th Grade Students": 1 + "Newton’s Laws Unfolded: A 6th Grade Course Using Force Diagrams and Laser Interferometers to Study Inertia and Momentum": 1 + "A 6th Grade Course on Newton’s Laws: Delving into Inertia and Momentum with Force Diagrams and Computer Modelling": 1 + "Understanding Physics: A 6th Grade Course on Newton’s Laws using Force Diagrams and Data Analysis Software to Examine Inertia and Momentum": 1 + "Dissecting Inertia and Momentum: A 6th Grade Course on Newton’s Laws using Force Diagrams and Accelerometers": 1 + "Decoding Newton’s Laws: A 6th Grade Course using Force Diagrams and Motion Sensors to Understand Inertia and Momentum": 1 + "A 6th Grade Course on Inertia and Momentum: Investigating Newton’s Laws using Force Diagrams and Arduino Microcontrollers.": 1 + "2nd Grade Language Arts: Understanding Plot Structure through Peanuts Comic Strips using GIMP & Photoshop": 1 + "2nd Grade Language Arts: Unraveling Plot Structure Using Comic Strips and Layer Masking in GIMP": 1 + "2nd Grade Language Arts: Exploring Plot Structure through Manga Strips using GIMP and Digital Drawing Tablets": 1 + "2nd Grade Language Arts: Mastering Plot Structure through Superhero Comic Strips using GIMP and Line Art Techniques": 1 + "2nd Grade Language Arts: Understanding Plot Structure through Comic Strips using GIMP and Color Theory Concepts": 1 + "2nd Grade Language Arts: Decoding Plot Structure through Comic Strips using GIMP and Wacom Pen Tools": 1 + "2nd Grade Language Arts: Discovering Plot Structure through Comic Strips using GIMP and Typography Techniques": 1 + "2nd Grade Language Arts: Exploring Plot Structure through Comic Strips using GIMP and Brush Tool Techniques": 1 + "2nd Grade Language Arts: Understanding Plot Structure through Comic Strips using GIMP and Perspective Drawing Concepts": 1 + "2nd Grade Language Arts: Analyzing Plot Structure through Comic Strips using GIMP and Texture Editing Tools.": 1 + "1st Grade Art: Understanding Primary and Secondary Colors with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Easel": 1 + "1st Grade Art: Exploring Geometric Shapes through Watercolor Painting with Flat Brushes, Palette Knives, Sponges, and Canvas Boards": 1 + "1st Grade Art: Creating Textures with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Salt Technique": 1 + "1st Grade Art: Introduction to Gradients with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Wet-on-Wet Technique": 1 + "1st Grade Art: Mastering Blending Techniques in Watercolor Painting with Flat Brushes, Palette Knives, Sponges, and Color Wheel": 1 + "1st Grade Art: Exploring Abstract Art through Watercolor Painting with Flat Brushes, Palette Knives, Sponges, and Masking Fluid": 1 + "1st Grade Art: Learning about Tints and Shades with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Mixing Palette": 1 + "1st Grade Art: Understanding Color Theory in Watercolor Painting with Flat Brushes, Palette Knives, Sponges, and Light Box": 1 + "1st Grade Art: Discovering Nature through Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Stencils": 1 + "1st Grade Art: Creating Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, and Squirrel Hair Brush.": 1 + "2nd Grade Mathematics: Utilizing Number Lines for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Incorporating Fraction Tiles for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Using Interactive Whiteboards for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Exploring Fraction Circles for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Integrating Fraction Bars for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Applying Virtual Manipulatives for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Deploying Fraction Strips for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Harnessing Geometric Models for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Leveraging iPads for Multiplying and Dividing Fractions with Grids": 1 + "2nd Grade Mathematics: Implementing The Area Model Concept for Multiplying and Dividing Fractions with Grids": 1 + "6th Grade Social Studies: Exploring the Pyramids of Ancient Civilizations": 1 + "6th Grade Social Studies: Unveiling the Ancient Writing Systems of Civilizations": 1 + "6th Grade Social Studies: Understanding Ancient Civilizations through Pottery": 1 + "6th Grade Social Studies: The Role of Agricultural Tools in Ancient Civilizations": 1 + "6th Grade Social Studies: The Influence of Ancient Civilizations’ Architecture": 1 + "6th Grade Social Studies: Understanding the Ancient Civilizations through Numismatics": 1 + "6th Grade Social Studies: The Impact of Iron Age Technology on Ancient Civilizations": 1 + "6th Grade Social Studies: Unraveling Mysteries of Ancient Civilizations through Archaeology": 1 + "6th Grade Social Studies: The Art of War in Ancient Civilizations": 1 + "6th Grade Social Studies: Decoding the Ancient Civilizations through Hieroglyphs": 1 + "3rd Grade Geography: Exploring World Maps with Compasses and Satellite Images": 1 + "3rd Grade Geography: Understanding Maps with Compasses and GPS technology": 1 + "3rd Grade Geography: Navigating Topographic Maps with Compasses and Elevation Profiles": 1 + "3rd Grade Geography: Mastering Maps with Compasses and Orienteering Techniques": 1 + "3rd Grade Geography: Unraveling Maps with Compasses and Digital Mapping Tools": 1 + "3rd Grade Geography: Interpreting Maps with Compasses and Map Scales ": 1 + "3rd Grade Geography: Discovering Maps with Compasses and Geographic Information Systems": 1 + "3rd Grade Geography: Decoding Maps with Compasses and Longitude/Latitude Concepts": 1 + "3rd Grade Geography: Examining Maps with Compasses and Aerial Photography ": 1 + "3rd Grade Geography: Understanding Maps with Compasses and Cartographic Symbols.": 1 + "6th Grade Social Studies: The Evolution of Microprocessors - Understanding CPU Architecture, Multicore Processors, and Von Neumann Architecture": 1 + "6th Grade Social Studies: Exploring Microprocessors - A Deep Dive into CPU Architecture, Multicore Processors, and Cache Memory": 1 + "6th Grade Social Studies: Microprocessors Unraveled - Studying CPU Architecture, Multicore Processors, and the Role of ALU": 1 + "6th Grade Social Studies: The Journey of Microprocessors - Comprehending CPU Architecture, Multicore Processors, and RISC vs CISC": 1 + "6th Grade Social Studies: Tracing Microprocessors - Learning about CPU Architecture, Multicore Processors, and Instruction Pipelining": 1 + "6th Grade Social Studies: The Story of Microprocessors - Understanding CPU Architecture, Multicore Processors, and the Impact of Moore’s Law": 1 + "6th Grade Social Studies: Microprocessors Decoded - Examining CPU Architecture, Multicore Processors, and the Concept of Clock Speed": 1 + "6th Grade Social Studies: Navigating Microprocessors - Grasping CPU Architecture, Multicore Processors, and the Function of Control Units": 1 + "6th Grade Social Studies: The Era of Microprocessors - Insight into CPU Architecture, Multicore Processors, and the Importance of Heat Sinks": 1 + "6th Grade Social Studies: The Genesis of Microprocessors - An Overview of CPU Architecture, Multicore Processors, and the Use of Silicon in Chip Design": 1 + "3rd Grade English: Exploring Storytelling Basics using Microsoft Paint Storyboarding Tool": 1 + "3rd Grade English: Introduction to Storytelling with Google Slides Storyboarding Tool": 1 + "3rd Grade English: Storytelling Basics using the Concept of Sequential Art in StoryboardThat ": 1 + "3rd Grade English: Storytelling Basics & Character Design using the Canva Storyboarding Tool": 1 + "3rd Grade English: Learning Storytelling Basics with Plot Development using Storyboard Creator": 1 + "3rd Grade English: Storytelling Basics using Adobe Spark: Focusing on Scene Visualization": 1 + "3rd Grade English: Enhancing Storytelling Skills using Toon Boom Storyboard Pro": 1 + "3rd Grade English: Storytelling Basics using Plotagon Storyboarding Software for 3D Animation": 1 + "3rd Grade English: Storytelling Basics and Visual Narration using Pixton Storyboard Creator": 1 + "3rd Grade English: Mastering Storytelling Basics using the Concept of Plot Structure in Storybird Storyboarding Tool": 1 + "2nd Grade Science: Using Google Earth to Explore Mountain Animal Habitats in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Understanding Mountain Animal Habitats with Drone-captured Documentaries": 1 + "2nd Grade Science: Exploring Mountain Animal Habitats with GIS Tools in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Analyzing Mountain Animal Habitats Through Infrared Satellite Imagery Documentaries": 1 + "2nd Grade Science: Decoding Mountain Animal Habitats with 3D Mapping in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Studying Mountain Animal Habitats with LIDAR Technology in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Understanding Mountain Animal Habitats Using Augmented Reality in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Exploring Mountain Animal Habitats with VR Technology in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Investigating Mountain Animal Habitats with Spectral Analysis in Satellite Imagery Documentaries": 1 + "2nd Grade Science: Learning about Mountain Animal Habitats Through Multi-spectral Satellite Imagery Documentaries.": 1 + "Fourth Grade History: The First Civilizations’ Innovation in Irrigation Technology - Focusing on the Shaduf": 1 + "Fourth Grade History: Exploring the Qanat System in First Civilizations’ Irrigation Technology": 1 + "Fourth Grade History: The Aqueducts and the Evolution of Irrigation Technology in Ancient Civilizations": 1 + "Fourth Grade History: A Study of the Noria: The First Civilizations’ Innovation in Irrigation Technology": 1 + "Fourth Grade History: The First Civilizations’ Use of Canals in Irrigation Technology": 1 + "Fourth Grade History: The Influence of the Water Wheel in the First Civilizations’ Irrigation Methods": 1 + "Fourth Grade History: The First Civilizations’ Development of Drip Irrigation Technology": 1 + "Fourth Grade History: The First Civilizations’ Innovation in Irrigation Technology - The Invention of the Water Scoop": 1 + "Fourth Grade History: The First Civilizations’ Use of Trenches in Irrigation Technology": 1 + "Fourth Grade History: Unraveling the Terracing Technique in the First Civilizations’ Irrigation Innovations": 1 + "Utilizing Polymerase Chain Reaction in Applications of Sanger Sequencing for 11th Grade DNA and Genomics": 1 + "Exploring the Role of Restriction Enzymes in Sanger Sequencing for 11th Grade DNA and Genomics": 1 + "DNA Fragment Analysis in Sanger Sequencing: An 11th Grade Course on DNA and Genomics": 1 + "The Application of Electrophoresis in Sanger Sequencing for 11th Grade DNA and Genomics": 1 + "Understanding the Use of Fluorescent Dyes in Sanger Sequencing for 11th Grade DNA and Genomics": 1 + "Incorporating Bioinformatics Tools in Sanger Sequencing for 11th Grade DNA and Genomics": 1 + "Exploring the Importance of Primer Design in Sanger Sequencing: An 11th Grade DNA and Genomics Course": 1 + "The Role of Cloning in Sanger Sequencing: An 11th Grade DNA and Genomics Course": 1 + "Applications of Sanger Sequencing in 11th Grade DNA and Genomics: A Focus on Capillary Electrophoresis": 1 + "Understanding the Importance of Quality Control in Sanger Sequencing for 11th Grade DNA and Genomics.": 1 + "Exploring Roller Coaster Physics with CAD Modeling: A Comprehensive Study of Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and AutoCAD": 1 + "Investigating Roller Coaster Physics using Matlab: A Deep Dive into Acceleration with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and Matlab Analysis": 1 + "A Detailed Examination of Roller Coaster Physics using SolidWorks: Acceleration Studies with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law": 1 + "Roller Coaster Physics and 3D Printing: An In-Depth Analysis of Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and 3D Modeling": 1 + "Investigating Roller Coaster Physics: A Deep Dive into Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and Virtual Reality Simulations": 1 + "Probing Roller Coaster Physics: A Detailed Exploration of Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and Laser Scanning Technology": 1 + "Roller Coaster Physics Analysis with Python Programming: Unraveling Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and Python Algorithms": 1 + "A Comprehensive Survey of Roller Coaster Physics using LabVIEW: Acceleration Studies with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and LabVIEW Software": 1 + "Roller Coaster Physics: A Deep Dive into Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and Kinematic Equations": 1 + "Investigating Roller Coaster Physics through Finite Element Analysis: A Detailed Study of Acceleration using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, Newton’s Second Law and ANSYS Software": 1 + "4th Grade Art: Creating Stained Glass Art Inspired by European Middle Ages": 1 + "4th Grade Art: European Middle Ages Inspired Mosaic Art Using Ceramic Tiles": 1 + "4th Grade Art: Sculpting With Clay: European Middle Ages Inspired Artwork": 1 + "4th Grade Art: Pencil Sketching Techniques in European Middle Ages Inspired Art": 1 + "4th Grade Art: Watercolor Painting: European Middle Ages Inspired Artwork": 1 + "4th Grade Art: European Middle Ages Inspired Collages Using Recycled Materials": 1 + "4th Grade Art: Printmaking Techniques in European Middle Ages Inspired Art": 1 + "4th Grade Art: European Middle Ages Inspired Charcoal Drawing": 1 + "4th Grade Art: European Middle Ages Inspired Fresco Painting Techniques": 1 + "4th Grade Art: Creating Illuminated Manuscripts: European Middle Ages Inspired Art.": 1 + "3rd Grade English: Improving Storytelling Using Puppetry and Google ARCore Augmented Reality for Vocabulary Enrichment": 1 + "3rd Grade English: Leveraging Microsoft HoloLens for Puppetry-Driven Storytelling Enhancement in Augmented Reality": 1 + "3rd Grade English: Enriching Storytelling Basics with Puppetry and ARKit Augmented Reality for Grammar Improvement": 1 + "3rd Grade English: Utilizing Puppetry and Augmented Reality via Oculus Quest for Engaging Narrative Writing": 1 + "3rd Grade English: Enhancing Storytelling with Puppetry Techniques and Unity Engine Augmented Reality for Reading Comprehension": 1 + "3rd Grade English: Advancing Storytelling Basics with Puppetry and Snap AR for Creative Writing Enhancement": 1 + "3rd Grade English: Exploring Storytelling Techniques with Puppetry and Vuforia Augmented Reality for Plot Development": 1 + "3rd Grade English: Nurturing Storytelling Skills with Puppetry and Magic Leap Augmented Reality for Character Description": 1 + "3rd Grade English: Fostering Storytelling with Puppetry Techniques and AR.js for Narrative Point of View Understanding": 1 + "3rd Grade English: Strengthening Storytelling Basics with Puppetry and ARToolKit for Dialogue Creation.": 1 + "3rd Grade English: Utilizing Powerpoint and Smartboard for Deconstructing Cinderella’s Story Structure": 1 + "3rd Grade English: Using Powerpoint and Google Slides for Deconstructing The Three Little Pigs’ Story Structure": 1 + "3rd Grade English: Implementing Powerpoint and Interactive Whiteboard in Deconstructing Jack and the Beanstalk’s Story Structure": 1 + "3rd Grade English: Leveraging Powerpoint and Mind Mapping Tools for Deconstructing Snow White’s Story Structure ": 1 + "3rd Grade English: Using Powerpoint and Digital Storytelling for Deconstructing Little Red Riding Hood’s Story Structure": 1 + "3rd Grade English: Applying Powerpoint and Prezi in Deconstructing Sleeping Beauty’s Story Structure": 1 + "3rd Grade English: Exploiting Powerpoint and Padlet for Deconstructing Hansel and Gretel’s Story Structure": 1 + "3rd Grade English: Utilizing Powerpoint and Trello for Deconstructing Beauty and the Beast’s Story Structure": 1 + "3rd Grade English: Deploying Powerpoint and Kahoot for Deconstructing Rapunzel’s Story Structure": 1 + "3rd Grade English: Using Powerpoint and Flipgrid for Deconstructing The Ugly Duckling’s Story Structure": 1 + "3rd Grade English: Exploring Chinese Folklore Through Shadow Puppetry Using Overhead Projectors and Laser Light": 1 + "3rd Grade English: Investigating Japanese Shadow Puppetry Using Overhead Projectors and Animation Software": 1 + "3rd Grade English: Unveiling Asian Narrative Through Korean Shadow Puppetry Using Overhead Projectors and 3D Printing": 1 + "3rd Grade English: Exploring Asian Storytelling Through Indonesian Shadow Puppetry Using Overhead Projectors and Digital Imaging": 1 + "3rd Grade English: Decoding Vietnamese Legends Through Shadow Puppetry Using Overhead Projectors and Augmented Reality": 1 + "3rd Grade English: Unraveling Thai Mythology Through Shadow Puppetry Using Overhead Projectors and Virtual Reality": 1 + "3rd Grade English: Delving into Indian Epics Through Shadow Puppetry Using Overhead Projectors and Motion Capture Technology": 1 + "3rd Grade English: Exploring Asian Storytelling Through Filipino Shadow Puppetry Using Overhead Projectors and Interactive Whiteboards": 1 + "3rd Grade English: Learning Tibetan Tales Through Shadow Puppetry Using Overhead Projectors and Touch Screen Technology": 1 + "3rd Grade English: Discovering Mongolian Legends Through Shadow Puppetry Using Overhead Projectors and Projection Mapping": 1 + "2nd Grade Physical Education: Cricket Batting Techniques: Mastering the Forward Defense with Grip Technique": 1 + "2nd Grade Physical Education: Introduction to Cricket: Understanding Batting and the Forward Defense with Stance Analysis Tool": 1 + "2nd Grade Physical Education: The Art of the Forward Defense: Advanced Batting Techniques and the Use of Biomechanics": 1 + "2nd Grade Physical Education: Cricket Batting Mastery: Introduction to the Forward Defense and the Importance of the Backlift": 1 + "2nd Grade Physical Education: Cricket and Batting Techniques: Exploring the Art of the Forward Defense with Virtual Reality Technology": 1 + "2nd Grade Physical Education: Introduction to Cricket and Batting: A Comprehensive Look at the Forward Defense and Ball-Timing Techniques": 1 + "2nd Grade Physical Education: Cricket Batting Techniques: Leveraging Video Analysis in Mastering the Forward Defense": 1 + "2nd Grade Physical Education: The Art of the Forward Defense: A Deep Dive into Cricket Batting Techniques with Speed Gun Technology": 1 + "2nd Grade Physical Education: Introduction to Cricket: Enhancing Batting Techniques and the Forward Defense with Motion Sensor Tech": 1 + "2nd Grade Physical Education: Cricket and Batting Techniques: Mastering the Art of the Forward Defense with Swing Analysis.": 1 + "4th Grade Language Arts: Exploring Greek Mythology through Interactive Whiteboards Using Storyboards ": 1 + "4th Grade Language Arts: Studying Greek Mythology Tales Using Interactive Whiteboards and Tablet Devices ": 1 + "4th Grade Language Arts: Greek Mythology Tales Study Using Interactive Whiteboards and Digital Storytelling ": 1 + "4th Grade Language Arts: Interactive Study of Greek Myths Using Whiteboards and Virtual Reality ": 1 + "4th Grade Language Arts: Greek Mythology Analysis Through Interactive Whiteboards and QR Codes ": 1 + "4th Grade Language Arts: Immersive Study of Greek Mythology Using Whiteboards and Augmented Reality ": 1 + "4th Grade Language Arts: Greek Myths Study on Interactive Whiteboards Using Gamification Techniques ": 1 + "4th Grade Language Arts: Greek Mythology Tales Study Using Interactive Whiteboards and Cloud-Based Sharing ": 1 + "4th Grade Language Arts: Interactive Greek Mythology Study Using Whiteboards and Podcasts ": 1 + "4th Grade Language Arts: Unfolding Greek Mythology Tales Using Interactive Whiteboards and Animation Software": 1 + "3rd Grade Music: Mastering Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, and BPM Counter Tool Featuring Metronome Usage": 1 + "3rd Grade Music: Understanding Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Rhythm Basics ": 1 + "3rd Grade Music: Exploring Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Tuning Techniques": 1 + "3rd Grade Music: Harnessing Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Drumstick Grip Fundamentals": 1 + "3rd Grade Music: Discovering Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Beat Matching Skills": 1 + "3rd Grade Music: Unlocking Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Drum Head Tuning": 1 + "3rd Grade Music: Understanding Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Introduction to Note Values": 1 + "3rd Grade Music: Learning Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Application of Syncopation": 1 + "3rd Grade Music: Grasping Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Drum Roll Techniques": 1 + "3rd Grade Music: Delving into Tempo with Schalloch Linea Conga Drums, Reaper Tempo Software, BPM Counter Tool, and Time Signature Basics": 1 + "2nd Grade Introduction to Algebra: Understanding Variables through Number Lines": 1 + "2nd Grade Introduction to Algebra: Grasping Variables with Visual Blocks": 1 + "Understanding Variables in 2nd Grade Algebra using Math Manipulatives": 1 + "Interactive Introduction to 2nd Grade Algebra: Exploring Variables with Online Simulations": 1 + "2nd Grade Algebra: Decoding Variables with the Aid of Abacus": 1 + "2nd Grade Algebra: A Deep Dive into Variables using the Montessori Method": 1 + "Introduction to 2nd Grade Algebra: Unveiling Variables with Educational Math Games": 1 + "2nd Grade Algebra: A Comprehensive Study of Variables using Math Worksheets": 1 + "2nd Grade Introduction to Algebra: Variables Explained through Interactive Whiteboards": 1 + "Second Grade Algebra: Understanding Variables via Math Apps.": 1 + "Tenth Grade Music: Exploring Melody Construction with Reaper and Midi Technology": 1 + "Tenth Grade Music: Crafting Chord Progressions in Reaper using Virtual Instruments": 1 + "Tenth Grade Music: Utilizing Automation in Reaper for Dynamic Music Composition": 1 + "Tenth Grade Music: Mixing and Mastering Techniques in Reaper for Tenth Graders": 1 + "Tenth Grade Music: Utilizing Reaper and VST Plugins for Sound Design": 1 + "Tenth Grade Music: Applying Music Theory Concepts in Composition with Reaper": 1 + "Tenth Grade Music: Exploring Rhythm Patterns in Reaper using Drum Machines": 1 + "Tenth Grade Music: Creating Ambient Soundscapes with Reaper and Synthesizers": 1 + "Tenth Grade Music: Enhancing Compositions with Layering Techniques in Reaper": 1 + "Tenth Grade Music: Composing Film Scores using Reaper and SFX Libraries": 1 + "Fifth Grade Social Studies: The Role of Fire in Cultures and Civilizations of the Prehistoric Era": 1 + "Fifth Grade Social Studies: The Impact of Wheel Invention on Prehistoric Civilizations and Cultures": 1 + "Fifth Grade Social Studies: Understanding the Prehistoric Era through the Advent of Stone Tools": 1 + "Fifth Grade Social Studies: The Influence of Agriculture on Prehistoric Cultures and Civilizations": 1 + "Fifth Grade Social Studies: Prehistoric Era’s Cultures and Civilizations: The Dawn of Pottery ": 1 + "Fifth Grade Social Studies: The Development of Hunting Techniques in Prehistoric Cultures and Civilizations": 1 + "Fifth Grade Social Studies: The Evolution of Language in Prehistoric Era’s Cultures and Civilizations": 1 + "Fifth Grade Social Studies: The Role of Shelter Building in Prehistoric Civilizations and Cultures": 1 + "Fifth Grade Social Studies: Exploring the Prehistoric Era through the Use of Primitive Art": 1 + "Fifth Grade Social Studies: The Impact of Clothing and Textile Invention on Prehistoric Cultures and Civilizations.": 1 + "4th Grade Science: Using GIS Technology to Study Ecosystems via Satellite Imagery": 1 + "4th Grade Science: Exploring Ecosystems through Radar Technology in Satellite Imagery": 1 + "4th Grade Science: Understanding Ecosystems using Thermal Infrared Sensors in Satellite Imagery": 1 + "4th Grade Science: Analysing Ecosystems via Multispectral Satellite Imagery": 1 + "4th Grade Science: Using LiDAR Technology for Ecosystem Studies via Satellite Imagery": 1 + "4th Grade Science: Leveraging Spectroradiometer for Ecosystem Studies in Satellite Imagery": 1 + "4th Grade Science: Utilizing Remote Sensing and Photogrammetry to Study Ecosystems via Satellite Imagery": 1 + "4th Grade Science: Studying Ecosystems using Hyperspectral Imaging in Satellite Imagery": 1 + "4th Grade Science: Using Synthetic Aperture Radar for Ecosystem Studies via Satellite Imagery": 1 + "4th Grade Science: Understanding Ecosystems via Satellite Imagery using Geospatial Analysis.": 1 + "Using Political Cartoons to Explore Federalism: A Deep Dive into 9th Grade Social Studies": 1 + "Expanding Government Understanding with Interactive Software: Federalism in 9th Grade Social Studies": 1 + "9th Grade Social Studies: Analyzing Government Systems through Federalism and the Lens of Blockchain Technology ": 1 + "9th Grade Social Studies: Federalism Explored through Virtual Reality Simulations ": 1 + "Federalism and Data Analysis: A New Approach to 9th Grade Social Studies ": 1 + "9th Grade Social Studies: Federalism and the Role of Artificial Intelligence in Government Systems ": 1 + "Federalism in Focus: A 9th Grade Social Studies Course Utilizing Documentary Film Analysis": 1 + "9th Grade Social Studies: Augmented Reality Exploration of Federalism in Government Systems ": 1 + "Interactive Whiteboard Lessons on Federalism: A Fresh Perspective on 9th Grade Social Studies ": 1 + "Federalism and Social Media: A Modern Take on 9th Grade Social Studies": 1 + "5th Grade History: The Role of Printing Press in the Propagation of Tea Tax Protests and the American Revolution": 1 + "Exploring 5th Grade History: The Impact of Navigation Tools on Tea Trade and the American Revolution": 1 + "5th Grade History: Tea Tax, Enlightenment Philosophy, and its Influence on the American Revolution": 1 + "5th Grade History: Tea Tax, Mercantilism, and its Effect on the American Revolution": 1 + "Analyzing 5th Grade History: Role of Rum Distillery and Tea Tax in the American Revolution": 1 + "5th Grade History: Influence of the Spinning Wheel, Tea Tax, and the American Revolution": 1 + "5th Grade History: Tea Tax, Colonial Maps, and their Impact on the American Revolution": 1 + "5th Grade History: Tea Tax, the Influence of Shipbuilding Technology on the American Revolution": 1 + "5th Grade History: Tea Tax, Role of the Telegraph in Mobilizing the American Revolution": 1 + "5th Grade History: Influence of Agricultural Tools, Tea Tax, and the American Revolution": 1 + "9th Grade Language Arts: Enhancing Critical Reading and Information Processing Using E-books on Nook Devices & Google Classroom": 1 + "9th Grade Language Arts: Critical Reading and Information Processing Using E-books on Nook Devices through the Lens of Literary Theory": 1 + "9th Grade Language Arts: Information Processing with Interactive E-books on Nook Devices and Canvas Learning Management System": 1 + "9th Grade Language Arts: Utilizing E-books on Nook Devices for Critical Reading and Digital Annotation Techniques": 1 + "9th Grade Language Arts: Strengthening Critical Reading Skills Using E-books on Nook Devices and Smartboards": 1 + "9th Grade Language Arts: Developing Information Processing Skills Through E-books on Nook Devices and Quizlet Practice": 1 + "9th Grade Language Arts: Applying Critical Reading Strategies in E-books on Nook Devices with the Use of Padlet": 1 + "9th Grade Language Arts: Information Processing and Critical Reading Using E-books on Nook Devices and Flipgrid Discussions": 1 + "9th Grade Language Arts: Exploring Critical Reading and Information Processing in E-books on Nook Devices through Interactive Whiteboards": 1 + "9th Grade Language Arts: Enhancing Reading Comprehension Using E-books on Nook Devices and Mind Mapping Tools.": 1 + "5th Grade American History: Exploring Colonization via Minecraft Simulation Games": 1 + "5th Grade: American History: Understanding Colonization with Roblox Simulation Games": 1 + "5th Grade: American History: Exploring Colonization through Augmented Reality Games": 1 + "5th Grade: American History: Exploring Colonization via Interactive Whiteboard Games": 1 + "5th Grade: American History: Exploring Colonization with Virtual Reality Simulation Games": 1 + "5th Grade: American History: Journey through Colonization with iPad Simulation Games": 1 + "5th Grade: American History: Discovering Colonization through Scratch Coding Games": 1 + "5th Grade: American History: Studying Colonization with Board Game Simulations": 1 + "5th Grade: American History: Unraveling Colonization with PowerPoint Interactive Games": 1 + "5th Grade: American History: Exploring Colonization using The Oregon Trail Computer Game.": 1 + "6th Grade Mathematics: Utilizing Virtual Manipulatives and Algebra Tiles for Grasping Variables": 1 + "6th Grade Mathematics: The Application of Algebra Tiles and Interactive Whiteboard in Understanding Variables": 1 + "6th Grade Mathematics: The Role of Algebra Tiles and Geogebra in Mastering Variables": 1 + "6th Grade Mathematics: Using Algebra Tiles and iPads for Enhancing Variables Understanding": 1 + "6th Grade Mathematics: The Use of Algebra Tiles and Google Classroom in Understanding Variables": 1 + "6th Grade Mathematics: Leveraging Algebra Tiles and Smart Boards for Variables Comprehension": 1 + "6th Grade Mathematics: The Integration of Algebra Tiles and Khan Academy in Learning Variables": 1 + "6th Grade Mathematics: Employing Algebra Tiles and Digital Projectors for Variables Conceptualization": 1 + "6th Grade Mathematics: The Use of Algebra Tiles and Python Programming in Understanding Variables": 1 + "6th Grade Mathematics: Incorporating Algebra Tiles and Mathway App in Grasping Variables": 1 + "3rd Grade Mathematics: Mastering Fractions with Number Lines": 1 + "3rd Grade Mathematics: Fractions Fundamentals Using Fraction Bars": 1 + "3rd Grade Mathematics: Understanding Fractions through Circle Graphs": 1 + "3rd Grade Mathematics: Simplifying Fractions with Manipulatives": 1 + "3rd Grade Mathematics: Fractions Fundamentals with Interactive Whiteboard Activities": 1 + "3rd Grade Mathematics: Exploring Equivalent Fractions through Fraction Tiles": 1 + "3rd Grade Mathematics: Fraction Fundamentals Using the Montessori Method": 1 + "3rd Grade Mathematics: Learning Fractions through Digital Fraction Apps": 1 + "3rd Grade Mathematics: Fraction Decomposition with Virtual Manipulatives": 1 + "3rd Grade Mathematics: Visualizing Fractions with Cuisenaire Rods": 1 + "Kindergarten Language Arts: Alphabet Introduction using Smartboard and Digital Pen Technology": 1 + "Kindergarten Language Arts: Teaching Alphabet with Interactive Whiteboards and Digital Pen Technology using ABCmouse": 1 + "Kindergarten Language Arts: Introduction to Alphabet using Interactive Whiteboards and Zoom Video Conferencing ": 1 + "Kindergarten Language Arts: Alphabet Learning with Interactive Whiteboards, Digital Pen Technology and Kahoot Interactive Games": 1 + "Kindergarten Language Arts: Utilizing Promethean Boards for Alphabet Introduction in Digital Pen Technology": 1 + "Kindergarten Language Arts: Alphabet Introduction with Google Classroom and Interactive Whiteboards": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards, Digital Pen Technology and Starfall Learning Resources": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards using Seesaw Learning Platform": 1 + "Kindergarten Language Arts: Integrating Interactive Whiteboards, Digital Pen Technology and Microsoft Teams in Alphabet Introduction": 1 + "Kindergarten Language Arts: Alphabet Introduction with Interactive Whiteboards, Digital Pen Technology and LeapFrog Learning Tools.": 1 + "5th Grade English: Unveiling the Art of Characterization in Storytelling": 1 + "5th Grade English: Exploring Metaphors in Storytelling": 1 + "5th Grade English: Storytelling Through Digital Tools": 1 + "5th Grade English: Understanding Plot Development in Storytelling": 1 + "5th Grade English: The Role of Setting in Storytelling": 1 + "5th Grade English: Storytelling and the Power of Imagery": 1 + "5th Grade English: The Impact of Dialogue in Storytelling": 1 + "5th Grade English: Storytelling with Interactive Whiteboards": 1 + "5th Grade English: Applying Conflict Resolution in Storytelling": 1 + "5th Grade English: The Use of Flashbacks in Storytelling": 1 + "1st Grade Mathematics: Enhancing Number Bonds using ABC Mouse App through Augmented Reality": 1 + "1st Grade Mathematics: Advancing Number Bonds with Math Learning Apps via Augmented Reality using iPads": 1 + "1st Grade Mathematics: Boosting Number Bonds through Math Learning Apps and Virtual Reality Headsets": 1 + "1st Grade Mathematics: Strengthening Number Bonds with Math Ninja App via Augmented Reality": 1 + "1st Grade Mathematics: Elevating Number Bonds with Math Learning Apps via Augmented Reality using Google Goggles": 1 + "1st Grade Mathematics: Improving Number Bonds using Mathway App through Augmented Reality": 1 + "1st Grade Mathematics: Enriching Number Bonds with Math Learning Apps via Augmented Reality using Aurasma": 1 + "1st Grade Mathematics: Optimizing Number Bonds using Photomath App via Augmented Reality": 1 + "1st Grade Mathematics: Enhancing Number Bonds with Math Learning Apps via Augmented Reality using Microsoft HoloLens": 1 + "1st Grade Mathematics: Building Stronger Number Bonds using MathBoard App through Augmented Reality.": 1 + "4th Grade History: The Role of Compass in Columbus’s Discovery of America": 1 + "4th Grade History: The Importance of Quadrant in Columbus’s Voyage to America": 1 + "4th Grade History: The Impact of Lateen Sails in Columbus’s Exploration": 1 + "4th Grade History: The Discovery of America - The Relevance of Astrolabe and Cross-Staff in Columbus’s Journey": 1 + "4th Grade History: The Discovery of America - The Use of Backstaff in Columbus’s Voyage": 1 + "4th Grade History: The Influence of Caravels in Columbus’s Journey to America": 1 + "4th Grade History: The Discovery of America - The Contribution of Hourglass to Columbus’s Navigation": 1 + "4th Grade History: The Significance of Celestial Navigation in Columbus’s Discovery of America": 1 + "4th Grade History: The Impact of Portolan Charts on Columbus’s Journey to America": 1 + "4th Grade History: The Discovery of America - The Role of Nocturnal in Columbus’s Exploration": 1 + "8th Grade History: The Impact of 18th Century Iron Smelting on Aquatic Ecosystems and 10 Strategies for Conservation Using Aquaponics": 1 + "8th Grade History: Exploring the Consequences of Iron Production on Freshwater Bodies and 10 Biofiltration Techniques for Conservation": 1 + "8th Grade History: The Effect of Colonial Iron Production on Oceans and 10 Phytoremediation Strategies for Conservation": 1 + "8th Grade History: The Role of Iron Forging in Water Pollution and 10 Green Infrastructure Solutions for Conservation": 1 + "8th Grade History: The Impact of Iron Foundries on Rivers and 10 Strategies for Conservation Using Sustainable Drainage Systems": 1 + "8th Grade History: Analyzing the Damage from Iron Production on Lakes and 10 Conservation Strategies Using Rainwater Harvesting": 1 + "8th Grade History: The Influence of Ironworks on Wetlands and 10 Strategies for Conservation Using Permeable Pavements": 1 + "8th Grade History: Iron Industry’s Effect on Water Bodies and 10 Conservation Strategies Using Constructed Wetlands": 1 + "8th Grade History: The Legacy of Iron Production on Water Quality and 10 Strategies for Conservation Using Riparian Buffers": 1 + "8th Grade History: The Historical Impact of Iron Manufacturing on Aquifers and 10 Conservation Strategies Using Greywater Recycling.": 1 + "3rd Grade English: Exploring Nouns and Verbs through Storytelling": 1 + "3rd Grade English: Interactive Learning of Nouns and Verbs using Gamification": 1 + "3rd Grade English: Nouns and Verbs Discovery using Mind Maps": 1 + "3rd Grade English: Understanding Nouns and Verbs with Augmented Reality": 1 + "3rd Grade English: Nouns and Verbs Exploration with Digital Flashcards": 1 + "3rd Grade English: Hands-on Learning of Nouns and Verbs using LEGO": 1 + "3rd Grade English: Nouns and Verbs Practice using Online Quizzes": 1 + "3rd Grade English: Incorporating Art to Learn Nouns and Verbs": 1 + "3rd Grade English: Nouns and Verbs Study using Interactive Whiteboards": 1 + "3rd Grade English: Exploring Nouns and Verbs through Podcasts and Audio Stories": 1 + "5th Grade Art: Exploring Digital Art and Graphic Design with Adobe Illustrator": 1 + "5th Grade Art: Dive into Digital Art and Graphic Design using CorelDraw": 1 + "5th Grade Art: Mastering Digital Art and Graphic Design through Photoshop": 1 + "5th Grade Art: A Journey into Digital Art and Graphic Design using Sketch": 1 + "5th Grade Art: Discovering Digital Art and Graphic Design with Affinity Designer": 1 + "5th Grade Art: Exploring Digital Art and Graphic Design using Canva": 1 + "5th Grade Art: Understanding Digital Art and Graphic Design with PaintTool SAI": 1 + "5th Grade Art: Learning Digital Art and Graphic Design using Inkscape": 1 + "5th Grade Art: Navigating Digital Art and Graphic Design with GIMP": 1 + "5th Grade Art: Delving into Digital Art and Graphic Design using Procreate.": 1 + "6th Grade Social Studies: The Impact of Edison’s Incandescent Light Bulb on Technological Advancements": 1 + "6th Grade Social Studies: Evolution of Lighting: From Candles to Compact Fluorescent Light Bulbs": 1 + "6th Grade Social Studies: The Revolution of the Light Bulb: A Deep Dive into Filament Technology": 1 + "6th Grade Social Studies: The Light Bulb Revolution and Its Influence on Electrical Circuitry Concepts": 1 + "6th Grade Social Studies: The Role of the Light Bulb in the Emergence of Modern Power Grids": 1 + "6th Grade Social Studies: The Light Bulb: Its Evolution and Impact on Photonic Technology": 1 + "6th Grade Social Studies: Analyzing the Light Bulb Revolution Through the Lens of Solid-State Electronics": 1 + "6th Grade Social Studies: The Light Bulb’s Contribution to the Advancement of Optical Fiber Technology": 1 + "6th Grade Social Studies: The Light Bulb: Transformation of Residential Wiring Systems": 1 + "6th Grade Social Studies: The Light Bulb: Its Revolution and Influence on Energy Conservation Techniques.": 1 + "5th Grade Social Studies: Exploring Ancient Egypt with Augmented Reality and Google Expeditions": 1 + "5th Grade Social Studies: Augmented Reality Tour of the Roman Empire Using Oculus Quest": 1 + "5th Grade Social Studies: Journeying through Ancient Civilizations using AR and Python Coding": 1 + "5th Grade Social Studies: Decoding Ancient Mayan Symbols with Augmented Reality and Machine Learning": 1 + "5th Grade Social Studies: Uncovering Ancient Greece with AR and 3D Scanning Technologies": 1 + "5th Grade Social Studies: Augmented Reality Time Travel to Ancient India Using HoloLens": 1 + "5th Grade Social Studies: Exploring the Aztec Empire with Augmented Reality and Interactive Mapping": 1 + "5th Grade Social Studies: Discovering Ancient Chinese Dynasties using AR and Voice Recognition Tech": 1 + "5th Grade Social Studies: Journey through Ancient Mesopotamia using Augmented Reality and Virtual Reality Goggles": 1 + "5th Grade Social Studies: Augmented Reality Exploration of Ancient African Kingdoms with AI-driven Interactive Quizzes.": 1 + "2nd Grade Language Arts: Mastering Grammar with Quizlet Digital Flashcards": 1 + "2nd Grade Language Arts: Exploring Grammar through Anki Flashcard App": 1 + "2nd Grade Language Arts: Enhancing Grammar Skills using Google Slides Flashcards": 1 + "2nd Grade Language Arts: Grammar Proficiency with Powerpoint Digital Flashcard Templates": 1 + "2nd Grade Language Arts: Grammar Mastery using Interactive Whiteboard Flashcards": 1 + "2nd Grade Language Arts: Emphasizing Grammar Concepts with Flipgrid Video Flashcards": 1 + "2nd Grade Language Arts: Building Grammar Skills using Canva Customized Flashcards": 1 + "2nd Grade Language Arts: Advanced Grammar with Kahoot Game-Based Flashcards": 1 + "2nd Grade Language Arts: Strengthening Grammar through Nearpod Digital Flashcards": 1 + "2nd Grade Language Arts: Comprehensive Grammar Study with Memrise Flashcard App": 1 + "Ancient Chinese Pagodas: Exploring the Role of Lap Joints and Mortise and Tenon in 6th Grade Joinery Techniques": 1 + "The Use of Dovetail Joints in Ancient Chinese Pagodas: A Comprehensive 6th Grade History Lesson": 1 + "Understanding the Role of Lap Joints and Hand Saws in Ancient Chinese Pagodas: A 6th Grade History Course": 1 + "Ancient Chinese Pagodas and the Importance of Lap Joints and Chisels in Joinery Techniques: A 6th Grade Study": 1 + "The Role of Lap Joints and Mitre Squares in the Construction of Ancient Chinese Pagodas: A 6th Grade History Lesson": 1 + "Ancient Chinese Pagodas: The Influence of Lap Joints and the Brace and Bit in 6th Grade Joinery Techniques": 1 + "The Significance of Lap Joints and the Use of Plane Tools in Ancient Chinese Pagodas: A 6th Grade History Lesson": 1 + "Ancient Chinese Pagodas: Unveiling the Role of Lap Joints and Marking Gauges in Joinery Techniques for 6th Graders": 1 + "The Impact of Lap Joints and Scribers in the Architecture of Ancient Chinese Pagodas: A 6th Grade History Lesson": 1 + "Ancient Chinese Pagodas and the Role of Lap Joints and Mallets in Joinery Techniques: A Detailed Study for 6th Graders": 1 + "3rd Grade English: Storytelling and Fables Utilizing SMART Boards and Google Docs": 1 + "3rd Grade English: Engaging Fables and Storytelling with Interactive Whiteboards and Padlet": 1 + "3rd Grade English: Exploring Storytelling and Fables Using Whiteboards and Kahoot Quizzes": 1 + "3rd Grade English: Storytelling and Fables through Interactive Whiteboards and Flipgrid": 1 + "3rd Grade English: Enhancing Storytelling and Fables with Interactive Whiteboards and Nearpod": 1 + "3rd Grade English: Storytelling and Fables on Interactive Whiteboards with Seesaw Integration": 1 + "3rd Grade English: Dynamic Storytelling and Fables with Interactive Whiteboards and Edmodo": 1 + "3rd Grade English: Storytelling and Fables using Interactive Whiteboards and Microsoft Teams": 1 + "3rd Grade English: Storytelling and Fables with Interactive Whiteboards and Quizlet Activities": 1 + "3rd Grade English: Interactive Storytelling and Fables with Whiteboards and G Suite Tools": 1 + "5th Grade Science: Investigating Ecosystems Through Soil Analysis Using Microscopes": 1 + "5th Grade Science: Exploring Ecosystems via Soil PH Testing ": 1 + "5th Grade Science: Decoding Ecosystems Through Soil Nutrient Analysis": 1 + "5th Grade Science: Unveiling Ecosystem Secrets Through Soil Texture Examination ": 1 + "5th Grade Science: Probing Ecosystems Through Soil Moisture Content Analysis": 1 + "5th Grade Science: Delving into Ecosystems Through Soil Biodiversity Studies ": 1 + "5th Grade Science: Investigating Ecosystems Through Soil Composition Analysis Using XRF Technology": 1 + "5th Grade Science: Unraveling Ecosystems Through Soil Organic Matter Analysis ": 1 + "5th Grade Science: Discovering Ecosystems Through Soil Mineralogy Using X-Ray Diffraction": 1 + "5th Grade Science: Understanding Ecosystems Through Soil Permeability Studies": 1 + "1st Grade Physical Education: Incorporating Dodgeball & Volleyball Serving Techniques with Agility Ladders and Cones": 1 + "1st Grade Physical Education: Boosting Team Sports & Volleyball Serving Efficiency with Agility Ladders & Jump Ropes": 1 + "1st Grade Physical Education: Enhancing Team Sports & Volleyball Serving Techniques using Agility Ladders & Heart Rate Monitors ": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders & Whistles": 1 + "1st Grade Physical Education: Improving Team Sports & Volleyball Serving Techniques with Agility Ladders & Resistance Bands": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders & Pedometers": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques Combined with Agility Ladders & Fitness Balls ": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders & Stopwatch": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders & Video Analysis": 1 + "1st Grade Physical Education: Team Sports & Volleyball Serving Techniques with Agility Ladders, Balance Boards & Hurdles": 1 + "9th Grade Social Studies: Exploring Asian Cultures through Ancient Scrolls using Carbon Dating": 1 + "9th Grade Social Studies: Investigating African Civilizations through Historical Documents using GIS Technology": 1 + "9th Grade Social Studies: Unraveling European Middle Ages through Manuscripts using Paleography": 1 + "9th Grade Social Studies: Navigating Ancient American Cultures through Codices using Spectroscopy": 1 + "9th Grade Social Studies: Unearthing Egyptian Dynasties through Papyrus Scrolls using Radiocarbon Dating": 1 + "9th Grade Social Studies: Interpreting Greek History through Epigraphic Records using 3D Imaging": 1 + "9th Grade Social Studies: Unfolding Mesopotamian Civilization through Cuneiform Tablets using Infrared Imaging": 1 + "9th Grade Social Studies: Tracing Roman Empire through Historical Inscriptions using Photogrammetry": 1 + "9th Grade Social Studies: Deciphering Byzantine Era through Historical Documents using Optical Character Recognition": 1 + "9th Grade Social Studies: Penetrating Mayan History through Hieroglyphic Stelae using LIDAR Technology": 1 + "Fourth Grade History: Exploring the Art of Map-Making in Medieval Times": 1 + "Fourth Grade History: The Role of the Printing Press in Medieval Times": 1 + "Fourth Grade History: Understanding Feudalism through Medieval Times": 1 + "Fourth Grade History: The Influence of the Compass in Medieval Exploration": 1 + "Fourth Grade History: The Impact of the Plow on Medieval Agriculture": 1 + "Fourth Grade History: The Significance of Castles in Medieval Defence Systems": 1 + "Fourth Grade History: Study of the Crossbow in Medieval Warfare": 1 + "Fourth Grade History: Examining Medieval Illuminated Manuscripts": 1 + "Fourth Grade History: The Importance of the Astrolabe in Medieval Navigation": 1 + "Fourth Grade History: The Role of Alchemy in Medieval Science": 1 + "11th Grade: The Human Anatomy in Physical Education: A Deep Dive into the Musculoskeletal System": 1 + "11th Grade: Exploring the Cardiovascular System in Human Anatomy for Physical Education": 1 + "11th Grade: Understanding the Nervous System: A Human Anatomy Study in Physical Education": 1 + "11th Grade: The Human Anatomy in Physical Education - Focusing on Respiratory System": 1 + "11th Grade: Learning Digestive System through Human Anatomy in Physical Education": 1 + "11th Grade: Study of the Endocrine System in Human Anatomy for Physical Education": 1 + "11th Grade: The Human Anatomy in Physical Education - An In-depth Look at the Urinary System": 1 + "11th Grade: The Integumentary System in Human Anatomy for Physical Education": 1 + "11th Grade: The Human Anatomy in Physical Education - Understanding the Immune System": 1 + "11th Grade: Studying the Reproductive System in Human Anatomy for Physical Education.": 1 + "4th Grade Mathematics: Delving into Averages and Ranges with MS Excel Pivot Tables through Climate Change Data": 1 + "4th Grade Mathematics: Understanding Histograms with MS Excel through Climate Change Temperature Data": 1 + "4th Grade Mathematics: Investigating Probability with MS Excel through Climate Change Rainfall Data": 1 + "4th Grade Mathematics: Mastering Scatter Plots with MS Excel through Climate Change Carbon Dioxide Data": 1 + "4th Grade Mathematics: Exploring Linear Regression with MS Excel through Climate Change Sea Level Data": 1 + "4th Grade Mathematics: Analyzing Variance with MS Excel through Climate Change Ice Melt Data": 1 + "4th Grade Mathematics: Deciphering Standard Deviation with MS Excel through Climate Change Data": 1 + "4th Grade Mathematics: Interpreting Box Plots with MS Excel through Climate Change Wind Speed Data": 1 + "4th Grade Mathematics: Discovering Correlation with MS Excel through Climate Change Historical Data": 1 + "4th Grade Mathematics: Unveiling Trends with MS Excel’s Data Analysis ToolPak through Climate Change Data.": 1 + "3rd Grade History: The Role of the Pulley System in Ancient Roman Aqueducts Design Influenced by Geometry and Archimedes’ Principle": 1 + "3rd Grade History: The Impact of Archimedes’ Screw on the Design of Ancient Roman Aqueducts with Geometry Influence": 1 + "3rd Grade History: The Influence of Geometry and Archimedes’ Principle on Ancient Roman Aqueducts Design: A Closer Look at the Use of Chisels": 1 + "3rd Grade History: The Use of Cranes and Geometry in the Construction of Ancient Roman Aqueducts Based on Archimedes’ Principle": 1 + "3rd Grade History: The Influence of Geometry and Archimedes’ Principle on Ancient Roman Aqueducts Design: An Exploration of the Lever Principle": 1 + "3rd Grade History: Geometry, Archimedes’ Principle and the Role of Concrete in the Design of Ancient Roman Aqueducts": 1 + "3rd Grade History: The Influence of Geometry, Archimedes’ Principle and the Invention of the Wheel on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Use of Geometry, Archimedes’ Principle and the Arch in the Design of Ancient Roman Aqueducts": 1 + "3rd Grade History: Geometry, Archimedes’ Principle and the Impact of the Plumb Bob on Ancient Roman Aqueducts Design": 1 + "3rd Grade History: The Influence of Geometry, Archimedes’ Principle and the Surveyor’s Level in the Design of Ancient Roman Aqueducts.": 1 + "4th Grade Science: Exploring Mars using NASA’s Eyes Mobile Application, Virtual Reality, and Google Mars": 1 + "4th Grade Science: Deep Dive into Jupiter’s Moons with NASA’s Eyes Mobile Application, Virtual Reality, and Stellarium ": 1 + "4th Grade Science: Unraveling the Secrets of Saturn’s Rings through NASA’s Eyes Mobile Application, Virtual Reality, and Celestia Software": 1 + "4th Grade Science: The Sun’s Energy: A Study with NASA’s Eyes Mobile Application, Virtual Reality, and Solar Telescopes": 1 + "4th Grade Science: The Mysteries of Black Holes Explored with NASA’s Eyes Mobile Application, Virtual Reality, and Black Hole Simulator": 1 + "4th Grade Science: Voyage to Venus: Understanding its Atmosphere with NASA’s Eyes Mobile Application, Virtual Reality, and Venus Express Data": 1 + "4th Grade Science: Navigating Neptune’s Winds using NASA’s Eyes Mobile Application, Virtual Reality, and Weather Balloon Experiments": 1 + "4th Grade Science: Probing Pluto’s Surface Features with NASA’s Eyes Mobile Application, Virtual Reality, and New Horizons Probe Data": 1 + "4th Grade Science: Understanding the Earth’s Orbit with NASA’s Eyes Mobile Application, Virtual Reality, and Orbital Mechanics": 1 + "4th Grade Science: The Magic of Meteors: A Study with NASA’s Eyes Mobile Application, Virtual Reality, and Meteor Tracking Technologies.": 1 + "2nd Grade Mathematics: Mastering Addition and Subtraction with Number Line Activities, Abacus Use, and Math Apps": 1 + "2nd Grade Mathematics: Enhancing Skills in Addition and Subtraction through Number Line Activities, Flashcard Tools, and Math Apps": 1 + "2nd Grade Mathematics: Comprehensive Addition and Subtraction Mastery with Number Line Activities, Math Apps, and Interactive Whiteboard Exercises": 1 + "2nd Grade Mathematics: Addition and Subtraction Proficiency through Number Line Activities, Math Apps and Lego Blocks Counting": 1 + "2nd Grade Mathematics: In-depth Study of Addition and Subtraction with Number Line Activities, Math Apps, and the Montessori Method": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery with Number Line Activities, Math Apps, and Virtual Reality Learning Tools": 1 + "2nd Grade Mathematics: Exploring Addition and Subtraction through Number Line Activities, Math Apps, and the Use of Counting Bears": 1 + "2nd Grade Mathematics: Developing Addition and Subtraction Skills with Number Line Activities, Math Apps, and Tangram Puzzles": 1 + "2nd Grade Mathematics: Strengthening Addition and Subtraction with Number Line Activities, Math Apps and the Touch Math Technique": 1 + "2nd Grade Mathematics: Addition and Subtraction Mastery with Number Line Activities, Math Apps, and Specially Designed Math Bingo Games": 1 + "8th Grade Art: Exploring Watercolor Techniques with Round Brushes": 1 + "8th Grade Art: Incorporating Palette Knives in Watercolor Techniques": 1 + "8th Grade Art: Mastering Wet-on-Wet Technique in Watercolor Painting": 1 + "8th Grade Art: Exploring Watercolor Techniques and the Use of Masking Fluid": 1 + "8th Grade Art: Utilizing Wash Techniques in Watercolor Painting": 1 + "8th Grade Art: Exploring Watercolor Techniques with Fan Brushes": 1 + "8th Grade Art: Discovering Glazing in Watercolor Techniques": 1 + "8th Grade Art: Exploring Watercolor Techniques with Digital Tools": 1 + "8th Grade Art: Exploring Watercolor Techniques: From Basic to Layering": 1 + "8th Grade Art: The Role of Sponges in Watercolor Techniques.": 1 + "3rd Grade Mathematics: Mastering Multiplication with Times Tables & Augmented Reality using iPad Pro": 1 + "Utilizing Smartboard Technology for Multiplication Mastery in 3rd Grade Mathematics: A Focus on Times Tables and Augmented Reality": 1 + "3rd Grade Mathematics: Times Tables and Augmented Reality Mastery using Virtual Reality Headsets": 1 + "Leveraging Google Classroom in 3rd Grade Mathematics: Times Tables & Augmented Reality for Multiplication Mastery": 1 + "3rd Grade Mathematics: Utilizing Times Tables & Augmented Reality for Multiplication with Microsoft HoloLens": 1 + "Mastering Multiplication with Times Tables & Augmented Reality in 3rd Grade Mathematics: An Application of Interactive Whiteboards": 1 + "3rd Grade Mathematics: Exploring Multiplication Mastery through Times Tables & Augmented Reality using Raspberry Pi": 1 + "3rd Grade Mathematics: Times Tables and Augmented Reality Mastery via Interactive Projector Technology": 1 + "Utilizing 3D Printing in 3rd Grade Mathematics: Times Tables and Augmented Reality for Multiplication Mastery": 1 + "Mastery of Multiplication with Times Tables & Augmented Reality in 3rd Grade Mathematics: A Focus on Digital Pen Technology": 1 + "4th Grade History: Exploring the American Revolution through Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Minecraft Education Edition": 1 + "4th Grade History: Diving into the American Revolution with Lenovo Mirage Solo VR, Augmented Reality, Gamification and Google Expeditions": 1 + "4th Grade History: Learning the American Revolution through Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Interactive Whiteboards": 1 + "4th Grade History: Understanding the American Revolution using Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Kahoot Quizzes": 1 + "4th Grade History: Engaging with the American Revolution through Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and 3D Printing Technology": 1 + "4th Grade History: Studying the American Revolution with Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Tinkercad 3D Design": 1 + "4th Grade History: Navigating the American Revolution using Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Scratch Programming": 1 + "4th Grade History: Experiencing the American Revolution through Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Flipgrid Video Discussions": 1 + "4th Grade History: Discovering the American Revolution with Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Edpuzzle Interactive Videos": 1 + "4th Grade History: Unpacking the American Revolution using Lenovo Mirage Solo VR, Augmented Reality, Gamification Techniques and Quizlet Flashcards": 1 + "4th Grade Science: Exploring the Wonders of Space with Telescopes": 1 + "4th Grade Science: The Wonders of Space and the Role of Satellites": 1 + "4th Grade Science: Understanding Space through the Lens of the Hubble Space Telescope": 1 + "4th Grade Science: The Wonders of Space: A Deep Dive into the Apollo Missions": 1 + "4th Grade Science: The Wonders of Space: A Journey Through the Milky Way": 1 + "4th Grade Science: The Wonders of Space: The Impact of Space Shuttles": 1 + "4th Grade Science: The Wonders of Space: The Science Behind Rockets": 1 + "4th Grade Science: Understanding the Wonders of Space through Astronaut Training": 1 + "4th Grade Science: The Wonders of Space: Exploring Mars with Rovers": 1 + "4th Grade Science: The Wonders of Space: The Magic of the International Space Station": 1 + "Third Grade Social Studies: Exploring Local Community and Government Through Virtual Field Trips using Drone Footage and Google Earth": 1 + "Third Grade Social Studies: Using Drone Footage and Augmented Reality in Learning about Local Community and Government": 1 + "Learning Local Community and Government Through Virtual Field Trips using Drone Footage and 3D Modeling in Third Grade Social Studies": 1 + "Third Grade Social Studies: Interactive Learning of Local Community and Government Through Virtual Field Trips using Drone Footage and VR Headsets": 1 + "An Immersive Learning Experience: Third Grade Social Studies using Drone Footage, Virtual Field Trips and Geographic Information Systems": 1 + "Third Grade Social Studies: Analyzing Local Community and Government Through Virtual Field Trips using Drone Footage and Data Visualization Tools": 1 + "Third Grade Social Studies: Exploring Local Government Structures Through Virtual Field Trips using Drone Footage and Digital Mapping": 1 + "Third Grade Social Studies: Local Community and Government Studies Through Virtual Field Trips using Drone Footage and Interactive Whiteboards": 1 + "Local Community and Government Studies: Third Grade Social Studies through Virtual Field Trips using Drone Footage and Online Collaboration Tools": 1 + "Third Grade Social Studies: Learning Local Community and Government Through Virtual Field Trips using Drone Footage and Tablet Applications": 1 + "5th Grade English: Exploring Storytelling and Plot Development Using Graphic Organizers": 1 + "5th Grade English: Developing Storytelling Skills and Plot Structure through Digital Storyboards": 1 + "5th Grade English: Incorporating Dialogue in Plot Development and Storytelling": 1 + "5th Grade English: Storytelling and Plot Development with Interactive Whiteboards": 1 + "5th Grade English: Storytelling and Plot Development - A Focus on Character Arc": 1 + "5th Grade English: Unleashing Creativity in Storytelling and Plot Development with Mind Mapping Tools": 1 + "5th Grade English: Storytelling and Plot Development - Exploring Conflict and Resolution": 1 + "5th Grade English: Storytelling and Plot Development Through Multimedia Presentations": 1 + "5th Grade English: Enhancing Storytelling and Plot Development with Animated Videos": 1 + "5th Grade English: Storytelling and Plot Development - A Deep Dive into Setting and Atmosphere.": 1 + "Fourth Grade History: Exploring the Impact of Gutenberg’s Printing Press on the Boston Tea Party": 1 + "Fourth Grade History: An In-depth Study of Political Cartoons and Their Role in the Boston Tea Party": 1 + "Fourth Grade History: The Influence of the Printing Press and Lantern Signals in the Boston Tea Party": 1 + "Fourth Grade History: The Role of the Printing Press and Political Cartoons in the Boston Tea Party: A Focus on Woodcut Techniques": 1 + "Fourth Grade History: The Influence of the Printing Press and the Concept of Propaganda in the Boston Tea Party": 1 + "Fourth Grade History: The Importance of the Printing Press and Political Satire in the Boston Tea Party": 1 + "Fourth Grade History: The Role of the Printing Press, Political Cartoons, and Penny Newspapers in the Boston Tea Party": 1 + "Fourth Grade History: The Impact of the Printing Press and Political Cartoons on the Boston Tea Party: An Exploration of Revolutionary Pamphlets": 1 + "Fourth Grade History: The Role of the Printing Press, Political Cartoons and the Spread of Mass Communication in the Boston Tea Party": 1 + "Fourth Grade History: The Printing Press, Political Cartoons and the Power of Persuasion in the Boston Tea Party": 1 + "1st Grade Science: Exploring Mars with Robotics and VR Technology ": 1 + "1st Grade Science: Navigating the Solar System with Robotics and Augmented Reality ": 1 + "1st Grade Science: Journey through the Solar System with Robotics and Telescopes ": 1 + "1st Grade Science: Understanding Gravity in the Solar System with Robotics ": 1 + "1st Grade Science: Traversing the Atmospheres of Planets with Robotics and Drones ": 1 + "1st Grade Science: Journey through the Solar System with Robotics and 3D Printing ": 1 + "1st Grade Science: Exploring the Moon’s Surface with Robotics and Rovers ": 1 + "1st Grade Science: Journey through the Solar System with Robotics and Satellite Imagery ": 1 + "1st Grade Science: Discovering Asteroids with Robotics and Spectroscopy ": 1 + "1st Grade Science: Journey through the Solar System with Robotics and Radio Communication ": 1 + "1st Grade Science: Exploring Jupiter’s Moons with Robotics and Microscopes.": 1 + "3rd Grade English: Exploring Themes in Stories Through Character Analyses": 1 + "3rd Grade English: Identifying Story Themes Using Symbolism": 1 + "3rd Grade English: Interactive Digital Storytelling: Exploring Themes": 1 + "3rd Grade English: Using Mind Maps to Explore Themes in Stories": 1 + "3rd Grade English: Exploring Themes in Stories with Interactive Whiteboards": 1 + "3rd Grade English: Exploring Themes in Stories Using Plot Structures": 1 + "3rd Grade English: Utilizing Storyboards to Identify Themes in Stories": 1 + "3rd Grade English: Exploring Themes in Stories Through Dramatization": 1 + "3rd Grade English: Exploring Themes in Stories Using Multimedia Presentations": 1 + "3rd Grade English: Using e-Books to Explore Themes in Stories": 1 + "3rd Grade English: Exploring Themes in Stories Through Collaborative Online Discussions": 1 + "Evaluating the Role of MyFitnessPal App in a Balanced Diet: Implementing Garmin Fitness Tracker and Macronutrients in a 9th Grade Physical Education Course.": 1 + "Investigating the Effects of a Balanced Diet using Google Fit: Integrating Garmin Fitness Tracker, CalorieKing App and Macronutrients in 9th Grade PE.": 1 + "Understanding Nutritional Balance: Incorporating Garmin Fitness Tracker, CalorieKing App, Macronutrients and BMI Calculations in 9th Grade Physical Education.": 1 + "Studying a Balanced Diet with Fitbit: Implementing Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade PE Course.": 1 + "Exploring the Impact of a Balanced Diet with the Use of Strava: Integrating Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade Physical Education Course.": 1 + "Navigating Nutritional Balance with the Nike Run Club App: Integrating Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade PE Course.": 1 + "Impact of a Balanced Diet through Apple Health App: Merging Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade Physical Education Course.": 1 + "Decoding the Effects of a Balanced Diet with Polar Flow: Implementing Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade Physical Education Course.": 1 + "Assessing the Influence of a Balanced Diet via RunKeeper: Integrating Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade PE Course.": 1 + "Tracing the Importance of a Balanced Diet with MapMyFitness: Implementing Garmin Fitness Tracker, CalorieKing App, Macronutrients in a 9th Grade Physical Education Course.": 1 + "4th Grade History: The Introduction of the Wheel, Plow, and Smithing in Early American Settlements": 1 + "4th Grade History: The Arrival of the Wheel, Plow and Loom among the First American Settlers": 1 + "4th Grade History: The Adoption of the Wheel, Plow, and Pottery Wheel in Early American Society": 1 + "4th Grade History: The Impact of the Wheel, Plow, and Watermill on First American Settlers": 1 + "4th Grade History: The Introduction of the Wheel, Plow, and Irrigation Systems by the First American Settlers": 1 + "4th Grade History: The Wheel, Plow, and Printing Press among the First American Settlers": 1 + "4th Grade History: The Implementation of the Wheel, Plow, and Spinning Wheel in Early American Farming": 1 + "4th Grade History: The Emergence of the Wheel, Plow, and Compass in First American Settlements": 1 + "4th Grade History: The Introduction of the Wheel, Plow, and Bronze Casting to the First American Settlers": 1 + "4th Grade History: The Wheel, Plow, and Archimedes’ Screw in Early American Life.": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being utilizing Bodyweight Exercises and Resistance Bands": 1 + "9th Grade Physical Education: Enhancing Fitness with Bodyweight Exercises and Heart Rate Monitors": 1 + "9th Grade Physical Education: Bodyweight Exercises and Plyometric Training for Advanced Fitness": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being using Bodyweight Exercises and Yoga Mats": 1 + "9th Grade Physical Education: Boosting Well-being through Bodyweight Exercises and Aerobic Steppers": 1 + "9th Grade Physical Education: Advanced Fitness with Bodyweight Exercises and Stability Balls": 1 + "9th Grade Physical Education: Leveraging Fitness Trackers in Bodyweight Exercises for Advanced Fitness": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being with Bodyweight Exercises and Suspension Trainers": 1 + "9th Grade Physical Education: Integrating Bodyweight Exercises and Foam Rollers for Advanced Fitness": 1 + "9th Grade Physical Education: Advanced Fitness and Well-being through Bodyweight Exercises and Kettlebells.": 1 + "1st Grade History: Discovering Local Heroes using Ancestry.com and Mind-Mapping Techniques": 1 + "Early Education: Unearthing Local Heroes through Google Earth and Mind Mapping Techniques": 1 + "1st Grade History: Learning about Local Heroes using Digital Archives and Prezi Mind Mapping Techniques": 1 + "Grade 1 History: Exploring Local Heroes with Microsoft’s Bing Maps and Mind Mapping Techniques": 1 + "Elementary History: Identifying Local Heroes utilizing Library of Congress Digital Collections and Mind Mapping Techniques": 1 + "1st Grade History: Finding Local Heroes through Google Scholar and Interactive Mind Mapping Techniques": 1 + "1st Grade Social Studies: Unearthing Local Heroes using JSTOR Database and Popplet Mind Mapping Techniques": 1 + "1st Grade History: Researching Local Heroes with National Archives Online and Mindomo Mind Mapping Techniques": 1 + "1st Grade History: Investigating Local Heroes using Public Library Digital Archives and XMind Techniques": 1 + "1st Grade History: Unraveling Local Heroes using WorldCat Database and ConceptDraw Mind Mapping Techniques.": 1 + "5th Grade Music: Exploring Triadic Harmonies in Rhythm with Piano": 1 + "5th Grade Music: Discovering Syncopation in Rhythm with Piano and Metronome": 1 + "5th Grade Music: Understanding Polyrhythms in Rhythm with Piano using MIDI Technology": 1 + "5th Grade Music: Exploring Patterns in Rhythm with Piano and Digital Audio Workstation": 1 + "5th Grade Music: Discovering Rhythm Patterns in Piano using Loop Stations": 1 + "5th Grade Music: Unveiling Swing Rhythms in Piano Playing": 1 + "5th Grade Music: Understanding the Concept of Tempo in Rhythm with Piano": 1 + "5th Grade Music: Mastering Beat Division in Rhythm with Piano and Drum Machine": 1 + "5th Grade Music: Incorporating Dynamics in Rhythm with Piano using Volume Pedals": 1 + "5th Grade Music: Exploring Rhythm Patterns in Piano using Music Notation Software": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Animaker for Animated Storytelling": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly with Google Classroom Integration": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Padlet for Collaborative Feedback": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Quizlet for Vocabulary Building": 1 + "3rd Grade English: Fables Analysis using Amazon Polly and Nearpod for Interactive Storytelling": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Canva for Visual Enhancement": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Scratch for Coding Integration": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Flipgrid for Peer Reviews": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and EdPuzzle for Comprehension Checks": 1 + "3rd Grade English: Storytelling and Fables Analysis Using Amazon Polly and Trello for Project Management.": 1 + "2nd Grade Language Arts: Using Google Docs in Interactive Whiteboards and Skype for Engaging Narration": 1 + "2nd Grade Language Arts: Enhancing Narration with Interactive Whiteboards, Skype and Kahoot Quizzes": 1 + "2nd Grade Language Arts: Integrating Podcasts with Interactive Whiteboards and Skype for Engaging Narration": 1 + "2nd Grade Language Arts: Utilizing Interactive Whiteboards, Skype and Flipgrid for Creative Storytelling": 1 + "2nd Grade Language Arts: Leveraging Interactive Whiteboards and Skype with Virtual Reality for Immersive Narration": 1 + "2nd Grade Language Arts: Empowering Narration with Interactive Whiteboards, Skype and Edmodo": 1 + "2nd Grade Language Arts: Implementing Interactive Whiteboards and Skype with Prezi for Dynamic Narration": 1 + "2nd Grade Language Arts: Enriching Narration using Interactive Whiteboards, Skype and Quizlet Live": 1 + "2nd Grade Language Arts: Making Narration Fun with Interactive Whiteboards, Skype and Minecraft Education Edition": 1 + "2nd Grade Language Arts: Applying Interactive Whiteboards and Skype with Scratch Coding for Engaging Narration.": 1 + "9th Grade Music: Exploring Beethoven’s Symphonies through Baton Conducting Techniques": 1 + "9th Grade Music: Understanding Classical Compositions through the Lens of Tempo Mapping Technology": 1 + "9th Grade Music: Decoding Mozart’s Compositions through Gestural Conducting Techniques": 1 + "9th Grade Music: Analysing Classical Compositions through Score Reading and Conducting Techniques": 1 + "9th Grade Music: Appreciating Bach’s Fugues through Baton and Hand Conducting Techniques": 1 + "9th Grade Music: Exploring Classical Period through Metronome Use in Conducting Techniques": 1 + "9th Grade Music: Understanding Vivaldi’s Four Seasons through Baton Techniques and Score Marking": 1 + "9th Grade Music: Interpreting Baroque Music through the Use of Fermata in Conducting Techniques": 1 + "9th Grade Music: Deciphering Classical Compositions through the Use of Sibelius Software and Conducting Techniques": 1 + "9th Grade Music: Exploring Chopin’s Nocturnes through the Use of Digitally Assisted Conducting Techniques.": 1 + "8th Grade Music: Exploring Ableton Live and MIDI Controllers in Modern Music Production": 1 + "8th Grade Music: Sound Design through Loop Pedals and Digital Audio Workstations in Modern Music Production": 1 + "8th Grade Music: Mastering Ableton Live and Synthesizers for Modern Music Production": 1 + "8th Grade Music: Integrating Sound Design and Auto-Tune with Loop Pedals in Modern Music Production": 1 + "8th Grade Music: Discovering Ableton Live and Beat Making through Loop Pedals in Modern Music Production": 1 + "8th Grade Music: Exploring Sound Design with Logic Pro X and Loop Pedals in Modern Music Production": 1 + "8th Grade Music: Utilizing Ableton Live and Audio Mixing Techniques in Modern Music Production": 1 + "8th Grade Music: Learning Sound Design through Loop Pedals and Pro Tools in Modern Music Production": 1 + "8th Grade Music: Navigating Ableton Live and Virtual Instruments in Modern Music Production": 1 + "8th Grade Music: Sound Design and Melody Creation with Loop Pedals in Modern Music Production.": 1 + "6th Grade Art: Exploring Color Mixing Using Watercolors and Brushes": 1 + "6th Grade Art: Exploring Color Mixing with Watercolors and Palette Knives": 1 + "6th Grade Art: Understanding Color Theory through Watercolor Mixing": 1 + "6th Grade Art: Exploring Color Mixing Using Watercolors and Masking Fluid": 1 + "6th Grade Art: Exploring Color Mixing with Watercolors and Digital Art Software": 1 + "6th Grade Art: Exploring Color Mixing Using Watercolors and Blending Techniques": 1 + "6th Grade Art: Exploring Color Mixing with Watercolors and Wet-on-Wet Technique": 1 + "6th Grade Art: Mastering Color Mixing Using Watercolors and Sponges": 1 + "6th Grade Art: Exploring Color Mixing Using Watercolors and Salt Techniques": 1 + "6th Grade Art: Exploring Color Mixing with Watercolors and Gradient Techniques": 1 + "1st Grade Art: Exploring Basic Shapes and Colors with Color Wheel Concepts using Watercolors": 1 + "1st Grade Art: Unveiling Basic Shapes and Colors through Color Wheel Concepts using Crayons": 1 + "1st Grade Art: Engaging with Basic Shapes and Colors via Color Wheel Concepts with Acrylic Paints": 1 + "1st Grade Art: Discovering Basic Shapes and Colors using Color Wheel Concepts and Construction Paper": 1 + "1st Grade Art: Navigating Basic Shapes and Colors applying Color Wheel Concepts with Digital Art Software": 1 + "1st Grade Art: Learning Basic Shapes and Colors through Color Wheel Concepts using Pastel Colors": 1 + "1st Grade Art: Mastering Basic Shapes and Colors using Color Wheel Concepts and Collage Techniques": 1 + "1st Grade Art: Exploring Basic Shapes and Colors with Color Wheel Concepts using Origami Paper": 1 + "1st Grade Art: Embracing Basic Shapes and Colors via Color Wheel Concepts with Oil Pastels ": 1 + "1st Grade Art: Understanding Basic Shapes and Colors using Color Wheel Concepts and Charcoal Sketching": 1 + "1st Grade Art: Exploring Procreate on iPad": 1 + "1st Grade Art: Learning Digital Art with Adobe Fresco": 1 + "1st Grade Art: Introduction to Digital Painting via Medibang Paint Pro": 1 + "1st Grade Art: Getting Started with ArtRage: Digital Art for Beginners": 1 + "1st Grade Art: Discovering Digital Art with Tux Paint": 1 + "1st Grade Art: Navigating The World of Digital Art with Krita": 1 + "1st Grade Art: Unleashing Creativity with Microsoft Paint 3D": 1 + "1st Grade Art: Exploring Digital Art Techniques with Autodesk SketchBook": 1 + "1st Grade Art: A Beginner’s Guide to Digital Art with Clip Studio Paint": 1 + "1st Grade Art: Making Art Fun with Corel Painter Essentials": 1 + "6th Grade Art: Exploring Sketching with Charcoal": 1 + "6th Grade Art: Introduction to Oil Pastel Painting Techniques": 1 + "6th Grade Art: Mastering Shading with Graphite Pencils": 1 + "6th Grade Art: An In-Depth Study of Pastel Drawing": 1 + "6th Grade Art: Introduction to Digital Sketching with Drawing Tablets": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics": 1 + "6th Grade Art: Learning to Sketch with Mechanical Pencils": 1 + "6th Grade Art: Introduction to 3D Sketching and Shading": 1 + "6th Grade Art: Techniques of Landscape Painting with Watercolors": 1 + "6th Grade Art: The Science of Shading with Graphite and Charcoal Pencils": 1 + "8th Grade Science: Understanding DNA Structures with Genome Sequencer in Introductory Biology - A Focus on Genomic Mapping Techniques": 1 + "8th Grade Science: Exploring DNA Structures Using CRISPR Technology in Introductory Biology - Genomic Mapping Insights": 1 + "8th Grade Science: Investigating DNA Structures through Gel Electrophoresis in Introductory Biology - A Genomic Mapping Journey": 1 + "8th Grade Science: DNA Structures & Polymerase Chain Reaction (PCR) in Introductory Biology - A Detailed Study on Genomic Mapping": 1 + "8th Grade Science: DNA Structures and Next-Generation Sequencing in Introductory Biology - A Genomic Mapping Expedition": 1 + "8th Grade Science: Decoding DNA Structures with Bioinformatics in Introductory Biology - A Focus on Genomic Mapping Strategies": 1 + "8th Grade Science: DNA Structures and Microarray Technology in Introductory Biology - A Comprehensive Look at Genomic Mapping": 1 + "8th Grade Science: DNA Structures Explored with Spectrophotometry in Introductory Biology - A Dive into Genomic Mapping": 1 + "8th Grade Science: Unraveling DNA Structures through Flow Cytometry in Introductory Biology - A Genomic Mapping Adventure": 1 + "8th Grade Science: DNA Structures and Fluorescence in situ Hybridization (FISH) in Introductory Biology - A Genomic Mapping Perspective.": 1 + "8th Grade History: The Renaissance Era: The Impact of the Columnar Pad on Double-entry Bookkeeping in Europe with a Focus on the Use of the Abacus": 1 + "8th Grade History: The Renaissance Era: The Influence of Gutenberg’s Printing Press on the Spread of Double-entry Bookkeeping in Europe": 1 + "8th Grade History: The Renaissance Era: The Role of The Columnar Pad in Double-entry Bookkeeping and the Advent of European Banking Systems": 1 + "8th Grade History: The Renaissance Era: The Impact of the Columnar Pad on Double-entry Bookkeeping and the Development of European Trade Routes": 1 + "8th Grade History: The Renaissance Era: Exploring the Role of the Columnar Pad in Double-entry Bookkeeping and the Rise of the Medici Bank in Europe": 1 + "8th Grade History: The Renaissance Era: The Columnar Pad’s Impact on Double-entry Bookkeeping and the Spread of the Decimal System in Europe": 1 + "8th Grade History: The Renaissance Era: The Columnar Pad and Double-entry Bookkeeping: A Study of European Economic Expansion": 1 + "8th Grade History: The Renaissance Era: The Columnar Pad’s Influence on Double-entry Bookkeeping and the Rise of the European Mercantile Class": 1 + "8th Grade History: The Renaissance Era: The Columnar Pad, Double-entry Bookkeeping and its Role in the Creation of the European Stock Exchange": 1 + "8th Grade History: The Renaissance Era: The Impact of the Columnar Pad on Double-entry Bookkeeping and the Evolution of European Taxation Systems.": 1 + "5th Grade Music: Introduction to Classical Composers Through Mozart’s Symphonies": 1 + "5th Grade Music: Exploring Classical Composers with Beethoven’s Sonatas": 1 + "5th Grade Music: A Deep Dive into Classical Composers Using Bach’s Fugues": 1 + "5th Grade Music: Introduction to Classical Composers with a Focus on Handel’s Oratorios": 1 + "5th Grade Music: Understanding Classical Composers Through Vivaldi’s Concertos": 1 + "5th Grade Music: Discovering Classical Composers with Chopin’s Nocturnes": 1 + "5th Grade Music: Introduction to Classical Composers via Haydn’s String Quartets": 1 + "5th Grade Music: Learning About Classical Composers Through Liszt’s Hungarian Rhapsodies": 1 + "5th Grade Music: Introduction to Classical Composers Through Schubert’s Lieder": 1 + "5th Grade Music: Unpacking Classical Composers with Tchaikovsky’s Ballet Suites": 1 + "4th Grade Science: Studying Photosynthesis in Plant Biology Using Microscopes": 1 + "4th Grade Science: Exploring Cell Structure in Plant Biology with Slide Preparation": 1 + "4th Grade Science: Plant Reproduction and Pollination: An Introduction to Plant Biology": 1 + "4th Grade Science: Plant Biology and DNA Extraction: An Introductory Course": 1 + "4th Grade Science: Plant Biology and Classification Using Dichotomous Keys": 1 + "4th Grade Science: Investigating Plant Growth and Soil Types in Plant Biology": 1 + "4th Grade Science: Introduction to Plant Biology and Experimenting with Hydroponics": 1 + "4th Grade Science: Learning about Tropisms in Plant Biology Using Time-Lapse Photography": 1 + "4th Grade Science: Introduction to Plant Biology and the Role of Fertilizers in Plant Growth": 1 + "4th Grade Science: Exploring Plant Respiration and Transpiration Using Potometers in Plant Biology": 1 + "6th Grade Computer Science: Understanding Algorithms with Python": 1 + "6th Grade Computer Science: Exploring Scratch Programming and Algorithms ": 1 + "6th Grade Computer Science: Understanding Algorithms through JavaScript": 1 + "6th Grade Computer Science: Introduction to Algorithms using Ruby": 1 + "6th Grade Computer Science: Decoding Algorithms with C++": 1 + "6th Grade Computer Science: Demystifying Algorithms with HTML & CSS": 1 + "6th Grade Computer Science: Understanding Algorithms in Java": 1 + "6th Grade Computer Science: Algorithms and Problem-Solving with Swift": 1 + "6th Grade Computer Science: Understanding Algorithms using Blockly": 1 + "6th Grade Computer Science: Mastering Algorithms with SQL": 1 + "11th Grade Genetics: Decoding Heredity with Punnett Squares and Crispr Technology": 1 + "Advanced Biology: Exploring Heredity through Punnett Squares and DNA Sequencing": 1 + "High School Genetics: Heredity Analysis using Punnett Squares and Genomic Databases": 1 + "Grade 11 Science: Understanding Heredity through Punnett Squares and Gel Electrophoresis Techniques": 1 + "Advanced Biology: Investigating Heredity with Punnett Squares and PCR Amplification": 1 + "High School Genetics: Deciphering Heredity using Punnett Squares and Microarray Technology": 1 + "Grade 11 Science: Examining Heredity through Punnett Squares and Next-Generation Sequencing": 1 + "Advanced Biology: Unraveling Heredity with Punnett Squares and Southern Blotting Techniques": 1 + "High School Genetics: Exploring Heredity through Punnett Squares and Fluorescent In Situ Hybridization": 1 + "11th Grade Science: Understanding Heredity with Punnett Squares and DNA Microsatellites.": 1 + "6th Grade Physical Education: Developing Balance Through Yoga Poses and Breathing Techniques for Enhanced Fitness ": 1 + "6th Grade Physical Education: Utilizing Yoga Mats in Balance Poses for Improved Health Awareness ": 1 + "6th Grade Physical Education: Incorporating Yoga Blocks in Balance Poses for Strengthened Fitness ": 1 + "6th Grade Physical Education: Yoga Balance Poses with Prop-Aid for Enhanced Health Awareness ": 1 + "6th Grade Physical Education: Yoga Balance Poses on Wobble Cushions for Advanced Fitness ": 1 + "6th Grade Physical Education: Yoga Balance Poses with Fitness Balls for Enhanced Health Awareness ": 1 + "6th Grade Physical Education: Using Yoga Straps in Balance Poses to Increase Fitness ": 1 + "6th Grade Physical Education: Yoga Balance Poses with Resistance Bands for Boosted Health Awareness ": 1 + "6th Grade Physical Education: Yoga Balance Poses with Interactive Mobile Apps for Fitness Enhancement ": 1 + "6th Grade Physical Education: Practicing Yoga Balance Poses with Virtual Reality for Better Health Awareness": 1 + "9th Grade Mathematics: Understanding Circle Equations through Pythagorean Theorem - Applications in Engineering": 1 + "Geometry Essentials: Circle Equations and their Applications in Physics using Cartesian Coordinate System": 1 + "Advanced Geometry: Using Graphing Calculators for Circle Equations - Real-life Applications in Architecture": 1 + "9th Grade Mathematics: Analyzing Circle Equations using Trigonometric Functions - Applications in Space Science": 1 + "Geometry Essentials: Circle Equations and their Practical Uses in Robotics with CAD Software": 1 + "9th Grade Mathematics: Exploring Circle Equations through Euclidean Geometry - Applications in Navigation Systems": 1 + "Advanced Geometry: Understanding Circle Equations with Geometric Transformations - Real-life Scenarios in Game Design": 1 + "Geometry Essentials: Circle Equations and their Applications in Satellite Imagery using Geospatial Analysis": 1 + "9th Grade Mathematics: Applying Algebraic Solutions to Circle Equations - Real-life Uses in Cryptography": 1 + "Advanced Geometry: Circle Equations and their Applications in 3D Modeling using SolidWorks.": 1 + "4th Grade Social Studies: Key Figures in American History through the Lens of the Cotton Gin": 1 + "4th Grade Social Studies: Understanding American History through the Telegraph and its Key Figures": 1 + "4th Grade Social Studies: The Role of Railroads in Shaping American History and its Leaders": 1 + "4th Grade Social Studies: Key Figures in American History and the Impact of the Printing Press": 1 + "4th Grade Social Studies: Navigating American History with the Compass: A Look at Key Figures": 1 + "4th Grade Social Studies: The Influence of the Spinning Jenny on American History’s Key Figures": 1 + "4th Grade Social Studies: The Revolutionary Era: Key Figures and the Impact of Gunpowder": 1 + "4th Grade Social Studies: Key Figures in American History: A Deep Dive into the Age of Steam Power": 1 + "4th Grade Social Studies: The Telegraph’s Role in the Lives of Key Figures in American History": 1 + "4th Grade Social Studies: Exploring American History’s Key Figures and the Steel Plow’s Impact": 1 + "3rd Grade Mathematics: Mastering Multiplication and Division with Mathspace Digital Platform and the Aid of Times Tables": 1 + "3rd Grade Mathematics: Simplifying Multiplication and Division using Mathspace Digital Platform and the Grid Method": 1 + "3rd Grade Mathematics: Understanding Multiplication and Division through Mathspace Digital Platform and Long Division Techniques": 1 + "3rd Grade Mathematics: Excelling in Multiplication and Division with Mathspace Digital Platform and Skip Counting": 1 + "3rd Grade Mathematics: Improving Multiplication and Division Skills with Mathspace Digital Platform and Fractional Relationships": 1 + "3rd Grade Mathematics: Advancing Multiplication and Division Competency with Mathspace Digital Platform and Number Line Strategy": 1 + "3rd Grade Mathematics: Enhancing Multiplication and Division Proficiency with Mathspace Digital Platform and Area Model Technique": 1 + "3rd Grade Mathematics: Strengthening Multiplication and Division Understanding with Mathspace Digital Platform and Factor Trees": 1 + "3rd Grade Mathematics: Boosting Multiplication and Division with Mathspace Digital Platform and Decomposition Method": 1 + "3rd Grade Mathematics: Building Multiplication and Division Confidence with Mathspace Digital Platform and the Distributive Property.": 1 + "2nd Grade Mathematics: Understanding Angles with Protractors": 1 + "2nd Grade Mathematics: Exploring Basic Geometry using Interactive Whiteboards": 1 + "2nd Grade Mathematics: Discovering Shapes through Augmented Reality": 1 + "2nd Grade Mathematics: Learning Area and Perimeter with Measuring Tapes": 1 + "2nd Grade Mathematics: Grasping Geometry with Graphing Calculators": 1 + "2nd Grade Mathematics: Introduction to Polygons using 3D Printers": 1 + "2nd Grade Mathematics: Interactive Study of Lines and Curves on Tablets": 1 + "2nd Grade Mathematics: Navigating Basic Geometry with Geometric Compasses": 1 + "2nd Grade Mathematics: Unfolding the World of Geometry with Origami": 1 + "2nd Grade Mathematics: Journey through Basic Geometry using Virtual Reality.": 1 + "5th Grade Science: Understanding Volcanoes and Tectonic Plate Theory in Earth Sciences": 1 + "5th Grade Science: Analyzing Volcanic Eruptions Using Seismic Technology in Earth Sciences": 1 + "5th Grade Science: Unveiling Volcanoes through Microscopic Mineral Examination in Earth Sciences": 1 + "5th Grade Science: Decoding Volcanoes: A Deep Dive into Lava Chemistry in Earth Sciences": 1 + "5th Grade Science: Understanding Volcanoes through 3D Modelling in Earth Sciences": 1 + "5th Grade Science: The Role of Volcanoes in Earth’s Climate: A Study in Earth Sciences": 1 + "5th Grade Science: Exploring Volcanoes Using Geographic Information Systems (GIS) in Earth Sciences": 1 + "5th Grade Science: Understanding Volcanoes: A Study of Volcanic Rocks and Minerals in Earth Sciences": 1 + "5th Grade Science: Investigating Volcanoes: An Introduction to Pyroclastic Flows in Earth Sciences": 1 + "5th Grade Science: Understanding Volcanoes through Satellite Imaging in Earth Sciences": 1 + "1st Grade Social Studies: Exploring Democracy with Minecraft: Education Edition in Community Interactions": 1 + "1st Grade Social Studies: Understanding Democracy through Kahoot Quizzes in Community Interactions": 1 + "1st Grade Social Studies: Learning Democracy using Google Classrooms for Community Discussions": 1 + "1st Grade Social Studies: Studying Democracy through Seesaw Activities in Community Interactions": 1 + "1st Grade Social Studies: Democracy Lessons with Interactive Smartboards in Community Interactions": 1 + "1st Grade Social Studies: Exploring Democracy using VR Field Trips in Community Interactions": 1 + "1st Grade Social Studies: Learning Democracy through ClassDojo Games in Community Interactions": 1 + "1st Grade Social Studies: Democracy Education using EdPuzzle Video Lessons in Community Interactions": 1 + "1st Grade Social Studies: Understanding Democracy with Nearpod Presentations in Community Interactions": 1 + "1st Grade Social Studies: Democracy Insights through Flipgrid Video Discussions in Community Interactions": 1 + "7th Grade English Language Arts: Using PowerPoint for Enhanced Understanding of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Exploring Personification and Similes in Poetry through Video Clips": 1 + "7th Grade English Language Arts: Utilizing Digital Storytelling Tools for In-depth Analysis of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Understanding Personification and Similes in Poetry with Podcasts": 1 + "7th Grade English Language Arts: Incorporating Interactive Whiteboards for Studying Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Utilizing Virtual Reality for a Deep Dive into Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Enhancing Poetry Comprehension with Animations: Focus on Personification and Similes": 1 + "7th Grade English Language Arts: Using Smartboard Technology for Exploration of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Implementing Audiobooks for a Better Understanding of Personification and Similes in Poetry": 1 + "7th Grade English Language Arts: Utilizing Augmented Reality to Explore Personification and Similes in Poetry.": 1 + "3rd Grade Health: Exploring Dietary Guidelines through Interactive PowerPoint Lessons": 1 + "3rd Grade Health: Understanding Dietary Guidelines with Interactive Whiteboard Activities": 1 + "3rd Grade Health: Learning Dietary Guidelines through Virtual Reality Lessons": 1 + "3rd Grade Health: Dietary Guidelines Explored through Gamified Lessons": 1 + "3rd Grade Health: Understanding Dietary Guidelines through Tablet Based Interactive Lessons": 1 + "3rd Grade Health: Deciphering Dietary Guidelines through Augmented Reality Lessons": 1 + "3rd Grade Health: Dietary Guidelines Explained through Interactive Video Lessons": 1 + "3rd Grade Health: Understanding Dietary Guidelines through Webinar Lessons": 1 + "3rd Grade Health: Dietary Guidelines Explored through Interactive Digital Quizzes": 1 + "3rd Grade Health: Understanding Dietary Guidelines through AI-Powered Interactive Lessons": 1 + "6th Grade Social Studies: The Ancient Civilizations, Democracy, and Exploration of Papyrus Writing": 1 + "6th Grade Social Studies: An In-depth Study of Democracy in Ancient Civilizations through the Use of the Abacus": 1 + "6th Grade Social Studies: Democracy and Pyramids - A Closer Look at Ancient Egyptian Civilizations": 1 + "6th Grade Social Studies: The Ancient Civilizations, Democracy, and the Evolution of Wheel Technology": 1 + "6th Grade Social Studies: The Ancient Civilizations - Democracy and the Power of the Phalanx Formation": 1 + "6th Grade Social Studies: The Ancient Civilizations: Unraveling Democracy through Sun Dial Timekeeping": 1 + "6th Grade Social Studies: The Ancient Civilizations and Democracy - Learning through the Lens of Bronze Metallurgy": 1 + "6th Grade Social Studies: The Impact of Aqueducts on Democracy in Ancient Civilizations": 1 + "6th Grade Social Studies: The Ancient Civilizations, Democracy, and the Importance of the Plow": 1 + "6th Grade Social Studies: The Ancient Civilizations - Democracy and the Significance of Pottery Making": 1 + "Physical Education for 7th Graders: Enhancing Balance Beam Techniques with Stability Balls and Resistance Bands": 1 + "Incorporating Flexibility Training in Balance Beam Exercises using Stability Balls and Heart Rate Monitors in 7th Grade Physical Education": 1 + "Physical Education for 7th Graders: Utilizing Stability Balls and Digital Fitness Trackers in Balance Beam Flexibility Training ": 1 + "7th Grade Physical Education: Infusing Balance Beam Techniques with Stability Balls and Yoga Principles": 1 + "Physical Education for 7th Graders: Integrating Flexibility Training in Balance Beam Exercises using Stability Balls and Pilates Methods": 1 + "7th Grade Physical Education: Fostering Balance Beam Skills with Stability Balls and Virtual Reality Training": 1 + "Physical Education for 7th Graders: Enhancing Balance Beam Techniques with Stability Balls and Bodyweight Exercises": 1 + "7th Grade Physical Education: Incorporating Stability Balls and Myofascial Release Techniques in Balance Beam Flexibility Training": 1 + "Physical Education for 7th Graders: Balance Beam Flexibility Training with Stability Balls and Kinesiology Concepts": 1 + "7th Grade Physical Education: Building Balance Beam Skills with Stability Balls and Proprioceptive Training Techniques": 1 + "3rd Grade English: Exploring Character Development through Storytelling using Google Read and Write & Storyboard That": 1 + "3rd Grade English: Journey through Story Arcs using Google Read and Write & Adobe Spark": 1 + "3rd Grade English: Delving into Themes with Storytelling using Google Read and Write & Padlet": 1 + "3rd Grade English: Journey through Storytelling using Google Read and Write & Comic Strip Creations": 1 + "3rd Grade English: Exploring Narrative Styles through Storytelling using Google Read and Write & Flipgrid": 1 + "3rd Grade English: Journey into Plot Structures using Google Read and Write & Book Creator ": 1 + "3rd Grade English: Understanding Dialogue through Storytelling using Google Read and Write & Scribble Press": 1 + "3rd Grade English: Journey through Storytelling using Google Read and Write & Interactive Whiteboard": 1 + "3rd Grade English: Exploring Conflict and Resolution through Storytelling using Google Read and Write & Popplet": 1 + "3rd Grade English: Journey into Imagery using Google Read and Write & Prezi": 1 + "6th Grade English: Basic Essay Writing using Microsoft Word": 1 + "6th Grade English: Basic Essay Writing with Focus on Grammarly Tool ": 1 + "6th Grade English: Incorporating Mind Maps in Basic Essay Writing": 1 + "6th Grade English: Basic Essay Writing with Google Docs Collaboration ": 1 + "6th Grade English: Exploring Thesis Statements in Basic Essay Writing": 1 + "6th Grade English: Basic Essay Writing using Hemingway App for Clarity ": 1 + "6th Grade English: Basic Essay Writing - Introduction to MLA Formatting": 1 + "6th Grade English: Basic Essay Writing - Utilizing Online Thesaurus": 1 + "6th Grade English: Basic Essay Writing - Emphasizing on Peer Review ": 1 + "6th Grade English: Basic Essay Writing - Using Transition Words.": 1 + "6th Grade Language Arts: Enhancing Writing Techniques with Storyboarding": 1 + "6th Grade Language Arts: Developing Narrative Skills using Microsoft Word": 1 + "6th Grade Language Arts: Fostering Creativity with Google Docs": 1 + "6th Grade Language Arts: Improving Sentence Structure with Grammarly": 1 + "6th Grade Language Arts: Enhancing Writing Techniques using Thesaurus Tools": 1 + "6th Grade Language Arts: Building Vocabulary with Flashcards": 1 + "6th Grade Language Arts: Strengthening Composition Skills using Mind Mapping Software": 1 + "6th Grade Language Arts: Enhancing Writing Techniques with Peer Reviewing": 1 + "6th Grade Language Arts: Mastering Punctuation using Online Quizzes": 1 + "6th Grade Language Arts: Boosting Creativity with Digital Storytelling Apps": 1 + "9th Grade Social Studies: The Impact of Ironclad Technology in Submarine Warfare during the American Civil War": 1 + "9th Grade Social Studies: The Role of the H.L. Hunley Submarine in the American Civil War": 1 + "9th Grade Social Studies: The Tactical Advancements of Torpedo Technology in the American Civil War": 1 + "9th Grade Social Studies: The Influence of Submarine Warfare on Naval Strategies in the American Civil War": 1 + "9th Grade Social Studies: The Evolution and Impact of Submersible Vessels in the American Civil War": 1 + "9th Grade Social Studies: The Role of Underwater Mines in Submarine Warfare during the American Civil War": 1 + "9th Grade Social Studies: The Introduction and Effect of Periscope Technology in the American Civil War": 1 + "9th Grade Social Studies: The Significance of the USS Alligator in Submarine Warfare during the American Civil War": 1 + "9th Grade Social Studies: The Role of Ballast Tanks in Submarine Warfare during the American Civil War": 1 + "9th Grade Social Studies: The Revolutionary Use of Diving Bells in Submarine Warfare during the American Civil War": 1 + "3rd Grade Science: Exploring Human Anatomy with 3D Models using Virtual Reality": 1 + "3rd Grade Science: Exploring Human Anatomy with 3D Models and Augmented Reality": 1 + "3rd Grade Science: Understanding the Circulatory System through 3D Models": 1 + "3rd Grade Science: Exploring Human Anatomy with 3D Models – A Focus on the Digestive System": 1 + "3rd Grade Science: Using 3D Printing to Create Models for Human Anatomy Study": 1 + "3rd Grade Science: Exploring Human Anatomy with Interactive 3D Software": 1 + "3rd Grade Science: Dive into the Skeletal System with 3D Models": 1 + "3rd Grade Science: Exploring Human Anatomy with 3D Models using Holographic Display": 1 + "3rd Grade Science: Learning Neurology through 3D Models": 1 + "3rd Grade Science: Exploring Human Anatomy – A Journey through the Respiratory System with 3D Models": 1 + "4th Grade Science: Exploring Ecosystems through NASA’s Landsat Satellite Imagery using TensorFlow Machine Learning": 1 + "4th Grade Science: Understanding Ecosystems with Google Earth Engine Satellite Images via Scikit-Learn Machine Learning ": 1 + "4th Grade Science: Analysing Ecosystems with Satellite Imagery using Python and Machine Learning": 1 + "4th Grade Science: Decoding Ecosystems with Sentinel-2 Satellite Data using Deep Learning Concepts": 1 + "4th Grade Science: Investigating Ecosystems with Remote Sensing Satellite Imagery using Machine Learning in MATLAB": 1 + "4th Grade Science: Dissecting Ecosystems with Geospatial Satellite Imagery using Keras Machine Learning": 1 + "4th Grade Science: Examining Ecosystems with NOAA Satellite Imagery using PyTorch Machine Learning": 1 + "4th Grade Science: Interpreting Ecosystems using Satellite Imagery and Machine Learning with OpenCV": 1 + "4th Grade Science: Evaluating Ecosystems with GIS Satellite Images using Microsoft Azure Machine Learning": 1 + "4th Grade Science: Surveying Ecosystems with WorldView Satellite Imagery utilizing R Programming and Machine Learning": 1 + "9th Grade Health: Decoding Proteins, Fats, and Carbohydrates through Nutritional Biochemistry using Mass Spectrometry with a Focus on BMR Calculation": 1 + "9th Grade Health: Analyzing Macronutrients through Advanced Nutritional Biochemistry using Food Tracking Apps with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients in Food through Nutritional Biochemistry using Calorimetry with a Focus on BMR Calculation": 1 + "9th Grade Health: Macronutrient Breakdown using Nutritional Biochemistry and Chromatography Techniques with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Nutri-Genomics with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Microscopic Analysis with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using 3D Food Printing Technology with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Metabolomics with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Spectrophotometry with a Focus on BMR Calculation": 1 + "9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Bioinformatics with a Focus on BMR Calculation.": 1 + "6th Grade Language Arts: The Fundamentals of Grammar and Punctuation using Microsoft Word": 1 + "6th Grade Language Arts: Exploring Grammar and Punctuation through Google Docs": 1 + "6th Grade Language Arts: Grammar and Punctuation Mastery with Grammarly": 1 + "6th Grade Language Arts: An In-depth Look at Grammar and Punctuation with Interactive Whiteboards": 1 + "6th Grade Language Arts: Enhancing Grammar and Punctuation Skills through iPad Apps": 1 + "6th Grade Language Arts: Grammar and Punctuation Analysis with Quizlet": 1 + "6th Grade Language Arts: Harnessing Grammar and Punctuation Concepts using Digital Flashcards": 1 + "6th Grade Language Arts: Learning Grammar and Punctuation through Virtual Reality Technology": 1 + "6th Grade Language Arts: Grammar and Punctuation Enhancement with the Use of Smartboards": 1 + "6th Grade Language Arts: Grammar and Punctuation Studies using Augmented Reality Tools.": 1 + "Ninth Grade History: The American Revolution - An Exploration of the Culper Spy Ring’s Techniques": 1 + "The American Revolution: The Detailed Use of Invisible Ink in Revolutionary Espionage": 1 + "The Art of Deception: Cipher Codes in the American Revolution for Ninth Grade History": 1 + "Ninth Grade History: The Role of Dead Drops in the American Revolution’s Espionage": 1 + "The American Revolution: Exploring the Revolutionary War’s Use of Pigeon Post": 1 + "Decoding History: The Use of Code Books in the Espionage of the American Revolution": 1 + "Secret Messages: The Revolutionary War’s Use of Mask Letters - A Ninth Grade History Course": 1 + "The American Revolution: The Role of the Signal Lantern in Revolutionary War Espionage": 1 + "Ninth Grade History: The Revolutionary War’s Espionage Techniques - Focusing on the Spyglass": 1 + "The Hidden Language: The Use of Native American Code Talkers in the American Revolution.": 1 + "6th Grade Science: Exploring Interactions in Earth’s Ecosystems Using Virtual Reality Simulations": 1 + "6th Grade Science: Studying Earth’s Ecosystems Interactions Through Python Based Computer Simulations": 1 + "6th Grade Science: Understanding Earth’s Ecosystems Interactions through 3D Computer Modelling ": 1 + "6th Grade Science: Analysing Interactions in Earth’s Ecosystems using GIS Computer Simulations": 1 + "6th Grade Science: Interactions in Earth’s Ecosystems - A Deep Dive into Biogeochemical Cycles using Computer Simulations": 1 + "6th Grade Science: Insights into Earth’s Ecosystems Interactions through Augmented Reality Simulations": 1 + "6th Grade Science: Investigating Earth’s Ecosystems Interactions using AI-Enhanced Computer Simulations": 1 + "6th Grade Science: Earth’s Ecosystems Interactions and Climate Change Analysis using Computer Simulations": 1 + "6th Grade Science: Examining Species Interactions in Earth’s Ecosystems using Data-Driven Computer Simulations": 1 + "6th Grade Science: Interactions in Earth’s Ecosystems - An Approach to Food Chain Dynamics using Computer Simulations.": 1 + "8th Grade History: Revolutionary War Era - Analyzing the Role of Cannon Technology in Naval Warfare": 1 + "The Role of the Sextant in Naval Navigation during the Revolutionary War: A Detailed Study for 8th Graders": 1 + "8th Grade History: Revolutionary War Era - Impact of Shipbuilding Techniques on Naval Warfare": 1 + "Exploring the Use of Flintlock Muskets in Revolutionary War Naval Battles: An 8th Grade Perspective": 1 + "8th Grade History: Revolutionary War Era - The Introduction of Frigates in Naval Warfare": 1 + "Revolutionary War Era: Focus on the Role of Naval Blockades in 8th Grade History": 1 + "8th Grade History: Revolutionary War - The Impact of Advanced Rigging Systems in Naval Warfare": 1 + "The Importance of Signal Flags in Revolutionary War Naval Communications: An 8th Grade Study": 1 + "8th Grade History: Revolutionary War Era - The Tactical Use of Privateers in Naval Warfare": 1 + "Revolutionary War Era: Decoding the Role of the Spyglass in Naval Strategy for 8th Grade History": 1 + "Exploring Robert Frost’s ’Out, Out’ Tone through the Lens of Metaphor in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet, YouTube, and Prezi for Multimedia Narrations": 1 + "Dissecting the Tone of Robert Frost’s ’Out, Out’ in 7th Grade Language Arts with eBeam Interactive Whiteboards, Padlet, YouTube, and Google Docs for Collaborative Analysis": 1 + "Unpacking the Tone of Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Applying Socratic Dialogue using eBeam Interactive Whiteboards, Padlet, YouTube, and Skype": 1 + "Analyzing Robert Frost’s ’Out, Out’ Tone through Symbolism in 7th Grade Language Arts: Incorporating eBeam Interactive Whiteboards, Padlet, YouTube, and Kahoot for Interactive Quizzes": 1 + "Deciphering Tone in Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Utilizing eBeam Interactive Whiteboards, Padlet, YouTube, and Audacity for Audio Recordings": 1 + "Interpreting the Tone of Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Leveraging eBeam Interactive Whiteboards, Padlet, YouTube, and Quizlet for Vocabulary Building": 1 + "Discerning the Tone of Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Deploying eBeam Interactive Whiteboards, Padlet, YouTube, and Flipgrid for Video Discussions": 1 + "Evaluating Tone in Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet, YouTube, and Prezi for Dynamic Presentations": 1 + "Studying Tone in Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet, YouTube, and Google Slides for Group Projects": 1 + "Deconstructing the Tone of Robert Frost’s ’Out, Out’ in 7th Grade Language Arts: Using eBeam Interactive Whiteboards, Padlet, YouTube, and Adobe Spark for Creative Illustrations.": 1 + "1st Grade Art: Discovering Colors through Digital Painting using Adobe Fresco": 1 + "1st Grade Art: Unveiling Colors through Digital Painting with Procreate": 1 + "1st Grade Art: Exploring Colors with Microsoft Paint in Digital Art": 1 + "1st Grade Art: Learning Colors through Digital Painting on iPad": 1 + "1st Grade Art: Understanding Colors via Digital Painting with Wacom Tablet": 1 + "1st Grade Art: Exploring Colors through Digital Painting using Photoshop": 1 + "1st Grade Art: Discovering Color Theory through Digital Painting in Corel Painter": 1 + "1st Grade Art: Learning Color Harmony through Digital Painting using Autodesk SketchBook": 1 + "1st Grade Art: Uncovering Colors through Digital Painting on Chromebook": 1 + "1st Grade Art: Decoding Colors with Digital Painting using PaintTool SAI": 1 + "5th Grade Science: Exploring Arctic Habitats using Infrared Thermal Imaging, GIS Mapping Techniques and Leica Geosystems": 1 + "5th Grade Science: Investigating Arctic Habitats with Infrared Thermal Imaging, GIS Mapping Techniques, and Drone Technology": 1 + "5th Grade Science: Understanding Arctic Habitats with Infrared Thermal Imaging, GIS Mapping Techniques, and Satellite Imagery": 1 + "5th Grade Science: Decoding Arctic Habitats using Infrared Thermal Imaging, GIS Mapping Techniques, and Cartographic Projection Concepts": 1 + "5th Grade Science: Studying Arctic Habitats through Infrared Thermal Imaging, GIS Mapping Techniques, and LIDAR Technology": 1 + "5th Grade Science: Examining Arctic Habitats with Infrared Thermal Imaging, GIS Mapping Techniques, and Remote Sensing Devices": 1 + "5th Grade Science: Observing Arctic Habitats using Infrared Thermal Imaging, GIS Mapping Techniques, and GPS Tracking Systems": 1 + "5th Grade Science: Investigating Arctic Habitats with Infrared Thermal Imaging, GIS Mapping Techniques, and Geospatial Analysis Concepts": 1 + "5th Grade Science: Analyzing Arctic Habitats using Infrared Thermal Imaging, GIS Mapping Techniques, and Digital Elevation Models": 1 + "5th Grade Science: Unveiling Arctic Habitats through Infrared Thermal Imaging, GIS Mapping Techniques, and Photogrammetry Methods.": 1 + "9th Grade Health: Understanding Macronutrients with MyFitnessPal - A Nutrient Analysis Tool ": 1 + "Nutritional Science in 9th Grade: Using FitBit’s Food Tracking Feature to Study Macronutrients ": 1 + "Nutrition and Wellness: A Detailed Study of Macronutrients Using Cronometer in 9th Grade Health ": 1 + "9th Grade Health: Macronutrient Breakdown with Lose It! - An App-based Nutrient Analysis": 1 + "9th Grade Health: Exploring Macronutrients with the Atkins Carb Tracker ": 1 + "Nutrition and Wellness: A Study of Macronutrients Using the NutriBase Software in 9th Grade ": 1 + "9th Grade Health: Macronutrient Mastery Through MyNetDiary - A Nutrient Analysis Application ": 1 + "Nutrition and Wellness: Diving into Macronutrients with MyPlate Calorie Tracker in 9th Grade Health": 1 + "9th Grade Health: A Deep Dive into Macronutrients using Fooducate’s Nutrient Analysis Technology ": 1 + "9th Grade Health: Macronutrient Investigation with the NutriCalc Plus Software.": 1 + "5th Grade Mathematics: Mastering Fractions with Graphical Models": 1 + "5th Grade Mathematics: Introduction to Fractions using Fraction Bars ": 1 + "5th Grade Mathematics: Learning Fractions through Interactive Whiteboard Activities ": 1 + "5th Grade Mathematics: Exploring Fundamentals of Fractions with Digital Manipulatives": 1 + "5th Grade Mathematics: Understanding Fractions with Fraction Circles ": 1 + "5th Grade Mathematics: Fraction Fundamentals and the Number Line Method ": 1 + "5th Grade Mathematics: Discovering Fractions with Virtual Reality Technology ": 1 + "5th Grade Mathematics: Fraction Basics using iPads and Educational Apps ": 1 + "5th Grade Mathematics: The Art of Fractions with Geometric Shapes": 1 + "5th Grade Mathematics: Simplifying Fractions using the Division Method": 1 + "Understanding Time Dilemmas: A 7th Grade Language Arts Course on Time Travel using The Grandfather Paradox and Quantum Theory": 1 + "Scrutinizing Temporal Paradoxes: A 7th Grade Language Arts Course on Time Travel with Application of Wormholes and The Grandfather Paradox": 1 + "Investigating Contradictions in Time Loops: A 7th Grade Course Using The Grandfather Paradox and The Tesseract Concept": 1 + "Probing Time Complexity: A 7th Grade Language Arts Course on Time Travel Using The Grandfather Paradox and The Multiverse Theory": 1 + "Deciphering Time Loop Enigmas: A 7th Grade Language Arts Course Utilizing The Grandfather Paradox and The Theory of Relativity": 1 + "Unfolding Time Conundrums: A 7th Grade Language Arts Course on Time Travel Incorporating The Grandfather Paradox and The String Theory": 1 + "Examining Temporal Inconsistencies: A 7th Grade Language Arts Course on Time Travel Using The Grandfather Paradox and The Black Hole Information Paradox": 1 + "Dissecting Time Paradoxes: A 7th Grade Language Arts Course Applying The Grandfather Paradox and The Concept of Quantum Entanglement": 1 + "Unraveling Time Loop Mysteries: A 7th Grade Language Arts Course on Time Travel Utilizing The Grandfather Paradox and The Theory of Quantum Superposition": 1 + "Decoding Time Paradoxes: A 7th Grade Language Arts Course on Time Travel Exploring The Grandfather Paradox and The Concept of Quantum Tunneling.": 1 + "6th Grade Music: Exploring Beethoven’s Symphonies with Symphony Orchestra and Piano": 1 + "6th Grade Music: A Deep Dive into Mozart’s Compositions Using Symphony Orchestra and Violin": 1 + "6th Grade Music: Understanding Bach’s Music through Symphony Orchestra and Harpsichord": 1 + "6th Grade Music: Symphony Orchestra and Trombones in Wagner’s Operas": 1 + "6th Grade Music: Discovering Tchaikovsky’s Ballets with Symphony Orchestra and Clarinet": 1 + "6th Grade Music: A Lesson on Vivaldi’s Concertos Using Symphony Orchestra and Flute": 1 + "6th Grade Music: Journey through Haydn’s Symphonies with Symphony Orchestra and Timpani": 1 + "6th Grade Music: An Introduction to Handel’s Oratorios with Symphony Orchestra and Organ": 1 + "6th Grade Music: Study of Chopin’s Nocturnes with Symphony Orchestra and Piano": 1 + "6th Grade Music: Exploring Schubert’s Lieder Using Symphony Orchestra and Viola": 1 + "2nd Grade Mathematics: Mastering Multiplication with Funbrain Digital Flashcards": 1 + "2nd Grade Math: Learning Multiplication using Quizlet Interactive Flashcards": 1 + "2nd Grade Mathematics: Enhancing Multiplication Skills with Kahoot! Online Flashcards": 1 + "2nd Grade Math: Exploring Multiplication through Anki Digital Flashcards": 1 + "2nd Grade Mathematics: Boosting Multiplication Proficiency with Cram.com Flashcards": 1 + "2nd Grade Math: Multiplication Mastery using StudyStack Digital Flashcards": 1 + "2nd Grade Mathematics: Learning Multiplication via Brainscape’s Adaptive Flashcards ": 1 + "2nd Grade Math: Multiplication Practice with Chegg Prep Digital Flashcards": 1 + "2nd Grade Mathematics: Understanding Multiplication through ProProfs Quiz Maker’s Flashcards": 1 + "2nd Grade Math: Multiplication Skill Enhancement with Flippity’s Interactive Flashcards": 1 + "Advanced 7th Grade Chemistry: Exploring Acid-Base Reactions with pH Meters & Pipettes": 1 + "Advanced 7th Grade Chemistry: Experimenting with Combustion Reactions using Bunsen Burners & Calorimeters": 1 + "Advanced 7th Grade Chemistry: Studying Chemical Bonding using Molecular Models & Pipettes": 1 + "Advanced 7th Grade Chemistry: Investigating Gas Laws with Syringes, Pipettes & Bunsen Burners": 1 + "Advanced 7th Grade Chemistry: Introducing Stoichiometry: Bunsen Burners, Pipettes & Molar Ratios": 1 + "Advanced 7th Grade Chemistry: Understanding Periodic Trends with Electron Configuration & Pipettes": 1 + "Advanced 7th Grade Chemistry: Experimenting with Chemical Reactions using Spectrophotometers & Bunsen Burners": 1 + "Advanced 7th Grade Chemistry: Analyzing Chemical Equilibrium through Le Chatelier’s Principle & Pipettes": 1 + "Advanced 7th Grade Chemistry: Exploring Thermodynamics with Bunsen Burners, Pipettes & Hess’s Law": 1 + "Advanced 7th Grade Chemistry: Investigating Reaction Rates using Pipettes, Bunsen Burners & Collision Theory": 1 + "3rd Grade Social Studies: Exploring Asian Cultures through Storytelling": 1 + "3rd Grade Social Studies: Introduction to World Cultures using Interactive Maps": 1 + "3rd Grade Social Studies: Understanding African Traditions through Music": 1 + "3rd Grade Social Studies: Discovering European Culture with Virtual Reality ": 1 + "3rd Grade Social Studies: Introduction to World Cultures using TimeLapse Videos": 1 + "3rd Grade Social Studies: Immersion in Middle Eastern Custom using Role Play": 1 + "3rd Grade Social Studies: Introduction to World Cultures through Artistic Expression": 1 + "3rd Grade Social Studies: The Ancient Civilizations of South America using 3D Modeling": 1 + "3rd Grade Social Studies: Introduction to World Cultures with Augmented Reality ": 1 + "3rd Grade Social Studies: Unveiling North American Indigenous Cultures through Story Circles": 1 + "7th Grade Language Arts: Utilizing Hadoop and Hive for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Leveraging Hadoop and Spark for Efficient Data Mining in Exploring Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Implementing MapReduce in Apache Hadoop for Data Mining to Access Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Using Apache Hadoop and Pig Latin for Data Mining in Accessing Environmental Literature Online": 1 + "7th Grade Language Arts: Leveraging Hadoop and HBase for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Exploiting YARN in Apache Hadoop for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Leveraging Hadoop with Flume for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Utilizing Hadoop and Oozie for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Applying Hadoop and Sqoop for Data Mining to Access Environmental Literature via Internet Archive": 1 + "7th Grade Language Arts: Leveraging Hadoop and ZooKeeper for Data Mining in Accessing Environmental Literature via Internet Archive": 1 + "8th Grade Music: Utilizing Studio One MIDI Sequencers, Ableton Live and Sibelius Notation Software for Understanding Wagner’s Orchestration Through Harmonic Analysis and Cadence Recognition": 1 + "8th Grade Music: Exploring Wagner’s Orchestration Through Harmonic Analysis Using Studio One MIDI Sequencers, Ableton Live, and Audacity Audio Editor": 1 + "8th Grade Music: Deepening Understanding of Wagner’s Orchestration Through Harmonic Analysis and Chromaticism with Studio One MIDI Sequencers and Ableton Live": 1 + "8th Grade Music: Utilizing Studio One MIDI Sequencers, Ableton Live and FL Studio for Thorough Harmonic Analysis of Wagner’s Orchestration": 1 + "8th Grade Music: Employing Studio One MIDI Sequencers, Ableton Live, and Virtual DJ for Wagner’s Orchestration Analysis Through Harmonic Structures": 1 + "8th Grade Music: Leveraging Studio One MIDI Sequencers, Ableton Live, and ProTools for Understanding Wagner’s Orchestration Through Harmonic Analysis and Frequency Modulation": 1 + "8th Grade Music: Studio One MIDI Sequencers and Ableton Live in Practice for Harmonic Analysis of Wagner’s Orchestration and Exploring Time Signatures": 1 + "8th Grade Music: Application of Studio One MIDI Sequencers, Ableton Live, and Soundtrap in Mastering Wagner’s Orchestration Through Harmonic Analysis": 1 + "8th Grade Music: Unboxing Wagner’s Orchestration Through Harmonic Analysis via Studio One MIDI Sequencers, Ableton Live, and Logic Pro X": 1 + "8th Grade Music: Understanding Wagner’s Orchestration Through Harmonic Analysis and Tonality Using Studio One MIDI Sequencers and Ableton Live.": 1 + "7th Grade Art: Mastering Charcoal Drawing Techniques with Compressed Charcoal and Erasers": 1 + "7th Grade Art: Exploring Shading Techniques in Charcoal Drawing with Compressed Charcoal": 1 + "Art in 7th Grade: Introduction to Charcoal Drawing Techniques using Vine Charcoal": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques with Compressed Charcoal and Blending Stumps": 1 + "7th Grade Art: Discovering Charcoal Drawing Techniques with Compressed Charcoal and Charcoal Pencils": 1 + "7th Grade Art: Exploring Compressed Charcoal in Landscape Drawing Techniques": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques using Compressed Charcoal and Fixatives": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques with Compressed Charcoal and Kneaded Erasers": 1 + "7th Grade Art: Portrait Drawing Techniques using Compressed Charcoal": 1 + "7th Grade Art: Introduction to Charcoal Drawing Techniques with Compressed Charcoal and Sandpaper.": 1 + "2nd Grade Mathematics: Mastery of Fractions using Interactive Online Fraction Tiles and SMART Board ": 1 + "Advanced 2nd Grade Mathematics: Improving Fraction Proficiency with Online Tiles and LeapFrog Epic Academy Edition": 1 + "2nd Grade Mathematics: Fraction Proficiency through Virtual Fraction Tiles and Kindle Fire Kids Edition": 1 + "Learning Fractions in 2nd Grade: Using Interactive Online Fraction Tiles and Raspberry Pi Technology": 1 + "2nd Grade Mathematics: Fraction Proficiency with Interactive Online Fraction Tiles and Promethean ActivPanel": 1 + "2nd Grade Math: Boosting Fraction Skills with Online Fraction Tiles and Python Programming": 1 + "2nd Grade Mathematics: Fraction Proficiency with Interactive Online Fraction Tiles and iPad Pro": 1 + "2nd Grade Mathematics: Fraction Proficiency through Interactive Fraction Tiles and Scratch Coding": 1 + "Advanced 2nd Grade Mathematics: Fraction Proficiency with Online Tiles and Lego Mindstorms EV3": 1 + "2nd Grade Mathematics: Fraction Proficiency with Interactive Online Fraction Tiles and Touchscreen Displays using Google Classroom.": 1 + "1st Grade Mathematics: Exploring Addition and Subtraction with Interactive Pattern Blocks and Scratch Coding": 1 + "1st Grade Mathematics: Unveiling Geometry Concepts with Pattern Blocks and Python Coding Basics": 1 + "1st Grade Mathematics: Mastering Fractions with Tangram Pattern Blocks and JavaScript Coding": 1 + "1st Grade Mathematics: Discovering Number Patterns with Colorful Pattern Blocks and Blockly Coding Basics": 1 + "1st Grade Mathematics: Learning Measurement with Pattern Blocks and Swift Playground Coding": 1 + "1st Grade Mathematics: Understanding Symmetry with Geometric Pattern Blocks and HTML Coding Basics": 1 + "1st Grade Mathematics: Investigating Probability with Pattern Blocks and Ruby Coding Fundamentals": 1 + "1st Grade Mathematics: Grasping Multiplication with Pattern Blocks and Python Turtle Coding Basics": 1 + "1st Grade Mathematics: Exploring Mathematical Operations with Pattern Blocks and C++ Coding Basics": 1 + "1st Grade Mathematics: Unraveling Decimal Concepts with Pattern Blocks and Scratch Jr. Coding.": 1 + "Physical Science for Kindergarteners: Exploring Sound Waves with a Tuning Fork": 1 + "Learning about Vibrations: Physical Science for Kindergarteners with Auditory Bells": 1 + "Physical Science for Kindergarteners: Exploring the Five Senses with a Sound Frequency Generator": 1 + "The Magic of Sound: Physical Science for Kindergarteners with a Resonance Bowl": 1 + "Physical Science for Kindergarteners: Understanding Echoes with Sound Reflection Experiments": 1 + "Exploring the Five Senses: Physical Science for Kindergarteners with a Theremin": 1 + "Physical Science for Kindergarteners: Bringing Sound to Life with a Soundboard": 1 + "Discovering Sound: Physical Science for Kindergarteners with a Oscilloscope": 1 + "Physical Science for Kindergarteners: Exploring the Five Senses with a Whisper Dish": 1 + "Teaching Sound: Physical Science for Kindergarteners with a Doppler Effect Demonstrator.": 1 + "8th Grade Social Studies: Exploring World Cultures through Podcast Listening Skills with Spotify": 1 + "8th Grade Social Studies: Discovering World Cultures with Podcast Listening & Audible Techniques": 1 + "8th Grade Social Studies: Learning World Cultures via Podcasts and SoundCloud Strategies": 1 + "8th Grade Social Studies: Unraveling Global Cultures with Podcast Listening Skills using Apple Podcasts": 1 + "8th Grade Social Studies: Introduction to World Cultures through Podcast Listening & Google Podcasts Tool": 1 + "8th Grade Social Studies: Engaging with World Cultures via Podcast Listening and Podcast Addict Techniques": 1 + "8th Grade Social Studies: Understanding Global Cultures via Podcast Listening & Anchor.fm Usage": 1 + "8th Grade Social Studies: Discovering World Cultures with Podcast Listening Skills & Pocket Casts Technology": 1 + "8th Grade Social Studies: Exploring International Cultures with Podcast Listening Skills & Castbox Strategies": 1 + "8th Grade Social Studies: Uncovering World Cultures through Podcast Listening & iHeartRadio Techniques": 1 + "3rd Grade English: Using Blender and Adobe Photoshop in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Virtual Reality in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and 3D Printing Technology in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Digital Storyboarding in Multicultural Storytelling": 1 + "3rd Grade English: Integrating Blender and Animation Principles in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Augmented Reality in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Python Coding in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Green Screen Technology in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Motion Capture in Multicultural Storytelling": 1 + "3rd Grade English: Using Blender and Interactive Narratives in Multicultural Storytelling": 1 + "6th Grade Language Arts: Mastering Grammar through Interactive Whiteboard Lessons": 1 + "6th Grade Language Arts: Fundamentals of Grammar using Google Classroom": 1 + "6th Grade Language Arts: Exploring Grammar with Kahoot Games": 1 + "6th Grade Language Arts: Learning Grammar through Educational Podcasts": 1 + "6th Grade Language Arts: Grammar Fundamentals using Digital Flashcards": 1 + "6th Grade Language Arts: Grammar Expertise through PowerPoint Presentations": 1 + "6th Grade Language Arts: Grammar Basics Explored through Virtual Reality": 1 + "6th Grade Language Arts: Enhancing Grammar Skills with Interactive Software": 1 + "6th Grade Language Arts: Understanding Grammar through Animation Tools": 1 + "6th Grade Language Arts: Grammar Mastery with Online Quizzes": 1 + "1st Grade Mathematics: Exploring Length Measurement with Pattern Blocks and Swift Playground Coding on iPads": 1 + "1st Grade Mathematics: Learning Area Measurement with Pattern Blocks and Swift Playground Coding using Smart Boards": 1 + "1st Grade Mathematics: Understanding Volume Measurement with Pattern Blocks and Swift Playground Coding on Chromebooks": 1 + "1st Grade Mathematics: Learning Measurement with Pattern Blocks and Swift Playground Coding through Virtual Reality": 1 + "1st Grade Mathematics: Discovering Perimeter Measurement with Pattern Blocks and Swift Playground Coding using Interactive Whiteboards": 1 + "1st Grade Mathematics: Grasping Weight Measurement with Pattern Blocks and Swift Playground Coding on MAC Desktops": 1 + "1st Grade Mathematics: Studying Time Measurement with Pattern Blocks and Swift Playground Coding using Tablets": 1 + "1st Grade Mathematics: Learning Measurement with Pattern Blocks and Swift Playground Coding: Introducing the Concept of Scaling": 1 + "1st Grade Mathematics: Mastering Distance Measurement with Pattern Blocks and Swift Playground Coding on Windows Laptops": 1 + "1st Grade Mathematics: Learning Measurement with Pattern Blocks and Swift Playground Coding: Incorporating the Concept of Ratios.": 1 + "2nd Grade Mathematics: Enhancing Addition Skills with TouchMath Program Using SmartBoard Technology": 1 + "Boosting 2nd Grade Addition Skills: An Exploration of TouchMath Program through Intuitive iPads": 1 + "2nd Grade Mathematics: TouchMath Program & Virtual Manipulatives for Addition Skills Enhancement": 1 + "Advancing Addition Skills: A Study of 2nd Grade Mathematics Using TouchMath Program & Microsoft Surface Tablets": 1 + "2nd Grade Mathematics: Boosting Addition Skills with TouchMath Program and Digital Flashcards on Interactive Whiteboards": 1 + "Interactive Whiteboards and TouchMath Program: A Comprehensive Approach to 2nd Grade Mathematics Addition Skills ": 1 + "Enhancing 2nd Grade Addition Skills: A Deep Dive into TouchMath Program using Google Classroom": 1 + "2nd Grade Mathematics: Fostering Addition Skills through TouchMath Program and Virtual Reality Technology": 1 + "2nd Grade Addition Mastery: A TouchMath Program Approach via Interactive Whiteboards and Educational Apps": 1 + "TouchMath Program in Action: A Focus on 2nd Grade Addition Skills using Interactive Whiteboards and Digital Worksheets.": 1 + "7th Grade Language Arts: The Influence of H.G. Wells’ Time Machine on Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Role of TARDIS in Chrono-Spatial Relativity in Doctor Who’s Multiverse Theory": 1 + "7th Grade Language Arts: The Impact of Quantum Mechanics on Chrono-Spatial Relativity in Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Influence of Chrono-Spatial Relativity on Multiverse Theory in Star Trek’s Warp Drive Technology": 1 + "7th Grade Language Arts: The Role of Einstein’s Theory of Relativity in Time Travel Science Fiction’s Multiverse Theory": 1 + "7th Grade Language Arts: The Influence of Chrono-Spatial Relativity on Multiverse Theory in Back to the Future’s Flux Capacitor Concept": 1 + "7th Grade Language Arts: The Use of Black Holes in Chrono-Spatial Relativity and Multiverse Theory in Interstellar’s Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Impact of Quantum Entanglement on Chrono-Spatial Relativity in Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: Analysing the Influence of Time Paradoxes on Chrono-Spatial Relativity and Multiverse Theory in Time Travel Science Fiction": 1 + "7th Grade Language Arts: The Influence of Chrono-Spatial Relativity on Multiverse Theory in Time Travel Science Fiction using Stephen Hawking’s Wormhole Theory.": 1 + "5th Grade Physical Education: Implementing Suunto’s Training Load Pro and Fitbit Trackers in Football": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Garmin Vivoactive in Basketball Training": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Heart Rate Monitoring in Soccer": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Polar Vantage V in Volleyball Conditioning": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and GPS Tracking in Cross Country": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Apple Watch in Baseball Training": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and MyZone Belts in Team Sports Conditioning": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Sleep Tracking in Athlete Recovery": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and WHOOP Strap in Swim Training": 1 + "5th Grade Physical Education: Suunto’s Training Load Pro and Motion Tracking in Gymnastics Training": 1 + "5th Grade Science: Investigating Forest Ecosystems with DJI Phantom Drones": 1 + "5th Grade Science: Studying Forest Ecosystems using Drone-Based LIDAR Technology": 1 + "5th Grade Science: Exploring Forest Ecosystems through Thermal Imaging Drones": 1 + "5th Grade Science: Forest Ecosystems Exploration with Drones and GIS Technology": 1 + "5th Grade Science: Understanding Forest Ecosystems using Drone Photography Techniques": 1 + "5th Grade Science: Discovering Forest Ecosystems with Drone-Based Spectral Imaging": 1 + "5th Grade Science: Navigating Forest Ecosystems using GPS-enabled Drones": 1 + "5th Grade Science: Analysing Forest Ecosystems using Drone Data and Machine Learning ": 1 + "5th Grade Science: Exploring Forest Ecosystems through Drone Technology and Augmented Reality": 1 + "5th Grade Science: Uncovering Forest Ecosystems with Drone Mapping and 3D Modelling Techniques": 1 + "6th Grade Music: Exploring Beethoven’s Symphony No.9 on the Piano Forte with Finale Notation Software and MIDI Keyboards": 1 + "6th Grade Music: Understanding Beethoven’s Symphony No.9 through the Piano Forte and Audio Mixing with Finale Notation Software": 1 + "6th Grade Music: Discovering Beethoven’s Symphony No.9 on the Piano Forte using Finale Notation Software and Digital Sound Processing": 1 + "6th Grade Music: Analyzing Beethoven’s Symphony No.9 on the Piano Forte with Finale Notation Software and the Concept of Harmonics": 1 + "6th Grade Music: Interpreting Beethoven’s Symphony No.9 on the Piano Forte using Finale Notation Software and Melodic Contour Analysis": 1 + "6th Grade Music: Exploring Beethoven’s Symphony No.9 via Piano Forte and Finale Notation Software with the Introduction to Rhythm Patterns": 1 + "6th Grade Music: Studying Beethoven’s Symphony No.9 on the Piano Forte using Finale Notation Software and the Principle of Dynamics": 1 + "6th Grade Music: Learning Beethoven’s Symphony No.9 through Piano Forte with Finale Notation Software and Use of Chord Progression Techniques": 1 + "6th Grade Music: Diving into Beethoven’s Symphony No.9 on the Piano Forte using Finale Notation Software and the Theory of Musical Scales": 1 + "6th Grade Music: Discovering Beethoven’s Symphony No.9 on Piano Forte using Finale Notation Software and the Application of Tempo Changes": 1 + "2nd Grade Language Arts: Enhancing Understanding of Adjectives and Adverbs with Toon Boom Animation and Wacom Graphic Tablets": 1 + "2nd Grade Language Arts: Interactive Learning of Adjectives and Adverbs via Powtoon Videos and Huion Graphic Tablets": 1 + "2nd Grade Language Arts: Using Adobe Animate and XP-Pen Graphic Tablets for Mastering Adjectives and Adverbs ": 1 + "2nd Grade Language Arts: Unveiling the World of Adjectives and Adverbs with Flipbook Animation and Samsung Galaxy Tab": 1 + "2nd Grade Language Arts: Exploring Adjectives and Adverbs through Animated Videos on Smartboards and iPad Pro Graphic Tablet": 1 + "2nd Grade Language Arts: Discovering Adjectives and Adverbs using Stop Motion Animation and Microsoft Surface Pro": 1 + "2nd Grade Language Arts: Learning Adjectives and Adverbs with Vyond Animation and Lenovo Yoga Book Graphic Tablet": 1 + "2nd Grade Language Arts: Advancing in Adjectives and Adverbs with Moovly Animated Videos and Google Pixel Slate": 1 + "2nd Grade Language Arts: Studying Adjectives and Adverbs through Blender Animation and Asus ZenPad Graphic Tablet": 1 + "2nd Grade Language Arts: Exploring Adjectives and Adverbs via Pixar’s RenderMan Animation and Amazon Fire HD 10 Graphic Tablet.": 1 + "2nd Grade Science: Detailed Study of Toad Life Cycles using Laser Pointer Dissections and Digital Microscopes": 1 + "2nd Grade Science: Examination of Toad Life Cycles with Laser Pointer Dissections and iPad Applications": 1 + "2nd Grade Science: Practical Understanding of Toad Metamorphosis with Laser Pointer Dissections and Microscopic Imaging": 1 + "2nd Grade Science: In-depth Exploration of Toad Life Cycles with Laser Pointer Dissections and 3D Modeling Software": 1 + "2nd Grade Science: Comprehensive Analysis of Toad Life Cycles using Laser Pointer Dissections and Interactive Whiteboard Technology": 1 + "2nd Grade Science: Toad Life Cycles Study with Laser Pointer Dissections and Augmented Reality Experiences": 1 + "2nd Grade Science: Analyzing Toad Life Cycles through Laser Pointer Dissections and Virtual Reality Technology": 1 + "2nd Grade Science: Investigation of Toad Life Cycles using Laser Pointer Dissections and DNA Sequencing Techniques": 1 + "2nd Grade Science: Toad Life Cycles Examination using Laser Pointer Dissections and Thermal Imaging Technologies": 1 + "2nd Grade Science: Hands-on Learning of Toad Life Cycles with Laser Pointer Dissections and Electron Microscope Observations": 1 + "2nd Grade Physical Education: Mastering Straight Drive Batting Techniques in Cricket with Virtual Reality Simulation": 1 + "2nd Grade Physical Education: Enhancing Pull Shot Skills in Cricket using 3D Cricket Simulator Technology": 1 + "2nd Grade Physical Education: Improving Cover Drive Techniques in Cricket with Digital Batting Cages": 1 + "2nd Grade Physical Education: Cricket Batting Techniques - The Art of Sweep Shot using Interactive Cricket Simulators": 1 + "2nd Grade Physical Education: Perfecting the Hook Shot in Cricket with Advanced Motion Sensor Technology": 1 + "2nd Grade Physical Education: Cricket Batting Techniques - Understanding Square Cut with VR Simulation Tools": 1 + "2nd Grade Physical Education: Focusing on Leg Glance Techniques in Cricket using High-Tech Batting Simulators": 1 + "2nd Grade Physical Education: Advancing Front Foot Drive Skills in Cricket with Real-Time Cricket Simulation": 1 + "2nd Grade Physical Education: Cricket Batting Techniques - The Reverse Sweep using Augmented Reality Technology": 1 + "2nd Grade Physical Education: Mastering Back Foot Defense in Cricket with Next-Gen Motion Capture Simulators.": 1 + "Exploring Pizzicato Techniques: Utilizing Bow Speed and Pressure in 9th Grade Violin Lessons": 1 + "The Role of Rosin in String Friction: A Detailed Study for 9th Grade Cello Players": 1 + "Sonic Visualiser and the Art of Tuning: An In-depth Guide for 9th Grade Guitarists": 1 + "Unraveling the Symphony of Sounds: A Comprehensive Course on Harmonics for 9th Grade Violinists": 1 + "From Pizzicato to Sonic Visualiser: A Detailed Study of String Vibrations for 9th Grade Bassists": 1 + "Resonating Strings: The Science and Sound of Rosin in 9th Grade Viola Lessons": 1 + "The Physics of Pizzicato: A Comprehensive Study with Waveform Analysis for 9th Grade Music Students": 1 + "Sonic Visualiser in Practice: Enhancing Tuning Skills in 9th Grade Stringed Instrument Lessons": 1 + "The Melody of Strings: An Advanced Course on Rosin Application and its Auditory Effects for 9th Graders": 1 + "The Art of Acoustics: A Comprehensive Guide on Spectrogram Analysis using Sonic Visualiser for 9th Grade Musicians": 1 + "1st Grade Music: Mastering Rhythm with Hand Drums, Metronomes, and Tambourines": 1 + "1st Grade Music: Discovering Melody Basics with Hand Drums, Metronomes, and Piano": 1 + "1st Grade Music: Exploring Rhythm and Melody Using Hand Drums, Metronomes, and Music Software": 1 + "1st Grade Music: Learning Rhythm and Melody Basics with Hand Drums, Metronomes, and Interactive Music Apps": 1 + "1st Grade Music: Enhancing Rhythm Skills with Hand Drums, Metronomes, and Maracas": 1 + "1st Grade Music: Understanding Melody Basics with Hand Drums, Metronomes, and Digital Audio Workstations": 1 + "1st Grade Music: Applying Rhythm Techniques with Hand Drums, Metronomes, and Music Theory Concepts": 1 + "1st Grade Music: Acquiring Melody Basics with Hand Drums, Metronomes, and Musical Notations": 1 + "1st Grade Music: Practising Rhythm and Melody Basics with Hand Drums, Metronomes, and Beat Making Software ": 1 + "1st Grade Music: Introducing Rhythm and Melody Basics with Hand Drums, Metronomes, and Music Production Tools": 1 + "6th Grade Art: Exploring Adobe Illustrator for Color Theory and Mixing in Vector Graphics": 1 + "Discovering Color Theory and Vector Graphics with CorelDRAW in 6th Grade Art": 1 + "6th Grade Art: Harnessing the Power of Photoshop for Color Mixing in Vector Graphics": 1 + "Mastering Gradients: A CorelDRAW approach to Color Theory in 6th Grade Art": 1 + "6th Grade Art: Color Theory and Mixing through Vector Graphics using Adobe Photoshop Tools": 1 + "Implementing Inkscape in 6th Grade Art for Understanding Color Theory and Vector Graphics": 1 + "6th Grade Art: Learning Color Theory and Vector Graphics with GIMP": 1 + "6th Grade Art: Exploring Color Theory and Gradient Mesh Tool in Adobe Illustrator": 1 + "Applying Color Theory in Digital Art: A 6th Grade Vector Graphics Course using CorelDRAW": 1 + "6th Grade Art: Unveiling the Magic of Color Mixing and Vector Graphics with Adobe Photoshop.": 1 + "4th Grade Language Arts: Enhancing Vocabulary through Crossword Puzzles using Google Classroom and Google Docs": 1 + "Building Vocabulary in 4th Grade Language Arts through Interactive Crossword Puzzles on Google Classroom with Google Forms": 1 + "4th Grade Language Arts: Utilizing Google Slides for Vocabulary Enhancement through Crossword Puzzles on Google Classroom": 1 + "4th Grade Language Arts: Improving Vocabulary with Crossword Puzzles using Google Classroom and Google Sheets": 1 + "4th Grade Language Arts: Advancing Vocabulary through Crossword Puzzles with Google Classroom and Virtual Reality Tools": 1 + "4th Grade Language Arts: Google Classroom-based Crossword Puzzles for Vocabulary Enrichment using Kahoot": 1 + "4th Grade Language Arts: Google Classroom and Google Jamboard for Vocabulary Building through Crossword Puzzles": 1 + "Vocabulary Development in 4th Grade Language Arts through Crossword Puzzles on Google Classroom using Interactive Whiteboards": 1 + "4th Grade Language Arts: Strengthening Vocabulary with Google Classroom and Padlet through Crossword Puzzles": 1 + "4th Grade Language Arts: Vocabulary Enhancement through Crossword Puzzles on Google Classroom using Screen Sharing Tools.": 1 + "6th Grade Mathematics: Introduction to Geometry with Compass and Straightedge": 1 + "6th Grade Mathematics: Exploring Geometry Basics through Pythagoras’ Theorem": 1 + "6th Grade Mathematics: Geometry Basics with the Use of Protractors": 1 + "6th Grade Mathematics: Understanding Geometry Basics through Geometric Transformations": 1 + "6th Grade Mathematics: Geometry Basics using Geogebra": 1 + "6th Grade Mathematics: Geometry Basics - An Introduction to Angles": 1 + "6th Grade Mathematics: Geometry Basics with 3D Modeling Tools": 1 + "6th Grade Mathematics: Geometry Basics - Focusing on Triangles and Quadrilaterals": 1 + "6th Grade Mathematics: Geometry Basics - Exploring Circles and Polygons": 1 + "6th Grade Mathematics: Geometry Basics using Interactive Whiteboard Tools": 1 + "8th Grade History: The Renaissance Era: The Inception of Double-entry Bookkeeping: The Role of Abacus in Early European Accounting": 1 + "The Renaissance Era in 8th Grade History: The Introduction of Arabic Numerals and Ledger Books in European Accounting": 1 + "8th Grade History: The Renaissance Era: The Evolution of Double-entry Bookkeeping: The Influence of Arabic Numerals and Calculating Machines in European Accounting": 1 + "8th Grade History: Double-entry Bookkeeping during The Renaissance Era: The Impact of Arabic Numerals and Papyrus Scrolls in European Accounting": 1 + "8th Grade History: The Renaissance Era: The Emergence of Double-entry Bookkeeping: The Role of Arabic Numerals in Coinage and European Accounting": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping: The Introduction of Arabic Numerals and Quill Pens in European Accounting": 1 + "The Renaissance Era in 8th Grade History: Double-entry Bookkeeping and The Introduction of Arabic Numerals via Printing Press in European Accounting": 1 + "8th Grade History: The Renaissance Era: The Advent of Double-entry Bookkeeping: Arabic Numerals and Parchment in European Accounting": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping: The Introduction of Arabic Numerals and Sundials in European Accounting": 1 + "8th Grade History: The Renaissance Era: Double-entry Bookkeeping: The Introduction of Arabic Numerals and Astrolabes in European Accounting.": 1 + "Third Grade Social Studies: Utilizing Drones for Time-lapse Photography in Local Community and Government Studies": 1 + "Third Grade Social Studies: Exploring Local Community and Government Through Time-lapse Photography Using GoPro Cameras": 1 + "Third Grade Social Studies: The Role of Adobe After Effects in Time-lapse Photography of Local Community and Government ": 1 + "Third Grade Social Studies: Local Community and Government - A Study Through Time-lapse Photography with Smartphone Apps": 1 + "Third Grade Social Studies: Understanding Local Community and Government Through Time-lapse Photography and Lightroom Editing": 1 + "Third Grade Social Studies: Local Community and Government - A Study Through Time-lapse Photography Using 360 Degree Cameras": 1 + "Third Grade Social Studies: Exploring Local Community and Government through Time-lapse Photography and Drone Mapping ": 1 + "Third Grade Social Studies: Using Solar-powered Cameras for Time-lapse Photography in Local Community and Government Studies": 1 + "Third Grade Social Studies: Local Community and Government - A Study Through Time-lapse Photography and Digital Storytelling": 1 + "Third Grade Social Studies: Local Community and Government - A Study Through Time-lapse Photography Using Augmented Reality.": 1 + "Exploring Roller Coaster Physics with Accelerometers: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and 3D Modeling.": 1 + "Unraveling the Science of Roller Coasters with Lego Models: A 7th Grade Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Lego Structures.": 1 + "Roller Coaster Physics and Energy Conservation: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Energy Transfer Concepts.": 1 + "Investigating Roller Coaster Physics using Raspberry Pi: A 7th Grade Science Study with Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Raspberry Pi Programming.": 1 + "Roller Coaster Physics and the Role of Centrifugal Force: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Centrifugal Force Principles.": 1 + "Understanding Roller Coaster Physics through Newton’s Second Law: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Force-Mass-Acceleration Relationship.": 1 + "Roller Coaster Physics and the Impact of Friction: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Frictional Force Experiments.": 1 + "Exploring Roller Coaster Physics with Virtual Reality: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and VR Simulation.": 1 + "Roller Coaster Physics: A Deep Dive into Potential and Kinetic Energy: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Energy Conversion Concepts.": 1 + "Investigating Roller Coaster Physics with CAD Software: A 7th Grade Science Study Using Interactive Physics, Velocity-Time Graphs, Arduino Microcontrollers, and Computer-Aided Design.": 1 + "7th Grade English: Exploring Metaphors in Poetry Using Trello and Google Docs for Classroom Collaboration": 1 + "7th Grade English: Understanding Rhyme Schemes in Poetry through Trello and Zoom for Virtual Classroom Collaboration": 1 + "7th Grade English: Studying Imagery in Poetry with Trello and Padlet for Online Classroom Collaboration": 1 + "7th Grade English: Analysing Symbolism in Poetry with Trello and Kahoot for Interactive Classroom Collaboration": 1 + "7th Grade English: Exploring Tone and Mood in Poetry Using Trello and PowerPoint for Classroom Presentations": 1 + "7th Grade English: Deciphering Poetic Devices using Trello and Quizlet for Classroom Learning": 1 + "7th Grade English: Mastering Sonnets with Trello and Google Slides for Classroom Collaboration": 1 + "7th Grade English: Delving into Free Verse Poetry with Trello and Prezi for Classroom Engagement": 1 + "7th Grade English: Unravelling Narrative Poetry Using Trello and Flipgrid for Classroom Interactions": 1 + "7th Grade English: Discovering the Power of Haikus with Trello and Microsoft Teams for Classroom Collaboration": 1 + "2nd Grade Environmental Studies: Plant Life Cycle through Microscopic Observation": 1 + "2nd Grade Environmental Studies: Exploring Plant Life Cycle with Time-Lapse Photography": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and Photosynthesis": 1 + "2nd Grade Environmental Studies: Plant Life Cycle Using Hydroponics": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and Seed Dispersal Mechanisms": 1 + "2nd Grade Environmental Studies: Plant Life Cycle - A Study with Botany Microscope": 1 + "2nd Grade Environmental Studies: Interactive Learning of Plant Life Cycle with Augmented Reality": 1 + "2nd Grade Environmental Studies: Plant Life Cycle and the Role of Pollinators": 1 + "2nd Grade Environmental Studies: Plant Life Cycle Analysis Using Growth Chambers": 1 + "2nd Grade Environmental Studies: Plant Life Cycle – Dissection and Examination of Seeds.": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations and the Innovation of Solar Calendars - A Deep Dive into the Sundial": 1 + "Constructing the Ancient World: Egypt’s Civilizations, Solar Calendars, and the Technology of Water Clocks": 1 + "Ancient Egyptian Innovations: Solar Calendars and the Art of Hieroglyphics ": 1 + "Sixth Grade Social Studies: Egypt’s Ancient Civilizations, Solar Calendars, and the Pyramids’ Alignment": 1 + "Understanding Ancient Egypt: Solar Calendars, Civilizations, and the Concept of Nilometers": 1 + "The Science of Time in Ancient Egypt: Solar Calendars, Civilizations, and the Clepsydra": 1 + "6th Grade Social Studies: Egypt’s Ancient Civilizations, Solar Calendars, and the Intricacies of Papyrus Making": 1 + "Ancient Civilizations and Solar Calendars: A Look into Egypt’s Obelisks": 1 + "Egypt’s Ancient Civilizations: From Solar Calendars to the Use of Simple Machines": 1 + "Solar Calendars and the Sphinx: A Journey into Egypt’s Ancient Civilizations for 6th Graders.": 1 + "Classical Music Composition with Vivaldi’s Concertos Using Ableton Live Sequencing Software: An 8th Grade Course ": 1 + "Introduction to Classical Music Composition with Vivaldi’s Concertos Using MIDI Keyboard: An 8th Grade Course ": 1 + "The Art of Classical Composing with Vivaldi’s Concertos and Audacity: 8th Grade Course in Sound Engineering ": 1 + "Classical Music Composition with Vivaldi’s Concertos: An 8th Grade Course in Music Theory Using Sibelius Software ": 1 + "Exploring Vivaldi’s Concertos through Digital Composition: An 8th Grade Course Using GarageBand ": 1 + "Music Sequencing with Vivaldi’s Concertos: An 8th Grade Course Utilizing Logic Pro X ": 1 + "Classical Music Composition with Vivaldi’s Concertos Using Pro Tools: An 8th Grade Course in Sound Editing ": 1 + "Vivaldi’s Concertos and Cubase: An 8th Grade Course in Classical Music Composition and Audio Production": 1 + "An 8th Grade Course on Classical Music Composition with Vivaldi’s Concertos Using FL Studio ": 1 + "Classical Music Composition with Vivaldi’s Concertos: An 8th Grade Course in Sound Design Using Reaper Software": 1 + "Exploring the Effects of Furrow Irrigation on Plant Life Cycles with pH Soil Tester: Implementing Drip Irrigation for 2nd Grade Environmental Studies": 1 + "Soil Moisture Sensors and Furrow Irrigation: Impact on Plant Life and Possible Use of Satellite Imaging: 2nd Grade Environmental Studies": 1 + "Understanding the Use of Capacitive Soil Moisture Sensors in Furrow Irrigation and Plant Life Cycle: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation Effects on Plant Life: Application of Remote Sensing Techniques for Water Management: 2nd Grade Environmental Studies": 1 + "Using Soil pH Meters in Furrow Irrigation: Impact on Plant Life and the Role of Thermal Imaging: 2nd Grade Environmental Studies": 1 + "Water Management in Furrow Irrigation: Use of Soil pH Meters and Machine Learning for Optimal Irrigation: 2nd Grade Environmental Studies": 1 + "The Role of Ground Penetrating Radar in Furrow Irrigation: Impact on Plant Life Cycle and Water Management: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation and Plant Life Cycle: The Use of Soil pH Meters and Smart Watering Systems: 2nd Grade Environmental Studies": 1 + "The Impact of Furrow Irrigation on Plant Life: Employing Soil pH Meters and Drone Technology for Water Management: 2nd Grade Environmental Studies": 1 + "Furrow Irrigation Effects on Plant Life: Using Soil pH Meters and Wireless Sensor Networks with GIS for Water Management: 2nd Grade Environmental Studies.": 1 + "6th Grade History: The Role & Significance of Ancient Chinese Pagodas in Society with a Focus on the Use of Dou Gong Bracketing Systems in Ming Dynasty & the Invention of the Compass": 1 + "6th Grade History: Ancient Chinese Pagodas’ Influence on Society & the Application of Dou Gong Bracketing Systems in Ming Dynasty Architecture Using Traditional Chinese Calligraphy ": 1 + "6th Grade History: Ancient Chinese Pagodas in Society & The Impact of Dou Gong Bracketing Techniques on The Ming Dynasty’s Porcelain Production": 1 + "6th Grade History: Exploring Ancient Chinese Pagodas, Dou Gong Bracketing Systems in Ming Dynasty & The Evolution of Gunpowder": 1 + "6th Grade History: The Cultural Significance of Ancient Chinese Pagodas & Use of Dou Gong Bracketing Systems in Ming Dynasty’s Paper Making Technology ": 1 + "6th Grade History: Ancient Chinese Pagodas in Society & The Role of Dou Gong Bracketing Systems in Ming Dynasty’s Silk Weaving Techniques ": 1 + "6th Grade History: The Influence of Ancient Chinese Pagodas & Dou Gong Bracketing Systems in Ming Dynasty on the Development of Printing Press": 1 + "6th Grade History: The Impact of Ancient Chinese Pagodas on Society & Use of Dou Gong Bracketing Systems in the Construction of Ming Dynasty’s Great Wall": 1 + "6th Grade History: Ancient Chinese Pagodas & Dou Gong Bracketing Systems in Ming Dynasty: Influence on The Invention of Seismograph ": 1 + "6th Grade History: The Role of Ancient Chinese Pagodas & Dou Gong Bracketing Systems in Ming Dynasty in the Development of Astronomical Clocks.": 1 + "2nd Grade Language Arts: Mastering Pronouns with Disney’s Toontastic 3D Animation Software": 1 + "2nd Grade Language Arts: Interactive Pronoun Learning with PowToon Animation": 1 + "2nd Grade Language Arts: Exploring Pronouns with DigiCel FlipBook Animation": 1 + "2nd Grade Language Arts: Understanding Pronouns using Adobe Character Animator Software": 1 + "2nd Grade Language Arts: Grasping Pronouns through Animated Videos using Pencil2D Animation Software": 1 + "2nd Grade Language Arts: Learning Pronouns with Stop Motion Studio Pro Animation": 1 + "2nd Grade Language Arts: Pronoun Education with Moho (Anime Studio) Pro Animation Software": 1 + "2nd Grade Language Arts: Pronoun Proficiency with Synfig Studio Animation Software": 1 + "2nd Grade Language Arts: Navigating Pronouns using Blender 3D Animation Software": 1 + "2nd Grade Language Arts: Pronoun Discovery with Pixar’s RenderMan Animation Software.": 1 + "6th Grade Mathematics: Exploring Fraction Equivalence with Manipulative Blocks, Number Line Technique & Grid Paper Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Utilizing Fraction Tiles for Understanding Fraction Equivalence with Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence Through Area Models & Number Line Technique Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Fraction Equivalence with Manipulative Blocks & Number Line Technique Using Casio fx-9750GII Graphing Calculator and Protractor": 1 + "6th Grade Mathematics: Discovering Fraction Equivalence with Manipulative Blocks, Number Line Technique & Bar Graphs Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence with Manipulative Blocks & Number Line Technique Using Casio fx-9750GII Graphing Calculator and Set Theory": 1 + "6th Grade Mathematics: Fractional Equivalence with Manipulative Blocks & Number Line Technique Using Casio fx-9750GII Graphing Calculator and Pie Charts": 1 + "6th Grade Mathematics: Grasping Fraction Equivalence with Manipulative Blocks, Number Line Technique & Venn Diagrams Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Fraction Equivalence with Manipulative Blocks, Number Line Technique & Digital Fraction Bars Using Casio fx-9750GII Graphing Calculator": 1 + "6th Grade Mathematics: Understanding Fraction Equivalence with Manipulative Blocks & Number Line Technique Using Casio fx-9750GII Graphing Calculator and Interactive Whiteboard Technology.": 1 + "7th Grade Science: Exploring Newton’s Laws in Roller Coaster Physics": 1 + "7th Grade Science: The Role of Kinetic Energy in Roller Coaster Mechanics": 1 + "7th Grade Science: Utilizing AutoCAD in Designing Roller Coasters": 1 + "7th Grade Science: Understanding Force and Motion in Roller Coasters": 1 + "7th Grade Science: Introduction to Friction in Roller Coaster Engineering": 1 + "7th Grade Science: Understanding Gravity’s Impact on Roller Coaster Functionality": 1 + "7th Grade Science: Exploring Roller Coaster Physics with Virtual Reality Technology": 1 + "7th Grade Science: The Role of Computer Simulations in Roller Coaster Design ": 1 + "7th Grade Science: An Investigation into Roller Coaster Safety Measures": 1 + "7th Grade Science: The Application of Potential Energy in Roller Coaster Dynamics": 1 + "6th Grade Science: The Scientific Revolution and the Development of the Telescope": 1 + "6th Grade Science: The Scientific Revolution: Understanding the Microscope’s Evolution": 1 + "6th Grade Science: The Evolution of the Sextant and the Role of the Compass": 1 + "6th Grade Science: The Scientific Revolution and the Invention of the Barometer": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant and Chronometer": 1 + "6th Grade Science: The Impact of the Printing Press on the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: The Advent of the Mechanical Clock": 1 + "6th Grade Science: The Scientific Revolution and the Emergence of Calculus": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant and the Astrolabe": 1 + "6th Grade Science: The Influence of the Thermometer on the Scientific Revolution.": 1 + "Unraveling Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Significance of the Hieroglyphic Script": 1 + "A Deep Dive into Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Emergence of Bronze Tools and the Concept of Afterlife": 1 + "Decoding Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools, and the Role of the Pharaoh": 1 + "Understanding Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Construction of Pyramids": 1 + "Discovering Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Art of Mummification": 1 + "Exploring Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Practice of Agriculture": 1 + "Delving into Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Development of Papyrus": 1 + "Revealing Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Evolution of Numerical Systems": 1 + "Uncovering Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Use of Chariots": 1 + "Investigating Egypt’s Ancient Civilizations in 6th Grade Social Studies: The Solar Calendars, The Introduction of Bronze Tools and the Invention of the Water Clock.": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations using Long Division": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations and Number Lines": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations through Visual Models": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations and the Area Model": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations using Fraction Bars": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations on Digital Platforms": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations using Fraction Circles": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations and the Role of Reciprocal": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations using Manipulatives": 1 + "4th Grade Mathematics: Dividing Fractions with Inverse Operations on Interactive Whiteboards": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Concept of Magnetic Fields": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and Paper Making": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Development of Gunpowder": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Invention of Printing": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Creation of Porcelain": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Evolution of Silk Production": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Discovery of Tea Cultivation": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Origin of Acupuncture": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Introduction of the Abacus": 1 + "2nd Grade History: Ancient Chinese Inventions: The Compass and the Birth of Calligraphy": 1 + "8th Grade Art: The Basics of Sketching with Graphite: Exploring Line Quality": 1 + "8th Grade Art: Charcoal Sketching 101: Exploring Line Quality": 1 + "8th Grade Art: Exploring Line Quality through Digital Sketching": 1 + "8th Grade Art: The Basics of Sketching using Procreate: Exploring Line Quality": 1 + "8th Grade Art: Sketching Basics: Exploring Line Quality with Pencil": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality with Pen and Ink": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality through Perspective Drawing": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality using Adobe Illustrator": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality with Pastels": 1 + "8th Grade Art: The Basics of Sketching: Exploring Line Quality through 3D Modeling": 1 + "4th Grade Language Arts: Using Bubbl.us for Mind Mapping Techniques in Plot Structure Analysis to Discover Story Elements": 1 + "4th Grade Language Arts: Implementing Lucidchart in Mind Mapping Techniques for Analyzing Plot Structures and Identifying Story Elements": 1 + "4th Grade Language Arts: Leveraging Google Drawings for Mind Mapping in Plot Structure Analysis to Uncover Story Elements": 1 + "4th Grade Language Arts: Applying MindMeister in Mind Mapping Techniques for Plot Structure Analysis to Discover Story Elements": 1 + "4th Grade Language Arts: Using Canva for Mind Mapping Techniques in Analysing Plot Structures to Identify Story Elements": 1 + "4th Grade Language Arts: Applying Coggle in Mind Mapping Techniques for Plot Structure Analysis to Discover Story Elements": 1 + "4th Grade Language Arts: Implementing Mindomo for Mind Mapping Techniques in Plot Structure Analysis to Unearth Story Elements": 1 + "4th Grade Language Arts: Using Microsoft Whiteboard in Mind Mapping Techniques for Plot Structure Analysis to Discover Story Elements": 1 + "4th Grade Language Arts: Applying XMind in Mind Mapping Techniques for Analysis of Plot Structures to Discover Story Elements": 1 + "4th Grade Language Arts: Leveraging Mind42 in Mind Mapping Techniques for Plot Structure Analysis to Identify Story Elements": 1 + "3rd Grade Physical Education: Enhancing Coordination with Pogo Sticks and Balance Beams through Interactive Games": 1 + "3rd Grade Physical Education: Improving Coordination with Pogo Sticks and Video-Based Training in Balance Games": 1 + "3rd Grade Physical Education: Using Pogo Sticks and VR Simulations for Improved Coordination and Balance Games": 1 + "3rd Grade Physical Education: Enhancing Coordination with Pogo Sticks and Fitness Trackers in Balance Games": 1 + "3rd Grade Physical Education: Advanced Coordination Training with Pogo Sticks and Kinect Motion Sensing in Balance Games": 1 + "3rd Grade Physical Education: Incorporating Pogo Sticks and Stability Balls for Coordination and Balance Games": 1 + "3rd Grade Physical Education: Enhancing Coordination with Pogo Sticks and Smart Watches in Balance Games": 1 + "3rd Grade Physical Education: Using Pogo Sticks and the Concept of Center of Gravity for Enhanced Balance Games": 1 + "3rd Grade Physical Education: Interactive Pogo Stick Sessions using Augmented Reality for Enhanced Coordination and Balance Games": 1 + "3rd Grade Physical Education: Pogo Stick Mastery and Coordination Improvement through Heart Rate Monitoring and Balance Games": 1 + "8th Grade History: Revolutionary War Era - The Introduction of Bayonet Use and the Role of Flintlock Muskets": 1 + "Revolutionary War Era History: The Emergence of Bayonet Use and Cannon Technology in the 8th Grade Curriculum": 1 + "The Revolutionary War: Detailed Study of Bayonet Use and the Development of Breech-loading Firearms for 8th Graders": 1 + "8th Grade Exploration: Revolutionary War Era - Bayonet Use and the Concept of Guerilla Warfare": 1 + "The Revolutionary War: 8th Grade History - Bayonet Use and the Advent of Naval Warfare": 1 + "8th Grade History: Revolutionary War Tactics - Focus on Bayonet Use and the Introduction of the Long Rifle": 1 + "Revolutionary War Era: 8th Grade Study - Bayonet Use and the Significance of Blockade Strategy": 1 + "History for 8th Graders: Revolutionary War - Bayonet Use and the Evolution of Military Uniforms": 1 + "Revolutionary War Era: 8th Grade History - Bayonet Use and the Introduction of Field Fortification": 1 + "8th Grade History: Revolutionary War Era - The Impact of Bayonet Use and Horse-Driven Artillery.": 1 + "5th Grade English: Storytelling with PowerPoint: Basics and Applications": 1 + "5th Grade English: Storytelling with Adobe Spark: Basics and Applications": 1 + "5th Grade English: Storytelling with Digital Animation: Basics and Applications": 1 + "5th Grade English: Storytelling with Google Slides: Basics and Applications": 1 + "5th Grade English: Storytelling with Podcasting: Basics and Applications": 1 + "5th Grade English: Storytelling with Video Editing: Basics and Applications": 1 + "5th Grade English: Storytelling with Digital Art: Basics and Applications": 1 + "5th Grade English: Storytelling with Interactive eBooks: Basics and Applications": 1 + "5th Grade English: Storytelling with Virtual Reality: Basics and Applications": 1 + "5th Grade English: Storytelling with Augmented Reality: Basics and Applications": 1 + "5th Grade Science: Understanding Amazon Rainforest Ecosystems and Habitats Through Tinkercad 3D Modeling Technology": 1 + "5th Grade Science: Exploring Desert Biomes Using SketchUp Pro 3D Modeling Technology ": 1 + "5th Grade Science: Grasping Oceanic Habitats Through Virtual Reality and Blender 3D Modeling ": 1 + "5th Grade Science: Delving into Arctic Ecosystems With Unity 3D Modeling and Game Design ": 1 + "5th Grade Science: Understanding Savannah Habitats Through Minecraft Education Edition ": 1 + "5th Grade Science: Interpreting Pond Ecosystems Utilizing 3D Slash Modeling Software ": 1 + "5th Grade Science: Exploring Grassland Biomes through Roblox Studio 3D Modeling ": 1 + "5th Grade Science: Learning about Mountainous Habitats with AutoCAD 3D Design ": 1 + "5th Grade Science: Discovering Wetland Ecosystems through Fusion 360 3D Modeling Technology ": 1 + "5th Grade Science: Understanding Forest Biomes Using ZBrush 3D Sculpting and Modeling Technology": 1 + "6th Grade Mathematics: Exploring Angles in Geometry Using Protractors and Rulers": 1 + "6th Grade Mathematics: Introduction to Geometry using Protractors and Compasses": 1 + "6th Grade Mathematics: Basics of Geometry with the Use of Protractors and Graphing Calculators": 1 + "6th Grade Mathematics: Geometry Foundations using Protractors and Pythagorean Theorem": 1 + "6th Grade Mathematics: Geometry Basics with Protractors and the Concept of Pi": 1 + "6th Grade Mathematics: Understanding Polygons through Geometry using Protractors": 1 + "6th Grade Mathematics: Geometry Basics - Protractors, Angle Bisectors and Perpendicular Lines": 1 + "6th Grade Mathematics: Geometry Fundamentals with Protractors and Digital Drawing Tools": 1 + "6th Grade Mathematics: Geometry Basics with Protractors and Geometric Constructions": 1 + "6th Grade Mathematics: Learning about Circles in Geometry using Protractors and Radius Calculations": 1 + "1st Grade Physical Education: Introduction to Basic Gymnastics Using Balance Beams and Foam Mats": 1 + "1st Grade Physical Education: Exploring Gymnastics Through Balance Beams and Trampolines": 1 + "1st Grade Physical Education: Basic Gymnastics Using Balance Beams and the Concept of Body Control": 1 + "1st Grade Physical Education: Introduction to Gymnastics with Balance Beams and Safety Harnesses": 1 + "1st Grade Physical Education: Basic Gymnastics Using Balance Beams: Understanding the Principle of Balance": 1 + "1st Grade Physical Education: Introduction to Gymnastics: Mastering Balance Beams with Springboards": 1 + "1st Grade Physical Education: Basic Gymnastics Using Balance Beams and Physical Fitness Trackers": 1 + "1st Grade Physical Education: Jumpstart to Gymnastics Using Balance Beams and Tumbling Mats": 1 + "1st Grade Physical Education: Introduction to Gymnastics with Balance Beams and Interactive Video Learning": 1 + "1st Grade Physical Education: Basic Gymnastics Using Balance Beams: Incorporating the Concept of Momentum.": 1 + "2nd Grade Introduction to Algebra: Understanding Variables through Number Lines": 1 + "2nd Grade Introduction to Algebra: Exploring Variables with Virtual Manipulatives": 1 + "2nd Grade Introduction to Algebra: Understanding Variables using Interactive Whiteboards": 1 + "2nd Grade Introduction to Algebra: Grasping Variables through Visual Representation": 1 + "2nd Grade Introduction to Algebra: Decoding Variables with Algebra Tiles": 1 + "2nd Grade Introduction to Algebra: Understanding Variables through Coding": 1 + "2nd Grade Introduction to Algebra: Mastering Variables with iPad Apps": 1 + "2nd Grade Introduction to Algebra: Unraveling Variables through Math Games": 1 + "2nd Grade Introduction to Algebra: Understanding Variables using Math Puzzles": 1 + "2nd Grade Introduction to Algebra: Learning Variables with Abacus": 1 + "6th Grade Language Arts: Exploring Narrative Structures with Digital Storyboards, Adobe Spark, and Google Slides": 1 + "6th Grade Language Arts: Mastering Plot Development using Digital Storyboards, Adobe Spark and Prezi ": 1 + "6th Grade Language Arts: Understanding Characterization Through Digital Storyboards, Adobe Spark, and Scratch": 1 + "6th Grade Language Arts: Developing Setting and Themes with Digital Storyboards, Adobe Spark, and Canva": 1 + "6th Grade Language Arts: Enhancing Conflict Resolution Skills using Digital Storyboards, Adobe Spark, and PowToon": 1 + "6th Grade Language Arts: Building Suspense and Tension with Digital Storyboards, Adobe Spark, and Tiki-Toki": 1 + "6th Grade Language Arts: Immersing in Flashback and Foreshadowing using Digital Storyboards, Adobe Spark, and Animoto": 1 + "6th Grade Language Arts: Crafting Climactic Scenes with Digital Storyboards, Adobe Spark, and Microsoft PowerPoint": 1 + "6th Grade Language Arts: Deciphering Point of View using Digital Storyboards, Adobe Spark, and Voicethread": 1 + "6th Grade Language Arts: Uncovering Symbolism and Metaphors through Digital Storyboards, Adobe Spark, and Piktochart": 1 + "4th Grade Mathematics: Introduction to Fractions using Number Lines": 1 + "4th Grade Mathematics: Understanding Fractions through Fraction Bars": 1 + "4th Grade Mathematics: Simplifying Fractions with the Aid of Visual Models": 1 + "4th Grade Mathematics: Basics of Fractions using Interactive Whiteboards": 1 + "4th Grade Mathematics: Fraction Conversion using Fraction Wheels": 1 + "4th Grade Mathematics: Grasping Fractions with Fraction Tiles": 1 + "4th Grade Mathematics: Fraction Addition using Virtual Manipulatives": 1 + "4th Grade Mathematics: Fraction Subtraction with the Help of Software Apps": 1 + "4th Grade Mathematics: Multiplying Fractions using Digital Learning Tools": 1 + "4th Grade Mathematics: Dividing Fractions through Educational Games": 1 + "4th Grade Language Arts: Analyzing Poetry Metaphors using Minecraft Education Edition and Padlet": 1 + "4th Grade Language Arts: Discovering Poetry Metaphors with Minecraft Education Edition and Google Classroom": 1 + "4th Grade Language Arts: Studying Poetry Metaphors through Minecraft Education Edition and Interactive Whiteboards": 1 + "4th Grade Language Arts: Exploring Poetry Metaphors with Minecraft Education Edition and Digital Storytelling Tools": 1 + "4th Grade Language Arts: Unraveling Poetry Metaphors using Minecraft Education Edition and Virtual Reality": 1 + "4th Grade Language Arts: Inspecting Poetry Metaphors with Minecraft Education Edition and Socrative": 1 + "4th Grade Language Arts: Decoding Poetry Metaphors using Minecraft Education Edition and Flipgrid": 1 + "4th Grade Language Arts: Interpreting Poetry Metaphors with Minecraft Education Edition and Kahoot": 1 + "4th Grade Language Arts: Examining Poetry Metaphors through Minecraft Education Edition and Seesaw": 1 + "4th Grade Language Arts: Delving into Poetry Metaphors using Minecraft Education Edition and Edmodo": 1 + "1st Grade Spanish: Boosting Vocabulary with Anki App: 10 Unique Flashcard Techniques": 1 + "Mastering Spanish Vocabulary in 1st Grade with Google Translate: 10 Practical Translation Methods": 1 + "FluentU and 1st Grade Spanish: 10 Innovative Video-Based Vocabulary Learning Strategies": 1 + "1st Grade Spanish: Enhancing Vocabulary with Duolingo App: 10 Interactive Game-Based Techniques": 1 + "1st Grade Spanish: 10 Engaging Vocabulary Building Strategies with Quizlet’s Digital Flashcards": 1 + "1st Grade Spanish: 10 Effective Vocabulary Learning Tactics with Babbel App": 1 + "1st Grade Spanish: Vocabulary Enrichment with Memrise App: 10 Memory Boosting Techniques": 1 + "1st Grade Spanish: Vocabulary Expansion with Rosetta Stone: 10 Immersive Learning Methods": 1 + "1st Grade Spanish: 10 Creative Vocabulary Building Approaches with Pimsleur Language Programs": 1 + "1st Grade Spanish: 10 Unique Vocabulary Reinforcement Strategies using Tandem Language Exchange App.": 1 + "3rd Grade’s Guide to the Solar System: Exploring Mars with Google Earth Satellite Images and VR Technology": 1 + "3rd Grade’s Journey through the Solar System: A Deep Dive into Jupiter with Google Earth Satellite Images and Augmented Reality": 1 + "3rd Grade’s Exploration of the Solar System: Using Google Earth Satellite Images and Telescopic Observations": 1 + "3rd Grade’s Interactive Guide to the Solar System: Exploring Venus with Google Earth Satellite Images and 3D Printing Models": 1 + "3rd Grade’s In-Depth Study of the Solar System: Exploring Saturn’s Rings with Google Earth Satellite Images and Spectroscopy": 1 + "3rd Grade’s Guide to the Solar System: Delving into Neptune’s Mysteries with Google Earth Satellite Images and Infrared Imaging ": 1 + "3rd Grade’s Guide to the Solar System: Discovering Asteroid Belts with Google Earth Satellite Images and Radio Telescopes": 1 + "3rd Grade’s Guide to the Solar System: Navigating the Milky Way with Google Earth Satellite Images and Star Maps": 1 + "3rd Grade’s Guide to the Solar System: Uncovering the Secrets of Pluto with Google Earth Satellite Images and Space Probes": 1 + "3rd Grade’s Guide to the Solar System: A Space Voyage to Mercury with Google Earth Satellite Images and Hubble Telescope Observations.": 1 + "4th Grade Art: Discovering Renaissance Artists through Watercolor Techniques": 1 + "4th Grade Art: Studying Renaissance Artists using Digital Art Platforms ": 1 + "4th Grade Art: Learning about Renaissance Artists through Collage Creations": 1 + "4th Grade Art: Exploring Renaissance Artists with Acrylic Paints": 1 + "4th Grade Art: Delving into Renaissance Artists through Sculpture": 1 + "4th Grade Art: Understanding Renaissance Artists through Charcoal Drawing ": 1 + "4th Grade Art: Investigating Renaissance Artists via Oil Pastels": 1 + "4th Grade Art: Uncovering Renaissance Artists through Mixed Media Techniques": 1 + "4th Grade Art: Diving into Renaissance Artists with Printmaking Techniques ": 1 + "4th Grade Art: Unraveling Renaissance Artists using 3D Modeling Software": 1 + "6th Grade Music: Exploring Handel’s Oratorios with Symphony Orchestra and Organ through Music Notation Software": 1 + "6th Grade Music: An Introduction to Handel’s Oratorios with Symphony Orchestra and Organ using Audio Mixing Techniques": 1 + "6th Grade Music: Learning Handel’s Oratorios with Symphony Orchestra and Organ through the Lens of Music Theory": 1 + "6th Grade Music: Unpacking Handel’s Oratorios with Symphony Orchestra and Organ using Digital Sheet Music Tools": 1 + "6th Grade Music: Analyzing Handel’s Oratorios with Symphony Orchestra and Organ through Tempo Mapping Technology": 1 + "6th Grade Music: Exploring Handel’s Oratorios with Symphony Orchestra and Organ using MIDI Technology": 1 + "6th Grade Music: Decoding Handel’s Oratorios with Symphony Orchestra and Organ through the Use of Audio Equalization": 1 + "6th Grade Music: A Comprehensive Study of Handel’s Oratorios with Symphony Orchestra and Organ using Digital Audio Workstations": 1 + "6th Grade Music: An In-depth Look at Handel’s Oratorios with Symphony Orchestra and Organ using Music Production Software": 1 + "6th Grade Music: Understanding Handel’s Oratorios with Symphony Orchestra and Organ through Key Signature Identification.": 1 + "6th Grade Music: Exploring Rhythms and Beats Through Percussion Instruments": 1 + "6th Grade Music: Understanding Rhythms with Digital Metronome ": 1 + "6th Grade Music: Discovering Beats Using Drum Machines": 1 + "6th Grade Music: Exploring Rhythms and Beats Through the Concept of Syncopation": 1 + "6th Grade Music: Studying Rhythms with Music Sequencing Software": 1 + "6th Grade Music: Interpreting Beats Through Beatboxing Techniques": 1 + "6th Grade Music: Grasping Rhythms and Beats Through the Use of Loop Stations": 1 + "6th Grade Music: Engaging with Beats Using Electronic Drum Pads": 1 + "6th Grade Music: Exploring Rhythms and Beats in Classical Compositions": 1 + "6th Grade Music: Rhythms and Beats Analysis Using Music Production Software.": 1 + "9th Grade Music: Symphony of Sounds - Analyzing the Role of Batons in Conducting and Score Markings for Orchestral Balance ": 1 + "Exploring the Influence of Metronome Use in Score Markings to Enhance Orchestral Balance: A 9th Grade Music Course": 1 + "9th Grade Music: Symphony of Sounds - Understanding Dynamics in Score Markings and their Effect on Orchestral Balance": 1 + "The Art of Tempo: A 9th Grade Study of How Conductors Utilize Score Markings to Influence Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - Exploring How Conductors Use Tuners to Maintain Orchestral Balance": 1 + "The Power of Crescendo and Decrescendo: A Study of Score Markings in 9th Grade Music": 1 + "9th Grade Music: Symphony of Sounds - Understanding Articulation Markings in Scores to Influence Orchestral Balance": 1 + "9th Grade Music: Symphony of Sounds - The Role of Digital Score Readers in Aiding Conductors to Balance an Orchestra": 1 + "Exploring the Use of Silent Metronomes in Orchestral Balance: A 9th Grade Music Course": 1 + "9th Grade Music: Symphony of Sounds - How Conductors Use Pitch Pipes to Influence Balance in an Orchestra.": 1 + "5th Grade History: Exploring the American Revolution through Google AR Expeditions": 1 + "Navigating the American Revolution in 5th Grade History with ARKit Technology": 1 + "5th Grade History: The American Revolution Experienced through Microsoft HoloLens": 1 + "Understanding the American Revolution in 5th Grade History with Oculus Rift Augmented Reality": 1 + "5th Grade History: The American Revolution and Augmented Reality using ZapWorks": 1 + "5th Grade History: The American Revolution Uncovered with ARCore Technology": 1 + "Navigating the American Revolution in 5th Grade History using Magic Leap One Augmented Reality": 1 + "5th Grade History: Unraveling the American Revolution with Vuforia Engine’s Augmented Reality ": 1 + "5th Grade History: American Revolution Insights through ARToolKit": 1 + "The American Revolution in 5th Grade History: A Journey with Unity AR Foundation.": 1 + "4th Grade Science: Exploring Planets and Solar System using Telescopes": 1 + "4th Grade Science: Understanding Gravity and its Role in the Solar System": 1 + "4th Grade Science: The Solar System and the Hubble Space Telescope": 1 + "4th Grade Science: Studying Planets with Satellite Imagery": 1 + "4th Grade Science: Mars Rovers and Planetary Exploration": 1 + "4th Grade Science: The Solar System and Computer Simulation Software": 1 + "4th Grade Science: Learning about Planets through Space Probes": 1 + "4th Grade Science: The Solar System and the Use of Astronomical Spectroscopy": 1 + "4th Grade Science: Radio Astronomy and its Contribution to Understanding the Solar System": 1 + "4th Grade Science: The Solar System and Planetarium Software Exploration": 1 + "Integrating pH Meters in the Role of Vermicompost and Development of Hydroponic Water Recycling Systems for Effective Nutrient Solution Management in 1st Grade": 1 + "Utilizing Microbiome Analysis in Vermicompost Role and Hydroponic Water Recycling System Implementation for 1st Grade Nutrient Solution Management": 1 + "The Role of Vermicompost and Implementation of Hydroponic Water Recycling Systems using LED lights in 1st Grade Nutrient Solution Management": 1 + "Applying Nutrient Film Technique in Vermicompost Role and Hydroponic Water Recycling System for 1st Grade Nutrient Solution Management": 1 + "Role of Vermicompost and Hydroponic Water Recycling Systems with Aeroponics in 1st Grade Nutrient Solution Management": 1 + "The Role of Vermicompost and the Implementation of Hydroponic Water Recycling Systems Utilizing Ebb and Flow Technology in 1st Grade Nutrient Solution Management": 1 + "Implementing IoT Sensors in Vermicompost and Hydroponic Water Recycling Systems in 1st Grade Nutrient Solution Management": 1 + "The Role of Vermicompost and the Implementation of Hydroponic Water Recycling Systems with Auto-dosing Technology in 1st Grade Nutrient Solution Management": 1 + "Incorporating Deep Water Culture in Vermicompost Role and Hydroponic Water Recycling System Implementation for 1st Grade Nutrient Solution Management": 1 + "The Role of Vermicompost and the Implementation of Hydroponic Water Recycling Systems with Drip Irrigation in 1st Grade Nutrient Solution Management.": 1 + "Kindergarten Health: Encouraging Nutritious Eating through Hydroponic Veggie Garden Projects": 1 + "Kindergarten Health: Promoting Nutrition with Composting Techniques in Veggie Garden Projects": 1 + "Kindergarten Health: Enhancing Nutrition through Veggie Garden Projects using Vertical Gardening": 1 + "Kindergarten Health: Incorporating Nutrition Education with Veggie Garden Projects using Aeroponic Systems": 1 + "Kindergarten Health: Improving Nutrition Awareness through IoT-enabled Veggie Garden Projects": 1 + "Kindergarten Health: Adopting Healthy Eating Habits through Permaculture Design in Veggie Garden Projects": 1 + "Kindergarten Health: Fostering Nutrition Knowledge with Veggie Garden Projects using Drip Irrigation": 1 + "Kindergarten Health: Cultivating Nutritional Understanding through Veggie Garden Projects using Greenhouse Technology": 1 + "Kindergarten Health: Boosting Nutrition with Soil Testing Techniques in Veggie Garden Projects": 1 + "Kindergarten Health: Advancing Nutrition Education through Veggie Garden Projects using Organic Fertilizers.": 1 + "2nd Grade Science: Exploring Grassland Animal Habitats and Adaptations Through Field Trips Using Binoculars": 1 + "2nd Grade Science: Field Trip Study on Grassland Animal Habitats and Adaptations Utilizing Digital Cameras": 1 + "2nd Grade Science: Implementing Microscope Use in In-depth Field Trips to Study Grassland Animal Habitats": 1 + "2nd Grade Science: Utilizing GPS Technology for Comprehensive Field Study on Grassland Animal Habitats and Adaptations": 1 + "2nd Grade Science: Employing Sketching as a Tool in Field Trips for Studying Grassland Animal Habitats and Adaptations": 1 + "2nd Grade Science: Comprehensive Study on Grassland Animal Habitats and Adaptations Through Field Trips with Interactive Mobile Apps": 1 + "2nd Grade Science: Using Thermometers on Field Trips for a Detailed Study on Grassland Animal Adaptations": 1 + "2nd Grade Science: Utilizing the Concept of Food Chains in Field Trips for a Comprehensive Study on Grassland Animal Habitats": 1 + "2nd Grade Science: Field Trip Study on Grassland Animal Habitats and Adaptations with the Use of Audio Recorders": 1 + "2nd Grade Science: Leveraging Augmented Reality in Field Trips for an Interactive Study on Grassland Animal Habitats and Adaptations": 1 + "Utilizing the CalorieKing App and Fitbit Technology in a 9th Grade Physical Education Course: A Focus on Caloric Intake and Energy Expenditure": 1 + "Incorporating CalorieKing App and MyFitnessPal in 9th Grade Physical Education: Targeting Macronutrient Balance and Caloric Deficit ": 1 + "The Use of CalorieKing App and Heart Rate Monitors in 9th Grade Physical Education: A Study on Energy Expenditure and Caloric Intake": 1 + "Integrating the CalorieKing App and Body Mass Index (BMI) Calculators in 9th Grade Physical Education: A Comprehensive Look at Caloric Intake and Energy Output ": 1 + "The Role of CalorieKing App and Treadmill Technology in a 9th Grade Physical Education Course: Exploring Caloric Intake and Energy Expenditure ": 1 + "Applying the CalorieKing App and Resistance Band Exercises in 9th Grade Physical Education: An Approach to Balancing Macronutrients and Caloric Intake": 1 + "The Impact of the CalorieKing App and Yoga Practice on Macronutrient Balance in a 9th Grade Physical Education Course ": 1 + "The CalorieKing App and the Concept of Aerobic Exercise in a 9th Grade Physical Education Course: A Focus on Caloric Burn and Energy Conservation": 1 + "A Detailed Study of the CalorieKing App and HIIT Workouts in 9th Grade Physical Education: Addressing Macronutrient Consumption and Caloric Expenditure ": 1 + "Exploring the CalorieKing App and the Concept of Strength Training in 9th Grade Physical Education: A Deep Dive into Caloric Intake and Energy Expenditure.": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant and the Development of the Telescope": 1 + "Understanding the Sextant: The Impact of the Astrolabe on 6th Grade Scientific Revolution Studies ": 1 + "6th Grade Science: The Sextant and Compass: Pioneering Navigational Tools of the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant and the Microscope": 1 + "The Sextant’s Evolution and the Advent of Chronometers: A 6th Grade Science Study on the Scientific Revolution": 1 + "6th Grade Science: The Scientific Revolution and the Sextant’s Evolution through Galileo’s Telescope": 1 + "The Sextant in Context: A Look at the Scientific Revolution’s Impact on 6th Grade Science through the Microscope": 1 + "6th Grade Science: The Scientific Revolution: The Evolution of the Sextant and Rise of the Barometer": 1 + "Exploring the Sextant: 6th Grade Science and the Scientific Revolution’s Influence on the Introduction of the Thermometer": 1 + "6th Grade Science: The Scientific Revolution: Tracing the Evolution of the Sextant and the Emergence of the Pendulum Clock.": 1 + "Understanding Quadratic Equations with the Quadratic Formula: An In-depth 11th Grade Mathematics Course": 1 + "Exploring Quadratic Equations through Graphing Technology: A Comprehensive 11th Grade Mathematics Course": 1 + "Solving Quadratic Equations using Factoring Techniques: A Comprehensive 11th Grade Mathematics Course": 1 + "Mastering Quadratic Equations with Completing the Square: An Advanced 11th Grade Mathematics Course": 1 + "Quadratic Equations and Their Applications in Physics: A Comprehensive 11th Grade Mathematics Course": 1 + "Quadratic Equations: A Comprehensive 11th Grade Mathematics Course with TI-84 Calculator": 1 + "Understanding Quadratic Equations using Algebra Tiles: A Comprehensive 11th Grade Mathematics Course": 1 + "Quadratic Equations and Vertex Form: A Comprehensive 11th Grade Mathematics Course": 1 + "Quadratic Equations: An In-depth 11th Grade Mathematics Course using Desmos Graphing Calculator": 1 + "Exploring the Nature of Roots in Quadratic Equations: A Comprehensive 11th Grade Mathematics Course.": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Drums": 1 + "2nd Grade Music: Exploring Rhythm and Beats using a Metronome": 1 + "2nd Grade Music: Learning Rhythm and Beats through Hand Clapping": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Digital Music Software": 1 + "2nd Grade Music: Mastering Rhythm and Beats with Percussion Instruments": 1 + "2nd Grade Music: Understanding Rhythm and Beats with Piano": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Xylophone": 1 + "2nd Grade Music: Rhythm and Beats Introduction using Music Sequencing Programs": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Music Theory": 1 + "2nd Grade Music: Discovering Rhythm and Beats with Beatboxing Techniques.": 1 + "4th Grade History: The Role of the Spinning Wheel in the Evolution of Trade Among First American Settlers.": 1 + "4th Grade History: The Influence of the Water Mill in the Development of Trade Among the First American Settlers.": 1 + "4th Grade History: The Impact of the Printing Press on Trade Among First American Settlers.": 1 + "4th Grade History: The Concept of Bartering: Evolution of Trade Among the First American Settlers.": 1 + "4th Grade History: The Evolution of Trade Among First American Settlers: The Wheel, Clock, and The Loom.": 1 + "4th Grade History: The Introduction of the Plow and Its Impact on Trade Among First American Settlers.": 1 + "4th Grade History: The Role of the Compass in the Expansion of Trade Among First American Settlers.": 1 + "4th Grade History: The Influence of the Blacksmith Forge on Trade Among the First American Settlers.": 1 + "4th Grade History: The Impact of the Shipbuilding Industry on Trade Among First American Settlers.": 1 + "4th Grade History: The Contribution of the Pottery Wheel to the Evolution of Trade Among First American Settlers.": 1 + "8th Grade Music: Introduction to Trumpet Techniques Using the B-flat Scale": 1 + "8th Grade Music: Mastering Breath Control in Trumpet Techniques": 1 + "8th Grade Music: Beginning Band Instruments - Exploring Trumpet Techniques with Yamaha Silent Brass System": 1 + "8th Grade Music: Examining Trumpet Techniques - The Art of Double Tonguing": 1 + "8th Grade Music: Introduction to Trumpet Techniques - The Role of the Rotary Valve": 1 + "8th Grade Music: Beginning Band Instruments - Trumpet Techniques using the BERP Mouthpiece Trainer": 1 + "8th Grade Music: Trumpet Techniques and the Use of Mutes for Tone Modulation": 1 + "8th Grade Music: Understanding Trumpet Techniques - The Importance of Lip Flexibility": 1 + "8th Grade Music: Beginning Band Instruments - Trumpet Techniques for Achieving Clean Staccato": 1 + "8th Grade Music: Exploring Trumpet Techniques - The Impact of Embouchure on Sound Production.": 1 + "9th Grade Social Studies: Exploring Federalism in Government Systems Through Oculus Rift Augmented Reality ": 1 + "9th Grade Social Studies: Interactive Study of Federalism in Government Systems Using Google Glass AR Technology ": 1 + "9th Grade Social Studies: A Deep Dive into Federalism in Government Systems via Microsoft HoloLens Augmented Reality ": 1 + "9th Grade Social Studies: Analyzing Federalism in Government Systems Through Magic Leap’s Augmented Reality ": 1 + "9th Grade Social Studies: Augmented Reality Exploration of Federalism in Government Systems with Sony’s SmartEyeglass ": 1 + "9th Grade Social Studies: A Practical Study of Federalism in Government Systems Using Epson Moverio AR Device ": 1 + "9th Grade Social Studies: Understanding Federalism in Government Systems Through Augmented Reality Using Vuzix Blade ": 1 + "9th Grade Social Studies: A Comprehensive Study of Federalism in Government Systems via Meta 2 Augmented Reality ": 1 + "9th Grade Social Studies: An In-depth Look at Federalism in Government Systems Using ODG R-7 AR Glasses ": 1 + "9th Grade Social Studies: Investigating Federalism in Government Systems Through Augmented Reality Using Atheer AiR Glasses.": 1 + "6th Grade Art: Exploring Still Life Painting with Acrylics and Palette Knives": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics and Easels": 1 + "6th Grade Art: Still Life Painting with Acrylics and Understanding Color Theory": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics and Mixed Media Techniques": 1 + "6th Grade Art: Mastering Still Life Painting with Acrylics using Digital Art Software": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics and Canvas Preparation": 1 + "6th Grade Art: Still Life Painting with Acrylics and the Use of Light": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics, Exploring Textures": 1 + "6th Grade Art: Still Life Painting with Acrylics and the Concept of Perspective": 1 + "6th Grade Art: The Art of Still Life Painting with Acrylics and the Technique of Glazing": 1 + "2nd Grade Science: Analyzing Rain Gauge and Thermometer Data with NOAA Weather Satellite and GIS Technology": 1 + "2nd Grade Science: Using Doppler Radar Technology in Weather Satellites for Rain Gauge and Thermometer Data Analysis": 1 + "2nd Grade Science: Utilizing Infrared Sensors in Weather Satellites for Rain Gauge and Thermometer Data Analysis": 1 + "2nd Grade Science: Exploring Rain Gauge and Thermometer Data Analysis with GOES Weather Satellite and Satellite Imagery": 1 + "2nd Grade Science: Using Python Programming for Rain Gauge and Thermometer Data Analysis from Weather Satellites": 1 + "2nd Grade Science: Incorporating GPS Technology in Weather Satellite Usage for Rain Gauge and Thermometer Data Analysis": 1 + "2nd Grade Science: Understanding Rain Gauge and Thermometer Data Analysis through Weather Satellites and Cloud Observation Techniques": 1 + "2nd Grade Science: Utilizing Weather Satellites and Remote Sensing Technology for Rain Gauge and Thermometer Data Analysis": 1 + "2nd Grade Science: Analyzing Rain Gauge and Thermometer Data with Weather Satellites and Radiosonde Instruments": 1 + "2nd Grade Science: Using Weather Satellites and Data Visualization Software for Rain Gauge and Thermometer Data Analysis": 1 + "8th Grade Language Arts: Exploring American Literature through Webquests": 1 + "8th Grade Language Arts: An Interactive Whiteboard Journey through American Literature": 1 + "8th Grade Language Arts: Learning American Literature with Google Classroom": 1 + "8th Grade Language Arts: American Literature Journey with Blogging Concepts": 1 + "8th Grade Language Arts: Navigating American Literature with Digital Storytelling": 1 + "8th Grade Language Arts: American Literature Journey - Examining Themes with Podcasts": 1 + "8th Grade Language Arts: American Literature Journey - Studying Character Development with Animation Software": 1 + "8th Grade Language Arts: American Literature Journey - Exploring Settings with Virtual Reality": 1 + "8th Grade Language Arts: Immersive American Literature Journey with Augmented Reality": 1 + "8th Grade Language Arts: American Literature Journey - Analyzing Plot with Mind Mapping Tools": 1 + "3rd Grade English: Utilizing Maya 3D Animation and Python Scripting for Indigenous American Storytelling with Adobe Photoshop": 1 + "3rd Grade English: Exploring African Folklore through Maya 3D Animation, Python Scripting and Adobe Illustrator": 1 + "3rd Grade English: Creating Asian Mythology Tales with Maya 3D Animation, Python Scripting, and Unity Game Engine": 1 + "3rd Grade English: Using Maya 3D Animation, Python Scripting and Final Cut Pro for European Historical Storytelling": 1 + "3rd Grade English: Decoding Middle Eastern Legends with Maya 3D Animation, Python Scripting and Blender 3D Software": 1 + "3rd Grade English: Crafting Australian Aboriginal Stories with Maya 3D Animation, Python Scripting and Adobe After Effects": 1 + "3rd Grade English: Exploring Polynesian Myths through Maya 3D Animation, Python Scripting and Unreal Engine": 1 + "3rd Grade English: Recreating Ancient Egyptian Myths with Maya 3D Animation, Python Scripting and Adobe Premiere Pro": 1 + "3rd Grade English: Visualizing Nordic Legends through Maya 3D Animation, Python Scripting and AutoCAD": 1 + "3rd Grade English: Exploring Inuit Folklore with Maya 3D Animation, Python Scripting and ZBrush.": 1 + "12th Grade Science: Deep Dive into Ecosystems with GIS Technology ": 1 + "12th Grade Science: Exploring Climate Change through Simulation Models": 1 + "12th Grade Science: Understanding Water Quality with pH Testing": 1 + "12th Grade Science: Assessing Air Quality using Spectrophotometers": 1 + "12th Grade Science: Biodiversity Analysis through Bioinformatics": 1 + "12th Grade Science: Soil Conservation Techniques in Environmental Science": 1 + "12th Grade Science: Exploring Renewable Energy through Solar Panel Technology": 1 + "12th Grade Science: Studying Carbon Sequestration using Lidar Technology": 1 + "12th Grade Science: Understanding Environmental DNA (eDNA) and its Impact ": 1 + "12th Grade Science: Analyzing Atmospheric Data with Weather Satellites": 1 + "2nd Grade Language Arts: Exploring Aesop’s Fables through Interactive Smartboard Games": 1 + "2nd Grade Language Arts: Using Smartboard Technology to Analyze Character Development in Fables": 1 + "2nd Grade Language Arts: Smartboard-Assisted Exploration of Morals in Fables": 1 + "2nd Grade Language Arts: Applying Smartboard Technology to Study Fable Narratives": 1 + "2nd Grade Language Arts: Understanding Fable Themes using Smartboard Tools": 1 + "2nd Grade Language Arts: Exploring Fables with Smartboard and Audio-Visual Aids": 1 + "2nd Grade Language Arts: Smartboard-Enhanced Exploration of Imagery in Fables": 1 + "2nd Grade Language Arts: Using Smartboard Tech to Discover Fable Structures": 1 + "2nd Grade Language Arts: Interactive Smartboard Sessions on Fable Settings": 1 + "2nd Grade Language Arts: Delving into Fables’ Conflict Resolution with Smartboard Technology": 1 + "6th Grade Language Arts: Enhancing Creativity with Google Docs and Slides": 1 + "6th Grade Language Arts: Fostering Creativity through Google Docs and Mind Mapping Techniques": 1 + "6th Grade Language Arts: Encouraging Creativity with Google Docs and Canva": 1 + "6th Grade Language Arts: Boosting Creativity using Google Docs and Storyboarding ": 1 + "6th Grade Language Arts: Cultivating Creativity with Google Docs and Adobe Spark": 1 + "6th Grade Language Arts: Nurturing Creativity using Google Docs and Prezi": 1 + "6th Grade Language Arts: Inspiring Creativity with Google Docs and Infographics ": 1 + "6th Grade Language Arts: Promoting Creativity through Google Docs and Video Editing": 1 + "6th Grade Language Arts: Advancing Creativity with Google Docs and Podcasting": 1 + "6th Grade Language Arts: Stimulating Creativity using Google Docs and Virtual Reality Technologies": 1 + "6th Grade Social Studies: Exploring the Role of Lever Systems in the Construction of Egypt’s Pyramids": 1 + "6th Grade Social Studies: Decoding the Mystery of Egypt’s Pyramids through the Lens of Ancient Rope Pulling Techniques": 1 + "6th Grade Social Studies: Unraveling Egypt’s Pyramid Secrets: Focusing on the Use of Stone Quarrying Techniques": 1 + "6th Grade Social Studies: Examining the Use of Wooden Sledges in the Construction of Egypt’s Pyramids": 1 + "6th Grade Social Studies: Understanding Egypt’s Pyramids: The Use of Chisels and Hammers in Their Construction": 1 + "6th Grade Social Studies: The Role of Ramps in the Construction of Egypt’s Pyramids: A Detailed Study": 1 + "6th Grade Social Studies: The Influence of Water Transportation in the Building of Egypt’s Pyramids": 1 + "6th Grade Social Studies: Deciphering the Use of Copper Tools in the Construction of Egypt’s Pyramids": 1 + "6th Grade Social Studies: The Importance of the Sun’s Position in Planning the Construction of Egypt’s Pyramids": 1 + "6th Grade Social Studies: A Closer Look at the Use of Sand Removal Techniques in the Building of Egypt’s Pyramids.": 1 + "8th Grade English: Exploring Shakespeare’s Works through Digital Humanities": 1 + "8th Grade English: Analyzing Classic Literature with Machine Learning": 1 + "8th Grade English: Diving into Classic Literature using Text-to-Speech Technology": 1 + "8th Grade English: Classic Literature Study with Virtual Reality": 1 + "8th Grade English: Exploring Classic Literature through Augmented Reality": 1 + "8th Grade English: Understanding Classic Literature through Sentiment Analysis": 1 + "8th Grade English: Classic Literature Analysis with Big Data": 1 + "8th Grade English: Diving into Classic Literature using E-Books": 1 + "8th Grade English: Analyzing Classic Literature through Data Visualization": 1 + "8th Grade English: Diving into Classic Literature with Interactive Online Platforms": 1 + "Exploring MIDI Controllers in 8th Grade Music: A Module on Ableton Live and Loop Pedal Production": 1 + "Introduction to Synthesis in 8th Grade Music: A Module on Ableton Live, Loop Pedal and Moog Synthesizers": 1 + "8th Grade Music: A Module on Ableton Live, Loop Pedal Production and the Application of Audio Interfaces": 1 + "Understanding Digital Audio Workstations in 8th Grade Music: A Module on Ableton Live and Loop Pedal Production": 1 + "Beat-Making in 8th Grade Music: A Module on Ableton Live, Loop Pedal Production and Using Drum Machines": 1 + "Sampling Techniques in 8th Grade Music: A Module on Ableton Live, Loop Pedal Production and MPC Samplers": 1 + "Sound Design in 8th Grade Music: A Module on Ableton Live, Loop Pedal Music Production and FM Synthesis": 1 + "Audio Effects in 8th Grade Music: A Module on Ableton Live, Loop Pedal Production and the Use of Reverb": 1 + "Music Theory for Electronic Music in 8th Grade: A Module on Ableton Live, Loop Pedal Production and Chord Progressions": 1 + "Mixing and Mastering in 8th Grade Music: A Module on Ableton Live, Loop Pedal Production and EQing Techniques.": 1 + "Exploring 7th Grade Chemistry: Mastering Pipettes, Bunsen Burners & Introduction to Molecular Structures with Spectrophotometry": 1 + "Delving into 7th Grade Chemistry: Understanding Pipettes, Bunsen Burners & Molecular Structures through Microscopy": 1 + "Navigating 7th Grade Chemistry: Pipettes, Bunsen Burners & Introduction to Molecular Structures using pH Meters": 1 + "Unraveling 7th Grade Chemistry: Pipettes, Bunsen Burners & Molecular Structures with Chromatography Techniques": 1 + "Discovering 7th Grade Chemistry: A Deep Dive into Pipettes, Bunsen Burners & Molecular Structures using Centrifugation": 1 + "Investigating 7th Grade Chemistry: Pipettes, Bunsen Burners & Molecular Structures through the Lens of Mass Spectrometry": 1 + "Mastering 7th Grade Chemistry: Pipettes, Bunsen Burners & Introduction to Molecular Structures with Atomic Absorption Spectroscopy": 1 + "Exploring 7th Grade Chemistry: An In-depth Study of Pipettes, Bunsen Burners & Molecular Structures using Electron Microscopy": 1 + "7th Grade Chemistry Uncovered: Pipettes, Bunsen Burners & Molecular Structures with the Help of Gas Chromatography": 1 + "The Science of 7th Grade Chemistry: Pipettes, Bunsen Burners & Molecular Structures Explored using Nuclear Magnetic Resonance.": 1 + "1st Grade Science: Exploring Arctic Tundra Ecosystems and Precipitation Patterns through Ice Plant Terrarium Creation and Rain Gauge Measurements": 1 + "1st Grade Science: Studying Arctic Tundra Ecosystems using Digital Thermometers in Ice Plant Terrarium Creation with Rain Gauges": 1 + "1st Grade Science: Investigating Arctic Tundra Ecosystems via Ice Plant Terrarium Creation and Rain Gauge Readings with Microscope Analysis": 1 + "1st Grade Science: Uncovering Secrets of Arctic Tundra Ecosystems through Ice Plant Terrarium Creation and Rain Gauge Studies using pH Test Strips": 1 + "1st Grade Science: Integrating Technology in Studying Arctic Tundra Ecosystems: Ice Plant Terrarium, Rain Gauge, and Interactive Digital Maps": 1 + "1st Grade Science: Examining Arctic Tundra Ecosystems through Ice Plant Terrarium Creation, Rain Gauge Observations, and Soil Sampling Techniques": 1 + "1st Grade Science: Arctic Tundra Ecosystem Study - Ice Plant Terrarium, Rain Gauge Application, and Introduction to Climate Change Concepts": 1 + "1st Grade Science: Understanding Arctic Tundra Ecosystems - Ice Plant Terrarium Experiment, Rain Gauge Data Collection, and Weather Forecasting Techniques": 1 + "1st Grade Science: Delving into Arctic Tundra Ecosystems via Ice Plant Terrarium Creation, Rain Gauge Use, and Satellite Imagery Interpretation": 1 + "1st Grade Science: Exploring Arctic Tundra Ecosystems through Ice Plant Terrarium Creation, Rain Gauge Measurements, and Light Spectrum Analysis.": 1 + "Utilizing the Montessori Stamp Game: A 2nd Grade Mathematics Course on Mastering Addition and Subtraction with Number Rods": 1 + "Exploring Place Value: Montessori Stamp Game Aids in Addition and Subtraction Mastery for 2nd Graders": 1 + "Montessori Stamp Game and Golden Beads: A 2nd Grade Mathematics Course on Addition and Subtraction Mastery": 1 + "Montessori Stamp Game and Abacus: A Comprehensive 2nd Grade Mathematics Course on Addition and Subtraction": 1 + "Harnessing the Montessori Stamp Game: A 2nd Grade Mathematics Course on the Concept of Regrouping in Addition and Subtraction": 1 + "The Montessori Stamp Game: A 2nd Grade Mathematics Course to Master Addition and Subtraction using the Bead Frame": 1 + "Montessori Stamp Game: A 2nd Grade Mathematics Course on Addition and Subtraction Mastery with Bead Stairs": 1 + "Mastery of Addition and Subtraction using the Montessori Stamp Game and Number Tiles: A 2nd Grade Mathematics Course ": 1 + "Montessori Stamp Game: A 2nd Grade Mathematics Course on Addition and Subtraction Mastery with Base Ten Blocks ": 1 + "Integrating Montessori Stamp Game and Number Lines: A 2nd Grade Mathematics Course on Addition and Subtraction Mastery": 1 + "Kindergarten Art: Exploring Colors and Shapes with Watercolors": 1 + "Introduction to Kindergarten Art: Learning Colors and Shapes through Collage Making": 1 + "Kindergarten Art: Discovering Colors and Shapes using Crayons": 1 + "Intro to Kindergarten Art: Understanding Colors and Shapes through Finger Painting ": 1 + "Kindergarten Art: A Journey through Colors and Shapes with Clay Modeling": 1 + "Kindergarten Art: Grasping Colors and Shapes via Digital Drawing Tools": 1 + "Introduction to Kindergarten Art: Colors and Shapes in Origami Folding": 1 + "Kindergarten Art: Interpreting Colors and Shapes through Printmaking": 1 + "Kindergarten Art: Exploring the World of Colors and Shapes via Sculpture": 1 + "Introduction to Kindergarten Art: Studying Colors and Shapes through Pastel Drawing": 1 + "2nd Grade Mathematics: Utilizing Abacus for Fraction Multiplication and Division with Grids ": 1 + "2nd Grade Mathematics: Fraction Multiplication and Division with Grids using Geoboard techniques": 1 + "2nd Grade Mathematics: Interactive Whiteboard Implementation in Fraction Circles and Grids": 1 + "2nd Grade Mathematics: Application of Montessori Materials in Fraction Multiplication and Division ": 1 + "2nd Grade Mathematics: Fraction Multiplication and Division with Grids using Smartboard Technology": 1 + "2nd Grade Mathematics: Understanding the Number Line concept for Fraction Circles": 1 + "2nd Grade Mathematics: Fraction Multiplication and Division with Grids using Virtual Manipulatives": 1 + "2nd Grade Mathematics: The Use of Fraction Circles and Grids in the Understanding of the Commutative Property": 1 + "2nd Grade Mathematics: Fraction Multiplication and Division with Grids - A look into the Repeated Subtraction method": 1 + "2nd Grade Mathematics: Integrating Digital Learning Platforms in Teaching Fraction Circles and Grids.": 1 + "5th Grade Mathematics: Mastering Fractions using Fraction Decimal Percent Tiles and Khan Academy Online Tutorials": 1 + "5th Grade Mathematics: Exploring Fractions with Fraction Decimal Percent Tiles and Interactive Whiteboard Lessons": 1 + "5th Grade Mathematics: Understanding Fractions through Fraction Decimal Percent Tiles and Google Classroom Activities": 1 + "5th Grade Mathematics: Grasping Fractions with Fraction Decimal Percent Tiles and Quizlet Study Sets": 1 + "5th Grade Mathematics: Learning Fractions using Fraction Decimal Percent Tiles and SMART Board Technology": 1 + "5th Grade Mathematics: Fraction Comprehension using Fraction Decimal Percent Tiles and IXL Learning Platform": 1 + "5th Grade Mathematics: Decoding Fractions with Fraction Decimal Percent Tiles and Virtual Manipulatives": 1 + "5th Grade Mathematics: Interpreting Fractions through Fraction Decimal Percent Tiles and Edmodo Discussion Boards": 1 + "5th Grade Mathematics: Fraction Proficiency using Fraction Decimal Percent Tiles and Prodigy Math Game": 1 + "5th Grade Mathematics: Fraction Fluency with Fraction Decimal Percent Tiles and Nearpod Interactive Lessons": 1 + "1st Grade Art: Creating Mountain Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Masking Fluid": 1 + "1st Grade Art: Creating Ocean Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Salt Technique": 1 + "1st Grade Art: Creating Forest Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Glazing Method": 1 + "1st Grade Art: Creating Desert Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Dry Brushing Technique": 1 + "1st Grade Art: Creating Cityscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Perspective Drawing": 1 + "1st Grade Art: Creating Snowy Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Wet-in-wet Technique": 1 + "1st Grade Art: Creating Sunset Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Graded Wash Technique": 1 + "1st Grade Art: Creating Rainforest Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Lifting Off Technique": 1 + "1st Grade Art: Creating Countryside Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Color Mixing": 1 + "1st Grade Art: Creating Beach Landscape Art with Watercolor Painting using Flat Brushes, Palette Knives, Sponges, Squirrel Hair Brush, and Layering Technique": 1 + "5th Grade Mathematics: Exploring Fractions with Fraction Circles and Interactive Whiteboards": 1 + "5th Grade Mathematics: Mastering Fractions through Fraction Circles and Digital Manipulatives": 1 + "5th Grade Mathematics: Fraction Circle Approach to Understand Equivalent Fractions": 1 + "5th Grade Mathematics: Fraction Circles and Online Games for a Comprehensive Fraction Study": 1 + "5th Grade Mathematics: Using Fraction Circles and iPad Apps for Fraction Mastery": 1 + "5th Grade Mathematics: Fraction Circles and the Concept of Fraction Simplification": 1 + "5th Grade Mathematics: Fraction Circles and Interactive Worksheets - A Deep Dive into Fractions": 1 + "5th Grade Mathematics: Fraction Circles in Conjunction with Google Classroom for Fraction Understanding": 1 + "5th Grade Mathematics: Fraction Circles and Fraction Bars - A Comparative Study": 1 + "5th Grade Mathematics: Fraction Circles and Smartboard Technology for Interactive Fraction Learning": 1 + "4th Grade Science: Exploring Uranus’ Axial Tilt with Solar Walk 2 Software and Gyroscope Technology using Augmented Reality": 1 + "4th Grade Science: Understanding Uranus’ Tilt using Solar Walk 2 Planetarium Software, Gyroscope Technology, and 3D Printing Models": 1 + "4th Grade Science: Studying Uranus’ Tilt with Solar Walk 2 Software, Gyroscope Technology and Interactive Whiteboard Activities": 1 + "4th Grade Science: Learning about Uranus’ Tilt using Solar Walk 2 Planetarium Software, Gyroscope Technology, and Virtual Reality Headsets": 1 + "4th Grade Science: Investigating Uranus’ Tilt with Solar Walk 2 Software, Gyroscope Technology and the Concept of Orbital Mechanics": 1 + "4th Grade Science: Discovering Uranus’ Tilt using Solar Walk 2 Planetarium Software, Gyroscope Technology, and Online Collaboration Tools": 1 + "4th Grade Science: Examining Uranus’ Tilt with Solar Walk 2 Software, Gyroscope Technology and Hands-on Experiment Kits": 1 + "4th Grade Science: Observing Uranus’ Tilt using Solar Walk 2 Planetarium Software, Gyroscope Technology, and Telescope Observations": 1 + "4th Grade Science: Analyzing Uranus’ Tilt with Solar Walk 2 Software, Gyroscope Technology and the Application of Math Equations": 1 + "4th Grade Science: Unfolding Uranus’ Tilt using Solar Walk 2 Planetarium Software, Gyroscope Technology, and Classroom Planetarium Projectors": 1 + "Fourth Grade English: Crafting Revolutionary War Tales with Oculus Rift VR Technology": 1 + "Fourth Grade English: Creating Revolutionary War Narratives with Google Cardboard VR": 1 + "Fourth Grade English: Weaving Revolutionary War Stories using PlayStation VR Technology": 1 + "Fourth Grade English: Producing Revolutionary War Yarns with Samsung Gear VR Technology": 1 + "Fourth Grade English: Fostering Revolutionary War Chronicles with HTC Vive Pro VR": 1 + "Fourth Grade English: Building Revolutionary War Epics with Unity 3D VR Technology": 1 + "Fourth Grade English: Designing Revolutionary War Sagas with VR and Python Programming": 1 + "Fourth Grade English: Sculpting Revolutionary War Fables with Unreal Engine VR Technology": 1 + "Fourth Grade English: Developing Revolutionary War Legends with VR and Scratch Programming": 1 + "Fourth Grade English: Shaping Revolutionary War Myths using Augmented Reality (AR) Technology.": 1 + "1st Grade Music: Learning Tempo in Rhythm and Melody through Dance using Percussion Instruments": 1 + "1st Grade Music: Understanding Metronome Use in Learning Tempo through Dance": 1 + "1st Grade Music: Exploring Tempo in Rhythm and Melody with Dance and Piano": 1 + "1st Grade Music: Using Beatboxing to Learn Tempo in Rhythm and Melody through Dance": 1 + "1st Grade Music: Learning Tempo in Rhythm and Melody through Dance and Digital Music Apps": 1 + "1st Grade Music: Introducing Tempo through Dance with the Help of GarageBand": 1 + "1st Grade Music: Mastering Tempo in Rhythm and Melody through Dance using an Interactive Whiteboard": 1 + "1st Grade Music: Learning Tempo in Rhythm and Melody through Dance and Music Theory": 1 + "1st Grade Music: Discovering Tempo in Rhythm and Melody through Dance using Music Production Software": 1 + "1st Grade Music: Understanding Tempo with the Use of Drums in Rhythm and Melody through Dance": 1 + "2nd Grade Introduction to Algebra: Understanding Variables using Interactive Whiteboards & iPads": 1 + "2nd Grade Introduction to Algebra: Mastering Variables with Interactive Whiteboards & Animated Graphing Tools": 1 + "2nd Grade Introduction to Algebra: Exploring Variables through Interactive Whiteboards & Digital Math Games": 1 + "2nd Grade Introduction to Algebra: Discovering Variables using Interactive Whiteboards & VR Technology": 1 + "2nd Grade Introduction to Algebra: Grasping Variables with Interactive Whiteboards & Online Quizzes": 1 + "2nd Grade Introduction to Algebra: Decoding Variables using Interactive Whiteboards & Smart Notebook Software": 1 + "2nd Grade Introduction to Algebra: Unveiling Variables through Interactive Whiteboards & Augmented Reality Apps": 1 + "2nd Grade Introduction to Algebra: Learning Variables with Interactive Whiteboards & Math Apps ": 1 + "2nd Grade Introduction to Algebra: Understanding Variables using Interactive Whiteboards & Python Programming": 1 + "2nd Grade Introduction to Algebra: Comprehending Variables through Interactive Whiteboards & Math Manipulatives Software.": 1 + "5th Grade History: Decoding Ancient Egypt Hieroglyphics with Rosetta Stone": 1 + "5th Grade History: Exploring Ancient Egypt Hieroglyphics through the Use of Papyrus Scrolls": 1 + "5th Grade History: Understanding Hieroglyphics in Ancient Egypt with Cartouches": 1 + "5th Grade History: Discovering Hieroglyphics in Ancient Egypt using Obelisks": 1 + "5th Grade History: Deciphering Ancient Egypt Hieroglyphics with the Concept of Phonograms": 1 + "5th Grade History: Interpreting Hieroglyphics in Ancient Egypt through Steles": 1 + "5th Grade History: Exploring Ancient Egypt Hieroglyphics using the Technology of Virtual Reality": 1 + "5th Grade History: Analyzing Hieroglyphics in Ancient Egypt with the Tool of Decipherment": 1 + "5th Grade History: Unraveling Ancient Egypt Hieroglyphics with the Concept of Symbolism": 1 + "5th Grade History: Understanding Hieroglyphics in Ancient Egypt through the Use of Sarcophagi.": 1 + "5th Grade Science: Exploring Forest Ecosystems Through Soil Composition Analysis Using XRF and pH Meter Technology": 1 + "5th Grade Science: Investigating Aquatic Ecosystems Through XRF Technology and Turbidity Measurements": 1 + "5th Grade Science: Deciphering Desert Ecosystems Through Soil Analysis Using XRF Technology and Particle Size Distribution": 1 + "5th Grade Science: Understanding Rainforest Ecosystems Through Soil Composition Analysis Using XRF Technology and Humidity Sensors": 1 + "5th Grade Science: Probing Grassland Ecosystems Through Soil Analysis Using XRF Technology and Organic Matter Estimation": 1 + "5th Grade Science: Navigating Tundra Ecosystems Through Soil Composition Examination Using XRF Technology and Permafrost Detection": 1 + "5th Grade Science: Examining Wetland Ecosystems Using XRF Technology and Water Holding Capacity Measurements in Soil Analysis": 1 + "5th Grade Science: Surveying Mountain Ecosystems Through Soil Composition Analysis Using XRF Technology and Elevation Measurements": 1 + "5th Grade Science: Assessing Island Ecosystems Through Soil Analysis Using XRF Technology and Salt Concentration Examination": 1 + "5th Grade Science: Delving into Savannah Ecosystems Through Soil Composition Analysis Using XRF Technology and Temperature Monitoring": 1 + "4th Grade Social Studies: Discovering America’s History through Oculus Rift Virtual Reality": 1 + "Exploring America’s Past using Google Cardboard VR in 4th Grade Social Studies": 1 + "4th Grade Social Studies: Journeying through American History with HTC Vive Pro Virtual Reality": 1 + "Immersive Learning in 4th Grade Social Studies: Uncovering America’s Past with VR Goggles": 1 + "4th Grade Social Studies: Using PlayStation VR to Explore America’s History": 1 + "4th Grade Social Studies: Navigating America’s Past with Samsung Gear VR": 1 + "Immersing in America’s Past: A 4th Grade Social Studies Course Using Augmented Reality": 1 + "4th Grade Social Studies: Time Travel to America’s Past with Microsoft HoloLens VR": 1 + "4th Grade Social Studies: A Dive into America’s History using ARKit Virtual Reality": 1 + "Exploring America’s Past with Lenovo Mirage Solo: A 4th Grade Social Studies Course.": 1 + "3rd Grade Mathematics: Mastering Fractions with Interactive Whiteboards using SMART Board Technology": 1 + "3rd Grade Mathematics: Exploring Fractions through Interactive Whiteboards and Virtual Manipulatives": 1 + "3rd Grade Mathematics: Mastering Fractions with Interactive Whiteboards and iPad Applications": 1 + "3rd Grade Mathematics: Enhancing Fraction Knowledge with Interactive Whiteboards and Promethean ActivInspire": 1 + "3rd Grade Mathematics: Understanding Fractions through Interactive Whiteboards and Fraction Strips": 1 + "3rd Grade Mathematics: Fraction Mastery with Interactive Whiteboards and Digital Fraction Bars": 1 + "3rd Grade Mathematics: Fraction Proficiency with Interactive Whiteboards and Google Classroom Integration": 1 + "3rd Grade Mathematics: Mastering Fractions with Interactive Whiteboards using Microsoft Teams for Collaboration": 1 + "3rd Grade Mathematics: Fraction Skills Enhancement with Interactive Whiteboards and Pear Deck Interactive Activities": 1 + "3rd Grade Mathematics: Learning Fractions through Interactive Whiteboards and Nearpod Lessons.": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals using Abacus": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals focusing on Long Division": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals using Number Lines": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals with a Spotlight on Decimal Places": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals exploring the Distributive Property": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals using Geometric Shapes": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals featuring Multiplication Tables": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals with a Deep Dive into Simplifying Fractions": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals using Interactive Software": 1 + "4th Grade Mathematics: Introduction to Algebra with Fractions and Decimals focusing on the Order of Operations": 1 + "11th Grade Chemistry: A Comprehensive Study of Organic Chemistry Focusing on Hydrocarbons through Spectrophotometry": 1 + "11th Grade Chemistry: Delving into Organic Chemistry with a Detailed Analysis of Hydrocarbons using Gas Chromatography": 1 + "11th Grade Chemistry: Thorough Investigation into Organic Chemistry Highlighting Hydrocarbons with Mass Spectrometry": 1 + "11th Grade Chemistry: Exploring Organic Chemistry and Hydrocarbons using Infrared Spectroscopy": 1 + "11th Grade Chemistry: Organic Chemistry Deep Dive and Hydrocarbons Examination through Nuclear Magnetic Resonance": 1 + "11th Grade Chemistry: An Intensive Course on Organic Chemistry with a Focus on Hydrocarbons using Crystallography": 1 + "11th Grade Chemistry: Organic Chemistry and Hydrocarbons through the Lens of Chromatography": 1 + "11th Grade Chemistry: A Detailed Study of Organic Chemistry and Hydrocarbons using Microscopy": 1 + "11th Grade Chemistry: In-depth Organic Chemistry and Hydrocarbon Study with the Application of Molecular Modelling": 1 + "11th Grade Chemistry: Expansive Organic Chemistry and Hydrocarbon Study using Computational Chemistry Techniques": 1 + "5th Grade History: Deciphering Ancient Egypt’s Hieroglyphics with Macro Aerial Photography and Drones": 1 + "5th Grade History: Using Macro Aerial Photography and Satellite Imagery for Ancient Egypt’s Hieroglyphics": 1 + "5th Grade History: The Role of Infrared Technology in Exploring Ancient Egypt’s Hieroglyphics with Macro Aerial Photography": 1 + "5th Grade History: Deploying Macro Aerial Photography and 3D Modeling in the Study of Ancient Egypt’s Hieroglyphics": 1 + "5th Grade History: Exploring Ancient Egypt’s Hieroglyphics with Macro Aerial Photography and Photogrammetry": 1 + "5th Grade History: Unraveling Ancient Egypt’s Hieroglyphics Through Macro Aerial Photography and GIS Mapping": 1 + "5th Grade History: Using Macro Aerial Photography and VR Technology to Explore Ancient Egypt’s Hieroglyphics ": 1 + "5th Grade History: Macro Aerial Photography and LiDAR Technology in the Study of Ancient Egypt’s Hieroglyphics ": 1 + "5th Grade History: Exploring Ancient Egypt’s Hieroglyphics with Macro Aerial Photography and Digital Image Processing ": 1 + "5th Grade History: The Use of Macro Aerial Photography and Machine Learning Algorithms in Decoding Ancient Egypt’s Hieroglyphics": 1 + "6th Grade Art: Introduction to Oil Pastel Painting Techniques Using Soft Pastels": 1 + "6th Grade Art: Exploring Oil Pastel Techniques with Blending Stumps": 1 + "6th Grade Art: Oil Pastel Painting Techniques and the Use of Palette Knives": 1 + "6th Grade Art: Introduction to Oil Pastel Layering Techniques": 1 + "6th Grade Art: Mastery of Oil Pastel Painting with Grid Drawing Techniques": 1 + "6th Grade Art: Oil Pastel Painting Techniques and the Use of Fixatives": 1 + "6th Grade Art: Introduction to Oil Pastel Techniques Using Turpentine ": 1 + "6th Grade Art: Oil Pastel Painting Techniques - Exploring Underpainting": 1 + "6th Grade Art: Introduction to Oil Pastel Painting Techniques with Sgraffito": 1 + "6th Grade Art: Oil Pastel Painting Techniques and the Role of Priming Surfaces": 1 + "5th Grade Music: Mastering Music Theory and Note Reading via Drumming with Sibelius Music Notation Software": 1 + "Rhythm and Reading: 5th Grade Music Theory and Note Recognition through Drumming with Finale Notation Software": 1 + "Music Expressions: Learning Music Theory and Note Reading in 5th Grade through Drumming with MuseScore": 1 + "5th Grade Music: Exploring Music Theory and Note Reading through Drum Pad Machine and Music Notation Software": 1 + "Learning Rhythmics: 5th Grade Music Theory using Drumming and GarageBand Music Notation Software": 1 + "5th Grade Music: Understanding Music Theory and Note Reading through Percussion and Logic Pro X Notation Software": 1 + "5th Grade Music: Music Theory and Note Reading Enhancement through Drumming with Cubase Notation Software": 1 + "Music Harmony: 5th Grade Music Theory and Note Reading through Drumming and Ableton Live Music Notation Software": 1 + "5th Grade Music: Music Theory and Note Reading with Drumming using Dorico Music Notation Software": 1 + "Learning through Rhythm: 5th Grade Music Theory and Note Reading with Drumming and ScoreCloud Notation Software.": 1 + "3rd Grade Mathematics: Mastering Multiplication Tables using Interactive Digital Flashcards": 1 + "3rd Grade Mathematics: Incorporating iPads in Flashcard-Based Multiplication Learning": 1 + "3rd Grade Mathematics: Exploring Multiplication Tables with Augmented Reality Flashcards": 1 + "3rd Grade Mathematics: Using Smartboard Technology in Flashcard Multiplication Practice": 1 + "3rd Grade Mathematics: Promoting Multiplication Fluency with Flashcards and Math Apps": 1 + "3rd Grade Mathematics: Boosting Multiplication Skills through Flashcard Games on Computer": 1 + "3rd Grade Mathematics: Integration of Virtual Reality in Flashcard Multiplication Learning": 1 + "3rd Grade Mathematics: Applying the Concept of Spaced Repetition in Flashcard Multiplication": 1 + "3rd Grade Mathematics: Utilizing Quizlet for Flashcard-Based Multiplication Tables Study": 1 + "3rd Grade Mathematics: Enhancing Multiplication Understanding with Flashcards and Interactive Whiteboards.": 1 + "5th Grade Language Arts: Exploring Metaphors in Poetry": 1 + "5th Grade Language Arts: Understanding Similes in Poetry": 1 + "5th Grade Language Arts: Analyzing Alliteration in Poetry": 1 + "5th Grade Language Arts: Learning Hyperboles in Poetry": 1 + "5th Grade Language Arts: The Art of Onomatopoeia in Poetry": 1 + "5th Grade Language Arts: Personification in Poetry": 1 + "5th Grade Language Arts: Using iPads for Interactive Poetry Learning": 1 + "5th Grade Language Arts: Poetry and Figurative Language with Google Classroom": 1 + "5th Grade Language Arts: Studying Poetry and Figurative Language with E-books": 1 + "5th Grade Language Arts: Exploring Poetry and Figurative Language Using Digital Whiteboards": 1 + "Kindergarten: Learning Shapes and Colors through Interactive Games": 1 + "Kindergarten: Identifying Shapes and Colors using Flashcards": 1 + "Kindergarten: Exploring Shapes and Colors with Augmented Reality": 1 + "Kindergarten: Learning Shapes and Colors via Smartboard Activities": 1 + "Kindergarten: Shapes and Colors Mastery using Computer Software": 1 + "Kindergarten: Understanding Shapes and Colors through Art-based Projects": 1 + "Kindergarten: Learning Shapes and Colors with Montessori Materials": 1 + "Kindergarten: Hands-on Shapes and Colors Learning with 3D Models": 1 + "Kindergarten: Advanced Learning of Shapes and Colors using Virtual Reality": 1 + "Kindergarten: Shapes and Colors Exploration with Digital Storytelling": 1 + "5th Grade History: Uncovering Ancient Egypt using Satellite Imagery and Cartography": 1 + "5th Grade History: Deciphering Ancient Egypt through GPS Technology in Cartography": 1 + "5th Grade History: Revealing Ancient Egypt with the Use of Google Earth and Cartography": 1 + "5th Grade History: Exploring Ancient Egypt through Cartography and 3D Modelling": 1 + "5th Grade History: Reconstructing Ancient Egypt using Photogrammetry and Cartography": 1 + "5th Grade History: Unraveling Ancient Egypt with GIS Technology and Cartography": 1 + "5th Grade History: Investigating Ancient Egypt through Cartography and Digital Mapping": 1 + "5th Grade History: Discovering Ancient Egypt using Drone Technology in Cartography": 1 + "5th Grade History: Unveiling Ancient Egypt through Cartography and Augmented Reality": 1 + "5th Grade History: Decoding Ancient Egypt with Lidar Technology and Cartography": 1 + "3rd Grade Music: Understanding Rhythms with LP Aspire Conga Drums, Ableton Live Tempo Software, and Metronome Application": 1 + "3rd Grade Music: Mastering Beat using LP Aspire Conga Drums, Ableton Live Tempo Software, and Rhythm Counting Techniques": 1 + "3rd Grade Music: Enhancing Rhythm Skills with LP Aspire Conga Drums, Ableton Live Tempo Software, and Sibelius Notation Software": 1 + "3rd Grade Music: Exploring Rhythm and Beat with LP Aspire Conga Drums, Ableton Live Tempo Software, and MIDI Controllers": 1 + "3rd Grade Music: Discover Beat Patterns using LP Aspire Conga Drums, Ableton Live Tempo Software, and Audacity Audio Software": 1 + "3rd Grade Music: Mastering Rhythm and Beat with LP Aspire Conga Drums, Ableton Live Tempo Software, and Time Signature Concepts": 1 + "3rd Grade Music: Learning Rhythm through LP Aspire Conga Drums, Ableton Live Tempo Software, and Note Duration Exercises": 1 + "3rd Grade Music: Fostering Beat Skills with LP Aspire Conga Drums, Ableton Live Tempo Software, and GarageBand Music Creation Software": 1 + "3rd Grade Music: Studying Rhythm and Beat with LP Aspire Conga Drums, Ableton Live Tempo Software, and Beat Matching Techniques": 1 + "3rd Grade Music: Developing Beat Understanding using LP Aspire Conga Drums, Ableton Live Tempo Software, and Rhythm Training Apps.": 1 + "9th Grade History: The American Revolution and the Role of Musket Technology": 1 + "9th Grade History: Understanding the American Revolution through Paul Revere’s Midnight Ride": 1 + "9th Grade History: The American Revolution - A Deep Dive into Revolutionary Propaganda": 1 + "9th Grade History: The American Revolution - Influence of Printing Press in Communication": 1 + "9th Grade History: The Impact of Naval Warfare in the American Revolution": 1 + "9th Grade History: The Role of Espionage during the American Revolution": 1 + "9th Grade History: The American Revolution - The Importance of Cannon Artillery": 1 + "9th Grade History: The American Revolution - A Study of Colonial Boycotts": 1 + "9th Grade History: The American Revolution - Exploring the Use of Medical Practices": 1 + "9th Grade History: The American Revolution - The Power of Political Cartoons.": 1 + "9th Grade Mathematics: Geometry Essentials - Exploring Polygon Properties using Pythagoras’ Theorem": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties with Triangle Congruence": 1 + "9th Grade Mathematics: Geometry Essentials - Understanding Polygon Properties via Trigonometry": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties and Quadrilateral Classifications": 1 + "9th Grade Mathematics: Geometry Essentials - Deep Dive into Polygon Properties with Compass and Straightedge": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties Analysis using Geometric Proofs": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties Explored through Geogebra Software ": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties: An Exploration of Tessellations": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties and their Applications in Real-world Geometry": 1 + "9th Grade Mathematics: Geometry Essentials - Polygon Properties: Unravelling Mysteries with Euclidean Geometry.": 1 + "4th Grade History: The Use of Astrolabes during Navigation and Exploration in the Age of Discovery": 1 + "The Role of Compass in 4th Grade History: Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: Navigation and Exploration with Maps during the Age of Discovery": 1 + "Understanding Quadrants in 4th Grade History: Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: The Impact of Telescopes on Navigation and Exploration during the Age of Discovery": 1 + "The Significance of Sextants in 4th Grade History: Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: Navigation and Exploration using Log Lines during the Age of Discovery": 1 + "The Use of Chronometers in 4th Grade History: Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: The Influence of Cross-staffs on Navigation and Exploration during the Age of Discovery": 1 + "4th Grade History: Navigation and Exploration with the Backstaff during the Age of Discovery": 1 + "4th Grade Language Arts: Crafting Imaginative Stories with Storyboard That Software and Dialogue Tools": 1 + "4th Grade Language Arts: Creating Character-Driven Stories using Storyboard That Software and Character Mapping": 1 + "4th Grade Language Arts: Building Suspenseful Stories through Storyboard That Software and Cliffhanger Techniques": 1 + "4th Grade Language Arts: Designing Visual Stories using Storyboard That Software and Color Theory": 1 + "4th Grade Language Arts: Constructing Mystery Stories with Storyboard That Software and Foreshadowing Techniques": 1 + "4th Grade Language Arts: Developing Adventure Stories using Storyboard That Software and Setting Details": 1 + "4th Grade Language Arts: Forming Conflict-Driven Stories with Storyboard That Software and Conflict Resolution Tools": 1 + "4th Grade Language Arts: Creating Emotional Stories using Storyboard That Software and Mood Setting Techniques": 1 + "4th Grade Language Arts: Crafting Fantasy Stories with Storyboard That Software and World Building Techniques": 1 + "4th Grade Language Arts: Shaping Historical Stories using Storyboard That Software and Research Skills": 1 + "1st Grade Science: Understanding Alpine Ecosystems through DIY Mountainous Terrarium Building, Alpine Plant Identification via pH Soil Test Kits, Altitude Simulators, and Microscope Study": 1 + "1st Grade Science: Exploring Alpine Ecosystems using Mountainous Terrarium Building, Alpine Plant Identification with pH Soil Test Kits, Altitude Simulators, and Digital Thermometers": 1 + "1st Grade Science: Deciphering Alpine Ecosystems through Mountainous Terrarium Creation, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Light Spectrum Analyzers": 1 + "1st Grade Science: Investigating Alpine Ecosystems with Mountainous Terrarium Building, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Rainfall Measurement Tools": 1 + "1st Grade Science: Studying Alpine Ecosystems through Mountainous Terrarium Assembly, Alpine Plant Identification with pH Soil Test Kits, Altitude Simulators, and Soil Composition Analysis": 1 + "1st Grade Science: Unraveling Alpine Ecosystems via Mountainous Terrarium Building, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Humidity Monitoring Devices": 1 + "1st Grade Science: Learning Alpine Ecosystems through Mountainous Terrarium Crafting, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Plant Growth Rate Calculations": 1 + "1st Grade Science: Discovering Alpine Ecosystems with Mountainous Terrarium Building, Alpine Plant Identification by pH Soil Test Kits, Altitude Simulators, and Climate Control Systems": 1 + "1st Grade Science: Exploring Alpine Ecosystems through Mountainous Terrarium Building, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Geographic Information Systems": 1 + "1st Grade Science: Decoding Alpine Ecosystems through Mountainous Terrarium Building, Alpine Plant Identification using pH Soil Test Kits, Altitude Simulators, and Ecosystem Simulation Software.": 1 +"2nd Grade Mathematics: Fraction Multiplication and Division using Grids and Geoboard Techniques with the Application of Fraction Bars": 1 +"Advanced 2nd Grade Mathematics: Understanding Fraction Multiplication and Division through Geoboard and Grids using Number Line Method": 1 +"2nd Grade Mathematics: Enhancing Fraction Multiplication and Division Skills using Geoboard Techniques and Virtual Manipulatives": 1 +"Advanced Mathematics for 2nd Graders: Deep Dive into Fraction Multiplication and Division using Geoboard Techniques and Pattern Blocks": 1 +"2nd Grade Mathematics: Fraction Multiplication and Division Mastery using Geoboard Techniques and Conceptual Subitizing": 1 +"2nd Grade Mathematics: Interactive Fraction Multiplication and Division using Grids and Geoboard Techniques with Base Ten Blocks": 1 +"Comprehensive 2nd Grade Mathematics: Fraction Multiplication and Division using Geoboard Techniques and the Montessori Method": 1 +"2nd Grade Mathematics: Fraction Multiplication and Division Proficiency using Geoboard Techniques and the Number Bond Concept": 1 +"2nd Grade Mathematics: Fraction Multiplication and Division using Grids, Geoboard Techniques and the Singapore Math Approach": 1 +"Progressive 2nd Grade Mathematics: Fraction Multiplication and Division using Geoboard Techniques with Cuisenaire Rods Application.": 1 +"6th Grade Social Studies: Understanding Environmental Conservation through Reforestation using GIS Technology and Ecosystem Services Concept": 1 +"6th Grade Social Studies: Using Drones for Reforestation in Environmental Conservation and Ecosystem Services Study": 1 +"6th Grade Social Studies: Exploring Environmental Conservation through Reforestation using Ecosystem Services and Remote Sensing Technology": 1 +"6th Grade Social Studies: Incorporating Biochar in Reforestation for Environmental Conservation and Ecosystem Services Understanding": 1 +"6th Grade Social Studies: Environmental Conservation through Reforestation using Hydroseeding Technology and Ecosystem Services Concept": 1 +"6th Grade Social Studies: Implementing Environmental Conservation through Reforestation using Biodegradable Planters and Ecosystem Services Concept": 1 +"6th Grade Social Studies: Studying Environmental Conservation through Reforestation using mycorrhizal fungi and the Ecosystem Services Concept": 1 +"6th Grade Social Studies: Reforestation for Environmental Conservation using Tree Spiking Technique and Ecosystem Services Concept": 1 +"6th Grade Social Studies: Applying 3D Printing Technology for Reforestation in Environmental Conservation and Ecosystem Services Study": 1 +"6th Grade Social Studies: Environmental Conservation through Reforestation using Vertical Gardening and Ecosystem Services Concept": 1 +"1st Grade Art: Exploring Primary Colors and Basic Shapes through Collage Creation using Glue Sticks": 1 +"1st Grade Art: Understanding Colors and Geometric Shapes through Collage Creation with Construction Paper": 1 +"1st Grade Art: Mastering Color Wheel and Shapes through Collage Creation using Scissors": 1 +"1st Grade Art: Understanding Tints, Shades and 2D Shapes through Collage Creation with Recycled Materials": 1 +"1st Grade Art: Comprehending Color Theory and Shapes through Collage Creation using Magazines": 1 +"1st Grade Art: Discovering Warm and Cool Colors and Basic Shapes through Collage Creation with Glitter Glue ": 1 +"1st Grade Art: Delving into Color Mixing and Polygon Shapes through Collage Creation using Tissue Paper": 1 +"1st Grade Art: Understanding Colors and Shapes through Collage Creation with Watercolor Paints ": 1 +"1st Grade Art: Learning about Color Gradients and Symmetrical Shapes through Collage Creation using Craft Foam ": 1 +"1st Grade Art: Studying Complementary Colors and 3D Shapes through Collage Creation with Cotton Balls": 1 +"4th Grade Social Studies: Discovering Ancient Persia with Google Earth and Topographic Maps": 1 +"4th Grade Social Studies: Navigating Ancient Persia through GIS (Geographic Information System) and Map-Making": 1 +"4th Grade Social Studies: Understanding Ancient Persia through Cartographic Projections and Topographic Maps": 1 +"4th Grade Social Studies: Exploring Ancient Persia using Digital Map-Making and Topographic Maps": 1 +"4th Grade Social Studies: Unearthing Ancient Persia through Satellite Imagery and Topographic Maps": 1 +"4th Grade Social Studies: Picturing Ancient Persia with 3D Modelling and Map-Making": 1 +"4th Grade Social Studies: Journeying through Ancient Persia using GPS technology and Map-Making": 1 +"4th Grade Social Studies: Exploring Ancient Persia through Historical Analysis and Topographic Maps": 1 +"4th Grade Social Studies: Charting Ancient Persia using CAD (Computer-Aided Design) and Topographic Maps": 1 +"4th Grade Social Studies: Decoding Ancient Persia through Geocoding and Topographic Maps": 1 +"5th Grade Language Arts: Exploring Storytelling and Narrative Structures with Character Development": 1 +"5th Grade Language Arts: Harnessing Digital Technology for Storytelling and Narrative Structures": 1 +"5th Grade Language Arts: Application of Imagery in Storytelling and Narrative Structures": 1 +"5th Grade Language Arts: Storytelling and Narrative Structures using Interactive Whiteboards": 1 +"5th Grade Language Arts: Storytelling and Narrative Structures: A Focus on Plot Twist Techniques": 1 +"5th Grade Language Arts: The Power of Metaphors in Storytelling and Narrative Structures": 1 +"5th Grade Language Arts: Story Arcs in Storytelling and Narrative Structures": 1 +"5th Grade Language Arts: Storytelling and Narrative Structures: Exploring Foreshadowing": 1 +"5th Grade Language Arts: Integrating Dialogue in Storytelling and Narrative Structures": 1 +"5th Grade Language Arts: Using iPad Apps for Storytelling and Narrative Structures": 1 +"5th Grade Science: Exploring The Solar System and Gravity through Telescopes": 1 +"5th Grade Science: Utilizing VR Technology for Understanding The Solar System and Gravity": 1 +"5th Grade Science: The Solar System and the Concept of Gravity with 3D Modelling": 1 +"5th Grade Science: The Solar System, Gravity, and Satellite Imagery": 1 +"5th Grade Science: The Solar System and Gravity: A Deep Dive through Computer Simulations": 1 +"5th Grade Science: The Solar System and Gravity, Explored through Augmented Reality": 1 +"5th Grade Science: The Solar System and Concept of Gravity: An Exploration through Digital Timelines": 1 +"5th Grade Science: The Solar System and Gravity - Learning with Interactive Apps": 1 +"5th Grade Science: The Solar System and Gravity Explored through Space Probes": 1 +"5th Grade Science: Learning The Solar System and Gravity with Planetarium Software.": 1 +"2nd Grade Science: Exploring Amazon Rainforest Habitats Using Go-Pro Documentaries and Drone Technology": 1 +"2nd Grade Science: Discovering Jungle Habitats with Go-Pro Documentaries and Augmented Reality": 1 +"2nd Grade Science: Investigating Rainforest Ecosystems Using Go-Pro Films and Microscope Analysis ": 1 +"2nd Grade Science: Exploring Jungle Habitats Through Go-Pro Documentaries and Satellite Imagery ": 1 +"2nd Grade Science: Uncovering Jungle Habitats Using Go-Pro Documentaries and Infrared Cameras ": 1 +"2nd Grade Science: Studying Jungle Habitats with Go-Pro Documentaries and 3D Printing Models ": 1 +"2nd Grade Science: Learning About Jungle Habitats Using Go-Pro Documentaries and Virtual Field Trips ": 1 +"2nd Grade Science: Diving into Jungle Habitats: Go-Pro Documentaries and the Concept of Biodiversity ": 1 +"2nd Grade Science: Exploring Jungle Habitats Using Go-Pro Documentaries and Solar Powered Sensors ": 1 +"2nd Grade Science: Understanding Jungle Habitats with Go-Pro Documentaries and Hands-On Experimentation": 1 +"4th Grade Mathematics: Fraction Fun with Interactive Google Slides Worksheets ": 1 +"4th Grade Mathematics: Exploring Fractions with Digital Smartboard Activities ": 1 +"4th Grade Mathematics: Fraction Fun with iPad Apps and Digital Worksheets ": 1 +"4th Grade Mathematics: Interactive Fraction Lessons Using Microsoft Excel Worksheets ": 1 +"4th Grade Mathematics: Fraction Fun Utilizing Virtual Reality Technology ": 1 +"4th Grade Mathematics: Fraction Concepts with 3D Printing and Digital Worksheets ": 1 +"4th Grade Mathematics: Fraction Fun with Augmented Reality and Digital Worksheets ": 1 +"4th Grade Mathematics: Fraction Operations with Digital Whiteboard Worksheets ": 1 +"4th Grade Mathematics: Fraction Fun with Coding and Digital Worksheets ": 1 +"4th Grade Mathematics: Fraction Exploration Using Scratch Programming and Digital Worksheets": 1 +"Utilizing Graphing Calculators to Solve Systems of Equations: An In-depth Look at Matrix Method in 11th Grade Algebra": 1 +"Applications of Cramer’s Rule in Systems of Equations: Algebra Fundamentals for 11th Grade Mathematics": 1 +"Algebra Fundamentals: Solving Systems of Equations with Matrix Method using the Gauss-Jordan Elimination Technique in 11th Grade Math": 1 +"Mastery of Row Echelon Form: A Focused Study of Systems of Equations in 11th Grade Algebra": 1 +"Algebra Fundamentals: An Exploration of Systems of Equations Using the Matrix Method and Inverse Matrices in 11th Grade Math": 1 +"11th Grade Math: A Deep Dive into Systems of Equations with the Matrix Method and MATLAB": 1 +"Algebra Fundamentals: Systems of Equations, Matrix Method, and Augmented Matrices in 11th Grade Math": 1 +"Integrating Python Programming to Solve Systems of Equations with Matrix Method in 11th Grade Algebra ": 1 +"Algebra Fundamentals: Understanding Systems of Equations through Matrix Method and Determinants in 11th Grade Mathematics": 1 +"11th Grade Algebra: Unraveling Systems of Equations with Matrix Method and Excel Solver.": 1 +"4th Grade Language Arts: Analyzing Greek Mythology Tales using SMART Board Interactive Whiteboards": 1 +"4th Grade Language Arts: Greek Mythology Tales Exploration using Google Slides on Interactive Whiteboards": 1 +"4th Grade Language Arts: Interactive Whiteboard Study of Greek Mythology Tales with Kahoot Quizzes": 1 +"4th Grade Language Arts: Greek Mythology Tales Dissection using Flipchart on Promethean Interactive Whiteboards": 1 +"4th Grade Language Arts: Greek Mythology Tales Study using Interactive Whiteboards and Padlet Discussions": 1 +"4th Grade Language Arts: Analyzing Greek Mythology Tales using Interactive Whiteboards and Mind Mapping Tools": 1 +"4th Grade Language Arts: Greek Mythology Tales Study Using Interactive Whiteboards and Virtual Reality Exploration": 1 +"4th Grade Language Arts: Greek Mythology Tales Study Using Interactive Whiteboards and Augmented Reality Apps": 1 +"4th Grade Language Arts: Exploring Greek Mythology Tales through Interactive Whiteboards and Digital Storytelling": 1 +"4th Grade Language Arts: Greek Mythology Tales Study using Interactive Whiteboards and Quizlet Flashcards.": 1 +"8th Grade Social Studies: Exploring World Cultures through Geographical Information Systems": 1 +"Understanding Global Diversity: An 8th Grade Social Studies Course Utilizing Virtual Reality ": 1 +"8th Grade Social Studies and World Cultures: Investigating History with Digital Archives ": 1 +"8th Grade Social Studies: A Journey through World Cultures with Interactive Whiteboards ": 1 +"Exploring World Cultures through Social Media: An 8th Grade Social Studies Course ": 1 +"8th Grade Social Studies and World Cultures: Learning through Documentary Filmmaking ": 1 +"Digital Storytelling in 8th Grade Social Studies: A Focus on World Cultures": 1 +"8th Grade Social Studies: Studying World Cultures through Interactive Timelines ": 1 +"8th Grade Social Studies and World Cultures: An Exploration with Augmented Reality": 1 +"8th Grade Social Studies: Engaging World Cultures through Podcasts": 1 +"2nd Grade Art: Exploring Color Theory with Paper Collage and Glue Sticks": 1 +"2nd Grade Art: Basics of Color Theory using Scissors in Collage Making": 1 +"2nd Grade Art: Utilizing Watercolor Paints in Collage for Color Theory": 1 +"2nd Grade Art: Color Theory and Collage Making with Recycled Materials": 1 +"2nd Grade Art: Incorporating Textures in Collage for Understanding Color Theory": 1 +"2nd Grade Art: Basics of Color Theory through 3D Collage Making with Clay": 1 +"2nd Grade Art: Color Theory through Collage Making using Digital Art Software": 1 +"2nd Grade Art: Learning Color Theory with Collage Making and Light Projectors": 1 +"2nd Grade Art: Basics of Color Theory through Collage Making using Mixed Media": 1 +"2nd Grade Art: Exploring Color Theory through Collage Making with Oil Pastels.": 1 +"8th Grade History: The Revolutionary War and the Role of Cannons": 1 +"8th Grade History: The Impact of Printing Press during the Revolutionary War": 1 +"8th Grade History: The Use of Naval Technology in the Revolutionary War": 1 +"8th Grade History: Espionage Techniques during the Revolutionary War": 1 +"8th Grade History: The Revolutionary War and the Importance of Fortifications": 1 +"8th Grade History: The Revolutionary War - Understanding the Role of Muskets": 1 +"8th Grade History: The Revolutionary War and the Influence of the Postal System": 1 +"8th Grade History: The Revolutionary War - Exploration of Battlefield Medicine": 1 +"8th Grade History: The Revolutionary War and the Evolution of Uniforms ": 1 +"8th Grade History: The Revolutionary War - Decoding Secret Messages.": 1 +"1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Rosetta Stone Language Learning.": 1 +"Enhancing Language Skills: 1st Grade Spanish with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Duolingo Exercises.": 1 +"1st Grade Spanish: Comprehensive Learning with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Pimsleur Language Programs.": 1 +"Interactive Spanish Learning: 1st Grade with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Memrise Language Learning.": 1 +"1st Grade Spanish: Fostering Language Skills with Babbel, Pear Deck Flashcards, TPRS Teaching Method and FluentU Video Lessons.": 1 +"1st Grade Spanish: Engaging Language Learning with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Anki Spaced Repetition System.": 1 +"Comprehensive Spanish Course: 1st Grade with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Mondly Language Learning App.": 1 +"1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Quizlet Learning Tools.": 1 +"1st Grade Spanish: Innovative Language Learning with Babbel, Pear Deck Flashcards, TPRS Teaching Method and Lingvist Language Course.": 1 +"Effective Language Learning: 1st Grade Spanish with Babbel, Pear Deck Flashcards, TPRS Teaching Method and iTalki Language Community.": 1 +"5th Grade Art: Introduction to Drawing with Charcoal and Painting - Exploring Gouache with Adobe Photoshop": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Procreate App": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications using iPad": 1 +"5th Grade Art: Introduction to Drawing with Pencils and Painting - Exploring Gouache with Graphic Tablets": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications using Perspective Drawing": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications, Focusing on Color Theory": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications using Wacom Pen Tablets": 1 +"5th Grade Art: Introduction to Drawing with Graphite and Painting - Exploring Gouache with Adobe Illustrator": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with MS Paint: A Basic Approach ": 1 +"5th Grade Art: Introduction to Drawing and Painting - Exploring Gouache with Digital Art Applications, Incorporating Layering Techniques": 1 +"Implementing Suunto’s Training Load Pro and Oculus Rift VR in 5th Grade Football for Enhanced Team Cooperation": 1 +"Applying Suunto’s Training Load Pro and Google Cardboard VR in 5th Grade Basketball to Improve Teamwork": 1 +"Utilizing Suunto’s Training Load Pro and HTC Vive VR in 5th Grade Soccer for Optimized Collaboration": 1 +"Harnessing Suunto’s Training Load Pro and Samsung Gear VR in 5th Grade Baseball for Boosted Team Performance": 1 +"Integrating Suunto’s Training Load Pro and PlayStation VR in 5th Grade Volleyball for Effective Team Strategy": 1 +"Leveraging Suunto’s Training Load Pro and Lenovo Mirage Solo VR in 5th Grade Hockey for Superior Team Dynamics": 1 +"Optimizing 5th Grade Rugby Teamwork with Suunto’s Training Load Pro and Google Daydream VR": 1 +"Advancing 5th Grade Lacrosse Team Collaboration Using Suunto’s Training Load Pro and Oculus Go VR": 1 +"Enhancing 5th Grade Cricket Team Performance with Suunto’s Training Load Pro and Windows Mixed Reality VR": 1 +"Boosting 5th Grade Softball Team Strategies with Suunto’s Training Load Pro and HP Reverb VR": 1 +"5th Grade Language Arts: The Art of Storytelling through Podcasting": 1 +"5th Grade Language Arts: Exploring Narratives with Animation Software": 1 +"5th Grade Language Arts: Storytelling Mastery with Google Slides": 1 +"5th Grade Language Arts: Digital Storytelling using Microsoft Sway": 1 +"5th Grade Language Arts: Crafting Stories with Adobe Spark Video": 1 +"5th Grade Language Arts: Storytelling via Social Media Platforms": 1 +"5th Grade Language Arts: Storytelling with Digital Comics Creation": 1 +"5th Grade Language Arts: Interactive Storytelling with Scratch Programming ": 1 +"5th Grade Language Arts: The Art of Storytelling with Blogging Platforms": 1 +"5th Grade Language Arts: Creating Narratives with Stop Motion Animation.": 1 +"7th Grade Science: Exploring Earth’s Ecology through Microscopic Lifeforms": 1 +"7th Grade Science: Basics of Earth’s Ecology - A Focus on Soil Analysis": 1 +"7th Grade Science: Understanding Earth’s Ecology with Satellite Imaging": 1 +"7th Grade Science: The Role of Hydrology in Earth’s Ecology": 1 +"7th Grade Science: Basics of Earth’s Ecology - Studying Plant Photosynthesis": 1 +"7th Grade Science: Exploring Earth’s Ecology using Geographic Information Systems (GIS)": 1 +"7th Grade Science: Understanding Earth’s Ecology through the Carbon Cycle": 1 +"7th Grade Science: Basics of Earth’s Ecology - Exploring Biodiversity with DNA Barcoding": 1 +"7th Grade Science: Earth’s Ecology and the Impact of Climate Change": 1 +"7th Grade Science: Unveiling Earth’s Ecology through Field Studies": 1 +"3rd Grade Social Studies: Understanding Local Government through Map Reading": 1 +"3rd Grade Social Studies: Learning Local Government Structure with Interactive Software": 1 +"3rd Grade Social Studies: Analyzing our Local Government with Case Studies": 1 +"3rd Grade Social Studies: Understanding Local Government through Role-play Activities": 1 +"3rd Grade Social Studies: Exploring Local Government with Virtual Reality Field Trips": 1 +"3rd Grade Social Studies: Grasping Local Government through Civic Responsibility Projects": 1 +"3rd Grade Social Studies: Examining Local Government through Historical Documents": 1 +"3rd Grade Social Studies: Understanding Local Government through Multimedia Presentations": 1 +"3rd Grade Social Studies: Discovering Local Government with Online Simulation Games": 1 +"3rd Grade Social Studies: Understanding Local Government through the Lens of the Constitution.": 1 +"8th Grade Social Studies and World Cultures: An Exploration with Google Expeditions Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: An In-depth Study with AR Flashcards": 1 +"8th Grade Social Studies and World Cultures: A Journey with ARKit Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: Learning with Microsoft HoloLens Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: An Exploration with Layar Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: A Deep Dive with Vuforia Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: Interactive Learning with Wikitude Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: An Exploration with Blippar Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: A Learning Journey with ZapWorks Augmented Reality": 1 +"8th Grade Social Studies and World Cultures: An Exploration with ARCore Augmented Reality.": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction using Abacus and Number Line Techniques": 1 +"2nd Grade Mathematics: Exploring Addition and Subtraction through Abacus-Based and Flashcards Activities": 1 +"2nd Grade Math: Enhancing Skills in Addition and Subtraction using Abacus and Digital Math Games": 1 +"2nd Grade Math: Excel in Addition and Subtraction through Abacus and Fraction Blocks Activities": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction using Abacus and Montessori Beads Techniques": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Abacus and Tangram Based Hands-on Activities": 1 +"2nd Grade Mathematics: Improving Addition and Subtraction Skills through Abacus and Interactive Whiteboard Activities": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Abacus and LEGO Number Bricks Activities": 1 +"2nd Grade Mathematics: Excelling in Addition and Subtraction using Abacus and Virtual Reality Math Applications": 1 +"2nd Grade Mathematics: Developing Addition and Subtraction Skills through Abacus and Manipulative Cubes Activities.": 1 +"1st Grade Art: Exploring Basic Shapes and Colors with Crayola Crayons": 1 +"1st Grade Art: Discovering Geometric Shapes and Primary Colors using Wax Crayons": 1 +"1st Grade Art: Understanding Basic Shapes and Colors through Digital Art Platforms": 1 +"1st Grade Art: Exploring 2D Shapes and Color Wheel with Crayons": 1 +"1st Grade Art: Creating Art with Basic Shapes and Colors using Crayons and Construction Paper": 1 +"1st Grade Art: Discovering Basic Shapes and Colors using Crayons and Stencils": 1 +"1st Grade Art: Understanding Basic Shapes and the Color Spectrum using Crayons": 1 +"1st Grade Art: Exploring Basic Shapes and RGB Colors with Crayons": 1 +"1st Grade Art: Learning about Basic Shapes and Color Theory using Crayons": 1 +"1st Grade Art: Discovering Basic Shapes and Complementary Colors using Crayons": 1 +"Fostering 2nd Grade Sentence Structure Skills using Adverb Placement with Google Classroom Integration on Kahoot Online Quizzes": 1 +"Enhancing English Skills: A Focus on Adverb Placement in Sentence Structures using Interactive Whiteboards and Kahoot Quizzes for 2nd Graders": 1 +"Second Grade English: Improving Sentence Structure with Adverb Placement through Digital Flashcards on Kahoot Online Quizzes": 1 +"Utilizing Video Tutorials for Adverb Placement in Sentence Structure Development for 2nd Grade English using Kahoot Quizzes": 1 +"Interactive Learning: Using Virtual Reality to Teach Adverb Placement in Sentence Structures for 2nd Grade English on Kahoot": 1 +"Developing 2nd Grade Sentence Structure Skills with Adverb Placement using Kahoot Quizzes and Interactive E-books": 1 +"Strengthening 2nd Grade English Sentence Structures with Adverb Placement using Kahoot Quizzes and Podcasts": 1 +"Enhancing Adverb Placement in 2nd Grade English Sentence Structures using Kahoot Quizzes and Gamification Techniques": 1 +"Incorporating Project-Based Learning in Teaching Adverb Placement for 2nd Grade English Sentence Structures using Kahoot Online Quizzes": 1 +"Developing Sentence Structure Skills with Adverb Placement in 2nd Grade English using Kahoot Quizzes and Augmented Reality Techniques.": 1 +"1st Grade Spanish: Interactive Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Duolingo Language Learning Tool": 1 +"1st Grade Spanish: Online Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Kahoot Quizzes": 1 +"1st Grade Spanish: Immersive Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Virtual Reality Technology": 1 +"1st Grade Spanish: Active Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Trello Project Management": 1 +"1st Grade Spanish: Engaging Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Canva Visual Aids": 1 +"1st Grade Spanish: Collaborative Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Slack Communication Platform": 1 +"1st Grade Spanish: Inclusive Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Microsoft Immersive Reader": 1 +"1st Grade Spanish: Blended Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Edpuzzle Video Lessons": 1 +"1st Grade Spanish: Personalized Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Quizlet Study Sets": 1 +"1st Grade Spanish: Applied Learning with Babbel, Pear Deck Flashcards, Google Classroom Integration and Scratch Coding Projects.": 1 +"2nd Grade Arithmetic and Number Patterns using Abacus": 1 +"2nd Grade Arithmetic and Number Patterns with Introduction to Multiplication Tables": 1 +"2nd Grade Arithmetic and Number Patterns: Learning through Math Manipulatives": 1 +"2nd Grade Arithmetic and Number Patterns: Understanding with Number Lines": 1 +"2nd Grade Arithmetic and Number Patterns: Exploring with Base Ten Blocks": 1 +"2nd Grade Arithmetic and Number Patterns: Focusing on Place Value": 1 +"2nd Grade Arithmetic and Number Patterns: Incorporating Digital Learning Tools": 1 +"2nd Grade Arithmetic and Number Patterns: Applying Real-World Math Concepts": 1 +"2nd Grade Arithmetic and Number Patterns: Discovering through Interactive Whiteboards": 1 +"2nd Grade Arithmetic and Number Patterns: Utilizing Math Apps for Learning": 1 +"2nd Grade Language Arts: Exploring the Magic of Storytelling through Puppetry Using Shadow Puppets": 1 +"2nd Grade Language Arts: Digital Storytelling through Puppetry with Stop Motion Animation": 1 +"2nd Grade Language Arts: Delving into Folk Tales through Puppetry Using Hand Puppets": 1 +"2nd Grade Language Arts: Adventures in Storytelling with Puppetry and Augmented Reality Technology": 1 +"2nd Grade Language Arts: Exploring the Magic of Storytelling through Puppetry with Marionettes": 1 +"2nd Grade Language Arts: Discovering World Literature through Puppetry Using Stick Puppets": 1 +"2nd Grade Language Arts: Storytelling through Puppetry with the Concept of Character Development ": 1 +"2nd Grade Language Arts: Exploring the Magic of Storytelling through Puppetry and Mobile Apps": 1 +"2nd Grade Language Arts: Crafting Narratives through Puppetry and the Art of Plot Structure ": 1 +"2nd Grade Language Arts: Interactive Storytelling through Puppetry Using Voice Over Technology": 1 +"3rd Grade English: Exploring Storytelling with Interactive Whiteboards and Google Slides": 1 +"Journey into Storytelling: 3rd Grade English using Interactive Whiteboards & iPad Apps": 1 +"3rd Grade English: Interactive Storytelling using Smart Boards & Microsoft Teams ": 1 +"Storytelling in 3rd Grade English: Utilizing Interactive Whiteboards & Flipgrid": 1 +"3rd Grade English: Harnessing Storytelling Through Interactive Whiteboards & Kahoot ": 1 +"Interactive Storytelling in 3rd Grade English: Using Whiteboards & Zoom Breakout Rooms": 1 +"3rd Grade English: Storytelling Adventures with Interactive Whiteboards & Prezi": 1 +"Storytelling Journey: 3rd Grade English Using Interactive Whiteboards & Canvas LMS": 1 +"3rd Grade English: Immersive Storytelling using Interactive Whiteboards & Virtual Reality ": 1 +"3rd Grade English: Storytelling Expedition using Interactive Whiteboards & Google Classroom.": 1 +"8th Grade Social Studies: Understanding Democracy and Government Through the Lens of Quantum Computing and Tensorflow Machine Learning": 1 +"8th Grade Social Studies: Exploring Government Systems with Quantum Computing and Python in Machine Learning": 1 +"8th Grade Social Studies: Quantum Computing and Neural Networks in the Context of Democracy and Government": 1 +"8th Grade Social Studies: Democracy and Government Analysis using Quantum Computing and Deep Learning Algorithms": 1 +"8th Grade Social Studies: Deciphering Democracy and Government with Quantum Computing and Supervised Machine Learning": 1 +"8th Grade Social Studies: The Role of Quantum Computing and Natural Language Processing in Understanding Democracy and Government": 1 +"8th Grade Social Studies: Quantum Computing and Reinforcement Learning in Democracy and Government Studies": 1 +"8th Grade Social Studies: Democracy and Government Explored Through Quantum Computing and Predictive Machine Learning": 1 +"8th Grade Social Studies: The Application of Quantum Computing and Unsupervised Learning in Democracy and Government": 1 +"8th Grade Social Studies: Government and Democracy in the Age of Quantum Computing and Machine Learning with Keras.": 1 +"2nd Grade Mathematics: Digital Learning with Prodigy Math Game": 1 +"2nd Grade Mathematics: Enhancing Skills with Khan Academy": 1 +"2nd Grade Mathematics: Fun Learning with SplashLearn": 1 +"2nd Grade Mathematics: Interactive Education using Math Bingo": 1 +"2nd Grade Mathematics: Digital Learning with Fraction Concepts": 1 +"2nd Grade Mathematics: Engaging Studies with Mathway": 1 +"2nd Grade Mathematics: Digital Learning - Exploring Geometrical Shapes": 1 +"2nd Grade Mathematics: Boosting Skills with Number Line Apps": 1 +"2nd Grade Mathematics: Interactive Learning with Zearn Math ": 1 +"2nd Grade Mathematics: Mastering Math Facts with XtraMath": 1 +"2nd Grade Mathematics: Mastering Multiplication with Number Lines using Maths Trainer App and Flashcards": 1 +"2nd Grade Mathematics: Exploring Multiplication through Number Lines with Maths Trainer App and Interactive Whiteboard": 1 +"2nd Grade Mathematics: Unfolding Multiplication through Number Lines using Maths Trainer App and Abacus": 1 +"2nd Grade Mathematics: Learning Multiplication through Number Lines with Maths Trainer App and Digital Puzzles": 1 +"2nd Grade Mathematics: Understanding Multiplication with Number Lines using Maths Trainer App and Virtual Manipulatives ": 1 +"2nd Grade Mathematics: Discovering Multiplication through Number Lines using Maths Trainer App and Online Games": 1 +"2nd Grade Mathematics: Decoding Multiplication with Number Lines using Maths Trainer App and Interactive Worksheets": 1 +"2nd Grade Mathematics: Studying Multiplication through Number Lines with Maths Trainer App and Smartboard Activities": 1 +"2nd Grade Mathematics: Practicing Multiplication through Number Lines with Maths Trainer App and Digital Flip Cards": 1 +"2nd Grade Mathematics: Grasping Multiplication through Number Lines using Maths Trainer App and Online Quizzes": 1 +"Fifth Grade Mathematics: Exploring Fractions with Number Lines and Virtual Manipulatives": 1 +"Making Sense of Fractions through Number Lines: A Focus on Decimal Conversion in Fifth Grade Mathematics": 1 +"Fifth Grade Mathematics: Understanding Fractions Using Number Lines and Interactive Whiteboards": 1 +"Proficiency in Fractions: A Study of Number Lines with the aid of GeoGebra in Fifth Grade Mathematics": 1 +"Fifth Grade Mathematics: Mastering Fractions through Number Lines and iPad Apps": 1 +"Decoding Fractions with Number Lines: Integrating Smartboards in Fifth Grade Mathematics": 1 +"Fifth Grade Mathematics: A Deep Dive into Fractions with Number Lines and Fraction Bars": 1 +"Exploring Fractions through Number Lines and Microsoft Excel: A Fifth Grade Mathematics Approach": 1 +"Fifth Grade Mathematics: Enhancing Fraction Comprehension through Number Lines and Graphing Calculators": 1 +"Fifth Grade Mathematics: Understanding Fractions with Number Lines and the Use of the Montessori Method.": 1 +"Exploring the Influence of Rosin on Bow Hair Friction: A Comprehensive Study for 9th Grade Cello Players Using the Friction Coefficient Concept": 1 +"The Impact of Rosin on String Friction: An In-depth Study for 9th Grade Cello Players Utilizing Tribometers": 1 +"The Role of Rosin in Enhancing String Friction: A Detailed Analysis for 9th Grade Cello Players Through the Lens of Thermal Dynamics": 1 +"Understanding the Effect of Rosin on Cello String Friction: An Experimental Study for 9th Graders Using the Concept of Surface Roughness": 1 +"Deciphering the Impact of Rosin on Bow-to-String Friction: A Comprehensive Guide for 9th Grade Cello Players Using the Hertz Contact Theory": 1 +"The Science of Rosin-Induced String Friction: A Detailed Study for 9th Grade Cello Players Using Spectroscopic Analysis": 1 +"The Function of Rosin in String Friction: A Study for 9th Grade Cello Players Exploring the Concept of Static and Kinetic Friction": 1 +"The Role of Rosin in Modulating String Friction: An In-depth Study for 9th Grade Cello Players Using Microscopic Imaging Techniques": 1 +"Decoding the Role of Rosin in String Friction: A Detailed Study for 9th Grade Cello Players Incorporating the Concept of Mechanical Impedance": 1 +"Unraveling the Impact of Rosin on String Friction: A Comprehensive Study for 9th Grade Cello Players Using Acoustic Signal Analysis": 1 +"9th Grade Social Studies: Investigating Polar Bear Habitats in the Arctic using Wikitude, Microsoft HoloLens, Unity 3D and Google Cardboard VR": 1 +"9th Grade Social Studies: Understanding Arctic Marine Ecosystems through Augmented Reality Using Wikitude, Microsoft HoloLens, Unity 3D and the Concept of Food Chains": 1 +"9th Grade Social Studies: Exploring the Impact of Climate Change on Arctic Marine Life with the aid of Wikitude, Microsoft HoloLens, Unity 3D and Climate Simulation Tools": 1 +"9th Grade Social Studies: Studying Arctic Seals’ Adaptation through Augmented Reality Using Wikitude, Microsoft HoloLens, Unity 3D and Bioinformatics": 1 +"9th Grade Social Studies: A Deep Dive into Arctic Whale Migration Patterns with Wikitude, Microsoft HoloLens, Unity 3D and GIS Mapping": 1 +"9th Grade Social Studies: Tracing the Evolution of Arctic Marine Life using Augmented Reality with Wikitude, Microsoft HoloLens, Unity 3D and Evolutionary Biology Concepts": 1 +"9th Grade Social Studies: Analyzing the Role of Plankton in the Arctic Marine Food Web with Wikitude, Microsoft HoloLens, Unity 3D and Microscopy": 1 +"9th Grade Social Studies: Investigating the Effects of Melting Ice Caps on Arctic Marine Life using Wikitude, Microsoft HoloLens, Unity 3D and Hydrology Concepts": 1 +"9th Grade Social Studies: Understanding the Behavioral Patterns of Arctic Walruses through Augmented Reality Using Wikitude, Microsoft HoloLens, Unity 3D and Ethology": 1 +"9th Grade Social Studies: Exploring Arctic Marine Life and Human Impact through Augmented Reality Using Wikitude, Microsoft HoloLens, Unity 3D and Anthropology Concepts": 1 +"8th Grade Art: Exploring Watercolor Techniques with Adobe Photoshop": 1 +"8th Grade Art: Mastering Watercolor Techniques Using Procreate App": 1 +"8th Grade Art: Discovering Watercolor Techniques with Wacom Drawing Tablet ": 1 +"8th Grade Art: Experimenting Watercolor Techniques with Digital Stylus and iPad": 1 +"8th Grade Art: Navigating Watercolor Techniques through Corel Painter": 1 +"8th Grade Art: Exploring Watercolor Techniques with Augmented Reality Tools": 1 +"8th Grade Art: Harnessing Watercolor Techniques with Microsoft Surface Studio": 1 +"8th Grade Art: Learning Watercolor Techniques with Virtual Reality Art Platforms": 1 +"8th Grade Art: Applying Watercolor Techniques Using 3D Pen Technology": 1 +"8th Grade Art: Delving into Watercolor Techniques with Digital Layering Concept.": 1 +"6th Grade Mathematics: Understanding Fraction Equivalence Using Fraction Tiles Tool, Bar Models & iPad Pro Technology": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Python Programming": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Khan Academy Resources": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Interactive Whiteboard Activities": 1 +"6th Grade Mathematics: Exploring Fraction Equivalence with Fraction Tiles Tool, Visual Models & Geometric Shapes": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Multiplication Tables": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Singapore Math Method": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Smartboard Technology": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery using Fraction Tiles Tool, Visual Models & Number Lines": 1 +"6th Grade Mathematics: Fraction Equivalence Mastery with Fraction Tiles Tool, Visual Models & Montessori Materials.": 1 +"4th Grade Science: Studying the Life Cycle of a Butterfly using Microscopes": 1 +"4th Grade Science: Exploring the Metamorphosis of a Butterfly with Interactive Digital Media": 1 +"4th Grade Science: A Detailed Study of a Butterfly’s Life Cycle, Leveraging Augmented Reality": 1 +"4th Grade Science: Butterfly Life Cycle Observations with a Magnifying Glass": 1 +"4th Grade Science: Using Biological Models to Understand the Butterfly Life Cycle": 1 +"4th Grade Science: Life Cycle of a Butterfly - A Focus on Transformation Process with Timelapse Technology": 1 +"4th Grade Science: Butterfly Life Cycle and Ecosystem Simulation Using Virtual Reality": 1 +"4th Grade Science: Immersive Study of Butterfly Life Cycle Using 3D Printing Models": 1 +"4th Grade Science: Interactive Study of Butterfly Metamorphosis with Mobile Apps": 1 +"4th Grade Science: Butterfly Life Cycle Exploration Through Data Visualization Tools": 1 +"4th Grade Mathematics: The Use of Abacus in Medieval Trade": 1 +"4th Grade Mathematics: The Role of Tally Marks in Medieval Trade": 1 +"4th Grade Mathematics: Understanding Roman Numerals in Medieval Trade": 1 +"4th Grade Mathematics: Using Counting Boards in Medieval Trade": 1 +"4th Grade Mathematics: The Influence of Fractions in Medieval Trade": 1 +"4th Grade Mathematics: The Role of Geometry in Medieval Trade Calculations": 1 +"4th Grade Mathematics: Exploring Mathematical Symbols in Medieval Trade": 1 +"4th Grade Mathematics: The Use of Zero in Medieval Trade Calculations": 1 +"4th Grade Mathematics: The Importance of Ratios in Medieval Trade": 1 +"4th Grade Mathematics: The Use of Square Roots in Medieval Trade Calculations": 1 +"4th Grade Science: In-Depth Study of the Solar System Using Celestia Mobile Application and Telescope Observations": 1 +"4th Grade Science: Detailed Examination of Planetary Movements in the Solar System with Celestia App and Heliocentric Theory": 1 +"4th Grade Science: Exploring the Solar System’s Planets and Moons using Celestia Mobile Application and Virtual Reality Technology": 1 +"4th Grade Science: Comprehensive Study of Solar System’s Asteroids and Comets Using Celestia App and Space Probes Data": 1 +"4th Grade Science: Analyzing Solar System’s Phenomena Using Celestia Mobile Application and Spectroscopy Technique": 1 +"4th Grade Science: Detailed Study of the Solar System’s Gravity Using Celestia App and Newton’s Law of Gravitation": 1 +"4th Grade Science: In-depth Study of Solar System’s Atmospheres Using Celestia Mobile Application and Chromatography": 1 +"4th Grade Science: Detailed Analysis of the Solar System’s Orbits Using Celestia App and Kepler’s Laws of Planetary Motion": 1 +"4th Grade Science: Comprehensive Study of the Solar System’s Size and Distance Using Celestia Mobile App and Scale Models": 1 +"4th Grade Science: Exploring the Solar System’s Climate Using Celestia Application and Climate Simulation Software": 1 +"Advanced 4th Grade Art: Exploring Color Theory with Adobe Illustrator, Color Wheel and Brush Dynamics": 1 +"Comprehensive 4th Grade Art: Mastering Color Theory using Adobe Illustrator, Color Wheel and Layer Masks": 1 +"Advanced 4th Grade Art: Utilizing Adobe Illustrator, Color Wheel and Gradient Tools in Understanding Color Theory": 1 +"In-depth 4th Grade Art: Navigating Color Theory with Adobe Illustrator, Color Wheel and Pen Tools": 1 +"Advanced 4th Grade Art: Understanding Color Theory through Adobe Illustrator, Color Wheel and Clipping Masks": 1 +"Detailed 4th Grade Art: Using Adobe Illustrator, Color Wheel and Raster Effects in Color Theory": 1 +"Advanced 4th Grade Art: Expanding Color Theory Knowledge using Adobe Illustrator, Color Wheel and Pathfinder Panel": 1 +"Specialized 4th Grade Art: Embracing Color Theory with Adobe Illustrator, Color Wheel and Blend Modes": 1 +"Advanced 4th Grade Art: Applying Adobe Illustrator, Color Wheel and the Shape Builder Tool in Color Theory": 1 +"Advanced 4th Grade Art: Unpacking Color Theory using Adobe Illustrator, Color Wheel and Live Paint Bucket Tool": 1 +"7th Grade History: The Role of the Trojan Horse in Ancient Greek Siege Warfare": 1 +"The Impact of the Ballista in 7th Grade History: Ancient Greek Siege Warfare": 1 +"7th Grade History: The Advancement of the Catapult in Ancient Greek Siege Warfare": 1 +"Ancient Greek Siege Warfare and the Development of the Battering Ram: 7th Grade History": 1 +"7th Grade History: The Mechanization of the Siege Tower in Ancient Greek Warfare": 1 +"The Impact of the Helepolis in 7th Grade History: Ancient Greek Siege Warfare": 1 +"7th Grade History: The Advancement of the Crossbow in Ancient Greek Siege Warfare": 1 +"The Role of the Onager in 7th Grade History: Ancient Greek Siege Warfare": 1 +"7th Grade History: The Evolution of the War Elephant in Ancient Greek Siege Warfare": 1 +"Ancient Greek Siege Warfare and the Influence of the Scorpio: 7th Grade History": 1 +"6th Grade Art: Mastering Color Theory with the RGB Model and Mixing with Affinity Designer in Digital Art": 1 +"6th Grade Art: Grasping Color Theory and Brush Techniques in Affinity Designer for Digital Art": 1 +"Exploring Color Theory and Gradient Tool in Affinity Designer: A Course for 6th Grade Digital Art": 1 +"6th Grade Art: Utilizing the Swatch Panel in Affinity Designer to Grasp Color Theory in Digital Art": 1 +"6th Grade Digital Art: Grasping Color Theory and Layer Blending with Affinity Designer": 1 +"Understanding Color Theory and Texture Brushes in Affinity Designer: A 6th Grade Art Course": 1 +"6th Grade Art: Harnessing Affinity Designer’s Pixel Persona for Color Theory and Mixing in Digital Art": 1 +"6th Grade Art: Exploring Color Theory and Vector Brushes in Affinity Designer for Digital Art": 1 +"Grasping Color Theory and Pixel Art with Affinity Designer: A Comprehensive Course for 6th Graders": 1 +"6th Grade Art: Grasping Color Theory and Using the Fill Tool in Affinity Designer for Digital Art": 1 +"The Use of the Fodder Shredder in the Revolutionary War Era: Impact on Horse Nutrition and Military Strategies in 8th Grade History": 1 +"Revolutionary War Era: The Consequences of the Corn Crib on Horse Nutrition and Use of Bayonets in 8th Grade History": 1 +"The Revolutionary War Era: The Role of the Corn Crib and the Iron Plow on Horse Nutrition and Military Strategies in 8th Grade History": 1 +"Revolutionary War Era: The Impact of the Corn Crib and Rifling on Horse Nutrition and Military Tactics in 8th Grade History": 1 +"The Revolutionary War Era: Exploring the Corn Crib’s Influence on Horse Nutrition and Cannon Warfare in 8th Grade History": 1 +"Revolutionary War Era: The Effect of the Corn Crib on Horse Nutrition and the Evolution of Cavalry Charges in 8th Grade History": 1 +"The Revolutionary War Era: The Impact of the Corn Crib and Musket Technology on Horse Nutrition and Military Strategies in 8th Grade History": 1 +"Revolutionary War Era: How the Corn Crib Affected Horse Nutrition and Use of Trench Warfare in 8th Grade History": 1 +"The Revolutionary War Era: The Corn Crib’s Influence on Horse Nutrition and the Application of Guerilla Tactics in 8th Grade History": 1 +"Revolutionary War Era: Linking the Corn Crib to Horse Nutrition and the Development of Naval Blockades in 8th Grade History": 1 +"8th Grade Music: Exploring Mozart’s Symphony No. 40 with GarageBand MIDI Sequencers and Yamaha Digital Piano": 1 +"8th Grade Music: Learning Beethoven’s Symphony Structure using Reason DAW and Avid Pro Tools": 1 +"8th Grade Music: Studying Bach’s Fugue Construction with Reaper’s Multitracking Capabilities and Sibelius Notation Software": 1 +"8th Grade Music: Understanding Orchestration in Handel’s Water Music using GarageBand MIDI Sequencers and Apple Logic Pro X": 1 +"8th Grade Music: Analyzing Mendelssohn’s String Quartets with Reason DAW and Finale Notation Software": 1 +"8th Grade Music: Dissecting Chopin’s Orchestration Techniques using Reaper’s Multitracking Capabilities and Steinberg Cubase": 1 +"8th Grade Music: Delving into Haydn’s Concerto Form with GarageBand MIDI Sequencers and Ableton Live": 1 +"8th Grade Music: Examining Schubert’s Lieder Composition using Reason DAW and Propellerhead’s Reason": 1 +"8th Grade Music: Exploring Wagner’s Leitmotif Technique with Reaper’s Multitracking Capabilities and PreSonus Studio One": 1 +"8th Grade Music: Discovering Rossini’s Overture Style using GarageBand MIDI Sequencers and FL Studio.": 1 +"9th Grade Language Arts: Mastering Persuasive Writing with Google Docs Collaboration and Hyperlinks": 1 +"9th Grade Language Arts: Utilizing Commenting Features in Google Docs to Master Persuasive Writing": 1 +"9th Grade Language Arts: Enhancing Persuasive Writing through Google Docs Collaboration and Voice Typing": 1 +"9th Grade Language Arts: Mastering Persuasive Writing with Google Docs Collaboration and Track Changes": 1 +"9th Grade Language Arts: Exploring Persuasive Writing Techniques using Google Docs and Chat Feature": 1 +"9th Grade Language Arts: Perfecting Persuasive Writing with Google Docs and Suggestion Mode": 1 +"9th Grade Language Arts: Master Persuasive Writing with Google Docs Collaboration and Document Version History": 1 +"9th Grade Language Arts: Improving Persuasive Writing through Google Docs Collaboration and Add-ons": 1 +"9th Grade Language Arts: Excelling in Persuasive Writing with Google Docs Collaboration and Integrated Research Tool": 1 +"9th Grade Language Arts: Mastering Persuasive Writing using Google Docs Collaboration and Real-Time Editing.": 1 +"Understanding Cloud Formation: Utilizing Anemometers in 4th Grade Environmental Studies": 1 +"Discovering Rain Cycle: The Role of Rain Gauges in 4th Grade Environmental Studies": 1 +"Navigating Wind Patterns: An Introduction to Wind Vanes for 4th Grade Environmental Studies": 1 +"The Science of Snow: Probing Thermometers in 4th Grade Environmental Studies": 1 +"Unfolding Climate Zones: The Application of Global Positioning Systems (GPS) in 4th Grade Environmental Studies": 1 +"Digging into Earth’s Atmosphere: A Look at Radiosondes for 4th Grade Environmental Studies": 1 +"Tracking Weather Changes: The Use of Weather Satellites in 4th Grade Environmental Studies": 1 +"Decoding Humidity: A Study on Psychrometers for 4th Grade Environmental Studies": 1 +"Grasping Atmospheric Pressure: Exploring Manometers in 4th Grade Environmental Studies": 1 +"The Mystery of Lightning: Implementing Lightning Detectors in 4th Grade Environmental Studies.": 1 +"2nd Grade Mathematics: Utilizing the Flashcard Feature in Maths Trainer App for Multiplication Mastery": 1 +"2nd Grade Mathematics: Reinforcing Multiplication Concepts with Timed Quizzes in Maths Trainer App": 1 +"2nd Grade Mathematics: Harnessing Interactive Games in Maths Trainer App for Multiplication Techniques": 1 +"2nd Grade Mathematics: Using the Whiteboard Tool in Maths Trainer App for Multiplication Exercises": 1 +"2nd Grade Mathematics: Reinforcing Multiplication Concepts with Adaptive Learning Features in Maths Trainer App": 1 +"2nd Grade Mathematics: Leveraging Virtual Manipulatives in Maths Trainer App for Multiplication Understanding": 1 +"2nd Grade Mathematics: Incorporating the Progress Tracking in Maths Trainer App for Continual Improvement in Multiplication": 1 +"2nd Grade Mathematics: Exploring the Voice Assistant Feature in Maths Trainer App for Multiplication Practice": 1 +"2nd Grade Mathematics: Utilizing Real-time Feedback in Maths Trainer App for Confidence in Multiplication": 1 +"2nd Grade Mathematics: Engaging with Animated Lessons in Maths Trainer App to Reinforce Multiplication Concepts": 1 +"6th Grade Mathematics: Simplifying Algebraic Expressions using the FOIL Method with Mathway and Exponents": 1 +"6th Grade Mathematics: Understanding the Power Rule in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Using the Distributive Property in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Leveraging the Quadratic Formula in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Simplifying Algebraic Expressions using the Order of Operations with Mathway and Exponents": 1 +"6th Grade Mathematics: Employing the Binomial Theorem in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Incorporating the Factor Theorem in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Simplifying Algebraic Expressions using Absolute Value with Mathway and Exponents": 1 +"6th Grade Mathematics: Utilizing the Zero-Product Property in Simplifying Algebraic Expressions with Mathway and Exponents": 1 +"6th Grade Mathematics: Simplifying Algebraic Expressions with Mathway, Exponents and the Polynomial Long Division": 1 +"4th Grade Mathematics: Using Abacus in Medieval Trade for Counting": 1 +"4th Grade Mathematics: Applying Roman Numerals in Medieval Trade": 1 +"4th Grade Mathematics: Using Counting Boards and Compass in Medieval Trade": 1 +"4th Grade Mathematics: Exploring Medieval Trade with Counting Boards and Quadrant Tool": 1 +"4th Grade Mathematics: Understanding Medieval Trade through Counting Boards and Astrolabe": 1 +"4th Grade Mathematics: Using Counting Boards and Sundials in Medieval Trade": 1 +"4th Grade Mathematics: Incorporating Counting Boards and Armillary Sphere in Medieval Trade": 1 +"4th Grade Mathematics: Medieval Trade and Counting Boards: The Role of the Cross-Staff": 1 +"4th Grade Mathematics: Using Counting Boards and Alidade in Medieval Trade": 1 +"4th Grade Mathematics: Counting Boards in Medieval Trade: The Influence of the Quadrant": 1 +"4th Grade Geography: Exploring US Regions with Oculus VR, Google Earth, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Discovering US Regions with Oculus VR, Augmented Reality, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Investigating US Regions with Oculus VR, Touch Screen Technology, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Learning about US Regions with Oculus VR, Digital Whiteboards, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Exploring US Regions with Oculus VR, Interactive Maps, and Digital Puzzles": 1 +"4th Grade Geography: Understanding US Regions with Oculus VR, 3D Printing Models, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Studying US Regions with Oculus VR, Gamification Concepts, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Deciphering US Regions with Oculus VR, Videos, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Navigating US Regions with Oculus VR, Mobile Apps, and Interactive Digital Puzzles": 1 +"4th Grade Geography: Unfolding US Regions with Oculus VR, Virtual Field Trips, and Interactive Digital Puzzles": 1 +"Team Sports in Fifth Grade: Understanding Heart Rate Monitors and Suunto’s Training Load Pro for Soccer": 1 +"Fifth Grade Physical Education: An In-Depth Look at Suunto’s Training Load Pro, Polar Smartwatches, and Volleyball ": 1 +"Fifth Grade Physical Education: Enhancing Baseball Skills with Suunto’s Training Load Pro and Garmin Smartwatches": 1 +"Suunto’s Training Load Pro in Fifth Grade P.E: Integration of Apple Watches and Tennis Training ": 1 +"Fifth Grade Team Sports: Exploring Suunto’s Training Load Pro and Samsung Smartwatches for Hockey Training": 1 +"Fifth Grade P.E: Utilizing Suunto’s Training Load Pro and Smartwatches for Football Skills Enhancement ": 1 +"Suunto’s Training Load Pro for Fifth Graders: The Role of Smartwatches and GPS Tracking in Rugby ": 1 +"Fifth Grade P.E: Suunto’s Training Load Pro, Wearable Tech and Lacrosse Training": 1 +"Physical Education in Fifth Grade: Suunto’s Training Load Pro, Smartwatches, and the Application in Cricket Training.": 1 +"11th Grade Mathematics: Introduction to Geometry with Euclidean Concepts": 1 +"11th Grade Mathematics: Exploring Geometry with GeoGebra Software": 1 +"11th Grade Mathematics: Introduction to Geometry and the Pythagorean Theorem": 1 +"11th Grade Mathematics: Geometry - Understanding Area and Perimeter ": 1 +"11th Grade Mathematics: Introduction to Geometry - Working with Circles ": 1 +"11th Grade Mathematics: Geometry - An Introduction to Angles": 1 +"11th Grade Mathematics: Introduction to Geometry with CAD Software": 1 +"11th Grade Mathematics: Geometry - A Look at Polygons": 1 +"11th Grade Mathematics: Introduction to Geometry - Understanding Coordinates and Graphing": 1 +"11th Grade Mathematics: Geometry - A Deep Dive into Trigonometry": 1 +"2nd Grade Health: Exploring Nutrition Basics with Food Plate Games on iPad using Augmented Reality": 1 +"2nd Grade Health: Interactive Learning of Nutrition Basics with Food Plate Games using Tablets and Virtual Reality Technology": 1 +"2nd Grade Health: Learning Nutrition Basics with Food Plate Games on Kindle Fire Tablets utilizing QR Codes": 1 +"2nd Grade Health: Unpacking Nutrition Basics via Food Plate Games on Android Tablets with 3D Modeling": 1 +"2nd Grade Health: Delving into Nutrition Basics with Food Plate Games on Surface Tablets using Gamification Strategies": 1 +"2nd Grade Health: Discovering Nutrition Basics through Food Plate Games on Tablets using AI Chatbots": 1 +"2nd Grade Health: Engaging in Nutrition Basics with Food Plate Games on Tablets through Collaborative Learning Tools": 1 +"2nd Grade Health: Understanding Nutrition Basics with Food Plate Games on Tablets using Interactive Whiteboard Technology": 1 +"2nd Grade Health: Navigating Nutrition Basics with Food Plate Games on Tablets through Cloud-Based Learning Platforms": 1 +"2nd Grade Health: Mastering Nutrition Basics with Food Plate Games on Tablets using Personalized Learning Algorithms": 1 +"3rd Grade Environmental Science: Understanding Photosynthesis with Solar Energy Kits, Hydrometers, and the Role of Carbon Dioxide.": 1 +"Photosynthesis for 3rd Graders: Hands-On Learning with Solar Panels, Soil Moisture Sensors, and Chlorophyll Concentration.": 1 +"Environmental Science for 3rd Grade: Exploring Photosynthesis Using Solar Energy Kits, Moisture Probes, and the Concept of Stomata.": 1 +"3rd Grade Photosynthesis Study: Utilizing Solar Energy Kits, Hygrometers, and the Science of Light Absorption.": 1 +"3rd Grade Environmental Science: Photosynthesis Exploration using Solar Energy Kits, Moisture Meters, and Leaf Anatomy.": 1 +"Advanced Photosynthesis for 3rd Graders: Using Solar Energy Kits, Soil Moisture Gauges, and the Principle of Energy Transformation.": 1 +"3rd Grade Science: Investigating Photosynthesis with Solar Energy Kits, Hydrometers, and the Role of Sunlight.": 1 +"3rd Grade Photosynthesis: Learning with Solar Energy Kits, Soil Moisture Testers, and the Concept of Water Cycle.": 1 +"Photosynthesis in Practice for 3rd Grade: Solar Energy Kits, Moisture Measurement Tools, and Understanding Chloroplasts.": 1 +"3rd Grade Science: Discovering Photosynthesis Through Solar Energy Kits, Soil Humidity Sensors, and the Process of Transpiration.": 1 +"7th Grade Art: Creating Wildlife Portraits with Procreate App & Gaussian Blur on iPad using Apple Pencil": 1 +"7th Grade Art: Developing Wildlife Portraits with Procreate App, Gaussian Blur, and Layering Technique on iPad": 1 +"7th Grade Art: Developing Wildlife Portraits with Procreate App & Gaussian Blur plus Texture Brushes on iPad": 1 +"7th Grade Art: Mastering Wildlife Portraits with Procreate App & Gaussian Blur through Value and Contrast on iPad": 1 +"7th Grade Art: Conceptualizing Wildlife Portraits with Procreate App, Gaussian Blur & Digital Shading Techniques on iPad": 1 +"7th Grade Art: Developing Wildlife Portraits with Procreate App & Gaussian Blur and Utilizing Color Theory on iPad": 1 +"7th Grade Art: Crafting Wildlife Portraits with Procreate App & Gaussian Blur Using Smudge Tools on iPad": 1 +"7th Grade Art: Developing Wildlife Portraits with Procreate App & Gaussian Blur Incorporating Perspective Drawing on iPad": 1 +"7th Grade Art: Developing Wildlife Portraits with Procreate App & Gaussian Blur Utilizing Symmetry on iPad": 1 +"7th Grade Art: Designing Wildlife Portraits with Procreate App & Gaussian Blur and Exploring Composition Rules on iPad": 1 +"Fourth Grade History: Exploring Medieval Illuminated Manuscripts through Quill Pens": 1 +"Fourth Grade History: The Art of Gold Leaf in Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: Understanding Parchment in the Creation of Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: The Role of Magnifying Glasses in Examining Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: The Use of Natural Dyes in Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: The Impact of the Printing Press on Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: The Artistic Techniques of Scribes in Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: Observing Cultural Influences in Medieval Illuminated Manuscripts through Ink Analysis": 1 +"Fourth Grade History: The Importance of Vellum in Medieval Illuminated Manuscripts": 1 +"Fourth Grade History: The Use of Light Boxes in Studying Medieval Illuminated Manuscripts": 1 +"1st Grade Language Arts: Exploring the Alphabet with Flash Animation and Sound Effects": 1 +"Interactive Alphabet Adventure: 1st Grade Language Arts with Augmented Reality": 1 +"The Alphabet Adventure: A 1st Grade Language Arts Course with PowerPoint Animations": 1 +"1st Grade Language Arts: The Alphabet Adventure with Animation and Sound Effects in a Virtual Reality Setting": 1 +"Learning the Alphabet: 1st Grade Language Arts with Stop-Motion Animation and Sound Effects": 1 +"1st Grade Language Arts: The Alphabet Adventure using iPad Apps and Sound Effects": 1 +"The Alphabet Adventure: 1st Grade Language Arts with 3D Modeling and Sound Effects": 1 +"1st Grade Language Arts: The Alphabet Adventure with Interactive Whiteboard Activities and Sound Effects": 1 +"Alphabet Adventure in 1st Grade Language Arts: Incorporating Gamification and Sound Effects": 1 +"1st Grade Language Arts: The Alphabet Adventure with Animation Software and Sound Effects.": 1 +"10th Grade History: An Exploration of the Renaissance and the Impact of the Printing Press": 1 +"Deciphering the Renaissance: Understanding the Role of Linear Perspective in 10th Grade History": 1 +"10th Grade History: Detailed Study of the Renaissance and the Emergence of Oil Painting Techniques": 1 +"The Crossbow and the Renaissance: A Unique Take on 10th Grade History": 1 +"10th Grade History: The Renaissance and the Oil Painting Revolution - A Focus on the Chiaroscuro Technique": 1 +"Renaissance Architecture in 10th Grade History: The Significance of the Dome": 1 +"10th Grade History: Unveiling the Renaissance through the Lens of the Astrolabe": 1 +"The Power of Patronage: The Medici Family’s Impact on the Renaissance in 10th Grade History": 1 +"10th Grade History: The Renaissance and the Oil Painting Revolution - An Insight into the Use of Vanishing Point": 1 +"10th Grade History: The Renaissance and the Impact of Gutenberg’s Printing Press.": 1 +"4th Grade Music: Exploring Handel’s Suites Through Piano Interpretation and the Use of EQ Automation in Pro Tools Software": 1 +"4th Grade Music: Analyzing Handel’s Suites with MIDI Controller and Pro Tools Software": 1 +"4th Grade Music: Interpreting Handel’s Suites Through Piano and Audio Editing Techniques with Pro Tools and Audacity Software": 1 +"4th Grade Music: Unveiling Handel’s Suites Through Piano Interpretation, Pitch Correction and Mix Automation Techniques Using Pro Tools Software": 1 +"4th Grade Music: Deciphering Handel’s Suites Through Piano Interpretation, Time Stretching and Mix Automation Techniques Using Pro Tools Software": 1 +"4th Grade Music: Dissecting Handel’s Suites Through Piano Interpretation, Audio Effects, and Mix Automation Techniques Using Pro Tools Software and FL Studio": 1 +"4th Grade Music: Understanding Handel’s Suites Through Piano Interpretation, Reverb Application and Mix Automation Techniques Using Pro Tools Software": 1 +"4th Grade Music: Studying Handel’s Suites Through Piano Interpretation, Compression Techniques and Mix Automation Using Pro Tools Software": 1 +"4th Grade Music: Interpreting Handel’s Suites Through Piano and Beat Matching Techniques Using Pro Tools Software": 1 +"4th Grade Music: Analyzing Handel’s Suites Through Piano Interpretation, Sound Design and Mix Automation Techniques Using Pro Tools Software and Ableton Live.": 1 +"Exploring Weather Patterns: An Introduction to Rain Gauges, Thermometers, and Barometers in 2nd Grade Science": 1 +"2nd Grade Science: Using Rain Gauges and Thermometers for Weather Analysis and the Role of Anemometers": 1 +"Hands-on Weather Pattern Analysis: An Examination of Rain Gauges, Thermometers, and Weather Maps in 2nd Grade Science": 1 +"2nd Grade Science: Understanding Weather with Rain Gauges, Thermometers, and Doppler Radar Technology": 1 +"A Practical Guide to Weather Pattern Analysis: Rain Gauges, Thermometers, and Weather Satellites in 2nd Grade Science": 1 +"2nd Grade Science: The Use of Rain Gauges, Thermometers, and Hygrometers in Understanding Weather Patterns": 1 +"Investigating Weather: An Introduction to Rain Gauges, Thermometers, and Weather Balloons in 2nd Grade Science": 1 +"2nd Grade Science: Analysing Weather Patterns with Rain Gauges, Thermometers, and Wind Socks": 1 +"2nd Grade Science: A Comprehensive Study of Rain Gauges, Thermometers, and Weather Stations in Weather Pattern Analysis": 1 +"An In-depth Look at Weather Analysis: Rain Gauges, Thermometers, and Cloud Identification in 2nd Grade Science": 1 +"6th Grade Music: Exploring Rhythms and Beats with GarageBand on Digital Audio Workstations": 1 +"6th Grade Music: Mastering Rhythms and Beats through Audacity on Digital Audio Workstations": 1 +"6th Grade Music: Discovering Rhythms and Beats via Logic Pro X on Digital Audio Workstations": 1 +"6th Grade Music: Unfolding Rhythms and Beats using Pro Tools on Digital Audio Workstations": 1 +"6th Grade Music: Investigating Rhythms and Beats with Ableton Live on Digital Audio Workstations": 1 +"6th Grade Music: Learning Rhythms and Beats through FL Studio on Digital Audio Workstations": 1 +"6th Grade Music: Delving into Rhythms and Beats using Cubase on Digital Audio Workstations": 1 +"6th Grade Music: Navigating Rhythms and Beats with Reason on Digital Audio Workstations": 1 +"6th Grade Music: Experimenting Rhythms and Beats through Reaper on Digital Audio Workstations": 1 +"6th Grade Music: Understanding Rhythms and Beats using Bitwig Studio on Digital Audio Workstations": 1 +"7th Grade Language Arts: Analyzing Iambic Pentameter in Walt Whitman’s ’O Captain! My Captain!’ using eBeam Interactive Whiteboards, Google Slides, Socrative Student Response System and Nearpod.": 1 +"7th Grade Language Arts: Dissecting Metaphors in Whitman’s ’Song of Myself’ with eBeam Interactive Whiteboards, Google Slides, Socrative, and Adobe Spark Video.": 1 +"7th Grade Language Arts: Decoding Similes in Whitman’s ’When Lilacs Last in the Dooryard Bloom’d’ using eBeam Interactive Whiteboards, Google Slides, Socrative and Kahoot.": 1 +"7th Grade Language Arts: Identifying Imagery in Whitman’s ’Leaves of Grass’ with eBeam Interactive Whiteboards, Google Slides, Socrative and Padlet.": 1 +"7th Grade Language Arts: Exploring Personification in Whitman’s ’I Hear America Singing’ using eBeam Interactive Whiteboards, Google Slides, Socrative and Prezi.": 1 +"7th Grade Language Arts: Understanding Symbolism in Whitman’s ’Out of the Cradle Endlessly Rocking’ with eBeam Interactive Whiteboards, Google Slides, Socrative and Quizlet.": 1 +"7th Grade Language Arts: Interpreting Alliteration in Whitman’s ’Crossing Brooklyn Ferry’ using eBeam Interactive Whiteboards, Google Slides, Socrative and MindMeister.": 1 +"7th Grade Language Arts: Investigating Repetition in Whitman’s ’The Sleepers’ with eBeam Interactive Whiteboards, Google Slides, Socrative and Glogster.": 1 +"7th Grade Language Arts: Examining Anaphora in Whitman’s ’There Was a Child Went Forth’ using eBeam Interactive Whiteboards, Google Slides, Socrative and Flipgrid.": 1 +"7th Grade Language Arts: Breaking Down Enjambment in Whitman’s ’A Noiseless Patient Spider’ with eBeam Interactive Whiteboards, Google Slides, Socrative and Canva.": 1 +"Analyzing the Impact of Google’s ’Read Aloud’ Feature on 4th Grade English Students Using Interactive E-books on Google Play Books": 1 +"4th Grade English: The Role of Digital Highlighting Tool in Interactive E-books on Google Play Books": 1 +"The Influence of Text-to-Speech Technology on 4th Graders’ Engagement with Interactive E-books on Google Play Books": 1 +"Exploring the Effectiveness of Google’s ’Translate’ Feature in 4th Grade English Interactive E-books on Google Play Books": 1 +"4th Grade English: Understanding the Impact of In-built Dictionary on Reading Comprehension in Google Play Books’ Interactive E-books ": 1 +"The Role of Google Play Books’ ’Night Light’ Feature in Enhancing 4th Graders’ Reading Experience in Interactive E-books": 1 +"The Impact of Google Play Books’ ’Skim Mode’ on 4th Grade English Students’ Reading Efficiency in Interactive E-books": 1 +"4th Grade English: Enhancing Reading Skills Through the ’Search in Book’ Feature in Interactive E-books on Google Play Books": 1 +"The Effect of Google’s ’Notes’ Feature on 4th Grade Students’ Learning in Interactive English E-books on Google Play Books": 1 +"Understanding the Role of ’Adjustable Text Size’ Feature in 4th Grade English Interactive E-books on Google Play Books": 1 +"3rd Grade English: Understanding Narrative Structures with Story Mapping Techniques and PowerPoint Presentations using Google Docs": 1 +"3rd Grade English: Exploring Character Arcs in Literature through Story Mapping Techniques and Prezi Presentations": 1 +"3rd Grade English: A Deep Dive into Narrative Climax using Story Mapping Techniques and PowerPoint Animations": 1 +"3rd Grade English: Analyzing Plot Progression with Story Mapping Techniques and PowerPoint SmartArt Graphics": 1 +"3rd Grade English: Unraveling Story Themes using Story Mapping Techniques and Canva Presentations": 1 +"3rd Grade English: Mastering Conflict Resolution in Narratives through Story Mapping Techniques and PowerPoint Slide Shows": 1 +"3rd Grade English: Exploring Narrative Settings with Story Mapping Techniques and PowerPoint Transitions": 1 +"3rd Grade English: The Art of Storytelling: Narrative Exploration with Story Mapping Techniques and PowerPoint using iPads": 1 +"3rd Grade English: Plot and Character Interactions in Narratives using Story Mapping Techniques and PowerPoint 3D Models": 1 +"3rd Grade English: Fostering Imagination: Narrative Exploration using Story Mapping Techniques and PowerPoint Presentations on Chromebooks.": 1 +"7th Grade Language Arts: Employing Nearpod, Quizlet, and Google Slides on iPads for Comprehensive Study of Keats’s Odes in Digital Presentations": 1 +"7th Grade Language Arts: Using Nearpod and Quizlet along with Kahoot! on iPads for In-depth Study of Pindaric Odes in Digital Presentations": 1 +"7th Grade Language Arts: Leveraging Nearpod, Quizlet, and Prezi on iPads for Thorough Analysis of Horatian Odes in Digital Presentations": 1 +"7th Grade Language Arts: Utilizing Nearpod, Quizlet, and Padlet on iPads to Explore Anacreontic Odes in Digital Presentations": 1 +"7th Grade Language Arts: Harnessing Nearpod, Quizlet, and Trello on iPads for Detailed Study of Sapphic Odes in Digital Presentations": 1 +"7th Grade Language Arts: Implementing Nearpod, Quizlet, and Notability on iPads for Profound Study of Irregular Odes in Digital Presentations": 1 +"7th Grade Language Arts: Using Nearpod, Quizlet, and VoiceThread on iPads for Intensive Study of Homeric Odes in Digital Presentations": 1 +"7th Grade Language Arts: Incorporating Nearpod, Quizlet, and Skype on iPads for Extensive Study of Choral Odes in Sophocles’s Antigone in Digital Presentations": 1 +"7th Grade Language Arts: Applying Nearpod, Quizlet, and Google Forms on iPads for In-depth Study of Odes in Classic Literature in Digital Presentations": 1 +"7th Grade Language Arts: Combining Nearpod, Quizlet, and Microsoft Teams on iPads for In-depth Study of Odes in Modern Poetry in Digital Presentations": 1 +"2nd Grade Introduction to Algebra: Exploring Quadratic Functions with Graphing Calculators": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions and the Concept of Roots": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions Analysis using Microsoft Excel": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions Explored through Python Programming": 1 +"2nd Grade Introduction to Algebra: Understanding Quadratic Functions with Geogebra": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions and the Principle of Completing the Square": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions and the Quadratic Formula Unveiled": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions Explored through Interactive Math Games": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions and Factoring Techniques": 1 +"2nd Grade Introduction to Algebra: Quadratic Functions: A Deep Dive into Parabolas.": 1 +"8th Grade Science: Data Analysis and Interpretation using MATLAB with SPSS Integration and Python Coding": 1 +"8th Grade Science: Data Analysis using MATLAB and SPSS Integration for Machine Learning": 1 +"8th Grade Science: Data Interpretation using MATLAB with SPSS Integration and Tableau Visualization": 1 +"8th Grade Science: MATLAB and SPSS Integration for Data Analysis and Interpretation using R Programming": 1 +"8th Grade Science: Data Analysis and Interpretation using MATLAB, SPSS Integration and SQL for Database Management": 1 +"8th Grade Science: Data Analysis using MATLAB with SPSS Integration and Excel Spreadsheets": 1 +"8th Grade Science: MATLAB and SPSS Integration for Data Analysis and Application in Artificial Intelligence": 1 +"8th Grade Science: Data Analysis using MATLAB with SPSS Integration and Apache Hadoop for Big Data": 1 +"8th Grade Science: Data Interpretation using MATLAB with SPSS Integration and Statistical Hypothesis Testing": 1 +"8th Grade Science: Data Analysis using MATLAB, SPSS Integration and Google Analytics for Web Data Interpreting": 1 +"Physics: Studying Friction Through Drag Coefficient Experiments Using Air Tables and Velocity Sensors": 1 +"Physics: Exploring Friction Through Drag Coefficient Experiments Using Air Tables and Accelerometers": 1 +"Physics: Investigating Friction Through Drag Coefficient Experiments Using Air Tables and Laser Measuring Tools": 1 +"Physics: Understanding Friction Through Drag Coefficient Experiments Using Air Tables and Infrared Thermography": 1 +"Physics: Analyzing Friction Through Drag Coefficient Experiments Using Air Tables and Pressure Mapping Technology": 1 +"Physics: Learning About Friction Through Drag Coefficient Experiments Using Air Tables and High-Speed Cameras": 1 +"Physics: Grasping Friction Through Drag Coefficient Experiments Using Air Tables and Force Sensors": 1 +"Physics: Unraveling Friction Through Drag Coefficient Experiments Using Air Tables and Friction Pendulums": 1 +"Physics: Delving into Friction Through Drag Coefficient Experiments Using Air Tables and Surface Profilometers": 1 +"Physics: Deducing Friction Through Drag Coefficient Experiments Using Air Tables and Microscopy Techniques.": 1 +"Utilizing ArcGIS in Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins.": 1 +"GIS and Digital Mapping with Python: A Geographic Study of Ten International Music Genres Origins.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins using QGIS Software.": 1 +"Exploring International Music Genres Origins with GIS and AutoCAD Digital Mapping.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins through Esri’s Geodatabase.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins using Remote Sensing.": 1 +"GIS and Digital Mapping: Application of Geocoding in Exploring Ten International Music Genres Origins.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins using Spatial Analysis.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins with MapInfo Pro.": 1 +"GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins using Cartographic Modeling.": 1 +"Computer Science for Young Minds: Creating Interactive Stories with Scratch and Python": 1 +"Storytelling for Beginners: Using Scratch and Blockly in Computer Science": 1 +"Interactive Storytelling with Scratch: An Introduction to Coding for Kids": 1 +"Coding for Young Minds: Using Scratch and Raspberry Pi for Interactive Storytelling": 1 +"Scratch Programming for Kids: Building Interactive Stories with JavaScript": 1 +"Computer Science for Kids: Exploring Interactive Storytelling with Scratch and HTML": 1 +"Fun with Scratch: Combining Interactive Storytelling and Basic Algorithms for Young Minds": 1 +"Scratch Storytelling: Integrating Computer Science Concepts with CSS ": 1 +"Interactive Narratives for Young Minds: Using Scratch and Arduino in Computer Science": 1 +"Computer Science for Beginners: Developing Interactive Stories with Scratch and SQL": 1 +"5th Grade Science: Exploring Photosynthesis in Botany with Microscopes": 1 +"5th Grade Science: Adventures in Botany: An Introduction to Cellular Respiration": 1 +"5th Grade Science: Understanding Plant Anatomy through Dissection in Botany": 1 +"5th Grade Science: Adventures in Botany: Exploring Transpiration using Hydrometers": 1 +"5th Grade Science: Adventures in Botany: A Journey through Plant Evolution": 1 +"5th Grade Science: Investigating Botany: The Role of Chlorophyll in Photosynthesis": 1 +"5th Grade Science: Adventures in Botany: Discovering Plant Reproduction using Microscopic Technology": 1 +"5th Grade Science: Adventures in Botany: Studying Tropisms with Time-lapse Photography": 1 +"5th Grade Science: Adventures in Botany: Unveiling Seed Germination Processes": 1 +"5th Grade Science: Adventures in Botany: Observing Plant Growth with Digital Calipers.": 1 +"Fifth Grade Science: Exploring Ecology through Microscopic Organisms": 1 +"Fifth Grade Science: An Introduction to Ecology using Quadrat Sampling": 1 +"Fifth Grade Science: Understanding Ecology with GIS Technology": 1 +"Fifth Grade Science: Delving into Ecology through Soil Analysis": 1 +"Fifth Grade Science: Introduction to Ecology using Biotic Indexes": 1 +"Fifth Grade Science: Investigation into Ecology with pH Testing": 1 +"Fifth Grade Science: Ecology Exploration through Population Sampling": 1 +"Fifth Grade Science: Understanding Ecology using Trophic Levels": 1 +"Fifth Grade Science: Exploring Ecology with the Concept of Biodiversity": 1 +"Fifth Grade Science: Delving into Ecology using Food Chain Analysis": 1 +"4th Grade Physical Education: Fundamentals of Tennis and Racket Handling": 1 +"4th Grade Physical Education: Basics of Individual Sports focusing on Swimming Techniques": 1 +"4th Grade Physical Education: Fundamentals of Individual Sports - Understanding Basketball Dribbling": 1 +"4th Grade Physical Education: Individual Sports - Soccer Ball Control Techniques": 1 +"4th Grade Physical Education: Fundamentals of Individual Sports - Introduction to Volleyball Serving": 1 +"4th Grade Physical Education: Fundamentals of Individual Sports - The Art of Badminton Swing": 1 +"4th Grade Physical Education: Individual Sports - Scoring Techniques in Table Tennis": 1 +"4th Grade Physical Education: Fundamentals of Individual Sports - Track Running Techniques": 1 +"4th Grade Physical Education: Individual Sports - Baseball Batting Basics": 1 +"4th Grade Physical Education: Fundamentals of Individual Sports - Archery Safety and Techniques": 1 +"5th Grade History: Ancient Egyptian Pyramids and Their Construction Techniques": 1 +"5th Grade History: The Role of Fire in Prehistoric Civilizations": 1 +"5th Grade History: Study of Ancient Greek Democracy and Its Impact": 1 +"5th Grade History: The Use of the Wheel in Ancient Civilizations": 1 +"5th Grade History: The Concept of Timekeeping in Ancient Civilizations": 1 +"5th Grade History: Study of Ancient Roman Aqueducts and Their Function": 1 +"5th Grade History: The Importance of Agriculture in Early Civilizations": 1 +"5th Grade History: Understanding Ancient Mesopotamian Writing Systems": 1 +"5th Grade History: Ancient Chinese Inventions and Their Influence": 1 +"5th Grade History: The Use of Metal in Ancient Civilizations.": 1 +"8th Grade Language Arts: Mastering Persuasive Essays with Peer Review Strategies Using Google Docs": 1 +"Achieving Excellence in 8th Grade Language Arts: Persuasive Essays Mastery through Peer Review Strategies and Microsoft Word Tools": 1 +"8th Grade Language Arts: Enhancing Persuasive Essays through Peer Review Strategies and Grammarly Insights": 1 +"8th Grade Language Arts: Mastering Persuasive Essays with Peer Review Strategies and Turnitin Originality Checks": 1 +"Advanced 8th Grade Language Arts: Persuasive Essays Mastery with Peer Review Strategies & Interactive Whiteboards": 1 +"8th Grade Language Arts: Persuasive Essays Proficiency using Peer Review Strategies and Padlet Collaborative Tool": 1 +"8th Grade Language Arts: Mastering Persuasive Essays with Peer Review Strategies and the Socrative Response System": 1 +"8th Grade Language Arts: Perfecting Persuasive Essays through Peer Review Strategies and the Use of Prezi Presentations": 1 +"8th Grade Language Arts: Excelling in Persuasive Essays with Peer Review Strategies & Kahoot! Quizzes": 1 +"8th Grade Language Arts: Mastering Persuasive Essays through Peer Review Strategies and VoiceThread Audio Feedback.": 1 +"10th Grade Art: Exploring Adobe Illustrator in Digital Art through Vector Graphics": 1 +"10th Grade Art: Introduction to Digital Art & Vector Graphics Using CorelDRAW": 1 +"10th Grade Art: Getting Started with Inkscape for Digital Art and Vector Graphics": 1 +"10th Grade Art: Understanding Vector Graphics with Adobe Freehand in Digital Art": 1 +"10th Grade Art: Embracing Xara Designer for Digital Art and Vector Graphics Creation": 1 +"10th Grade Art: An Insight into Digital Art through Vector Graphics Using Sketch": 1 +"10th Grade Art: Affinity Designer for Digital Art: A Deep Dive into Vector Graphics": 1 +"10th Grade Art: Mastering Vector Graphics in Digital Art using Gravit Designer": 1 +"10th Grade Art: Exploring the World of Digital Art through Vector Graphics with Vectr": 1 +"10th Grade Art: A Comprehensive Study of Digital Art through Vector Graphics Using Canvas.": 1 +"2nd Grade Social Studies: Exploring Communities with Historical Maps and Compasses ": 1 +"Understanding Communities in 2nd Grade Social Studies through Cartographic Analysis": 1 +"2nd Grade Social Studies: Delineating Communities with Historical Maps and GIS technology ": 1 +"Interactive Study of Communities: 2nd Grade Social Studies through Historical Maps and Digital Archives": 1 +"2nd Grade Social Studies: Comprehending Communities using Historical Maps and VR Technology ": 1 +"Deciphering Communities: 2nd Grade Social Studies with Historical Maps and Atlas": 1 +"2nd Grade Social Studies: Analyzing Communities through Historical Maps and Geospatial Technology": 1 +"Understanding Communities in 2nd Grade Social Studies: A Journey Through Time with Historical Maps and Time-Lapse Technology ": 1 +"2nd Grade Social Studies: Unveiling Communities with Historical Maps and 3D Modelling": 1 +"2nd Grade Social Studies: Interpreting Communities through Historical Maps and Augmented Reality Technology": 1 +"Analyzing Rhetorical Devices in 9th Grade Persuasive Writing": 1 +"Understanding Logical Fallacies in Ninth Grade Argumentative Essays": 1 +"Dissecting Persuasive Appeals in 9th Grade Writing Using Textual Evidence": 1 +"Probing Ethos, Pathos, Logos in Ninth Grade Argumentative Writing": 1 +"Exploring Counter-arguments in Ninth Grade Persuasive Texts": 1 +"Investigating Use of Metaphors in 9th Grade Argumentative Writing": 1 +"Deconstructing Propaganda Techniques in 9th Grade Persuasive Writing": 1 +"Unveiling Emotional Manipulation in Ninth Grade Argumentative Essays": 1 +"The Role of Analogies in Ninth Grade Persuasive Writing": 1 +"Scrutinizing Persuasive Techniques in 9th Grade Writing Using Data Analysis.": 1 +"Utilizing Online Resources to Explore 20th Century Cultural Movements Through Fashion in 4th Grade Social Studies": 1 +"4th Grade Social Studies: Analyzing 20th Century Fashion Trends with Digital Imaging to Understand Cultural Movements": 1 +"Investigating 20th Century Cultural Shifts Through Fashion using Virtual Reality in 4th Grade Social Studies": 1 +"4th Grade Social Studies: Decoding 20th Century Cultural Movements with AI Analysis Through Fashion Digital Archives": 1 +"4th Grade Social Studies: Unraveling 20th Century Cultural Dynamics Through Fashion using Interactive Digital Libraries": 1 +"4th Grade Social Studies: Mapping 20th Century Cultural Movements Through Fashion using Geographic Information Systems": 1 +"Navigating 20th Century Cultural Movements Through Fashion using Digital Storytelling in 4th Grade Social Studies": 1 +"4th Grade Social Studies: Tracing 20th Century Cultural Movements Through Fashion with Data Visualization in Digital Archives": 1 +"4th Grade Social Studies: Examining 20th Century Cultural Movements Through Fashion using Augmented Reality Digital Archives": 1 +"4th Grade Social Studies: Exploring 20th Century Cultural Movements Through Fashion using 3D Printing Technology in Digital Archives.": 1 +"4th Grade Introduction to Fractions using Fraction Circles and Number Lines": 1 +"Exploring Fractions with Fraction Circles in 4th Grade using Interactive Whiteboards": 1 +"Introduction to Fractions through Fraction Circles: A 4th Grade Course on Decimal Equivalents ": 1 +"4th Grade Course on Fractions: Understanding with Fraction Circles and Manipulatives": 1 +"4th Grade Fraction Mastery with Fraction Circles and Flash Cards": 1 +"Fraction Circles and Educational Apps: A 4th Grade Introduction to Fractions": 1 +"Detailed 4th Grade Course: Understanding Fractions with Fraction Circles and Worksheets": 1 +"4th Grade Fraction Basics: Using Fraction Circles and Digital Tools": 1 +"Fraction Circles and Fraction Bars: A Detailed 4th Grade Introduction to Fractions": 1 +"Implementing Fraction Circles for 4th Grade Fraction Introduction: A Focus on Visual Learning.": 1 +"Superior 3rd Grade Mathematics: Advanced Division Techniques with Partitioning and Oculus VR Tools": 1 +"Interactive 3rd Grade Math: Virtual Reality Division using Partitioning and Google Cardboard": 1 +"Progressive 3rd Grade Math: Teaching Division through Partitioning and PlayStation VR Tools": 1 +"Superior 3rd Grade Mathematics: Division Mastery using Partitioning and Augmented Reality Tools": 1 +"Advanced 3rd Grade Mathematics: Division Techniques with Partitioning and Leap Motion Controllers": 1 +"Superior 3rd Grade Mathematics: Division Techniques using Long Division and Virtual Reality Tools": 1 +"Enhanced 3rd Grade Mathematics: Division Skills using Partitioning and VR Headsets": 1 +"Innovative 3rd Grade Mathematics: Division Strategies using Partitioning and Haptic Gloves": 1 +"Superior 3rd Grade Mathematics: Division Techniques using Partitioning, Virtual Reality Tools and Math Manipulatives": 1 +"Immersive 3rd Grade Mathematics: Division Techniques using Partitioning and 3D Projection Technology.": 1 +"3rd Grade Mathematics: Applying Google Sheets for Advanced Multiplication and Division on Google Classroom": 1 +"3rd Grade Mathematics: Enhancing Division Skills using Google Drawings and Khan Academy on Google Classroom": 1 +"Using Google Drawings for 3rd Grade Multiplication and Division: Exploring Fractions on Google Classroom": 1 +"3rd Grade Mathematics: Boosting Multiplication Skills with Google Drawings and Prodigy Game on Google Classroom": 1 +"Advanced 3rd Grade Mathematics: Google Drawings for Multiplication and Division with Decimals on Google Classroom": 1 +"3rd Grade Mathematics: Division Mastery through Google Drawings and BrainPOP on Google Classroom": 1 +"3rd Grade Mathematics: Enhancing Multiplication using Google Drawings and iXL Learning on Google Classroom": 1 +"3rd Grade Mathematics: Google Drawings for Multiplication and Division - A Focus on Word Problems on Google Classroom": 1 +"3rd Grade Mathematics: Google Drawings for Problem Solving in Multiplication and Division on Google Classroom": 1 +"3rd Grade Mathematics: Google Drawings and Math Playground for Developing Division Skills on Google Classroom": 1 +"1st Grade PE: Team Sports & Volleyball Serving Techniques with Cone Training & Motion Sensor Technology": 1 +"Physical Education for 1st Grade: Volleyball Serving Techniques & Team Sports using Cone Training & Augmented Reality Applications": 1 +"Elementary Physical Education: 1st Grade Volleyball Skills & Team Sports with Cone Training & Kinect Sports Interactive Games": 1 +"1st Grade Team Sports & Volleyball Techniques: Cone Training & Virtual Reality Training with Haptic Feedback Tools": 1 +"PE for 1st Graders: Volleyball Serving & Team Sports Mastery with Cone Training & Virtual Reality Goggles": 1 +"Advanced PE for 1st Grade: Team Sports & Volleyball Serving using Cone Drills & Virtual Reality Training with Tactile Response Gear": 1 +"1st Grade Physical Education: Cone Training for Volleyball Serving & Team Sports, Utilizing Virtual Reality & AI Coaches": 1 +"Elite 1st Grade PE: Team Sports & Volleyball Serving Techniques with Cone Training & Virtual Reality Training with Smart Ball Technology": 1 +"1st Grade Sports Education: Team Sports & Volleyball Serving Techniques with Cone Training & VR Training with Performance Tracking Systems": 1 +"1st Grade PE Advanced Course: Team Sports & Volleyball Techniques with Cone Training & Virtual Reality Training Using Biofeedback Devices.": 1 +"2nd Grade English: Improving Preposition Usage with Google Slides & Quizlet Flashcards": 1 +"Enhancing Sentence Structure in 2nd Grade English: Utilizing Prezi & Interactive Whiteboards": 1 +"English for 2nd Graders: Preposition Mastery with Kahoot Quizzes & Quizlet Flashcards": 1 +"2nd Grade English: Preposition Enhancement Using Flipgrid Videos & Interactive Whiteboards": 1 +"2nd Grade English: Intensifying Preposition Use with Padlet Boards & Quizlet Flashcards": 1 +"English Language Skills for 2nd Grade: Preposition Practice using SMART Boards & Flashcards": 1 +"2nd Grade English: Sentence Improvement through Prepositions with Microsoft Teams & Interactive Whiteboards": 1 +"Advanced English for 2nd Graders: Focusing on Prepositions with Edmodo & Quizlet Flashcards": 1 +"English for 2nd Grade: Strengthening Preposition Use with ClassDojo & Interactive Whiteboards": 1 +"2nd Grade English: Refining Prepositions in Sentences using Google Classroom & Quizlet Flashcards": 1 +"3rd Grade Elementary: Exploring Multiplication Concepts with LEGO Bricks and Abacus Calculation using Number Lines": 1 +"3rd Grade Elementary: Applying Multiplication Concepts through Object Grouping with LEGO Bricks and Digital Abacus Software": 1 +"3rd Grade Elementary: Mastering Multiplication Concepts through LEGO Bricks Grouping and Abacus Calculation with Math Manipulatives": 1 +"3rd Grade Elementary: Learning Multiplication through LEGO Brick Grouping and Abacus Calculation using Visual Aids": 1 +"3rd Grade Elementary: Applying Multiplication Concepts through Object Grouping with LEGO Bricks, Abacus Calculation, and Grid Paper": 1 +"3rd Grade Elementary: Understanding Multiplication through LEGO Bricks and Abacus Calculation using Fraction Bars": 1 +"3rd Grade Elementary: Developing Multiplication Skills with LEGO Bricks and Abacus Calculation using Interactive Whiteboards": 1 +"3rd Grade Elementary: Applying Multiplication Concepts through LEGO Brick Grouping, Abacus Calculation, and Educational Apps": 1 +"3rd Grade Elementary: Exploring Multiplication with LEGO Bricks, Abacus Calculation, and Tangible Math Tools": 1 +"3rd Grade Elementary: Practical Multiplication Learning through LEGO Bricks, Abacus Calculation, and Digital Math Games": 1 +"4th Grade Mathematics: Utilizing iPads for Fraction Addition and Subtraction with Like Denominators": 1 +"4th Grade Math: Exploring Fraction Addition and Subtraction on Samsung Tablets with Same Denominators ": 1 +"Mathematics in 4th Grade: The Role of Kindle Fire in Learning Fraction Addition and Subtraction using Like Denominators": 1 +"4th Grade Numeracy: Lenovo Tablets and Fraction Addition/Subtraction with Same Denominators": 1 +"4th Grade Math: Fraction Addition and Subtraction on Microsoft Surface Tablets using Like Denominators": 1 +"Fraction Addition and Subtraction with Like Denominators: A 4th Grade Math Course Using Chromebooks": 1 +"Mathematics 4th Grade: Learning Fraction Addition and Subtraction with the Aid of Interactive Whiteboards and Tablets": 1 +"4th Grade Mathematics: Using Online Flashcards for Fraction Addition and Subtraction on Tablets ": 1 +"4th Grade Math: Fraction Addition and Subtraction with Like Denominators using Google Classroom and Tablets": 1 +"Mathematics for 4th Graders: Fraction Addition and Subtraction through Educational Apps on Tablets": 1 +"9th Grade Health: Understanding Macronutrients via Nutritional Biochemistry through DNA Sequencing and Focusing on BMR Calculation": 1 +"9th Grade Health: Examining Macronutrients using Nutri-Genomics with Microscopy and a Focus on BMR Calculation": 1 +"9th Grade Health: Deciphering Macronutrients through Nutritional Biochemistry using Nutri-Genomics with Emphasis on BMR Calculation using Calorimetry": 1 +"9th Grade Health: Analysis of Macronutrients via Nutritional Biochemistry using Nutri-Genomics and Accelerometry in BMR Calculation": 1 +"9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using PCR Testing and Nutri-Genomics with a Focus on BMR Calculation": 1 +"9th Grade Health: Decoding Macronutrients through Nutritional Biochemistry using Nutri-Genomics and Bioelectrical Impedance Analysis for BMR Calculation": 1 +"9th Grade Health: Interpreting Macronutrients using Nutritional Biochemistry and Nutri-Genomics with a Focus on BMR Calculation via Metabolic Chambers": 1 +"9th Grade Health: Studying Macronutrients through Nutritional Biochemistry using Nutri-Genomics and Dual-Energy X-ray Absorptiometry in BMR Calculation": 1 +"9th Grade Health: Decoding Macronutrients using Nutritional Biochemistry and Nutri-Genomics with a Focus on BMR Calculation through Indirect Calorimetry": 1 +"9th Grade Health: Exploring Macronutrients via Nutritional Biochemistry using Nutri-Genomics and Spectrophotometry in BMR Calculation": 1 +"6th Grade English: Frayer Model Vocabulary Enhancement using Google Classroom": 1 +"Interactive Vocabulary Enhancement with Frayer Model in 6th Grade English using Quizlet": 1 +"6th Grade English: Vocabulary Enrichment with Frayer Model and Oxford Online Dictionaries": 1 +"Vocabulary Enhancement in 6th Grade English: Integrating Frayer Model and Kahoot!": 1 +"6th Grade English: Vocabulary Expansion with Frayer Model and Merriam-Webster Online Dictionaries": 1 +"Vocabulary Boosting in 6th Grade English: Frayer Model and Flashcard Apps": 1 +"6th Grade English: Vocabulary Development with Frayer Model and Interactive Whiteboards": 1 +"Vocabulary Augmentation in 6th Grade English: Frayer Model and Digital Thesaurus Integration": 1 +"6th Grade English: Advanced Vocabulary with Frayer Model and Mind Mapping Tools": 1 +"Vocabulary Enhancement in 6th Grade English: Exploiting Frayer Model and Audible Dictionaries.": 1 +"2nd Grade Algebra Basics: Understanding Number Patterns with Abacus and Number Lines": 1 +"Exploring Number Patterns with Abacus: A Specific Introduction to 2nd Grade Algebra Using Flashcards": 1 +"Introduction to 2nd Grade Algebra: Mastering Number Patterns with Abacus and Manipulatives": 1 +"2nd Grade Algebra: Exploring Number Patterns with Abacus and Digital Tools": 1 +"Understanding Number Patterns: A 2nd Grade Approach to Algebra with Abacus and Fraction Bars": 1 +"2nd Grade Algebra: Exploring Number Patterns using Abacus and Online Math Games": 1 +"Introduction to Algebra for 2nd Graders: Discovering Number Patterns with Abacus and Smartboard Activities": 1 +"2nd Grade Algebra: A Journey through Number Patterns with Abacus and Tangram Puzzles": 1 +"Introduction to Algebra: Enhancing 2nd Grade Number Pattern Skills with Abacus and Geoboard": 1 +"Exploring Algebraic Number Patterns: 2nd Grade Abacus Studies with Addition of Interactive Whiteboard.": 1 +"8th Grade History: Evaluating the Impact of Water Frame in Cotton Mills on River Ecosystems and 10 Possible Solutions": 1 +"The Influence of Water Frame on Cotton Mills: A Deep Dive into its Ecological Consequences and 10 Remedial Measures in 8th Grade History": 1 +"The Role of Water Wheels in the Environmental Impact of Water Frame in 8th Grade History Cotton Mills and 10 Potential Remedies": 1 +"8th Grade History: An Analysis of Water Frame Technology in Cotton Mills and its Impact on Aquatic Life with 10 Possible Remedies": 1 +"Industrial Revolution and Ecosystem: Study of Water Frame Influence in Cotton Mills and 10 Remedial Strategies in 8th Grade History": 1 +"8th Grade History: A Detailed Study of the Water Frame in Cotton Mills, Its Effects on Biodiversity and 10 Potential Natural Remedies": 1 +"The Impact of Water Frame in Cotton Mills on Soil Erosion: A 8th Grade History Course with 10 Potential Remedies": 1 +"8th Grade History: Understanding the Impact of Water Frame on Cotton Mill Workers, Ecosystems and 10 Possible Solutions": 1 +"Impact of Water Frame in Cotton Mills on Local Climate: A Detailed 8th Grade History Course with 10 Potential Remedies": 1 +"The Role of Water Frame in Cotton Mills: A History Lesson for 8th Graders on its Impact on Agriculture and 10 Possible Remedies.": 1 +"4th Grade Language Arts: Enhancing Vocabulary with Crossword Puzzles via Google Classroom and Kahoot! ": 1 +"Language Arts for 4th Grade: Vocabulary Building through Crossword Puzzles using Google Slides ": 1 +"Google Classroom for 4th Grade: Language Arts Vocabulary Enhancement through Crossword Puzzles and Flipgrid ": 1 +"4th Grade Language Arts: Boosting Vocabulary via Crossword Puzzles on Google Classroom with Quizlet Integration ": 1 +"Language Arts in 4th Grade: Crossword Puzzle Vocabulary Building on Google Classroom using Duolingo ": 1 +"4th Grade Language Arts via Google Classroom: Vocabulary Development through Crossword Puzzles and Google Forms ": 1 +"Language Arts for 4th Graders: Expanding Vocabulary using Crossword Puzzles on Google Classroom with Nearpod ": 1 +"Google Classroom Instruction for 4th Grade Language Arts: Vocabulary Augmentation through Crossword Puzzles and EdPuzzle ": 1 +"4th Grade Language Arts: Reinforcing Vocabulary with Crossword Puzzles via Google Classroom using Pear Deck ": 1 +"Google Classroom-based 4th Grade Language Arts: Crossword Puzzle Vocabulary Boosting with the use of Google Docs.": 1 +"Kindergarten: Incorporating Puppetry in Storytelling and Play-Based Learning": 1 +"Kindergarten: Exploring Drama Tools in Storytelling and Play Learning": 1 +"Kindergarten: Storytelling and Exploration Learning with Multisensory Toys": 1 +"Kindergarten: Storytelling in Outdoor Play and Nature Exploration Learning": 1 +"Kindergarten: Storytelling through Art Supplies in Play and Exploration Learning": 1 +"Kindergarten: Utilizing Tech Gadgets in Storytelling and Play-Based Learning": 1 +"Kindergarten: Incorporating Storytelling with Music Instruments in Play and Exploration Learning": 1 +"Kindergarten: Storytelling and Exploration Learning: The Role of Digital Apps": 1 +"Kindergarten: Storytelling in Play and Exploration Learning using Interactive Whiteboards": 1 +"Kindergarten: Storytelling and Exploration Learning with the Use of Educational Robots.": 1 +"Exploring Folktales through Digital Storytelling with PowerPoint: A Second Grade Language Arts Course": 1 +"Second Grade Language Arts: Folktales Exploration via Digital Storytelling using Google Slides": 1 +"Using Scratch for Digital Storytelling of Folktales: A Second Grade Language Arts Course": 1 +"Second Grade Language Arts: Folktales and Digital Storytelling with Prezi": 1 +"Animating Folktales in Second Grade Language Arts: Digital Storytelling with Adobe Spark": 1 +"Second Grade Language Arts: Utilizing Canva for Digital Storytelling of Folktales": 1 +"Digital Storytelling of Folktales using Book Creator: A Second Grade Language Arts Course": 1 +"Second Grade Language Arts: Interactive Folktales with Digital Storytelling using iMovie": 1 +"Creating Folktales through Digital Storytelling with Microsoft Sway: Second Grade Language Arts": 1 +"Second Grade Language Arts: Exploring Folktales with Toontastic 3D Digital Storytelling": 1 +"8th Grade Science: Data Analysis with IBM SPSS and Introduction to Python in AI Applications": 1 +"8th Grade Science: Utilizing SPSS for Advanced Data Analysis and Implementing Machine Learning": 1 +"8th Grade Science: Exploring Data Interpretation through SPSS and Applying Deep Learning Concepts": 1 +"8th Grade Science: Understanding Data through SPSS and the Basics of Neural Networks in AI": 1 +"8th Grade Science: Practical Data Analysis through SPSS and Python Coding for AI Development": 1 +"8th Grade Science: Navigating SPSS for Data Analysis and Principles of Robotics in Artificial Intelligence": 1 +"8th Grade Science: Data Processing with SPSS and Insights in AI using Tensorflow": 1 +"8th Grade Science: SPSS for Scientific Data Analysis and Understanding AI with Python Programming": 1 +"8th Grade Science: Mastering Data Analysis via SPSS and Exploring AI with Machine Learning Algorithms": 1 +"8th Grade Science: In-Depth Data Analysis using SPSS and Introduction to AI with Natural Language Processing.": 1 +"1st Grade Art: Exploring Nature with Pastels and Charcoals: A Dive into Light and Shadow": 1 +"1st Grade Art: Exploring Flora with Pastels: The Art of Light and Shadow": 1 +"1st Grade Art: Drawing Animals with Pastels: Light and Shadow Techniques": 1 +"1st Grade Art: Exploring Nature with Pastels: The Concept of Light Reflection": 1 +"1st Grade Art: Exploring Nature with Pastels and Watercolors: The Play of Light and Shadow": 1 +"1st Grade Art: Exploring Landscapes with Pastels: Incorporating Natural Light and Shadow": 1 +"1st Grade Art: Sketching Nature with Pastels: Mastering Light and Shadow": 1 +"1st Grade Art: Exploring Nature with Pastels: The Science of Light and Shadow": 1 +"1st Grade Art: Exploring Nature with Pastels and Oil Pastels: The Magic of Light and Shadow": 1 +"1st Grade Art: Exploring Nature with Pastels: Understanding the Role of Light and Shadow in Art.": 1 +"4th Grade History: Exploring the American Revolution with PlayStation VR and Google Earth": 1 +"Interactive 4th Grade History: Using PlayStation VR and Oculus Touch to Experience the American Revolution": 1 +"4th Grade History: Living the American Revolution via PlayStation VR and Unity3D software": 1 +"4th Grade History: Immersing in the American Revolution using PlayStation VR and 3D modeling": 1 +"4th Grade History: Journeying through the American Revolution with PlayStation VR and Augmented Reality": 1 +"4th Grade History: Navigating the American Revolution via PlayStation VR and GPS technology": 1 +"4th Grade History: Discovering the American Revolution through PlayStation VR and Interactive Maps": 1 +"4th Grade History: Experiencing the American Revolution through PlayStation VR and 360-degree videos": 1 +"4th Grade History: Unveiling the American Revolution using PlayStation VR and Haptic Feedback": 1 +"4th Grade History: Understanding the American Revolution through PlayStation VR and Real-time Simulation": 1 +"Exploring Newton’s Laws through Force Diagrams in a 6th Grade Course: In-depth studies with Arduino Microcontrollers and Raspberry Pi": 1 +"A 6th Grade Deep Dive into Inertia and Momentum: Application of Newton’s Laws using Force Diagrams, Arduino Microcontrollers and LEGO Mindstorms": 1 +"Investigating Newton’s Laws with Force Diagrams and Arduino Microcontrollers: A 6th Grade Course on Inertia, Momentum, and Accelerometers": 1 +"A 6th Grade Study on Inertia and Momentum: Newton’s Laws Analysis using Force Diagrams, Arduino Microcontrollers, and Vernier Sensors": 1 +"Delving into Newton’s Laws with Arduino Microcontrollers: A 6th Grade Course on Inertia, Momentum, and Force Diagrams featuring 3D Printing": 1 +"A Comprehensive 6th Grade Course on Inertia and Momentum: Newton’s Laws Explored with Force Diagrams, Arduino Microcontrollers, and VR Simulations": 1 +"Arduino Microcontrollers and Inertia: A 6th Grade Course Investigating Newton’s Laws and Momentum using Force Diagrams and Robotics": 1 +"Unraveling Inertia and Momentum in 6th Grade: Newton’s Laws through Force Diagrams and Arduino Microcontrollers with Makey Makey Kits": 1 +"Newton’s Laws in Practice: A 6th Grade Course on Inertia and Momentum using Force Diagrams, Arduino Microcontrollers, and Python Programming": 1 +"A 6th Grade Interactive Course on Inertia, Momentum, and Newton’s Laws: Experiments with Force Diagrams, Arduino Microcontrollers, and Interactive Whiteboards.": 1 +"6th Grade Calculations: Understanding Algebraic Expressions with the aid of Mathway and Pythagorean Theorem": 1 +"Grade 6 Mathematics: Decoding Algebraic Expressions Using Mathway and Venn Diagrams": 1 +"6th Grade Math: Mastering Algebraic Expressions Through Mathway and Quadratic Equations": 1 +"Mathematics for 6th Graders: Learning Algebraic Expressions Using Mathway and the Distributive Property": 1 +"Math for 6th Graders: Grasping Algebraic Expressions With Mathway and Coordinate Geometry": 1 +"6th Grade Algebra: Making Sense of Expressions Using Mathway and Linear Equations": 1 +"Algebra for 6th Graders: Understanding Expressions with Mathway and the Order of Operations": 1 +"Mathematics in 6th Grade: Interpreting Algebraic Expressions Using Mathway and Fractions": 1 +"The World of 6th Grade Math: Deciphering Algebraic Expressions With Mathway and Proportions": 1 +"6th Grade Math Exploration: Simplifying Algebraic Expressions Using Mathway and Factoring Techniques.": 1 +"4th Grade History: Exploring Maya Civilization with VR and Interactive Timelines": 1 +"4th Grade History: Studying Maya Civilization through 3D Models and AI Algorithms": 1 +"Analyzing Maya Civilization in 4th Grade History using Augmented Reality and Interactive Timelines": 1 +"4th Grade History: Maya Civilization Dissection with Coding and AI Algorithms": 1 +"4th Grade History: Maya Civilization Investigation using Microscopes and AI Algorithms": 1 +"Understanding Maya Civilization in 4th Grade History with Drone Technology and Interactive Timelines": 1 +"4th Grade History: Maya Civilization Exploration with Robotics and AI Algorithms": 1 +"4th Grade History: Delving into Maya Civilization with Digital Art Tools and Interactive Timelines": 1 +"4th Grade History: Learning about Maya Civilization with Gamification and AI Algorithms": 1 +"4th Grade History: Maya Civilization Examination with Motion Sensors and Interactive Timelines": 1 +"6th Grade Music: Exploring the Role of Trombones in Wagner’s Operas through Sheet Music Analysis": 1 +"Understanding Symphony Orchestra: A 6th Grade Study of Wagner’s Operas with Audio Technology": 1 +"Symphony Orchestra and Brass Instruments: A Close Look at Trombones in Wagner’s Operas for 6th Grade Music": 1 +"6th Grade Music: An Intensive Study of Trombones in Wagner’s Operas using Music Theory": 1 +"Trombones in Symphony Orchestra: A 6th Grade Exploration of Wagner’s Operas with Conducting Techniques": 1 +"6th Grade Music: An In-depth Examination of Trombones in Wagner’s Operas using Sound Engineering": 1 +"Music and Technology: 6th Grade Study of Symphony Orchestra and Trombones in Wagner’s Operas with Music Production Tools": 1 +"6th Grade Music: The Art of Trombones in Wagner’s Operas and Symphony Orchestra with Instrument Maintenance": 1 +"Digital Music: A 6th Grade Study of Symphony Orchestra and Trombones in Wagner’s Operas using Music Software": 1 +"6th Grade Music: Symphony Orchestra and Trombones, A Study of Wagner’s Operas through the Lens of Music Notation Software": 1 +"6th Grade Physical Science: Understanding Newton’s Laws with Force Diagrams and Inertia Balances": 1 +"6th Grade Physical Science: Mastering Newton’s Laws using Force Diagrams and Accelerometer Technology": 1 +"6th Grade Physical Science: Applying Newton’s Laws with Force Diagrams and Motion Capture Devices": 1 +"6th Grade Physical Science: Learning Newton’s Laws with Force Diagrams and Virtual Reality Simulations": 1 +"6th Grade Physical Science: Exploring Newton’s Laws with Force Diagrams and Friction Analysis": 1 +"6th Grade Physical Science: Demystifying Newton’s Laws with Force Diagrams and Interactive Whiteboards": 1 +"6th Grade Physical Science: Grasping Newton’s Laws through Force Diagrams and Momentum Calculations": 1 +"6th Grade Physical Science: Examining Newton’s Laws with Force Diagrams and Velocity Sensors": 1 +"6th Grade Physical Science: Unraveling Newton’s Laws with Force Diagrams and Laser Measurement Tools": 1 +"6th Grade Physical Science: Studying Newton’s Laws with Force Diagrams and Kinetic Energy Experiments.": 1 +"8th Grade Physical Education: The Science of Basketball and Nutrition’s Role": 1 +"Understanding Volleyball: Video Analysis Tools in 8th Grade Physical Education": 1 +"The Role of Nutrition in 8th Grade Physical Education: A Focus on Swimming": 1 +"Using the V1 Sports Video Analysis Tool in 8th Grade Physical Education: Tennis Insight": 1 +"8th Grade Physical Education: The Science of Soccer, Using Dartfish Video Analysis Tools": 1 +"8th Grade Physical Education: The Science of Sports Biomechanics and Nutrition": 1 +"Applied Nutrition and Hudl Video Analysis in 8th Grade Physical Education: A Baseball Perspective": 1 +"Track and Field in 8th Grade Physical Education: Using Coach’s Eye Video Analysis": 1 +"8th Grade Physical Education: The Science of Gymnastics and the Impact of MyFitnessPal Nutrition Tracking": 1 +"Exploring Football through Polar Team Pro technology in 8th Grade Physical Education.": 1 +"3rd Grade English: Exploring Storytelling through Digital Narratives with iPad Apps": 1 +"Journey into Storytelling: Using PowerPoint in 3rd Grade English Lessons": 1 +"3rd Grade English: Enhancing Storytelling Skills with Digital Animation": 1 +"Interactive Storytelling: 3rd Grade English Lessons with E-Books": 1 +"3rd Grade English: Introduction to Storytelling through Podcasting": 1 +"Digital Storytelling with Adobe Spark in 3rd Grade English": 1 +"3rd Grade English: Journey into Storytelling with Virtual Reality": 1 +"Exploring Storytelling through Video Editing: 3rd Grade English Course": 1 +"3rd Grade English: Storytelling and Narration with Digital Illustration Tools": 1 +"Journey into Storytelling: 3rd Grade English using Interactive Whiteboards": 1 +"4th Grade Language Arts: Analysing Greek Mythology Tales with Podcasts and Audiobooks": 1 +"Exploring Greek Mythology Tales using Podcasts in 4th Grade Language Arts with Interactive Whiteboards": 1 +"4th Grade Language Arts: Greek Mythology Tales Exploration and Interpretation through Podcasts and Video Conferencing": 1 +"Greek Mythology Tales Study with Podcasts and Digital Storytelling in 4th Grade Language Arts": 1 +"4th Grade Language Arts: Greek Mythology Tales Dissection using Podcasts and Online Collaboration Tools": 1 +"Exploration of Greek Mythology Tales in 4th Grade Language Arts: Podcasts and Virtual Reality": 1 +"4th Grade Language Arts: Greek Mythology Tales Exploration with Podcasts and Blogging": 1 +"Greek Mythology Tales in 4th Grade Language Arts: Podcasts and Gamification": 1 +"4th Grade Language Arts: Exploring Greek Mythology Tales using Podcasts and E-Learning Platforms": 1 +"Delving into Greek Mythology Tales in 4th Grade Language Arts: Podcasts and Augmented Reality": 1 +"3rd Grade English: Using Maya 3D Animation and Adobe Photoshop for Storytelling in Native American Legends": 1 +"Adobe After Effects in 3rd Grade English: Storytelling from Native American Legends with Maya 3D Animation": 1 +"3rd Grade English: Using Maya 3D Animation and Unity for Immersive Storytelling in Native American Legends": 1 +"Storytelling from Native American Legends: 3rd Grade English with Adobe Premiere and Final Cut Pro": 1 +"3rd Grade English: Native American Legends through Maya 3D Animation and Adobe Illustrator": 1 +"Using Maya 3D Animation and ZBrush for 3D Storytelling: 3rd Grade Native American Legends in English": 1 +"3rd Grade English: Storytelling Native American Legends with Blender and AutoCAD": 1 +"Adobe Premiere and Lightroom in 3rd Grade English: Storytelling from Native American Legends with Maya 3D Animation": 1 +"3rd Grade English: Native American Legends Storytelling Using Maya 3D Animation and Sony Vegas": 1 +"Using Blender and Pro Tools for 3rd Grade English: Native American Legends Storytelling": 1 +"2nd Grade Mathematics: Understanding Addition with Number Lines using Abacus": 1 +"Exploring Place Value in 2nd Grade Mathematics with Counting Blocks": 1 +"Addition Mastery in 2nd Grade Mathematics: Using Digital Tools with Number Lines": 1 +"2nd Grade Mathematics: Enhancing Place Value Comprehension with Interactive Whiteboards": 1 +"Decoding Addition in 2nd Grade Mathematics through Number Lines and Flashcards": 1 +"2nd Grade Mathematics: Navigating Place Value using Math Manipulatives": 1 +"Number Lines and Addition: 2nd Grade Mathematics with Math Games": 1 +"Place Value Principles in 2nd Grade Mathematics: A Focus on iPads": 1 +"2nd Grade Mathematics: Building Addition Skills with Number Lines and Smartboards": 1 +"Exploring Place Value: 2nd Grade Mathematics using Virtual Reality Technology": 1 +"8th Grade Science: Using Microscopy to Observe DNA Methylation and Chromosome Arrangement During Cell Division in Introductory Biology": 1 +"8th Grade Science: Investigating DNA Methylation During Mitosis Using Epigenetic Markers in Introductory Biology": 1 +"8th Grade Science: Exploring Chromosome Arrangement During Meiosis with Epigenetic Markers in Introductory Biology": 1 +"8th Grade Science: Application of PCR in Studying DNA Methylation and Chromosome Arrangement During Cell Division": 1 +"8th Grade Science: Use of Fluorescence in Situ Hybridization (FISH) in Understanding DNA Methylation and Chromosome Arrangement": 1 +"8th Grade Science: Analyzing DNA Methylation Using Bisulfite Sequencing in Chromosome Arrangement During Cell Division": 1 +"8th Grade Science: Epigenetic Markers and Chromatin Immunoprecipitation Studies in DNA Methylation During Cell Division": 1 +"8th Grade Science: Using Gel Electrophoresis to Study DNA Methylation and Chromosome Arrangement During Cell Division": 1 +"8th Grade Science: Probing DNA Methylation and Chromosome Arrangement During Cell Division Using Epigenetic Markers and Flow Cytometry": 1 +"8th Grade Science: Investigating DNA Methylation Using DNA Microarray During Cell Division and Chromosome Arrangement.": 1 +"2nd Grade English: Enhancing Sentence Structure Skills with Adjective Placement using Seesaw Online Quizzes and Interactive Whiteboard": 1 +"Advanced 2nd Grade English: Mastering Sentence Structure and Pronoun Usage with Seesaw Online Quizzes": 1 +"2nd Grade English: Mastering Sentence Structure Skills with Adverb Placement using Seesaw Online Quizzes and Grammarly": 1 +"Mastering Sentence Structure Skills with Preposition Placement in 2nd Grade English using Seesaw Online Quizzes": 1 +"2nd Grade English: Perfecting Sentence Structure Skills with Adverb Placement using Seesaw Online Quizzes and Kahoot Games": 1 +"2nd Grade English: Mastering Sentence Structure and Capitalization Skills with Seesaw Online Quizzes": 1 +"Using Flipgrid for Mastering Sentence Structure Skills with Adverb Placement in 2nd Grade English": 1 +"2nd Grade English: Mastering Sentence Structure Skills with Conjunction Placement using Seesaw Online Quizzes": 1 +"2nd Grade English: Mastering Complex Sentence Structure Skills with Adverb Placement using Seesaw Online Quizzes and Edpuzzle": 1 +"2nd Grade English: Mastering Sentence Structure Skills with Verb Placement using Seesaw Online Quizzes and Google Classroom.": 1 +"5th Grade Geography: Exploring Global Cuisines and Cultures through Interactive Digital Maps": 1 +"8th Grade Literature: Analysis of J.R.R. Tolkien’s Middle-Earth and Its Influence on Modern Fantasy Literature": 1 +"6th Grade Science: Exploring Weather Patterns and Climate Change through Interactive Simulation Models": 1 +"7th Grade Art: Discovering Sculpture using Clay, Plaster, and Wire Art Materials": 1 +"5th Grade Math: Understanding Geometry and Shapes through 3D Printing Technology": 1 +"8th Grade Music: Examining Beethoven’s Concertos with Digital Music Production Software": 1 +"6th Grade History: The Impact of the Silk Road Trade on the Spread of Culture and Ideas in the Ancient World": 1 +"4th Grade Science: Introduction to Dinosaurs and Paleontology through Augmented Reality": 1 +"7th Grade Geography: Understanding Geology and Plate Tectonics using Google Earth and 3D Models": 1 +"8th Grade Math: Data Analysis and Statistics using Excel and Google Sheets": 1 +"2nd Grade Art: Exploring Color Theory Through Origami Using Paper Folding Techniques": 1 +"6th Grade Computer Science: Understanding Algorithms with Python in Creating Video Games via Unity Engine": 1 +"4th Grade Geography: Investigating the Amazon Rainforest through Interactive Virtual Tours": 1 +"1st Grade Music: Learning Rhythm and Tempo Through Drumming Techniques Using GarageBand Software": 1 +"6th Grade Physics: Exploring Aerodynamics with Weather Balloons in Meteorological Observations": 1 +"8th Grade English: Studying Symbolism in Edgar Allan Poe’s Literature using Kindle’s X-Ray Feature and Google Docs": 1 +"3rd Grade World History: Unraveling the Middle Ages through Castle Architecture using Minecraft and Virtual Reality": 1 +"2nd Grade Mathematics: Enhancing Problem Solving Skills with Basic Geometry Using Tangram Puzzles": 1 +"7th Grade Biology: Discovering Cellular Structures through Microscopy and Image Analysis Software": 1 +"9th Grade Health Education: Understanding Nutrition & Body Mechanics Using Fitness Trackers": 1 +"5th Grade Science: Exploring the Solar System with Stellarium Software": 1 +"3rd Grade Art: Experiencing Texture through Collage Making and Digital Design": 1 +"1st Grade Mathematics: Grasping Addition Basics with Coolmath Games": 1 +"3rd Grade Language Arts: Enhancing Vocabulary through Interactive Storytelling": 1 +"6th Grade Physical Education: Soccer Skill Development with Speed Cone Drills": 1 +"4th Grade History: The Egyptian Pyramids - Hieroglyphics and the Role of Mathematics in Construction": 1 +"1st Grade Social Studies: Discovering the Role of Firefighters in Our Community": 1 +"5th Grade Digital Learning: Understanding Coding with Scratch Programming": 1 +"7th Grade Science: Investigating Earth’s Climate using Global Warming Simulation Software": 1 +"3rd Grade Mathematics: Grasping Division Concepts with Math Playground App": 1 +"6th Grade Geography: Exploring World Cultures through Virtual Reality with Oculus Rift and Google Earth VR": 1 +"8th Grade Science: Examining Tectonic Plate Movements with Real-time Data Using Seismic Monitor and Google Earth": 1 +"3rd Grade Math: Mastering Multiplication using Digital Manipulatives on Math Playground": 1 +"4th Grade History: The Impact of the Silk Road on Global Trade and Cultural Exchange": 1 +"10th Grade English: Poetry Analysis with Interactive Annotation Tools on Genius.com": 1 +"8th Grade Physics: Understanding Electromagnetism through Circuit Design Using Tinkercad and Arduino": 1 +"5th Grade Mathematics: Geometry Exploration with Virtual Manipulatives Using Geogebra": 1 +"1st Grade Science: Discovering Animal Habitats through Augmented Reality using Google Expeditions": 1 +"3rd Grade Social Studies: Understanding Economic Systems with Interactive Simulations on iCivics": 1 +"6th Grade History: The Renaissance Era: Scientific Discoveries and Technological Advancements in Europe.": 1 +"3rd Grade Science: Exploring Plant Life Cycle with Interactive Models and Microscopes": 1 +"10th Grade Art: Discovering the Techniques in Van Gogh’s Paintings with Digital Art Tools": 1 +"1st Grade Music: Learning Melody and Rhythm Through Hand Bells and Music Blocks": 1 +"1st Grade Science: Investigating Animals and their Habitats with Digital Flashcards": 1 +"8th Grade Mathematics: Improving Geometric Understanding with 3D Models and Virtual Reality": 1 +"Wind’s Wonder for Young Minds: First Grade Discovery of Wind Turbines and Kite Flying": 1 +"2nd Grade Mathematics: The Wonders of Fractions through Interactive Puzzles and Board Games": 1 +"1st Grade Geography: Exploring Continents and Oceans through Interactive Maps": 1 +"2nd Grade Language Arts: Mastering Spelling and Vocabulary with Word Games and Flashcards": 1 +"2nd Grade Art: Creating Paper Mache Sculptures and Understanding 3D Shapes": 1 +"5th Grade Mathematics: The Role of Geometry in Understanding the Solar System": 1 +"7th Grade Computer Science: Introduction to Python Coding: Creating a Simple Game": 1 +"5th Grade Biology: Exploring Photosynthesis with Leaf Dissection Experiments": 1 +"2nd Grade Social Studies: Understanding Our Neighborhood: A Study on Local Landmarks": 1 +"2nd Grade Social Studies: Exploring the Traditions and Cultures of East Asia using Origami": 1 +"Unraveling the Mysteries of Mint: An Investigation in 1st Grade History of Ancient Egyptian Herbal Medicine": 1 +"7th Grade Music: The Influence of the Piano and the Use of Harmony in the Emergence of Jazz Music": 1 +"5th Grade History: The Effect of the Printing Press, Gunpowder, and Compass on European Exploration": 1 +"10th Grade English: Utilizing Hemingway Editor for Efficient Academic Writing": 1 +"7th Grade English: Analyzing Irony and Suspense in Literature through the Study of Symbolism": 1 +"7th Grade Biology: Understanding Human Digestive System Using Interactive 3D Models": 1 +"1st Grade Music: Introduction to Basic Rhythm Through Interactive Percussion Instruments": 1 +"3rd Grade Mathematics: Mastering Addition and Subtraction with Virtual Math Manipulatives": 1 +"8th Grade English: Exploring American Literature Through Virtual Reality Field Trips": 1 +"5th Grade Environmental Science: The Role of Wind Turbines in Renewable Energy": 1 +"6th Grade Spanish: Enhancing Grammar Skills with Duolingo and Babbel Apps": 1 +"4th Grade Art: Discovering Digital Art Using Adobe Creative Cloud": 1 +"7th Grade History: Investigating Ancient Civilizations Using Google Earth and VR Headsets": 1 +"2nd Grade Science: Exploring the Life Cycle of Butterflies with Augmented Reality Applications": 1 +"1st Grade Language Arts: Building Reading Comprehension with Audiobooks and E-books": 1 +"6th Grade Science: Exploring Planetary Systems through Virtual Reality": 1 +"4th Grade Mathematics: Understanding Fractions through Interactive Food Recipes": 1 +"3rd Grade Geography: Discovering Continents and Oceans with Augmented Reality": 1 +"The Silk Road and Its Impact on Trade: A Fifth Grade History Course": 1 +"Investigating Rainforest Ecosystems: A 4th Grade Biology Course Utilizing 3D Modeling": 1 +"1st Grade Mathematics: Learning Addition and Subtraction with Colorful Counting Beads": 1 +"6th Grade English: Exploring Narrative Structures through Storytelling Virtual Reality": 1 +"1st Grade Social Studies: Neighborhood Exploration through Interactive Maps": 1 +"8th Grade Art: Creating Still Life Paintings: A Study in Watercolor Techniques": 1 +"4th Grade Mathematics: Discovering Geometry with Origami Folding": 1 +"5th Grade Science: Introduction to Botany: Plant Lifecycles Explored through Time-lapse Photography": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with Fun Math Games on Prodigy": 1 +"6th Grade Geography: Exploring World Landforms through Virtual Reality using Google Earth": 1 +"2nd Grade Art: Engaging with Shapes and Colors: Hands-on Learning with Mosaic Tile Projects": 1 +"8th Grade Physical Education: Fundamentals of Team Sports: Basketball Techniques and Strategies": 1 +"1st Grade Reading: Improving Phonics Skills through Interactive Storybooks and Sing-Along Rhymes": 1 +"5th Grade Social Studies: Understanding Civil Rights Movements: A Journey through Historical Newspaper Archives": 1 +"2nd Grade Environmental Science: Discovering Local Ecosystems through Nature Walks and Journaling": 1 +"4th Grade Music: Composing and Understanding Melodies using GarageBand": 1 +"7th Grade English: Enhancing Creative Writing Skills: The Art of Storyboarding and Graphic Novels.": 1 +"3rd Grade Mathematics: Exploring Geometry through Origami and Interactive Puzzles": 1 +"5th Grade Art: Understanding Perspective and Shading with Digital Drawing Tablets": 1 +"7th Grade Science: Exploring Human Anatomy with Augmented Reality": 1 +"1st Grade Music: Introduction to Melody and Harmony through Playful Singing": 1 +"6th Grade Language Arts: Crafting Engaging Dialogues with Interactive Storytelling Apps": 1 +"3rd Grade Social Studies: Exploring World Cultures through Virtual Field Trips and Interactive Games": 1 +"4th Grade Science: Investigating Forces and Motion with Physical Experiments and Simulation Software": 1 +"6th Grade Mathematics: Applying Fractions and Decimals in Cooking and Baking": 1 +"2nd Grade Art: Exploring Textures and Patterns: A Focus on Collage Making ": 1 +"7th Grade Music: Composing Electronic Music with Synthesizers and Digital Audio Workstations": 1 +"4th Grade Geography: Exploring World Continents and Oceans through Interactive Maps and Globe": 1 +"7th Grade Physics: Understanding Laws of Motion with Experiments and Virtual Reality": 1 +"2nd Grade Botany: Learning about Local Plant Species through Nature Walks and Leaf Pressing": 1 +"6th Grade Computer Science: Coding Basics with Scratch and Introduction to Python": 1 +"9th Grade Economics: Understanding The Stock Market through Virtual Trading Simulations": 1 +"5th Grade Mathematics: Grasping Fractions and Decimals through Online Games and Quizizz": 1 +"3rd Grade Music: Learning Rhythms and Melodies with GarageBand": 1 +"8th Grade Literature: Exploring Shakespeare’s Plays through Dramatic Reenactments": 1 +"1st Grade Science: Discovering the Solar System with Interactive Planetary Models": 1 +"7th Grade French: Basic Conversation and Vocabulary Building with Duolingo": 1 +"7th Grade Literature: Exploring Shakespeare’s Plays: The Role of Dramatic Irony in Romeo and Juliet": 1 +"3rd Grade Science: The Wonders of Weather: Understanding Rainbows and Lightning": 1 +"9th Grade Art: Exploring Pottery: The Influence of Ancient Greece and Rome": 1 +"1st Grade Mathematics: Understanding Numbers through Puzzles and Games": 1 +"6th Grade History: Journey through the Medieval Times: Discovering Castles and Knights through Virtual Reality": 1 +"2nd Grade Environmental Studies: The Importance of Recycling: Engaging with Planet Care through Craft Projects": 1 +"11th Grade Mathematics: Calculus and its Applications: Exploring Derivatives and Integrals": 1 +"8th Grade Language Arts: Mastering Argumentative Writing using Prezi’s Presentation Tools": 1 +"5th Grade Science: Delving into Animal Habitats: Exploring the Rainforest and Desert Biomes": 1 +"7th Grade Music: The Evolution of Jazz: Exploring the Role of the Saxophone and Trumpet": 1 +"6th Grade Physics: Exploring the World of Magnetics Through the Study of Electromagnetism and Induction": 1 +"1st Grade Art: Discovering Shapes and Colors Through the Use of Virtual Reality and Tangible User Interfaces": 1 +"7th Grade Mathematics: Journey into Geometry: Navigating Polygons through Interactive 3D Modelling Software": 1 +"9th Grade Music: Exploring World Rhythms via Digital Audio Workstations and MIDI Sequencing": 1 +"3rd Grade Science: The Mystery of Plant Life: A Deep Dive into Photosynthesis and Cellular Respiration": 1 +"4th Grade Language Arts: Enhancing Reading Comprehension through Interactive E-books and Augmented Reality Storytelling": 1 +"10th Grade History: The Renaissance Era: Unpacking the Influence of the Printing Press and the Spread of Literature": 1 +"1st Grade Science: The Enchanting World of Insects: An Introduction to Entomology Through Observation and Classification": 1 +"5th Grade Physical Education: Understanding Motion and Energy Transfer Through the Study of Popular Sports": 1 +"8th Grade Art: The Evolution of Animation: From Traditional Hand-Drawn to 3D Computer Generated Imagery": 1 +"5th Grade Science: Exploring Photosynthesis through Microscope and Hydroponic Systems": 1 +"Calculus Basics: Understanding Integrals and Derivatives with Desmos in 12th Grade Math": 1 +"10th Grade Literature: Investigating the Themes in Orwell’s ’1984’ using Text Mining Techniques": 1 +"Physical Education: 8th Grade Basketball Training emphasizing Free Throw Techniques with Marked Zones": 1 +"1st Grade Music: Developing a Sense of Beat with Hand Drums and Maracas": 1 +"Unearth Etruscan Civilization: Using Satellite Imagery and LIDAR to Analyze Ancient Urban Planning": 1 +"7th Grade Geography: The Study of the Amazon Rainforest and its Role in Global Climate": 1 +"3rd Grade Art: Designing Digital Collages with Sketchbook Pro": 1 +"8th Grade History: The Colosseum: Sport and Entertainment in Ancient Rome": 1 +"1st Grade Music: Exploring Tempo and Pitch with a Tambourine and Music Creation Apps": 1 +"4th Grade Geography: Exploring the Amazon Rainforest through Virtual Reality": 1 +"1st Grade Art: Understanding Colors and Shapes with Augmented Reality": 1 +"2nd Grade Life Science: The Role of Bees in Ecosystems": 1 +"4th Grade Literature: Discovering Fables through Interactive Storytelling": 1 +"2nd Grade Music: Introduction to Jazz and the Piano using Melodic Scales": 1 +"5th Grade History: The Impact of the Gold Rush on Westward Expansion": 1 +"3rd Grade Physics: Exploring Gravity using Pendulums and Time-lapse Videos": 1 +"1st Grade Dance: Learning Rhythm and Movement with Drums": 1 +"7th Grade Mathematics: Geometry Expedition using 3D Modeling Tools": 1 +"Ancient Egyptian Civilization: The Construction of Pyramids in 5th Grade History": 1 +"6th Grade Geography: Exploring Amazon Rainforest Ecosystems Through Virtual Reality Using Oculus Rift": 1 +"4th Grade Physical Education: Gymnastics and Cooperation: The Role of Timing in Synchronized Routines": 1 +"2nd Grade Science: Learning about Photosynthesis by Creating DIY Mini Greenhouses: Using Plastic Bottles, Soil, and Seeds": 1 +"5th Grade History: The Significance of the Printing Press during the Renaissance Period": 1 +"4th Grade English: Utilizing Scratch Programming, iMovie, and Storytelling from Greek Myths": 1 +"5th Grade History: The Ziggurats of Ancient Mesopotamia": 1 +"Second Grade Reading: Aesop’s Fables Journey with Augmented Reality": 1 +"Preschool Language Arts: Number Learning with Interactive Tablets, Digital Stylus and ABCmouse Educational Games": 1 +"8th Grade Language Arts: Implementing Google BigQuery for Text Analytics in Exploring Classic Literature via Project Gutenberg": 1 +"4th Grade History: Exploring Ancient Greece with Augmented Reality Reconstructions and Google Translate.": 1 +"7th Grade Geography: Investigating Plate Tectonics and Volcanic Activity through Virtual Reality Simulations": 1 +"5th Grade Mathematics: Grappling with Geometry using Lego Blocks and Tinkercad 3D Modeling Software": 1 +"9th Grade Literature: Analyzing Symbolism in American Literature using Nook eReaders and Online Discussion Forums": 1 +"4th Grade Science: Exploring Insect Life Cycles with Ant Farms, Butterfly Kits and Digital Microscopes": 1 +"8th Grade Music: Understanding Rhythm and Tempo with Digital Drum Machines and GarageBand Software": 1 +"11th Grade History: The Significance of Morse Code during World War II": 1 +"1st Grade Art: Exploring Color Theory using Paint Mixing Activities and Digital Color Wheel Applications": 1 +"6th Grade Language Arts: Analyzing Narrative Structure in Classic Fairy Tales using Storyboard Software and Interactive eBooks": 1 +"9th Grade Social Studies: Exposing the Economic Impact of the Industrial Revolution in Britain": 1 +"5th Grade English: Developing Story Arcs with Stop Motion Animation Techniques using Clay Figures and iPad Apps": 1 +"3rd Grade Geography: Investigating Local Weather Patterns through Weather Vane Construction and Cloud Identification ": 1 +"7th Grade History: The Role of the Spinning Wheel in Ancient Textile Production": 1 +"5th Grade Physical Education: Using Heart Rate Monitors to Measure Cardiovascular Activity ": 1 +"3rd Grade Physical Education: Basketball and the Science of Projectile Motion ": 1 +"6th Grade Mathematics: An In-depth Study of Decimal Multiplication using Grid Method, Area Models and the Standard Algorithm ": 1 +"1st Grade Environmental Studies: Understanding Animal Habitats through Field Observation and Sketching ": 1 +"9th Grade Science: Biological Data Collection and Interpretation using Python and Bioinformatics ": 1 +"7th Grade Science: Statistical Analysis with Bar Graphs using Google Sheets ": 1 +"3rd Grade Life Science: Engaging Study of the Animal Life Cycle using Interactive Apps ": 1 +"2nd Grade Introduction to Oceans: Discovering Marine Life with Digital Aquariums": 1 +"3rd Grade Spelling: Enhancing Vocabulary through Interactive Word Games": 1 +"7th Grade Algebra: Mastering Equations through Digital Math Puzzles": 1 +"6th Grade History: Ancient Egyptians - Investigating the Use of Papyrus in Writing": 1 +"3rd Grade Music: Exploring Melodies with Handbells and Xylophones": 1 +"5th Grade Science: Exploring the Water Cycle Using Interactive Simulations": 1 +"10th Grade History: World War II - Understanding the Impact of Atomic Technology": 1 +"10th Grade Chemistry: Exploring Chemical Reactions Using VR Simulations": 1 +"Integrating Scratch in 2nd Grade English: Enhancing Comprehension through Storytelling Coding": 1 +"6th Grade Mathematics: Understanding Geometry using Geoboards and Digital Manipulatives": 1 +"5th Grade Music: Learning Beat and Tempo using GarageBand": 1 +"5th Grade Art: Mastering Origami: From Basic Folds to Complex Creatures": 1 +"6th Grade History: The Revolutionary War: Key Battles, The Declaration of Independence, and the Impact of Paul Revere’s Ride": 1 +"3rd Grade Mathematics: Exploring Multiplication Tables through Real-World Applications": 1 +"8th Grade Science: Understanding DNA Structure and Replication through 3D Models": 1 +"4th Grade Mathematics: Navigating Fractions and Decimals with Interactive Games": 1 +"6th Grade Music: Discovering Jazz: An Introduction to Improvisation using Music Software": 1 +"2nd Grade Physical Education: Introduction to Soccer: Dribbling and Passing with Soft Balls": 1 +"10th Grade English: Exploring the World of J.R.R. Tolkien: A Journey into Middle-Earth using Augmented Reality": 1 +"Unraveling the Mysteries of Magnetism in 7th Grade Physical Science: Hands-on Experiments with Bar Magnets and Iron Filings": 1 +"5th Grade Music: Introduction to World Music: Exploring Different Cultures Through Their Unique Musical Styles.": 1 +"1st Grade Mathematics: Engaging with Numbers and Shapes through Fun Puzzles": 1 +"10th Grade Biology: Examining the Impact of Genetics in the Development of Modern Medicine": 1 +"6th Grade Art: Delving into Renaissance Paintings and their Techniques": 1 +"6th Grade Physics: Exploring Sound Waves and Vibrations through DIY Musical Instruments": 1 +"10th Grade Geography: Comprehensive Study of Plate Tectonics and its Role in Shaping Earth’s Landscape": 1 +"2nd Grade Science: Discovering the Solar System with Interactive 3D Models and Virtual Reality": 1 +"6th Grade Technology: The Development of Wireless Communication - A Look into the History of Radio Waves": 1 +"6th Grade Engineering: Understanding the Hydraulic System’s Role in Modern Machinery": 1 +"8th Grade Music: Journey through Classical Compositions with Virtual Reality": 1 +"9th Grade Mathematics: Enhancing Problem Solving Skills with Advanced Algebraic Equations and Graphical Interpretations": 1 +"4th Grade Geography: Discovering Climate Zones Using Augmented Reality and Interactive Globes": 1 +"8th Grade Physics: Understanding the Principles of Flight through Paper Airplanes and Aerodynamic Simulations": 1 +"9th Grade Biology: Exploring the Human Digestive System with Virtual Reality and Nutritional Data ": 1 +"Acoustic Guitars in Rock: A Detailed Insight for 10th Grade Music Students": 1 +"3rd Grade Art: Introduction to Origami: Creating Artistic shapes with Colored Papers": 1 +"1st Grade Music: Learning Melodies with Xylophone via Music Maker Jam Software and Interactive Projectors": 1 +"4th Grade Art: Discovering Cubism with Oil Pastels, Collage Techniques, and Geometric Shapes": 1 +"2nd Grade History: Virtual Exploration of Dinosaurs using 3D Models and Fossils": 1 +"Kindergarten Mathematics: Learning Shapes and Sizes with Interactive Wooden Blocks and Basic Algorithms": 1 +"7th Grade Social Studies: Unraveling Medieval Europe Through The Perspective of Castles": 1 +"4th Grade Math: Geometry Basics and Shapes Recognition using Virtual Reality with Mathspace App": 1 +"6th Grade Literature: Discovering Poetry Techniques with Interactive Audiobooks": 1 +"9th Grade Chemistry: Detailed Examination of Atomic Structure Using Virtual Labs": 1 +"Mastering Number Patterns in 3rd Grade Math using Augmented Reality with DoodleMaths App": 1 +"2nd Grade Geography: Understanding World Continents with Google Earth Virtual Tours": 1 +"Kindergarten Science: Exploring Life Cycle of Butterflies through Augmented Reality": 1 +"Microsoft OneNote and Kahoot in Fourth Grade Math: Interactive Learning of Fractions through Online Quizzes ": 1 +"7th Grade History: The Transition from Papyrus to Printing Press: An Interactive Timeline": 1 +"8th Grade Physics: Understanding Forces and Motion through Interactive Simulations": 1 +"4th Grade Science: Solar System Exploration and Planets Identification with VR Headsets": 1 +"6th Grade Literature: Exploring Narratives and Characters in Classic Novels using Kindle Classroom": 1 +"2nd Grade French: Building Basic Linguistic Skills with Rosetta Stone, Flipgrid, and DuoLingo": 1 +"12th Grade Physics: In-depth Analysis of Quantum Mechanics using Spectroscopy": 1 +"Art Education: Discovering Texture and Form with Clay Sculpture for 6th Graders": 1 +"4th Grade Mathematics: Understanding Geometry, Area and Perimeter through Fun Math Apps": 1 +"The Influence of Beethoven on the Development of Symphonies: An In-depth Study for 9th Grade Music": 1 +"2nd Grade German: Learning Common Words and Sentences through Engaging Language Apps": 1 +"Optimizing 10th Grade Health Education: Understanding Proteins, Vitamins, and Balanced Diet using MyFitnessPal and Apple Health Kit": 1 +"3rd Grade History: The Renaissance Era - A Day in the Life of a Merchant": 1 +"Kindergarten Art: Exploring the World of Abstract Art and Patterns through Finger Painting and Tissue Paper Techniques": 1 +"7th Grade Biology: Decoding DNA: The Evolution of Genetic Study and Cloning": 1 +"5th Grade Physical Education: Agility, Sportsmanship, and the Importance of Hydration": 1 +"3rd Grade Geography: Exploring Ancient Egypt with Virtual Reality and Interactive Maps": 1 +"12th Grade Photography: Exploring the World through a Lens: Understanding Shutter Speed": 1 +"1st Grade Mathematics: Unfolding Addition through Interactive Games on Number Count App": 1 +"9th Grade Politics: The Cold War Era - Political Strategies and Propaganda Analysis": 1 +"5th Grade English Literature: Mastering Narrative Structure and Character Development with Online Reading Platforms": 1 +"11th Grade Music: Exploring Jazz Improvisation using the Saxophone": 1 +"2nd Grade Mathematics: Grasping Subtraction with Fun Puzzles": 1 +"5th Grade History: Unraveling the Age of Industrialization and the Role of Steam Engines": 1 +"6th Grade Mathematics: Understanding Geometry through 3D Printing and Virtual Reality": 1 +"9th Grade History: Examining the Civil War through Interactive Maps and Google Classroom": 1 +"5th Grade Language Arts: Enhancing Storytelling Skills through Storybird and Padlet": 1 +"7th Grade Physics: Embracing Newton’s Laws through LEGO Education WeDo 2.0 and Virtual Labs": 1 +"8th Grade Geography: Exploring Cultural Diversity through Google Earth and Virtual Field Trips": 1 +"Kindergarten Science: Discovering Animal Habitats through Augmented Reality and Interactive Games": 1 +"3rd Grade Art: Learning Color Theory with Digital Painting and Adobe Creative Cloud": 1 +"4th Grade Physical Education: Understanding Biomechanics - The Science Behind Movement": 1 +"2nd Grade Spanish: Interactive Learning of Basic Phrases with Duolingo and Kahoot Games": 1 +"High School Economics: Stock Market Simulation - Learning Investment Strategies through Virtual Trading Platforms.": 1 +"4th Grade Geometry: Understanding Shapes and Symmetry through Origami": 1 +"Life Underwater: An Introductory Study of Marine Ecosystems and Food Chains for 2nd Graders": 1 +"7th Grade Physics: Exploring the Basics of Electricity and Circuit Design using Breadboards": 1 +"1st Grade Exercise Class: Learning the Fundamentals of Soccer: Dribbling and Goal Scoring Techniques": 1 +"Plants and Photosynthesis: Discovering Energy Conversion in 3rd Grade Biology": 1 +"5th Grade History: The Renaissance Period and the Invention of the Printing Press": 1 +"5th Grade History: Investigating Ancient Egypt Through Hieroglyphic Decoding": 1 +"2nd Grade Physical Education: Understanding Baseball and the Science of Batting Techniques": 1 +"2nd Grade Language Arts: Introduction to Poetry Writing with Rhyme Schemes": 1 +"2nd Grade Social Studies: Exploring National History Through Virtual Museum Tours": 1 +"Discovering the Universe: 8th Grade Astronomy’s Journey through Galaxies using VR and Star Maps": 1 +"2nd Grade Life Sciences: Understanding Pond Habitats with Augmented Reality": 1 +"The Power of Wind: A 4th Grade Science Course on Renewable Energy using Wind Turbines and Anemometers": 1 +"5th Grade Art: Exploring Emotions through Abstract Painting Techniques": 1 +"7th Grade Geography: Exploring Eastern Europe using Virtual Reality and Digital Puzzle Games": 1 +"4th Grade English: Mystery Narratives - Developing Reading Skills with Interactive Audiobooks": 1 +"6th Grade History: Unraveling Medieval Europe through the Study of Castles": 1 +"7th Grade Biology: Exploring Plant Life-Cycles through Time-Lapse Photography ": 1 +"5th Grade Science: Understanding Weather Patterns through Cloud Identification Tools": 1 +"The Civil War in 6th Grade History: Learning through Interactive Battle Maps and VR Experiences.": 1 +"3rd Grade Biology: Understanding Animal Adaptations through Virtual Reality": 1 +"Second Grade Programming: Introduction to Coding Using Scratch": 1 +"Basketball in 9th Grade Physical Education: Improving Free Throw Accuracy with Virtual Reality Tools": 1 +"3rd Grade Literature: Enhancing Comprehension Skills using Interactive Storytelling Platforms, Nearpod and Flipgrid": 1 +"Second Grade History: Exploring Ancient Civilizations Using Interactive E-books": 1 +"12th Grade Physics: Unraveling Quantum Mechanics through the Study of Photons using Spectroscopy": 1 +"6th Grade Art: Developing Sketching Skills with Graphite and Charcoal": 1 +"Fourth Grade Geometry: Understanding Angles and Shapes through Interactive Models": 1 +"8th Grade Literature: Diving into Metaphors in Shakespearean Plays using Google Classroom and Quizziz": 1 +"5th Grade Health Education: Understanding Nutrition and Healthy Eating using MyFitnessPal": 1 +"5th Grade Music: Exploring Beethoven’s Symphonies with Digital Sheet Music, Yamaha YDP-144 Digital Piano, and GarageBand Audio Editing Tools": 1 +"3rd Grade Language Arts: Interactive Storytelling using Storyboards and Audacity App for Audio Narration": 1 +"8th Grade Music: Understanding Melodies and Beats with a Digital Audio Workstation": 1 +"12th Grade Music: The Evolution of the Acoustic Guitar in Blues Music": 1 +"5th Grade Social Studies: The Steam Engine and its Impact on the Industrial Revolution": 1 +"5th Grade Physical Education: Basics of Soccer Strategies with Cone Drills": 1 +"2nd Grade Environmental Studies: Exploring Climate Change through Interactive World Maps": 1 +"8th Grade Art: Creating Abstract Landscapes using Collage Techniques": 1 +"10th Grade Language Arts: An Overview of Literary Genres - Diving into the Realm of Science Fiction Novels": 1 +"2nd Grade Art: Understanding Textures and Patterns with Paper Mache Art": 1 +"3rd Grade Science: Exploring Life Cycles of Animals through Interactive Diagrams": 1 +"9th Grade History: The Impact of Telegraph Systems on World War II Communications": 1 +"5th Grade Social Studies: Tracing the Evolution of Democracy through Ancient Civilizations": 1 +"1st Grade Language Arts: Enhancing Vocabulary with Picture Cards and Educational Games": 1 +"7th Grade Social Studies: The Influence of Renewable Energy on Global Sustainability ": 1 +"5th Grade Social Studies: The Development of the Internet and Its Impact on Information Accessibility": 1 +"12th Grade History: The Role of the Printing Press in the Spread of Renaissance Ideas - Solution 5: Gutenberg’s Innovation ": 1 +"9th Grade Mathematics: Geometry and the Use of Protractors and Compasses": 1 +"4th Grade Art and Design: Fundamentals of Clay Modelling": 1 +"1st Grade Language Arts: Improving Reading Comprehension with Interactive E-books and Audiobooks.": 1 +"7th Grade Science: Exploring Botany with Microscopic Examination of Plant Cells": 1 +"4th Grade Music: Evolution of Jazz: From Ragtime to Bebop Using Music Software": 1 +"5th Grade History: The Impact of Printing Technology on the Renaissance Era ": 1 +"7th Grade Physical Education: Anatomical Understanding through Gymnastic Techniques": 1 +"3rd Grade Mathematics: Multiplication Mastery with Abacus and Tangram Puzzles": 1 +"5th Grade Language Arts: Crafting Dynamic Characters with Storybird and Book Creator": 1 +"1st Grade Music: Developing Pitch Recognition with Kazoos and Boomwhackers": 1 +"6th Grade Art: Exploring Perspective and Depth with Virtual Reality Tools": 1 +"4th Grade Social Studies: The Influence of the Compass on Sea Exploration": 1 +"3rd Grade Physical Education: Promoting Flexibility and Balance through Basic Ballet Techniques": 1 +"3rd Grade Mathematics: Developing Multiplication Skills with Number Lines": 1 +"4th Grade Science: Understanding Photosynthesis in Plant Life": 1 +"7th Grade Global Studies: Discovering Cultures Around the World Through Virtual Reality Tours": 1 +"7th Grade Music: Exploring Jazz Improvisation Using GarageBand MIDI Sequencers": 1 +"3rd Grade Geography: Navigating Neighborhoods Through Interactive Map Making with Drone Footage": 1 +"3rd Grade Social Studies: Learning About Native Cultures Through Virtual Reality Field Trips": 1 +"4th Grade English: Introduction to Myths and Legends with Interactive E-Books": 1 +"10th Grade English: Understanding Chaucer’s Canterbury Tales through Animated Renditions": 1 +"7th Grade Music: Mastering Composition in Electronic Music Using Logic Pro X MIDI Sequencers": 1 +"5th Grade Music: Exploring Mozart’s Symphonies Through Interactive Piano Lessons and Sound Design with FL Studio Software": 1 +"3rd Grade Geography: Understanding the Earth’s Surface with Google Earth VR": 1 +"11th Grade Physics: Exploring Quantum Mechanics through Virtual Reality Experiments": 1 +"7th Grade Theater: Engaging with Shakespeare’s Tragedies through Role-Playing Games": 1 +"4th Grade History: Tracing the Evolution of Transportation using Timeline Software": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals using Interactive Apps": 1 +"Kindergarten: Learning Numbers and Alphabet through Interactive Storytelling": 1 +"Teaching 3rd Grade Science: Incorporating Ecosystem Exploration with Minecraft Education Edition": 1 +"8th Grade English: Enhancing Reading Comprehension with Audible and Podcasts": 1 +"2nd Grade Art: Creativity and Self-Expression using Digital Painting on iPad": 1 +"1st Grade Music: Introduction to Rhythm and Melody with GarageBand App": 1 +"4th Grade Geography: Exploring World Landforms with Virtual Reality Tours": 1 +"2nd Grade Math: Fundamental Addition and Subtraction with Interactive Apps": 1 +"5th Grade Art: Introduction to Abstract Art Using Collage and Mixed Media Techniques": 1 +"1st Grade Music: Discovering Rhythms and Melodies with Percussion Instruments": 1 +"4th Grade English: Poetry Writing and Analysis with Online Literature Libraries": 1 +"Kindergarten: Building Basic Vocabulary through Storytelling and Interactive Games": 1 +"6th Grade Science: Exploring the Solar System Through Telescopes and Augmented Reality": 1 +"3rd Grade Health: Understanding Food Groups and Nutrition with Interactive Cooking Lessons": 1 +"2nd Grade Social Studies: Journey through Native American History with Storytelling and Artifacts": 1 +"4th Grade Computer Science: Introduction to Website Design with HTML and CSS": 1 +"4th Grade Art: Incorporating Technology in Art: An Exploration of Digital Drawing Tablets": 1 +"7th Grade History: Unraveling the Mystery of the Mayan Calendar and its Galactic Significance": 1 +"11th Grade Mathematics: Trigonometry - Unleashing Power and Precision with Trigonometric Ratios": 1 +"8th Grade Science: Understanding Quantum Physics through Virtual Reality Simulations": 1 +"5th Grade History: A Journey through the Renaissance Era via Symbolism and Iconography": 1 +"4th Grade Mathematics: Mastering Multiplication with the Math Monsters App": 1 +"Exploring Parallel Universes in Literature: An 8th Grade Language Arts Course on Multiverse Theory": 1 +"Enhancing Soccer Skills through Newton’s Laws of Motion: A 6th Grade Physical Education Course": 1 +"10th Grade Health: Exploring Microbiomes, Metabolomics, and the Impact of Probiotics": 1 +"10th Grade Geography: Exploring Geopolitics and the Concept of Global Interdependence": 1 +"5th Grade Science: Exploring Ecosystems with Augmented Reality Apps": 1 +"7th Grade Literature: Enhancing Reading Comprehension using Interactive E-books": 1 +"1st Grade Geography: Discovering World Landmarks through Google Earth Virtual Field Trips": 1 +"4th Grade Nutrition: Understanding Food Groups and Balanced Diet with Interactive Games": 1 +"11th Grade Sports Science: Analyzing Basketball Shot Accuracy with Motion Tracking Technology": 1 +"9th Grade Music: Exploring Jazz Improvisation using GarageBand for iPad": 1 +"7th Grade English: Improving Writing Skills with Online Blogging Platforms": 1 +"5th Grade Social Studies: Experiencing Medieval Europe with Virtual Reality Tours": 1 +"1st Grade Arithmetic: Learning Addition and Subtraction with Interactive Smartboard Games": 1 +"4th Grade Geometry: Mastering Shapes and Angles with Tinkercad 3D Design Software": 1 +"5th Grade Science: Exploring the Solar System through Virtual Reality and Interactive Quizzes": 1 +"8th Grade History: The Roman Colosseum: Architectural Wonders of Ancient Rome": 1 +"1st Grade Art: Introduction to Shapes and Colors through Collage Making": 1 +"5th Grade Geography: In-depth Exploration of African Countries using Google Earth and Digital Jigsaw Puzzles": 1 +"3rd Grade Physical Education: Basic Soccer Skills: Dribbling and Passing Techniques": 1 +"5th Grade History: Ancient Greece - The Role of Olive Oil and Pottery in Everyday Life": 1 +"Mastering the Use of Conjunctions in Sentence Formation: A 3rd Grade English Course using Quizlet and Seesaw for Student Engagement": 1 +"2nd Grade English: Utilizing Tablet Games in Learning Phonics and Word Formation": 1 +"7th Grade Social Studies: Exploring Mayan Civilization through Hieroglyphics and Agricultural Techniques using Google Maps Satellite View ": 1 +"5th Grade Language Arts: Enhancing Creative Writing on Tablets using ProWritingAid, Microsoft Word, Quizizz, and Padlet for Interactive Education": 1 +"1st Grade Art: Exploring Shapes and Colors through Paper Mosaic Projects": 1 +"2nd Grade Music: An Introduction to Basic Rhythm Patterns using Interactive Apps": 1 +"7th Grade English: Enhancing Creative Writing Skills with Classic Novels and Digital Storyboards": 1 +"Mastering Argumentative Speech in 8th Grade Public Speaking through Debate Techniques": 1 +"Fourth Grade Biology: Discovering Plant Life Cycles through Gardening Activities": 1 +"3rd Grade Mathematics: Geometry Explorations using 3D Shapes and Augmented Reality Apps": 1 +"4th Grade Social Studies: The Art of Calligraphy in Ancient Chinese Dynasties": 1 +"7th Grade: Understanding Weather Patterns using Interactive Meteorology Tools": 1 +"5th Grade Geography: Investigating Landforms and Water Bodies using Google Earth": 1 +"10th Grade Physical Health: Enhancing Fitness and Body Strength through Yoga and Fitness Tracker Apps": 1 +"2nd Grade Science: Understanding the Solar System through Virtual Planetarium": 1 +"4th Grade English Language Arts: Animated Storytelling using Toontastic": 1 +"6th Grade Life Science: Exploration of Photosynthesis with Virtual Labs": 1 +"1st Grade Math: Learning Numbers with Interactive Learning Toys": 1 +"5th Grade Geography: Exploring Continents and Oceans Using Google Earth": 1 +"2nd Grade Reading: Engaging with Phonics through Starfall Games": 1 +"3rd Grade Social Studies: Understanding Our Local Government through Minecraft Role Play": 1 +"9th Grade Physics: Dynamics of Pendulum Motion - An Interactive Approach with PhET Simulations": 1 +"4th Grade Art: Unleashing Creativity with Digital Painting and Drawing Apps": 1 +"1st Grade Music: Introduction to Rhythm - Learning Beats with Virtual Drum Sets": 1 +"6th Grade Geography: Exploring Topography with Virtual Reality Technology": 1 +"5th Grade Music: Learning Rhythm with Electronic Drum Kits and Beat Making Software": 1 +"8th Grade Social Studies: The Influence of Social Media on Global Politics": 1 +"10th Grade Physical Education: Incorporating Augmented Reality in Basketball Training": 1 +"4th Grade Art: Developing Sculpting Skills - Introduction to Clay Modelling and Texture Techniques": 1 +"3rd Grade Language Arts: Enhancing Storytelling Skills with Graphic Organizers": 1 +"A Comparative Study: The Impact of Solar Power and Wind Energy on Sustainable Living in 5th Grade Science": 1 +"6th Grade Mathematics: Navigating through Geometry with Tangram Puzzles": 1 +"2nd Grade Mathematics: Understanding Number Patterns with Interactive Number Lines": 1 +"7th Grade World Cultures: Examining Cultural Exchange through Case Studies with Virtual Field Trips": 1 +"4th Grade Science: Exploring the Solar System through Interactive 3D Models": 1 +"7th Grade Music: Unveiling the Mysteries of Jazz Improvisation with Digital Audio Software": 1 +"11th Grade History: The Renaissance Era: The Medici Family and their Impact on Art and Architecture": 1 +"3rd Grade Mathematics: Introduction to Multiplication and Division using Number Lines": 1 +"1st Grade Health: Learning about Body Systems through Playful Anatomical Puzzles": 1 +"5th Grade English: Understanding Poetic Devices with Emily Dickinson’s Poems": 1 +"10th Grade Music: The Evolution of Electronic Music and the Use of Synthesizers": 1 +"2nd Grade Art: Creating Animal Portraits using Oil Pastels and Blending Stumps": 1 +"6th Grade Science: The Journey of a Raindrop: Learning about the Water Cycle through Animation": 1 +"7th Grade Mathematics: Exploring the Concept of Ratios and Proportions using Cooking Recipes": 1 +"6th Grade Science: Exploring Ecosystems with Augmented Reality and the Principles of Food Chains": 1 +"10th Grade Mathematics: Calculus and the Art of Problem Solving using Wolfram Alpha": 1 +"1st Grade Art: Discovering Textures and Patterns using Collage Techniques": 1 +"9th Grade English: Deconstructing Irony in Modernist Literature using Project Gutenberg": 1 +"4th Grade History: The Influence of the Wheel, Iron, and Bronze on Ancient Civilizations": 1 +"2nd Grade English: Myths and Legends Through Interactive Storytelling": 1 +"5th Grade Mathematics: Number Lines and Augmented Reality in Division Mastery": 1 +"8th Grade: Predicting Climate Change using Interactive Environmental Science Apps": 1 +"3rd Grade Science: Discovering the Life Cycle of Butterflies using the SmartMicroScope 5M and 3D Models": 1 +"11th Grade History: The Tactical Significance of Trench Warfare in World War I Era": 1 +"5th Grade Geography: Cartography and Compass Skills in the Age of Discovery": 1 +"Integrating Virtual Reality into 2nd Grade Science: Exploring Ecosystems through Digital Interaction": 1 +"6th Grade Ancient History: The Development of Written Language and Papyrus Use": 1 +"11th Grade Music: Understanding Beethoven’s Symphonies through Digital Sound Editing Software": 1 +"Understanding Shapes and Patterns: A 2nd Grade Math Course exploring Geometry, Fractions, and Graphs": 1 +"5th Grade English: Perfecting Essay Writing - Emphasis on Thesis Statements and Supporting Details.": 1 +"Exploring the Role of the Spinning Wheel in Women’s Lives during the Middle Ages: A 7th Grade History Course": 1 +"3rd Grade Reading: Engaging Narratives and Myths through Interactive e-Books and Google Classroom": 1 +"5th Grade History: Early Human Societies - The Advent of Farming and Irrigation Techniques": 1 +"5th Grade Science: In-depth Study of the Human Body Systems using Health VR App and Augmented Reality.": 1 +"3rd Grade Mathematics: Understanding Multiplication with the Khan Academy App ": 1 +"3rd Grade History: Deciphering Ancient Egyptian Hieroglyphics: The Rosetta Stone and Its Influence on Language Understanding ": 1 +"Kindergarten French: Learning Basics with Duolingo, Zoom Flashcards, and Google Translate Tools ": 1 +"5th Grade History: Exploring Ancient Rome through Virtual Reality Apps and eBooks ": 1 +"7th Grade History: The Impact of Galileo’s Telescope on the Study of Astronomy during the Scientific Revolution ": 1 +"Kindergarten Environmental Studies: Discovering Animal Habitats with Amazon Echo Show, Temperature Sensors and Biodiversity Analysis ": 1 +"3rd Grade Environmental Studies: The Importance of Sunlight in the Photosynthesis Process ": 1 +"6th Grade Music: Discovering Melody through String Instruments ": 1 +"3rd Grade Science: Studying the Phases of the Moon using Telescopes ": 1 +"1st Grade Sensory Science: Experimenting with Sound Waves and Echo Technology for Auditory Exploration": 1 +"8th Grade Physics: Exploring Newton’s Laws through Rocket Model Building and Experiment Tests": 1 +"1st Grade Art: Learning Basic Shapes and Colors with Interactive Paper Collage Art": 1 +"10th Grade Home Economics: Mastering Healthy Cooking Techniques with Organic Produce and Calorie Control": 1 +"3rd Grade Geography: Interactive Study of Landforms and Water Bodies using Augmented Reality Apps": 1 +"Advanced 5th Grade Biology: Dissecting the Life Cycle of Butterflies through Observation and Journaling": 1 +"2nd Grade History: Understand the American Revolution through Storytelling and DIY Puppets": 1 +"4th Grade Physical Education: Developing Fitness and Agility through Fun Field Games and Exercise Routines": 1 +"6th Grade Literature: Exploring Symbolism and Themes in Classic Children’s Novels": 1 +"7th Grade Computer Science: Introduction to Coding with Scratch and Python": 1 +"1st Grade Mathematics: Enhancing Counting Skills with Fun Number Games and Colorful Counting Beads": 1 +"8th Grade Music: Enhancing Performance Skills Using GarageBand and MIDI Controllers": 1 +"4th Grade English: Boosting Spelling Skills with Interactive Word Games and Microsoft Immersive Reader": 1 +"2nd Grade Mathematics: Building Addition and Subtraction Proficiency with Prodigy Math Game and Counting Cubes": 1 +"7th Grade Social Studies: Discovering Ancient Civilizations Through Archaeological Simulations": 1 +"6th Grade Science: Understanding Photosynthesis Through Plant Growth Experiments": 1 +"5th Grade Geography: Exploring Topography using Google Earth and Physical 3D Maps": 1 +"Kindergarten Art: Creative Expressions with Digital Painting on iPads": 1 +"3rd Grade Physical Education: Fun with Gymnastics - Learning the Basics of Balance Beam": 1 +"Investigating the Role of Bees in Pollination in 1st Grade Environmental Studies": 1 +"7th Grade Science: Exploring Our Solar System with Augmented Reality in Star Walk 2": 1 +"11th Grade Literature: Dissecting Metaphors in Dickens’s Novels with Digital Text Analysis Tools": 1 +"10th Grade History: The Influence of the Telegraph in the American Civil War - Solution 3: Morse’s Revolutionary Communication": 1 +"9th Grade Social Studies: Comparative Government - The Influence of Constitution Drafting on Democracy": 1 +"4th Grade Earth Science: Understanding Volcanic Eruptions with DIY Lava Kits and Seismographs": 1 +"2nd Grade Music: Exploring Melody - Understanding Musical Notes with Online Piano Lessons": 1 +"Kindergarten Science: Discovering the Weather with Homemade Rain Gauges": 1 +"11th Grade Mathematics: Trigonometry - Understanding Angles and Trigonometric Functions with Interactive Graphs": 1 +"7th Grade Geography: Exploring Cultural Diversity through African Societies using Virtual Reality Technology": 1 +"3rd Grade Life Science: The Role of Metamorphosis in Butterfly Life Cycle - An Observation of Caterpillars": 1 +"Kindergarten Art: Comprehensive Study of Textures and the Color Spectrum through Finger Painting and Paper Mache Techniques": 1 +"5th Grade Science: Discovering the Solar System through Interactive Virtual Reality Tools": 1 +"4th Grade Math: The Fascinating World of Geometry - An Introduction to 3D Shapes using Tinkercad": 1 +"10th Grade Biology: Understanding Human Anatomy and Physiology with Virtual Dissection Software ": 1 +"6th Grade English Literature: Exploring Shakespeare’s World with Augmented Reality": 1 +"7th Grade Geography: The Mysteries of Ancient Egyptian Pyramids - An Excursion using Google Earth ": 1 +"9th Grade Art: The Birth of Cubism - A Study of Picasso’s Works through Virtual Art Galleries": 1 +"8th Grade Chemistry: The Role of Distillation in Perfume Making - A Practical Approach using Online Laboratory Simulations": 1 +"3rd Grade Science: Exploring the Lifecycle of Plants with Interactive 3D Models": 1 +"7th Grade Physical Education: The Science of Archery - A Study on Bow Mechanics": 1 +"5th Grade History: The Age of Exploration - Columbus’ Voyages through Interactive Maps and Timelines": 1 +"3rd Grade Geography: Unraveling the Wonders of the Sahara Desert through Sand Art": 1 +"1st Grade Mathematics: Fun with Fractions using Pizza Slices": 1 +"8th Grade Art: Mastering Color Theory through Watercolor Techniques": 1 +"6th Grade Physics: Exploring Laws of Motion with Paper Airplanes": 1 +"11th Grade Literature: Analyzing Symbolism in Shakespeare’s Plays": 1 +"5th Grade History: Understanding the Role of the Silk Road in Ancient Trade": 1 +"Kindergarten Biology: Introduction to Animal Habitats using Interactive Models": 1 +"3rd Grade Music: Journey into Jazz with Louis Armstrong’s Trumpet Tunes": 1 +"7th Grade Science: The Magic of Magnetism: Building Simple Circuits": 1 +"2nd Grade Art: Sculpting Imagination: Exploring Clay and Paper-Mache Creations": 1 +"6th Grade Chemistry: Exploring Elements and Compounds using the Interactive Periodic Table": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with the Aid of Manipulatives": 1 +"Kindergarten Art: Learning Basic Shapes and Colors through Collage Making": 1 +"4th Grade History: Unveiling the Mysteries of Medieval Times through Interactive Storytelling": 1 +"7th Grade Computer Science: Introduction to Coding Basics with Scratch Programming": 1 +"1st Grade Science: Discovering Animal Habitats through Virtual Field Trips": 1 +"8th Grade Health: Exploring the Importance of Hydration and Balanced Diet using Food Diary Apps": 1 +"6th Grade Music: Developing Melodic Awareness through Garageband Application": 1 +"5th Grade Geography: Understanding Climate Zones with Interactive Global Mapping Tools": 1 +"2nd Grade Physical Education: Enhancing Motor Skills through Gymnastics and Body Balancing Activities": 1 +"4th Grade Geography: Exploring the Great Barrier Reef Ecosystem through Virtual Reality Scuba Diving Simulations": 1 +"5th Grade Science: Investigating the Properties of Light using Laser Experiments and Prism Refractions": 1 +"8th Grade Literature: Decoding Symbolism in Harper Lee’s ’To Kill a Mockingbird’ using Interactive Whiteboards and Quizlet": 1 +"1st Grade History: Discovering the Life of Dinosaurs through Fossil Studies and Virtual Reality Excavations": 1 +"7th Grade Mathematics: Grasping Geometry Concepts through 3D Printing and TinkerCAD Software": 1 +"4th Grade Social Studies: Understanding the Aztec Calendar System through Augmented Reality and Interactive Timeline Tools": 1 +"2nd Grade Science: Exploring the Lifecycle of Frogs through Time-lapse Videos and Augmented Reality Models": 1 +"6th Grade English Language Arts: Analyzing J.K Rowling’s ’Harry Potter’ Characters’ Development using Padlet, Google Docs, and Interactive Quizzes": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals with Fun Kitchen Measurements and Cooking Simulations": 1 +"1st Grade Art: Learning Colors and Shapes through DIY Paper Mosaics using Safety Scissors and Glue Sticks": 1 +"4th Grade History: Exploring Ancient Egypt Through Virtual Reality": 1 +"6th Grade Science: Unraveling the Mysteries of Space with Augmented Reality": 1 +"1st Grade Art: Understanding Colors and Patterns Through Digital Painting": 1 +"5th Grade Mathematics: Applying Minecraft in Learning about Volume and Surface Area": 1 +"2nd Grade Geography: Adventures in Map Reading with Interactive Globe Software": 1 +"3rd Grade Language Arts: Engaging in Storytelling and Character Development with Animation Tools": 1 +"6th Grade Music: Discovering Jazz through Rhythm and Melody Composition Software": 1 +"7th Grade Environmental Studies: Analyzing Climate Change with Satellite Imagery and Data Visualization": 1 +"4th Grade Science: Exploring the Human Body through 3D Printing Technology": 1 +"Integrating Kahoot! in 1st Grade Mathematics for Fun and Effective Subtraction Mastery.": 1 +"7th Grade Geography: Exploring the Formation of Continents and Plate Tectonics": 1 +"5th Grade Art: Sculpting Basics with Clay and Papier-Mâché": 1 +"6th Grade American History: Civil War - The Introduction of the Telegraph": 1 +"9th Grade Science: Statistical Representation Using Google Sheets and Data Studio": 1 +"12th Grade Music: The Evolution of Rock: The Role of Electric Guitar": 1 +"4th Grade History: The French Revolution - Decoding Secret Messages with the Cipher Wheel": 1 +"Third Grade History: The Significance of the Catapult in Ancient Warfare": 1 +"Exploring Parallels in Alternate Realities: A 6th Grade Course Using The Multiverse Theory and String Theory": 1 +"7th Grade PE: Enhancing Stamina and Endurance with the Strava Running and Cycling Mobile App": 1 +"5th Grade Environmental Studies: Investigating Biodiversity with Field Trips and Nature Journals": 1 +"3rd Grade Science: Exploring Environmental Science through Hands-on Experiments and Virtual Field Trips": 1 +"4th Grade Mathematics: Understanding Multiplication using Grid Methods and Virtual Manipulatives": 1 +"3rd Grade English: Enhancing Reading Comprehension through Interactive Storytelling and E-books": 1 +"5th Grade Social Studies: Understanding Global Cultures through Virtual Tours and Interactive Maps": 1 +"8th Grade Music: Exploring the Evolution of Rock Music with GarageBand and Virtual Reality": 1 +"6th Grade Language Arts: Mastering Persuasive Writing through Interactive Online Debates and Google Docs": 1 +"Developing 3rd Grade Vocabulary Skills through Animated Storytelling with ToonTastic and Epic!": 1 +"8th Grade Art: Exploring Digital Painting Techniques for Landscape Art in Adobe Fresco on iPad": 1 +"5th Grade History: Ancient Egyptian Civilization and the Role of Simple Machines in Building the Pyramids": 1 +"7th Grade Mathematics: Grasping Geometry Concepts through 3D Modeling in Tinkercad and Virtual Reality.": 1 +"5th Grade History: Exploring Colonial America through Virtual Field Trips": 1 +"7th Grade Biology: Unraveling the Secrets of Human Anatomy with Interactive Models": 1 +"10th Grade Music: Exploring Jazz Age through the Evolution of the Saxophone": 1 +"8th Grade English: Enhancing Debate Skills with Online Forums and Video Conferencing": 1 +"5th Grade English: Reporting on Environmental Changes - The Role of Solar Energy": 1 +"8th Grade Geography: Mapping Global Climate Patterns using GIS Technology": 1 +"3rd Grade Math: Discovering Fractions with Pizza Party Simulation": 1 +"Advanced 6th Grade Physics: Learning Kinetic Energy using Marble Run Experiments": 1 +"7th Grade English: Decoding Symbolism in Short Stories using Digital Storyboards": 1 +"8th Grade Physics: Unveiling the Science behind Magnets in Electric Generators": 1 +"3rd Grade Sports Science: Learning Football Passing Techniques with Virtual Reality Technology": 1 +"10th Grade Health: Achieving Balanced Lifestyle through Yoga, Meditation, and Microbiome Understanding": 1 +"3rd Grade Reading: Enhancing Vocabulary Skills through Interactive Storytelling using Smartboard Technology": 1 +"10th Grade Literature: Analyzing Themes and Motifs in Classic Novels using Kindle E-readers": 1 +"6th Grade English: Exploring Drama and Plays using Social Media Platforms": 1 +"7th Grade Literature: Virtual Reality-assisted Comprehension of Symbolism in Sonnets": 1 +"9th Grade Music: Mastering Composition Techniques with GarageBand, Ableton Live, and SoundCloud for Modern Music": 1 +"8th Grade Literature: Comprehending Irony in Mark Twain’s Novels using Smart Boards, Prezi Presentations and Oculus Rift VR.": 1 +"2nd Grade Health: Promoting Dental Care Awareness through the Use of Electric Toothbrush Demonstrations": 1 +"7th Grade History: Investigating Civil Rights Movements through Machine Learning Concepts": 1 +"3rd Grade Geography: Exploring World Maps & Cultures through Virtual Reality": 1 +"6th Grade Mathematics: Introduction to Geometry using 3D Printing and CAD Software": 1 +"4th Grade Science: Discovering Solar System with Augmented Reality Apps": 1 +"1st Grade Music: Exploring Rhythm and Melody with Interactive Musical Games": 1 +"3rd Grade Literature: Creating Your Own Fairy Tales with Story Builder Software": 1 +"5th Grade Physics: Understanding Gravity and Motion through Experiments and Simulations": 1 +"7th Grade Biology: Decoding DNA and Genetics with Bioinformatics Tools": 1 +"8th Grade Art: Sculpture Creation Techniques Using Clay and 3D Modeling": 1 +"1st Grade History: Learning About Indigenous Cultures through Interactive Storytelling": 1 +"6th Grade Environmental Studies: Studying Climate Change Effects on Local Wildlife with Data Analysis Tools": 1 +"5th Grade Math: Exploring Geometric Shapes with Interactive Software Tools": 1 +"8th Grade History: Tracing Civil Rights Movements through Virtual Reality Experiences": 1 +"10th Grade English: Enhancing Argumentative Writing Skills with Grammarly": 1 +"4th Grade Science: Understanding Weather Patterns Through Climate Apps": 1 +"2nd Grade Art: Introduction to Sculpting and Pottery-Making": 1 +"7th Grade Social Studies: Delving into the World of Ancient Civilizations with Minecraft: Education Edition": 1 +"9th Grade Language Arts: Discovering Literary Themes through Interactive Storytelling": 1 +"3rd Grade Music: Learning Rhythm and Tempo with Interactive Percussion Instruments": 1 +"11th Grade Physics: The Quantum Revolution: Understanding the Dual Nature of Light ": 1 +"8th Grade Math: Mastering Fractions and Decimals with Math Games and Apps": 1 +"6th Grade Mathematics: Understanding Fractions through Pizza Models and Fraction Strips": 1 +"5th Grade History: Discovering Ancient Civilizations with Augmented Reality": 1 +"Kindergarten Science: Learning about Seasons with Interactive Weather Calendar: Understanding Polar Climate Zones": 1 +"3rd Grade Mathematics: Grasping Multiplication and Division through Abacus and Math Apps": 1 +"1st Grade Science: Introduction to Plant Life-Cycle using Seed Sprouting Projects": 1 +"1st Grade Reading: Enhancing Vocabulary with Interactive E-books": 1 +"4th Grade English: Exploring Narrative Writing with Storyboarding and Graphic Organizers": 1 +"8th Grade Music: Discovering Mozart through Violin": 1 +"Pre-K Art: Introduction to Sculpture using Playdough - Understanding Form and Texture": 1 +"7th Grade Language Arts: Perfecting Persuasive Writing using Google Slides’ Presentation Features": 1 +"8th Grade Mathematics: Unraveling the Mysteries of Fractals Using Computer Simulations": 1 +"6th Grade History: Decoding Ancient Egypt Using Virtual Reality and 3D Modeling Software": 1 +"2nd Grade Environmental Science: Exploring the Life Cycle of Butterflies with a Butterfly Garden Kit": 1 +"7th Grade Art: Exploring Motion in Art using Stop-Motion Animation Techniques": 1 +"11th Grade Physics: Understanding Quantum Mechanics through VR Experiments": 1 +"5th Grade Geography: Learning About Topography Using Minecraft and GIS Technology": 1 +"1st Grade Science: Discovering the Night Sky with a Telescope and Star Chart": 1 +"3rd Grade Music: Exploring Rhythm and Melody with Digital Audio Workstation Software": 1 +"10th Grade Social Studies: Using Satellite Imagery to Understand Urban Planning": 1 +"4th Grade Technology: Building Simple Machines Using LEGO Education Kits": 1 +"3rd Grade Mathematics: Understanding Multiplication through Interactive Digital Games": 1 +"12th Grade Physics: Exploring Quantum Mechanics with the Help of Interactive Simulations": 1 +"Our Blue Planet: An In-depth Study of Ocean Currents with Virtual Reality for Second Graders": 1 +"10th Grade History: Discovering the Wonders of Renaissance Art Using Virtual Reality and Google Arts": 1 +"10th Grade Health Education: Enhancing Mental Health through Mindfulness and Yoga Practices": 1 +"8th Grade History: Unlocking the Secrets of Medieval Europe with Code-breaking": 1 +"5th Grade Introduction to Decimals and Rounding Off Concepts": 1 +"10th Grade Geography: Navigating Global Climate Patterns with Satellite Imagery and Google Earth": 1 +"3rd Grade Community Studies: Cultivating Global Awareness through Virtual Cultural Exchanges": 1 +"6th Grade Fine Arts: Exploring Watercolor Techniques": 1 +"4th Grade Mathematics: Understanding Geometry through Minecraft Building Projects": 1 +"4th Grade Mathematics: Grasping the Basics of Fractions Using Interactive Online Games": 1 +"Exploring the Civil War in 6th Grade History through Virtual Reality Field Trips": 1 +"6th Grade History: Understanding the Influence of the Cotton Gin on the Antebellum South": 1 +"7th Grade Science: Exploring the Solar System and Planetary Movements through Augmented Reality Apps": 1 +"7th Grade History: World War II - A Comprehensive Study on the Role of Submarines in Naval Battles": 1 +"4th Grade English: Building Vocabulary and Grammar Skills through Interactive Storytelling and Online Quizzes": 1 +"5th Grade Art: Exploring Pottery, Acrylic Painting, Digital Design and 3D Sculpture Techniques": 1 +"5th Grade History: Examining the Egyptian Civilization through Hieroglyphics and Ancient Star Gazing Practices": 1 +"1st Grade Music: Discovering Melody and Pitch through Interactive Online Music Games": 1 +"1st Grade Math: Understanding Numbers through Interactive Mathematics Games": 1 +"7th Grade History: Ancient Egyptian Pyramids and the Significance of Hieroglyphs": 1 +"9th Grade Geography: The Intricacies of Plate Tectonics and Earthquake Predictions": 1 +"5th Grade Literature: Creative Writing with Animations: Concepts and Practices": 1 +"2nd Grade Sports: Engaging with Soccer and Dribbling Skills": 1 +"11th Grade Music: Unveiling Beethoven’s Symphony No.9 with Finale Notation Software, Rhythm Analysis, and the Use of Digital Audio Workstations": 1 +"8th Grade Science: The Evolution of Physics, Newton’s Laws, and Quantum Theory: A Study on Einstein’s Contribution": 1 +"3rd Grade Language Arts: Dive into Poetry using Interactive E-Books": 1 +"6th Grade Art: Discovering Patterns and Textures in Acrylic Painting": 1 +"4th Grade Social Studies: Journey into Ancient Greek Philosophers through Role Play": 1 +"7th Grade Literature: Exploring Shakespeare’s Dramatic Techniques in English Theater with iMovie and Audacity": 1 +"4th Grade Mathematics: Geometry & Shapes Explored Through Tangram Puzzles": 1 +"Second Grade Environmental Studies: Wind Energy and Wind Turbines Demonstrated Through DIY Windmill Projects": 1 +"3rd Grade Science: Understanding the Human Body with Virtual Reality Anatomy Apps": 1 +"Tenth Grade History: Examining the French Revolution Using Virtual Reality Tours and Google Earth": 1 +"4th Grade Environmental Studies: Composting & Sustainability with Home Gardening and Organic Waste": 1 +"Boosting 1st Grade Reading Skills with ABCMouse: Learning Letters and Sounds in an Interactive Digital Environment": 1 +"Spelling Bee Prep: 3rd Grade Language Arts Course using Kahoot Quizzes and Google Docs": 1 +"2nd Grade English: Poetry and Rhyme Scheme Analysis Using RhymeZone and Audible Audiobooks": 1 +"7th Grade Social Studies: Discovering Medieval Europe with Calligraphy and Illuminated Manuscripts": 1 +"1st Grade Mathematics: Exploring Shapes and Patterns with Tangram Puzzles": 1 +"2nd Grade Social Studies: Understanding Community Roles Through Role-playing and Simulations": 1 +"7th Grade History: The Role of the Transcontinental Railroad in American Expansion": 1 +"5th Grade Science: A Dive into Ocean Ecosystems: Identifying Marine Life Using Virtual Reality": 1 +"6th Grade Language Arts: Mastering Metaphors and Similes in Poetry Analysis Using Digital Interactive Tools": 1 +"4th Grade Geography: Exploring the Tropical Rainforests Through Virtual Field Trips": 1 +"8th Grade Music: The Science of Sound: Understanding Frequency and Pitch with Virtual Instruments": 1 +"3rd Grade History: Journey Through Ancient Rome: Interactive Exploration with Augmented Reality": 1 +"7th Grade Physical Education: Improving Basketball Skills with Motion Tracking Technology": 1 +"6th Grade English: Perfecting Punctuation in Sentence Construction: Using Kahoot! and Flipgrid for Class Engagement": 1 +"3rd Grade Music: Understanding Rhythms and Beats through Digital Drum Pad Applications": 1 +"3rd Grade Biology: Discovering Plant Life Cycles via Interactive Gardening Simulation": 1 +"3rd Grade Arithmetic: Multiplication Mastery using Augmented Reality Tools": 1 +"5th Grade History: Exploring Ancient Civilizations with Google Earth and Virtual Tours ": 1 +"5th Grade Language Arts: Poetry Appreciation through Dramatic Interpretations": 1 +"5th Grade Language Arts: Vocabulary Expansion via Augmented Reality Word Games": 1 +"7th Grade Geography: Exploring World Landforms through VR Trekking Adventures": 1 +"6th Grade History: The Civil War; The Strategic Deployment of Railroads and Telegraphs": 1 +"7th Grade Geography: Climate Change and Its Impact Studied through Data Analysis and Predictive AI Tools": 1 +"3rd Grade Art: Discovering Geometric Shapes in Art with Paper Mosaics.": 1 +"5th Grade History: Discovering the Silk Road through Virtual Reality Tours": 1 +"4th Grade Mathematics: Exploring Geometry with 3D Printing Models": 1 +"8th Grade Music: Composing Melodies with Digital Audio Workstations": 1 +"1st Grade Health and Wellness: Learning About Nutrition through Interactive Food Pyramid Games": 1 +"3rd Grade Science: Exploring Space with Virtual Reality and Documentary Film Analysis": 1 +"5th Grade Art: Creating Sculptures using Reusable Materials": 1 +"2nd Grade Mathematics: Introduction to Measurement using Digital Rulers and Measurement Apps": 1 +"10th Grade Music: Exploring Jazz - Understanding Improvisation and Rhythm Patterns": 1 +"4th Grade Geography: Exploring Continents and Oceans using Virtual Globe and GPS Technology": 1 +"Pre-K Language Arts: Learning Phonics with Interactive Soundboards and LeapFrog Learning Resources": 1 +"4th Grade Geography: Investigating Rainforest Biodiversity with Google Earth and Animal Tracking Apps": 1 +"6th Grade Physical Education: Mastering Basketball Skills with Agility Ladders and Video Analysis": 1 +"9th Grade Literature: Exploring Jane Austen’s Pride and Prejudice using Blogs, Podcasts and Virtual Book Clubs": 1 +"2nd Grade Environmental Science: Discovering Ocean Life with Aquatic Microscopes and Documentary Films": 1 +"5th Grade Mathematics: Grasping the Basics of Decimals through Physical Tokens and Online Games": 1 +"1st Grade Art: Learning About Shapes and Colors with Hands-on Craft Kits ": 1 +"7th Grade History: Unraveling Ancient Egyptian Civilization Using Virtual Reality Tours and Hieroglyphics Decoding": 1 +"8th Grade Science: Investigating Photosynthesis with Leaf Disk Lab Kits and Time-Lapse Photography": 1 +"3rd Grade Language Arts: Fables and Folktales: Understanding Morals and Themes through Digital Storytelling": 1 +"2nd Grade Social Studies: Exploring Community Roles with Role Play and Visits to Local Businesses": 1 +"3rd Grade Math: Grasping Multiplication and Division with Interactive Whiteboard Games": 1 +"5th Grade History: Unraveling Ancient Egypt through Virtual Reality Exploration": 1 +"1st Grade Art: Expressing Imagination through Digital Painting on iPad": 1 +"9th Grade Biology: Analyzing Genetic Heredity with Virtual Lab Experiments": 1 +"7th Grade Geography: Exploring European Landscapes via Augmented Reality Tours": 1 +"2nd Grade Science: Understanding Life Cycles through Time-lapse Photography and Interactive Models": 1 +"6th Grade Mathematics: Mastering Fractions and Decimals with Online Quizzes and Games": 1 +"8th Grade Literature: Delving into Shakespeare’s Plays through Dramatic Reenactments and Podcast Discussions": 1 +"3rd Grade Language Arts: Improving Reading Skills with Audiobooks and E-Books": 1 +"10th Grade Chemistry: Understanding Chemical Reactions through Virtual Reality Simulations": 1 +"2nd Grade Botany: Learning Plant Anatomy Through Microscopic Observation": 1 +"3rd Grade Music: Understanding Beats and Tempo with Tambourines and Castanets": 1 +"8th Grade Art: Developing Sketching Skills through Still Life Drawing": 1 +"6th Grade Physical Education: Utilizing Fitbit and Garmin Forerunner in Basketball Training": 1 +"Grasping Fractions in 3rd Grade Mathematics with Interactive Board Games": 1 +"2nd Grade Geography: Exploring World Landmarks through Virtual Reality Field Trips": 1 +"5th Grade Literature: Engaging with Classic Fairy Tales through Role-Playing and Storytelling": 1 +"6th Grade Astronomy: Comprehending the Universe using Stellarium Software": 1 +"Rhythm and Harmony Exploration: A 2nd Grade Music Course with Xylophones and Garageband": 1 +"12th Grade Chemistry: Organic Chemistry Unveiled: The Magic of Carbon Compounds": 1 +"6th Grade Mathematics: Understanding Fractions and Decimals with the Mathletics App": 1 +"3rd Grade Science: Exploring Marine Life Adaptations in Coral Reefs using Underwater Robotics": 1 +"6th Grade Biology: Investigating Rainforest Biodiversity through Drone Imagery and Virtual Reality": 1 +"4th Grade English: Mastering Creative Writing in Digital Media with Storybird": 1 +"3rd Grade Language Arts: Perfecting Sentence Structure using Tablets, Grammarly, and Google Docs": 1 +"5th Grade Social Studies: The Civil War - The Role of Railroads and the Impact of the Telegraph": 1 +"Pre-Kindergarten: Mastering Numbers and Letters with Montessori Materials": 1 +"6th Grade History: Discovering Medieval Europe through Mapping and 3D Castle Simulations": 1 +"2nd Grade Elementary: Understanding the Water Cycle with Interactive Models and Augmented Reality": 1 +"2nd Grade Physical Education: Team Building & Basketball Shooting Techniques using Agility Ladders": 1 +"6th Grade Geography: Understanding Plate Tectonics and Earthquake Patterns Using Augmented Reality Tools": 1 +"7th Grade Physical Education: Introduction to Volleyball with Serving and Passing Techniques": 1 +"2nd Grade Life Science: Exploring Backyard Insects and Their Role in Ecosystems": 1 +"Civil War’s Influence on Railroad Construction: A 9th Grade History Course": 1 +"7th Grade Music: Uncovering Melody and Harmony in Jazz Using Garageband": 1 +"The Civil War Era: Investigating the Impact of Telegraphy in 9th Grade History": 1 +"9th Grade History: The Industrial Revolution: The Steam Engine’s Role in Textile Production and International Trade": 1 +"Discovering Medieval Europe: Using Virtual Reality to Teach 7th Grade History about the Crusades": 1 +"3rd Grade Music: Understanding Rhythm and Tempo through Piano Playing": 1 +"5th Grade Art: Mastering Proportions and Perspective with Charcoal and Sketching Techniques": 1 +"8th Grade Technology: The Evolution and Influence of the Internet on Modern Society": 1 +"7th Grade History: The Role of the Printing Press in the Renaissance": 1 +"5th Grade Geography: Understanding Earthquake and Volcano Patterns through GIS Technology": 1 +"3rd Grade Science: Exploring Life Cycles through Butterfly Metamorphosis": 1 +"Unmasking the Mysteries of the Solar System: A 4th Grade Astronomy Course": 1 +"7th Grade Music: Jazz and its Impact on Contemporary Music Genres": 1 +"4th Grade English: Engaging with Fables and Folktales through Digital Storytelling": 1 +"5th Grade Social Studies: The Ancient Mayan Civilization: Understanding the Significance of the Mayan Calendar System": 1 +"8th Grade Science: The Physiology of the Human Heart: An In-depth Study of Cardiovascular Health": 1 +"The Role of the Abacus in Ancient Mathematics: A 6th Grade History Exploration": 1 +"2nd Grade Math: Understanding Number Patterns with Interactive Digital Games": 1 +"5th Grade Geography: The Role of GPS in Mapping and Exploration": 1 +"2nd Grade Music: Discovering Sound Waves through GarageBand": 1 +"3rd Grade Language Arts: Improving Reading Comprehension with E-books": 1 +"1st Grade Science: Grasping the Concept of Weather through Weather Station Experiments": 1 +"9th Grade Civics: Exploring the Impact of Social Media on Modern Politics": 1 +"7th Grade History: The Printing Press and its Influence on the Spread of Information": 1 +"Practical Study of Soil Conservation Techniques Using Drone Imaging and Satellite Data: The Importance of Precision Agriculture": 1 +"11th Grade Literature: Analyzing Modern Poetry through Spoken Word Performances": 1 +"4th Grade Health: Learning About the Food Pyramid with Augmented Reality Apps": 1 +"7th Grade Art: Exploring Impressionism through Augmented Reality and Digital Painting Tools": 1 +"5th Grade Science: Discovering the Solar System through Virtual Planetariums": 1 +"8th Grade Physical Education: Enhancing Volleyball Skills with Yoga Strength Exercises": 1 +"11th Grade History: Understanding the Impact of the Printing Press during the Renaissance": 1 +"3rd Grade Music: The Magic of Melodies - Using Digital Music Creation Software to Compose Simple Tunes": 1 +"1st Grade Language Arts: Mastering Alphabet Recognition using Animated Storytelling Software": 1 +"Kindergarten Math: Learning Basic Counting through Interactive Digital Games": 1 +"10th Grade Music: The Art of Harmonics - Investigating the Role of Pedal Effects in Electric Guitar Performance": 1 +"5th Grade Geography: Discovering the World’s Biomes with Virtual Field Trips": 1 +"3rd Grade Science: Exploring the Water Cycle through Home-based Experiments and Digital Simulations": 1 +"5th Grade History: Journey through Ancient Egyptian Pyramids using Augmented Reality": 1 +"4th Grade Mathematics: Engaging with Multiplication and Division through Interactive Puzzles and Brain Games": 1 +"1st Grade Science: Introduction to Animal Habitats using Virtual Field Trips": 1 +"3rd Grade Music: Discovering Melody and Harmony with Piano and String Instruments using Music Theory Apps": 1 +"7th Grade Physics: Unveiling the Principles of Forces and Motion using Interactive Simulations": 1 +"2nd Grade Science: Discovering Weather Patterns and Climate Change through Experiments": 1 +"9th Grade Mathematics: Algebra - Concentration on Equations and Graphing ": 1 +"4th Grade English: Developing Comprehension of Fables and Folktales using Storytelling Apps": 1 +"3rd Grade Mathematics: Exploring Shapes and their Properties in our Environment": 1 +"8th Grade English Language Arts: Understanding Irony in Shakespeare’s Plays through Dramatic Performances and Discussions": 1 +"3rd Grade Mathematics: Exploring Fractions and Decimals using Interactive Games": 1 +"5th Grade History: Unraveling the Mysteries of Ancient Egyptian Hieroglyphs with Virtual Reality": 1 +"7th Grade Algebra: Understanding Quadratic Equations through Interactive Digital Platforms": 1 +"2nd Grade Reading: Engaging with Folktales using Augmented Reality Storybooks": 1 +"8th Grade Geography: Studying Ancient Greek Trade Routes and their Influence on Modern Trade ": 1 +"1st Grade Science: Exploring Sound and Vibration using Tuning Forks and Audacity Software": 1 +"6th Grade Painting: Discovering Acrylic Layering Techniques with Palette Knives": 1 +"3rd Grade Astronomy: The Wonders of Weather Patterns on Different Planets": 1 +"10th Grade Chemistry: Discovering DNA Structures through Polymerase Chain Reaction Techniques": 1 +"1st Grade Craft: Understanding Patterns and Textures through Paper Mache Art": 1 +"8th Grade Music: Understanding Harmony and Scales Using Guitar Strings": 1 +"10th Grade Mathematics: Calculus Concepts Exploration using R and Data Visualization Techniques": 1 +"The Impact of Plastic Production: An In-depth Study on Injection Molding and Microplastic Pollution - Solution 15: Circular Economy": 1 +"4th Grade English: Learning Rhymes and Legends through Animated Videos using Adobe Animate": 1 +"7th Grade Art: Discovering Texture and Form with Clay Sculpture": 1 +"1st Grade Science: Understanding Weather Patterns and Climate Basics with Interactive Models": 1 +"3rd Grade Language Arts: Mythology Studies using Augmented Reality": 1 +"5th Grade Social Studies: The Mayan Civilizations, Hieroglyphic Writing System, and the Science of Astronomy": 1 +"3rd Grade Biology: Exploring Ant Colonies using Live Feed Cameras and Behavioral Analysis": 1 +"2nd Grade Geography: Using Satellite Images for Landform Studies": 1 +"2nd Grade Science: Exploring Weather Patterns with Interactive Charts and Tools": 1 +"8th Grade Art: Crafting Abstract Expressions with Clay Modeling Techniques": 1 +"7th Grade History: Industrial Revolution and Its Impact on Modern Society": 1 +"2nd Grade French: Immersion Learning with Duolingo, Anki Flashcards, and Google Classroom": 1 +"5th Grade Mathematics: Understanding Geometry through Virtual Manipulatives": 1 +"6th Grade Geography: Navigating the World with Google Earth": 1 +"10th Grade Music: Exploring Harmonics - Techniques for Guitar: A Deep Dive into Fingerstyle and Percussive Techniques": 1 +"4th Grade Archaeology: Unearthing History through Simulated Excavation Projects": 1 +"2nd Grade Music: Exploring Pitch and Tone with Virtual Instruments": 1 +"4th Grade English: Adventure in Creative Writing with Digital Storytelling Tools": 1 +"2nd Grade Science: Exploring Solar Systems through LEGO Model Building ": 1 +"4th Grade Geography: The Development of the Silk Road and its Impact on Trade ": 1 +"3rd Grade Art: The Art of Origami and Japanese Culture ": 1 +"1st Grade Environmental Studies: Learning about Animal Habitats through Puppet Making ": 1 +"3rd Grade Computer Science: Creating Basic Animations using Scratch ": 1 +"8th Grade Art: Understanding 3D Modeling and Printing in Contemporary Art ": 1 +"6th Grade Physical Education: Mastering Soccer Techniques: Focusing on Goalkeeping ": 1 +"8th Grade Mathematics: Introduction to Probability and Statistics using Python ": 1 +"5th Grade Health: Team Building and Communication Skills through Cooperative Games ": 1 +"1st Grade Dance: Understanding Tempo and Rhythm through Ballet Movements": 1 +"4th Grade Geography: The Compass and Its Role in Navigating the Globe": 1 +"6th Grade Algebra: Mastering Linear Equations with Geogebra Software and Venn Diagrams": 1 +"5th Grade Art History: Interpreting Symbols in Renaissance Paintings": 1 +"2nd Grade English: Interactive Poetry Creation with VR and Book Creator": 1 +"2nd Grade Social Studies: The Great Migration and Its Effect on Modern Society - A Journey through Jazz Music": 1 +"1st Grade Health Education: Introduction to Healthy Eating and Creating Simple Salads with Fresh Produce": 1 +"Fourth Grade Biology: Exploration of Ecosystems: A Closer Look at Food Chains": 1 +"6th Grade Anthropology: Uncovering the Secrets of Mayan Civilization and their Advanced Calendar System": 1 +"10th Grade Creative Writing: The Impact of Social Media Slang in Contemporary Poetry": 1 +"Advanced 4th Grade Dance: Discovering Ballet Movements through Video Analysis Software and Motion Capture Techniques": 1 +"7th Grade Mathematics: Advanced Algebra Concepts through Online Gaming": 1 +"5th Grade Science: The Role of Pollination in Ecosystems with Virtual Lab Experiments": 1 +"10th Grade Literature: The Influence of the Romantic Period on Modern Poetry": 1 +"2nd Grade French: Introduction to Basic Conversational Phrases through Interactive Audio Sessions": 1 +"12th Grade Physics: Understanding Quantum Mechanics through the Dual Nature of Light": 1 +"5th Grade History: Understanding the Ancient Egyptian Civilization and the Construction of Pyramids": 1 +"8th Grade Art: The Evolution of Impressionism and the Use of Color in Painting": 1 +"7th Grade Geography: Navigating the Global Climate Zones with Interactive Mapping Software": 1 +"4th Grade English: Mastering Homophones and Homonyms with Online Quizzes": 1 +"10th Grade Social Studies: The Impact of the Industrial Revolution on Modern Society": 1 +"6th Grade Geography: Exploring World Biomes Through Virtual Reality": 1 +"Expanding 4th Grade Subtraction Skills with Math Blaster: A Focus on Educational Video Games": 1 +"1st Grade Art: Developing Color Theory Basics using Digital Illustration Tools on Procreate": 1 +"9th Grade Biology: Investigating Photosynthesis and Cellular Respiration through Interactive Lab Experiments": 1 +"4th Grade History: Understanding The Significance of Water in Ancient Roman Society": 1 +"7th Grade Civics: Applying Monopoly Concepts to Grasp Economic Principles and Systems": 1 +"6th Grade Social Studies: Naval Tactics in the Age of Exploration": 1 +"2nd Grade Language Arts: Building Reading Comprehension through Interactive Storytelling": 1 +"5th Grade Mathematics: Mastering Division with TechSmart Kids using Tablets": 1 +"7th Grade Music: Analyzing Jazz Progression with GarageBand’s Virtual Instruments": 1 +"2nd Grade English: Enhancing Reading Comprehension with TumbleBook Library’s Interactive eBooks": 1 +"6th Grade Science: In-depth Exploration of Renewable Energy Sources: Harnessing the Power of Wind and Solar Energy": 1 +"6th Grade Art: Understanding the Basics of Sculpture using Clay and Recycled Materials": 1 +"4th Grade Mathematics: Understanding Geometry: Using SketchUp 3D Design Software for Practical Applications": 1 +"5th Grade History: Exploring the Ancient Egyptian Civilization with Google Earth Virtual Tours": 1 +"6th Grade Mathematics: Mastering Decimals and Percentages with Khan Academy’s Learning Tools": 1 +"8th Grade Music: Harmonic Progressions and Composition Techniques with Yamaha Digital Pianos and Avid Sibelius Software": 1 +"8th Grade History: The Renaissance Era: The Birth of Modern Science and Art": 1 +"7th Grade Science: Basics of Coding: Creating Simple Programs using Python and the Codecademy Platform": 1 +"5th Grade History: The Voyages of Vasco da Gama: Navigational Techniques and Tools Explored": 1 +"8th Grade Biology: Analysis of Cellular Structures Using Virtual Microscopy": 1 +"1st Grade Technology: Learning Basic Coding with Scratch Jr.": 1 +"2nd Grade Art: Discovering Patterns and Symmetry through Origami Making": 1 +"7th Grade Earth Science: Unveiling the Processes of Weathering and Erosion": 1 +"5th Grade Mathematics: Fun with Geometry using Origami and Tangram Puzzles": 1 +"10th Grade Literature: The Evolution of Narratives from Shakespeare to Modern Day Playwrights": 1 +"9th Grade Physics: Exploring the Laws of Motion through Interactive Experiments": 1 +"4th Grade Social Studies: Understanding Cultural Diversity through World Cuisine": 1 +"6th Grade Spanish: Mastering Verbs and Tenses through Interactive Games": 1 +"3rd Grade Physical Education: Building Teamwork Skills through Cooperative Sports and Games.": 1 +"2nd Grade Geography: Exploring World Maps with Recycled Paper Mache Globe Projects": 1 +"2nd Grade Geography: Learning about Continents through DIY Puzzle Maps": 1 +"2nd Grade Art: Understanding Textures and Patterns with Sand Art Projects": 1 +"4th Grade Music: Developing Rhythm Skills through Djembe Drums, Logic Pro X, and FL Studio": 1 +"8th Grade Social Studies: Gaining Insight into Global Communities through the Study of Sociology": 1 +"Mechanics of Basketball Shots: An In-depth Investigation with 3D Motion Analysis in 9th Grade Gym Class": 1 +"5th Grade History: Delving into Medieval Europe through Castle Construction Projects": 1 +"7th Grade English: Exploring Irony and Sarcasm through Pearson’s Interactive Material": 1 +"6th Grade Mathematics: Mastering Decimals with Base Ten Blocks and Online Practice Modules": 1 +"12th Grade Literature: Examining Symbolism in Hemingway’s Works with Machine Learning Text Analysis Tools": 1 +"4th Grade Geography: Understanding the Role of Rivers in Ancient Egyptian Society": 1 +"6th Grade Art: Experimenting with Acrylic Painting Techniques Using Palette Knives": 1 +"5th Grade Art: Charcoal Drawing Techniques in Landscape and Portraiture": 1 +"9th Grade Music: Exploring Jazz Evolution with Music Production Software": 1 +"1st Grade Health: Understanding Basic Hygiene through Hand Washing Activities": 1 +"1st Grade Art: Introduction to Shape and Form Using Play Dough": 1 +"3rd Grade Language Arts: Building Vocabulary with Digital Crossword Puzzles, Google Docs Collaboration, and Quizizz Games": 1 +"Kindergarten Music: Introduction to Rhythm with Hand Clapping and Foot Stomping": 1 +"4th Grade Environmental Science: Understanding the Life Cycle of Butterflies Using Observation Kits": 1 +"6th Grade Music: Exploring Dynamics and Tempo on the Piano using MuseScore Software and Audacity": 1 +"4th Grade English: Exploring Poetry Using Interactive Voice Recordings": 1 +"1st Grade History: Journey Through Medieval Europe using Augmented Reality": 1 +"5th Grade Language Arts: A Voyage through Myths using Immersive Storytelling Platforms": 1 +"3rd Grade English: Boosting Reading Comprehension with Noun Usage using Online Flashcards": 1 +"4th Grade Science: The Wonders of Photosynthesis in Aquatic Plants": 1 +"5th Grade Mathematics: Unraveling Geometric Shapes through Interactive 3D Models": 1 +"7th Grade Physical Education: Basics of Basketball Techniques with Speed Cones": 1 +"1st Grade Science: Discovering Jungle Animal Behavior Through Animated Documentaries and Behavior Mapping": 1 +"4th Grade Mathematics: Mastering Multiplication Tables with Math Bingo App": 1 +"7th Grade Language Arts: Mastering Metaphors in the Art of Storytelling": 1 +"7th Grade Geography: Understanding Earth’s Features Through Topographical Mapping": 1 +"10th Grade Drama: Exploring Shakespeare’s Use of Soliloquy in Macbeth": 1 +"3rd Grade Mathematics: Building Numeracy Skills Through Tangram Puzzles": 1 +"12th Grade Physics: Quantum Mechanics and Its Application in Modern Technology": 1 +"4th Grade Environmental Studies: Discovering Ecosystems and Food Chains in Local Parks": 1 +"9th Grade Art: Unraveling the Secrets of Impressionism with Oil Pastels and Canvas": 1 +"5th Grade Music: Exploring Rhythm and Melody Through Hand Percussion Instruments": 1 +"8th Grade Literature: Deciphering Allegory in Fables and Folk Tales": 1 +"11th Grade History: Scrutinizing the Dark Ages Through the Prism of Gothic Architecture": 1 +"2nd Grade Physical Education: Mastering the Basics of Soccer with Ball Control Techniques": 1 +"4th Grade Literature: Exploring Fables and Their Moral Lessons through Animated Storytelling": 1 +"5th Grade Geography: Navigating the World Map with Interactive Globes and Google Earth": 1 +"2nd Grade Science: Discovering the Animal Kingdom through Virtual Zoo Trips ": 1 +"6th Grade Art: Understanding Perspective and Dimension with Clay Modeling ": 1 +"2nd Grade Mathematics: Exploring Addition and Subtraction through Fun Math Games": 1 +"7th Grade Music: Journey through The History of Jazz with Interactive Jazz Band Performances": 1 +"1st Grade English: Learning to Spell with Alphabet Blocks and Phonics Songs": 1 +"8th Grade History: Understanding the Civil Rights Movement through Documentaries and Discussion": 1 +"3rd Grade Physical Education: Fundamental Ball Games and Teamwork Skills": 1 +"4th Grade Environmental Studies: Learning about Renewable Energy through Solar Powered Experiments": 1 +"3rd Grade Mathematics: Exploring Fractions with Pizza Slices and Interactive Digital Tools": 1 +"7th Grade Physical Education: Enhancing Stamina with Track and Field Activities and Teamwork": 1 +"6th Grade History: Ancient Egyptian Civilization - Hieroglyphics and Pyramid Construction ": 1 +"Solution 8: Solar Energy Conversion - A Strategy to Curb Greenhouse Gas Emissions": 1 +"2nd Grade Earth Sciences: Understanding Weather Patterns with Thermometers, Anemometers and Weather Maps": 1 +"10th Grade Computer Science: Mastering Python Programming for Effective Problem Solving": 1 +"3rd Grade Biology: Investigating Insect Life Cycles using Magnifying Glasses and Digital Microscope": 1 +"9th Grade Physical Education: Boosting Flexibility and Strength through Yoga and Pilates": 1 +"1st Grade Physical Education: Basics of Dodgeball: Dodging and Throwing Techniques": 1 +"5th Grade History: Unraveling Medieval Europe Through the Study of Castles and Knightly Heraldry": 1 +"7th Grade Art: Understanding Color Theory: A Journey into the World of Acrylic Painting": 1 +"3rd Grade Language Arts: Exploring Traditional Storytelling: Comprehending Folktales through Shadow Puppetry": 1 +"4th Grade Science: Grasping the Concept of Matter and Energy through Experiments with Magnets": 1 +"Decoding the Food Pyramid: An 8th Grade Physical Education Course on Healthy Eating and Exercise": 1 +"1st Grade’s Adventure in the Animal Kingdom: Discovering Different Species through Interactive Animal Sounds": 1 +"5th Grade English: Mastering Paragraph Composition using Online Word Games": 1 +"Fourth Grade Geography: Exploring the Influence of Rivers on Ancient Civilizations": 1 +"Roman Engineering: The Use of Arches and Aqueducts in the Construction of Colosseum for 7th Grade History": 1 +"1st Grade Mathematics: Mastering Addition and Subtraction with Interactive Number Lines and Digital Counters": 1 +"3rd Grade Introduction to Geometry: Utilization of Tablets in Learning Shapes and Angles": 1 +"5th Grade Mathematics: Enhancing Multiplication Skills through Gamification on Mathletics": 1 +"9th Grade Physics: Understanding Laws of Motion through Simulation Experiments": 1 +"1st Grade Art: Exploring Color and Texture with Finger Paints and Collage": 1 +"7th Grade History: The Industrial Revolution: The Role of the Spinning Jenny in the Growth of Textile Industries": 1 +"Preschool Physical Education: Fun with Balance - Exploring Gymnastics and Yoga": 1 +"5th Grade Literature: Decoding Symbolism in Short Stories Using Thematic Analysis": 1 +"3rd Grade Astronomy: Discovering Planets and Stars through the SkyView Lite App": 1 +"7th Grade Physical Education: Perfecting Soccer Strategies with the Soccer Coach App": 1 +"4th Grade: Understanding US Geography through Interactive Maps and Virtual Field Trips": 1 +"3rd Grade Environmental Studies: Incorporating Robotics and Sensor Data in Weather Forecasting Projects": 1 +"5th Grade Geography: Exploring World Maps with Augmented Reality Technology": 1 +"Kindergarten Science: Learning about Animal Habitats with Interactive Multimedia": 1 +"4th Grade English: Enhancing Vocabulary Skills through Gamified Language Learning Apps": 1 +"10th Grade Music: The Evolution of Classical Music - A Study of Beethoven’s Symphonies": 1 +"6th Grade Physical Education: Introduction to Team Sports - Volleyball and Player Positioning": 1 +"1st Grade Health: Basics of Hygiene Education through Animated Video Series": 1 +"4th Grade Art: Introduction to Watercolor Painting Techniques": 1 +"Ancient Egyptian Civilization: The Role of Lever and Pulley Systems in Pyramid Construction for 7th Grade History": 1 +"3rd Grade Mathematics: Engaging Multiplication and Division Lessons using Interactive Whiteboards": 1 +"9th Grade Biology: Decoding DNA Structure through 3D Models in Advanced Genetics": 1 +"8th Grade Physical Education: Understanding Basketball Strategies with Smart Balls and Wearable Technology": 1 +"5th Grade Physical Education: Exploring Rhythmic Gymnastics with Ribbon and Hoop": 1 +"7th Grade Physical Education: The Art of Swimming and Synchronized Teamwork": 1 +"4th Grade Physical Education: Basic Tennis Skills with Interactive Racquets": 1 +"1st Grade English: Discovering Classic Fairy Tales through Virtual Reality": 1 +"11th Grade Science: Analyzing Soil Composition using Spectroscopy Techniques": 1 +"2nd Grade Science: Exploring the Lifecycle of Frogs with Time-Lapse Photography and Microscope Observation": 1 +"2nd Grade Journey Through the Universe: Exploring Stars and Galaxies with Virtual Planetarium": 1 +"Fifth Grade History: The Significance of the Printing Press in Renaissance Europe": 1 +"4th Grade English: Using Adobe Spark to Create Interactive Digital Storybooks about World Folklore": 1 +"7th Grade Science: Exploring Renewable Energy Sources with Solar Panel Kits": 1 +"1st Grade Mathematics: Understanding Basic Addition and Subtraction using Number Blocks": 1 +"6th Grade Geography: Investigating World Landforms through Google Earth Virtual Tours": 1 +"2nd Grade Art: Constructing Animal Collages using Recycled Materials": 1 +"8th Grade English: Mastering Argumentative Essays using Google Docs and Grammarly": 1 +"4th Grade Social Studies: Discovering Native American Cultures with Augmented Reality Tools": 1 +"7th Grade Biology: Studying Plant Cells using Microscopes and Sketching Techniques": 1 +"1st Grade Music: Exploring Rhythm and Melodies with Hand Percussion Instruments ": 1 +"9th Grade Algebra: Solving Quadratic Equations using Desmos and Interactive Whiteboards ": 1 +"5th Grade Language Arts: Enhancing Vocabulary with DuoLingo, Quizlet, and FunBrain Games": 1 +"9th Grade Literature: Delving Into Symbolism and Allegory Within George Orwell’s Animal Farm": 1 +"7th Grade Math: Unfolding the Mysteries of Algebra: An Introduction to Quadratic Equations": 1 +"5th Grade Geography: Exploring Earth’s Biomes: An In-Depth Study of Rainforests and Deserts": 1 +"3rd Grade Science: Learning About Magnetism: The Interplay of Poles and Magnetic Fields": 1 +"4th Grade Health: Understanding Dental Health: The Basics of Brushing and Flossing": 1 +"8th Grade Art: The Evolution of Painting Techniques: A Look at Impressionism and Post-Impressionism": 1 +"1st Grade Music: An Introduction to Sound: Exploring the Different Tones of Xylophones": 1 +"2nd Grade History: The Age of Discovery: Exploring Christopher Columbus’ Voyages": 1 +"Kindergarten Health: Discovering the Importance of Handwashing and Personal Hygiene": 1 +"6th Grade English: Mastering Paragraph Structure: A Deep Dive into Topic Sentences and Supporting Details": 1 +"2nd Grade Science: Exploring the Solar System with Interactive Models and Augmented Reality": 1 +"3rd Grade English: Enhancing Vocabulary and Reading Comprehension through Audiobooks and Storytelling": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction using Fun Board Games and Playing Cards": 1 +"7th Grade History: Analyzing Medieval Europe: A Deep Dive into Castles and Kingdoms": 1 +"2nd Grade Music: Discovering Rhythm and Melody with Hand Drums and Maracas": 1 +"5th Grade Geography: Understanding Earth’s Topography through 3D Models and Virtual Field Trips": 1 +"4th Grade Physical Education: Learning the Basics of Soccer through Interactive Games and drills": 1 +"5th Grade Science: Exploring the Human Body: Understanding Digestive System with 3D Models and Virtual Reality": 1 +"3rd Grade Environmental Studies: Learning about Recycling and Sustainability through Hands-on Projects and Interactive Videos": 1 +"4th Grade Language Arts: Mastering Grammar and Sentence Structure with Interactive Workbooks and Educational Apps": 1 +"4th Grade Science: Exploring Ecosystems with Augmented Reality Tools": 1 +"1st Grade Mathematics: Understanding Addition with Interactive Digital Games": 1 +"2nd Grade History: The Journey of Christopher Columbus through Animated Storytelling": 1 +"5th Grade Music: The Science of Sound Waves and the Art of Making Wind Instruments": 1 +"7th Grade Physical Education: Enhancing Soccer Skills with the Use of Drones for Aerial Analysis": 1 +"3rd Grade Language Arts: Building Vocabulary through Fun and Interactive Mobile Apps": 1 +"6th Grade Art: A Comprehensive Study of Texture in Paintings using 3D Printing Technology": 1 +"2nd Grade Elementary: Grasping the Concept of Time through Sundials and Digital Clocks": 1 +"8th Grade Music: The Physics of Sound and the Importance of Tuning Forks in String Instruments": 1 +"4th Grade Social Studies: The Steam Engine’s Role in the Industrial Revolution and its Impact on Society": 1 +"5th Grade Science: Investigating the Solar System through Interactive Planetarium Software": 1 +"8th Grade Math: Understanding Geometry Principles Utilizing Virtual Reality Platforms": 1 +"3rd Grade Art: Discovering the World of Colors through Paint Mixing Experiments": 1 +"2nd Grade Music: Mastering Rhythmic Patterns with Handmade Instruments and Sight-Clapping Techniques": 1 +"4th Grade Environmental Studies: Exploring Renewable Energy with Hands-On Wind Turbine Models": 1 +"7th Grade English: Enhancing Writing Skills through the Creation of Graphic Novels": 1 +"8th Grade History: Unearthing the Secrets of Medieval Castles through Virtual Tours": 1 +"6th Grade Science: Understanding the Human Body’s Systems through Augmented Reality Tools": 1 +"1st Grade Social Studies: Exploring Our Community with Neighborhood Walking Tours": 1 +"3rd Grade Math: Learning Addition and Subtraction through Math-Based Board Games": 1 +"4th Grade Geometry: Exploring Shapes and Angles with Prodigy Math Game": 1 +"5th Grade History: Understanding American Civil War through Virtual Reality": 1 +"2nd Grade Reading: Enhancing Comprehension Skills through Storytelling Podcasts": 1 +"8th Grade Physics: Learning the Basics of Thermodynamics using Minecraft Education Edition": 1 +"3rd Grade Art: Discovering Color Theory with Adobe Fresco": 1 +"7th Grade Spanish: Advanced Vocabulary and Grammar Mastery with Duolingo": 1 +"6th Grade Science: Exploring Ecosystems through Augmented Reality": 1 +"9th Grade Mathematics: Applying Trigonometry Concepts in Architecture with SketchUp": 1 +"1st Grade Music: Learning Rhythm and Melody with GarageBand": 1 +"10th Grade Literature: Analyzing Gothic Novels through the Lens of Psychoanalysis": 1 +"Advanced Algebra in 10th Grade Mathematics: Unraveling Polynomials using Desmos": 1 +"2nd Grade Environmental Studies: Delving into Ecosystems with Microscopes and Soil Analysis": 1 +"4th Grade Environmental Studies: Water Conservation & Rainwater Harvesting Techniques": 1 +"10th Grade Science: Uncovering the Human Anatomy using Virtual Reality Technology": 1 +"Kindergarten Mathematics: Mastering Number Recognition with Interactive Board Games": 1 +"Exploring Ancient Civilizations in 3rd Grade History: Using Sundials to Understand Timekeeping": 1 +"7th Grade Language Arts: Vocabulary Enhancement using Online Word Games": 1 +"Ninth Grade Music: Discovering Rhythm and Tempo through Drumming": 1 +"Physics for 1st Graders: Understanding Forces & Motion with Toy Cars": 1 +"7th Grade English: Improving Creative Writing Skills using Storybird": 1 +"5th Grade Geography: Exploring Geothermal Energy Resources using Virtual Field Trips": 1 +"2nd Grade Art: Discovering Color Theory through Interactive Drawing Apps": 1 +"7th Grade Spanish: Enhancing Pronunciation with Linguistic Apps": 1 +"Second Grade Math: Boosting Numerical Skills through Funbrain Interactive Software": 1 +"7th Grade Literature: Delving into Allegories and Irony through E-Reading Platforms": 1 +"7th Grade History: Ancient Greek Society: The Influence of the Acropolis on Sculpture Art": 1 +"7th Grade Physical Education: Understanding Biomechanics with Motion Analysis Tools": 1 +"11th Grade Economics: The Impact of the Gold Standard on Monetary Policies of the Great Depression": 1 +"4th Grade Mathematics: Mastering Division Concepts with Interactive Whiteboard Sessions and Math Playground": 1 +"7th Grade Music: Exploring the Impact of the Violin and Diminuendo on Chamber Music using Harmony Apps": 1 +"4th Grade Geography: Navigating the World with Google Earth: Landforms and Bodies of Water": 1 +"5th Grade Science: Exploring the Life Cycle of Butterflies using Augmented Reality": 1 +"7th Grade Mathematics: The Role of Geometry in Architecture using SketchUp": 1 +"1st Grade Art: Introduction to Shapes and Colors through Interactive Drawing Apps": 1 +"6th Grade English Literature: Understanding Metaphors in Classic Novels using Storyboarding Software": 1 +"4th Grade Social Studies: Understanding the Impact of the Gold Rush through Virtual Reality": 1 +"5th Grade Music: Understanding Musical Notes and Scales through Interactive Sound Apps": 1 +"3rd Grade Science: Life of Amphibians: An Interactive Study using Virtual Field Trips": 1 +"8th Grade History: The Cold War Era - Spy Tactics and Cryptography: The Enigma Machine and Secret Codes": 1 +"7th Grade Language Arts: The Art of Persuasion in Speech Writing using Speech-to-Text Software": 1 +"5th Grade Science: Exploring Weather Patterns through Interactive Apps": 1 +"4th Grade Geography: Understanding World Maps and Global Navigation Using Virtual Reality": 1 +"6th Grade English Literature: Exploring the Realm of Fantasy in J.K. Rowling’s Harry Potter Series": 1 +"Advanced World History: Analyzing the Reformation for 10th Grade Social Studies": 1 +"7th Grade Science: Understanding Ocean Conservation through Coral Reef Restoration Using Drone Footage": 1 +"5th Grade History: The Evolution of Transportation - From Horse Carriages to Cars": 1 +"3rd Grade Art: Learning about Sculpture and Clay Modelling Techniques": 1 +"7th Grade Music: Jazz Music Revolution, the Impact of the Piano, and the Intricacies of Improvisation in Louis Armstrong’s Era": 1 +"8th Grade Social Studies: Experiential Learning of Ancient Egyptian Civilization with Virtual Reality Using VRKit": 1 +"3rd Grade Art: Exploring Texture Creation with Watercolors": 1 +"4th Grade Science: Exploring the Solar System through Virtual Reality": 1 +"7th Grade Mathematics: Understanding Geometry: The Applications of Pythagoras Theorem": 1 +"3rd Grade Art: Introduction to Still Life Drawing with Pastels and Charcoals": 1 +"5th Grade Health: The Role of Exercise in Mental and Physical Health: A Comprehensive Study": 1 +"9th Grade Music: Exploring Classical Compositions: The Impact of Mozart and Beethoven": 1 +"8th Grade History: The Importance of the Silk Road in Ancient Trade and Cultural Exchange": 1 +"2nd Grade Social Studies: Understanding the Evolution of Communication: From Smoke Signals to Smartphones": 1 +"6th Grade Geography: The Role of Rivers and Mountains in Shaping Civilizations": 1 +"4th Grade Physical Education: The Impact of Dance on Physical Coordination and Strength": 1 +"7th Grade Science: The Wonders of Photosynthesis: A Study of Plant Life and Ecosystems": 1 +"4th Grade Geography: Exploring the World’s Continents with Interactive Globe Models": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies through Augmented Reality": 1 +"1st Grade Health: Understanding Dental Hygiene through Fun Brushing Routines": 1 +"12th Grade Physics: Delving into Quantum Mechanics through the Prism of Light": 1 +"Kindergarten Math: Understanding Basic Shapes and Patterns using Online Puzzles": 1 +"3rd Grade Language Arts: Improving Spelling Skills through Interactive Scrabble Games": 1 +"5th Grade History: Journeying through the Middle Ages with Virtual Reality": 1 +"4th Grade English: Paragraph Building and Vocabulary Enhancement using Digital Flashcards": 1 +"7th Grade Social Studies: Investigating the Wonders of the Great Wall of China": 1 +"1st Grade Music: Discovering Musical Instruments through Hands-on Activities": 1 +"5th Grade Science: Exploring Weather Patterns and Climate Change through Interactive Models": 1 +"1st Grade Mathematics: Introducing Shapes and Patterns with Tangram Puzzles": 1 +"3rd Grade Art: Experimenting with Color Mixing in Watercolor Painting": 1 +"8th Grade Music: Understanding Rhythms and Beats through African Drumming": 1 +"6th Grade English: Digital Storytelling with Adobe Spark in Classic Literature": 1 +"7th Grade History: Medieval Europe - The Impact of the Crusades and the Use of Siege Weapons": 1 +"5th Grade Language Arts: Enhancing Vocabulary through Crossword Puzzles and Word Games": 1 +"11th Grade Health: Understanding Mental Health - Emphasis on Mindfulness and Meditation Techniques": 1 +"9th Grade Science: The Physics of Sports - Exploring Force and Motion in Basketball": 1 +"10th Grade Social Studies: Decoding Propaganda in World War II using Primary and Secondary Sources": 1 +"7th Grade Science: Exploring Ecosystems with Virtual Reality and Interactive Simulations": 1 +"8th Grade Mathematics: A Study on Probability and Statistics Through Gamification and Data Visualization Tools": 1 +"5th Grade English: Discovering the Art of Storytelling through Animated Film Analysis and Script Writing": 1 +"3rd Grade Music: Introduction to Melody and Harmony using Keyboard Instruments and Music Composition Apps": 1 +"10th Grade Physics: Understanding Quantum Mechanics with Quantum Computing Simulations and Python Programming": 1 +"2nd Grade Social Studies: Learning About Community Helpers through Role-Play and Augmented Reality": 1 +"9th Grade History: An In-depth Look at the Renaissance Period through VR Tours and Interactive Timelines": 1 +"4th Grade Mathematics: Mastering Multiplication and Division with Tangram Puzzles and Math Board Games": 1 +"1st Grade Physical Education: Developing Motor Skills through Relay Races and Safety-Conscious Playground Activities": 1 +"5th Grade Art: Understanding Color Theory through Digital Art Creation and Interactive Color Wheel Exploration": 1 +"7th Grade Math: Exploring Geometry through Origami and Tinkercad Design Software": 1 +"2nd Grade Science: The Life Cycle of Butterflies: Observation and Recording using Nature Apps": 1 +"10th Grade Music: Sonic Sculpting: The Interplay of Synthesizers, Soundboards, and DAWs in Sound Design for Advanced Learners": 1 +"5th Grade Social Studies: The Impact of the Printing Press in the Renaissance Era": 1 +"6th Grade Music: Exploring Melody and Harmony with Violins and GarageBand Software": 1 +"8th Grade History: Decoding the Civil War through Primary Source Documents": 1 +"4th Grade Environmental Studies: Dive into the Ocean: Discovering Marine Life using Virtual Reality": 1 +"1st Grade Music: Fun with Rhythm: Exploring Beats with Hand Drums and Soundtrap Looping Software": 1 +"9th Grade English: Creative Writing in the Digital Age: Using Blogging Platforms for Expressive Language": 1 +"3rd Grade Math: The Magic of Numbers: Learning Arithmetic with Interactive Math Apps": 1 +"4th Grade Physical Education: Team Building and Sportsmanship through Flag Football": 1 +"7th Grade Science: Exploring the Solar System and Space Missions with Virtual Reality": 1 +"1st Grade: Learning Basic Math through Interactive Digital Games": 1 +"8th Grade History: The Impact of the Printing Press on Modern Communication Technologies": 1 +"6th Grade English Literature: Enhancing Poetry Understanding using Google Classroom on Chromebooks": 1 +"2nd Grade Writing: Improving Sentence Construction through Collaborative Group Activities": 1 +"The Evolution of Jazz: A 7th Grade Exploration using GarageBand Music Production Software": 1 +"5th Grade Geography: Discovering the Wonders of the Amazon Rainforest through Virtual Reality Excursions and 3D Mapping": 1 +"2nd Grade Music: Understanding Melody and Tempo through Interactive Piano Keyboards": 1 +"4th Grade Earth Science: Studying Plate Tectonics and Earthquakes using Simulation Softwares": 1 +"3rd Grade Science: Exploring the Solar System through Virtual Reality": 1 +"2nd Grade Geography: Understanding World Cultures through Interactive Storytelling": 1 +"7th Grade Physical Education: Enhancing Flexibility and Balance with Yoga": 1 +"5th Grade Art: Exploring Perspective and Dimension with 3D Drawing Techniques": 1 +"8th Grade Literature: The Influence of Shakespeare in Modern Drama": 1 +"5th Grade Social Studies: The Impact of the Silk Road on Ancient Trade": 1 +"3rd Grade History: The Significance of the Telegraph in the Industrial Revolution": 1 +"6th Grade Geography: Discovering Biomes through Augmented Reality Exploration": 1 +"7th Grade Science: The Role of Photosynthesis in Ecosystems": 1 +"4th Grade Civics: Understanding the Electoral Process through Role-Playing Games": 1 +"3rd Grade Physical Education: Understanding Soccer and Passing Strategies": 1 +"5th Grade History: The Role of the Printing Press in the Renaissance’s Knowledge Revolution": 1 +"8th Grade Science: Exploring Space and Planetary Movements with Virtual Reality Technology": 1 +"3rd Grade Language Arts: Developing Creative Writing Skills with Interactive Digital Storybooks": 1 +"Incorporating Drum Machines and Loop Software in 5th Grade Music: A Dive into Electronic Music": 1 +"7th Grade Social Studies: Understanding Economic Systems through the Use of Monopoly and the Concept of Supply and Demand": 1 +"2nd Grade Music: Introduction to Sound and Pitch with Recorders, GarageBand, and String Vibrations": 1 +"9th Grade Music: Analyzing Beethoven’s Symphony Structure using Logic Pro X, Serato DJ, and MIDI Controllers ": 1 +"6th Grade Music: A Virtual Tour of Classical Music Eras with Live Symphony Performances": 1 +"5th Grade Science: The Intricacies of The Human Digestive System and Its Importance in Nutrition": 1 +"3rd Grade Science: Understanding Plant Photosynthesis with Interactive 3D Models": 1 +"5th Grade Geography: Exploring the Amazon Rainforest through Virtual Reality": 1 +"4th Grade English: Developing Poetry Skills with RhymeZone and Google Slides": 1 +"6th Grade History: Discovering Medieval Europe through Augmented Reality": 1 +"1st Grade Mathematics: Mastering Number Patterns with Number Line and Abacus": 1 +"4th Grade Physical Education: Basketball Fundamentals and the Art of Dribbling": 1 +"6th Grade Music: Decoding Beethoven’s Sonatas with Finale Notation Software and Periodic Context Analysis": 1 +"3rd Grade Language Arts: Creative Writing using Story Starter Prompts on Google Classroom": 1 +"5th Grade Mathematics: Understanding Geometric Shapes through GeoGebra and Interactive Whiteboards": 1 +"1st Grade Language Arts: Learning Phonics with Starfall Games and Zoom Interactive Sessions": 1 +"8th Grade Language Arts: Unraveling Similes and Hyperboles in Modern Literature": 1 +"4th Grade Music: Harmony and Melody Construction using Interactive Music Software": 1 +"8th Grade Social Studies: Ancient Civilizations: An In-depth Study of the Mayan Calendar System": 1 +"11th Grade History: The Impact of Telegraphy on Civil War Strategies": 1 +"Mastering Melodic Composition: A 6th Grade Music Class using Virtual Keyboards": 1 +"2nd Grade Music: Exploring Rhyme and Rhythm: A Step towards Lyric Writing": 1 +"The Art of Acoustics: Understanding Harmonics, String Tensions, and the Use of Tuner Apps in 10th Grade Music Class": 1 +"4th Grade Mathematics: Decoding Geometry with Interactive Shapes and Educational Apps": 1 +"7th Grade Mathematics: Understanding Ratios through Visual Representation and Gamification Tools": 1 +"Healthy Habits: 10th Grade Physical Education Course on Fitness and Dietary Choices using the MyFitnessPal App": 1 +"Fifth Grade Geography: Exploring Climate Zones through Google Earth ": 1 +"9th Grade Physics: Understanding Gravity through Roller Coaster Design ": 1 +"3rd Grade Art: Discovering Color Theory with Adobe Photoshop ": 1 +"7th Grade Biology: Examining Plant Cells in the Age of Microscopy": 1 +"11th Grade English: The Impact of the Gutenberg Press on English Literature ": 1 +"6th Grade Physical Education: Enhancing Ball Skills with GoPro for Basketball Training ": 1 +"4th Grade Science: Introduction to Weather Patterns using Meteorological Data ": 1 +"5th Grade Music: Exploring Rhythm and Tempo with Digital Audio Workstations ": 1 +"9th Grade World History: A Deep Dive into the Role of Battle Ships in World War I ": 1 +"2nd Grade Health: Understanding The Importance of Hydration through Interactive Activities": 1 +"10th Grade Chemistry: Understanding Chemical Reactions - Acids, Bases, and Salts": 1 +"6th Grade Environmental Science: Solar Energy and its Impact on Sustainable Living": 1 +"12th Grade History: The Influence of Printing Press on Enlightenment Era - The Rise of Literacy: Lesson 9": 1 +"Quantum Mechanics and the Parallel Universe Theory in Science Fiction: An 8th Grade Literature Course": 1 +"Tenth Grade History: Unraveling the French Revolution Through Political Cartoons Analysis": 1 +"5th Grade Art: Discovering Abstract Imagery through Watercolor: A Primer to Brush Techniques": 1 +"1st Grade Art: Navigating Procreate for Kids - Understanding the Use of Layer Tools": 1 +"4th Grade Language Arts: Enhancing Storytelling Aptitudes with Augmented Reality Storybooks": 1 +"1st Grade Language Arts: Strengthening Phonics Skills using ABCmouse Customized Games": 1 +"7th Grade: Interpreting Climatic Patterns with Doppler Radar and Weather Balloon Data": 1 +"3rd Grade Science: Introduction to Weather Patterns using Interactive Meteorology Apps": 1 +"7th Grade Math: Understanding Algebraic Expressions with Mathway Application and Interactive Boards": 1 +"5th Grade Geography: Understanding World Oceans and Continents using Google Maps": 1 +"2nd Grade Art: Discovering Colors and Textures using Watercolors and Fixative Spray": 1 +"8th Grade History: The European Renaissance - Exploration of Art and Literature": 1 +"1st Grade Math: Learning Addition and Subtraction using Number Blocks App": 1 +"9th Grade Language Arts: Exploring Poetry with Digital Annotations and Voice Recordings": 1 +"History of Jazz: Understanding Louis Armstrong’s Impact on Trumpet Playing in 7th Grade Music": 1 +"6th Grade Social Studies: Exploring the Ancient Roman Empire with Virtual Reality Tours": 1 +"3rd Grade Language Arts: Enhancing Sentence Construction using Grammarly on Tablets": 1 +"4th Grade Mathematics: Exploring Geometry through Origami Folding Techniques": 1 +"1st Grade Science: Discovering the Solar System with Augmented Reality Apps": 1 +"5th Grade History: Journey through Ancient Civilizations using Minecraft Education Edition": 1 +"7th Grade Physics: Understanding Newton’s Laws of Motion through PhET Interactive Simulations": 1 +"Kindergarten Music: Exploring Rhythm and Tempo with Handmade Percussion Instruments": 1 +"8th Grade Literature: Analyzing Character Development in Fiction using Storyboard Creations": 1 +"6th Grade Geography: Exploring World Landforms through Virtual Field Trips on Google Earth": 1 +"2nd Grade Art: Learning Color Theory through Digital Painting on Adobe Fresco": 1 +"3rd Grade Life Science: Understanding Plant Life Cycles through Time-Lapse Photography": 1 +"8th Grade Algebra: Mastering Equations using the Graphing Tool on Desmos.": 1 +"4th Grade Art: Exploring Color Theory with Digital Painting Tools": 1 +"2nd Grade Science: Solar System Exploration using Virtual Reality": 1 +"Kindergarten Physical Education: Fun with Fitness through Dance and Movement Games": 1 +"5th Grade History: Understanding Civilizations through Interactive Timeline Tools": 1 +"1st Grade Math: Engaging in Number Sense with Interactive Puzzles ": 1 +"4th Grade Geography: Exploring World Cultures using Google Earth": 1 +"6th Grade English: Analyzing Character Development in Classic Literature using Digital Storyboards": 1 +"2nd Grade Environmental Studies: Recognizing Weather Patterns with Interactive Charts and Mobile Apps": 1 +"5th Grade Music: Understanding Harmony and Chords through Piano Lessons": 1 +"1st Grade Health and Wellness: Learning Hygiene Basics through Interactive Activities": 1 +"3rd Grade Math: Understanding Fractions through Lego Block Assembly": 1 +"1st Grade Science: Discovering Animals: Learning about Different Species through Virtual Reality": 1 +"5th Grade History: The Civil War - The Railroad, the Telegraph, and Their Impact on War Strategy": 1 +"2nd Grade Art: Exploring Colors and Shapes with Digital Painting Tools": 1 +"4th Grade Physics: Introduction to Simple Machines using LEGO Robotics": 1 +"Kindergarten: Developing Motor Skills through Interactive Touchscreen Games": 1 +"3rd Grade Geography: Exploring World Landmarks with Google Earth": 1 +"6th Grade English: Enhancing Vocabulary through Online Word Games": 1 +"5th Grade Music: Composing Melodies with GarageBand and Keyboard Notation": 1 +"2nd Grade Social Studies: Community Helpers - Understanding Their Roles through Role-Playing Activities": 1 +"6th Grade Science: Exploring the Solar System with Virtual Reality and Google Sky Map": 1 +"3rd Grade Math: Enhancing Numeracy Skills with Interactive Digital Games and Math Apps": 1 +"8th Grade English: Unraveling the Influence of Context in Poetry Interpretation": 1 +"1st Grade Music: Introduction to Rhythm and Melody using Hand Drums and Music Notation Apps": 1 +"4th Grade Physical Education: Understanding Soccer Techniques and Strategies through VR Training": 1 +"2nd Grade Arts: Discovering Pointillism with Watercolor Markers and Interactive Art Platforms": 1 +"7th Grade Social Studies: Decoding the Ancient Civilizations through Augmented Reality": 1 +"5th Grade Science: Investigating Ecosystems with Virtual Field Trips and Interactive 3D Models": 1 +"6th Grade Language Arts: Mastering Grammar and Vocabulary with Duolingo and Text-to-Speech Tools": 1 +"3rd Grade English: The Role of Characters in Story Development": 1 +"4th Grade Science: Exploring Plant Life Cycle through Interactive 3D Models and Virtual Reality": 1 +"7th Grade English: Understanding Poetry Through Interactive Digital Storytelling": 1 +"5th Grade Music: Introduction to String Instruments with Virtual Violin Lessons": 1 +"6th Grade Physical Education: Soccer Techniques using the RoboBall Training System": 1 +"8th Grade Art: Exploring Modern Art through Digital 3D Sculpture Creation": 1 +"3rd Grade Social Studies: Understanding Local History through Augmented Reality with Google Cardboard": 1 +"9th Grade Science: Dive into Marine Biology - Virtual Reality Ocean Exploration": 1 +"7th Grade English: Mastering Grammar through Interactive Language Apps": 1 +"5th Grade Art: Mastering Watercolor Techniques with Digital Art Tools": 1 +"6th Grade Music: Learning Melodies and Harmony with Digital Music Composition Software": 1 +"5th Grade Science: Exploring Photosynthesis through Gardening and Interactive Models": 1 +"1st Grade Mathematics: Learning Subtraction using Sea Shells and Number Mats": 1 +"7th Grade Geography: Understanding Tectonic Plates and Earthquakes through Virtual Simulations": 1 +"8th Grade Literature: The Age of Romanticism - Analyzing Poetry and Novels with Kindle E-books": 1 +"3rd Grade Art: Introduction to Cubism - Creating Abstract Art with Origami": 1 +"4th Grade Physics: The Magic of Magnets - Using DIY Experiments for Understanding Magnetism": 1 +"9th Grade PE: Utilizing Fitbit Versa 2 Smartwatch for Advanced Fitness Monitoring": 1 +"2nd Grade Environmental Studies: Discovering Recycling through Art Projects and Interactive Games": 1 +"6th Grade Music: Exploring Jazz Music with GarageBand for Audio Mixing": 1 +"7th Grade American History: Civil Rights Movement - The Influence of Television Media": 1 +"9th Grade World History: Unveiling Global Cultures Through Food and Cooking Techniques": 1 +"2nd Grade French: Mastering Basic Conversations with DuoLingo and Interactive Games on Kahoot": 1 +"4th Grade Art: Exploring Texture and Color with Clay Sculpture and Pottery": 1 +"7th Grade Geography: Understanding Desert Biomes through Virtual Reality Expeditions and Interactive Maps": 1 +"6th Grade Biology: The Human Body - A Close Look at the Digestive System": 1 +"12th Grade Music: The Influence of Synthesizers on Electronic Music Evolution": 1 +"11th Grade Photography: Utilizing Light and Shadow in Black & White Photography through Adobe Lightroom Techniques": 1 +"7th Grade Physics: The Wonders of Magnetism - Constructing and Observing Electromagnets": 1 +"8th Grade Mathematics: Investigating the Role of Geometry in Gothic Architecture ": 1 +"6th Grade Science: Unraveling the Mysteries of Volcanoes with Augmented Reality Models": 1 +"7th Grade Mathematics: The Role of Fibonacci Sequence in Nature and Architecture": 1 +"10th Grade Biology: Understanding Ecosystems through Biodiversity Assessment": 1 +"Kindergarten Earth Science: Discovering the Wonders of Weather Patterns with Interactive Activities": 1 +"5th Grade Economics: The Evolution and Impact of Cryptocurrency on the Global Economy": 1 +"5th Grade Digital Art: Understanding Perspective and 3D Modeling with Computer Graphics Software": 1 +"2nd Grade Sustainability Studies: Learning about Renewable Energy through Wind Turbines and Hydroelectric Dams": 1 +"Examining the Influence of Medieval Armor on Art and Social Structure: A Comprehensive 7th Grade History Investigation": 1 +"9th Grade Music: Analyzing Mozart’s Symphonies with Orchestra Performance and Music Notation": 1 +"4th Grade English: Vocabulary Expansion through Interactive Storytelling Games": 1 +"3rd Grade Language Arts: Unleashing Creativity through Comic Strip Creation": 1 +"11th Grade Mathematics: Exploring Calculus through Rocket Propulsion Analysis using Simulation Programs": 1 +"4th Grade Physical Education: Building Agility in Soccer through Cone Drills and Speed Ladder Exercises": 1 +"5th Grade Art: Understanding the Use of Perspective and Vanishing Point in Renaissance Paintings": 1 +"1st Grade Environmental Science: Exploring the Life Cycle of Butterflies using Observation Kits and Life Cycle Wheels": 1 +"10th Grade Physics: Understanding Quantum Mechanics through Virtual Reality Simulations": 1 +"6th Grade Literature: Exploring Themes in Classic Fairy Tales using Interactive Story Mapping Tools": 1 +"8th Grade History: A Glimpse into Victorian Era - The Birth of Modern Industrial Society": 1 +"11th Grade Language Arts: Leveraging Augmented Reality for Understanding Shakespearean Drama and Elizabethan English": 1 +"3rd Grade Geography: Learning about Earth’s Biomes through Virtual Field Trips and Interactive Maps": 1 +"2nd Grade Mathematics: Grasping the Basics of Fractions using Pizza Slices and Pie Charts": 1 +"10th Grade Geography: The Impact of Globalization and Trade Routes ": 1 +"Creating Melodies and Harmonies with GarageBand using Sound Editing Tools: A Course for 2nd Graders": 1 +"7th Grade Chemistry: Experiment Analysis Techniques with SciLab": 1 +"Kindergarten Physical Education: Improving Motor Skills & Basketball Dribbling Techniques with Hula Hoop Training, Pedometers, and Balance Beams": 1 +"The Influence of AI in Boosting 3rd Grade Subtraction Skills with MathShot: A Exploration of Educational Apps": 1 +"3rd Grade Language Arts: Developing Narration Skills through Virtual Reality Storytelling Concepts": 1 +"5th Grade Music: Understanding Jazz Improvisation through Saxophone Performance": 1 +"1st Grade Music: Exploring Tempo and Pitch with Hand Drums": 1 +"6th Grade Mathematics: Geometry Exploration through GeoGebra App and Interactive Worksheets": 1 +"8th Grade Language Arts: Investigating Historical Novels through Project Gutenberg using Text Analysis Tools with Python.": 1 +"3rd Grade Science: Investigating Plant Life Cycles with Indoor Gardening and Time-Lapse Photography": 1 +"3rd Grade Music: Mastering the Fundamentals of Melody with a Recorder and Music Notation": 1 +"6th Grade Language Arts: Short Story Exploration - Decoding Themes with Online Thesauri ": 1 +"6th Grade Art: Discovering Clay Sculpting with Potter’s Wheel": 1 +"3rd Grade Mathematics: Excelling in Multiplication and Division with Grids and Number Cubes": 1 +"3rd Grade Mathematics: Strengthening Subtraction Skills using Fraction Bars and Virtual Manipulatives": 1 +"5th Grade Science: Ecology Studies with a Focus on Food Chains": 1 +"8th Grade Introduction to Physics: Unveiling Laws of Motion": 1 +"7th Grade Social Studies: Medieval Societies and the Evolution of Feudal System": 1 +"11th Grade Social Studies: Navigating Modern Politics and Democracy through the Prism of Technological Advancements": 1 +"1st Grade: Understanding Colors and Shapes with Interactive Touchscreen Activities": 1 +"3rd Grade Geography: Discovering the Continents through Virtual Reality Exploration": 1 +"4th Grade Science: Exploring the Solar System using Telescopes and Augmented Reality": 1 +"Interactive 7th Grade Algebra: Equations and Inequalities with a Graphing Calculator": 1 +"5th Grade History: The Renaissance Era - Learning through Art and Sculpture Analysis": 1 +"3rd Grade Music: Discovering Pitch and Tone using Xylophones and String Instruments": 1 +"6th Grade Biology: Studying Aquatic Lifeforms and Biodiversity through Aquarium Visits": 1 +"Kindergarten Music: Introduction to Melody with Handbells and Piano Keyboard Activities": 1 +"4th Grade Music: Understanding Tempo and Dynamics with a Digital Metronome and Music Composition Software": 1 +"1st Grade Geography: Desert Ecosystem Exploration - Cactus Plantation, Sand Measurement Activities, and Introduction to Weather Patterns": 1 +"6th Grade Physical Education: Fitness Principles - Understanding Body Mass Index ": 1 +"1st Grade Mathematics: Introduction to Simple Addition and Subtraction with Interactive Manipulatives ": 1 +"7th Grade Literature: Exploring World Myths through Drama and Digital Storytelling using iMovie ": 1 +"11th Grade Physics: Examining Electromagnetism through Circuit Building and Arduino Kits": 1 +"3rd Grade Geography: The African Continent and its Indigenous Cultures ": 1 +"Advanced 8th Grade Art: Sculpting Techniques: An Exploration of Clay Modelling and Kiln Firing ": 1 +"5th Grade Social Studies: The Civil War - Analysis of the Cotton Gin’s Role ": 1 +"2nd Grade Music: Introduction to Rhythm and Melody with Handbells and GarageBand ": 1 +"10th Grade Chemistry: Utilizing Chemical Equations and Virtual Lab Simulations for Acid-Base Reactions ": 1 +"6th Grade History: Unveiling Ancient Egypt - The Engineering Marvels of Pyramids.": 1 +"8th Grade Science: Evolution of the Space Shuttle: NASA’s Technological Advancements in the Space Age": 1 +"6th Grade Mathematics: Mastering Geometry with Interactive 3D Models, SketchUp, and GeoGebra": 1 +"1st Grade Art: Understanding Colors and Shapes through DIY Collage: Creating Paper Mosaics using Colorful Magazines and Glue": 1 +"3rd Grade Science: Discovering the Life Cycle of Butterflies with DIY Caterpillar Habitats: Building Mini Ecosystems using Recycled Materials": 1 +"3rd Grade Literature: Journeying Through Folktales with Virtual Reality: Exploring Cultural Stories with Google Cardboard": 1 +"7th Grade Mathematics: The Power of Pi: Exploring Circles and Spheres in Real World Contexts": 1 +"4th Grade History: Diving into the Age of Exploration: Using Interactive Maps to Trace Voyages of Discovery": 1 +"5th Grade English: The Art of Persuasion: Developing Argumentative Essays with Google Docs and Grammarly": 1 +"7th Grade Social Studies: Understanding Democracy through Interactive Role-Play: Using Minecraft to Build Ideal Governments": 1 +"4th Grade Science: Unveiling the Mystery of Photosynthesis with iPads and Interactive Simulations": 1 +"5th Grade Mathematics: Exploring Geometry through Origami and Pattern Recognition": 1 +"8th Grade Biology: Dissecting Frog Anatomy with Digital Imaging and Virtual Tools": 1 +"7th Grade Literature: Unraveling the Mystery of Shakespeare’s Sonnets through Textual Analysis": 1 +"9th Grade Physics: Mastering Newton’s Laws with Interactive Simulation Software": 1 +"4th Grade Science: Understanding Weather Patterns through DIY Cloud Chambers": 1 +"5th Grade Music: Exploring Rhythm and Melody with Digital Audio Workstations": 1 +"7th Grade History: The Role of the Spinning Wheel and Loom in the Industrial Revolution": 1 +"5th Grade Mathematics: Grasping Fractions and Decimals through Everyday Shopping Scenarios": 1 +"Aztec Civilization Study: Using Satellite Imagery and GIS for Analyzing Ancient City Layouts": 1 +"9th Grade Physical Education: Perfecting Basketball Dribbling Techniques Using Motion Tracking Technology": 1 +"6th Grade Science: Exploring the Solar System and its Celestial Bodies Through Interactive Models": 1 +"11th Grade Math: Navigating Probability and Statistics with Real-Life Applications Using Microsoft Excel": 1 +"1st Grade Science: Discovering the Animal Kingdom: A Journey through Interactive Videos ": 1 +"8th Grade English Literature: Unraveling Imagery and Metaphors in Classic Poetry using Digital Annotation Tools": 1 +"3rd Grade Art: Creating Digital Artwork with Adobe Photoshop Elements": 1 +"7th Grade Geography: Understanding the Impact of Climate Change on World Maps Using Google Earth ": 1 +"8th Grade Physical Education: Improving Agility and Endurance in Soccer through Sports Science": 1 +"4th Grade Math: Mastering Multiplication Tables using Gamified Learning Apps": 1 +"2nd Grade Art: Color Theory and Mixing Techniques using Digital Art Platforms": 1 +"11th Grade History: The Influence of The French Revolution on Modern Democracy: A Deep Dive Using Virtual Reality Tours.": 1 +"5th Grade Science: Exploring Solar System through Virtual Reality": 1 +"1st Grade Art: Understanding Shapes and Colors through Finger Painting ": 1 +"3rd Grade History: The Role of the Printing Press in the Renaissance ": 1 +"6th Grade Physical Education: Learning Teamwork through Flag Football ": 1 +"2nd Grade Mathematics: Understanding Money through Lemonade Stand Sales": 1 +"5th Grade Language Arts: Exploring Classic Fairy Tales through Puppet Theater ": 1 +"4th Grade Science: Investigating Weather Patterns through Data Collection and Analysis": 1 +"1st Grade Geography: Introduction to Hemispheres and Poles using Interactive Globes ": 1 +"6th Grade Music: Understanding Melody and Harmony through Ukulele Lessons ": 1 +"2nd Grade Health: The Importance of Hygiene and Handwashing with Interactive Activities.": 1 +"3rd Grade Science: Understanding Life Cycles of Butterflies through Interactive Models": 1 +"11th Grade Physics: Understanding Force and Motion using Real-world Applications": 1 +"1st Grade Mathematics: Introduction to Shapes with Tangram Puzzles": 1 +"8th Grade History: Exploring the Middle Ages and the Crusades": 1 +"5th Grade Mathematics: Solving Word Problems with Bar Models": 1 +"11th Grade Physical Education: Perfecting Dribbling Skills in Basketball": 1 +"1st Grade Introduction to Math: Understanding Counting and Number Patterns with Fun Math Games": 1 +"4th Grade Physical Education: Fundamentals of Volleyball with Training Nets": 1 +"3rd Grade Mathematics: Multiplication Mastery through Number Lines": 1 +"Exploring Rome’s Ancient History: Aqueduct Systems and the Creation of Roman Calendar in 7th Grade Social Studies": 1 +"4th Grade Science: Understanding Weather Patterns using Interactive Models": 1 +"Exploring Digital Art and Animation with Adobe Animate for 2nd Graders: A Course on Basic Design Principles": 1 +"6th Grade Science: The Secrets of Photosynthesis in Plant Biology": 1 +"5th Grade Social Studies: Tracing Human Migration Patterns with Google Earth Pro": 1 +"7th Grade Math: Navigating the World of Exponential Functions using the Mathway App and TI-84 Plus Graphing Calculator": 1 +"3rd Grade Science: Introduction to Ocean Ecosystems and Marine Life Conservation Techniques": 1 +"Mastering the Art of Chess Strategies in 7th Grade: A Course using Virtual Reality": 1 +"2nd Grade Environmental Studies: Learning about Wind Energy using Miniature Turbine Models": 1 +"Exploring the History of Ancient Civilizations in 8th Grade Social Studies using Virtual Reality with Oculus Rift, Google Cardboard, and HTC Vive": 1 +"6th Grade Science: Investigating Plate Tectonics and Earthquake Simulation using Augmented Reality with ARKit and ARCore": 1 +"4th Grade Mathematics: Understanding Polygons with Interactive Online Tools": 1 +"5th Grade Science: The Water Cycle - An Exploration using Augmented Reality Experiments": 1 +"1st Grade Physical Education: Dance Moves and Coordination with Just Dance Kids Software": 1 +"6th Grade Astronomy: Grasping Solar System with 3D Print Models and Virtual Reality": 1 +"3rd Grade Music: Melody and Harmony Basics with Piano Tiles App ": 1 +"8th Grade Art: Creating Landscape Paintings: A Study in Watercolor Techniques and Color Theory": 1 +"1st Grade Music: Introducing Pitch with GarageBand App and Virtual Instruments": 1 +"2nd Grade Mathematics: Exploring Number Sense with Block Counting and Scratch Programming": 1 +"Kindergarten Language Arts: Developing Early Reading Skills using ABCmouse Learning Program": 1 +"5th Grade Science: The Process of Photosynthesis: Learning with Interactive Digital Microscopy.": 1 +"4th Grade Science: Exploring the Plant Kingdom with Augmented Reality Technology": 1 +"5th Grade Music: Mastering Scales and Melodies through Virtual Piano Apps": 1 +"8th Grade Social Studies: Decoding the Influence of the Silk Road on Global Trade": 1 +"3rd Grade Social Studies: The Impact of Recycling Systems on our Community Environment": 1 +"3rd Grade Science: Grasping the Water Cycle through Virtual Reality Experiences": 1 +"10th Grade History: Analyzing the Impact of the Telegraph on Communication during the Civil War Era": 1 +"8th Grade Science: Comprehending Genetics through Punnett Square Simulations": 1 +"10th Grade Chemistry: Understanding Molecular Structures with 3D Printing and Atomic Models": 1 +"8th Grade Physical Education: Enhancing Soccer Skills with Agility Ladders and Interactive Video Games": 1 +"The Expedition of 1st Grade Mathematics: Addition and Subtraction through Tangram Puzzles.": 1 +"3rd Grade Mathematics: Exploring Division through Number Lines and Scratch Programming Basics": 1 +"8th Grade Music: Harmonic Intervals - A Detailed Study with the Violin": 1 +"Mastering Tempo and Pitch with Maracas using GarageBand Software for 2nd Graders": 1 +"7th Grade Music: Rhythm Composition with Ableton Live and Sampling Techniques ": 1 +"10th Grade Algebra: Deciphering Equations and Inequalities through Algebraic Models": 1 +"5th Grade Language Arts: Storytelling Escapades with Grammar Enhancement Tools: A Dive into Duolingo": 1 +"3rd Grade Social Studies: Exploring the Impact of Firefighters in Our Society": 1 +"3rd Grade Language Arts: Character Development Analysis using Digital Storytelling ": 1 +"7th Grade Science: Understanding Plant Photosynthesis with Microscopic Imaging": 1 +"The Physics of Soccer Kicks: Implementing Motion Sensor Technology in 11th Grade Physical Education": 1 +"6th Grade Literature: Exploring Metaphors in Poetry using Interactive eBooks": 1 +"Kindergarten Science: Discovering Animal Habitats through Virtual Reality": 1 +"3rd Grade History: Understanding Ancient Egypt through Interactive Hieroglyphs": 1 +"7th Grade Physics: Energy Transformation in Everyday Appliances": 1 +"8th Grade Physical Education: An Introduction to Yoga with Fitbit and MyFitnessPal": 1 +"11th Grade Sociology: Understanding Cultural Differences in Modern Society using Social Media Platforms": 1 +"4th Grade Music: Composing Simple Melodies with Online Music Software": 1 +"9th Grade Art: The Art of Sculpture: From Clay Molding to 3D Printing": 1 +"5th Grade Mathematics: Understanding Geometry with Tangram Puzzles and Augmented Reality": 1 +"2nd Grade Geography: Exploring the Wonders of Asia through Virtual Field Trips": 1 +"7th Grade History: Understanding the Silk Road: Trade and Cultural Exchange in Ancient Civilizations ": 1 +"5th Grade Music: Introducing GarageBand and Digital Audio Workstations for Young Composers": 1 +"4th Grade Language Arts: Enhancing Vocabulary and Reading Comprehension through Interactive Storytelling": 1 +"2nd Grade Language Arts: Learning the Basics of Sentence Construction with Fun Grammar Games": 1 +"6th Grade Social Studies: The Role of Women in the Civil Rights Movement: A Closer Look": 1 +"1st Grade’s Introductory Guide to Dinosaurs: Exploring Prehistoric Times with Virtual Reality": 1 +"Kindergarten Physical Education: Enhancing Balance and Coordination with Fun Obstacle Courses and Safety Measures": 1 +"2nd Grade Science: The Wonders of Photosynthesis: Learning through Microscopic Imaging": 1 +"3rd Grade Art: Discovering Abstract Expressionism through Acrylic Paints": 1 +"1st Grade Music: Exploring Melody and Pitch with the Orff Approach and Xylophones": 1 +"4th Grade Physical Education: Mastering Basic Volleyball Techniques with Beach Games": 1 +"First Grade Environmental Studies: Exploring Water Conservation Through Fun Rainwater Harvesting Projects": 1 +"8th Grade Language Arts: Understanding Black Holes and Space-Time Continuum through Interstellar Sci-fi Literature": 1 +"3rd Grade Science: Investigating Predator-Prey Relationships in Desert Ecosystems using Augmented Reality": 1 +"6th Grade History: The Civil War Period - Analyzing the Impact of Railroads": 1 +"2nd Grade English: Exploring Ethics in Aesop’s Fables with Stop Motion Animation": 1 +"Kindergarten Computer Science: Introduction to Programming with ScratchJr": 1 +"Unraveling the Digestive System: 5th Grade Science and Human Biology with 3D Models": 1 +"11th Grade Physical Education: Agility and Balance in Skateboarding: Grasping the Physics of Momentum": 1 +"7th Grade English: Persuasive Writing using Concept Maps and PowerPoint Presentations": 1 +"6th Grade Science: Exploring the Solar System through Interactive 3D Models": 1 +"5th Grade Mathematics: Developing Number Sense and Algebraic Thinking with Math Games": 1 +"9th Grade History: Tracing the Evolution of Democracy through the Lens of the French Revolution": 1 +"3rd Grade Geography: Discovering African Wildlife through Augmented Reality": 1 +"7th Grade Mathematics: Understanding Probability and Statistics through Sports Statistics": 1 +"5th Grade Language Arts: Building Writing Skills through Blogging and Digital Storytelling": 1 +"8th Grade Social Studies: Analyzing the Impact of Technology on Contemporary Culture": 1 +"2nd Grade Science: Exploring Animal Habitats through Virtual Field Trips": 1 +"6th Grade Language Arts: Strengthening Reading Comprehension through Graphic Novels and Comic Books": 1 +"3rd Grade History: Understanding Native American Culture through Storytelling and Artifacts": 1 +"8th Grade Mathematics: Understanding Geometry through the Design and Construction of Bridges": 1 +"3rd Grade Geography: Discovering World Landforms and their Effects on Local Cultures": 1 +"10th Grade Physical Education: The Role of Biomechanics in Enhancing Soccer Performance": 1 +"8th Grade Physics: Understanding Electromagnetism through Practical Experiments and its Application in Modern Devices": 1 +"5th Grade History: Unravelling the Age of Exploration through Cartographic Evidence and Ship Logs": 1 +"American Revolution and the Role of Print Media: An 8th Grade History Course": 1 +"7th Grade Economics: Tracing the Evolution of Trade Systems and the Impact of the Silk Road": 1 +"10th Grade Health: Exploring Mental Health - Understanding Anxiety and Stress Management Techniques": 1 +"5th Grade English Literature: Enhancing Reading Comprehension with Classic Children’s Books": 1 +"10th Grade Politics: Examining the Role of Propaganda in World War II and its Impact on Public Perception.": 1 +"4th Grade Physics: Investigating Simple Machines using LEGO and Online Simulation Tools": 1 +"Kindergarten Biology: Understanding Plant Life Cycles with Gardening and Time-Lapse Videos": 1 +"6th Grade English Literature: Exploring Symbolism in Popular Novels using Mind Mapping Software": 1 +"4th Grade Art: Learning About Textures with Clay Modeling and Digital Art Apps": 1 +"8th Grade History: The Influence of the Printing Press on European Society": 1 +"7th Grade Mathematics: Delving into Geometric Proofs with Interactive Whiteboard Activities": 1 +"5th Grade Music: Understanding Melody Construction using Digital Pianos and Music Notation Software": 1 +"2nd Grade Environmental Studies: Exploring the Role of Bees in Ecosystems using Augmented Reality Apps": 1 +"6th Grade Health: Learning About the Food Pyramid through Interactive Nutritional Games": 1 +"4th Grade Social Studies: Understanding the Impact of Transportation Advancements on Society using Google Maps and Virtual Field Trips": 1 +"3rd Grade Mathematics: Exploring Addition and Subtraction using Online Games": 1 +"7th Grade Social Studies: The Impact of Radio on Major 19th Century Historical Events": 1 +"2nd Grade Language Arts: Enhancing Reading Skills using Kindle and Audible": 1 +"Kindergarten Art: Introduction to Textures and Patterns Using Digital Drawing Tablets": 1 +"Tenth Grade Geography: Using GIS Software to Understand Climate Change": 1 +"7th Grade Music: Unleashing the Power of Modern Pop through GarageBand": 1 +"6th Grade History: The Industrial Revolution: The Impact of the Steam Engine on Global Trade": 1 +"4th Grade Science: Plant Photosynthesis, Growth and the Role of pH Meters": 1 +"3rd Grade Language Arts: Discovering Poetry through Interactive E-books": 1 +"8th Grade Computer Science: Deciphering Code Structures using Java and Eclipse IDE": 1 +"3rd Grade Science: Exploring the Solar System through Virtual Reality": 1 +"7th Grade Mathematics: Mastering Algebra Using Interactive Online Platforms": 1 +"10th Grade Biology: Understanding Human Anatomy with 3D Modeling": 1 +"1st Grade Art: Introduction to Shapes and Colors using Digital Painting Software": 1 +"9th Grade World Geography: Analyzing Climate Change through Satellite Imagery using ArcGIS": 1 +"6th Grade English: Deciphering Symbolism in Classic Literature through Interactive Storytelling": 1 +"4th Grade Science: Investigating Ecosystems and Food Chains using Augmented Reality": 1 +"11th Grade Physics: Exploring Quantum Mechanics using Simulation Programs": 1 +"2nd Grade Music: Discovering Harmony and Pitch using GarageBand": 1 +"7th Grade History: Delving into Medieval Europe through the Lens of Castle Architecture using Minecraft.": 1 +"5th Grade History: Tracing Civil Rights Movements through Interactive Time-Lines and Multimedia Sources": 1 +"7th Grade Art: Creating Digital Art and Animation with Adobe Creative Cloud": 1 +"5th Grade Science: Investigating Weather Patterns and Climate Change Using Online Meteorological Tools": 1 +"2nd Grade English: Enhancing Grammar Skills through Funbrain Games and E-books": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals using Virtual Manipulatives": 1 +"4th Grade Elementary: Learning Division through Real-Life Shopping Scenarios": 1 +"8th Grade English: Analyzing Irony in Short Stories Using Padlet and Google Classroom for Peer Review": 1 +"1st Grade Mathematics: Number Recognition and Counting Skills using MathSeeds": 1 +"7th Grade Physical Education: Tracking Fitness Progress using Fitbit Activity Trackers ": 1 +"9th Grade Music: Composing Original Scores with Logic Pro X, Ableton Live, and Sibelius Notation Software": 1 +"9th Grade Art: Exploring Digital Painting Techniques with Procreate": 1 +"7th Grade Physical Education: Enhancing Agility and Coordination with Circuit Training": 1 +"5th Grade Science: Discovering Space Exploration through Virtual Reality Simulations": 1 +"8th Grade English: Understanding Shakespeare’s Plays Through Interactive Theatre Apps": 1 +"4th Grade Music: Creating Stories through Rhythm and Melody with Music Maker JAM": 1 +"7th Grade Social Studies: The Influence of the Gutenberg Press in the Renaissance Period": 1 +"2nd Grade Music: Introduction to Musical Instruments through Interactive Sound Apps": 1 +"8th Grade History: The Impact of the Transcontinental Railroad on Westward Expansion": 1 +"3rd Grade Science: Investigating Plant Life Cycle Using Time-Lapse Photography": 1 +"6th Grade Math: Understanding Geometry through Origami and Paper Folding Techniques": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Interactive Board Games": 1 +"4th Grade Geography: Exploring World Maps with Virtual Field Trips": 1 +"Kindergarten Music: Discovering Rhythm through Hand Clapping and Foot Tapping": 1 +"5th Grade Music: Exploring Mozart’s Symphonies, Violin Techniques and Sound Production with GarageBand": 1 +"3rd Grade Language Arts: Boosting Sentence Construction Skills with Interactive Whiteboards and Google Docs": 1 +"7th Grade Physical Education: Understanding Biomechanics through Human Movement Analysis": 1 +"1st Grade Reading: Improving Letter Recognition and Spelling through Educational Apps": 1 +"6th Grade Art: Creating Landscape Paintings using Adobe Fresco & Digital Brushes on Tablet": 1 +"4th Grade English: Diving into Narrative Writing using Storyboard Apps": 1 +"8th Grade Music: Understanding Beethoven’s Sonatas through Piano Playing and Sheet Music Reading": 1 +"3rd Grade Geography: Understanding Plate Tectonics through Interactive Earthquake Simulations": 1 +"5th Grade Science: The Steam Engine - Its Role in the Industrial Revolution": 1 +"The Influence of Ancient Egyptian Pyramids & The Use of Simple Machines: A 7th Grade History Course": 1 +"Seventh Grade Art: Mastering Sketching Techniques with Digital Drawing Tablets": 1 +"5th Grade History: The Significance of the Mayan Calendar in Ancient Civilization": 1 +"Understanding 2nd Grade Science: The Life Cycle of Plants and Animals through Interactive Learning Tools": 1 +"Gamified Learning of Multiplication Tables with Fun Math Apps for 3rd Graders": 1 +"3rd Grade Social Studies: The Post Office - The Evolution of Postal Services": 1 +"6th Grade Social Studies: The Compass - Navigating the World Before GPS": 1 +"Second Grade Science: Exploring Weather Patterns with Interactive Meteorology Software": 1 +"7th Grade Health: Understanding Nutrition and Diet Planning through Interactive Cooking Sessions": 1 +"5th Grade Science: Introduction to Botany via Virtual Reality Plant Life Simulations": 1 +"Exploring the Northeastern States with Augmented Reality and GIS in 5th Grade Geography": 1 +"Fifth Grade English: Crafting Haiku and Short Stories using Digital Storyboarding Tools": 1 +"Principles of Velocity: A 7th Grade Course on Einstein’s Theory of Relativity using Virtual Labs": 1 +"1st Grade Biology: Exploring Insect Life Cycles on Urban Gardens through Digital Microscopy": 1 +"4th Grade English: Text-to-Speech Technology and Myth Analysis using Interactive E-books": 1 +"Ancient Greek Achievements: The Antikythera Mechanism and the Art of Pottery": 1 +"9th Grade Math: Understanding Probability and Statistics through Fun Data Analysis Games": 1 +"2nd Grade Literature: Exploring Plot Structure in Classic Fairy Tales": 1 +"3rd Grade Science: Discovering Plant Life Cycle through Microscope Experiments": 1 +"7th Grade Astronomy: Mars Exploration with Satellites and Telescopic Imaging": 1 +"6th Grade Science: Understanding the Rock Cycle: An Interactive Journey with Virtual Reality": 1 +"Third Grade History: Journey through Medieval Times Using Augmented Reality Books": 1 +"Our Blue Planet: Exploring the Water Cycle through Weather Stations - A Second Grade Geography Course": 1 +"4th Grade Music: Harmony and Melody - An Introduction to Music Composition Software": 1 +"7th Grade Art: Creative Techniques in Acrylic Painting": 1 +"6th Grade Music: Exploring Rhythm and Beat with Digital Drumming using Avid Pro Tools": 1 +"10th Grade Health: Fitness and Well-being through Step Tracking on the Fitbit App": 1 +"2nd Grade Music: Learning Basic Rhythm Patterns using Drum Pads, Maracas and the Yousician App": 1 +"4th Grade Art: Exploring Texture and Color in Collage Making using Recycled Materials": 1 +"8th Grade English: Understanding Symbolism in Poetry with the Help of Digital Libraries": 1 +"1st Grade Geography: Navigating Neighborhoods and Local Maps with Augmented Reality": 1 +"6th Grade Mathematics: Grasping Fractions through the Use of Visual Models and Pie Charts": 1 +"3rd Grade Science: Discovering the Solar System with Telescopes and Virtual Planetariums": 1 +"Climate Studies in 4th Grade: Detailed Examination of Climate Zones using Interactive Globes and Climate Apps": 1 +"The Realm of Shapes and Numbers: Comprehending 6th Grade Geometry through Algebraic Expressions": 1 +"10th Grade Physical Education: Grasping Teamwork through Basketball and Leadership Activities": 1 +"1st Grade Environmental Studies: The Animal Life Cycle, Habitats and Food Chains": 1 +"4th Grade Science: Unraveling the Mystery of Electricity in Everyday Devices": 1 +"5th Grade Science: Understanding Photosynthesis through Experimentation": 1 +"8th Grade Mathematics: Mastering Geometry with 3D Printing Projects": 1 +"2nd Grade Art: Learning Basic Origami Techniques using Colored Papers": 1 +"5th Grade Social Studies: The Influence of Martin Luther King Jr. and His Speeches on Civil Rights Movement": 1 +"7th Grade Physical Education: Enhancing Soccer Skills through Team Games": 1 +"3rd Grade Language Arts: Improving Reading Comprehension with Interactive eBooks": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Math Puzzles": 1 +"8th Grade History: Analyzing the French Revolution through Historical Novels": 1 +"1st Grade Physical Education: Basic Gymnastics Movements through Dance Routines": 1 +"7th Grade Science: Exploring the Solar System with Virtual Reality Technology": 1 +"6th Grade Mathematics: Understanding Geometry through 3D Modeling with SketchUp and Tinkercad": 1 +"4th Grade Science: Exploring the Solar System with Interactive Augmented Reality Apps": 1 +"8th Grade History: The Role of Espionage in the Cold War using Digital Simulations": 1 +"1st Grade Language Arts: Developing Reading Skills through Interactive E-books on Tablets": 1 +"5th Grade Art: Visual Storytelling with Stop-Motion Animation on iPads": 1 +"7th Grade Science: Investigating the Human Body through Virtual Reality Anatomy Apps": 1 +"10th Grade English: The Power of Satire in Literature: A Study of Mark Twain’s Works": 1 +"3rd Grade Music: Discovering Rhythm and Beat through GarageBand": 1 +"6th Grade Social Studies: The Impact of the Silk Road on Trade and Culture: A Digital Exploration": 1 +"2nd Grade History: Understanding Native American Cultures through Interactive Storytelling Apps": 1 +"8th Grade Geography: Understanding Climate Patterns through Globe Models": 1 +"6th Grade Physical Education: Mastering Basketball Techniques with High Grip Shoes": 1 +"1st Grade Health: Exploring Hygiene Practices through Hand Washing Activities using Glitter Germs": 1 +"6th Grade Art: Learning about Renaissance through Virtual Reality Museum Tours": 1 +"Geometry Basics: Tracing Patterns using Geometric Shapes in 10th Grade Mathematics": 1 +"8th Grade Physical Education: Integrating Tai Chi Movements into Gymnastic Routines using Stability Balls and the Feldenkrais Method": 1 +"3rd Grade Science: Diving into the World of Insects with Live Ant Farm Observations": 1 +"10th Grade History: An In-Depth Analysis of the Influence of Telegraphy in the Civil War": 1 +"Pre-school Social Studies: Discovering the Roles of Firefighters and Fire Trucks": 1 +"2nd Grade Elementary Science: Investigating Forces through Marble Run Activities": 1 +"5th Grade Geography: Exploring the Impact of Weather Patterns through Meteorological Tools and Satellite Images": 1 +"3rd Grade Mathematics: Mastering Division with Gamified Learning Tools and Interactive Whiteboard": 1 +"2nd Grade Physical Education: Understanding Baseball through Teamwork and Strategy ": 1 +"7th Grade Music: Analyzing Mozart’s Operas and the Role of the Harpsichord using Digital Audio Workstations": 1 +"10th Grade Health: Comprehending Physical Fitness and Stamina through Heart Rate Monitoring": 1 +"2nd Grade Earth Science: Learning about Volcanoes using Interactive 3D Models and Virtual Reality": 1 +"9th Grade Physics: Introduction to Quantum Mechanics with Experimentation on Light and Photons": 1 +"7th Grade Visual Arts: Discovering Perspective in Drawing using Graphite and Charcoal": 1 +"3rd Grade Mathematics: Introduction to Fractions through Pizza Slices and Fraction Bars": 1 +"1st Grade Health and Wellness: Understanding the Importance of Regular Exercise with Dance and Movement Games": 1 +"5th Grade Science: Unveiling the Solar System through Augmented Reality Technology": 1 +"9th Grade Art: Understanding Renaissance Masterpieces through Virtual Galleries": 1 +"8th Grade Geometry: Discovering the World of Shapes and Angles with 3D Printing": 1 +"Exploring the Influence of Jazz Improvisation on Modern Music in 6th Grade": 1 +"3rd Grade Mathematics: Multiplication and Division Proficiency through Interactive Whiteboard Activities": 1 +"A 6th Grade Literature Course: Delving into Parallel Universes in Contemporary Fantasy Novels": 1 +"Ancient Egyptian Society: The Role of Papyrus, Hieroglyphics and Obelisks in 5th Grade History": 1 +"2nd Grade Physical Education: Improving Soccer Skills with the Smart Ball Training System": 1 +"5th Grade Geography: Exploring the World’s Landforms with Virtual Field Trips ": 1 +"Kindergarten Music: Discovering Sound and Harmony through Fun Musical Apps": 1 +"3rd Grade History: Exploring Ancient Civilizations through Virtual Reality Tours": 1 +"4th Grade Art: Discovering Color Theory through Nature-Inspired Watercolor Painting": 1 +"7th Grade Mathematics: Understanding Probability and Random Variables through Card Games": 1 +"5th Grade Music: Introduction to Rhythm and Meter through World Drumming Techniques": 1 +"9th Grade Science: Exploring Genetic Engineering with CRISPR-Cas9 using Bioinformatics Tools": 1 +"2nd Grade English: Improving Vocabulary with Interactive Online Word Games": 1 +"8th Grade Geography: Mastering Map Reading and Geographical Coordinates using Google Earth": 1 +"6th Grade History: The Influence of Renaissance Artists on Modern Art Movements": 1 +"3rd Grade Science: Introduction to Weather Patterns and Climate using Interactive Online Simulations": 1 +"5th Grade Mathematics: Multiplication and Division Mastery through Gamified Learning Apps": 1 +"Discovering Mozart’s Operas: The Role of the Harpsichord in 5th Grade Music": 1 +"12th Grade History: The Influence of Railways on Urban Development during the Industrial Era": 1 +"Second Grade Reading: Engaging with Roald Dahl through Virtual Reality": 1 +"8th Grade World History: Ancient Cultures and the Creation of the Wheel": 1 +"5th Grade Social Studies: The Impact of Steam Power on the North’s Role in the Civil War": 1 +"11th Grade Mathematics: Essentials of Trigonometry - Learning with Khan Academy ": 1 +"10th Grade Social Studies: French Revolution and the Transformation of Political Ideologies": 1 +"Introduction to Multiplication and Division for 5th Graders using the Number Line": 1 +"5th Grade English: Journey into Literature: Immersive Audiobooks on Audible and their Influence": 1 +"5th Grade Science: Grasping Weather Patterns with NASA Climate Change Satellite Data via TensorFlow Machine Learning": 1 +"7th Grade Art: Mastering Watercolor Techniques with Still Life ": 1 +"4th Grade Music: Exploring String Instruments of the Orchestra through Classical Compositions ": 1 +"Opera History: Understanding Verdi’s Impact on Bel Canto using Music Analysis in 7th Grade Opera Studies ": 1 +"8th Grade Language Arts: Unpacking Plot Structures through the Lens of Irony and Satire using the Shakespearean Tragedy Framework ": 1 +"10th Grade Social Studies: The French Revolution through the Lens of the Guillotine ": 1 +"Third Grade History: The Impact of the Telegraph, Political Pamphlets, and Dime Novels on the California Gold Rush ": 1 +"3rd Grade Science: Examining Animal Life Cycles with BioView Kits ": 1 +"Kindergarten Science: Discovering Composting with Waste-to-Wonder: Creating Seed Balls with Clay and Compost ": 1 +"5th Grade Science: In-depth Study of the Rainforest Ecosystem using Google Earth VR and Augmented Reality ": 1 +"1st Grade Language Arts: Incorporating Virtual Reality in Imaginative Storytelling with Interactive E-books": 1 +"4th Grade Science: Exploring Weather Patterns and Climate Change through Satellite Imagery": 1 +"6th Grade History: Unearthing the Secrets of the Mayan Civilization": 1 +"8th Grade World History: Renaissance Art and the Evolution of Painting Techniques": 1 +"6th Grade Mathematics: Engaging with Fractions and Decimals through Mathletics": 1 +"10th Grade Music: Concert of Melodies - Mastery of Arpeggios on Piano: Diving into Dynamics": 1 +"7th Grade Physical Education: The Physics of Gymnastics, Exploring Balance and the Importance of Hydration": 1 +"9th Grade History: The Influence of the Telegraph in the 19th Century America": 1 +"10th Grade Health: Microbiome and its Effect on Health: An Exploration of Gut Flora using Probiotics": 1 +"2nd Grade Health: Learning About Food Groups and Nutritional Balance": 1 +"4th Grade History: Traversing through the Ancient Rome with Augmented Reality": 1 +"6th Grade Mathematics: Advancing Division Skills using the Montessori Method": 1 +"8th Grade Science: Grasping Laws of Motion with Physics Simulations in Virtual Reality": 1 +"3rd Grade Music: Understanding Rhythms - An In-depth Course with the Drum": 1 +"4th Grade Physical Education: Fundamentals of Basketball and Ball Dribbling Techniques": 1 +"5th Grade English: Crafting Persuasive Speeches using Microsoft Word and Hemingway Editor": 1 +"2nd Grade Science: Discovering Life Cycles of Butterflies using Interactive 3D Models": 1 +"7th Grade History: Journey through Medieval Europe Using Interactive Timelines and Google Earth": 1 +"5th Grade Language Arts: Exploring Mythology through Storytelling Apps on the iPad": 1 +"3rd Grade Mathematics: Introduction to Fractions using Manipulatives and Visual Models": 1 +"6th Grade Language Arts: Mastering Haiku Creation with Google Keep and Google Slides for Dynamic Presentation": 1 +"5th Grade Mathematics: Understanding Fractions using Interactive Online Tools": 1 +"11th Grade Literature: Exploring Themes in Gothic Literature through the Lens of Psychoanalysis": 1 +"1st Grade Science: Introduction to Aquatic Ecosystems using Virtual Reality Exploration": 1 +"6th Grade Language Arts: Enhancing Vocabulary Skills through Scrabble and Storytelling": 1 +"7th Grade Physics: Exploring the Concepts of Gravity and Magnetism using Physics Simulation Software": 1 +"1st Grade Language Arts: Learning Verb Usage with Disney’s Animation Studio": 1 +"9th Grade Art: Introduction to Watercolor Techniques using Sponge and Salt Effects": 1 +"8th Grade Music: Rhythm and Harmony - The Art of Composing with Digital Music Software": 1 +"11th Grade History: The Impact of the Printing Press during the Renaissance Era": 1 +"3rd Grade Earth Science: Exploring Solar System with Interactive 3D Models": 1 +"2nd Grade Music: Discovering Melodies and Beats with Handheld Percussion Instruments": 1 +"4th Grade Art: Exploring Circles and Reds through Pastel and Linocut Methods": 1 +"6th Grade Science: Exploring Botany Through Microscopic Plant Cell Examination": 1 +"7th Grade Music: Unpacking Mozart’s Composition Techniques in Classical Music using Logic Pro X DAW, ProTools, Cubase’s Sound Design Features and Bitwig Studio": 1 +"10th Grade Social Studies: Deciphering Ancient Greek Philosophy through Clay Tablets using Thermoluminescence Dating": 1 +"2nd Grade Language Arts: Excursions in Narration - Utilizing Children’s Literature Techniques with Augmented Reality Storybooks": 1 +"5th Grade Social Studies: The French Revolution - The Guillotine, the Role of Enlightenment Ideas and the Spread of Revolutionary Pamphlets": 1 +"4th Grade History: The Impact of Trigonometry and Pythagoras’ Theorem on Ancient Greek Temple Architecture: A Study of the Golden Ratio": 1 +"3rd Grade Mathematics: Mastering Multiplication with Counting Sticks": 1 +"8th Grade Art: Embracing Texture Theory: A Voyage into the Realm of Ceramic Sculpting": 1 +"2nd Grade Geography: Unfolding the Map of the World with Interactive Globe and Google Earth Exploration": 1 +"Kindergarten Mathematics: Number Recognition and Counting using Interactive Digital Games on Prodigy Math Platform": 1 +"5th Grade History: Journey through the Renaissance with 3D Art Gallery Tours and Interactive Timeline Activities": 1 +"7th Grade Environmental Science: Climate Change and Renewable Energy Solutions with Solar Panel Kits": 1 +"1st Grade Music: Exploring Rhythm and Melody with Handmade Instruments using Everyday Materials": 1 +"9th Grade Music Technology: Exploring Electronic Music Production with Logic Pro X and Serato DJ": 1 +"9th Grade Physics: Explorations in Quantum Mechanics using Python Simulations": 1 +"6th Grade Science: The Magic of Photosynthesis in Plants": 1 +"Creating with Clay: Kindergarten Art - An Introduction to Sculpture using Texture and Form": 1 +"5th Grade Physical Education: Gymnastics and Flexibility with Motion-Tracking Technology": 1 +"7th Grade Music: Discovering the Evolution of Jazz: Piano Improvisation and Syncopation in Duke Ellington’s Compositions Through the Lens of Swing Rhythm": 1 +"4th Grade Science: Investigating Weather Patterns Using Barometric Pressure Readings": 1 +"6th Grade Physical Education: Application of Fitbit’s Heart Rate Zone and Balance Exercises in Soccer Training": 1 +"1st Grade Mathematics: Engaging Exploration of Shapes and Patterns on Interactive Whiteboards": 1 +"7th Grade Language Arts: Comprehending Plot Development Through Digital Comic Creation, Pixton, and Tynker": 1 +"9th Grade Language Arts: Analyzing Drama and Narratives from the Perspective of Metaphors": 1 +"4th Grade Health: Learning about the Human Body Systems with Organ Diagrams": 1 +"8th Grade Geometry: Exploring the Complexities of Circles and Tangents with GeoGebra and Python Programming": 1 +"5th Grade Geography: Immersive Study of World Landforms through Augmented Reality and Virtual Excursions": 1 +"2nd Grade Elementary: Understanding Division Principles through Cut-and-Paste Activities using Hands-on Math Labs.": 1 +"5th Grade Science: Exploring Biomes through Virtual Reality in Environmental Studies ": 1 +"3rd Grade Physics: Understanding Wind Energy: Windmills and Power Generation": 1 +"6th Grade English Literature: Enhancing Poetry Analysis using Google Docs, Quizlet, and Flipgrid for Collaborative Learning ": 1 +"8th Grade Art: Mastering Color Theory through Watercolor Painting and Digital Art Apps": 1 +"7th Grade History: Industrial Revolution - The Invention of the Steam Engine and the Transformation of Transportation": 1 +"1st Grade Introduction to Geometry: Understanding Basic Shapes through Tangram Puzzles": 1 +"5th Grade Music: Rhythm and Timing: An Introduction to Drum Notation": 1 +"7th Grade Physical Education: Basketball and Sportsmanship: Mastering Offensive and Defensive Plays": 1 +"3rd Grade Earth Science: Volcanoes and Earthquakes: Understanding Plate Tectonics": 1 +"1st Grade English: Mastering Phonics and Word Families using Interactive Whiteboard Games": 1 +"8th Grade Mathematics: Exploring Geometric Shapes with 3D Printing Technology": 1 +"4th Grade History: Unfolding the American Revolution through Interactive Maps and Timelines": 1 +"1st Grade Music: Improving Pitch Recognition using Xylophones and Glockenspiels": 1 +"9th Grade Health Science: Examining the Digestive System with Gastroscopy Simulations": 1 +"11th Grade Literature: Exploring Symbolism and Metaphor in Poetry ": 1 +"6th Grade Art: Understanding Tonal Values in Charcoal Drawing with Blending Stumps": 1 +"Preschool Science: Learning about Life Cycles with Butterfly Metamorphosis Projects": 1 +"4th Grade English: Creating Dynamic Plots in Story-writing with Shadow Puppetry": 1 +"7th Grade Physical Education: Basics of Basketball Strategy using Cone Drills": 1 +"5th Grade Geography: Understanding Climate Zones with Interactive Globes and Weather Tracking": 1 +"3rd Grade History: Discovering Medieval Castles through Interactive 3D Models": 1 +"11th Grade Physical Education: Utilizing Biofeedback Devices to Improve Swimming Performance": 1 +"4th Grade Health: Understanding Hygiene Practices with Hands-on Germ Experiments": 1 +"5th Grade Art: Discovering Texture with Oil Pastels and Sandpaper": 1 +"3rd Grade Mathematics: Exploring Division Concepts with Lego Building Blocks and Number Lines": 1 +"6th Grade Art: Mastering Perspective Drawing with Graphite Pencils and Rulers": 1 +"9th Grade Science: Experiment Analysis with Bar Graphs in Google Sheets": 1 +"Kindergarten Art: Learning Shapes and Colors with Digital Design using Kid Pix": 1 +"8th Grade Science: Exploring Helicopter Dynamics with Bernoulli’s Principle - The Role of Air Pressure and Interactive Simulations": 1 +"Kindergarten Art: Creating Underwater World Art with Finger Painting using Stencils, Sponges, and Glitter Glue.": 1 +"8th Grade Physics: Exploring Motion and Forces through LEGO Robotics Kits": 1 +"1st Grade Math: Grasping Counting and Number Sense through Interactive Digital Games": 1 +"3rd Grade Geography: Investigating the Layers of Earth with Augmented Reality Experiments": 1 +"7th Grade Music: Discovering Melody Construction with GarageBand on iPad": 1 +"6th Grade Science: Unraveling the Mysteries of Photosynthesis with Microscopic Studies and Virtual Labs": 1 +"4th Grade Writing: Mastering Paragraph Structure with Mind Maps and Google Docs Templates": 1 +"10th Grade History: Deciphering the French Revolution through Virtual Reality Tours and Primary Sources": 1 +"3rd Grade Art: Exploring Texture in Collage using Recycled Materials and Digital Photography": 1 +"5th Grade Mathematics: Understanding Geometry and Shapes through 3D Printing Activities": 1 +"2nd Grade Reading: Enhancing Comprehension with Storybook Theater and e-Book Annotations": 1 +"1st Grade Geography: Understanding Weather Patterns through Interactive Globe and Meteorological Charts.": 1 +"3rd Grade Science: Exploring Renewable Energy with Wind Turbine Models and Solar Panels.": 1 +"10th Grade Photography: Mastering Photo Editing with Adobe Lightroom.": 1 +"2nd Grade English: Interactive Storytelling with Puppets, Story Cubes, and Digital Storyboards.": 1 +"2nd Grade Music: Introduction to Rhythm and Melody with Hand Drums and Xylophones.": 1 +"The Influence of Music Production Software on 6th Grade Study of Mozart’s Operas: Focusing on the Harpsichord and GarageBand.": 1 +"8th Grade Basketball: Improving Shooting Accuracy with the Shoot-A-Way Training Device.": 1 +"5th Grade Science: Discovering the Wonders of Chemistry with DIY Slime and Vinegar-Baking Soda Volcanoes.": 1 +"8th Grade History: Unearthing Ancient Civilizations with Minecraft and Virtual Reality.": 1 +"4th Grade Art: Understanding the Principles of Design through Collage Making.": 1 +"4th Grade Mathematics: Exploring Geometry and Patterns with Origami": 1 +"Digital Environmental Education: Exploring Climate Change through Virtual Reality for 5th Graders": 1 +"8th Grade History: The Age of Exploration and the Impact on Global Trade: Navigating with Compass and Maps": 1 +"8th Grade Art: Clay Sculpting Techniques: Mastering Coil and Slab Building with Pottery Wheels": 1 +"4th Grade’s Adventure through the Rainforest: Learning about Biodiversity with Virtual Reality": 1 +"10th Grade History: The Influence of Alexander Graham Bell’s Telephone and Edison’s Light Bulb on Industrialization during the Victorian Era": 1 +"Kindergarten Art: Discovering Textures and Patterns through Finger Painting using Sponges, Brushes, and Stamping Techniques": 1 +"7th Grade English Literature: Enhancing Storytelling Skills through Podcasts and Storyboarding Techniques": 1 +"1st Grade Science: Exploring Marine Life Adaptations in Coral Reefs using Virtual Reality": 1 +"4th Grade Physical Education: Enhancing Coordination Skills through Dance and Rhythmic Gymnastics.": 1 +"6th Grade Science: Introduction to Photosynthesis with Interactive Microscope Games": 1 +"5th Grade Geography: Understanding Topography through Virtual Reality Expeditions": 1 +"8th Grade Mathematics: Applied Geometry in Architecture using SketchUp Software": 1 +"2nd Grade Art: Creating Shapes and Patterns with Origami and Colored Paper": 1 +"1st Grade Social Studies: Fun with Community Helpers using Role-Play and Puppets": 1 +"4th Grade English Language Arts: Exploring Imagery in Shel Silverstein’s Poetry with Animated Storytelling": 1 +"7th Grade History: Decoding Medieval Europe with Interactive Knights and Castles Software": 1 +"Kindergarten Mathematics: Counting and Number Recognition through Fun iPad Games": 1 +"3rd Grade Science: Discovering Life Cycles using Time-lapse Videos and Interactive Diagrams": 1 +"8th Grade Music: Exploring Harmony and Chords with Digital Piano Apps": 1 +"3rd Grade Language Arts: Journey through Folk Tales Using Puppetry Techniques": 1 +"7th Grade Basketball Shooting Improvement using ShotTracker and Sports Performance Analytics: 12 Techniques": 1 +"2nd Grade Science: Discovering Mars’ Surface through Virtual Reality Expeditions and Drone Technology": 1 +"3rd Grade Social Studies: Grasping the Concept of Economy through Monopoly Board Game": 1 +"1st Grade Music: Exploring Melody Basics with Digital Keyboards via Music Theory on MusiClock": 1 +"11th Grade Literature: Analyzing Symbolism in Shakespeare’s ’Macbeth’ using Literary Criticism Techniques": 1 +"3rd Grade Mathematics: Mastering Division using Interactive Whiteboards": 1 +"9th Grade Music: Deciphering Chord Progressions in Pop Music with Ableton Live Looping, Logic Pro X and Cubase’s Mixing Tools": 1 +"1st Grade Mathematics: Grasping Addition with Hands-on Counting Beads": 1 +"Preschool Art: Understanding Textures and Patterns through Clay Modeling": 1 +"7th Grade Geography: Exploring World Maps and Navigational Techniques through Augmented Reality": 1 +"2nd Grade Science: Introduction to Plant Life Cycles and Photosynthesis with Interactive Experiments": 1 +"Understanding Quantum Physics through Augmented Reality Simulations in 12th Grade Science": 1 +"9th Grade Language Arts: Journey into British Literature with Virtual Reality": 1 +"3rd Grade Music: Engaging Study of Mozart’s Symphonies using Online Music Apps and Digital Pianos": 1 +"12th Grade Sociology: Analyzing the Impact of Social Media on Modern Society": 1 +"1st Grade Social Studies: Learning about Local Traditions and Festivals through Storytelling": 1 +"6th Grade Math: Mastering Algebraic Expressions and Equations with the Aid of a Graphing Calculator": 1 +"2nd Grade Environmental Studies: Adventure through the Forest with Binoculars, Field Guides, and Compass Navigation Skills": 1 +"Eleventh Grade Music: Music Theory Applied to Piano Concerto Composition": 1 +"4th Grade History: Exploring the Engineering Marvels of Egyptian Pyramids": 1 +"6th Grade Science: Weather Patterns and Global Warming - An Analysis Using Interactive Simulations": 1 +"1st Grade Mathematics: Learning Addition and Subtraction through Fun Educational Games": 1 +"4th Grade English: Understanding Poetry with Focus on Rhyme Schemes": 1 +"7th Grade: Exploring the Universe with Astrophotography and Star Mapping": 1 +"6th Grade Physical Education: Incorporating Fitbit’s Heart Rate Zones in Individual Endurance Training": 1 +"3rd Grade Music: Learning Harmony and Pitch with String Instruments": 1 +"An In-depth 8th Grade Physical Education Course: Integrating Apple’s Health App, MyFitnessPal, Micronutrients, and the Role of Strength Vs Cardio Training": 1 +"1st Grade Science: Discovering Arctic Life Through Augmented Reality Experiences": 1 +"6th Grade Health: Developing Leadership Skills and Decision-making through Strategy Games": 1 +"3rd Grade Science: Exploring the Solar System with Interactive Augmented Reality": 1 +"1st Grade Art: Learning Color Theory with Digital Painting in Adobe Fresco": 1 +"2nd Grade History: Understanding Pioneer Life Through Virtual Reality Field Trips": 1 +"3rd Grade Music: Exploring the World of Percussion Instruments with GarageBand": 1 +"4th Grade Environmental Studies: Discovering Rainforest Ecosystems with Virtual Tours": 1 +"2nd Grade Music: Mastering Basic Notation through Fun Online Music Puzzles": 1 +"5th Grade Geography: Adventure in Cartography with Interactive Map Design Software": 1 +"3rd Grade Mathematics: Mastering Multiplication Tables through Gamified Learning": 1 +"4th Grade Literature: Discovering the Magic of Metaphors in Classic Children’s Books": 1 +"5th Grade Physical Education: Mastering Basic Gymnastics Techniques with Augmented Reality": 1 +"5th Grade Science: Exploring Photosynthesis and Plant Life Cycle with the LeafSnap App": 1 +"1st Grade Mathematics: Mastering Basic Addition and Subtraction using Math Bingo App": 1 +"4th Grade Language Arts: Crafting Compelling Stories with Pen, Paper, and Imagination": 1 +"7th Grade Art: Incorporating Digital Techniques with Adobe Photoshop and Wacom Tablets for Modern Art Creation": 1 +"Preschool Health and Nutrition: Learning about Food Groups with Play-Doh": 1 +"11th Grade Physical Education: Promoting Active Lifestyle through Daily Steps Monitoring on the Pacer Pedometer App": 1 +"8th Grade History: Deciphering the Middle Ages through Heraldry and Chivalric Codes": 1 +"1st Grade Sensory Science: Exploring Colors and Textures through Finger Paints and Clay": 1 +"5th Grade History: Significant Contributions of African American Scientists: A Deeper Dive": 1 +"4th Grade Social Studies: Exploring the Mayan Civilization & The Mysteries of Their Temples.": 1 +"4th Grade Music: Understanding Rhythm through Hand Drums, Maracas, and the Use of Metronomes": 1 +"1st Grade English: Fun with Adjectives and Prepositions through Animated Storytelling": 1 +"3rd Grade Advanced Geometry: Enhancing Learning with Augmented Reality Tools": 1 +"7th Grade History: The Impact of the Steam Engine on the Industrial Revolution": 1 +"1st Grade Mathematics: Understanding Subtraction with Building Blocks and Interactive Whiteboard Games": 1 +"6th Grade History: World War II - Decoding Enigma & The Role of Cryptography": 1 +"Fourth Grade Science: Discovering Botany through Seed Germination Experiments": 1 +"1st Grade Science: Exploring Weather Systems through Interactive Apps": 1 +"10th Grade History: The French Revolution - Role of Pamphleteering in Propaganda": 1 +"4th Grade English: Mastering Haiku and Rhyme through Podcast Creation": 1 +"4th Grade Geography: Understanding Weather Patterns and Climate Zones through Interactive Maps": 1 +"7th Grade Technology: The Impact of Fiber Optics on Modern Telecommunications": 1 +"2nd Grade Language Arts: Mastering Phonics and Reading Comprehension through Storytelling": 1 +"6th Grade Biology: Exploring Plant Photosynthesis using Microscopic Observations ": 1 +"4th Grade’s Guide to Earth Science: Investigating Volcanoes and Earthquakes through Virtual Reality Experiences": 1 +"7th Grade History: Analysis of Silk Road’s Impact on Global Trade in the Middle Ages": 1 +"2nd Grade Art: Discovering Textures and Patterns Through Paper Mache and Watercolor Techniques ": 1 +"4th Grade English: Improving Vocabulary and Spelling Skills with Crossword Puzzles and Word Games": 1 +"5th Grade Music: Understanding Rhythm and Melody through Percussion Instruments": 1 +"Advanced Study of Cellular Respiration and Energy Production in Living Organisms for 9th Grade Biology Students": 1 +"4th Grade Science: Exploring the Solar System: Understanding Planetary Motion Using Virtual Reality": 1 +"5th Grade Math: Decoding Geometry Through Origami and Interactive Apps": 1 +"6th Grade History: The Renaissance Era - Exploring Da Vinci’s Inventions with 3D Modeling": 1 +"2nd Grade English: Journey Through Folk Tales Using Augmented Reality Story Books": 1 +"Kindergarten Environmental Science: Fun with Farming: Introducing Composting and Plant Life Cycle": 1 +"3rd Grade Language Arts: Interactive Storytelling Using Puppetry and Digital Animation Tools": 1 +"8th Grade Music: Rhythm and Beats: Exploring Drum Patterns with Digital Drum Kits": 1 +"5th Grade World Cultures: Decoding the Aztec Calendar: An Interactive 3D Experience": 1 +"4th Grade Art: The Magic of Mosaics: Creating Patterns with Recycled Materials": 1 +"6th Grade Geography: Mapping the World: An Adventure with Google Earth and Virtual Field Trips": 1 +"3rd Grade Music: Discovering Rhythm and Melody with Digital Instruments": 1 +"5th Grade Geometry: Understanding Shapes and Angles with Interactive Software": 1 +"3rd Grade History: Exploring Ancient Rome through Interactive Timeline": 1 +"5th Grade Language Arts: Exploring Shakespeare’s Plays with Puppet Theatre": 1 +"8th Grade Literature: Analyzing Metaphors in Emily Dickinson’s Poems Using E-Books": 1 +"8th Grade Introduction to Physics: Grasping the Concept of Force and Motion through Experiments": 1 +"Understanding Climate: A 6th Grade Geography Course Focusing on Global Warming, Ozone Layer, and Greenhouse Effect": 1 +"3rd Grade Arithmetic: Learning Division with Colorful Bead Strings": 1 +"Fifth Grade Biology: Understanding the Human Body and its Systems through Virtual Reality": 1 +"7th Grade Visual Arts: Learning Watercolor Techniques with Interactive Videos": 1 +"9th Grade Literature: Analyzing Shakespeare’s Plays Using Digital Annotation Tools and Contextual Interpretation": 1 +"8th Grade Geography: Discovering World Biomes with Satellite Imagery and Interactive Maps": 1 +"1st Grade Physical Education: Yoga and Mindfulness: Introducing Basic Poses Through Animated Storytelling": 1 +"Exploring Space: 5th Grade Science with focus on Planets and Solar Systems": 1 +"3rd Grade Mathematics: Learning Multiplication with Interactive Apps and its Applications in Real World Scenarios": 1 +"7th Grade Physical Education: Essential Gymnastics Skills and the Use of Motion Capture Technology": 1 +"Understanding GarageBand in 9th Grade Music: Using Digital Audio Workstations and MIDI Sequencers for Beethoven’s Symphony": 1 +"4th Grade Mathematics: Exploring Algebra through Puzzles and Online Games": 1 +"Second Grade Music: Introduction to the Piano ": 1 +"11th Grade Art: Discovering 3D Modeling with Blender’s Sculpting Tools, Texture Mapping, and Light Settings": 1 +"5th Grade History: Exploring Egyptian Civilization through Virtual Reality": 1 +"6th Grade Art: Mastering Watercolor Techniques using Digital Painting Software": 1 +"3rd Grade Art: Exploring 3D Shapes and Structures using Minecraft": 1 +"9th Grade Music: The Evolution of Jazz: A Study of Improvisation and Syncopation using GarageBand": 1 +"5th Grade Music: Exploring Beethoven’s Symphonies through Violin Performance and Digital Sound Editing with Ableton Live": 1 +"The Science of Weather: Using Virtual Simulations to Understand Storm Systems in 6th Grade Science": 1 +"3rd Grade Language Arts: Developing Narrative Skills through Puppet Theater": 1 +"Second Grade Reading: Aventures in Wonderland with Augmented Reality": 1 +"7th Grade Science: Exploring Genetic Coding using Python": 1 +"2nd Grade Mathematics: Introduction to Geometry using Tangram Puzzles in Augmented Reality": 1 +"5th Grade Geography: The Importance of Compass Rose in Maps - Exploring Continents": 1 +"3rd Grade Language Arts: Enhancing Spelling Skills using Scrabble on Google Classroom and Interactive Whiteboards": 1 +"5th Grade History: Ancient Roman Civilization - The Colosseum and the Role of Aqueducts": 1 +"8th Grade World History: Medieval Kingdoms and the Evolution of Monarchy": 1 +"2nd Grade Environmental Studies: Weather Patterns through Stratus Observation": 1 +"5th Grade History: Understanding Colonial Period through Primary Source Analysis and Online Archives": 1 +"7th Grade Science: Discovery of Galaxies and Nebulae through Advanced Telescopes": 1 +"5th Grade History: Unearthing Ancient Greece - Philosophy and Democracy": 1 +"3rd Grade Mathematics: Adventure through Multiplication using Virtual Number Lines": 1 +"7th Grade Social Studies: Unraveling the Secrets of Mayan Temples through the Study of Ancient Hieroglyphics": 1 +"7th Grade Art: Discovering Renaissance Techniques using Virtual Reality and Haptic Feedback Devices": 1 +"10th Grade Physics: Quantum Mechanics Explored through Virtual Simulations of the Double Slit Experiment": 1 +"5th Grade Geography: Understanding Plate Tectonics and Seismic Activity through Real-Time Global Positioning Systems": 1 +"2nd Grade Music: Introduction to Tempo and Dynamics using GarageBand and Digital Keyboards": 1 +"6th Grade Mathematics: Grasping the Concepts of Trigonometry through the Study of Ancient Egyptian Pyramids": 1 +"9th Grade Physical Education: Utilizing Fitbit’s Activity Trackers and GPS in Outdoor Adventure Sports": 1 +"7th Grade Astronomy: Comprehending the Basics of Black Holes and Gravitational Waves through Virtual Planetariums": 1 +"4th Grade Social Studies: Exploring Globalization through the Development and Impact of the Internet": 1 +"3rd Grade Language Arts: Appreciating African Narratives through Interactive Storytelling and Digital Puppets": 1 +"6th Grade Science: Understanding the Science of Climate Change through Weather Forecasting and Satellite Data Analysis": 1 +"3rd Grade Music: Introduction to the Recorder: A Beginner’s Guide": 1 +"6th Grade Music: Exploring Mozart’s Compositions through GarageBand and Logic Pro X": 1 +"2nd Grade Science: Discovering Botany with Seed Growing Kits and Observation Journals": 1 +"Engaging 6th Grade Geometry: Exploring Shapes and Angles with a Virtual Reality Headset": 1 +"5th Grade English: Enhancing Narrative Writing Skills Using Online Blog Platforms": 1 +"7th Grade Computer Science: Learning Coding and Problem Solving with Scratch and Python": 1 +"6th Grade Art: Painting and Color Theory: An Emphasis on Light and Shadow": 1 +"4th Grade Nutrition: Understanding the Food Pyramid through Virtual Reality Cooking Games": 1 +"Mastering Basic Arithmetic in 3rd Grade Mathematics Using Math Blaster Software": 1 +"3rd Grade Physical Education: Discovering Soccer: Dribbling and Passing Fundamentals": 1 +"7th Grade Physical Education: Understanding Basketball Strategies and Uses of Fitness Trackers": 1 +"1st Grade Interactive Geography: Discovering the Amazon Rainforest through Virtual Reality Expeditions": 1 +"6th Grade Biology: Dive into the Ocean - Exploring Marine Life using Virtual Dissections": 1 +"8th Grade Literature: Ancient Greek Myths - Exploring the Art of Storytelling through Puppetry": 1 +"2nd Grade Craft: Creating Dinosaur Sculptures using Clay Modeling Techniques": 1 +"7th Grade Algebra: Making Math Fun with Interactive Gaming and Puzzle Solving": 1 +"5th Grade Astronomy: Exploring the Milky Way through Stellarium Software and Telescope Observations": 1 +"2nd Grade History: Journey through Ancient Greece with Interactive AR Storytelling": 1 +"3rd Grade Earth Science: Climate Change and Thermometry - Learning with Home-Made Weather Kits": 1 +"7th Grade Sociology: Exploring Diverse Societies through Documentary Viewing & Netflix Techniques": 1 +"5th Grade Music: Exploring World Rhythms with Percussion Instruments in Folk Traditions": 1 +"9th Grade History: Unmasking Medieval Europe through Virtual Reality Castles and Knight Simulations": 1 +"4th Grade Health: Physical Fitness Education with Interactive Games and Cardiovascular System Study": 1 +"8th Grade Language Arts: Fantasy Literature and the Evolution of Virtual Reality Technology": 1 +"12th Grade English: Exploring British Literature through Post-Colonial Perspectives": 1 +"2nd Grade English: Utilizing ScratchJr for Interactive Folktales in Global Cultures": 1 +"5th Grade Language Arts: Incorporating Popplet in Concept Mapping for Character Development Analysis in Classic Novels": 1 +"7th Grade History: The Impact of the Printing Press during the Enlightenment Period": 1 +"5th Grade Social Studies: Deciphering the Ancient Agricultural Techniques of Civilizations": 1 +"7th Grade Science: The Age of Discovery: The Telescope and its Impact on Astronomical Observations": 1 +"5th Grade History: Exploring Ancient Rome through Augmented Reality Technology": 1 +"4th Grade Mathematics: Multiplication Mastery Using the Lattice Method": 1 +"Understanding Ecosystems and Biodiversity in 7th Grade Science using Interactive 3D Models": 1 +"3rd Grade Music: Learning Melody and Harmony through the Piano": 1 +"1st Grade Science: Introduction to Plant Life Cycle with Interactive Gardening Activities": 1 +"7th Grade Physical Education: Enhancing Agility and Coordination through Badminton Drills": 1 +"3rd Grade French: Cultivating Language Proficiency with Duolingo, Google Classroom Quizzes, and Memrise Online Platform": 1 +"2nd Grade Art: Exploring Colors and Shapes with Digital Painting Tools": 1 +"8th Grade Mathematics: Conquering Geometry Proofs with Geogebra Technology": 1 +"5th Grade Language Arts: Delving into Mystery Novels using Critical Thinking Exercises": 1 +"5th Grade Math: Exploring Geometry with Interactive 3D Models and Protractor Applications": 1 +"3rd Grade Literature: Storytelling and Character Development in Aesop’s Fables using Interactive eBooks": 1 +"5th Grade Science: Understanding Weather Patterns and Climate Change: An Introduction to Meteorology": 1 +"7th Grade History: Deciphering the Secrets of Mayan Hieroglyphics and Advanced Astronomy": 1 +"3rd Grade Math: Discovering Multiplication and Division through Interactive Number Line Apps": 1 +"3rd Grade Language Arts: Mastering Grammar through Interactive Sentence Building Games": 1 +"7th Grade Geography: Investigating Plate Tectonics and Earthquake Patterns through Seismogram Interpretation": 1 +"Kindergarten Science: Discovering Backyard Habitats through DIY Bug Hotels and Nature Observation Logs": 1 +"Kindergarten Reading: Learning Letters and Words through Interactive Alphabet Apps": 1 +"9th Grade Biology: Delving into DNA and Genetics through the Study of Punnett Squares in Basic Biology": 1 +"3rd Grade Science: Exploring Marine Life using Virtual Reality Ocean Tours": 1 +"5th Grade History: The Medieval Era and the Significance of Castles": 1 +"11th Grade Music: A Comprehensive Review of Beethoven’s Sonatas using Finale Notation Software and Rhythmic Pattern Analysis": 1 +"3rd Grade Health: Understanding Basic Hygiene Practices through Interactive Handwashing Games": 1 +"4th Grade Art: Learning about Renaissance Paintings through Virtual Museum Tours": 1 +"7th Grade Physical Education: Utilizing Fitbit Ace 2 for Step Counting and Activity Monitoring": 1 +"8th Grade History: A Beginners Guide to Ancient Greek Mythology": 1 +"9th Grade Music: Investigating Jazz Music’s Development using Looping Techniques in GarageBand ": 1 +"2nd Grade Reading: Enhancing Vocabulary Skills using Interactive E-books and Visual Memory Games": 1 +"7th Grade Social Studies: Studying Medieval Europe through Blacksmithing": 1 +"5th Grade Science: Exploring Astronomy through the Creation of Solar System Models": 1 +"2nd Grade English: Building Vocabulary through Interactive Storytelling ": 1 +"8th Grade Physical Education: Understanding Human Anatomy through Dance Choreography": 1 +"3rd Grade Music: Discovering Harmony and Melody through Recorders and Sheet Music": 1 +"4th Grade English: Enhancing Storytelling Abilities through Comic Strip Creation": 1 +"1st Grade Mathematics: Introduction to Shapes using Tangram Puzzles": 1 +"7th Grade History: Journey to Medieval Europe through Castle Building Projects": 1 +"5th Grade Mathematics: Understanding Geometry using Origami Techniques": 1 +"2nd Grade Science: Exploring Plant Life Cycle through Bean Sprouting Experiment": 1 +"6th Grade History: Exploring the Civil War through Role-Playing and Historical Diaries": 1 +"5th Grade Physical Education: Enhancing Soccer Skills with Movement Analysis Apps": 1 +"4th Grade History: Understanding the Influence of Gutenberg’s Printing Press on Literature": 1 +"8th Grade English: Deciphering Sonnets using Kindle, Google Docs, and Audacity for Auditory Learning": 1 +"5th Grade Mathematics: Discovering Geometric Shapes with Geogebra, Protractors, and Rational Numbers": 1 +"8th Grade Geography: Investigating the World’s Major River Systems with Virtual Reality Tours": 1 +"Kindergarten Physical Education: Incorporating Motion Sensors in Cooperative Games & Dance Moves": 1 +"4th Grade Mathematics: Embracing Addition and Subtraction using Number Blocks": 1 +"3rd Grade: Evaluating Ecosystems with Satellite Imagery in Science": 1 +"5th Grade Art: Understanding Perspective Drawing with Charcoal, Shading Techniques, Sketch Pads, and Digital Art Software": 1 +"3rd Grade Science: Discovering the Metamorphosis of Butterflies through Documentary Footage and Virtual Reality Models": 1 +"8th Grade Mathematics: Exploring Algebraic Expressions and Equations with Mathcad": 1 +"3rd Grade Social Studies: The Role of Railroads and Telegraph in the Expansion of the West": 1 +"Structural Engineering Basics for 1st Graders: Building Bridges with Popsicle Sticks and Glue": 1 +"11th Grade English: Poetry Analysis: Delving into Symbolism and Imagery": 1 +"Fifth Grade Geography: Understanding Weather Patterns and Climate Zones through Meteorology": 1 +"7th Grade Music: The Evolution of Jazz and the Saxophone’s Influence in Improvisation": 1 +"4th Grade Science: Exploring Ocean Life through the Study of Coral Reefs using Microscope Observations": 1 +"The Significance of Trade Routes in the Growth of Medieval Kingdoms: A 6th Grade History Analysis": 1 +"1st Grade Art: Exploring Shapes and Textures with Collage Art using Recycled Materials": 1 +"3rd Grade Physical Education: Perfecting Basketball Skills with Hoops and Cones.": 1 +"11th Grade Digital Design: Discovering Vector Graphics with Adobe Illustrator’s Pen Tool, Clipping Masks, and Gradient Meshes": 1 +"7th Grade History: Civil War Strategies - The Crucial Role of Railway Systems: The Game-changing Impact of Morse Code": 1 +"8th Grade Mathematics: Algebra Fundamentals - Understanding Quadratic Equations through Graph Theory": 1 +"5th Grade Anthropology: A Comprehensive Study of Medieval Societies and Their Use of Sundials in Timekeeping": 1 +"5th Grade Music: Unraveling the Mystery of Jazz Improvisation with Digital Sheet Music Applications": 1 +"Solution 4: Hydroponic Farming - A Potential Solution for Soil Erosion’s Agricultural Impact": 1 +"5th Grade Mathematics: Unlocking Ratio Concepts with Virtual Pattern Blocks & Interactive Diagrams": 1 +"3rd Grade English: Mastering Verb Usage in Paragraph Construction through Interactive Storytelling": 1 +"4th Grade’s Journey to the Human Body: An Extensive Study of Internal Organs using Virtual Reality Technology.": 1 +"3rd Grade Introduction to Fractions: Understanding Numerators and Denominators using Tablet-Based Learning Apps": 1 +"6th Grade Geography: Exploring Earth’s Terrain with Virtual Reality Topography ": 1 +"2nd Grade Art: Understanding Color Theory through Interactive Digital Painting ": 1 +"7th Grade Biology: Dissecting Amphibian Anatomy using 3D Printed Models ": 1 +"10th Grade Philosophy: Investigating Existentialism through Analysis of Albert Camus’ Works ": 1 +"4th Grade Mathematics: Mastering Fractions through Real-World Applications ": 1 +"8th Grade Spanish: Enhancing Vocabulary Acquisition with Digital Flashcards and Immersive Language Software ": 1 +"The Integration of Smart Board Technology and Hands-on Activities in 2nd Grade Astronomy ": 1 +"Kindergarten Physical Education: Enhancing Motor Skills through Balance Beam and Mini Trampoline Exercises ": 1 +"6th Grade History: Unraveling the Secrets of the Middle Ages through Virtual Reality Castle Tours ": 1 +"7th Grade Physical Education: Improving Agility with Interactive Obstacle Courses.": 1 +"6th Grade Art: Understanding Color Theory through Interactive Design Apps": 1 +"8th Grade Literature: Fantasy Novels - Exploring Magic Systems": 1 +"Analyzing Yoga Poses using Virtual Reality in 10th Grade Physical Education": 1 +"10th Grade Biology: Comprehending Genetics through Interactive Cell Models & DNA Simulation": 1 +"2nd Grade Math: Learning Number Patterns using Online Puzzle Games": 1 +"5th Grade Art: Crafting Tales through Shapes and Colors with Adobe Spark": 1 +"4th Grade Science: The Science of Weather Patterns using Interactive Climate Maps": 1 +"Blockchain & AI: Exploring Economy and Trade in 7th Grade Economics": 1 +"8th Grade History: World War II Explored through Augmented Reality Experiences": 1 +"Incorporating Tablets in 2nd Grade Math: Interactive Techniques for Understanding Fractions": 1 +"3rd Grade Science: Exploring Ecosystems with Virtual Reality ": 1 +"5th Grade Geography: Understanding World Cultures through Google Earth and Virtual Field Trips": 1 +"5th Grade Mathematics: Enhancing Geometry Skills with 3D Printing and Modeling Software": 1 +"Kindergarten Art: Introducing Colors and Shapes through Interactive Drawing Apps": 1 +"7th Grade Music: Discovering Harmony and Composition with Digital Music Software": 1 +"3rd Grade Language Arts: Understanding Plot Development through Interactive Storytelling Games": 1 +"4th Grade Health: Learning About Nutrition through Cooking and Recipe Apps": 1 +"1st Grade Science: Introduction to Animals and Their Habitats with Augmented Reality": 1 +"7th Grade Physical Education: Soccer Techniques and Drills using Virtual Reality Training": 1 +"9th Grade Economics: Understanding Supply and Demand using Simulated Stock Market Apps": 1 +"2nd Grade: Discovering the Solar System - Incorporating Virtual Reality in Astronomy": 1 +"1st Grade Mathematics: Counting and Understanding Money with Practical Activities and Games": 1 +"8th Grade Science: Exploring Genetics - Introduction to DNA Sequencing with Bioinformatics": 1 +"2nd Grade Health: Learning the Food Pyramid - Making Balanced Meals Using Interactive Apps": 1 +"8th Grade Music: Exploring Rhythms and Beats through Percussion Instruments": 1 +"5th Grade: Understanding Civilizations - Studying Ancient Cultures Using Virtual Reality Technology": 1 +"4th Grade English: Adventure into Poetry - The Power of Language with Interactive E-Books": 1 +"Understanding Weather Patterns with Minecraft: A 6th Grade Earth Science Course": 1 +"2nd Grade Health: Importance of Exercise and Active Living through Animated Series": 1 +"1st Grade Introduction to Fractions: Learning to Divide Objects and Numbers through Interactive Games": 1 +"10th Grade Mathematics: Understanding Geometric Concepts through 3D Printing Technology": 1 +"7th Grade Literature: Adventures in Shakespeare’s Plays with Interactive Ebooks": 1 +"9th Grade Science: Investigating Plant Photosynthesis using Data Loggers and pH Indicators": 1 +"3rd Grade Art: Discovering Color Theory with Adobe’s Digital Art Software": 1 +"8th Grade Geometry: Mastering the Art of Tessellations with Virtual Reality Tools": 1 +"5th Grade Social Studies: Exploring Ancient Civilizations through Google Earth": 1 +"2nd Grade Environmental Science: Understanding the Life Cycle of Butterflies through Augmented Reality": 1 +"11th Grade Music: Exploring the Evolution of Jazz with Spotify and Digital Timelines": 1 +"4th Grade Physical Education: Enhancing Agility with Interactive Fitness Games on Wii Fit": 1 +"7th Grade French: Mastering Basic Conversations using Rosetta Stone and Digital Flashcards": 1 +"4th Grade Math: Improving Problem-Solving Skills with Interactive Board Games and Apps": 1 +"6th Grade Science: Exploring the Solar System with Virtual Reality Expeditions": 1 +"7th Grade English: Mastering Poetry and Prose with Audiobooks on Audible": 1 +"1st Grade Math: Fun with Numbers using Interactive Digital Counting Books": 1 +"8th Grade History: Unlocking the Mysteries of the Roman Empire and the Colosseum": 1 +"3rd Grade Science: Discovering Insect Life Cycles with Augmented Reality Experiments": 1 +"9th Grade Literature: Exploring British Classics with E-books and Online Book Clubs": 1 +"2nd Grade Geography: Embarking on a Virtual World Tour with Google Earth": 1 +"5th Grade Language Arts: Building Vocabulary through Word Search Puzzles and Flashcards": 1 +"Stratus Cloud Study and Classification using Weather Balloons and Lidar for 3rd Grade Environmental Science": 1 +"5th Grade Science: Exploring Photosynthesis and Cellular Respiration through Microscope Experiments": 1 +"4th Grade Music: Enhancing Creativity Through Piano Improvisation using GarageBand App": 1 +"7th Grade Geography: Investigating Tectonic Plate Boundaries and Earthquakes with Google Earth": 1 +"1st Grade Physical Education: Developing Basic Motor Skills through Fun Outdoor Games": 1 +"3rd Grade Language Arts: Enhancing Vocabulary with Interactive Storytelling on Kindle Devices": 1 +"6th Grade Math: Exploring Geometry in Architecture with 3D Modeling Software": 1 +"2nd Grade Environmental Studies: Understanding The Life Cycle of Butterflies with Augmented Reality": 1 +"5th Grade Social Studies: Understanding the Impact of the Cotton Gin on American Society": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality Technology ": 1 +"3rd Grade Math: Introduction to Multiplication and Division through the Use of Educational Mobile Apps": 1 +"7th Grade Physics: Understanding the Principles of Gravity Through Pendulum Experiments": 1 +"2nd Grade Geography: Discovering World Biomes with Interactive Globes and Mapping Software": 1 +"8th Grade Mathematics: Trigonometry and its Application in Architecture Design": 1 +"11th Grade History: Examining the Role of Navajo Code Talkers in World War II using Cryptography": 1 +"5th Grade Literature: Exploring Greek Mythology Through Virtual Reality Storytelling": 1 +"4th Grade History: Journey Through Medieval Europe with 3D Castle Building and Siege Warfare": 1 +"7th Grade Science: Plant Photosynthesis and Cellular Respiration Studies": 1 +"3rd Grade Science: Introduction to Rocks and Minerals Using the Rockd Mobile Application": 1 +"6th Grade Science: Demystifying Weather Phenomena Through Cloud Identification and Forecasting": 1 +"7th Grade Art: Understanding the Impact of Light in Baroque Art History": 1 +"4th Grade History: Exploring Ancient Civilizations through Virtual Reality": 1 +"5th Grade English: Expanding Vocabulary and Grammar Skills through Interactive Language Apps": 1 +"3rd Grade Science: Introduction to Plant Life Cycles using Augmented Reality": 1 +"9th Grade Physics: Understanding Dynamics and Forces using Physics Simulation Software": 1 +"Discovering Harmony and Chords with GarageBand: A Course for 3rd Graders": 1 +"1st Grade Art: Basic Drawing Techniques Explored with Procreate": 1 +"7th Grade Biology: Cell Structure and DNA Comprehension using 3D Modelling": 1 +"12th Grade Mathematics: Calculus Concepts and Functions Visualized with Desmos": 1 +"5th Grade Music: Developing Pitch Recognition and Singing Skills using Voice Training Apps": 1 +"6th Grade Geography: Understanding World Map and Cultures through Interactive Globes and Digital Field Trips": 1 +"3rd Grade Art: Exploring Shapes and Patterns through Mosaic Tile Art": 1 +"2nd Grade Language Arts: Journey into Folktales – Incorporating Puppetry and Stop Motion Animation": 1 +"1st Grade Geography: Navigating Neighborhoods through Augmented Reality Scavenger Hunts": 1 +"3rd Grade Mathematics: Understanding Subtraction using Counting Beads and Number Grids": 1 +"7th Grade History: Ancient Egypt and the Hierarchical Structure": 1 +"Investigating the Use of Cannons in Civil War Land Conflicts: A 7th Grade Viewpoint": 1 +"2nd Grade Music: Learning Rhythm Fundamentals with Xylophones, Tuning Forks, and Music Editing Software": 1 +"5th Grade History: The Industrial Revolution - Studying Steam Engines, Looms, and the Impact of the Telegraph": 1 +"3rd Grade Science: Exploring Plant Life Cycle with Seed Germination Experiments": 1 +"Unraveling the Solar System with Telescopes and Planetarium Software: A 6th Grade Astronomy Course": 1 +"4th Grade Science: Understanding Ecosystems through Virtual Reality Forest Exploration": 1 +"5th Grade Geography: The Impact of Canals and Railways on the Industrial Revolution": 1 +"6th Grade English: Exploring Fiction through Interactive Digital Storybooks and Game-Based Learning": 1 +"Unraveling the Universe: A Study of Star Maps and Celestial Navigation in Ancient Civilizations for 7th Grade History": 1 +"Mastering Algebra: An In-depth 10th Grade Mathematics Course on Linear Equations and Graphing": 1 +"2nd Grade Science: Discovering Dinosaurs through Fossil Excavations and Augmented Reality": 1 +"3rd Grade Art: Creating Masterpieces with Collage Techniques and Digital Art Tools": 1 +"6th Grade Science: Investigating Photosynthesis through Plant Growth Experiments and Data Analysis": 1 +"1st Grade Language Arts: Learning Phonics through Song, Dance, and Interactive Games": 1 +"4th Grade Geography: Understanding Volcanoes and Earthquakes through Simulation and 3D Modeling.": 1 +"4th Grade Art: Exploring Watercolor Techniques in Landscape Painting": 1 +"3rd Grade Music: Deepening Understanding of Harmony with Keyboards and Music Theory Apps": 1 +"2nd Grade Science: Exploring Animal Habitats with Virtual Reality": 1 +"4th Grade Mathematics: Boosting Division Skills Using Math Games and Interactive Worksheets": 1 +"1st Grade Art: Introduction to Paper Mache and Finger Painting using Non-toxic Paints": 1 +"5th Grade Language Arts: Exploring Themes and Symbols in Poetry using Mind Maps": 1 +"6th Grade Art: Understanding Perspective and Depth in Drawing with Graphite and Charcoal": 1 +"3rd Grade Music: Enhancing Pitch Recognition with Tuning Forks and Music Software": 1 +"8th Grade Language Arts: Analyzing Historical Fiction through Audiobooks": 1 +"Decoding World Economics: An 11th Grade Social Studies Course using Infographics and Interactive Graphs": 1 +"6th Grade Geography: Understanding Earthquake Mechanisms through Virtual Simulations": 1 +"5th Grade Art: Discovering the Renaissance Period through Augmented Reality": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Skills with Interactive E-books and Audiobooks": 1 +"7th Grade History: The Industrial Revolution - The Impact of Railroads and Textile Mills on Society": 1 +"Exploring the Importance of Protective Equipment in 8th Grade Physical Education: Fencing Techniques Using Augmented Reality": 1 +"3rd Grade Language Arts: Developing Narrative Skills using Microsoft Sway and Prezi": 1 +"8th Grade Music: The Shift from Baroque Concertos to Romantic Symphonies in Music History": 1 +"Tenth Grade History: The Effect of Steam Engine Innovations on the Civil War": 1 +"10th Grade Music: Deciphering Mozart’s Composition Techniques using Ableton Live, Traktor, and MIDI Keyboards": 1 +"10th Grade Geography: Journeying through Diverse Landscapes with Virtual Reality Mapping Technology": 1 +"5th Grade Science: Exploring Volcanoes and Plate Tectonics using Hands-On Experiments": 1 +"9th Grade American History: A Comprehensive Study on Civil Rights Movement through Interactive Online Resources": 1 +"Kindergarten Math: Learning Basic Addition and Subtraction with Fun, Interactive Games": 1 +"3rd Grade English: Improving Comprehension Skills Using Zoom Book Clubs": 1 +"6th Grade Technology: Understanding the Role of the Internet in Digital Revolution": 1 +"8th Grade Mathematics: Application of Algebra in Real Life Scenarios": 1 +"1st Grade Art: Exploring Shapes and Patterns with Finger Paints": 1 +"11th Grade World History: Understanding the Impact of World War II through Virtual Reality Tours and Documentary Films": 1 +"5th Grade Music: Learning the Basics of Rhythm through Drum Notation": 1 +"3rd Grade Language Arts: Exploring African Folktales using Interactive Digital Storybooks": 1 +"4th Grade Mathematics: Understanding Geometry through Origami and 3D Printing": 1 +"2nd Grade History: Journey to Medieval England using Augmented Reality": 1 +"5th Grade Language Arts: Improving Descriptive Writing through Interactive Story Games": 1 +"6th Grade Social Studies: Exploring Economic Systems through Real-life Business Simulations": 1 +"1st Grade Language Arts: Learning Phonics through Interactive Songs and Games": 1 +"2nd Grade Science: Discovering Plant Life Cycles and Gardening using Augmented Reality": 1 +"4th Grade English: Interactive Storytelling with African Folktales using Stop Motion Animation": 1 +"8th Grade Music: Exploring Melodies and Harmonies with Digital Audio Workstations": 1 +"Understanding Global Cultures through Virtual Reality Tours in 6th Grade Social Studies": 1 +"2nd Grade Science: Investigating the Solar System with Virtual Planetarium Software": 1 +"3rd Grade Science: Exploring Physical Forces through Fun Experiments with Magnets": 1 +"4th Grade Science: Understanding the Solar System through Virtual Reality Experiences": 1 +"Interactive Learning of Subtraction with FunMaths App for 3rd Graders": 1 +"5th Grade Geography: Exploring the Asian Continent and its Rich Heritage": 1 +"3rd Grade Mathematics: Multiplication Mastery with Math Planet App and Tablet Games": 1 +"7th Grade Health: Achieving Mental Wellness through Mindfulness and Yoga": 1 +"Discovering the Wonderful World of Insects: A 4th Grade Science Adventure": 1 +"11th Grade Physical Education: Understanding Fitness & Nutrition with a Focus on Body Composition": 1 +"5th Grade English: Enhancing Vocabulary through Interactive Digital Word Games": 1 +"7th Grade English: Improving Grammar Skills using Grammarly App for Precision": 1 +"5th Grade Geography: Exploring World Maps Through Virtual Reality": 1 +"8th Grade Art: Experimenting with Abstract Painting: A Journey into Cubism": 1 +"7th Grade Science: The Influence of Solar Energy on Weather Patterns": 1 +"4th Grade History: Unraveling the Mysteries of Ancient Egypt Through Hieroglyphs": 1 +"8th Grade Language Arts: Dissecting Metaphors in Fantasy Literature: A Study of Tolkien’s Works": 1 +"1st Grade History: A Peek into the Life of Dinosaurs - Understanding the Jurassic Period": 1 +"5th Grade Music: Discovering Mozart’s Symphonies and the Art of Composition Through Interactive Software": 1 +"2nd Grade Language Arts: Learning Phonetics with Interactive Whiteboards and Digital Games": 1 +"Pre-K Language Arts: Learning Numbers and Shapes through Play-Dough and Kinesthetic Education Methods": 1 +"Applying the “Headspace” App for Mindfulness Exercises in 10th Grade Health Education": 1 +"4th Grade Mathematics: Understanding Geometry with Tangram Puzzles and Interactive Software": 1 +"7th Grade Art: The Importance of Color Theory in Acrylic Painting": 1 +"Rhythm and Resonance: The Balance of Vibrato, Bow Speed, Metronomes, and Audio Interfaces in Perfect Pitch for 10th Grade Music Students": 1 +"4th Grade Science: Delving into Weather Patterns with Augmented Reality": 1 +"7th Grade Art: Fundamentals of Portrait Drawing with Charcoal, Pastel, Conte and a Blending Stump": 1 +"4th Grade English: Discovering Sentence Structure through Comic Strip Creation": 1 +"7th Grade Social Studies: European History - The Influence of the Roman Empire": 1 +"7th Grade Language Arts: Exploring Plot Development using Interactive Storytelling Apps": 1 +"2nd Grade Art: Creating Colorful Worlds with Adobe Fresco": 1 +"11th Grade Biology: Discovering Genetic Variations with Gel Electrophoresis Technology": 1 +"3rd Grade Science: Investigating Ocean Life through Microscopic Observation and Documentaries": 1 +"6th Grade Geography: Exploring World Topography through Satellite Imagery and Virtual Field Trips": 1 +"4th Grade Language Arts: The Power of Words - Using Alliteration and Onomatopoeia in Poetry": 1 +"1st Grade Physical Education: Mastering Basic Yoga Poses through Interactive Videos": 1 +"8th Grade Literature: Understanding Shakespeare’s Tragedies through Digital Graphic Novels and Interactive Quizzes": 1 +"3rd Grade Music: Understanding Melody with Hand Bells and Interactive Beat Software": 1 +"6th Grade History: Unraveling the Mysteries of the Medieval Period with Castle Blueprints": 1 +"7th Grade Music: Discovering the Magic of Film Scores with Digital Audio Workstations and MIDI keyboards": 1 +"4th Grade History: Journey Through the Mayan Civilization with Virtual Reality": 1 +"5th Grade Music: Understanding Chord Progressions - An Interactive Study with the Piano": 1 +"1st Grade Science: Exploring Plant Life Cycles using Timelapse Videos and Interactive Apps": 1 +"5th Grade Geography: Understanding Global Climate Change through Google Earth and Interactive Charts": 1 +"8th Grade Literature: Analyzing Themes in Shakespeare’s Plays through Dramatic Reinterpretations with Podcasts": 1 +"6th Grade Language Arts: Crafting Compelling Narratives in Creative Writing": 1 +"4th Grade History: The Civil War - Tactics and Strategies: The Role of Balloons": 1 +"2nd Grade Social Studies: Discovering Community Roles through Role-Playing Games and Virtual Field Trips": 1 +"3rd Grade Geometry: Grasping Shapes and Angles through 3D-Printing and Virtual Reality": 1 +"7th Grade History: Unraveling Medieval Societies with Castle Architecture and Manuscript Illumination": 1 +"1st Grade Mathematics: Mastering Multiplication and Division through Number Blocks and Educational Games": 1 +"2nd Grade Reading: Delving into Animal Fables with Interactive E-books and Augmented Reality Puzzles": 1 +"8th Grade Music: The Evolution of Electronic Dance Music with Logic Pro X": 1 +"5th Grade History: The Steam Engine and the Influence on Industrial Revolution": 1 +"7th Grade Mathematics: Exploring Fractions through Virtual Manipulatives and Quizlet": 1 +"11th Grade Art: Mastering 3D Modeling Techniques with Blender": 1 +"Adventures in 4th Grade Music: Composing Melodies using GarageBand": 1 +"7th Grade Art: Learning Perspective and Proportions through Sketchpad Apps": 1 +"2nd Grade Geography: Navigating the Globe using Google Earth and Physical Maps": 1 +"5th Grade Social Studies: The Impact of The Printing Press on Information Dissemination and Cultural Exchange": 1 +"Understanding Gravity and Motion: A 7th Grade Course on Galileo’s Experiments using Online Physics Labs": 1 +"4th Grade Science: Introduction to Oceanography with Augmented Reality Apps": 1 +"3rd Grade Geography: Journey into Continents and Oceans using Interactive Globes": 1 +"4th Grade Physical Education: Mastering Basketball Techniques and Team Strategies": 1 +"2nd Grade Music: Melody and Harmony Exploration through Fun Piano Apps": 1 +"3rd Grade Science: Harnessing Virtual Reality for an Immersive Study of Ocean Ecosystems and Marine Life": 1 +"Kindergarten Art: Discovering Textures and Patterns with Finger Painting and Sponge Techniques": 1 +"4th Grade Environmental Studies: Exploring Renewable Energy Sources with Solar Panel Kits": 1 +"2nd Grade Reading: Enhancing Comprehension and Vocabulary using Storytelling and Interactive E-books": 1 +"5th Grade Mathematics: Engaging Tablet Games for Multiplication and Division Mastery": 1 +"6th Grade Language Arts: Advanced Sentence Structure Mastery using Online Grammar Tools": 1 +"Kindergarten Physical Education: Fundamentals of Gymnastics and Team Cooperation": 1 +"2nd Grade Art: Exploring Colors and Textures with Digital Painting Tools": 1 +"6th Grade Health: Understanding Body Systems and Healthy Lifestyle Choices using Fitness Tracker Data": 1 +"1st Grade Social Studies: Learning about Community Helpers through Role-Play and Interactive Games": 1 +"4th Grade Music: Comprehension of Harmony and Dynamics with GarageBand": 1 +"3rd Grade Mathematics: Understanding Geometry through Tangram Puzzles and Origami": 1 +"5th Grade Geography: Investigative Study of Asian Cultures using Virtual Tours": 1 +"Kindergarten Science: Discovering Weather Patterns through Simple Experiments and Observations": 1 +"7th Grade Physical Education: Introduction to Basketball and Dribbling Techniques": 1 +"2nd Grade Language Arts: The Magic of Storytelling in Fairy Tales and Folklore": 1 +"6th Grade Science: Expanding Horizons with Astronomy and Planetarium Software": 1 +"1st Grade Math: Learning Basic Arithmetic through Augmented Reality Games": 1 +"7th Grade Art: Exploring the Renaissance through Virtual Reality Touring": 1 +"10th Grade Geography: Analyzing Global Migration Patterns using Geographic Information System (GIS)": 1 +"4th Grade Science: Discovering the Solar System using Augmented Reality Apps": 1 +"12th Grade Calculus: Mastering Derivatives and Integrals through Wolfram Alpha": 1 +"Kindergarten Reading: Utilizing ABCMouse for Phonics and Reading Comprehension": 1 +"3rd Grade Social Studies: Exploring Early American History through Interactive Timeline Software": 1 +"11th Grade Literature: Analyzing Shakespeare’s Hamlet through Digital Annotated Texts": 1 +"9th Grade Physics: Investigating Newton’s Laws through Virtual Reality Simulations": 1 +"6th Grade Environmental Science: Understanding the Water Cycle using Interactive Weather Forecasting Tools": 1 +"6th Grade Science: Exploring Solar System through Virtual Reality Experiences": 1 +"7th Grade Mathematics: Enhancing Geometry Understanding with 3D Printing Technology": 1 +"5th Grade Language Arts: Exploring Story Structures through Animated Storybooks": 1 +"8th Grade Physical Education: Utilizing Wearable Fitness Trackers to Improve Cardiovascular Endurance": 1 +"3rd Grade History: Learning about Ancient Egypt through Interactive Online Games": 1 +"9th Grade Biology: Understanding Human Anatomy through Augmented Reality": 1 +"1st Grade Environmental Studies: Fun with Planting - Emphasizing on the Role of Worms in Soil Health": 1 +"4th Grade Physical Education: Agility Drills and Teamwork - The Fun of Soccer": 1 +"5th Grade Social Studies: Exploring Cultural Diversity with Virtual Field Trips": 1 +"7th Grade Language Arts: Analyzing Character Development in Novels through Blogging and Podcasting": 1 +"8th Grade Literature: Understanding the Influence of Shakespeare and the Elizabethan Era": 1 +"6th Grade Physics: Exploring Newton’s Laws with LEGO Robotics and Virtual Reality Simulations": 1 +"10th Grade Mathematics: Deciphering Fractals and Chaos Theory through Python Programming": 1 +"7th Grade Geography: The Role of Plate Tectonics in Natural Disasters Using Interactive Maps": 1 +"9th Grade Art: Creating Lifelike Landscapes with Adobe Fresco and Digital Pen Tablets": 1 +"8th Grade Environmental Science: Investigating Renewable Energy through Solar Panel Design Projects": 1 +"Harmony and Dissonance: The Physics of Sound waves in 7th Grade Guitar Music": 1 +"Unraveling the Mysteries of Egyptian Pyramids: A 5th Grade History Course": 1 +"Introduction to Latin American Civilizations: A 6th Grade Social Studies Course Using Virtual Reality Tours": 1 +"Global Cultures in Perspective: 9th Grade Social Studies with Focus on the Internet and Globalization": 1 +"8th Grade Music: Composing Rhythms with the Drum and GarageBand Software": 1 +"6th Grade History: Unraveling Ancient Greek Myths through Augmented Reality": 1 +"2nd Grade Art: Exploring Texture and Patterns through Clay Modeling and Collages": 1 +"Calculus in 12th Grade Math: Understanding Limits and Derivatives using Desmos and the Sandwich Theorem": 1 +"5th Grade Geography: Exploring Weather Patterns Using Interactive Climate Models": 1 +"3rd Grade Environmental Studies: The Water Cycle through Interactive Aquarium Visits": 1 +"7th Grade Mathematics: Mastering Geometry with Sketchpad, Khan Academy, and Pythagorean Theorem": 1 +"5th Grade Mathematics: Division Proficiency Using the Long Division Method": 1 +"5th Grade Literature: Investigating Mythologies and Their Symbolic Meanings through Illustrated Narration": 1 +"8th Grade History: Exploring Colonial America through the Perspective of Indigenous Tribes using Age of Empires.": 1 +"8th Grade Chemistry: Exploring Chemical Reactions with Interactive Simulations and Lab Experiments": 1 +"2nd Grade Math: Mastering Addition and Subtraction using TouchMath Integrated with iPads": 1 +"10th Grade History: Understanding World War II through Virtual Reality Tours and Documentary Analysis": 1 +"5th Grade Science: Investigating Plant Life Cycles through Microscope Observations and Botany Software": 1 +"9th Grade English: Enhancing Essay Writing Skills with Grammarly and Google Docs Collaboration": 1 +"7th Grade Geography: Exploring World Cultures through Virtual Field Trips and Google Earth Integration": 1 +"4th Grade Art: Creating Digital Art using Procreate on iPads": 1 +"1st Grade Science: Exploring Weather Patterns using Interactive Whiteboards and Online Simulation Tools": 1 +"3rd Grade Language Arts: Developing Reading Comprehension with Story Sequencing Activities on the Raz-Kids Platform": 1 +"The Ethics of AI: An In-depth Study on Machine Learning and Data Privacy - Solution 21: Responsible Innovation": 1 +"8th Grade Biology: Understanding Human Anatomy through Virtual Dissection": 1 +"3rd Grade Math: Mastering Multiplication and Division with Interactive Apps": 1 +"5th Grade Geography: Exploring Biomes and Ecosystems using Augmented Reality": 1 +"6th Grade History: Journey through Medieval Europe with Castle Simulations": 1 +"2nd Grade Science: Life Cycle of a Frog - Observing Metamorphosis with Time-lapse Photography": 1 +"4th Grade English: Exploring Folklore and Myths using Interactive Storytelling": 1 +"7th Grade Physical Education: Understanding Sports Ethics and Fair Play through Role-Playing Games": 1 +"5th Grade Social Studies: Discovering Ancient Greece with VR and Artifact Examination": 1 +"8th Grade Algebra: Solving Quadratic Equations using Graphical Methods": 1 +"4th Grade Health: Learning about Dental Hygiene with 3D Tooth Models": 1 +"3rd Grade History: Exploring Ancient Egyptian Civilization and the Pyramids Construction Techniques": 1 +"5th Grade Social Studies: The French Revolution - The Role of Pamphlets and the Rise of Journalism": 1 +"8th Grade Music: Harmony and Melody - Understanding How Pianists Use Pedals for Dynamic Control ": 1 +"1st Grade Science: Identifying Bird Species using Binoculars, Field Guides and Mobile Apps": 1 +"Incorporating Virtual Reality in Learning About Space and Planets in 3rd Grade Astronomy ": 1 +"4th Grade Science: Observing Plant Growth and Photosynthesis using Microscopes and Time-lapse Photography": 1 +"Second Grade Elementary Computing: Introduction to Coding with Scratch and Code.org": 1 +"3rd Grade Mathematics: Understanding Fractions and Decimals through Money and Baking Activities": 1 +"2nd Grade Interactive Geography: Exploring the Great Barrier Reef through Augmented Reality Scuba Dives": 1 +"7th Grade Science: Understanding Volcanic Eruptions and Earthquakes through Seismic Wave Simulations": 1 +"2nd Grade Science: Exploring Plant Life Cycles with Interactive 3D Models": 1 +"5th Grade Geography: Unraveling the Secrets of the Sahara Desert through Satellite Imaging": 1 +"4th Grade History: Investigating Ancient Rome through the Evolution of the Aqueduct": 1 +"1st Grade Science: Understanding Animal Habitats through Augmented Reality": 1 +"6th Grade Literature: Deciphering Themes in Classic Novels with AI Text Analysis": 1 +"3rd Grade Science: A Deep Dive into Oceanic Zones using Virtual Reality": 1 +"6th Grade History: The Role of Silk and Spices in the Ancient Trade Routes": 1 +"4th Grade Science: Exploring the Solar System with 3D Planet Models": 1 +"5th Grade History: Understanding Colonial Times through the Invention of the Printing Press": 1 +"2nd Grade Science: Studying the Life Cycle of Butterflies using Time-Lapse Videos": 1 +"6th Grade Science: Exploring Ecosystems with Augmented Reality and Interactive Activities": 1 +"2nd Grade Language Arts: Decoding Phonics and Learning to Read with Flashcards": 1 +"8th Grade English Literature: Unveiling Metaphors in Shakespeare’s Plays using Interactive Theatre and Discussion": 1 +"3rd Grade Social Studies: The Ancient Egyptians, Their Hieroglyphs and Understanding of Mathematics": 1 +"1st Grade Art: Introduction to Shapes and Colors with Paints and Collage": 1 +"4th Grade Geography: Discovering World Landforms using Virtual Reality and Interactive Maps": 1 +"5th Grade Mathematics: Advanced Arithmetic and Problem Solving with Number Lines and Manipulatives": 1 +"6th Grade History: Uncovering the Middle Ages with Interactive Timelines and Role-Play": 1 +"7th Grade Physical Education: Intermediate Soccer Techniques and Tactics with Field Practice": 1 +"2nd Grade Science: Understanding the Life Cycle of Butterflies with Live Observations and Craft Activities": 1 +"5th Grade Biology: Understanding Photosynthesis through Augmented Reality on Google Glass": 1 +"8th Grade Algebra: Grasping Linear Equations with Digital Math Manipulatives & Graphical Visualization": 1 +"2nd Grade Introduction to Weather: Learning about Cloud Formations using Augmented Reality": 1 +"Exploring Imagery in Maya Angelou’s ’I Know Why the Caged Bird Sings’ with Interactive Whiteboards and Digital Learning Tools in 8th Grade Language Arts: 10 In-depth Approaches": 1 +"Deciphering Cryptography: An 8th Grade Math Course on Code Breaking and the Concept of Prime Numbers": 1 +"2nd Grade Music: Exploring Melodies and Harmonies with Digital Music Creation Tools": 1 +"5th Grade World History: The Renaissance - Impact of the Printing Press": 1 +"5th Grade Geography: Immersive Learning of Asian Geography through VR Technology and Virtual Reality Cultural Tours": 1 +"Eighth Grade Archaeology: Examination of the Aztec Civilization using Digital Reconstruction Techniques": 1 +"7th Grade Chemistry: Understanding Atomic Structure Through Interactive Molecule Models": 1 +"7th Grade Art: Sculpting Basics and 3D Modeling Using Tinkercad": 1 +"5th Grade Social Studies: Exploring Indigenous Cultures through Virtual Field Trips": 1 +"2nd Grade Music: Understanding Pitch and Harmony with Fun Piano Apps": 1 +"4th Grade Health: Learning About Physical Fitness through Virtual Reality Sports Games": 1 +"10th Grade Art: Mastering Oil Painting Techniques and the Use of Palette Knives": 1 +"10th Grade Language Arts: Implementing Google Docs for Collaborative Analysis of Orwell’s Novels": 1 +"7th Grade Science: Photosynthesis and Chromatography: A Detailed Study of Plant Life and Cell Functions": 1 +"2nd Grade Language Arts: Improving Reading Skills with Interactive E-books on Tablet Devices": 1 +"2nd Grade Environmental Studies: Investigating Local Bird Species using Telescopes and Bird Identification Apps": 1 +"5th Grade History: The Middle Ages - Understanding the Role of Castles in Medieval Warfare": 1 +"4th Grade Physical Education: Enhancing Coordination and Balance with Yoga Apps": 1 +"8th Grade Geometry: Understanding Patterns in Nature using Fractal Geometry": 1 +"5th Grade’s Adventure in Geology: Exploring Earth’s Layers through Virtual Reality": 1 +"9th Grade History: The Renaissance Era - Influence of Humanism": 1 +"6th Grade Language Arts: Decoding Symbolism and Allegory in Fairy Tales": 1 +"Green Solution 5: Hydroponics - An Eco-friendly Approach to Urban Farming": 1 +"3rd Grade Arts: Understanding Proportions through Cartoon Drawing": 1 +"11th Grade Literature: The Role of Artificial Intelligence in Dystopian Fiction": 1 +"4th Grade Ecology: Interactive Learning about Food Chains with Augmented Reality Games": 1 +"2nd Grade Art: Creating Textures and Patterns with Watercolor Paints": 1 +"5th Grade Literature: Exploring Fables and Folklore with Epic! and Interactive Storytelling": 1 +"Understanding Multiplication in 3rd Grade Mathematics using Virtual Manipulatives on DreamBox Learning": 1 +"Enhancing 5th Grade Division Skills with Prodigy: An Emphasis on Fun and Engaging Math Games": 1 +"Physical Education for 10th Grade: Understanding the Importance of Cardiovascular Health with Heart Monitors and Aerobic Exercises": 1 +"7th Grade Music: Unveiling Beethoven’s Symphony Through Music Notation Software like Finale and GarageBand": 1 +"9th Grade Biology: Investigating Photosynthesis and Cell Respiration using Virtual Labs in Advanced Botany": 1 +"3rd Grade: Learning about Climate Zones with Interactive Maps using Google Earth in Geography": 1 +"Sound Design in 9th Grade Music: A Course on FL Studio and MIDI Keyboard Music Creation": 1 +"8th Grade Art: Architectural Landscapes Drawing using CAD Software and Perspective Theory": 1 +"6th Grade History: Exploring Ancient Egypt with Hieroglyphics and Papyrus Making": 1 +"7th Grade Biology: Exploring Plant Cells using Microscopy and Interactive 3D Modelling": 1 +"9th Grade American Literature: Analyzing the Civil War Era through the Lens of Uncle Tom’s Cabin with Digital Humanities Tools": 1 +"Physics 101: Understanding the Concepts of Thermodynamics with Interactive Simulations and Arduino Microcontrollers": 1 +"Kindergarten Reading: Journeying through Fairy Tales with Augmented Reality Technology": 1 +"5th Grade Physical Education: Soccer Techniques and Strategies with Motion Tracking Technology": 1 +"3rd Grade Geography: Navigating the Continents using Google Earth and Virtual Reality Exploration": 1 +"2nd Grade French: Accelerating Language Acquisition with Duolingo, Kahoot! Games, and Flipgrid Video Responses": 1 +"10th Grade History: The Impact of the Industrial Revolution: A Study of Technological Advancements and Societal Changes": 1 +"1st Grade Mandarin: Engaging in Language Learning with FluentU: 10 Engaging Learning Strategies": 1 +"3rd Grade Mathematics: Multiplication and Division Mastery using Base Ten Blocks and the Area Model Method": 1 +"3rd Grade Music: Exploring Melodies with Recorders and GarageBand App": 1 +"7th Grade Physics: Understanding Kinematics through Accelerometer Experiments": 1 +"6th Grade Literature: Interpreting Symbolism in Prose using Book Creator and Seesaw": 1 +"4th Grade Math: Mastering Geometry through Smartboard Puzzles": 1 +"6th Grade English: Improving Grammar Skills through Interactive Online Quizzes": 1 +"The Impact of the Industrial Revolution on Society: A Detailed Study of Victorian Era Workhouses in 3rd Grade History": 1 +"Optimizing 7th Grade Basketball Shooting Technique with Smart Ball and Motion Analysis: 12 Essential Tips": 1 +"10th Grade Chemistry: Exploring Chemical Reactions with Virtual Lab Simulations": 1 +"2nd Grade French: Boosting Vocabulary with Duolingo, Google Translate, and Rosetta Stone: 15 Creative Methods": 1 +"4th Grade Math: Fun Learning of Addition and Subtraction using Math Blaster Game": 1 +"2nd Grade Physical Education: Basics of Soccer: Understanding Ball Control": 1 +"5th Grade Social Studies: Maya Civilizations and the Significance of Glyphs": 1 +"The Influence of Catapults and Wheelbarrows in the Construction of Medieval Castles: A 7th Grade History Course": 1 +"1st Grade Art: Exploring Textures and Patterns with KidPix Software": 1 +"4th Grade Music: Understanding Tempo and Harmony with Piano and Orff Approach": 1 +"2nd Grade Art: Exploring Animals and Landscapes through Digital Paint Programs": 1 +"Medieval Castles and the Role of Mortise and Tenon Joints: A 7th Grade History Lesson": 1 +"7th Grade History: Medieval Castles and the Importance of Dovetail Joinery Techniques with Emphasis on the Use of Mallets": 1 +"4th Grade Science: Investigating Food Chains and Life Cycles Through Pond Water Examination Using Dip Nets": 1 +"3rd Grade Art: Creating Landscape Collages with Recycled Materials.": 1 +"7th Grade Art: Exploring Texture in Collage using Mixed Media Techniques": 1 +"10th Grade Physical Education: Boosting Basketball Skills through Motion Capture Technology": 1 +"3rd Grade History: Unraveling Ancient Egypt with Virtual Reality and 3D Printing": 1 +"First Grade Social Studies: Understanding Neighborhood Dynamics through Interactive Mapping Software": 1 +"1st Grade Mathematics: Mastering Addition through Fun Math Games App": 1 +"1st Grade Science: Discovering Plant Growth Stages using Augmented Reality Models": 1 +"3rd Grade Science: Beach Ecosystem Exploration and Species Identification with Digital Field Guides": 1 +"5th Grade History: Investigating the Civil War through Historical Reenactment Videos": 1 +"6th Grade Mathematics: Solving Equations using Algebra Tiles in Interactive Whiteboard Sessions": 1 +"6th Grade Mathematics: Exploring Geometry Concepts with Geoboard App and Virtual Reality in Classroom Learning": 1 +"6th Grade Biology: Understanding Marine Life through Virtual Aquariums": 1 +"7th Grade Literature: Exploring Poetry and Prose using Advanced Reading Comprehension Software": 1 +"3rd Grade Social Studies: Traveling through Ancient Egypt with Virtual Reality": 1 +"9th Grade Physics: The Influence of Newton’s Laws on Modern Physics: A Comprehensive Study": 1 +"6th Grade Earth Science: Exploring Volcanoes and Earthquakes using Interactive Simulation Tools": 1 +"5th Grade History: The Role of the Cotton Gin in the Industrial Revolution: A Deep Dive into 10 Key Moments": 1 +"2nd Grade Mathematics: Learning Shapes and Numbers through 3D Printing": 1 +"7th Grade Geography: Discovering the World’s Biomes with Interactive Mapping Software": 1 +"8th Grade Music: Composition and Harmony through Digital Audio Workstations": 1 +"Geometry for 5th Graders: A Study of Polygons and Their Properties.": 1 +"6th Grade Geography: Exploring World Landforms with Google Earth VR and Interactive Topography Maps": 1 +"3rd Grade Health and Wellness: Fundamentals of Yoga: Postures and Breathing Techniques": 1 +"8th Grade Art: Advanced Sculpting Techniques - Experimenting with Clay and Plaster": 1 +"1st Grade Mathematics: Understanding Number Sense and Counting with Interactive Number Lines": 1 +"6th Grade Physical Education: Basic Gymnastics Skills using Balance Beams and Floor Mats": 1 +"9th Grade Music: Understanding Rhythm and Tempo through Percussion Instruments": 1 +"7th Grade Mathematics: Introduction to Geometry using Protractors and Compasses": 1 +"8th Grade Social Studies: Examining Medieval Europe through the Analysis of Castle Architecture": 1 +"9th Grade Astronomy: Exploring the Constellations and their Mythological Origins with Planetarium Software": 1 +"12th Grade History: The Influence of the Printing Press on the Reformation Movements": 1 +"3rd Grade Language Arts: Enhancing Reading Comprehension with Interactive Storybooks": 1 +"5th Grade Science: Understanding Weather Patterns using Real-Time Data and Predictive Models": 1 +"2nd Grade Environmental Studies: Discovering Urban Ecosystems through Bird Watching and Local Park Exploration": 1 +"3rd Grade Music: Rhythm and Tempo: Exploring Music with Handheld Percussion Instruments": 1 +"7th Grade Mathematics: Geometry in Action with Virtual Reality Experiences": 1 +"Basketball: Improving 7th Grade Defensive Strategies with Motion-Sensor Technology and 5 Key Tactics": 1 +"5th Grade Art: Boosting Imagination with Watercolor, Charcoal, Digital Sculpting, and Collage Techniques": 1 +"7th Grade History: The Role of Inventions during the Industrial Revolution": 1 +"5th Grade Social Studies: The Influence of Ancient Trade Routes on Modern Global Economy": 1 +"7th Grade Physical Education: Basics of Soccer Techniques with Agility Ladders and Training Balls": 1 +"8th Grade Computer Science: Web Design Basics: Building Websites using HTML and CSS": 1 +"11th Grade Drama: Theatre of Emotions - Understanding the Role of Directors in Evoking Performances": 1 +"4th Grade Geography: Discovering World Landforms with Augmented Reality and Satellite Imagery": 1 +"3rd Grade Math: Ancient Egyptian Mathematics: The Rhind Papyrus and the Development of Fractions": 1 +"12th Grade Photography: Mastering Digital Imagery with Adobe Photoshop’s Layer Masking Technique": 1 +"Soccer: Strategies and Skills - A Comprehensive Overview of Offensive Plays in 10th Grade Physical Education": 1 +"5th Grade English: Microsoft Teams and OneNote for Enhancing Reading Comprehension through Interactive Storytelling": 1 +"8th Grade Geometry: The Puzzle of Shapes and Angles - Navigating the World of Polygons and Pythagoras": 1 +"7th Grade Earth Science: The Wonders of Weather - Understanding Atmospheric Phenomena": 1 +"5th Grade Social Studies: Reliving the Civil Rights Movement with Oculus Quest VR and Oral History Recordings": 1 +"3rd Grade Mathematics: Understanding Fractions through LEGO Blocks": 1 +"10th Grade History: The French Revolution and its Impact on Modern Politics": 1 +"5th Grade History: Uncovering the Secrets of Ancient Egypt through Hieroglyphic Analysis": 1 +"5th Grade History: The Impact of the Steam Engine on the Industrial Revolution": 1 +"3rd Grade Mathematics: Engaging with Multiplication through Virtual Reality Tools": 1 +"7th Grade Science: An Exploration of Human Anatomy through Virtual Dissection": 1 +"2nd Grade Art: Introduction to Color Theory with Watercolors": 1 +"4th Grade Music: Discovering Harmony with Interactive Online Instruments": 1 +"8th Grade Physical Education: Soccer, Strategy and Performance Analysis with Sports Data": 1 +"Global Cultures: An 11th Grade Examination of the Influence of Silk Road Trade Routes": 1 +"5th Grade Social Studies: Understanding Cultures through Virtual Reality Tours": 1 +"2nd Grade English: Enhancing Vocabulary through Interactive Storytelling Apps": 1 +"7th Grade Mathematics: Mastering Geometric Shapes using 3D Modeling Software": 1 +"2nd Grade Science: Discovering the Animal Kingdom through Augmented Reality Experiences": 1 +"8th Grade Language Arts: Analyzing Environmental Themes in Contemporary Literature": 1 +"Kindergarten Music: Understanding Rhythm Basics with Shakers and Music Maker Jam": 1 +"4th Grade Mathematics: Grasping Division Concepts through Gamified Learning Platforms": 1 +"5th Grade Art: Exploring Texture and Pattern through Paper Mosaic and Pastel Techniques": 1 +"3rd Grade History: Learning about National Monuments through Virtual Field Trips": 1 +"6th Grade Art: Creating Digital Collages: Abstract Expressionism Inspired Artwork": 1 +"3rd Grade Geography: Learning Global Cultures through Interactive Map Puzzles": 1 +"5th Grade Art: Understanding Color Theory and Composition using Digital Painting": 1 +"6th Grade Mathematics: Discovering Probability and Statistics with Fun Card Games": 1 +"8th Grade History: Exploring the Renaissance through Virtual Tours and Augmented Reality": 1 +"3rd Grade Music: Introduction to Tempo and Dynamics Using the Keyboard": 1 +"7th Grade Biology: Investigating Plant Life Cycles with Timelapse Photography and Microscopes": 1 +"9th Grade Chemistry: The Role of Elements in Everyday Life - A Deep Dive into Atomic Theory with Periodic Table": 1 +"4th Grade Introduction to Geometry: Decoding Shapes and Patterns through Origami": 1 +"Interactive Education: Teaching Ancient Egyptian Civilization in 5th Grade Social Studies through Virtual Reality and 3D Imaging": 1 +"7th Grade Physics: Understanding the Principles of Gravity and Motion with Roller Coaster Simulations": 1 +"8th Grade Physics: Understanding Laws of Motion through Virtual Reality Experiments": 1 +"Interactive 9th Grade Biology: Exploring Human Anatomy with 3D Body Scanning": 1 +"5th Grade English Literature: Discovering Themes in Fairy Tales through Dramatization and Virtual Reality": 1 +"2nd Grade Art: Learning Color Theory through Digital Art and Augmented Reality using Procreate": 1 +"7th Grade World Geography: Exploring Earth’s Biomes through Virtual Field Trips and Interactive Mapping": 1 +"4th Grade Social Studies: Discovering Ancient Greece through Pottery Making and Mythological Storytelling": 1 +"7th Grade Music: Understanding Rhythm and Melody through GarageBand and Interactive Sheet Music": 1 +"9th Grade Computer Science: Discovering Coding Basics and Game Development with Scratch": 1 +"Opera History: Exploring Verdi’s Impact on Dramatic Singing through Performance Analysis in 7th Grade Music Class": 1 +"11th Grade Digital Media: Mastering Character Design with Sketchbook’s Drawing Tools & Adobe Illustrator.": 1 +"5th Grade Science: Exploring Ecosystems: Understanding Biodiversity through Virtual Field Trips": 1 +"7th Grade Physical Education: Basketball and Leadership: Understanding Game Strategies and Biometrics": 1 +"11th Grade Chemistry: The Atom and its Properties: Exploring Chemical Reactions": 1 +"8th Grade History: Immersive Learning about Ancient Rome using Oculus Rift and Google Cardboard": 1 +"4th Grade Art: Understanding Color Theory through Digital Painting ": 1 +"10th Grade Health Education: Comprehensive Wellness using Yoga and Pilates ": 1 +"1st Grade Mathematics: Introduction to Numbers using Interactive Whiteboard Games": 1 +"4th Grade Literature: Exploring Poetry with Audiobooks ": 1 +"10th Grade Physical Education: Fundamentals of Team Sports - The Science behind Volleyball": 1 +"8th Grade Music: Understanding Beethoven’s Symphonies through the Use of Music Production Software": 1 +"4th Grade Music: Exploring Rhythm with Bongos and Drumsticks": 1 +"1st Grade Art: Basic Painting Techniques using Watercolors": 1 +"3rd Grade Language Arts: Enhancing Vocabulary through Interactive Games and Puzzles": 1 +"4th Grade Science: Discovering the Lifecycle of Butterflies with 3D Models": 1 +"2nd Grade Environmental Studies: Vibrant Ecosystems - An Overview of Marine Life": 1 +"3rd Grade Mathematics: Grasping Fractions with Visual Aids and Manipulatives": 1 +"1st Grade Physical Education: The Basics of Soccer with Fun Drills": 1 +"4th Grade History: Understanding the Ancient Egyptians through Interactive Activities": 1 +"2nd Grade Geography: Navigating the World Map with Virtual Reality": 1 +"5th Grade Music: Introduction to the Recorder - Mastering Notes and Scales": 1 +"7th Grade Science: Unraveling the Mysteries of Photosynthesis through Interactive Virtual Labs": 1 +"8th Grade Literature: Decoding the Symbolism in Shakespeare’s Plays using Digital Annotation Tools": 1 +"8th Grade Art: Exploring the Techniques of Impressionism through Acrylic Painting using Palette Knives, Brushes, and Easel": 1 +"6th Grade Technology: Understanding the Basics of Website Design with HTML and CSS": 1 +"1st Grade Science: Learning about the Solar System through Hands-on Craft Activities": 1 +"4th Grade History: Ancient Civilizations: Exploring the Pyramids of Egypt through Virtual Reality": 1 +"6th Grade English: Developing Storytelling Skills through Stop Motion Animation": 1 +"2nd Grade English: Improving Vocabulary with Interactive Digital Flashcards": 1 +"9th Grade World History: Understanding the Industrial Revolution through the Perspective of Textile Workers": 1 +"5th Grade Geography: Exploring World Cultures with Interactive Digital Maps": 1 +"7th Grade Science: Exploring Ecosystems - The Role of Pollinators in Biodiversity": 1 +"Advanced High School Photography: Capturing Emotion through Black and White Imagery": 1 +"9th Grade Physics: Grasping Newton’s Laws through Hands-on Experiments": 1 +"3rd Grade Literature: Engaging with Mythology via Interactive E-books": 1 +"Pre-school Community Studies: An Introduction to the Roles of Firefighters and Fire Trucks": 1 +"2nd Grade Art: Learning Shapes and Forms with Clay Sculpting": 1 +"7th Grade Mathematics: Understanding Ratios through Cooking Measurements and Recipes": 1 +"4th Grade Art: Exploring Cubism with Origami and Collage Techniques": 1 +"6th Grade History: The Civil Rights Movement - The Importance of the Freedom Riders": 1 +"In-depth 12th Grade Calculus: Decoding Derivatives and Integrals with Graphing Calculators": 1 +"4th Grade Mathematics: Exploring Geometric Shapes through Origami and Virtual Reality using SketchUp": 1 +"2nd Grade French: Engaging Language Learning with Duolingo, Quizlet Flashcards, and Augmented Reality": 1 +"5th Grade Geography: Navigating through African Terrain with Google Earth and Topographic Map Concepts": 1 +"9th Grade Physics: Intermediate Mechanics using Wolfram Mathematica and Simulation Techniques": 1 +"3rd Grade History: Understanding the Impact of the Telegraph on Civil War strategies": 1 +"Global Cultures and the Compass: An 11th Grade Anthropology Course": 1 +"6th Grade English: Google Classroom and Padlet for Enhancing Writing Skills through Collaborative Storytelling": 1 +"1st Grade Science: Exploring Ocean Ecosystems Using Underwater Drone Footage and Holography.": 1 +"7th Grade Social Studies: Freedom of Speech Examination with the Use of Blockchain Technology": 1 +"4th Grade History: The Influence of the Cotton Gin on the Industrial Revolution": 1 +"8th Grade Geography: The Influence of Ocean Currents on Climate Change: An Investigation using Climate Modeling Software": 1 +"2nd Grade Art: Unleashing Creativity through Origami and Digital Illustration Tools ": 1 +"7th Grade Physics: Exploring Newton’s Laws: A Comprehensive Study using Physics Simulation Software ": 1 +"4th Grade Literature: Understanding Symbolism in Children’s Books through Animated Book Reviews ": 1 +"6th Grade Physical Education: Perfecting Soccer Skills with Virtual Reality Training ": 1 +"1st Grade Biology: Discovering Plant Life Cycles and Habitats through Augmented Reality Exploration ": 1 +"9th Grade Geometry: Solving Complex Shapes using Geometric Proofs and 3D Modeling ": 1 +"4th Grade Social Studies: Analyzing Native American Tribes through Virtual Field Trips ": 1 +"11th Grade Chemistry: Unlocking the Mystery of Chemical Reactions using Interactive Lab Simulations ": 1 +"8th Grade French: Mastering Verb Conjugation through Gamified Language Learning Software": 1 +"5th Grade Science: Understanding Photosynthesis through Virtual Plant Growing Simulations": 1 +"6th Grade Literature: Analyzing Character Development in Greek Mythology using Digital Storyboards": 1 +"4th Grade Math: Grasping the Basics of Geometry through Minecraft and 3D Printing": 1 +"3rd Grade Geography: Exploring the Amazon Rainforest using Virtual Reality and Interactive Maps": 1 +"8th Grade History: Unveiling the Renaissance Era through Virtual Art Galleries and Digital Quizzes": 1 +"5th Grade Music: Discovering Classical Compositions using Audacity and MIDI Keyboards": 1 +"7th Grade Physical Education: Fitness Understanding through Heart Rate Monitoring and Activity Trackers": 1 +"2nd Grade Language Arts: Building Vocabulary with Interactive Word Games and Tablets": 1 +"3rd Grade Mathematics: Learning Addition and Subtraction using Math Playground and iPads": 1 +"4th Grade World Cultures: Exploring Ancient Egypt using Google Earth and Virtual Reality Headsets.": 1 +"5th Grade Science: Exploring Botany with Augmented Reality Technology": 1 +"6th Grade Social Studies: The Civil War Period - The Impact of Railroads": 1 +"1st Grade Math: Understanding Triangles and Rectangles through Lego Building": 1 +"4th Grade’s Adventure in Oceanography: Discovering Marine Life with Virtual Tours": 1 +"1st Grade Art: Color Theory Explored with Adobe Color Wheel": 1 +"Enhancing Vocabulary Skills in 4th Grade English with Audiobooks": 1 +"5th Grade English: Poetry and Rhymes Explored with YouTube Videos and Audacity": 1 +"6th Grade Music: Understanding Mozart’s Compositions with Digital Pianos": 1 +"Fifth Grade Geography: The Role of Rivers in Ancient Civilizations": 1 +"2nd Grade Physical Education: Basics of Basketball Using Colorful Basketballs": 1 +"3rd Grade Science: Investigating Plant Life Cycles through Hands-On Gardening": 1 +"9th Grade History: The Underground Railroad, Abolitionist Movements, and the Use of Quilts as Secret Codes": 1 +"4th Grade Mathematics: Exploring Geometry with Tangram Puzzles, Origami Techniques, and Virtual Reality Tools": 1 +"8th Grade English Language Arts: Analyzing Irony in Mark Twain’s Novels through Interactive eBooks and Online Discussion Forums": 1 +"12th Grade History: The Enlightenment Period: Voltaire and his Influence on Freedom of Speech and Religion": 1 +"3rd Grade Science: Studying Animal Migration using Interactive Globes, Satellite Imagery, and Data Visualization Apps": 1 +"7th Grade Language Arts: Enhancing Vocabulary Building using Flashcard Apps and Online Word Games": 1 +"5th Grade Mathematics: Conquering Multiplication and Division through Everyday Shopping Scenarios": 1 +"8th Grade History: Unraveling the Mysteries of Mayan Numerical System and Calendars": 1 +"7th Grade History: The Impact of the Silk Road on Early Trade and the Evolution of the Compass in Navigation": 1 +"2nd Grade Science: Introduction to Plant Life and Photosynthesis Using Microscope Observations": 1 +"11th Grade Literature: The Victorian Era - Understanding Symbolism in Literature": 1 +"7th Grade Art: Discovering Modern Artists through the Study of Abstract Paintings": 1 +"1st Grade: Learning Numbers and Letters with Interactive Educational Toys": 1 +"7th Grade Health: Improving Basketball Skills with Motion Analysis and Kinesiology": 1 +"10th Grade Speech and Debate: Enhancing Public Speaking with Rhetorical Techniques": 1 +"9th Grade Tech Ed: Understanding Photoshop Layers and Lightroom for Digital Image Editing with Adobe Creative Cloud": 1 +"4th Grade Math: Mastering Multiplication through Fun Board Games and Online Puzzles": 1 +"9th Grade Drama: Exploring Stage Masks in Theater and Mime": 1 +"10th Grade Physics: Sound Waves and Resonance - The Science behind a Guitar and the Role of Strings": 1 +"5th Grade Mathematics: Understanding Fractions through Interactive Games and Real-World Scenarios": 1 +"2nd Grade Science: Exploring The Life Cycle of Plants using Time-Lapse Photography and Augmented Reality": 1 +"7th Grade History: Investigating the Impact of the Industrial Revolution through Primary Sources and Virtual Field Trips": 1 +"8th Grade English: Enhancing Narrative Writing Skills through Podcast Creation": 1 +"4th Grade Geography: Learning about World Cultures through Google Earth and Virtual Reality": 1 +"6th Grade Art: Discovering Styles and Techniques in Digital Painting Using Procreate": 1 +"1st Grade Physical Education: Developing Motor Skills through Dance and Movement Games": 1 +"3rd Grade Math: Understanding Geometry through Origami and Tinkercad": 1 +"9th Grade Biology: Exploring Human Anatomy using Virtual Reality and 3D Printing": 1 +"8th Grade Music: Creating Melodies and Harmonies in Soundtrap": 1 +"5th Grade History: Understanding the Civil War through Interactive Role-Play": 1 +"7th Grade Mathematics: Mastering Algebraic Expressions with Online Math Games": 1 +"5th Grade Science: Exploring Plant Photosynthesis using Microscopic Observation": 1 +"8th Grade English: Enhancing Writing Skills through Blogs and Podcasts": 1 +"2nd Grade Art: Exploring Colors and Shapes with Collage Art": 1 +"9th Grade Physics: Understanding Gravity and Motion through Experimentation": 1 +"Our Solar System: A 3rd Grade Science Course Exploring Planets and Stars using Virtual Reality": 1 +"10th Grade Health: Understanding Nutrition and Diet through Interactive Apps": 1 +"Ocean Conservation: A 5th Grade Environmental Science Course on Marine Life Protection": 1 +"1st Grade Mathematics: Learning Addition and Subtraction using Fun Number Puzzles": 1 +"6th Grade Science: Exploring the Solar System with Virtual Reality and NASA’s Eyes App": 1 +"3rd Grade Art: Learning Still Life Drawing: An Introduction to Pastel Techniques": 1 +"Advanced 2nd Grade Music: Discovering Rhythms and Melodies through Interactive Musical Instruments Apps": 1 +"8th Grade Geography: Exploring African Landscapes and Wildlife Through VR using Google Expeditions and Oculus Quest": 1 +"4th Grade Mathematics: Understanding Fractions and Decimals using the Math Blaster Game": 1 +"7th Grade History: Interactive Study of Medieval Europe with Minecraft: Education Edition": 1 +"5th Grade Environmental Studies: Study of Local Weather Patterns and Climate using Weather Station Kits and Data Analysis Apps": 1 +"1st Grade Language Arts: Storytelling and Creative Writing using Storybird and Handwriting Worksheets": 1 +"Advanced 6th Grade Dance: Learning Contemporary Dance Steps with Augmented Reality and Dance Reality App": 1 +"9th Grade Social Studies: Exploring Ancient Civilizations of South America through Virtual Field Trips using Google Cardboard VR.": 1 +"2nd Grade Biology: Discovering Animal Habitats with Interactive Digital Maps": 1 +"4th Grade Physics: Understanding Gravity Concepts through Virtual Simulations": 1 +"2nd Grade English: Enhancing Reading Comprehension using Interactive eBooks and Annotative Apps": 1 +"6th Grade Mathematics: Diving into Geometry with Augmented Reality Tools": 1 +"4th Grade History: Unraveling the Mysteries of Ancient Egypt through Virtual Field Trips": 1 +"3rd Grade Art: Exploring Color Theory with Digital Painting Apps": 1 +"5th Grade Computer Science: Coding Basics with Scratch - Creating Simple Animations": 1 +"Digital Citizenship for 4th Graders: Internet Safety and Privacy using Interactive Online Scenarios": 1 +"6th Grade Music Education: Discovering World Music Genres through Interactive Sound Maps": 1 +"2nd Grade Physical Education: Fun with Dance - Movement Basics with Interactive Dance Apps": 1 +"8th Grade Geography: Understanding Climate Change through Interactive Atlas and Satellite Imagery": 1 +"2nd Grade Music: Introduction to Rhythms and Melodies using Hand Drums and Xylophones": 1 +"7th Grade Literature: Analyzing Symbolism and Imagery in Poetry": 1 +"7th Grade Physical Education: Introduction to Gymnastics and Acrobatics": 1 +"Sustainable Living and Recycling: A 5th Grade Science Course": 1 +"10th Grade Music: Dive into Jazz and Blues - The Evolution of American Music Genres": 1 +"4th Grade History: Unveiling the Secrets of the Mayan Civilization through Augmented Reality and Interactive Timelines": 1 +"4th Grade Art: Pottery Making - Learning Coil and Slab Techniques": 1 +"7th Grade English: Improving Grammar and Punctuation through Interactive Quizzes": 1 +"3rd Grade Science: Studying Plant Life Cycle using Time-Lapse Photography and Microscopic Observation": 1 +"3rd Grade Science: Introduction to Plant Life Cycle and Photosynthesis": 1 +"9th Grade Art: Exploring Digital Illustration with Adobe Photoshop": 1 +"7th Grade Mathematics: Diving into Fractions and Decimals using Interactive Games": 1 +"10th Grade Music: The Evolution of Electronic Dance Music through Ableton Live": 1 +"Mastering Rhythmic Patterns: A 5th Grade Music Class using Online Drumming Apps": 1 +"Exploring the Western United States: 5th Grade Geography with Virtual Reality Tours and 3D Mapping": 1 +"2nd Grade Music: Learning Rhythm Fundamentals with Mini Bongo Drums and Interactive Music Apps": 1 +"7th Grade Mathematics: Unraveling Geometry Concepts with Origami Projects": 1 +"12th Grade Calculus Foundation: Understanding Derivatives and Integration using Desmos": 1 +"8th Grade Music: Composing Harmonies with Digital Audio Workstations and Music Theory Apps": 1 +"8th Grade Mathematics: Exploring Geometry through Origami and CAD Software": 1 +"4th Grade Geography: Learning about Biomes through Virtual Reality Field Trips": 1 +"1st Grade Science: Introduction to Plant Life Cycles using Time-lapse Videos": 1 +"6th Grade Computer Science: An Introduction to Coding using Scratch and Python": 1 +"5th Grade English Literature: Exploring Mystery and Suspense in Short Stories through Reader’s Theater": 1 +"7th Grade Social Studies: The Impact of the Industrial Revolution on American Society": 1 +"3rd Grade Art: Exploring Color Theory through Collage and Digital Art Platforms": 1 +"8th Grade Biology: Investigating Genetics through Punnett Squares and DNA Models": 1 +"4th Grade Mathematics: Understanding Fractions through Real-World Applications and Manipulatives": 1 +"The Importance of Safety Equipment in 6th Grade Science: Understanding Lab Safety through Virtual Reality Simulations": 1 +"4th Grade English: Enhancing Vocabulary Skills with Crossword Puzzles and Digital Dictionaries": 1 +"5th Grade Science: Exploring Ecology with Virtual Field Trips using Augmented Reality": 1 +"3rd Grade Art: Understanding Color Theory with Paint Mixing and Interactive Color Wheel Apps": 1 +"6th Grade Spanish: Immersing in Conversational Skills using VR Headsets and Bilingual Podcasts": 1 +"7th Grade Mathematics: Grasping Decimals and Percentages through Money Management Scenarios": 1 +"5th Grade History: Understanding the Renaissance - The Power of the Printing Press": 1 +"4th Grade Mathematics: Fun with Division: Using Cooking Recipes and Digital Calculators": 1 +"Mastering Geometry with Origami & Virtual Reality in 5th Grade Mathematics: A Hands-on Approach": 1 +"8th Grade Physical Education: Enhancing Soccer Techniques with Cone Drills and Video Feedback": 1 +"1st Grade Music: Discovering Rhythm with Hand Drums and Interactive Metronome Apps": 1 +"6th Grade Geography: Exploring World Landforms using Google Earth VR": 1 +"4th Grade Science: Investigating Plant Photosynthesis with Interactive AR Models": 1 +"2nd Grade Art: Creating Storyboards for Fairytales with Adobe Spark Post": 1 +"7th Grade Health: Examining Nutritional Values with MyFitnessPal App": 1 +"5th Grade Music: Composing Melodies Using Virtual Instruments in Ableton Live": 1 +"3rd Grade Mathematics: Grasping Multiplication Concepts with Prodigy Game and Interactive Whiteboards": 1 +"8th Grade English: Improving Essay Writing Skills via Grammarly and Hemingway Editor": 1 +"1st Grade Science: Discovering Animal Habitats with Augmented Reality Flashcards": 1 +"6th Grade History: Decoding the American Revolution through Interactive Timelines and Virtual Tours": 1 +"4th Grade Geography: Understanding Weather Patterns using WeatherSTEM Curriculum.": 1 +"8th Grade Math: Unveiling the Mysteries of Geometry with 3D Printing and CAD Software": 1 +"10th Grade Biology: A Comprehensive Analysis of Ecosystems using Bioinformatics and GIS Technology": 1 +"4th Grade Physical Education: Building Strength and Coordination through Introductory Gymnastics": 1 +"4th Grade Language Arts: Enhancing Creative Writing Skills with Interactive Storytelling on Twine": 1 +"10th Grade Wellness: Managing Stress and Promoting Mental Health through Mindfulness Practices and Moodpath App": 1 +"1st Grade Music: Discovering Melody and Harmony using Interactive Music Apps and Virtual Instruments": 1 +"Exploring Solar Energy in 6th Grade Science: A Deep Dive into Renewable Resources with Photovoltaic Cells and Solar Panels": 1 +"11th Grade Earth Science: Investigating Geologic Processes using Augmented Reality and Google Earth ": 1 +"7th Grade: Exploring Cultural Diversity in Contemporary World History": 1 +"5th Grade Art: Understanding Composition and Color Theory through Digital Art on Procreate": 1 +"6th Grade Geography: Understanding Topography with Minecraft and Google Earth VR": 1 +"4th Grade Physics: Exploring Simple Machines with Augmented Reality": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Interactive Apps": 1 +"VocabularySpellingCity: Enhancing Reading Comprehension through Interactive Storytelling in 4th Grade English": 1 +"VocabularySpellingCity: Using Gamified Apps to Master Spelling in 1st Grade English": 1 +"8th Grade Basic Physics: Introduction to Electricity and Magnetism with Interactive Simulations": 1 +"3rd Grade Mathematics: Understanding Multiplication with Colorful Arrays and Seesaw Discussion Boards": 1 +"Kindergarten Science: Discovering the Animal Kingdom with Interactive Flashcards": 1 +"1st Grade Language Arts: Creating Narratives using Storybird and Telling Tales Podcasts": 1 +"10th Grade English: Analyzing Classic Literature through Virtual Reality": 1 +"5th Grade Literature: Exploring Folk Tales through Animation Creation with Storyboard That": 1 +"7th Grade Geography: The Great Wall of China and the Art of Defense Strategy": 1 +"1st Grade Math: Learning Shapes and Patterns through Interactive Tablet Games": 1 +"3rd Grade Biology: A Journey through the Human Digestive System using Virtual Reality": 1 +"5th Grade Physics: Understanding the Principles of Magnetism with Hands-on Experiments": 1 +"1st Grade Language Arts: Building Vocabulary with Google Drawings and Digital Flashcards": 1 +"6th Grade Art: Sculpture Making with Recyclable Materials and 3D Printing": 1 +"3rd Grade History: Exploring Native American Cultures through their Artifacts": 1 +"2nd Grade Music: Learning Melody and Pitch with Interactive Keyboard Applications": 1 +"5th Grade Science: The Era of Discovery and the Evolution of the Telescope": 1 +"6th Grade Science: Exploring the Solar System with Virtual Reality Technology": 1 +"4th Grade History: A Comprehensive Study of the American Civil War: The Role of Railroads and Telegraph": 1 +"1st Grade Art: Discovering Color Mixing through Interactive Painting Activities": 1 +"8th Grade Social Studies: Ancient Civilizations: An In-depth Exploration of the Egyptian Pyramids": 1 +"3rd Grade Mathematics: Learning Multiplication through Interactive Games and Activities": 1 +"2nd Grade Music: Introduction to Piano: Understanding Notes and Rhythm": 1 +"5th Grade Health: A Comprehensive Study of Balanced Diet and Exercise: The Importance of Vitamins": 1 +"6th Grade English: Exploring Poetry: Rhyme and Rhythm in the works of Emily Dickinson": 1 +"4th Grade Science: Understanding Weather Patterns through Hands-on Experiments": 1 +"7th Grade Physical Education Course: Basketball Basics: Understanding Rules and Techniques": 1 +"1st Grade Math: Enhancing Numeracy Skills with Abacus and Number Blocks: 10 Fun Methods": 1 +"4th Grade History: Comprehensive Analysis of Medieval Europe using Minecraft Education Edition and Interactive Timelines": 1 +"4th Grade Dance: Learning Global Dance Styles Through Virtual Reality": 1 +"5th Grade Biology: Investigating Plant Photosynthesis with Microscopic Simulation": 1 +"Tenth Grade Film: Discovering Adobe Premiere Pro: Storytelling with Video Editing Techniques": 1 +"2nd Grade Music: Introduction to Rhythm and Beats through Hand Drumming using Interactive Soundboards": 1 +"11th Grade Physics: Quantum Mechanics, Particle Physics and the Double Slit Experiment": 1 +"Third Grade Coding: Developing Basic Programming Skills with Scratch Software": 1 +"2nd Grade Astronomy: Exploring the Solar System through Virtual Reality": 1 +"8th Grade Literature: An Exploration of Shakespeare’s Plays, the Globe Theatre, and the Art of Sonnet Writing in the Elizabethan Era": 1 +"3rd Grade History: Discovering Ancient Cultures Using Virtual Reality": 1 +"2nd Grade Creative Writing: Improving Narrative Skills with Storybird": 1 +"6th Grade Art: Learning Pastel Drawing Techniques with Natural Scenery": 1 +"7th Grade Music: Exploring Sound Production using Audacity and Music Maker Jam for Jazz Improvisation": 1 +"4th Grade Art: Investigating Collage, Oil Painting, Graphic Design and Clay Modelling Techniques": 1 +"10th Grade Chemistry: Understanding Molecular Structures Using 3D Printing Technology": 1 +"Conquering Division: A 3rd Grade Mathematics Course using Coolmath Games": 1 +"7th Grade Music: Grasping Music Composition using Logic Pro X and Cubase with Dorico Notation Software in Jazz Music": 1 +"3rd Grade Geography: Investigating World Landforms with Augmented Reality": 1 +"6th Grade Environmental Studies: Solar Energy and its Impact on Sustainable Living": 1 +"4th Grade Art: The Evolution of Cave Paintings and Introduction to Charcoal Drawing": 1 +"7th Grade Science: The Impact of Pollinators on Ecosystems and Examination of Honeybee Behavior": 1 +"2nd Grade Geography: Exploring the World’s Continents through Interactive Globe Apps": 1 +"10th Grade Literature: Unraveling Symbolism in 19th Century American Novels": 1 +"5th Grade Music: Discovering Melody and Harmony through the Ukulele": 1 +"8th Grade History: The Industrial Revolution’s Impact on Society: Birth of the Factory System": 1 +"4th Grade Science: Understanding Weather Patterns through Homemade Barometers and Wind Vanes": 1 +"7th Grade Art: The Renaissance Era - An Introduction to Fresco Painting": 1 +"5th Grade Language Arts: The Magic of Metaphor: Enhancing Descriptive Writing": 1 +"8th Grade Geography: The Great Migration - Studying Human Settlements using Digital Maps.": 1 +"3rd Grade French: Engaging Vocabulary Lessons with Rosetta Stone and Interactive Games": 1 +"8th Grade Music: Rhythm and Rhyme - The Magic of Harmonics, the Impact of Capo, and the Role of Tremolo on Guitar": 1 +"Learning Subtraction in 1st Grade Mathematics with Mathletics: Engaging with Interactive Puzzles": 1 +"6th Grade Physical Education: Gymnastic Basics: Perfecting the Cartwheel": 1 +"2nd Grade Mathematics: Understanding Division with Number Line Activities": 1 +"10th Grade Health and Fitness: Comprehensive Study of Yoga Poses using Fit3D ProScanner Technology": 1 +"5th Grade Art: Discovering Texture Through Clay Modelling, Sculpting Techniques, and Kiln Firing.": 1 +"5th Grade Language Arts: Dive into Drama - Interpreting Symbolism through Role Play": 1 +"2nd Grade Environmental Studies: Investigating Animal Habitats with Virtual Field Trips": 1 +"4th Grade Environmental Science: Discovering Water Cycles Through Augmented Reality Experiences": 1 +"4th Grade Geography: Discovering the World’s Major Rivers with Virtual Reality Tours": 1 +"3rd Grade Physical Education: Building Motor Skills through Sports-Based Video Games": 1 +"5th Grade Mathematics: Understanding Geometry through 3D Printing and CAD Software": 1 +"9th Grade Chemistry: Exploring Atoms and Molecules with Virtual Lab Experiments": 1 +"2nd Grade English: Building Vocabulary with Interactive Word Games and Storytelling": 1 +"6th Grade History: Ancient Egyptian Civilizations - An In-depth Look at Hieroglyphics and Pyramids": 1 +"7th Grade Science: Investigating Photosynthesis through Augmented Reality": 1 +"8th Grade Literature: Unraveling the Themes in J.K. Rowling’s Harry Potter Series with Podcasts and Interactive Discussion": 1 +"3rd Grade Art: Learning Color Theory and Painting Techniques with Digital Art Applications": 1 +"4th Grade Health: Understanding the Human Body and its Systems through 3D Models and Simulations": 1 +"3rd Grade Science: Exploring Plant Life Cycles with Augmented Reality": 1 +"7th Grade Literature: Journey through Middle Ages Literature using Virtual Reality": 1 +"4th Grade Art: Discovering Renaissance Painters via Interactive Apps": 1 +"8th Grade Geography: Understanding Global Climate Patterns using Data Visualisation": 1 +"1st Grade Music: Introduction to Melodies with Interactive Sound Games": 1 +"11th Grade Music: Delving into Jazz History through Louis Armstrong’s Recordings and Digital Remixing": 1 +"Architectural Basics: Utilising Origami in 1st Grade Art for Introduction to Structural Design": 1 +"8th Grade Physical Education: Basics of Basketball with Shooting and Dribbling Techniques": 1 +"3rd Grade Elementary Music: Exploring Sound Waves via Interactive Music Software": 1 +"7th Grade Physical Education: Essentials of Swimming Using Virtual Reality Instructions": 1 +"8th Grade Biology: Unraveling the Secrets of Photosynthesis and Cellular Respiration": 1 +"3rd Grade Geography: Mapping the World - Understanding Latitude and Longitude through Interactive Globe": 1 +"1st Grade Arithmetic: Discovering Addition and Subtraction with Fun Digital Activities": 1 +"10th Grade Literature: Exploring the Renaissance through Shakespeare’s Plays in Virtual Reality ": 1 +"6th Grade English Language: Delving into Poetry - An Interactive Journey with VR Technology": 1 +"Virtual Reality Journey through the Solar System: A 5th Grade Astronomy Course with Augmented Reality Telescopes": 1 +"8th Grade Physics: Understanding Forces and Motion - An Interactive Experience with Pulleys and Levers": 1 +"6th Grade Physical Education: Harnessing Video Guided Learning for Soccer Dribbling and Shooting Skills": 1 +"Fourth Grade Civics: Discovering the U.S Constitution with the Printing Press": 1 +"3rd Grade Science: Exploring the Wonders of Weather - The Role of Internet in Weather Forecasting": 1 +"5th Grade Chemistry: Mastering the Basics of Matter with Interactive Experiments": 1 +"6th Grade Biology: Studying Plant Photosynthesis and Cellular Respiration Using Biochemical Indicators": 1 +"3rd Grade Art: Discovering the Principles of Color Theory through Watercolor Paintings": 1 +"Third Grade Geography: Journeying Through World Landforms with Google Earth": 1 +"American Civil War: Analyzing the Role of Railroads in 9th Grade Social Studies": 1 +"7th Grade Literature: Delving into Metaphors and Similes in Classical Novels": 1 +"Geometry Basics: Deciphering the Pythagorean Theorem in 10th Grade Mathematics": 1 +"7th Grade Music: Mastering the Basics of Melody Composition with GarageBand": 1 +"3rd Grade Math: Division Mastery with Online Interactive Games": 1 +"3rd Grade Music: Learning the Basics of Harmony and Melody with Music Theory Apps": 1 +"4th Grade Mathematics: Exploring Geometry through Tangrams": 1 +"2nd Grade Science: Unraveling the Rainbow: Investigating Light Refraction with Prisms": 1 +"Kindergarten Music: Introducing Pitch and Volume with Handmade Instruments": 1 +"7th Grade Chemistry: An Introduction to the Periodic Table through Interactive Online Tools": 1 +"8th Grade Art: Architectural Wonders: Building Scale Models with Recyclable Materials": 1 +"4th Grade Science: Delving into Earth’s Layers using 3D Models": 1 +"5th Grade English: Poetry Creation using Visual Imagery and Collaborative Online Platforms": 1 +"3rd Grade Mathematics: Grasping the Concept of Time with Interactive Clocks": 1 +"6th Grade History: The Evolution of Communication: From Smoke Signals to Smartphones": 1 +"2nd Grade English: Understanding Fables and Morals with Animated Storytelling": 1 +"8th Grade Geography: The Impact of Climate Change on Ocean Life and 10 Conservation Strategies": 1 +"2nd Grade Reading: Enhancing Reading Comprehension with Shared Online Books": 1 +"5th Grade Literature: Narrative Techniques and Theme Exploration - A Study on Setting": 1 +"1st Grade Science: An Interactive Introduction to Weather Patterns and Seasons": 1 +"4th Grade Health Education: Understanding Nutrition and Calorie Counting": 1 +"4th Grade Science: Exploring the Solar System through Online Simulations": 1 +"4th Grade Social Studies: The Era of Exploration, the Compass, and the Impact of Gunpowder": 1 +"7th Grade Art: Learning Proportions using Interactive Drawing Tools": 1 +"6th Grade Science: Understanding Photosynthesis Using Interactive Models and the Carbon Cycle": 1 +"3rd Grade Technology: Introduction to Programming Logic using Scratch.": 1 +"3rd Grade Drama: Understanding Facial Expressions through Animated Films": 1 +"7th Grade Sports Science: Enhancing Athletic Performance through Nutritional Studies": 1 +"5th Grade: Discovering Ecosystems using Virtual Reality in Biological Studies": 1 +"6th Grade Music: The History of Rock: From Blues to Punk with Digital Instruments": 1 +"Venturing into Medieval Times: The Role of The Printing Press in 8th Grade History": 1 +"4th Grade History: The Civil War Period - A Study of Cannons": 1 +"2nd Grade Agriculture: Exploring the World of Worm Composting for Organic Gardening": 1 +"1st Grade Experimental Physics: Observing Light Refractions with Prism Experiments for Visual Learning": 1 +"Third Grade Science: Delving into the Oceanic Zones with Underwater Drones": 1 +"3rd Grade Music: Understanding Rhythm through Drums": 1 +"5th Grade English: Improving Composition Techniques with Google Docs Features": 1 +"3rd Grade Astronomy: Fundamentals of Galaxies and Telescope Observations": 1 +"3rd Grade Social Studies: The French Revolution - The Influence of the Guillotine, the Role of the Estates General, and the Spread of Pamphlets": 1 +"3rd Grade Science: Ocean Habitats and the Importance of Coral Reefs": 1 +"1st Grade Art: Mastering Shapes - Grasping the Idea of Perspective": 1 +"10th Grade Health: The Role of Micronutrients in Overall Health - A Deep Dive into Metabolic Pathways with Food Journaling": 1 +"7th Grade Music: The Progression of Jazz Music, the Saxophone, and the Idea of Improvisation in Louis Armstrong’s Compositions": 1 +"3rd Grade Science: Exploring Biomes with Virtual Reality Technology via Tensorflow Machine Learning": 1 +"3rd Grade History: The Significance of the Astrolabe in the Age of Exploration": 1 +"7th Grade Music: The Piano’s Role in the Rise of Monophonic Melody during the Shift from Romantic to Modern Music": 1 +"8th Grade Biology: Understanding Photosynthesis through Augmented Reality Tools": 1 +"11th Grade Literature: Exploring Existentialism in Kafka’s Works using VR Storytelling": 1 +"6th Grade Physical Education: Building Strength and Endurance through Circuit Training": 1 +"8th Grade Art: Discovering Pottery with Clay Modelling Techniques": 1 +"4th Grade Language Arts: Improving Pronunciation through Interactive Phonics Games": 1 +"7th Grade Math: Solving Quadratic Equations using Gamified Learning Apps": 1 +"8th Grade History: Tracing the Civil War through Virtual Field Trips": 1 +"9th Grade Art: Exploring Animation with Basic Coding in Scratch": 1 +"6th Grade Physical Education: Learning Discipline through Martial Arts": 1 +"4th Grade Language Arts: Mastering Similes in Literature with Interactive E-books.": 1 +"7th Grade Mathematics: Understanding Geometry through Origami and 3D Modeling Software": 1 +"9th Grade Social Studies: Tracing Trade Routes: Silk Road and the Impact of Globalization ": 1 +"5th Grade English: Expanding Vocabulary with Context Clues and Digital Word Games": 1 +"6th Grade Science: Investigating Photosynthesis and Respiration using Lab Experiments": 1 +"4th Grade Literature: Adventure into Greek Mythology with Role-Play and Digital Storytelling": 1 +"2nd Grade Geography: Navigating Neighborhoods and Cities using Virtual Reality ": 1 +"11th Grade History: The Evolution of Warfare: A Study of the Impact of Nuclear Technology": 1 +"5th Grade Social Studies: Virtual Tour of Ancient Civilizations using Virtual Reality": 1 +"3rd Grade Social Studies: Understanding Our Town’s History with Augmented Reality Scavenger Hunts": 1 +"6th Grade: Uncovering American History: The Influence of the Telegraph and Communication Technology": 1 +"1st Grade Science: Exploring Weather Patterns with Cloud Identification and Rain Gauges": 1 +"2nd Grade Geography: Understanding Landforms through Interactive Map Exploration": 1 +"4th Grade Mathematics: Grasping Division Concepts using Online Assignments and Math Puzzles": 1 +"Fundamentals of Basketball and Cooperation in 8th Grade Physical Education: Utilizing Heart Rate Monitors": 1 +"10th Grade Political Science: The French Revolution and the Shift in Governance Structures": 1 +"4th Grade Literature: Creating Fairy Tales with Stop Motion Animation using Claymation": 1 +"4th Grade Cultural Studies: Egyptian Hieroglyphics in Ancient Civilizations": 1 +"4th Grade Music: Rhythm and Beat Fundamentals with GarageBand App": 1 +"10th Grade World History: Understanding the Renaissance Through Artistic Expressions": 1 +"Analyzing Narrative Perspectives: An 8th Grade Language Arts Course on Point of View Using The Catcher in The Rye and To Kill a Mockingbird": 1 +"8th Grade Physics: Unraveling Newton’s Laws with Interactive Simulations": 1 +"1st Grade Biology: Discovering Plant Life through Garden-Based Learning": 1 +"6th Grade Art: Exploring Cubism and Collage Techniques": 1 +"5th Grade Geography: Journey Through the Solar System with 3D Models": 1 +"3rd Grade History: Ancient Egypt and the Invention of Hieroglyphs": 1 +"Examining the Impact of Digital Synthesis in Electronic Music: A Course for 12th Grade Music Students": 1 +"8th Grade Music: Delving into Vivaldi’s Four Seasons with Augmented Reality": 1 +"4th Grade English: Navigating through Myths and Legends using Story Maps": 1 +"2nd Grade Music: Introduction to Rhythm through Percussion Instruments": 1 +"6th Grade English: Enhancing Vocabulary Mastery with Synonyms and Antonyms using Interactive Games": 1 +"7th Grade Geography: Understanding Climate Change through the Study of Polar Ice Caps": 1 +"4th Grade History: The Role of Spices in the Age of Exploration": 1 +"12th Grade Chemistry: Exploring Quantum Mechanics through Spectroscopy": 1 +"1st Grade Music: Introduction to Rhythm through Percussion Instruments": 1 +"3rd Grade Life Science: Learning about Photosynthesis with Interactive Plant Models": 1 +"6th Grade Art: Crafting Mosaics with Recycled Materials": 1 +"Broadway Musicals: Studying Sondheim’s Contributions to Modern Theatre in 8th Grade Drama Class": 1 +"9th Grade Music: Discovering Jazz Improvisation through Digital Audio Workstations": 1 +"1st Grade Mathematics: Understanding Addition and Subtraction using Number Lines": 1 +"4th Grade English: Creating Myths and Legends in Multilingual Storytelling": 1 +"3rd Grade Geography: Discovering World Cultures Through Virtual Reality Field Trips": 1 +"2nd Grade Literature: Enhancing Comprehension with Interactive Read-Alouds and Voice Recordings": 1 +"4th Grade Biology: Animal Adaptation: A Deep Dive into Camouflage and Mimicry": 1 +"5th Grade History: The Middle Ages - Understanding the Role of Armor in Medieval Warfare": 1 +"3rd Grade Language Arts: Using the Five-Point Plot Structure to Identify Key Events in Stories": 1 +"1st Grade Music: Introduction to Melody Creation with Xylophones and Music Blocks": 1 +"Kindergarten Art: Discovering Textures and Patterns with Finger Painting": 1 +"3rd Grade Reading: Phonics Mastery through Digital Flashcards and Educational Apps": 1 +"11th Grade Music: Unraveling Beethoven’s Moonlight Sonata with Finale Notation Software, Metronome Use, and Audio Mixing": 1 +"7th Grade Physical Education: Building Endurance and Flexibility through Basic Gymnastics Training": 1 +"3rd Grade Science: Understanding Weather Patterns Through Interactive Experiments": 1 +"6th Grade Music: Exploring Tempo through Playing the Tambourine": 1 +"4th Grade History: Unearthing the Secrets of Medieval Castle Architecture": 1 +"2nd Grade Health: Discovering Nutrition: The Role of Vitamins and Minerals": 1 +"3rd Grade Social Studies: Exploring World Cultures with Augmented Reality Technology": 1 +"7th Grade Literature: The Influence of the Printing Press on Shakespeare’s Work": 1 +"2nd Grade Music: Enhancing Rhythm Understanding with Recorders and Drums": 1 +"5th Grade English: Storytelling Techniques: The Use of Metaphor": 1 +"Google Classroom and Quizlet for Fourth Grade Mathematics: Grasping Geometry through Virtual Puzzle Solving": 1 +"7th Grade Environmental Studies: Solar Energy: Its Potential Impact and 10 Sustainable Development Techniques": 1 +"2nd Grade Mathematics: Exploring Addition and Subtraction through Interactive Storytelling": 1 +"3rd Grade History: Discovering the Age of Exploration through Maritime Maps and Compasses": 1 +"4th Grade Social Studies: Examining the Evolution of Transportation Systems through Time-Lapse Videos": 1 +"1st Grade Language Arts: Developing Vocabulary through Interactive Picture Books": 1 +"5th Grade Science: Understanding the Human Anatomy through Virtual Reality Dissections": 1 +"4th Grade Geography: Studying the World’s Biomes through Augmented Reality": 1 +"6th Grade Art: Exploring Three-Dimensional Shapes in Sculpture using Clay and Wire": 1 +"2nd Grade Social Studies: Learning about Community Helpers through Role-Play Activities": 1 +"3rd Grade Science: Introduction to the Solar System through Planetarium Field Trips": 1 +"1st Grade History: Understanding Seasonal Festivals and Celebrations around the World through Cultural Artifacts.": 1 +"2nd Grade Geography: Exploring Landforms and Bodies of Water through Interactive Maps": 1 +"8th Grade Music: Discovering Melody and Harmony through Digital Audio Workstations": 1 +"12th Grade Biology: The Role of Stem Cells in Regenerative Medicine": 1 +"6th Grade Physics: Understanding Gravity through Virtual Reality on Oculus Rift": 1 +"Sustainability for Second Graders: Renewable Energy and Solar Panel Projects with a Focus on Solar Radiation": 1 +"4th Grade Science: Exploring Animal Adaptations through Hands-on Activities": 1 +"Learning Division in 4th Grade Mathematics using Interactive Games on Prodigy Math": 1 +"Crop Rotation and Soil Health: An Introduction to Organic Farming Techniques for 3rd Grade Environmental Studies": 1 +"8th Grade Science: Exploring Space and Stellar Evolution with Planetarium Software and 10 Observation Activities": 1 +"8th Grade History: Understanding the Age of Explorations: Voyages and Discoveries in the New World": 1 +"3rd Grade History: The Great Wall of China: Understanding Ancient Defense Systems ": 1 +"1st Grade Fitness: Hurdling Techniques: Building Agility and Coordination through Obstacle Courses ": 1 +"Third Grade Science: Exploring Geology: A Hands-on Approach to Erosion and Weathering ": 1 +"Sixth Grade Social Studies: The Industrial Revolution and the Rise of Factory Work ": 1 +"3rd Grade Science: An Introduction to Animal Habitats: Observing Ant Farms ": 1 +"5th Grade Science: Light and Shadows: A Fun Approach to Understanding Optics ": 1 +"1st Grade Language Arts: Enhancing Vocabulary Skills through Interactive Storytelling Apps ": 1 +"8th Grade History: The Importance of Telegraph in the Civil War ": 1 +"7th Grade Music: Exploring Rhythm and Tempo through Drumming Software ": 1 +"3rd Grade Social Studies: The Influence of Railroads on the Expansion of the West": 1 +"6th Grade Art: Exploring Texture and Form through Clay Sculpting and Ceramic Techniques": 1 +"3rd Grade Science: Understanding Photosynthesis through Interactive Plant Growing Experiments": 1 +"2nd Grade Music: Rhythmic Journey - Exploring Beat and Tempo with Hand Percussion Instruments": 1 +"7th Grade History: Civilizations of the Ancient World - Unraveling the Mysteries of the Pyramids": 1 +"4th Grade Geography: Navigating Oceans and Continents through Virtual Reality Expeditions": 1 +"1st Grade Mathematics: Introduction to Basic Fractions Using Real-Life Objects and Fun Activities": 1 +"3rd Grade Physical Education: Incorporating Yoga and Meditation for Better Concentration and Physical Fitness": 1 +"5th Grade Language Arts: Enhancing Vocabulary Skills through Interactive Storytelling and Word Games": 1 +"6th Grade Science: Exploring the Solar System with 3D Models and Virtual Planetarium": 1 +"2nd Grade Art: Discovering Animal Patterns and Textures using Finger Painting and Collage Techniques": 1 +"3rd Grade Geography: Exploring Continents and Oceans through Interactive Mapping": 1 +"5th Grade Music: Composing with GarageBand: An Introduction to Digital Music Creation": 1 +"2nd Grade Environmental Studies: Understanding Seasons through Temperature Tracking ": 1 +"3rd Grade Language Arts: Unveiling Character Traits in Short Stories": 1 +"3rd Grade English: Adventure in Narration: Building and Sharing Tales through Puppetry ": 1 +"Kindergarten Health: Learning about Nutrition through Fruit and Vegetable Art Projects": 1 +"Kindergarten Music: Exploring Sound and Rhythm with Recycled Percussion Instruments": 1 +"2nd Grade Mathematics: Understanding Addition through Virtual Manipulatives and AR": 1 +"5th Grade History: Journey into Ancient Civilizations through Virtual Reality ": 1 +"1st Grade Mathematics: Boosting Subtraction Skills using Math Monster App": 1 +"7th Grade Biology: Discovering Cell Structures and Functions through Microscopic Exploration": 1 +"5th Grade History: Learning about American Revolution through Role-Play and Historical Documents": 1 +"4th Grade Geography: Understanding the World’s Major Rivers and Mountains using Interactive 3D Maps": 1 +"3rd Grade Arts: Exploring Colors and Textures with Paper Mache and Collage Techniques": 1 +"6th Grade English: Harnessing Creativity through Poetry: Rhyme, Rhythm, and Figurative Language": 1 +"4th Grade Science: Investigating Weather Patterns and Climate Zones with Virtual Field Trips": 1 +"2nd Grade Physical Education: Building Balance and Flexibility with Yoga and Gymnastics": 1 +"5th Grade Music: Introduction to Reading Sheet Music and Playing the Recorder": 1 +"7th Grade Mathematics: Diving into Geometry: Understanding Shapes and Angles with Interactive Tools": 1 +"3rd Grade Social Studies: Journey through Ancient China: Dynasties, Inventions, and The Great Wall": 1 +"6th Grade Algebra: Understanding Variables and Equations using Online Puzzle Games": 1 +"8th Grade Literature: Exploring Symbolism in Edgar Allan Poe’s Short Stories with Interactive iBooks": 1 +"3rd Grade Social Studies: Investigating Our Local Government Structure": 1 +"6th Grade History: Analyzing Medieval Times through Castle Architecture": 1 +"6th Grade Science: Renewable Energy and its Impact - An In-depth Study using Solar Panel Kits and 10 Practical Applications": 1 +"The Role of Compasses in 5th Grade History: Land and Sea Exploration during the Renaissance Period": 1 +"Cryptocurrency & Machine Learning: Navigating the Financial Market in 8th Grade Economics": 1 +"8th Grade Literature: Unraveling Paradoxes in Fantasy Literature through the Lens of Parallel Universes": 1 +"5th Grade History: The Influence of Bronze in Ancient Chinese Dynasties": 1 +"5th Grade Geography: Exploring Major Rivers using Augmented Reality and Interactive Globes": 1 +"7th Grade Geography: Exploring Asian Landscapes through Virtual Reality and Google Maps": 1 +"10th Grade Math: Enhancing Algebra Skills Using AI-based Educational Apps": 1 +"8th Grade Science: Understanding Photosynthesis Through Augmented Reality and Interactive Labs": 1 +"5th Grade Literature: Exploring Folktales and Fables Using Audiobooks and Podcasts": 1 +"3rd Grade Music: Learning Rhythms and Melodies Through GarageBand and MIDI Controllers": 1 +"6th Grade Physical Education: Improving Basketball Skills with Wearable Technology and Performance Analysis": 1 +"4th Grade History: The Influence of Viking Culture in Early Europe Through Interactive Timelines": 1 +"9th Grade Art: Sculpting in the Digital Age: An Introduction to 3D Modeling With Blender": 1 +"7th Grade Language Arts: Mastering Metaphors and Similes in Poetry Using Collaborative Online Workshops": 1 +"10th Grade Social Studies: Discovering African Heritage through Satellite Imagery and Virtual Tours": 1 +"7th Grade Mathematics: Exploring Geometry through Origami using Mathway and GeoGebra": 1 +"5th Grade Science: Understanding Weather Patterns with Raspberry Pi and Weather Satellite Imaging": 1 +"8th Grade Art: Exploring Renaissance Artistry through Augmented Reality with Google Tilt Brush": 1 +"2nd Grade Music: Discovering Rhythm and Beats using GarageBand and Interactive Whiteboards": 1 +"9th Grade World History: Assessing the Impact of World War II through Documentaries and Interactive Timelines": 1 +"4th Grade Geography: Navigating the Earth’s Biomes with Virtual Field Trips and Google Earth": 1 +"11th Grade Physical Education: Perfecting the Long Jump Technique with Motion Capture Technology": 1 +"3rd Grade English: Enhancing Reading Proficiency through Gamified Learning with ABCmouse": 1 +"10th Grade Chemistry: Exploring the Periodic Table with Augmented Reality using Elements 4D": 1 +"6th Grade Spanish: Mastering Verb Conjugation with Duolingo and Interactive Whiteboards": 1 +"2nd Grade Science: Introduction to Habitats and Ecosystems using Augmented Reality": 1 +"9th Grade Literature: Exploring the Themes in Shakespeare’s Plays with Virtual Reality": 1 +"4th Grade Music: Understanding Mozart’s Compositions and the Harpsichord through Music Analysis": 1 +"5th Grade Math: Division Mastery through Partitioning Shapes using Geometry Tools": 1 +"8th Grade English: The Role of Quantum Entanglement in Parallel Universe Narratives in Modern Literature": 1 +"4th Grade Math: Introduction to Fractions Using Touch Screen Tablets and Interactive Applications": 1 +"4th Grade Physical Education: Agility Enhancement with Jump Ropes": 1 +"5th Grade History: The Impact of the Printing Press on the Evolution of Mass Communication": 1 +"7th Grade History: The Significance of the Parthenon in Ancient Greek Civilization": 1 +"2nd Grade Art: Exploring Shapes with Watercolor Paints": 1 +"5th Grade Physics: Learning Forces and Motion through LEGO Robotics": 1 +"2nd Grade Nutrition: Discovering Healthy Eating Habits with Interactive Food Pyramid Games": 1 +"4th Grade Literature: Incorporating Augmented Reality in Traditional Storytelling and Fairy Tale Adaptations": 1 +"Introduction to Engineering: Kindergarten Science using Recycled Materials - Understanding Simple Machines": 1 +"11th Grade Geography: Satellite Imagery: Its Role in Climate Studies and Tracking Natural Disasters": 1 +"1st Grade Environmental Studies: Exploring Habitats through Virtual Field Trips": 1 +"Second Grade Elementary Coding: Introduction to Scratch Programming with Interactive Storytelling ": 1 +"4th Grade Creative Writing: Crafting Captivating Plots with Interactive Story Cubes and Google Slides": 1 +"8th Grade Music: Exploring Mozart’s Symphonies through Digital Composition Software": 1 +"9th Grade Art: Making Portraits: An Exploration of Charcoal Drawing Techniques": 1 +"10th Grade Mathematics: Exploring Geometry in Architecture through CAD and 3D Printing": 1 +"6th Grade Home Economics: Fundamentals of Baking: Bread Making Using the Science of Yeast Fermentation": 1 +"10th Grade History: The Space Race, Satellite Inventions, and the Dawn of the Technological Era": 1 +"5th Grade Music: GarageBand and its Role in Digital Music Composition and Audio Engineering": 1 +"3rd Grade Biology: Investigating Plant Life Cycles Using Time-Lapse Photography and Interactive Apps": 1 +"8th Grade Literature: Understanding Social Issues Through Graphic Novels and Digital Storytelling": 1 +"2nd Grade Art: Learning Color Theory with DIY Rainbow Spin Art via Centrifugal Force Experiments": 1 +"10th Grade Physical Education: Cultivating Teamwork through Basketball and Leadership Activities": 1 +"5th Grade History: The Civil War - From the Cotton Gin to the Telegraph": 1 +"6th Grade English Language Arts: Prose Exploration Using Virtual Book Clubs": 1 +"1st Grade Language Arts: Developing Phonics Skills through Interactive Storytelling and Digital Flashcards": 1 +"6th Grade Science: Exploring Environmental Conservation through Virtual Field Trips and Digital Ecosystem Simulations": 1 +"4th Grade Mathematics: Understanding Fractions and Decimals using Lego Blocks and Digital Learning Tools": 1 +"5th Grade Social Studies: Tracing the Civil Rights Movement through Iconic Speeches and Multimedia Presentations": 1 +"1st Grade Science: Discovering the Life Cycle of Butterflies using Augmented Reality Applications": 1 +"3rd Grade Music: Introducing Rhythm and Tempo with Hand Drums and Metronome Apps": 1 +"7th Grade History: The Industrial Revolution: Steam Engines and the Evolution of Railways": 1 +"Health Education: Understanding Mental Health: Stress Management Techniques and Guided Meditation using Virtual Reality": 1 +"8th Grade English Language Arts: Analyzing Metaphors in Shakespeare’s Plays through Drama and Flipgrid": 1 +"2nd Grade Elementary: Building Vocabulary with Crossword Puzzles and Interactive Word Games": 1 +"7th Grade Geometry: Mastering Perimeter and Area Using Geogebra and Khan Academy": 1 +"3rd Grade French: Improving Vocabulary with Rosetta Stone and Memrise Apps": 1 +"12th Grade Calculus: Utilizing Desmos and Mathematica for Understanding Differential Equations": 1 +"5th Grade Mathematics: Grasping Multiplication Concepts through Number Lines": 1 +"10th Grade Economics: Exploring the Stock Market with Virtual Reality Using Oculus Rift": 1 +"7th Grade Literature: Advanced Poetry Analysis and the Use of Oxford English Dictionary": 1 +"5th Grade Geography: Exploring Ancient Egypt with Virtual Timelines and Hieroglyphics": 1 +"1st Grade Art: Introduction to Colors with Watercolors": 1 +"6th Grade Earth Science: The Barometer’s Role in Predicting Weather Changes": 1 +"4th Grade Biology: Discovering Forest Ecosystems Using GoPro Attached to Wildlife Animals": 1 +"3rd Grade Biology: Exploring Forest Ecosystems through Wildlife Cameras and Animal Tracking Techniques": 1 +"7th Grade Geography: Grasping World Climate Zones using Interactive Climate Maps": 1 +"6th Grade Fine Arts: Understanding Color Theory with Watercolors and Acrylic Paints": 1 +"10th Grade History: Deciphering Mayan Glyphs and Calendars through Digital Image Enhancement": 1 +"4th Grade Physical Education: Garmin’s Fitness Tracking and Heart Rate Monitoring in Soccer Training": 1 +"Digital Animation Basics: Creating 3D Models with Blender for 7th Grade Art": 1 +"4th Grade Archaeology: Uncovering Prehistoric Life through Fossil Study": 1 +"2nd Grade Literacy: Enhancing Vocabulary Skills with Interactive Word Games": 1 +"7th Grade Engineering: The Evolution of Bridges: Structural Design and Innovation History": 1 +"Exploring Melodies and Harmonies through GarageBand in 5th Grade Music": 1 +"10th Grade Economics: Delving into Global Trade through Economic Models": 1 +"Kindergarten Math: Introduction to Numbers and Shapes with Math Bingo App": 1 +"3rd Grade Literature: Decoding Roald Dahl Stories with Interactive Tablets": 1 +"7th Grade Art: The Color Palette - Understanding Color Theory and Application in Paintings": 1 +"4th Grade Science: Exploring the Solar System with Augmented Reality Tools.": 1 +"5th Grade Health and Wellness: Understanding the Importance of Mental Health through Collaborative Activities": 1 +"3rd Grade English: Building Short Stories with Picto-Selector and Digital Animation": 1 +"Kindergarten Geography: Learning about Continents and Oceans through Virtual Field Trips": 1 +"8th Grade Computer Science: Unravelling the Role of Coding in the Technological Age": 1 +"7th Grade Music: Discovering Mozart’s Operas with Interactive Sheet Music and Violin.": 1 +"3rd Grade Art: Exploring Landscape Painting with Watercolors and Digital Apps": 1 +"4th Grade Science: Investigating Plant Growth Patterns through IoT-enabled Light Sensors": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with Number Line": 1 +"2nd Grade Music: Melody Making with GarageBand": 1 +"9th Grade Art: Discovering Oil Painting Techniques and Pottery Basics": 1 +"5th Grade History: Uncovering Ancient Egypt through Interactive Games and Hieroglyphics": 1 +"8th Grade Language Arts: Evaluating Sci-Fi Literature through Thematic Analysis": 1 +"6th Grade Social Studies: Analyzing National Cultures through Virtual Reality Tours": 1 +"4th Grade Social Studies: Infrastructure Development - The Role of Bridges in Transport Services": 1 +"8th Grade English: Drama Study: Monologues, Stage Directions, and the Use of Video Recordings": 1 +"4th Grade Science: Investigating Plant Life-cycles and Photosynthesis with Interactive Digital Simulations": 1 +"8th Grade English: Analyzing Shakespeare’s Plays through Film Adaptations and Storyboarding": 1 +"2nd Grade Mathematics: Exploring Basic Geometry with Tangrams and Tynker Coding Activities": 1 +"7th Grade Social Studies: The Impact of the Industrial Revolution on Contemporary Society": 1 +"5th Grade Language Arts: Delving into Personification and Hyperbole using Audiobooks": 1 +"3rd Grade History: The Discovery of the Americas and the Role of the Compass": 1 +"10th Grade Music: Harmony and Melody - Understanding Guitar Chords through Music Production Software": 1 +"1st Grade Geography: Learning about Weather Patterns and Seasons with Hands-On Science Experiments": 1 +"6th Grade Science: The Solar System and Space Exploration through Virtual Reality Technology": 1 +"9th Grade Mathematics: Exploring Algebraic Equations and Graphing with Desmos Calculator": 1 +"4th Grade English: Deep Diving into Poetry with Google Docs and Prezi": 1 +"7th Grade Social Studies: Medieval Europe and the Impact of the Plough ": 1 +"2nd Grade Science: Investigating Animal Adaptations with Interactive Experiments": 1 +"6th Grade Art: Discovering Abstract Expressionism with Watercolor Techniques": 1 +"5th Grade History: Interactive Learning of Ancient Egypt using Microsoft HoloLens VR, Augmented Reality and Digital Storytelling Tools": 1 +"1st Grade Language Arts: Exciting Journey into Rhymes Using Puppetry and Dramatization Techniques": 1 +"8th Grade Social Studies: Analyzing the Role of the Telegraph in Industrial Revolution": 1 +"4th Grade English: Enhancing Reading Comprehension with Kindle & Google Slides": 1 +"5th Grade Science: Unraveling the Mysteries of the Ocean with Submarines and Sonars": 1 +"9th Grade Music: Discovering Piano through a Melodic Voyage - An In-depth Study of Finger Techniques": 1 +"5th Grade Geography: Understanding Climate Zones with Google Earth and Virtual Field Trips": 1 +"9th Grade Physics: Exploring Thermodynamics Principles Using Heat Engine Simulations": 1 +"2nd Grade French: Building Basic Verbal Communication Skills with Duolingo": 1 +"7th Grade Science: An In-depth Study on Photosynthesis Using Microscopic Observation and Virtual Labs": 1 +"1st Grade English: Mastering Alphabets and Phonics through Interactive Games": 1 +"4th Grade Mathematics: Unraveling the Mystery of Fractions with Virtual Manipulatives": 1 +"8th Grade History: Exploring the Civil Rights Movement through Documentary Analysis and Debate": 1 +"5th Grade Art: Navigating Cubism through Clay Modeling and 3D Printing": 1 +"10th Grade Geometry: Investigating Trigonometric Functions with GeoGebra Tools": 1 +"8th Grade Literature: Analyzing Harper Lee’s ’To Kill a Mockingbird’ Using Text-to-Speech Software and Mind Mapping Tools": 1 +"2nd Grade Art: Exploring Pottery Making and Sculpture with Clay and Interactive Video Tutorials": 1 +"7th Grade Music: The Use of Digital Audio Workstations and Synthesizers in Electronic Music Creation": 1 +"6th Grade Science: Investigating Marine Life through Underwater Robotics and Data Analysis": 1 +"6th Grade History: The Impact of the Silk Road and the Mongolian Empire: A Dive into Medieval Trade": 1 +"6th Grade English: Interactive Storytelling and Character Development using Virtual Reality on Tablets": 1 +"2nd Grade History: Learning about Native American Culture through Augmented Reality and Digital Storytelling": 1 +"2nd Grade English: Incorporating 3D Animation and Augmented Reality for Interactive Fairy Tale Retelling": 1 +"3rd Grade History: Exploring the Renaissance Period using Virtual Tours and Digital Interactive Timelines": 1 +"1st Grade Music: Discovering the Basics of Pitch and Harmony with Keyboard Playing and Kid-Friendly Music Apps": 1 +"3rd Grade Science: Understanding Weather Patterns and Climate Change through Interactive Globe Models and Simulations.": 1 +"3rd Grade Mathematics: Exploring Fractions Through Baking": 1 +"7th Grade Physical Education: Perfecting Basketball Skills Using Shooting Drills": 1 +"Kindergarten Environmental Studies: Recognizing Different Animals and Their Habitats Using Picture Books": 1 +"4th Grade Science: Understanding the Solar System through Planetary Models": 1 +"6th Grade Music: Identifying Musical Scales with Violin and Music Notation Software": 1 +"3rd Grade History: Journeying Through the Medieval Ages via Augmented Reality": 1 +"6th Grade Science: Investigating Weather Patterns and Ocean Currents Using Interactive Globe": 1 +"Exploring Ancient Greece in 7th Grade Social Studies: The Olympian Gods, The Use of Olive Oil and the Introduction of Democracy": 1 +"5th Grade History: The Renaissance and The Invention of the Printing Press": 1 +"1st Grade Language Arts: Fun in Learning Phonics through Song and Dance": 1 +"1st Grade Health: Understanding Basic Hygiene through Interactive Online Games": 1 +"3rd Grade Art: Creating Digital Collage Art using Adobe Spark on iPad": 1 +"6th Grade History: Investigating the Medieval Guild System through Role Play ": 1 +"7th Grade History: The Industrial Revolution: The Evolution of Mass Production Techniques": 1 +"Exploring Plant Cell Structure and Photosynthesis in 6th Grade Science using Microscopic Imaging": 1 +"Introduction to Computational Biology: Protein Structure and Function for 12th Grade Science": 1 +"3rd Grade Science: Understanding the Lifecycle of Butterflies through Observation": 1 +"3rd Grade Social Studies: The Role of 3D Printing Technology in Modern Architecture": 1 +"3rd Grade Art: Fundamentals of Sketching using Graphite Pencils": 1 +"10th Grade Health: Promoting Fitness and Well-being through Personalized Exercise Plans": 1 +"5th Grade Biology: Exploring Plant Life Cycles through Time-Lapse Photography": 1 +"7th Grade Physics: Understanding Sound Waves with Tuning Forks and Spectrograms": 1 +"1st Grade Nutrition: Learning About Food Groups with Interactive Food Pyramid": 1 +"5th Grade History: Exploring Ancient Egypt and the Significance of Hieroglyphics": 1 +"2nd Grade Mathematics: Discovering Addition and Subtraction with Number Cubes ": 1 +"4th Grade Geography: Investigating Climate Zones through Interactive World Maps": 1 +"8th Grade Literature: Analyzing Symbolism in Classic Novels using Digital Annotation Tools": 1 +"3rd Grade Art: Understanding Color Theory with Watercolor Paints": 1 +"7th Grade Health and Wellness: Exploring the Importance of Sleep with Sleep Diary": 1 +"6th Grade Social Studies: Learning about Democracy through Role-Playing the Constitutional Convention": 1 +"5th Grade Art: Creating 3D Models Using Recycled Materials and Digital Art Software": 1 +"4th Grade Science: The Journey of Light - From the Sun to the Earth": 1 +"4th Grade Geography: Exploring the Nile River through Interactive Maps and Simulations": 1 +"6th Grade English: The Power of Poetry - Understanding Metaphors and Similes": 1 +"6th Grade Technology: Introduction to Coding with Scratch and Raspberry Pi": 1 +"5th Grade Music: Discovering Mozart’s Magic Flute Using the Recorder and Music Composition Apps": 1 +"4th Grade Social Studies: The Impact of the Printing Press on Renaissance Europe": 1 +"7th Grade Math: Exploring Geometry - The Beauty of Shapes and Patterns with Geometric Construction Set": 1 +"7th Grade Science: The Wonders of Human Anatomy - Exploring the Circulatory System through Virtual Reality": 1 +"5th Grade Language Arts: Crafting Creative Characters for Fiction Writing using Storyboarding Techniques": 1 +"5th Grade Music: Exploring Musical Genres through Virtual Interactive Concerts": 1 +"7th Grade Mathematics: Mastering Geometry using Augmented Reality Shapes": 1 +"6th Grade Earth Science: Understanding Weather Patterns and Climate Change through Satellite Imagery": 1 +"2nd Grade Literacy: Improving Reading Comprehension using Interactive E-books ": 1 +"9th Grade History: Exploring Ancient Civilizations through Virtual Reality Time Travel": 1 +"1st Grade Life Science: Observing Animal Habitats using Live Streaming Zoo Cameras": 1 +"8th Grade Technology: Introduction to Coding and Game Design using Scratch": 1 +"4th Grade Health Education: Understanding Nutrition and Healthy Eating through Interactive Cooking Games": 1 +"3rd Grade Geography: Exploring the World’s Continents and Oceans using Interactive 3D Global Models": 1 +"5th Grade Visual Arts: Understanding Color Theory and Painting Techniques using Digital Art Platforms": 1 +"10th Grade Chemistry: Understanding Chemical Reactions through Lab Experiments": 1 +"Digital Art Education: Introducing Graphic Design with Adobe Illustrator for 4th Graders": 1 +"6th Grade Geography: Exploration of the Great Barrier Reef and its Ecosystem": 1 +"4th Grade Drama: Developing Stage Presence and Confidence with Improvisation Exercises": 1 +"3rd Grade Health Studies: Discovering the Importance of Dental Hygiene in Our Lives": 1 +"1st Grade Math: Introduction to Addition and Subtraction using Fun Flashcards": 1 +"9th Grade Literature: Exploring Shakespeare’s Sonnets with Drama and Recitation": 1 +"Kindergarten Science: Discovering the Animal Kingdom through Zoo Field Trips": 1 +"3rd Grade Math: Learning Fractions with Interactive Whiteboard Games": 1 +"7th Grade Civics: The Industrial Revolution: The Influence of the Steam Engine on Modern Infrastructure and Transportation Systems": 1 +"8th Grade Music: Understanding Beethoven’s Impact on Symphonic Structure through Music Theory": 1 +"4th Grade English: Enhancing Adjective Utilization in Creative Writing with Storybird & Google Classroom Tools": 1 +"5th Grade Science: The Progression of Renewable Energy - Grasping Solar Power with Practical Experiments": 1 +"10th Grade History: The Role of the HMS Dreadnought in Naval Warfare during World War I": 1 +"6th Grade Art: Perfecting Watercolor Painting Techniques: Using Wet-on-Wet Methods": 1 +"3rd Grade Mathematics: Multiplication and Division Proficiency through Abacus and Online Learning Tools": 1 +"11th Grade Chemistry: An Introduction to Organic Chemistry with Laboratory Experiments on Hydrocarbons": 1 +"4th Grade Geography: Navigating the Earth’s Major Rivers and Mountains using Augmented Reality Models": 1 +"7th Grade Social Studies: The Influence of Technological Inventions on Industrial Revolution": 1 +"8th Grade Physics: Exploring Thermodynamics with Practical Experiments on Heat and Energy Transfer": 1 +"5th Grade Science: Exploring the Solar System with VR Technology and Interactive Quizzes": 1 +"3rd Grade Mathematics: Building Number Sense with Mathseeds and Virtual Manipulatives": 1 +"10th Grade History: Examining World War II: Key Events and Their Impact on Today’s World": 1 +"4th Grade Art: Discovering the Renaissance Masters through Digital Painting Tools": 1 +"Kindergarten Physical Education: Promoting Fitness and Coordination through Dance and Movement Games": 1 +"7th Grade Geography: Navigating Global Landscapes: The Use of Google Earth in Understanding Physical Geography": 1 +"8th Grade Chemistry: Introduction to Atomic Structures and Chemical Reactions with Interactive Simulations": 1 +"Advanced 11th Grade Algebra: Quadratics, Polynomials, and their Applications in Real World Problems": 1 +"2nd Grade Science: Learning about Life Cycles using Augmented Reality Apps": 1 +"6th Grade Literature: Exploring Mythology: Gods and Heroes in Ancient Tales with Interactive Storytelling Tools": 1 +"7th Grade Music: Tracing the Progression of Jazz - Role of the Saxophone and the Use of Improvisation": 1 +"5th Grade Music: Delving into Mozart’s Operas and Understanding the Role of the Harpsichord": 1 +"3rd Grade Literacy: Enhancing Reading Comprehension through Interactive Storytelling": 1 +"Kindergarten Reading: Identifying Animal Sounds through Picture Books": 1 +"5th Grade Language Arts: Enhancing Creative Writing Skills using Google Docs, Quizlet, and Padlet for Collaborative Learning": 1 +"1st Grade Music: Introduction to Melody and Harmony using a Keyboard": 1 +"7th Grade Language Arts: Journey through British Literature - Exploring Imagery with Virtual Reality": 1 +"7th Grade English: Diving into Shakespeare’s Plays through Interactive Theatre": 1 +"5th Grade History: The Renaissance Era - Leonardo Da Vinci’s Inventions and their Impact on Modern Science": 1 +"4th Grade Mathematics: Understanding Fractions through Everyday Objects and Their Proportions": 1 +"2nd Grade Science: Exploring Plant Life Cycles using Microscopes and Interactive Science Apps": 1 +"5th Grade Mathematics: Mastering Decimal Fractions using Base Ten Blocks and Number Lines": 1 +"7th Grade Geography: Exploring World Maps and GPS Technology ": 1 +"3rd Grade English: Enhancing Storytelling Abilities through Puppet Shows and Interactive E-books": 1 +"1st Grade Physical Education: Fun with Gymnastics: Learning Basic Tumbles and Balances": 1 +"6th Grade Science: Discovering the Solar System using VR Headsets and Interactive Quizzes": 1 +"Kindergarten Music: Exploring Sounds and Rhythms with Xylophones ": 1 +"4th Grade Computing: Introduction to Coding using Scratch and Raspberry Pi": 1 +"5th Grade History: Journey through Ancient Egypt using Virtual Reality Tours and Interactive Timelines": 1 +"2nd Grade Art: Creating Artistic Expressions with Clay Modelling and Finger Painting": 1 +"4th Grade Biology: Exploring Animal Habitats and Adaptations with Virtual Reality": 1 +"8th Grade English Literature: Enhancing Poetry Analysis Skills using Interactive Online Platforms": 1 +"7th Grade Algebra: Understanding the Basics of Equations through Engaging Puzzle Games": 1 +"2nd Grade World History: Learning about Ancient Egyptian Pyramids through 3D Modeling": 1 +"The Influence of Samurai Culture in Feudal Japan for 7th Grade History": 1 +"Kindergarten Physics: Introduction to Simple Machines through Hands-on Toy Play": 1 +"3rd Grade Reading: Boosting Reading Fluency and Vocabulary with Animated Storybooks": 1 +"10th Grade Economics: Understanding the Stock Market Crash of 1929 and its Impact on the Great Depression": 1 +"6th Grade Biology: The Importance of Photosynthesis in the Plant Life Cycle": 1 +"1st Grade Geometry: Learning Shapes and Patterns using Interactive Digital Puzzles": 1 +"1st Grade Mathematics: Counting and Basic Arithmetic using Colorful Counting Beads": 1 +"3rd Grade Geography: Exploring World Landforms and Physical Features through Virtual Tours": 1 +"Kindergarten Health: Understanding the Importance of Hygiene through Storybooks and Puppet Shows": 1 +"6th Grade History: Ancient Egypt - The Development of Hieroglyphics and Papyrus Making": 1 +"2nd Grade Art: Discovering Color Theory with Watercolor Paints and Interactive Art Projects": 1 +"4th Grade Science: Exploring the Solar System through Models and Interactive Software": 1 +"7th Grade English: Poetry Analysis and the Use of Online Literary Tools": 1 +"5th Grade Environmental Studies: Learning about Climate Change through Weather Maps and Greenhouse Effect Experiments": 1 +"8th Grade Algebra: Understanding the Concept of Variables and Equations through Math Puzzles": 1 +"Ancient Civilizations: Mayan Astronomy and the Significance of their Calendar System": 1 +"7th Grade Physics: Understanding Newton’s Laws Through Interactive Experiments": 1 +"4th Grade Art: Exploring Picasso’s Cubist Period with Virtual Reality Tools": 1 +"5th Grade Music: An Introduction to Jazz Improvisation Using Yamaha YPG-235 Piano and MuseScore Software": 1 +"8th Grade English Literature: In-depth Analysis of Shakespeare’s Dramatic Devices with Digital Scripts and Google Docs": 1 +"3rd Grade Geography: Studying World Ecosystems using Google Earth and Interactive Online Quizzes": 1 +"6th Grade Computer Science: Learning Basic Coding with Scratch and Raspberry Pi": 1 +"7th Grade History: Exploring the Impact of the Industrial Revolution on Modern Society": 1 +"5th Grade Life Sciences: Understanding Photosynthesis Through Interactive 3D Models": 1 +"4th Grade Math: Mastering Division Concepts Using Virtual Manipulatives": 1 +"8th Grade Performing Arts: Exploring Method Acting Techniques with Recorded Monologues and Zoom Workshop Sessions": 1 +"8th Grade Geography: Exploring Geological Formations through Interactive 3D Models": 1 +"3rd Grade Physics: Understanding the Principles of Sound Through Homemade Musical Instruments": 1 +"Kindergarten Art: Exploring Textures and Patterns with Printmaking and Collage Techniques": 1 +"12th Grade Music: The Impact of Digital Sampling in Contemporary Pop Music": 1 +"1st Grade Science: Learning About Plants and Animals with Handheld Magnifying Glasses": 1 +"2nd Grade Mathematics: Mastering Multiplication and Division with Educational Board Games": 1 +"4th Grade Health: Learning About the Human Body Systems through Interactive Models": 1 +"9th Grade Science: Investigating Climate Change through Satellite Imagery Analysis": 1 +"5th Grade Language Arts: Enhancing Vocabulary through Storytelling and Word Games": 1 +"6th Grade Astronomy: Exploring the Universe with Virtual Reality Technology": 1 +"6th Grade Geography: Unearthing the Secrets of Plate Tectonics using Google Earth and GIS": 1 +"3rd Grade Literature: Journey into Greek Fables with Smartboard Interactive Games and Read&Write": 1 +"6th Grade Visual Arts: Exploring Acrylics through Impasto Techniques": 1 +"4th Grade Language Arts: Improving Narrative Writing with Microsoft Publisher’s Layout Design": 1 +"Eighth Grade Anthropology: Investigating the Inca Society through the Study of High Altitude Farming": 1 +"5th Grade Choir: Pitch and Tempo - An Introduction to Digital Music Production Tools": 1 +"5th Grade Earth Science: Navigating the Ocean Depths with Google’s Seaview and Underwater Drones": 1 +"3rd Grade Rhythmics: Learning the Beat of Percussion and Rhythms with Hand Drums and Virtual Musical Instruments": 1 +"5th Grade Language Arts: Creativity in Words: Kindle Direct Publishing’s Interactive Stories and their Influence": 1 +"Gravity and Orbital Motion: An 8th Grade Physics Investigation using Stellarium, Speed-Distance Graphs, and Satellite Simulations": 1 +"3rd Grade Geography: Examining the Importance of the Nile River in Ancient Egyptian Civilization": 1 +"1st Grade Music: Understanding Rhythm and Melody through Interactive Drum Pads": 1 +"6th Grade Science: Exploring the Solar System with Virtual Reality Technology": 1 +"8th Grade Art: Investigating the Influence of Photoshop on Modern Graphic Design": 1 +"7th Grade History: Understanding the Impact of the Gutenberg Press on the Renaissance Era": 1 +"10th Grade Social Studies: Evaluating Economic Systems with Data Visualization Tools": 1 +"10th Grade Literature: Studying J.R.R Tolkien’s Work through Animated Adaptations": 1 +"3rd Grade Introduction to Geometry: Shapes and Angles Explored through 3D Printing": 1 +"1st Grade Social Studies: Learning About Local Wildlife through Augmented Reality Apps": 1 +"5th Grade Music: Exploring Mozart’s Symphonies Through Violin Performance and Audio Editing Using Audacity Software.": 1 +"1st Grade Math: Learning Addition and Subtraction through Fun Games and Puzzles": 1 +"First Grade Geography: Exploring Our World Through Interactive Maps and Virtual Reality": 1 +"1st Grade Physical Education: Basic Yoga Poses and Dance Steps for Kids": 1 +"Second Grade Literature: Dive into Fairytales Using Audiobooks": 1 +"2nd Grade Physics: Exploring Gravity and Friction through Simple Experiments and Simulations": 1 +"6th Grade Mathematics: Decoding Algebra through Puzzles and Online Games": 1 +"7th Grade French Language: Understanding Metaphors in Classic French Literature with Animated Videos": 1 +"6th Grade Earth Science: Exploring the Solar System and its Planets": 1 +"8th Grade Art History: The Evolution of Sculpture from Ancient Greece to the Renaissance": 1 +"The Mayan Civilization and the Use of Astronomy in their Calendar System for 6th Grade History": 1 +"4th Grade Science: Exploring Ecosystems through Interactive Virtual Tours": 1 +"8th Grade History: Unraveling the Mysteries of Ancient Egypt through Hieroglyphics": 1 +"5th Grade Language Arts: Enhancing Reading Comprehension with Graphic Novels": 1 +"3rd Grade Art: Exploring Sculpture with Recyclable Materials": 1 +"6th Grade Mathematics: Mastering Algebraic Expressions through Tangram Puzzles": 1 +"Kindergarten Music: Introduction to Rhythm and Pitch with Hand Bells": 1 +"7th Grade English: Analyzing Characters and Themes through Interactive Storyboards": 1 +"4th Grade Mathematics: Understanding Geometry with 3D Printing": 1 +"1st Grade Art: Creating Colorful Worlds with Watercolor Painting ": 1 +"8th Grade Music: Exploring Composition and Notation through GarageBand": 1 +"3rd Grade Biology: Exploring Plant Life Cycles with Interactive Garden Kits": 1 +"7th Grade Technology: Utilizing Raspberry Pi for Basic Programming and Robotics": 1 +"10th Grade Music: Mastering the Fruity Loops Studio for Electronic Music Production": 1 +"1st Grade Science: Discovering Dinosaur Fossils Through Augmented Reality and Multimedia Tools": 1 +"3rd Grade Geography: Tracking Global Weather Phenomena Using Interactive Maps and Weather Stations": 1 +"11th Grade History: The Influence of the Telegraph in the American Civil War": 1 +"2nd Grade History: The Great Pyramids of Egypt and the Principles of Geometry": 1 +"Fundamentals of Trigonometry in 11th Grade Mathematics: Solving Complex Equations with Graphing Calculators": 1 +"Exploring Psychoanalytic Theory in Classic Horror Novels in 12th Grade Literature": 1 +"5th Grade Social Studies: The Role of Radio Broadcasts in Shaping Public Opinion During World War II: An Analysis of Key Strategies": 1 +"4th Grade Biology: Understanding Plant Life through the Study of Photosynthesis and Cellular Respiration": 1 +"8th Grade Geography: Exploring Trade Routes and Cultural Interactions in the Mediterranean": 1 +"5th Grade Art: Discovering Texture and Form through Clay Sculpting Techniques": 1 +"2nd Grade Music: Discovering Pitch and Harmony using Xylophones and Recorders": 1 +"Mastering Fractions in 4th Grade Mathematics with Mathletics Software": 1 +"2nd Grade Reading: Picture Book Comprehension and Sequencing Events: Visual Learning Strategies": 1 +"Orchestra History: A Study of Mozart’s Use of String Instruments in 7th Grade Music Education": 1 +"5th Grade Social Studies: The Influence of The Printing Press on Information Dissemination": 1 +"8th Grade English: Deciphering Prose through Metaphoric Language and Imagery": 1 +"6th Grade Language Arts: Enhancing Writing Skills using Google Docs Grammar and Spelling Tools": 1 +"3rd Grade Science: Exploring the Life Cycle of Butterflies through Visual Diagrams": 1 +"7th Grade Music: The Influence of Jazz on Modern Music Genres": 1 +"5th Grade Mathematics: Understanding Geometry through Origami Art Projects": 1 +"Baroque Era: Investigating Bach’s Influence on Counterpoint in 6th Grade Music Class": 1 +"1st Grade Language Arts: Introduction to Fairy Tales through Interactive Storytelling": 1 +"10th Grade History: World War II and the Power of Propaganda": 1 +"7th Grade Global Studies: Decoding Cultural Symbols using Virtual Reality Technology": 1 +"11th Grade Music: Dissecting Beethoven’s Sonata No.14 in C Sharp Minor Through Music Analysis Software": 1 +"3rd Grade Language Arts: Learning Punctuation with Interactive Writing Exercises": 1 +"Second Grade Language Arts: Understanding Myths through Role-Play Activities - A Theater Approach": 1 +"1st Grade Environmental Studies: Exploring Nature with Interactive Augmented Reality Scavenger Hunts": 1 +"3rd Grade Physics: Understanding Forces and Motion with LEGO® Education WeDo 2.0": 1 +"7th Grade Graphic Design: Mastering Adobe Photoshop for School Magazine Production": 1 +"Kindergarten Mathematics: Fun with Numbers - Learning Counting through Interactive Games on Amazon Fire Kids Edition": 1 +"3rd Grade Music: Introduction to Rhythm and Beats with GarageBand on iPad": 1 +"2nd Grade Geography: Discovering Continents and Oceans with Virtual Reality Tours": 1 +"5th Grade Social Studies: Ancient Greek Democracy and its Impact on Modern Systems": 1 +"4th Grade Health and Wellness: Learning Nutrition through Interactive Food Pyramid Activities": 1 +"8th Grade Science: Exploring Genetics with Virtual DNA Manipulation Experiments": 1 +"10th Grade Literature: Analyzing Symbolism and Themes in Classic Novels": 1 +"5th Grade Science: Unveiling Space Mysteries - An Introduction to Astronomy with 3D Planetarium Software": 1 +"1st Grade Math: Understanding Basic Counting and Number Recognition through Interactive Board Games": 1 +"7th Grade History: Tracing European Landmarks - A Virtual Expedition in the Age of Exploration": 1 +"9th Grade Social Studies: Exploring Asian Cultural Heritage through Augmented Reality and Virtual Reality": 1 +"2nd Grade Art: Discovering Patterns and Textures - A Journey through Collage Making": 1 +"6th Grade Music: Understanding Rhythm and Melody through Hand Drums and Recorders": 1 +"Exploring the World of Mammals: A Comprehensive Study of Animal Behavior in 8th Grade Biology": 1 +"The Power of Persuasion: Mastering Argumentative Essays in 10th Grade English Language Arts": 1 +"7th Grade Physical Education: Enhancing Agility and Strength through Circuit Training and Sports Games": 1 +"Uncovering Ancient Civilizations: The Impact of Hieroglyphics in 4th Grade History": 1 +"5th Grade Biology: Exploring Ecosystems through Animal Camouflage and Predator-Prey Relationships": 1 +"3rd Grade Mathematics: Mastering Multiplication with Interactive Smartboard Puzzles": 1 +"9th Grade Literature: Exploring Symbolism and Themes in Classic Novels using E-books and Digital Annotations": 1 +"7th Grade Geography: Understanding Plate Tectonics through Earthquake Simulators and Volcano Models": 1 +"10th Grade Chemistry: The Science of Cooking - Exploring Chemical Reactions in Everyday Ingredients": 1 +"Kindergarten Art: Discovering Shapes and Colors through Mosaic Creations using Recycled Materials": 1 +"6th Grade Technology: Coding Basics with Scratch and LEGO Mindstorms": 1 +"5th Grade Physical Education: Building Teamwork and Sportsmanship through Cooperative Games": 1 +"3rd Grade History: Journey Through the Ancient World using Augmented Reality Time Travel": 1 +"4th Grade Music: Discovering Melody and Harmony with Ukuleles and Music Composition Software": 1 +"7th Grade Literature: Exploring Greek Mythology with Storytelling Podcasts": 1 +"8th Grade Science: Basic Principles of Physics using Interactive Simulation Software": 1 +"5th Grade Mathematics: Understanding Decimals and Percentages through Real-Life Money Management Scenarios ": 1 +"4th Grade Art: Exploring Textile Art and Fabric Design using Digital Design Tools": 1 +"7th Grade History: Understanding the Medieval Times through Role-Playing Video Games": 1 +"4th Grade Music: Understanding Melody and Harmony using Music Theory Apps ": 1 +"Integrating Fitbit Health Tracker with MyFitnessPal App: A Comprehensive 8th Grade Health Education Course": 1 +"9th Grade Music: Composing Original Scores with MIDI Keyboards and Digital Audio Workstations ": 1 +"2nd Grade Art: Developing Storyboards using Digital Drawing Apps on Tablet": 1 +"5th Grade Mathematics: Mastering Multiplication and Division with Gamified Learning Tools": 1 +"5th Grade Literature: Exploring the World of Harry Potter Through Augmented Reality and Digital Storytelling": 1 +"3rd Grade Agriculture: Learning Crop Rotation Techniques using Interactive Farm Simulation": 1 +"1st Grade Music: Understanding Rhythm and Beats via Digital Drum Set App": 1 +"Soccer in 10th Grade Physical Education: Enhancing Goalkeeping Skills with Virtual Reality Tools": 1 +"6th Grade History: Journeying through Ancient Egypt with Virtual Museum Tours": 1 +"8th Grade Art: Creating Abstract Art using Adobe Illustrator and Digital Graphic Tablets ": 1 +"1st Grade Mathematics: Learning Counting and Number Recognition through Fun Animated Software ": 1 +"4th Grade Biology: Understanding the Life Cycle of Butterflies using Virtual Reality and Interactive Activities": 1 +"7th Grade Physics: Exploring Laws of Motion through Lego Robotics and Coding ": 1 +"3rd Grade Mathematics: Building Multiplication Skills using Montessori Bead Materials and Digital Platforms.": 1 +"1st Grade Art: Exploring Shapes and Colors through Collage Making": 1 +"5th Grade Science: Understanding Photosynthesis using Indoor Gardening Kits": 1 +"Kindergarten Math: Understanding Numbers 1-10 using Interactive Learning Apps": 1 +"6th Grade Geography: Exploring World Maps with Augmented Reality Technology": 1 +"3rd Grade Writing: Developing Storytelling Skills through Comic Strip Creation": 1 +"5th Grade Physical Education: Learning Volleyball Techniques with Practice Drills": 1 +"4th Grade Music: Discovering Rhythms and Beats using Virtual Drum Sets": 1 +"1st Grade Social Studies: Understanding My Community with Local Field Trips": 1 +"4th Grade Life Science: Studying Butterflies through In-Class Caterpillar Hatching": 1 +"7th Grade Technology: Programming Basics with Scratch Jr.": 1 +"6th Grade Geography: Understanding World Maps - The Impact of the Compass on Exploration": 1 +"3rd Grade English: Enhancing Vocabulary through Podcasts and E-Books on Kindle": 1 +"10th Grade Mathematics: Algebra Fundamentals - Solving Quadratic Equations with Graphing Calculators": 1 +"1st Grade Language Arts: Rhyming and Poetry Creation with Interactive Apps": 1 +"7th Grade History: Journey through the Middle Ages using Virtual Reality Technology": 1 +"5th Grade Math: Improving Subtraction Skills with Educational Video Games and Virtual Reality Puzzles": 1 +"9th Grade Art: Basics of Watercolor Painting and Techniques with Palette Knives": 1 +"1st Grade Language Arts: Improving Spelling through Animated Characters": 1 +"4th Grade Science: The Water Cycle: Understanding Evaporation and Condensation through Experiments using Tablets": 1 +"2nd Grade Physical Education: Balancing Act and Motor Skills Development with Interactive Floor Games.": 1 +"1st Grade Science: Exploring Weather Patterns with Interactive Models": 1 +"4th Grade Art: Creating Landscape Paintings with Watercolors and Canvas": 1 +"7th Grade Mathematics: Solving Equations through Virtual Calculator Tools": 1 +"9th Grade Health & Wellness: Understanding Nutrition with Interactive Food Pyramid": 1 +"Kindergarten English: Building Vocabulary with Animated Alphabet Apps": 1 +"6th Grade Social Studies: Ancient Civilizations - Learning through Virtual Reality Expeditions": 1 +"8th Grade Science: Introduction to Astronomy with Planetarium Software": 1 +"2nd Grade Music: Discovering Rhythm and Melody Using Interactive Instruments": 1 +"3rd Grade Geography: Understanding World Map with Augmented Reality Globes": 1 +"5th Grade English: Improving Grammar through Story Creation Software": 1 +"4th Grade Health: Unraveling the Mystery of Vitamins and Dietary Fibers with Food Pyramid Model": 1 +"1st Grade Language Arts: Exploring Animal Kingdom through Interactive Storytelling Apps": 1 +"Decoding the Human Immune System: A 7th Grade Biology Course": 1 +"Third Grade Astronomy: Discovering Constellations and Galaxies through Virtual Reality": 1 +"Ancient Egyptian Civilization: The Role of Hieroglyphics in 5th Grade History": 1 +"5th Grade Social Studies: The Development of the Printing Press and its Influence on Education": 1 +"Kindergarten Physical Education: Basics of Rhythmic Gymnastics & Hand-Eye Coordination with Juggling Activities": 1 +"7th Grade Physics: The Laws of Motion, Pendulums, and the Workings of a Clock": 1 +"1st Grade Language Arts: Building Vocabulary Skills with ABC Mouse Games and Google Classroom": 1 +"3rd Grade Language Arts: Exploring Fairy Tales with Augmented Reality Books and Duolingo ABC": 1 +"3rd Grade Science: Discovering the Solar System through Planetary Models and Telescopes": 1 +"1st Grade Mathematics: Learning to Count with Fun Number Puzzles and Games": 1 +"6th Grade Art: Creating Abstract Paintings Inspired by Picasso’s Cubism": 1 +"7th Grade Social Studies: Exploring Ancient Civilizations through Archaeological Artifacts": 1 +"3rd Grade Language Arts: Improving Reading Comprehension with Interactive Storytelling and Tablets": 1 +"8th Grade Music: Understanding Rhythmic Patterns through Drumming and Beat Sequencing": 1 +"Kindergarten Science: Exploring Animal Habitats with Miniature Ecosystem Projects": 1 +"6th Grade Mathematics: Mastering Algebraic Expressions using Virtual Manipulatives ": 1 +"9th Grade Environmental Studies: Climate Change and Global Warming: A Study with Real-world Data": 1 +"4th Grade Social Studies: Understanding Local History through Field Trips and Archival Research": 1 +"10th Grade Music: Exploring the Impact of Synthesizers in Pop Culture": 1 +"9th Grade Mathematics: Using Python for Understanding Probability and Statistics": 1 +"5th Grade Geography: Understanding Climate Zones through Interactive Global Maps": 1 +"11th Grade Mathematics: Understanding Vector Spaces and Linear Algebra through MATLAB": 1 +"8th Grade Art: Mastering Landscape Painting with Watercolors: A Comprehensive Guide in Color Mixing Techniques": 1 +"2nd Grade Reading: Magical Realms - A Voyage through Fairy Tales and Critical Thinking Skills": 1 +"4th Grade English: Embracing Global Diversity through Multilingual Digital Storybooks": 1 +"7th Grade Music: Exploring Mozart’s Operas and the Role of the Harpsichord using Digital Audio Workstations": 1 +"8th Grade History: Decoding the Enigma of the Egyptian Hieroglyphs and their Astrological Connections": 1 +"5th Grade Health: Understanding the Importance of Hygiene through Fun and Interactive Activities": 1 +"4th Grade Geography: Exploring the Amazon Rainforest with Augmented Reality Technology": 1 +"6th Grade English: Understanding Satire and Irony in Literature using Online Discussion Forums": 1 +"7th Grade Life Science: Examining the Human Skeleton using Leapfrog 3D Printing and Oculus Rift VR": 1 +"5th Grade Arts: Exploring Renaissance Paintings with Digital Brushstrokes via Adobe Photoshop": 1 +"1st Grade Environmental Studies: Discovering the Role of Bees in the Ecosystem using Interactive Apps": 1 +"8th Grade World History: Unveiling the Secrets of the French Revolution through the Eyes of the Bourgeoisie": 1 +"3rd Grade Mathematics: Engaging Addition and Subtraction Lessons using Prodigy Game Platform": 1 +"2nd Grade Science: The Water Cycle and Weather Patterns Explored Through Interactive Simulations": 1 +"9th Grade English Language Arts: Deep Dive into Metaphors and Similes in Short Stories using Digital Media": 1 +"4th Grade History: The Viking Age, Longship Navigation, and the Impact on European Trade": 1 +"4th Grade Art: Creating Dynamic Illustrations using Adobe Fresco’s Watercolor Effect & iPad Pro": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals using Khan Academy’s Interactive Lessons": 1 +"8th Grade History: Unveiling the Mysteries of the Mayan Civilization": 1 +"2nd Grade Environmental Studies: Plant Life Cycle Exploration through Hands-on Gardening": 1 +"8th Grade Language Arts: A Deep Dive into William Shakespeare’s Plays using Kindle’s X-Ray Feature": 1 +"2nd Grade Reading: Enhancing Comprehension Skills with Augmented Reality Storybooks": 1 +"8th Grade History: Analyzing the Influence of the Printing Press on the Renaissance Era": 1 +"5th Grade Art: Discovering the Joy of Sculpting with Clay and Plaster": 1 +"4th Grade Science: Solar System Exploration using Augmented Reality Space Missions": 1 +"Decoding the Renaissance: A Study of 8th Grade History Through the Lens of Art and Architecture": 1 +"3rd Grade Geography: Journey through the Solar System with Virtual Reality Technology": 1 +"1st Grade Science: The Magic of Magnets: Exploring Magnetic Fields and their Applications": 1 +"7th Grade Biology: The Amazing World of Birds: An In-depth Study of Avian Behavior": 1 +"4th Grade Music: Understanding Melodies through Piano using Synthesia Software": 1 +"6th Grade Mathematics: Practical Algebra in Everyday Life using Mathway Software": 1 +"Kindergarten Science: Learning About Dinosaurs through Interactive Fossil Excavation using Dino Dig Virtual Reality": 1 +"9th Grade History: Tracing the Evolution of Democracy from Ancient Athens to Present Day": 1 +"3rd Grade Music: Discovering Harmony with the Xylophone using Yousician App and Interactive Whiteboard": 1 +"4th Grade History: The Renaissance Era: Analyzing the Impact of Invention of the Printing Press": 1 +"1st Grade Language Arts: Mastering Phonics with Interactive E-books and Speech Recognition Technology using Starfall": 1 +"6th Grade Biology: Exploring Plant Cells through the Lens of a Microscope": 1 +"Agricultural Science for 3rd Graders: The Basics of Crop Rotation and Soil Conservation": 1 +"5th Grade Physics: Decoding the Phenomenon of Light Reflection and Refraction with Prisms": 1 +"Introducing Weather Patterns: An Interactive Meteorological Study for Kindergarteners": 1 +"3rd Grade Anthropology: Understanding the Tools and Techniques of Ancient Egyptian Papyrus Making": 1 +"5th Grade Geometry: The Role of Circles and Polygons in Medieval Castle Design": 1 +"6th Grade Life Science: Examining Food Chains through Augmented Reality and Interactive Simulations": 1 +"7th Grade English Literature: Dissecting Themes and Characters in Classic Novels using Storyboard That Software": 1 +"2nd Grade Visual Arts: Exploring Texture and Form through Clay Modelling and Paper Mache Techniques": 1 +"Integrating Scratch Coding into 3rd Grade Mathematics to Foster Understanding of Number Patterns and Sequences": 1 +"12th Grade Physics: Exploring Quantum Mechanics through the Double-Slit Experiment": 1 +"11th Grade Physical Education: Boosting Soccer Performance with Biomechanical Analysis": 1 +"7th Grade Physical Education: Improving Balance and Coordination through Dance Movements": 1 +"3rd Grade Art and Color Theory: Exploring Watercolor Techniques": 1 +"In-depth Analysis of Photosynthesis and Energy Conversion in Plants for 10th Grade Biology Students": 1 +"4th Grade History: The Roman Empire and the Significance of the Gladius Sword": 1 +"9th Grade Science: Understanding Climate Change through the Carbon Cycle: An Introduction to Environmental Science": 1 +"3rd Grade Language Arts: Engaging Spelling Practice with Educational Games and Digital Tools": 1 +"1st Grade Art: Discovering Shapes and Patterns through Collage Making": 1 +"5th Grade Science: The Water Cycle - Understanding Precipitation through Simple Experiments": 1 +"First Grade Physical Education: Exploring Basic Gymnastics Movements with Foam Mats": 1 +"2nd Grade Mathematics: Understanding Addition and Subtraction using Abacus": 1 +"6th Grade Physical Education: Mastering Basketball Basics through Interactive Video Analysis": 1 +"8th Grade Language Arts: Exploring Haikus with Kindle and Google Slides for Virtual Collaboration": 1 +"3rd Grade History: Discovering Ancient Egypt using Oculus Rift VR and Interactive Timelines": 1 +"5th Grade Language Arts: Unraveling Similes in Short Story Compositions": 1 +"7th Grade English Language Arts: Studying Character Arcs in R.L. Stine’s ’Goosebumps’ Series using MindMeister, Google Sheets, and Kahoot Quizzes": 1 +"3rd Grade Mathematics: Understanding Probability through Card Games using Java Programming": 1 +"Fourth Grade Earth Science: Exploring the Evolution of Volcanoes in the 19th Century": 1 +"7th Grade Art: Experimenting with Dry Brushing Techniques in Acrylic Painting": 1 +"4th Grade Mathematics: Introduction to Fractions using Interactive Whiteboard": 1 +"9th Grade Physical Education: Foundations of Yoga and Mindfulness": 1 +"6th Grade Social Studies: The Silk Road - Navigating the Ancient Trade Routes with Google Earth": 1 +"Improving Vocabulary through Interactive Spelling Bees in 3rd Grade English using Quizlet": 1 +"11th Grade Geography: Unveiling Europe’s Cultural Heritage through Virtual Reality Experiences": 1 +"1st Grade Science: The Life Cycle of Butterflies: An Interactive Exploration": 1 +"Analyzing the Symbolism in Emily Dickinson’s ’Hope is the thing with feathers’ in 6th Grade Language Arts: Utilizing Prezi, Podcasts, and Canva for Creative Projects.": 1 +"2nd Grade Art: Journey into the World of Pop Art - Making Art with Everyday Objects": 1 +"Preschool Health and Wellness: Fun with Fruits - An Interactive Approach to Healthy Eating": 1 +"7th Grade Physics: Discovering the Wonders of Gravity with Practical Experiments in the Science Lab": 1 +"2nd Grade Mathematics: Fun with Addition and Subtraction Using Interactive Games": 1 +"7th Grade Geography: Understanding Plate Tectonics and Earthquakes Through Virtual Simulations": 1 +"5th Grade Science: The Role of Pollinators in Ecosystems - A Study of Bees and Butterflies": 1 +"1st Grade Art: Exploring Shapes and Colors through Hands-on Craft Projects": 1 +"6th Grade English: Mastering Narrative Writing with Storyboard Techniques": 1 +"8th Grade History: The Impact of the Printing Press in the Renaissance Era": 1 +"4th Grade Music: Discovering Rhythms and Beats using Percussion Instruments": 1 +"7th Grade Mathematics: Grasping Fractions and Decimals with Real-world Applications": 1 +"3rd Grade Science: Learning about Life Cycles through the Study of Butterflies": 1 +"10th Grade Literature: Analyzing Symbolism in Modernist Poetry": 1 +"7th Grade Mathematics: Understanding Algebra Concepts through Python and Data Visualization Techniques": 1 +"5th Grade English: Developing Narrative Skills through Comic Strip Creation and Character Voice Development": 1 +"4th Grade Geography: Incorporating Augmented Reality for Interactive Global Landmark Studies": 1 +"9th Grade Computer Science: Understanding Cybersecurity Basics using Python and Virtual Private Networks": 1 +"10th Grade Literature: Dissecting Modern Novels using Kindle’s Highlight and Note Features": 1 +"6th Grade History: The Civil War - Exploring Communication Through Morse Code": 1 +"1st Grade Physical Education: Basic Soccer Techniques using Soft Foam Balls": 1 +"8th Grade Chemistry: Exploring Molecular Structures through Virtual Reality in Organic Chemistry": 1 +"11th Grade Language Arts: Investigating the Influence of Social Media Language in Contemporary Poetry": 1 +"7th Grade Art: Sculpting 3D Models using Blender and Digital Drawing Pads": 1 +"5th Grade Science: Exploring Ecosystems with Virtual Reality: A Deep Dive into Biodiversity": 1 +"3rd Grade Mathematics: Fun with Fractions: Learning with Interactive Puzzles and Math Games": 1 +"7th Grade Art: Mastering Portraits with Oil Paints: An Introductory Course": 1 +"4th Grade Mathematics: Understanding Geometry through Minecraft: A Journey into Shapes and Patterns": 1 +"5th Grade History: The Renaissance Period - Discovering Art and Invention during the 14th Century": 1 +"3rd Grade Science: Introduction to Weather Patterns with Interactive Experiments and Augmented Reality": 1 +"1st Grade Art: Discovering Shapes and Colors through Finger Painting and Collage Making": 1 +"7th Grade History: The Industrial Revolution - Understanding its Impact and Technological Advancements": 1 +"1st Grade Elementary: Learning Basic Arithmetic with Fun Counting Games and Interactive Tools": 1 +"5th Grade Mathematics: Diving into Data Interpretation through Exciting Graphing Activities using Excel": 1 +"10th Grade Social Studies: The Impact of Social Media on Political Movements: A Case Study of the Arab Spring": 1 +"5th Grade Music: Understanding Melody and Harmony through Piano and Chord Progressions": 1 +"8th Grade Science: Investigating Quantum Physics and Energy Conservation with Quantum Computing Concepts": 1 +"4th Grade English: Utilizing Interactive Digital Storybooks to Analyze Character Development": 1 +"Rhythm and Notations: Understanding Music Composition with Violin for 6th Graders": 1 +"5th Grade Social Studies: The Role of Television Broadcasting in the Civil Rights Movement": 1 +"10th Grade Chemistry: Exploring Molecular Structures using X-Ray Crystallography and NMR Spectroscopy": 1 +"6th Grade Music: An Overview of Jazz Legends - A Spotlight on Saxophone": 1 +"4th Grade English: The Evolution of Poetry and Rhyme Schemes using GarageBand for Poetry Readings on Spotify": 1 +"12th Grade Biology: Investigating Proteomic Diversity with Mass Spectrometry Technology": 1 +"8th Grade Chemistry: Exploring the Periodic Table through Minecraft": 1 +"4th Grade History: Understanding the Life of Pioneers using The Oregon Trail Computer Game": 1 +"8th Grade Physics: Understanding Gravity and Other Forces through Rocket Propulsion Experiments": 1 +"2nd Grade English: Engaging with Folklore using Toon Boom Harmony’s Animation Tools": 1 +"7th Grade PE: Enhancing Agility through Modern Dance and Choreography": 1 +"4th Grade: American History: Grasping the Revolution through Interactive Storytelling": 1 +"5th Grade Geography: Discovering Earth’s Biomes through Virtual Field Trips": 1 +"3rd Grade Art: Mastering Shapes and Patterns with Digital Illustration Techniques": 1 +"2nd Grade Biology: Exploring Plant Life Cycle using Microscopic Observations": 1 +"7th Grade Art: Portrait Drawing with Charcoal and Grasping Light and Shadow": 1 +"7th Grade: Understanding Weather Patterns through Virtual Reality Meteorology Applications": 1 +"10th Grade History: The Influence of Radio Broadcasts during World War II": 1 +"Football: A Comprehensive Study of Offensive Strategies in 9th Grade Physical Education using Player Tracking Technology": 1 +"4th Grade Physical Education: Team Building through Soccer": 1 +"1st Grade: Enhancing Cognitive Skills through Interactive Learning Stations": 1 +"7th Grade Geography: An Introduction to Urban Planning: The Role of Bicycling Infrastructure": 1 +"5th Grade Gym Class: Promoting Active Lifestyle with Garmin Vivofit Jr. in Daily Exercise Tracking": 1 +"3rd Grade Mathematics: Discovering Fractions through Lego Blocks": 1 +"4th Grade Earth Science: Investigating Geological Processes using Volcano Building Kits and Seismic Wave Monitors": 1 +"7th Grade Music: Understanding Rhythm and Tempo with GarageBand, Digital Sound Mixers and Ableton Live in Jazz Music": 1 +"4th Grade Biology: Studying Plant Photosynthesis using Interactive Diagrams and VR Technology": 1 +"5th Grade Geography: Understanding Weather Patterns with Interactive Climate Maps": 1 +"2nd Grade Drawing: Learning Shapes and Forms with Crayons and Construction Paper": 1 +"6th Grade Civics: Exploring the U.S. Electoral System through Online Simulations": 1 +"Kindergarten Music: Introduction to Melody with Xylophones and Recorders": 1 +"11th Grade Music Theory: Analyzing Song Structures with GarageBand and MIDI Controllers": 1 +"4th Grade Arithmetic: Mastering Division Concepts using Interactive Whiteboards and Online Puzzles": 1 +"5th Grade Geometry: Understanding Shapes and Solids with Geometric Blocks": 1 +"9th Grade Music History: Learning about the Rise of Jazz and the Influence of the Saxophone in the Roaring Twenties": 1 +"Applying Fitbit Charge in Evaluating Cardiovascular Endurance in 10th Grade Physical Education.": 1 +"5th Grade Mathematics: Exploring Geometry through 3D Printing ": 1 +"7th Grade Literature: Understanding Metaphors in Poe’s Works through Animated Storyboards": 1 +"1st Grade Geography: Exploring the Amazon Rainforest with Virtual Tours": 1 +"6th Grade Astronomy: Discovering the Life Cycle of Stars using Augmented Reality": 1 +"In-depth Study on Bird Migration: Utilizing Drones and Infrared Cameras in 4th Grade Biology": 1 +"Fifth Grade History: Understanding the Invention and Impact of the Printing Press": 1 +"2nd Grade English: Grasping Phonics through Interactive E-books": 1 +"12th Grade Sociology: The Influence of Social Media on Modern Politics": 1 +"1st Grade Social Studies: Virtual Field Trip to the Great Wall of China": 1 +"10th Grade Music: Interpreting Rhythmic Patterns in Jazz: An Examination of the Use of Syncopation with an Emphasis on the Swing Rhythm": 1 +"5th Grade Geography: Exploring the Physical Landscapes of Europe through Google Earth": 1 +"3rd Grade History: Delving into Ancient Rome: From Gladiators to the Colosseum": 1 +"8th Grade Physical Education: Mastering Soccer Tactics with Agility Ladder Drills": 1 +"4th Grade Mathematics: Understanding Geometric Shapes with 3D Printing Technology": 1 +"1st Grade Art: Exploring Finger Painting on iPad Pro using Adobe Fresco and Apple Pencil": 1 +"7th Grade Mathematics: Understanding the Science of Probability using Dice & Card Games": 1 +"5th Grade Music: An In-depth Study of Rhythm and Beat using GarageBand on MacBook": 1 +"3rd Grade Science: The Magic of Magnetism: Hands-on Experiments with Magnets": 1 +"2nd Grade Language Arts: Journey into Poetry - Creating Rhymes with RhymeZone Tool": 1 +"6th Grade Geography: Discovering Weather Patterns and Climate Zones with Interactive Globe Software.": 1 +"6th Grade Geography: Exploring Eco-systems through Google Earth and Augmented Reality": 1 +"4th Grade French: Dialogue Mastery by Immersion and Duolingo Assisted Instruction": 1 +"Introduction to 7th Grade Robotics: Building Simple Machines with Lego Mindstorms": 1 +"Understanding Human Physiology: An Insight into the Digestive System in 10th Grade Biology using Virtual Reality": 1 +"8th Grade Art: Discovering the Influence of Impressionism through Virtual Gallery Tours": 1 +"2nd Grade English: Phonics and Spelling Made Easy with Starfall and Interactive Games": 1 +"5th Grade Science: Exploring Solar System with Virtual Reality and Interactive Quizzes": 1 +"10th Grade Economics: Understanding Market Dynamics through Monopoly and Economic Simulation Games": 1 +"3rd Grade Mathematics: Fostering Interest in Fractions with Fun Board Games and Interactive Tools": 1 +"9th Grade Literature: Analyzing Shakespearean Sonnets with the Aid of Digital Humanities Tools.": 1 +"8th Grade Sculpture: Clay Molding Techniques - Exploring Relief and Free-standing Sculptures": 1 +"7th Grade Physical Education: Basketball Dribbling Skills - An In-depth Study using Motion Capture Technology": 1 +"Deciphering the American Legal System: A 12th Grade Course Utilizing AI-based Simulations for Case Study Analysis": 1 +"7th Grade Geography: Discovering Volcanic Landforms using Virtual Reality and Satellite Imaging": 1 +"4th Grade Mathematics: Understanding Decimals through Tangrams and Spatial Reasoning": 1 +"12th Grade Chemistry: Investigating Chemical Reactions with Home Lab Kits and Virtual Simulations": 1 +"9th Grade Music: Deconstructing Beethoven’s Moonlight Sonata with Music Scoring Software, Melodic Mapping, and Harmonic Analysis": 1 +"5th Grade Health: Learning about Body Systems and Wellness through Interactive 3D Models": 1 +"7th Grade History: Unraveling Ancient Egyptian Hieroglyphs with the Help of Computer Vision Technology": 1 +"Understanding Sound Waves: Exploring Vibrato, Resonance, Tuning Forks, and the Use of Audio Editing Software in Sound Engineering for 10th Grade Physics Students": 1 +"3rd Grade Geography: Ancient Egyptian Culture and the Role of the Nile River in Agriculture": 1 +"1st Grade History: Discovering Early American Tools: From the Plow to the Spinning Wheel": 1 +"5th Grade Digital Art: Mastering Vector Design using Line Art and Gradient Tools in Adobe Illustrator": 1 +"Learning with the Montessori Bead Frame: A 3rd Grade Mathematics Course on Conquering Multiplication and Division with Bead Bars": 1 +"7th Grade Music: Understanding the Application of GarageBand in MIDI Keyboard and Bass Tracking in Audio Recording": 1 +"5th Grade Social Studies: The Steam Engine and Power Generation: The Railways in Industrial Revolution History": 1 +"9th Grade History: The Enlightenment Period: The Scientific Method: The Emergence of Empirical Research in European Science": 1 +"4th Grade Science: Studying the Water Cycle and Ocean Currents with the EarthViewer App": 1 +"8th Grade Physical Education: Basics of Gymnastics Incorporating Balance Beams": 1 +"Improving Basic Subtraction Techniques with Montessori Math City App and Interactive Teaching for 3rd Graders": 1 +"5th Grade Science: Exploring the Solar System with Interactive Planetary Models": 1 +"4th Grade Math: Geometric Shapes and Patterns - Learning through Tangram Puzzles": 1 +"2nd Grade Music: Introduction to Percussion Instruments through Interactive Sound Games": 1 +"Kindergarten Health: Understanding Nutrition with Fruit and Vegetable Garden Activities": 1 +"6th Grade Literature: Adventure into Fantasy Worlds - Book Club Discussions on The Hobbit": 1 +"1st Grade Science: Fun with Physics - Learning Simple Machines through Lego Building": 1 +"8th Grade History: The Impact of Industrial Revolution - Interactive Timeline Creation": 1 +"4th Grade Art: Crafting Landscape Silhouettes with Colored Tissue Paper Mosaics": 1 +"3rd Grade Physical Education: Enhancing Coordination with Balance Beam Exercises": 1 +"5th Grade Language Arts: Developing Narrative Skills with Stop-Motion Animation Storytelling": 1 +"5th Grade Mathematics: Discovering Algebraic Equations with Interactive Digital Puzzles": 1 +"4th Grade Music: Understanding Beethoven’s Symphonies Through GarageBand Software": 1 +"7th Grade Art: Introduction to Digital Painting with Adobe Fresco: A Study of Color Theory": 1 +"2nd Grade Language Arts: Exploring Fairy Tales Through Shadow Puppetry": 1 +"5th Grade Science: Investigating Photosynthesis in Aquatic Plants Using Microscopic Imaging": 1 +"1st Grade Mathematics: Number Fun with Interactive Counting Beads": 1 +"7th Grade Social Studies: Ancient Greek Philosophy and its Influence on Western Civilization": 1 +"3rd Grade History: A Virtual Journey Through Medieval Castles": 1 +"7th Grade History: Investigating the Mysteries of the Mayan Temples": 1 +"9th Grade Physical Education: Promoting Wellness through Tai Chi and the Use of Balance Boards": 1 +"6th Grade Geography: The Role of Plate Tectonics in Mountain Formation and 5 Simple Experiments": 1 +"12th Grade Physics: Understanding Quantum Mechanics through Schrödinger’s Equation": 1 +"Using Digital Art Platforms to Explore Color Theory in 7th Grade Art": 1 +"Third Grade History: The Influence of the Printing Press on Knowledge Dissemination in the Renaissance": 1 +"Third Grade History: Early Agricultural Advancements - The Invention of the Seed Drill": 1 +"4th Grade Science: A Beginner’s Guide to Weather Patterns and Climate Zones": 1 +"Kindergarten Science: Discovering Sustainability through DIY Composting Activities: Creating Worm Farms using Recycled Containers": 1 +"9th Grade Music: A Comprehensive Analysis of Synthesizers in Electronic Dance Music Production": 1 +"Elementary Mathematics: Addition and Subtraction Demonstrations Using Manipulatives": 1 +"7th Grade World Cultures: Investigating Cultural Exchange through Asian Silk Trading Routes using Interactive Global Mapping Software": 1 +"8th Grade History: Understanding the Civil War through Personal Narratives and Letters": 1 +"2nd Grade Art: Creating Landscapes with Finger Painting and Collage Techniques": 1 +"Kindergarten Art: Colors of the Rainbow: Introduction to Crayon Art": 1 +"6th Grade Art: Sculpting Basics: Creating Figures with Clay and Papier Mache": 1 +"The Significance of the Space Race in Modern Technology: An 8th Grade History Course on the Cold War": 1 +"2nd Grade Geography: Exploring Landforms and Weather Patterns with Interactive Maps ": 1 +"7th Grade Art: Mastering the Art of Charcoal Drawing and Shadowing Techniques": 1 +"5th Grade Language Arts: The Magic of Storytelling and Creative Writing through Puppet Shows": 1 +"10th Grade Mathematics: Algebra Foundations - Understanding Quadratic Equations ": 1 +"Investigating Alien Life Possibilities through Classic Science Fiction: A 6th Grade Language Arts Course": 1 +"4th Grade Geography: Exploring the Sahara Desert - Impact of Sand Dunes and Wind Patterns": 1 +"3rd Grade Biology: Unraveling the Anatomy of Insects through Leaf Dissection and Microscopic Observations": 1 +"2nd Grade Social Studies: Investigating Local Monuments using Google Street View and Newspaper Clippings": 1 +"12th Grade Dance: Evolution of Ballet: The Emergence of Pointe Work": 1 +"7th Grade Ceramics: Perfecting the Coiling Technique in Clay Modelling": 1 +"2nd Grade Reading: Vocabulary Expansion using Interactive E-books with Oxford Reading Tree Programme": 1 +"6th Grade Chemistry: The Influence of Heat on the Egyptians’ Metal Smelting Techniques": 1 +"2nd Grade Crafts: Concentrating on Glitter, Stencils, and Craft Scissors": 1 +"10th Grade Health Education: Advanced Nutrition and Wellness using Portion Control and Food Diaries": 1 +"7th Grade Athletics: Soccer Skills Mastery: Emphasis on The Bicycle Kick": 1 +"1st Grade Art: Creating Storybook Characters through Clay Modelling and Storytelling": 1 +"2nd Grade Geography: Discovering Landforms using Interactive Maps and Virtual Field Trips": 1 +"5th Grade Science: The Magic of Photosynthesis: Experiments with Plants and Sunlight": 1 +"4th Grade Language Arts: Mastering Metaphors through Poetry and Creative Writing ": 1 +"3rd Grade Mathematics: Understanding Fractions with Pizza Slices and Lego Blocks": 1 +"1st Grade Music: Exploring Rhythm and Beats through Hand Drums and Maracas": 1 +"7th Grade Social Studies: The Impact of the Printing Press during the Renaissance Era": 1 +"2nd Grade Health: Learning about Nutrition through Interactive Food Pyramid Games": 1 +"6th Grade Geography: Mapping the World: Ancient Trade Routes and their Impact on Present Day": 1 +"7th Grade Art: Introduction to Impressionism: Exploring Brush Techniques and Color Schemes": 1 +"4th Grade Science: Discovering the Solar System through Virtual Reality and Interactive Models": 1 +"1st Grade Mathematics: Grasping Addition and Subtraction through Board Games and Number Puzzles": 1 +"8th Grade History: Understanding Global Conflicts through Documentary Analysis": 1 +"5th Grade English Language Arts: Enhancing Vocabulary and Sentence Structure through Creative Writing Workshops": 1 +"7th Grade Physical Education: Improving Basketball Skills with the Shooting Accuracy Training Aid ": 1 +"3rd Grade Art: Exploring Shapes and Colors through Collage Making and Digital Art Platforms": 1 +"6th Grade Geography: Uncovering World Cultures through Virtual Tours and Interactive Maps": 1 +"2nd Grade Music: Introducing Rhythm and Tempo through Percussion Instruments and Beat Matching Games": 1 +"4th Grade Social Studies: Learning About Democracy through Role-Play and Interactive Quizzes": 1 +"5th Grade Science: The Wonders of Weather: Investigating Cloud Formation and the Water Cycle through Experiments and Observations.": 1 +"3rd Grade Environmental Science: The Implications of Wind Power on Energy Conservation": 1 +"4th Grade Language Arts: Enhancing Vocabulary Skills through Online Games, Kahoot Quizzes, and Padlet Discussions": 1 +"7th Grade Music: Tracing the Shift from Baroque to Romantic Music: An In-depth Study of Beethoven’s Symphonies and the Use of Music Notation Software": 1 +"5th Grade Mathematics: Understanding the Concept of Decimals via Virtual Abacus, Grid Method, Interactive Math Tools & Inquiry-Based Learning": 1 +"Composition of Modern Jazz with Miles Davis’s Pieces: A 7th Grade Course Using Music Production Software": 1 +"6th Grade History: The Impact of Telegraph on the Civil War": 1 +"4th Grade Art: Painting Landscapes using Recycled Materials": 1 +"4th Grade Biology: Discovering Marine Life through Virtual Reality": 1 +"7th Grade Social Studies: A Comprehensive Study of the Roman Aqueducts and Their Role in Urban Planning": 1 +"8th Grade Geometry: Exploring Shapes with Augmented Reality Tools and Geometric Modeling Software": 1 +"4th Grade Music: Exploring Rhythms and Melodies with Digital Music Apps on Tablets": 1 +"6th Grade Science: Journey through the Human Body using Virtual Reality Anatomy Platforms": 1 +"3rd Grade Geography: Understanding World Cultures through Interactive 3D Globe Software": 1 +"7th Grade Literature: Analysing Themes in Classic Novels with Collaborative Online Book Clubs": 1 +"1st Grade Mathematics: Building Number Sense with Fun Math Games and Online Puzzles": 1 +"5th Grade Environmental Studies: Exploring Biodiversity and Conservation through Virtual Field Trips": 1 +"6th Grade History: The Civil War and its Impact - The Role of Railroads and Telegraph": 1 +"4th Grade Health: Learning about Nutrition and Food Groups using Augmented Reality Apps": 1 +"3rd Grade English: Improving Reading Comprehension through Storytelling Podcasts": 1 +"8th Grade Geometry: Mastering Shapes and Angles with Interactive 3D Modeling Tools": 1 +"5th Grade Science: Exploring the Life Cycle of Butterflies through Observation and Journaling": 1 +"7th Grade Math: Understanding the Fibonacci Sequence through the Lens of Nature and Art": 1 +"2nd Grade Environmental Studies: Composting and Worm Farms - A Hands-On Approach to Recycling": 1 +"8th Grade Physical Education: Using Virtual Reality for Team-Building and Strategic Thinking in Soccer": 1 +"6th Grade Art: Exploring Texture and Pattern with Clay Sculpture": 1 +"4th Grade History: The Influence of the Printing Press on Medieval Europe": 1 +"9th Grade Music: Developing Melodic Comprehension through GarageBand and MIDI Controllers": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Skills through Interactive Storytelling and Digital Flashcards": 1 +"1st Grade Social Studies: Learning about Community Helpers through Role-Play and Puppetry": 1 +"5th Grade History: The Role of the Telegraph in Civil War Communication.": 1 +"9th Grade English: Exploring Postmodernism Through Graphic Novels": 1 +"4th Grade Mathematics: Understanding Geometry Through Origami Art": 1 +"Delving into the Renaissance: Art, Science, and Humanism - Investigating the Techniques of Da Vinci": 1 +"7th Grade Science: The Solar System Unveiled Through Virtual Reality ": 1 +"2nd Grade English: Mastering Punctuation with Fun Interactive Games": 1 +"5th Grade Physical Education: Enhancing Football Skills Through the Principles of Physics": 1 +"11th Grade Literature: Exploring Dystopian Themes: The Influence of Artificial Intelligence on Society": 1 +"3rd Grade Art: Shapes and Shadows: An Elementary Introduction to Still Life Drawing": 1 +"8th Grade History: The Pyramids: Building Techniques of Ancient Egypt": 1 +"6th Grade Art: Exploring Textures in Clay Sculpting Techniques": 1 +"8th Grade Mathematics: Understanding Geometry through Origami and 3D Modeling Software": 1 +"6th Grade Art: Urban Landscape Sketching, Watercolor Techniques, and Intro to Digital Art": 1 +"Introduction to Engineering: 1st Grade Science using Lego Blocks - Grasping Basic Mechanics": 1 +"Decoding Ancient Hieroglyphs: A 6th Grade Social Studies Course on Egyptian History": 1 +"Health and Wellness Monitoring in 4th Grade Physical Education and Agility Training": 1 +"2nd Grade Geography: Exploring Earth’s Landforms with Topographic Maps, Augmented Reality Technology and Rock Identification": 1 +"6th Grade History: The Impact of the Telegraph in the Civil War and the Expansion of the American West": 1 +"2nd Grade Weather Studies: Understanding Climate Variations with Wind Vanes": 1 +"5th Grade English: Mastering Poetry with Rhyme Schemes and Metaphors": 1 +"3rd Grade Science: The Mysteries of the Ocean: Understanding Marine Life with Underwater Drones": 1 +"3rd Grade Science: Exploring Mars’ Surface using Google Space and Infrared Imaging": 1 +"Second Grade Elementary: Learning about Volcanoes with Virtual Reality Tours": 1 +"Ninth Grade Music: Understanding Rhythm Patterns with GarageBand and Electronic Drum Pads": 1 +"Sixth Grade Science: Fundamentals of Botany through Microscope Observation and Chromatography": 1 +"5th Grade Mathematics: Mastering Geometry through Tangrams and Interactive Websites": 1 +"7th Grade Social Studies: The Impact of the Printing Press on the Evolution of Knowledge and Innovation": 1 +"2nd Grade Physical Education: Learning Basic Soccer Skills in Team Sports": 1 +"3rd Grade Science: Exploring Oceanic Ecosystems Through Virtual Reality Documentaries": 1 +"2nd Grade Language Arts: Enhancing Vocabulary and Sentence Formation Through iPads with ABCmouse App": 1 +"5th Grade Mathematics: Understanding Percentage through Practical Applications and Number Lines": 1 +"3rd Grade Mathematics: Exploring Geometry Concepts through Minecraft Virtual Reality on Oculus Quest": 1 +"5th Grade Language Arts: Journey into Virtual Reality - Detailed Analysis of Oculus Rift S": 1 +"8th Grade Physical Education: Blood Pressure Tracking in Pilates for Improved Cardiovascular Health": 1 +"Interactive Engineering for Teens: Learning Structural Mechanics with K’NEX and Magnetic Tiles": 1 +"5th Grade Life Skills: Discovering Financial Literacy through Budget-Planning Software": 1 +"Medieval History: The Importance of Gutenberg’s Printing Press in the Renaissance Era": 1 +"2nd Grade Environmental Studies: Understanding Composting through Worm Farming: Creating Organic Fertilizer with Kitchen Scraps": 1 +"Perfecting Electronic Literature: A Book Creator Tutorial for 3rd Grade English Language Arts Course": 1 +"12th Grade Military History: The Strategic Value of Submarine Warfare in World War II Period": 1 +"3rd Grade Visual Arts: Understanding Shapes and Patterns Using Collage Art Techniques": 1 +"5th Grade Geography: Mapping Ocean Currents with Satellite Imagery and Google Earth Pro": 1 +"7th Grade Chemistry: Analyzing Chemical Reactions with Interactive 3D Molecular Visualisation Software": 1 +"2nd Grade Art: Exploring Colors and Shapes using Digital Art Platforms": 1 +"10th Grade English: Decoding Metaphors in Classic Literature with AI Text Analysis": 1 +"8th Grade Music: Composing Symphonies with Virtual Orchestral Instruments and Digital Audio Workstations": 1 +"4th Grade Science: Investigating Plant Life-Cycles in Different Biomes using Augmented Reality": 1 +"1st Grade History: Journeying through the Medieval Times using Virtual Reality Storytelling": 1 +"9th Grade Mathematics: Utilizing MATLAB and Python for Understanding Complex Geometric Shapes": 1 +"3rd Grade Social Studies: Discovering Cultural Traditions through Interactive Digital Storybooks": 1 +"11th Grade Physics: Applying Virtual Labs and Python Programming for Quantum Mechanics Analysis": 1 +"5th Grade Mathematics: Mastering Fractions through Interactive Games and Virtual Manipulatives": 1 +"4th Grade Music: Introduction to Rhythm and Beat using Digital Audio Workstations and Sound Sampling Techniques": 1 +"3rd Grade Geography: Enhancing Map Skills through Google Earth Exploration and Virtual Tours": 1 +"7th Grade Literature: Delving into Classic Novels through Character Analysis and Mind Mapping Techniques": 1 +"7th Grade Current Events: Understanding Global Issues through News Article Review and Infographic Creation": 1 +"3rd Grade Language Arts: Boosting Reading Comprehension using the ReadWorks Platform": 1 +"3rd Grade History: Exploring Ancient Civilizations with Timeline Activities": 1 +"2nd Grade Science: Learning about Weather Patterns through DIY Weather Station Projects": 1 +"1st Grade Art: Exploring Shapes and Patterns using Tangram Puzzles and Collage Art": 1 +"5th Grade Health: Understanding Nutrition and Healthy Eating with Interactive Meal Planning Activities": 1 +"2nd Grade Mathematics: Fun with Numbers - Understanding Addition through Interactive Virtual Games": 1 +"8th Grade Science: Exploring the Human Anatomy using 3D Printing": 1 +"Kindergarten Environmental Studies: Learning about Recycling through DIY Craft Projects": 1 +"11th Grade Chemistry: Organic Compounds and their Role in Pharmaceutical Drugs": 1 +"2nd Grade Music: Discovering Rhythm and Melody with Handmade Percussion Instruments": 1 +"7th Grade Health Education: The Importance of Hydration - Understanding Water’s Role in Human Body": 1 +"4th Grade History: A Deep Dive into Ancient Egyptian Civilization through Virtual Reality": 1 +"10th Grade Social Studies: The Influence of Industrial Revolution on Modern Economy": 1 +"6th Grade Art: Creating a Color Wheel - Understanding Primary and Secondary Colors through Paint Mixing": 1 +"5th Grade Geography: Mapping the World - Learning about Continents and Oceans using Interactive Globe": 1 +"5th Grade History: Understanding American Civil War through Augmented Reality and Virtual Tours": 1 +"6th Grade Mathematics: Exploring Geometry and Shapes Using SketchUp and 3D Printing": 1 +"9th Grade Biology: Investigating Ecosystems and Biodiversity with Virtual Field Trips and Simulation Games": 1 +"1st Grade Reading: Phonics and Early Reading Skills Development using ABCmouse and Starfall": 1 +"8th Grade Computer Science: Introduction to Coding through Scratch and Raspberry Pi": 1 +"2nd Grade Science: Exploring Earth’s Biomes with Google Earth and Interactive Puzzles": 1 +"10th Grade English: Analyzing Shakespearean Plays through Immersive Theater and Podcasts": 1 +"4th Grade Art: Exploring Famous Paintings and Sculptures through Virtual Museum Tours": 1 +"7th Grade Spanish: Immersive Language Learning with Rosetta Stone and Duolingo": 1 +"3rd Grade Geography: Understanding World Maps and Navigation using Google Maps and Geoguessr Games": 1 +"3rd Grade Geography: The Formation of Continents - Understanding Plate Tectonics": 1 +"Enhancing Subtraction Skills in 1st Grade Mathematics through the Prodigy Math Game: Making Learning Fun through Gamification": 1 +"Promoting Healthy Eating and Understanding Nutrition in 5th Grade Health Education: Using MyFitnessPal App": 1 +"7th Grade Economics: The Impact of Gold Standard on Global Trade and Economy": 1 +"Beethoven’s Symphonies in 7th Grade Music: An Analysis with GarageBand - A Journey into Orchestral Music": 1 +"Second Grade Reading: Exploring the Magical World of Harry Potter Using E-Books": 1 +"8th Grade Social Studies: The Role of Ancient Roman Roads in Trade and Economy": 1 +"Detailed Study on Photosynthesis: Using Digital Microscopes in 3rd Grade Botany": 1 +"1st Grade Mathematics: Division Discovery using the Waldorf Method": 1 +"4th Grade History: The Influence of the Printing Press on the Renaissance: An Examination of 10 Pivotal Events": 1 +"5th Grade Music: Exploring Rhythms with Hand Drumming Techniques": 1 +"3rd Grade Geography: Understanding Climate Zones through Interactive Globes": 1 +"The Significance of Morse Code in World War II: A 7th Grade Investigation": 1 +"1st Grade English: Introducing Fairy Tales with Digital Storybooks": 1 +"3rd Grade Mathematics: Mastering Subtraction with Augmented Reality Games": 1 +"5th Grade Science: The Steam Engine, Its Innovators and Impact on the Industrial Revolution": 1 +"Ballet for 6th Grade: Enhancing Pointe Technique through Yoga Flexibility Exercises": 1 +"7th Grade Economics: The Invention of Coins and its Impact on Ancient Trade": 1 +"Kindergarten Art: Learning Shapes and Colors Through Collage Making": 1 +"The Role of Silk in the Development of the Ancient Silk Road: A 4th Grade History Course": 1 +"3rd Grade Physical Education: Basic Gymnastics and Tumbling Techniques": 1 +"4th Grade Health: Understanding Body Systems Through Interactive Online Models": 1 +"3rd Grade Social Studies: Understanding Cultural Diversity through Online Globe Exploration": 1 +"7th Grade Music: Introduction to Digital Sound Editing with Audacity": 1 +"3rd Grade Science: Exploring Animal Habitats Using Virtual Reality": 1 +"1st Grade Environmental Studies: Understanding Recycling and Its Role in Saving the Planet": 1 +"7th Grade Social Studies: Exploring the Renaissance through Digital Time Travel": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Using Digital Word Games and Online Reading": 1 +"7th Grade English: Poetry Writing Using Simile and Metaphor": 1 +"7th Grade Language Arts: Enhancing Storytelling with Digital Storyboarding and Audiobook Creation": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals with Virtual Manipulatives and Interactive Whiteboard": 1 +"6th Grade History: Exploring Ancient Civilizations through Virtual Reality Tours and Interactive Timelines": 1 +"7th Grade Physical Education: Improving Coordination and Balance with Virtual Reality Games and Motion Sensors": 1 +"1st Grade Music: Discovering Rhythm and Beat with Digital Drum Kits and Interactive Sound Apps": 1 +"2nd Grade Social Studies: Understanding Community Roles through Role Play and Digital Simulation": 1 +"4th Grade Technology: Coding Basics with Scratch and Raspberry Pi: A Focus on Game Design": 1 +"3rd Grade Art: Exploring Abstract Art through Digital Canvas and Touch Screen Technology": 1 +"1st Grade Science: Understanding Weather Patterns with Interactive Weather Station Kits": 1 +"5th Grade English: Enhancing Vocabulary Skills with Gamified Learning Apps and Interactive Quizzes": 1 +"2nd Grade Geography: Discovering Landforms and Bodies of Water through Augmented Reality Globe and Interactive Maps": 1 +"4th Grade Art: Exploring Renaissance Paintings with Virtual Reality Technology": 1 +"7th Grade Mathematics: Comprehending Algebraic Expressions through Interactive Mobile Apps": 1 +"1st Grade Science: The Magic of Rainbows: Understanding Light Refraction": 1 +"5th Grade Geography: Navigating World Maps with Google Earth Virtual Tours": 1 +"8th Grade History: Deciphering the French Revolution through Detailed Study of Political Cartoons": 1 +"3rd Grade Music: Enhancing Rhythm Skills with Interactive Beats and Melody Software": 1 +"7th Grade Health: Learning about Human Anatomy through 3D Body Systems App": 1 +"Kindergarten Mathematics: Learning Numbers and Shapes with Interactive Touch Screen Games": 1 +"5th Grade Social Studies: Understanding Cultural Diversity through Virtual Field Trips": 1 +"9th Grade Biology: Exploring Genetics and DNA Sequencing with the CRISPR-Cas9 System.": 1 +"5th Grade Science: Understanding Photosynthesis through Interactive Plant Growth Simulations": 1 +"3rd Grade Geography: Understanding Global Landforms through Google Earth Exploration": 1 +"9th Grade Computer Science: An Introduction to Python Programming with Codecademy": 1 +"4th Grade Spanish: Improving Pronunciation Skills through Duolingo Voice Recognition": 1 +"7th Grade History: Examining Medieval Europe through Virtual Reality Castle Tours": 1 +"2nd Grade Environmental Studies: Learning about Recycling through Interactive Sorting Games": 1 +"6th Grade Music: Composing Basic Melodies using GarageBand on iPads": 1 +"1st Grade Mathematics: Subtraction Fun with Number Line Activities on the Mathseeds App": 1 +"8th Grade Art: Discovering Digital Painting Techniques with Adobe Fresco": 1 +"10th Grade Physical Education: Monitoring Heart Rate during Exercise using Smart Watches": 1 +"4th Grade History: Understanding the Civil War through Virtual Reality Simulations": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction through Interactive Play-Doh Counters": 1 +"5th Grade Physical Education: Soccer Techniques and Fitness Monitoring with Smart Watches": 1 +"2nd Grade Art: Exploring the World of Textures and Patterns with Paper Mache and Felt Crafts": 1 +"6th Grade Environmental Science: Studying the Impact of Climate Change on Animal Habitats using Simulation Models": 1 +"7th Grade Mathematics: Grasping the Basics of Algebra using Gamified Mobile Apps": 1 +"3rd Grade Health: Learning about the Food Pyramid and Healthy Eating through Puppet Show Narratives": 1 +"4th Grade Music: Discovering Rhythm and Melody with Percussion Instruments and Music Composition Apps": 1 +"5th Grade Geography: Virtual Tour of American Landmarks using Augmented Reality": 1 +"2nd Grade Literature: Understanding Story Elements and Character Development through Interactive Storybooks": 1 +"6th Grade Mathematics: Exploring Fractions and Decimals through Digital Learning Platforms": 1 +"3rd Grade Science: Discovering the Solar System with Interactive Space Simulations": 1 +"9th Grade Biology: Understanding Human Anatomy using 3D Modeling Tools": 1 +"4th Grade Geography: Exploring World Landforms Using Virtual Field Trips": 1 +"7th Grade Environmental Studies: The Impact of Renewable Energy on Sustainable Development": 1 +"8th Grade English Language Arts: Enhancing Narrative Writing through Storyboarding Techniques": 1 +"5th Grade Social Studies: Unraveling Ancient Civilizations through Augmented Reality": 1 +"2nd Grade Art: Understanding Symmetry in Nature through Collage Creation": 1 +"10th Grade History: Exploring World War II through Film Analysis and Discussion": 1 +"1st Grade Language Arts: Phonics Mastery with Interactive Games and Digital Flashcards": 1 +"5th Grade History: Discovering Ancient Civilizations through Virtual Reality Tours": 1 +"1st Grade Mathematics: Engaging with Shapes and Patterns using Interactive Games": 1 +"7th Grade Social Studies: Understanding Economic Systems - Emphasizing on Sustainable Practices": 1 +"1st Grade Art: Learning Basic Drawing Techniques with Digital Painting Tools": 1 +"4th Grade Science: Journey into Space - Utilizing Online Platforms for Astronomy Studies": 1 +"4th Grade English: Enhancing Vocabulary Skills through Gamified Spelling Apps": 1 +"Learning to Compose: Using Keyboard and Music Composition Software for Melody Creation in 3rd Grade Music": 1 +"10th Grade English: Decoding Poetry with Augmented Reality Annotations": 1 +"Creative Writing with Digital Notebooks: A Fresh Approach to 3rd Grade Language Arts": 1 +"5th Grade Science: Exploring the Human Body Systems Through Virtual Dissection Tools": 1 +"6th Grade Literature: Exploring Shakespeare’s World through Virtual Reality and Google Books": 1 +"3rd Grade Geography: Discovering Landforms and Water Bodies with Google Earth and Topographic Maps": 1 +"8th Grade Physical Education: Basics of Basketball and Soccer": 1 +"Mastering Multiplication in 3rd Grade Mathematics through the Mathway App: A Focus on Times Tables": 1 +"7th Grade Art: Exploring Abstract Acrylic Pouring Techniques with Silicone Oil and Palette Knives": 1 +"6th Grade Science: Understanding Solar System and Planetary Movements through Mobile Planetariums": 1 +"Second Grade Environmental Studies: Water Cycle Analysis using Interactive Digital Simulations": 1 +"5th Grade Science: Investigating Plant Life Cycles through DIY Greenhouses and Time-lapse Photography": 1 +"1st Grade Elementary Music: Melody Basics with Xylophones": 1 +"2nd Grade French: Developing Vocabulary and Phrases Proficiency with Duolingo and Quizlet Flashcards": 1 +"5th Grade Geography: Investigating Weather Patterns through Digital Maps": 1 +"8th Grade Literature: Decoding the Renaissance through Shakespeare’s Sonnets": 1 +"3rd Grade Physical Education: Soccer Skill Development and Heart Rate Monitoring": 1 +"7th Grade Technology: Understanding the Impact of Telephones on Global Communication": 1 +"1st Grade History: Learning about Ancient Egyptian Innovations: The Pyramids and Their Role in Cultural Evolution": 1 +"Creating Storyboards in 4th Grade English: Plot Development with Google Slides": 1 +"5th Grade Math: Understanding Probability through Microsoft Excel and Machine Learning Concepts": 1 +"3rd Grade Art: Crafting Origami Art Inspired by Japanese Edo Period ": 1 +"Exploring Rhythm and Melody with Keyboards using Music Maker Jam for 1st Graders": 1 +"Preschool Health and Wellness: Learning about Healthy Eating with Interactive Food Pyramids": 1 +"8th Grade Art: Introduction to Color Theory and Composition Techniques": 1 +"6th Grade Biology: The Intriguing World of Marine Life: Deep Sea Creatures and their Adaptations": 1 +"10th Grade English Literature: Exploring Character Development through Modern Fiction": 1 +"Second Grade Math: Learning Fractions with Interactive Digital Tools": 1 +"The Invention of Wheel, Iron Tools, and the Role of Human Effort in Building the Pyramids: A Course for 5th Grade History": 1 +"8th Grade History: The Fascinating World of Greek Mythology and its Symbolism ": 1 +"Evaluating the Impact of Wind Turbine on Local Bird Populations: The Role of Drone Technology ": 1 +"12th Grade Physics: The Influence of the Steam Engine on Transportation during the Industrial Age ": 1 +"3rd Grade History: The Impact of Railroads in Westward Expansion in America ": 1 +"9th Grade Physical Education: Promoting Fitness and Well-being through Gamified Exercise Apps": 1 +"3rd Grade Science: Learning about Photosynthesis through Interactive Digital Gardens": 1 +"5th Grade History: Exploring the Mayan Civilization with Virtual Reality and Storytelling": 1 +"6th Grade Physical Education: Understanding Football and Performance Tracking Technology": 1 +"8th Grade English: The Intricacies of Poetry: Enhancing Imagery through Clay Sculpting": 1 +"The Magic of Harmonics: Guitar String Tuning, Finger Placement and the Role of Tuning Apps in 10th Grade Music": 1 +"1st Grade Science: Using Virtual Reality to Explore the Solar System": 1 +"5th Grade Mathematics: Implementing Math Applications in Understanding Multiplication with Arrays": 1 +"7th Grade Language Arts: Incorporating Trello for Organizing Ideas and Developing Character Profiles": 1 +"2nd Grade Language Arts: Introduction to Fairy Tales with Digital Storytelling Tools": 1 +"6th Grade Physical Education: Perfecting Basketball Shooting Techniques with Motion Analysis Technology": 1 +"5th Grade History: Discovering Ancient Civilizations through Augmented Reality Adventures": 1 +"11th Grade Physics: Exploring the Laws of Motion through Interactive Online Simulations": 1 +"Kindergarten Music: Introduction to Musical Instruments using Interactive Sound Boards": 1 +"11th Grade American Literature: Delving into Symbolism through Classic Novels": 1 +"Mastering Multiplication: Engaging with Times Tables in 3rd Grade Math through Fun Online Games": 1 +"1st Grade Science: Exploring the Animal Kingdom with Interactive Digital Flashcards": 1 +"4th Grade English: Developing Narrative Skills through Storytelling Apps": 1 +"8th Grade World History: The French Revolution and its Influence on Modern Democracy": 1 +"3rd Grade Physical Education: Learning About Healthy Habits Through Interactive Online Modules": 1 +"6th Grade Geometry: Understanding Shapes and Angles through Virtual Reality Puzzles": 1 +"7th Grade Math: Understanding Geometry Concepts through Minecraft: A Focus on Pythagorean Theorem": 1 +"5th Grade Science: Exploring the Solar System using Star Walk 2 and 3D Printing Models": 1 +"Middle Ages in 7th Grade History: The Influence of Blacksmithing on Medieval Warfare": 1 +"8th Grade Literature: Analyzing Modern Themes and Symbolism in Graphic Novels on Kindle Devices through Smart Boards": 1 +"5th Grade Earth Science: Interactive Study of Volcanoes and Earthquakes through Augmented Reality Apps and Virtual Tours": 1 +"Kindergarten Geography: Learning about Continents and Oceans through Interactive Map Software and Storytelling": 1 +"Basketball Dribbling and Shooting Techniques with Motion-Sensor Technology in 2nd Grade Physical Education": 1 +"4th Grade Language Arts: Improving Grammar and Sentence Structure with Grammarly through Chromebooks": 1 +"1st Grade Art: Color Theory and Mixing Unveiled through Paint 3D": 1 +"4th Grade Literature: Analyzing Humor and Satire in Children’s Books through Digital Storyboarding Tools": 1 +"1st Grade Science: Exploring Basic Botany with Seedling Planting and Growth Observations": 1 +"2nd Grade Physical Education: Promoting Fitness through Fun Dance Routines and YouTube Workout Videos": 1 +"10th Grade Literature: Analyzing Symbolism in Orwell’s Animal Farm with AI Text Analysis Tools": 1 +"5th Grade Geography: Immersive Study of African Landscapes using Oculus Virtual Reality and Interactive Quizzes": 1 +"8th Grade Economics: The Industrial Revolution: Impact of the Steam Engine on Global Trade and Economies": 1 +"2nd Grade Craft: Learning Paper Mache and Collage Art Techniques": 1 +"7th Grade Civics: Understanding Democracy through Role-Play and Debate using Video Conferencing Tools": 1 +"3rd Grade Reading: Fairy Tales and Mythology Explored through Audiobooks using Audible for Kids": 1 +"5th Grade Art: Mastering Landscape Drawing and Watercolor Techniques with Prisma Watercolor Pencils": 1 +"2nd Grade Science: Investigating Weather Patterns with Interactive Weather Station and Augmented Reality Apps": 1 +"5th Grade English: Enhancing Vocabulary through Interactive Storytelling Games": 1 +"3rd Grade Art: Exploring Watercolor Techniques through Creative Nature Scenes": 1 +"7th Grade History: Understanding Ancient Civilizations through Virtual Reality Simulations": 1 +"1st Grade Science: Discovering The Animal Kingdom with Interactive iPad Apps": 1 +"5th Grade Geography: Mastering World Capitals through Fun Online Quizzes": 1 +"2nd Grade Reading: Boosting Comprehension with Illustrated Children’s Literature": 1 +"4th Grade Physics: Understanding Forces and Motion through Lego Robotics": 1 +"6th Grade Home Economics: Learning Basic Cooking Skills through Hands-on Kitchen Experiments": 1 +"3rd Grade Music: Introduction to Piano Playing with Fun Rhythm Games": 1 +"7th Grade Art: Exploring 3D Modeling with Clay and Stop Motion Animation": 1 +"3rd Grade Art: Exploring Watercolor Techniques using Digital Painting Apps": 1 +"8th Grade Literature: Unraveling Shakespeare’s Plays through Interactive Reading Platforms": 1 +"Understanding Economy: An Overview of Global Trade in 9th Grade Economics": 1 +"1st Grade Math: Grasping Addition and Subtraction through Educational Gaming Apps": 1 +"3rd Grade Geography: Continents and Oceans: The Role of Plate Tectonics": 1 +"3rd Grade Archaeology: Discovering the Secrets of Ancient Egypt using Virtual Reality Tools": 1 +"3rd Grade Environmental Science: Investigating Rainforest Ecosystems Through Drone-Captured Footage": 1 +"5th Grade History: The American Revolution: Understanding the Battle Strategies through Interactive Maps": 1 +"Kindergarten Music: Learning Rhythm and Beat through Interactive Percussion Instruments": 1 +"Our Green Earth: Discovering Plant Life Cycles through Gardening - A First Grade Biology Course": 1 +"4th Grade Physics: Understanding Gravity with Hands-On Experiments and Simulations": 1 +"6th Grade Biology: Exploring Human Anatomy through Virtual Dissection on Unity Software": 1 +"Second Grade Computer Science: Creating Simple Animations in Scratch": 1 +"3rd Grade English: Mastering Grammar through Interactive Quizzes and Games on Kahoot": 1 +"8th Grade Music: Discovering Jazz Through Improvisation and Sound Engineering with GarageBand": 1 +"4th Grade Geography: Exploring World Cultures and Landmarks with Google Earth": 1 +"7th Grade Mathematics: Number Theory and Cryptography with Python Programming": 1 +"Kindergarten Science: Discovering Seasons and Weather Patterns through Interactive Activities": 1 +"9th Grade History: Decoding Ancient Civilizations with Augmented Reality": 1 +"6th Grade Physical Education: Understanding Fitness and Nutrition with Interactive Workouts and Meal Planning.": 1 +"4th Grade Geography: Understanding World Maps and Globes through Google Earth": 1 +"7th Grade Physics: Exploring Newton’s Laws with Virtual Reality Simulations": 1 +"3rd Grade Biology: Learning about Life Cycles with Lego and Stop-Motion Animation": 1 +"11th Grade Calculus: Introduction to Derivatives with Graphing Calculators": 1 +"First Grade Writing: Developing Handwriting Skills with Interactive Tablets": 1 +"5th Grade Literature: Exploring Mythology and Legends Using Kindle eBooks and Online Discussion Boards": 1 +"Pre-School Social Studies: Understanding Community Helpers through Role-Play and Puppets": 1 +"3rd Grade Music: Discovering Rhythms with GarageBand and Virtual Instruments": 1 +"1st Grade Art: Creating Mosaics with Virtual Paint and Digital Design Tools": 1 +"6th Grade Geometry: Understanding Angles and Shapes through Minecraft and 3D Modeling Tools": 1 +"7th Grade Geography: Examining Climate Shifts Using Interactive Global Warming Models": 1 +"5th Grade Science: Exploring the Life Cycle of Butterflies Using Digital Microscopes": 1 +"9th Grade Physics: Delving into Quantum Mechanics Through Light Particle Experiments": 1 +"11th Grade History: Understanding the Strategic Importance of Naval Warfare in World War II": 1 +"5th Grade History: The Influence of Greek Philosophy on Modern Thought": 1 +"3rd Grade Music: Learning the Basics of Harmony Through the Ukulele ": 1 +"7th Grade Science: Grasping the Concept of Gravity with Simple Pendulum Experiments": 1 +"9th Grade Art: Mastering the Art of Digital Sculpting Using 3D Printers": 1 +"8th Grade Art: Creating Landscape Artworks Using Oil Pastels ": 1 +"4th Grade Science: Discovering the Solar System Using Interactive Augmented Reality Tools": 1 +"4th Grade Mathematics: Understanding Geometry with Augmented Reality Technology": 1 +"2nd Grade Science: Introducing Photosynthesis through the Use of Microscopic Imagery": 1 +"7th Grade English: Enhancing Writing Skills through Interactive Storytelling Applications": 1 +"1st Grade Art: Exploring Shapes and Colors using Digital Design Software": 1 +"Kindergarten Music: Introduction to Rhythm and Melody through Interactive Sound Games": 1 +"5th Grade Physical Education: Tracking Steps and Calories for Health and Fitness Awareness": 1 +"3rd Grade Environmental Studies: Discovering the Importance of Recycling through Interactive Projects": 1 +"6th Grade Art: Learning to Sketch and Paint using Watercolors and Brush Techniques": 1 +"4th Grade Science: Investigating the Solar System through Virtual Reality Experiences": 1 +"1st Grade Language Arts: Mastering Phonics through Interactive Digital Flashcards": 1 +"5th Grade Science: Exploring Human Body Systems using Interactive 3D Models": 1 +"7th Grade Mathematics: Applying Probability and Statistics in Real Life Scenarios": 1 +"4th Grade Music: Understanding Melody and Harmony through Keyboard Playing ": 1 +"8th Grade Literature: Analyzing Character Development in Contemporary Novices using Audiobooks and Podcasts": 1 +"6th Grade Science: Exploring the World of Dinosaurs through Augmented Reality": 1 +"5th Grade Social Studies: Ancient Greek Mythology and its Influence on Modern Culture": 1 +"7th Grade English: Enhancing Writing Skills through Blogging and Digital Media ": 1 +"9th Grade Math: Exploring Algebraic Expressions using Interactive Software": 1 +"4th Grade Physical Education: Gymnastics Fundamentals - Balance and Flexibility Drills": 1 +"3rd Grade Art: Learning Basic Sketching Techniques through Digital Drawing Tools": 1 +"5th Grade Physical Education: Understanding the Basics of Yoga through Interactive Online Sessions": 1 +"6th Grade History: Navigating the Ancient Egyptian Civilization with Augmented Reality Tours": 1 +"7th Grade Physical Education: Learning the Mechanics of Swimming and the Importance of a Balanced Diet": 1 +"11th Grade Music: Exploring the Intricacies of Jazz with Digital Audio Workstations": 1 +"Analyzing Existential Themes in Modern Science Fiction in 12th Grade Literature": 1 +"4th Grade English: Discovering African Folklore through Senegalese Sand Art Using Digital Tablets and Smart Boards": 1 +"7th Grade Music: Tracing the Roots of Folk Music, the Mandolin, and the Concept of Harmony": 1 +"10th Grade Music: Discovering Milestones in Country Music History using Digital Audio Workstations": 1 +"4th Grade Geography: Introducing the Solar System - A Guide to Astronomical Information Systems (AIS)": 1 +"12th Grade Science: Nanotechnology and the Future of Medicine": 1 +"2nd Grade Science: Exploring the Solar System with Virtual Reality Technology": 1 +"7th Grade Drama: Understanding Greek Tragedies through Live Performances": 1 +"2nd Grade Music: Exploring Sound Waves with Digital Audio Software": 1 +"The Transformation of Communication: 11th Grade Information Technology, Focusing on the Telegraph and the Impact of the Internet": 1 +"In-depth Study of 10th Grade Yoga Practices in Health and Fitness using Virtual Reality": 1 +"7th Grade Geography: Climate Change: The Impact of Renewable Energy and Recycling": 1 +"4th Grade Archaeology: Unraveling the Mayan Civilization with Virtual Reconstructions in Augmented Reality": 1 +"The Influence of Violin in Vivaldi’s Compositions: An In-depth 7th Grade Study of Baroque Music using Music Notation Software": 1 +"10th Grade Nutrition: Achieving Health through Mediterranean Diet, Antioxidant Awareness, and Hydration Tracking": 1 +"4th Grade Art: Mastering Landscape Drawing with Pastel Chalks and Oil Pastels": 1 +"7th Grade Social Studies: Exploring the French Revolution through Interactive Timeline and Augmented Reality Software": 1 +"11th Grade Art: Investigating the Techniques of Van Gogh Through Digital Painting Tools and Color Theory ": 1 +"3rd Grade Science: Uncovering the Wonders of Life Cycle with Butterfly Metamorphosis and Time-lapse Photography": 1 +"6th Grade Environmental Science: Solar Energy and Its Role in Sustainable Development: A Practical Approach ": 1 +"9th Grade Geography: Understanding the Relationship between Urbanization and Deforestation using Geospatial Technology": 1 +"Delving into Healthy Lifestyle: Incorporating Fitbit, MyFitnessPal App and Basic Exercise Physiology in a 10th Grade Health Education Course.": 1 +"2nd Grade Earth Science: Exploring Weather Patterns and Climate Zones through Interactive Globe and Weather Forecasting Tools": 1 +"10th Grade History: The Influence of the Silk Road, Maritime Routes, and the Compass in the Medieval Trade Era": 1 +"4th Grade Music: Learning Melody and Harmony with the Ukulele, Music Creation Software, and Chord Progressions": 1 +"6th Grade Mathematics: Engaging in Fractions and Decimals using Math Learning Platforms and Gamified Education Apps": 1 +"5th Grade Biology: Exploring Animal Adaptations through Augmented Reality Technology": 1 +"7th Grade Geography: Navigating World Landforms using Google Earth": 1 +"12th Grade Physics: The Influence of Quantum Mechanics on Modern Technology": 1 +"Understanding Cardiovascular Health: 10th Grade Health Education Course on Exercise and Heart Rate Monitoring": 1 +"3rd Grade Language Arts: Enhancing Reading Comprehension through Interactive Storytelling": 1 +"9th Grade Philosophy: Delving into the Ethical Implications of AI in Society": 1 +"7th Grade Music: Decoding the Rhythms of Samba using Percussion Instruments": 1 +"1st Grade Environmental Studies: Discovering the Role of Insects in Ecosystems": 1 +"4th Grade English: Mastering Pronoun Usage through Interactive Grammar Games": 1 +"1st Grade Art: Discovering Textures and Patterns through Leaf Rubbing Activities": 1 +"3rd Grade Science: Exploring Botany: Plant Life Cycles with Interactive 3D Models": 1 +"5th Grade Physical Education: Essentials of Volleyball: Serving and Spiking Techniques": 1 +"Kindergarten Physical Education: Introduction to Coordination through Fun Dance Routines": 1 +"2nd Grade Geography: Journey Through Continents and Oceans Using Interactive Globe Apps": 1 +"3rd Grade Mathematics: Multiplication Mastery through Grid Method and Fun Math Puzzles": 1 +"8th Grade Music: Understanding Rhythms and Beats with Drumming Software": 1 +"4th Grade Art: Exploring Textures in Pottery": 1 +"1st Grade Science: Introduction to Weather Systems: Clouds, Rain Cycles, and Weather Maps": 1 +"7th Grade Mathematics: Geometry Basics: Angles, Shapes, and Pythagorean Theorem": 1 +"1st Grade Art: An Introduction to Sculpting with Play Dough": 1 +"5th Grade Art: Discovering Color Theory with Digital Painting Software": 1 +"Second Grade Geography: Understanding Climate Zones through Interactive Maps and Games": 1 +"Mastering Melodies with Xylophones: A Kindergarten Music Course": 1 +"6th Grade Computer Science: Introduction to Mobile App Development with MIT App Inventor": 1 +"2nd Grade Music: Understanding Tempo and Rhythm using Classroom Percussion Instruments and Music Maker Jam Software": 1 +"11th Grade Physics: Exploring Newtonian Mechanics with PhET Simulations": 1 +"9th Grade Literature: Analyzing Gothic Novels through Project Gutenberg using Text Mining Techniques with R": 1 +"Exploring Ancient Egypt: Using AR Technology in 5th Grade History Lessons": 1 +"3rd Grade Writing: Expressing Thoughts about Future Technology - The Influence of Robotics": 1 +"8th Grade Literature: Unveiling Drama: An Insightful Study of Monologues, Stage Directions, and One-Act Plays": 1 +"6th Grade Art: Creating Stop Motion Animations with Recyclable Materials": 1 +"10th Grade Geometry: Understanding 3D Shapes and Theorems Using Virtual Reality": 1 +"3rd Grade Music: Composing Simple Melodies with Digital Audio Workstations": 1 +"1st Grade Science: Exploring the Solar System through Interactive Augmented Reality ": 1 +"7th Grade Health: Understanding Nutrition and Dietary Choices through Meal Planning Software": 1 +"11th Grade Physics: Mastering Quantum Mechanics with Interactive Simulations": 1 +"4th Grade Geography: Exploring World Cultures through Virtual Reality Experiences": 1 +"5th Grade Environmental Studies: Impacts of Climate Change on our Local Ecosystem": 1 +"9th Grade Physical Education: Building Endurance and Flexibility through Pilates and Resistance Bands": 1 +"2nd Grade Biology: Discovering Animal Habitats using Interactive Digital Maps": 1 +"7th Grade Science: Exploring the Solar System with Virtual Reality Technology": 1 +"4th Grade Geography: Understanding Topography through 3D Modeling and Interactive Maps": 1 +"9th Grade Music: Analysis of Beethoven’s Symphonies with Gesture Controlled Software": 1 +"3rd Grade Art: Fundamentals of Watercolor Painting with Digital Art Tools": 1 +"8th Grade Mathematics: Grasping Geometry with 3D Printing and Geometric Software": 1 +"5th Grade Environmental Studies: Coral Reefs and Climate Change: Studying the Impact with Virtual Dive Technology": 1 +"2nd Grade Reading: Phonemic Awareness through Interactive Storytelling Apps": 1 +"6th Grade History: The Civil War: A Deep Dive through Augmented Reality": 1 +"4th Grade English: Enhancing Vocabulary through Gamified Language Apps": 1 +"7th Grade World History: Ancient Civilizations and their Agricultural Practices with Virtual Field Trips": 1 +"4th Grade Biology: Discovering Plant Life Cycles Through Time-Lapse Photography": 1 +"7th Grade Mathematics: Understanding Geometry Using Origami and 3D Modeling Software": 1 +"3rd Grade Art: Creating Story Scenes with Clay Animation": 1 +"7th Grade History: Examining the Renaissance Period through Virtual Reality Tours": 1 +"2nd Grade Music: Introduction to Musical Instruments with Interactive Sound Games": 1 +"6th Grade Language Arts: Improving Creative Writing Skills with Digital Storyboarding": 1 +"1st Grade Science: Exploring Weather Patterns with Interactive Meteorological Maps": 1 +"5th Grade Social Studies: Understanding Government Structures through Role-Play Simulations": 1 +"8th Grade Art: Studying Perspective and Depth in Renaissance Paintings": 1 +"4th Grade Music: Understanding Melody and Harmony through Virtual Choir Practice": 1 +"6th Grade Physical Science: Understanding Newton’s Laws with Virtual Reality": 1 +"2nd Grade Mathematics: Introduction to Time and Calendar using Interactive Clocks": 1 +"8th Grade Literature: Analyzing Symbolism in Classic Novels with Google Classroom": 1 +"Kindergarten Art: Exploring Shapes and Colors through Augmented Reality Applications": 1 +"4th Grade Geography: Discovering Continents and Oceans using Interactive Globe": 1 +"8th Grade Music: Understanding Harmony and Chords with Virtual Piano Software": 1 +"5th Grade Science: Exploring the Solar System through Immersive Virtual Tours": 1 +"2nd Grade English: Enhancing Vocabulary with Interactive Word Games": 1 +"6th Grade History: Examining Ancient Egyptian Pyramids: Role of Levers in Construction Techniques": 1 +"1st Grade Social Studies: Learning about Community Helpers with Animated Videos": 1 +"5th Grade Mathematics: Exploring Geometry with Roblox Studio and Google Meet": 1 +"3rd Grade History: Learning about Ancient Egypt with ARKit Augmented Reality Tools": 1 +"World War II and the Impact of Airborne Warfare: An 8th Grade History Course": 1 +"6th Grade Art: Brush Strokes of Impressionism - Grasping Light and Shadow": 1 +"4th Grade Science: Learning about the Solar System using Star Walk 2’s Virtual Reality": 1 +"10th Grade Geography: Understanding the Ecosystem of Amazon Rainforest through Virtual Reality using Oculus Rift and Google Earth VR": 1 +"8th Grade Science: Unraveling the Mysteries of DNA using Augmented Reality": 1 +"7th Grade English: The Influence of the Printing Press on Renaissance Literature": 1 +"5th Grade Social Studies: The Role of Solar Power in Modern Energy Production": 1 +"6th Grade History: Understanding the Impact of Fire in Early Human Civilizations": 1 +"4th Grade Mathematics: Understanding Geometry through Origami Crafting": 1 +"2nd Grade English: Improving Vocabulary and Sentence Structure with Interactive Storytelling Games": 1 +"Fourth Grade Oceanography: Discovering Marine Biodiversity through Virtual Field Trips": 1 +"2nd Grade Art: Expressing Emotions through Watercolor Techniques": 1 +"6th Grade Science: The Solar System - An Introduction through Augmented Reality": 1 +"7th Grade History: Unraveling Ancient Civilizations and Their Trade Systems in the Silk Road": 1 +"7th Grade Music: Navigating Digital Audio Workstations in Understanding Beethoven’s Symphonic Compositions": 1 +"1st Grade Environmental Science: Discovering Local Flora and Fauna through Nature Walks and Leaf Pressing Activities": 1 +"Quizizz for Fourth Grade Geography: Learning World Capitals through Interactive Online Quizzes": 1 +"Investigating the Role of Blues in the Evolution of Rock Music in 5th Grade": 1 +"6th Grade English Language Arts: Understanding Metaphors and Hyperboles in Fiction through Audio Books": 1 +"Exploring the Foundation of Capitalism: Examination of Economic Systems through the Lens of Cryptocurrency for 7th Graders": 1 +"10th Grade Health: Exploring Micronutrients through Metabolic Pathways and the Importance of Antioxidants": 1 +"7th Grade Science: An Overview of Astronomy with Telescope Observations and Lab Exercises": 1 +"3rd Grade Mathematics: Grasping Multiplication and Division using Arrays and Number Grids": 1 +"8th Grade History: The Renaissance and the Rise of Humanism": 1 +"9th Grade Social Studies: The Impact of Social Media on Political Campaigns and Elections.": 1 +"4th Grade Geography: Understanding Climate Zones through Interactive Globes and Weather Patterns": 1 +"5th Grade History: Experiencing the Civil War through Augmented Reality and Interactive Quizzes": 1 +"7th Grade Music: The Influence of Digital Audio Workstations in Sampling and Beatmaking for Contemporary Music": 1 +"4th Grade Geography: Understanding Weather Patterns through Interactive Climate Maps and Graphing Activities": 1 +"6th Grade Science: Principles of Physics Explored Through Roller Coaster Designs Using CAD Software": 1 +"3rd Grade Mathematics: Multiplication and Division Mastery through Grid Games and Abacus Counting": 1 +"9th Grade History: Decoding Renaissance Art and Culture Through VR Technology and Digital Restoration Techniques": 1 +"2nd Grade Social Studies: Learning About Local Wildlife Habitats through Nature Walks and Animal Tracking": 1 +"7th Grade Mathematics: Introduction to Algebra with Hands-on Equation Solving Activities": 1 +"4th Grade Language Arts: Developing Narrative Skills Through Comic Strip Creation and Podcast Storytelling": 1 +"6th Grade World Cultures: Discovering Asian Traditions through Origami Crafting and Virtual Field Trips": 1 +"3rd Grade Science: Understanding Life Cycles through Butterfly Rearing and Observation Journals": 1 +"5th Grade Geography: Exploring the Landscapes of South America Through Topographic Maps and Virtual Reality Excursions": 1 +"4th Grade Geography: Exploring World Landforms through Virtual Reality": 1 +"6th Grade Literature: Understanding Poetry through Interactive Audio-Visual Aids": 1 +"2nd Grade Mathematics: Grasping Addition and Subtraction using Online Games and Number-Line Techniques": 1 +"Kindergarten Art: Introduction to Colors and Shapes with Interactive Digital Art Boards": 1 +"5th Grade Life Science: Understanding Human Body Systems via 3D Animation": 1 +"2nd Grade Reading: Developing Comprehension Skills through Interactive Storybooks on Tablets using the LeapFrog Learning System": 1 +"8th Grade Earth Science: Examining Geological Processes with Virtual Field Trips and Simulations": 1 +"Kindergarten Exploration: Identifying Common Insects using Magnifying Glasses and Picture Books": 1 +"4th Grade Writing: Crafting Descriptive Paragraphs using Digital Storytelling Platforms": 1 +"5th Grade English: Improving Vocabulary through Gamified Learning Apps": 1 +"4th Grade Art: Exploring Impressionism through Virtual Reality Paintings": 1 +"6th Grade History: Understanding the Mayan Calendar System through Augmented Reality": 1 +"9th Grade Physics: An Interactive Study of Light and Optics using Laser Kits": 1 +"5th Grade Geography: Climate Change and Its Impact on Global Ecosystems through Interactive Digital Maps": 1 +"1st Grade Crafts: Learning about Native American Culture through DIY Totem Pole Creation": 1 +"2nd Grade Language: Enhancing Vocabulary Skills through Storytelling with Puppeteer Software": 1 +"7th Grade Mathematics: Interactive Learning of Pythagorean Theorem with 3D Models and Applications": 1 +"11th Grade Literature: Dissecting the Themes in Shakespeare’s Romeo and Juliet with Text Analysis Tools": 1 +"4th Grade Environmental Science: Understanding the Life Cycle of Butterflies Using Augmented Reality Kits": 1 +"5th Grade Music: An In-depth Study of Bach’s Fugue Structure with Finale Music Notation Software and Harmonic Analysis.": 1 +"8th Grade Mathematics: Exploring Geometry through 3D Modeling and Google SketchUp": 1 +"5th Grade Science: Investigating the Life Cycle of Butterflies using Augmented Reality": 1 +"1st Grade Language Arts: Developing Spelling Skills with Interactive Phonics Games": 1 +"3rd Grade Art: Discovering Texture through Clay Modelling and Pottery": 1 +"Deep Dive into Ancient Mayan Civilization: Utilizing Artificial Intelligence in Deciphering Hieroglyphics": 1 +"7th Grade Music: The Impact of Baroque Music on the Evolution of the Harpsichord": 1 +"4th Grade Science: Exploring the Solar System through Virtual Planetariums": 1 +"1st Grade Mathematics: Learning Subtraction through Gamified Learning Apps": 1 +"5th Grade History: Exploring the Renaissance Era with Virtual Reality Tours and Interactive Timelines": 1 +"Pre-School Exploration of Sensory Science: Color and Sound Recognition through Interactive Toys": 1 +"6th Grade: Understanding the Civil War: Utilizing Interactive Maps and Timelines": 1 +"3rd Grade Music: Creating Melodies with Synthesizers: Introduction to Digital Sound Design": 1 +"7th Grade Mathematics: Understanding Geometry using Virtual Reality Tools": 1 +"10th Grade Chemistry: Exploring Atomic Structure through 3D Modelling": 1 +"Soccer in 10th Grade Physical Education: Enhancing Goal Scoring Skills with Augmented Reality": 1 +"2nd Grade Art: Exploring Circles and Reds through Pastel and Collage Techniques": 1 +"6th Grade Music: Learning Tempo Control with Violin and Beat Looper": 1 +"4th Grade English: Narrative Writing with Digital Storyboards: Techniques and Implementation": 1 +"2nd Grade History: The Significance of the Silk Road in Ancient Trade": 1 +"8th Grade Music: An Examination of Jazz Musicians and their Impact on Music Production Software": 1 +"4th Grade Art: Exploring Shapes and Colors Through Interactive Digital Painting": 1 +"5th Grade Geography: Navigating the World’s Oceans Using Virtual Reality ": 1 +"1st Grade Mathematics: Basics of Addition and Subtraction Through Animated Storytelling": 1 +"7th Grade History: Analyzing the Civil War Using Augmented Reality": 1 +"2nd Grade Technology: Learning to Code with Interactive Blockly Games": 1 +"4th Grade Science: Understanding the Solar System through 3D Models": 1 +"8th Grade Mathematics: Dive into Algebra using Graph Theory and Interactive Simulations": 1 +"6th Grade Music: Introduction to Rhythm and Tempo using Digital Drum Pads": 1 +"9th Grade Physics: Exploring Newton’s Laws through Real-World Experiments and Analysis": 1 +"11th Grade Psychology: Examining the Impact of Advertising on Consumer Behavior": 1 +"5th Grade Geography: Navigating the World with Google Earth Virtual Reality": 1 +"3rd Grade Science: Exploring Desert Biomes Using Solar-Powered Terrariums and Interactive Ecosystem Maps": 1 +"7th Grade Art: Exploring Abstract Expressionism through Oil Pastels and Palette Knife Techniques": 1 +"9th Grade Music: Exploring Sound Design with MIDI Controllers in Electronic Dance Music Production": 1 +"1st Grade Art: Still Life Drawing with Procreate on iPads: A Beginner’s Guide": 1 +"2nd Grade Physical Education: Fundamentals of Kickball: Kicking and Fielding Strategies": 1 +"5th Grade Language Arts: Storytelling Adventures with Pictorial Flashcards as Narrative Building Tools": 1 +"7th Grade History: Decrypting the Mysteries of the Ancient Egyptian Hieroglyphics": 1 +"11th Grade Art: Mastering Pixel Art with Adobe Photoshop’s Pencil Tool and Graphics Tablet": 1 +"3rd Grade Language Arts: Enhancing Reading Comprehension through Character Map Creation using Popplet": 1 +"4th Grade Mathematics: Understanding Division Principles through Cooking Measurements & Digital Kitchen Tools": 1 +"6th Grade Space Science: Exploring Galaxies Beyond our Solar System with Virtual Reality Technology": 1 +"Second Grade Nature Studies: Discovering Photosynthesis and the Role of Trees in Carbon Dioxide Absorption ": 1 +"9th Grade Health Education: The Physiology of Exercise, Utilizing Fitness Apps, and the Importance of Hydration": 1 +"8th Grade Literature Arts: Interpreting Historical Fiction through Digital Annotation Resources": 1 +"7th Grade Physical Education: Perfecting Basketball Skills Using Rebounding Exercises": 1 +"Kindergarten Art: Exploring Textures and Patterns through Collage Creation and Finger Painting": 1 +"6th Grade English: Delving into Mystery Novels using Augmented Reality Books": 1 +"3rd Grade Language Arts: Boosting Spelling Skills through Interactive Word Puzzles Apps": 1 +"10th Grade Political Science: Grasping Economic Systems with an Emphasis on Sustainable Development Policies": 1 +"10th Grade History: In-depth Study of The American Civil War using Interactive Maps and Timelines": 1 +"Kindergarten Math: Learning Numbers and Counting through Animated Stories and Games ": 1 +"Exploration of Prose and Fiction in 6th Grade Literature: Analyzing Character Development through Storyboards": 1 +"2nd Grade Language Arts: Developing Vocabulary and Sentence Construction with Picture Books": 1 +"8th Grade Art: Creating Animated Stories using Adobe Animate on Chromebooks ": 1 +"8th Grade Physics: Understanding Forces and Motion through Augmented Reality Simulations": 1 +"3rd Grade Mathematics: Learning Multiplication and Division through Gamified Math Puzzles": 1 +"The Basics of Healthy Cooking: A High School Home Economics Course on Meal Prep, Calorie Counting, and the MyFitnessPal App": 1 +"4th Grade’s Journey through Astronomy: Discovering Planets and Constellations using Virtual Reality": 1 +"3rd Grade Health Education: Learning about Vaccinations and their Role in Our Society": 1 +"3rd Grade Geography: Discovering World Landforms through Interactive 3D Models": 1 +"2nd Grade Math: Mastering Addition and Subtraction through Fun Math Puzzles": 1 +"9th Grade History: The Impact of the Industrial Revolution on Modern Society": 1 +"Kindergarten Art: Exploring Colors and Shapes through Finger Painting": 1 +"2nd Grade Science: Learning about Plant Life Cycles through Time-Lapse Videos": 1 +"5th Grade Music: Understanding Rhythm and Beat through Drumming": 1 +"8th Grade English: Enhancing Creative Writing Skills through the Study of Classic Novels": 1 +"6th Grade Health: The Importance of Physical Fitness Through Sports and Exercise": 1 +"3rd Grade Language Arts: Improving Vocabulary through Storytelling and Word Games": 1 +"7th Grade Physics: Exploring the Principles of Motion Through Simple Machines": 1 +"1st Grade Mathematics: Learning Basic Addition and Subtraction through Interactive Games": 1 +"8th Grade Literature: Exploring Gothic Fiction through the Works of Edgar Allan Poe": 1 +"10th Grade Health & Wellness: Introduction to Mindfulness and Stress Management Techniques": 1 +"4th Grade Science: Exploring the Solar System with Augmented Reality": 1 +"6th Grade Geography: Understanding Climate Change through Data Visualization": 1 +"12th Grade History: Examining the Civil Rights Movement through the Lens of Intersectionality": 1 +"7th Grade Music: Exploration of Jazz with a Focus on Louis Armstrong’s Trumpet Solos": 1 +"3rd Grade Art: Introduction to Pottery Making": 1 +"8th Grade Physical Education: Fundamentals of Soccer with Emphasis on Dribbling Skills": 1 +"2nd Grade Language Arts: Developing Storytelling Skills using Role Play Techniques": 1 +"7th Grade Music: Exploring Jazz Improvisation through Saxophone and Music Recording Software": 1 +"5th Grade Geography: Understanding Earth’s Topography - The Impact of Erosion and Deposition Processes on Landscape Formation": 1 +"4th Grade Life Science: Interactive Study of the Plant Life Cycle using Augmented Reality Apps": 1 +"6th Grade Physical Education: Essentials of Soccer and Ball Control Techniques": 1 +"Medieval Iron Forge: The Role of the Blacksmith and Forge Techniques in 7th Grade History": 1 +"2nd Grade Music: Basics of Rhythm and Pitch using Percussion Instruments and Music Creation Apps": 1 +"4th Grade Music: Understanding Time Signature and Tempo using the Piano": 1 +"6th Grade History: The Industrial Revolution - Steam Engine: The Birth of Railways ": 1 +"2nd Grade History: Early European Settlers and the Impact of the Wheelbarrow ": 1 +"Kindergarten Science: Discovering Habitats through Mini Aquarium Building and Fish Observation.": 1 +"2nd Grade Art: Discovering Nature’s Palette: Exploring Leaf Textures and Colors using Acrylic Paint and Sponges": 1 +"4th Grade Science: The Power of Light: Unveiling Reflections and Refractions through Prism Experiments": 1 +"2nd Grade Mathematics: Navigating the World of Fractions through Virtual Reality ": 1 +"5th Grade Biology: Investigating Plant Photosynthesis using Interactive 3D Microscopic Models": 1 +"2nd Grade Physics: Introduction to Energy Transformation through Windmill Construction": 1 +"Examining the Effects of Composting on Soil Quality and Plant Growth: Integration of Soil Testing in 3rd Grade Agricultural Studies": 1 +"Exploring the Significance of Cryptography in World War II: A 9th Grade History Course": 1 +"12th Grade Physical Education: Enhancing Athletic Performance through Weight Training and Plyometric Exercises": 1 +"Soccer: Mastering Corner Kick Strategies for 7th Graders using Augmented Reality and Performance Data": 1 +"Medieval European Architecture and the Cathedrals: Constructing Castles in 5th Grade History": 1 +"6th Grade Geography: Understanding the Role of Rivers in Civilization Development": 1 +"4th Grade Literature: Analyzing Myth and Folklore through Interactive E-Books": 1 +"The Impact of Digital Sampling in 12th Grade Electronic Music History": 1 +"7th Grade Social Studies: Exploring Global Economics through Virtual Reality Simulations": 1 +"2nd Grade Drawing and Design: Exploring Shapes and Patterns in Nature": 1 +"9th Grade Physics: Exploring the Universe and Galaxies with Astrophysics Principles": 1 +"6th Grade American History: Understanding the Civil War Era through Augmented Reality Tours": 1 +"1st Grade Biology: Learning about Plant Life through Botanical Garden Visits": 1 +"Unveiling the Mystery: How Telegraph and Early Photography Influenced the Civil War - A Fifth Grade History Course": 1 +"4th Grade Arithmetic: Understanding Multiplication and Division through Real-Life Applications": 1 +"7th Grade Mathematics: Unraveling Fractions and Decimals through Interactive Games": 1 +"11th Grade Mathematics: Trigonometry - Unveiling Angles and Ratios in Right Triangles": 1 +"7th Grade Social Studies: Investigating Climate Change through Renewable Energy and Wind Power": 1 +"1st Grade Language Arts: Discovering Phonics through Interactive Storybooks ": 1 +"3rd Grade History: The Industrial Revolution: The Birth of Railways and Steam Engines": 1 +"5th Grade History: Ancient Egyptians - The Art of Mummification and the Belief in Afterlife": 1 +"6th Grade History: The Civil War - Code Breaking and Secret Messages: The Role of Telegraphs": 1 +"3rd Grade Mathematics: Grasping Division through Number Line Jumps": 1 +"3rd Grade Music: Discovering Melody and Harmony with the Ukulele": 1 +"5th Grade Music: Mozart’s Symphonies: Violin Interpretation and Digital Recording with GarageBand & Audacity": 1 +"3rd Grade Astronomy: Exploring Space with Interactive Star Maps and Virtual Reality": 1 +"4th Grade Coding: Learning Basic Python Syntax with Code.org": 1 +"5th Grade History: Understanding Ancient Egypt through Virtual Field Trips": 1 +"6th Grade Science: Investigating Climate Change with Interactive Experiments": 1 +"8th Grade Chemistry: Exploring Chemical Reactions with Virtual Lab Software": 1 +"7th Grade Music: Introduction to Guitar Playing and Reading Music Sheets": 1 +"3rd Grade Environmental Studies: Our Blue Planet - Exploring Ocean Conservation": 1 +"8th Grade Mathematics: Solving Algebraic Equations with Mathway and Interactive Worksheets": 1 +"5th Grade Geography: Understanding Global Weather Patterns with Real-Time Satellite Data": 1 +"6th Grade Art: Learning Sculpture Techniques with Clay and Virtual Tutorials": 1 +"6th Grade Social Studies: Understanding Global Cultures through Food Traditions": 1 +"4th Grade Mathematics: Exploring Geometry and Fractals in Nature": 1 +"6th Grade Science: Introduction to Meteorology & Weather Patterns through Hands-On Experiments": 1 +"5th Grade Art: Discovering Renaissance Painters and their Influence on Modern Art": 1 +"3rd Grade Physical Education: Understanding Basketball and The Science of Scoring": 1 +"7th Grade Economics: Exploring the Concept of Supply and Demand through Virtual Market Simulations": 1 +"2nd Grade French: Building Language Skills through Songs and Rhymes": 1 +"5th Grade History: Decoding the Middle Ages through Castle Blueprints": 1 +"Introduction to Marine Biology: Coral Reefs and their Role in Ocean Ecosystems for 8th Graders": 1 +"Mastering Archery through the Science of Trajectories: A 7th Grade Physical Education Course": 1 +"4th Grade Mathematics: Understanding Geometry with Virtual Reality Shapes and Patterns": 1 +"1st Grade Science: Discovering the Animal Kingdom through Interactive eBooks": 1 +"7th Grade Literature: Analyzing Symbolism in Classic Novels with Digital Annotations": 1 +"8th Grade History: The Civil War and its Influence on Industrial Revolution": 1 +"6th Grade Science: Investigating Astronomical Phenomena with 3D Stellar Mapping": 1 +"4th Grade Art: Understanding Frescoes through Italian Renaissance Art": 1 +"2nd Grade Mathematics: Grasping Basic Calculations through Fun Board Games": 1 +"6th Grade Geography: Navigating World Landforms using Interactive Augmented Reality": 1 +"4th Grade English: Utilizing Google Docs in Fairy Tale and Myth Interpretation": 1 +"7th Grade Mathematics: Understanding Probability with Real-World Scenarios & Graphical Representations Using TI-84 Plus Calculator and Bar Graphs": 1 +"6th Grade Geography: Exploring World Continents and Oceans with Virtual Reality": 1 +"4th Grade Biology: Understanding Plant Life Cycle through Time-lapse Photography": 1 +"7th Grade Mathematics: Mastering Algebra and Equations with Mathletics Software and Hands-on Puzzles": 1 +"1st Grade Music: Exploring Rhythm and Melody using Handmade Instruments and Interactive Games": 1 +"5th Grade English: Dive into Poetry: An Encounter with Rhyme and Meter through Song Lyrics": 1 +"2nd Grade Health: The Importance of Hygiene and Handwashing Demonstrated through Visual Arts": 1 +"8th Grade History: Unfolding the Revolutionary War with Interactive Timeline Tools": 1 +"9th Grade Physics: The Science Behind Light and Optics Using Laser Experiments": 1 +"3rd Grade Art: Exploring Shape and Pattern through Origami and Paper Mosaic Techniques": 1 +"10th Grade Biology: Dissecting Frog Anatomy: Experiments with Digital Microscopes.": 1 +"7th Grade Geography: Examining Weather Patterns using Meteorological Data Analysis": 1 +"5th Grade Art: Mastering Watercolor Techniques: From Palette to Paper": 1 +"Kindergarten Math: Recognizing Shapes and Numbers with Interactive Counting Games": 1 +"1st Grade Environmental Science: Discovering Animal Habitats through Virtual Field Trips": 1 +"2nd Grade Music: Exploring Rhythm and Tempo through Percussion Instruments": 1 +"4th Grade History: Unearthing the Secrets of Ancient Greece with Virtual Reality Expeditions": 1 +"11th Grade Economics: Understanding Trade and Commerce with Simulation Games": 1 +"2nd Grade Mathematics: Grasping Addition and Subtraction using Pattern Blocks and Number Lines": 1 +"9th Grade Physics: Understanding Forces and Motion through Interactive Experiments": 1 +"5th Grade English: Prose and Drama Analysis with Audio Books and Radio Plays": 1 +"7th Grade Mathematics: Understanding Geometry Concepts through 3D Modeling Software": 1 +"5th Grade English: Crafting Persuasive Essays using Mind Maps and Microsoft Word": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality": 1 +"1st Grade Language Arts: Learning Phonics and Vocabulary using Interactive Flashcards": 1 +"2nd Grade History: Discovering American Pioneers through Storytelling and Role Play": 1 +"10th Grade Physics: Grasping the Fundamentals of Thermodynamics with Interactive Simulations": 1 +"9th Grade Music: Exploring Jazz Rhythms with Digital Audio Workstations": 1 +"3rd Grade Mathematics: Introduction to Fractions using Visual Aids and Interactive Worksheets": 1 +"11th Grade Literature: Analyzing Symbolism and Themes in Modernist Poetry": 1 +"7th Grade History: Uncovering the Impact of the Industrial Revolution through Primary Sources and Digital Archives": 1 +"4th Grade Math: Understanding Fractions with Interactive Whiteboard Games": 1 +"6th Grade Geography: Climate Zones Exploration using Google Earth VR": 1 +"1st Grade Music: Rhythm and Beat Introduction with Virtual Drumming Apps": 1 +"5th Grade History: Journey through Ancient Greece with Minecraft Education Edition": 1 +"7th Grade Science: Exploring the Basics of Photosynthesis with Augmented Reality Apps": 1 +"2nd Grade Physical Education: Motor Skills Development with Nintendo Switch Just Dance": 1 +"4th Grade English: Enhancing Reading Comprehension with Audiobook Platforms": 1 +"8th Grade Art: Discovering Abstract Expressionism with Mixed Media Projects": 1 +"3rd Grade Science: Learning about The Water Cycle with Interactive Animations": 1 +"6th Grade Social Studies: Understanding Government Structures with Interactive Charts using iPad.": 1 +"3rd Grade Science: Exploring the Solar System through Virtual Reality": 1 +"8th Grade Geography: Understanding Cultural Influences on Landscapes with Google Earth": 1 +"The Impact of the Printing Press on Renaissance Europe: A 6th Grade History Course": 1 +"5th Grade Art: The Impressionist Era - Capturing Light and Color with Acrylic Paints": 1 +"Incorporating Fitness Apps in Designing Personal Training Programs in 10th Grade Physical Education ": 1 +"2nd Grade History: Ancient Egypt - Hieroglyphs and Papyrus: Tools for Communication": 1 +"3rd Grade Mathematics: Discovering Patterns with Python’s Numpy through Weather Forecast Data": 1 +"1st Grade Environmental Studies: Identifying Various Plants and Their Roles in the Ecosystem Using Interactive Apps": 1 +"7th Grade English: Enhancing Creative Writing Skills through Digital Storyboarding": 1 +"8th Grade Geometry: Unraveling the Magic of Shapes and Angles with AutoCAD Software": 1 +"4th Grade Mathematics: Enhancing Multiplication Skills with Khan Academy and Google Classroom": 1 +"Understanding Irony in Shakespeare’s ’Macbeth’ in 9th Grade Literature: Utilizing Podcasts, Prezi, and Google Docs for Collaborative Learning": 1 +"1st Grade Language Arts: Alphabet Mastery through Smart Boards": 1 +"6th Grade Music: Discovering Rhythms with Virtual Drum Technology": 1 +"Investigating Photosynthesis and Plant Growth: A 4th Grade Science Course using 3D Printing and Virtual Reality Tech": 1 +"2nd Grade Writing: Developing Sentences with the Assistance of Microsoft Word": 1 +"8th Grade Physics: Grasping Force and Motion through Rocketry Experiments": 1 +"Kindergarten Art: Learning Basic Patterns with Finger Painting using a Sensory Approach": 1 +"7th Grade Pottery: Basic to Advanced Clay Molding with High-Fire Kilns, Glazing Techniques, and Sculpture Design": 1 +"Third Grade Spelling: Boosting Skills with Interactive Spelling Apps and Online Games": 1 +"7th Grade Literature: Unraveling Themes in Dickens’ Novels through Interactive Story Maps": 1 +"4th Grade Geography: Understanding Plate Tectonics and Earthquake Patterns with Augmented Reality": 1 +"Mastering Fractions: Engaging with Pie Charts in 2nd Grade Mathematics": 1 +"9th Grade Music: The Journey of Jazz - The Saxophone and the Birth of Bebop": 1 +"Civil Rights Movement: The Influence of Music and Art in 10th Grade History": 1 +"3rd Grade Science: Solar System and Planetary Orbits using 3D Modelling": 1 +"6th Grade Art: Discovering Texture and Form through Clay Sculpting": 1 +"2nd Grade Physical Education: Understanding Balance and Agility through Gymnastics using Motion Capture Technology": 1 +"12th Grade Music: Analyzing Beethoven’s Symphony No.5 in C minor Through Digital Sheet Music, Melody Structure, and Harmonic Analysis": 1 +"7th Grade Art: Basics of Digital Art and Design using Photoshop.": 1 +"3rd Grade Biology: Discovering Photosynthesis through Virtual Lab Experiments and Microscopic Observations": 1 +"7th Grade English: Improving Writing Skills with Grammarly and the Oxford English Dictionary": 1 +"4th Grade Geometry: Mastering Area and Perimeter using Interactive Math Software": 1 +"9th Grade Music Appreciation: Understanding Beethoven’s Symphonies through GarageBand and Audio Mixing Techniques": 1 +"1st Grade Social Studies: Learning about Recycling through Community Project": 1 +"2nd Grade Physical Education: Joy of Dance: Exploring Basic Ballet Positions and Movements": 1 +"3rd Grade History: The Impact of the Industrial Revolution on Modern Transportation - A Study on the Invention of the Steam Engine": 1 +"6th Grade Science: Exploring Marine Ecosystems with Scuba Diving Simulations and Satellite Imagery": 1 +"The Development and Influence of the Printing Press in the Renaissance Era: A 7th Grade History Course": 1 +"5th Grade Social Studies: The Emergence of the Internet - The Role of Binary Code in Digital Communication.": 1 +"5th Grade Art: Discovering Textures and Techniques with Clay Sculpture.": 1 +"Viking’s Conquest of England: An In-depth Study in 5th Grade History.": 1 +"8th Grade Social Studies: The Industrial Revolution, Steam Engines, and the Dawn of Modern Transportation.": 1 +"11th Grade History: The Impact of Television Broadcasts during the Vietnam War.": 1 +"7th Grade Social Studies: Unraveling the Mysteries of Inca Civilization through Machu Picchu.": 1 +"1st Grade Science: Animal Habitats and Interactive Learning using Augmented Reality.": 1 +"4th Grade Mathematics: Grasping the Basics of Fractions and Decimals using Educational Games.": 1 +"5th Grade History: Exploring the Roman Empire through Virtual Reality and 3D Models.": 1 +"2nd Grade Language Arts: Enhancing Writing Skills using the Grammarly Platform.": 1 +"10th Grade Music: Understanding Counterpoint in Baroque Music Composition.": 1 +"4th Grade History: Discovering Civilizations through Virtual Reality Field Trips": 1 +"6th Grade Chemistry: Exploring the Elements with Interactive Periodic Tables": 1 +"3rd Grade Math: Understanding Multiplication through Fun Games and Apps": 1 +"1st Grade Science: Learning About Animal Life Cycles with Augmented Reality": 1 +"5th Grade Art: Exploring 3D Sculpture with Recycled Materials": 1 +"2nd Grade Reading: Boosting Comprehension Skills through Storytelling on Interactive Whiteboards": 1 +"7th Grade Physics: Grasping Electromagnetism with Hands-On Experiments": 1 +"4th Grade Geography: Exploring World Landforms with Google Earth": 1 +"1st Grade Music: Introduction to Rhythm and Melody with Interactive Instruments": 1 +"6th Grade English: Crafting Persuasive Essays using Google Docs & Grammarly": 1 +"3rd Grade Music: Learning Rhythms with Garageband and Rhythm Trainer": 1 +"5th Grade Environmental Studies: Exploring Desert Biomes Using Sand Terrariums": 1 +"1st Grade Mathematics: Introduction to Number Patterns using Number Line": 1 +"4th Grade Language Arts: Diving into Greek Mythology with Smartboard Technology and Kahoot": 1 +"Kindergarten Art: Discovering Textures and Patterns Through Collage Making": 1 +"7th Grade Social Studies: The Ancient Greek Democracy - Influence and Impact": 1 +"3rd Grade Math: Addition Mastery with Quizlet Digital Flashcards": 1 +"8th Grade Social Studies: Deciphering the Mysteries of Egyptian Pyramids through the Study of Hieroglyphics": 1 +"2nd Grade Environmental Studies: Discovering Rainforest Animals using Augmented Reality": 1 +"6th Grade Science: Understanding Weather Patterns through Cloud Observation and Classification": 1 +"4th Grade Mathematics: Understanding Basic Algebra through Fun Puzzles": 1 +"1st Grade Science: Exploring the Animal Kingdom through Interactive Storytelling": 1 +"7th Grade History: The Renaissance Era - An Insight into Art and Invention": 1 +"2nd Grade Geography: Learning About Weather Patterns and Climates Through Virtual Reality": 1 +"6th Grade Language Arts: Writing Persuasive Essays with a Focus on Rhetorical Devices": 1 +"5th Grade Art: Exploring Pottery and Sculpture with Clay and Craft Tools": 1 +"3rd Grade Music: Introduction to Melody and Harmony with Keyboard and GarageBand Software": 1 +"7th Grade Science: Discovering the Human Body through Anatomy and Physiology": 1 +"8th Grade Mathematics: Geometry Study: Angles, Shapes, and Use of Geogebra Software": 1 +"4th Grade History: The Ancient Civilizations - Learning About Pyramids and Hieroglyphs": 1 +"3rd Grade Art: Exploring Creativity with Digital Collage and Adobe Spark": 1 +"6th Grade Physics: Learning about Energy and Matter with Interactive Simulations": 1 +"5th Grade Science: Examining Ocean Ecosystems with Underwater Drones and Sonar Technology": 1 +"10th Grade Biology: Discovering Genetics through DNA Extraction Experiments": 1 +"8th Grade Mathematics: Enhancing Geometry Skills with Virtual Reality Tools": 1 +"9th Grade History: Analyzing the Influence of the Printing Press on Renaissance Europe": 1 +"2nd Grade Geography: Learning about Continents and Oceans through Interactive Globe Apps": 1 +"12th Grade Mathematics: Understanding Calculus through Real-Life Problem Solving and Desmos": 1 +"Delving into the World of Trigonometry: An Advanced 10th Grade Mathematics Course": 1 +"7th Grade Science: The Age of Enlightenment: The Impact of the Telescope and the Barometer.": 1 +"1st Grade Science: Exploring Weather Patterns Through Interactive Meteorology ": 1 +"7th Grade History: Delving Into the Middle Ages: Using Virtual Reality to Understand Medieval Castles": 1 +"10th Grade Drama: Interpreting Allegory and Irony in Famous Plays": 1 +"2nd Grade Reading: Discovering Rhyme Schemes with Digital Storybooks": 1 +"4th Grade Economics: Tracing the Evolution of Currency through the History of Gold Mining": 1 +"Ancient Technologies: The Influence of Egyptian Pyramids on Modern Architecture: A Study on the Lever Principle": 1 +"6th Grade Health Education: Examining Nutrition and Diet using Food Pyramid and Calorie Counting": 1 +"2nd Grade Science: Understanding Basic Principles of Magnetism": 1 +"5th Grade Music: Exploring Sound Production and Music Composition with GarageBand": 1 +"3rd Grade Language Arts: Spelling and Vocabulary Enhancement through Word Games and Crossword Puzzles": 1 +"5th Grade Science: Exploring Ecology through Virtual Field Trips and Interactive Simulations": 1 +"8th Grade Mathematics: Mastering Algebra using Interactive Whiteboards and Graphing Software": 1 +"9th Grade Art: Creating Dynamic Illustrations with Adobe Illustrator’s Pen Tool": 1 +"7th Grade Social Studies: Discovering Ancient Civilizations through VR Technology and Augmented Reality": 1 +"4th Grade Language Arts: Enhancing Reading Comprehension through Graphic Novels and Story Mapping": 1 +"8th Grade Music: Introduction to Digital Audio Workstations for Music Production": 1 +"5th Grade Geography: Navigating North American Landscapes with Google Earth and Satellite Images": 1 +"3rd Grade Elementary: Learning Addition and Subtraction using Interactive Touch Screen Technology": 1 +"6th Grade History: Exploring the Renaissance Period through Digital Art and Animation": 1 +"7th Grade Mathematics: Understanding Fractions and Decimals using Virtual Manipulatives and Interactive Games": 1 +"5th Grade Language Arts: Enhancing Creative Writing using ProWritingAid and Google Docs for Spelling Mastery": 1 +"3rd Grade Geography: Discovering Global Ecosystems and Natural Wonders with Virtual Reality": 1 +"5th Grade English: Diving into Poetry: Interactive Poems on Scribd and their Influence": 1 +"7th Grade: Earth Science - Understanding Volcanology ": 1 +"9th Grade History: The Shift from Papyrus to Paper: The Evolution of Bookbinding in the Middle Ages": 1 +"1st Grade Language Arts: Mastering Phonics with Smart Board Activities": 1 +"3rd Grade Science: Investigating the Solar System with Virtual Reality Technology": 1 +"Preschool Art: Understanding Textures and Patterns Through Finger Painting": 1 +"7th Grade Mathematics: Grasping Geometric Concepts through the Geogebra App": 1 +"5th Grade English: Adventure in Narration: Developing Narrative Skills with Storybird.": 1 +"1st Grade Science: Exploring Weather Patterns through Interactive Cloud Formation Models": 1 +"6th Grade Mathematics: Solving Equations using Visual Blocks and Grid Paper: A Comprehensive Course": 1 +"2nd Grade Social Studies: An Interactive Journey through Native American Cultures using Storytelling": 1 +"7th Grade Geography: Investigating African River Systems and their Impact on Local Economies": 1 +"4th Grade Mathematics: Enhancing Addition and Subtraction Skills through Gamified Apps and Quizzes": 1 +"3rd Grade English: Delving into Aesop’s Fables: Interactive Reading and Moral Discussions": 1 +"Learning About the Solar System in 4th Grade Science: Interactive 3D Planetarium Sessions": 1 +"5th Grade Social Studies: Understanding the Role of Railroads in the Industrial Revolution": 1 +"7th Grade Music: Dissecting Mozart’s Symphony No.40 using Music Composition Software and the Theory of Melody": 1 +"Kindergarten Science: Discovering Colors and Shapes through Interactive Light and Shadow Experiments": 1 +"1st Grade Science: Exploring Weather Patterns through Interactive Earth Globe ": 1 +"2nd Grade Art: Understanding Symmetry through Butterfly Collage and Origami ": 1 +"3rd Grade English: Improving Spelling with VocabularySpellingCity and Funbrain Word Games ": 1 +"5th Grade Physical Education: Basketball and Shot Arc Analysis Technology ": 1 +"9th Grade History: The Impact of Telegraph in the Civil War ": 1 +"7th Grade Geography: The Consequences of Deforestation in Rainforests and 10 Restoration Strategies ": 1 +"Third Grade Social Studies: The Role of the Silk Road in Ancient Trade ": 1 +"3rd Grade Math: Introduction to Division with Number Lines ": 1 +"4th Grade Mathematics: Improving Fractions with Prodigy Math Game ": 1 +"Discovering Harmony and Beat with GarageBand: A Course for 2nd Graders": 1 +"5th Grade Science: Exploring the Solar System: Understanding Planets with Interactive 3D Models": 1 +"2nd Grade Healthy Habits: Recognizing Healthy Food Options with the MyPlate Guide": 1 +"Exploring Our Blue Planet: A Second Grade Geography Course on Water Cycle and Rainforest Conservation": 1 +"11th Grade Symphony: Delving into Baroque Music with the Violin": 1 +"8th Grade Wellness: Grasping Vitamins and Their Biochemical Functions with the Vitamin Tracker App": 1 +"Fit and Fine: A Study of Body Mass Index and Caloric Intake in 7th Grade using the Fitbit App": 1 +"7th Grade Geometry: Understanding Area and Perimeter with Geoboards": 1 +"5th Grade Social Studies: Journey through Medieval Europe using Virtual Reality and Interactive Timelines": 1 +"7th Grade Pre-Algebra: Mastering Exponents and Polynomial Expressions": 1 +"4th Grade Creative Writing: Using Stop-Motion Animation to Narrate Folklore from Around the World": 1 +"5th Grade Geography: Understanding Climate Change through Map Analysis": 1 +"3rd Grade Music: Discovering Melody through String Instruments using Music Production Software": 1 +"The Evolution of Harpsichord in Baroque Music: A 7th Grade Music Course on the Works of Bach.": 1 +"9th Grade Biology: Interpreting Genomic Data using Bioinformatics Tools": 1 +"7th Grade Mathematics: Using Pivot Table Function for Statistics in Google Sheets": 1 +"9th Grade Physical Education: The Role of Yoga in Enhancing Fitness and Mental Health": 1 +"1st Grade Art: Discovering Shapes and Patterns with Collage and Paper Cutting Techniques": 1 +"Kindergarten Music: Learning Tempo and Dynamics with GarageBand ": 1 +"4th Grade Mathematics: Mastering Multiplication with Grid Methods": 1 +"7th Grade: Podcasting Tools for Enhancing Speaking and Listening Skills in English Language Arts": 1 +"1st Grade Art: Exploring Shapes and Colors through Paper Mosaic": 1 +"2nd Grade English: Enhancing Vocabulary with Interactive Word Clouds": 1 +"Kindergarten Math: Learning Numbers and Counting through Interactive Board Games": 1 +"8th Grade Music: Mozart’s Symphony and the Art of Orchestra Arrangement": 1 +"10th Grade Geography: Global Climate Patterns and the Role of Ocean Currents: Part 2": 1 +"4th Grade Science: An Introduction to Astronomy with Planetarium Visits": 1 +"10th Grade Sociology: The Influence of Media on Society: An Overview of Television’s Impact": 1 +"Mastering Trigonometric Functions in 12th Grade Math using Desmos and the Unit Circle": 1 +"3rd Grade History: Life in Ancient Egypt - The Importance of the Nile River": 1 +"6th Grade History: The Civil War Era - The Significance of Railroads in War Logistics": 1 +"5th Grade History: Exploring the American Revolution through Augmented Reality": 1 +"1st Grade Science: Learning about Plants Growth Cycle with Interactive Apps": 1 +"4th Grade Mathematics: Mastering Fractions with Interactive Touch Screen Boards": 1 +"6th Grade English: Journey into Shakespearean Plays with Virtual Reality": 1 +"2nd Grade Art: Discovering Colors and Shapes through Digital Drawing Tablets": 1 +"7th Grade Geography: Understanding Weather Patterns with Real-Time Satellite Imagery": 1 +"3rd Grade Music: Introducing Tempo with Digital Percussion Instruments": 1 +"5th Grade Physical Education: Improving Agility and Coordination with Motion Tracking Games": 1 +"1st Grade Reading: Phonics Fun with Interactive E-books": 1 +"8th Grade Science: Exploring the Solar System through Virtual Reality Planetariums": 1 +"5th Grade Physics: Exploring Forces and Motion with LEGO Robotics": 1 +"8th Grade Literature: Decoding Shakespeare - Understanding Language and Themes in Romeo and Juliet": 1 +"1st Grade Environmental Studies: Discovering the World of Insects through Microscope Exploration": 1 +"6th Grade Mathematics: Diving into Fractions and Decimals using Real World Scenarios": 1 +"4th Grade Art: Journey Through Renaissance and its Impact on Modern Art": 1 +"Kindergarten Basic Science: Learning about Plants and Animals through Interactive Storytelling": 1 +"7th Grade Geography: Exploring World Cultures through Virtual Reality Tours": 1 +"2nd Grade Music: Introduction to Melodies and Harmonies using the Keyboard": 1 +"5th Grade History: Tracing the American Civil War through Interactive Map Activities": 1 +"8th Grade Biology: Understanding Genetics and Heredity through DNA Extraction Experiments": 1 +"8th Grade Health: Understanding Body Anatomy through Interactive 3D Models ": 1 +"10th Grade English Literature: Analyzing Satire in Mark Twain’s Works ": 1 +"6th Grade Geography: Climate Change - The Impact on Polar Regions ": 1 +"1st Grade Mathematics: Fun with Numbers - Learning Addition and Subtraction through Interactive Games ": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality Technology ": 1 +"8th Grade History: The Role of the Printing Press in the Renaissance ": 1 +"Kindergarten Language Arts: Learning Phonics through Animated Stories and Songs ": 1 +"6th Grade History: Exploring the Mayan Civilization through Archaeological Artifacts ": 1 +"10th Grade Geometry: Understanding Shapes in Nature with Augmented Reality ": 1 +"3rd Grade Physical Education: Learning Basketball Fundamentals through Teamwork and Strategy": 1 +"4th Grade English: Mastering Grammar and Sentence Structure using Interactive Apps": 1 +"7th Grade History: The Impact of Renewable Energy on Modern Society": 1 +"1st Grade Mathematics: Fun Addition and Subtraction Lessons using Online Games ": 1 +"8th Grade Biology: Understanding DNA and Genetics using Virtual Lab Experiments": 1 +"3rd Grade Reading: Improving Comprehension and Vocabulary Skills with Storybook Apps": 1 +"Introduction to Robotics: 1st Grade Science using Lego Sets - Building Simple Robots": 1 +"5th Grade Geography: Exploring World Cultures and Traditions through Virtual Field Trips": 1 +"4th Grade PE: Enhancing Agility and Coordination with Gymnastics and Obstacle Course Activities": 1 +"1st Grade Art: Sculpting Imaginative Figures using Play Dough and Clay Techniques": 1 +"Chemistry for 7th Grade: Grasping Periodic Table Elements through Interactive Quizzes and 3D Models": 1 +"5th Grade Mathematics: Exploring Fractions and Decimals with Virtual Manipulatives and Google Classroom": 1 +"1st Grade Science: Understanding Life Cycles Through Interactive iPad Activities and Live Observation": 1 +"7th Grade Art: A Journey into Renaissance Paintings - The Use of Perspective and Adobe Illustrator Tools": 1 +"5th Grade English: Delving Into Fantasy Genres with Interactive E-books and Audible Stories": 1 +"Kindergarten Mathematics: Grasping Basic Counting Skills through LEGO and Number Puzzles": 1 +"6th Grade Social Studies: Exploring Ancient Egypt Using Virtual Reality and Online Museum Tours": 1 +"9th Grade Physical Education: Enhancing Strength and Flexibility in Basketball through Biomechanics": 1 +"8th Grade Earth Science: Geologic Time and Fossil Evidence with Augmented Reality Apps": 1 +"2nd Grade Music: Learning Rhythm and Melody with Hand Percussion and Music Games": 1 +"5th Grade World Geography: Unveiling The Mysteries of The Amazon Rainforest Using Google Earth and Virtual Field Trips": 1 +"7th Grade Drama: Discovering Shakespearean Monologues through Theater and Video Editing Software": 1 +"Ancient Greek Temples and the Significance of Columns and Capitals: A 6th Grade Exploration": 1 +"6th Grade French: Enhancing Vocabulary using Collaborative Duolingo Exercises": 1 +"5th Grade History: Examining the American Revolution through Primary Sources": 1 +"8th Grade Technology: 3D Modeling using SketchUp Software and Geometric Theory": 1 +"10th Grade Sociology: Analyzing the Influence of Social Media on Youth Culture and Identity Formation": 1 +"Mastering 1st Grade Reading: Phonetics and Storytelling using Interactive E-Books": 1 +"2nd Grade Math: Exploring Geometry with Interactive Digital Puzzles": 1 +"3rd Grade Science: Uncovering the Mysteries of the Rainforest through Virtual Exploration": 1 +"2nd Grade Art: Introduction to Sculpture and the Use of Clay Tools": 1 +"6th Grade Biology: Understanding Plant Growth through Interactive Greenhouse Applications": 1 +"4th Grade Mathematics: The Use of Protractor in Angle Measurement": 1 +"2nd Grade Music: Learning Melodies and Tones through Virtual Piano Software": 1 +"5th Grade History: Unearthing the Viking Age using 3D Virtual Reality and Interactive Maps": 1 +"7th Grade Physics: Grasping the Concept of Gravity through Egg Drop Experiments": 1 +"2nd Grade English: Delving into Fairytales through Puppet Show Narratives": 1 +"9th Grade Art: Exploring Cubism through Digital Painting Techniques": 1 +"4th Grade Geography: Discovering the Amazon Rainforest with Google Earth VR": 1 +"8th Grade Music: The Impact of the Harpsichord on Baroque Music": 1 +"10th Grade English: Analyzing Shakespeare’s Plays through Dramatic Performance Techniques.": 1 +"6th Grade Mathematics: Exploring Fractions and Decimals through Virtual Manipulatives": 1 +"8th Grade History: The Evolution of Transportation in the Industrial Revolution": 1 +"6th Grade Music: Discovering Jazz Legends Through Miles Davis’s Kind of Blue": 1 +"8th Grade Geography: Sahara Desert and the Survival Strategies of Nomadic Tribes": 1 +"6th Grade English: Enhancing Vocabulary using Digital Flashcards": 1 +"5th Grade History: The Vikings, Longships, and Exploration of the New World": 1 +"11th Grade Algebra: Mastering Equations and Inequalities through Symbolic Manipulation and Graphical Methods": 1 +"5th Grade Geography: Exploring Biomes and Ecosystems using Virtual Field Trips": 1 +"Rocket Science for Kids: Understanding Thrust and Drag using Model Rockets, Bernoulli’s Principle and Newton’s Third Law": 1 +"8th Grade Music: Decoding Rhythm Patterns using Percussion Instruments and GarageBand Software": 1 +"3rd Grade Mathematics: Exploring Geometric Shapes through Virtual Reality": 1 +"4th Grade Science: Understanding Weather Patterns with Weather Station Kits and Online Simulations": 1 +"1st Grade English: Learning Phonics through Augmented Reality-based Storytelling": 1 +"5th Grade Social Studies: Discovering World Cultures through Interactive Virtual Tours": 1 +"9th Grade English: Analyzing Symbolism in Modern Literature Using AI Text Analysis": 1 +"5th Grade History: The Renaissance Era - Exploring the Significance of Printing Press in Spreading Ideas": 1 +"7th Grade Physical Education: The Physiology of Exercise and the Role of Pulse Oximeters": 1 +"Introduction to 3rd Grade Geometry: Demystifying Angles and Lines using Hands-On Math Games": 1 +"1st Grade Science: Exploring the Solar System with Augmented Reality": 1 +"2nd Grade Environmental Studies: Soil Investigation Tools - Discovering the Secrets of Soil Profiles": 1 +"4th Grade Environmental Science: Discovering Ecosystems with Virtual Field Trips": 1 +"8th Grade Mathematics: Building Geometric Shapes with 3D Printing Technology": 1 +"5th Grade Physical Education: Understanding the Biomechanics of Gymnastics with Motion Analysis": 1 +"Mozart’s Compositions in 6th Grade Music: Interpreting Symphonies with Audacity - A Dive into Classical Music": 1 +"8th Grade Physics & Lab Safety: Understanding Newton’s Laws with Interactive Experiments": 1 +"10th Grade Health and Wellness: An In-depth Study of Yoga Postures using Xsens Motion Capture Technology": 1 +"8th Grade Biology: Investigating Animal Physiology Using Augmented Reality Models": 1 +"6th Grade Art: Journeying through the Impressionist Era with Virtual Reality Exploration": 1 +"2nd Grade Language Arts: Building Vocabulary with Interactive Storytelling and Animated Word Clouds": 1 +"Cracking the Code: The Enigma Machine and its Role in World War II for 7th Grade History Studies": 1 +"9th Grade Geography: The Amazon Rainforest: Exploring Ecosystems & Sustainable Development": 1 +"4th Grade Art: Sculpting Basics: Creating Forms using Play-Doh": 1 +"6th Grade Music: Understanding Melodies: An Introduction to Piano Playing": 1 +"5th Grade Science: Energy Transfers: Learning Physics Through Simple Machines": 1 +"7th Grade History: The Industrial Revolution: Analyzing the Impact on Global Trade and Economies": 1 +"1st Grade Art: Learning Shapes and Colors with Online Drawing Tools": 1 +"9th Grade Music: Composing with GarageBand: An Interactive Approach to Music Production Techniques": 1 +"3rd Grade Science: Weather Patterns: Understanding Climate Change with Interactive Models": 1 +"6th Grade Art: Learning Perspective Drawing: A Practical Approach to 3D Sketching": 1 +"1st Grade Science: Discovering Sound: Fun Experiments with Musical Instruments and Sound Waves.": 1 +"5th Grade Art: Exploring Abstract Expressionism with Mixed Media Techniques": 1 +"6th Grade Science: Understanding Weather Patterns through Interactive Online Simulations": 1 +"10th Grade Literature: Delving into Modern Poetry Using Audio-Visual Analyses ": 1 +"4th Grade Geography: Discovering the World’s Biomes through Virtual Exploration ": 1 +"1st Grade Music: Introduction to Rhythm using Hand Drums and Musical Notation": 1 +"7th Grade Math: Understanding Geometry through Tangrams and Online Learning Tools": 1 +"5th Grade History: Journey Through the Middle Ages with Interactive Time Maps": 1 +"8th Grade Physical Education: Introduction to Team Sports with a Focus on Basketball Strategy": 1 +"Digital Paintings: A Fresh Approach to 3rd Grade Visual Arts Using Tablet Technology ": 1 +"2nd Grade Science: Animal Habitats - A Comprehensive Study of the Rainforest Ecosystem.": 1 +"1st Grade Science: Exploring Animal Habitats through Model Ecosystems ": 1 +"2nd Grade Art: Introduction to Mosaics with Recycled Materials": 1 +"4th Grade Mathematics: Utilizing Scratch for Coding Basic Arithmetic Operations ": 1 +"5th Grade Literature: Harnessing Digital Storytelling through Book Creator": 1 +"9th Grade History: Understanding Feudalism in Medieval Europe ": 1 +"5th Grade Geography: Investigating Climate Zones with Interactive Maps": 1 +"8th Grade Music: Fundamentals of Songwriting and Composing with GarageBand": 1 +"6th Grade History: The Renaissance Period and the Invention of the Printing Press": 1 +"Colonial America and Plantation Economy: A 7th Grade Social Studies Course": 1 +"3rd Grade Mathematics: Mastering Multiplication with Interactive Math Games and Apps": 1 +"6th Grade Biology: Ecosystem Interactions and Food Chains: An In-Depth Examination of Animals and Their Environments": 1 +"5th Grade Art: The Craft of Sculpting: Clay Modeling Techniques and 3D Printing": 1 +"12th Grade Music: Understanding Beethoven’s Piano Concerto No.5 Using Logic Pro Software and Music Production Techniques": 1 +"Kindergarten Music: Discovering Melodies with Xylophones and Basic Music Composition Software": 1 +"4th Grade English: Developing Narratives with Animation Techniques and Storyboard Drawing Skills": 1 +"Advanced Mathematics in 9th Grade: Calculus - Exploring Functions, Limits, and Derivatives": 1 +"11th Grade Geography: A Comprehensive Study of Earth’s Climate Zones and the Impact of Global Warming": 1 +"3rd Grade Physics: Simple Machines and Their Applications: A Study with Interactive Simulations": 1 +"American Civil War in 7th Grade History: Decoding the Telegraph Messages of the Confederate Army": 1 +"9th Grade Literature: Improving Reading Comprehension through Book Clubs and Literary Podcasts": 1 +"8th Grade Geometry: Understanding Angles and Shapes through Architectural Design": 1 +"4th Grade Music: Exploring Classical Symphony in the Baroque Period": 1 +"8th Grade Ancient Studies: The Pyramids: Insight into Ancient Egyptian Civilizations": 1 +"3rd Grade Biology: Animal Life Cycle and the Importance of Food Chain": 1 +"12th Grade Physics: Discovering Quantum Physics and Particle Theory using Laser Experiments": 1 +"Second Grade Reading: Developing Reading Skills using Interactive eBooks and Story Narration Method": 1 +"4th Grade Algebra: An In-depth Understanding of Variables and Equations using Digital Tools": 1 +"Second Grade Climate Studies: Understanding Wind Turbines in Our Sustainable Future": 1 +"7th Grade Algebra: Mastering Linear Equations with Graphing Tool & Visual Representation ": 1 +"10th Grade World History: The French Revolution and The Impact of Guerrilla Warfare": 1 +"4th Grade Geography: Journey through Continents with Interactive Globe Models": 1 +"1st Grade Health: Learning Hygiene Basics with Fun Handwashing Activities": 1 +"3rd Grade Mathematics: Unveiling Multiplication and Division through Number Line Games": 1 +"2nd Grade Art: Exploring Color Mixing with Watercolors and Interactive Art Software": 1 +"5th Grade English Literature: Enhancing Vocabulary through Online Crossword Puzzles in Book Reviews": 1 +"4th Grade Music: Understanding Melody and Harmony through Keyboards": 1 +"Kindergarten Introduction to Seasons: Discover with Interactive Weather Charts": 1 +"An Interactive Approach to Photosynthesis: Second Grade Biology": 1 +"5th Grade Earth Science: Grasping Tectonic Plates and Earthquakes through Interactive Geology Apps": 1 +"1st Grade Social Studies: Exploring Community Helpers through Virtual Field Trips": 1 +"5th Grade Art: Exploring Cubism and Abstract Art through Picasso’s Works and Digital Drawing Tools": 1 +"6th Grade Geography: Understanding Weather Patterns and Climate Change through Google Earth and Climate Data Visualization": 1 +"2nd Grade Science: Investigating the Life Cycle of Plants Using Time-Lapse Photography": 1 +"9th Grade Literature: Analyzing Symbolism in ’To Kill a Mockingbird’ Using Interactive Reading Apps": 1 +"7th Grade Math: Mastering Algebra through Interactive Games and Problem-Solving Strategies": 1 +"5th Grade Social Studies: The Impact of Railways on Westward Expansion: An Exploration of Historical Maps": 1 +"Kindergarten Music: Discovering Rhythm and Tempo with Hands-on Percussion Instruments": 1 +"8th Grade Environmental Science: The effect of Solar Panels and Wind Turbines on Renewable Energy Production": 1 +"4th Grade Physical Education: Introduction to Yoga and Mindfulness Exercises": 1 +"3rd Grade Language Arts: Developing Storytelling Skills through Puppetry and Digital Storybook Creation": 1 +"2nd Grade Computing: Introduction to Word Processing with Microsoft Word": 1 +"Kindergarten Literacy: Enhancing Alphabet Recognition with Interactive iPad Games": 1 +"2nd Grade Environmental Studies: Learning about Plant Life through Gardening and Leaf Identification using Nature Explorer Kits": 1 +"6th Grade History: The Impact of the Civil Rights Movement on Modern America": 1 +"Music Appreciation for 7th Grade: Exploring World Music through GarageBand and Virtual Instruments": 1 +"12th Grade Biology: Understanding the Human Immune System and Disease Defense": 1 +"7th Grade Physical Education: Improving Basketball Techniques through Motion Tracking Devices": 1 +"5th Grade Geography: Journey through the Seven Continents using Virtual Reality": 1 +"10th Grade Literature: Developing Analytical Reading Skills through Digital Storytelling in Kindle e-Books": 1 +"Advanced 4th Grade Mathematics: Multiplication Strategies using Grid Method and Manipulatives.": 1 +"7th Grade History: Exploring Medieval Times and the Evolution of Print: A Study of the Gutenberg Press": 1 +"2nd Grade Earth Science: Discovering Desert Ecosystems using Temperature Probes, Digital Compasses and Wind Speed Meters": 1 +"Virtual Reality Exploration of Space: A 3rd Grade Astronomy Course Using PlayStation VR Technology": 1 +"10th Grade Music: Symphony of Rhythm - Drums and the Concept of Beat": 1 +"4th Grade: Decoding Civilizations - Examining Prehistoric Tribes Using Augmented Reality Technology": 1 +"Kindergarten Science: Discovering Animal Habitats with Interactive 3D Models": 1 +"3rd Grade Botany: Understanding the Impact of Sunlight on Plant Growth using Photometers": 1 +"11th Grade Art: Mastering Photoshop’s Brush Dynamics for Digital Art Illustration": 1 +"7th Grade Physical Education: An Introduction to Aerobics with Smart Watches and Calorie Counter Apps": 1 +"9th Grade Music: Exploring Sound Mixing through Digital Audio Workstations in Modern Music Composition": 1 +"6th Grade Geography: Understanding Earthquake Dynamics through Seismograph Simulations and Virtual Reality": 1 +"9th Grade Literature: Studying Shakespeare’s Playwriting Techniques with Digital Annotation Tools": 1 +"4th Grade Math: Enhancing Multiplication Skills through Coding and Robotics": 1 +"7th Grade Physics: Exploring Newton’s Laws using DIY Rocket Kits and Physics Simulation Software": 1 +"1st Grade Art: Discovering Color Mixing with Digital Art Platforms": 1 +"5th Grade Astronomy: Investigating Constellations through Star Map Apps and Telescopes": 1 +"7th Grade Sociology: Understanding Social Structures through SimCity and Data Analysis Tools": 1 +"3rd Grade Environment Studies: Learning about Sustainable Agriculture through Interactive Farming Games": 1 +"9th Grade Computer Science: Introduction to Python Programming with Raspberry Pi and Minecraft": 1 +"1st Grade Language Arts: Improving Alphabet Recognition with Augmented Reality Flashcards": 1 +"3rd Grade Mathematics: Mastering Division with Number Bonds and Math Playground App": 1 +"7th Grade Economics: The Digital Age: Impact of Internet on Global Market and Economies": 1 +"4th Grade Social Studies: Unraveling Ancient Egyptian Hieroglyphs with Virtual Reality and Machine Learning": 1 +"Soccer: The Sport and Its Strategies - A Comprehensive Study of Formations in 9th Grade Physical Education.": 1 +"3rd Grade Math: Interactive Addition Lessons Using Puzzle Cubes, Jigsaw Puzzles, and Interactive Whiteboard Featuring Seesaw": 1 +"3rd Grade Music: Understanding The Beat of Percussions and Rhythms with Drums and a Metronome": 1 +"5th Grade Social Studies: Investigating the Inca Empire with Cartography and GIS Software": 1 +"6th Grade English: Character Development Exploration using Perspective Practice": 1 +"3rd Grade History: The Great Fire of London and the Evolution of Firefighting: A Study in Early Fire Prevention Methods": 1 +"Algebra Basics in 7th Grade Mathematics: Exploring Equations with Algebra Tiles": 1 +"2nd Grade Art: Introduction to Shapes and Colors Through Interactive Drawing Apps": 1 +"4th Grade Geography: Discovering the Wonders of Weather Patterns on Global Maps": 1 +"6th Grade Mathematics: Grasping Geometry with 3D Models": 1 +"2nd Grade English: Utilizing Minecraft for Interactive Narratives and Creative Writing": 1 +"1st Grade Earth Science: Discovering Soil and Rocks Through Hands-on Experiments": 1 +"Civil War Era - Unraveling the Mysteries of the Underground Railroad: A 9th Grade History Course": 1 +"8th Grade History: Tracing the Impact of the Steam Engine on Industrial Revolution": 1 +"11th Grade Health Education: Understanding Nutrition & Dietetics with a Focus on Balanced Diet": 1 +"2nd Grade Music: Exploring Rhythm Fundamentals with Xylophones and GarageBand": 1 +"Implementing Virtual Reality for Understanding Yoga Postures in 10th Grade Physical Education": 1 +"8th Grade Science: Exploring Plant Photosynthesis with Microscopic Observations and Interactive Virtual Lab Experiments": 1 +"3rd Grade Mathematics: Unraveling the World of Multiplication and Division through Gamified Learning": 1 +"2nd Grade Art: Creating Colorful Landscapes with Watercolors and Environment-friendly Materials": 1 +"10th Grade History: The Industrial Revolution and its Impact on Modern Technology": 1 +"8th Grade Language Arts: Harnessing the Power of Imagery and Personification in Short Stories through Online Group Discussions": 1 +"Understanding the Solar System: An Extensive 6th Grade Astronomy Course through 3D Modeling and Simulation": 1 +"5th Grade Music: Discovering Rhythm and Melody with GarageBand Digital Audio Workstation and Electronic Keyboards": 1 +"10th Grade Physical Education: Mastering Flexibility and Strength with Yoga and Nutritional Balanced Diet": 1 +"4th Grade Language Arts: Using Storybird and Google Slides for Comic Strip Storytelling in Narrative Writing": 1 +"8th Grade Mathematics: Geometry in Real Life - Exploring Angles and Shapes through Virtual Reality and 3D Printing": 1 +"5th Grade Geography: Exploring the Amazon Rainforest with Virtual Reality and Google Maps": 1 +"6th Grade Mathematics: Comprehending Fractions through Pizza Slices and Interactive Apps": 1 +"11th Grade Art History: Uncovering Impressionism Through Virtual Museum Tours": 1 +"3rd Grade Science: Introduction to Plant Life Cycle with Time-Lapse Videos": 1 +"7th Grade History: Journey Through the Renaissance Era with Augmented Reality and Online Storytelling": 1 +"10th Grade Literature: Interpreting Magical Realism Through Graphic Novels": 1 +"4th Grade’s Guide to Ocean Life: A Deep Dive into Coral Reefs with Virtual Scuba Diving and National Geographic Videos": 1 +"Analyzing the Symbolism in Edgar Allan Poe’s ’The Raven’ in 8th Grade Literature using Interactive eBooks, Popplet, Ted-Ed Videos, and Google Classroom for Shared Insights": 1 +"2nd Grade Art: Introduction to Primary Colors with Watercolor Painting and Color Mixing Activities": 1 +"Integrating Technology: Storytelling with Book Creator for 1st Grade Literature Course": 1 +"9th Grade Algebra: Applying Quadratic Equations in Real-Life Scenarios": 1 +"8th Grade Human Anatomy: Understanding the Digestive System through 3D Modelling": 1 +"2nd Grade Geography: Learning about World Landforms through Augmented Reality ": 1 +"5th Grade Literature: Exploring Similes in Classic Fairytales using Collaborative Online Platforms": 1 +"From Hieroglyphs to Emojis: The Evolution of Visual Communication in 7th Grade Media Studies": 1 +"3rd Grade Ancient History: Journey through Ancient Rome using Virtual Reality": 1 +"6th Grade English: Enhancing Writing Skills through Dialogue Construction": 1 +"5th Grade Environmental Science: Investigating Climate Patterns with GIS Technology": 1 +"3rd Grade Physical Education: Fundamental Soccer Techniques - Dribbling and Passing Drills": 1 +"7th Grade Reading: Boosting Interpretation Skills through Science Fiction Novels and Short Stories": 1 +"4th Grade English: Journey into Poetry: Enhancing Descriptive Skills with RhymeZone": 1 +"6th Grade Literature: Discovering Myths and Legends through Comic Strip Design with Storyboard That": 1 +"4th Grade Mathematics: Grasping Fractions with Interactive Pie Charts and Virtual Reality": 1 +"8th Grade Music: Understanding Treble Clef Notes with a Digital Tuner": 1 +"7th Grade Mathematics: Algebra Fundamentals and the Use of Algebraic Expressions": 1 +"6th Grade Science: Exploring Desert Ecosystems Using Satellite Imagery Technology": 1 +"2nd Grade English: Beginning with Fables and the Magic of Story Mapping": 1 +"1st Grade Music: Exploring Melody and Harmony with a Glockenspiel": 1 +"4th Grade Music: Mastering Melody and Rhythm through Ukulele Strumming": 1 +"10th Grade Social Studies: French Revolution - The Role of Enlightenment Ideas in Shaping Revolution.": 1 +"4th Grade Literature: Exploring Character Development in Fairy Tales": 1 +"7th Grade History: Unveiling the Secrets of Roman Aqueducts’ Construction: A Study on Arch Engineering Techniques": 1 +"9th Grade Music: Analyzing the Impact of Synthesizers on Electronic Music": 1 +"4th Grade Archaeology: Journey into the Mayan Temples with 3D Laser Scanning": 1 +"1st Grade Botany: Understanding the Photosynthesis Process in Plants": 1 +"2nd Grade Biology: The Fascinating Journey of a Tadpole to a Frog: A Study with Time-Lapse Photography": 1 +"2nd Grade Digital Art: Crafting Animated Stories using Scratch Jr on Tablet": 1 +"Kindergarten Geography: Virtual Exploration of the Amazon Rainforest": 1 +"7th Grade Physical Education: Introduction to Soccer Tactics and Techniques with Interactive Drills": 1 +"Kindergarten Mathematics: Learning Shapes and Sizes with Interactive Puzzles.": 1 +"2nd Grade Science: The Wonderful World of Simple Machines using LEGO Education Kits": 1 +"6th Grade Music: An Introduction to Jazz Theory with Virtual Instruments and GarageBand": 1 +"4th Grade Mathematics: Discovering Multiplication with Grids and Number Lines": 1 +"7th Grade Physical Education: Enhancing Football Skills with Virtual Reality Training ": 1 +"3rd Grade Art: Exploring Textures and Patterns with Collage Art": 1 +"8th Grade Language Arts: Understanding Symbolism in Literature with Audiobooks and Interactive Texts": 1 +"5th Grade Social Studies: The Impact of Railroads on the Development of the Western Frontier": 1 +"1st Grade Geometry: Fun with Shapes and Tangrams in Origami": 1 +"6th Grade World History: The Great Pyramids and the Techniques of Ancient Egyptian Builders": 1 +"4th Grade Science: The Life Cycle of Plants using Interactive Augmented Reality Apps": 1 +"5th Grade Science: Exploring Plant Cells and Photosynthesis through Microscopic Studies": 1 +"1st Grade Art: Color Theory and Collage Making: A Journey with Paper and Glue": 1 +"7th Grade Mathematics: An Introduction to Probability and Statistics through Dice Games": 1 +"Kindergarten Math: Learning to Count and Basic Arithmetic through Number Puzzles": 1 +"3rd Grade Environmental Studies: Understanding the Life Cycle of Butterflies through Live Observation": 1 +"5th Grade History: Unraveling the Significance of the Silk Road through Interactive Maps": 1 +"4th Grade Physical Education: The Basics of Basketball: Dribbling, Shooting, and Teamwork": 1 +"2nd Grade Music: Exploring Rhythms and Melodies through Hand Percussion Instruments ": 1 +"1st Grade Social Studies: Discovering Community Helpers and Their Roles through Field Visits": 1 +"6th Grade Science: The Water Cycle: An In-depth Study through Interactive Experiments": 1 +"5th Grade Geography: Exploring World Cultures Through Google Earth": 1 +"6th Grade History: Ancient Civilizations and their Agricultural Innovations": 1 +"7th Grade Social Studies: Investigating the Impact of Social Media on Global Communication": 1 +"2nd Grade Art: Encouraging Creativity with MS Paint, Adobe Fresco, and Procreate": 1 +"9th Grade Literature: Poetry Analysis Workshop - Mastering Metaphor Interpretation": 1 +"3rd Grade Language Arts: Spelling and Sentence Structure Development through Storytelling": 1 +"1st Grade Language Arts: Basic Phonics Learning with Starfall App": 1 +"5th Grade Science: Exploring Biodiversity using Seek by iNaturalist App and National Geographic Documentaries": 1 +"3rd Grade Music: Learning Pitch and Harmony through GarageBand and Tonic Tutor": 1 +"Kindergarten Reading: Letter Recognition in Children’s Classics with Interactive Whiteboard Games and Virtual Reality": 1 +"1st Grade Geography: Discovering the Earth’s Continents through Virtual Reality Tours": 1 +"5th Grade Mathematics: Enhancing Problem-solving Skills through Chess Tactics and Strategy": 1 +"2nd Grade History: Journey into the Age of Dinosaurs with Virtual Paleontological Excavations": 1 +"6th Grade Science: Understanding Weather Patterns through Interactive Meteorological Data Analysis": 1 +"4th Grade Language Arts: Developing Creative Writing Abilities through Digital Storyboarding": 1 +"3rd Grade Arts: Exploring Color Theory with Interactive Digital Painting Software": 1 +"7th Grade Social Studies: Exploring the Impact of Technology on Modern Societies through Case Studies": 1 +"2nd Grade Music: Introduction to Melodic Compositions using GarageBand": 1 +"10th Grade English: Analyzing Literary Themes through Classic Novels and Film Adaptations": 1 +"5th Grade Health: Understanding Human Nutrition through Interactive Digital Food Pyramids": 1 +"4th Grade Mathematics: Exploring Fractions and Decimals through Real-Life Shopping Scenarios": 1 +"2nd Grade Art: Discovering Color Theory through Hands-On Painting Projects": 1 +"8th Grade Physical Education: Examining the Benefits of Swimming for Physical Fitness and Stress Relief": 1 +"5th Grade Social Studies: The Impact of Industrial Revolution on Modern Society": 1 +"7th Grade Science: Investigating the Solar System and the Universe using Virtual Reality": 1 +"4th Grade Language Arts: Enhancing Reading Comprehension Through Storytelling and Drama": 1 +"6th Grade Geography: Understanding Climate Change and Its Impact on the Polar Regions": 1 +"The Role of the Printing Press in the Renaissance: A Detailed Study in 3rd Grade History": 1 +"7th Grade History: The Civil Rights Movement - The Power of Nonviolent Protests": 1 +"10th Grade Music: Exploring Jazz Improvisation with Virtual Instruments": 1 +"5th Grade Geography: Uncovering the Secrets of Volcanoes: An Interactive Study using Virtual Reality": 1 +"8th Grade Art: Discovering Picasso’s Blue Period: An Insight into Art History with Adobe Spark": 1 +"6th Grade Geometry: Understanding Perimeters and Areas through Minecraft": 1 +"1st Grade Science: Learning about Life Cycles with Interactive Augmented Reality": 1 +"5th Grade Literature: Exploring the World of Fantasy through J.K. Rowling’s Harry Potter": 1 +"4th Grade Biology: A Journey into the Animal Kingdom using National Geographic Kids ": 1 +"8th Grade Physics: Exploring the Mysteries of Gravity with NASA’s Space Place": 1 +"1st Grade Mathematics: Building Numeracy Skills through Numberblocks ": 1 +"6th Grade Social Studies: Exploring Cultural Diversity with Google Earth ": 1 +"2nd Grade Environmental Studies: Understanding the Importance of Recycling: A Practical Approach with GreenEdu": 1 +"2nd Grade Mathematics: Understanding Subtraction and Addition through Virtual Manipulatives and iPads": 1 +"4th Grade Physical Education: Enhancing Strength and Coordination with Basic Gymnastics Exercises": 1 +"10th Grade Music: Harmony in Music - Discovering the Role of Sound Engineers in Maintaining Acoustic Balance": 1 +"2nd Grade Geography: Navigating Oceans and Rivers using Globes and Geographic Information Systems": 1 +"6th Grade Mathematics: Utilizing the Slide Rule in Solving Fractions with Tangram and Pentomino Strategies": 1 +"Kindergarten Social Studies: Exploring Neighborhood Dynamics through Virtual Reality Field Trips": 1 +"4th Grade Science: Investigating Physics Through Prism Light Experiments and Evaporation with a Peek into Condensation": 1 +"5th Grade Language Arts: Mastering Metaphors in Poetry with Interactive Audiobooks": 1 +"7th Grade History: The Influence of the Printing Press on Renaissance Europe and the Introduction of the Sextant in Nautical Navigation": 1 +"1st Grade Environmental Studies: Understanding Plant Growth through Hands-on Gardening Projects": 1 +"7th Grade Physics: Understanding Gravity: The Pendulum’s Impact on Scientific Thought": 1 +"5th Grade Geography: Exploring the Amazon Rainforest through VR Immersion and 3D Mapping": 1 +"10th Grade Literature: Exploring Irony in Classic Novels Using Interactive E-books": 1 +"The Science of Taste: Exploring Flavor Profiles with pH Testing in First Grade": 1 +"7th Grade Civics: Unraveling the Constitution using the Morse Code as a Communication Tool": 1 +"5th Grade Astronomy: Comprehending Galaxies through Telescope Observation and Radio Telemetry": 1 +"3rd Grade Grammar: Enhancing Adjective Usage in Descriptive Writing with Interactive Whiteboards & Kahoot Quizzes": 1 +"6th Grade Biology: Aquatic Ecosystems and the Importance of Phytoplankton": 1 +"11th Grade Literature: Analyzing Hemingway’s Narratives using Machine Learning and Thematic Analysis": 1 +"11th Grade Art: Exploring 3D Modeling with Blender’s Sculpting Tools.": 1 +"5th Grade Chemistry: Exploring Solids, Liquids, and Gases through Interactive Experiments": 1 +"The Industrial Revolution, Cotton Gin, and Slavery: Tracing the Evolution of Capitalism in Early America": 1 +"Kindergarten Dance: Learning Basic Steps and Movements with Interactive Music": 1 +"Eighth Grade Literature: Deepening Interpretation Skills through Thematic Analysis of Short Stories": 1 +"2nd Grade History: Fun Journey through Ancient Civilizations with Augmented Reality Puzzles": 1 +"7th Grade Sculpture: Crafting Miniature Clay Figures Inspired by Greek Mythology": 1 +"3rd Grade Piano: Mastering Melodies with Interactive Music Apps": 1 +"12th Grade Economics: The Intricacies of Stock Market - Analyzing Tech Company IPOs using Supply and Demand Principles": 1 +"Second Grade English: Enhancing Word Recognition and Spelling with Digital Games": 1 +"5th Grade Choir: Exploring Harmony and Melody through Choral Works of Renaissance Composers": 1 +"4th Grade Math: Exploring Geometry through Origami Folding Techniques": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies - A Focus on Metamorphosis": 1 +"9th Grade Biology: The Role of DNA in Genetic Variation and Evolution": 1 +"3rd Grade Art: Boosting Creativity through Digital Drawing on Procreate": 1 +"7th Grade Geography: Understanding Climate Patterns through Global Weather Study ": 1 +"5th Grade Music: Exploring Rhythm and Tempo with Digital Drum Machines": 1 +"6th Grade Literature: Delving into Fantasy Worlds through J.K. Rowling’s Harry Potter Series": 1 +"4th Grade Environmental Studies: The Importance of Recycling in Waste Management - A Closer Look at Composting": 1 +"8th Grade Physics: Grasping the Concept of Gravity through Space Exploration": 1 +"7th Grade History: The Significance of the Silk Road in Ancient Trade and Cultural Exchange.": 1 +"5th Grade History: Exploring Ancient Egypt through Virtual Reality ": 1 +"8th Grade English: Comprehending Shakespeare’s Plays through Dramatic Reenactments": 1 +"7th Grade Physics: Understanding Gravity and Motion using Interactive Simulations": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Fun Math Games": 1 +"6th Grade Art: Discovering the Renaissance Era through Creative Drawing Sessions": 1 +"5th Grade Science: The Wonders of Astronomy - Exploring the Solar System with Planetarium Software": 1 +"9th Grade Literature: Analyzing 20th Century Poetry with Interactive Annotations": 1 +"4th Grade Geography: The Mystery of Plate Tectonics and Earthquakes Explained": 1 +"3rd Grade Health: Understanding the Food Pyramid with Interactive Meal Planning": 1 +"7th Grade Music: The Journey of Classical Music and the Art of Playing the Violin": 1 +"7th Grade Art: Exploring Renaissance Techniques in Acrylic Painting": 1 +"5th Grade Biology: Navigating Human Anatomy with 3D Printed Models": 1 +"10th Grade Drama: Developing Characterization and Stage Presence with Stanislavski’s System": 1 +"3rd Grade Language Arts: Decoding Metaphors in Popular Children’s Books": 1 +"Discovering Prehistoric Times: The Role of Fossils in 2nd Grade Earth Science": 1 +"Basketball in 6th Grade PE: Enhancing Shooting Skills with the Wilson Evolution Game Ball": 1 +"1st Grade Mathematics: Grasping Numbers and Counting through Interactive Puzzle Games": 1 +"11th Grade Computer Science: Mastering Java Programming for Efficient Data Structures": 1 +"7th Grade Civics: Understanding Economic Systems and Market Principles through Virtual Reality Simulations": 1 +"2nd Grade Elementary French: Expanding Vocabulary with iPad Apps in Interactive Language Lessons": 1 +"8th Grade Physics: Gravitational Forces and Their Impact on Planetary Orbit Using Interactive Simulations": 1 +"5th Grade History: The Impact of the Printing Press on the Renaissance: A Deep Dive into Technology Evolution": 1 +"2nd Grade Science: Exploring Animal Habitats with Virtual Reality Technology": 1 +"7th Grade Mathematics: Unlocking Geometry with Geogebra and 3D Modelling": 1 +"4th Grade Environmental Studies: Understanding Ecosystems with Augmented Reality": 1 +"9th Grade Literature: Analyzing Hemingway’s Use of Dialogue in The Old Man and the Sea with Audio Annotations": 1 +"1st Grade Geography: Exploring Landforms and Topography using Google Earth": 1 +"3rd Grade Music: Rhythm and Tempo Fundamentals - Percussion Instruments and Beat-Making Software": 1 +"10th Grade Computer Science: Introduction to Coding with Scratch and Raspberry Pi": 1 +"5th Grade Biology: Investigating Animal Adaptations through Fieldwork and Photography": 1 +"5th Grade Introduction to Multiplication and Division Using Interactive Learning Apps": 1 +"3rd Grade Elementary Science: Basics of Plant Life Cycle with Hands-on Gardening Activities": 1 +"8th Grade Music: Understanding Musical Scales: A Comprehensive Guide to Guitar Tabs": 1 +"5th Grade Music: An In-Depth Study of Mozart’s Symphony No. 40 Using Music Maker Jam and Sibelius Notation Software": 1 +"8th Grade Mathematics: Conquering Decimals with Virtual Labs and Kahoot": 1 +"3rd Grade Art: Painting Basics using Virtual Reality Technology": 1 +"10th Grade Mathematics: Algebra Essentials - Understanding Variables and Equations: A Deep Dive into Cartesian Coordinates.": 1 +"3rd Grade Music: Discovering Harmony and Melody: A Basic Guide to GarageBand": 1 +"7th Grade History: Understanding the Role of Ancient Egyptian Pyramids & Hieroglyphs in the Evolution of Written Communication.": 1 +"4th Grade Elementary: Mastering Multiplication and Division using Interactive Digital Blackboards": 1 +"2nd Grade Physical Education: Learning Balance and Coordination with Yoga and Kinesthetic Learning Tools": 1 +"3rd Grade Mathematics: Understanding Geometry with Lego Blocks and Augmented Reality App": 1 +"5th Grade Science: Exploring Mars’ Surface using Stellarium Virtual Planetarium and Interactive 3D Models": 1 +"8th Grade Music: Developing Pitch Recognition through Violin Practice and Aural Training Methods": 1 +"7th Grade English: Enhancing Creative Writing Skills through Interactive Storytelling using Edmodo Platform": 1 +"12th Grade History: Analyzing the Socio-Economic Changes of the French Revolution": 1 +"5th Grade Language Arts: Crafting Short Stories inspired by Sustainable Agriculture": 1 +"4th Grade Science: Investigating Animal Habitats with Virtual Reality Field Trips": 1 +"1st Grade Music: Introducing Melody using Xylophones and Music Creation Apps": 1 +"12th Grade English: Delving into British Literature with Online Libraries and Literary Analysis Software": 1 +"4th Grade Science: Exploring Simple Machines Using Lego and K’Nex": 1 +"5th Grade Language Arts: Reinforcing Reading Comprehension with Google Classroom and Quizlet ": 1 +"7th Grade Art: Dive into Pop Art - Creating Collage Portraits with Recycled Materials": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with the Use of Abacus": 1 +"5th Grade Geography: Investigating Modern Cultures through Food Studies": 1 +"9th Grade Music: Understanding the Impact of Digital Synthesizers in Electronic Music with Ableton Live": 1 +"3rd Grade English: Crafting Fairy Tale Narratives Using Storyboard That": 1 +"6th Grade Mathematics: Exploring Probability and Statistics with Google Sheets through Sports Data": 1 +"7th Grade Music: The Transformation of Jazz Music, the Saxophone, and the Role of the Big Band": 1 +"8th Grade History: The Industrial Revolution - Examining the Effects of Steam Power": 1 +"8th Grade Geography: Understanding Plate Tectonics through Interactive Earthquake Simulations": 1 +"2nd Grade Math: The Magic of Multiplication: Learning through Fun Math Games": 1 +"6th Grade Literature: Exploring Themes in Classic Novels using Digital Annotation Tools": 1 +"1st Grade Art: Discovering Colors and Textures with Finger Painting and Collage Techniques": 1 +"7th Grade Physics: The Mystery of Light: Exploring Reflection and Refraction through Experiments": 1 +"3rd Grade History: Journey through Medieval Times: Learning about Castles and Knights through Virtual Reality": 1 +"5th Grade English: The Power of Poetry: Engaging with Metaphors and Similes in Google Docs": 1 +"Technological Integration in Language Learning: Using Augmented Reality for 2nd Grade Spanish Vocabulary Building": 1 +"8th Grade Economics: The Role of Supply and Demand in Market Structures": 1 +"4th Grade Science: The Secret Life of Plants: Observing Photosynthesis through Microscopes": 1 +"3rd Grade Science: Exploring Weather Patterns using Interactive Software and Weather Maps": 1 +"5th Grade History: Uncovering Ancient Civilizations through Virtual Reality and Tablet Apps": 1 +"1st Grade Mathematics: Learning Number Sense and Counting using Manipulatives and Digital Games": 1 +"7th Grade English: Enhancing Writing Skills through Blogging and Online Peer Review": 1 +"Kindergarten: Introduction to Shapes and Patterns using Building Blocks and Interactive Whiteboards": 1 +"6th Grade Geography: Navigating the World using Interactive Globes and Online Mapping Tools": 1 +"8th Grade Music: Discovering Harmony and Chords through Pianos and Digital Music Software": 1 +"9th Grade Algebra: Quadratic Equations & Polynomial Functions through Graphing Calculators and Online Tutorials": 1 +"4th Grade Biology: Exploring Plant Life Cycles using Microscopes and Time-lapse Photography": 1 +"Advanced 11th Grade Physics: Understanding Thermodynamics & Quantum Mechanics Concepts with Interactive Simulations and Models": 1 +"2nd Grade Art: Exploring Color Mixing Through Digital Painting Apps": 1 +"4th Grade Geography: Ancient Mayan Civilization - The Influence of Astronomy on Temple Architecture": 1 +"2nd Grade Social Studies: The Native Americans, Their Pictographs and Early Farming Techniques": 1 +"6th Grade English: Understanding Poetry through Interactive E-books on Kindle": 1 +"3rd Grade Science: Exploring Ecosystems through DIY Terrarium Projects: Creating Miniature Landscapes using Recycled Materials": 1 +"7th Grade Physical Education: Utilizing Fitbit Ace 2 for Activity Monitoring": 1 +"Rocket Science Basics: An Exploration of Thrust Using Interactive Simulations, Force-Time Graphs, Raspberry Pi Computers, Newton’s Third Law and Rocket Equations": 1 +"2nd Grade Science: Discovering the Wonders of Weather - Learning About Cloud Formations through Cotton Craft Projects": 1 +"4th Grade History: Delving into the Roman Empire with Iron Metallurgy, the Republic, and the Gladiators": 1 +"2nd Grade Mathematics: Understanding Fractions with Cooking Measurements.": 1 +"9th Grade English: Analyzing Symbolism in Classic Literature with Interactive eBooks": 1 +"6th Grade Science: Discovering Volcanology: Engaging with Plate Tectonics through Virtual Reality": 1 +"2nd Grade Geography: Navigating World Landmarks with Augmented Reality": 1 +"4th Grade Math: Understanding Fractions through Interactive Cooking Lessons": 1 +"3rd Grade Music: Introduction to String Instruments: Learning Notes with Virtual Violin": 1 +"1st Grade Animal Science: A Dive into Marine Life with Interactive Aquarium Visits": 1 +"7th Grade Art: Sculpture and Form: Exploring Clay Modelling Techniques": 1 +"8th Grade Civics: Understanding Government Structure with Interactive Town Hall Simulations": 1 +"5th Grade Physics: Exploring Simple Machines with Lego Building Projects": 1 +"2nd Grade Life Skills: Learning Time Management with Digital Clocks and Schedules": 1 +"10th Grade Chemistry: Exploring Chemical Reactions through Virtual Labs and Interactive Simulations": 1 +"1st Grade Math: Learning Numbers and Basic Addition through Interactive Games and Storytelling": 1 +"7th Grade Geography: Understanding World Cultures through Virtual Reality Travel": 1 +"Kindergarten Science: Discovering Weather Patterns through Hands-On Experiments and Observations": 1 +"6th Grade English: Enhancing Writing Skills with Story Creation and Peer Review": 1 +"3rd Grade Math: Exploring Fractions through Baking and Recipe Conversion": 1 +"9th Grade Biology: Understanding Human Anatomy with 3D Printing and Virtual Dissections": 1 +"2nd Grade Reading: Developing Reading Comprehension Skills through Guided Reading and Dramatization": 1 +"8th Grade Math: Introduction to Geometry using 3D Modeling Software ": 1 +"4th Grade Social Studies: Exploring Native American History through Artifacts and Storytelling": 1 +"5th Grade Science: Understanding Photosynthesis through Virtual Reality Simulations": 1 +"7th Grade Mathematics: Enhancing Algebraic Thinking through Interactive Puzzle Games on Digital Platforms": 1 +"4th Grade History: The Impact of the Gold Rush on Western Expansion and Settlement Patterns": 1 +"6th Grade Art: Sculpting Abstract Figures Using Clay Molding and 3D Printing Techniques": 1 +"2nd Grade Geography: Navigating the Great Barrier Reef using Google Earth and Augmented Reality": 1 +"5th Grade Music: Rhythm and Rhyme - Exploring Beat Patterns in Percussion Instruments": 1 +"4th Grade Language Arts: Creating Immersive Narratives through Stop-Motion Animation and Storyboarding Techniques": 1 +"9th Grade Social Studies: Analyzing Economic Trends with Real-Time Stock Market Data using Excel Spreadsheets": 1 +"7th Grade English: Deciphering Symbolism in African Folklore Using Interactive E-books and Digital Mind Mapping Tools": 1 +"8th Grade Science: Exploring the Physics of Flight with Drone Technology and Simulation Software": 1 +"5th Grade Science: Discovering the Water Cycle through Interactive Digital Experiments": 1 +"2nd Grade Geography: Exploring World Landforms through Virtual Tours": 1 +"3rd Grade Mathematics: Understanding Multiplication with Number Blocks and Interactive Games": 1 +"4th Grade History: Learning Ancient Civilizations through Interactive Timelines": 1 +"5th Grade Language Arts: The Journey of Poetry and Prose using E-books": 1 +"1st Grade Art: Introduction to Shapes and Colors with Digital Drawing Tools": 1 +"3rd Grade Physical Education: Basics of Team Sports through Virtual Reality Games": 1 +"2nd Grade Astronomy: Introduction to Solar System through Augmented Reality Models": 1 +"1st Grade Health and Wellness: Understanding Healthy Eating through Fun Recipe Activities": 1 +"5th Grade Physics: Exploring Forces and Motion with Interactive Lab Experiments": 1 +"4th Grade Science: Exploring Photosynthesis Through Hands-on Plant Experiments": 1 +"5th Grade Mathematics: Understanding Fractions Using Pizza Slices and the Math-U-See Manipulatives ": 1 +"7th Grade History: Understanding the Impact of the Silk Road on Global Trade": 1 +"9th Grade Language Arts: Delving into Shakespearean Sonnets and their Literary Significance": 1 +"2nd Grade Geography: An Interactive Journey Through the World’s Landforms with Virtual Reality": 1 +"7th Grade English Literature: Engaging in Classic Literature Through Virtual Reading Circles": 1 +"Kindergarten Mathematics: Mastering Counting and the Number System with Colorful Interactive Games": 1 +"3rd Grade Art: Exploring Colors and Shapes Through Finger Painting and Collage Creation": 1 +"Montessori Number Rods: A Comprehensive Course to Understand Multiplication and Division for 3rd Graders": 1 +"World War II Aircraft: An Analysis of their Role in Shaping Modern Aerial Combat: A 10th Grade History Course": 1 +"9th Grade Science: Exploring Physics - Understanding Newton’s Laws through Practical Experiments": 1 +"3rd Grade Language Arts: Mastering Pronouns through Interactive Storytelling": 1 +"7th Grade History: Medieval Europe - The Impact of the Black Death on Society and Economy": 1 +"3rd Grade Mathematics: Exploring Multiplication Concepts with Interactive Grids": 1 +"2nd Grade Science: Discovering Plant Life with Microscope Observations": 1 +"7th Grade Social Studies: Journey through the Silk Road and its Influence on Trade": 1 +"Kindergarten Language Arts: Alphabet Adventures - Learning Phonics through Interactive Apps on Amazon Fire Kids Edition": 1 +"5th Grade Social Studies: Detailed Study of the Boston Tea Party in the American Revolution": 1 +"9th Grade History: Industrial Revolution and Environmental Impact: The Role of the Steam Engine and 10 Conservation Strategies": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction using Math Learning Apps via Augmented Reality on iPads": 1 +"7th Grade Geography: Exploring the Amazon Rainforest: Biodiversity and Conservation Efforts": 1 +"4th Grade Science: The Wonders of Weather: Understanding Meteorology through Hands-on Experiments": 1 +"6th Grade English: Exploring Shakespeare’s Plays through Interactive Drama Sessions": 1 +"8th Grade Mathematics: The Fascinating World of Geometry: Exploring Shapes and their Properties": 1 +"3rd Grade History: The Age of Dinosaurs: Paleontology and Fossil Hunting": 1 +"7th Grade Physical Education: The Mechanics of Dance: Understanding Movement and Choreography": 1 +"4th Grade Music: Discovering Jazz: Louis Armstrong and the Power of Improvisation": 1 +"6th Grade Science: The Marvels of Magnetism: Hands-on Experiments with Magnetic Fields": 1 +"5th Grade Mathematics: Mastering Fractions with Fun and Interactive Games": 1 +"8th Grade Social Studies: The Renaissance Era - Artistic Revolution and the Birth of Humanism": 1 +"8th Grade Art: Appreciating Van Gogh’s Masterpieces Through Color Theory and Brush Techniques": 1 +"11th Grade Physics: Exploring Quantum Mechanics with Quantum Computer Simulations": 1 +"Fourth Grade Geography: Unfolding the Mysteries of the Amazon Rainforest and its Indigenous Tribes": 1 +"12th Grade Literature: Decoding Kafka’s Metamorphosis with Psychoanalytical Theory and Textual analysis": 1 +"6th Grade Ancient History: Sailing with the Vikings - Navigation Techniques and Longship Constructions": 1 +"8th Grade Environmental Studies: Unveiling the Secrets of Coral Reefs through Marine Biology": 1 +"Advanced 3rd Grade Drama: Understanding the Principles of Pantomime using VR Technology and Body Language Analysis": 1 +"2nd Grade French: Enhancing Language Acquisition with Interactive Storytelling and Pictorial Aids": 1 +"2nd Grade Algebra: Fun with Fractions Using Montessori Materials": 1 +"2nd Grade Earth Science: Discovering the Solar System and its Planets with Interactive 3D Models": 1 +"4th Grade Science: The Wonders of Photosynthesis - The Role of Chloroplasts in Plant Life": 1 +"1st Grade Social Studies: Discovering Our Neighborhood Through Virtual Walking Tours": 1 +"3rd Grade Music: Uncovering Harmony with Handbells ": 1 +"5th Grade Science: The Age of Exploration: The Invention of the Telescope and the Development of the Compass": 1 +"2nd Grade Physical Education: Mastering Basketball and Shooting Techniques ": 1 +"3rd Grade Music: Enhancing Beat Perception Using Drums, Maracas and a Digital Beat Maker": 1 +"2nd Grade Mathematics: Learning Elementary Fractions with Pizza Slices and Interactive Apps ": 1 +"5th Grade Music: An Introduction to Classical Composers - A Focus on the Piano ": 1 +"4th Grade Language Arts: Developing Creative Writing Skills through Storyjumper and Google Docs ": 1 +"5th Grade: Appreciating Greek Mythology: The Influence of the Alphabet": 1 +"7th Grade History: Tracing Civil Rights Movements Through Time with Interactive Archives": 1 +"5th Grade Astronomy: Discovering Planetary Systems with Virtual Reality Equipment": 1 +"2nd Grade Music Appreciation: Exploring Sound Waves and Vibrations with A DIY Xylophone": 1 +"Physical Education for 6th Graders: Integrating Heart Rate Monitors in Aerobic Exercise Sessions": 1 +"3rd Grade Environmental Science: Exploring Ecosystems and Food Chains with DIY Terrarium Kits": 1 +"Kindergarten Social Studies: Understanding the Role of Community Helpers Through Role-Play and Digital Storytelling ": 1 +"7th Grade Music: Exploring Beethoven’s Symphony Structures with GarageBand and MIDI Keyboards": 1 +"4th Grade Mathematics: Grasping the Concept of Perimeter and Area through Hands-On Activities and Graphing Calculators": 1 +"10th Grade Biology: Understanding the Human Digestive System through 3D Models and Virtual Reality Headsets": 1 +"1st Grade Art: Discovering Colors - Mixing and Creating Shades with Watercolor Paints": 1 +"4th Grade Geography: Navigating the Globe with Google Earth: An Exploration of Major Landforms": 1 +"7th Grade History: The Industrial Revolution: Understanding the Impact of the Cotton Gin and Steam Engine in America": 1 +"1st Grade Mathematics: Grasping Number Concepts with Counting Games and Digital Manipulatives": 1 +"6th Grade Science: Investigating Plant Growth and Photosynthesis through Digital Microscopy": 1 +"2nd Grade Art: Exploring Textures and Patterns through Collage Making with Tissue Paper and Fabric Scraps": 1 +"8th Grade Physical Education: Enhancing Basketball Skills with Motion Analysis Software": 1 +"4th Grade English: Enhancing Creative Writing Skills through Storyboarding on Storybird Platform": 1 +"2nd Grade Environmental Studies: Discovering the Ocean Ecosystem through Interactive Online Games": 1 +"5th Grade Music: Discovering Rhythms and Melodies through the Use of Digital Pianos and Music Composition Software": 1 +"1st Grade Social Studies: Understanding Community Roles through Role-Play and Interactive Digital Stories": 1 +"6th Grade Geography: Uncovering World Landforms using Google Earth and Interactive Mapping": 1 +"3rd Grade Language Arts: Improving Writing Skills through Blogging and Online Discussions": 1 +"7th Grade Health: Understanding Food Groups and Balanced Diet through Interactive Apps": 1 +"12th Grade Physics: Utilizing MATLAB and SciPy for Understanding Quantum Mechanics": 1 +"Investigating Plant Life Cycles with Microscopes: A Detailed 6th Grade Science Course on Botany": 1 +"4th Grade Mathematics: Mastering Addition and Subtraction using Khan Academy": 1 +"1st Grade Math: Understanding Place Value with Interactive Whiteboards and Virtual Manipulatives": 1 +"12th Grade History: Studying the Effect of the Printing Press on Society during the Renaissance": 1 +"8th Grade Social Studies: Analyzing the Influence of the Silk Road on Ancient Civilizations": 1 +"3rd Grade Geometry: Learning About 3D Shapes through Minecraft Education Edition": 1 +"4th Grade Mathematics: Exploring Geometry with 3D Printing and Origami Techniques": 1 +"6th Grade Literature: Examining Mystery Stories Through Sherlock Holmes and Detective Role Playing": 1 +"1st Grade Science: Venturing into the Animal Kingdom with Live Butterfly Life Cycle Observations": 1 +"8th Grade History: World War II: The Transformation of Warfare with VR Battlefield Tours": 1 +"5th Grade Geography: Unraveling the Secrets of Weather Patterns with Interactive Climate Maps": 1 +"2nd Grade English: Learning Phonics and Vocabulary Through Puppet Show Storytelling ": 1 +"7th Grade Music: Understanding Rhythms in Jazz Music Through GarageBand and Drum Machine Manipulation": 1 +"9th Grade Social Studies: Dissecting Democracy: A Deep Dive into the Greek Political System": 1 +"4th Grade Science: Investigating the Solar System Through Planetarium Visits and Telescope Observations": 1 +"3rd Grade Social Studies: Discovering the Importance of Farmers in Our Everyday Life": 1 +"3rd Grade Science: Introduction to Plant Life Cycles using Interactive Online Simulations": 1 +"7th Grade History: Decoding Egyptian Hieroglyphics with the Rosetta Stone App": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals with Real-World Shopping Scenarios": 1 +"2nd Grade English: Phonics and Spelling Mastery using Interactive Digital Games": 1 +"6th Grade Science: Climate Change Studies with Virtual Field Trips in Google Earth": 1 +"4th Grade Social Studies: Understanding American Government through Animated Video Series": 1 +"8th Grade Mathematics: Geometry in the Real World: Designing a Dream House with SketchUp": 1 +"7th Grade Art: Embracing Sculpture: Creating Virtual 3D Models with Tinkercad": 1 +"3rd Grade Language Arts: Storytelling and Fairy Tales: Creating eBooks with StoryJumper": 1 +"5th Grade Music: Understanding Musical Scales and Chords through Online Keyboard Lessons": 1 +"3rd Grade Mathematics: Mastering Division through Interactive Math Puzzles": 1 +"Practical Course: Leveraging Fitbit, MyFitnessPal, and Nutritional Information for 10th Grade Health Education": 1 +"4th Grade Science: Exploring Solar System through Space Telescopes": 1 +"Understanding Climate: Employing Virtual Reality to Grasp Climate Changes in 7th Grade Science": 1 +"5th Grade English: Perfecting Essay Writing on Tablets using Hemingway Editor and Google Docs for Revisions": 1 +"Kindergarten Science: A Primer on Plant Life Cycles using Augmented Reality Experiences": 1 +"3rd Grade Art: Discovering Shape and Form through 3D Modeling Software": 1 +"7th Grade Music: Mastering Rhythm Notation with GarageBand: A Detailed Study": 1 +"6th Grade History: The Enlightenment Period and the Evolution of the Scientific Method": 1 +"8th Grade History: The Industrial Revolution and the Emergence of Steam Power Technology": 1 +"6th Grade Biology: Exploring Plant Anatomy through Microscopic Examination": 1 +"Understanding Weather Patterns: A 5th Grade Geography Course Utilizing Interactive Weather Maps": 1 +"2nd Grade Language Arts: Building Basic Grammar Skills with Interactive Games": 1 +"Kindergarten Science: Introduction to the Solar System Using Augmented Reality Tools": 1 +"1st Grade Nature Studies: Learning About Insects Through Observation and Digital Photography": 1 +"8th Grade Introduction to Physics: The Fascinating World of Pendulums": 1 +"5th Grade Physical Education: The Benefits of Aerobic Exercise on Health and Well-being": 1 +"Mastering Fractions and Decimals: A 4th Grade Mathematics Course Incorporating Board Games and Real-life Shopping Scenarios": 1 +"7th Grade Art: Watercolor Painting: The Beauty of Wet-on-Wet Technique": 1 +"Exploring the Magic of Magnets: A 3rd Grade Science Course Using Hands-on Experiments and Magnetic Field Visualization Apps": 1 +"2nd Grade Art: Journey into Nature: Creating Clay Animals.": 1 +"5th Grade Science: Exploring the Solar System with Virtual Reality.": 1 +"1st Grade Music: Discovering Melodies with Percussion Instruments.": 1 +"6th Grade Social Studies: Delving into Ancient Civilizations through Interactive Timelines.": 1 +"5th Grade Literature: Decoding Roald Dahl’s Stories through Dramatized Reading.": 1 +"2nd Grade Science: Understanding the Lifecycle of Butterflies Using Augmented Reality.": 1 +"3rd Grade Mathematics: Fun with Shapes - Understanding Geometry through Origami.": 1 +"7th Grade Music: Mastering Melodic Phrasing with the Recorder.": 1 +"1st Grade Art: Crafting Fairytales: Building Castles out of Cardboard.": 1 +"6th Grade Mathematics: Learning Fractions and Decimals through Cooking Measurements.": 1 +"2nd Grade Science: Exploring Life Cycles Using Augmented Reality": 1 +"Kindergarten Math: Strengthening Number Sense with Mathseeds Interactive Software": 1 +"6th Grade English: Enhancing Reading Comprehension with Graphic Organizers": 1 +"3rd Grade Music: Exploring Melody and Harmony with Recorders": 1 +"6th Grade Geography: Mapping the Journey of Silk Road through History": 1 +"4th Grade Art: Discovering Abstract Expressionism through Watercolor Techniques": 1 +"7th Grade Language Arts: Boosting Creative Writing with Podcast Production": 1 +"Understanding Tablets in 1st Grade Math: The Importance of the Prodigy Math Game": 1 +"5th Grade History: The Industrial Revolution and Steam Engines: The Impact of the Spinning Jenny": 1 +"2nd Grade Art and Texture: Introduction to Paper Mache Using Recycled Materials": 1 +"5th Grade Mathematics: Enhancing Geometry Skills through Interactive 3D Models": 1 +"8th Grade Social Studies: Exploring the French Revolution with Interactive Timeline Tools": 1 +"Kindergarten Science: Learning about the Weather Cycle using Animated Videos": 1 +"6th Grade Mathematics: Simplifying Algebraic Expressions using Online Equation Solvers": 1 +"3rd Grade Mathematics: Conquering Addition and Subtraction with Math Blaster Games": 1 +"9th Grade Language Arts: Exploring Shakespearean Sonnets using Digital Writing Platforms": 1 +"2nd Grade Language Arts: Interactive Spelling Bees using Speech Recognition Technology": 1 +"5th Grade Language Arts: Analyzing Symbolism in Literature using Interactive eBooks": 1 +"First Grade Language Arts: Learning Phonics with Interactive Speech and Sound Apps": 1 +"Medieval European History: Understanding the Construction of Castles for 7th Grade History": 1 +"6th Grade History: Discovering Ancient Civilizations Through Augmented Reality and 3D Reconstructions": 1 +"3rd Grade Biology: Unraveling the Life Cycle of a Butterfly using Interactive Video Models": 1 +"11th Grade Physics: Understanding Quantum Mechanics through Virtual Reality and Interactive Simulations": 1 +"5th Grade Mathematics: Conquering Fractions and Decimals with Gamified Learning Platforms": 1 +"6th Grade Literature: Exploring the Realm of Fantasy with J.R.R. Tolkien’s Middle Earth Universe": 1 +"7th Grade Computer Science: Introduction to Coding with Python and Raspberry Pi Projects": 1 +"9th Grade Geography: Unveiling the Mysteries of Plate Tectonics using Seismic Wave Analysis": 1 +"2nd Grade Art: Improving Drawing Skills with Digital Art Apps and Tablet Stylus Techniques": 1 +"8th Grade Environmental Studies: Exploring Renewable Energy Sources and Their Impact on Climate Change": 1 +"10th Grade Social Studies: Analyzing the Role of Social Media in Modern Politics with Data Mining Tools.": 1 +"Third Grade Science: Exploring Ecosystems: The Wonders of the Rainforest": 1 +"5th Grade History: The Maya Civilization: Hieroglyphs and the Mystery of the Long Count Calendar": 1 +"8th Grade Art: Mastering Watercolor Techniques: Exploring Landscapes and Still Life": 1 +"10th Grade Physical Education: Elite Training Principles and Dietary Planning for High-Performance Athletes": 1 +"Fifth Grade History: The Magna Carta and its Impact on Modern Democracy: A Deep Dive into Medieval England": 1 +"7th Grade Social Studies: The Renaissance Era: Discovering Innovations in Art, Science, and Philosophy": 1 +"9th Grade Social Studies: The Digital Age: Understanding Cybersecurity and its Role in Society": 1 +"Fifth Grade History: The Industrial Revolution: The Steam Engine and its Impact on Global Trade": 1 +"The Role of Jazz in the Harlem Renaissance: A Comprehensive Study for 10th Grade Music": 1 +"Climate Change and Sustainability: A Comprehensive 6th Grade Science Course": 1 +"6th Grade Geography: Understanding Topography and Ecosystems with Virtual Reality Tools": 1 +"3rd Grade Mathematics: Exploring Multiplication and Division through the use of Tangram Puzzles": 1 +"2nd Grade Art: Exploring Shapes and Patterns with Mosaic and Collage Techniques": 1 +"7th Grade History: The Industrial Revolution - Impact and Changes in Labor Laws": 1 +"1st Grade Environmental Studies: Discovering the Seasons and Plant Life Cycle through Greenhouse Activities": 1 +"7th Grade Physical Education: Basketball Strategies and Teamwork: Focus on Defensive Drills": 1 +"5th Grade Science: Exploring the Human Body: Journey through the Circulatory System with Augmented Reality": 1 +"9th Grade Technology: The Impact of Robotics and Artificial Intelligence on Future Job Markets": 1 +"3rd Grade English: Developing Reading Comprehension: Focus on Context Clues and Main Ideas": 1 +"6th Grade Mathematics: Delving into Geometry with Angles and Polygons through Origami Art.": 1 +"2nd Grade Planet Studies: Exploring the Solar System with Virtual Reality": 1 +"4th Grade Arithmetic: Multiplication and Division Mastery with Online Games": 1 +"Kindergarten Physical Education: Basic Tumbling Techniques: Building Balance and Flexibility through Gymnastics ": 1 +"Discovering Melodies in 3rd Grade Music: An Introduction to Composing in Soundation ": 1 +"9th Grade Literature: Deciphering Symbolism in Shakespeare’s Plays with Graphic Organizers": 1 +"1st Grade Reading: Understanding Fairy Tales from Around the World through Interactive Story Apps ": 1 +"7th Grade Physical Education: Tracking Steps and Distance in Outdoor Adventure Games for Physical Fitness": 1 +"6th Grade Visual Arts: Exploring Cubism with Paper Mosaics and Collage Techniques ": 1 +"4th Grade Biology: Plant Life Cycle - An Interactive Study with Augmented Reality Technology ": 1 +"11th Grade American Literature: Examining Irony in Edgar Allan Poe’s Short Stories": 1 +"5th Grade Science: Understanding Volcanoes through Augmented Reality and Interactive Models ": 1 +"2nd Grade Mathematics: Learning Addition & Subtraction with Number Puzzle Games ": 1 +"5th Grade History: Discovering the Renaissance Era through Interactive Time Travel ": 1 +"7th Grade Social Studies: Investigating the Civil Rights Movement in the United States ": 1 +"4th Grade Environmental Science: Exploring the Lifecycle of Butterflies using Observation Kits and Digital Microscopes ": 1 +"1st Grade Language Arts: Introduction to Alphabet & Phonics with Engaging Letter Games ": 1 +"3rd Grade Mathematics: Understanding Fractions - A Fun Approach with Baking Activities ": 1 +"Kindergarten Art: Exploring Textures and Patterns with Paper Mache and Finger Painting ": 1 +"8th Grade Mathematics: Understanding Trigonometry with Trig Solver Apps and Protractors ": 1 +"6th Grade Geography: Journey through the Sahara Desert: Climate and Adaptation Strategies": 1 +"6th Grade Science: Exploring Photosynthesis with Virtual Reality and Interactive Experiments": 1 +"5th Grade Math: Enhancing Multiplication Skills through Gamified Learning on Math Playground": 1 +"8th Grade English Literature: Unveiling the Beauty of Metaphors in Classic Novels": 1 +"Integrating Digital Storybooks in 2nd Grade Reading: A Journey with the ’Reading Rainbow’ App ": 1 +"11th Grade Art History: Decoding Postmodernism through Visual Analysis and Mixed Media Projects": 1 +"10th Grade Computer Science: Introduction to Python Programming through Interactive Coding Exercises": 1 +"4th Grade Geography: Understanding the World’s Biomes through Google Earth Exploration": 1 +"12th Grade Physics: Investigating Electromagnetic Waves using LabQuest Sensors and Logger Pro Software ": 1 +"Exploring the Human Body Systems in 9th Grade Biology through VR Technology and 3D Modeling": 1 +"Understanding the World Wars: A Comprehensive 11th Grade History Course through Documentary Analysis and Role-Play Simulations": 1 +"8th Grade Geography: The Role of Latitude and Longitude in Navigational History": 1 +"5th Grade Technology: Mastering Sentence Structures and Storytelling through Lego Story Visualizer": 1 +"7th Grade History: The Impact of the Wheel on Ancient Cultures and the Development of the Compass in Maritime Exploration": 1 +"3rd Grade Science: Exploring Photosynthesis in Aquatic Life through Pond Water Examination and Microscope Use": 1 +"10th Grade Chemistry: Unlocking the Secrets of the Periodic Table through Atomic Modeling": 1 +"11th Grade Physics: Exploring Calculus Applications in Motion & Kinetic Energy using Simulation Software": 1 +"Fifth Grade History: Crafting Civil War Narratives using Digital Timelines": 1 +"7th Grade Art: Landscape Drawing with Charcoal and Exploring Light and Shadow": 1 +"2nd Grade Art: Exploring Textures and Forms through Clay Modeling and Sculpting Techniques": 1 +"2nd Grade Reading: Plot Understanding and Setting Interpretation with Picture Books and Augmented Reality": 1 +"5th Grade Geography: Understanding Earth’s Landforms through Virtual Reality Exploration": 1 +"Exploring the Universe: A 6th Grade Science Course on Space Travel and Gravitational Waves": 1 +"9th Grade Art: Enhancing Color Theory Understanding through Digital Painting Software": 1 +"11th Grade Applied Mathematics: Investigating Parabolic Motion in Basketball Using Video Analysis": 1 +"Melodies and Mathematics: 6th Grade Exploration of Music Composition and Numerical Patterns with Logic Pro Software": 1 +"3rd Grade Environmental Science: Interactive Exploration of the Water Cycle using Virtual Reality Tools": 1 +"Second Grade Literature: Discovering Fairy Tales with Digital Interactive Books": 1 +"Introduction to Sampling in 7th Grade Music: A Module on GarageBand, Midi Controller and Digital Audio Workstations": 1 +"The Renaissance and the Printing Press: An 8th Grade History Course": 1 +"2nd Grade Language Arts: Enhancing Vocabulary and Grammar Skills Using Educational Gaming Apps": 1 +"5th Grade Geography: Exploring the World’s Deserts: Understanding Sand Dunes Formation and Wind Patterns": 1 +"7th Grade Music: Creating Symphonies with GarageBand: A Deep Dive into Virtual Instruments and Mixing Techniques": 1 +"1st Grade English: Learning Alphabet with Interactive Games via ABCmouse": 1 +"4th Grade Art: Discovering Portraiture: Digital Painting Techniques with Procreate": 1 +"Mastering Division with 3D Models & Virtual Reality in 5th Grade Mathematics: Implementing Interactive Tablets": 1 +"3rd Grade Physical Education: Introduction to Volleyball: Improving Serving Techniques with Virtual Reality Tools": 1 +"6th Grade History: Exploring Medieval Europe and Its Castles - The Impact of Siege Warfare": 1 +"1st Grade Science: Exploring the Magic of Magnetism with Fun Experiments": 1 +"7th Grade History: The Evolution of Transportation: A Deeper Look at the Birth of Railways": 1 +"The Water Cycle and Weather Patterns: An Insight into Rain Formation in 5th Grade Earth Science Studies": 1 +"5th Grade History: Unearthing the Mysteries of the Pyramids through Archeology and Geometry": 1 +"4th Grade Science: Discovering Weather Systems through DIY Barometers and Wind Socks": 1 +"2nd Grade Physical Education: Enhancing Balance and Flexibility with Yoga and Balance Beams": 1 +"Blockchain & Artificial Intelligence: Exploring Digital Transformation in 7th Grade Business Studies": 1 +"8th Grade Geography: The Impact of Volcanic Eruptions on Climate and Ecosystems": 1 +"5th Grade Music: Understanding Rhythm and Melody through Virtual Drum Kits and Music Apps ": 1 +"6th Grade Environmental Science: Understanding Biodiversity and Conservation through Virtual Field Trips ": 1 +"4th Grade Language Arts: Creating Interactive eBooks to Understand Mythology and Legends ": 1 +"7th Grade Mathematics: Mastering Fractions and Decimals using Interactive Whiteboards ": 1 +"2nd Grade Social Studies: Exploring Community Roles and Responsibilities through Role-Playing Games": 1 +"2nd Grade Geography: Exploring World Maps using Google Earth and Landform Identification Techniques": 1 +"Civil War Era History: The Role of Telegraph Communication in 5th Grade Lessons": 1 +"7th Grade English: Enhancing Writing Skills with Grammarly and Google Docs Templates": 1 +"5th Grade Art: The Renaissance Period - Understanding Fresco Techniques and the Use of Natural Pigments": 1 +"10th Grade Literature: Deciphering Orwell’s Metaphors using Python’s TextBlob for Thematic Analysis": 1 +"Second Grade Mathematics: Boosting Arithmetic Proficiency with Khan Academy and Tangible Manipulatives": 1 +"4th Grade Music: Understanding Melody and Harmony with Yamaha Keyboards, GarageBand Software, and Scale Theory": 1 +"8th Grade Biology: Understanding Photosynthesis with Interactive 3D Models using Sketchfab": 1 +"2nd Grade Music: Fundamentals of Melody with Recorders": 1 +"8th Grade Creative Writing: Utilizing Evernote for Plot Development and Setting Descriptions": 1 +"6th Grade Science: Exploring the Wonders of Metamorphosis through Augmented Reality": 1 +"9th Grade Literature: Discovering Shakespeare’s Tragedies through Interactive E-books and VoiceThread Discussions": 1 +"4th Grade Spanish: Learning Vocabulary and Sentence Structure through Digital Flashcards and DuoLingo": 1 +"7th Grade History: Unveiling the Mysteries of Ancient Egypt through Artifacts and Virtual Reality": 1 +"8th Grade Physics: Understanding the Principles of Gravity and Relativity through Interactive Simulations": 1 +"5th Grade Music: Delving into Beethoven’s Symphony No. 9 with Digital Sheet Music and Yamaha YPG-235 Digital Piano": 1 +"3rd Grade Math: Introduction to Fractions using Interactive Whiteboards and Math Playground Games": 1 +"7th Grade Geography: Exploring the Effects of Climate Change on World Landforms with Google Earth": 1 +"9th Grade Chemistry: The Intricate Science behind Chemical Reactions and Balancing Equations": 1 +"4th Grade English: Storytelling and Narrative Structure Analysis Using Storybird and Audible Audiobooks": 1 +"8th Grade Geography: Unveiling Climate Zones through Interactive Apps": 1 +"4th Grade Mathematics: Mastering Multi-Step Word Problems with Math Playground": 1 +"7th Grade Drama: Exploring Character Development through Digital Role Play": 1 +"6th Grade Art: Crafting 3D Models and Sculptures using Recyclable Materials": 1 +"5th Grade History: The Vikings and their Navigation Techniques": 1 +"4th Grade English: Improving Vocabulary through Crossword Puzzles and Word Games": 1 +"3rd Grade Art: Introduction to Portrait Drawing with Digital Art Tools": 1 +"7th Grade Mathematics: Simplifying Complex Numbers using Graphing Calculators": 1 +"4th Grade Science: Exploring the Solar System and the Role of Gravity": 1 +"6th Grade Physical Education: Developing Teamwork Skills through Capture the Flag": 1 +"Understanding Healthy Habits: Middle School Course on Hygiene and Wellness with the Use of Interactive Apps": 1 +"4th Grade History: The Industrial Revolution, Steam Engine Evolution, and the Birth of Modern Society": 1 +"8th Grade Physical Education: Basics of Swimming and the Importance of Endurance": 1 +"6th Grade Science: Examining the Sustainability of Renewable Energy Sources": 1 +"3rd Grade Mathematics: Applying Multiplication and Division in Real-world Situations using Interactive Digital Tools": 1 +"6th Grade Art: Discovering Renaissance Art through Virtual Reality and Online Sketching Platforms": 1 +"4th Grade English: Advanced Spelling and Vocabulary Enrichment through Interactive Language Games": 1 +"8th Grade Physical Education: Introduction to Yoga and the Principles of Mind-Body Balance": 1 +"5th Grade Art: Exploring Graphic Design Principles through Digital Illustration Software": 1 +"3rd Grade Science: Investigating Desert Ecosystems with VR Technology, Plant Identification Guides, Camel Documentaries and Sun Tracking.": 1 +"4th Grade Archaeology: Uncovering Ancient Civilizations with Virtual Excavations and 3D Printing": 1 +"7th Grade Environmental Science: Exploring Oceanic Ecosystems with ROV Underwater Drones and Coral Reef Mapping": 1 +"3rd Grade Literature: Journey into the World of Fables - Learning with Podcasts": 1 +"1st Grade Science: Understanding the Weather Cycle with Snow Gauge Experiments and Cloud Observation Charts": 1 +"8th Grade Physics: Exploring the Universe with Stellar Spectroscopy and Planetarium Software": 1 +"2nd Grade Geography: Learning about Continents and Oceans through Augmented Reality Globe and Map Puzzles": 1 +"5th Grade Music: Delving into Mozart’s Symphonies through Piano Improvisation": 1 +"6th Grade Social Studies: Exploring National Landmarks with Virtual Reality Field Trips": 1 +"1st Grade Art: Learning about Shapes and Colors through Interactive Drawing Apps": 1 +"4th Grade Biology: Examining the Life Cycle of a Frog Using Time-Lapse Photography and Digital Microscopes": 1 +"4th Grade Mathematics: Introduction to Fractions through LEGO Bricks and Manipulatives": 1 +"3rd Grade Geography: Discovering World Landforms Using Augmented Reality Applications": 1 +"5th Grade Science: Exploring Space and Planets with NASA’s Interactive Tools": 1 +"6th Grade French: Mastering Basic Conversational Skills Through DuoLingo and Google Meet Role-Plays": 1 +"2nd Grade Art: Creating Colorful Collages with Recycled Materials": 1 +"1st Grade Mathematics: Learning Addition and Subtraction with Fun Board Games": 1 +"Kindergarten Music: Discovering Rhythm and Melody with Interactive Sound Apps": 1 +"5th Grade English: Crafting Persuasive Essays Using Collaborative Google Docs": 1 +"4th Grade History: The Middle Ages - Castle Life Explored Through Minecraft": 1 +"3rd Grade Science: Life Cycle of Plants Using Time-Lapse Videos and Virtual Gardens": 1 +"2nd Grade Music: Exploring Rhythm and Beat through Interactive Drumming Apps": 1 +"10th Grade Chemistry: Organic Compounds and their Role in Life Processes with Virtual Lab Experiments": 1 +"2nd Grade Social Studies: Understanding Community Roles through Role-Playing Games": 1 +"7th Grade Mathematics: Improving Geometry Skills with Minecraft: Exploring Shapes and Space": 1 +"8th Grade Literature: The Evolution of Poetry - From Shakespeare to Modern Slam Poetry": 1 +"3rd Grade Science: Discovering Weather Patterns through Cloud Observation and Weather Station Data": 1 +"2nd Grade Reading: Journey through Myths - Enhancing Comprehension Skills": 1 +"5th Grade History: The Ancient Egyptian Civilization - The Importance of the Nile River in the Development of Agriculture": 1 +"7th Grade Biology: The Intricacies of Cell Structure and Functions Explored through 3D Models": 1 +"5th Grade Geography: Discovering Biomes and Climate Zones with Virtual Globetrotting": 1 +"5th Grade Geography: Exploring World Landforms with Google Earth and Virtual Reality": 1 +"6th Grade English: Enhancing Reading Comprehension through Interactive Fiction on Twine": 1 +"8th Grade Mathematics: Unlocking Geometry Mysteries with 3D Modeling on SketchUp": 1 +"Third Grade Music: Discovering Melody Composition with Online Musical Notation Software": 1 +"Understanding Photosynthesis and Cellular Respiration: A Macroscopic Exploration for 7th Graders using Hydroponic Kits and Microbial Fuel Cells": 1 +"9th Grade Physics: The Science of Sound - Exploring Frequency and Pitch with Oscilloscope Apps": 1 +"Decoding Symbolism in Fantasy Literature: A 6th Grade Language Arts Course on Mythology using Interactive eBooks": 1 +"7th Grade Mathematics: Diving into Probability and Statistics: An In-depth Analysis of Data Visualization in Spreadsheets": 1 +"8th Grade Science: Exploring the World of Robotics through Coding with Arduino and LEGO Mindstorms": 1 +"Fifth Grade History: Tracing Migration Patterns - Understanding the Great Migration with Digital Timelines and Infographics": 1 +"9th Grade Algebra: Mastering Quadratic Equations with Graphing Calculators": 1 +"5th Grade Geography: Understanding the Impact of Tectonic Plates on Earth’s Landforms": 1 +"Kindergarten Science: Exploring the Life Cycle of Butterflies with Live Observations": 1 +"3rd Grade Arithmetic: Applying Multiplication and Division in Real-World Scenarios": 1 +"11th Grade History: Decoding the Enigma Machine and Its Impact on World War II Communications": 1 +"3rd Grade Reading: Improving Comprehension Through Interactive Storytelling on iPads": 1 +"Kindergarten Earth Science: Investigating Cloud Types and Their Role in Weather Forecasting": 1 +"7th Grade History: The Role of Gutenberg’s Movable Type in the Enlightenment Era": 1 +"Kindergarten Music: Introduction to Musical Notes and Scales using Hand Bells": 1 +"7th Grade Music: Exploring Beethoven’s Sonata Form with Various Digital Audio Workstations (DAWs) and Virtual Instruments.": 1 +"3rd Grade Biology: Discovering Plant Life through Seed Germination Experiments": 1 +"7th Grade Geography: Understanding Climate Zones with Interactive Global Maps": 1 +"9th Grade Chemistry: Basic Concepts of Molecular Bonding using 3D Models": 1 +"10th Grade Literature: Exploring Symbolism in Classic Novels through Group Discussions": 1 +"1st Grade Social Studies: An Introduction to Community Helpers through Role Play": 1 +"8th Grade Physics: Grasping the Concept of Force and Motion using Physics Simulation Software": 1 +"4th Grade Science: Exploring the Solar System with Augmented Reality": 1 +"2nd Grade Arithmetic: Mastering Addition and Subtraction using Math Puzzles": 1 +"12th Grade Sociology: The Influence of Mass Media on Society’s Perceptions": 1 +"5th Grade Language Arts: Enhancing Creative Writing Skills with Digital Storytelling Tools": 1 +"3rd Grade Social Studies: An Introduction to Geography using Google Earth and Interactive Maps": 1 +"Kindergarten Music: Discovering Rhythm and Beat with Drums and Shakers": 1 +"Advanced Computing: Exploring Database Management with SQL": 1 +"11th Grade American Literature: Unraveling Themes and Context with JSTOR": 1 +"7th Grade Biology: Understanding Photosynthesis through Laboratory Experiments and Interactive Models": 1 +"3rd Grade Mathematics: Developing Division Skills through Interactive Games and Manipulatives": 1 +"10th Grade Physical Education: Fitness and Health - Cardiovascular Endurance Training with MyFitnessPal ": 1 +"Kindergarten Art: Exploring Shapes and Patterns in Nature": 1 +"3rd Grade Mathematics: Building Number Sense through Counting Games, Puzzles, and Mobile Applications ": 1 +"5th Grade Art: Introduction to Sketching: Portraits and Landscapes with Charcoal and Graphite": 1 +"2nd Grade Art: Discovering Geometry through Origami - Exploring Paper Folding Techniques": 1 +"6th Grade Physics: The Fascinating World of Forces - An Interactive Journey into Newton’s Laws": 1 +"8th Grade History: The American Civil War Analyzed through Primary Source Letters": 1 +"6th Grade Earth Science: Tracking Climate Change with Data Analysis and Weather Prediction Models": 1 +"4th Grade Reading: Exploring Fantasy Literature - Engaging with Mythical Creatures and Magical Worlds": 1 +"5th Grade Social Studies: The American Revolution Explored through Interactive Timelines": 1 +"3rd Grade Science: Understanding Ecosystems - Discovering Food Chains through Interactive Games": 1 +"6th Grade Math: The Power of Fractions - Demystifying Division with Manipulatives and Visual Aids": 1 +"8th Grade Art: Introduction to Sculpture - Crafting Clay Figures": 1 +"7th Grade Physics: The Wonders of Electricity and Magnetism Explored through Circuit Building": 1 +"5th Grade Physical Education: Basics of Team Sports with Emphasis on Volleyball": 1 +"7th Grade Music: Delving into Electronic Music Production with Ableton Live and Logic Pro X": 1 +"4th Grade Mathematics: Grasping the Concept of Fractions through Virtual Manipulatives": 1 +"2nd Grade Mathematics: Learning Numbers and Counting through Fun Online Games": 1 +"4th Grade Elementary: Addition Strategies and Problem Solving using Cool Math Games and Other Online Resources": 1 +"7th Grade Science: Exploring the Human Body Systems through Interactive 3D Models": 1 +"9th Grade History: The Renaissance Era - Analysis of the Impact of Humanism": 1 +"7th Grade Music: Understanding Melodies and Harmonies using GarageBand": 1 +"7th Grade Music: The Evolution of Jazz and the Influence of the Saxophone": 1 +"4th Grade Mathematics: Grasping the Concept of Geometry through Real-world Examples and Interactive Tools": 1 +"5th Grade Science: Exploring Weather Patterns through Interactive Simulation and Virtual Reality": 1 +"1st Grade Mathematics: Learning Addition and Subtraction through Fun Mobile Apps": 1 +"8th Grade Literature: Understanding Allegories in Novels through Online Group Discussions": 1 +"5th Grade History: A Virtual Trip to Medieval Castles using VR Technology": 1 +"1st Grade Reading: Mastering Vowels and Consonants with Voice Recognition Software": 1 +"7th Grade Biology: Exploring Ecosystems with AR Field Trips": 1 +"4th Grade Language Arts: Adventure Stories through Interactive Digital Books": 1 +"4th Grade Mathematics: Geometry Fun with Augmented Reality Shapes": 1 +"1st Grade Art: Exploring Colors and Textures with Digital Painting Tools": 1 +"3rd Grade Physical Education: Soccer Techniques and Strategy Basics.": 1 +"5th Grade Physical Education: The Basics of Gymnastics and Team Coordination": 1 +"8th Grade Art: The Renaissance Period and Introduction to Watercolor Painting": 1 +"Medieval European History: The Role of Blacksmithing in Shaping Armor for 7th Grade History": 1 +"5th Grade Physical Education: Essential Basketball Techniques and Drills": 1 +"Effective Storytelling in 4th Grade English to Foster Better Writing Skills": 1 +"7th Grade Science: The Age of Exploration: Understanding Magellan’s Circumnavigation": 1 +"The Physics of Flight: An In-depth Look at Lift, Drag and Thrust for 8th Grade Science": 1 +"3rd Grade Social Studies: The Influence of Cartoons on Children’s Perspective in the 21st Century": 1 +"5th Grade Science: Exploring Weather Patterns using Doppler Radar in Python": 1 +"1st Grade Mathematics: Understanding Subtraction through Interactive Digital Games": 1 +"1st Grade Math: Introduction to Numbers through Interactive Puzzles and Digital Manipulatives": 1 +"2nd Grade History: Exploring the American Revolution with a Time Travel Adventure": 1 +"4th Grade Drama: Discover Shakespeare’s World using Role-Play and Script Writing": 1 +"10th Grade Chemistry: Acids and Bases - Understanding Reactions with Interactive Simulations": 1 +"3rd Grade Geography: A Virtual Tour of the Earth’s Biomes with Virtual Reality Technology": 1 +"First Grade Science: Discovering Dinosaur Life: A Journey into Paleontology": 1 +"4th Grade Visual Arts: Understanding Perspective with Drawing Tablets and Sketching Apps": 1 +"7th Grade Health Education: Nutrition Awareness through Meal Planning and Calorie Count Apps": 1 +"11th Grade English: Analyzing Themes in Classic Literature using Mind Mapping Tools": 1 +"7th Grade Social Studies: Engaging with Global Cultures through Virtual Field Trips and Collaborative Projects": 1 +"4th Grade History: Exploring the Impact of Railroads on the Western Expansion": 1 +"3rd Grade Mathematics: Grasping Division Concepts through Interactive Whiteboard Games and Virtual Reality": 1 +"Understanding Energy and Work: A 5th Grade Course on the Principles of Physics using Simple Machines and Dynamometers": 1 +"8th Grade Chemistry: Unraveling the Mysteries of Atomic Structure through Hands-on Lab Experiments": 1 +"10th Grade Physical Education: The Importance of Automated Sprinkler Systems in Preserving Sports Fields.": 1 +"5th Grade Geography: An Insight into Rural Development: The Significance of Irrigation Systems ": 1 +"Kindergarten Art: Learning Basic Patterns and Textures through Collage Art with Eco-friendly Materials": 1 +"3rd Grade Music: Boosting Music Appreciation with Recorders and Music Maker Software on Chromebooks": 1 +"4th Grade English: Enhancing Paragraph Writing Skills with Preposition Exercises using Interactive E-books": 1 +"7th Grade Music: An Online Journey through Jazz History with Live Concert Recordings": 1 +"5th Grade Science: Discovering Space Exploration with NASA’s Mars Rover and Stellarium App": 1 +"2nd Grade Geography: Understanding Physical Landforms through Augmented Reality Globe": 1 +"6th Grade Math: Algebra Fundamentals and Equation Solving using Photomath App": 1 +"11th Grade Chemistry: Diving into Organic Chemistry with Molecular Modelling Kits": 1 +"7th Grade Mathematics: Probability - Grasping Chances and Outcomes with Interactive Dice Roll Simulations": 1 +"4th Grade Music: Understanding Melody and Pitch with Recorder Instruments and Yousician App": 1 +"2nd Grade Mathematics: Exploring Number Line using Interactive Whiteboard and Digital Learning Tools": 1 +"9th Grade History: Civil Rights Movement - Sit-ins and the Role of Nonviolent Protest": 1 +"7th Grade Music: Composing Basics with GarageBand, Digital Audio Interfaces and Cubase DAW in Contemporary Music": 1 +"5th Grade English: Creating Fantasy Worlds with Mythical Creatures using Digital Puppetry": 1 +"2nd Grade Environmental Studies: Discovering the Role of Bees in Pollination and the Importance of Biodiversity": 1 +"4th Grade Mathematics: Engaging Problem Solving with Addition and Subtraction using Tablets and Apps": 1 +"6th Grade Mathematics: Interactive Learning of Decimal Conversion and Percentage Calculation using Real-Life Scenarios": 1 +"4th Grade History: Tracing the Trail of Lewis and Clark using a Timeline and Interactive Maps": 1 +"8th Grade Language Arts: Exploring the Influence of Artificial Intelligence on Dystopian Literature": 1 +"6th Grade Geography: Understanding Ecosystems Using Virtual Reality - Exploring Rainforests and Deserts": 1 +"8th Grade Physical Education: Understanding the Basics of Yoga and Meditation through Augmented Reality for Stress Management": 1 +"Second Grade Environmental Studies: The Water Cycle Demonstrated Through Interactive Experiments and Rain Garden Projects": 1 +"6th Grade Geography: Exploring Cultural Diversity through Virtual Reality and International Cuisine": 1 +"7th Grade History: The Architectural Marvels of Ancient Egypt’s Pyramids and Their Construction Techniques": 1 +"3rd Grade Art: Creating Abstract Portraits using Digital Art Software and Color Theory": 1 +"5th Grade English: Analyzing Character Development in Children’s Literature through Book Creator App": 1 +"1st Grade Science: Discovering Ocean Life Through Virtual Reality Tours and Data Collection": 1 +"10th Grade History: The Cold War, Space Race and the Evolution of Technology": 1 +"7th Grade Physics: Exploring Electromagnetism and Its Role in the Industrial Revolution": 1 +"3rd Grade Music: Investigating Jazz Rhythms with Piano Improvisation Techniques": 1 +"7th Grade Geography: Ancient Trade Routes and Their Impact on Modern Globalization": 1 +"5th Grade Language Arts: Using Quizizz to Understand Personification and Onomatopoeia ": 1 +"4th Grade Mathematics: Learning Fractions through Prodigy Math Game and Interactive Manipulatives ": 1 +"Analyzing the Impact of Renewable Energy on Local Ecosystems: Solar Power for 3rd Grade Environmental Studies.": 1 +"6th Grade Biology: Exploring DNA Structures through Virtual Reality": 1 +"8th Grade Geography: The Transcontinental Railroad - Understanding Geographical Challenges and Solutions": 1 +"7th Grade Art: Harmony of Colors - Pastels, Shade, and the Technique of Blending": 1 +"10th Grade Political Science: The Role of Propaganda in World War II": 1 +"1st Grade Mathematics: Understanding Addition and Subtraction with Educational Puzzle Games": 1 +"11th Grade History: The Influence of Espionage in the Cold War Era": 1 +"3rd Grade Art: Learning About Textures and Patterns Through Craft Projects": 1 +"1st Grade Mathematics: Grasping Division through Lego Education Set": 1 +"5th Grade English: Interactive Storytelling and Vocabulary Expansion Using Quizlet": 1 +"Sixth Grade Chemistry: Exploring Chemical Reactions - A Detailed Study of Titration and Spectroscopy Experiments": 1 +"1st Grade Art: Exploring Shapes and Colors through Collage Making": 1 +"4th Grade Mathematics: Understanding Division Concepts through Lego Blocks": 1 +"7th Grade History: Exploring Medieval Europe through Virtual Reality": 1 +"8th Grade Literature: Understanding Symbolism in Suzanne Collins’ Hunger Games Series through Film Analysis": 1 +"3rd Grade Music: Introduction to Basic Scales and Note Reading with Recorders": 1 +"9th Grade Music: Exploring the Impact of Beethoven’s Symphonies on the Development of Romantic Music": 1 +"3rd Grade Social Studies: Understanding Cultural Diversity through World Cuisine": 1 +"5th Grade Environmental Science: Exploring the Role of Pollinators in Ecosystems": 1 +"6th Grade Language Arts: Enhancing Creative Writing Skills through Storyboarding": 1 +"7th Grade Art: Understanding Perspective and Shadowing in Renaissance Paintings": 1 +"3rd Grade Physical Education: Basketball Fundamentals and Coordination Improvement with Wearable Tech": 1 +"7th Grade Music: Discovering Mozart’s Composition Style through Digital Audio Workstations and Finale Notation Software": 1 +"5th Grade History: Understanding the Industrial Revolution - The Role of Steam Engine": 1 +"3rd Grade Language Arts: Innovative Poetry Writing with E-Learning Tools": 1 +"6th Grade English: Enhancing Reading Skills and Vocabulary through Interactive E-books": 1 +"4th Grade Art: Mastering the Basics of Digital Painting": 1 +"1st Grade Science: Exploring the Life Cycle of Butterflies through Observation": 1 +"Kindergarten Reading: Learning Phonics with Interactive Sound Cards": 1 +"3rd Grade Social Studies: Understanding Climate Zones through Weather Apps": 1 +"1st Grade Music Education: Discovering Melody with Fun Piano Apps": 1 +"3rd Grade Science: Investigating Life Cycles with Butterfly Kits and Time-Lapse Videos": 1 +"5th Grade History: Understanding the Impact of the Printing Press on the Renaissance Era": 1 +"8th Grade Music: Composing Original Pieces with Digital Audio Workstations": 1 +"11th Grade English: Diving into Postmodern Literature Criticism through Allegory with JSTOR": 1 +"5th Grade Art: The Influence of the Loom on Textile Art Among Early European Settlers": 1 +"Meteorology for Kids: Predicting Weather Changes Using Barometers in 5th Grade Earth Science": 1 +"Our Blue Planet: Exploring Water Cycle using Evaporation Experiments and Condensation Models for Second Graders": 1 +"3rd Grade Language Arts: Building Complex Sentences with Grammar Puzzles": 1 +"3rd Grade Music: Exploring Melody and Harmony with Interactive Piano Apps": 1 +"5th Grade Geography: Discovering Countries using Virtual Reality Tours": 1 +"5th Grade Health: Nutrition Guidelines and Healthy Eating Habits": 1 +"Understanding Elections: The Role of Social Media in 6th Grade Civics": 1 +"3rd Grade Mathematics: Exploring Fractions with Interactive Learning Tools": 1 +"3rd Grade Physical Education: Introduction to Basketball and Ball Handling Skills": 1 +"6th Grade Music: The Impact of Synthesizers in Electronic Music Creation": 1 +"6th Grade History: The Significance of the Printing Press in the Renaissance": 1 +"3rd Grade Science: Exploring Ocean Ecosystems through Virtual Reality and Augmented Reality Technology": 1 +"From Scroll to Screen: The Evolution of Literature in 7th Grade English": 1 +"Kindergarten Art: Exploring Textures and Patterns through Collage Making": 1 +"Kindergarten Art: Learning Primary Colors and Shapes through Finger Painting and Paper Mosaics Techniques": 1 +"5th Grade Mathematics: Grasping Geometry Concepts through Architectural Design Models": 1 +"3rd Grade History: The Use of the Compass in the Age of Discovery: Its Role in Navigation": 1 +"4th Grade Language Arts: Understanding Character Development with Digital Comic Book Creations": 1 +"5th Grade Language Arts: Crafting Mystery Stories using Plotagon Story and Suspenseful Elements": 1 +"4th Grade Science: Introduction to the Rainforest Ecosystem through Virtual Nature Walks": 1 +"5th Grade Social Studies: Learning about the Economy and Trade through Online Market Simulations": 1 +"6th Grade History: Interactive Study of Ancient Egypt using Oculus Quest 2 VR and Virtual Reality": 1 +"5th Grade Biology: Investigating Animal Adaptations through Field Observation Assignments": 1 +"4th Grade History: The Civil War Explored through Google Cardboard VR": 1 +"6th Grade Art: Pottery and the Colors of the Impressionist Period": 1 +"6th Grade History: Exploring Ancient Civilizations Through Virtual Reality Tours": 1 +"Elementary Drama: 2nd Grade Introduction to Puppetry and Shadow Play Using Handmade Puppets": 1 +"7th Grade Literature: Discovering Character Analysis Through Interactive Book Reports in Google Docs": 1 +"9th Grade Biology: Understanding Plant Photosynthesis Through Hands-On Experiments": 1 +"High School Computer Science: Introduction to Python Programming through Minecraft Modding": 1 +"4th Grade Geography: Exploring The World’s Biomes Using Interactive Online Maps": 1 +"1st Grade Science: Learning About Animal Habitats Through Clay Modeling and Field Trips": 1 +"Kindergarten Physical Education: Developing Basic Motor Skills With Fun Obstacle Courses": 1 +"3rd Grade Mathematics: Understanding the Concept of Multiplication Using Arrays and Grouping Techniques": 1 +"High School Art: Exploring Abstract Painting Techniques with Acrylics and Palette Knives": 1 +"4th Grade Geography: Understanding the World Map through Interactive Globe Studies": 1 +"6th Grade Physics: An Introduction to Simple Machines using LEGO Mechanisms": 1 +"1st Grade Life Skills: Learning about Personal Hygiene through Fun Hands-On Activities": 1 +"8th Grade Physical Education: Mastering Basketball Techniques with Virtual Reality Training": 1 +"10th Grade Drama: The Art of Storytelling through William Shakespeare’s Plays": 1 +"5th Grade Language Arts: Delving into Metaphors in Poetry using Augmented Reality Apps": 1 +"3rd Grade Nutrition: Identifying and Understanding Food Groups with Interactive Digital Plate": 1 +"9th Grade Mathematics: Exploring Geometry through the Construction of 3D Models with CAD Software": 1 +"7th Grade History: Tracing Civil Rights Movement through Interactive Timelines": 1 +"4th Grade Environmental Science: Studying Weather Patterns with Real-Time Weather Station Data": 1 +"2nd Grade Science: Exploring Weather Patterns Using Interactive Maps": 1 +"6th Grade History: Understanding Civilizations with Virtual Reality: Essentials and Use Cases": 1 +"Second Grade Geometry: Understanding Shapes through Origami and 3D Models": 1 +"2nd Grade Physical Education: Integrating Yoga and Meditation with Interactive Fitness Games": 1 +"5th Grade Music: Understanding Rhythm and Melody through Digital Music Software": 1 +"2nd Grade Writing: Enhancing Grammar Skills with Interactive Whiteboard Games and Visual Organizers": 1 +"4th Grade Spanish: Basic Conversational Skills with Fun Language Learning Apps": 1 +"2nd Grade Art: Exploring Texture and Form in Clay Sculpting": 1 +"8th Grade Physics: Studying Motion and Forces with Video Analysis and Simulation Tools": 1 +"7th Grade Literature: Enhancing Vocabulary with Online Crossword Puzzles in Classic Novel Studies": 1 +"Exploring the Solar System: A 4th Grade Science Course on Telescopes and Satellites": 1 +"2nd Grade Mathematics: Learning Fractions through Virtual Reality and Interactive Games": 1 +"5th Grade Social Studies: Emulating Pioneers of the Oregon Trail for an Immersive History Lesson ": 1 +"6th Grade English: Enhancing Vocabulary through Augmented Reality Word Puzzles": 1 +"3rd Grade Biology: Understanding Photosynthesis and Plant Life through Microscopic Exploration": 1 +"7th Grade Geography: Navigating the World through GPS Technology and Interactive Maps": 1 +"4th Grade Art: Studying Sculpture with Clay and 3D Printing Technology": 1 +"2nd Grade Music: Discovering the World of Percussion Instruments through Digital Sound Boards": 1 +"8th Grade History: Role-playing in the Rise and Fall of Ancient Civilizations": 1 +"1st Grade English: Incorporating Puppetry in Storytelling and Creative Writing.": 1 +"4th Grade Geography: Understanding the Formation of Glaciers and Their Impact on Earth’s Topography": 1 +"1st Grade Astronomy: Exploring the Solar System through Planetarium Models": 1 +"12th Grade Calculus: The Art and Science of Problem Solving with Mathcad": 1 +"2nd Grade Art Appreciation: A Journey into the World of Abstract Art using Collages": 1 +"4th Grade Literature: An Adventure into Mythologies with Greek Gods and Heroes": 1 +"5th Grade Environmental Science: Exploring the World of Insects through Butterfly Life Cycle Kits": 1 +"4th Grade Earth Science: A Deep Dive into Rock Formation and Erosion with DIY Experiments": 1 +"3rd Grade Physics: Learning the Basics of Motion through Marble Roller Coasters": 1 +"Algebra for 7th Grade: Understanding Equations and Variables using Math Apps": 1 +"Democracy and Modern Media: A Fresh Perspective for 10th Grade Civics Studies": 1 +"4th Grade History: Exploring the Tactics of the Civil War": 1 +"9th Grade Art: Developing Shading Skills through Portraiture Drawing": 1 +"3rd Grade Introduction to Geometry: Understanding Shapes and Patterns": 1 +"The Influence of the Spanish Flu on Society in 3rd Grade History: An In-depth Analysis of Medical Advancements": 1 +"8th Grade Music: Exploring Modern Genres using Digital Production Tools": 1 +"5th Grade Music: Decoding Melodies using Audacity Music Software": 1 +"1st Grade Music: Discovering Melody through Singing and Dancing": 1 +"7th Grade Physical Education: Incorporating Balance Beams in Gymnastics: Safety and Support Techniques": 1 +"11th Grade Science: Genomics and the Evolution of Genetic Engineering": 1 +"5th Grade Art: Enhancing Drawing Skills with Colored Pencils, Oil Pastels, Digital Design, and Watercolor Techniques": 1 +"8th Grade Physics: Exploring Laws of Motion with LEGO Mindstorms Robotics Kit": 1 +"Engaging 1st Grade History: Unearthing Egypt’s Pyramids with Minecraft Education Edition": 1 +"9th Grade Arts: Crafting Sculptures with 3D Printers and Tinkercad Designs": 1 +"3rd Grade Reading: Developing Comprehension Skills through Interactive eBooks and Voice Thread Discussions": 1 +"6th Grade Geography: Understanding Plate Tectonics through Google Earth and Augmented Reality": 1 +"Kindergarten Mathematics: Number Recognition and Simple Addition with the Use of Numberblocks Animated Series": 1 +"8th Grade Language Arts: Analyzing Irony in Mark Twain’s ’Adventures of Tom Sawyer’ through Google Classroom Discussion Boards": 1 +"4th Grade Science: Investigating the Water Cycle with Virtual Reality Tours and Interactive Diagrams": 1 +"7th Grade Mathematics: Grasping Probability through Dice and Card Games": 1 +"2nd Grade Physical Education: Building Coordination and Balance with Yoga and Mindfulness Activities": 1 +"4th Grade Geography: Charting Columbus’s Route: The Role of Maps and Compasses": 1 +"3rd Grade Technology: The Digital Revolution: The Advent of Computers and the Internet": 1 +"First Grade Science: Understanding Our Blue Planet through Water Cycle Studies": 1 +"2nd Grade Drama: Experimenting with Emotion and Expression in Puppet Theater": 1 +"Kindergarten Art: Exploring Colors and Shapes with Finger Painting": 1 +"Comprehensive 11th Grade Physics: Unraveling the Mysteries of Force and Motion through Interactive Experiments": 1 +"8th Grade Algebra: The Challenge of Variables and Coefficients - Diving into the Realm of Quadratic Equations": 1 +"7th Grade Art: Discovering Aesthetics with Adobe Photoshop and Illustrator": 1 +"3rd Grade Literature: Adventure into Fairy Tales using Audible for Story Listening": 1 +"5th Grade Geography: Discovering the Amazon Rainforest: Flora, Fauna, and Indigenous Cultures": 1 +"8th Grade Geography: Exploring Africa’s Diverse Landscapes and Cultures through Virtual Reality": 1 +"3rd Grade Math: Fun with Multiplication Tables through Interactive Games": 1 +"Medieval History for 6th Grade: Understanding Feudalism through Role Play and Drama": 1 +"1st Grade Life Sciences: Learning about Different Animal Habitats through Art and Craft": 1 +"6th Grade English: Unlocking the Power of Metaphors in Storytelling using Graphic Organizers": 1 +"12th Grade Physics: Unraveling the Intricacies of Quantum Mechanics through VR Simulations": 1 +"5th Grade Mathematics: Deepening Understanding of Fractions with Hands-On Pizza Making": 1 +"8th Grade Health Education: The Impact of Balanced Diet on Our Body through Interactive Apps": 1 +"10th Grade Art: Learning Composition and Color Theory using Adobe Creative Suite": 1 +"9th Grade Drama: Improving Improvisation Skills through Theater Sports and Group Activities": 1 +"3rd Grade Science: Exploring the Life Cycle of Butterflies through Interactive Learning ": 1 +"8th Grade History: Understanding the French Revolution through Historic Paintings and Artifacts": 1 +"1st Grade Mathematics: Learning Addition and Subtraction through Colorful Blocks and Games": 1 +"5th Grade Geography: Discovering World Biomes through Virtual Field Trips and Interactive Maps": 1 +"3rd Grade Art: Introduction to Watercolor Painting and Understanding Color Mixing": 1 +"1st Grade Science: The Sun and the Seasons: A Practical Study on Earth’s Orbit and Axis": 1 +"7th Grade Literature: Delving into the World of J.R.R. Tolkien through Audiobooks and Film Adaptations": 1 +"6th Grade Physical Education: Enhancing Flexibility and Balance through Yoga and Gymnastics ": 1 +"5th Grade History: The Invention of the Telephone and its Impact on Modern Communication": 1 +"3rd Grade Geography: Identifying States and Capitals through Interactive Quizzes and Puzzles.": 1 +"6th Grade Geography: Understanding Climate Change with Interactive Earth Models": 1 +"Trigonometry Basics: Exploring Pythagorean Theorem in 10th Grade Mathematics": 1 +"3rd Grade Art: Creating Landscape Art with Oil Pastels and Acrylics": 1 +"8th Grade History: Uncovering the Impact of the Printing Press on the Renaissance": 1 +"9th Grade Art: Honing Portraiture Skills through Realistic Pencil Drawing": 1 +"7th Grade Science: Introduction to Genetic Inheritance using Punnett Squares": 1 +"4th Grade Mathematics: Multiplication Mastery Using Times Tables and Interactive Online Games": 1 +"1st Grade Language Arts: Building Vocabulary with Storytelling and Word Games on Tablets": 1 +"3rd Grade Mathematics: Exploring Geometry with Tangrams and Online Shape Builders": 1 +"1st Grade Language Arts: Enhancing Reading Skills with Audio Books and Interactive Story Apps": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality and Augmented Reality Apps": 1 +"6th Grade Art: The Impact of Ceramics in Ancient Chinese Culture": 1 +"1st Grade Mathematics: Grasping Addition and Subtraction using Interactive Whiteboard Games": 1 +"9th Grade Health Education: Unraveling the Mysteries of Human Anatomy using 3D Models": 1 +"4th Grade Elementary: Building Division Proficiency through Partitioning and Interactive Math Tools": 1 +"6th Grade Art: Understanding Impressionism through Watercolor Techniques and Art History": 1 +"4th Grade History: Journey through Medieval Europe: From Knights to Castles": 1 +"2nd Grade Music: Introduction to Classical Music with GarageBand": 1 +"7th Grade Language Arts: Deciphering Themes and Symbols in Literature through Short Story Analysis": 1 +"4th Grade Music: Exploring the Magic of Mozart’s Symphony No. 40 with Online Piano Tutorials": 1 +"7th Grade Physics: Understanding Projectile Motion through Catapult Building using CAD Software": 1 +"5th Grade History: Navigating Ancient Egyptian Civilization with 3D Pyramid Models in Virtual Reality": 1 +"9th Grade Language Arts: Decoding Metaphors and Symbolism in Shakespearean Literature using Literary Analysis Software": 1 +"3rd Grade Geography: Discovering Amazon Rainforest Biodiversity through Augmented Reality Animals": 1 +"6th Grade Music: Unmasking the Influence of Jazz on Modern Music with Digital Audio Workstations": 1 +"4th Grade Physical Education: Perfecting Basketball Free Throws using Motion Tracking Technology": 1 +"2nd Grade Art: Creating Digital Masterpieces: An Introduction to Drawing and Coloring Apps": 1 +"1st Grade Music: Melodic Adventure - Understanding Pitch and Volume with Interactive Piano Apps": 1 +"8th Grade Science: Unraveling DNA Structures and Genetic Coding with 3D Modelling Software": 1 +"7th Grade Social Studies: Exploring Feudal Japan through Immersive Virtual Tours": 1 +"6th Grade Physical Education: Understanding Body Mechanics Through Gymnastics and Yoga Practices": 1 +"5th Grade Genetic Studies: Exploring Inheritance Patterns through Mendelian Peas Experiment": 1 +"9th Grade English Literature: Utilizing Augmented Reality to Learn Symbolism and Metaphors in Novels": 1 +"2nd Grade Language Arts: Developing Phonics Skills Through Interactive Storytelling": 1 +"Fifth Grade Geography: Migration Patterns and their Impact on Cultural Exchange During the Age of Discovery": 1 +"7th Grade Mathematics: Mastering the Use of Pivot Tables for Statistical Calculations in Google Sheets": 1 +"4th Grade Health Science: Learning About Digestive System Through Edible Cell Models and Diet Analysis": 1 +"Assessing the Effects of Solar Power Use on Local Wildlife in 3rd Grade Environmental Science": 1 +"1st Grade Craft: Understanding Shapes and Patterns Through Beadwork and Mosaic Art ": 1 +"12th Grade History: The Role of the Transcontinental Railroad in the Expansion of the Western United States": 1 +"2nd Grade Science: Investigating Weather Patterns with Interactive Meteorology Tools": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with Math Blaster": 1 +"10th Grade English: Exploring Classic Literature through Immersive Role-Playing Activities": 1 +"1st Grade Social Studies: Understanding Community Roles with Interactive Storytime": 1 +"4th Grade Art: The Impact of Political Satire in Editorial Cartoons": 1 +"3rd Grade Music: Enhancing Rhythm Understanding with Interactive Metronome Apps": 1 +"5th Grade Geography: Exploring Biomes and Landforms using Augmented Reality and Google Maps": 1 +"4th Grade History: Learning about Ancient Civilizations through Virtual Reality Tours": 1 +"6th Grade Science: Unveiling the Mysteries of Chemical Reactions with Virtual Lab Experiments": 1 +"5th Grade Health Education: Understanding Nutrition and Diet using MyFitnessPal and Interactive Food Pyramid.": 1 +"11th Grade Biology: Embracing Bioinformatics - Analyzing DNA Sequences Using Blast Algorithms": 1 +"7th Grade Art: Deciphering Symbolism in Impressionist Art through Digital Media": 1 +"6th Grade Music: Composing Rhythms and Beats in GarageBand": 1 +"High School PE: Enhancing Endurance with Garmin Forerunner GPS Running Watches": 1 +"8th Grade Music: Harmony in Motion - The Role of Tempo in Achieving Musical Synchronicity": 1 +"12th Grade History: A Comprehensive Study of Submarines in the Cold War": 1 +"11th Grade Social Studies: A Thorough Exploration of the Impact of the Printing Press during the Renaissance": 1 +"4th Grade Mathematics: Understanding Fractions through Interactive Online Games": 1 +"6th Grade Art: The Textures of Baroque Art: Chiaroscuro Techniques in Oil Painting": 1 +"3rd Grade Science: Investigating Plant Life-Cycles Using Time-Lapse Photography and Documentaries": 1 +"Introduction to Physics: Exploring Quantum Mechanics in 10th Grade Science": 1 +"5th Grade Geography: Understanding Earth’s Tectonic Movements through 3D Modeling": 1 +"7th Grade Mathematics: Comprehending Ratio and Proportions using Real World Scenarios": 1 +"6th Grade Music: The Role of Violin in Classical Symphony": 1 +"Our Blue Planet: Studying Oceanic Currents and Tidal Waves - A Second Grade Marine Biology Course": 1 +"8th Grade Social Studies: American Civil War - Deciphering Secret Codes and Ciphers": 1 +"4th Grade Mathematics: Learning Fractions and Decimals with Interactive Money Games": 1 +"9th Grade History: Understanding Mayan Civilization through the Study of Calendar Systems": 1 +"3rd Grade Science: Exploring Mars’ Terrain using Augmented Reality and Virtual Reality Tools": 1 +"7th Grade History: The Impact of Gunpowder on Warfare during the Middle Ages in Europe": 1 +"6th Grade Art: Beginning Sculpture - Creating Shapes and Figures with Clay and Plaster": 1 +"3rd Grade Science: Investigating Weather Patterns through Cloud Observations and Weather Charting": 1 +"5th Grade Language Arts: Exploring Fantasy Worlds - Diving into Augmented Reality": 1 +"2nd Grade English: Adventures in Verbs and Nouns with Interactive Storybooks": 1 +"9th Grade Science: Understanding Chemical Reactions through Virtual Laboratory Experiments": 1 +"2nd Grade Art: Fun with Paper Collage - Learning about Textures and Patterns": 1 +"2nd Grade Math: Mastering Multiplication and Division through Interactive Board Games": 1 +"3rd Grade Mathematics: Introduction to Geometry - Learning Shapes and Angles through Origami": 1 +"8th Grade Music: Exploring Melody and Harmony with Digital Music Production": 1 +"8th Grade History: From Telegram to Twitter: An Interactive Journey through Communication Evolution": 1 +"8th Grade Literature: Exploring Symbolism and Metaphor in Classic Novels": 1 +"5th Grade Geography: The Role of Rivers in Shaping Civilizations": 1 +"3rd Grade Music: Discovering Rhythm and Melody Through Percussion Instruments": 1 +"6th Grade Art: Learning Perspective and Shadowing with Charcoal Sketching": 1 +"2nd Grade Science: Introduction to Life Cycle of Butterflies Using Terrarium Observations": 1 +"9th Grade Physics: Understanding Laws of Motion and Gravity through Rocket Launch Experiments": 1 +"7th Grade History: Examining the Influence of the Printing Press on Renaissance Europe": 1 +"4th Grade Physical Education: Introduction to Team Sports and Sportsmanship through Mini Soccer Games": 1 +"1st Grade Social Studies: Learning About Neighborhood Helpers through Role Play": 1 +"5th Grade Biology: Exploring Plant Photosynthesis Using Microscopic Leaf Observations": 1 +"6th Grade Geography: Exploring Earth’s Biomes with Virtual Reality": 1 +"1st Grade Language Arts: Crafting Stories through Shadow Puppet Theater": 1 +"7th Grade History: The Impact of the Silk Road on Ancient Civilizations": 1 +"3rd Grade Music: Understanding Rhythm and Tempo with Kitchen Utensils": 1 +"5th Grade Science: The Life Cycle of Butterflies: An In-depth Study with 3D Models": 1 +"2nd Grade Math: Introduction to Fractions through Baking and Cooking Measurements": 1 +"8th Grade History: The Influence of the Steam Engine on the Industrial Revolution": 1 +"4th Grade Social Studies: The Role of Currency in the Ancient Roman Empire": 1 +"3rd Grade Mathematics: Understanding Geometry through Origami and Paper Folding": 1 +"Advanced 5th Grade Language Arts: Narrative Techniques in Famous Children’s Literature": 1 +"4th Grade History: The Importance of Pyramids in Ancient Egyptian Society ": 1 +"10th Grade English: Deciphering Chaucer’s Canterbury Tales using Natural Language Processing and GloVe ": 1 +"2nd Grade English: Fairy Tales - Understanding Symbolism and Ethical Messages ": 1 +"1st Grade Social Studies: The Influence of Windmills on our Energy Community ": 1 +"7th Grade Social Studies: Democracy and Human Rights Explored through Machine Learning Algorithms ": 1 +"6th Grade Social Studies: The Significance of Silk in Ancient Chinese Society ": 1 +"11th Grade Mathematics: Algebra - Mastering Equations and Inequalities using Recursive Sequences ": 1 +"Second Grade Language Arts: Enhancing Vocabulary using Duolingo Software and Visual Association Technique ": 1 +"5th Grade Mathematics: Decimal Numbers - Mastering Concepts using Number Lines and Virtual Manipulatives ": 1 +"8th Grade History: The French Revolution and the Impact of Guillotine Technology": 1 +"1st Grade English: Enhancing Vocabulary with Interactive Word Puzzles": 1 +"4th Grade Mathematics: Understanding Fractions using Pizza and Pie Models": 1 +"9th Grade Biology: Discovering Human Anatomy through Virtual Reality Tours": 1 +"7th Grade Art: Painting Techniques Explored with Acrylic and Canvas": 1 +"6th Grade Geography: Exploring Climate Zones with Interactive World Globe": 1 +"8th Grade Physics: Comprehending Newton’s Laws through Rocket Building Projects": 1 +"3rd Grade Science: Learning about Plant Life Cycles with Botanical Garden Visits": 1 +"9th Grade English: Improving Essay Writing through Classic Literature Discussion": 1 +"5th Grade History: Discovering Ancient Civilizations with Augmented Reality Time-Travel": 1 +"2nd Grade Math: Grasping Addition and Subtraction with Fun Board Games": 1 +"4th Grade Science: Exploration of Plant Cells: A Deep Dive with Microscopy Techniques": 1 +"8th Grade Music: The Symphony Orchestra - Understanding Roles & Instruments Using Virtual Reality": 1 +"1st Grade Mathematics: Numbers and Shapes - A Fun Introduction with Interactive Games ": 1 +"The Renaissance Period in 7th Grade History: The Impact of Artists and Their Techniques": 1 +"3rd Grade Art: Oil Pastel Magic - An Introduction to Blending and Shading Techniques": 1 +"Kindergarten Science: A Journey through the Animal Kingdom: Understanding Habitats and Adaptations": 1 +"4th Grade English: Exploring Poetry Using Rhyme, Rhythm, and Repetition": 1 +"1st Grade History: The Native American Tribes - An Insight into Their Cultures and Traditions": 1 +"The Industrial Revolution in 6th Grade Social Studies: The Role of Inventions and Innovations": 1 +"2nd Grade Art: Discovering Collage Art - A Fun Exploration with Paper and Glue": 1 +"4th Grade Mathematics: Understanding Geometrical Shapes with Augmented Reality Tools": 1 +"3rd Grade History: Discovering Ancient Civilizations through Interactive Timeline Activities": 1 +"2nd Grade English: Storytelling and Character Development using Digital Animation with Scratch Jr.": 1 +"1st Grade Art: Learning Colors and Textures through Material Exploration and Collage Making": 1 +"5th Grade Science: Exploring Volcanic Eruptions with Baking Soda and Vinegar Experiments": 1 +"6th Grade Music: Enhancing Melody Comprehension with Music Composition using GarageBand": 1 +"3rd Grade Physical Education: Introduction to Basketball and Shot Technique with Smart Basketball": 1 +"2nd Grade Astronomy: Understanding Lunar Phases with Interactive Mobile Applications": 1 +"1st Grade English: Vocabulary Enhancement through Interactive Spelling Bees using Google Forms": 1 +"5th Grade Geography: Exploring World Cultures with Virtual Field Trips using Google Earth.": 1 +"7th Grade Biology: Understanding the Human Heart: 3D Modeling and Dissection in Virtual Reality": 1 +"Reducing Carbon Footprint through Solar Energy: Analyzing the Efficiency of Photovoltaic Cells in High School Physics": 1 +"5th Grade Health: Understanding Digestive System and the Role of Fiber": 1 +"2nd Grade Physical Education: Learning Soccer Basics: Incorporating the Concept of Force and Motion": 1 +"7th Grade Social Studies: The Internet Revolution and Its Impact on Communication Systems": 1 +"4th Grade Music: Mastering Rhythm Patterns through Drumming and Beat Making Software": 1 +"2nd Grade History: The Gold Rush and the Expansion of the West: A Study in Early American Pioneer Life": 1 +"5th Grade Geography: Exploring African Countries using Interactive Globes and Compass Skills": 1 +"9th Grade Music: Introductory String Instruments - Violin Techniques using the Suzuki Method": 1 +"7th Grade Math: Understanding Probability and Statistics using Interactive Dice and Coin Toss Simulations": 1 +"3rd Grade Mathematics: Exploring Geometric Shapes with Virtual Reality": 1 +"8th Grade History: Investigating the Medieval Europe with Virtual Tours": 1 +"5th Grade Art: Clay Sculpture: Learning the Art of Pottery": 1 +"1st Grade Geography: Discovering Our World with Interactive Globe and Maps": 1 +"6th Grade Science: Exploring Marine Life through Scuba Diving Simulations": 1 +"8th Grade Physics: Understanding the Laws of Motion with Robotics": 1 +"Kindergarten Social Studies: Learning about Occupations with Role-Playing Games": 1 +"3rd Grade Introduction to Geometry: Understanding Angles using Fun Activities ": 1 +"1st Grade Science: Discovering Plant Life through Nature Walks": 1 +"10th Grade Chemistry: Molecular Structures Analysis with Virtual Lab Experiments": 1 +"5th Grade English: Exploring Story Structure Through Classic Literature ": 1 +"7th Grade Science: Understanding the Solar System with Augmented Reality ": 1 +"2nd Grade Art: Discovering Shapes and Patterns with Origami ": 1 +"8th Grade History: The Impact of the Transcontinental Railroad on the Expansion of the United States ": 1 +"3rd Grade Mathematics: Understanding Multiplication Through Array Models ": 1 +"4th Grade Environmental Studies: Investigating Soil Composition and Worm Composting ": 1 +"1st Grade Music: Discovering Sound and Pitch with the Xylophone ": 1 +"9th Grade Biology: Exploring the Human Body Systems with Virtual Reality ": 1 +"6th Grade Social Studies: Tracing Ancient Greek Culture Through Myths and Legends ": 1 +"7th Grade Earth Science: Navigating the Rock Cycle with Interactive Simulations": 1 +"3rd Grade Math: Making Learning Fun with Interactive Games on iPads": 1 +"7th Grade History: Exploring the Impact of Industrial Revolution using Minecraft: Education Edition": 1 +"5th Grade Science: Learning Photosynthesis through Virtual Reality ": 1 +"8th Grade Literature: Enhancing Understanding of Metaphors in Shakespeare’s ’Romeo and Juliet’ using Google Classroom and Kahoot": 1 +"6th Grade Art: Exploring the Basics of Sculpture with Clay": 1 +"10th Grade Biology: Understanding Human Anatomy using 3D Printing Technology": 1 +"4th Grade Music: Exploring Classical Indian Rhythms with Tabla and Digital Audio Workstations": 1 +"5th Grade Geography: Analyzing Climate Change using Satellite Images and Google Earth": 1 +"1st Grade English: Learning Phonics with Animated Stories on Kindle Fire Tablets": 1 +"4th Grade History: Understanding the Role of Fire in Early Human Civilizations using Virtual Reality Applications.": 1 +"1st Grade Science: Discovering the Wonders of Space through Virtual Planetarium Software": 1 +"6th Grade English: Exploring Poetry through Animated Narratives using Toon Boom Harmony": 1 +"4th Grade Math: Fundamentals of Geometry through Interactive 3D Shapes Creation with Tinkercad": 1 +"5th Grade History: Unraveling Ancient Greek Mythology through Augmented Reality Storytelling": 1 +"2nd Grade Art: Creating Vibrant Illustrations with Digital Drawing in SketchBook": 1 +"3rd Grade Geography: Understanding World Maps through Interactive Globe and Atlas Applications": 1 +"4th Grade Science: Learning Animal Anatomy with 3D Modeling Software": 1 +"6th Grade Literature: Journey into the Realm of Sci-Fi through Isaac Asimov’s I, Robot": 1 +"1st Grade Math: Grasping Addition and Subtraction through Virtual Number Line Activities": 1 +"2nd Grade Social Studies: Exploring Community Roles through Role-Play and Interactive Games": 1 +"7th Grade Mathematics: Journey into Geometry - Understanding Shapes and Patterns with Interactive Software": 1 +"3rd Grade Science: Exploring Weather Patterns and Climate Change using Augmented Reality": 1 +"9th Grade English: Mastering Argumentative Essays through Collaborative Online Workshops": 1 +"11th Grade Physics: Quantum Mechanics Simplified - Delving into the World of Subatomic Particles with Virtual Reality": 1 +"6th Grade Literature: Discovering Mythology - Analyzing Greek Myths through Digital Storytelling": 1 +"7th Grade Geography: Unraveling the Himalayas - An In-Depth Study of Mountain Ecosystems using GIS Technology": 1 +"1st Grade Art: Embracing Creativity with Digital Painting and Animation Software": 1 +"4th Grade History: Knights and Castles - Investigating Medieval Europe through Virtual Field Trips": 1 +"3rd Grade Music: Introduction to Beat Making using Digital Music Software": 1 +"2nd Grade Environmental Studies: Understanding Composting and its Role in Sustainable Living": 1 +"3rd Grade Arithmetic: Exploring Division with Math Blaster Online Games incorporating Division Grids": 1 +"6th Grade Astronomy: Navigating the Galaxy with Stellarium Software": 1 +"6th Grade Physical Education: Fundamentals of Basketball with Hoop Drills": 1 +"3rd Grade Literature: Enhancing Story Comprehension using Interactive E-books, Zoom and Kahoot": 1 +"6th Grade Instrumental Music: Grasping Scale Patterns and Chord Progressions using Piano": 1 +"3rd Grade Math: Subtraction Mastery with Interactive Whiteboards using Tangible Learning Aids": 1 +"Fifth Grade History: Crafting Civil War Chronicles with Multimedia Presentation Tools": 1 +"11th Grade Physics: In-depth Study of Electromagnetism with Circuit Simulation Software": 1 +"3rd Grade Art: Exploring Texture Creation with Clay Sculpting": 1 +"3rd Grade Reading: Time Travel Adventures - A Journey through Historical Fiction and Analytical Skills": 1 +"8th Grade Physical Education: Developing Cardiovascular Fitness through Soccer Drills": 1 +"3rd Grade History: Understanding Medieval Times through Storytelling and Role Play": 1 +"4th Grade Science: Discovering Ocean Ecosystems through Virtual Reality Experiences": 1 +"1st Grade Art: Introduction to Portrait Drawing using Augmented Reality": 1 +"4th Grade Science: Investigating Volcanic Activities through Simulation Apps": 1 +"7th Grade Art: Learning Principles of 3D Design through Virtual Clay Modeling": 1 +"7th Grade Social Studies: Exploring Global Cultures through Virtual Tours and Online Discussions": 1 +"10th Grade Physical Education: Improving Balance and Coordination through Gymnastics and Team Building": 1 +"3rd Grade Mathematics: Geometry - Understanding Shapes and Patterns using Interactive Software": 1 +"3rd Grade Language Arts: Building Reading Comprehension and Writing Skills through Animated Storytelling Apps": 1 +"4th Grade Science: Understanding Photosynthesis with Interactive 3D Models": 1 +"6th Grade Physical Education: Enhancing Soccer Skills with Digital Training Apps": 1 +"2nd Grade Mathematics: Fun with Addition and Subtraction using Interactive Whiteboards": 1 +"7th Grade History: Unearthing Medieval Knights Through Augmented Reality Exploration": 1 +"1st Grade Music: Introduction to Rhythm and Melody through Hand Bells": 1 +"6th Grade Health Education: Exploring the Human Anatomy with 3D Printing ": 1 +"5th Grade Science: Investigating Weather Patterns using Interactive Globe and Weather Apps": 1 +"3rd Grade Mathematics: Learning Multiplication Tables with Online Games": 1 +"2nd Grade Language Arts: Developing Reading Comprehension with Storytelling Podcasts": 1 +"4th Grade Art: Exploring Abstract Art through Digital Painting Apps": 1 +"4th Grade Literature: Developing Reading Comprehension through Interactive E-books": 1 +"9th Grade Art: Exploring Impressionism and Introduction to Oil Pastel Techniques": 1 +"11th Grade Mathematics: Calculus - Understanding Derivatives and Integration through Real-life Applications": 1 +"7th Grade Biology: A Detailed Examination of Plant Photosynthesis Using Microscopic Slides": 1 +"9th Grade Music: Understanding Beethoven’s Symphonies through Music Composition Software": 1 +"2nd Grade Elementary: Exploring Animal Habitats with Virtual Reality": 1 +"5th Grade: Earth Science - Grasping Plate Tectonics Through Minecraft": 1 +"4th Grade Mathematics: Mastering Division Concepts with Virtual Blocks": 1 +"Kindergarten Mathematics: Emphasizing Counting, Shapes, and Patterns Using Interactive Whiteboards": 1 +"11th Grade Mathematics: Grasping Algebraic Concepts through Coding Algorithms": 1 +"4th Grade Biology: An Introduction to the Human Body: Exploring Bones, Muscles, and Joints": 1 +"2nd Grade Geography: Maps and Globes - Understanding Continents and Oceans": 1 +"2nd Grade Math: Engaging Number Games and Fun with Fractions": 1 +"5th Grade PE: Utilizing Garmin Kids Fitness Tracker for Activity Measurement": 1 +"8th Grade Social Studies: The Influence of Social Media on Modern Culture": 1 +"2nd Grade Science: Exploring Weather Patterns through Rain Gauge Experiments and Weather Vanes": 1 +"3rd Grade Art: Creating Colorful Worlds: Learning to Mix Paints and Create Landscapes": 1 +"Understanding Similes in Prose and Poetry: A 6th Grade Language Arts Course": 1 +"6th Grade Science: Understanding Solar and Lunar Eclipses through Hands-On Models": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with the Help of Math Apps": 1 +"4th Grade History: Exploring Ancient Egyptian Civilizations through Hieroglyphics Decoding": 1 +"3rd Grade Science: Understanding Plant Life Cycle through Microscope Studies": 1 +"1st Grade Music: Introduction to Rhythm and Sound with Hand Percussion Instruments": 1 +"2nd Grade Mathematics: Fun with Fractions: Visualizing Parts of a Whole": 1 +"7th Grade Language Arts: Enhancing Storytelling Skills through Interactive Drama Activities": 1 +"3rd Grade Art: Exploring Shapes and Patterns with Origami Paper Folding": 1 +"3rd Grade Health Education: Understanding Nutrition and Food Groups through Interactive Games": 1 +"2nd Grade Technology: Introduction to Scratch Programming for Creating Simple Animations": 1 +"6th Grade Geography: Exploring Different Climate Zones using Interactive Globe Software": 1 +"2nd Grade Music: Getting Started with GarageBand for Creating Simple Melodies - Understanding Musical Notes": 1 +"3rd Grade Science: Exploring Photosynthesis and the Carbon Cycle through Interactive Experiments": 1 +"8th Grade Mathematics: Enhancing Algebra Skills Using the Khan Academy and Prodigy Game": 1 +"6th Grade Literature: Delving into Greek Mythology with Interactive Storytelling and Digital Mind Maps": 1 +"11th Grade History: Dissecting the Cold War: Influential Events and their Implications in Today’s Politics": 1 +"5th Grade Language Arts: Enhancing Vocabulary through Creative Writing and Virtual Reality": 1 +"10th Grade Physics: Demystifying the Laws of Motion through Practical Experiments and Interactive Simulations": 1 +"7th Grade Social Studies: Understanding the Renaissance Era: The Role of Art and Innovation": 1 +"12th Grade Chemistry: Decoding the Periodic Table: A Comprehensive Study using Virtual Labs": 1 +"8th Grade English Language Arts: Exploring Metaphors in Literature through Analytical Reading and Discussion": 1 +"Understanding Coral Reefs: A 6th Grade Science Course using Virtual Reality with Google Cardboard and Merge Cube": 1 +"3rd Grade Geography: Exploring World Landforms using Google Earth": 1 +"6th Grade Art Education: Understanding Color Theory through Digital Painting Apps": 1 +"1st Grade Animal Studies: Learning Animal Behaviors and Adaptations through Virtual Zoo Visits": 1 +"4th Grade Math: Fractions Fun with Interactive Whiteboard Challenges": 1 +"7th Grade History: The Renaissance Era - Exploring Artifacts through Virtual Museum Tours": 1 +"3rd Grade Physical Education: Jump Rope Techniques and Pulse Rate Monitoring with Smart Watches": 1 +"5th Grade Language Arts: Enhancing Vocabulary through Crossword Puzzle Apps": 1 +"6th Grade Science: Exploring Space and Planetary Systems with Augmented Reality": 1 +"4th Grade Music: Learning Rhythm and Tempo through Interactive Drumming Apps": 1 +"1st Grade Science: Dive into the Underwater World - Aquarium Visit and Species Identification": 1 +"8th Grade Music: Exploring Digital Sound Mixing with GarageBand’s Virtual Instruments": 1 +"4th Grade Physical Education: Mastering Volleyball - Understanding the Serve and Spike with Virtual Training Tools": 1 +"10th Grade Physics: Investigating Quantum Mechanics through Virtual Reality Simulations": 1 +"7th Grade Literature: Enhancing Narrative Skills with the Use of Figurative Language and Literary Devices": 1 +"3rd Grade Biology: Understanding the Ecosystems of Polar Bears using Virtual Reality and 3D Mapping Technology": 1 +"5th Grade Archaeology: Unveiling Secrets of Prehistoric Times through the Study of Fossils and Dinosaurs": 1 +"American Civil War: The Impact of the Cotton Gin on Slave Labor and Southern Economy in 7th Grade History": 1 +"2nd Grade Science: Exploring the Life Cycle of Butterflies with Augmented Reality Tools": 1 +"6th Grade Geography: Comprehending Tectonic Movements with Interactive Earthquake Simulation Tools": 1 +"8th Grade Economics: Investigating Trade and Barter Systems in Medieval Times using Virtual Reality Experiences.": 1 +"2nd Grade Mathematics: Navigating through Numbers using Interactive Digital Games": 1 +"5th Grade Geography: Understanding Weather Patterns and Climate Change through VR Technology": 1 +"3rd Grade Science: The Wonders of Space: An Introduction to Astronomy": 1 +"Kindergarten Physical Education: Learning Basic Gymnastics and Balance Coordination": 1 +"4th Grade Art: Sculpting and Pottery: A Deep Dive into Ceramic Art": 1 +"3rd Grade History: The Evolution of Transportation: From Horse-Drawn Carriages to Electric Cars": 1 +"2nd Grade Environmental Studies: Introduction to Composting and Its Impact on Soil Health": 1 +"7th Grade Social Studies: The Renaissance Era and the Influence of the Printing Press": 1 +"9th Grade Health Education: The Importance of Nutrition and Healthy Eating Habits": 1 +"2nd Grade Language Arts: Using Puppetry for Interactive Storytelling Sessions": 1 +"8th Grade Biology: Exploring Marine Life through Data Collection and Analysis Techniques": 1 +"4th Grade History: The Industrial Revolution - Evolution of Railways and Telegraph Communication": 1 +"5th Grade Geography: Understanding Earth’s Plate Tectonics and Volcanic Activity": 1 +"8th Grade Physical Education: Introduction to Basic Gymnastics Movements": 1 +"11th Grade Art: Developing Landscape Painting Skills Using Watercolors": 1 +"2nd Grade Physical Education: Understanding Heart Rate and Exercise with Fitbit’s Kids Activity Trackers": 1 +"Kindergarten Art: Discovering Textures and Patterns through Finger Painting": 1 +"12th Grade English: Exploring Themes of Artificial Intelligence in Modern Poetry": 1 +"1st Grade Music: Introduction to Percussion Instruments: Learning Beats with Virtual Drums": 1 +"2nd Grade Music: Exploring Tempo and Harmony Basics through Keyboard and Metronome": 1 +"5th Grade History: The Impact of the Printing Press on the Renaissance Era": 1 +"3rd Grade Visual Arts: Discovering Color Mixing with Interactive Art Tools": 1 +"4th Grade English Literature: Journeying through Narnia with Interactive Story Maps": 1 +"8th Grade Physics: Unlocking the Secrets of Light Waves using Virtual Reality": 1 +"3rd Grade Creative Writing: Crafting Tall Tales with Digital Storytelling Software": 1 +"8th Grade Chorus: Mastering Harmony and Pitch with Vocal Training Apps": 1 +"Advanced Animal Life Cycle Study for 4th Grade: Unraveling the Mysteries of Metamorphosis through Entomology": 1 +"5th Grade Mathematics: Unfolding Geometry in Nature using Interactive 3D Models": 1 +"3rd Grade Earth Science: Investigating Volcanic Eruptions through Simulation Software": 1 +"3rd Grade Reading: Adventures in Literature - Exploring Characters with Puppet Theater": 1 +"4th Grade Science: Discovering Planets and Stars with Virtual Reality": 1 +"6th Grade Literature: Enhancing Comprehension with Graphic Novels and Storybird": 1 +"3rd Grade Mathematics: Fun with Fractions using Interactive Whiteboards": 1 +"Exploring Revolutionary War with Augmented Reality in 5th Grade Social Studies": 1 +"7th Grade French: Immersive Learning with Memrise, Anki Flashcards, and Duolingo": 1 +"2nd Grade Art: Understanding Textures and Mediums with Tactile Activities": 1 +"8th Grade Mathematics: Diving into Pythagoras’ Theorem and its Applications": 1 +"9th Grade Physics: Introduction to Newton’s Laws using Interactive Simulations": 1 +"1st Grade Music: Learning Rhythm and Melody with Music Maker Jam": 1 +"3rd Grade Spanish: Accelerated Learning with FluentU and Quizlet Live.": 1 +"5th Grade Science: Basics of Photosynthesis: Understanding Chlorophyll and Sunlight": 1 +"2nd Grade Geography: Journey Through the Solar System with Virtual Planetarium": 1 +"4th Grade Mathematics: Delving into Division using Arrays and Number Bonds": 1 +"Kindergarten Environmental Studies: Learning about Biodegradable and Non-Biodegradable Waste": 1 +"The French Revolution: The Guillotine’s Influence on Revolutionary Justice System": 1 +"5th Grade Mathematics: Mastering Decimal Addition and Subtraction using Number Lines": 1 +"1st Grade Mathematics: First Steps in Subtraction with Counting Objects": 1 +"6th Grade History: Ancient Egypt and Pyramid Construction - Understanding the Role of Geometry and Mathematics": 1 +"3rd Grade Social Studies: The Invention of the Printing Press and its Influence on Renaissance Europe": 1 +"7th Grade Social Studies: Confronting Climate Change through Renewable Energy using the Concept of Solar Power": 1 +"4th Grade Mathematics: Diving into Geometry with Tangram Puzzles": 1 +"2nd Grade Language Arts: Mastering Spelling and Vocabulary through Interactive Word Games": 1 +"1st Grade Science: Introduction to Animal Habitats with Clay Modeling and Nature Walks": 1 +"7th Grade Science: Introduction to Coding and Algorithm Design with Scratch": 1 +"Basketball: Strategy and Gameplay - A Detailed Understanding of Defense Techniques in 9th Grade Physical Education.": 1 +"4th Grade History: Unraveling Ancient Civilizations through Augmented Reality Explorations": 1 +"Pre-school Art: Exploring Space through Collage Making with Origami Stars, Glitter, and Glow Paint.": 1 +"5th Grade Music: Discovering the Elements of Jazz through Instrumental Improvisation and Beat Patterns": 1 +"6th Grade Environmental Science: Understanding the Impact of Deforestation on Climate Change": 1 +"11th Grade Literature: Investigating Themes of Power and Corruption in Shakespeare’s Plays through Dramatic Reading and Discussion": 1 +"6th Grade Physics: Exploring Newton’s Laws through Lego Simple Machines ": 1 +"4th Grade Art: Discovering Renaissance Paintings using Virtual Reality": 1 +"8th Grade Literature: Understanding Shakespeare’s Dramatic Structure using Digital Scripts and Rehearsal Apps": 1 +"2nd Grade Science: Understanding Weather Patterns through DIY Meteorology Kits": 1 +"The Role of the Silk Road in 3rd Grade History: Unraveling Ancient Trade Practices and the Invention of the Compass": 1 +"1st Grade Sensory Science: Understanding Sound using Tuning Forks and Sound Sensor Kits": 1 +"7th Grade Music: The Influence of Jazz and Blues on Modern Music Genres": 1 +"4th Grade Mathematics: Grasping Division Concepts through Online Puzzles and Math Apps": 1 +"6th Grade Biology: Exploring Plant Life-Cycle with Hydroponic Systems": 1 +"2nd Grade Geography: Identifying Countries and Capitals using Interactive Globe Software": 1 +"3rd Grade Science: Discovering Solar System with Augmented Reality and Stellarium": 1 +"1st Grade Spanish: Mastering Basics with Babbel, Interactive Flashcards, and Google Translate Tools": 1 +"5th Grade Mathematics: Enhancing Multiplication Skills with MathBoard and IXL Integration": 1 +"7th Grade Language Arts: Improving Essay Writing Skills through iPads, Grammarly, and Google Docs Collaboration": 1 +"8th Grade Social Studies: Unraveling the History of Renaissance Art Through Virtual Reality Using Oculus Rift and Unity 3D": 1 +"4th Grade Environmental Studies: Understanding Climate Change through Data Analysis and Interactive Charts": 1 +"3rd Grade Art: Crafting Clay Models - An Introduction to Pottery and the Use of Kilns": 1 +"7th Grade Science: Exploring the Rainforest Ecosystem through Virtual Field Trips and 3D Simulation Technology": 1 +"2nd Grade Geography: Identifying World Landmarks with Interactive Maps and Globes": 1 +"8th Grade Geometry: Applying Pythagorean Theorem in Everyday Life Scenarios": 1 +"1st Grade History: Understanding The Mayan Civilization through Storytelling and Artifacts": 1 +"2nd Grade English: Enhancing Vocabulary through Interactive Word Games and Puzzles": 1 +"8th Grade Music Education: Understanding Rhythm and Melody: Basics of Playing the Guitar": 1 +"6th Grade Science: Discovering Planets and Stars with Virtual Reality Space Exploration": 1 +"7th Grade Mathematics: The Role of Prime Numbers in Cryptography and Data Security": 1 +"6th Grade Geography: Uncovering the Mysteries of the Amazon Rainforest and Its Ecosystem": 1 +"9th Grade Art: Interpreting Cubism through Picasso’s Paintings and Digital Imagery": 1 +"2nd Grade Physical Education: Learning Basic Gymnastics Movements for Physical Fitness": 1 +"6th Grade Music: Analyzing Melodic Patterns in Classical Symphony": 1 +"5th Grade Science: Understanding Weather Patterns through Creation of a DIY Weather Station": 1 +"3rd Grade Science: Exploring the Solar System using Interactive Models": 1 +"10th Grade Literature: Analyzing Symbolism in Poetry: A Detailed Study using Digital Annotation Tools": 1 +"7th Grade Mathematics: Understanding Probability and Statistics through Interactive Games": 1 +"5th Grade Language Arts: Enhancing Creative Writing Skills through Blogging and Social Media Platforms": 1 +"1st Grade Music: Discovering Rhythm and Beat with Hand Drums": 1 +"Advanced Geometry: A Comprehensive 12th Grade Mathematics Course using 3D Printing Technology": 1 +"Exploring Beethoven’s Influence on Symphonic Music in 7th Grade using Music Composition Software": 1 +"4th Grade Geography: Studying the Impact of Climate and Weather on Human Settlements": 1 +"2nd Grade English: Fairy Tales and the Art of Story Sequencing": 1 +"5th Grade History: Ancient Egyptians - The Invention of Hieroglyphs and Papyrus Making": 1 +"3rd Grade Science: Learning about Weather Patterns with Interactive Software": 1 +"7th Grade Art: Exploring Sculpture Techniques using Clay Modeling": 1 +"5th Grade Mathematics: Understanding Geometry through Origami and Spatial Visualization": 1 +"6th Grade Music: Enhancing Tempo Recognition through Piano Playing and Metronome Training": 1 +"5th Grade History: Journey through the Middle Ages using Mixed Reality Simulations": 1 +"8th Grade Geography: Exploring Mountains and Volcanoes with 3D Modeling": 1 +"2nd Grade Science: Introduction to Plant Life Cycle using Time-Lapse Videos": 1 +"7th Grade Mathematics: Mastering Fractions through Cooking Measurements and Online Games": 1 +"4th Grade Physical Education: Understanding the Basics of Healthy Nutrition and the Role of Food Diary Apps": 1 +"3rd Grade Introduction to Geometry: Shapes Identification with Augmented Reality Tools": 1 +"3rd Grade Music: Exploring Rhythm through Percussion Instruments": 1 +"6th Grade Art: Navigating Through the Basics of Watercolor: An Excursion into Landscape Painting": 1 +"1st Grade Mathematics: Enhancing Subtraction Abilities with Number Lines via Smart Boards": 1 +"5th Grade Art and Design: Essentials of Papier-Mâché Craft": 1 +"3rd Grade Mathematics: Grasping the Concept of Fractions using Fraction Bars ": 1 +"4th Grade English: Incorporating Adobe Illustrator’s Graphic Tools in Traditional Folklore": 1 +"8th Grade English: Analyzing Drama through Plots & Character Development": 1 +"1st Grade Language Arts: Comic Strips and Video Narratives for Interactive Storytelling": 1 +"9th Grade Art: Metalworking Techniques: Perfecting Hammering and Soldering with Jewellery Making": 1 +"12th Grade History: The Role of Propaganda during World War II Era": 1 +"8th Grade Literature: Exploring the Imagery in Shakespearean Sonnets using Mind Maps and Google Classroom": 1 +"5th Grade Sports Science: Basketball Proficiency Through Skillful Dribbling Exercises": 1 +"Kindergarten Phonics: Mastering Letter Sounds and Blending using Interactive Online Games": 1 +"10th Grade Music History: The Impact of the Harpsichord on Baroque Era Compositions": 1 +"Ancient Egyptian Culture: The Role of Levers, Chisels, and Ramps in Pyramids Construction for 7th Grade History": 1 +"Innovative Education: Incorporating the Oculus Quest for Immersive Learning in 5th Grade Mayan Civilization Studies": 1 +"4th Grade Geometry: Understanding the Use of Pi in the Construction of Ancient Greek Temples": 1 +"A Comprehensive Approach to 3rd Grade Multiplication: Utilizing Puzzle Games in Prodigy Math’s Engaging Lessons": 1 +"1st Grade Natural Science: The Role of Bees in the Pollination Process and its Effect on the Ecosystem": 1 +"3rd Grade Art Studies: Exploring Texture and Pattern using Collage Techniques in Paper Weaving": 1 +"1st Grade Science: Discovering the Basics of Plant Life through Hands-On Gardening Projects": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals Using Virtual Money and Shopping Scenarios": 1 +"9th Grade Literature: Analyzing Symbolism in Classic Novels Using Digital Annotation Tools": 1 +"3rd Grade Art: Exploring Shapes and Colors through Interactive Drawing and Collage Activities": 1 +"6th Grade History: Uncovering Ancient Egypt’s Secrets Using Virtual Reality Exploration of Pyramids": 1 +"2nd Grade Environmental Science: Learning about Weather Patterns through Interactive Weather Station Tools": 1 +"4th Grade Physics: Grasping the Principles of Gravity and Motion Using Simple Machines and Experiments": 1 +"8th Grade Music: Exploring Music Composition through Digital Audio Workstations and MIDI Keyboards": 1 +"7th Grade Geometry: Understanding Angles and Shapes Using Origami and Virtual 3D Modelling": 1 +"5th Grade Language Arts: Enhancing Vocabulary and Spelling Skills through Interactive Crossword Puzzles and Word Games.": 1 +"4th Grade English: Enhancing Vocabulary Using Interactive Storytelling Platforms": 1 +"6th Grade Language Arts: Immersion into Augmented Reality - Comprehensive Study of Hololens 2": 1 +"7th Grade Social Studies: The Progress of Renewable Energy - The Impact of Solar Power Technology": 1 +"6th Grade Art: Unraveling Ancient Greek Sculptures through Plaster Casting: A Focus on Relief Carving": 1 +"8th Grade Art: Discovering Watercolor Painting Methods Using Blotting Papers": 1 +"2nd Grade Language Arts: Fun with Narration using Interactive Audio Books ": 1 +"Art Proficiency for 8th Grade: Landscape Artistry through Montage & Sketching Techniques using Graphic Tablets": 1 +"4th Grade Mathematics: Grasping the Concept of Fractions through Fun Puzzles": 1 +"1st Grade Music: Introduction to Rhythm and Beats with Interactive Percussion Apps": 1 +"4th Grade Mathematics: Mastering Addition and Subtraction using Virtual Reality Math Games": 1 +"Understanding the Impact of Rainwater Harvesting on Vegetable Gardens: A Study on Soil Moisture and Composting Techniques: 3rd Grade Environmental Studies": 1 +"The Importance of Dovetail Joints and the Use of Hand Tools in Japanese Temple Architecture: A 7th Grade History Lesson": 1 +"Fifth Grade Music: Mastering the Piano using Synthesia Video Lessons": 1 +"7th Grade English Language Arts: Unraveling Symbolism in Novels through Critical Reading and Discussion": 1 +"5th Grade Music: Exploring Jazz Improvisation Through Virtual Performances": 1 +"Examining 10th Grade Aerobics Technique in Health and Fitness through the Use of Fitbit Technology.": 1 +"Kindergarten Art: Discovering Textures and Patterns with Paper Mache": 1 +"3rd Grade English: Journey in Storytelling with Digital Flipcharts": 1 +"10th Grade Language Arts: The Function of Metonymy in Short Stories Explored through Microsoft Teams": 1 +"5th Grade History: Journeying through the Ancient Egyptian Civilization with Augmented Reality and Documentaries": 1 +"2nd Grade Art: Fundamental Clay Sculpting: A Novice’s Approach": 1 +"5th Grade History: The Influence of Silk Trade on Medieval Cultures and Early Navigation Techniques": 1 +"12th Grade Physics: Quantum Mechanics and the Mysteries of Particle Physics Revealed with a Cloud Chamber": 1 +"8th Grade Literature: Delving into Alternate History Themes in Dystopian Novels": 1 +"Wind Turbines and Power Production: A 6th Grade Science Course on Renewable Energy and Weather Patterns": 1 +"5th Grade English: Engaging Story Creation with Comic Strips as Language Development Tools": 1 +"4th Grade French: Basic Conversations with Interactive Role-Playing Games using Hand Puppets": 1 +"Protein Analysis in Gel Electrophoresis: A 12th Grade Course on Proteomics and Bioinformatics": 1 +"9th Grade Art: Discovering Acrylic Painting Techniques in Still Life and Landscape Art": 1 +"7th Grade Science: Unraveling the Mysteries of the Human Body with Anatomical Models and Medical Imaging": 1 +"5th Grade Geography: Discovering Volcanoes and Earthquakes with Interactive Mapping Software": 1 +"9th Grade Art: Exploring Renaissance Paintings with Virtual Reality and 3D Modeling": 1 +"6th Grade Math: Enhancing Problem-solving Skills through Sudoku Puzzles ": 1 +"8th Grade Theater: Introduction to the Works of Shakespeare - The Art of Performance": 1 +"10th Grade Technology: Advanced Sound Mixing Techniques using Ableton Live Software in Electronic Music": 1 +"Creative Writing in 5th Grade: Building Imaginative Skills through Poetry ": 1 +"4th Grade Art: Applying Adobe Illustrator’s Tools in Graphic Design and Storytelling ": 1 +"1st Grade Social Studies: The Invention of the Wheel and its Impact on Early Civilization ": 1 +"3rd Grade Language Arts: Using Anchor.fm for Fun and Educational Podcasting Projects": 1 +"5th Grade Biology: Exploring the Digestive System with Virtual Reality and Interactive Models": 1 +"3rd Grade Science: Exploring Marine Life: Virtual Dive into Coral Reefs and their Ecosystems": 1 +"1st Grade Language Arts: Discovering Rhymes: Poetry Creation through Nursery Rhymes": 1 +"5th Grade Mathematics: Grasping Geometry: Fun with Shapes and Patterns ": 1 +"2nd Grade Science: The Magical World of Plants: Learning Photosynthesis through Experiments": 1 +"6th Grade Science: Journey into the Past: Unearthing Fossils and Understanding Dinosaurs": 1 +"3rd Grade Art: Exploring Sculpture: Creating 3D Figures with Clay and Play-Doh": 1 +"4th Grade Literature: Improving Reading Skills through Graphic Novels and Comic Strips": 1 +"2nd Grade Environmental Studies: Understanding Weather Patterns: An Introduction to Meteorology Using Weather Maps": 1 +"4th Grade Social Studies: Discovering Ancient Civilizations through Augmented Reality": 1 +"1st Grade Science: The Fascinating World of Birds: Bird Watching and Identifying Different Species": 1 +"5th Grade Astronomy: Exploring Planetary Systems with Virtual Reality": 1 +"3rd Grade Biology: Understanding the Life Cycle of Butterflies through Time-lapse Photography": 1 +"6th Grade English Literature: Interpreting Themes in Classic Fairy Tales using Mind Mapping Software": 1 +"Exploring Pyramids of Egypt: A 6th Grade History Lesson on Ancient Engineering and Construction Techniques": 1 +"7th Grade Geography: The Impact of Climate Change on World Map Projections": 1 +"5th Grade Mathematics: Learning about Geometric Shapes with 3D Modeling Software": 1 +"8th Grade Music: Composing Melodies with Digital Audio Workstations": 1 +"Analyzing Food Chain Dynamics: A 7th Grade Biology Lesson Including Predator-Prey Relationships and Energy Transfer": 1 +"Exploring the Principles of Flight via Drone Technology: A Detailed Study of Lift, Drag, Thrust, and Gravity using Flight Simulators for 9th Grade Physics": 1 +"5th Grade Introduction to Decimals using Interactive Number Lines.": 1 +"5th Grade Geography: Navigating the World’s Continents and Oceans using Interactive Globe": 1 +"3rd Grade Literature: Exploring Fables and Fairytales with Digital Storybooks": 1 +"1st Grade Mathematics: Understanding Numbers and Counting through Fun Games": 1 +"7th Grade Science: Exploring the Solar System with 3D Models and Augmented Reality": 1 +"2nd Grade History: Discovering the Era of Dinosaurs through Fossils and Paleontology": 1 +"4th Grade Technology: Building Simple Machines using Lego Robotics": 1 +"5th Grade Music: Composing Basic Melodies with Online Music Software": 1 +"3rd Grade Art: Creating Digital Masterpieces with Graphic Design Tools": 1 +"8th Grade Health: Understanding the Human Body Systems with 3D Anatomical Models": 1 +"6th Grade Language Arts: Decoding Poetry and Rhymes using Online Literature Sources": 1 +"3rd Grade Mathematics: Geometry Exploration: Using Tangram Puzzles to Understand Shapes ": 1 +"6th Grade English Literature: A Dive into Fantasy Genres through Roald Dahl’s Novels": 1 +"9th Grade Music: The Evolution of Jazz: A Study of Sheet Music from Ragtime to Swing": 1 +"2nd Grade Science: Exploring Desert Biomes Using Sand Samples and Thermometers": 1 +"4th Grade Earth Science: Volcanoes: Understanding Eruption Patterns and Lava Flow": 1 +"Pre-K Science: Exploring Indoor Plants and Their Growth Patterns through DIY Greenhouse Kits": 1 +"3rd Grade Geography: Using a Compass for Locational Awareness and Map Reading Skills": 1 +"Narrative Writing with Storybird: 3rd Grade English Language Arts Course": 1 +"5th Grade Art: Exploring Cubism and the Influence of Picasso - A Deep Dive into Art History": 1 +"2nd Grade Physical Education: Discovering Gymnastics in Individual Sports": 1 +"6th Grade English: Enhancing Reading Comprehension via Interactive Storytelling and Group Discussions": 1 +"4th Grade Art: Exploring Color Theory through Mixed Media Projects": 1 +"2nd Grade Geography: Discovering Continents and Oceans Using Augmented Reality Tools": 1 +"7th Grade Physics: Basic Concepts of Force and Motion with Hands-On Experiments": 1 +"1st Grade Music: Introduction to Rhythm and Melody through Interactive Percussion Instruments": 1 +"8th Grade Computer Science: Introduction to Coding with Scratch and Raspberry Pi": 1 +"5th Grade Health: Understanding Nutrition through Healthy Meal Planning and Preparation": 1 +"3rd Grade Physical Education: Introduction to Team Sports with Focus on Soccer Skills": 1 +"2nd Grade Math: Understanding Addition and Subtraction through Interactive Math Games ": 1 +"8th Grade History: The Civil War Explored Through Virtual Reality Field Trips.": 1 +"2nd Grade Science: Exploring Life Cycles using Interactive Butterfly and Frog Models": 1 +"4th Grade Social Studies: Understanding Government Structures through Play-based Role-playing Activities": 1 +"6th Grade Science: Investigating Space and Planets with Virtual Reality and 3D Modelling": 1 +"1st Grade Reading: Boosting Phonics Skills with Animated Alphabet and Storybook Apps": 1 +"7th Grade Math: Solving Equations and Inequalities using Interactive Whiteboard and Math Solver Tools": 1 +"5th Grade History: Learning about the American Revolution through Augmented Reality Timelines and Interactive Quizzes": 1 +"8th Grade Physical Education: Building Coordination and Strength through Dance and Gymnastic Video Guides": 1 +"3rd Grade Art: Creating Digital Art using Tablet Design and Sketching Apps": 1 +"4th Grade Language Arts: Improving Grammar Skills with Online Games and Practice Quizzes": 1 +"9th Grade Biology: Understanding Cell Structure and Processes with Microscope Simulations and 3D Animations": 1 +"4th Grade Geography: Navigating the World’s Continents using Interactive Online Maps": 1 +"8th Grade English Literature: Exploring Themes of Identity in Classic Novels": 1 +"1st Grade Art: Discovering Shapes and Colors through Hands-on Crafts": 1 +"6th Grade Biology: Unraveling the Mysteries of Plant Life with Microscopic Observation": 1 +"10th Grade Physics: Understanding the Basics of Gravity through Experiments and Simulations": 1 +"2nd Grade Music: Learning Basic Rhythms through Percussion Instruments": 1 +"7th Grade History: Tracing the Evolution of Democracy from Ancient Greece": 1 +"5th Grade Technology: Coding Basics with Scratch and other Programming Platforms": 1 +"11th Grade Physical Education: Improving Agility and Coordination through Basketball Drills": 1 +"4th Grade Mathematics: Understanding Fractions through the use of Interactive Online Tools.": 1 +"4th Grade Geography: Exploring the Amazon Rainforest with Google Earth and Interactive Wildlife Videos": 1 +"7th Grade Music: Understanding Rhythm and Melody with GarageBand: A Comprehensive Guide": 1 +"1st Grade Art: Creating Collages with Recycled Newspapers and Watercolor Paints": 1 +"3rd Grade Science: Discovering the Solar System using Augmented Reality Planetarium Apps and 3D Printed Models": 1 +"6th Grade Language Arts: Enhancing Reading Comprehension through Interactive eBooks and Quizlet Flashcards": 1 +"5th Grade History: Exploring Medieval Europe through Virtual Castle Tours and Illuminated Manuscripts": 1 +"2nd Grade Social Studies: Understanding Community Roles with Role-Playing Games and Interactive City Maps": 1 +"8th Grade Science: Unveiling the Mysteries of DNA and Genetics using Interactive 3D Models and Virtual Labs": 1 +"7th Grade Geography: Studying the Impact of Volcanic Eruptions on Island Formation using Volcano Simulation Software": 1 +"1st Grade Science: Exploring the Life Cycle of Butterflies using Live Caterpillar Kits and Time-Lapse Videos.": 1 +"8th Grade Art: Exploring the Use of Perspective and Shadow in Renaissance Artworks": 1 +"5th Grade Science: Understanding the Water Cycle through Interactive Experiments and Simulations": 1 +"3rd Grade Mathematics: Mastering Multiplication using Fun Online Games and Worksheets": 1 +"10th Grade English: Analyzing Symbolism in F. Scott Fitzgerald’s ’The Great Gatsby’ using Kindle and Google Docs": 1 +"7th Grade Physical Education: Basketball Fundamentals - Dribbling and Shooting Techniques": 1 +"9th Grade Geography: Discovering the Diversity of Biomes through Virtual Reality Tours": 1 +"4th Grade Social Studies: Journeying through Ancient Rome with Interactive 3D Models and Timelines": 1 +"6th Grade History: Tracing the Civil Rights Movement through the Use of Primary Documents and Multimedia Resources": 1 +"5th Grade Music: Exploring Melody and Harmony through Ukulele Lessons": 1 +"2nd Grade Language Arts: Enhancing Reading Skills through Interactive Storytelling and Audio Books": 1 +"Mastering Multiplication and Division using the Montessori Bead Cabinet: A 3rd Grade Mathematics Course": 1 +"10th Grade Music: Composing with GarageBand and the Physics of Harmonics - A Music Production Study": 1 +"3rd Grade Science: Learning about Plant Life Cycles using Time-lapse Photography and Microscopic Observation": 1 +"4th Grade Art: Basics of Landscape Painting with Acrylics and Watercolors": 1 +"7th Grade Biology: The Fascinating World of Insects: Ant Colonies and their Social Structures": 1 +"6th Grade History: Unraveling the Mysteries of the Maya Civilization with Lidar Technology": 1 +"4th Grade Geography: Exploring Mountains and Rivers through Virtual Reality": 1 +"Breaking the Enigma Code: The Role of Cryptographers in World War II": 1 +"6th Grade Music: Exploring Mozart using Digital Audio Workstations": 1 +"Investigating Weather Patterns and Global Warming: Integrating Arduino in 6th Grade Science": 1 +"8th Grade Mathematics: Understanding Geometry through 3D Modeling Software": 1 +"5th Grade Literature: Exploring Themes of Adventure in Classic Novels using Audiobooks": 1 +"3rd Grade Environmental Science: Exploring Biodiversity in the Rainforest using Augmented Reality": 1 +"9th Grade Music: Composition and Theory through Digital Audio Workstations": 1 +"Kindergarten Health and Wellness: Learning About Hygiene through Interactive Storytelling": 1 +"12th Grade Biology: The Role of CRISPR-Cas9 in Gene Editing and Modern Medicine": 1 +"11th Grade History: Examining Social Changes in the Renaissance Era Using Interactive Timelines": 1 +"Basketball: Fundamentals, Strategies, and the Role of Performance Analytics in 7th Grade Physical Education": 1 +"6th Grade Visual Arts: Sculpting Imaginary Creatures Using Clay": 1 +"5th Grade Earth Science: The Fascinating World of Volcanoes - A Deep Dive into Plate Tectonics": 1 +"3rd Grade Math: Understanding Fractions with Fun Puzzles and Interactive Whiteboard": 1 +"3rd Grade Environmental Studies: Exploring Solar Energy and Its Impact on Ecosystems": 1 +"An Exciting Journey into Animal Life Cycles: Third Grade Biology": 1 +"4th Grade Environmental Studies: The Role of Wind Energy in Power Generation - An In-Depth Study of Windmills": 1 +"1st Grade Art: Crafting Seascape Art with Acrylic Painting using Round Brushes, Painting Knives, Sea Sponges, Hog Hair Brush, and Layering Technique": 1 +"4th Grade Language Arts: Exploring Similes in Classic Literature using Roblox Education Edition and Google Classroom": 1 +"5th Grade Language Arts: Plot Creation & Setting Description through Imagery": 1 +"5th Grade Health: Physical Fitness and Active Lifestyle Habits": 1 +"5th Grade Music: Melodies in Harmony - An Introduction to Music Composition Software": 1 +"5th Grade History: Deciphering Ancient Mayan Numerology with the Concept of Counting Systems": 1 +"8th Grade Mathematics: Exploring Geometry through Virtual Reality ": 1 +"2nd Grade Music: Learning Scales and Chords with Interactive Piano Apps": 1 +"6th Grade Mathematics: Grasping Multiplication using Abacus Techniques": 1 +"5th Grade Art: Discovering Texture and Form through Clay Sculpting": 1 +"7th Grade Art: Creating Dimension - Shading Techniques with Graphite": 1 +"5th Grade Mathematics: Introduction to Decimals and the Magic of Fractions": 1 +"3rd Grade Social Studies: Ancient Civilizations - Exploring Major Archaeological Discoveries": 1 +"5th Grade Science: Observing Life Cycles in Animal Biology Using Time-Lapse Videos": 1 +"4th Grade English: Creating Animated Short Stories using Scratch Coding": 1 +"11th Grade Physics: Forces and Motion - Exploring Newton’s Laws with Practical Experiments": 1 +"2nd Grade English: Building Vocabulary and Sentence Structures with Interactive Storytelling Games": 1 +"8th Grade Geometry: Mastering Angles and Shapes through 3D Modeling and Virtual Reality ": 1 +"Second Grade Health Science: Our Healthy Body - Understanding Nutrition: Using Food Pyramid Models": 1 +"6th Grade Physics: Exploring the Laws of Motion through Virtual Roller Coaster Simulations": 1 +"3rd Grade History: Journeying Through Ancient Civilizations with Clay Tablet Writing and Mural Painting using Virtual Art Tools": 1 +"7th Grade Visual Arts: The Craft of Abstract Sculpture with Clay and Recycled Materials": 1 +"5th Grade Music: Unraveling the Magic of Mozart’s Symphony No.40 with GarageBand and Digital Keyboards": 1 +"5th Grade Geography: Navigating the World: Discovering Continents and Oceans Through Interactive Globes and Google Earth ": 1 +"2nd Grade Physical Education: Basic Gymnastics: Developing Flexibility and Balance through Mat Exercises": 1 +"4th Grade Literature: Exploring Fantasy Worlds with Digital Book Creation and Audiobook Narration Techniques": 1 +"5th Grade Biology: Plant Photosynthesis: An In-depth Study with Microscopic Imaging and Leaf Dissection": 1 +"6th Grade Physics: Understanding Gravity using Interactive Models and Experiments": 1 +"1st Grade Literacy: Building Reading Skills with Fun Alphabet Puzzles": 1 +"8th Grade English: Exploring Mystery Novels through the Lens of Detective Work": 1 +"2nd Grade Art: Exploring Textures and Materials through Sculpture Making": 1 +"2nd Grade Social Studies: Understanding Our Community with Interactive Models and Field Trips": 1 +"4th Grade Geography: Exploring Oceans and Continents Through Interactive 3D Mapping and Virtual Tours": 1 +"5th Grade History: Ancient Civilizations - The Use of Hieroglyphics in Communication": 1 +"Pre-school Reading: Mastering Letter Recognition with Interactive Flash Cards": 1 +"Investigating Desert Biomes in 2nd Grade Science: Cactus Terrarium Building and Species Identification using Moisture Test Kits, Heat Indicators and Wind Vanes": 1 +"5th Grade Science: Exploring Planetary Systems using Virtual Reality and NASA’s Interactive Space Atlas": 1 +"6th Grade Music: Understanding Melody and Harmony with Keyboards and GarageBand Software": 1 +"7th Grade Physical Education: Sprinting Techniques and Heart Rate Monitoring with Fitbit Devices": 1 +"4th Grade Geography: Navigating the World’s Biomes with Augmented Reality and Google Earth": 1 +"8th Grade English: Deciphering Shakespeare’s Sonnets: Interactive Recitation and Thematic Review": 1 +"5th Grade Environmental Science: The Role of Robotics in Wildlife Conservation": 1 +"Using Heart Rate Variability (HRV) in Syncing Fitbit Charge 4 with MyFitnessPal App: A Comprehensive 10th Grade Physical Education Course": 1 +"11th Grade Social Studies: In-depth Study of European Renaissance focusing on the Cultural Evolution": 1 +"10th Grade Music: The Science of Sound - Percussion Techniques on Drums: Exploring Resonance and Timbre": 1 +"8th Grade History: Delving into Roman Civilization through Clay Tablet Deciphering and Carbon Dating.": 1 +"1st Grade Language Arts: Learning Phonics through Interactive Storytelling": 1 +"3rd Grade Mathematics: Exploring Geometry through Origami Art": 1 +"5th Grade Introduction to Statistics: Understanding Probability using Coin Toss Experiment ": 1 +"JavaScript Programming for 7th Grade Math: Graphing Equations with Khan Academy Platform": 1 +"5th Grade Cooking: Understanding Ratios and Proportions through Baking Cookies": 1 +"3rd Grade Science: Plant Life Cycle and Growth Observation using Time-Lapse Photography": 1 +"7th Grade Music: Decoding Rhythmic Structures in Jazz Improvisation": 1 +"1st Grade Social Studies: Understanding Traffic Rules through Role Play ": 1 +"Exploring Cotton Cultivation Practices in 17th Century England: A Fourth Grade Environmental Science Course": 1 +"2nd Grade Music: Learning Basic Rhythm with Hand Drums and Metronome Apps.": 1 +"3rd Grade Physics: Exploring Simple Machines and Their Applications in Everyday Life": 1 +"7th Grade Health Education: The Science of Balanced Diets and Exercise Routines": 1 +"9th Grade Digital Music: Diving into Advanced Sound Editing with Audacity and FL Studio in Jazz Music": 1 +"1st Grade Visual Arts: Introduction to Shapes and Patterns with Paper Collage and Drawing Apps": 1 +"Second Grade Earth Science: Understanding the Water Cycle in Our Changing Environment": 1 +"4th Grade Visual Arts: Exploring Expressionism with Watercolors, Pastels, and Collage Techniques": 1 +"7th Grade Music Theory: The Influence of the Violin in Baroque Music and the Concept of Ritardando": 1 +"Exploring 8th Grade Historical Fiction Literature with Kindle Features and Digital Annotation Tools": 1 +"Innovative Storytelling with Book Creator for 3rd Grade English Language Arts Course": 1 +"5th Grade English Literature: Deciphering Symbolism in Poetry through Thematic Analysis": 1 +"7th Grade Music: Evolution of Jazz and the Influence of Saxophone in the Roaring Twenties": 1 +"5th Grade English: Developing Interactive Narratives using Python Programming": 1 +"9th Grade History: The Industrial Revolution: The Transformation of the Spinning Jenny and the Growth of British Textile Industry": 1 +"Fourth Grade Earth Science: Discovering Geological Formations through Virtual Reality Applications": 1 +"7th Grade Visual Arts: Discovering Sculpting Techniques with Clay": 1 +"Exploring Symbolism in J.D. Salinger’s ’The Catcher in the Rye’ in 10th Grade English: Incorporating Blogs, PowerPoint, and Google Classroom for Engaged Learning": 1 +"3rd Grade Health: Understanding Exercise and its Impact on Physical Well-being": 1 +"5th Grade Geography: Exploring Climate Zones using Geographic Information Systems and Satellite Images": 1 +"Augmented Reality Tour of Rainforest Ecosystems: A 5th Grade Science Course Using Immersive Learning Tools": 1 +"Fifth Grade History: Understanding the Influence of the Silk Road on Ancient Trade and Cultural Exchange": 1 +"5th Grade Music: Exploring Melody and Harmony through Ukuleles and GarageBand App": 1 +"1st Grade Music: Understanding the Basics of Tempo with Maracas using Soundtrap Music Creation Software": 1 +"4th Grade Science: Studying the Solar System through Augmented Reality-Assisted Star Gazing": 1 +"5th Grade Social Studies: Investigating Civil Rights Movements through Literature and Film Study": 1 +"7th Grade Art: An Introduction to Sculpting and 3D Art using Clay and Paper Mache": 1 +"9th Grade Art: Mastering Digital Illustration using Adobe Illustrator: Focusing on Color Theory": 1 +"3rd Grade Science: Utilizing Drawing to Understand Ocean Ecosystems during Aquarium Visits": 1 +"7th Grade Language Arts: Improving Narrative Skills with the Help of Drama and Role-Playing": 1 +"8th Grade Physical Education: Mastering Yoga Poses using Stability Balls and Augmented Reality for Strength Training": 1 +"9th Grade Music: Discovering the Role of Synthesizers in Electronic Music Production": 1 +"3rd Grade History: Discovering Ancient Egyptian Culture through Hieroglyphic Decoding": 1 +"8th Grade Physical Education: Fundamentals of Volleyball and Serving Techniques": 1 +"5th Grade Mathematics: Understanding Fractions using Interactive Digital Tools": 1 +"7th Grade Literature: Journey into the Future with H.G. Wells’ Time Machine": 1 +"1st Grade Geography: Introduction to the Solar System using Virtual Reality": 1 +"4th Grade Art: Exploring Sculpture using Clay and Coil Building Technique": 1 +"12th Grade Music: The Evolution of Electronic Music in the 21st Century": 1 +"5th Grade Science: Unveiling the Mystery of Metamorphosis through Butterfly Life Cycle Observations": 1 +"3rd Grade Geography: Studying Weather Patterns using Interactive Weather Maps": 1 +"The Role of the Silk Road in the Expansion of Ancient Civilizations: A 7th Grade History Perspective": 1 +"9th Grade Art: Exploring the Renaissance through Virtual Reality": 1 +"6th Grade History: Decoding the Middle Ages Through Heraldry and Coat of Arms": 1 +"5th Grade Science: Discovering the Solar System with 3D Printing Technology": 1 +"Civil Rights Movement: Emphasizing the Role of Silent Protests in 9th Grade Social Studies": 1 +"Boosting 3rd Grade Multiplication Skills: An In-depth Exploration of MathLingo Application via Interactive Whiteboards": 1 +"12th Grade Sports Science: The Significance of Drone Technology in Analyzing Athletic Performance": 1 +"Preschool Nutrition: Utilizing Interactive Whiteboard Games for Healthy Eating Habits": 1 +"5th Grade Drama: Scripting Myths and Legends using Digital Storytelling": 1 +"2nd Grade Environmental Studies: Exploring Local Parks with Virtual Reality Field Trips": 1 +"12th Grade Biology: Microorganism Identification, Microscopy and Cell Culture Techniques": 1 +"4th Grade Mathematics: Enhancing Multi-Digit Multiplication Skills with Math Blaster and Google Classroom ": 1 +"3rd Grade Music: Understanding Rhythm through Percussion Instruments ": 1 +"1st Grade Introduction to Animals: Learning with Interactive Flashcards": 1 +"Fifth Grade Literature: Creating Mythical Stories with Storybird Digital Writing Platform": 1 +"1st Grade Geometry: Understanding Shapes and Patterns through Tangram Puzzles": 1 +"7th Grade Chemistry: Introduction to Periodic Elements with Interactive Simulations ": 1 +"7th Grade Math: Diving into Probability and Statistics with R Programming Language": 1 +"6th Grade Geography: Exploring the Wonders of Asia through Virtual Reality using Google Earth VR": 1 +"6th Grade Biology: Discovering Animal Adaptation through Different Habitats": 1 +"2nd Grade Science: Understanding the Water Cycle through Evaporation and Condensation Experiments": 1 +"7th Grade Mathematics: Geometry and Algebra Explored Through Minecraft and 3D Printing": 1 +"9th Grade Literature: Analyzing Modern Poetry with Interactive Mind Map Tools": 1 +"3rd Grade Art: Discovering the Beauty of Van Gogh’s Starry Night with Virtual Painting": 1 +"1st Grade Science: Introduction to Plant Life-Cycles using Time-Lapse Photography and Interactive Activities": 1 +"7th Grade Geography: The Grand Canyon & Plate Tectonics: Understanding Earth’s Processes": 1 +"Pre-Kindergarten: Developing Basic Motor Skills through Play-based Learning": 1 +"6th Grade Physical Education: Basketball Skills, Strategies and Team Building": 1 +"12th Grade History: Decoding Egyptian Hieroglyphs Using Rosetta Stone Artifact Analysis": 1 +"7th Grade Music: Exploring the Role of MIDI Controllers in Electronic Music Composition": 1 +"9th Grade Biology: The Human Digestive System and the Importance of Balanced Diet": 1 +"3rd Grade Biology: Plant Life Cycle Exploration: Using Microscopes and Botanical Gardens": 1 +"6th Grade History: The Industrial Revolution - Understanding the Steam Engine in Social Studies": 1 +"7th Grade Physical Education: Discovering Soccer: Team Building and Skills Development through Practice Drills": 1 +"4th Grade Geography: Navigating Global Landforms using Interactive 3D Models and Atlas": 1 +"5th Grade Environmental Science: Exploring Renewable Energy: Solar and Tidal Power Systems": 1 +"Physics of Flight: Applying Bernoulli’s Principle and Aerodynamics in 8th Grade Science": 1 +"1st Grade Science: Observing Seasons Changes with Outdoor Thermometers and Weather Charts": 1 +"7th Grade Music: Investigating Mozart’s Symphonies through Instrumental Practice": 1 +"1st Grade: A Voyage through Space: Studying Planets and Stars using Digital Astronomy in Science": 1 +"2nd Grade Social Studies: Uncovering Community History through Local Field Trips": 1 +"7th Grade Physical Education: Volleyball Tactics: Enhancing Game Strategy with Video Analysis Technology": 1 +"1st Grade Physical Education: Introduction to Coordination: Enhancing Motor Skills through Dance": 1 +"11th Grade Physics: Understanding the Laws of Motion through Rocket Propulsion Experiments": 1 +"6th Grade Mathematics: Geometry in Action: Exploring Angles with Virtual Reality Technology": 1 +"8th Grade English: Journey into Drama: Interactive Plays on Kindle and their Impact": 1 +"12th Grade Music: Analyzing Beethoven’s Symphony No.9 in D minor Using Finale Notation Software, Harmony Analysis, and Ableton Live for Sound Design": 1 +"5th Grade Science: Animal Adaptation: Survival and the Role of Thermometers in Understanding Body Temperature": 1 +"8th Grade Music: Mastering Melody and Harmony with a Digital Audio Workstation": 1 +"2nd Grade Music: Exploring Beat and Rhythm with Household Items": 1 +"10th Grade History: The Cold War Era - The Impact of Nuclear Technology": 1 +"5th Grade Mathematics: Understanding Geometry through the Construction of Pyramids": 1 +"6th Grade Environmental Studies: Unraveling the Amazon Rainforest with Infrared Imaging": 1 +"1st Grade Music: Discovering Melody through String Instruments": 1 +"7th Grade History: The Evolution of Medieval Armor: Highlighting the Impact of Metallurgy": 1 +"9th Grade Language Arts: Navigating Greek Mythology using Virtual Reality": 1 +"Google Classroom with Kahoot Integration in Fourth Grade Geography: Exploring European Capitals through Interactive Quizzes": 1 +"2nd Grade Language Arts: Utilizing Google Docs to Construct Short Stories with Crayons and Markers": 1 +"5th Grade History: The Implication of Algebra in Designing Ancient Egyptian Pyramids": 1 +"Iron and Silk: Essentials of Ancient Indian Civilization in the Creation of the Taj Mahal for 7th Grade History": 1 +"1st Grade Science: Exploring Oceanic Ecosystems with GoPro Cameras, pH Testing Kits, Dolphin Documentaries and Telescope Binoculars": 1 +"5th Grade History: Discovering Ancient Civilizations through Augmented Reality": 1 +"Kindergarten Science: Exploring the Animal Kingdom with Interactive Touch Screens and 3D Models": 1 +"3rd Grade Math: Introducing Fractions using Digital Manipulatives and Interactive Games": 1 +"7th Grade Art: Exploring the Renaissance Period through Virtual Reality Art Galleries": 1 +"2nd Grade Environmental Science: Understanding the Weather Cycle with Interactive Weather Stations": 1 +"6th Grade Literature: Dive into the World of Fantasy Literature using Interactive Story Maps and Character Analysis": 1 +"10th Grade Physics: Understanding Quantum Mechanics through 3D Models and Virtual Reality": 1 +"4th Grade Geography: Travel Through the USA using Interactive Maps and State Fact Sheets": 1 +"8th Grade Social Studies: Encounter Ancient Rome through VR Simulations and Interactive Timelines": 1 +"1st Grade Music: Introduction to Rhythm and Pitch through Interactive Musical Instruments and Sing-along Songs.": 1 +"4th Grade History: Discovering Native American Cultures through Virtual Reality Tours": 1 +"7th Grade Health Education: Understanding Nutrition and Balanced Diets with Interactive Mobile Apps": 1 +"1st Grade Reading: Introduction to Phonetics and Word Formation with Interactive E-books": 1 +"8th Grade Science: Investigating Weather Patterns and Climate Changes Using Simulation Software": 1 +"2nd Grade Art: Exploring Textures and Patterns with Digital Collage Creation": 1 +"5th Grade Mathematics: Grasping Geometry Concepts through Augmented Reality Shapes": 1 +"9th Grade Spanish: Enhancing Vocabulary Acquisition through Language Learning Apps": 1 +"7th Grade Music: Understanding Rhythm and Tempo through Interactive Beat Machines": 1 +"10th Grade Biology: Evolutionary Biology: Tracking Species Evolution using Interactive Timelines": 1 +"4th Grade Physical Education: Introduction to Yoga and Mind-Body Connection via Virtual Classes": 1 +"5th Grade Computer Science: Getting Started with Python Coding and Raspberry Pi": 1 +"1st Grade Life Skills: Understanding Hygiene Basics Through Interactive Learning Games": 1 +"3rd Grade Language Arts: Exploring Nouns and Verbs with Interactive E-books on Kindle Fire HD 10": 1 +"3rd Grade Social Studies: Understanding the Role of X-rays and Ultrasound in Medical Science": 1 +"8th Grade Social Studies: Exploring Asian Cultures Through Virtual Reality Using Google Cardboard": 1 +"5th Grade History: The Renaissance Period - The Impact of the Printing Press and the Telescope": 1 +"5th Grade Art: Understanding the Principles of Design using Digital Art in Adobe Illustrator": 1 +"5th Grade Social Studies: The French Revolution - The Influence of the Guillotine and the Phrygian Cap": 1 +"Interactive Learning: Utilizing the HTC Vive for Immersive Learning in 6th Grade Ancient Egyptian Civilization Studies": 1 +"7th Grade English: Enhancing Creative Writing Skills through Brainstorming Techniques": 1 +"7th Grade Mathematics: Advancing Algebraic Concepts through Real-World Applications": 1 +"3rd Grade History: Unearthing Ancient Civilizations through Archeological Artifacts": 1 +"1st Grade Art: Discovering Shapes and Colors through Nature Collage": 1 +"9th Grade Biology: Investigating Cellular Structures through Microscopy Techniques": 1 +"6th Grade Music: Exploring Rhythms and Melodies with GarageBand": 1 +"8th Grade French: Enhancing Language Skills through Interactive Drama and Role Play": 1 +"2nd Grade Health Science: Understanding Nutrition and Exercise through Interactive Games": 1 +"4th Grade Geography: Learning about Biomes using Virtual Reality Tours": 1 +"7th Grade Physics: Introduction to Kinematics with Lego Mindstorms": 1 +"5th Grade Writing: Enhancing Creative Writing Skills with Story Cubes and Graphic Organizers": 1 +"3rd Grade Science: Exploring the Solar System through Virtual Reality Applications": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals with Gamified Learning Tools": 1 +"4th Grade Art: Creating Landscape Art with Watercolor Techniques using Flat Brushes and Tissue Paper Blotting": 1 +"3rd Grade Music: An Introduction to Rhythm and Beat through Interactive Percussion Instruments ": 1 +"7th Grade Biology: Diving into Cellular Structures and Functions with 3D Models": 1 +"10th Grade English: Unfolding Drama through the Study of Shakespeare’s Macbeth ": 1 +"8th Grade History: The French Revolution: Understanding the Role of the Guillotine in Power Dynamics": 1 +"6th Grade Language Arts: Expanding Vocabulary through Interactive Storytelling and Podcasts": 1 +"9th Grade Physics: Exploring Newton’s Laws with Real-life Experiments and Simulations": 1 +"5th Grade History: Learning About Ancient Civilizations through Minecraft: Education Edition and Kahoot Quizzes": 1 +"7th Grade Geography: The Influence of Rivers in Shaping Civilizations and 5 Case Studies for Analysis": 1 +"3rd Grade Physical Education: Getting Started with Basketball: Shooting and Defense Basics with Foam Balls": 1 +"5th Grade Physics: The Magic of Light: An Exciting Start to Optics": 1 +"7th Grade Mathematics: Engaging Geometry Learning through Virtual Reality": 1 +"5th Grade History: Exploring Medieval Europe with Drone-Captured Videos and Animated Storytelling": 1 +"11th Grade Economics: The Effects of the Great Depression on the Contemporary Financial System": 1 +"10th Grade Health: Understanding the Human Body and Fitness through Fitness Tracker Data Analysis": 1 +"3rd Grade Social Studies: Fun Study of Local Wildlife using Virtual Reality": 1 +"2nd Grade Art: Developing Spatial Awareness and Fine Motor Skills through Origami": 1 +"The Rise of Digital Technology and Its Impact on Society: An 11th Grade Social Studies Course Focusing on the Internet and Social Media.": 1 +"5th Grade Science: Exploring Photosynthesis through Botanical Sketching and Digital Microscopy": 1 +"9th Grade Literature: Unraveling the Mysteries of Arthurian Legends through Interactive Storytelling": 1 +"3rd Grade Geography: Understanding Continental Drift using Augmented Reality and Puzzle Assembly": 1 +"Kindergarten Arithmetic: Recognizing and Counting Objects through Interactive Games and Craft Activities": 1 +"7th Grade Music: Composing Symphonies with GarageBand and Virtual Orchestration Techniques": 1 +"2nd Grade Health Education: Discovering Food Groups through Cooking Demonstrations and Taste Testing": 1 +"3rd Grade Civic Studies: Learning about Recycling and Sustainability through Project-Based Learning Experiences": 1 +"5th Grade Spanish: Developing Vocabulary Skills through Interactive Storytelling and Virtual Reality Scenarios": 1 +"8th Grade Physics: Newton’s Laws and Motion Experiments with Virtual Simulation Tools": 1 +"11th Grade English: Decoding the Themes in Modernist Literature through Group Discussions and Essay Writing": 1 +"The Role of Mozart in the Evolution of Piano Concertos: A Detailed Analysis for 10th Grade Music": 1 +"4th Grade History: Decoding the Significance of Mayan Hieroglyphs and Their Role in Ancient Communication": 1 +"8th Grade Geometry: Deciphering the Complexities of Shapes and Angles with Protractors": 1 +"5th Grade Visual Arts: Delving into Oil Painting Techniques": 1 +"3rd Grade Geography: Investigating the Impact of River Systems on Ancient Egyptian Civilization": 1 +"High School Biology: Understanding Evolution through Darwin’s Theory and Natural Selection": 1 +"1st Grade Science: Discovering Local Bird Species: An Interactive Study on Avian Habitats and Behaviors": 1 +"9th Grade Physics: Understanding the Basics of Light Refraction using Prisms": 1 +"3rd Grade Science: Wind Vanes and Anemometers: A Thorough Investigation into Wind Patterns ": 1 +"6th Grade Mathematics: Improving Addition and Subtraction Skills through Interactive Math Games": 1 +"5th Grade Science: Exploring the Solar System through Interactive Models": 1 +"9th Grade Music: Mastering Composition Skills with GarageBand": 1 +"3rd Grade Social Studies: The Influence of the Pony Express on American Communication": 1 +"Pre-school Social Studies: Understanding Community Helpers through Storytelling": 1 +"The Significance of the Mayflower in the Settlement of America: A History Course for 5th Graders": 1 +"1st Grade Music: Understanding Pitch and Tone with Hand Bells": 1 +"3rd Grade Geography: Utilizing Google Earth to Navigate Our World": 1 +"1st Grade Art: Discovering Shapes and Patterns through Collage Making": 1 +"6th Grade Music: Fundamentals of Harmony and Tempo with Acoustic Guitars": 1 +"7th Grade Social Studies: The Development and Impact of the Internet in the Information Age": 1 +"2nd Grade Geography: Exploring Continents and Oceans with Interactive Globes": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction using Abacus": 1 +"4th Grade Science: The Magic of Photosynthesis: Understanding Plant Life with Microscopic Observations": 1 +"5th Grade English: Improving Narrative Writing Skills through Story Cubes": 1 +"Kindergarten Physical Education: Basic Coordination and Balance with Obstacle Course Activities": 1 +"6th Grade Social Studies: Understanding the Feudal System through Medieval Role-Play": 1 +"2nd Grade History: Discovering the Great Wall: China’s Fortification Story": 1 +"3rd Grade Mathematics: Multiplication Fun with Grid Method and Interactive Flashcards": 1 +"4th Grade Art: Exploring Creativity through Collage and Paper Mache Techniques": 1 +"1st Grade Music: Discovering Rhythm and Melody with Handheld Percussion Instruments": 1 +"3rd Grade Health Science: Exploring Dental Hygiene - Understanding the Importance of Brushing": 1 +"5th Grade PE: Agility and Stamina Development through Soccer and Stretching Drills": 1 +"9th Grade Mathematics: Understanding Quadratic Equations and Their Applications": 1 +"8th Grade Physical Education: Introduction to Swimming: A Step-by-step Guide to the Freestyle Stroke": 1 +"7th Grade Social Studies: The Impact of the Printing Press on the Spread of Knowledge in the Renaissance Era": 1 +"5th Grade Biology: Exploring Marine Life Through Interactive Virtual Reality Tours": 1 +"2nd Grade Environmental Studies: An Introduction to Composting and Its Impact on Soil Health": 1 +"4th Grade Mathematics: Enhancing Addition and Subtraction Skills Using Fun Math Games and the Number Line Method": 1 +"9th Grade Art: Discovering the Beauty of Watercolor Painting Techniques": 1 +"Physical Education for 5th Graders: Incorporating Smart Watches to Track Physical Activity During Sports": 1 +"4th Grade Science: Exploring Photosynthesis: Understanding Plant Growth through Interactive 3D Models": 1 +"5th Grade History: Investigating the Middle Ages through Medieval Castle Building Techniques": 1 +"8th Grade Music: Harmonizing Melodies - Fingerpicking on Guitar: Exploring the Use of Capos and Comprehending String Resonance": 1 +"The Influence of the Renaissance on Modern Art: An In-depth Analysis of Michelangelo’s Frescoes in 6th Grade Art History": 1 +"7th Grade Mathematics: Understanding Probability with Tree Diagrams and the Rule of Product using Virtual Dice": 1 +"8th Grade Geography: Analyzing Population Movement Using Interactive Migration Maps": 1 +"5th Grade Physical Education: Perfecting Basketball Skills through Principles of Projectile Motion using Augmented Reality Applications": 1 +"4th Grade Health: Learning about Digestive System and Nutrients through Gamified Anatomy Puzzles using Touch Screen Technology": 1 +"The Environmental Consequences of Plastic Waste: Polymer Incineration and Microplastics - Solution 7: Enzymatic Bioremediation": 1 +"9th Grade Social Studies: Workforce Dynamics in the Digital Age - Understanding the Role of AI in Modern Workplaces": 1 +"4th Grade Science: Exploring the Solar System through Interactive 3D Models": 1 +"1st Grade Mathematics: Learning Addition and Subtraction with Fun Board Games": 1 +"7th Grade History: Understanding the Civil War through Role-Playing Games": 1 +"5th Grade Art: Sculpting Basics - Clay Modeling and Stop-Motion Animation": 1 +"2nd Grade Writing: Enhancing Sentence Structure with Interactive Grammar Games": 1 +"9th Grade Home Economics: The Science of Healthy Cooking: Exploring Nutrient-Rich Ingredients": 1 +"3rd Grade Music: Introduction to Rhythm and Beat through Interactive Drum Lessons": 1 +"8th Grade Physical Education: Agility and Speed Training with Obstacle Courses": 1 +"6th Grade English: Dive into Poetry - Crafting Haikus and Limericks with Interactive Apps": 1 +"7th Grade Environmental Studies: Investigating Ecosystems through Virtual Field Trips": 1 +"3rd Grade Geography: Exploring Earth’s Landforms through Interactive 3D Models and Google Earth": 1 +"10th Grade Physics: Understanding the Laws of Thermodynamics using Simulations and Interactive Infographics": 1 +"2nd Grade Art: Exploring Shapes and Colors: Crafting with Origami and Watercolors": 1 +"8th Grade History: The Influence of the Printing Press during the Renaissance: A Comprehensive Study for Middle School Students": 1 +"6th Grade Physical Education: The Science of Movement - Understanding the Techniques of Gymnastics": 1 +"Kindergarten Science: Introduction to Weather Patterns: A Journey through Interactive Games and Experiments": 1 +"12th Grade Sociology: Investigating the Effects of Social Media on Public Opinion": 1 +"4th Grade Mathematics: Mastering Fractions and Decimals using Interactive Math Games": 1 +"7th Grade Music: Harmony and Rhythm - Understanding the Complexity of Orchestral Conducting": 1 +"5th Grade Language Arts: Developing storytelling skills through Digital Storytelling and Collaborative Writing Platforms": 1 +"7th Grade Literature: Epic Tales - Understanding Beowulf, The Odyssey, and the Themes of Heroism": 1 +"2nd Grade Science: A Fun-filled Journey Through the Life Cycle of Butterflies and Frogs": 1 +"2nd Grade Music: Discovering Rhythm Basics with Harmonicas and Music-Making Apps": 1 +"5th Grade Geography: Around the World in Eighty Ways - An Interactive Exploration of Global Cultures": 1 +"10th Grade Science: Introduction to Physics - Exploring Gravity, Forces, and Motion": 1 +"Unraveling Puzzles and Patterns: A 2nd Grade Mathematics Course with Tangrams, Division, and Everyday Math Techniques": 1 +"6th Grade Science: A Deep Dive into Marine Life: Exploring Coral Reefs and The Arctic Ocean": 1 +"5th Grade History: Understanding the Renaissance Era Through the Lens of Art and Science": 1 +"7th Grade Physical Education: Key Soccer Skills - Mastering Passing, Shooting, and Goalkeeping": 1 +"Cracking Code: The World War II Enigma Machine - A Tenth Grade History Course": 1 +"4th Grade Science: Unveiling the Mysteries of Space through Virtual Reality": 1 +"7th Grade Geography: Exploring the World’s Diverse Cultures with Augmented Reality": 1 +"1st Grade Mathematics: Introduction to Numbers and Shapes through Interactive Games": 1 +"6th Grade History: The Rise of Ancient Greek Civilization and Their Impact on Philosophy": 1 +"8th Grade Physical Education: Enhancing Agility and Fitness through Circuit Training": 1 +"11th Grade Biology: Investigating Cell Division and DNA Replication with Lab Experiments": 1 +"8th Grade Mathematics: Conquering Algebraic Expressions with Interactive Software": 1 +"12th Grade Politics: Exploring Democracy and Political Systems Using Virtual Reality": 1 +"9th Grade Art: Mastering Skills in Digital Photography and Photoshop": 1 +"5th Grade Drama: Captivating Storytelling through Puppetry and Shadow Play": 1 +"6th Grade Physical Education: Soccer Tactics and Ball Control with Video Analysis and Direct Feedback": 1 +"2nd Grade Art: Color Mixing and Texture Exploration: An Introduction to Abstract Painting": 1 +"Exploring Future Worlds in 5th Grade Science: An In-depth Look at Renewable Energy and Climate Change in Scientific Literature": 1 +"Interactive Experience in Fourth Grade History: Ancient Civilizations and Cultures through Virtual Reality Tours using Google Expedition": 1 +"7th Grade Mathematics: Building Complex Geometric Shapes with Tinkercad and Mathspace": 1 +"9th Grade Drama: Understanding Shakespeare’s Plays with Audacity Podcasts and GarageBand Audio Editing": 1 +"8th Grade Language Arts: Exploring Metaphors in Robert Frost’s Poetry with SMART Board Interactive Displays, PowerPoint Presentations and Padlet Discussions": 1 +"12th Grade Sociology: Gender and Society Analysis using Sociological Perspectives": 1 +"2nd Grade Science: Understanding Weather Patterns with Lego Mindstorms and Scratch Programming on Chromebooks": 1 +"4th Grade Literature: Interpreting Grimm’s Fairy Tales Using Amazon Polly Text-to-Speech Technology": 1 +"10th Grade Science: Exploring Genetics Through Punnett Squares Using Python Programming": 1 +"7th Grade Drama: Grasping Satire in Molière’s Plays through Interactive Role-Playing and Discussions": 1 +"Understanding Food Chains: 8th Grade Biology Course on Ecosystems and Energy Transfer": 1 +"4th Grade Mathematics: Unraveling Multiplication with Array Models and Digital Tools": 1 +"From Stonehenge to Lunar Cycles: The Impact of Druid Architecture on Britain’s Ancient Tribes - 6th Grade History": 1 +"8th Grade History: The Renaissance Period and the Study of Da Vinci’s Inventions": 1 +"6th Grade Social Studies: Asian History - The Influence of the Ming Dynasty": 1 +"6th Grade Art: Creating Abstract Landscapes using Impressionist Techniques and Acrylic Paints": 1 +"4th Grade Geography: Unveiling Amazon Rainforest’s Biodiversity with Satellite Imagery": 1 +"2nd Grade English: Discovering Fables with Story Sequencing and Interactive Whiteboard Activities": 1 +"1st Grade Math: Grasping Addition and Subtraction through Fun Puzzles": 1 +"7th Grade Science: Exploring Human Anatomy: A Detailed Study of the Cardiovascular System": 1 +"5th Grade Music: Understanding Melodies and Harmonies with the Violin": 1 +"3rd Grade History: The Ancient Egyptians - A Deep Dive into the Art of Hieroglyphics": 1 +"Kindergarten Science: Learning about Weather Patterns through Interactive Experiments": 1 +"6th Grade Geography: Journeying through the Amazon Rainforest with Virtual Reality": 1 +"4th Grade Social Studies: Native American Tribes: An Interactive Exploration of their Traditions and Beliefs": 1 +"2nd Grade Art: Discovering Colors and Shapes with Painting and Collage": 1 +"7th Grade Math: Mastering Fractions and Decimals through Real World Applications": 1 +"Introduction to Environmental Studies - An 8th Grade Science Course: Understanding Climate Change through Interactive Simulations": 1 +"8th Grade Mathematics: Navigating Algebraic Expressions with Interactive Software Tools": 1 +"6th Grade Art: Creating Lifelike Portraits using Procreate’s Sketching Brushes and Layering Techniques": 1 +"1st Grade Language Arts: Building Vocabulary with Interactive Storybooks on Tablets": 1 +"7th Grade Physical Education: The Fundamentals of Soccer: Passing, Kicking, and Teamwork": 1 +"2nd Grade Social Studies: Exploring Neighborhood and Local Services through Virtual Maps": 1 +"5th Grade Science: Understanding Solar System with Augmented Reality Apps": 1 +"4th Grade Music: Mastering Basic Piano Techniques using Virtual Piano Apps": 1 +"3rd Grade History: Discovering Native American Culture through Artifact Analysis": 1 +"10th Grade Science: Decoding DNA Structure and Genetic Codes using 3D Modelling Software": 1 +"6th Grade Geometry: Learning about Polygons and their Properties with 3D Printing Technology": 1 +"1st Grade Language Arts: Developing Writing Skills Through Creative Storytelling": 1 +"3rd Grade Geography: Introduction to World Maps and Global Landmarks": 1 +"5th Grade Technology: Introduction to Coding with Scratch": 1 +"7th Grade Earth Science: Exploring Geological Processes with Erosion Experiments": 1 +"2nd Grade Math: Grasping Basic Geometry with Tangram Puzzles": 1 +"6th Grade Physical Education: Fundamentals of Team Sports and Good Sportsmanship": 1 +"8th Grade Music: Understanding Rhythm and Melody through Percussion Instruments": 1 +"4th Grade Health: Learning about Nutrition and Healthy Eating Habits": 1 +"9th Grade Algebra: Solving Equations using Graphing Calculators": 1 +"2nd Grade Art: Creating Colorful Mosaics with Recycled Materials": 1 +"4th Grade History: The Renaissance Period: Da Vinci’s Inventions and Their Influence on Modern Science": 1 +"5th Grade Woodwork: The Art of Crafting Furniture with Traditional Mortise and Tenon Joints": 1 +"7th Grade Physical Education: Enhancing Soccer Skills with Real-time Motion Analysis Technology": 1 +"1st Grade Music: Discovering Melodies with the Glockenspiel: An Introduction to Music Notation": 1 +"12th Grade Mathematics: Trigonometry - The Role of Sine, Cosine, and Tangent in Solving Real-world Problems": 1 +"4th Grade Math: Understanding Decimals through Interactive Tablet Apps": 1 +"Exploring Calculus: A Comprehensive 11th Grade Mathematics Course on Differentiation and Integration": 1 +"6th Grade Music: The Evolution of Jazz: An Examination of Louis Armstrong’s Influence and the Use of Music Mixing Software": 1 +"The Industrial Revolution: Assessing the Influence of the Steam Engine in 10th Grade History": 1 +"8th Grade Geography: Sustainability: Understanding the Significance of Composting and Organic Farming.": 1 +"2nd Grade Science: Exploring Weather Patterns through Interactive Online Simulations": 1 +"3rd Grade Mathematics: Mastering Multiplication Tables with Fun Computer Games": 1 +"11th Grade Literature: Exploring Themes and Motifs in Classic Novels through Collaborative Online Discussion Groups": 1 +"6th Grade Health: Promoting Physical Fitness through Interactive Exercise Video Games": 1 +"7th Grade Art: Exploring Watercolor Techniques: Mastering Wet-on-wet and Dry Brush Techniques": 1 +"10th Grade Physics: Understanding Laws of Motion through Virtual Reality Simulations": 1 +"1st Grade Music: Exploring Melody and Harmony using Simple Musical Instruments": 1 +"8th Grade Geography: Tracing the Journey of Explorers through Interactive Map Software": 1 +"5th Grade History: Understanding the Impact of Industrial Revolution through Virtual Field Trips": 1 +"12th Grade Chemistry: Exploring Chemical Reactions and Stoichiometry using Virtual Lab Experiments": 1 +"5th Grade Science: Exploring Botany with Virtual Reality and Interactive Plant Dissections": 1 +"2nd Grade Reading: Immersion in Fairy Tales with Augmented Reality Storybooks": 1 +"6th Grade Art: Understanding Cubism through Digital Painting Applications": 1 +"4th Grade Geography: Navigating the Globe using Interactive Satellite Imagery": 1 +"3rd Grade Mathematics: Introduction to Multiplication and Division using Educational Math Apps": 1 +"7th Grade Music: Unraveling Beethoven’s Symphonies with Virtual Reality Conducting Software": 1 +"8th Grade English: Analyzing Contemporary Poetry through AI-Powered Text Analysis Tools": 1 +"1st Grade Science: Introduction to the Animal Kingdom through Interactive 3D Models": 1 +"10th Grade History: The Renaissance Period - The Impact of Invention and Discovery on Society": 1 +"2nd Grade Spanish: Engaging Language Learning through Animated Storytelling and Pimsleur Language Programs": 1 +"7th Grade Science: Evolution of Space Exploration Through Virtual Reality Simulations": 1 +"2nd Grade English: Storytelling in Native American Culture Using Adobe Spark Video": 1 +"4th Grade Music: Discovering Rhythm and Pitch with Digital Drum Pads": 1 +"9th Grade History: The American Civil War: Experience Key Battles with Interactive Maps": 1 +"1st Grade: Exploring Shapes and Colors Through Interactive Paint Apps": 1 +"7th Grade Mathematics: Understanding Fractions Through Virtual Baking Experiments": 1 +"5th Grade History: Ancient Egypt - Pyramids and Hieroglyphics: Sand Modeling and Papyrus Making": 1 +"2nd Grade Music: Introduction to Musical Instruments with Virtual Reality Orchestra Tours": 1 +"6th Grade English: Dramatizing Shakespearean Plays Using Role-Play and Podcast Creation": 1 +"3rd Grade Social Studies: Discovering the Roman Empire Through Minecraft and Virtual Globe Exploration": 1 +"5th Grade Mathematics: Mastering Multiplication and Division Using MathMagic Tool": 1 +"3rd Grade Art: Exploring Watercolors through Digital Canvas and Animation Techniques": 1 +"8th Grade Physics: Understanding the Forces of Nature with Interactive Simulations and DIY Experiments": 1 +"7th Grade Theater: The Impact of Broadway Musicals on Modern Cinema": 1 +"9th Grade Biology: Discovering Ecosystem Interactions through Virtual Field Trips Using Minecraft Education": 1 +"5th Grade History: Tracing the Journey of Explorers through Google Earth Virtual Tours": 1 +"7th Grade Literature: Enhancing Reading Comprehension with Amazon Kindle and Plot Diagramming": 1 +"8th Grade Geography: Unearthing the Secrets of the Sahara Desert through Augmented Reality": 1 +"4th Grade Science: Investigating Weather Patterns with Real-time Data Tracking and Forecasting Tools": 1 +"ReadingEggs: Implementing Gamified Learning for Personalized Phonics and Vocabulary Development in 2nd Grade English.": 1 +"4th Grade Mathematics: Understanding Geometry Through Origami and Spatial Reasoning": 1 +"10th Grade Health: Nutritional Planning, Metabolism Understanding, and Fitness Mastery via a Balanced Diet and Exercise Regime": 1 +"7th Grade American History: The Civil Rights Movement - A Detailed Study of Nonviolent Resistance": 1 +"5th Grade World Cultures: Investigating Global Traditions through Interactive Games and Virtual Museum Tours": 1 +"8th Grade Biology: Evolution and the Fascinating Journey of Species Adaptation": 1 +"6th Grade Social Studies: The Impact of Telegraph Communication During the American Civil War": 1 +"3rd Grade Science: Discovering the Solar System Through Planetary Models and Virtual Space Tours": 1 +"5th Grade Language Arts: Creating Digital Comics Using Graphic Design Apps for Visual Narration": 1 +"Exploring the Checks and Balances System Through Role-Play: A Comprehensive Look into 8th Grade Civics": 1 +"4th Grade Science: Unearthing Dinosaurs through Fossil Studies and Augmented Reality Tours": 1 +"5th Grade Geography: Volcanoes and Earthquakes: Understanding Tectonic Plates Movement": 1 +"7th Grade History: The Invention and Evolution of the Abacus in Ancient Egyptian Mathematics": 1 +"Harnessing Wind Energy in 3rd Grade Environmental Studies: An Investigation into Its Feasibility": 1 +"1st Grade Biology: An Interactive Study of Animal Habitats through Augmented Reality": 1 +"4th Grade Art: Exploring Cultural Heritage through Indigenous Pottery Making": 1 +"10th Grade Journalism: The Impact of Social Media on Modern News Reporting": 1 +"12th Grade Music: The Influence of Synthesizers in the Evolution of Pop Music": 1 +"2nd Grade Health: Learning About Balanced Diet through Interactive Food Group Sorting": 1 +"7th Grade Mathematics: Investigating Fractal Patterns with Computer Programming": 1 +"6th Grade History: Civil Rights Movement - A Study of Nonviolent Protests.": 1 +"4th Grade Literature: Adventure into Storytelling: A Basic Guide to Creative Writing": 1 +"Studying Volcanic Landforms in the Pacific Ring of Fire: A 5th Grade Geology Course via Virtual Reality": 1 +"2nd Grade Art: Exploring Textures and Patterns with Paper Mache and Origami Techniques using Recycled Materials": 1 +"7th Grade History: Unraveling the Mysteries of Mayan Civilizations Using Augmented Reality and 3D Printing Software": 1 +"3rd Grade Science: Investigating Forest Habitats Through Leaf Identification and Tree Ring Analysis": 1 +"8th Grade Science: Evaluating the Impact of Climate Change on Polar Ice Caps": 1 +"4th Grade Geography: Navigating the World’s Major Rivers and Lakes Using Satellite Imagery": 1 +"6th Grade Physics: Understanding Forces, Motion, and Energy through Fun Experiments": 1 +"10th Grade Social Studies: A Comprehensive Study of Democracy and Human Rights Using Virtual Tours": 1 +"8th Grade Art: Crafting Landscape Paintings: A Journey into Watercolor Techniques Using Layering Methods": 1 +"5th Grade Physical Education: Introduction to Soccer Fundamentals": 1 +"8th Grade Art: Discovering Cubism Through Virtual Museum Tours": 1 +"4th Grade English: Journey into Narrative Writing using Google Docs": 1 +"5th Grade History: The Role of Roman Aqueducts in Ancient Society & Exploring the Arch Construction Techniques Using Latin Inscriptions": 1 +"1st Grade Language Arts: Boosting Listening Comprehension with Animated Audiobooks": 1 +"8th Grade Theater: The Influence of Greek Tragedies on Contemporary Stage Plays": 1 +"10th Grade Music: Unraveling the Relationship between Harpsichord and Baroque Harmony through Guido of Arezzo’s Solmization": 1 +"3rd Grade Health: Grasping Hygiene Basics with Fun Interactive Activities": 1 +"5th Grade Social Studies: Navigating the Geography of Europe Through Virtual Field Trips": 1 +"7th Grade Social Studies: The Impact of Social Media on Global Communication": 1 +"2nd Grade Art: Exploring Geometry Shapes through Origami and Paper Mache": 1 +"4th Grade Geography: Understanding Plate Tectonics via Interactive Earthquake Simulations": 1 +"8th Grade Literature: Analyzing Metaphors and Symbolism in Classic Poetry using Word Clouds": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with Virtual Math Manipulatives": 1 +"4th Grade Computer Science: Learning to Code with Scratch and Raspberry Pi": 1 +"4th Grade Health: Basics of Nutrition and Cooking with Simple Healthy Recipes": 1 +"4th Grade Physics: Exploring Laws of Motion through Rocket Launch Experiments": 1 +"3rd Grade Music: Constructing Simple Instruments with Everyday Household Objects": 1 +"3rd Grade Social Studies: Understanding Community Roles through Role-playing Games": 1 +"6th Grade English: Refining Argumentative Writing Skills by Debating Current Events": 1 +"2nd Grade Science: Exploring Plant Life Cycles through Gardening Projects": 1 +"9th Grade Physical Education: Soccer Strategies and Stamina Building with Interval Training": 1 +"7th Grade History: The Influence of the French Revolution on Modern Democracy": 1 +"5th Grade Physical Education: Mastering Chess Strategies and Understanding the Rules of the Game": 1 +"4th Grade Social Studies: Understanding U.S. Geography through Virtual Field Trips": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction with Fun Board Games": 1 +"7th Grade English: Prose and Personification - An In-depth Study of Symbolism in Literature": 1 +"4th Grade Mathematics: Grasping Geometry Concepts with Origami Craft": 1 +"2nd Grade Mathematics: Adding and Subtracting Fun with Math Blaster Games": 1 +"6th Grade English: Developing Character Motivation in Creative Writing": 1 +"5th Grade History: Unraveling the Mysteries of Ancient Egypt through VR Technology": 1 +"4th Grade Environmental Science: Understanding Ecosystems with Interactive Digital Models": 1 +"11th Grade Computer Science: An Introduction to Python Programming using Raspberry Pi": 1 +"7th Grade Music: Discovering the Art of Composing Melodies with Digital Audio Workstations": 1 +"5th Grade Geography: Exploring the World’s Deserts with Google Earth VR": 1 +"8th Grade Algebra: Mastering Quadratic Equations through Gamified Learning Apps": 1 +"1st Grade Reading: Enhancing Phonics Skills with Interactive Whiteboard Activities": 1 +"2nd Grade Physical Education: Fundamentals of Basketball with Interactive Motion Capture Technology": 1 +"9th Grade Art: Creating Animated Characters with Digital Drawing Tablets": 1 +"6th Grade Earth Science: Investigating Plate Tectonics through Augmented Reality Simulations": 1 +"6th Grade Literature: Exploring Character Development through Anime and Manga": 1 +"An In-depth Study of Garmin’s Training Programs in 6th Grade Physical Education": 1 +"4th Grade English: Interactive Storytelling with Adobe Spark": 1 +"5th Grade Civics: Understanding the Legislature through Interactive Board Games": 1 +"4th Grade History: Decoding the Ancient Egyptian Civilization: Hieroglyphics, Pyramids, and the Nile": 1 +"Introduction to Trigonometry: An In-depth 10th Grade Mathematics Course on Angles and Ratios": 1 +"8th Grade Music: Understanding Melody with Virtual Keyboards": 1 +"Fourth Grade Social Studies: Understanding Economy through a Visit to Local Markets using Virtual Reality": 1 +"1st Grade Language Arts: Developing Narration Skills through Puppetry": 1 +"Fourth Grade Music: A Beginner’s Guide to the Piano": 1 +"6th Grade Biology: Unveiling the Human Body Through Virtual Reality": 1 +"10th Grade Computer Science: Enhancing Coding Abilities Through Python Fundamentals": 1 +"7th Grade Art: Exploring Cubism and Picasso: The Revolutionary Use of Geometric Shapes": 1 +"7th Grade Art: Understanding Van Gogh’s Starry Night through Digital Painting Tools": 1 +"2nd Grade Sustainability Studies: Discovering Recycling and Conservation through Interactive Activities": 1 +"3rd Grade Physics: The Magic of Light Refraction Through Prism Experiments": 1 +"2nd Grade Physical Education: Developing Basketball Techniques Through Group Games": 1 +"Technological Advancements and Modern Politics: The Influence of Social Media on 10th Grade Political Studies": 1 +"Decoding Time Paradoxes in Fantasy Literature: An 8th Grade English Course on Parallel Universes": 1 +"World War II - Deciphering Codes and Ciphers: An 11th Grade History Course on Cryptography": 1 +"8th Grade Physics: Understanding the Concept of Gravity Through Practical Experiments and Simulations": 1 +"5th Grade Geography: Exploring the Ecosystems of South America with Google Earth VR and Interactive Online Quizzes": 1 +"9th Grade Trigonometry: Solving Triangular Problems using the Pythagorean Theorem and Geogebra": 1 +"7th Grade Mathematics: Exploring the World of Geometry with Geometric Shapes, Protractors, and theorems": 1 +"5th Grade History: The Revolutionary War Explored through Augmented Reality": 1 +"7th Grade History: The Significance of Pyramids in Ancient Egyptian Civilization": 1 +"Unraveling the Mystery of Hieroglyphics: A 7th Grade History Course on Ancient Egyptian Culture": 1 +"The Invisible Ink in the Civil War: Decoding the Ciphered Messages in 9th Grade History": 1 +"2nd Grade Music: Exploring Rhythm and Tempo using Percussion Instruments and Interactive Music Games": 1 +"Kindergarten Mathematics: Understanding the Basics of Counting through Interactive Digital Games and Physical Counters": 1 +"8th Grade History: Civil War - Understanding Its Impact through Historical Letters": 1 +"4th Grade Mathematics: Mastering Fractions and Decimal Points using Virtual Manipulatives": 1 +"9th Grade Literature: Modernism - Exploring Imagery in Poetry ": 1 +"5th Grade Science: The Wonders of Photosynthesis - An Interactive Study with Microscopic Imaging ": 1 +"6th Grade Art: Exploring 3D Design and Sculpture using Clay ": 1 +"1st Grade Language Arts: Fun with Phonics - An Interactive Journey through Sounds and Letters": 1 +"11th Grade Physics: Understanding the Principles of Thermodynamics with Practical Experiments": 1 +"7th Grade Mathematics: Geometry Unlocked - Exploring Shapes and Angles with Geoboards": 1 +"5th Grade Music: An Introduction to Rhythms and Beats using GarageBand ": 1 +"10th Grade Computer Science: Dive into Coding - Learning Python through Interactive Projects": 1 +"5th Grade Science: Understanding Photosynthesis: An Insight into Plant Life for Young Biologists": 1 +"3rd Grade Mathematics: Mastering Multiplication with Abacus and Mental Calculation Techniques": 1 +"7th Grade Literature: Tracing the Progression of Gothic Literature: A Focus on Edgar Allan Poe and Bram Stoker": 1 +"1st Grade Art: Discovering Colors and Shapes: An Introduction to Painting with Watercolors": 1 +"5th Grade History: Unfolding the Mysteries of Ancient Egypt: Exploring Pyramids and Hieroglyphics": 1 +"10th Grade Physics: The Physics Behind Roller Coasters: An Analysis of Gravity and Kinetic Energy": 1 +"7th Grade Music: Exploring Jazz: An Introduction to Improvisation using GarageBand": 1 +"1st Grade Language Arts: Storytelling through Puppet Shows: A Practical Guide to Enhancing Narrative Skills": 1 +"5th Grade Geography: Understanding Weather Patterns and Climate Zones: An Interactive Study with Google Earth": 1 +"6th Grade History: The Impact of the Printing Press on the Renaissance Era: A Deep Dive into Information Revolution.": 1 +"Exploration of the Inca Empire: A Study of Ancient Agricultural Techniques in 2nd Grade History": 1 +"4th Grade Science: Understanding Weather Patterns and Predictions with AR Technology": 1 +"3rd Grade Art: Discovering Digital Painting Techniques with Interactive Software": 1 +"Decoding Genetics: DNA and Chromosome Study in 11th Grade Biology": 1 +"5th Grade Physical Education: Learning Basic Soccer Skills through Interactive Games": 1 +"7th Grade Music: Exploring Mozart’s Compositions with Digital Music Software - An Insight into Classical Symphony": 1 +"4th Grade Environmental Studies: Rainforests and Deforestation: Assessing the Impact with Virtual Reality Technology": 1 +"7th Grade Music: Interpretation of Bach’s Fugues and the Harpsichord using Music Composition Software": 1 +"Kindergarten Mathematics: Introduction to Counting and Basic Arithmetic with Interactive Board Games": 1 +"5th Grade History: Journey through Ancient Egypt using Interactive VR Tours of Pyramids": 1 +"8th Grade Physics: Discovering Laws of Motion through Robotics and 3D Printing": 1 +"11th Grade History: Unraveling the Great Depression Era through Vintage Photography": 1 +"5th Grade Mathematics: Solving Multiplication and Division Problems using Interactive Games and Apps": 1 +"9th Grade Biology: Introduction to Genetics through DNA Extraction and Analysis": 1 +"7th Grade Social Studies: Understanding the Renaissance Period through Art and Literature": 1 +"10th Grade Chemistry: Exploring Chemical Reactions with Interactive Lab Simulations": 1 +"6th Grade English: Journey into Mythology through Interactive Storytelling and Drama": 1 +"4th Grade History: Understanding Native American Tribes through Artifact Study": 1 +"12th Grade Physics: Unlocking Quantum Mechanics through Computer Simulations": 1 +"8th Grade Geography: Exploring World Landforms using Virtual Reality Technology": 1 +"2nd Grade Science: Exploring Plant Life Cycles using Augmented Reality": 1 +"1st Grade Art: Understanding Colors and Shapes through Collage Making": 1 +"6th Grade Mathematics: Understanding Ratios using Interactive Online Games": 1 +"8th Grade Music: Basics of Harmony and Chord Progressions": 1 +"6th Grade World History: The Role of Code Breaking in World War II": 1 +"4th Grade English: Identifying Similes in Classic Children’s Literature": 1 +"8th Grade Computer Science: Introduction to Python Programming for Analyzing Climate Data": 1 +"2nd Grade Physical Education: Enhancing Coordination and Agility through Simple Gymnastics": 1 +"The Chemistry of Cooking: Incorporating Taste Tests in 10th Grade Home Economics": 1 +"1st Grade Mathematics: Grasping the Concept of Measurement with Fun-sized Rulers": 1 +"7th Grade Art: Understanding Texture through Clay Sculpture and Pottery": 1 +"8th Grade French: Developing Vocabulary Mastery with Rosetta Stone and Memrise Apps": 1 +"3rd Grade Science: Discovering the Life Cycle of Butterflies using Virtual Reality Headsets": 1 +"Nutrition and Wellness: Exploring the Importance of Hydration in 10th Grade Health using Water Tracker Apps": 1 +"5th Grade Mathematics: Geometry Understanding with Virtual Reality Shapes and 3D Models using Microsoft Teams": 1 +"2nd Grade Social Studies: The Role of Posters in Promoting Health Awareness in the 21st Century: A Study of 10 Successful Campaigns": 1 +"11th Grade Literature: Exploring Human Emotions through Drama and Theatrical Narratives in Historical Context": 1 +"Kindergarten Environmental Studies: Understanding the Water Cycle with Rain Gauges, Snowfall Measurements, and Evaporation Experiments": 1 +"Music Studies for 3rd Grade: Mastering Rhythm and Tempo Using Percussion Instruments and Metronome Apps": 1 +"4th Grade Biology: Observing Local Bird Species using Telescopes, Food Web Diagrams, and Feather Identification Kits.": 1 +"3rd Grade Science: Discovering the Solar System through Interactive 3D Models and Telescopic Observations": 1 +"1st Grade Music: Introduction to Rhythm and Beat using Hand Drums and GarageBand": 1 +"The Art of Harmony: Exploring Chords, Vibrato, and the Use of Metronomes in Choir Practice for 10th Grade Music Students": 1 +"6th Grade Music: Understanding Mozart’s Compositions through Piano Performance and Digital Sound Mixing with Logic Pro": 1 +"5th Grade Health: Learning about the Human Body and Physical Fitness through Fun Physical Activities and Online Quizzes": 1 +"Kindergarten Earth Sciences: Exploring Beach Ecosystems with Magnifying Glasses": 1 +"The Impact of the Telegraph in Civil War Communications: An In-depth Analysis for 7th Graders": 1 +"3rd Grade Geography: The Formation of Continents: Understanding Plate Tectonics and Earthquakes": 1 +"1st Grade Art: Exploring Textures with Clay and Fabric": 1 +"3rd Grade Art: Understanding Shapes and Patterns - The Role of Symmetry and Asymmetry in Design.": 1 +"3rd Grade Science: Discovering the Life Cycle of Butterflies using Augmented Reality Tools": 1 +"7th Grade History: The Role of the Printing Press during the Renaissance Period": 1 +"2nd Grade Music: Understanding Rhythm and Tempo with Drums and Metronomes": 1 +"5th Grade Geography: Exploring the Amazon Rainforest with Oculus VR and Google Maps": 1 +"3rd Grade Social Studies: The Inuit People - An Interactive Journey into the Arctic with Virtual Reality": 1 +"7th Grade Computer Science: The History of Operating Systems and the Emergence of Cloud Computing": 1 +"9th Grade English: Mastering Argumentative Writing with Coggle Mind Mapping Software": 1 +"A Detailed Exploration of Metaphors in Emily Dickinson’s ’Because I could not stop for Death’ Using Smart Board Technology and Edmodo in 8th Grade Literature: 15 Unique Approaches": 1 +"7th Grade: Earth Science - Exploring Plate Tectonics through Virtual Earthquake Simulations": 1 +"6th Grade History: Ancient Roman Empire: A Study of Aqueduct Engineering, Republic Governance, and Stoic Philosophy": 1 +"1st Grade Science: Exploring the Life Cycle of Butterflies through Observation and Journaling": 1 +"4th Grade Mathematics: Understanding Geometry through Origami and Paper Folding Techniques": 1 +"7th Grade History: The Impact of the Industrial Revolution on Modern Society: A Study in Technological Progress": 1 +"6th Grade Environmental Studies: Introduction to Conservation and Recycling: Building a Sustainable Future": 1 +"3rd Grade Literature: Journey through Mythical Worlds in Classic Children’s Literature": 1 +"5th Grade Physics: Investigating the Laws of Motion using Interactive Experiments": 1 +"Kindergarten Music: Exploring Rhythm and Melody with Hands-On Percussion Instruments": 1 +"8th Grade Geography: The Influence of Mountain Ranges on Climate and Ecosystems": 1 +"2nd Grade Art: Discovering the World of Abstract Art through Collage and Mixed Media": 1 +"9th Grade English: Analyzing Satire and Humor in Mark Twain’s Novels through Group Readings and Discussions": 1 +"6th Grade Science: Exploring Photosynthesis through Augmented Reality and Interactive Workbooks": 1 +"3rd Grade Mathematics: Mastering Multiplication with Interactive Games and Tablet Applications": 1 +"7th Grade Geography: Navigating the Amazon Rainforest using Virtual Reality and 3D Mapping": 1 +"5th Grade Music: Discovering Rhythm and Melody through Digital Composition and iPad Apps": 1 +"Solution 5: Anaerobic Digestion - A Sustainable Approach to Manage Food Waste’s Environmental Impact": 1 +"The Universe of Numbers: An Exploration of 6th Grade Geometry Using Augmented Reality": 1 +"3rd Grade Physical Education: Balance, Coordination, and the Significance of Healthy Eating": 1 +"5th Grade Language Arts: Crafting Narratives around Climate Change - The Promise of Vertical Farming": 1 +"6th Grade History: The Great Pharaohs - Unraveling the Secrets of Pyramids using 3D Modelling and Virtual Tours": 1 +"1st Grade Physical Education: Understanding Basic Gymnastics: Emphasizing Flexibility and Body Control": 1 +"3rd Grade Science: Exploring the Life Cycle of Butterflies Using Origami and Interactive Apps": 1 +"7th Grade Geometry: Understanding the Golden Ratio in Modern Design and Artwork": 1 +"11th Grade Computer Science: Sentiment Analysis of Classic Novels Using Java and Natural Language Processing": 1 +"5th Grade English: Enhancing Story Writing Skills on Chromebooks Using Hemingway Editor and Google Docs": 1 +"1st Grade Art: Discovering Digital Drawing with Animated Characters Using Adobe Fresco and Animation Basics": 1 +"Fifth Grade Geography: The Impact of the Compass on Ancient Maritime Navigation": 1 +"10th Grade History: The American Revolution - The Boston Tea Party and its Role in Sparking Rebellion": 1 +"6th Grade Art: Mastering Brush Strokes in Oil Painting Techniques": 1 +"1st Grade Language Arts: Exploring GarageBand for Creating Musical Narratives in Storytelling": 1 +"10th Grade Geography: Understanding Volcanic Formations Through Virtual Reality Using Google Earth VR and Oculus Rift": 1 +"5th Grade Science: Exploring Solar System through AR Technology and Celestron Telescope": 1 +"1st Grade Music: An Introductory Course to Nursery Rhymes and their Creation using a Xylophone and Soundtrap Music Making App": 1 +"6th Grade History: Unveiling Ancient Egyptian Civilization with VR Pharaoh’s Journey and Kahoot Quiz Games": 1 +"7th Grade Art: Exploring Digital Sketching and Watercolor Painting using Procreate iPad App": 1 +"4th Grade Environmental Studies: Discovering the Importance of Biodiversity using Seek by iNaturalist App ": 1 +"Kindergarten Mathematics: Fun with Numbers and Shapes through Montessori-based Learning Methods": 1 +"3rd Grade Science: Investigating Weather Patterns and Cloud Formations using Live Weather Apps": 1 +"1st Grade Music: Exploring Sound Patterns with Harmonium and Digital Sound Mixer": 1 +"5th Grade History: Unfolding the Mysteries of Greek Mythology: The Odyssey and Its Impact on Literature": 1 +"1st Grade Art: Discovering Textures and Patterns through Finger Painting and Collage Creation.": 1 +"8th Grade Art: Discovering Abstract Expressionism with Acrylics and Digital Paint Software": 1 +"4th Grade Music: Dive into Classical Music and the Piano with Melodic Scales": 1 +"9th Grade Social Studies: Unveiling the Impact of Social Media on Global Communication - Rise of Digital Networks": 1 +"4th Grade Mathematics: Division Mastery with Long Division Games and Interactive Quizzes": 1 +"12th Grade Language Arts: Journeying through Victorian Literature with Multimedia Resources": 1 +"8th Grade History: Unraveling the Influence of the Industrial Revolution on European Growth": 1 +"6th Grade Language Arts: Unscrambling Metaphors in Short Stories with Audio-Visual Tools": 1 +"3rd Grade Geography: Exploring the Continents using Virtual Tours and Physical Globes": 1 +"2nd Grade Mathematics: Delving into Place Value and Number Sense with Interactive Cubes and Coding Games": 1 +"6th Grade Science: The Fundamentals of Photosynthesis in Plants using Microscopic Images": 1 +"6th Grade Marine Biology: Dive into Coral Reefs with Virtual Snorkeling": 1 +"3rd Grade Fine Arts: Discovering Picasso’s Paintings through Augmented Reality ": 1 +"9th Grade Computer Science: Understanding Algorithms through Interactive Puzzles ": 1 +"1st Grade: Experience Life Cycle of Plants with Time-Lapse Videos in Science": 1 +"5th Grade English Literature: Exploring Symbolism in Harry Potter using E-books": 1 +"7th Grade Physics: Understanding Electromagnetism with DIY Experiments": 1 +"Kindergarten Mathematics: Learning Shapes and Patterns with Interactive Blocks": 1 +"2nd Grade Geography: Exploring World Landforms with Interactive Globe and Map ": 1 +"8th Grade Music: Composing Melodies - Integrating Digital Audio Workstations with Piano": 1 +"4th Grade Social Studies: Deciphering Hieroglyphics in Ancient Egyptian Civilization using Tablets": 1 +"5th Grade Mathematics: Number Patterns and Sequations Using Number Tiles": 1 +"High School Art: Exploring Surrealism Through Digital Art Tools": 1 +"9th Grade Science: Basics of Coding Using Python in Data Visualization": 1 +"6th Grade Geography: Exploring Rainforest Ecosystems with Virtual Reality, LIDAR Scanning, and Aerial Photography ": 1 +"2nd Grade Physical Education: Understanding Movement Through Dance and Rhythmic Gymnastics": 1 +"2nd Grade History: Learning About Ancient Civilizations Through Interactive Maps": 1 +"8th Grade Music: Understanding the Evolution of Jazz with AI Music Generation and Digital Instruments": 1 +"3rd Grade Mathematics: Understanding Division with Array Models and Digital Tools": 1 +"9th Grade Economics: The Industrial Revolution: The Impact of Mechanization on Production and Labor": 1 +"8th Grade English Literature: Comprehending Novels Through Character Analysis": 1 +"8th Grade Health Science: The Fundamentals of Human Anatomy and Physiology with Interactive 3D Visualization Tools": 1 +"7th Grade History: Tracing Ancient Civilizations: The Pyramids, Sphinx, and Hieroglyphs in Ancient Egypt": 1 +"3rd Grade Science: The Exciting World of Dinosaurs with Augmented Reality App and Fossil Digging Simulations": 1 +"11th Grade Social Studies: Understanding the Industrial Revolution: The Steam Engine, Mass Production, and the Birth of Capitalism": 1 +"6th Grade Mathematics: Multiplication Mastery through Visualization and Kinesthetic Learning Techniques": 1 +"11th Grade US History: Prohibition Era: The Roaring Twenties, Speakeasies and the Rise of Organized Crime": 1 +"4th Grade Science: An Interactive Exploration of the Life Cycle of Butterflies with Virtual Reality": 1 +"1st Grade Language Arts: Phonics Fun with Interactive Storytelling on Kids’ E-Reading Platforms": 1 +"7th Grade Social Studies: The Advent of the Internet: The World Wide Web, Email, and the Digital Revolution": 1 +"6th Grade Mathematics: Mastering Geometry with Augmented Reality Puzzles and Interactive 3D Models": 1 +"9th Grade Physics: Understanding Quantum Mechanics through the Quantum Computing Simulator": 1 +"5th Grade Arts: Exploring Impressionism with Adobe Photoshop and Digital Painting Tools": 1 +"7th Grade Mathematics: Geometry and Symmetry Explored through Minecraft": 1 +"3rd Grade Music: Introduction to Rhythm using Virtual Drum Sets and GarageBand": 1 +"10th Grade Literature: Analyzing Shakespeare’s Sonnets with Interactive Ebooks and Annotation Apps": 1 +"6th Grade History: Comprehensive Study of Ancient Egypt using Minecraft: Education Edition and VR Tours": 1 +"7th Grade Science: Exploring the Solar System with Stellarium VR and Augmented Reality": 1 +"4th Grade English: Enhancing Vocabulary through Crossword Puzzles and Word Games Apps": 1 +"8th Grade Physical Education: Soccer Tactics: Enhancing Skills through FIFA Video Game Analysis": 1 +"2nd Grade Math: Learning Basic Addition and Subtraction through Math Playground Games": 1 +"7th Grade Mathematics: Exploring Geometry through Augmented Reality Applications": 1 +"4th Grade Music: Understanding Melody and Harmony through GarageBand and MIDI Controllers": 1 +"Analyzing Metaphors in Emily Dickinson’s Because I Could Not Stop for Death using Interactive eBooks in 8th Grade English Literature": 1 +"10th Grade PE: Utilizing Motion Capture Technology for Form Improvement in Gymnastics": 1 +"5th Grade Science: Exploring Tectonic Movements with Virtual Reality Simulations": 1 +"3rd Grade Art: An Introduction to 3D Modeling using Tinkercad": 1 +"10th Grade English: The Influence of Social Media on Modern Poetry": 1 +"11th Grade Music: Jazz Improvisation and the Role of Music Production Software": 1 +"7th Grade History: The Middle Ages and the Development of Printing Technology": 1 +"3rd Grade Art: Learning Portrait Drawing with Digital Sketching on Tablets using Adobe Fresco": 1 +"Unveiling Rome’s Ancient Societies in 7th Grade History: The Roman Republic, The Aqueducts, and the Progress of Legal Systems": 1 +"Exploring Ancient Cultures and Their Artistic Wonders: A 7th Grade History Course": 1 +"Advanced 5th Grade Art: Utilizing Photoshop and Complementary Colors in Grasping Color Harmony": 1 +"6th Grade Geography: The African Continent - Mapping the Terrain: A Study of Topographical Maps ": 1 +"7th Grade Music: Composing and Arranging Music with GarageBand Software and Sound Mixing Techniques": 1 +"5th Grade Music: Exploring Classical Music: Beethoven and the Influence of Symphonies": 1 +"5th Grade English: Boosting Language Skills through Interactive Online Scrabble using Pogo Games": 1 +"11th Grade Algebra: Understanding Equations and Variables through Practical Application using Mathway Software": 1 +"Fourth Grade Music: Uncovering the Piano - Training with Simply Piano: Songs & Lessons ": 1 +"Second Grade Science: Wind Energy and Its Role in Our Sustainable Future": 1 +"5th Grade Geography: Exploring the Amazon Rainforest through Virtual Reality and Interactive Animal Spotting": 1 +"9th Grade Math: Understanding Trigonometry - Sine, Cosine, and Tangent with Graphing Calculators": 1 +"Advanced Chemistry: Investigating Chemical Reactions through Molecular Modelling and Lab Experiments": 1 +"1st Grade Language Arts: Mastering Alphabet Sounds and Phonics with Fun Reading Games": 1 +"7th Grade Health: The Importance of Hydration and Understanding the Human Water Cycle": 1 +"2nd Grade Science: Introduction to Plant Life Cycles through Hands-on Gardening and Seed Dissection": 1 +"8th Grade History: Examining the Impact of the Printing Press during the Renaissance Period": 1 +"Kindergarten Music: Learning Rhythm and Beats with Interactive Percussion Instruments ": 1 +"Advanced Physics: Unraveling the Mysteries of Quantum Mechanics through Particle Physics Simulations": 1 +"4th Grade Art: Exploring Watercolor Techniques - Creating Landscapes and Portraits with Live Demonstrations.": 1 +"4th Grade Geography: Understanding Weather Patterns Using Interactive Globe Models": 1 +"2nd Grade Mathematics: Introduction to Addition and Subtraction Through Board Games and Puzzles": 1 +"8th Grade Biology: Investigating Plant Photosynthesis with Microscopic Technologies": 1 +"1st Grade Music: Discovering Sound and Rhythm through Handmade Instruments": 1 +"6th Grade Physics & Lab Safety: Magnets, Electricity & The Concept of Electromagnetism": 1 +"Sustainable Living through Wind Energy: Evaluating the Efficacy of Wind Turbines in Middle School Science": 1 +"8th Grade English Literature: Exploring Metaphors in John Keats’ Odes through Audio Books": 1 +"2nd Grade English: Fairy Tales and Mythology Using Puppetry and Shadow Play": 1 +"4th Grade Mathematics: Understanding Geometry through 3D Printing and Augmented Reality Tools": 1 +"10th Grade Computer Science: Data Sorting and Algorithms using Java and Artificial Intelligence Techniques": 1 +"10th Grade Biology: Exploring Genetics through DNA Sequencing and Bioinformatics Software": 1 +"4th Grade English Language: Enhancing Vocabulary through Online Games & Gamified Learning Apps": 1 +"12th Grade Physics: Understanding Quantum Mechanics with Virtual Reality Technology": 1 +"3rd Grade Elementary Art: Discovering Shapes and Patterns using Origami and Geometry": 1 +"Practical Environmental Studies in 5th Grade: Understanding Ecosystems with Virtual Field Trips": 1 +"7th Grade Mathematics: Developing Problem-Solving Skills through Coding and Algorithm Design": 1 +"2nd Grade Geography: Discovering World Cultures through Virtual Tours and Interactive Maps": 1 +"9th Grade Civics: American Civil Rights Movement - Activism and Social Media: Twitter and the Evolution of Modern Protests": 1 +"6th Grade Health Education: Understanding Nutrition and Fitness through Apps and Wearable Tech": 1 +"1st Grade Dance: Exploring Movement and Coordination with Music and Rhythm Games": 1 +"5th Grade Science: Exploring Ecosystems through Virtual Reality using Google Expeditions": 1 +"4th Grade Math: Introducing Geometry Concepts through Lego Building Blocks": 1 +"7th Grade English: Adventure Storytelling through Role-Play in Dungeons & Dragons": 1 +"5th Grade History: Discovering the Age of Exploration through Interactive Mapping": 1 +"3rd Grade Technology: Understanding the Basics of Coding with Scratch Jr.": 1 +"Teaching 1st Grade Mathematics: Understanding Number Patterns with Interactive Digital Games": 1 +"8th Grade Physical Education: Promoting Healthy Lifestyle through Sports Nutrition and Physical Activities": 1 +"6th Grade Art: Exploring 3D Modeling and Sculpting using Tinkercad": 1 +"Investigating the Science of Sound with Online Instruments for 2nd Graders": 1 +"7th Grade Social Studies: Ancient Egypt - Hieroglyphics and the Power of the Written Word": 1 +"5th Grade Geometry: Understanding Shapes through Origami and 3D Modeling Software": 1 +"7th Grade Biology: Exploring Human Anatomy using Virtual Reality": 1 +"10th Grade World History: Analyzing the Impact of Industrial Revolution Using Data Visualization Tools": 1 +"4th Grade Physical Education: Learning Soccer Techniques with Motion Sensing Technology": 1 +"8th Grade Chemistry: Studying Chemical Reactions using Interactive Simulations and Models": 1 +"5th Grade Literature: Exploring Fairy Tales through Digital Storytelling and Animation": 1 +"12th Grade Calculus: Understanding Derivatives using Graphing Calculators": 1 +"6th Grade Geography: Understanding Climate Change through Interactive Globes and Weather Apps": 1 +"1st Grade English: Enhancing Reading Skills with Augmented Reality Picture Books": 1 +"4th Grade Science: Exploring the Solar System through VR Technology.": 1 +"2nd Grade Geography: Understanding Weather Patterns through Cloud Observation and Rain Gauges": 1 +"8th Grade Music: Enhancing Musicality and Rhythm through Virtual Piano Apps": 1 +"2nd Grade Sustainability Studies: Exploring Composting and its Impact on Plant Growth": 1 +"4th Grade Literature: Utilizing Digital Storytelling Tools for Fairy Tale Adaptations": 1 +"Appreciating Sculpture: Pre-School Art with Playdough and 3D Modelling Techniques": 1 +"6th Grade Social Studies: Medieval European Society - Feudalism, Chivalry, and the Emergence of Guilds": 1 +"2nd Grade Basic Health: Learning Hygiene Practices through Interactive Games": 1 +"4th Grade Algebra: Understanding Division Principles with Dynamic Number Lines": 1 +"10th Grade Physical Education: Developing Sportsmanship through Soccer and Group Activities": 1 +"2nd Grade Music: Discovering Melody through Interactive Xylophone Playing": 1 +"8th Grade Physical Education: Physiology and Fitness: A Practical Approach Using Heart Rate Monitors": 1 +"4th Grade Music: Discovering Folk Music through GarageBand": 1 +"3rd Grade Language Arts: Enhancing Vocabulary with Interactive Word Walls in Quizzlet": 1 +"6th Grade Mathematics: Exploring Algebraic Concepts Using Lego and Mathematical Software": 1 +"10th Grade History: Deciphering the French Revolution through Artifacts": 1 +"4th Grade Mathematics: Decimal Understanding Using Decimal Bars & Number Line Strategy": 1 +"3rd Grade Music: Understanding Rhythms using Beat Making Software": 1 +"6th Grade Science: Exploring Rainforest Biodiversity with Drone Technology and Virtual Reality": 1 +"2nd Grade Art: Exploring Textures and Patterns with Collage Art using Recycled Materials": 1 +"8th Grade Mathematics: Understanding Trigonometry using Khan Academy Resources": 1 +"5th Grade English Literature: Enhancing Reading Comprehension with eBooks and Audiobooks": 1 +"Algebra for 9th Grade: Exploring Equations and Inequalities using Wolfram Alpha": 1 +"6th Grade Geography: Climate Change and its Impact on Earth using Google Earth": 1 +"3rd Grade Science: Introduction to Photosynthesis through Interactive Lab Experiments": 1 +"9th Grade Art: Introduction to Digital Painting with Adobe Photoshop and Wacom Tablets": 1 +"3rd Grade Language Arts: Enhancing Vocabulary and Spelling using Quizlet": 1 +"7th Grade Chemistry: Understanding Chemical Reactions through Augmented Reality Experiments": 1 +"5th Grade History: Discovering Ancient Egypt Through Oculus Rift VR Tours and Hieroglyphics Activities": 1 +"3rd Grade Music: Exploring Mozart’s Sonatas Through Violin Practice Using GarageBand": 1 +"1st Grade Mathematics: Understanding Addition and Subtraction through Interactive Whiteboard Activities": 1 +"5th Grade Mathematics: Exploring Geometry with Virtual Reality Tools": 1 +"2nd Grade Art: Discovering Patterns and Textures with Finger Painting and Chalk Pastel Techniques": 1 +"10th Grade English: Analyzing Hemingway’s Novels using Google’s Cloud Natural Language API": 1 +"6th Grade Physical Education: Volleyball and Wearable Fitness Tracking Devices": 1 +"8th Grade Science: Investigating the Ecology of Wetlands using Google Earth Engine": 1 +"3rd Grade Music: Exploring Pitch and Harmony with Recorders and Interactive Music Apps": 1 +"7th Grade Social Studies: Ancient Civilizations - Utilizing Google Earth for Geographic Exploration": 1 +"9th Grade Mathematics: Unraveling Algebraic Expressions with Online Graphing Calculators": 1 +"3rd Grade PE: Jump Rope and Heart Rate Monitoring using Fitbit Kids": 1 +"5th Grade Science: Understanding Weather Patterns and Climate Change with Interactive Weather Apps": 1 +"5th Grade Science: Discovering the Solar System with Virtual Reality and Interactive Models": 1 +"4th Grade English: Grasping Grammar through Storybuilding and Digital Games": 1 +"1st Grade Mathematics: Understanding Addition and Subtraction with Number Blocks and Puzzles": 1 +"7th Grade History: Exploring Medieval Europe - The Importance of Castles": 1 +"9th Grade Language Arts: Delving into Imagery and Symbolism in Modern Novels": 1 +"Kindergarten Mathematics: Learning Counting through Songs and Colorful Beads": 1 +"5th Grade Art: Sculpting Basics using Clay and Augmented Reality Technology": 1 +"2nd Grade Science: Understanding Life Cycle of Butterflies through Observational Studies": 1 +"8th Grade Mathematics: Quadratic Equations Solved with Coding and Interactive Software": 1 +"6th Grade English: Comprehending Mythology through Digital Storytelling and Role Play": 1 +"4th Grade Social Studies: Understanding World Cultures using Virtual Reality Tours": 1 +"1st Grade Art: Exploring Shapes and Colors with Interactive Digital Drawing Tools": 1 +"5th Grade English: Analyzing Folklore and Mythology using Animated Storytelling": 1 +"Kindergarten Science: Discovering Animal Sounds with Augmented Reality Flashcards": 1 +"6th Grade Mathematics: Exploring Geometry Through 3D Modeling and Printing": 1 +"3rd Grade Health and Wellness: Comprehensive Study of Food Groups using Interactive Nutrition Apps": 1 +"2nd Grade Music: Introduction to Rhythm and Tempo with Interactive Beat Games": 1 +"7th Grade Environmental Science: Exploring Renewable Energy with Hands-On Solar Panel Kits": 1 +"1st Grade Language Arts: Developing Reading Skills with Phonics and Interactive Storybooks": 1 +"4th Grade Science: Understanding Weather Patterns using Real-Time Satellite Imagery": 1 +"3rd Grade Science: Discovering the Wonders of Photosynthesis with Plant Experiments": 1 +"2nd Grade Health: The Role of Nutrition: A Deep Dive into the Food Pyramid": 1 +"4th Grade Music: Mastering the Basics of Rhythm through Percussion Instruments and GarageBand": 1 +"5th Grade Physical Education: Enhancing Basketball Skills with Resistance Bands and Pulse Trackers": 1 +"3rd Grade Mathematics: Understanding the Concept of Decimals using Money and Bar Graphs": 1 +"2nd Grade Art: Experimenting with Textures and Patterns through Collage Making using Glue Sticks and Magazine Cutouts": 1 +"7th Grade Art: Unraveling the Mysteries of Abstract Art with Acrylic Paints": 1 +"9th Grade World History: The Industrial Revolution and its Impact on Today’s Society": 1 +"5th Grade Art: Basics of Digital Art using Graphic Tablets": 1 +"3rd Grade Mathematics: Division Domination with Counting Beads, Smartboard, and Math Models": 1 +"6th Grade Geography: Understanding the Earth’s Structure through Interactive Models": 1 +"4th Grade Mathematics: Mastering Multiplication with Times Tables Rock Stars App": 1 +"Exploration into Baroque Art: A 9th Grade Course on Caravaggio’s Paintings": 1 +"2nd Grade Social Studies: Learning about Native American Cultures through Interactive Activities": 1 +"11th Grade Literature: Writing Poetry - Leveraging RhymeZone for Rhyme Patterns": 1 +"3rd Grade Science: Understanding the Solar System with NASA’s Eyes on the Solar System App": 1 +"2nd Grade German: Vocabulary Expansion with Duolingo: 15 Memory Enhancement Techniques": 1 +"Discovering the Renaissance: A 8th Grade History Course on Da Vinci’s Inventions": 1 +"4th Grade Spanish: Enhancing Conversation Skills with Bilingua App and Language Games": 1 +"1st Grade Science: Incorporating Clay Modeling in Learning about Animal Habitats.": 1 +"6th Grade Music: Discovering the Evolution of Jazz through GarageBand": 1 +"8th Grade History: The Emergence of Democracy in Ancient Athens": 1 +"3rd Grade Social Studies: Decoding Ancient Egypt through Hieroglyphics and Pyramid Construction": 1 +"Kindergarten Art: Understanding Shapes and Patterns with Collage Making Activities": 1 +"3rd Grade Mathematics: Multiplication and Division Mastery with Math Puzzles": 1 +"11th Grade Mathematics: Geometry and the Science of Shapes using GeoGebra ": 1 +"5th Grade Language Arts: Boosting Reading Comprehension with Kindle’s Vocabulary Builder": 1 +"The Influence of Helmets in 6th Grade Physical Education: Introduction to Roller Derby": 1 +"4th Grade Science: Exploring Magnetism in Everyday Objects with Magnetic Field Detectors": 1 +"Mastering Balance Beams in 7th Grade Physical Education: Acrobatics and Cooperation through Choreographed Routines": 1 +"8th Grade Archaeology: Unraveling The Mysteries of Mayan Temples using 3D Modeling Software": 1 +"4th Grade Environmental Science: Learning about Coral Reefs Ecosystems through Augmented Reality": 1 +"11th Grade Physics: Comprehending Quantum Mechanics through Interactive Simulations": 1 +"2nd Grade Geography: Exploring Desert Biomes with Time-lapse Videos and Interactive Maps": 1 +"9th Grade Geometry: Grasping Shapes and Angles through Virtual Reality and Tangible Objects": 1 +"4th Grade Literature: Enhancing Reading Comprehension Skills with Engaging E-books": 1 +"5th Grade Mathematics: Tackling Multiplication and Division with Math Games and Software Tools": 1 +"9th Grade History: Investigating the Influence of the Printing Press in the Renaissance Era": 1 +"6th Grade World History: The Agricultural Revolution and the Emergence of Early Societies": 1 +"12th Grade Music Theory: Understanding Beethoven’s Symphonies with Interactive Listening Software": 1 +"4th Grade Geography: Exploring the Biomes of the World with Interactive Google Earth": 1 +"7th Grade Music: The Transition from Classical to Romantic Period: A Deep Dive into Beethoven’s Symphonies": 1 +"1st Grade English: Learning Phonics via Interactive Apps and Storytelling Techniques": 1 +"Understanding Fractions in 3rd Grade Mathematics using Virtual Reality": 1 +"Fifth Grade History: Navigating through Ancient Egypt using 3D Printing Models": 1 +"1st Grade Science: Introduction to Weather Patterns through Interactive Cloud Charts": 1 +"8th Grade Social Studies: The Impact of Industrial Revolution on Modern Society": 1 +"6th Grade History: The Role of Navigation Tools in the Age of Exploration": 1 +"2nd Grade Music: Understanding Pitch and Volume using Hand Bells": 1 +"5th Grade Art: Exploring Impressionism through Virtual Art Galleries": 1 +"5th Grade Science: Exploring Ecosystems through Interactive Models": 1 +"8th Grade Mathematics: Diving into Geometry - An In-depth Analysis of Shapes and Angles": 1 +"9th Grade Music: Analyzing Beethoven’s Symphonies using Digital Audio Workstations": 1 +"3rd Grade History: Unfolding Ancient Egyptian Civilizations through Artifacts": 1 +"1st Grade Language Arts: Building Vocabulary with Pictograms and Interactive Games": 1 +"5th Grade English: Understanding Poetry with Interactive Reading Sessions and Online Discussions": 1 +"7th Grade Elementary Art: Color Theory and Composition through Collage Making": 1 +"6th Grade Social Studies: Discovering American Indigenous Cultures with Historical Artifacts": 1 +"4th Grade Art: Exploring Texture and Form in Modern Sculptures": 1 +"2nd Grade Science: Introduction to Life Cycles using Animated Videos and Interactive Quizzes": 1 +"2nd Grade Earth Sciences: Exploring Geological Formations through Volcano Models": 1 +"6th Grade Physical Education: Understanding Baseball Basics using Training Gloves": 1 +"11th Grade Economics: The Financial Landscape of Modern Art - Assessing Auction Prices": 1 +"5th Grade World History: The Silk Road - The Role of the Compass in Ancient Trade": 1 +"11th Grade Literature: The Influence of Virtual Reality Concepts in Contemporary Poetry": 1 +"1st Grade Health Sciences: Learning about Nutrition using Interactive Food Pyramid Games": 1 +"4th Grade Music: Exploring Rhythm and Tempo with Drums and Wind Instruments": 1 +"4th Grade Literature: Journey into Greek Mythology Through Interactive Storytelling": 1 +"6th Grade Mathematics: Enhancing Comprehension of Geometry with Origami Folding": 1 +"10th Grade History: A Study of the Cold War, The Space Race, and the Rise of Technology": 1 +"4th Grade Science: Uncovering Volcanoes and Earthquakes through Virtual Reality Simulations": 1 +"1st Grade Mathematics: Understanding Numbers and Counting with Interactive Games": 1 +"11th Grade Chemistry: Organic Compounds and Their Reactions: Learning through Laboratory Experiments": 1 +"American Civil War: The Role of Telegraphy in Military Communication for 7th Grade History": 1 +"3rd Grade Mathematics: Mastering Fractions Using Educational Apps and Physical Models": 1 +"7th Grade Music: Exploring Mozart’s Operas with Audio Recordings and Musical Scores": 1 +"9th Grade Physical Education: Incorporating Yoga and Pilates into Fitness Programs using Exercise Bands and the Alexander Technique": 1 +"5th Grade History: The Renaissance Era - Assessing the Influence of Printing Press": 1 +"1st Grade Mathematics: Grasping Basic Arithmetic Using Colorful Counting Beads": 1 +"7th Grade Mathematics: Quadrilaterals and Their Properties Explained with Geoboards and Augmented Reality Tools": 1 +"10th Grade Literature: Interpreting Dickens’ Novels through Audio Descriptions": 1 +"7th Grade History: The Cold War - Emergence of Space Exploration": 1 +"6th Grade Art: Sculpting Techniques in Classical Greek Statues ": 1 +"9th Grade Math: Understanding Probability with Python Programming and Data Visualization": 1 +"The Industrial Revolution: The Steam Engine’s Impact on Industrial Production Systems": 1 +"3rd Grade Art: Discovering Symmetry in Collage Making": 1 +"7th Grade Health Education: Improving Basketball Skills with Motion Capture Analysis": 1 +"6th Grade Art: Oil Painting Mastery Using Glazing Methods and Color Harmonies": 1 +"3rd Grade Science: Investigating Jupiter’s Atmosphere using Stellarium Software and Google Sky": 1 +"Kindergarten Science: Discovering Mysteries of Rainforest Ecosystems through Terrarium Building and Humidity Measurement using Hygrometer.": 1 +"5th Grade Science: Exploring the Solar System with Interactive 3D Planetarium Software": 1 +"2nd Grade History: Unveiling the Secrets of the Great Wall of China through Virtual Tours and Simulations": 1 +"6th Grade English: Enhancing Creative Writing Skills with Fantasy Story Prompts and Online Storyboarding Tools": 1 +"3rd Grade Mathematics: Mastering Multiplication through Online Math Games and Interactive Charts": 1 +"4th Grade Geography: Exploring the Amazon Rainforest with VR Field Trips and Satellite Imagery": 1 +"5th Grade Physical Education: Coordination and Teamwork - Basketball Drills and Games": 1 +"2nd Grade Science: Understanding the Life Cycle of Butterflies through Augmented Reality Apps": 1 +"6th Grade History: Discovering Medieval Europe and the Use of Catapults in Warfare": 1 +"4th Grade English: Boosting Reading Comprehension with Interactive eBooks and Story Mapping": 1 +"3rd Grade Social Studies: Learning about Native American Cultures through VR Simulations and Artifact Studies": 1 +"5th Grade English: Developing Storytelling Skills with Adobe Story Software": 1 +"8th Grade Art: Exploring Renaissance Artists through Virtual Reality": 1 +"Third Grade Geography: Discovering World Landforms with Augmented Reality": 1 +"6th Grade Physical Education: Mastering Basketball Techniques with Virtual Reality and Strivr": 1 +"7th Grade Music: In-depth analysis of Mozart’s Sonatas using SmartMusic Software": 1 +"4th Grade Mathematics: Enhancing Fractions Understanding with Mathletics Digital Learning and Number Line Technique": 1 +"6th Grade Literature: Exploring Shakespeare’s Plays with Interactive Audiobooks": 1 +"2nd Grade Science: Discovering Aquatic Life with Virtual Reality and Google Expeditions": 1 +"5th Grade History: The Civil War and its Impact on the United States": 1 +"Improving 4th Grade Addition Skills with Math Blaster: An Emphasis on Interactive Math Learning Games": 1 +"2nd Grade Spanish: Boosting Conversation Skills with Duolingo and Rosetta Stone: 10 Creative Techniques": 1 +"4th Grade English: Mastering Grammar through Fun Puzzles via Grammaropolis": 1 +"5th Grade Science: The Age of Enlightenment: The Influence of the Telescope": 1 +"4th Grade Art: Exploring Watercolor Painting Fundamentals with Nature Themes": 1 +"2nd Grade Reading: Narrative Understanding and Plot Analysis: Merging Phonics with Digital Graphic Novels": 1 +"1st Grade Physical Education: Incorporating Balance Beams and Motion Capture for Enhanced Agility": 1 +"5th Grade Social Studies: Exploring the Mayan Culture and their Use of Solar Calendars for Agriculture": 1 +"3rd Grade Reading: Boosting Interpretation with Puppet Shows and Interactive E-Reading Platforms": 1 +"3rd Grade Art: Animal Portraiture on Virtual Canvases: The Procreate App Journey": 1 +"4th Grade History: Deciphering Cuneiform in Ancient Mesopotamia with Clay Tablets": 1 +"4th Grade Geography: Exploring Topographical Features through Minecraft and 3D Printing Models": 1 +"6th Grade Mathematics: Understanding Geometry through Interactive Shapes and Augmented Reality": 1 +"5th Grade Science: Discovering Volcanoes and Earthquakes with Virtual Reality Simulations": 1 +"3rd Grade Music: Grasping Musical Notes using Keyboards and Interactive Apps": 1 +"7th Grade Literature: Examining the Elements of Short Stories through Creative Writing and Storytelling Techniques": 1 +"2nd Grade Art: Exploring Colors and Shapes with Paint and Digital Drawing Tools": 1 +"8th Grade Geography: Exploring Climate Zones using Interactive Globes and Climate Change Simulations": 1 +"1st Grade Mathematics: Learning Number Patterns with Math Puzzles and Interactive Counting Games": 1 +"6th Grade History: The Civil War and its Impact on America through Augmented Reality Tours and Historical Reenactments": 1 +"5th Grade Physical Education: Understanding Basketball Rules and Techniques with Virtual Training Sessions and 3D Models": 1 +"8th Grade Physics: Discovering Newton’s Laws with Virtual Reality and Simulation Software": 1 +"12th Grade Art: Exploring Digital Art Techniques using Adobe Creative Cloud Suite": 1 +"Acoustic Bass in Blues: An In-depth Study for 9th Grade Music Students": 1 +"5th Grade Mathematics: Mastering Fractions using Khan Academy and Mathletics": 1 +"7th Grade English: Enhancing Poetry Analysis Skills through Audiobook Platforms": 1 +"3rd Grade Science: Exploring Weather Patterns using Interactive Meteorological Applications": 1 +"8th Grade Technology: Basics of Web Design with HTML and CSS": 1 +"American Civil War: Decoding the Confederate Cipher System - A Detailed 9th Grade History Course": 1 +"6th Grade Health: Understanding the Circulatory System with Interactive 3D Models and Augmented Reality": 1 +"5th Grade Language Arts: Improving Reading Comprehensions Skills on Tablets using ReadWorks, Quizlet, and Starfall Apps for Interactive Learning": 1 +"5th Grade Physics: Understanding Newton’s Laws through Interactive Experiments": 1 +"4th Grade Geography: Exploring World Landforms through Augmented Reality": 1 +"2nd Grade Art: Utilizing Digital Art Software for Expression in Still Life": 1 +"7th Grade Mathematics: Diving into Geometry with 3D Printing and CAD Software": 1 +"1st Grade Biology: Introduction to Plant Life Cycles through Time-Lapse Videos": 1 +"7th Grade English: Leveraging Digital Storytelling Tools for Narrative Writing": 1 +"6th Grade Social Studies: Uncovering the Silk Road through Interactive Maps and Virtual Field Trips": 1 +"8th Grade Computer Science: An Introduction to Coding with Scratch and Raspberry Pi": 1 +"5th Grade History: The Middle Ages - The Analysis of Societal Structures": 1 +"4th Grade Science: Discovering the Solar System through Virtual Planetariums": 1 +"5th Grade Language Arts: Creating Descriptive Paragraphs with Crayons, Cardboard and a Thesaurus": 1 +"12th Grade Physics: Quantum Mechanics: An Extensive Study of Particle-Wave Duality": 1 +"3rd Grade Social Studies: The Influence of Windmills on our Local Energy Production": 1 +"1st Grade Science: Observing Butterfly Metamorphosis through Transparent Chrysalis": 1 +"5th Grade Social Studies: The Role of Animation in Children’s Television in the 1980s ": 1 +"1st Grade Science: Understanding Butterfly Life Stages through Augmented Reality Demonstrations": 1 +"7th Grade Science: Unraveling the Mysteries of Genetics through DNA Extraction": 1 +"8th Grade History: Researching Medieval Societies using Iron Age Artifacts": 1 +"5th Grade Science: The Marvels of Oceanography: The Science behind Submarines": 1 +"4th Grade Geography: Discovering Rivers and Mountains through 3D Modeling": 1 +"3rd Grade Geography: Exploration of Continental Drift Using Clay Models": 1 +"4th Grade Science: Delving into Photosynthesis with Virtual Lab Experiments": 1 +"1st Grade Mathematics: Building Basic Numeracy Skills with Interactive Puzzles": 1 +"7th Grade Art: Mastering Digital Illustration with Photoshop Elements": 1 +"8th Grade Literature: Unpacking the Themes of Shakespeare’s Macbeth": 1 +"5th Grade Biology: Exploring Human Anatomy through 3D Printing": 1 +"9th Grade Computer Science: Introduction to Coding with Python": 1 +"5th Grade Spanish: Enhancing Language Acquisition with Bilingual Storybooks": 1 +"6th Grade Physics: Understanding Gravity through Space Exploration Games": 1 +"7th Grade Social Studies: The Renaissance: An Examination of Michelangelo’s Sculptures": 1 +"5th Grade Geography: Understanding Continental Drift with Interactive Earthquake Simulators": 1 +"2nd Grade Math: Unraveling Multiplication Mysteries through Number Cards and Online Games": 1 +"1st Grade English: Alphabet Adventures with ABCmouse and Handwriting Worksheets": 1 +"7th Grade Physics: Exploring the Laws of Motion with Marble Tracks and Video Analysis": 1 +"6th Grade Biology: Discovering the Digestive System through Virtual Reality and Edible Models": 1 +"4th Grade Art: Exploring Shapes and Colors with Picasso - Interactive Art Projects": 1 +"3rd Grade Music: Mastering Basic Rhythms with Boomwhackers and Music Theory Apps": 1 +"5th Grade Spanish: Journey into Language with Duolingo: 12 Fun Learning Techniques": 1 +"7th Grade History: The Great Wall of China - Examination of Brick Making Techniques and Defensive Strategies": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies using Augmented Reality Apps and Nature Observations.": 1 +"Understanding Nutrition and Diet Planning with MyFitnessPal in 10th Grade Health Education": 1 +"3rd Grade Geography: Exploring Topographical Features using Google Earth and Virtual Reality": 1 +"6th Grade Drama: The Impact of Lighting Technology on Stage Performances": 1 +"Fourth Grade Biology: Delving into Human Anatomy with Interactive Models and Visits to the Science Museum": 1 +"9th Grade Music: Rhythm Fundamentals with Drum Machines using Loop Stations": 1 +"3rd Grade Art: Exploring Creativity with 3D Modeling in Tinkercad": 1 +"5th Grade Statistics: Decoding Census Data with Google Sheets’ Pivot Table Features": 1 +"The Influence of Classical Music on the Enlightenment Period: An In-depth Study for 11th Grade Music": 1 +"3rd Grade Earth Science: Studying Rocks and Minerals Through Hands-On Experiments": 1 +"Basketball in 7th Grade Physical Education: Perfecting Dribbling Techniques with the Smart Basketball.": 1 +"7th Grade Physics: Understanding Forces and Motion through Interactive Experiments using LEGO Robotics Kits": 1 +"5th Grade Environmental Science: Exploring Ecosystems with Virtual Field Trips and Interactive Diagrams": 1 +"3rd Grade Language Arts: Enhancing Vocabulary with Storytelling Techniques using Digital Word Games": 1 +"8th Grade Mathematics: Algebra Essentials - Linear and Quadratic Equations Analysis using Graphing Calculators": 1 +"1st Grade Music: Discovering Musical Notes with Interactive Soundboards and Virtual Instruments": 1 +"4th Grade Art: Learning Watercolor Techniques through Nature Inspiration and Digital Painting Tools": 1 +"2nd Grade Science: Exploring the Solar System with Planetarium Apps and Interactive Models": 1 +"5th Grade History: Unraveling Ancient Civilizations using Virtual Reality Tours and Interactive Timelines": 1 +"7th Grade Literature: Comprehensive Study of Classic Novels using Interactive e-Books and Audio Narrations ": 1 +"3rd Grade Geography: Understanding World Maps and Continents through Virtual Reality Exploration.": 1 +"6th Grade Geography: Unveiling World Cultures through Google Earth and Virtual Reality": 1 +"8th Grade English: Enhancing Creative Writing Skills with Scrivener and Storybird": 1 +"4th Grade Science: In-depth Study of Weather Patterns using Interactive Weather Maps": 1 +"5th Grade Music: Understanding Classical Music with Digital Audio Workstations": 1 +"3rd Grade Mathematics: Exploring Fractions using Virtual Manipulatives in Google Classroom": 1 +"7th Grade History: Investigating the Renaissance Period through Interactive Timelines": 1 +"8th Grade Music: Composing Electronic Music using Ableton Live MIDI Sequencers": 1 +"4th Grade English: Spelling Mastery with VocabularySpellingCity and Online Word Games": 1 +"2nd Grade Life Sciences: Understanding Animal Habitats through Augmented Reality": 1 +"9th Grade Geography: Exploring Demographics and Migration Patterns using Google Maps and Tableau": 1 +"5th Grade Art: Constructing Paper Mache Sculptures Inspired by Classical Greek Statues": 1 +"2nd Grade Science: Exploring Weather Patterns and Climate Change through Interactive Simulations": 1 +"6th Grade Music: Understanding Rhythms and Beats through African Drumming": 1 +"10th Grade Economics: The Role and Impact of Cryptocurrency on the Global Market": 1 +"4th Grade Social Studies: The Impact of Immigration on American Culture and Society": 1 +"9th Grade Philosophy: Introduction to Ethics and Morality through Ancient Greek Philosophers": 1 +"3rd Grade Environmental Studies: Discovering Renewable Energy Sources through Solar-Powered Projects": 1 +"5th Grade Geography: Navigating the Oceans Using Ancient Mariners’ Tools and Maps": 1 +"8th Grade Science: The Role of DNA and Genes in Human Evolution": 1 +"6th Grade History: Understanding the French Revolution through Virtual Reality and Interactive Timelines": 1 +"4th Grade Geography: Discovering World Cultures through Interactive Globes ": 1 +"5th Grade English: Improving Essay Writing Skills with Google Docs": 1 +"5th Grade English: Developing Animation Narration Skills using Adobe Animate": 1 +"7th Grade Algebra: Learning Equations through Minecraft and 3D Graphic Calculators": 1 +"Ninth Grade Art: Exploring Digital Painting with Adobe Photoshop and Wacom Tablet": 1 +"2nd Grade Computer Science: An Introduction to Scratch Programming": 1 +"11th Grade Health Education: The Psychology of Fitness - Analyzing Gym Attendance with Statistical Analysis": 1 +"8th Grade History: The French Revolution and The Impact of Gunpowder Warfare": 1 +"Implementing Weather Stations for Climate Awareness in Sustainable Farming: 7th Grade Science Course": 1 +"7th Grade Chemistry: Understanding Chemical Reactions through Cooking Experiments": 1 +"5th Grade Math: Problem Solving and Geometric Concepts through Interactive 3D Modeling Software": 1 +"Understanding Life Processes: Examining Photosynthesis with Microscopes in 3rd Grade Biology": 1 +"4th Grade Geography: Exploring Our Diverse Planet using Interactive Globes and Satellite Imagery": 1 +"8th Grade Physics: An Introduction to Newton’s Laws through Motion Sensor Experiments": 1 +"Rhythm and Beats: Understanding the Science of Tempo, Drumstick Techniques, and Using a Metronome in 7th Grade Percussion": 1 +"Kindergarten Literacy: Journey into Fairytales - Incorporating Puppetry with Interactive Storytelling": 1 +"2nd Grade Art: Discovering Shapes and Patterns through Origami and Paper Mosaics": 1 +"5th Grade History: Journey through the Renaissance with Virtual Museum Tours and Dramatizations": 1 +"Exploring Aquatic Ecosystems: Introduction to Marine Life and Conservation with Virtual Aquariums in 1st Grade Ecology": 1 +"7th Grade PE: Strength and Flexibility through Gymnastics and Fitness Trackers": 1 +"3rd Grade Art: Exploring Shapes and Colors through Paper Mosaic Techniques": 1 +"6th Grade Mathematics: Understanding Fractions and Decimals with Interactive Games and 3D Visualization": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies with Virtual Reality": 1 +"7th Grade Geography: Interactive Exploration of the African Continent using GIS and Google Earth": 1 +"1st Grade Mathematics: Learning Counting and Number Recognition through Fun Digital Activities": 1 +"4th Grade Environmental Studies: Soil Composition and its Effects on Plant Growth - A Practical Study in the School Garden": 1 +"8th Grade Literature: Journey into the World of Poetry with Audio-Visual Storytelling Tools": 1 +"5th Grade History: The Medieval Times - Knights, Castles, and Siege Weapons": 1 +"6th Grade Physical Education: Introduction to Soccer - Rules, Techniques and Virtual Practice Sessions": 1 +"3rd Grade English: Dive into Descriptive Writing with Illustrated Storybooks": 1 +"4th Grade History: Discovering the Age of Exploration through Interactive Map Tracing ": 1 +"2nd Grade Biology: Exploring the Life Cycle of a Butterfly using 3D Models and Time-lapse Videos": 1 +"6th Grade Physics: Understanding the Principle of Levers through Simple Machines": 1 +"7th Grade Literature: Analyzing Character Development in Classic Novels Using Digital Annotation Tools": 1 +"4th Grade Environmental Studies: Understanding the Importance of Composting and Worm Farms for Sustainable Living": 1 +"8th Grade Geometry: Mastering the Understanding of Pythagorean Theorem Using 3D Models": 1 +"2nd Grade Mathematics: Fun with Addition and Subtraction Using Digitized Flashcards": 1 +"12th Grade Economics: Understanding Supply and Demand through Interactive Market Simulations": 1 +"4th Grade English: Creative Writing and Storytelling using Digital Publishing Platforms": 1 +"6th Grade Astronomy: Exploring the Solar System with Augmented Reality Apps": 1 +"3rd Grade Geography: Discovering World Landforms Using Interactive Maps": 1 +"6th Grade Biology: Studying Cellular Structures through Microscopic Observations": 1 +"9th Grade Mathematics: Grasping Geometric Proofs with Online Puzzles and Smart Boards": 1 +"1st Grade Music: Learning Basic Music Notes with Interactive Piano Apps": 1 +"7th Grade Literature: Exploring Metaphors in Classic Novels through Group Discussions": 1 +"5th Grade Physics: Understanding Basic Laws of Motion Using Marble Run Simulations": 1 +"10th Grade History: Investigating the Roman Empire with Virtual Reality Tours": 1 +"3rd Grade Art: Mastering Color Mixing with Digital Painting Tools": 1 +"6th Grade Astronomy: Exploring Constellations through Star-Gazing Activities": 1 +"Enhancing Flexibility and Balance with Yoga in 8th Grade Physical Education": 1 +"6th Grade Visual Arts: Exploring Sculpture Techniques with Clay and Wire": 1 +"Interactive 3rd Grade Course: The Fundamentals of Geometry and Measurement Using Interactive Learning Tools": 1 +"2nd Grade English: Mastering Basic Grammar and Sentence Structure through Digital Platforms": 1 +"Climate Science for Second Graders: Understanding Greenhouse Effect, Ozone Layer, and Renewable Energy Sources": 1 +"8th Grade Physics: Introduction to Newton’s Laws of Motion and their Practical Applications": 1 +"3rd Grade Mathematics: Advanced Multiplication and Division Lessons Utilizing Digital Learning Tools": 1 +"History Lessons for 7th Grade: Investigating the Influence of the Silk Road on Trade and Culture during the Middle Ages": 1 +"5th Grade History: The French Revolution - The Role of the Guillotine, the Declaration of the Rights of Man and the Reign of Terror": 1 +"3rd Grade Music: Introduction to Beethoven’s Sonatas with Keyboard Practice, Sound Mixing with Audacity and GarageBand": 1 +"11th Grade Music: Analysis of Bach’s Fugues Using Finale Music Composition Software and Harmonic Structure Study.": 1 +"3rd Grade Mathematics: Exploring Fractions Using Cool Math Games App": 1 +"7th Grade Science: Investigating Tropical Rainforests Through Leaf Litter Analysis Using Microscopy and Humidity Monitoring": 1 +"6th Grade Social Studies: Understanding Global Economies Using World Bank Data & Google Data Studio Visualization": 1 +"9th Grade Physics: The Importance of Levers in Architectural Design - A Practical Approach using Virtual Reality Simulations": 1 +"4th Grade Science: Discovering Oceanic Zones through Minecraft 3D Modeling": 1 +"6th Grade Music: Studying Melody Structures in Guitar using Beat Makers": 1 +"Digital Storytelling with Padlet and Interactive Whiteboards: 3rd Grade English Language Arts Course": 1 +"Fifth Grade History: Exploring the Industrial Revolution Through the Perspective of Railroads": 1 +"Elementary Arithmetic: Mastering Addition and Subtraction Through Google Sheets": 1 +"7th Grade History: Decoding Medieval Societies through the Lens of the Printing Press and Early Cartography": 1 +"10th Grade Health Studies: Understanding Nutrition and Caloric Intake through Meal Planning Apps": 1 +"6th Grade Math: Basics of Probability: Using Spreadsheets and Pie Charts in Google Sheets": 1 +"3rd Grade English: Learning Similes in Literature with Interactive E-books": 1 +"1st Grade Science: Exploring Physical Properties: Interactive Learning with Texture Cards": 1 +"Third Grade Spelling: Mastering Letter Combinations and Word Formation with Digital Flashcards": 1 +"Kindergarten Math: Grasping Concepts of Shapes and Patterns with Tangram Puzzles": 1 +"Aerobics for 8th Graders: Incorporating Cardiovascular Endurance in Step Aerobics using Music and Dance Routines": 1 +"5th Grade Physical Education: Basics of Basketball with Dribbling and Shooting Drills": 1 +"8th Grade Fine Arts: Understanding Still Life Painting with Acrylics, Watercolors, and Oil Pastels": 1 +"Democracy and Citizenship: A 10th Grade History Course Exploring Political Participation through Case Studies.": 1 +"4th Grade Science: Understanding the Solar System through Interactive VR Models": 1 +"The Influence of the Great Fire of London on Urban Planning: A Detailed Study in 3rd Grade History": 1 +"7th Grade Music: Mastering the Violin - Understanding the Importance of Bow Pressure and Position": 1 +"7th Grade Music: Creating Melodies using GarageBand and Music Composition Apps": 1 +"6th Grade History: The Civil War Period - Analyzing Advances in Telegraph Communication": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies through Augmented Reality": 1 +"7th Grade Social Studies: Sustainable Energy and the Role of Solar Panels in Modern Infrastructure": 1 +"5th Grade Geography: Navigating the Sahara Desert using Google Maps and Interactive Climate Graphs": 1 +"6th Grade Mathematics: Grasping Fractions and Decimals using Khan Academy": 1 +"7th Grade Music: Piano Techniques and the Use of Pedals for Sound Variation": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals with Math Magic App": 1 +"7th Grade Physical Education: Learning Volleyball Basics through Team Play and Strategy Development": 1 +"1st Grade Subtraction: Engaging Activities using Number Blocks and Khan Academy Kids App": 1 +"5th Grade English Literature: Exploring Fables and Folktales with Audio Books": 1 +"6th Grade English: Enhancing Reading Comprehension and Critical Thinking Skills through Mystery Novels": 1 +"8th Grade Biology: Understanding Photosynthesis: Interactive 3D Models and Animations": 1 +"10th Grade Algebra: Mastering Equations and Inequalities with Online Simulations and Problem-Solving": 1 +"3rd Grade Art: Creating Storyboards with Online Drawing Tools to Understand Narrative Structure ": 1 +"2nd Grade English: Learning Verbs and Adjectives using ABCmouse and Google Classroom": 1 +"Kindergarten Mathematics: Introduction to Shapes and Colors with Fun Interactive Games": 1 +"5th Grade Math: Understanding Fractions through Baking Recipes": 1 +"7th Grade Mathematics: Geometry and Shapes: A Comprehensive Study of the Pythagorean Theorem": 1 +"5th Grade Science: Exploring Ecosystems Using Augmented Reality": 1 +"Eleventh Grade Music: Understanding Harmonics with Digital Audio Workstations": 1 +"9th Grade Geography: Exploring Political Boundaries through Interactive Maps": 1 +"7th Grade Art: Mastering Watercolor Techniques with Still Life": 1 +"1st Grade Science: Learning About Animals and Their Habitats through Storytelling": 1 +"4th Grade English: Interpreting Grimm’s Fairy Tales using Animated Videos and Google Slides": 1 +"3rd Grade Music: Basics of Melody - An Exploration of the Piano": 1 +"4th Grade Music: Discovering Jazz Music and the Saxophone": 1 +"3rd Grade Geography: Understanding Maps with Google Earth Tool": 1 +"4th Grade World History: Industrial Revolution - The Role of the Steam Engine and Telegraph": 1 +"Learning the Basics of Astronomy: An 8th Grade Adventure with Star Charts and Telescopes": 1 +"7th Grade Sociology: Exploring Global Customs and Traditions with Augmented Reality": 1 +"3rd Grade Art: Learning Color Theory with Adobe Color Wheel": 1 +"3rd Grade English Literature: Enhancing Vocabulary with Duolingo Language Learning App": 1 +"3rd Grade Mathematics: Mastering Fractions with Virtual Manipulatives": 1 +"11th Grade Sports Science: Harnessing Biometric Wearables for Efficient Soccer Training": 1 +"1st Grade Writing: Learning Alphabet and Phonics with Interactive E-Books and Digital Games": 1 +"3rd Grade Mathematics: Engaging in Addition and Subtraction with Counting Rods and Interactive Smartboard Games": 1 +"7th Grade History: Exploring Ancient Civilizations through Virtual Reality Technology": 1 +"1st Grade Health: Learning About Nutrition with Augmented Reality Food Apps": 1 +"10th Grade Biology: Identifying Species Diversity in Coral Reefs Using Underwater Drones and AI Identification Tools": 1 +"Kindergarten Art: Discovering Colors and Shapes through Interactive Digital Painting": 1 +"4th Grade Mathematics: Understanding Fractions Through Digital Cooking Lessons": 1 +"3rd Grade Language Arts: Improving Writing Skills with AI-Powered Feedback Tools": 1 +"6th Grade Geography: Investigating Global Climate Change using Satellite Imagery and Interactive Maps": 1 +"2nd Grade Health: Learning About the Human Body with 3D Printing and Augmented Reality": 1 +"5th Grade English: Enhancing Reading Comprehension with Gamified Storytelling Apps": 1 +"4th Grade Science: Discovering the Solar System through Virtual Reality Space Exploration": 1 +"6th Grade Science: Understanding the Solar System with 3D Models and Virtual Reality": 1 +"7th Grade History: Tracing the Evolution of Democracy Through Time-Lapse Maps": 1 +"8th Grade English: Analyzing Symbolism in Novels through Annotated Reading": 1 +"3rd Grade Mathematics: Learning Multiplication with the Use of Counters and Number Lines": 1 +"9th Grade Music: Discovering the Influence of Electric Guitars on Rock and Roll": 1 +"2nd Grade Art: Exploring Textures and Patterns with Finger Painting Techniques": 1 +"12th Grade Mathematics: Interpreting Complex Numbers with the Help of Graphing Calculators": 1 +"4th Grade Science: Discovering the Life Cycle of Plants Through Time-Lapse Videos": 1 +"10th Grade Social Studies: Understanding Global Economies Using Real-Time Stock Market Data": 1 +"5th Grade Language: Enhancing Vocabulary with Crossword Puzzles and Flash Cards": 1 +"1st Grade Art: Exploring Shapes and Colors through Collage Making: Using Scissors, Glue and Recycled Magazines": 1 +"Ancient Greek History for 6th Grade: The Role of the Wheel in the Development of Trade and Transportation": 1 +"Kindergarten Earth Science: An Introduction to Soil Composition and Plant Growth: A Study with Magnifying Glasses": 1 +"2nd Grade Computer Science: Introduction to Coding with Scratch: Creating Animated Stories": 1 +"5th Grade Health Education: Understanding Nutrition through Food Pyramid and Dietary Guidelines": 1 +"5th Grade Geography: Exploring Map Reading and Compass Use in Outdoor Navigation ": 1 +"3rd Grade Dance Education: Ballet Basics and Flexibility Enhancement through Stretching Exercises and Rhythm Games": 1 +"Second Grade Writing: Enhancing Storytelling Skills through Interactive Digital Platforms": 1 +"7th Grade Drama: The Art of Stage Presence and Character Development using Audacity and Video Editing Tools": 1 +"5th Grade 3D Modeling: Basics of Creating Digital Sculptures using Tinkercad and 3D Printing.": 1 +"2nd Grade Mathematics: Exploring Fractions with Virtual Reality Manipulatives": 1 +"7th Grade Science: The Role of Honeybees in Pollination: Study with Live Beehives and Augmented Reality Technology": 1 +"5th Grade Physical Education: Improving Flexibility and Strength using Fitbit Trackers and Interactive Workout Apps": 1 +"1st Grade Language Arts: Learning Phonics through iPad Apps and Digital Story Books": 1 +"8th Grade Environmental Studies: Wind Energy and its Contribution in Reducing Carbon Footprints": 1 +"3rd Grade Social Studies: The History of Money: From Barter to Bitcoin": 1 +"9th Grade Music: Understanding Music Composition with GarageBand": 1 +"10th Grade Physical Education: Using Smart Basketballs to Improve Shooting Accuracy": 1 +"5th Grade Science: Exploring the Solar System with Virtual Telescopes and Planetarium Software": 1 +"12th Grade Language Arts: Analyzing the Impact of Podcasts on Modern Journalism": 1 +"3rd Grade Physics: Discovering Gravity Through Parachute Making": 1 +"7th Grade Zoology: Understanding Bird Migration Patterns through GIS Mapping Tools": 1 +"5th Grade Literature: A Voyage into the World of Harry Potter - Navigating Hogwarts Using VR": 1 +"3rd Grade Climate Studies: Exploring the Water Cycle and Its Impact on Weather Patterns": 1 +"Kindergarten Biology: Learning about Insects through Animated Storytelling": 1 +"1st Grade Civic Studies: Grasping the Importance of Recycling in Our Neighborhoods": 1 +"Pre-School Physical Education: Mastering Basic Soccer Skills with Mini Goals": 1 +"Expert Songwriting: Harnessing the Power of GarageBand and MIDI Controllers in 9th Grade Music": 1 +"5th Grade World History: Exploring the Pyramids with Google Cardboard VR, Interactive Maps, and Quizlet Flashcards": 1 +"1st Grade Language Arts: A Journey into Adjectives and Pronouns with Interactive Puppet Shows": 1 +"6th Grade Science: Exploring Ecosystems with Virtual Reality and Interactive Models": 1 +"1st Grade English: Developing Reading Skills through Interactive Storytelling Applications and eBooks ": 1 +"5th Grade Mathematics: Mastery of Multiplication with Abacus Methods and Tablet Applications": 1 +"9th Grade History: Understanding World War II through Virtual Reality Battlefield Simulations": 1 +"7th Grade Mathematics: Algebra Skills Development with Interactive Digital Tools and Games": 1 +"3rd Grade Language Arts: Enhancing Vocabulary and Spelling Skills through Interactive Word Games on iPads": 1 +"12th Grade Biology: Understanding Evolution and Natural Selection through Bioinformatics Tools": 1 +"4th Grade Social Studies: Exploring the Mayan Civilization through Virtual Reality and 3D Modeling": 1 +"11th Grade English: Advanced Essay Writing Techniques with Grammarly and Hemingway Editor for Drafting and Proofreading": 1 +"1st Grade Music: Exploring Rhythm and Beat with Virtual Instruments and GarageBand": 1 +"5th Grade Science: Exploring Ecosystems with Virtual Reality Technology": 1 +"4th Grade Geometry: Understanding Shapes through Origami and Geogebra Software": 1 +"7th Grade World History: Examining the Renaissance Period using Minecraft Education Edition": 1 +"2nd Grade Reading: Enhancing Comprehension Skills with Interactive E-books and Personalized Digital Story Maps": 1 +"Kindergarten Art: Exploring Colors and Textures with Digital Painting Software": 1 +"8th Grade Literature: Exploring Themes in Dystopian Novels using Podcast Creation": 1 +"1st Grade Science: Learning about Animal Habitats through Augmented Reality Apps ": 1 +"6th Grade Music: Understanding Rhythm and Beat through Digital Drum Pads and Loop Stations ": 1 +"7th Grade Geometry: Exploring 3D Shapes with TinkerCAD and 3D Printing Technology": 1 +"3rd Grade Social Studies: Understanding Community Roles through Role-Play and Virtual Field Trips": 1 +"4th Grade Art: Exploring Color Theory with Interactive Digital Tools": 1 +"8th Grade Music: Harmonizing Melodies with String Instruments": 1 +"10th Grade Health: An In-depth Study of Mental Health and Coping Mechanisms": 1 +"5th Grade Science: Unraveling the Mysteries of the Animal Kingdom using Virtual Reality Technology": 1 +"3rd Grade Geography: Navigating the Oceans using Digital Maps and Satellite Data": 1 +"12th Grade Science: Exploring Quantum Physics and Its Real-World Applications": 1 +"6th Grade Biology: Understanding Plant Life Cycles through Hands-on Gardening Projects": 1 +"7th Grade Mathematics: Mastering Algebra through Gamified Learning Platforms": 1 +"2nd Grade Environmental Studies: Comprehending Renewable Energy and Its Importance": 1 +"8th Grade Social Studies: Medieval Architecture’s Influence on Modern Building Techniques": 1 +"4th Grade Science: Exploring the Solar System through Augmented Reality Experiences": 1 +"5th Grade English: Analyzing Poetic Devices in Dr. Seuss’ Works": 1 +"8th Grade Physical Education: Discovering Yoga and Mindfulness Practices": 1 +"3rd Grade Art: Understanding Color and Texture through Collage Creation": 1 +"8th Grade History: The Renaissance Period - Study of Art, Culture, and Scientific Revolution": 1 +"2nd Grade Math: Grasping Basic Arithmetic through Interactive Board Games": 1 +"6th Grade Environmental Studies: The Impact of Climate Change on Polar Bear Populations Using Predictive Modeling": 1 +"7th Grade Music: Comprehending Musical Scales and Chords through Guitar Lessons": 1 +"4th Grade Social Studies: Understanding Economy through the Concept of Barter Systems in Early Civilizations": 1 +"5th Grade Computer Science: Learning Coding Basics with Scratch: A Focus on Conditional Statements": 1 +"2nd Grade Geography: Exploring World Maps through Origami Creations": 1 +"4th Grade Biology: Understanding the Life Cycle of Butterflies": 1 +"6th Grade Geometry: Mastering Shapes and Angles with Origami Art": 1 +"Kindergarten Writing: Learning the Alphabet with Fun Puzzles": 1 +"4th Grade Arithmetic: Understanding Decimals through Money Management": 1 +"2nd Grade Science: The Influence of Weather on Animal Behavior": 1 +"11th Grade Physics: Interactive Learning with Forces and Motion": 1 +"6th Grade Health Education: Understanding Nutrition and Healthy Eating Habits": 1 +"Kindergarten Social Studies: Understanding Community Helpers through Role Play": 1 +"2nd Grade Music: Learning Melodies through Singing and Recorder Playing": 1 +"4th Grade Math: Mastering Multiplication and Division through Interactive Computer Games": 1 +"1st Grade Art: Discovering Colors and Shapes through Digital Drawing Tools": 1 +"3rd Grade Geology: Understanding Rock Formations through Augmented Reality": 1 +"5th Grade History: Exploring The American Revolution through Interactive Timelines": 1 +"2nd Grade Music: Introduction to Rhythm and Melody with Percussion Instruments": 1 +"4th Grade Environmental Studies: The Impact of Wind Power on Local Ecosystems": 1 +"7th Grade English: Investigating Shakespeare’s Sonnets through Online Poetry Forums": 1 +"1st Grade Physical Education: Learning Basic Gymnastics through Fun Obstacle Courses": 1 +"6th Grade Science: Exploring Human Anatomy with 3D Printing": 1 +"2nd Grade History: Discovering Native American Culture through Storytelling and Crafts.": 1 +"5th Grade Physical Education: Fundamentals of Basketball: Focusing on Shooting Skills": 1 +"7th Grade History: The Introduction of Fire, The Wheel, and Agriculture in Ancient Civilizations": 1 +"4th Grade English: Boosting Reading Comprehension using Interactive E-books": 1 +"Enhancing Fitness Levels through Fitbit Tracker: Integrating MyFitnessPal App, Nike Training Club in a 10th Grade Physical Education Course.": 1 +"3rd Grade Language Arts: Enhancing Vocabulary with Quizlet Flashcards": 1 +"8th Grade Physical Education: Introduction to Volleyball with Proper Ball Handling": 1 +"9th Grade Science: Understanding the Human Digestive System through Virtual Dissections and Interactive Models": 1 +"6th Grade History: The Civil War and Virtual Reality using Google Expeditions": 1 +"Mastering Multiplication: A 4th Grade Mathematics Course using Funbrain Games": 1 +"2nd Grade Physical Education: Building Balance Skills with Hula Hoops, Balance Beam and Gymnastics Moves": 1 +"5th Grade Science: Exploring the Weather Patterns: Understanding Climate Change through Meteorological Data": 1 +"7th Grade English Language Arts: Decoding Symbolism in Classic Literature Using Interactive Reading Strategies": 1 +"3rd Grade Music: Understanding Tempo and Pitch: Learning to Compose with Digital Music Software": 1 +"11th Grade History: The Industrial Revolution: Investigating its Impact Through Population Data": 1 +"5th Grade Social Studies: The Revolution of Transportation - Discovering the Evolution of Vehicles with Interactive Kits": 1 +"10th Grade History: The Intricacies of Hieroglyphics in Ancient Egyptian Communication": 1 +"7th Grade Language Arts: Unraveling Plot Development through the Study of Suspense and Climax using Mystery Novels": 1 +"5th Grade History: The Golden Age of Islam: Exploring the Influence on Mathematics and Astronomy": 1 +"11th Grade Biology: Unveiling the Mysteries of Human Anatomy through Virtual Reality and 3D Modeling": 1 +"3rd Grade Geography: Exploring the Solar System with Augmented Reality Globes and Astronomy Software.": 1 +"4th Grade Science: Exploring Marine Life through Aquarium Visits and Microscope Use": 1 +"2nd Grade Art: Crafting Jungle Scenery with Acrylic Painting using Round Brushes, Molding Clay, and Stencils": 1 +"Kindergarten Social Studies: Discovering Community Helpers through Role Play and Virtual Field Trips": 1 +"3rd Grade English: Enhancing Reading Comprehension with Interactive Storybooks and Graphic Organizers": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals using the Number Line and Grid Method": 1 +"4th Grade Music: Learning Harmony and Pitch using the Piano and Digital Music Sheets": 1 +"Uncovering Ancient Egyptian Civilization: The Role of Mathematics in Building Pyramids for 5th Grade History": 1 +"2nd Grade Science: The Lifecycle of Butterflies Explored with Live Specimens and Interactive Models": 1 +"6th Grade Art: Constructing Still Life with Charcoal Drawing using Smudging Tools, Fixatives, and Toned Paper": 1 +"Utilizing Tablets in 1st Grade Math: Learning Numbers and Shapes through Interactive Games and Apps": 1 +"4th Grade Math: Mastering Multiplication with Fun Games on Prodigy": 1 +"1st Grade Science: Discovering the Solar System through Interactive Planetarium": 1 +"3rd Grade English: Enhancing Vocabulary through Reading Roald Dahl’s ’The Magic Finger’": 1 +"8th Grade Social Studies: The Renaissance Era - The Influence of Art and Culture": 1 +"4th Grade’s Excursion into Meteorology: Understanding Weather Patterns through Interactive Models": 1 +"7th Grade Physics: Exploring the Principles of Light and Color using Prism Experiments": 1 +"9th Grade Literature: Analyzing Themes of Survival in Jack London’s ’Call of the Wild’": 1 +"1st Grade Art: Learning Shapes and Colors through Collage Making": 1 +"6th Grade Geography: Exploring Cultures and Landscapes of Asia with Virtual Tours": 1 +"4th Grade Music: Introduction to Rhythm - Learning the Drums with Sheet Music": 1 +"2nd Grade Mathematics: Understanding Addition and Subtraction through Interactive Whiteboards and Kahoot Integration": 1 +"The Power of Metaphors in Literature: An 8th Grade English Course": 1 +"4th Grade Geography: Unraveling the Mysteries of the Amazon Rainforest through Satellite Imagery and VR Tours": 1 +"2nd Grade Reading: Engaging with Fairy Tales and Myths through Audible Storytelling": 1 +"8th Grade Science: Utilizing Google Slides for In-depth Examination of Photosynthesis Process in Plant Cells": 1 +"Pre-Kindergarten Physical Education: Using Smart Devices for Interactive Exercise Games": 1 +"2nd Grade Science: Harnessing Wind Power for Sustainable Energy Generation": 1 +"6th Grade History: World War II Tactics - Decoding the Enigma Machine: The Revolutionary Impact of Cryptography": 1 +"Kindergarten Art: Understanding Colors and Shapes with Drawing Tablets and Artistic Software": 1 +"7th Grade Sociology: The Role of Hieroglyphics in Ancient Egyptian Society and its Influence on Modern Writing Systems": 1 +"4th Grade Mathematics: Exploring Geometry with 3D Modeling Software ": 1 +"9th Grade Science: The Impact of Nuclear Fission and Fusion in the Atomic Age": 1 +"7th Grade English: Mastering Poetry Analysis with Digital Annotation Tools": 1 +"3rd Grade Art: Discovering Symmetry and Shapes through Origami": 1 +"8th Grade Social Studies: The Influence of the Silk Road on Ancient Trade and Culture ": 1 +"5th Grade Language Arts: Enhancing Creative Writing Skills using Interactive Storytelling Platforms": 1 +"3rd Grade Mathematics: Introduction to Money Management with Virtual Currency Games": 1 +"10th Grade History: The Role of the Transcontinental Railroad in the Expansion of the American West": 1 +"7th Grade Music: Exploring the Evolution of Jazz and the Impact of Improvisation Using Music Editing Software": 1 +"12th Grade Language Arts: Unraveling the Themes of Existentialism in Albert Camus’ Works": 1 +"8th Grade Geography: Understanding Plate Tectonics through Augmented Reality Simulations": 1 +"9th Grade Chemistry: The Role of Molecular Structures in Modern Medicine - Studying Biochemistry through 3D Modelling": 1 +"5th Grade Language Arts: Enhancing Reading Comprehension using Interactive Storytelling Apps": 1 +"11th Grade Astronomy: Exploring the Milky Way Galaxy with Virtual Planetarium Software": 1 +"Advanced Learning Strategies: Incorporating the Oculus Rift for Immersive VR Experiences in 7th Grade Ancient Greek Philosophy Studies": 1 +"2nd Grade Mathematics: Building Addition Skills with Interactive Whiteboards and Gamification": 1 +"4th Grade Science: The Role of Solar Energy in Sustainable Living - An Interactive Exploration of Solar Panels": 1 +"6th Grade English: Boosting Vocabulary Acquisition through Word Games and Digital Flashcards": 1 +"5th Grade History: Investigating the Use of the Wheel in Ancient Mesopotamian Innovations through Virtual Field Trips": 1 +"2nd Grade Environmental Studies: Understanding the Importance of Recycling through Interactive Waste Management Simulations.": 1 +"1st Grade Science: Exploring Weather Patterns and Seasons through Interactive Models": 1 +"6th Grade Art: Advancing Portraiture Skills with Digital Sketching Tools": 1 +"3rd Grade Music: Creating Rhythms and Melodies using Recycled Instruments": 1 +"3rd Grade Social Studies: Understanding Local History through Field Trips": 1 +"5th Grade Physical Education: Grasping Basketball Fundamentals through Interactive Games": 1 +"5th Grade Mathematics: Geometry and Shapes through Fun Puzzles": 1 +"8th Grade English Language Arts: Boosting Story Writing Skills through Metaphors and Symbolism": 1 +"10th Grade Mathematics: Understanding Geometry Basics with Interactive 3D Models": 1 +"4th Grade Physical Education: Mastering Basic Gymnastic Movements with Guided Demonstrations": 1 +"Engaging 1st Grade Mathematics: Learning Numbers and Simple Calculations through Interactive Games": 1 +"5th Grade History: Exploring Ancient Civilizations through Virtual Reality Tours": 1 +"9th Grade Literature: Understanding Shakespeare’s Influence on Modern Drama through Plays Analysis": 1 +"10th Grade Biology: Deciphering DNA, Genes, and Chromosomes through Genetic Engineering using Microscopy with a Focus on Genetic Disorders": 1 +"3rd Grade Basic Geography: Discovering Landforms with Interactive Maps, Topographic Scale and Climate Change Awareness": 1 +"6th Grade Physical Education: Introduction to Yoga with Emphasis on Breathing Techniques": 1 +"Art Education: Exploring Colors and Textures with Acrylic Painting for 4th Graders": 1 +"7th Grade Music: Analyzing Mozart’s Contribution to Classical Music through Musicology ": 1 +"11th Grade Music: Rhythm and Rhyme - Comprehending Rap Lyrics through Digital Beat Making": 1 +"2nd Grade Science: Exploring Animal Habitats with Binoculars: A Closer Look at Birds, Mammals, and Reptiles": 1 +"Mastering 1st Grade Subtraction Skills: A Comprehensive Understanding of Number Line Technique using Interactive Whiteboards": 1 +"7th Grade Geography: Exploring Plate Tectonics and Earthquakes using Interactive Maps": 1 +"Understanding the Impact of the Industrial Revolution on Modern Society in 5th Grade Social Studies": 1 +"1st Grade English: Phonics and Vocabulary Building through Interactive Storytelling": 1 +"6th Grade Science: Investigating Photosynthesis and Plant Life Cycles through Experiments ": 1 +"3rd Grade Mathematics: Exploring Geometric Shapes with Tangrams": 1 +"8th Grade Music: Composing Original Melodies through Digital Audio Workstations": 1 +"7th Grade History: The Civil Rights Movement, Nonviolent Protests, and the Legacy of Martin Luther King Jr.": 1 +"4th Grade Language Arts: Enhancing Reading Comprehension through Graphic Novels": 1 +"Second Grade Art: Understanding Color Theory through Painting and Collage": 1 +"5th Grade Science: The Solar System, Planet Composition, and the Understanding of Gravity": 1 +"7th Grade Music: Delving into Beethoven’s Symphonies using Digital Scores, Yamaha P-125 Digital Piano and Audacity DAW Software": 1 +"4th Grade Science: Grasping Photosynthesis and Global Warming through Interactive Animations": 1 +"2nd Grade Science: Discovering the Water Cycle with Rain Gauge Experiments and Evaporation Illustration Charts": 1 +"10th Grade Social Studies: Deciphering Ancient Civilizations with Hieroglyphic Inscriptions": 1 +"5th Grade Social Studies: Examining the Impact of the Cotton Gin and the Locomotive during the Industrial Revolution": 1 +"8th Grade Language Arts: Employing Apache Spark for Text Analysis in Studying Classical Literature via Project Gutenberg": 1 +"3rd Grade Physical Education: Learning Cooperation through Tug-of-War Activities": 1 +"9th Grade History: The Enlightenment Period: The Influence of the Printing Press on the Development of Encyclopedias in Europe": 1 +"6th Grade Music: Charting the Evolution of Romantic Music: Piano Forte Expertise and Homophony in Schubert’s Compositions using MIDI Keyboards": 1 +"4th Grade Mathematics: Investigating Geometric Patterns with Digital Protractors": 1 +"4th Grade History: Exploring Ancient Egypt through Virtual Reality and Google Arts & Culture": 1 +"6th Grade Math: Understanding Geometry and Measurement using Tinkercad and Geogebra": 1 +"9th Grade Art: Discovering the Influence of Pop Art through Acrylic Painting and Collage Techniques": 1 +"3rd Grade Science: Studying Plants Life Cycle and Photosynthesis through Interactive Activities and Microscopic Exploration": 1 +"2nd Grade Art: Learning about Textures and Patterns with Paper Mache and Origami Techniques": 1 +"7th Grade Biology: Investigating Human Anatomy and Physiology using 3D Models and Virtual Dissection": 1 +"6th Grade: Understanding Weather Patterns and Forecasting using Online Meteorology Tools": 1 +"8th Grade Physical Education: Improving Basketball Techniques with Motion Capture Technology": 1 +"5th Grade Geography: Navigating the World with GPS and Google Maps": 1 +"Exploring Metaphors in Maya Angelou’s ’I Know Why the Caged Bird Sings’ through Nearpod and Quizlet in 9th Grade English Literature: Innovative Classroom Approaches": 1 +"6th Grade Astronomy: Unraveling the Solar System through Virtual Planetarium": 1 +"7th Grade Maths: Mastering Geometry with Interactive Shapes and 3D Modelling": 1 +"2nd Grade Social Studies: Exploring Community Roles through Role Play and Interactive Town Maps": 1 +"9th Grade Basketball: Improving Shooting Efficiency with the Arc Shot Training Tool": 1 +"5th Grade History: Discovering the Roman Empire with Virtual Reality and 3D Reconstruction ": 1 +"3rd Grade English: Using Stop-Motion Animation for Fairy Tale Retellings in Creative Writing": 1 +"5th Grade Science: Exploring the Water Cycle using Interactive Models and Augmented Reality": 1 +"Healthy Eating Habits: 7th Grade Health and Wellness Course on Balanced Diet and Meal Planning": 1 +"6th Grade Geography: Journey through the Amazon Rainforest with Virtual Tours and Tribal Artifacts": 1 +"2nd Grade English: Poetry and Performance: Expressing Emotions through Masks and Body Language": 1 +"5th Grade Geography: Exploring World Landforms and Climate Zones through Augmented Reality": 1 +"1st Grade Math: Grasping Basic Addition and Subtraction with Interactive Digital Puzzles": 1 +"4th Grade Art: Learning Color Theory and Composition through Collage Making": 1 +"Kindergarten Science: Familiarizing with Plants and Animals through Interactive Mobile Apps": 1 +"2nd Grade Reading: Deepening Understanding of Fairy Tale Themes through Drama and Puppets": 1 +"3rd Grade Physical Education: Introducing Gymnastics Fundamentals with Video Demonstrations": 1 +"6th Grade History: Examining Civil Rights Movements through Graphic Novels and Discussion Forums": 1 +"9th Grade Health: Understanding Anatomy and Physiological Processes with 3D Models": 1 +"7th Grade Music: Discovering World Music Genres through Interactive Listening Stations": 1 +"3rd Grade Writing: Enhancing Spelling and Punctuation Skills through Gamified Learning Platforms.": 1 +"6th Grade Geography: Navigating the World’s Biomes with Virtual Reality": 1 +"4th Grade History: Ancient Civilizations and the Role of Papyrus in Communication": 1 +"Exploring the Influence of the Spanish Influenza on World War I: Delving into the World of Pandemics and Warfare in 3rd Grade History": 1 +"10th Grade Physical Education: Understanding Basketball and the Physics of Dribbling": 1 +"1st Grade Mathematics: Mastering Addition and Subtraction through Board Games": 1 +"Kindergarten Environmental Studies: Introduction to Plant Life Cycles and Home Gardens": 1 +"The Breakdown of the British Empire: An In-depth Look at Colonialism in a 11th Grade History Course Using Interactive Maps": 1 +"8th Grade English: Novel Study and the Application of E-books and Digital Libraries": 1 +"10th Grade Health Education: Comprehensive Wellness and the Use of Health Tracking Apps with Emphasis on Hydration Importance": 1 +"7th Grade Economics: The Industrial Revolution: The Birth of Mass Production and Its Effects on the Global Economy": 1 +"5th Grade Geography: Exploring the African Continent using Google Earth and Virtual Reality": 1 +"Third Grade History: The Influence of the Printing Press on Renaissance Culture": 1 +"10th Grade Social Studies: The French Revolution and the Rise of the Guillotine": 1 +"5th Grade Science: Understanding the Human Body Systems with Virtual Anatomy Labs": 1 +"7th Grade Physical Education: Promoting Wellness through the Fundamentals of Tai Chi": 1 +"Kindergarten Music: Learning the Basics of Sound and Tone with Interactive Rhythm Apps": 1 +"Kindergarten Music: Exploring Tempo and Dynamics through Percussion Instruments and Audacity Sound Editing Software": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Skills with Kahoot! Interactive Quizzes": 1 +"Studying Monarch Butterfly Migration in 10th Grade Biology using Virtual Reality with Oculus Rift, Google Cardboard, and HTC Vive": 1 +"8th Grade English Literature: Decoding Metaphors in Shakespeare’s Plays using Graphic Novel Adaptations": 1 +"8th Grade Literature: Exploring Themes in Classic Novels Through Group Discussions and Projects": 1 +"9th Grade World History: The Industrial Revolution and its Impact on Modern Society": 1 +"12th Grade Biology: Understanding Cellular Metabolism and Photosynthesis using Lab Experiments": 1 +"1st Grade Music: Identifying Sound Patterns with Hand Drums and Maracas": 1 +"3rd Grade Mathematics: Introducing Multiplication Concepts through Counting Sticks and Number Line Activities": 1 +"4th Grade Language Arts: Spelling and Vocabulary Enhancement Through Interactive Word Games": 1 +"Crafting Digital Stories with iMovie: A Multimedia Course for 3rd Graders": 1 +"6th Grade Music: Mastering Treble Clef Notes: Learning to Read Sheet Music with Virtual Piano": 1 +"5th Grade Science: Exploring The Solar System with Interactive 3D Models": 1 +"4th Grade Mathematics: Decimals and Percentages - Understanding Relationships with Fractional Concepts and Interactive Tools": 1 +"7th Grade Biology: Exploring Marine Life with ROV Technology and 3D Scanning Techniques": 1 +"3rd Grade History: Understanding The Role of Telegraph in Communication Evolution": 1 +"5th Grade Astronomy: Investigating Planets through Thermal Imaging and Hubble Telescope Pictures": 1 +"Introduction to Organic Farming and Soil Quality Monitoring: A 4th Grade Agricultural Science Course": 1 +"6th Grade International Relations: Decoding Diplomacy through Project-Based Learning and Flowcharts": 1 +"4th Grade Music Theory: Understanding Melodies and Harmonies with Music Production Software": 1 +"2nd Grade Social Studies: Discovering National Monuments and Landmarks through Augmented Reality and 3D Modeling": 1 +"1st Grade Language Arts: Fun with Phonics using Interactive Games and Speech Recognition Software": 1 +"3rd Grade Visual Arts: Exploring Perspective and Shadows with Digital Painting Apps": 1 +"Kindergarten Physical Education: Utilizing Bean Bags in Balance Games & Basic Gymnastics Movements": 1 +"5th Grade Geography: Understanding World Maps with Augmented Reality Tools": 1 +"4th Grade Mathematics: Exploring Decimal Numbers with Base Ten Blocks & Abacus: A Focus on Division Concepts": 1 +"8th Grade Physics: Understanding Electromagnetism - Investigating Current and Fields through Faraday’s Laws": 1 +"8th Grade Geometry: Exploring Shapes with 3D Modeling Software and Virtual Reality": 1 +"4th Grade English: The Excitement of Verbs through Interactive Online Games": 1 +"2nd Grade Science: Discovering Dinosaurs through Fossil Studies": 1 +"1st Grade Reading: Enhancing Vocabulary through Fairy Tales and the Reading Rainbow App": 1 +"12th Grade Calculus: Mastering Derivatives and Integrals through Real-World Problems using Wolfram Alpha Software": 1 +"3rd Grade Art: Exploring Shadows and Light using Charcoal and Smudging Techniques": 1 +"1st Grade History: Learning about Early Civilizations through Virtual Reality Tours.": 1 +"8th Grade Science: Grasping Genetics using AncestryDNA and 23andMe": 1 +"6th Grade History: Unveiling Ancient Civilizations through Minecraft: Education Edition": 1 +"11th Grade Computer Science: Mastering Python Programming with Raspberry Pi": 1 +"4th Grade Mathematics: Exploring Fractions using Everyday Kitchen Measurements": 1 +"10th Grade Physical Education: Understanding Sports Biomechanics using 3D Motion Analysis": 1 +"8th Grade Music: Composing Harmonies with GarageBand": 1 +"2nd Grade Art: Creating Colorful Stories with Crayola and Story Visualizer": 1 +"7th Grade Geography: Navigating Oceania using Google Earth VR": 1 +"3rd Grade Language Arts: Writing Engaging Dialogues using Microsoft Office Sway": 1 +"Kindergarten Science: Exploring Weather Patterns with Interactive Weather Stations": 1 +"5th Grade Physical Education: Improving Soccer Skills with 360-degree Cameras and Innovative Drills": 1 +"7th Grade History: The Renaissance Era - The Impact of the Printing Press": 1 +"1st Grade Science: Exploring The World of Insects with Microscopes in Our Backyard": 1 +"Pre-school Art: Learning Colors and Shapes with Finger Paints": 1 +"3rd Grade Computer Studies: Introduction to Coding through Scratch and Raspberry Pi": 1 +"6th Grade Geography: Tornados and Understanding Natural Disasters": 1 +"2nd Grade Mathematics: Understanding Fractions with Interactive Whiteboard Games": 1 +"5th Grade Literature: Exploring the Influence of Television on Modern Storytelling": 1 +"Kindergarten French: Building Basic Phrases with Rosetta Stone and Memrise Activities": 1 +"10th Grade Music: Uncovering the Role of Synthesizers in Electronic Music": 1 +"6th Grade Physical Education: Understanding Soccer Tactics: Emphasis on Defensive Strategies": 1 +"9th Grade History: The Impact of the Printing Press During the Renaissance Period": 1 +"6th Grade: European History: Exploring the Middle Ages with Minecraft Simulation Games": 1 +"4th Grade Physical Education: Enhancing Balance and Flexibility with Yoga Poses": 1 +"8th Grade Geography: Investigating Climate Variations Through Asian Regions Using Satellite Imagery": 1 +"5th Grade History: Unraveling the Mysteries of the Egyptian Pyramids": 1 +"6th Grade English: Creating Narratives with Interactive Animation: Techniques and Principles": 1 +"7th Grade Geography: Understanding the Impact of Rivers and Mountains on Ancient Civilizations": 1 +"4th Grade Science: Exploring the World of Insects Through Microscopic Study and Virtual Tours": 1 +"9th Grade History: Decoding the Russian Revolution through Graphic Novels": 1 +"5th Grade Geometry: Unveiling Shapes and Patterns with Tangrams": 1 +"3rd Grade Music: Discovering Harmonies and Chords with Keyboards": 1 +"5th Grade Environmental Science: Weather Systems: Grasping Cloud Formations and Rainfall Patterns": 1 +"11th Grade Physics: Engaging Electromagnetic Field Theories with Interactive Simulations": 1 +"2nd Grade Geography: Navigating Global Landmarks using Virtual Reality and Mind Maps": 1 +"Civil Rights Movement in 9th Grade History: Analyzing Martin Luther King Jr.’s Speeches": 1 +"8th Grade Physical Education: Introduction to Yoga with Emphasis on Breathing Techniques": 1 +"3rd Grade: Understanding Cultures through World Cuisine in Social Studies": 1 +"5th Grade Science: Animal Physiology and Dissection: A Preliminary Course": 1 +"7th Grade Art: Perfecting Pastels with Blending Techniques": 1 +"Introduction to 7th Grade Drama: A Module on Scriptwriting, Directing, and Stage Production": 1 +"3rd Grade Technology: Discovering Ocean Life through Virtual Reality Experiences": 1 +"10th Grade Health Education: The Impact of Mindful Eating on Physical Wellbeing and Mental Health": 1 +"8th Grade Earth Science: Exploring Geology through Real-time Earthquake Data and Plate Tectonics Analysis": 1 +"12th Grade Music: An Exploration of Jazz - Saxophone and the Concept of Improvisation": 1 +"7th Grade Geometry: Navigating the World of Angles, Shapes, and Theorems - A Deep Dive into Pythagorean Theory": 1 +"5th Grade PE: The Role of Dance in Promoting Mobility and Emotional Expression": 1 +"12th Grade Chemistry: Leveraging Augmented Reality and Python Programming for Molecular Structure Analysis": 1 +"10th Grade Social Studies: The Role of Propaganda during the American Revolutionary War": 1 +"The Impact of Graphic Design Software on 5th Grade Study of Renaissance Art: Focusing on Frescoes and Adobe Photoshop.": 1 +"4th Grade History: Exploring Ancient Civilizations through Augmented Reality": 1 +"1st Grade Mathematics: Understanding Addition & Subtraction with Colorful Counting Beads": 1 +"2nd Grade Science: Discovering Plant Life Cycle and Photosynthesis with Interactive Garden Projects": 1 +"5th Grade Literature: Engaging Storytelling - Classic Fables and Myths through Puppetry and Shadow Theatre": 1 +"3rd Grade Art: The Basics of Portrait Drawing Using Charcoal and Graphite Pencils": 1 +"4th Grade Geography: Exploring the US States - Learning about Capitals and Landmarks through Virtual Tours": 1 +"2nd Grade Music: Exploring Melody and Rhythm with Ukulele and Digital Music Apps": 1 +"1st Grade Social Studies: Embracing Diversity - Learning about Different Cultures through Folk Tales and Festivals": 1 +"3rd Grade Science: Understanding Weather Patterns & Climate Change through Interactive Weather Stations": 1 +"5th Grade Mathematics: Fractions and Decimal Mastery using Cuisenaire Rods and the Number Line Method": 1 +"4th Grade Math: Fractions Decoding with Visual Aids and Manipulatives": 1 +"7th Grade Geography: Uncovering American Landforms using Interactive 3D Models": 1 +"Kindergarten Environmental Studies: Exploring Weather Patterns through Simple Experiments": 1 +"Understanding Photosynthesis in Second Grade Environmental Studies: A Hands-on Approach with Leaf Dissection": 1 +"7th Grade History: Exploring Medieval Europe using Augmented Reality Tools": 1 +"9th Grade Physical Education: Achieving Fitness Goals through Yoga and Holistic Nutrition": 1 +"3rd Grade Language Arts: Enhancing Vocabulary with Fun and Engaging Word Puzzles": 1 +"4th Grade History: The Civil War Experience - The Role of Railroads in Battle Strategies": 1 +"12th Grade Music: The Evolution of Classical Music through the Use of Synthesizers": 1 +"The Invention of the Wheel and its Impact on Early Civilizations for 5th Grade History": 1 +"1st Grade Mathematics: Learning Addition through Interactive Tablet Games": 1 +"3rd Grade Language Arts: Developing Writing Skills with Story Cubes": 1 +"4th Grade Art: Discovering Acrylic Painting with Palette Knives": 1 +"7th Grade Language Arts: Enhancing Spelling Skills with Digital Word Sorts": 1 +"1st Grade Science: Animal Habitats Exploration using Virtual Reality": 1 +"Analyzing the Symbolism in Emily Dickinson’s ’I’m Nobody! Who are you?’ in 8th Grade Language Arts: Utilizing Smartboards, Kahoot, TED Talks, and Google Classroom for Group Projects": 1 +"A Journey through the Inca Empire, Hieroglyphs, and Machu Picchu: Unfolding Pre-Columbian History - A Fifth Grade History Course": 1 +"3rd Grade Science: Understanding the Life Cycle of Butterflies using Time-Lapse Videos": 1 +"6th Grade: World History: Unraveling the Mysteries of Ancient Egypt through Interactive Tablet Games": 1 +"5th Grade English: Enhancing Reading Skills through Role-Playing and Drama Activities": 1 +"3rd Grade Math: Mastering Multiplication Tables with Fun Number Puzzles": 1 +"1st Grade Science: Exploring the Life Cycle of Butterflies through Augmented Reality": 1 +"8th Grade Art: The Art of Origami: Learning Japanese Culture through Paper Folding": 1 +"10th Grade English: Understanding Symbolism in Modern Literature using Interactive E-books": 1 +"7th Grade Geography: Discovering the Amazon Rainforest with Virtual Field Trips": 1 +"9th Grade Physical Education: Incorporating Heart Rate Monitors into Endurance Running Training": 1 +"5th Grade Social Studies: Learning About Democracy through Role-Playing Ancient Greek Societies": 1 +"11th Grade Physics: Understanding the Principles of Aerodynamics through Paper Airplane Designs": 1 +"8th Grade Language Arts: Analyzing Irony in Narratives through Digital Storyboards": 1 +"4th Grade History: The Influence of the Printing Press on Renaissance Europe: Exploring with 3D Models.": 1 +"7th Grade Mathematics: Understanding Probability and Statistics through Dice Games and Graphs": 1 +"10th Grade Chemistry: Exploring Organic Compounds with Virtual Lab Simulations": 1 +"3rd Grade Music: Engaging with Classical Composers through Interactive Keyboard Lessons": 1 +"Deciphering Bach’s Fugues in 8th Grade Music Class using Online Music Software and Interactive Apps": 1 +"6th Grade Earth Sciences: Grasping the Water Cycle Through Augmented Reality Models": 1 +"5th Grade History: Journeying through Ancient Egypt using Google Cardboard VR and Virtual Tours ": 1 +"2nd Grade Music: Exploring Pitch and Dynamics with Hand Bells": 1 +"11th Grade Social Studies: Comprehensive World History with a Focus on Renaissance Art and Culture": 1 +"9th Grade Physical Education: Soccer: Dribbling, Passing and Shooting Techniques": 1 +"2nd Grade Art: Discovering Patterns and Textures with Paper Mache and Collage Techniques": 1 +"2nd Grade Mathematics: Basic Addition and Subtraction with Interactive Digital Games": 1 +"The Role of Newton’s Laws in Sci-Fi Movies: An 8th Grade Physics Course": 1 +"5th Grade Geography: Understanding Earth’s Biomes using Virtual Reality Headsets": 1 +"1st Grade Science: Learning About Animal Habitats through Interactive eBooks": 1 +"Unraveling Ancient Greece with 3D Models in 7th Grade History Studies": 1 +"6th Grade English: Dive into Classic Literature with Audiobook Companions": 1 +"The Magic of Algebra: Solving Real-World Problems in a 9th Grade Mathematics Course": 1 +"3rd Grade Art: Exploring Color Theory with Digital Painting Apps": 1 +"Investigating the Depths of the Ocean: Marine Biology for 4th Graders using AR Technology": 1 +"7th Grade Science: Demystifying the Human Body with 3D Anatomy Apps": 1 +"8th Grade Mathematics: Investigating Algebraic Expressions with 3D Modelling": 1 +"9th Grade Biology: Decoding Evolution through Darwin’s Theory and DNA Sequencing": 1 +"Physical Education for 4th Graders: Agility Training using Obstacle Courses and Biomechanics Principles": 1 +"Fourth Grade Music: Mastering the Piano through Simply Piano App": 1 +"10th Grade: The Human Physiology in Health Education - An In-depth Look at the Digestive System": 1 +"Energy and Heat: 6th Grade Science’s Investigation of Volcanic Eruptions using Virtual Reality": 1 +"1st Grade Science: Exploring Oceanic Life Through Underwater Drone Footage": 1 +"4th Grade Music: Understanding Melody and Harmony through Ukulele and Notation Software": 1 +"6th Grade English: Poetry Composition using Imagery and Metaphor Practice": 1 +"8th Grade Art: Introduction to 3D Modelling with Tinkercad: A Study of Form and Function": 1 +"3rd Grade Music: Discovering Rhythm and Tempo through Drumming and Dance": 1 +"6th Grade Literature: Journeying through Fantasy Worlds in Modern Literature": 1 +"Kindergarten Science: Introduction to Animal Habitats through Interactive Storytelling": 1 +"8th Grade Social Studies: Investigating Ancient Civilizations through Virtual Reality": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction through Fun Board Games": 1 +"9th Grade Art: Interpreting Modern Art through Photography and Digital Media": 1 +"4th Grade Geography: Exploring World Landforms and Their Formation Processes": 1 +"7th Grade Technology: Coding Basics - Creating Interactive Stories with Scratch": 1 +"5th Grade Health Education: Understanding Nutrition and Healthy Eating Habits through Cooking": 1 +"1st Grade Physical Education: Introduction to Team Sports - Learning Cooperation and Coordination through Relay Games": 1 +"3rd Grade Mathematics: Exploring Geometry with Interactive Shapes and Patterns": 1 +"7th Grade Biology: Investigating Ecosystems through Terrarium Building and Observation": 1 +"2nd Grade Reading: Enhancing Vocabulary Skills with Interactive Storybook App": 1 +"6th Grade Engineering: Exploring Structures and Materials through LEGO Building Challenges": 1 +"1st Grade Art: Introduction to Color Theory: Creating Art with Virtual Painting Tools": 1 +"4th Grade Science: Investigating Weather Patterns Using Data Collection and Chart Creation": 1 +"1st Grade Social Studies: Fun with Maps - Learning Geography through Interactive Globe Exploration": 1 +"4th Grade Literature: Unlocking Classic Novels: Character Analysis and Plot Development": 1 +"7th Grade Drama: Understanding Character Motivation with Improvisation Exercises and Script Analysis": 1 +"5th Grade Technology: Exploring Digital Photography and its Impact on Visual Communication.": 1 +"8th Grade Mathematics: Exploring Geometry with Virtual Reality Tools": 1 +"Diving into Digital Art: Understanding Graphic Design for 7th Grade Students": 1 +"2nd Grade Science: Discovering Planetary Systems using Augmented Reality ": 1 +"6th Grade Language Arts: Enhancing Vocabulary Skills through Interactive Digital Games ": 1 +"7th Grade History: Exploring the Civil War Era through 3D Simulations": 1 +"1st Grade Art: Learning Shapes and Colors through Interactive Drawing Apps": 1 +"5th Grade Science: Understanding Weather Patterns through Virtual Field Trips ": 1 +"2nd Grade Language Arts: Reading Comprehension Enhancement with Animated Storybooks": 1 +"3rd Grade Mathematics: Grasping Multiplication Concepts through Interactive Math Puzzles": 1 +"4th Grade Physical Education: Learning Basic Yoga Poses through Augmented Reality": 1 +"6th Grade Geography: Exploring Earth’s Biomes through Virtual Reality Technology": 1 +"10th Grade Music: Jazz Improvisation - The Science of Syncopation and Swing": 1 +"12th Grade Environmental Science: The Role of Solar Panels in Reducing Carbon Footprint - Case Study: Germany’s Energy Transition": 1 +"3rd Grade Language Arts: Understanding Metaphors in Children’s Literature using Interactive Storytelling ": 1 +"1st Grade Music: Introduction to Melody and Harmony through GarageBand": 1 +"8th Grade English Literature: Delving into Shakespeare’s World - Understanding Iambic Pentameter in ’Romeo and Juliet’": 1 +"7th Grade Music: The Violin’s Impact on String Quartet Composition during the Romantic Era": 1 +"10th Grade Music: Mastering Guitar through a Rhythmic Journey - Detailed Analysis of Chord Progressions": 1 +"Fifth Grade History: Evaluating Rosa Parks’ Role in the Civil Rights Movement and its Influence on Modern America ": 1 +"5th Grade Music: Immersive Mozart’s Sonatas - Piano Performance and Electronic Music Production with Ableton Live.": 1 +"7th Grade Mathematics: Mastering Algebra Using Interactive Digital Tools and Gamification Techniques": 1 +"2nd Grade Geography: Exploring the World’s Biomes with Virtual Field Trips and Augmented Reality": 1 +"12th Grade Chemistry: Unraveling the Mysteries of Organic Compounds using 3D Molecular Models": 1 +"5th Grade History: Journey through Medieval Europe with VR Castle Tours and Interactive Timeline Activities": 1 +"Understanding Ecosystems and Food Chains: A 3rd Grade Science Course in Biodiversity": 1 +"2nd Grade Mathematics: Learning Basic Arithmetic through Fun iPad Games and Hands-on Activities": 1 +"7th Grade English Literature: Enhancing Literary Analysis Skills through Film Adaptations and Graphic Novels": 1 +"9th Grade Biology: Exploring the Human Body and its Systems through 3D Anatomy Software in Introductory Health Science": 1 +"Second Grade Earth Science: Discovering Volcanoes - An Interactive Introduction to Geological Processes": 1 +"4th Grade Science: Exploring Energy and Motion with Simple Machines and Hands-on Experiments": 1 +"1st Grade Mathematics: Developing Subtraction Skills with Montessori Materials": 1 +"4th Grade Geography: Exploring Weather Patterns and Climate Zones using Interactive Maps": 1 +"5th Grade Language Arts: Delving into Victorian Prose with Virtual Reality Literature Trips": 1 +"2nd Grade History: Discovering the Dinosaurs with Fossil Analysis Simulations": 1 +"4th Grade Language Arts: Understanding Play Scripts with Online Theater and Google Docs": 1 +"1st Grade Science: Discovering the Solar System through Augmented Reality and Mobile Apps": 1 +"5th Grade Mathematics: Enhancing Division Skills through Fraction Bars and Digital Manipulatives": 1 +"3rd Grade Spanish: Learning Verbs and Conjugation with Duolingo and Interactive Games": 1 +"2nd Grade Geography: Investigating the World’s Biomes using Virtual Reality Field Trips": 1 +"6th Grade History: Unveiling the Middle Ages with Minecraft and Virtual Reality Tours": 1 +"4th Grade Art: Creating Digital Masterpieces with Procreate for iPad": 1 +"8th Grade Biology: Investigating Cellular Structure using Virtual Labs": 1 +"2nd Grade Mathematics: Understanding Addition & Subtraction through the Math Learning Center App": 1 +"6th Grade Literature: Delving into Classic Novels using Audiobooks and Online Forums": 1 +"3rd Grade History: Discovering Early American Settlements through Interactive Maps": 1 +"9th Grade Physics: Exploring the Laws of Motion with Simulation Software": 1 +"1st Grade Reading: Enhancing Vocabulary with Songs, Interactive Stories, and Starfall Learning Games": 1 +"8th Grade Music: Uncovering the Origins of Rock ’n’ Roll through Soundtrap": 1 +"7th Grade Geography: Examining Global Ecosystems and their Impact on Human Culture": 1 +"5th Grade Mathematics: Exploring Geometry through Minecraft Education Edition": 1 +"7th Grade Physics: Understanding Kinematics through Virtual Reality Simulations": 1 +"6th Grade Music: The Evolution from Romantic to Modern Periods in Music History": 1 +"9th Grade Biology: DNA Sequencing and Analysis using Bioinformatics Software": 1 +"3rd Grade Environmental Science: Exploring Weather Patterns and Global Warming using Interactive Maps": 1 +"Preschool Fine Arts: Learning Textures and Patterns through Pottery": 1 +"4th Grade Arithmetic: Mastering Multiplication and Division with Online Math Tools": 1 +"6th Grade Music: Discovering Bass Clef Notes with an Electric Metronome": 1 +"2nd Grade Mathematics: Understanding Geometry and Shapes with Tangram Puzzles": 1 +"Fifth Grade History: Exploring the Declaration of Independence through Interactive Timelines": 1 +"1st Grade Music: Understanding Melody and Harmony through GarageBand Software and MIDI Keyboards": 1 +"4th Grade Geography: Exploring World Maps and Cultures through Augmented Reality Technology": 1 +"8th Grade Physics: Understanding Velocity and Friction with Interactive Simulation Software": 1 +"10th Grade Literature: Analyzing Shakespearian Themes through Digital Annotations and Online Discussions": 1 +"5th Grade Science: Exploring the Solar System with Virtual Reality and Telescope Observations": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Interactive Online Games": 1 +"7th Grade Music: Understanding Harmony and Melody through Digital Keyboards and Music Composition Software": 1 +"8th Grade History: Unveiling the American Civil War through Virtual Field Trips and Primary Source Analysis": 1 +"3rd Grade Art: Creating Animated Stories using Digital Drawing and Storyboarding Tools": 1 +"6th Grade Health: Understanding Nutrition and Diet through MyPlate and Fitness Trackers": 1 +"1st Grade Environmental Science: Learning about Animal Habitats, Weather Patterns, and Recycling": 1 +"5th Grade Geography: Understanding Earth’s Biomes through Interactive 3D Globe Models": 1 +"6th Grade Technological Studies: Introduction to Robotics with Lego Mindstorms and Coding Basics": 1 +"2nd Grade Science: Exploring the Solar System with Augmented Reality": 1 +"1st Grade Mathematics: Mastering Addition and Subtraction through Fun Board Games": 1 +"3rd Grade Art: Discovering Textures and Patterns with Clay Sculpture and Pottery": 1 +"7th Grade Music: Exploring Melody and Harmony with Keyboard Instruments and Music Theory Apps": 1 +"4th Grade Literature: Diving into Fantasy Worlds through Harry Potter and the Sorcerer’s Stone": 1 +"Kindergarten Mathematics: Learning Shapes and Numbers with Interactive Puzzles": 1 +"5th Grade History: Journey through Ancient Egypt using Virtual Reality Technology": 1 +"2nd Grade Social Studies: Understanding Community Helpers through Role Play and Interactive Activities": 1 +"7th Grade Mathematics: Application of Geometry in Architecture using SketchUp": 1 +"3rd Grade History: Journey through Ancient Egypt with Virtual Reality Tours": 1 +"2nd Grade Health: Understanding Nutrition through Organic Food Preparation": 1 +"Digital Design for 4th Graders: Exploring Symmetry with Adobe Illustrator": 1 +"7th Grade Music: Discovering Mozart’s Symphonies with a Full Orchestra using Sound Engineering Principles": 1 +"3rd Grade English: Character Development Studies using Interactive Storytelling Platforms": 1 +"6th Grade Earth Science: Investigating the Solar System through 3D Models": 1 +"7th Grade Social Studies: Understanding the Industrial Revolution through VR Experiences": 1 +"2nd Grade Life Science: Examining Plant Life Cycles with Gardening Projects": 1 +"Fifth Grade English: Improving Vocabulary Skills Using the Frayer Model": 1 +"7th Grade Art: Exploring Cubism: Creating Art with Digital Drawing Apps": 1 +"Kindergarten Health: Brushing and Flossing: The Importance of Dental Hygiene": 1 +"3rd Grade Science: Discovering the Solar System using Virtual Reality ": 1 +"5th Grade Geography: Understanding Global Climate Patterns with Weather Forecasting Software": 1 +"4th Grade Music: Mastering the Violin using Online Tuning Tools": 1 +"2nd Grade Introduction to Math: Grasping Addition and Subtraction with Interactive Math Puzzles": 1 +"7th Grade Physical Education: Integrating Dance Routines in Warm-up and Cool-down Exercises ": 1 +"10th Grade Music: Melody Construction with Electronic Keyboards using Music Sequencers": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals with Virtual Manipulatives": 1 +"4th Grade Mathematics: Grasping Area and Perimeter using Augmented Reality Tools": 1 +"5th Grade History: Exploring the Age of Exploration Using Virtual Reality Technology": 1 +"Preschool Health Education: Understanding the Importance of Hygiene through Fun Interactive Apps": 1 +"5th Grade Earth Science: Investigating Geological Formations with Augmented Reality": 1 +"Orchestra Evolution: Assessing Beethoven’s Impact on Symphony Composition using Sibelius Software in 7th Grade Music": 1 +"10th Grade World History: The Role of Cryptography in World War II": 1 +"2nd Grade Language Arts: Journey into Narratives - Creating a Story with Puppetry Techniques": 1 +"Third Grade Physics: Understanding Gravity through Experiments and Digital Models": 1 +"4th Grade Botany: Discovering the World of Trees with Interactive Digital Field Trips": 1 +"The Influence of Trade Routes on Medieval Societies: A 7th Grade History Course": 1 +"4th Grade Arithmetic: Tackling Everyday Math Problems with the Help of Augmented Reality Tools": 1 +"6th Grade Science: Exploring Ecosystems: A Study of Coral Reefs": 1 +"8th Grade Language Arts: Analyzing Modern Poetry: The Use of Personification": 1 +"3rd Grade Math: Exploring Shapes and Patterns on Tablets": 1 +"4th Grade Geography: The Role of Rivers in Ancient Civilizations": 1 +"7th Grade Physical Education: The Impact of Dance on Emotional Well-being": 1 +"3rd Grade English: Improving Reading Comprehension through Interactive Storytelling Apps": 1 +"6th Grade Art: Crafting Landscapes: An Introduction to Watercolor Techniques": 1 +"7th Grade Music: Exploring the Use of Synthesizers in Electronic Music": 1 +"1st Grade History: Understanding the Importance of the Great Wall in Ancient China": 1 +"4th Grade Art: Creating Digital Art: An Introduction to Procreate’s Brushes and Layers": 1 +"11th Grade Biology: Understanding Cellular Processes through Interactive 3D Modelling": 1 +"10th Grade Literature: The Impact of the Printing Press on Renaissance Poetry": 1 +"7th Grade Geometry: Mastering Shapes and Angles with Augmented Reality Tools": 1 +"2nd Grade Language Arts: Adventures in Storytelling with Digital Puppetry": 1 +"Second Grade Science: Wind Energy and Its Effect on Renewable Resources": 1 +"4th Grade Writing: Enhancing Creative Writing Skills with Storybird for Blogging on WordPress": 1 +"5th Grade Geography: The French Revolution - From the Guillotine to the Steam Engine": 1 +"6th Grade Astronomy: The Space Race - The Significance of the Sextant in Lunar Navigation": 1 +"Third Grade History: Journeying through the Medieval Era using Interactive Jousting Simulations": 1 +"Kindergarten Art: Understanding Textures and Forms through Clay Modelling Techniques": 1 +"5th Grade Mathematics: Exploring Geometry through Origami and Spatial Reasoning": 1 +"7th Grade Science: Investigating Ocean Ecosystems using Underwater Drones and Sonar Technology": 1 +"2nd Grade History: Understanding Community Traditions with Ancestry.com and MindMeister Mind Mapping Techniques": 1 +"6th Grade History: The Influence of Printing Press during the Renaissance and Age of Discovery": 1 +"3rd Grade: Expanding World Geography Knowledge through Virtual Reality Technology": 1 +"Second Grade Language Arts: Enhancing Reading Skills using Starfall Learning Software": 1 +"10th Grade Science: Grasping the Concepts of Genomics: An Introduction to Molecular Biology": 1 +"4th Grade Science: Unveiling the Secrets of Roman Engineering": 1 +"1st Grade Language Arts: Developing Creative Writing Skills Through Clay Animation and SmartBoards": 1 +"Introduction to Quadratic Equations: 8th Grade Algebra with a Focus on Polynomial Functions": 1 +"2nd Grade Physical Education: Understanding Fitness & Basketball Dribbling using Training Ladders and Smart Hoop Technology": 1 +"8th Grade English: Novel Interpretation Through Theme Exploration, Character Development, and Metaphor Recognition": 1 +"10th Grade Algebra: Grasping Equations and Inequalities through Quadratic Functions and Graphs": 1 +"11th Grade Chemistry: The Impact of the Discovery of Penicillin on Medical Practices during the 20th Century": 1 +"9th Grade History: The Significance of the Wright Brothers in the Evolution of Aviation": 1 +"1st Grade Music: Learning Melody and Pitch with a Xylophone": 1 +"4th Grade Mathematics: Discovering Multiplication Through Gardening": 1 +"Second Grade Elementary: Understanding the Rainforest Ecosystem with Augmented Reality Experiences": 1 +"Seventh Grade Language Arts: Improving Vocabulary Acquisition Using Synonyms and Antonyms": 1 +"3rd Grade Language Arts: Leveraging Tablets for Intermediate Reading Comprehension and Word Formation with Interactive Apps": 1 +"4th Grade Science: Introduction to Simple Machines through Lego Building Projects": 1 +"7th Grade Math: Engaging with Geometry Through Origami and 3D Modeling": 1 +"8th Grade Literature: Exploring Renaissance Poetry through Dramatization and Recitation": 1 +"5th Grade Geography: Understanding the Amazon Rainforest through Virtual Field Trips and Interactive Maps": 1 +"3rd Grade History: Learning about Ancient Egypt through Clay Modeling and Virtual Reality": 1 +"9th Grade Physical Education: Boosting Endurance and Agility through Circuit Training and Yoga": 1 +"2nd Grade Astronomy: Discovering Constellations with DIY Star Projector": 1 +"8th Grade Art: Advanced Pottery Techniques Inspired by Ancient Greek Artifacts": 1 +"12th Grade Economics: Analyzing Global Trade through Simulation Games and Case Studies": 1 +"1st Grade Science: Discovering Animal Habitats with Interactive Multimedia and Nature Walks": 1 +"7th Grade Language Arts: Mastering Sentence Structure with Interactive Grammar Games": 1 +"5th Grade Mathematics: Investigating Geometry with Minecraft through Architectural Wonders": 1 +"2nd Grade Geography: Understanding Landforms through Virtual Reality Exploration": 1 +"11th Grade Physical Education: Enhancing Soccer Skills with Motion Sensor Analysis": 1 +"10th Grade Health: Exploring the Human Immune System using Virtual Reality Simulation": 1 +"1st Grade: Enhancing Creativity and Problem-Solving Skills through Augmented Reality Toys": 1 +"8th Grade Physical Education Course: Understanding the Importance of Hydration and Electrolytes: A Comprehensive Look into the MyFitnessPal App ": 1 +"3rd Grade Social Studies: Impact of Radio Broadcasting in 20th Century Civil Rights Movement: An Examination of 10 Key Events": 1 +"7th Grade Science: The Development of Microscopes and Their Impact on the World of Biology": 1 +"5th Grade Geography: Exploring Landmarks and Cultures through Virtual Tours and Digital Journeys": 1 +"4th Grade Science: Exploring the Solar System - Planets and their Moons: Telescopic Observations and Model Creation": 1 +"8th Grade History: The Renaissance Period - The Impact of Printing Press on Knowledge Dissemination": 1 +"Physics of Sports: Understanding Momentum with Soccer Ball Kicks, Impulse-Force Graphs, and Video Analysis": 1 +"8th Grade Art: Charcoal Sketching: Capturing the Mystery of Light and Shadow": 1 +"2nd Grade Elementary: Enhancing Reading Skills with Interactive Storybook Apps: Learning Phonics and Vocabulary": 1 +"8th Grade Mathematics: Discovering Algebra through Balance Scales and Equation Solving": 1 +"6th Grade Art: Delving into Acrylic Abstract Art with Palette Scraping Techniques and Texture Mediums": 1 +"4th Grade Mathematics: Exploring Geometry with Tangram Puzzles: Shapes and Symmetry": 1 +"10th Grade Music: The Magic of Choir - The Role of Harmony in Choral Music through Voice Modulation": 1 +"11th Grade Trigonometry: Navigating Sine, Cosine, and Tangent through Real-World Surveying Problems using Geogebra Software": 1 +"6th Grade Mathematics: Understanding Fractions and Decimals through Cooking Measurements": 1 +"4th Grade Physical Education: Soccer Ball Handling Skills: The Inside and Outside Cut": 1 +"3rd Grade Science: Exploring a Butterfly’s Life Cycle with Virtual Reality Technology": 1 +"Analyzing Weather Patterns and Global Warming in 7th Grade Science using Data Visualization Techniques": 1 +"Kindergarten Science: Learning about Desert Ecosystems by Creating a Cactus Garden and Observing Evaporation": 1 +"9th Grade Football: Enhancing Quarterback Throwing Accuracy with the Passer Rating System": 1 +"4th Grade Science: Discovering Aquatic Food Webs in Marine Life": 1 +"2nd Grade Language Arts: Enhancing Reading Comprehension Skills Through Puppet Storytelling and Interactive Whiteboards": 1 +"Fifth Grade History: The Influence of the Steam Engine, Penny Papers, and Penny Dreadfuls on the Industrial Revolution": 1 +"1st Grade Art: A Beginners Guide to Sculpture - Molding with Clay and Exploring Texture": 1 +"4th Grade Mathematics: Understanding Multiplication and Division through Fun Board Games": 1 +"7th Grade History: The Impact of the Printing Press on Information Dissemination ": 1 +"3rd Grade English: Enhancing Vocabulary Skills with Synonyms and Antonyms using Interactive Online Games": 1 +"9th Grade Geography: Understanding Topography through Virtual Reality": 1 +"6th Grade Mathematics: Decoding the Mystery of Decimals using Manipulatives and Digital Platforms": 1 +"6th Grade Science: Unveiling Earth’s Biomes through Virtual Field Trips": 1 +"4th Grade Arithmetic: Discovering Division Techniques with Arrays": 1 +"10th Grade History: The Influence of the Cold War on Modern Politics": 1 +"12th Grade Biology: Unraveling Evolution with Mendelian Genetics and DNA Sequencing": 1 +"6th Grade Mathematics: Mastering Percentages with Number Lines and Real-Life Applications": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality and Augmented Reality": 1 +"2nd Grade Mathematics: Understanding Shapes through Interactive 3D Modeling": 1 +"7th Grade History: Delving into Ancient Egypt: An Interactive Journey through Virtual Reality": 1 +"6th Grade Geography: Exploring Earth’s Biomes with Augmented Reality and Interactive Maps": 1 +"10th Grade Biology: Examining Cellular Structures Through Microscopic Augmented Reality": 1 +"7th Grade Language Arts: Analyzing Symbolism in Short Stories Using Interactive Software": 1 +"5th Grade Social Studies: Exploring Colonial America Through VR Technology and Virtual Field Trips": 1 +"9th Grade Physical Education: Basketball Techniques and Game Analysis through Wearable Technology": 1 +"3rd Grade Science: Understanding the Life Cycle of Butterflies Using Augmented Reality": 1 +"8th Grade Physics: Grasping the Concept of Gravity through Virtual Reality Experiments": 1 +"7th Grade Graphic Design: Cultivating Imagination with Vector Graphics and Digital Drawing Tools": 1 +"2nd Grade Biology: Investigating Animal Life Cycles using Timelapse Videos and Hands-On Experiments": 1 +"5th Grade Earth Science: Exploring Climate Change through Ice Core Analysis": 1 +"Kindergarten Environmental Studies: Understanding Wind Energy and the Role of Wind Turbines in Power Generation ": 1 +"6th Grade Literature: Enriching Narrative with Metaphorical Language ": 1 +"10th Grade Chemistry: Uncovering Chemical Reactions through Virtual Lab Simulations ": 1 +"5th Grade Geology: Discovering Fossils and Paleontology through Excavation Simulations": 1 +"4th Grade Writing: Enhancing Narrative Skills through Comic Strip Creation and Online Writing Workshops": 1 +"2nd Grade Reading: Adventure in Storytelling with Interactive E-books ": 1 +"2nd Grade Music: Learning Rhythm Recognition with Hand Percussion and Rhythm Sticks": 1 +"3rd Grade Mathematics: Understanding Fractions through Interactive Digital Puzzles": 1 +"6th Grade Geography: The Age of Dinosaurs - Exploring Paleogeography Using Interactive Maps": 1 +"5th Grade Language Arts: Boosting Writing Skills through Virtual Reality Story Creation": 1 +"1st Grade Language Arts: Mastering Alphabet Recognition and Phonemic Awareness with Augmented Reality Flashcards": 1 +"Advanced Visual Arts: Utilizing 3D Printing Technology to Sculpture Creation for 11th Grade": 1 +"4th Grade Biology: Exploring Cellular Structures and Functions Using Microscopic Imaging": 1 +"12th Grade Business Studies: Navigating the World of Cryptocurrency with Augmented Reality Using HoloLens": 1 +"Second Grade Earth Science: Discovering Rock Cycle Processes Through Virtual Field Trips and Interactive Simulations": 1 +"8th Grade Music: Exploring the Evolution of Pop Music through Digital Audio Analysis": 1 +"2nd Grade Science: Journey to the Moon: Understanding the Basics of Astronomy through Interactive Star Maps": 1 +"8th Grade History: Analyzing Industrial Revolution through Interactive Timelines and Digital Models": 1 +"7th Grade Physical Education: Basketball Techniques: Improving Strategies through NBA Gameplay Analysis": 1 +"6th Grade Social Studies: Unveiling the Mysteries of the Mayan Civilization": 1 +"3rd Grade Mathematics: Mastering Multiplication with Mathletics and Interactive Digital Puzzles": 1 +"2nd Grade Reading: Building Vocabulary with Interactive Phonics Games and Smartboard Activities": 1 +"4th Grade Science: Discovering the Basics of Electricity with LittleBits and Hands-on Experiments": 1 +"5th Grade Language Arts: Understanding Prose and Drama through Interactive Storytelling and Digital Exploration": 1 +"1st Grade Mathematics: Learning Basic Counting and Number Recognition with Fun Online Games": 1 +"3rd Grade Science: Exploring the Life Cycle of Plants Using Interactive Diagrams": 1 +"7th Grade Geography: Unraveling World’s Topography with Virtual Reality Exploration.": 1 +"6th Grade Technology: Understanding Coding Basics through Scratch Software": 1 +"3rd Grade Geography: Investigating Earth’s Biomes Through Interactive Ecosystem Models": 1 +"1st Grade Science: Discovering Animal Habitats with Augmented Reality": 1 +"8th Grade Literature: Analyzing Symbolism in Classic Novels through Virtual Book Clubs": 1 +"5th Grade History: The Role of the Silk Road in the Spread of Culture and Trade in Ancient Times": 1 +"6th Grade Mathematics: Mastering Fractions with Virtual Manipulatives and Online Games": 1 +"Exploring Multiplication in 3rd Grade Mathematics through Mathletics: Fun with Interactive Challenges": 1 +"Fourth Grade Music: Discovering Rhythm and Tempo with Virtual Drums": 1 +"5th Grade Science: Exploring Weather Patterns Through Climate Simulation and Data Collection": 1 +"7th Grade Art: Enhancing Creativity through Digital Painting and Graphic Design": 1 +"1st Grade English: Developing Reading Skills using Interactive E-books": 1 +"3rd Grade History: Exploring Ancient Civilizations using Virtual Reality Tours": 1 +"5th Grade Science: Understanding Weather Patterns through Augmented Reality Apps": 1 +"2nd Grade Art: Learning Texture with Collage and Mixed Media": 1 +"4th Grade Mathematics: Understanding Fractions using Digital Manipulatives in Math Playground App": 1 +"6th Grade American History: Civil War - The Role of Women and Children ": 1 +"1st Grade Science: Discovering Plant Life Cycles with Grow Your Own Plant Kits": 1 +"4th Grade English: Mythology and Legends Analysis Using Google Tilt Brush and Storyboard That for Virtual Reality Storytelling": 1 +"7th Grade Science: Understanding Genetics using Punnett Squares in Microsoft Excel": 1 +"Exploring Geometry and Architecture through SketchUp in 3rd Grade Mathematics": 1 +"6th Grade Biology: Exploring Plant Anatomy with Microscopy and the Leafsnap App": 1 +"3rd Grade Social Studies: Understanding Local Government and Citizenship through SimCity ": 1 +"7th Grade Music: Composing Melodies: A Study of Harmony Using Ableton Live": 1 +"8th Grade History: Decoding the Secrets of Medieval Europe with Age of Empires": 1 +"4th Grade Music: Introduction to Pitch and Melody using the Piano and Simply Piano App": 1 +"2nd Grade Health: Grasping Basic First Aid and Safety using Interactive Role Play": 1 +"1st Grade Art: Delving into Colors and Shapes with Adobe Fresco": 1 +"Exploring Logic Pro X in 10th Grade Music: Crafting Soundscapes for Mozart’s Symphony": 1 +"3rd Grade Physical Education: Soccer Dribbling and Passing Techniques with Cones and Ladders": 1 +"4th Grade Geography: Studying Natural Disasters using 3D Models and Google Maps": 1 +"4th Grade Social Studies: Unfolding History through Interactive Time-Lines and Story Maps": 1 +"8th Grade Literature: Decoding J.K. Rowling’s Novels with Microsoft Word’s Review Tools": 1 +"5th Grade English: Vocabulary Expansion through Anki Flashcards": 1 +"11th Grade Art: Sculpting with Clay - A Study in Form and Texture": 1 +"1st Grade Mathematics: Introduction to Number Recognition and Counting with Manipulatives": 1 +"4th Grade Science: Grasping Photosynthesis through Leaf Collection and Interactive iPad Apps": 1 +"1st Grade Music: Discovering Melody through Xylophones and Music Theory on Yousician": 1 +"6th Grade Music: Journey through Mozart’s Symphony using Violins": 1 +"Intro to Engineering: 1st Grade Science using Lego Blocks - Grasping the Basics of Structures": 1 +"2nd Grade Physical Education: Mastering the Basics of Basketball: Shooting and Passing Techniques": 1 +"3rd Grade Geometry: Introduction to Shapes and Angles Using Interactive Whiteboards": 1 +"3rd Grade Art: Exploring Pottery Making with Clay and Sculpting Tools": 1 +"1st Grade History: Understanding the Life of Dinosaurs in Prehistoric Times": 1 +"3rd Grade Math: Introduction to Multiplication and Division using Mathway App": 1 +"1st Grade Social Studies: Learning About Our Local Fire Department’s Role in Community Safety": 1 +"3rd Grade Art: Discovering Acrylic Painting with Brushes and Sponges": 1 +"1st Grade Mathematics: Understanding Numbers and Counting Using Beads and Counting Boards": 1 +"3rd Grade Science: The Fascinating World of Insects: Ants and their Colonies": 1 +"2nd Grade Language Arts: Diving into Storytelling Using Microsoft Word ": 1 +"Kindergarten Physical Education: Exploring Balance and Coordination with Hula Hoops and Scooters": 1 +"2nd Grade French: Engaging Language Acquisition with Pictionary and Duolingo": 1 +"5th Grade Geography: Understanding Climate Zones through Interactive Maps and Apps": 1 +"6th Grade Economics: The Great Depression and its Global Impact": 1 +"World War II: Aerial Combat and the Development of Radar - An 11th Grade History Course": 1 +"8th Grade English Literature: Enhancing Novel Understanding with Kindle and Quizlet": 1 +"9th Grade Art: The Influence of Digital Media on Contemporary Art Styles": 1 +"Preschool: Cognitive Development through Interactive Puppet Shows": 1 +"An Extensive Study on 1st Grade Nutrition: Homemade Snacks vs. Store-Bought and Healthy Alternatives": 1 +"Beethoven’s Symphonies and GarageBand: A 7th Grade Music Course Exploring Digital Composition": 1 +"6th Grade Archaeology: Unraveling the Secrets of the Mayan Numeric System": 1 +"5th Grade Geography: Exploring World Cultures through Interactive Maps": 1 +"4th Grade Art: Understanding Color Theory and Painting Techniques with Watercolors": 1 +"10th Grade Psychology: Unraveling Human Behavior through Classical Conditioning Experiments": 1 +"6th Grade Mathematics: Decoding Fractions and Decimals with Real-Life Applications": 1 +"3rd Grade Environmental Science: Grasping Recycling and Conservation through Hands-On Activities": 1 +"8th Grade Literature: Exploring Themes in Classic Novels Using Online Discussion Boards": 1 +"11th Grade Chemistry: Understanding Chemical Reactions with Laboratory Experiments": 1 +"2nd Grade Music: Learning Rhythm and Melody through Percussion Instruments": 1 +"9th Grade Health: Understanding Human Anatomy and Physiology with 3D Models": 1 +"7th Grade Social Studies: Understanding Democracy and its Importance through Interactive Games": 1 +"8th Grade Social Studies: Understanding the Impact of Social Media on Global Politics": 1 +"The Influence of the Industrial Revolution on Modern Society: A Comprehensive Examination of Early Factories and Labor Laws in 3rd Grade History": 1 +"9th Grade Computer Science: Implementing Python and Machine Learning Algorithms for Predicting Weather Patterns": 1 +"Interactive 7th Grade Algebra: Exploring Equations and Graphs with Augmented Reality Technology": 1 +"7th Grade Art: Exploring Color Theory and Composition through Digital Painting": 1 +"4th Grade Physics: Discovering the Principles of Flight with Paper Airplanes and Wind Tunnel Experiments": 1 +"3rd Grade Health: Understanding Nutrition and Balanced Diets through Interactive Food Pyramid Games": 1 +"6th Grade Literature: Delving into Myths and Legends with Audible and Dramatic Audiobook Narrations": 1 +"8th Grade English: Advanced Report Writing with Google Docs": 1 +"4th Grade Mathematics: Utilizing Number Line and Educational Games for Understanding Multiplication and Division": 1 +"5th Grade History: Journey Through the Silk Road: Understanding Trade in Ancient Times": 1 +"3rd Grade Social Studies: Uncovering the Secrets of the Pyramids: A Look into Ancient Egypt": 1 +"7th Grade English Literature: Engaging Interactive Digital Platforms to Unravel Shakespeare’s Works": 1 +"8th Grade Art: Discovering the Beauty of Abstract Expressionism through Acrylic Pour Painting Techniques ": 1 +"10th Grade Physical Education: Implementing Biomechanics in Improving Basketball Shooting Techniques": 1 +"3rd Grade Science: Exploring Ocean Ecosystems Through Underwater ROV Exploration": 1 +"Kindergarten Music: Discovering Sound and Vibration with Homemade Musical Instruments": 1 +"7th Grade Astronomy: Investigating Black Holes and Galaxies through Augmented Reality Telescopes": 1 +"2nd Grade: An Adventure in the Rainforest: Studying Flora and Fauna Using Interactive Software in Science": 1 +"2nd Grade Music: Mastering Basic Musical Notations with Xylophone and Music Theory Games": 1 +"6th Grade Drama: Exploring Emotions through Improvisation Techniques": 1 +"1st Grade Geography: Introduction to Continents and Oceans through Interactive Globe": 1 +"2nd Grade Coding: Making First Animation Stories using Scratch Jr. ": 1 +"5th Grade Biology: Understanding Human Body Systems with Virtual Reality": 1 +"9th Grade Literature: Analyzing Symbolism in To Kill a Mockingbird ": 1 +"3rd Grade Science: Exploring Solar System with Augmented Reality Apps": 1 +"7th Grade Math: Enhancing Geometry Skills with Protractor and Compass": 1 +"4th Grade French: Learning Basics with Duolingo Language App": 1 +"5th Grade Earth Science: Understanding Volcanoes and Earthquakes through Simulations": 1 +"6th Grade Music: Understanding Rhythm and Beat using Virtual Drums": 1 +"5th Grade Science: Exploring the Life Cycle of Butterflies using Virtual Reality": 1 +"2nd Grade Mathematics: Building Number Sense with Interactive Gaming": 1 +"8th Grade History: Unraveling the Secrets of Renaissance Art with Virtual Museum Tours": 1 +"Utilizing Scratch Programming in Creating Animated Stories: A New Approach to 4th Grade English Language Arts": 1 +"7th Grade Geography: Discovering the World’s Major Rivers using Augmented Reality": 1 +"5th Grade Mathematics: Mastering Fractions with Virtual Pizza Slices": 1 +"2nd Grade Social Studies: Understanding Community Roles through Role-Play Activities": 1 +"7th Grade Science: Investigating Genetic Variation with Punnett Squares": 1 +"5th Grade English: Enhancing Reading Comprehension through Podcasts": 1 +"1st Grade Music: Introduction to Rhythm and Melody using Interactive Apps": 1 +"5th Grade Geography: Understanding Plate Tectonics using Interactive 3D Models": 1 +"3rd Grade Art: Exploring Color Theory and Mixing with Watercolors": 1 +"Analyzing Symbolism in Shakespeare’s ’Macbeth’ in 9th Grade English: Incorporating Google Classroom, Prezi, and Podcasts for Group Discussions": 1 +"1st Grade Mathematics: Introduction to Shapes and Patterns with Tangram Puzzles": 1 +"4th Grade Biology: Understanding Plant Life Cycles using Time-lapse Photography": 1 +"6th Grade Music: Developing Harmony and Chord Progressions with Digital Keyboards": 1 +"Exploring the Separation of Powers in Government: An Interactive Dive into 7th Grade Political Science": 1 +"3rd Grade Science: The Lifecycle of Butterflies with Virtual Reality": 1 +"Kindergarten Health Education: Learning About Dentists and the Toothbrush": 1 +"9th Grade Economics: The Influence of Oil Refineries on Local Economies and 10 Sustainable Alternatives": 1 +"4th Grade Math: Exploring Geometry through Minecraft Building Blocks": 1 +"10th Grade Chemistry: Discovering Molecular Structures with Virtual Reality Software": 1 +"3rd Grade Art: Using Adobe Spark for Creating Digital Collages": 1 +"1st Grade English: Understanding Sentence Basics with Kahoot Quizzes and Flipgrid for Shared Learning": 1 +"6th Grade Geography: The Age of Exploration - A Look at Early Navigational Tools": 1 +"11th Grade Health Education: Utilizing Fitness Trackers in Aerobic Conditioning and Understanding Heart Rate": 1 +"5th Grade Biology: Exploring the Diverse World of Insects with Microscopes": 1 +"8th Grade Civic Education: Understanding Democracy through Online Debates and Group Discussions": 1 +"1st Grade Reading: Learning Phonics with Interactive Tablets and ABCmouse": 1 +"3rd Grade Literature: The Art of Storytelling in Mythology and Legends": 1 +"4th Grade Mathematics: Enhancing Numeracy Skills through Online Math Games and Quizzes": 1 +"7th Grade Physics: Delving into the World of Magnetism: Practical Experiments with Magnets and Coils": 1 +"1st Grade Life Skills: Promoting Hygiene Awareness through Animated Educational Videos": 1 +"11th Grade Chemistry: Understanding Molecular Structures with Interactive 3D Modelling": 1 +"5th Grade English: Building Advanced Sentences using Online Grammar Learning Platforms": 1 +"9th Grade Astronomy: Exploring the Solar System with Augmented Reality Technology": 1 +"6th Grade Language Arts: Discovering Mythology from Different Cultures using E-library Resources": 1 +"8th Grade Mathematics: Algebra - Mastering Equations and Formulas using Online Calculators": 1 +"2nd Grade Science: Learning About Plant Life Cycles through Virtual Garden Tours": 1 +"4th Grade Literature: Crafting Your Own Adventures with Digital Storytelling Tools": 1 +"Examining Time Travel in Doctor Who: A 6th Grade Language Arts Course Using TARDIS Metaphors": 1 +"2nd Grade Earth Science: Basics of Wind Turbines and Battery Storage for Sustainable Power": 1 +"4th Grade English: Narrative Structures and Mythology Explored through Radio Dramas via GarageBand": 1 +"4th Grade Mathematics: Understanding the Principle of Decimals using Base Ten Blocks": 1 +"8th Grade Physical Education: Mastering Basketball Fundamentals through Teamwork and Game Plan Execution": 1 +"8th Grade Art: Discovering Oil Painting Techniques: Emphasizing Glazing and Palette Knife Skills": 1 +"1st Grade Art: Designing Vibrant Portraits with Pastels and Recycled Materials ": 1 +"Third Grade Language Arts: Fairytales Comprehension with Interactive Digital Storytelling Tools": 1 +"Investigating Ecosystems: A Detailed Look at the Nitrogen Cycle using Microscope Examination and Plant Sample Analysis for Second Graders": 1 +"Kindergarten Music: Discovering Rhythm Basics with Egg Shakers and Xylophone Apps": 1 +"5th Grade Science: Exploring the Cosmos: An Introduction to Telescopes and Stellar Observations": 1 +"3rd Grade Geography: The Great Wall of China: An Investigation into Ancient Defense Systems": 1 +"9th Grade Art: Tracing Artistic Movements: From Impressionism to Cubism": 1 +"7th Grade Technology: Utilizing Coding and Robotics in Modern Solutions": 1 +"2nd Grade Life Science: Discovering Habitats with Microscopes: A Look at Pond Water Ecosystems": 1 +"3rd Grade Weather Science: Comprehending Weather Patterns through Cloud Identification": 1 +"9th Grade Literature: The Influence of Romanticism in Jane Austen’s Novels": 1 +"5th Grade Mathematics: Enhancing Problem-Solving Skills through Chess Strategies": 1 +"7th Grade Music: The Influence of MIDI Controllers in Electronic Dance Music Production": 1 +"11th Grade Music: Deconstructing Harmonic Progressions in Baroque Music: A Study of J.S. Bach’s Fugues.": 1 +"8th Grade Geography: Virtual Reality Exploration of the Amazon Rainforest using Google Earth VR": 1 +"10th Grade Chemistry: The Impact of Atomic Structure on Chemical Reactions": 1 +"3rd Grade English: Developing Characters and Settings in Fairy Tales using Storyboard That": 1 +"6th Grade Ancient Civilizations: The Influence of Bronze Tools and Weapons on Early Societies": 1 +"Astronomy for 5th Graders: Understanding Lunar Phases through Interactive Models": 1 +"4th Grade Geography: Navigating the Silk Road with Cartographic Skills": 1 +"7th Grade Literature: Exploring Allegory and Symbolism in Classic Novels with Interactive E-books": 1 +"Algebra Concepts: Interpreting Quadratic Functions in 9th Grade Mathematics": 1 +"3rd Grade: An Adventure in the Plant Kingdom: Learning Photosynthesis through Botanical Gardening in Science": 1 +"8th Grade Visual Arts: Basics of Watercolor Techniques using Different Types of Brushes": 1 +"6th Grade Science: Exploring the Solar System using Virtual Reality Technology": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals through Hands-on Activities and Manipulatives": 1 +"8th Grade Geography: Navigating Global Landforms with Google Earth and Geospatial Data": 1 +"2nd Grade Literature: Discovering Classic Fairy Tales through Dramatic Play and Storytelling": 1 +"4th Grade Science: Introduction to Botany through Backyard Explorations and Microscopic Observations": 1 +"7th Grade Social Studies: Exploring the Middle Ages through Virtual Field Trips and 3D Designing": 1 +"10th Grade Physics: Understanding the Principles of Electricity using Circuit Simulation Software": 1 +"9th Grade English: Crafting Compelling Narratives with Digital Storyboarding Tools and Animation Software": 1 +"3rd Grade Art: Exploring Color Theory and Shapes through Interactive Digital Painting": 1 +"8th Grade Mathematics: Discovering the World of Algebra using Math Apps and Online Tutoring.": 1 +"3rd Grade History: Exploring Ancient Rome through Virtual Reality and Minecraft Education Edition": 1 +"1st Grade Science: Observing Life Cycles using Butterfly Kits and Timelapse Photography": 1 +"Mastering Subtraction with the Mathway App and Interactive Digital Blackboard for 3rd Graders": 1 +"9th Grade Music: Composing Electronic Music using Ableton Live and Serato DJ Pro: An Introduction to Sound Design": 1 +"5th Grade Language Arts: Improving Sentence Construction using Chromebooks and Google Docs Voice Typing": 1 +"9th Grade Literature: Understanding Metaphors in Fiction using E-Readers and Annotation Features": 1 +"5th Grade Science: Exploring Earth’s Biomes with Virtual Field Trips and Interactive Ecosystem Models": 1 +"8th Grade Mathematics: Understanding Geometry Principles using Tangram Puzzles on Tablet Devices": 1 +"7th Grade English: Creative Storytelling using Storybird App and Microsoft PowerPoint": 1 +"Preschool Introduction to Colors: Learn with Interactive Color Mixing Games": 1 +"3rd Grade Geography: Exploring World’s Landforms with Virtual Reality and Google Earth": 1 +"6th Grade Computer Science: Discovering Web Design with HTML and CSS": 1 +"2nd Grade Science: Understanding the Life Cycle of Butterflies Using Augmented Reality": 1 +"7th Grade Music: Harmonizing the World - Understanding Global Music Genres": 1 +"3rd Grade Physical Education: An Insight into Soccer Skills and Equipment ": 1 +"6th Grade Social Studies: The Influence of Political Graffiti during the French Revolution": 1 +"Studying the Desert Ecosystem: A 7th Grade Environmental Studies Course using Augmented Reality": 1 +"2nd Grade Art: Discovering Texture and Form with Clay and Pottery Techniques": 1 +"Exploring Forces and Motion: 5th Grade Physics’ Investigation of Roller Coasters using Scale Models": 1 +"1st Grade Mathematics: Learning Multiplication and Division through Number Blocks": 1 +"2nd Grade Physical Education: Understanding the Basics of Team Sports with Interactive Games": 1 +"8th Grade Physics: Discovering the Laws of Motion through VR Simulations": 1 +"6th Grade Art: Exploring Perspective Drawing with Graphite Pencils and Watercolor Washes": 1 +"Quantum Physics in Daily Life: A Comprehensive 8th Grade Science Course": 1 +"5th Grade Ecology: Studying Ecosystem Interactions with Field Trips and Data Collection": 1 +"5th Grade Literature: Delving into Classic Novels through Group Discussions": 1 +"Kindergarten Reading: Enhancing Alphabet Recognition with Interactive Learning Boards": 1 +"3rd Grade Biology: Investigating Plant Life Cycles through Gardening Activities": 1 +"Kindergarten Earth Science: Discovering the Wonders of Weather Through Simple Experiments": 1 +"7th Grade Geography: Understanding the Impact of River Systems on Human Settlements": 1 +"1st Grade History: Exploring the Dinosaurs through Augmented Reality and Interactive Models": 1 +"4th Grade Science: Understanding the Solar System with VR Technology and Stellarium App": 1 +"7th Grade English: Poetry Appreciation and Creation using RhymeZone and Lyrical Expression Techniques": 1 +"10th Grade Biology: Decoding the Human Genome with CRISPR and Genetic Sequencing Technology": 1 +"3rd Grade Math: Engaging Subtraction Lessons with Origami, Flashcards, and Interactive Whiteboard Activities": 1 +"8th Grade Geography: Exploring Geographical Landforms through Drone Mapping and Google Earth": 1 +"5th Grade Music: Understanding Melody and Harmony through GarageBand and Interactive Soundboard": 1 +"4th Grade Physical Education: Soccer Proficiency through Motion Capture Technology and Kinematic Analysis": 1 +"7th Grade Art: Sculpture Creation and Appreciation using Claymation and 3D Printing": 1 +"2nd Grade Environmental Science: Understanding the Life Cycle of Butterflies through Timelapse Videos and Interactive Ebooks": 1 +"6th Grade Math: Exploring Geometry through Architectural Model Building": 1 +"8th Grade Art: Sculpting Basics: The Magic of Clay and Pottery Wheel": 1 +"3rd Grade Science: Understanding Plant Life Cycles through Indoor Gardening": 1 +"7th Grade Physical Education: Boosting Basketball Performance with Fitness Trackers": 1 +"4th Grade English: Enhancing Creative Writing Skills through Storytelling and Illustrations": 1 +"Revolutionary War Era: The Important Role of Women in War - A Comprehensive 5th Grade History Course": 1 +"1st Grade Language Arts: Learning Phonics through Interactive Online Games using Google Classroom": 1 +"1st Grade Social Studies: Exploring Cultural Diversity through Global Storybooks": 1 +"Third Grade Science: Observing Weather Patterns and Climate Change through DIY Weather Stations": 1 +"6th Grade History: Unveiling the Secrets of the Ancient Greek Civilization through Augmented Reality Experiences": 1 +"4th Grade Geography: Exploring the Amazon Rainforest with Augmented Reality": 1 +"6th Grade History: The Role of the Printing Press in the Renaissance": 1 +"10th Grade Music: The Evolution of Rock - Electric Guitars and the Birth of Grunge": 1 +"2nd Grade’s Journey Through the Human Body: Using 3D Models and Microscopic Images": 1 +"8th Grade History: The Influence of Railroads during the Industrial Revolution": 1 +"Kindergarten Art: Learning Primary Colors and Textures through Clay Sculpting": 1 +"6th Grade Science: Investigating Plant Life Cycles with Digital Microscopy": 1 +"4th Grade Mathematics: Mastering Fractions and Decimals with Engaging Math Puzzles on Khan Academy": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction Through Interactive Whiteboard Games": 1 +"1st Grade Science: Exploring Insect Life Cycles through Virtual Reality Technology": 1 +"3rd Grade Geography: Exploration of the United States - Rivers, Mountains, and Plains": 1 +"8th Grade Music: Melody Uncovered - Understanding Harmony, Rhythm, and Tempo in Piano ": 1 +"3rd Grade English: Enhancing Vocabulary through Interactive Games and E-Books on Epic": 1 +"3rd Grade Art: Creating Portraits on Digital Canvas using Brush Tools": 1 +"7th Grade Social Studies: The Medieval Period and the Evolution of Feudal System": 1 +"6th Grade Science: Harnessing Solar Energy - A Study of Photovoltaic Cells": 1 +"10th Grade History: The Space Race, Satellite Launches, and the Emergence of Modern Astronomy": 1 +"8th Grade Mathematics: Discovering Algebra through Puzzles using Khan Academy and Algebrator": 1 +"6th Grade Art: A Journey into Oil Painting - Techniques and Tools": 1 +"Mastering Multiplication in 3rd Grade using the Prodigy Math Game App": 1 +"5th Grade Chemistry: Discovering the Elements using Interactive Periodic Table Apps": 1 +"7th Grade Physical Education: Enhancing Agility and Coordination through Obstacle Courses": 1 +"3rd Grade Social Studies: Unraveling the Mysteries of the Mayan Calendar": 1 +"1st Grade History: Journey to the Jurassic Era through Virtual Dinosaur Excavations": 1 +"3rd Grade Music: Understanding Melody and Harmony with the Piano using Music Learning Software": 1 +"5th Grade English: Immerse in Poetry: Exploring Sonnets and Haikus using Interactive Reading Apps": 1 +"10th Grade Biology: Delving into Ecology: Ecosystem Dynamics and Conservation Methods": 1 +"1st Grade Mathematics: Grasping Addition and Subtraction through Interactive Puzzles": 1 +"10th Grade Music: The Art of Improvisation - Jazz and Blues Explored through Digital Music Production": 1 +"2nd Grade Language Arts: Phonics Fun with Interactive Spelling Games and Audio Books": 1 +"3rd Grade Mathematics: Exploring Geometry with 3D Printers and Origami": 1 +"8th Grade Music: Understanding Harmony and Rhythm through Digital Workstations": 1 +"3rd Grade Science: Exploring Plant Life Cycles with Virtual Reality Tools": 1 +"9th Grade Literature: Analyzing Metaphors in Shakespeare’s Tragedies using Interactive Online Platforms": 1 +"1st Grade Physical Education: Learning Basic Gymnastics through Foam Mat Exercises": 1 +"7th Grade Art: Discovering Perspective and Shadowing with Charcoal and Graphite": 1 +"4th Grade Geography: Understanding Climate Zones and Weather Patterns through Interactive Maps": 1 +"5th Grade Computer Science: Enhancing Coding Skills with Scratch and Python": 1 +"11th Grade History: The Impact of Telegraph in the Communication during the Civil War": 1 +"6th Grade French: Building Vocabulary and Sentence Structure through Role-Playing Games": 1 +"2nd Grade Botany: Leaf Identification through Field Observations and Collections": 1 +"7th Grade Literature: Utilizing Storybird in Plot Mapping for Thematic Analysis in Contemporary Novels": 1 +"Wonders of Earth: Investigating Soil Erosion using Sandbox Experiments for Third Graders": 1 +"9th Grade Music: The Exploration of Jazz Improvisation Using GarageBand Digital Audio Workstations": 1 +"Decoding Geological Phenomena: A 4th Grade Science Course with Seismographs, Rock Samples, and Topographic Maps": 1 +"Solution X: Application of Biochar for Reducing Agricultural Runoff’s Environmental Impact": 1 +"7th Grade Art: The Influence of Palette Knives in Acrylic Painting Techniques": 1 +"5th Grade Mathematics: Fundamentals of Fractions with Interactive Learning Games": 1 +"11th Grade Physical Education: Implementing Virtual Reality to Enhance Soccer Skills": 1 +"2nd Grade Environmental Studies: A Comprehensive Investigation of Wind Turbines and the Role of Renewable Energy Systems": 1 +"5th Grade Geography: Understanding Weather Patterns with Virtual Reality Technology": 1 +"8th Grade English: Exploring Narrative Techniques in Modern Literature through Interactive Storytelling": 1 +"2nd Grade Science: Discovering Aquatic Ecosystems through Shell and Rock Identification": 1 +"4th Grade Mathematics: Enhancing Geometry Skills with Hands-on Origami Projects": 1 +"3rd Grade History: Exploring Ancient Civilizations using Virtual Tours and Interactive Timelines": 1 +"11th Grade Chemistry: Grasping Ionic Bonds through the Study of Crystal Structures": 1 +"5th Grade Astronomy: Uncovering the Secrets of Solar System with 3D Modeling": 1 +"7th Grade Social Studies: The Impact of the Printing Press on Information Dissemination and Society": 1 +"Civil War Era Engineering: The Influence of the Telegraph in Warfare - A 9th Grade History Course": 1 +"1st Grade Art: Understanding Colors and Shapes with Homemade Playdough Creations.": 1 +"5th Grade Science: Investigating Weather Patterns and Climate Change through Interactive Models and Experiments": 1 +"8th Grade Literature: Enhancing Understanding of Shakespeare’s Tragedies Using Dramatic Readings and Video Analysis": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction Using Digital Manipulatives": 1 +"7th Grade Biology: Exploring Human Anatomy through Virtual Reality and 3D Printing": 1 +"5th Grade History: The American Revolution and the Role of Paul Revere, Explained through Storytelling and Role Play": 1 +"6th Grade English Language Arts: Enhancing Story Writing Skills with Imagery, Symbolism, and Irony": 1 +"1st Grade Science: Discovering Animal Habitats with Interactive Field Trips and Augmented Reality": 1 +"Diving into Ancient Civilizations: A 5th Grade Social Studies Course Using Virtual Reality and Minecraft": 1 +"3rd Grade Mathematics: Exploring Fractions with Pizza Slices and Interactive Digital Tools": 1 +"4th Grade Geography: Understanding Climate Zones and Biomes with Interactive Globes and Weather Stations": 1 +"8th Grade Music: Analyzing Mozart’s Compositions with GarageBand and Sibelius Software": 1 +"Weather Phenomena: A 6th Grade Science Course on Tornadoes and Hurricanes using Interactive Simulations": 1 +"Sixth Grade History: The Impact of the Silk Road on the Economic Progress of Ancient China": 1 +"5th Grade Language Arts: Understanding Limericks with Promethean ActiveBoard and Google Slides": 1 +"3rd Grade Language Arts: Creating Digital Stories with iPads using Tynker": 1 +"Kindergarten Language Arts: Enhancing Alphabet Recognition with Interactive Whiteboard Games": 1 +"3rd Grade Mathematics: Discovering Fractions and Decimals": 1 +"1st Grade Environmental Studies: Understanding Animal Habitats with Virtual Reality": 1 +"9th Grade PE: Promoting Active Lifestyle and Wellness using Fitbit Fitness Tracker": 1 +"1st Grade Art: Exploring Textures and Patterns through Collage and Printmaking Techniques": 1 +"Advanced Chemistry: Exploring the World of Organic Compounds through Laboratory Experiments": 1 +"5th Grade History: Unfolding Civil War Narratives Through Interactive Maps": 1 +"Kindergarten Art: Crafting Seasonal Collages with Natural Materials": 1 +"3rd Grade Physical Education: Introduction to Yoga Poses and Mindful Movement": 1 +"6th Grade Geography: Pyramids, Pharaohs, and Navigating Ancient Egypt": 1 +"1st Grade Science: Exploring the Lifecycle of Butterflies through Observation and Drawing": 1 +"4th Grade Music: Understanding Musical Notation through the Recorder": 1 +"8th Grade Physics: Understanding Gravitational Forces through Space Simulation Games": 1 +"2nd Grade Language Arts: Developing Story Arcs in Creative Writing": 1 +"5th Grade Earth Science: Exploring Volcanic Eruptions with Virtual Reality and Geology Apps": 1 +"10th Grade History: Decoding Mayan Civilization through Hieroglyphics using Virtual Reality": 1 +"5th Grade Geography: The Importance of Latitude and Longitude in 18th Century Sea Voyages": 1 +"7th Grade Chemistry: Discovering the Magic of Chemical Reactions - A Dive into Acid-Base Chemistry": 1 +"Kindergarten Music: Understanding Pitch and Volume with Toy Instruments and Sound Boards": 1 +"3rd Grade Social Studies: Everyday Heroes - Exploring the Work of Firefighters and Emergency Medical Services": 1 +"6th Grade Music: Developing the Skill of Tempo and Rhythm Interpretation on the Drums using Soundtrap Software and Ableton Live": 1 +"9th Grade Biology: Examining Cellular Division with Microscopic Observation - A Closer Look at Mitosis and Meiosis Techniques": 1 +"8th Grade English Language Arts: Delving into Metaphors in Emily Dickinson’s Poetry through Interactive Digital Platforms": 1 +"4th Grade Mathematics: Grasping Fractions and Ratios through Practical Cooking Lessons": 1 +"5th Grade Earth Science: Deciphering the Process of Erosion Using Stream Table Kits.": 1 +"2nd Grade Science: Exploring Plant Life using Microscopes and Digital Imaging": 1 +"4th Grade History: Understanding the Mayan Civilization through 3D Modeling and Virtual Reality": 1 +"7th Grade Mathematics: Unraveling Geometry with Geometric Shapes and Interactive Software": 1 +"4th Grade Social Studies: Diversity and Culture: An Insight into World Religions": 1 +"10th Grade English: Exploring Rhetorical Devices in Famous Speeches and their Impact on Society": 1 +"11th Grade Physics: Examining the Influence of Electricity on Industrial Revolution": 1 +"7th Grade Physical Education: Introduction to Basketball using Video Replay and Motion Analysis": 1 +"8th Grade Geography: Impact of Climate Change on Polar Regions through Satellite Images and Climate Models": 1 +"10th Grade Music: Studying Melody Composition with the Aid of GarageBand and Ableton Live ": 1 +"7th Grade Art: Enhancing Color Theory Understanding through Digital Painting and Design Tools": 1 +"3rd Grade Science: Exploring Weather Patterns through Interactive Climate Models": 1 +"1st Grade Art: Introduction to Textures and Materials in Collage Making": 1 +"6th Grade Geography: Understanding Global Trade Routes through Virtual Reality Exploration": 1 +"3rd Grade Math: Mastering Multiplication and Division through Fun Board Games": 1 +"5th Grade History: Decoding The Civil War using Augmented Reality-based Storytelling ": 1 +"4th Grade Environmental Science: Studying Water Conservation through Rain Harvesting Projects": 1 +"5th Grade English Literature: Unveiling Themes in Classic Fairy Tales through Role Play": 1 +"6th Grade Math: Grasping Geometry Concepts through Hands-on 3D Printing Projects": 1 +"4th Grade Science: Exploring Space and Planets through VR Technology": 1 +"3rd Grade History: Learning about Medieval Europe through Interactive Castle Tours": 1 +"3rd Grade Mathematics: Interactive Learning of Multiplication and Division with Math Apps": 1 +"7th Grade History: The Roman Colosseum: An Insight into the Architectural Marvels of Ancient Rome": 1 +"7th Grade Science: Understanding Genetic Engineering through Microscopic Observations": 1 +"6th Grade Science: Exploring Animal Behavior via IoT-Enabled Motion Sensors": 1 +"4th Grade Language Arts: Enhancing Writing Skills with Interactive Story-telling Games": 1 +"6th Grade Environmental Studies: Understanding the Impact of Deforestation on Biodiversity using Satellite Imagery and GIS Technology": 1 +"5th Grade Social Studies: A Comprehensive Study of Feudalism in Medieval Europe through Interactive Board Games": 1 +"1st Grade Mathematics: Harnessing Digital Puzzles for Teaching Basic Counting and Number Recognition": 1 +"6th Grade Social Studies: Tracing the Evolution of Human Rights through Music and Art": 1 +"4th Grade Language Arts: An Interactive Journey through Roald Dahl’s Stories using Shadow Puppetry": 1 +"7th Grade Art: Exploring Abstract Expressionism through Digital Painting Tools": 1 +"3rd Grade Environmental Science: Understanding the Importance of Recycling and Waste Management": 1 +"9th Grade History: The Influence of the Printing Press on Early European Society": 1 +"5th Grade Mathematics: Discovering Fractions and Decimals with Virtual Manipulatives": 1 +"10th Grade Physical Education: Mastering the Art of Archery - From Basics to Bullseye": 1 +"6th Grade Geography: The Role of Volcanoes in Shaping Earth’s Landscape": 1 +"7th Grade Music: Learning Rhythm and Tempo with Electronic Drum Sets": 1 +"2nd Grade Science: Understanding the Solar System Using Interactive Space Models": 1 +"11th Grade English: Delving into Shakespearean Drama with Film and Theater ": 1 +"4th Grade Biology: Exploring Plant Life Cycles through Time-lapse Photography": 1 +"8th Grade Geography: Understanding Latitude and Longitude with Google Earth": 1 +"7th Grade Literature: Exploring Dystopian Themes in Young Adult Fiction Using E-readers": 1 +"3rd Grade Physical Education: Basics of Soccer and Ball Control Skills": 1 +"2nd Grade Math: Introduction to Geometry with Origami and Interactive Apps": 1 +"6th Grade History: Exploring the Influence of the Silk Road on Early Eurasian Civilizations": 1 +"5th Grade English: Enhancing Writing Skills through Blogging and Digital Storytelling": 1 +"Detailed Study of the Human Circulatory System for 11th Grade Anatomy Students": 1 +"3rd Grade Mathematics: Building Understanding of Multiplication through Virtual Manipulatives": 1 +"Kindergarten Art: Discovering Colors and Shapes with Interactive Easel App": 1 +"1st Grade Language Arts: VR Storytelling using Tilt Brush for Imaginative Expression": 1 +"7th Grade Geography: Exploring Climate Change through Interactive Maps and Graphs": 1 +"5th Grade Art: Creating Personal Narratives with Paper Mache Sculpture": 1 +"2nd Grade Science: Discovering the Solar System through Planetarium Visits and Model Making": 1 +"7th Grade Literature: Exploring Coming of Age Themes in Harper Lee’s ’To Kill a Mockingbird’ using Virtual Discussion Boards": 1 +"First Grade Language Arts: Understanding Rhymes and Rhythms with Interactive Music Tools": 1 +"4th Grade Science: The Industrial Revolution: The Steam Engine and the Transformation of Transportation": 1 +"6th Grade Mathematics: Applying Decimals and Percentages in Money Management": 1 +"3rd Grade Social Studies: Comparing Cultures through Folk Dance and Traditional Games": 1 +"5th Grade Mathematics: Learning Geometry through Origami and Tangram Puzzles": 1 +"2nd Grade Science: Discovering Ecology through Garden Ecosystems and Observation Logs": 1 +"9th Grade Physics: Understanding Gravity: Experimentation with Pendulums": 1 +"7th Grade Mathematics: Decoding Algebra: Mastering Equations with Mathway Tools": 1 +"5th Grade English: Developing Reading Comprehension through Graphic Novels and Interactive Discussions": 1 +"9th Grade Creative Writing: Enhancing Descriptive Writing through Mind Mapping Techniques": 1 +"First Grade Science: Exploring Colors with Prism Light Spectrum": 1 +"The Enlightenment and the Scientific Revolution: A 7th Grade History Course": 1 +"Fifth Grade Geography: The Himalayas and the Impact of Elevation on Climate": 1 +"3rd Grade Biology: Discovering Life Cycles: From Caterpillars to Butterflies": 1 +"12th Grade Sports Education: Perfecting the Free Throw in Basketball with Motion-Tracking Technology": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction through Interactive Online Games": 1 +"3rd Grade Science: Exploring the Solar System through Augmented Reality and Online Simulations": 1 +"6th Grade Mathematics: Mastering Ratio and Proportions using Digital Modeling and Interactive Tools": 1 +"2nd Grade English: Creating Folktales using Puzzles and Animation Software on Touchscreen Devices": 1 +"1st Grade Reading: Enhancing Phonics Skills through Interactive Audio Books on iPads": 1 +"4th Grade Social Studies: Unveiling Ancient Civilizations Using Minecraft and Virtual Field Trips": 1 +"5th Grade Physics: Understanding Basic Forces and Motion through Lego Robotics ": 1 +"6th Grade English: Developing Persuasive Writing Skills through Online Debating Platforms": 1 +"3rd Grade Mathematics: Understanding the Basics of Geometry Using Virtual Shapes and Digital Manipulatives": 1 +"7th Grade Biology: Grasping the Concept of Photosynthesis through Virtual Labs": 1 +"Utilizing Robotics and Coding in Urban Planning: 4th Grade Science Course.": 1 +"5th Grade Physical Education: Building Stamina and Agility through Beginner’s Soccer ": 1 +"4th Grade Biology: Exploring Human Digestive System with Interactive 3D Models": 1 +"7th Grade Linguistics: Decoding Ancient Egyptian Hieroglyphs with Virtual Reality Technology": 1 +"3rd Grade Botany: Understanding Flower Reproduction and Pollination": 1 +"2nd Grade Language Arts: Engaging Spelling and Vocabulary Games Using Interactive Whiteboards": 1 +"8th Grade History: The Impact of the Printing Press on the Renaissance Era": 1 +"1st Grade Creative Writing: Crafting Imaginative Stories with Storyjumper and Audible Kids’ Audiobooks": 1 +"3rd Grade Geography: Navigational Stars: Ancient Polynesian Navigation and Oceanic History": 1 +"Physical Education: 8th Grade Basketball Course Emphasizing Dribbling Techniques with Training Ladders": 1 +"6th Grade Physics: The Principles of Light Reflection and Refraction in the Creation of Rainbows": 1 +"4th Grade English: Mastering Spelling and Grammar through Interactive Storytelling on Adventure Academy": 1 +"7th Grade Science: Exploring the Universe and Constellations Through Stellarium Planetarium Software": 1 +"5th Grade Mathematics: Strengthening Multiplication and Division Skills through Prodigy Math Game": 1 +"4th Grade Music: Delving into Rhythm and Melody using Yamaha Keyboards and GarageBand Music Creation Software": 1 +"7th Grade Social Studies: Medieval Europe, The Feudal System, and the Art of Illuminated Manuscripts": 1 +"6th Grade Language Arts: Developing Persuasive Writing & Argumentative Skills with Google Docs Collaborative Tools": 1 +"Piano Composition with Mozart’s Sonatas: A 7th Grade Course Utilizing Ableton Live": 1 +"9th Grade Geography: 360-Degree Exploration of the Sahara Desert using VR Tour Viewer": 1 +"5th Grade Mathematics: Learning Fractions and Decimals through Cooking Measurements and Real-world Applications": 1 +"4th Grade History: Exploring the Colonial America through Virtual Tours and Primary Source Analysis": 1 +"4th Grade Geography: The Great Wall of China - Understanding Its Construction and Influence on Border Control": 1 +"9th Grade Science: The Milky Way Galaxy - Exploration Using Hubble Space Telescope Images": 1 +"8th Grade Literature: Exploring Time Dilation and Parallel Worlds in A Wrinkle in Time": 1 +"6th Grade History: Unearthing the Aztecs - The use of Radiocarbon Dating in Archaeology": 1 +"11th Grade Mathematics: Algebra - Understanding Quadratic Equations through Graphing": 1 +"Discovering Baroque Art: Caravaggio’s Impact on Chiaroscuro and Realism for 7th Graders": 1 +"11th Grade Physical Education: Optimizing Basketball Performance using Wearable Activity Trackers": 1 +"7th Grade Environmental Studies: Wind Power and its Role in Renewable Energy Solutions": 1 +"12th Grade Music: The Revolution of Hip Hop Music through Digital Audio Workstations": 1 +"9th Grade Music: The Interplay of Synthesizers, MIDI Controllers, and Digital Audio in Modern Music Production": 1 +"3rd Grade Science: Examining the Life Cycle of Plants using Time-Lapse Videos": 1 +"6th Grade Geography: Navigating the World’s Oceans with Google Maps and Virtual Reality ": 1 +"Understanding Rhythm and Melody in 5th Grade Music: Creating Beats with Ableton Live": 1 +"3rd Grade Mathematics: Utilizing Number Lines for Understanding Addition and Subtraction of Decimals": 1 +"10th Grade Music: The Art of Improvisation - How Musicians Use Metronomes to Enhance Rhythm": 1 +"1st Grade Art: Discovering Patterns and Textures through Collage": 1 +"Learning about Economy and Trade using Blockchain Technology in 7th Grade Economics": 1 +"5th Grade Mathematics: Interpreting Graphs and Charts through Weather Forecast Data": 1 +"Kindergarten Social Studies: Understanding Neighborhood Roles via Virtual Reality Field Trips": 1 +"3rd Grade Health: Understanding the Human Body - Exploring Anatomy with Augmented Reality Applications": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Interactive Board Games": 1 +"3rd Grade Geography: Understanding Country Flags and their Significance ": 1 +"1st Grade Art: Exploring Colors and Shapes through Finger Painting": 1 +"5th Grade Physics: Simple Machines - Lever, Pulley, and Wheel using DIY Models": 1 +"4th Grade History: The American Revolution - Understanding Strategies through Chess": 1 +"2nd Grade Music: Discovering Rhythm with Handmade Percussion Instruments": 1 +"6th Grade Literature: Dive into Fiction: Character Analysis using Graphic Organizers": 1 +"3rd Grade Environmental Studies: The Importance of Recycling: Creating Art from Waste": 1 +"5th Grade Physical Education: Learning Co-ordination and Teamwork through Relay Races": 1 +"4th Grade Coding: Introduction to Scratch Programming using Animated Stories": 1 +"5th Grade Biology: Unraveling the Mystery of Photosynthesis: A Study of Rainforests": 1 +"3rd Grade Basic Physics: The Foundations of Gravity and Mass": 1 +"Kindergarten English: 10 Fun Storytelling Techniques with the Epic! App": 1 +"8th Grade Politics: The Cold War Era - The Significance of Espionage and Intelligence": 1 +"12th Grade Geography: The Impact of Deforestation on the Amazon Rainforest - The Advent of Sustainable Practices: Solution 4": 1 +"3rd Grade Music: Exploring Rhythm and Melody with a Recorder": 1 +"6th Grade Painting: Acrylic Painting Techniques with Palette Knives and Sponges": 1 +"5th Grade Chemistry: Delving into the Essentials of Chemical Reactions and Molecule Structures using Chemistry Sets": 1 +"Navigating Addition and Subtraction: A 2nd Grade Mathematics Course with Counting Beads and Interactive Tablet Activities": 1 +"3rd Grade Environment Studies: Grasping the Importance of Recycling through Waste Management Projects": 1 +"8th Grade Technology: Introduction to Coding and Robotics with Arduino Boards": 1 +"9th Grade Physical Education: Boosting Agility and Coordination through Basketball Drills": 1 +"11th Grade Psychology: Exploring the Influence of Video Games on Teen Behavior": 1 +"Bronze and Papyrus: Aspects of Ancient Egyptian Culture in the Creation of Pyramids for 5th Grade History": 1 +"Kindergarten Environmental Studies: Identifying Fauna using Animal Tracks, Binoculars, Animal Sounds, and Field Guides": 1 +"6th Grade Art: Exploring Texture and Tone with Clay and Plaster": 1 +"3rd Grade Physical Education: Baseball Pitching Techniques: The Curveball and Protective Gear Use": 1 +"3rd Grade Social Studies: Understanding the Role of Renewable Energy and Electric Cars in Our Community": 1 +"11th Grade Social Studies: Advanced World Politics with Focus on Global Economic Policies": 1 +"Kindergarten Art: Exploring Lines and Patterns through String Art and Mosaic Making": 1 +"5th Grade Science: Exploring the Solar System with Augmented Reality Apps and Planetarium Software": 1 +"1st Grade Mathematics: Understanding Basic Addition and Subtraction through Interactive Board Games": 1 +"9th Grade Literature: A Critical Study of J.D. Salinger’s ’The Catcher in the Rye’ with Assistive Reading Tools": 1 +"3rd Grade Music: Understanding Rhythm and Beat with Hand Drums and Music Sequencing Software": 1 +"7th Grade Mathematics: Geometry and Shape Recognition through 3D Printing Technology": 1 +"8th Grade History: The Industrial Revolution - The Impact of Steam Engines on Global Trade": 1 +"11th Grade Health: The Function and Importance of the Human Cardiovascular System: An Exploration with Virtual Reality": 1 +"2nd Grade Science: Exploring Animal Habitats through Virtual Field Trips": 1 +"4th Grade English: Creating Storyboards with Digital Art Tools for Narrative Writing": 1 +"6th Grade Art: Exploring Color Theory and Painting Techniques with Digital Art Applications": 1 +"1st Grade Science: Understanding Weather Patterns with Interactive Experiments": 1 +"7th Grade Art: Creating Digital Masterpieces with Photoshop and Illustrator": 1 +"3rd Grade Mathematics: Geometry Basics: Exploring Shapes and Sizes": 1 +"8th Grade Health Education: The Science of Nutrition: Understanding Food Groups and Balanced Diets": 1 +"9th Grade Chemistry: The Magic of Chemistry: Experiments with Everyday Household Items": 1 +"2nd Grade Art: Exploring Colors and Textures with Paint and Clay": 1 +"5th Grade History: Journey Through Time: Understanding Ancient Civilizations through Virtual Reality ": 1 +"1st Grade Language Arts: Phonics Fun: Learning to Read with Interactive Games ": 1 +"1st Grade Health Education: Introduction to Dental Hygiene: Brushing and Flossing Techniques": 1 +"4th Grade Science: Discovering Space: Exploring Planets and Stars with Augmented Reality Apps": 1 +"4th Grade Science: Exploring Ecosystems through Virtual Reality": 1 +"8th Grade Physical Education: Boosting Flexibility and Balance through Yoga with Wearable Technology": 1 +"2nd Grade English: Enhancing Reading Comprehension with Interactive Story Books": 1 +"7th Grade Math: Understanding Algebraic Equations through Digital Manipulatives": 1 +"5th Grade Geography: Exploring World Cultures through Google Earth": 1 +"1st Grade Art: Learning Basic Shapes and Colors through Collage Making": 1 +"9th Grade Music: Composing Melodies with Digital Audio Workstations": 1 +"3rd Grade History: The Ancient Egypt: Understanding Hieroglyphs and Pyramids": 1 +"5th Grade Health: Learning about Food Groups using Interactive Software": 1 +"7th Grade English: Improving Writing Skills through Blogging and Online Peer Review": 1 +"2nd Grade Math: Enhancing Arithmetic Skills with Fun Digital Games: Addition and Subtraction Mastery ": 1 +"6th Grade Arts: Pottery Basics - Hands-on exploration with Clay and Pottery Wheel ": 1 +"Kindergarten Science: Discovering the Life Cycle of Butterflies through Interactive Storytelling ": 1 +"7th Grade Chemistry: Introduction to Elements - Atomic Structures and Chemical Reactions": 1 +"10th Grade Physics: Exploring Laws of Motion through Virtual Lab Experiments and 3D Simulations": 1 +"4th Grade History: A Virtual Expedition through Medieval Europe using 3D Castle Tours": 1 +"3rd Grade English: Phonics Mastery - Learning Vowels and Consonants through Interactive Audio Books": 1 +"5th Grade Geography: Understanding Climate Change - A deep dive into Polar Ice Caps using VR Tours": 1 +"8th Grade Physics: The Science of Sound - Exploring Sound Waves and Echoes through Interactive Models": 1 +"Kindergarten Science: The Fascinating World of Farm Animals: Interactive Virtual Tour and Their Life Cycles": 1 +"6th Grade Science: The Role of Pulleys in Engineering: Learning Mechanical Advantage through Hands-On Experiments": 1 +"3rd Grade Mathematics: Improving Subtraction Skills using Montessori Materials and Tablet Apps": 1 +"8th Grade English Literature: Exploring Symbolism in Short Stories using Virtual Reality Platforms": 1 +"1st Grade History: Understanding the Importance of The Wheel in Early Civilizations": 1 +"8th Grade Geography: Investigating Tectonic Plates Movements and Earthquakes using 3D Models and Simulation Software": 1 +"9th Grade Biology: Delving into Cellular Respiration: The Role of Mitochondria using Microscopic Imaging": 1 +"2nd Grade Science: Discovering the Water Cycle and its Influence on Weather Patterns through Interactive Games": 1 +"5th Grade Mathematics: Conquering Division using the Long Division Method and Educational Software": 1 +"10th Grade History: Deciphering the Impact of Printing Press on Renaissance Europe": 1 +"9th Grade Social Studies: Exploring Ancient Egyptian Culture through Hieroglyphics and Virtual Museums": 1 +"4th Grade Biology: Understanding Plant Life and Photosynthesis using Microscopic Observations": 1 +"9th Grade Physics: Introduction to Newton’s Laws through Rocket Building": 1 +"7th Grade English: Poetry Crafting using Symbolism and Metaphors": 1 +"1st Grade Creative Arts: Exploring Textures and Patterns with Collage Making": 1 +"11th Grade Algebra: Linear Equations - Understanding Graphs and Functions through Interactive Software": 1 +"8th Grade History: Exploring Medieval Europe Through Castle Architecture Analysis": 1 +"5th Grade Science: Understanding Weather Patterns and Climate Zones with Virtual Reality": 1 +"9th Grade Geography: Unveiling the Secrets of Ocean Currents and Maritime Trade Routes": 1 +"Mastering 2nd Grade Mathematics: Addition and Subtraction through Number Line Jumps": 1 +"7th Grade Sociology: Understanding Community Dynamics through Local Neighborhood Studies": 1 +"3rd Grade Science: Discovering Dinosaur Fossils using Virtual Excavations and 3D Printing Technology": 1 +"5th Grade English: Comprehending Prose with Emphasis on Narrative Structures": 1 +"4th Grade Language Arts: Punctuation - Learning Apostrophes with Interactive Grammar Games": 1 +"10th Grade Literature: Analyzing Shakespeare’s Plays with Voice Recognition Software and Theme Exploration": 1 +"7th Grade Music: Unraveling Beethoven’s Sonatas with Finale Notation Software and Thematic Transformation": 1 +"8th Grade Language Arts: Engaging with Metaphor and Symbolism using Multimedia Presentations, Canva, and Powtoon": 1 +"6th Grade Social Studies: Delving into Egyptian History through Hieroglyphics and Irrigation Techniques using Minecraft Education Edition": 1 +"Earthquake and Plate Tectonics: A 9th Grade Geology Study using Google Earth, Seismograph Simulations, and Richter Scale Calculations": 1 +"8th Grade Geography: Understanding Urban Land Use Patterns using Interactive Geographic Information System (GIS) Maps": 1 +"6th Grade Science: Comprehending Energy Conservation Through Renewable Energy Experiments.": 1 +"6th Grade English: Creating Poetry with Digital Tools using Canva": 1 +"12th Grade Science: Understanding Photosynthesis through Microscopic Observation": 1 +"Third Grade History: The Impact of the Printing Press in the Renaissance Era": 1 +"4th Grade Social Studies: The Roman Empire and its Influence on Modern Infrastructure": 1 +"9th Grade Music: Exploring Jazz Improvisation using Digital Audio Workstations": 1 +"1st Grade Language Arts: Phonics Mastery through Fun Online Activities": 1 +"4th Grade Mathematics: Geometry Exploration with Virtual Shapes using Zoom for Group Discussions": 1 +"6th Grade Science: Introduction to Weather Patterns through Augmented Reality Experiments": 1 +"Sixth Grade Social Studies: The French Revolution - The Role of Newspapers": 1 +"8th Grade Music: Understanding Mozart’s Operas using Virtual Instruments, Casio CDP-S350 Digital Piano and GarageBand Software": 1 +"6th Grade Physical Education: Mastering Volleyball Serving Techniques with Training Equipment": 1 +"4th Grade English: Journey into Fiction: Interactive Short Stories on Kindle and their Impact": 1 +"8th Grade History: The Enlightenment: The Birth of Modern Science and Philosophy": 1 +"1st Grade Art: Exploring Shapes and Patterns with Finger Paints and Sponges": 1 +"7th Grade Social Studies: The Development of Cryptography - Decoding Secret Messages and Cipher Systems": 1 +"Understanding Quantum Entanglement in the Realm of Quantum Physics: An In-depth 6th Grade Science Course": 1 +"4th Grade History: Discovering the Mayan Culture through Glyphs and Ancient Calendar Systems": 1 +"5th Grade English: Excitement in Expository Writing with Online Blogging Platforms": 1 +"7th Grade Music: Jazz Music Revolution, the Significance of the Saxophone, and the Intricacy of Improvisation in Ellington’s Time": 1 +"4th Grade Math: Multiplication Proficiency with Virtual Reality Learning Tools": 1 +"3rd Grade Geography: Exploring Landforms and Bodies of Water through Interactive 3D Maps": 1 +"9th Grade Sculpture: The Art of Clay Modelling: Emphasis on Texture and Form": 1 +"2nd Grade Biology: Learning About Plant Life Cycles with Fun Garden Projects": 1 +"10th Grade Health Education: Emphasizing Mental Wellness through Mindfulness and Yoga Practices": 1 +"2nd Grade Reading: Strengthening Vocabulary and Reading Comprehension with Storybook Apps": 1 +"11th Grade World Politics: Analyzing the Impact of Cold War Diplomacy on Modern International Relations": 1 +"5th Grade Music: Exploring Beethoven’s Symphonies using Digital Music Sheets and Audio Technology": 1 +"3rd Grade Astronomy: Understanding the Constellations Through Augmented Reality": 1 +"Investigative Study of Aerodynamics with Wind Tunnel Experiments: Understanding Lift, Drag, Turbulence and Bernoulli’s Principle": 1 +"7th Grade Algebra: Conquering Linear Equations using Visual Models, Manipulatives & Symbolic Expressions": 1 +"8th Grade Literature: Enhancing Comprehension of Shakespearean Plays with Interactive Smart Boards and Kahoot!": 1 +"4th Grade Mathematics: Fostering Number Sense with Tangrams and Virtual Manipulatives": 1 +"6th Grade Art: Exploring Digital Illustration Techniques with Procreate": 1 +"5th Grade Biology: Exploring Wildlife Habitats through Virtual Reality Field Trips": 1 +"Mastering 8th Grade Physics: Grasping the Concept of Newton’s Laws through Rocket Launch Simulation": 1 +"Highlighting the Significance of Yoga Mats in 6th Grade Yoga Physical Education": 1 +"10th Grade Calculus: Understanding Differential Equations through Graphical Visualization and 3D Modeling": 1 +"Kindergarten Health Education: Introduction to Hygiene and Making Hand Sanitizer from Natural Ingredients": 1 +"3rd Grade Geography: Learning About Global Landforms through Augmented Reality": 1 +"8th Grade History: Understanding the Industrial Revolution through the Lens of Folk Music": 1 +"3rd Grade Science: The Water Cycle Exploration through Interactive Experiments": 1 +"7th Grade Physical Education: Mastering Basketball Skills with Motion Tracking Technology": 1 +"5th Grade Music: The Orchestra Unveiled - Understanding Music Instruments with Virtual Reality": 1 +"6th Grade Geography: The Role of Maps in Lewis and Clark’s Exploration of the West": 1 +"8th Grade Social Studies: Unearthing Medieval Europe through Heraldry and the Feudal System": 1 +"11th Grade Music: Crafting Melodies and Harmonies with Ableton Live": 1 +"5th Grade History: The Industrial Revolution - The Impact of the Steam Engine": 1 +"2nd Grade English: Developing Reading Skills through Interactive eBooks": 1 +"6th Grade English: Engaging with Poetry using Google Docs": 1 +"4th Grade Mathematics: Mastering Multiplication and Division through Fun Math Puzzles": 1 +"5th Grade Geography: Exploring Biomes and Ecosystems using Virtual Reality Field Trips": 1 +"6th Grade Mathematics: Understanding Fractions through Cooking and Baking Interactive Lessons": 1 +"2nd Grade Art: Learning Shapes and Colors with Digital Paint and Augmented Reality Tools": 1 +"7th Grade Language Arts: Exploring Mythology in Modern Literature: Using E-books and Audiobooks for Comparative Analysis": 1 +"10th Grade Biology: Genetics and Evolution - An Interactive Study using Online Simulations and Virtual Labs": 1 +"5th Grade Physics: An Introduction to Simple Machines using Lego Education and 3D Printing": 1 +"9th Grade Economic Studies: Understanding Supply and Demand through a Virtual Stock Market Game": 1 +"3rd Grade Science: Exploring Life Cycles using Time-lapse Videos and Interactive Diagrams": 1 +"6th Grade History: The Age of Exploration - The Use of Astrolabe and Magnetic Compass": 1 +"4th Grade Music: Understanding Pitch and Harmony with Online Piano and Auto-tune Apps": 1 +"4th Grade Biology: Investigating Plant Life Cycles Through Time-Lapse Photography and Digital Microscopy": 1 +"2nd Grade Mathematics: Understanding Basic Geometry with Interactive 3D Shapes and Models": 1 +"7th Grade Music: Enhancing Rhythm Understanding Through Digital Drumming Software": 1 +"3rd Grade Geography: Exploring the Seven Continents with Virtual Reality Tours": 1 +"5th Grade History: Exploring Ancient Civilizations using Interactive Timelines and 3D Models": 1 +"4th Grade Language Arts: Building Vocabulary and Spelling Skills with Online Games and Flashcards": 1 +"6th Grade Science: Understanding Weather Patterns through Data Collection and Weather Forecasting Apps ": 1 +"2nd Grade Art: Developing Watercolor Techniques with Digital Art Platforms": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals using Educational Apps and Online Puzzles": 1 +"3rd Grade Music: Learning Basic Piano Skills with Interactive Digital Keyboards": 1 +"1st Grade Music: Exploring Sounds and Rhythms through Interactive Percussion Instruments": 1 +"4th Grade Science: Enhancing Understanding of the Solar System through Virtual Reality Explorations": 1 +"8th Grade Art: Unveiling the Techniques of Impressionism through Digital Canvas Painting": 1 +"2nd Grade Mathematics: Grasping Addition and Subtraction through Fun Math Puzzles": 1 +"5th Grade Geography: Exploring the World’s Landforms through Virtual Field Trips": 1 +"7th Grade History: Understanding the Renaissance Period through Interactive Time Travel Adventures": 1 +"2nd Grade English Language Arts: Boosting Reading Skills with Interactive Storybooks": 1 +"Microsoft Office 365 with Class Notebook Integration in Fourth Grade Science: Learning about Weather Patterns through Online Climate Maps": 1 +"3rd Grade Health: Understanding Body Systems through Interactive 3D Human Body Exploration": 1 +"3rd Grade Social Studies: Developing Cultural Appreciation with Virtual Tours of World Landmarks": 1 +"10th Grade Geometry: Exploring Pythagorean Theorem and Trigonometric Ratios via Coursera": 1 +"12th Grade World Literature: Analyzing Magical Realism through Gabriel Garcia Marquez’s Works": 1 +"3rd Grade English Language: Enhancing Reading Comprehension with Educational Games and Virtual Reality": 1 +"1st Grade Phonics: Enhancing Letter-Sound Recognition through Interactive Audio Books": 1 +"Understanding Money and Time: A 1st Grade Economics Course with Practical Use and Time Management Concepts": 1 +"8th Grade Civic Education: Government Structures and Citizens’ Responsibilities Explored through Interactive Online Platforms": 1 +"6th Grade Biology: Investigating Photosynthesis Using Digital Leaf Chamber": 1 +"3rd Grade Geography: Exploring World Continents and Oceans Through Virtual Reality": 1 +"9th Grade Choir: Mastering Vocal Warm-ups - The Importance of Breath Control": 1 +"3rd Grade Physics: Adventure to the Earth’s Core: Understanding Basic Geology through Interactive Earth Models": 1 +"7th Grade Chemistry: Understanding Elements and Compounds through Interactive Periodic Table Applications": 1 +"3rd Grade Geography: Discovering Global Landforms using Virtual Reality Tours": 1 +"5th Grade Literature: Novels Analysis - Symbolism through Immersive Storytelling": 1 +"3rd Grade Science: Uncovering the Mysteries of Insects through Microscope Investigations and Digital Imaging": 1 +"10th Grade Physical Education: Core Strength and Flexibility with Yoga Poses and Stability Balls": 1 +"3rd Grade Mathematics: Multiplication and Division Mastery through Fun Games and Puzzles": 1 +"10th Grade History: The Influence of Steam Engines on Industrialization during the Victorian Era": 1 +"1st Grade Science: Introduction to Plant Life-Cycles using Seed Germination Experiments": 1 +"2nd Grade Art: Creating Textures with Modeling Clay and Craft Tools": 1 +"7th Grade Social Studies: Understanding Economic Systems through the Lens of Local Farmers Markets": 1 +"Third Grade Geography: Discovering Landforms through Interactive AR Models": 1 +"6th Grade: Delving into European History: Learning with Interactive Maps and Timelines": 1 +"Fifth Grade Economics: Understanding the Impact of Trade and Barter Systems in Ancient Civilizations": 1 +"10th Grade Literature: Analyzing Themes and Symbols in Classic Novels using Kindle e-readers and Online Discussion Forums": 1 +"Kindergarten Health: Learning about Nutrition through Interactive Food Pyramid Games": 1 +"3rd Grade Math: Engaging with Division using Animated Math Tutorials": 1 +"5th Grade Sociology: Investigating Cultural Diversity with Virtual Field Trips": 1 +"6th Grade English: Understanding Prose and Drama through Role Plays and Script Reading": 1 +"3rd Grade History: The Mysteries of Egyptian Pyramids: Hieroglyphics and the Art of Mummification": 1 +"5th Grade Science: Exploring Space and Planets with Oculus Quest VR and Stellarium VR.": 1 +"5th Grade Mathematics: Exploring Fractions and Decimals through Virtual Manipulatives": 1 +"8th Grade Social Studies: Understanding the Influence of the Printing Press on the Renaissance": 1 +"Interactive 1st Grade Science: Plant Life Cycles and Digital Time-Lapse Photography": 1 +"10th Grade Literature: Exploring Modernist Poetry through Digital Humanities Tools and Python": 1 +"Building Bridges: A 6th Grade Engineering Course using Minecraft and Force Diagrams": 1 +"4th Grade Music: Mastering Melodies using Digital Music Composition Tools": 1 +"8th Grade Language Arts: Uncovering Historical Fiction through Interactive Audiobooks": 1 +"7th Grade Mathematics: The Power of Geometry and SketchUp in Understanding Angles": 1 +"6th Grade Social Studies: The Impact of the Telegraph on the Civil War": 1 +"5th Grade History: Visualizing Ancient Rome using Oculus Quest VR, Augmented Reality and 3D Models": 1 +"5th Grade Art: Exploring Renaissance Paintings through Virtual Galleries": 1 +"4th Grade Geography: Introduction to Topography using 3D Landscape Models": 1 +"1st Grade Physical Education: Fundamental Movement Skills through Fun Playground Games": 1 +"6th Grade Music: Exploring Melodies and Harmonies with Virtual Pianos": 1 +"3rd Grade History: Journey into Ancient Egypt using Interactive Timelines": 1 +"4th Grade Science: Understanding Basic Ecology through Virtual Forest Exploration": 1 +"1st Grade Social Studies: Introduction to Community Helpers with Role-Play Activities": 1 +"7th Grade Physical Education: Fitness Fundamentals through Circuit Training Exercises": 1 +"8th Grade Health: Understanding Healthy Lifestyle Choices through Food Pyramid Analysis": 1 +"5th Grade Geography: Exploring World Cultures through Virtual Reality Tours": 1 +"3rd Grade Art: Mastering Watercolor Techniques in Flower Painting": 1 +"7th Grade Music: Discovering Mozart’s Symphonies: A Study of Clarinet and Violin in Classical Music": 1 +"5th Grade Music: Journey Through Jazz: Understanding the Role of the Saxophone in Big Band Music": 1 +"7th Grade Social Studies: Unearthing Ancient Egyptian Civilisation Through Hieroglyphics and Artifacts": 1 +"9th Grade Music: Understanding MIDI Controllers and Digital Audio Workstations in Electronic Music Production": 1 +"5th Grade Social Studies: Influential Individuals in European History: A Focus on the Renaissance Period": 1 +"7th Grade English: Enhancing Vocabulary with Interactive Online Crossword Puzzles": 1 +"3rd Grade Geography: Discovering Global Ecosystems with Augmented Reality Expeditions": 1 +"3rd Grade Science: Employing Weather Station Data for Detailed Study of Climate Patterns and Changes": 1 +"4th Grade Mathematics: Excitement with Equations: Learning Algebra through Interactive Digital Games.": 1 +"4th Grade Science: Exploring the Solar System through Virtual Reality Expeditions": 1 +"1st Grade Art: Basics of Color Mixing and Painting with Watercolors": 1 +"5th Grade Language Arts: Improving Reading Comprehension through Interactive Storybook Apps": 1 +"7th Grade History: Unveiling Medieval Europe with Interactive Timelines and 3D Castle Models": 1 +"3rd Grade Music: Introduction to Rhythm and Percussions with Drums and Maracas": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction through Fun Math Games": 1 +"7th Grade Physical Education: Fundamentals of Basketball Shooting Techniques with Emphasis on Free Throws": 1 +"6th Grade Art: Discovering Pottery and Clay Sculpting with Hands-On Lessons": 1 +"4th Grade Social Studies: The Journey through the American Revolution using Animated Maps": 1 +"5th Grade Science: Exploring the Life Cycle of a Butterfly with Augmented Reality Demonstrations": 1 +"8th Grade History: The Impact of Railroads on Industrial Revolution and 10 Notable Innovations": 1 +"8th Grade Digital Art: Mastering Pixel Art Concepts through Modern Graphic Design Tools": 1 +"5th Grade Music: Improving Rhythm Recognition with Drum Pad Applications": 1 +"2nd Grade Health: Understanding Nutrition through Interactive Food Pyramid Games": 1 +"5th Grade Astronomy: Exploring the Solar System with VR Technology and Stellarium": 1 +"4th Grade Music: Introduction to MIDI Sequencing in Electronic Music Composition": 1 +"4th Grade Visual Arts: Fundamentals of Acrylic Painting - The Magic of Texture": 1 +"6th Grade Literature: Analyzing Irony in Mark Twain’s Novels through Group Reading and Discussions": 1 +"7th Grade Mathematics: Grasping Algebraic Concepts through Coding and Robotics": 1 +"3rd Grade Environmental Studies: Understanding the Water Cycle and Its Effect on Climate Patterns": 1 +"1st Grade Art: Exploring Shapes and Colors through Collage and Origami ": 1 +"2nd Grade Science: Understanding Life Cycles through Interactive Butterfly and Frog Models ": 1 +"7th Grade English: Shakespearean Plays - An In-depth Analysis of ’Romeo and Juliet’ Through Dramatic Readings": 1 +"6th Grade Computer Science: Introducing Python Programming through Raspberry Pi and Code Combat": 1 +"11th Grade Physics: Grasping Quantum Mechanics through Particle-Wave Duality and the Double Slit Experiment ": 1 +"6th Grade Health Education: Nutrition and Hygiene - A Comprehensive Look at Balanced Diets and Handwashing Techniques": 1 +"4th Grade Social Studies: Exploring Community Roles through Local Government and Public Service Interviews ": 1 +"4th Grade Technology: Learning Graphic Design through Adobe Spark and Canva": 1 +"5th Grade Earth Science: Exploring Tectonic Plates and Earthquakes through Virtual Simulations and Seismographs": 1 +"6th Grade Mathematics: Understanding Probability and Statistics through Dice Games and Graphical Data Analysis.": 1 +"3rd Grade Physical Education: Boosting Soccer Skills & Basketball Shooting with Agility Ladder Training": 1 +"7th Grade Physical Education and Individual Sports: Mastering Golf Swings Using SwingSmart Golf Analyzer": 1 +"3rd Grade Mathematics: Exciting Division Adventures with Visual Aids": 1 +"5th Grade Art: Acrylic Painting: Renaissance Period Inspired Creations": 1 +"6th Grade History: Unfolding Medieval Times through Knight’s Armor": 1 +"12th Grade Mathematics: Fundamentals of Calculus - Learning with Coursera": 1 +"9th Grade Science: Utilizing Python and Predictive Modelling for Biological Data Analysis": 1 +"2nd Grade Mathematics: Discovering Fractions with Geometric Shapes and JavaScript Coding Basics": 1 +"7th Grade Science: Investigating Marine Life through Virtual Reality": 1 +"5th Grade Language Arts: Enhancing Vocabulary with Interactive Apps and Weekly Tests": 1 +"7th Grade Biology: The Magic of Photosynthesis - Exploring Plant Life with Interactive Lab Experiments": 1 +"5th Grade History: Ancient Egyptians - Learning about Pyramids through Virtual Reality": 1 +"6th Grade English: Adventure Tales - Enhancing Reading Comprehension with Gamified eBooks": 1 +"4th Grade Science: The Wonders of the Solar System - A Journey through Space with Augmented Reality": 1 +"3rd Grade Art: Learning Color Theory through Fun Painting Activities": 1 +"8th Grade Mathematics: Understanding the Basics of Geometry and Shapes with Interactive 3D Models": 1 +"7th Grade Music: An Introduction to Orchestration - Exploring Different Musical Instruments": 1 +"5th Grade Geography: Exploring the United States - Learning about States and Capitals with Interactive Maps": 1 +"8th Grade Science: The Fascinating World of Genetics - An Interactive Course on DNA and Heredity": 1 +"4th Grade Mathematics: Mastering Multiplication and Division with Fun Board Games": 1 +"3rd Grade Geography: Navigating the Globe using Google Earth Pro": 1 +"10th Grade Trigonometry: Understanding Angles and Sinusoidal Functions through Real-world Applications": 1 +"3rd Grade Literacy: Developing Reading Comprehension with Interactive Storybooks": 1 +"First Grade Music: Exploring Rhythms and Melodies using Percussion Instruments": 1 +"Kindergarten Arts: Enhancing Creativity through Collage and Mixed Media Art": 1 +"4th Grade Biology: Exploring Plant Life Cycle with Garden Projects": 1 +"8th Grade History: Exploring Medieval Europe through Virtual Reality and Interactive Timelines": 1 +"8th Grade Geometry: Grasping Pythagorean Theorem through Lego Constructions": 1 +"4th Grade Science: Solar System Exploration using Augmented Reality": 1 +"First Grade Math: Addition Adventures with Number Blocks and Digital Games": 1 +"4th Grade Geometry: Understanding Shapes and Patterns with Tangram Puzzles": 1 +"6th Grade Music: Comprehending Harmonics with Audacity and Music Theory Worksheets": 1 +"1st Grade Language Arts: Enhancing Vocabulary Using Animated Storytelling Apps": 1 +"5th Grade Science: Exploring Ecosystems Through Virtual Reality Field Trips": 1 +"4th Grade Art: Discovering Textures in Digital Painting with Procreate": 1 +"3rd Grade Language Arts: Grasping Grammar through Interactive Language Games": 1 +"6th Grade History: The Roman Empire: The Role of the Colosseum in Entertainment": 1 +"4th Grade Music: Introduction to Scales and Chords using Yousician": 1 +"8th Grade Geography: Understanding Tectonic Movements through Augmented Reality Simulations": 1 +"2nd Grade Science: Exploring the Life Cycle of Butterflies Using Interactive Animations": 1 +"3rd Grade Science: Exploring the Life Cycle of Butterflies with Interactive 3D Models": 1 +"10th Grade Literature: Exploring Shakespeare’s Influence on Modern Drama through Multimedia Presentations": 1 +"8th Grade History: A Comprehensive Study of Ancient Egyptian Civilizations and their Hieroglyphics": 1 +"4th Grade Art: Creating Digital Paintings with Touchscreen Tablets and Artistic Apps": 1 +"7th Grade Music: Harmony and Melody - Understanding the Role of Piano in Jazz Music": 1 +"1st Grade Social Studies: Learning about Community Helpers through Role-Playing and Puppet Shows": 1 +"5th Grade English: Enhancing Creative Writing Skills through Storyboarding and Scriptwriting": 1 +"Deep Learning in 3rd Grade Mathematics: Mastering Multiplication and Division with Artificial Intelligence": 1 +"6th Grade Environmental Studies: The Effects of Composting and Recycling on Soil Health and Plant Growth": 1 +"9th Grade Physics: Understanding the Principles of Gravity and Force through Virtual Reality Simulations": 1 +"2nd Grade Art: Understanding Color Theory through Watercolor Painting Techniques ": 1 +"4th Grade History: The Civil War - Examining Strategies using Interactive Maps": 1 +"7th Grade Language Arts: Enhancing Vocabulary and Comprehension through Kindle Books": 1 +"11th Grade Music: Mastering Melody Creation using FL Studio and MIDI Controllers": 1 +"3rd Grade Science: Investigating Weather Patterns using Interactive Climate Models": 1 +"8th Grade Geography: Countries and Cultures: Exploring Diversity through Virtual Field Trips": 1 +"5th Grade Literature: Examining Theme and Symbolism in Fairytales using Animation Software": 1 +"6th Grade Mathematics: Decoding Algebra and Geometry through Puzzle Solving Games": 1 +"9th Grade Physical Science: Unveiling the Secrets of Light using Optical Instruments": 1 +"8th Grade Language Arts: Improving Persuasive Writing through Online Blogging Platforms": 1 +"3rd Grade Biology: Understanding Photosynthesis through Interactive 3D Plant Models": 1 +"6th Grade History: Tracing the Evolution of Roman Architecture through Virtual Reality": 1 +"4th Grade Geography: Exploring Earth’s Continental Plates with Interactive Globe and Augmented Reality": 1 +"5th Grade Literature: The Art of Creating Suspense in Short Stories": 1 +"2nd Grade Reading Comprehension: Understanding Plot Development with Interactive Story Charts": 1 +"3rd Grade Writing: Building Vocabulary Skills with Fun Word Games and Google Docs": 1 +"2nd Grade Health Education: Introduction to Basic Yoga Postures Using Colorful Mats": 1 +"11th Grade Physics: Mastering the Laws of Motion with Online Simulations and Interactive Graphs": 1 +"2nd Grade Environmental Science: Discovering Life Cycles of Frogs in Rainforests using Virtual Reality": 1 +"4th Grade Creative Writing: Enhancing Descriptive Skills through Picture Prompts and Online Thesaurus Tools.": 1 +"8th Grade Literature: Shakespeare’s Influence on Modern Drama - An Exploration through the Lens of Macbeth": 1 +"10th Grade History: The Impact of the Cold War on Global Politics": 1 +"3rd Grade Mathematics: Introduction to Fractions - Numerators, Denominators and Decimal Equivalents": 1 +"7th Grade Music: Understanding Rhythm and Melody through the Use of GarageBand": 1 +"4th Grade Mathematics: Grasping Multiplication through Interactive Times Table Games": 1 +"3rd Grade Art: Introduction to Color Mixing & Painting Techniques": 1 +"8th Grade History: The Renaissance Period and The Rise of Humanism": 1 +"12th Grade Music: The Evolution of Electronic Music through the Lens of Techno": 1 +"2nd Grade French: Fun and Interactive Vocabulary Building using DuoLingo App.": 1 +"4th Grade Introduction to Weather: Understanding Climate Patterns with Interactive Weather Maps": 1 +"3rd Grade Language Arts: Enhancing Vocabulary through Interactive Storytelling Apps": 1 +"10th Grade Physical Education: Strength Training with Virtual Reality Weightlifting": 1 +"6th Grade Music: Exploring Mozart’s Symphonies and the Piano using Digital Audio Workstations": 1 +"2nd Grade Physical Education: Enhancing Balance and Agility with VR Games": 1 +"4th Grade Art: Exploring Creativity through Origami and Paper Craft": 1 +"Medieval Inventions: The Impact of the Water Wheel on Modern Energy Production: A Study on the Principle of Conservation of Energy": 1 +"6th Grade Mathematics: Understanding Weather Patterns through Statistical Analysis": 1 +"9th Grade Science: Exploring Ecosystems and Biodiversity Through Virtual Reality in Environmental Studies": 1 +"5th Grade Health Science: Understanding the Cardiovascular System through Physical Fitness and Heart Rate Monitors": 1 +"12th Grade Literature: Deconstructing Austen’s Characterization using Text Mining and Sentiment Analysis": 1 +"4th Grade Music: Discovering Rhythm and Beat with Virtual Drum Kits": 1 +"1st Grade Mathematics: Learning Basic Addition and Subtraction through Interactive Games": 1 +"2nd Grade French: Building Vocabulary with Fun Animations and Duolingo": 1 +"7th Grade Science: Exploring Photosynthesis through Microscopic Plant Examination": 1 +"3rd Grade Social Studies: Native American Tribes: Understanding Culture through Storytelling and Art": 1 +"5th Grade English: Creative Writing: Developing Characters and Plot with Storyboard Tools": 1 +"8th Grade Geography: Investigating the Amazon Rainforest through Google Earth and VR Expeditions ": 1 +"6th Grade Art: Mastering Perspective and Shading with Graphite Pencils": 1 +"4th Grade History: The Medieval Times: Understanding Feudalism through Interactive Role-play": 1 +"9th Grade Environmental Studies: Climate Change and its Impact: Analysis through Satellite Images and Data Visualization": 1 +"6th Grade English: Exploring Poetry Styles through Lyric Writing": 1 +"2nd Grade Art: Understanding Shapes and Patterns with Origami": 1 +"4th Grade Science: Investigating Rainforest Habitats Using Virtual Reality": 1 +"5th Grade History: Discovering Medieval Europe with Interactive Time Maps": 1 +"2nd Grade History: The Influence of the Wheel on Early Human Transportation ": 1 +"4th Grade English: Crafting Tales with Digital Storytelling Tools": 1 +"3rd Grade Mathematics: Fun Exploration of Addition and Subtraction using Math Apps": 1 +"6th Grade Mathematics: Conquering Geometry and Algebra through Puzzles and Games": 1 +"Understanding Nutrition in 4th Grade Health and Wellness using Food Pyramid": 1 +"3rd Grade Science: Exploring Outer Space with Planetarium Software": 1 +"5th Grade Geography: Understanding Geographic Features through Minecraft Landscapes": 1 +"7th Grade Physical Education: Understanding Basketball Strategy through NBA 2K Game Play": 1 +"6th Grade Science: Exploring the Solar System and Its Components with Augmented Reality": 1 +"11th Grade Health: Understanding the Impact of Nutrition on Athletic Performance through Diet Tracking": 1 +"8th Grade History: The Role of Telegraph in the Civil War Communication": 1 +"7th Grade Mathematics: Discovering Geometry through Origami Folding Techniques": 1 +"5th Grade History: The Migration Patterns of Early Nomadic Tribes": 1 +"7th Grade Social Studies: Uncovering the Secrets of Medieval Europe through Castle Architecture": 1 +"A Comprehensive Study of 10th Grade Aerobic Exercises in Health and Fitness using Fitbit Activity Tracker": 1 +"4th Grade Music: Creating Melodies with Homemade Percussion Instruments": 1 +"7th Grade History: Understanding Medieval Warfare Tactics - A Focus on Catapults and Trebuchets": 1 +"5th Grade English: Improving Storytelling Abilities through Puppet Shows using Green Screens": 1 +"1st Grade Elementary Music: Introduction to Melody through Xylophone Play": 1 +"Observing the Cosmos: A 4th Grade Science Course on Space Exploration using Telescopes and Planetariums": 1 +"10th Grade Health Science: Exploring the Circulatory System with Virtual Reality Simulations": 1 +"Investigating the Evolution of Transportation in 7th Grade Social Studies using Augmented Reality with Microsoft HoloLens": 1 +"9th Grade Music: The Evolution from Acoustic to Electric Guitar through the Influence of Rock ’n’ Roll": 1 +"8th Grade Physical Education: Advancing Basketball Techniques with the Use of Motion-Sensor Technology for Movement Analysis": 1 +"5th Grade Chemistry: Understanding Chemical Reactions through Baking Soda and Vinegar Experiments": 1 +"3rd Grade Art: Discovering Portraits Drawing with Digital Watercolours on Samsung Galaxy Tab using Autodesk Sketchbook and S Pen.": 1 +"5th Grade Mathematics: Conquering Division with the Help of Number Lines and Fraction Bars": 1 +"7th Grade English Language Arts: Crafting Captivating Poetry: A Rhyme and Rhythm Tutorial": 1 +"8th Grade Biology: Understanding Ecosystems and Food Chains through the Exploration of Coral Reefs": 1 +"2nd Grade History: The Journey from Steam Engines to Bullet Trains: A Look into the Evolution of Railways": 1 +"3rd Grade Science: Exploring the Solar System: A Deep Dive into Planets and their Moons": 1 +"6th Grade Physical Education: Enhancing Flexibility and Strength through Gymnastic Rings and Balance Beams": 1 +"5th Grade Social Studies: Investigating the Impact of the Telephone on American Society": 1 +"4th Grade Mathematics: Mastering Fractions through the Use of Real-Life Scenarios and Manipulatives": 1 +"2nd Grade English Language Arts: Creating Charming Children’s Stories: A Book Creator Tutorial": 1 +"8th Grade American History: A Comprehensive Study of the American Revolution and the Role of the Printing Press": 1 +"4th Grade Biology: Discovering Life Cycles Using Butterfly Kits": 1 +"3rd Grade Science: Exploring the Solar System Through Telescope Observations": 1 +"2nd Grade Environmental Studies: Learning About Seasons Through Temperature Logs": 1 +"7th Grade Art: Oil Painting Basics: Understanding Blending Techniques": 1 +"4th Grade Geography: Journeying Through U.S. States using Interactive Maps": 1 +"11th Grade Literature: The Role of Irony in Novels Discussed via Zoom": 1 +"7th Grade Mathematics: Enhancing Multiplication and Division Proficiency With Online Math Puzzles": 1 +"Microsoft Teams Integration: Fourth Grade History: Understanding Ancient Civilizations Through Virtual Field Trips": 1 +"9th Grade Biology: Understanding Photosynthesis and Cellular Respiration Using Lab Experiments and Online Simulations": 1 +"6th Grade Art: Landscape Drawing - An In-depth Study of Shading Techniques": 1 +"3rd Grade Science: Discovering the Solar System through Interactive 3D Models and Virtual Reality": 1 +"8th Grade Physical Education: Mastering Tennis Skills with the Aid of Motion Sensor Technology": 1 +"12th Grade: Nutrition and Dietetics in Home Economics - Understanding the Digestive System": 1 +"2nd Grade Language Arts: Early Composition and Grammar through Creative Writing": 1 +"2nd Grade Music: Exploring Rhythms and Melodies using Digital Music Software": 1 +"8th Grade Literature: Analyzing Irony in Mark Twain’s Novels through Historical Perspective with Quizlet": 1 +"5th Grade Health Education: Promoting Wellness through Mindfulness and Meditation using Wellness Apps": 1 +"9th Grade Physics: Diving into Quantum Mechanics through Particle Simulation": 1 +"8th Grade Digital Literacy: Incorporating Google Classroom for Efficient Research Papers Compilation": 1 +"10th Grade Social Studies: Mapping the Progress of Civil Rights Movement through the Perspective of Martin Luther King Jr.": 1 +"5th Grade Science: Electricity and its Role in the Digital Age: An Exploration of Circuits and Conductors": 1 +"8th Grade Art: Utilizing Photoshop for Digital Collage Creation": 1 +"6th Grade History: The Industrial Revolution: The Impact of Steam Engines and Locomotives": 1 +"7th Grade English: Harnessing the Power of Microsoft Word for Poetic Structures and Rhyme Schemes": 1 +"9th Grade Geography: Virtual Exploration of Biomes and Ecosystems Using Augmented Reality": 1 +"5th Grade Mathematics: Quadrilaterals and Polygons: A Deep Dive Using Geometry Pad": 1 +"3rd Grade Science: The Water Cycle: An Interactive Study Using Animation Software": 1 +"7th Grade Physical Education: The Science of Exercise: Understanding Metabolism and Calorie Burning": 1 +"6th Grade Art: Sculpture Creation using 3D Printing Technology": 1 +"8th Grade Mathematics: Algebra - Solving Equations using Online Math Tools": 1 +"6th Grade Biology: Exploring Ecosystems Through Virtual Reality": 1 +"2nd Grade Physics: Understanding Motion with Interactive Experiments": 1 +"Kindergarten Environmental Studies: Learning about Seasons with Fun Craft Projects": 1 +"4th Grade Mathematics: Mastering Multiplication and Division through Exciting Board Games": 1 +"5th Grade History: Discovering Ancient Egypt Through Virtual Museum Tours": 1 +"3rd Grade Science: Studying Plants and Photosynthesis with Hands-on Garden Projects": 1 +"4th Grade Social Studies: Exploring Native American History with Augmented Reality": 1 +"6th Grade Literature: Exploring Symbolism in Adventure Novels with Interactive Story Maps": 1 +"2nd Grade Geography: Understanding Maps and Compasses through Treasure Hunting Activities": 1 +"7th Grade Physics: Investigating the Laws of Gravity with Rocket Technology.": 1 +"5th Grade Biology: Exploring Plant Life through Microscopic Observation": 1 +"10th Grade History: The Impact of Television Broadcasts in the Vietnam War": 1 +"Mastering Kindergarten Mathematics: Discovering Counting and Simple Addition with Fun Blocks": 1 +"Enhancing 3rd Grade Subtraction Skills: Delving into the Abacus through Interactive Tablets": 1 +"5th Grade Algebra: Grasping Equations and Variables with Math Puzzles": 1 +"10th Grade English Literature: Improving Analytical Reading and Text Interpretation through PDF E-books": 1 +"1st Grade Essential Skills: Employing Virtual Reality Games to Promote Personal Hygiene": 1 +"5th Grade Music: Understanding Rhythm through GarageBand Music Creation ": 1 +"7th Grade Art: Unfolding Sculpture Techniques with Clay and Plaster": 1 +"8th Grade Art: Mastering Portraiture: Learning Facial Proportions and Expressions": 1 +"1st Grade Mathematics: Understanding Basic Addition and Subtraction through Fun Board Games": 1 +"2nd Grade Science: Discovering the Water Cycle using Interactive Weather Station Models": 1 +"3rd Grade Music: Learning Melodies with Recorders in Woodwind Instruments using a Music App": 1 +"4th Grade Social Studies: Investigating Local Government through Role Play and Virtual Elections": 1 +"5th Grade Language Arts: Enhancing Vocabulary and Reading Comprehension with Online Book Clubs": 1 +"6th Grade Biology: Observing Plant Growth using Time-Lapse Videos and Microscopic Leaf Examination": 1 +"7th Grade Art: Experimenting with Line, Shape and Texture using Charcoal and Pastels": 1 +"8th Grade Mathematics: Mastering Fractions through Pizza Making and Interactive Apps": 1 +"3rd Grade World Cultures: Understanding Cultural Diversity through Virtual Reality Tours and Cooking Lessons": 1 +"5th Grade Science: Engaging with Physics through Simple Machines and Lego Models": 1 +"4th Grade Science: Exploring Renewable Energy and the Role of Solar Panels": 1 +"2nd Grade Art: Understanding Color Theory through Watercolor Painting and Procreate Digital Software": 1 +"3rd Grade Mathematics: Discovering Fractions through Cooking Measurements": 1 +"7th Grade Geography: Investigating Tectonic Plates and Earthquakes Through GIS Software": 1 +"5th Grade Music: Learning Harmony through Handbells and Music Notation on Flat.io": 1 +"6th Grade English: Improving Essay Writing Skills through Microsoft Word Tools and Techniques": 1 +"1st Grade Science: Introduction to Animal Diversity through Augmented Reality": 1 +"8th Grade History: Unveiling Medieval Europe through Castle Architecture": 1 +"2nd Grade Physical Education: Understanding the Importance of Stretching and Warm-up Exercises": 1 +"Exploring Quantum Mechanics in Superhero Comic Books: A 7th Grade Science Course": 1 +"4th Grade Science: Exploring the Solar System with Stellarium, an Astronomy Software": 1 +"Civil War Era: The Role of Telegraph Communication in 7th Grade History ": 1 +"Kindergarten Environmental Studies: Understanding Recycling and its Impact on the Planet": 1 +"Fifth Grade Environmental Studies: Exploring the World of Insects using Seek, a Species Identification App": 1 +"Tropical Rainforest Life: A 10th Grade Geography Course using Virtual Reality through Google Expeditions and Oculus Quest": 1 +"1st Grade Geography: Utilizing Google Earth for Interactive Map Reading": 1 +"8th Grade Music: Melody and Harmony - Exploring the Art of Orchestra Performance and Music Notation": 1 +"4th Grade Health Studies: Uncovering the Significance of Balanced Diet in Our Daily Routine": 1 +"1st Grade Music: Understanding Beat and Tempo through GarageBand Software using Loop Sequencing": 1 +"3rd Grade Reading: Boosting Understanding with Puppetry Narration and Interactive e-Book Reading": 1 +"3rd Grade English: Creative Poetry Writing using Brainstorming Tools and Evernote": 1 +"5th Grade Geography: The Exploration of the Amazon Rainforest - The Use of Bamboo in Indigenous Lifestyle": 1 +"Soccer: Skills and Strategies - Use of Video Replay Software in 7th Grade Physical Education for Ten Different Formations": 1 +"4th Grade Language Arts: Innovative Character Development through Role-playing Technique": 1 +"Kindergarten Art: Learning Shape Formation through Hands-on Sculpture Activities": 1 +"6th Grade Science: Understanding Photosynthesis Through Leaf Structure Study Using Microscopic Technology": 1 +"1st Grade Physical Education: Excitement with Dance Routines Using Motion Tracking Devices": 1 +"3rd Grade Mathematics: Mastering Addition and Subtraction through Tangrams and Blockly Coding": 1 +"1st Grade Mathematics: Decoding the Magic of Numbers with Number Line": 1 +"4th Grade History: Deciphering Medieval Europe with Augmented Reality and Map Reading": 1 +"8th Grade Mathematics: Understanding Probability and Statistics with Practical Applications": 1 +"9th Grade Language Arts: Exploring Symbolism and Foreshadowing through Multimedia Presentations": 1 +"1st Grade Science: Discovering Animal Habitats with Virtual Reality Tours": 1 +"8th Grade Physics: Introduction to Basic Laws of Motion with Hands-On Experiments": 1 +"9th Grade Literature: Delving into Greek Mythology through the Works of Homer": 1 +"10th Grade History: The Role of Renewable Energy in Modern Society - 10 Sustainable Energy Initiatives": 1 +"6th Grade Music: Improving Piano Techniques through Sight-Reading and Sibelius Software: A Focus on Harmonic Progression": 1 +"3rd Grade Language Arts: Journey into Non-Fiction - An Introduction to Podcasts ": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals using Everyday Objects": 1 +"6th Grade Geography: Exploring Asian Countries through Interactive Maps and Digital Tools": 1 +"4th Grade Health: Understanding Basic Nutrition and the Importance of a Balanced Diet": 1 +"5th Grade Literature: Exploring Metaphors and Similes in Short Stories": 1 +"Maximizing Athletic Performance with Fitbit and Plyometric Exercises in 10th Grade Physical Education": 1 +"1st Grade English: Mastering Pronouns and Conjunctions with Interactive Learning Tools ": 1 +"4th Grade Math: Enhancing Multiplication Proficiency through Puzzles and Math Games": 1 +"From Page to Stage: Exploring Prose and Theatre through Character Monologues in 6th Grade Drama": 1 +"7th Grade Biology: Anatomy - The Human Body, Systems, and their Functions": 1 +"1st Grade Art: Basics of Watercolor Painting using Digital Applications": 1 +"2nd Grade Technology: The Rise of Robotics: Understanding Basic Coding and Robotics": 1 +"5th Grade Music: Exploring Classical Music: Mozart and the Art of Composition": 1 +"7th Grade History: The Influence of Medieval Agriculture on Modern Farming Techniques": 1 +"Mastering Multiplication: 3rd Grade Mathematics and the Use of Abacus": 1 +"5th Grade Social Studies: Understanding the Role of Hieroglyphics in Ancient Egyptian Communication": 1 +"7th Grade Physical Education: Fundamentals of Volleyball and Cooperative Sports": 1 +"10th Grade Music: Understanding Logic Pro X and the Fundamentals of Songwriting": 1 +"2nd Grade Environmental Studies: Wind Turbines and Their Effect on Bird Migration - A Look at Renewable Energy": 1 +"4th Grade Mathematics: Enhancing Multiplication Skills through Virtual Reality and Gamification": 1 +"5th Grade Science: Discovering the Rainforest Ecosystem through Augmented Reality": 1 +"3rd Grade Art: Advanced Shape Formation - The Role of Perspective and Angles": 1 +"5th Grade Physical Education: Building Strength and Unity in Basketball and Relay Races.": 1 +"5th Grade Mathematics: Exploring Geometry through Origami Art": 1 +"An In-Depth Analysis of Irony in Robert Frost’s ’The Road Not Taken’ for 9th Grade Literature": 1 +"From Pyramids to Papyrus: The Influence of Ancient Egyptian Innovations on Civilization - 7th Grade History": 1 +"2nd Grade Science: Discovering Aquatic Life: Creating and Maintaining Fishbowls": 1 +"3rd Grade English: Mastering Conjunctions and Sentence Fluency with Story Cubes": 1 +"12th Grade Geography: The Effect of Climate Changes on Migration Patterns in the Modern World": 1 +"5th Grade Environmental Studies: Understanding Biodiversity through Insect Collection and Classification": 1 +"8th Grade Computer Science: Building Interactive Games using JavaScript and HTML": 1 +"4th Grade English: Fairy Tales and Grammar Reinforcement": 1 +"2nd Grade Environmental Studies: Windmill Models and Energy Conservation Techniques": 1 +"4th Grade Science: Exploring Eco-systems through Virtual Reality and Google Earth": 1 +"7th Grade Art: Evolution of Renaissance Painting: From Fresco to Oil Paint": 1 +"4th Grade Mathematics: Discovering Geometry with 3D Printing and Tinkercad": 1 +"Kindergarten Language Skills: Improving Vocabulary through Interactive Puppet Shows": 1 +"5th Grade History: Exploring the Civil War Era through Virtual Field Trips": 1 +"1st Grade Science: Understanding Life Cycles through Augmented Reality using ARKit": 1 +"3rd Grade Music: Introduction to Rhythm and Tempo through Percussion Instruments": 1 +"Pre-school Physical Education: Learning Basic Motor Skills with Fun Obstacle Courses": 1 +"2nd Grade Reading: Enhancing Comprehension through Storybook Theater and Role Play": 1 +"6th Grade Geography: Understanding Climate Zones with Interactive Globe and Weather Station": 1 +"5th Grade Geography: Understanding European Landforms through Map Reading ": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division Using Number Lines": 1 +"9th Grade Biology: Exploring Cell Division through Microscopic Observation and Diagramming ": 1 +"7th Grade Mathematics: Algebra - Solving Equations with the Use of Digital Tools and Interactive Whiteboard Activities": 1 +"11th Grade Physics: Mechanics - Learning Motion and Forces through Simulation Software": 1 +"4th Grade Music: Appreciating Rhythm through Percussion Instruments": 1 +"1st Grade Science: Understanding Weather Patterns through Interactive Mobile Apps ": 1 +"6th Grade Art and Design: Fundamentals of Origami and Paper Sculpture ": 1 +"8th Grade History: The Influence of Railroads in the Industrial Revolution ": 1 +"5th Grade History: Ancient Civilizations - The Use of the Wheel in Early Transportation Techniques": 1 +"8th Grade Geography: The Impact of Plate Tectonics on Global Climate using Augmented Reality": 1 +"11th Grade Physical Education: Enhancing Performance with Dietary Apps in Athletics and Body Conditioning": 1 +"2nd Grade History: Exploring Native American Cultures through Storytelling and Interactive Maps": 1 +"8th Grade English Language Arts: Unpacking Themes in Emily Dickinson’s Poetry with E-Readers and Audiobooks": 1 +"5th Grade Art: Discovering Impressionist Painters using Virtual Reality Technology": 1 +"4th Grade Art: Understanding Textures and Patterns through Collage Creations": 1 +"6th Grade Mathematics: The Mystery of Multiplication and the Power of Primes": 1 +"3rd Grade Mathematics: Understanding Geometry with Virtual Manipulatives and Math Playground": 1 +"7th Grade Language Arts: Delving into Idioms and Proverbs using ABCmouse’s Interactive Lessons ": 1 +"4th Grade Science: Life Cycle of a Plant - An In-depth Examination using Time-lapse Technology": 1 +"4th Grade Mathematics: Exploring Fractions through Baking Activities": 1 +"3rd Grade Social Studies: Understanding Community Helpers through Role Play": 1 +"11th Grade Biology: The Effect of Pollution on Coral Reefs - Implementing Conservation Strategies": 1 +"Renaissance Art: The Influence of Leonardo Da Vinci in the Evolution of Portrait Painting": 1 +"2nd Grade Music: Exploring World Cultures through Traditional Instruments": 1 +"6th Grade History: Journeying Through Ancient Greece with Mythology and Artifacts": 1 +"4th Grade Art: Creating Native American Pottery using Coiling Techniques": 1 +"7th Grade Science: Exploring the Human Body with Virtual Reality Technology": 1 +"1st Grade Health: Learning Hygiene and Health Habits through Interactive Games": 1 +"3rd Grade Reading: Diving into Adventure Genres with Interactive E-books": 1 +"3rd Grade Science: Exploring Plant Life-cycles through Hands-on Gardening and Growth Tracking": 1 +"7th Grade Art: Understanding Perspective and Depth with Charcoal and Graphite Sketching": 1 +"10th Grade Literature: Leveraging Merriam-Webster’s Thesaurus for Creative Writing Enhancement": 1 +"1st Grade Earth Science: Introduction to the Water Cycle and Making Rain Gauges": 1 +"7th Grade History: The Renaissance Era - The Impact of the Printing Press": 1 +"3rd Grade Computer Science: Breaking down Fairy Tales with Blockly Coding – An Interactive Learning Journey": 1 +"7th Grade Music: Discovering the Power of Digital Audio Workstations and MIDI Controllers in Electronic Music Production": 1 +"10th Grade Physical Education: Embracing Fitness and Health through Heart Rate Monitoring Using Apple Watch": 1 +"5th Grade Geography: Navigating the World with Virtual Reality Tours and Globes": 1 +"3rd Grade Social Studies: Ancient Egypt, Hieroglyphics and Irrigation Techniques": 1 +"3rd Grade Science: Exploring the Solar System with Interactive Apps and Telescopes": 1 +"7th Grade Physical Education: Mastering Basketball Dribbling Techniques with Cone Drills and Video Feedback": 1 +"2nd Grade Art: Discovering Shapes and Colors through Collage and Lithography": 1 +"5th Grade English: Nurturing Creativity: Digital Storytelling on Kindle and its Influence": 1 +"4th Grade Language Arts: Enhancing Reading Skills through Interactive E-Comics": 1 +"9th Grade Social Studies: Unraveling the Impact of the Transatlantic Slave Trade on Modern Society": 1 +"6th Grade Mathematics: Grasping Geometry with Geogebra Tools and Set Squares": 1 +"2nd Grade Physical Education: Unveiling Soccer through Practice Drills and Goal Posts": 1 +"The Role of Drip Irrigation in Plant Growth: Emphasis on Soil Moisture Sensors: 3rd Grade Environmental Studies": 1 +"Creating Beats in 7th Grade Music: A Course on FL Studio, Drum Machine Use and Compression Techniques.": 1 +"2nd Grade Science: Exploring Plant Life Cycles through Seed Germination Experiments": 1 +"7th Grade Geography: Investigating Geothermal Features through Interactive 3D Earth Models": 1 +"4th Grade English: Understanding Conflict Resolution in Literature using Character Analysis": 1 +"3rd Grade Math: Multiplication Concepts through Grid Methods and Introduction to Division": 1 +"10th Grade Biology: Genetic Variation and Adaptation: An Inquiry into Darwin’s Finches": 1 +"7th Grade History: The Impact of the Silk Road on Ancient Asian Civilizations": 1 +"10th Grade Social Studies: Decoding the Manhattan Project and its Impact on World War II": 1 +"8th Grade Physical Education: Intermediate Gymnastics focusing on Balance Beam Techniques": 1 +"5th Grade Physical Education: Fundamentals of Soccer through Augmented Reality Training": 1 +"7th Grade Math: Fostering Logical Thinking through Chess Strategy Analysis": 1 +"8th Grade Geography: Understanding Global Climate Regions through Interactive Digital Maps": 1 +"5th Grade Music: Exploring Rhythm and Tempo through Drumming and Percussion Instruments": 1 +"6th Grade Science: Exploring the Solar System and Celestial Bodies through Virtual Reality": 1 +"4th Grade English: Story Crafting and Character Development through Puppetry and Drama Techniques": 1 +"1st Grade Math: Learning Basic Addition and Subtraction through Interactive Board Games": 1 +"Kindergarten Art: Discovering Textures and Patterns through Collage Making with Fabric and Paper": 1 +"2nd Grade Science: Understanding Basic Principles of Magnetism through Fun Experiments": 1 +"9th Grade History: An In-depth Study of the Cold War Era through Political Cartoons and Propaganda Analysis": 1 +"3rd Grade Mathematics: Introduction to Fractions and Decimals through Cooking and Baking Activities": 1 +"5th Grade History: Understanding the Civil Rights Movement through Picture Books and Oral Storytelling.": 1 +"7th Grade History: Exploring the Evolution of Telecommunication Devices": 1 +"9th Grade Physical Education: Mastery of Kinesiology and Body Mechanics through Sports Science": 1 +"12th Grade Literature: Comparative Study of Modern Novels using Digital Annotation Platforms": 1 +"3rd Grade Physical Education: Basics of Soccer: Dribbling, Shooting, and Defending": 1 +"1st Grade Geography: Learning about Weather Patterns and Climatic Zones through Interactive Smartboards": 1 +"6th Grade Astronomy: Exploring the Solar System with Hubble Space Telescope and Spectroscopy": 1 +"3rd Grade Music: Discovering Melody Construction using GarageBand and Digital Keyboards": 1 +"5th Grade Art: Learning Texture Techniques in Painting with Acrylics and Palette Knives": 1 +"4th Grade Mathematics: Mastering Multiplication and Division through Interactive Learning Games": 1 +"9th Grade History: Understanding the Impact of the Printing Press in the Renaissance Era": 1 +"4th Grade Geography: Exploring Continental Drift Theory with Interactive Maps using Google Earth": 1 +"11th Grade Literature: Decoding Metaphors in Shakespeare’s ’Hamlet’ using Project Gutenberg and Google Docs": 1 +"4th Grade Science: Unraveling the Secrets of Photosynthesis through Microscopic Observations": 1 +"7th Grade Music: Discovering Mozart through Interactive Piano Apps": 1 +"8th Grade Chemistry: Grasping the Concept of Acids and Bases with Home Experiments": 1 +"5th Grade Art: Understanding Perspective and Depth in Sketching with Pencil and Paper": 1 +"7th Grade Mathematics: Delving into the World of Geometry with Interactive 3D Models using SketchUp": 1 +"2nd Grade Social Studies: Pioneer Life & The Significance of Covered Wagons": 1 +"7th Grade Music: Basics of Rhythm and Melody with Percussion Instruments": 1 +"5th Grade Art: Discovering the Art of Storytelling through Stop Motion Animation with Smartphone Apps.": 1 +"3rd Grade Geography: Understanding Climate Zones with Interactive Globes": 1 +"9th Grade Music: The Impact of Violin in Vivaldi’s Contribution to Baroque Music": 1 +"7th Grade English Literature: Enhancing Poetry Analysis with Visual Thesaurus Tools": 1 +"2nd Grade Reading: Boosting Reading Fluency and Vocabulary Acquisition using Animated Storybooks": 1 +"6th Grade Music: The Role of the Guitar in the Evolution of Rock Music": 1 +"4th Grade Health: Learning about the Human Body Systems through Interactive Models and Simulations": 1 +"Unraveling the Mysteries of Geometry: A Comprehensive 10th Grade Mathematics Course on Pythagorean Theorem and its Applications": 1 +"Sound Design in 7th Grade Music: A Module on GarageBand, MIDI Sequencing and the Use of Delay": 1 +"6th Grade Physical Education: Improving Soccer Techniques through Understanding Aerodynamics using Virtual Reality Tools": 1 +"4th Grade Science: Discovering the Water Cycle through Hands-on Experiments and Simulations": 1 +"4th Grade Chemistry: Exploring the Water Cycle with Interactive Online Simulations": 1 +"8th Grade Art: Creating Abstract Paintings using Color Theory and the Golden Ratio": 1 +"5th Grade Mathematics: Understanding Geometric Shapes through Tangram Puzzles and Interactive Software": 1 +"6th Grade Science: An Interactive Investigation of Weather Patterns using Online Meteorology Tools": 1 +"3rd Grade English: Mastering Spelling with Fun Crossword Puzzles and Online Word Games": 1 +"10th Grade Biology: Exploring Plant Physiology through Virtual Dissection": 1 +"4th Grade History: Analyzing the Role of Iron in Medieval European Societies": 1 +"2nd Grade Mathematics: Multiplication Basics with Interactive Number Lines and Counting Sticks": 1 +"5th Grade Music: Understanding Melody and Harmony through GarageBand": 1 +"3rd Grade Geography: Interactive Study of World Maps and Globes using Augmented Reality": 1 +"6th Grade Literature: Crafting Poetry with RhymeZone and Google Docs": 1 +"8th Grade Geography: Navigating World Maps using Interactive Globe and Virtual Reality": 1 +"Cold War Period: Decoding the Enigma Machine and its Role in Code Breaking - A Comprehensive 10th Grade History Course": 1 +"5th Grade Geography: Discovering the Wonders of the Great Barrier Reef with Oculus Quest VR and Google Earth VR": 1 +"7th Grade Chemistry: Analyzing Chemical Reactions with pH Meters in Laboratory Settings": 1 +"11th Grade Biology: Understanding the Complexity of Cellular Respiration through AR Models": 1 +"Investigating the Role of Wind Turbines in Energy Production and Bird Migration Patterns: A 4th Grade Environmental Science Course": 1 +"1st Grade Language Arts: Building Phonics Skills with Rhyming Words using Interactive Apps": 1 +"3rd Grade Life Science: Understanding Photosynthesis through the Use of Hydroponic Garden Systems": 1 +"Tenth Grade English: The Impact of the Typewriter on Modern Literature": 1 +"2nd Grade Social Studies: Understanding Community Roles through Interactive Town Building": 1 +"4th Grade English: Poetry and Haiku Creation on Digital Platforms with Google Docs Integration": 1 +"1st Grade Art: Discovering Color Mixing with Finger Paints": 1 +"5th Grade Science: Exploring Weather Patterns through DIY Anemometer and Rain Gauge": 1 +"2nd Grade Music: Learning Melody with Xylophones": 1 +"4th Grade Mathematics: Mastering Fractions - Incorporating Pizza Slices, Lego Blocks, and Fraction Circles": 1 +"6th Grade Health: Embracing Fitness through Pedometer Tracking, Nutrition Education, and the Use of the MyFitnessPal App": 1 +"1st Grade History: Journey through American Pioneer Life with Interactive Dioramas and Augmented Reality Experiences": 1 +"4th Grade Literature: Delving into the Impact of Graphic Novels on Contemporary Storytelling": 1 +"3rd Grade Language Arts: Comic Strip Creation and Digital Narration with Toon Boom Studio": 1 +"4th Grade Science: Understanding the Water Cycle and Weather Patterns using Interactive Models": 1 +"6th Grade Language Arts: Building Strong Argumentative Essays with Graphic Organizers": 1 +"5th Grade Mathematics: Mastering Multiplication and Division with Digital Manipulatives": 1 +"2nd Grade Art: Introduction to Shapes and Patterns through Collage Making": 1 +"7th Grade Geography: Investigating Climate Zones and Biomes using Virtual Field Trips": 1 +"1st Grade Music: Discovering Rhythm and Beat through Dance and Movement": 1 +"8th Grade History: The Industrial Revolution and its Impact on Modern Transportation": 1 +"4th Grade Language Arts: Enhancing Reading Fluency with Dramatic Read-Alouds and Reader’s Theater": 1 +"9th Grade Art: Exploring Perspective and Shadow through Still Life Drawing": 1 +"3rd Grade Science: Plant Life Cycles and Photosynthesis Explored through Hands-on Experiments": 1 +"5th Grade Science: Exploring Ecosystems with Virtual Field Trips": 1 +"7th Grade Music: Exploring Rhythm and Harmony in Classical Piano": 1 +"4th Grade Geography: Investigating the Role of Rivers in Shaping Civilizations": 1 +"3rd Grade Art: Learning Paper Mache Techniques for Creating 3D Models": 1 +"8th Grade Literature: Analyzing Symbolism in Harper Lee’s To Kill a Mockingbird": 1 +"1st Grade Science: Introduction to the Water Cycle using Interactive Models": 1 +"9th Grade History: The Telegraph and its Significance in the Civil War": 1 +"3rd Grade Mathematics: Mastering Multiplication and Division with the help of Interactive Games": 1 +"7th Grade Art: Introduction to Sculpture using Clay and Plaster": 1 +"12th Grade English: Exploring the Themes of Love and War in Hemingway’s Novels": 1 +"7th Grade History: Discovering Medieval Europe through Augmented Reality and Interactive Maps": 1 +"High School Physics: Understanding Quantum Mechanics with Virtual Reality Simulations": 1 +"4th Grade Science: Exploring Planetary Systems through 3D Models and Augmented Reality": 1 +"6th Grade English: Immersing in Shakespeare’s World with VR and Interactive Storytelling": 1 +"3rd Grade Mathematics: Fun with Fractions using Interactive Mathboard App on iPad Devices": 1 +"9th Grade Geography: Exploring the Impact of Climate Change on World Maps through Virtual Tours": 1 +"2nd Grade Art: Introduction to Mosaic Art with Interactive Digital Tools": 1 +"High School Biology: The World of Microorganisms Explored through Microscopic VR and Augmented Reality": 1 +"8th Grade Health: Understanding the Human Skeletal System through 3D Modelling and Virtual Reality": 1 +"5th Grade Music: Exploring Rhythm and Tempo with Digital Audio Workstations and Interactive Apps": 1 +"5th Grade Geography: Understanding Topography through 3D Printing and Virtual Explorations": 1 +"8th Grade Mathematics: Exploring the Fibonacci Sequence via Interactive Digital Tools and Real-life Applications": 1 +"10th Grade Chemistry: Exploring Elements and Compounds Using Virtual Reality and Interactive Lab Simulations": 1 +"6th Grade Art: Discovering the Renaissance through Augmented Reality and Collaborative Canvas": 1 +"11th Grade Physics: Unveiling the Universe: A Deep Dive into Astrophysics using Interactive Simulations and Astronomical Data": 1 +"9th Grade Spanish: Learning Language and Culture through Virtual Reality Trips and Online Collaboration": 1 +"Climate Science for 4th Graders: Understanding Global Warming through Interactive Earth Models and Satellite Data": 1 +"8th Grade Physical Education: Archery, Strategy and the Use of Biometrics for Performance Improvement": 1 +"7th Grade History: The Impact of the Printing Press on the Renaissance: A Deep Dive using Virtual Reality and Archival Research": 1 +"10th Grade Literature: Exploring Shakespearean Sonnets through Digital Collaboration and Interactive Storytelling": 1 +"4th Grade Science: Discovering Photosynthesis through Interactive Plant Growth Simulations": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction using Number Blocks": 1 +"5th Grade Art: Sculpting Miniature Figures using Polymer Clay Techniques": 1 +"7th Grade Music: Exploring Song Composition using GarageBand": 1 +"3rd Grade English: Building Basic Sentence Structures using Interactive Grammar Games": 1 +"1st Grade Health: Understanding the Importance of Hygiene through Animated Storytelling": 1 +"5th Grade Social Studies: The Role of Railroads in the Expansion of the American West": 1 +"8th Grade English: Mastering Persuasive Essays with Argument Mapping Software": 1 +"4th Grade Music: Introduction to Pitch and Scales using Virtual Piano Apps": 1 +"2nd Grade Art: Understanding Shapes and Patterns through Collage Creation": 1 +"3rd Grade Geography: Navigating Continents and Oceans with Interactive Globes": 1 +"2nd Grade Language Arts: Understanding Sentence Structure through Animated Video Lessons": 1 +"7th Grade Art: Designing Unique Sculptures with Clay and 3D Printing Techniques": 1 +"1st Grade Science: Learning about Weather Patterns through DIY Thermometers and Homemade Barometers": 1 +"3rd Grade Mathematics: Mastering Multiplication with the Grid Method": 1 +"6th Grade English: Analyzing Narrative Perspective in Classic Literature": 1 +"5th Grade Art: Exploring Abstract Art using Mixed Reality": 1 +"3rd Grade Art: Creating Animated Characters with Digital Drawing Apps": 1 +"6th Grade Music: Discovering Mozart’s Concertos through Piano Practice and Digital Audio Workstations": 1 +"7th Grade Physical Education: Understanding Nutrition and Dietary Needs through Calorie Counting": 1 +"8th Grade Literature: Exploring Themes of Justice in Classic Novels through Graphic Organizers": 1 +"4th Grade Mathematics: The Wonderful World of Shapes - Understanding Geometry through Origami": 1 +"7th Grade Biology: Unraveling the Mysteries of the Human Body through Dissection Workshops": 1 +"11th Grade Commerce: The Global Economy - Understanding Trade & Tariffs through Digital Simulations": 1 +"3rd Grade History: The Viking Age - Exploring Norse Mythology and Shipbuilding Techniques": 1 +"8th Grade Physical Education: Mastering the Art of Archery - Strategies and Techniques using Bow Stabilizers": 1 +"1st Grade Environmental Science: Discovering the Animal Kingdom through Interactive Zoo Visits": 1 +"2nd Grade Technology: Learning Basic Programming Skills through Kid-Friendly Coding Platforms": 1 +"9th Grade Music: The Magic of Sound - Exploring Acoustics through DIY Percussion Instruments": 1 +"7th Grade History: The Renaissance Era - Understanding Humanism and Art Techniques through Museum Tours": 1 +"5th Grade Geography: Discovering World Landforms through Virtual Reality": 1 +"8th Grade Physics: Understanding the Laws of Motion using Interactive Experiments": 1 +"6th Grade English Language Arts: Interpreting Themes in Folklore using Role-Play": 1 +"9th Grade Digital Art: Exploring Graphic Design with Adobe Illustrator": 1 +"5th Grade History: A Time Travel Adventure through the Ancient Egyptian Civilization": 1 +"10th Grade Chemistry: Delving into Inorganic Chemistry with Lab Experiments": 1 +"7th Grade Science: Investigating Weather Patterns through Data Analysis": 1 +"9th Grade Mathematics: Understanding Trigonometry through Real-World Applications": 1 +"Innovative Storytelling with Storybird: 3rd Grade Language Arts Course Focused on Collaborative Writing": 1 +"11th Grade Biology: Genomics and the Future of Genetic Engineering": 1 +"5th Grade Science: Unraveling the Mysteries of Space and Solar System through VR Technology": 1 +"2nd Grade Mathematics: Understanding Fractions with Fun Pizzas and Interactive Online Games": 1 +"2nd Grade Geography: An Exciting Adventure around The Globe Using Augmented Reality ": 1 +"4th Grade Mathematics: Conquering Division with Engaging Board Games and Mobile Apps": 1 +"8th Grade History: World War II and the Influence of Radio Communication ": 1 +"5th Grade Environmental Studies: Studying Ecosystems through Terrarium Building ": 1 +"3rd Grade History: Discovering the Egyptian Pyramids with Virtual Reality and Hieroglyph Decoding ": 1 +"8th Grade Literature: Exploring Parallel Universes in Modern Fantasy Novels ": 1 +"7th Grade Physical Education: Mastering Yoga and Mindfulness Techniques ": 1 +"Preschool Science: The Diverse World of Ocean Creatures: Immersive Underwater Virtual Tours and Lifecycle Study": 1 +"Improving 4th Grade Fractions with Mathletics: A Focus on Fun and Interactive Learning Games": 1 +"7th Grade English: Poetry Analysis and Creative Writing using Google Docs and PowerPoint Presentations": 1 +"Art Excellence for 9th Grade: Still Life Painting Techniques with Digital Brushes and Graphic Tablets": 1 +"7th Grade Social Studies: The Impact of Solar Energy on Technological Advancements and Innovation": 1 +"5th Grade Literature: Exploring Fairy Tales and Folklore with Kindle and Animated Audiobook Narrations": 1 +"Advanced Programming: Navigating Software Development with Python": 1 +"5th Grade Science: Photosynthesis: A Comprehensive Study through Interactive Lab Simulations": 1 +"First Grade Reading: Adventuring through the Enchanted Forest of The Gruffalo with Digital Books": 1 +"4th Grade Mathematics: Learning Addition and Subtraction with Augmented Reality Tools": 1 +"1st Grade Language Arts: Engaging Storytelling with AR and QuiverVision.": 1 +"5th Grade Biology: Exploring Animal Adaptations using Augmented Reality Zoo Visits": 1 +"3rd Grade English: Enhancing Vocabulary Skills with Interactive Word Games": 1 +"7th Grade Drama: Understanding Character Development through Virtual Theater Performances": 1 +"5th Grade History: Delving into the American Revolution using Interactive Timelines": 1 +"10th Grade Health Education: Enhancing Physical Fitness through Gymnastic Routines": 1 +"Exploring the Architecture of Medieval Castles using Virtual Tours: A 8th Grade History Course": 1 +"Understanding the Solar System in 7th Grade Science: The Planets, Asteroids and Exploration of Space": 1 +"9th Grade Chemistry: Understanding the Periodic Table through Interactive 3D Models": 1 +"11th Grade Art: Creating Realistic Portraits using Digital Medium and Adobe Illustrator Techniques": 1 +"11th Grade Mathematics: Unravelling Trigonometry with Interactive Geometry Tools": 1 +"5th Grade Mathematics: Mastering Multiplication and Division through Online Gaming Platforms": 1 +"7th Grade History: Understanding the Civil War through Virtual Field Trips and Interactive Timelines": 1 +"9th Grade Physics: Exploring Newton’s Laws of Motion with Augmented Reality Experiments": 1 +"4th Grade Geography: Navigating the World’s Continents and Oceans Using Google Maps and Interactive Globe Models": 1 +"10th Grade Literature: Deciphering Symbolism in F. Scott Fitzgerald’s The Great Gatsby through Virtual Book Clubs": 1 +"6th Grade Science: The Life Cycle of a Frog: A Journey through Augmented Reality and Interactive Videos": 1 +"3rd Grade Spanish: Building Vocabulary and Grammar Skills through Interactive Storytelling and Gamified Quizzes": 1 +"Advanced Subtraction Learning: Using the Number Line Technique in 2nd Grade through the Mathway App’s Interactive Lessons": 1 +"7th Grade Music: The Impact of Jazz and Blues on Modern Music - A Study of Louis Armstrong’s Techniques": 1 +"8th Grade Biology: Exploring Ecosystems and Food Chains through Virtual Reality Field Trips and Interactive Diagrams": 1 +"6th Grade Art: Understanding Color Theory through Digital Painting": 1 +"3rd Grade French: Interactive Language Learning with VR technology and Picture Books": 1 +"2nd Grade Physical Education: Developing Coordination through Dance Activities": 1 +"Interactive 3rd Grade Geography: Exploring World Cultures and Virtual Field Trips": 1 +"4th Grade Earth Science: Understanding Volcanoes and Earthquakes": 1 +"9th Grade Algebra: Applying Mathematical Concepts in Personal Finance using Excel": 1 +"Sixth Grade World History: Discovering Ancient Civilizations through Virtual Reality Tours": 1 +"8th Grade Language Arts: Delving into Mystery Novels through Clue Analysis": 1 +"2nd Grade Weather Science: The Magic of Rainbows: Creating a Prism": 1 +"12th Grade Philosophy: The Influence of Technology on Modern Ethics": 1 +"4th Grade Mathematics: Enhancing Multiplication and Division Skills with MathBoard": 1 +"2nd Grade Science: Investigating Plant Growth with Smart Garden Kits": 1 +"7th Grade History: Deciphering the Secrets of Ancient Egyptian Pyramids using Virtual Reality": 1 +"5th Grade Music: Discovering Rhythm and Beats through Beatboxing and GarageBand": 1 +"1st Grade English: Learning Phonics using ABCmouse and Interactive Whiteboards": 1 +"6th Grade Art: Creating Digital Portraits with Adobe Fresco": 1 +"3rd Grade Social Studies: Understanding Cultural Diversity through Virtual World Tours": 1 +"7th Grade English: Enhancing Vocabulary and Spelling Skills using Scrabble and Spell Tower": 1 +"4th Grade Science: Exploring the Solar System with Augmented Reality Apps": 1 +"8th Grade Mathematics: Mastering Algebraic Expressions through Mathway and Photomath": 1 +"6th Grade Art: Exploring Picasso’s Cubism using Augmented Reality Technology ": 1 +"1st Grade Health: Understanding Dental Hygiene through Interactive Tooth Models ": 1 +"9th Grade Literature: Developing Narrative Writing Skills through Digital Storyboarding Tools ": 1 +"3rd Grade Math: Mastering Multiplication Tables with Gamified Learning Apps ": 1 +"8th Grade Science: Investigating the Solar System using Virtual Reality Headsets ": 1 +"4th Grade Social Studies: Understanding the American Revolution through Interactive Timeline Software ": 1 +"5th Grade Physical Education: Incorporating Yoga and Balance Boards for Improved Flexibility ": 1 +"11th Grade Spanish: Enhancing Conversational Skills through Role-playing Video Games ": 1 +"2nd Grade Geography: Recognizing World Continents and Oceans using Interactive Map Puzzles ": 1 +"10th Grade Drama: Perfecting Monologue Delivery - Exploring Emotional Ranges with Video Recording and Playback Technology": 1 +"8th Grade Mathematics: Exploring Geometry and Algebra with Interactive 3D Models and Equation Solvers": 1 +"Kindergarten Science: The Magical World of Dinosaurs and Fossils: Hands-on Exploration with Dinosaur Models and Dig Kits": 1 +"3rd Grade Geography: Understanding the World’s Continents and Oceans through Virtual Reality Tours": 1 +"5th Grade Biology: The Journey of Food: From Digestion to Energy Conversion using Animated Videos": 1 +"7th Grade Art: Mastering the Art of Mosaic: Roman Style": 1 +"3rd Grade Environmental Studies: The Importance of Recycling and Composting: A Study through DIY Projects": 1 +"11th Grade History: World War II - The Impact of Enigma Machine and Code Breaking": 1 +"9th Grade English Literature: Unraveling Themes in Shakespeare’s ’Macbeth’ Through Dramatic Performances": 1 +"Exploring the Mystery of Black Holes in 8th Grade Astronomy: Using Stargazing Apps and Planetarium Visits": 1 +"Learning Chemistry: A 7th Grade Course on Chemical Reactions using Virtual Lab Simulations and Experiment Kits.": 1 +"3rd Grade Geography: Exploring Physical Landforms through Virtual Reality: A Study on Plate Tectonics": 1 +"1st Grade Astronomy: Recognizing Constellations using Star Maps and Planetarium Software": 1 +"2nd Grade Reading: Enhancing Comprehension using Immersive Reading Apps in Google Classroom": 1 +"7th Grade Art: Exploring Watercolor Techniques: Focusing on Wet-on-Wet and Dry Brush Skills": 1 +"5th Grade Music: Exploring Rhythm and Tempo with Beat Making Software and MIDI Keyboards": 1 +"3rd Grade Language Arts: Enhancing Sentence Structure using Tablets, Grammarly, and Quizlet for Collaborative Learning": 1 +"6th Grade Drama: Understanding Stage Directions and Monologues in Shakespeare’s Plays": 1 +"4th Grade History: Investigating Medieval Europe through Castle Architecture": 1 +"1st Grade Weather Studies: Identifying Different Types of Precipitation using Weather Stations and Weather Data": 1 +"3rd Grade Mathematics: Grasping Multiplication Concepts through Interactive Online Games and Virtual Manipulatives": 1 +"5th Grade Science: Exploring Space and Planets through Augmented Reality": 1 +"7th Grade Geography: Climate Change - Understanding its Impact and the Importance of Sustainability": 1 +"3rd Grade Mathematics: Multiplication and Division - Exploring Concepts with Real-Life Scenarios and Digital Tools": 1 +"5th Grade History: Unfolding the Renaissance Period through Artifacts, Legends, and Early Writings": 1 +"6th Grade Art: Exploring Pop Art and Collage Techniques with Recyclable Materials": 1 +"2nd Grade Music: Mastering Tempo with Percussion Instruments and Interactive Apps": 1 +"2nd Grade Music: Introduction to Harmony and Scale using Piano and Music Learning Apps": 1 +"3rd Grade Mathematics: Basic Geometry - Understanding Shapes and Angles with Real-life Examples and Puzzles": 1 +"First Grade Language Arts: Building Reading Skills through Interactive Storytelling and Phonics Software": 1 +"8th Grade Health: Understanding the Digestive System through Virtual Dissection Technology": 1 +"3rd Grade Science: Exploring the Life Cycle of Butterflies Using Interactive Digital Tools": 1 +"9th Grade Computer Science: Building Basic Websites using HTML and CSS": 1 +"4th Grade Social Studies: Understanding World Maps and Globes with Augmented Reality ": 1 +"5th Grade Mathematics: Understanding Geometry through Tangram Puzzles": 1 +"3rd Grade Science: Plant Life Cycle and Photosynthesis Explored with Virtual Reality": 1 +"3rd Grade Mathematics: Addition and Subtraction Mastery through Number Line and Math Games": 1 +"10th Grade Fine Art: The Art of Portraiture - Exploring Techniques in Oil Painting": 1 +"7th Grade History: The Impact of the Printing Press on the Renaissance Era": 1 +"5th Grade Science: Electricity and Circuits Explained with Hands-On Experiments": 1 +"7th Grade Literature: Analyzing Symbolism in Fantasy Novels using Graphic Organizers.": 1 +"7th Grade History: The Development of Pyramids: Exploring Ancient Egyptian Engineering Techniques": 1 +"9th Grade Music: Dissecting Vivaldi’s Concertos using Sibelius Music Notation Software": 1 +"5th Grade Music: Navigating through Mozart’s Sonatas - Violin Technique and Sound Production using GarageBand and Audacity": 1 +"7th Grade Geography: Investigating the Impact of Climate on Human Settlements using ArcGIS": 1 +"6th Grade Paleontology: Discovering the Ancient World through the Study of Marine Fossils and Ice Age Mammals": 1 +"9th Grade Art: Basics of Watercolor Painting and the Use of Different Brushes": 1 +"2nd Grade Physical Education: Mastering the Basics of Soccer: Understanding the Rules and Equipment": 1 +"4th Grade Mathematics: Boosting Addition and Subtraction Skills using Khan Academy Resources": 1 +"7th Grade Music: Journey through Rhythm using the Djembe Drum": 1 +"3rd Grade Science: Exploring Bird Migration Patterns with Radio Telemetry, Doppler Radar, and Satellite Imagery": 1 +"1st Grade Science: Exploring the Solar System using Mobile Planetarium Apps": 1 +"3rd Grade Music: Understanding Musical Notes and Scales with a Ukulele and Music Flashcards": 1 +"4th Grade Mathematics: Grasping Multiplication and Division Concepts with Math Board Games": 1 +"6th Grade History: The World of Medieval Europe and the Use of Armory": 1 +"8th Grade Music: Discovering Music Composition with Yamaha Keyboards and MuseScore Software using Sound Editing Techniques": 1 +"3rd Grade Course: Understanding Geometry and Shape Recognition with Interactive Software": 1 +"6th Grade English: Introduction to Short Stories and Novels using Kindle E-books": 1 +"1st Grade Geography: Journey through the Amazon Rainforest using Virtual Reality and Interactive Maps": 1 +"6th Grade History: Experiencing the Renaissance Era using Oculus Rift VR, Augmented Reality and 3D Printing Tools": 1 +"1st Grade Mathematics: Addition and Subtraction Excellence through Educational Math Games": 1 +"3rd Grade Mathematics: Exploring Shapes and Numbers through Tangram Puzzles": 1 +"6th Grade Literature: Delving into Mystery Novels using Interactive Digital Storyboards": 1 +"7th Grade Physical Education: Incorporating Dance in Team-Building Activities": 1 +"2nd Grade German: Engaging Language Learning with Duolingo, Quizlet Flashcards, and SeeSaw Video Responses": 1 +"5th Grade Science: Understanding the Solar System through Augmented Reality Planetarium": 1 +"8th Grade Music: Exploring Rhythm and Melody in Baroque Period: An In-depth Study of Harpsichord and Oratorio": 1 +"4th Grade Social Studies: The Age of Exploration as Seen through Maritime Maps": 1 +"1st Grade Physical Education: Learning Basic Gymnastics with Fun Floor Exercises": 1 +"2nd Grade Art: Introduction to Textures and Patterns through Paper Mache Crafts": 1 +"7th Grade History: Discovering Medieval Europe using Virtual Reality Castle Tours and 3D Printing": 1 +"4th Grade Mathematics: Exploring Fractions and Decimals using Math Playground": 1 +"1st Grade Music: Understanding Rhythms and Melodies with Virtual Instruments": 1 +"6th Grade Spanish: Learning Verbs and Pronouns using DuoLingo": 1 +"Third Grade Geography: Investigating Continental Drift with Interactive Earth Science Software": 1 +"2nd Grade Health: Learning about Nutrition and Digestion through Food Pyramid Activities": 1 +"8th Grade Drama: Enhancing Acting Skills Using Improvisation Exercises": 1 +"The Boston Tea Party: Analyzing the Causes and Effects in 7th Grade History": 1 +"Kindergarten Art: Discovering Textures and Patterns with Clay Modeling": 1 +"1st Grade Astronomy: Recognizing Planets through Telescope Observation with Star Maps": 1 +"6th Grade Music: Mastering Guitar Chords Using Online Tuning Tools": 1 +"9th Grade Literature: Discovering Shakespeare through Interactive Drama": 1 +"7th Grade Science: Robotics and Python Programming for Environmental Data Collection": 1 +"4th Grade History: Water and Its Impact on Iron Age Agriculture and Development": 1 +"6th Grade Geography: Traversing Through Medieval Europe using Cartography": 1 +"1st Grade Language Arts: Building Creative Narratives through Storytelling Puppets": 1 +"7th Grade Art: Watercolor Painting Techniques": 1 +"4th Grade English: Dive into Fiction: The Power of E-books and Digital Libraries": 1 +"8th Grade Social Studies: Virtual Reality and its Transformation of Education": 1 +"9th Grade Mathematics: Algebra in Everyday Life - Understanding Equations through Technology and Digital Simulations": 1 +"2nd Grade Introduction to Arithmetic: Grasping Numbers and Sequences": 1 +"8th Grade Physics: Understanding Gravity through Virtual Reality Simulations": 1 +"2nd Grade History: Discovering the Ancient Egyptians through Interactive Storytelling": 1 +"Advanced 6th Grade English: Enhancing Vocabulary and Reading Comprehension through the Harry Potter Series": 1 +"9th Grade Art: Exploring Graphic Design with Adobe InDesign and Sketch": 1 +"3rd Grade Music: Introduction to Melody Creation using Garageband": 1 +"11th Grade Music: Composing Orchestral Scores with Logic Pro X": 1 +"Cracking the Code: Cybersecurity in the Digital Age - A 9th Grade Computer Science Course": 1 +"12th Grade Algebra: Mastering Quadratic Equations with Scientific Calculators": 1 +"Advanced Biology: The Human Body Unveiled - A 12th Grade Course using Virtual Reality Models": 1 +"5th Grade History: Understanding the Impact of the Industrial Revolution on British Society": 1 +"3rd Grade Biology: Discovering Plant Life Cycles Through Interactive Garden Projects": 1 +"Second Grade Physics: Exploring Simple Machines with DIY Experiments": 1 +"6th Grade Literature: Understanding Symbolism in Classic Novels with E-Readers and Annotation Apps": 1 +"Fourth Grade Music: Introduction to Musical Notation and Rhythm with Interactive Music Apps": 1 +"1st Grade Art: Exploring Colors and Shapes through Collage and Painting Techniques": 1 +"5th Grade Computer Science: Introduction to Coding with Scratch and Python Junior": 1 +"Second Grade Nutrition: Understanding Healthy Eating Through Food Pyramid and Cooking Classes": 1 +"8th Grade Economics: Understanding Supply and Demand with Real-world Examples and Simulation Games": 1 +"3rd Grade Geography: Exploring the World’s Deserts and Rainforests using Virtual Reality Tours": 1 +"First Grade Physics: Understanding Magnets and Their Uses with Hands-on Activities": 1 +"5th Grade Geography: The Influence of Landforms on Human Settlements": 1 +"3rd Grade Literature: Analyzing Themes and Emotions in Classic Fairy Tales": 1 +"2nd Grade Music: Discovering Rhythms and Beats with Hand Percussions": 1 +"9th Grade Art: The Role of Perspective in Renaissance Paintings": 1 +"7th Grade Physical Education: Understanding Strategy and Cooperation through Basketball Drills": 1 +"11th Grade History: The Impact of the Printing Press on the Enlightenment Era": 1 +"4th Grade Science: An Overview of Plant Life Cycles and Photosynthesis": 1 +"9th Grade Sociology: The Role of Agriculture in Early Civilizations": 1 +"3rd Grade Language Arts: Adventure into Storytelling: Crafting Narratives using Digital Tools": 1 +"6th Grade Mathematics: The Magic of Fractions in Everyday Life": 1 +"4th Grade Geography: Exploring World Maps and the Compass: Navigating Terrain in Ancient Civilizations": 1 +"2nd Grade Science: The Life Cycle of Butterflies: Using Interactive Models and Nature Walks ": 1 +"7th Grade Music: Understanding the Basics of Rhythm and Melody through Hand Drumming and the Recorder": 1 +"1st Grade English: Building Basic Sentence Structures with Fun Storytelling and Interactive Puppet Shows": 1 +"8th Grade Biology: Exploring Plant Photosynthesis with Microscopic Observation and DIY Experiments ": 1 +"6th Grade Art: Introduction to Pottery and Clay Sculpting: A Hands-On Approach": 1 +"3rd Grade Mathematics: Understanding the Concept of Multiplication using Grids, Arrays and Number Lines": 1 +"9th Grade Physical Education: An Introduction to Yoga and Meditation for Stress Management and Focus": 1 +"5th Grade Spanish: Enhancing Grammar Skills through Interactive Conversations with Duolingo and Rosetta Stone": 1 +"7th Grade History: The Ancient Egyptian Civilization: A Day in the Life of a Pharaoh": 1 +"5th Grade History: Analyzing Civil War Through Artistic Expression and Primary Source Documents": 1 +"6th Grade Music: Appreciating Jazz Rhythms and Improvisations with GarageBand - A Dive into Modern Music": 1 +"1st Grade Science: Understanding Seasons and Weather Patterns through Virtual Interactive Modules": 1 +"1st Grade English: Enhancing Vocabulary through Animated Storytelling": 1 +"5th Grade Physical Education: Discovering Soccer and Goalkeeping Techniques": 1 +"5th Grade Music: Exploring Beethoven’s Sonatas and the Piano through Melodic Interpretation": 1 +"2nd Grade Science: Investigating Ocean Ecosystems through Virtual Reality and Online Games": 1 +"10th Grade Art: The Evolution of Surrealism - A Deep Dive into Dali’s Paintings through 3D Art Exploration": 1 +"Preschool Reading: Learning about Colors and Shapes through Pop-Up Books": 1 +"8th Grade Science: Understanding Flight Dynamics using Drone Technology and Bernoulli’s Principle of Lift": 1 +"5th Grade Geography: Understanding Weather Patterns with Interactive Maps": 1 +"1st Grade Math: Introduction to Addition and Subtraction through Storytelling": 1 +"7th Grade History: Exploring Medieval Europe - The Role of Trade and Commerce": 1 +"8th Grade Social Studies: The Influence of the Industrial Revolution on Modern Technology": 1 +"Environmental Awareness: 4th Grade Science with Focus on Renewable Energy Sources": 1 +"2nd Grade Writing: Developing Sentence Structure with Interactive Story Books": 1 +"11th Grade History: The Role of Propaganda in World War II: An In-depth Study on Posters and Broadcasts": 1 +"4th Grade Economics: The Basics of Money and Trade in Colonial America": 1 +"Third Grade Reading: Utilizing Augmented Reality Books to Improve Comprehension and Vocabulary": 1 +"2nd Grade Science: Discovering Plant Life Cycles with Interactive Garden Activities": 1 +"3rd Grade Science: Exploring Ecosystems through Terrarium Making Projects": 1 +"4th Grade History: The Influence of Railroad Expansion on Westward Movement": 1 +"5th Grade Physical Education: The Physics of Sports - Understanding the Mechanics of Baseball": 1 +"6th Grade Science: Discovering Photosynthesis through Hands-on Plant Experiments": 1 +"3rd Grade Art: Introduction to Watercolor Techniques in Still Life Painting": 1 +"Solving Linear Equations: A Comprehensive 10th Grade Mathematics Course": 1 +"1st Grade Language Arts: Character Development Analysis with Storytelling Techniques": 1 +"The Role of Aztec’s Aqueduct Systems: An Exploration into Ancient Engineering for 5th Grade Social Studies": 1 +"1st Grade Mathematics: Understanding Shapes and Patterns with Tangram Puzzles": 1 +"6th Grade Social Studies: The Impact of Textile Manufacturing on the Industrial Revolution.": 1 +"1st Grade English: Building Vocabulary through Interactive Storytelling": 1 +"4th Grade Art: Understanding the Basics of Watercolor Painting": 1 +"6th Grade Science: An Exploration of the Solar System and Planetary Movements": 1 +"7th Grade Literature: An In-depth Study of Shakespeare’s Works through Dramatic Role-play": 1 +"8th Grade Math: Decoding Problem Solving Strategies through Coding ": 1 +"9th Grade Geography: Exploring Climate Change through Case Studies in Antarctica using Google Earth": 1 +"3rd Grade Music: Understanding Rhythm and Beat through Interactive Drumming": 1 +"Kindergarten Math: Introduction to Counting and Sorting using Colorful Blocks": 1 +"5th Grade History: Ancient Egypt - Understanding Hieroglyphics and Pyramids through Augmented Reality": 1 +"2nd Grade Environmental Science: Discovering Plant Life Cycles through Observation and Journaling": 1 +"3rd Grade Geography: Exploring World Landmarks Using Virtual Reality": 1 +"1st Grade Mathematics: Learning Addition and Subtraction with Interactive Apps": 1 +"4th Grade English: Enhancing Vocabulary through Digital Crossword Puzzles": 1 +"5th Grade Science: Understanding Weather Patterns using Online Simulations": 1 +"6th Grade Social Studies: Examining Historical Events through Animated Videos": 1 +"3rd Grade Art: Creating Digital Collages Using Graphic Design Tools": 1 +"4th Grade Physical Education: Fun with Gymnastics - Understanding Balance and Coordination": 1 +"2nd Grade Music: Exploring Rhythms and Melodies with Interactive Sound Boards": 1 +"1st Grade Science: Discovering Plants and Their Life Cycles through Augmented Reality": 1 +"5th Grade Mathematics: Solving Fractions with the Fraction Frenzy App": 1 +"4th Grade Geography: Identifying Continents & Oceans using Google Earth": 1 +"6th Grade English: Creating Storyboards & Scripts with Celtx": 1 +"3rd Grade Science: Introduction to the Solar System Using Stellarium Software": 1 +"8th Grade History: The Impact of the Printing Press on the Renaissance": 1 +"5th Grade Social Studies: Understanding Bartering & Trade through Interactive Games": 1 +"7th Grade Music: Fundamentals of Digital Music Composition using GarageBand": 1 +"2nd Grade Art: Introduction to Collage Art using Recycled Materials": 1 +"6th Grade Physical Education: Basics of Volleyball and Scoring Methods": 1 +"8th Grade Mathematics: Ratios & Proportions Explored Through Real World Scenarios": 1 +"3rd Grade Environmental Studies: The Importance of Composting and DIY Compost Bins": 1 +"3rd Grade Art: Creating Digital Artwork with Adobe Spark: An Introduction": 1 +"7th Grade History: Exploring Medieval Europe with Interactive Maps and 3D Models": 1 +"1st Grade Mathematics: Fun Addition and Subtraction with Virtual Manipulatives and Real Life Scenarios": 1 +"3rd Grade Language Arts: Enhancing Adjectives Understanding through Storytelling using Puppetry": 1 +"2nd Grade Physical Education: Dance and Balance Beam Routines with Motor Skills Analysis": 1 +"12th Grade Biochemistry: Delving into Enzyme Functions with Lab Experiments and Bioinformatics Tools": 1 +"6th Grade Language Arts: Delving into Poetry with Audiobooks and Online Discussions": 1 +"8th Grade Music: Composing Harmonies with Korg Volca FM Synthesizers and Avid Sibelius Notation Software": 1 +"4th Grade Music: Learning Rhythm and Tempo with Percussion Instruments": 1 +"1st Grade Science: Investigating Plant Life Cycle and Photosynthesis with Interactive Science Kits and Virtual Field Trips": 1 +"3rd Grade Science: Understanding Weather Patterns through Interactive Digital Simulations": 1 +"4th Grade Literature: Exploring the Evolution of Storytelling from Cave Paintings to E-Books": 1 +"7th Grade History: Unveiling the Mayan Civilization through the Study of their Hieroglyphs and Astronomy": 1 +"2nd Grade English: Mastering Sentence Structure with Interactive Grammar Games": 1 +"8th Grade Biology: The Role of Microscopes in the Discovery of Cells and Microorganisms in the Victorian Era": 1 +"4th Grade Music: Discovering Global Rhythms: A Tour Through Percussion Instruments": 1 +"7th Grade Art: Basics of Watercolor Painting: Techniques and Styles": 1 +"5th Grade Drama: Introduction to Shakespeare’s Plays through Puppet Theater": 1 +"9th Grade Physics: In-depth Study of Motion and Forces using Virtual Reality Simulations": 1 +"5th Grade Geography: Exploring the Amazon Rainforest with Satellite Imagery and Virtual Tours": 1 +"2nd Grade Geography: Exploring Volcanic Landforms through Interactive Clay Models and Global Positioning Systems": 1 +"5th Grade English: Developing Writing Skills through Virtual Reality Storytelling and Google Docs Collaborations": 1 +"8th Grade Physics: Understanding the Laws of Motion using Oculus Rift and Augmented Reality Simulation": 1 +"7th Grade Mathematics: Navigating the World of Fractions and Decimals using Interactive Smartboard Activities": 1 +"12th Grade Biology: Exploring the Human Genome and Genetic Disorders through DNA Extraction Experiments": 1 +"6th Grade Geography: Journey through the Amazon Rainforest: Understanding Biodiversity with Google Earth VR": 1 +"4th Grade Language Arts: The Magic of Metaphors and Similes through Online Poetry Workshops": 1 +"3rd Grade Science: Discovering the Secrets of Magnetism through Hands-On Experiments and Interactive Charts": 1 +"5th Grade History: Exploring Ancient Greece Civilization: Understanding Democracy and Philosophy through Virtual Reality Tours": 1 +"7th Grade Language Arts: Dive into Dramatic Literature: Analysis of Shakespeare’s Plays through Interactive Digital Platforms.": 1 +"5th Grade Art: Exploring Abstract Painting Techniques with Virtual Reality Tools": 1 +"6th Grade Science: Understanding the Complexities of Weather Patterns Using Interactive Climate Models": 1 +"5th Grade History: Unraveling the Mysteries of Ancient Egypt with 3D Printing and Virtual Tours": 1 +"3rd Grade Mathematics: Multiplication Mastery with Digital Flashcards and Game-Based Learning ": 1 +"8th Grade English: Poetry Analysis - Understanding Metaphors and Similes through Annotated e-Books": 1 +"1st Grade Science: Exploring Ocean Life Through Virtual Underwater Expeditions and Augmented Reality": 1 +"4th Grade Language Arts: Building Complex Paragraphs with Interactive Grammar Software": 1 +"6th Grade Physical Education: Enhancing Soccer Skills with Video Analysis and Biometrics": 1 +"1st Grade French: Acquiring Basic Vocabulary through Interactive Language Learning Apps": 1 +"7th Grade Mathematics: Algebra Basics - Understanding Variables and Equations through Math Solver Software": 1 +"5th Grade Geography: Navigating the World’s Biomes with Interactive Maps": 1 +"1st Grade Math: Understanding Patterns and Sequences Using Blocks and Drawing Tools": 1 +"7th Grade Chemistry: Delving into Matter and Molecules with Hands-on Experiments": 1 +"9th Grade Drama: Analyzing Themes and Characters in Contemporary Plays ": 1 +"2nd Grade Art: Exploring Shapes and Colors through Mosaics and Collages": 1 +"6th Grade Civics: Democracy and Citizen Responsibilities: A Journey through the Constitution": 1 +"3rd Grade Writing: Building Narrative Skills using Story Cubes and Digital Storytelling Apps": 1 +"8th Grade Health Education: Understanding Nutrition and Fitness through Diet Analysis and Physical Activity": 1 +"4th Grade Astronomy: The Solar System Explored through Telescope Observations and Virtual Planetariums": 1 +"7th Grade Spanish: Enhancing Conversational Skills through Role-Play and Multimedia Resources": 1 +"3rd Grade Music: Understanding Basic Music Theory with Garageband and Logic Pro": 1 +"8th Grade History: Ancient Egyptian Civilization and the Development of Hieroglyphics": 1 +"1st Grade Math: Addition and Subtraction Basics with Online Math Games": 1 +"4th Grade Art: Exploring Space and Texture through Paper Mache Sculptures using Recycled Newspapers": 1 +"Kindergarten Science: Introduction to the Animal Kingdom using Interactive Videos and Picture Books": 1 +"3rd Grade Social Studies: Learning about Different Cultures through Virtual Field Trips and Online Storybooks": 1 +"The Significance of the Silk Road in Early Trade and Exchange: A 5th Grade History Course": 1 +"7th Grade Technology: The Digital Revolution: Understanding Computers and the Internet": 1 +"2nd Grade Science: Discovering Dinosaurs through Interactive Fossils and Augmented Reality Applications": 1 +"Fourth Grade Social Studies: Civil War Era; The Introduction of Ironclads and Naval Warfare Tactics": 1 +"4th Grade Geography: Navigating World Maps with Google Earth ": 1 +"7th Grade Mathematics: Exploring Geometry with Sketchpad and GeoGebra": 1 +"1st Grade Reading: Mastering Phonetics with LeapFrog LeapReader Books": 1 +"3rd Grade Music: Exploring Classical Music and the Violin using Do-Re-Mi Scales": 1 +"5th Grade Biology: Discovering Animal Habitats through Virtual Reality Excursions": 1 +"7th Grade English: A Journey into Poetry and Drama using Audible Audiobooks": 1 +"5th Grade Ancient History: Understanding Egyptian Civilizations - The Role of Papyrus and Hieroglyphs": 1 +"Digital Storytelling with Book Creator and Seesaw: 3rd Grade Language Arts Course": 1 +"1st Grade Physical Education: Introducing Basketball with Fun Drills and Mini Hoops": 1 +"7th Grade Art: Exploring Color Theory in Painting": 1 +"7th Grade Physics: Exploring Gravity and Motion with Physics Playground and LEGO Mindstorms": 1 +"2nd Grade French: Learning Basic Vocabulary and Sentences through Duolingo and Kahoot Quizzes": 1 +"10th Grade Art: Understanding Color Theory and Composition with Digital Painting Apps": 1 +"6th Grade Geography: Navigating Global Landforms using Google Maps and VR Tours": 1 +"4th Grade Music: Exploring the Piano - Emphasis on Scales and Arpeggios": 1 +"5th Grade Literature: Journey into Fantasy Worlds with E-books and Interactive Storytelling Apps": 1 +"7th Grade Environmental Science: Studying Ecosystems and Biodiversity through Virtual Excursions and Simulations": 1 +"3rd Grade History: Journey through Ancient Egypt with Google Expeditions and Interactive Timelines": 1 +"10th Grade Chemistry: Investigating Chemical Reactions with Virtual Labs - A Deeper Dive into Stoichiometry and Redox Reactions": 1 +"2nd Grade Math: Understanding Shapes and Patterns using Tangrams and Digital Puzzles": 1 +"2nd Grade Geography: Exploring World Landforms with Google Earth": 1 +"5th Grade Science: Investigating Photosynthesis in Plants through Microscopic Observations": 1 +"3rd Grade Art: Learning the Basics of Sculpting with Air-dry Clay": 1 +"1st Grade Mathematics: Tackling Addition and Subtraction with Number Blocks": 1 +"Rainwater Collection in 3rd Grade Environmental Studies: Building Miniature Ecosystems using Recycled Materials": 1 +"7th Grade Music: Exploring Mozart’s Symphonies through Music Mixing on Audacity for Orchestra Performance": 1 +"2nd Grade Health: Learning about Nutrition and Balanced Diet through Interactive Food Pyramid": 1 +"4th Grade Mathematics: Understanding Geometry with Tangram Puzzles": 1 +"Sixth Grade History: The Invention of the Telegraph and its Impact on Communication during the Civil War": 1 +"6th Grade Music: Exploring Tempo and Dynamics using Music Maker Jam on iPads": 1 +"4th Grade Mathematics: Discovering Fractions and Decimals Through Real-world Applications": 1 +"8th Grade Art: Mastering Landscape Painting with Watercolors, Acrylics, and Palette Knives": 1 +"2nd Grade Social Studies: Understanding Community Roles through Role Play and Interactive Discussions": 1 +"5th Grade: Introduction to American History: Spotlight on the Civil Rights Movement": 1 +"Kindergarten Music: Exploring Rhythm Basics with Percussion Instruments and Dance Movements": 1 +"9th Grade Chemistry: The Wonders of Elements - Investigating Chemical Reactions through Experiments": 1 +"11th Grade Music: The Magic of Orchestration - Exploring the Impact of Timbre in Symphonic Music": 1 +"5th Grade Social Studies: The Role of Renewable Energy in Modern Society": 1 +"Balloon Observations in Stratospheric Weather Analysis: An Introduction to Meteorology for 2nd Grade Environmental Studies": 1 +"8th Grade Science: An In-depth Exploration of Human Anatomy with 3D Modeling and Virtual Dissection": 1 +"8th Grade Literature: Decoding Metaphors in Shakespearean Sonnets": 1 +"Using Google Classroom and Kahoot for 5th Grade Science Interactions: The Magic of Physical Changes ": 1 +"2nd Grade Social Studies: An Introduction to Community Helpers Using Role-Play and Interactive Storytelling": 1 +"10th Grade Art: Discovering Watercolor Techniques through the Study of Impressionist Paintings": 1 +"Sustainable Practices in 2nd Grade Science: The Importance of Recycling and Composting in Waste Management": 1 +"4th Grade English: Enhancing Vocabulary through Engaging Word Puzzles and Online Scrabble": 1 +"8th Grade Earth Science: Understanding Weather Patterns through Data Analysis and Interactive Simulations": 1 +"1st Grade Mathematics: Grasping Subtraction with Visual Aids Using Educational Games ": 1 +"10th Grade Biology: Investigating Photosynthesis Through Virtual Labs Using Labster, Google Cardboard and Oculus Rift": 1 +"5th Grade Physical Education: Understanding Body Movement and the Significance of Flexibility": 1 +"7th Grade Mathematics: Deciphering Geometry through Origami and Digital Modeling Tools": 1 +"1st Grade Art: Exploring Colors and Shapes through Finger Painting and Interactive Drawing Apps": 1 +"5th Grade Social Science: Understanding Democracy through Role-Playing Games and Online Simulations": 1 +"Kindergarten Science: Introduction to Animals and their Habitats through Toy Figures and Augmented Reality": 1 +"8th Grade Literature: Exploring Shakespeare’s Plays through Dramatized Audiobooks and Podcasts": 1 +"4th Grade Physical Education: Building Agility through Obstacle Courses and Virtual Reality Games": 1 +"3rd Grade History: Journey Through the Middle Ages - Decoding Heraldry using Interactive Software": 1 +"2nd Grade Health: Learning Hygiene through Personal Care Routines and Animated Videos": 1 +"6th Grade Art: Discovering Perspective Drawing with Sketchpad and Digital Design Tools": 1 +"5th Grade Music: Exploring Melody Creation using Pianos and Music Composition Apps": 1 +"3rd Grade Science: Exploring Weather Patterns through Interactive Digital Models": 1 +"1st Grade Art: Understanding Textures and Patterns using Paper Mache Techniques": 1 +"Applying Blockchain Technology in Sustainable Development: 7th Grade Economics Course": 1 +"5th Grade History: Discovering Ancient Egyptian Society through Pyramids and Hieroglyphics using Virtual Reality": 1 +"8th Grade Health Education: Exploring the Impact of Fitness Trackers on Personal Wellness": 1 +"10th Grade History: Analyzing American Cultures through Primary Sources": 1 +"2nd Grade Science: Delving into the World of Insects with Augmented Reality": 1 +"7th Grade: Understanding Global Climate Patterns through Interactive Digital Maps": 1 +"10th Grade History: The Cold War - The Role of Espionage and Propaganda": 1 +"1st Grade: Developing Numerical Skills through Fun Math Games and Storytelling": 1 +"4th Grade Physical Education: Enhancing Balance and Coordination through Dance Routines": 1 +"1st Grade Mathematics: Learning Subtraction Using Interactive Games": 1 +"7th Grade Music: Interpreting Contemporary Pop Songs Using Sibelius Music Notation Software": 1 +"5th Grade English: Utilizing Flipgrid for Creating Puppet Show Narratives": 1 +"6th Grade Science: Discovering the Solar System through 3D Planetarium Software": 1 +"8th Grade Music: Mastering the Basics of Guitar Chords using Yousician": 1 +"7th Grade Science: Predictive Modeling using Google Sheets and Data Studio": 1 +"3rd Grade English: Using Mind Maps for Comprehending Preposition Usage in Google Classroom": 1 +"6th Grade Current Events: Analyzing National Affairs through Podcast Listening and Poster Presentation": 1 +"4th Grade Math: Using Abacus and Online Tools for Multiplication Mastery": 1 +"5th Grade Language Arts: Enhancing Creative Writing Skills with Storybird Software": 1 +"9th Grade Physical Education: Boosting Stamina and Flexibility through Pilates Exercises": 1 +"2nd Grade Art: Exploring Textures and Patterns using Paper Mache Techniques": 1 +"Analysis of the Impact of Hybrid Wind-Solar Energy Systems on Wildlife: The Role of Remote Sensing Technologies": 1 +"5th Grade Basic Geology: Understanding Earthquakes and Volcanoes through Seismograph Technology": 1 +"Cold War Era: The Influence of the Nuclear Arms Race on Global Politics in 9th Grade History": 1 +"Exploring the Mind-Muscle Link through Wearable Fitness Technology in 9th Grade Physical Education": 1 +"3rd Grade Math: Division Proficiency using Interactive Whiteboards and Number Grids": 1 +"12th Grade Physics: Decoding the Principles of Electromagnetism using Virtual Reality Demonstrations": 1 +"8th Grade Music: Discovering Beat and Rhythm using Virtual Drum Software.": 1 +"2nd Grade Science: Introduction to Plants Life Cycle through Augmented Reality": 1 +"1st Grade Mathematics: Number Systems and Patterns: Learning through Building Blocks": 1 +"4th Grade English: Enhancing Reading Comprehension through Interactive Ebooks": 1 +"6th Grade: Journey through World History: The Role of the Steam Engine": 1 +"8th Grade Mathematics: Exploring Algebraic Concepts with Geometric Shapes and Graphic Calculators": 1 +"4th Grade Science: Understanding Weather Systems with Interactive Simulations": 1 +"7th Grade Art: Basics of Pottery and Sculpture: Exploring Clay, Terracotta, and Digital Design Tools": 1 +"3rd Grade Mathematics: Addition and Subtraction Mastery using Gamified Learning Tools": 1 +"7th Grade Music: Understanding the Impact of Electronic Synthesizers and Audio Mixers on Modern Music Genres": 1 +"5th Grade Geography: Navigating World Maps, Atlas, and Google Earth: The Story of Global Exploration": 1 +"3rd Grade Geography: Exploring World Maps with Virtual Reality Technology": 1 +"1st Grade Music: Understanding Rhythms through Interactive Beat-Matching Games": 1 +"4th Grade Science: Learning about Human Anatomy with Augmented Reality Apps": 1 +"9th Grade Art: Sculpting Techniques using 3D Pen Technology": 1 +"3rd Grade Mathematics: Improving Addition Skills through Educational Mobile Apps": 1 +"7th Grade History: Unraveling Ancient Civilizations with Virtual Tours and Interactive Timelines": 1 +"5th Grade Language Arts: Analyzing Poetry with Interactive eBooks on Kindle": 1 +"4th Grade Environmental Science: Studying Ocean Ecosystems with Virtual Scuba Diving": 1 +"6th Grade English: Improving Sentence Structure with Grammarly Digital Tools": 1 +"8th Grade Music: Exploring Music Theory through GarageBand Workshops": 1 +"1st Grade Science: Understanding the Basics of Weather Patterns through Interactive Weather Station Experiments": 1 +"4th Grade Music: Exploring the Evolution of Classical Music using Violin and Piano": 1 +"6th Grade Mathematics: Mastering Fractions and Decimals through Interactive Online Games": 1 +"8th Grade Art: Understanding the Influence of Cubism - Analyzing Picasso’s Works and Hands-on Painting": 1 +"Preschool Physical Education: Developing Coordination Skills through Interactive Play and Obstacle Courses": 1 +"3rd Grade Language Arts: Enhancing Vocabulary and Grammar through Creative Writing and Blogging": 1 +"4th Grade History: Exploring Medieval Castle Architecture using 3D Modelling Software": 1 +"Introduction to Division: Utilizing Interactive Whiteboards in 2nd Grade Mathematics": 1 +"Advanced 5th Grade Gymnastics: Improving Flexibility and Balance with Virtual Reality Training": 1 +"1st Grade Biology: Discovering Animal Life Cycles through Interactive Apps and Nature Observation": 1 +"8th Grade Physics: Exploring the Laws of Motion through Lego Robotics and Virtual Simulations": 1 +"9th Grade Literature: Understanding Shakespeare’s Macbeth through Dramatic Performances and Literary Analysis": 1 +"1st Grade Biology: Discovering Animal Habitats through Augmented Reality Exploration": 1 +"5th Grade Geography: Comprehensive Study of World Continents using Interactive Globe and Google Earth": 1 +"6th Grade Chemistry: The Magic of Matter Transformation with Interactive Chemical Reaction Experiments ": 1 +"Mastering Division in 4th Grade Mathematics through the Khan Academy Platform: A focus on Long Division Techniques ": 1 +"5th Grade Civics: The Constitution and the Making of Laws in America ": 1 +"12th Grade Design: Creating 3D Models with Fusion 360 and 3D Printing Technology ": 1 +"8th Grade Astronomy & Lab Safety: Understanding Telescopes, Star Maps & The Use of Planetarium Software ": 1 +"3rd Grade Mathematics: Introduction to Geometry using Geoboard App and the Concept of Shapes and Angles.": 1 +"6th Grade Art: Exploring Digital Design with Adobe Illustrator ": 1 +"10th Grade Biology: The Role of Genetic Engineering in Modern Medicine ": 1 +"5th Grade Physical Education: Understanding the Fundamentals of Baseball with Augmented Reality ": 1 +"9th Grade Geography: Exploring Climate Change using Geographic Information Systems ": 1 +"7th Grade Literature: The Influence of Poetry in the Harlem Renaissance ": 1 +"12th Grade Economics: The Impact of Globalization on International Trade ": 1 +"8th Grade History: The Role of Technology in World War II ": 1 +"5th Grade Science: The Life Cycle of Butterflies: An Introduction to Insect Biology ": 1 +"6th Grade Music: Composing Melodies with GarageBand: The Basics of Songwriting ": 1 +"3rd Grade Environmental Studies: Understanding Weather Patterns with Interactive Software": 1 +"5th Grade Science: Exploring Ecosystems: An Introduction to Biodiversity Using Virtual Reality": 1 +"3rd Grade History: Ancient Egyptian Civilizations: A Journey Through Time via Google Cardboard VR": 1 +"7th Grade Art: Discovering Modern Art Techniques with Digital Painting in Adobe Photoshop": 1 +"1st Grade Environmental Studies: Discovering Plant Life Cycles with Home Garden Projects": 1 +"6th Grade Mathematics: Mastering Fractions through Real-Life Shopping Scenarios": 1 +"9th Grade Drama: Shakespeare’s Influence on Modern Theatre: A Study of ’Romeo and Juliet’": 1 +"4th Grade Social Studies: Exploration of Native American Cultures: A Virtual Field Trip": 1 +"Kindergarten Science: Understanding the Solar System through Interactive Mobile Apps": 1 +"8th Grade Language Arts: The Art of Storytelling: Learning Narrative Structure through Graphic Novels": 1 +"2nd Grade Music: Exploring Rhythms and Melodies with Handheld Percussion Instruments": 1 +"5th Grade Mathematics: Understanding Geometry with Origami ": 1 +"Exploring the Solar System: A Third Grade Astronomy Course": 1 +"1st Grade Language Arts: Learning Phonics through Interactive Storytelling ": 1 +"6th Grade Drama: Discovering Character Development through Improvisation ": 1 +"Facebook and its Symbolic Role in Modern Poetry: An 11th Grade English Literature Study ": 1 +"Eighth Grade History: Deciphering the Roman Empire with Latin Texts ": 1 +"Preschool Music: Introduction to Rhythms with Hand Drums and Music Apps ": 1 +"4th Grade Geography: Navigating the World Map with Virtual Reality and Atlas Software ": 1 +"3rd Grade Language Arts: Unravelling Fairy Tales through Storyboarding using Procreate and Digital Illustration ": 1 +"3rd Grade Science: Observing Plant Growth and Photosynthesis with Microscopes and Hydroponic Systems": 1 +"4th Grade Geography: Exploring Landforms and Water Bodies with 3D Models and Maps": 1 +"6th Grade Science: Studying Meteorological Phenomena through Weather Station Data Analysis": 1 +"1st Grade Mathematics: Grasping the Fundamentals of Addition and Subtraction using Touch Math": 1 +"2nd Grade English: Discovering Nouns and Verbs through Interactive Storytelling": 1 +"8th Grade Physical Education: The Integration of Pilates Exercises into Gymnastics Training": 1 +"The Significance of Composting and Mulching in Sustainable Farming for 3rd Grade Agricultural Studies": 1 +"6th Grade Social Studies: The Influence of Traditional Music on Cultural Evolution in Ancient Societies": 1 +"4th Grade Health: Understanding the Importance of Hygiene through Interactive Germ Spreading Experiment": 1 +"2nd Grade Science: Learning About Life Cycles through Butterfly and Frog Metamorphosis Observations": 1 +"7th Grade History: Immersing in Medieval Castles and Knights through Virtual Reality Expeditions": 1 +"3rd Grade Geography: Exploring Global Landforms through Satellite Imagery and Topographic Maps": 1 +"7th Grade Physical Education: Promoting Teamwork and Strategy through Volleyball Using Electronic Tracking Systems": 1 +"10th Grade Psychology: Examining Emotional Well-being - Focus on Cognitive Behavioral Techniques and Relaxation Strategies": 1 +"5th Grade Mathematics: Engaging with Geometric Concepts through Practical Applications in Architecture": 1 +"3rd Grade Earth Sciences: Grasping Energy Conservation and Recycling through Solar Power and Wind Energy Methods": 1 +"8th Grade Physiology: Investigating the Nervous System Through Neurotransmitter Analysis": 1 +"10th Grade Chemistry: Exploring Biochemistry with Chromatography and Mass Spectrometry Techniques": 1 +"5th Grade Music: In-depth Study of Beethoven’s Symphonies through Violin Performance and Acoustic Analysis using Audacity Software": 1 +"12th Grade Calculus: Leveraging Desmos, MATLAB and TensorFlow for Vector Analysis in Multivariable Calculus": 1 +"1st Grade Music: Learning Harmony and Pitch with DIY String Instruments": 1 +"3rd Grade Music: Understanding Rhythm and Melody through the Use of Recorders and Percussion Instruments": 1 +"4th Grade Science: Exploring the Solar System and Its Planets through Interactive 3D Models": 1 +"1st Grade Mathematics: Grasping Basic Counting and Number Recognition through Fun Puzzles": 1 +"7th Grade Art: Discovering the Impact of Abstract Expressionism in the Modern Art Movement with Acrylic Paints": 1 +"5th Grade History: The Role of Papyrus in Ancient Egyptian Civilization and Its Impact on Communication": 1 +"2nd Grade Geography: Identifying and Understanding the Significance of Earth’s Major Bodies of Water": 1 +"8th Grade Environmental Studies: Exploring the Importance and Techniques of Rainwater Harvesting and Water Conservation": 1 +"4th Grade Literature: Unraveling the Hidden Meanings in Children’s Fables using Story Maps": 1 +"6th Grade Mathematics: Enhancing Geometry Skills through Tangrams and Origami": 1 +"3rd Grade Biology: Interactive Learning about Plant Life Cycles with Seed Dissection and Germination Experiments": 1 +"9th Grade Physics: Understanding Forces and Motion through Roller Coaster Design": 1 +"6th Grade Literature: Exploring Symbolism and Themes in Classic Fairy Tales": 1 +"Fifth Grade Geography: The Influence of Rivers and Mountains in the Rise of Civilizations": 1 +"3rd Grade Science: The Life Cycle of Butterflies and their Role in Pollination": 1 +"First Grade Art: Discovering Shapes and Colors through Collage and Finger Painting": 1 +"11th Grade Design: The Art of Graphic Design using Canva and Photoshop": 1 +"The Age of Sail: Exploring Navigation and Trade in 6th Grade History": 1 +"2nd Grade Music: Exploring Melodies and Harmonies with Recorders and Simple Compositions": 1 +"The Universe of Quadratics and Inequalities: 8th Grade Algebra with a Focus on Parabolic Relationships": 1 +"Yoga for 7th Graders: Understanding Flexibility and Balance through Asanas and Flow Sequences": 1 +"3rd Grade Science: Exploring Ecosystems through Virtual Field Trips and Simulation Games": 1 +"5th Grade English: Mastering Grammar with Interactive Quizzes and Storytelling Apps": 1 +"2nd Grade Art: Introduction to Watercolor Painting with Online Tutorials": 1 +"7th Grade History: Understanding the Civil War through Virtual Reality Battlefield Visits": 1 +"5th Grade Music: Discovering Rhythm and Melody through Beat-Making Software": 1 +"3rd Grade Mathematics: Learning Addition and Subtraction through Math Games and Daily Life Examples ": 1 +"8th Grade Spanish: Advanced Vocabulary and Conversation Practice with Duolingo and Skype": 1 +"9th Grade Biology: Exploring the Human Body using 3D Anatomy Apps": 1 +"1st Grade Science: Discovering the Solar System through Interactive Planetary Models": 1 +"6th Grade Geography: Exploring World Cultures and Landscapes using Google Earth and Virtual Reality Tours": 1 +"6th Grade Physics: Understanding Newton’s Laws through Hands-on Catapult Construction": 1 +"2nd Grade History: Exploring the Aztec Civilization through Storytelling and Artifact Examination": 1 +"9th Grade Math: Mastering the Art of Quadratic Equations using the Desmos Graphing Calculator": 1 +"2nd Grade Geography: Journey into World Deserts using Virtual Reality Technology": 1 +"5th Grade Science: Investigating Weather Patterns & Climate Change through Data Analysis from Weather Stations": 1 +"6th Grade American History: Exploring the Civil War using Interactive Timelines and Digital Role-Play": 1 +"3rd Grade Art: Discovering Impressionism through Watercolor Painting: Incorporating Wet-on-Wet Technique": 1 +"7th Grade Art: Diving into the World of Digital Art: Experimenting with Graphic Tablets, Layering, and Digital Brushes": 1 +"9th Grade Music: The Impact of Synthesizers on Electronic Music Creation": 1 +"Kindergarten Environmental Studies: Understanding Recycling through Hands-On Sorting and DIY Craft Projects": 1 +"Understanding Linear and Quadratic Equations: A 3rd Grade Mathematics Course Utilizing Math Magic and Number Lines": 1 +"8th Grade Sociology: The French Revolution and the Influence of the Printing Press on Enlightenment Thought": 1 +"5th Grade Reading Comprehension: Enhancing Understanding through Interactive Graphic Novel Software": 1 +"3rd Grade English: Developing Grammar Skills with Interactive Poetry Writing Games": 1 +"Mastering the Art of Descriptive Writing: A 3rd Grade English Course using Kahoot! for Assessment and Google Slides for Lesson Presentation": 1 +"3rd Grade Mathematics: Exploring Decimals through Money and Basic Python Coding Principles": 1 +"1st Grade Health Education: Understanding Nutrition and Making Healthy Snacks from Fresh Ingredients": 1 +"Advanced High School Film Studies: Expressing Narrative through Color and Sound Effects": 1 +"Ancient Egyptian Civilization: The Role of Papyrus, Hieroglyphs, and the Nile River in the Development of the Pyramids for 5th Grade History": 1 +"2nd Grade Earth Science: Learning about Volcanic Eruptions with Magma and Lava Concepts": 1 +"4th Grade Geography: Exploring the Physical Features of Continents through 3D Mapping": 1 +"1st Grade Botany: Understanding Photosynthesis and Plant Anatomy through Interactive Models": 1 +"3rd Grade History: Learning about the Roman Empire through Virtual Reality Tours": 1 +"2nd Grade Astronomy: Introduction to the Solar System and Planetary Movements": 1 +"Learning Basic Algebra in 2nd Grade Mathematics through Fun Mathematical Games": 1 +"6th Grade Literature: Engaging with Classic Novels through Dramatized Audiobooks": 1 +"3rd Grade Art: Exploring Shapes and Patterns with Origami": 1 +"Ancient Greek Architecture: Understanding the Doric, Ionic, and Corinthian orders in 6th Grade History": 1 +"3rd Grade Biology: Discovering the Human Digestive System through Practical Experiments": 1 +"5th Grade Music: Learning to Compose Using Digital Music Software": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Skills through Interactive Word Games and Storytelling": 1 +"4th Grade Mathematics: Exploring Fractions and Decimals through Practical Money Problems": 1 +"7th Grade History: Understanding Medieval Europe through Role-Playing Games and Virtual Castle Tours": 1 +"1st Grade Environmental Science: Identifying Local Plants and Animals through Outdoor Exploration": 1 +"8th Grade Music: Mastering Basic Chords and Scales on the Guitar with Interactive Lessons": 1 +"Kindergarten Nutrition: Learning about Healthy Foods through Interactive Cooking Activities": 1 +"5th Grade Physical Education: Developing Coordination and Agility through Obstacle Courses and Team Games": 1 +"4th Grade Social Studies: Understanding the Culture and History of Native American Tribes through Art and Storytelling": 1 +"3rd Grade Computing: Introduction to Basic Coding with Scratch Programming": 1 +"2nd Grade Art: Creating Colorful Mosaics: Understanding Symmetry, Shapes and Patterns": 1 +"5th Grade Science: The Role of Photosynthesis in Ecosystems: A Close Look at the Stoma ": 1 +"10th Grade English: Unveiling Symbolism in ’To Kill a Mockingbird’ through Text Analysis Tools ": 1 +"4th Grade Mathematics: Enhancing Multiplication Skills through Gamified Learning Platforms ": 1 +"7th Grade History: The Fall of the Roman Empire: An Exploration of Political Instability and Economic Decline": 1 +"12th Grade Geography: Climate Adaptation Strategies: A Comprehensive Study using Geospatial Data ": 1 +"3rd Grade English: Mastering Pronouns with Interactive Language Apps for Improved Grammar ": 1 +"9th Grade Music: The Jazz Age: A Study on the Influence of the Saxophone ": 1 +"5th Grade Art: Understanding Composition and Balance in Art using Adobe Fresco ": 1 +"8th Grade Chemistry: An Insight into Acid-Base Reactions: A Focus on pH Scale ": 1 +"10th Grade History: The Manhattan Project: The Impact of Nuclear Physics during World War II": 1 +"5th Grade Health Education: Understanding Nutrition and Healthy Eating Habits": 1 +"Exploring Mindfulness and Meditation: A 7th Grade Physical Education Course": 1 +"5th Grade Geography: Discovering the Pacific Northwest through VR and Google Earth": 1 +"3rd Grade Science: Exploring the Ocean Depths and Marine Life": 1 +"6th Grade Mathematics: Grasping Algebra Concepts with Mathway, Khan Academy, and Algebraic Equations": 1 +"7th Grade History: Understanding the Impact of the Internet on Society": 1 +"4th Grade Social Studies: Unraveling Mayan Civilization through the Study of Ancient Temples": 1 +"2nd Grade English: Enhancing Reading Skills with E-books and Google Classroom": 1 +"2nd Grade French: Mastering Basic Phrases with Duolingo and Interactive Flashcards": 1 +"4th Grade Music: Learning Pitch and Melody through the Use of Pianos": 1 +"6th Grade Visual Arts: Discovering Perspective in Watercolor Techniques and Collage Creations": 1 +"3rd Grade Literature: Journey into Storytelling with the Help of Storybird App": 1 +"9th Grade Economics: Understanding Trade and Commerce during the Industrial Revolution": 1 +"4th Grade Physics: Decoding the Mysteries of Gravity with Simple Pendulum Experiments": 1 +"8th Grade Language Arts: Delving into Metaphors in Robert Frost’s Poems with Audio-Visual Aids": 1 +"3rd Grade Environmental Studies: Exploring Biodiversity and Conservation using Google Earth Virtual Tours": 1 +"1st Grade Mathematics: Fun with Addition and Subtraction using SplashLearn Math App": 1 +"1st Grade Mathematics: Engaging Geometry Lessons with Shapes and Puzzles in Mathletics": 1 +"6th Grade Language Arts: Enhancing Vocabulary Skills with Quizlet and Duolingo in Fun Quizzes and Games": 1 +"Kindergarten Biology: The Amazing Journey of Butterflies: Interactive Learning with Life Cycle Kits and Picture Books": 1 +"2nd Grade Science: A Fun Journey through Ecosystems and Life Cycles Using Interactive Models": 1 +"7th Grade Digital Design: Mastering Vector Art Techniques with Adobe Illustrator": 1 +"10th Grade Dance: The Essence of Ballet - A Study of Pointe Work and Pirouettes ": 1 +"1st Grade Art: Exploring Colors and Textures with Finger Painting": 1 +"9th Grade Biology: Delving into Photosynthesis and Plant Anatomy through Practical Experiments": 1 +"2nd Grade Music: Exploring Melodies and Harmonies with Handbells": 1 +"5th Grade Literature: The Magic of Mythical Stories: Comprehension through Dramatization": 1 +"7th Grade English: Understanding Narratives and Character Development using Online Reading Platforms": 1 +"Preschool Dental Hygiene: A Fun Comparison of Toothbrushes, Toothpaste, and Flossing Techniques": 1 +"5th Grade Digital Art: Unleashing Creativity: 3D Modeling Techniques with Blender": 1 +"4th Grade Art: Exploring Cubism with Picasso using Digital Drawing Tablets": 1 +"7th Grade Science: Discovering Volcanic Activity through Simulation Software and Seismographs": 1 +"2nd Grade Math: Adventures in Addition and Subtraction using Tangible Counting Tools": 1 +"8th Grade English: The Art of Persuasive Writing in the World of Social Media": 1 +"2nd Grade Environmental Studies: Exploring the Rainforest Ecosystem with Humidity Sensors and Leaf Identification": 1 +"9th Grade History: The Renaissance Art Movement and the Significance of Fresco Techniques": 1 +"4th Grade Music: Comprehending Melodic Intervals in Classical Music with Digital Piano Software": 1 +"7th Grade Math: Understanding Geometry through Origami and 3D Modelling": 1 +"5th Grade English: Exploring Poetry and Rhyming Structures through Song Lyrics": 1 +"8th Grade Science: Unraveling DNA Structures and Genetic Coding with Microscopic Observation and Interactive Models": 1 +"3rd Grade Geography: Exploring World Maps through Interactive Applications": 1 +"6th Grade’s Adventure in Physics: Exploring Light and Sound with Practical Experiments": 1 +"1st Grade Language Arts: Basic Sentence Structures with Visual Aids": 1 +"3rd Grade Mathematics: Grasping the Concept of Fractions using Digital Tools": 1 +"5th Grade Art: Journey through Renaissance Period with Interactive Gallery Walks": 1 +"Climate Change and Its Effects: A 6th Grade Environmental Science Course using Documentary Films": 1 +"2nd Grade Social Studies: Understanding Community Helpers through Role Play": 1 +"6th Grade Earth Science: Exploring Geological Processes through Rock and Mineral Examination": 1 +"3rd Grade Life Science: Understanding Animal Adaptation using Simulation Games": 1 +"2nd Grade Physical Education: Developing Basic Gymnastics Skills through Safe Practice": 1 +"5th Grade Geography: Exploring World Landforms with Virtual Reality and Google Earth": 1 +"3rd Grade Writing: Enhancing Story Composition using Smartboards and Interactive Exercises": 1 +"8th Grade Algebra: Mastering Quadratic Equations through Mathspace": 1 +"5th Grade Physics: Grasping Light Reflection and Refraction through Practical Experiments": 1 +"3rd Grade History: Understanding Ancient Egypt with Interactive VR Tours and Online Collaborative Projects": 1 +"1st Grade Biology: Identifying Bird Species with Augmented Reality Apps and Real-time Data Collection": 1 +"7th Grade Art: Exploring Cubism with Digital Art Tools": 1 +"Pre-K Mathematics: Identifying Colors and Patterns with Interactive Learning Games": 1 +"12th Grade Health Science: Studying Heart Rate Variability with Wearable Technology": 1 +"8th Grade Literature: Utilizing Kindle eBooks for Thematic Analysis of Classic Novels": 1 +"5th Grade History: Unraveling the Contributions of Nikola Tesla in the Evolution of Electricity": 1 +"2nd Grade Nutrition: Understanding Food Groups and Healthy Choices through Interactive Digital Games": 1 +"Kindergarten Music: Discovering Pitch and Harmony Through Singing Exercises using Smule App": 1 +"7th Grade Political Science: Investigating the Functioning of United Nations using Minecraft Simulations": 1 +"4th Grade Literature: Incorporating Virtual Reality for Immersive Exploration of Folktales": 1 +"2nd Grade Earth Sciences: Grasping the Water Cycle through Experiential Learning ": 1 +"7th Grade Biology: Delving into Human Anatomy with Virtual Reality and Hands-On Experiments": 1 +"10th Grade Creative Writing: The Influence of Metaphors in Literature Explored through Google Docs Collaborative Writing": 1 +"Kindergarten Language Arts: Mastering Alphabets and Basic Vocabulary using Animated Stories": 1 +"9th Grade Chemistry: Understanding the Periodic Table through Interactive 3D Models and Quizzes": 1 +"4th Grade History: The Influence of the Industrial Revolution on Modern Society": 1 +"7th Grade Music: Delving into Beethoven’s Symphonies with Interactive Audio Analysis Software": 1 +"2nd Grade Biology: Exploring the Life Cycle of a Frog through Augmented Reality": 1 +"4th Grade Geography: Identifying Major Cities and Landmarks using Interactive Maps": 1 +"5th Grade Art: Introduction to Origami and Paper Crafting: A Practical Guide": 1 +"12th Grade Mathematics: Advanced Calculus Concepts Explained with Wolfram Mathematica": 1 +"8th Grade Drama: Understanding Irony in Shakespeare’s Works through Role-Playing and Group Discussions": 1 +"2nd Grade History: Journey through the Medieval Castles using 3D Models and VR Technology": 1 +"9th Grade Biology: Unlocking the Secrets of Plant Photosynthesis with Microscopic Imaging Software": 1 +"5th Grade Visual Arts: The Art of Shadow and Light in Charcoal Drawing and Paper Mache Sculptures": 1 +"4th Grade Art: Understanding Color Theory through Digital Painting Software": 1 +"10th Grade Literature: Exploring Shakespeare’s Plays Using Virtual Reality and Script Analysis Techniques": 1 +"Kindergarten Mathematics: Learning Numbers through Interactive Games on Tablets": 1 +"2nd Grade Geography: Unveiling World Maps with Interactive Globe Applications": 1 +"5th Grade Mathematics: The Exciting Universe of Fractions - Learning Through Cooking Recipes": 1 +"3rd Grade History: Journey through Medieval Europe using Augmented Reality": 1 +"6th Grade Science: The Wonders of the Solar System - A Comprehensive Study using VR Technology": 1 +"Exploring the World of Dinosaurs in 4th Grade Science using 3D Printing Techniques": 1 +"1st Grade Environmental Studies: Understanding the Seasons through Nature Walks and Observations": 1 +"3rd Grade Language Arts: Engaging Spelling Bee Practice with Interactive Digital Games": 1 +"6th Grade Geography: Exploring the World’s Landforms using Virtual Reality and Google Earth": 1 +"2nd Grade Environmental Science: Understanding the Lifecycle of Butterflies and Their Impact on Ecosystems": 1 +"7th Grade History: Analyzing Civil War Battles Through Map Reading & Interactive Simulations": 1 +"Kindergarten Art: Learning Shapes and Colors through Paper Mosaic Projects": 1 +"3rd Grade Literature: Journeying into Fairy Tales with Interactive eBooks and Storytelling Apps": 1 +"6th Grade Music: Learning Rhythmic Patterns in Jazz using Audacity and Online Drum Machines": 1 +"Python Coding for 5th Grade Math: Solving Algebraic Expressions with Codecademy": 1 +"1st Grade Physical Education: Discovering Basic Yoga Poses through Fun Online Videos": 1 +"7th Grade Science: Exploring the Human Body Systems through Augmented Reality Apps": 1 +"2nd Grade Social Studies: Understanding Community Roles and Responsibilities through Role-Playing Activities": 1 +"7th Grade Physical Education: Exploring Basketball Strategy Through Virtual Reality ": 1 +"Kindergarten Environmental Studies: Understanding Weather Patterns and Rainwater Harvesting Systems ": 1 +"2nd Grade: Learning Numbers and Arithmetic through Interactive Digital Games ": 1 +"5th Grade Language Arts: Exploring Similes in Prose with Amazon Kindle ": 1 +"World History for 10th Graders: Investigating Ancient Roman Society through Google Cardboard VR ": 1 +"4th Grade English: Enhancing Narration Skills with Japanese Manga Animation Through Clip Studio Paint ": 1 +"7th Grade Geography: Unveiling Global Landforms using Google Earth VR Technology ": 1 +"3rd Grade Art: Promoting Artistic Expression with Tux Paint, Autodesk SketchBook, and Canva ": 1 +"10th Grade History: Understanding the Impact of the Printing Press during the Renaissance ": 1 +"7th Grade Literature: Examining Foreshadowing in Modern Novels using E-Book Highlighting Tools": 1 +"6th Grade Geography: Exploring Earth’s Biomes through Virtual Reality Simulation ": 1 +"8th Grade Physics: Grasping the Concept of Gravity through Rocket Model Experiments": 1 +"Introducing Photosynthesis and its Impact on Ecosystem: 3rd Grade Biology with Hands-On Plant Growth Experiments": 1 +"First Grade Art: Discovering Shapes and Colors through Collage and Mosaic Art Techniques": 1 +"5th Grade Civics: Understanding Democracy through Role Playing the U.S. Congress": 1 +"4th Grade Geography: Navigating the Globe with Google Earth: An Interactive Study of World Landmarks": 1 +"Analyzing the Impact of Wind Energy on Local Ecosystems in 3rd Grade Environmental Studies using 3D Printed Wind Turbine Models": 1 +"3rd Grade Algebra: Simplifying Equations using the Photomath App: A deeper look into the Equation Solver Feature": 1 +"Deciphering the Language of Ciphers in 5th Grade Cryptography with Interactive Coding Games": 1 +"2nd Grade Mathematics: Mastering Subtraction Using Number Bonds and Manipulatives": 1 +"5th Grade Mathematics: Exploring Fractions and Decimals Using Virtual Math Tools": 1 +"10th Grade Literature: Utilizing Kindle Fire & Edmodo for In-Depth Analysis of Modern Poetry": 1 +"7th Grade Geography: Discovering Arctic Ecosystems through Drone Footage and Augmented Reality ": 1 +"5th Grade Science: Investigating Plant Growth with the Aid of Smart Garden Sensors ": 1 +"4th Grade Mathematics: Conquering Geometry with Interactive Shapes & Angles Apps": 1 +"8th Grade Social Studies: Uncovering Medieval Europe through Calligraphy and the Art of Illumination": 1 +"6th Grade Music: Understanding Rhythm with Roland Drum Machines and Sibelius Notation Software": 1 +"5th Grade Environmental Studies: Delving into Water Conservation through Hydroponic Plant Growth Experiments": 1 +"7th Grade Social Studies: Deciphering the Secrets of the Aztec Sun Stone ": 1 +"Harmony of Harmonics: Exploring Vibrato, Bowing Techniques, and the Use of Overtone Analyzer in Mastering Wind Instruments in 10th Grade Music": 1 +"3rd Grade Geography: Exploring World Landforms through Google Earth and 3D Printing": 1 +"6th Grade Science: Understanding Photosynthesis via Virtual Reality Gardening and Microscopic Exploration": 1 +"4th Grade Mathematics: Mastering Multiplication through Interactive Gaming and Math Apps": 1 +"1st Grade Reading: Discovering Classic Fairy Tales through Augmented Reality and Storytelling Apps": 1 +"7th Grade History: Analyzing the Renaissance Period through Virtual Museum Tours and Artifact Studies": 1 +"3rd Grade Music: Learning Rhythm and Tempo through Interactive Drumming and Musical Apps": 1 +"5th Grade Art: Discovering Abstract Art Techniques using Digital Painting Tablets and Software": 1 +"2nd Grade Science: Investigating Weather Patterns through Interactive Climate Maps and Weather Apps": 1 +"6th Grade Language Arts: Understanding Character Development through Graphic Novels using Procreate and Digital Drawing Tablets": 1 +"8th Grade Social Studies: Exploring Ancient Civilizations through Virtual Reality Tours and Augmented Reality Models": 1 +"4th Grade Mathematics: Unlocking Multiplication and Division Using Interactive Whiteboard Activities": 1 +"5th Grade Science: Discovering the Solar System through Virtual Reality Simulations": 1 +"2nd Grade English: Building Sentence Structure with Online Word Games": 1 +"6th Grade History: Unraveling Medieval Europe through Role-Playing Games": 1 +"3rd Grade Music: Understanding Rhythm and Melody through Percussion Instruments": 1 +"7th Grade Geography: Investigating Climate Change Through Satellite Imagery and Data Analysis": 1 +"4th Grade Language Arts: Exploring Similes and Metaphors using E-books": 1 +"5th Grade Social Studies: Examining Democracy and Government Through Interactive Online Quizzes": 1 +"6th Grade Science: Exploring the Human Body Systems through 3D Printing and Modeling": 1 +"2nd Grade Mathematics: Learning Fractions through Fun and Interactive Cooking Lessons": 1 +"3rd Grade Mathematics: Mastering Multiplication Tables through Fun Games and Puzzles ": 1 +"4th Grade: Understanding Governance and Democracy in Social Studies through Role Playing": 1 +"1st Grade Science: Discovering Plant Photosynthesis through Interactive Virtual Reality Experiments": 1 +"5th Grade Art: Enhancing Creativity with Paper Mache Sculpture Techniques": 1 +"3rd Grade Music: Understanding the Basics of Melody and Harmony through Piano Lessons": 1 +"2nd Grade Language Arts: Engaging in Storytelling and Narrative Writing using Digital Storyboards": 1 +"5th Grade History: The Viking Age - Exploring the Impact of Longships on Trade and Exploration": 1 +"4th Grade Mathematics: Understanding Geometry through Origami Folding Techniques": 1 +"2nd Grade Science: Introduction to Weather Patterns using Interactive Weather Maps": 1 +"7th Grade Social Studies: The Industrial Revolution and its Impact on Modern Society": 1 +"5th Grade Mathematics: Exploring Geometric Patterns with Tinkercad and 3D Printing Technology": 1 +"3rd Grade Science: Understanding Ecosystems through Interactive Animal Planet and Google Earth Exploration": 1 +"1st Grade Art: Discovering Colors and Shapes through Adobe Spark and Digital Canvas": 1 +"10th Grade Literature: Analyzing Classic Novels with Kindle Highlights and Google Docs Discussion": 1 +"Mastering Backstroke with Smart Swim Cap in Physical Education for 11th Graders": 1 +"Kindergarten Technology: Introduction to Coding Concepts using ScratchJr App": 1 +"12th Grade Physics: Advanced Quantum Mechanics Simulation with Python and Quantum Espresso Software": 1 +"7th Grade History: The Evolution of Space Travel - A Study of Rocket Engines, Spacecraft Design, and the Impact of Gravity": 1 +"10th Grade Art: Advanced Digital Painting: Exploring Texture and Layering with Procreate Software": 1 +"4th Grade Geography: Exploring World Cultures and Landforms using Google Earth VR and National Geographic Kids": 1 +"4th Grade Literature: Understanding Fairy Tales and Folklore Through Interactive Storytelling": 1 +"7th Grade Science: Demystifying DNA Structure and Genes using 3D Models": 1 +"2nd Grade Science: Exploring Plant Life Cycle and Photosynthesis with Hands-on Experiments": 1 +"5th Grade Social Studies: Analyzing the Impact of Gutenberg’s Printing Press on Modern Communication": 1 +"4th Grade Mathematics: Multiplication Mastery with Lattice Multiplication Techniques": 1 +"3rd Grade Social Studies: The Role of YouTube in Digital Storytelling and Culture Sharing": 1 +"2nd Grade Environmental Studies: Introduction to Recycling and Waste Management Concepts": 1 +"5th Grade Elementary: Enhancing Subtraction Skills through Number Line and Virtual Manipulatives": 1 +"6th Grade Social Studies: Deciphering Ancient Greek Mythology and Legends": 1 +"8th Grade Algebra: Decoding the Language of Algebra Using Computer Programming.": 1 +"5th Grade Science: Exploring Solar System through VR Space Missions": 1 +"3rd Grade Literature: Exploring Rhyme Schemes in Dr. Seuss’ ’Green Eggs and Ham’ Using Interactive Storyboards": 1 +"4th Grade Physical Education: Learning Football Basics with Interactive Goalposts": 1 +"1st Grade Geography: An Introduction to Continents and Oceans through Interactive World Maps": 1 +"7th Grade Art and Design: Understanding Proportions in Sketching using Augmented Reality": 1 +"6th Grade History: The Impact of the Industrial Revolution on Modern Society: A Comprehensive Study of Early Factories": 1 +"3rd Grade Social Studies: Understanding Community Roles through Role-Playing Games": 1 +"2nd Grade Physical Education: Discovering Ballet with Virtual Dance Studios": 1 +"8th Grade Language Arts: Enhancing Vocabulary through Interactive Storytelling & Gamified Quizzes": 1 +"5th Grade Music: Exploring the Science of Sound with Interactive Audio Tools": 1 +"6th Grade Geography: Understanding Topographical Maps with Google Earth and Virtual Reality": 1 +"8th Grade Biology: Dissecting Frog Anatomy via Virtual Reality Technology ": 1 +"4th Grade Mathematics: Enhancing Multiplication Skills with Math Blaster ": 1 +"9th Grade Physics: Investigating Newton’s Laws through Drone Technology": 1 +"2nd Grade Language Arts: Learning Basic Sentence Structure with TumbleBooks and Interactive Whiteboards": 1 +"5th Grade Science: Exploring the Solar System with Virtual Reality and Astronomy Apps ": 1 +"10th Grade History: Decoding the French Revolution through Interactive Timelines and Online Resources": 1 +"7th Grade Mathematics: Applying Pythagorean Theory through Minecraft Geometry": 1 +"3rd Grade Art: Crafting Clay Sculptures with Stop-Motion Animation Techniques": 1 +"1st Grade Music: Introducing Rhythm and Beat with Interactive Musical Apps": 1 +"5th Grade English: Understanding Metaphors and Similes through Classic Literature": 1 +"3rd Grade History: Exploring the Ancient Egyptian Civilization through Interactive Storytelling": 1 +"6th Grade Mathematics: Learning Fractions and Decimals through Real-world Shopping Scenarios": 1 +"8th Grade Science: Unraveling the Mysteries of the Solar System with Virtual Reality": 1 +"4th Grade Art: Exploring the Art of Mosaic with Recycled Materials": 1 +"7th Grade Social Studies: Delving into the Civil Rights Movement through Multimedia Resources": 1 +"2nd Grade Language Arts: Discovering Phonics through Creative Storytelling": 1 +"3rd Grade Science: Understanding the Water Cycle through Hands-on Experiments": 1 +"4th Grade Physical Education: Learning Teamwork and Strategy through Mini Soccer Tournaments": 1 +"5th Grade History: Investigating the Middle Ages through Role-Playing and Interactive Timelines": 1 +"4th Grade Biology: Unveiling Marine Life through Virtual Underwater Exploration": 1 +"7th Grade Astronomy: Exploring Cosmic Phenomena with NASA’s Hubble Telescope": 1 +"1st Grade Math: Introduction to Geometry Using Interactive Shapes and Patterns": 1 +"8th Grade Art: Sculpting Virtual Reality: The Influence of Renaissance Art": 1 +"Tenth Grade Economics: Decoding the Financial Crisis - An Exploration of Banking and Monetary Policies": 1 +"12th Grade Literature: Diving into Social Constructs through the Lens of Dystopian Novels": 1 +"3rd Grade Geography: Discovering World Landforms using Interactive 3D Maps": 1 +"5th Grade History: Journey through Ancient Egypt with Virtual Reality Pyramids": 1 +"7th Grade Music: Mozart’s Symphonies and the Evolution of Classical Music": 1 +"8th Grade Language Arts: Mastering Paragraph Composition with Google Docs Features": 1 +"5th Grade Physical Education: Exploring Movement Patterns with Dance and Virtual Reality": 1 +"2nd Grade English: Analysing Characters in Fairy Tales through Puppet Shows": 1 +"6th Grade English Language Arts: Interpreting Irony in Mark Twain’s Literature using PowerPoint Presentations": 1 +"1st Grade Social Studies: Grasping the Role of Firefighters in Our Neighborhood": 1 +"5th Grade Environmental Studies: Discovering Global Warming and Wildlife Conservation through Solar Energy and Hydro Power Projects": 1 +"4th Grade English: Vocabulary Building with Interactive Whiteboard Games": 1 +"2nd Grade Social Studies: Learning about the Importance of Recycling and Hybrid Vehicles in Our Society": 1 +"6th Grade History: Study of Pyramids in Ancient Egyptian Civilization": 1 +"6th Grade Physical Education: Archery Basics - Understanding the Concepts of Force and Trajectory": 1 +"Kindergarten History: Exploring Community Traditions using Digital Storytelling and the Concept of Time Sequence": 1 +"1st Grade Math: Creating Fun Shapes using Geometric Figures and Colored Chalks": 1 +"10th Grade Biology: Exploring Human Anatomy through Virtual Reality Dissections": 1 +"6th Grade History: Journey through the Renaissance Period via Interactive Timeline": 1 +"8th Grade Music: Experiencing the Beat - A Study of African Drums and Rhythms": 1 +"3rd Grade Mathematics: Boosting Subtraction Skills with Fun Number Games Using Tablets": 1 +"5th Grade Art: Discovering Artistry through Clay Modelling and Sculpture": 1 +"4th Grade English: Enhancing Vocabulary through Crossword Puzzles and Word Search Challenges": 1 +"6th Grade Geography: Exploring Climate Change and Its Impact through Interactive Globe Applications": 1 +"7th Grade Art: The Harmony of Colors - An Introduction to Acrylic Painting": 1 +"Implementing Code.org’s Hour of Code in Designing Game Characters: A Fresh Take on 5th Grade Computer Science": 1 +"4th Grade Science: Exploring the Solar System through Virtual Reality Telescope Apps": 1 +"3rd Grade English: Developing Speech Fluency with Interactive Role-Play Games": 1 +"9th Grade History: Unraveling Ancient Roman Architecture using 3D Modeling Software": 1 +"6th Grade Art: Discovering Pop Art and Use of Everyday Objects in Artwork": 1 +"7th Grade Technology: Building Robots using Basic Coding and Raspberry Pi": 1 +"10th Grade Biology: Analyzing Cellular Structures in Human Tissues Using Confocal Microscopy": 1 +"2nd Grade Mathematics: Reinforcing Number Recognition and Counting through Tablet-based Learning Games": 1 +"12th Grade Chemistry: Understanding Chemical Reactions and Molecular Structures Using VR Simulations": 1 +"8th Grade Music: Exploring Mozart’s Operas and the Harpsichord with Music Production Software": 1 +"5th Grade Geography: Investigating Global Climates with Interactive Globe Apps on iPads": 1 +"5th Grade History: Understanding The Influence of The Silk Road on Asian and European Cultures": 1 +"2nd Grade Geography: Journey Through Rainforests and Deserts with Virtual Reality": 1 +"2nd Grade Biology: Discovering the Evolution of Dinosaurs through Fossils and Interactive Models": 1 +"4th Grade English: Integrating Technology in Storytelling: Using Animation Software for Creative Writing": 1 +"5th Grade Art: Exploring Abstract Expressionism with Acrylic Paints and Palette Knives": 1 +"7th Grade Mathematics: Mastering Algebraic Equations using Khan Academy and Photomath": 1 +"Harmony in Action: Exploring the Impact of Tempo, Timbre, and Synthesizers on Melody for 10th Grade Music Lovers": 1 +"Preschool Art: A Comprehensive Study of Shapes and Patterns through Collage and Origami Techniques": 1 +"8th Grade Art: Developing 3D Modeling Skills using SketchUp Software": 1 +"12th Grade Physical Education: Understanding the Dynamics of Team Sports: The Science behind Soccer Strategies": 1 +"4th Grade Science: Exploring the Solar System through Virtual Reality and NASA Kids’ Club": 1 +"1st Grade Art: Introduction to Colors and Shapes with Paint and Collage": 1 +"2nd Grade Health: Learning About Dental Care with Interactive Toothbrushing Apps": 1 +"4th Grade English: Developing Vocabulary Skills through Word Games & Quizzes on ABCmouse Platform": 1 +"Kindergarten Mathematics: Understanding Counting and Number Sequences with Interactive Blocks": 1 +"3rd Grade History: Exploring Ancient Civilizations with Augmented Reality using Google Expeditions": 1 +"2nd Grade French: Enhancing Pronunciation Skills through Sing-Along Songs & Google Translate on the Duolingo Platform": 1 +"5th Grade Geography: Understanding World Maps and Globes through Virtual Field Trips and Google Earth": 1 +"1st Grade Science: Discovering Plant Life with Gardening Activities and Interactive Apps": 1 +"4th Grade Music: Basics of Melody and Harmony with Piano and Interactive Music Sheets": 1 +"9th Grade Literature: Unveiling Symbolism in Classic Novels": 1 +"4th Grade Math: Grasping Multiplication and Division with Number Lines": 1 +"2nd Grade Geography: Identifying Landforms through Virtual Tours": 1 +"7th Grade Physics: Understanding Forces and Motion with Practical Experiments": 1 +"11th Grade American Literature: Analyzing Themes in the Harlem Renaissance": 1 +"Kindergarten Art: Learning Shapes and Colors with Finger Painting": 1 +"5th Grade Environmental Science: Investigating Weather Patterns with Digital Tools": 1 +"3rd Grade Music: Understanding Pitch and Tone with Recorders": 1 +"8th Grade History: Exploring the Civil War through Interactive Timelines": 1 +"1st Grade Physical Education: Discovering Basic Sports Skills with Ball Games": 1 +"3rd Grade Physical Education: Understanding Basketball and Free-Throw Techniques": 1 +"5th Grade Math: Discovering Multiplication and Division with Interactive Learning Apps": 1 +"7th Grade Algebra: Mastering Linear Equations with Graphical Tools": 1 +"9th Grade History: The Industrial Revolution - Impact of the Steam Engine and Railroads": 1 +"11th Grade Literature: Exploring Contemporary Fiction with Film Adaptations": 1 +"4th Grade Science: Learning about the Solar System in Astronomy": 1 +"7th Grade Art: Introduction to Watercolor Painting": 1 +"6th Grade Art: Discovering Surrealism through Dali’s Masterpieces and Virtual Art Platforms": 1 +"5th Grade English: Understanding Story Elements through Short Story Writing": 1 +"8th Grade Social Studies: Deciphering Ancient Mayan Numerical System": 1 +"4th Grade Geography: Journey through the World’s Biomes using Virtual Tours": 1 +"6th Grade English: Mastering Vocabulary and Grammar through Interactive Language Apps": 1 +"9th Grade Biology: Getting Started with Human Anatomy and Physiology": 1 +"2nd Grade Art: Exploring Origami and Paper Art": 1 +"6th Grade Mathematics: Geometry Concepts Reinforced through 3D Modeling Software": 1 +"4th Grade Literature: Interpreting Themes and Characters through Comic Book Creation": 1 +"4th Grade Earth Science: Understanding Weather Patterns with Real-time Data and Simulations": 1 +"8th Grade History: Medieval Europe - Understanding Feudalism": 1 +"9th Grade Music: Exploring Rhythms and Beats in GarageBand": 1 +"7th Grade Geography: The Formation of Continents - Tectonic Plates and Seafloor Spreading": 1 +"4th Grade Biology: Discovering Plant Life Cycles through Timelapse Videos and Virtual Reality": 1 +"6th Grade Music: Unleashing Creativity with Sound and Rhythm using Augmented Reality Instruments": 1 +"7th Grade Chemistry: Understanding the Basics of Atomic Structure through Minecraft Education Edition": 1 +"2nd Grade Social Studies: Traveling Through Countries and Cultures with Interactive Maps": 1 +"9th Grade Literature: Delving into Allegory and Irony using Adobe Spark and Prezi Presentations": 1 +"4th Grade History: Journeying Through Ancient Civilizations with Hieroglyphic Decoding and Scale Models": 1 +"6th Grade Math: Conquering Fractions and Decimals using the Prodigy Math Game": 1 +"5th Grade Astronomy: Mars Exploration: Decoding the Red Planet with VR, Telescopes, and Spectrometers": 1 +"2nd Grade English: Mastering Rhymes and Rhythm in Poetry": 1 +"1st Grade Math: Venturing into the Universe of Addition using the Math Tango App": 1 +"9th Grade Computer Science: Introduction to Python Programming using Codecademy and GitHub": 1 +"6th Grade Biology: Exploring Ecosystems Through Virtual Reality and Google Earth": 1 +"11th Grade Chemistry: Understanding Molecular Structures with 3D Printing and Virtual Labs": 1 +"2nd Grade Spanish: Communicative Skills Development using Duolingo and Google Meet Role-playing": 1 +"3rd Grade Art: Creating Masterpieces with Digital Art Apps": 1 +"7th Grade Geography: Navigating Global Landforms using Google Maps and Augmented Reality": 1 +"5th Grade Physics: Discovering Forces and Motion Through Interactive Simulations": 1 +"1st Grade Reading: Phonics Mastery with Starfall and ABCmouse": 1 +"8th Grade Health Education: Understanding Nutrition and Calorie Counting with Health Apps": 1 +"6th Grade US History: Understanding the Civil War Through Virtual Tours and Interactive Time Lines.": 1 +"3rd Grade Geography: Understanding Continents and Oceans through Augmented Reality": 1 +"6th Grade English: Improving Spelling and Punctuation with Interactive Grammar Games": 1 +"7th Grade Music: Learning Note Recognition and Rhythm with Digital Music Sheets": 1 +"9th Grade History: Civil Rights Movement - The Impact of Television Broadcasts": 1 +"11th Grade Design: Creating 3D Models with CAD Software’s Extrude, Revolve, and Sweep Tools": 1 +"1st Grade Reading: Developing Comprehension Skills using Animated Audiobooks": 1 +"2nd Grade Science: Discovering the Life Cycle of Butterflies with Virtual Reality ": 1 +"3rd Grade Mathematics: Understanding Multiplication and Division using Fun Online Quizzes": 1 +"6th Grade Language Arts: Mastering Persuasive Writing and Rhetorical Devices with Podcasts and Blogs ": 1 +"7th Grade Science: Investigating the Layers of the Earth using Interactive 3D Models": 1 +"10th Grade History: Exploring the Renaissance through Architectural Analysis": 1 +"6th Grade Science: Introduction to Astronomy: A Tour through the Solar System": 1 +"8th Grade English: Enhancing Creative Writing through Conversations on Modern Poetry": 1 +"1st Grade Health: Exploring the Five Senses with Interactive Activities": 1 +"5th Grade Mathematics: Understanding Fractions through Cooking Measurements": 1 +"Kindergarten Music: Discovering Sounds and Rhythms through Handmade Instruments": 1 +"7th Grade Social Studies: Ancient Rome - Utilizing Minecraft for Historical Reconstruction": 1 +"2nd Grade Art: Learning about Textures and Patterns through Collage Making": 1 +"3rd Grade Literature: Exploring Themes in Children’s Fairy Tales": 1 +"6th Grade Mathematics: Geometry Basics with the TinkerCAD App": 1 +"The Impact of Nutrition Games on 1st Grade Health: Vegetables, Fruits, and 10 More Fun Facts ": 1 +"4th Grade English: Poetry Writing Basics using Rhyme and Rhythm Tools ": 1 +"8th Grade Physical Education: Improving Soccer Skills with the Principles of Coordination and Fitness Trackers": 1 +"Discovering the Secrets of Comets in 7th Grade Cosmology: Using Space Apps and Observatory Tours ": 1 +"5th Grade History: Learning the Significance of Pyramids in Mexico’s Ancient Cultures ": 1 +"Kindergarten Geography: Identifying World Landmarks using Interactive Maps and Virtual Reality Experiences ": 1 +"3rd Grade Science: Observing Plant Growth through Time-lapse Videos and 3D Models ": 1 +"2nd Grade Mathematics: Introduction to Geometry using Tangram Puzzles ": 1 +"Sixth Grade Biology: Investigating Cellular Division and Genetic Variations Through Microscope Observations in Genetics ": 1 +"5th Grade Social Studies: The Importance of Hieroglyphics in Ancient Egyptian Communication and Record-Keeping": 1 +"2nd Grade Music: Exploring Rhythm and Beat through Hand Percussion and DIY Instruments": 1 +"5th Grade Science: Understanding Weather Patterns and Climate Change through Interactive Experiments ": 1 +"3rd Grade Mathematics: Introduction to Fractions and Decimals using Interactive Learning Software": 1 +"4th Grade History: Exploring Ancient Civilizations through Interactive 3D Models and Virtual Reality": 1 +"1st Grade Physical Education: Learning Basic Motor Skills through Fun Obstacle Courses": 1 +"6th Grade Art: Exploring Pop Art through Digital Design and Animation": 1 +"2nd Grade Environmental Studies: Understanding the Importance of Water Conservation through Interactive Activities ": 1 +"5th Grade Language Arts: Mastering Metaphors in Poetry and Prose through Creative Writing Exercises": 1 +"4th Grade Science: Investigating Plant Life Cycles and Photosynthesis through Hands-On Gardening Activities": 1 +"3rd Grade Social Studies: Learning About Global Cultures through Virtual Reality Field Trips": 1 +"5th Grade Geography: Exploring World Maps and Cultures using Interactive Globes": 1 +"11th Grade Literature: Understanding Symbolism in Modern Poetry using Online Archives": 1 +"3rd Grade Art: Exploring Shape and Form with Clay Sculpture Projects": 1 +"6th Grade Language Arts: Delving into Shakespearean Drama through Interactive Theatre Workshops": 1 +"3rd Grade Mathematics: Grasping Multiplication and Division with Engaging Puzzles ": 1 +"Understanding Geometry and Angle Measurement using Protractors for 5th Graders": 1 +"7th Grade Music: Exploring Mozart’s Symphonies with Virtual Orchestra Performance Tools": 1 +"3rd Grade Art: Understanding Texture and Composition with Mixed Media Art": 1 +"9th Grade Science: An Introduction to Physics through Exploring Energy and Motion": 1 +"3rd Grade Environmental Studies: The Water Cycle - An Interactive Exploration with Simulations": 1 +"5th Grade Geography: Understanding Earth’s Tectonic Plates through Interactive Earthquake Simulations": 1 +"6th Grade Literature: The Victorian Era - The Emergence of Serial Novels and their Influence on Reading Habits": 1 +"4th Grade Mathematics: Grasping Division with Math Games on Educational Platforms": 1 +"3rd Grade Language Arts: Engaging Spelling and Punctuation Enrichment with Digital Flashcards": 1 +"Exploring Parallel Universes in Fantasy Literature: A 6th Grade Language Arts Course on Multiverse Theory": 1 +"1st Grade Reading: Enhancing Word Recognition and Reading Fluency with Augmented Reality Books": 1 +"8th Grade Mathematics: Discovering the Basics of Geometry using Origami and Paper Crafts": 1 +"Kindergarten Science: Learning about Animal Habitats through Miniature Biome Projects and Animal Observation Logs": 1 +"3rd Grade Environmental Studies: The Importance of Bees and Pollination": 1 +"1st Grade Environmental Studies: Exploring the Basics of Weather with Wind Vanes, Thermometers, and Cloud Identification Charts": 1 +"3rd Grade Engineering: Building Bridges with Lego Technic and Augmented Reality": 1 +"7th Grade Art: Creating Abstract Art with Adobe Fresco Digital Brushes and Chalk Pastel Techniques": 1 +"4th Grade PE: Enhancing Stamina with Fitbit - Smart Heart Rate Monitor": 1 +"Beethoven’s Symphony and the Progression of Romantic Music: A 9th Grade Course Applying Data Visualization Techniques": 1 +"Kindergarten Science: Discovering Shapes and Colors with Play-Doh and Finger Painting Methods": 1 +"3rd Grade Information Technology: A Basic Guide to Coding with Tynker": 1 +"Applying iPad Learning in Boosting 1st Grade Reading Skills with ABCmouse: A Focus on Interactive Stories": 1 +"Ancient Egyptian Art: The Creation of Sphinx in 5th Grade Art History": 1 +"10th Grade Music: Exploring the Evolution of Jazz using Digital Audio Workstations": 1 +"6th Grade Astronomy: Understanding the Concept of Black Holes in our Milky Way Galaxy": 1 +"Exploring the Influence of Fortepiano in Classical Music: A 7th Grade Music Study on Mozart’s Compositions": 1 +"8th Grade Music: The Role of the Clavichord, Gregorian Chants, and Tablature in the Progression of Medieval Music": 1 +"9th Grade Language Arts: Assessing Metaphors in Short Stories with Copyscape Plagiarism Detection": 1 +"4th Grade History: The Application of Pulleys in Ancient Egyptian Pyramid Construction": 1 +"6th Grade Art: Dry Brush Technique - Texture Experimentation with the Use of Sponge": 1 +"3rd Grade Art: Harnessing Animation Software for Expressive Portrayal in Landscape Art": 1 +"6th Grade World History: The Industrial Revolution - Influence of the Spinning Jenny": 1 +"Enhancing Pre-School Language Arts with Tablet: Storytelling Sessions using Storybird Edu App": 1 +"3rd Grade Physical Education: Baseball Pitching Strategies - The Craft of Curveball using Virtual Reality Baseball Trainers": 1 +"10th Grade Social Studies: Exploring Desert Tribes through Google Maps and Infrared Satellite Technologies": 1 +"6th Grade Social Studies: Exploring the Rise of Civilizations through the Lens of the Silk Road": 1 +"7th Grade History: World War II - An In-depth Analysis of Codebreakers and Cryptography": 1 +"2nd Grade Language Arts: Discovering Narratives through Interactive E-books": 1 +"6th Grade Mathematics: Adventure into Algebra Using Minecraft and Zoom Sessions": 1 +"Understanding Photosynthesis and Cellular Respiration through Microscope Exploration: A 7th Grade Science Course": 1 +"8th Grade Music: Harmony and Melody - An Extensive Course in Clarinet Playing": 1 +"6th Grade Mathematics: Grasping Fractions and Decimals in Real-World Contexts": 1 +"3rd Grade Science: Discovering Arctic Tundra Ecosystems Through Virtual Reality Experiences": 1 +"2nd Grade Science: Learning About Desert Biomes through Cactus Garden Assembly and Identification using Moisture Level Kits and Sunlight Simulation Tools": 1 +"7th Grade Geography: The Effects of Tsunamis on Coastal Communities and Marine Life": 1 +"6th Grade Science: Exploring the Solar System with Virtual Planetarium Software": 1 +"2nd Grade Environmental Studies: Understanding Weather Patterns through Interactive Simulations": 1 +"11th Grade Music: Evaluating Beethoven’s Sonatas through Finale Notation Software and Harmonic Analysis": 1 +"4th Grade Science: Learning about Dinosaurs through Virtual Fossils and 3D Models": 1 +"7th Grade Social Studies: Delving into American History through Documentaries and Discussion Techniques": 1 +"Kindergarten Environmental Studies: Discovering Backyard Bugs through Sensory Exploration": 1 +"5th Grade Science: The Role of Different Rocks in Earth’s Crust": 1 +"8th Grade Mathematics: Mastering Algebra through Gamified Learning Platforms": 1 +"4th Grade English: Improving Pronouns and Prepositions Mastery with FunBrain and Augmented Reality Tools": 1 +"3rd Grade Mathematics: Understanding Fractions through Edible Math Activities and Digital Board Games": 1 +"4th Grade Biology: Exploring Animal Adaptations using Virtual Reality Tools": 1 +"1st Grade Language Arts: Understanding Aesop’s Fables through Storytelling Software": 1 +"Analyzing Symbolism in F. Scott Fitzgerald’s ’The Great Gatsby’ using EdPuzzle and Kahoot in 12th Grade American Literature: Modern Teaching Strategies": 1 +"7th Grade Music: Beethoven’s Sonatas: Piano Performance and Digital Composition with Sibelius & Ableton Live": 1 +"10th Grade Language Arts: Deciphering Chaucer’s ’The Canterbury Tales’ through Social and Cultural Context": 1 +"3rd Grade Geography: Discovering World Climate Zones with Interactive Weather Map Apps": 1 +"6th Grade Music: Discovering Vivaldi’s Concertos through Violin Practice and Sound Design Using Logic Pro X Software": 1 +"8th Grade Language Arts: Enhancing Vocabulary Skills using Gamified Learning Platforms": 1 +"Smartboard and FL Studio: Exploring Asian Melodic Structures with Xylophone for 3rd Grade Music Students": 1 +"The Civil War: 9th Grade History - The Role of Slavery and the Impact of Industrialization": 1 +"5th Grade Geography: Exploring World Landforms through Topographic Maps": 1 +"3rd Grade Science: Understanding Weather Patterns and Climate Zones": 1 +"8th Grade English Literature: Investigating Gothic Elements in “Dracula” with Audiobooks and Podcasts": 1 +"6th Grade Art: Crafting Expressive Portraits: A Dive into Watercolor Techniques": 1 +"9th Grade Physics: Newton’s Laws of Motion and Practical Applications in Everyday Life": 1 +"4th Grade Environmental Studies: The Water Cycle and its Impact on Ecosystems": 1 +"10th Grade World History: Analyzing the French Revolution through Political Cartoons": 1 +"1st Grade Physical Education: Fundamentals of Soccer with Ball Control Drills": 1 +"3rd Grade Language Arts: The Magic of Similes and Metaphors in Storytelling": 1 +"Ancient Civilizations: Egyptian Hieroglyphics and the Secrets of the Rosetta Stone": 1 +"4th Grade Chemistry: Learning Chemical Reactions through Homemade Volcano Experiments": 1 +"7th Grade Literature: Shakespeare’s Plays, Text Analysis and Dramatic Performances - A Comprehensive Study Using Virtual Reality": 1 +"5th Grade Mathematics: Understanding Fractions with 3D Models and Interactive Tools": 1 +"11th Grade Health Education: Nutrition Guidelines and Meal Planning for Wellness and Fitness Enthusiasts": 1 +"7th Grade Computer Science: Developing Basic Coding Skills with Python and Scratch": 1 +"1st Grade Natural Science: Discovering Bird Species in your Backyard using Field Guides and Binoculars": 1 +"12th Grade Geography: Exploring Urban Planning and Infrastructure through Satellite Data and GIS Technology": 1 +"2nd Grade Environmental Studies: Understanding Weather Patterns through DIY Weather Station Projects": 1 +"5th Grade Music: Mozart’s Symphonies, Violin Techniques and Digital Recording - A Detailed Study Using GarageBand ": 1 +"9th Grade Physical Education: Basketball Techniques and Strategies: Enhancing Performance with Video Analysis Software": 1 +"1st Grade Science: Discovering the Weather - Cloud Formation and Rainbows: A Fun Experiment with Light and Water": 1 +"10th Grade Biology: Exploring the Human Body: A Journey through Cellular Structures and Functions": 1 +"3rd Grade English: Adventures in Storytelling - Building Narrative Skills with Minecraft": 1 +"6th Grade Physics: Newton’s Laws of Motion: Interactive Experiments with Virtual Reality": 1 +"4th Grade History: Exploring Ancient Civilizations - The Mayans and Aztecs: An Interactive Journey with Google Earth": 1 +"10th Grade Art: Understanding Color Theory - Painting Techniques using Acrylics: A Study of Tones and Shades": 1 +"Interactive 3rd Grade Science: Life Cycle of Plants using Augmented Reality": 1 +"5th Grade Music: Exploring Musical Genres - Using Smart Speakers for Interactive Melody Creation": 1 +"2nd Grade English: Phonics and Spelling: Engaging Reading Sessions with Animated Characters": 1 +"6th Grade Geography: Navigating the World - Understanding Longitude and Latitude with Virtual Globes": 1 +"1st Grade Science: Exploring the Solar System through Interactive 3D Models": 1 +"5th Grade Geography: Navigating the Nile - A Journey through Ancient Egyptian Civilization": 1 +"Decoding the Mayan Calendar: A Ninth Grade History Course": 1 +"4th Grade Science: Unraveling Genetics with DIY DNA Models": 1 +"Mastering 9th Grade Geometry: Applying Pythagoras Theorem in Real-world Contexts": 1 +"7th Grade Literature: Journey into Fantasy Worlds with Virtual Reality Book Reviews": 1 +"Understanding Paradox in The Time Machine: An 8th Grade Language Arts Course Using Time Travel": 1 +"5th Grade Mathematics: Multiplying Decimals through Practical Money Problems": 1 +"4th Grade Physical Education: Utilizing Jump Ropes and the Principle of Momentum for Exciting Movement Activities": 1 +"8th Grade Social Studies: Discovering the Impact of Wind Energy on Sustainable Development": 1 +"9th Grade Art: Exploring Contemporary Sculpture with Clay and 3D Printing": 1 +"10th Grade Mathematics: Delving into Geometry with AutoCAD and SolidWorks": 1 +"3rd Grade Music: Discovering Classical Compositions through Interactive Apps and Acoustic Instruments": 1 +"8th Grade Physical Education: Enhancing Agility through Circuit Training and Plyometrics": 1 +"7th Grade Language Arts: Enhancing Storytelling Skills through Podcasting and Audio Dramas": 1 +"5th Grade Social Studies: Examining Ancient Civilizations through Virtual Reality Expeditions": 1 +"12th Grade Music: Opera Appreciation: Exploring Verdi’s Aida and its Cultural Impact": 1 +"4th Grade Science: Understanding Ecosystems through Virtual Field Trips and Simulations": 1 +"6th Grade History: The Influence of Renaissance Art on Modern Visual Culture": 1 +"2nd Grade Mathematics: Grasping Fractions through Interactive Games and Visual Aids": 1 +"1st Grade Science: Discovering the Life Cycle of Butterflies through Observation": 1 +"6th Grade English: Developing Writing Skills through Online Storytelling Platforms": 1 +"5th Grade Geography: Exploring Major World Rivers using Virtual Reality": 1 +"8th Grade Mathematics: Mastering Geometry with Interactive 3D Models": 1 +"7th Grade Art: Exploring Pottery - Basics of Hand Building Techniques": 1 +"3rd Grade Social Studies: Ancient Egypt: Understanding Hieroglyphics through Interactive Games": 1 +"2nd Grade Mathematics: Learning Addition and Subtraction with Number Line Activities": 1 +"9th Grade Chemistry: The Role of Chemical Reactions in Everyday Life": 1 +"4th Grade Physical Education: Introduction to Yoga and Mindfulness Exercises": 1 +"6th Grade Music: Understanding Melody and Harmony through Keyboard Practice": 1 +"7th Grade Science: Exploring Weather Patterns using Simulation Software and Real-Time Data": 1 +"10th Grade Sport: Enhancing Football Skills with On-field Practice and Virtual Reality Training": 1 +"4th Grade Music: Discovering Rhythm and Beat through Interactive Percussion Instruments and Music Apps": 1 +"5th Grade History: Journey into the Roman Empire - A Glimpse at Gladiator Life with Augmented Reality Technology": 1 +"The Intricacies of Parallel Worlds in Quantum Physics: An 8th Grade Science Fiction Literature Course": 1 +"6th Grade Music: Understanding the Harmony of Choir and the Basics of Songwriting": 1 +"10th Grade Language Arts: Perfecting Descriptive Writing with the Use of Digital Illustration Tools": 1 +"3rd Grade History: Exploring the Renaissance - The Life of an Artist": 1 +"12th Grade Biology: Delving into Genetic Engineering through CRISPR and DNA Sequencing": 1 +"12th Grade Music: The Rise of Electronic Music and Synthesizer Technologies.": 1 +"4th Grade Art: Learning about Renaissance Art through Interactive Paint Tools": 1 +"7th Grade English: Mastering Essay Writing with Innovative Online Platforms": 1 +"5th Grade Music: Exploring Melody and Harmony through Virtual Piano Lessons": 1 +"8th Grade History: Unveiling the Mysteries of Ancient Egypt and Their Pyramids": 1 +"5th Grade History: Understanding Roman Empire and the Significance of Aqueducts": 1 +"2nd Grade Music: Introduction to Violin and Basic Bowing Techniques": 1 +"3rd Grade Science: Mars Exploration: Orbiters, Landers, and the Search for Life": 1 +"1st Grade Language Arts: Improving Vocabulary through Interactive Storytelling Apps": 1 +"6th Grade Mathematics: Exploring Geometry and Shapes Through Origami Art": 1 +"1st Grade Social Studies: Exploring Our Neighborhood through Map Reading and Field Trips": 1 +"5th Grade Biology: Plant Photosynthesis: A Comprehensive Study with Microscopic Observations": 1 +"2nd Grade Geography: Exploring the Sahara Desert through Immersive 3D Models": 1 +"3rd Grade Social Studies: The Ancient Egyptian Civilization - Learning through Augmented Reality": 1 +"8th Grade Introduction to Physics: Understanding the Principles of Light and Sound": 1 +"5th Grade History: The Journey of the Internet - A Look into the World Wide Web Evolution": 1 +"Kindergarten Health Education: Understanding Hygiene through Hands-on Activities and Storytelling": 1 +"6th Grade Literature: Unraveling the Themes in Classic Novels using Virtual Reality": 1 +"Decoding Gravity: A 4th Grade Course on Galileo’s Experiments using Interactive Simulations": 1 +"8th Grade Global Studies: Medieval Europe and the Emergence of Feudalism": 1 +"Mastering Prepositions in 3rd Grade English using Digital Flashcards": 1 +"5th Grade Science: Exploring Plant Life Cycles with Interactive 3D Models and Virtual Labs": 1 +"7th Grade Physical Education: Improving Agility and Stamina with Circuit Training and Heart Rate Monitors": 1 +"1st Grade Mathematics: Adventure in Numbers and Counting with Fun Digit Blocks": 1 +"4th Grade History: Understanding the Medieval Times through Virtual Castle Tours and Knightly Tales": 1 +"8th Grade English: Enhancing Creative Writing Skills through Storyboarding and Online Collaborative Writing Tools": 1 +"2nd Grade Art: An Excursion into Textures and Patterns through Finger Painting and Collage Making": 1 +"3rd Grade Science: Discovering Solar System with VR Space Expeditions and Online Planetarium": 1 +"5th Grade Geography: Journey through Biomes with Interactive Map Puzzles and Survival Game Simulations": 1 +"Victorian Era: Studying the Influence of Steam Power on Industrial Revolution in 7th Grade History": 1 +"Ancient Egyptian Architecture: Exploring Pyramids and Sphinx Construction Techniques for 6th Grade History": 1 +"5th Grade Math: Understanding Fractions through Real-World Applications": 1 +"Advanced Sound Design for 9th Grade Music: Exploring Ambient Soundscapes with Ableton Live": 1 +"7th Grade History: Unraveling the American Civil War through Interactive Digital Mapping": 1 +"1st Grade Science: Discovering the Solar System through Virtual Reality ": 1 +"6th Grade Art: Enhancing Creativity with 3D Printing and Sculpture": 1 +"Fundamentals of Hydroponic Gardening: A 5th Grade Agricultural Science Course": 1 +"2nd Grade Math: Mastering Addition and Subtraction with Interactive Games ": 1 +"7th Grade Music: Exploring Musical Notation with Sibelius Software": 1 +"4th Grade Geography: Understanding Topographic Maps using Augmented Reality ": 1 +"2nd Grade English: Improving Reading Skills with Interactive E-Books": 1 +"8th Grade Physics: Exploring the Laws of Motion through Robotics": 1 +"5th Grade History: Civil War Era: Learning through Virtual Reality Experiences": 1 +"2nd Grade Language Arts: Journey to Outer Space with VR Reading Sessions": 1 +"5th Grade Language Arts: Developing Characters through Storyboard That and Plot Diagrams": 1 +"5th Grade Language Arts: Understanding Similes in Literature using Book Creator and Digital Animation Tools": 1 +"Ninth Grade Music: Grasping Chord Progressions with GarageBand": 1 +"6th Grade Environmental Science: The Role of Decomposers in Forest Ecosystems: A Closer Look at Earthworms": 1 +"5th Grade Art: Discovering Pointillism through the Works of French Post-Impressionist Artists": 1 +"8th Grade Geometry: Learning Shapes and Angles through Virtual Puzzles and Games": 1 +"2nd Grade Social Studies: The Vikings: Learning History through Interactive Storytelling and Craft Projects": 1 +"9th Grade Physics: Understanding Laws of Motion with Roller Coaster Design and Simulation": 1 +"2nd Grade Mathematics: Fun with Shapes and Patterns through Origami": 1 +"8th Grade History: Exploring Ancient Egyptian Civilization through Virtual Reality Tours and Hieroglyph Deciphering": 1 +"5th Grade Physical Education: Introduction to Gymnastics: Balance Beam and Floor Exercise Basics": 1 +"6th Grade Literature: Journey into J.K. Rowling’s Wizarding World with Interactive E-Books and Podcasts": 1 +"4th Grade Geography: Exploring World Landforms through Virtual Field Trips and Google Earth": 1 +"7th Grade Technology: Website Design Basics using HTML and CSS ": 1 +"3rd Grade Art: Understanding Textures and Patterns through Collage Making ": 1 +"Second Grade Science: Discovering the Lifecycle of Butterflies through Time-Lapse Videos": 1 +"10th Grade Culinary Arts: Introduction to Baking: Bread and Pastry Techniques": 1 +"2nd Grade Music: Recognizing Rhythms and Melodies through Hand Drumming": 1 +"7th Grade Biology: Plant Life and Photosynthesis: An Exploration with Microscopes": 1 +"5th Grade Language Arts: Enhancing Reading Comprehension with Digital Storybooks and Podcasts": 1 +"8th Grade History: Exploring Ancient Roman Architecture through Virtual Reality": 1 +"3rd Grade Language Arts: Improving Handwriting and Penmanship with Fun Calligraphy Exercises": 1 +"7th Grade Algebra: Understanding Equations using Virtual Manipulatives and Interactive Whiteboards": 1 +"5th Grade Science: The Solar System Journey: Learning through Virtual Planetariums and Educational Apps": 1 +"6th Grade Geometry: Mastering Angles and Shapes using Protractors and 3D Modelling Software": 1 +"1st Grade Mathematics: Learning Counting and Subtraction with Animated Number Characters": 1 +"11th Grade Business Studies: Introduction to Marketing and Branding Strategies in the Fashion Industry": 1 +"6th Grade Mathematics: Decoding Geometry - Angles and Shapes": 1 +"5th Grade English Literature: The Magic of Similes in Storytelling": 1 +"1st Grade History: Native American Tribes: The Invention of Totem Poles": 1 +"4th Grade English: Analyzing Character Development in Short Stories with Audible": 1 +"12th Grade Health Education: Understanding Nutrition and Diet Planning with Fitness Apps": 1 +"Venturing into Myths: A 3rd Grade Language Arts Adventure with Audio E-books": 1 +"4th Grade History: Journey into the Renaissance: The Art of Bookmaking": 1 +"1st Grade Science: Discovering Plant Life Cycles through Virtual Reality Expeditions": 1 +"3rd Grade Science: Unveiling the Mysteries of Ocean Life and Survival Strategies through Virtual Field Trips": 1 +"Kindergarten Art: Forming Shapes and Patterns with Digital Collage and Animation Tools": 1 +"3rd Grade Biology: Discovering Plant Life Cycles with Classroom Gardens": 1 +"12th Grade History: Tracing the French Revolution through the Eyes of Maximilien Robespierre": 1 +"Exploring the Science of Sound: An Acoustic Journey through Musical Instrument Resonance": 1 +"5th Grade Earth Sciences: Exploring Global Climate Patterns Using Interactive Digital Maps": 1 +"8th Grade Art: Creating Digital Paintings in Adobe Photoshop": 1 +"7th Grade Physical Education: Enhancing Basketball Skills with Video Analysis Software": 1 +"8th Grade Algebra: Mastering Linear Equations through Gamified Mathematics Apps": 1 +"Using Python Code to Explore the Physics of Pendulums: A Guide for 8th Grade Science": 1 +"Improving 3rd Grade Writing Skills through Proper Noun Usage: A Course Utilizing Kahoot! Quizzes and Google Classroom for Feedback": 1 +"3rd Grade Earth Science: Introduction to Seismology and Earthquake Detection Using Interactive Models": 1 +"7th Grade Literature: Enhancing Poetry Comprehension with Rhyme Schemes and Metaphors": 1 +"Advanced 1st Grade Math: Understanding Numbers and Operations using Tangrams and the Number Line Strategy": 1 +"5th Grade Spanish: Enhancing Communication Skills through Interactive Language Apps": 1 +"9th Grade Geography: Impact of Mining on Local Ecosystems: The Drill Technology and 10 Restoration Methods": 1 +"10th Grade History: The Enlightenment Period: Voltaire and His Influence on Freedom of Thought": 1 +"2nd Grade Art: Exploring Shapes and Patterns with Paper Mosaics and Origami Techniques": 1 +"4th Grade Mathematics: Fractions and Decimals Mastery with Math Board Games": 1 +"Preschool Earth Science: Seasons and Weather Changes: A Practical Study with Thermometers and Rain Gauges": 1 +"12th Grade Chemistry: Understanding Chemical Reactions with Spectroscopy Technology": 1 +"3rd Grade Science: Plant Life Cycles and Use of Time-Lapse Photography Technology": 1 +"10th Grade Health and Wellness: Introduction to Nutrition and Healthy Eating Practices": 1 +"3rd Grade Biology: Engaging with Plant Life Cycle through Seed Growing and Time-Lapse Photography": 1 +"7th Grade Music: Delving into Music Theory with Keyboard and Composition Techniques": 1 +"Understanding Quadratic Equations in 9th Grade Math using Desmos and the Completing the Square Method": 1 +"5th Grade Art: Exploring Depth and Perspective in Pencil Sketching": 1 +"7th Grade English: Adventure into Greek Mythology with Augmented Reality": 1 +"Computer Programming for 5th Graders: Learning Coding Basics with Scratch": 1 +"2nd Grade Earth Science: Investigating Weather Patterns using Weather Vane and Thermometers": 1 +"1st Grade Math: Learning Addition and Subtraction through Fun Puzzles": 1 +"6th Grade History: Ancient Civilizations - Experiencing Egypt through Virtual Reality Tours": 1 +"5th Grade Geography: Exploring the Amazon Rainforest through Virtual Reality": 1 +"8th Grade Physics: Understanding Kinematics through Archery Motion Analysis": 1 +"9th Grade Digital Design: Mastering Vector Graphics with Adobe Illustrator’s Pen Tool": 1 +"6th Grade Art: Creating Abstract Art: A Study in Acrylic Pouring Techniques": 1 +"8th Grade Introduction to Biology: Decoding Genetic Information in DNA": 1 +"5th Grade Mathematics: Understanding Geometric Shapes with GeoGebra and Symmetry": 1 +"4th Grade World Cultures: Investigating Ancient Egyptian Society through Pottery Making and Hieroglyphs": 1 +"5th Grade Art and Craft: Basics of Paper Mache Sculpting": 1 +"8th Grade Physical Education: Enhancing Soccer Skills through Biomechanics and Performance Analysis": 1 +"Unraveling the Great Depression: The Impact of Fiscal Policies on Social Structure using Historical Maps": 1 +"8th Grade Computer Science: Leveraging Python for Algorithm Development in Analyzing Space Data": 1 +"5th Grade Geography: Exploring the Impact of Volcanoes on Landscape Formation": 1 +"3rd Grade History: The Ancient Egyptians and their Use of Hieroglyphs for Communication": 1 +"7th Grade Math: Grasping Geometry Concepts through AutoCAD and 3D Printing ": 1 +"Understanding 2nd Grade Science: Discovering Plants and Animals with Interactive Augmented Reality Apps": 1 +"12th Grade Graphic Design: Mastering Illustrator’s Blend Modes for Creating Striking Posters": 1 +"8th Grade Music: Understanding the Impact of Different Scales on Mood using the Piano and Garageband Software": 1 +"Unveiling the Secrets of Light: A 4th Grade Science Course Using Interactive Experiments and Light Simulation Apps": 1 +"8th Grade Global Studies: Analyzing Political Systems through the Lens of Augmented Reality": 1 +"5th Grade Language Arts: Harnessing Metaphors in the Art of Poetic Expression": 1 +"7th Grade Art: Discovering Watercolor Techniques in Landscape Painting": 1 +"4th Grade Science: Understanding Ecosystems Through Biodiversity Studies and Field Observations": 1 +"9th Grade History: Civil War Period - Examination of the Underground Railroad in Abolitionist Movements": 1 +"7th Grade Music: Embarking on a Voyage Through Jazz Legends with a Focus on Big Band Sounds": 1 +"Understanding the Role of Mathematics in Ancient Egyptian Architecture: An 8th Grade History Course": 1 +"4th Grade History: Studying Medieval Societies through Castle Construction": 1 +"10th Grade World History: Evaluating the Consequences of the Cold War through Political Cartoons and Virtual Exhibitions": 1 +"3rd Grade Science: Plant Life and the Impact of Soil Composition": 1 +"3rd Grade Music: Mastering the Basics of Tone and Harmony with a Recorder, GarageBand, and the Bass Clef": 1 +"6th Grade Physical Education: Basketball Techniques Using Training Cones.": 1 +"5th Grade Math: Unfolding the Mystery of Fractions through Interactive Whiteboard Puzzles ": 1 +"4th Grade History: Tracing the American Revolution through Augmented Reality Simulations": 1 +"2nd Grade Physical Education: Improving Agility and Balance with Obstacle Course Training ": 1 +"8th Grade Literature: Discovering Shakespeare’s World through Dramatic Readings and Interactive Plays": 1 +"Kindergarten Art: Exploring Shapes and Textures through Finger Painting and Clay Sculpting": 1 +"6th Grade Earth Science: Understanding Weather Patterns through DIY Weather Station Kits": 1 +"2nd Grade Reading: Enhancing Vocabulary Skills through Storybook Apps and Flashcards": 1 +"9th Grade Music: Composing Melodies using Digital Audio Workstations and MIDI Controllers": 1 +"7th Grade Life Science: Exploring Animal Habitats through Virtual Reality Field Trips": 1 +"5th Grade Language Arts: Crafting Compelling Stories through Digital Storytelling Tools": 1 +"5th Grade Geography: Exploring the Amazon Rainforest using Virtual Tours and Interactive Maps": 1 +"6th Grade Physical Education: The Importance of Safety Equipment in Skateboarding: Utilizing GoPro Cameras for Training": 1 +"2nd Grade Mathematics: Improving Number Recognition and Basic Arithmetic using Interactive Whiteboards and MathSeeds": 1 +"5th Grade Life Science: Discovering the Metamorphosis of Frogs using Augmented Reality and Interactive Activities": 1 +"7th Grade Music: Harmony and Melody: Discovering Piano Chords with Digital Keyboards": 1 +"Kindergarten Language Arts: Strengthening Alphabet Recognition and Vocabulary Using Starfall and Digital Puzzles on Smart Tablets": 1 +"11th Grade English Literature: Utilizing Microsoft Teams for Group Study of Shakespeare’s Plays": 1 +"3rd Grade History: Discovering Ancient Civilizations Through Virtual Reality": 1 +"5th Grade Reading: Boosting Comprehension Skills with Narration and Audiobooks on Audible": 1 +"1st Grade Health: Understanding the Basics of Nutrition and Healthy Eating with Interactive Games.": 1 +"8th Grade Art: Shading Techniques with Graphite and Colored Pencils on Textured Paper": 1 +"2nd Grade Life Sciences: Understanding Photosynthesis in Aquaponics and Nutrient Cycling for Eco-Friendly Gardening": 1 +"5th Grade Music: In-Depth Study of Beethoven’s Symphonies with Virtual Instruments, Yamaha YDP-144 Digital Piano, Harmonic Analysis, and GarageBand Mixing Tools": 1 +"8th Grade Physical Education: Taekwondo and Agility: Incorporating Balance Beams into Training": 1 +"4th Grade Art: Discovering Color and Texture with Paper Mache Projects": 1 +"10th Grade History: The Influence of Bessemer Process on Iron Production and Acid Rain Effects during the Victorian Era - Solution 3: Alkaline Scrubbing": 1 +"5th Grade Science: Exploring the Galaxy with James Webb Space Telescope Snapshots": 1 +"3rd Grade Music: Understanding Melody with Xylophones and Music Blocks": 1 +"7th Grade Painting: Watercolor Techniques with Brush Types and Masking Fluid": 1 +"5th Grade Music: Basics of Melody and Harmony with Ableton Live Sequencer": 1 +"4th Grade Geography: Discovering Landforms with Interactive 3D Globe Models": 1 +"2nd Grade Biology: Understanding the Life Cycle of Butterflies via Augmented Reality": 1 +"7th Grade Physics: Learning Motion and Force through Real-Life Virtual Simulations": 1 +"2nd Grade English: Mastering Phonics and Sentence Structure using Digital Games": 1 +"6th Grade History: Diving into Medieval Europe with Virtual Reality Castle Tours": 1 +"4th Grade Music: Understanding Melody and Harmony through Piano": 1 +"7th Grade Literature: Decoding Poetry through Digital Interpretation and Creative Writing": 1 +"2nd Grade Physical Education: Improving Agility and Speed through Obstacle Courses and Relay Races": 1 +"Kindergarten Science: Exploring the Wonders of Weather through Interactive Cloud Formations and Rain Cycle": 1 +"10th Grade Mathematics: Applying Calculus in Real-world Problems using Mathematical Software": 1 +"6th Grade Mathematics: Exploring Angles and Triangles through Kite Making": 1 +"4th Grade Science: Understanding the Solar System using Planetarium Apps and Star Charts": 1 +"2nd Grade Geography: Discovering U.S. Landmarks with Virtual Tours and Puzzles": 1 +"9th Grade Physical Education: Balancing and Coordination: Learning through Yoga and Meditation": 1 +"Kindergarten Language Arts: Learning Alphabet and Phonics through Song and Dance": 1 +"3rd Grade Art: Dive into Abstract Art - Creating Paintings with Non-Traditional Materials": 1 +"Exploring the Rainforest Habitat in 2nd Grade Science: Creating Biome Dioramas with Recycled Materials": 1 +"5th Grade Language Arts: Decoding Shakespeare’s Plays using Modern Translations and Role Plays": 1 +"6th Grade Literature: The World of Science Fiction: Reading Comprehension through Group Discussions": 1 +"8th Grade Science: Exploring Aerodynamics - Making and Testing Paper Planes and Gliders": 1 +"6th Grade Geography: Exploring Landforms through Virtual Reality Field Trips": 1 +"4th Grade Biology: Discovering Animal Adaptations using Augmented Reality Apps": 1 +"11th Grade Literature: Poetry Analysis - The Art of Metaphor and Symbolism": 1 +"7th Grade Physical Education: Building Strength and Endurance through Circuit Training": 1 +"2nd Grade Arithmetic: Mastering Addition and Subtraction with the Use of MathBuddy App": 1 +"Kindergarten Social Studies: Learning Community Helpers through Interactive Digital Storytelling": 1 +"3rd Grade Physics: Grasping Light and Shadows: An Exploration through Prism Experiments and Shadow Plays": 1 +"4th Grade Music: Studying Harmonies and Chords with GarageBand": 1 +"Pre-K Science: Introduction to Weather Patterns using Interactive Weather Station Toys": 1 +"10th Grade English: Enhancing Writing Skills Using Grammarly and Interactive Storyboarding Tools.": 1 +"The Evolution and Environmental Impact of Textile Industry: A Detailed Analysis of Natural Dyeing and Organic Cotton Farming": 1 +"5th Grade Mathematics: Deciphering the World of Geometry with Tangrams": 1 +"Second Grade Digital Literacy: Understanding Basic Coding with Scratch Blocks": 1 +"9th Grade History: Unveiling European Middle Ages through Interactive 3D Models": 1 +"2nd Grade Physical Education: Mastering Balance and Coordination with Yoga": 1 +"4th Grade Art: Understanding Colors and Textures through Digital Painting Software": 1 +"7th Grade Biology: Exploring Human Anatomy through 3D Body Mapping": 1 +"Incorporating Interactive E-books in 3rd Grade English: An Adventure with the ’Epic!’ App": 1 +"Preschool Geography: Discovering World Landscapes through Sandbox Topography": 1 +"3rd Grade Craft: Understanding Symmetry and Design with Papercraft and Washi Tape": 1 +"4th Grade Geography: Exploring World Landforms through Virtual Reality Maps": 1 +"6th Grade Art: Discovering Abstract Expressionism with Acrylic Paints and Canvas": 1 +"2nd Grade Astronomy: Grasping the Constellations through Star Gazing and Augmented Reality Apps": 1 +"1st Grade Drama: Delving into Puppetry - The Craft of Making and Manipulating Puppets": 1 +"5th Grade Music: Building Harmony and Tempo Skills with the Piano": 1 +"3rd Grade Biology: Investigating Bird Habitats with Nest Cameras and Geographic Information Systems": 1 +"2nd Grade Environmental Studies: Studying Composting and the Role of Decomposers in Waste Management": 1 +"4th Grade English: Boosting Vocabulary Skills with Interactive Word Games using Educational Software": 1 +"6th Grade Science: Grasping Electricity through Hands-On Circuit Building Experiments": 1 +"2nd Grade Mathematics: Excelling in Addition and Subtraction Using Interactive Math Apps": 1 +"5th Grade Mathematics: Understanding Fractions and Decimals through Cooking Measurements": 1 +"8th Grade Geography: The Impact of Climate Change on World Maps using GIS Technology": 1 +"6th Grade Literature: Enhancing Comprehension Skills through Storyboarding and Role Play": 1 +"2nd Grade Art: Introduction to Shapes and Patterns using Augmented Reality Coloring Books": 1 +"A Virtual Tour of the Human Body: 5th Grade Science Course with VR Headsets and Online Simulations": 1 +"High School Film Studies: The Influence of Special Effects on Modern Cinematic Techniques": 1 +"8th Grade Physics: Exploring Newton’s Laws with DIY Rocket Launch Kits": 1 +"Kindergarten Reading: Boosting Alphabet Recognition with Interactive Tablet Games": 1 +"10th Grade Chemistry: Understanding Chemical Reactions through the History of Photography - Solution 4: Photographic Processing": 1 +"Senior High Economics: The Impact of the Great Depression on Current Economic Policies": 1 +"5th Grade Geometry: Exploring Angles and Shapes through Origami Art": 1 +"4th Grade Literature: Journey through Fantasy Worlds with Interactive Audiobooks": 1 +"Mastering the Concept of Saving and Sharing: A 2nd Grade Social Studies Course": 1 +"Analyzing the Impact of Composting on Vegetable Growth using an Arduino-Based Sensor System in 3rd Grade Life Science": 1 +"Kindergarten Astronomy: A Fun-filled Exploration of the Moon and its Phases using Mobile Planetarium": 1 +"4th Grade Instrumental Music: An Exciting Start with the Piano": 1 +"1st Grade Math: Discovering the World of Fractions with Colorful Lego Blocks": 1 +"8th Grade Fine Arts: Acrylic Painting Techniques with Palette Knife and Modeling Paste": 1 +"5th Grade Visual Arts: Experimenting with Charcoal Drawing: Understanding Shading and Perspective": 1 +"3rd Grade Grammar: Diving into the World of Nouns and Pronouns with Interactive Storytelling and iPad Apps": 1 +"5th Grade Geometry: Exploring Shapes and Angles with Interactive 3D Models": 1 +"2nd Grade Reading: Improving Word Recognition and Comprehension through Animated Stories": 1 +"8th Grade Physics: Understanding Gravity and Forces with Virtual Experiments": 1 +"3rd Grade Social Studies: Exploring Cultural Diversity in our Neighborhood": 1 +"7th Grade English: Developing Storytelling Skills through Digital Comic Creation": 1 +"2nd Grade Science: Discovering Animal Habitats with Interactive Digital Zoo Tours": 1 +"5th Grade Health Education: Learning about Nutritional Values through Interactive Food Pyramids": 1 +"3rd Grade Art: Creating Digital Paintings using Tablet and Stylus": 1 +"6th Grade Geography: Studying Earthquakes and Volcanoes using Virtual Reality": 1 +"4th Grade Music: Exploring Rhythm and Tempo with Digital Drum Sets": 1 +"7th Grade History: Evaluating the Influence of the Gutenberg Press on Medieval Europe": 1 +"5th Grade Social Studies: Deciphering the Significance of Cave Paintings in Early Human Civilizations": 1 +"4th Grade Mathematics: Mastering Multiplication and Division through Interactive Digital Games": 1 +"10th Grade History: Exploring Ancient Rome with Augmented Reality Gladiator Battles": 1 +"12th Grade Physical Education: Strength Building Using Rowing Machine Simulations.": 1 +"1st Grade Social Studies: Discovering Our Neighborhood with Interactive Map Activities": 1 +"Sixth Grade Social Studies: Understanding World Geography Through Virtual Field Trips": 1 +"3rd Grade Language Arts: Creating Fairy Tales with Digital Storytelling Tools.": 1 +"7th Grade Technology: Introduction to Video Editing with Adobe Premiere Pro": 1 +"2nd Grade Physical Education: Basics of Football in Group Activities.": 1 +"3rd Grade Geography: Exploring Maps and Globes using Augmented Reality Apps": 1 +"7th Grade Physics: Understanding the Magic of Magnets with Interactive 3D Models": 1 +"Kindergarten Life Science: Discovering Plant Life Cycles through Time-Lapse Photography and Interactive Apps": 1 +"5th Grade Visual Arts: Sculpting with Virtual Reality: A Journey into 3D Design": 1 +"10th Grade Computer Science: Programming with Python: Game Development using Pygame ": 1 +"8th Grade Literature: Decoding Symbolism in Classic Novels using Interactive eBook Annotations": 1 +"7th Grade Math: Mastering Geometry through 3D Printing and CAD Software": 1 +"9th Grade Physical Science: Exploring the Universe with Virtual Reality and Stellarium": 1 +"Calisthenics and Bodyweight Training: A Comprehensive 6th Grade Physical Education Course with Strava Integration": 1 +"3rd Grade Spelling: Enhancing Vocabulary through Virtual Word Games and Spelling Apps": 1 +"7th Grade Biology: Exploring Human Anatomy with Augmented Reality ": 1 +"2nd Grade Space Exploration: Understanding Comets and Asteroids Using Planetarium Software ": 1 +"9th Grade World History: Examining Ancient Civilizations through Virtual Reality Tours ": 1 +"Kindergarten Botany: Learning About Garden Insects and Their Role in Ecosystems using Nature Observation Kits ": 1 +"6th Grade Environmental Studies: Exploring Oceanic Ecosystems Using Virtual Diving Technology ": 1 +"Second Grade Astronomy: Journey Through the Milky Way with Virtual Planetarium Software ": 1 +"4th Grade Literature: Discovering Classic Fairy Tales Through Interactive E-books": 1 +"5th Grade Social Studies: Understanding Native American Cultures Through Virtual Reality Field Trips ": 1 +"3rd Grade Math: Mastering Multiplication Tables Through Interactive Online Games ": 1 +"2nd Grade Biology: Understanding the Life Cycle of Butterflies through DIY Caterpillar Kits": 1 +"6th Grade Mathematics: Exploring Fractions with Cooking and Baking": 1 +"3rd Grade Science: Discovering the Solar System through DIY Planetariums and Virtual Reality ": 1 +"4th Grade Science: Anatomy of a Flower - A Detailed Examination with 3D Imaging Technology": 1 +"1st Grade Math: Learning Addition and Subtraction with Animated Stories": 1 +"8th Grade Music: Dive into Jazz History with Saxophone Lessons": 1 +"4th Grade Science: Dive into the Animal Kingdom with Virtual Zoo Tours": 1 +"10th Grade Music: Discovering the Roots of Rock Music with Guitar": 1 +"3rd Grade History: Native American Tribes, Pottery Making and the Evolution of Corn Farming": 1 +"8th Grade Music: Mastering Rhythm and Beats using GarageBand Software": 1 +"4th Grade Social Studies: Ancient Egypt and the Importance of Hieroglyphs": 1 +"8th Grade Music: Exploring Mozart’s Magic Flute through Digital Composition and Rhythm Variations": 1 +"7th Grade History: Unraveling Medieval Europe through Illuminated Manuscripts and the Significance of Heraldry": 1 +"Digital Citizenship in Action: Understanding Cybersecurity in 5th Grade Technology Studies": 1 +"10th Grade English: Unpacking Hemingway’s Style using R Language and Text Mining for Thematic Exploration": 1 +"4th Grade Social Studies: Currency Evolution, Barter System, and its Impact on Early Societies": 1 +"8th Grade Earth Science: The Mysteries of Volcanoes - Magma Chambers and Pyroclastic Flow": 1 +"3rd Grade English: Enhancing Vocabulary Acquisition through Interactive E-books": 1 +"2nd Grade Science: Exploring Animal Habitats using Augmented Reality and Interactive Models": 1 +"7th Grade Art: A Journey into Watercolor Painting Techniques": 1 +"2nd Grade Math: Learning Number Patterns and Sequences through Gamification Apps": 1 +"4th Grade Literature: Exploring Mythology through Interactive Storytelling and Drama": 1 +"6th Grade Physics: Learning Basic Concepts of Force and Motion with Hands-On Experiments": 1 +"6th Grade Poetry: Unleashing Imagination and Expression through Haiku and Sonnet Writing Workshops": 1 +"8th Grade Civics: The American Civil War - Emergence of Modern Warfare Techniques": 1 +"12th Grade Biology: Exploring Genetics - From Mendel’s Peas to Modern DNA Sequencing": 1 +"Kindergarten Earth Science: Discovering Weather Patterns with Interactive Models and Weather Stations": 1 +"4th Grade World Cultures: Understanding Cultural Diversity through Virtual Reality Tours": 1 +"10th Grade Digital Arts: Sound Design Basics in Ableton Live and Pro Tools": 1 +"2nd Grade Life Science: Understanding Animal Habitats through Sensory Exploration": 1 +"7th Grade Health and Wellness: Understanding Nutrition and Fitness: Exploring the Food Pyramid and Yoga Exercises": 1 +"7th Grade Geometry: Exploring Shapes and Symmetry through Origami Art ": 1 +"4th Grade Science: Understanding Ecosystems using Minecraft and Augmented Reality ": 1 +"8th Grade History: Tracing Civilizations using Google Earth and Virtual Reality ": 1 +"3rd Grade Math: Mastering Multiplication with Virtual Flashcards and Interactive Games ": 1 +"5th Grade Physical Education: Basic Gymnastics - Learning Somersaults and Cartwheels ": 1 +"6th Grade Computer Science: Introduction to Coding with Scratch and Python ": 1 +"1st Grade Science: Discovering the Solar System through Interactive 3D Models ": 1 +"2nd Grade Music: Developing Rhythm Skills with Hand Drums and Rhythm Blocks ": 1 +"7th Grade Language Arts: Poetry and Prose - Enhancing Writing Skills using Storybird ": 1 +"4th Grade Social Studies: Understanding Democracy through Role-Playing and Simulation Games": 1 +"3rd Grade Geography: Exploring Continents and Oceans through Interactive Globe Studies": 1 +"7th Grade Physics: Understanding the Concept of Gravity through Balloon Experiments": 1 +"2nd Grade Art: Introduction to Basic Shapes and Patterns through Paper Collages": 1 +"6th Grade Literature: Analyzing the Theme of Friendship in The Adventures of Tom Sawyer": 1 +"4th Grade History: The Impact of Railroads on the Expansion of the American West": 1 +"1st Grade Music: Exploring Rhythm and Melody through Percussion Instruments": 1 +"5th Grade Environmental Studies: The Importance of Composting and its Effect on Plant Growth": 1 +"8th Grade Math: The Application of Algebra in Solving Real-world Problems": 1 +"7th Grade Biology: The Function and Structure of the Human Heart through Augmented Reality Models": 1 +"3rd Grade Language Arts: Improving Vocabulary through Storytelling and Word Games": 1 +"11th Grade Biology: Exploring Genomics and its Role in Personalized Medicine": 1 +"11th Grade Economics: The Blockchain Revolution and Its Influence on Global Trade using Virtual Reality": 1 +"2nd Grade Art: Crafting Winter Sceneries with Acrylic Paints using Fan Brushes, Palette Knives, and the Dry Brush Technique": 1 +"2nd Grade Music: Exploring Rhythm with Maracas and Digital Audio Workstations": 1 +"3rd Grade Art: Understanding Shape and Form through Collage Making": 1 +"10th Grade Literature: Deepening Comprehension of Poetry Genres through Podcasts": 1 +"2nd Grade Physical Education: Joy in Group Activities - Grasping Basketball with Dribbling Exercises": 1 +"4th Grade History: Grasping Renaissance Period through Interactive Storytelling and Theatrical Performances": 1 +"4th Grade Social Studies: The Ancient Kingdoms of Africa using Virtual Reality Tours": 1 +"5th Grade History: The Age of Industrialization - The Significance of the Steam Engine and the Spinning Jenny": 1 +"4th Grade Mathematics: Understanding Fractions and Decimals through Pizza Making and Python Coding": 1 +"7th Grade Music: Exploring Melodies and Harmonies with GarageBand Digital Audio Workstation": 1 +"4th Grade English: Adventure into Myths and Legends through Virtual Reality Storytelling": 1 +"6th Grade American History: Journey Into the Civil War Era using the Mission US Interactive Game": 1 +"Fourth Grade Science: Engaging with Physics through Balloon Rocket Experiments": 1 +"6th Grade Geography: A Deep Dive into Urban Planning: The Importance of Public Transport Systems": 1 +"Understanding the Role of Composting in the Life Cycle of Gardens: Utilizing Drone Imaging in 1st Grade Environmental Studies": 1 +"Algebra Basics: Linear Equations and their Real-world Application in Game Design with Unity Software": 1 +"2nd Grade English: Discovering Fairytales from Around the World with Interactive Audiobooks": 1 +"7th Grade Social Studies: The Influence of the Printing Press in the Evolution of Education and Information Dissemination.": 1 +"10th Grade Biology: Investigating Genetic Engineering through CRISPR and Gel Electrophoresis Experiments": 1 +"5th Grade Geography: Understanding Global Climate Patterns using Interactive Weather Maps": 1 +"1st Grade Math: Exploring Number Patterns and Sequences with Digital Tools": 1 +"11th Grade English: Evaluating the Influence of Social Media on Modern Literature": 1 +"7th Grade Technology: Comprehending the Basics of Coding through Game Design": 1 +"Kindergarten Science: Discovering Animal Habitats through Virtual Reality Expeditions": 1 +"3rd Grade Art: Developing Color Theory Understanding through Mixed Media Projects": 1 +"10th Grade Music: Analyzing Beethoven’s Sonatas through Music Production Software": 1 +"8th Grade Social Studies: Examining Economic Systems through the Lens of Cryptocurrency": 1 +"6th Grade Science: Exploring Space and Astronomy through Telescope Observation and Star Mapping": 1 +"7th Grade Music: Understanding Rhythm through Drum Circle Participation and Beat-Matching Technologies": 1 +"8th Grade Biology: Unveiling the Human Genome through DNA Extraction Experiments and 3D Protein Modeling": 1 +"4th Grade Geography: Navigating the World with Google Earth and Satellite Imagery Analysis": 1 +"5th Grade Mathematics: Discovering Geometry through Origami and 3D Printed Models": 1 +"Kindergarten Science: Introduction to the Solar System through Planetarium Visits and Interactive Mobile Apps": 1 +"9th Grade Physical Education: Mastering the Basics of Volleyball and Teamwork Strategies": 1 +"6th Grade Art: Exploring Pottery through Hands-On Clay Work and Kiln Techniques": 1 +"2nd Grade Language Arts: Learning Vocabulary through Storytelling and Interactive Word Games": 1 +"11th Grade Physics: Applying Newton’s Laws in Roller Coaster Design using Physics Simulation Software": 1 +"Environmental Science in 8th Grade: Investigating Climate Change through Ice Core Sampling and Data Analysis": 1 +"3rd Grade Mathematics: Learning Addition and Subtraction with Mathseeds and Prodigy": 1 +"5th Grade Chemistry: Understanding States of Matter through Hands-on Experiments": 1 +"10th Grade History: The Impact of The Industrial Revolution on Early American Society": 1 +"7th Grade Geography: Exploring the Geographical Diversity of Africa through Virtual Reality ": 1 +"5th Grade History: Discovering the Civilizations of Ancient Egypt with Interactive 3D Models": 1 +"Mayan Civilization Study: Utilizing Drone Photography for Investigating Ancient Pyramids": 1 +"8th Grade History: The Evolution of Republic in Ancient Rome": 1 +"4th Grade Social Studies: Sustainable Energy and its Importance in Today’s World": 1 +"1st Grade Social Studies: An Introduction to Community Helpers and their Roles": 1 +"Incorporating Virtual Reality in Google Classroom for Sixth Grade Geography: Understanding Earth’s Climate Zones through Immersive Experiences": 1 +"11th Grade Economics: Understanding Market Dynamics in the Digital Age": 1 +"2nd Grade Art: Creating Colorful Masterpieces with Digital Painting Applications": 1 +"Exploring Quantum Mechanics: An 8th Grade Physics Course on Particle-Wave Duality and Its Real-world Implications": 1 +"8th Grade Geography: The Industrial Revolution: A Detailed Study of Urbanization and Its Effects": 1 +"5th Grade Art: Decoding Picasso’s Cubism through Digital Drawing and Image Manipulation Techniques": 1 +"7th Grade Music: Unraveling Mozart’s Operas through Choral Singing and Score Analysis": 1 +"2nd Grade Science: Introducing the Solar System through Virtual Reality": 1 +"10th Grade Literature: The Power of Metaphors in the Civil Rights Movement Poetry": 1 +"5th Grade Geography: Virtual Tour of Historic Landmarks Using Virtual Reality": 1 +"7th Grade Physical Education: Enhancing Coordination and Balance through Virtual Sports Activities": 1 +"Health Education for 3rd Graders: Understanding the Food Pyramid through Interactive Models": 1 +"Learning Geometry in 5th Grade Math through Creative Origami Projects": 1 +"6th Grade English: Improving Comprehension Skills through Animated Audiobooks and Digital Flashcards": 1 +"1st Grade Math: Developing Counting Skills with Fun Number Songs and Games": 1 +"5th Grade Math: Understanding Multiplication and Division Using Virtual Manipulatives": 1 +"3rd Grade Geography: Exploring World Continents with Augmented Reality Tools": 1 +"1st Grade Art: Understanding Shapes and Patterns through Paper Collage and Mosaic Art": 1 +"6th Grade Math: Mastering Ratios and Proportions with Online Quizzes and Games": 1 +"7th Grade Science: Experimenting with Newton’s Laws using DIY Physics Kits": 1 +"The Revolutionary War: Exploring Key Battles in 5th Grade American History.": 1 +"3rd Grade Biology: Exploring Plant Life Cycles through Time-Lapse Photography and Interactive Apps": 1 +"6th Grade English: Understanding Poetry Structures with Rhyme Pattern Analysis and Lyric Writing": 1 +"2nd Grade Mathematics: Introduction to Geometry using Tangram Puzzles and Virtual Reality Tools": 1 +"5th Grade History: The Age of Exploration - Comparing the Voyages of Christopher Columbus and Ferdinand Magellan": 1 +"1st Grade Music: Learning Basic Musical Notes through Interactive Piano Apps and Songs": 1 +"3rd Grade Geography: Studying Landforms and Water bodies via Interactive 3D Models and Google Earth": 1 +"4th Grade Science: The Mystery of Electricity - Experimenting with Simple Circuits and Light Bulbs": 1 +"2nd Grade Art: Exploring Pottery Making: Clay Modelling and Virtual Pottery Apps": 1 +"1st Grade French: Building Vocabulary through Interactive Flashcards and Duolingo Games": 1 +"5th Grade Literature: Analyzing Plot Development and Setting in Classic Novels through Interactive Ebooks": 1 +"8th Grade Science: Utilizing Virtual Reality to Explore Human Anatomy": 1 +"6th Grade Literature: Exploring Themes of Friendship in Harry Potter": 1 +"2nd Grade Arts: Understanding Japanese Culture through Origami Making": 1 +"10th Grade Physics: Examining the Contributions of Isaac Newton in the Field of Mechanics": 1 +"8th Grade Music: Understanding Melodies and Harmonies with a Digital Piano": 1 +"7th Grade: Learning about African Geography through Virtual Field Trips": 1 +"5th Grade Physical Education: Enhancing Basketball Techniques with Agility Ladder Drills": 1 +"10th Grade World History: The Renaissance and the Explosion of Artistic Innovation": 1 +"8th Grade Music: Mastering Treble Clef Notes: Interpretation of Symphony with an App": 1 +"5th Grade Social Studies: The Invention of the Telephone and its Impact on Global Communication": 1 +"3rd Grade Science: Discovering Photosynthesis Basics through Leaf Experiments": 1 +"1st Grade Art: Creating Imaginative Worlds with Virtual Reality and Tilt Brush": 1 +"6th Grade Earth Science: Understanding Weather Patterns Through Cloud Observation and Rain Gauge Use": 1 +"Pre-school Physical Education: Engaging with Basic Gymnastics Movements Using Colourful Mats": 1 +"2nd Grade Mathematics: Learning Multiplication and Division through Interactive Lego Blocks": 1 +"8th Grade History: Deciphering the Mysteries of Egyptian Pyramids through the Study of Ancient Papyrus Scrolls": 1 +"7th Grade Music: Exploring the Evolution of Jazz Music with a Focus on Saxophone and the Emergence of Improvisation in Louis Armstrong’s Works Using the Principle of Rhythm": 1 +"3rd Grade Introduction to Geometry: Understanding Shape Symmetry using Tangram Puzzles": 1 +"6th Grade Astronomy: The Renaissance: The Impact of the Astrolabe": 1 +"5th Grade Social Studies: Noteworthy Leaders in European History: An In-Depth Exploration of the Industrial Revolution": 1 +"5th Grade Science: Exploring Plant Life Cycle with Digital Microscopy ": 1 +"9th Grade Health: Understanding Nutrition & Digestion through Interactive Body Models ": 1 +"5th Grade Geography: Exploring World Landforms using Virtual Reality ": 1 +"3rd Grade Language Arts: Mastering Sentence Structure with Fun Grammar Games ": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction using Counting Beads ": 1 +"6th Grade English Language Arts: Exploring Classic Literature with Reader’s Theater ": 1 +"3rd Grade Music: Introduction to Melody Creation using GarageBand App ": 1 +"4th Grade Science: Investigating Weather Patterns with Interactive Meteorology Tools ": 1 +"1st Grade Language Arts: Phonics Mastery through Interactive Storytelling ": 1 +"8th Grade Mathematics: Geometry Foundations - Exploring Shapes, Angles, and Symmetry with Digital Sketch Pads": 1 +"6th Grade Math: Understanding Fractions and Decimals Through Real-World Applications": 1 +"8th Grade Science: Exploring Climate Change and Its Effects on Ecosystems using Virtual Reality Simulations": 1 +"4th Grade History: The Impact of Rosa Parks and Her Role in the Civil Rights Movement": 1 +"12th Grade Physics: Examining Quantum Mechanics and Particle Physics through Laboratory Experiments": 1 +"Rocket Science for Teens: Grasping Lift and Weight using DIY Gliders, Archimedes’ Principle and Newton’s Second Law": 1 +"10th Grade Literature: Delving into Orwell’s 1984: The Use of Dystopia and Allegory": 1 +"7th Grade Geometry: Grasping Angles and Polygons through Origami and Tessellations": 1 +"5th Grade Music: Experiencing Tempo and Beat with Virtual Piano and Music Production Software": 1 +"11th Grade History: The Revolutionary War: An In-depth Study of Patriots’ Letters": 1 +"7th Grade English Language Arts: Boosting Poetry Writing Skills with Metaphors, Rhyme, and Rhythm": 1 +"3rd Grade Literature: Enhancing Storytelling Skills with Puppet Theater": 1 +"2nd Grade Geography: Interactive Explorations of the World’s Continents and Oceans": 1 +"8th Grade Math: Understanding Algebra Concepts Through Minecraft and Virtual Reality": 1 +"Preschool Physical Science: Introduction to Magnets and their Attraction Powers": 1 +"3rd Grade Vocabulary: Word Building with Scrabble and Crossword Puzzles": 1 +"5th Grade Biology: Learning about Photosynthesis through Indoor Gardening": 1 +"1st Grade Art: Exploring Shapes and Colors with Playdough Sculptures": 1 +"7th Grade Music: Deciphering Mozart’s Symphonies with String Quartet and Piano": 1 +"6th Grade History: The Civil War - The Role of Railroads and Telegraph Systems": 1 +"4th Grade Physical Education: Understanding the Science of Movement with Dance and Gymnastics": 1 +"9th Grade Physical Education: Exploring Basketball Statistics through Probability and Statistics": 1 +"Fifth Grade History: The Impact of the Silk Road on Ancient Trade": 1 +"3rd Grade Language Arts: Storytelling with Similes and Metaphors": 1 +"1st Grade Earth Sciences: Understanding Weather Patterns through Cloud Observation": 1 +"Advanced 2nd Grade Mathematics: Multiplication Strategies using Arrays and Number Lines": 1 +"Sixth Grade History: The Role of the Nile River in Ancient Egyptian Civilization": 1 +"Kindergarten Environmental Studies: Exploring Wind Energy with Pinwheel Experiments": 1 +"5th Grade History: The Impact of the Wheel on Ancient Civilizations": 1 +"3rd Grade Mathematics: Improving Addition Skills using Virtual Manipulatives": 1 +"6th Grade Music: Exploring Harmony and Tempo through GarageBand and MIDI Keyboards": 1 +"7th Grade History: The Influence of Roman Architecture on Modern Infrastructure: An In-depth Study": 1 +"2nd Grade Environmental Science: The Role of Bees in Flower Pollination and the Ecosystem": 1 +"5th Grade Social Studies: Fundamentals of Democracy, Focusing on the Importance of Voting ": 1 +"3rd Grade Art: Discovering Shapes and Patterns with Clay Sculpting": 1 +"2nd Grade English: Introduction to Poetry with Rhyming Words and Rhythmic Patterns": 1 +"10th Grade Music: The Journey of Jazz Music and the Significance of Improvisation": 1 +"7th Grade Social Studies: Exploring Diverse Societies through Virtual Reality": 1 +"9th Grade History: The Industrial Revolution: Highlighting the Introduction of Railways": 1 +"5th Grade Language Arts: Unfolding Plot Twists through Creative Writing": 1 +"7th Grade Science: The Age of Discovery: The Development of the Telescope and the Compass": 1 +"5th Grade Biology: Understanding Animal Behavior with Virtual Reality": 1 +"9th Grade Music: The Development of Jazz - The Saxophone and the Impact of the Piano": 1 +"Studying the Application of Archimedes’ Principles in the Construction of Pyramids: A 7th Grade Ancient Egyptian Culture Course": 1 +"5th Grade Technology: The Emergence of Internet and Its Influence on Global Communication": 1 +"2nd Grade Nature Studies: Exploring the Ecosystem of a Pond with Microscopes": 1 +"4th Grade Literature: Discovering Poetic Devices using Interactive Whiteboards": 1 +"5th Grade Mathematics: Navigating Geometry Foundations Using Scientific Calculators": 1 +"7th Grade History: The Significance of the Wheel in Early Civilizations": 1 +"9th Grade Art: Discovering the Impact of Impressionism - Examining Monet’s Artwork and Participatory Sketching": 1 +"8th Grade Science: Understanding Climate Change through Interactive Global Warming Simulations": 1 +"6th Grade Art: Discovering Impressionism through Virtual Painting Tools": 1 +"3rd Grade Mathematics: Multiplication and Division Mastery through Digital Flashcards": 1 +"8th Grade Earth Science: Exploring Tectonic Plate Movements via Interactive 3D Simulations": 1 +"5th Grade Language Arts: Improving Grammar Skills through Online Quizzes in Google Classroom": 1 +"6th Grade Music: Analyzing Beethoven’s Composition Techniques using Music Software": 1 +"5th Grade History: Investigating the Significance of the Printing Press during the Renaissance Era": 1 +"2nd Grade Mathematics: Grasping the concept of Fractions using Pizza Model and Basic Coding": 1 +"4th Grade Social Studies: Understanding Native American History through Augmented Reality": 1 +"10th Grade Physics: Introduction to Newton’s Laws of Motion using Interactive Online Experiments": 1 +"Ancient Roman Architecture: Examining the Use of Arches and Concrete in 7th Grade Civil Engineering Concepts": 1 +"5th Grade Geography: Discovering African Savannahs through Virtual Reality Exploration": 1 +"2nd Grade Physical Education: Introduction to Basic Swimming Techniques Using Floatation Devices": 1 +"9th Grade History: Exploring the Renaissance through Interactive Digital Timelines": 1 +"3rd Grade Language Arts: Enhancing Reading Comprehension through Story Mapping in Google Docs": 1 +"2nd Grade Mathematics: Understanding Addition and Subtraction through Manipulatives using Augmented Reality Apps": 1 +"Kindergarten Art and Sensory Play: Introduction to Finger Painting Using Non-Toxic Washable Paints": 1 +"7th Grade Technology: The Evolution of Telecommunication - The Impact of Mobile Phones in Modern Society": 1 +"5th Grade English: Improving Spelling Skills using Scrabble-based Activities": 1 +"6th Grade Biology: Understanding Photosynthesis using Microscope Lab Experiments": 1 +"1st Grade Health and Safety: Fun Fire Safety Lessons Using Interactive Games and Quizzes": 1 +"5th Grade Geography: Exploring Volcanic Landforms with 3D Mapping Technology": 1 +"2nd Grade Economics: Learning About Savings and Budget through Interactive Games": 1 +"5th Grade Civics: Grasping the Concept of Local Government through Mock Town Council": 1 +"5th Grade English: Writing Futuristic Narratives - Delving into the Realm of Artificial Intelligence": 1 +"3rd Grade Coding: Creating Animated Stories with Scratch Programming and Interactive Role-Play": 1 +"The Impact of Pyramids on Ancient Egyptian Society: A Detailed Study of Egyptian Culture for 5th Graders": 1 +"2nd Grade Math: Mastering Addition and Subtraction with the Use of the Prodigy Math Tool": 1 +"Understanding the Influence of Renaissance Clothing on Modern Fashion: A Comprehensive 8th Grade History Exploration": 1 +"Mozart’s Operas: A 7th Grade Course in String Instruments and Score Interpretation with Introduction to Tempo": 1 +"1st Grade Health: Promoting Healthy Eating Habits with Farm to Table Cooking Projects using Organic Produce": 1 +"6th Grade Mathematics: Geometry and Its Application in Architectural Design": 1 +"2nd Grade Astronomy: Journey to the Moon using Interactive Models": 1 +"7th Grade Music: Understanding the Piano and the Basics of Sheet Music": 1 +"4th Grade Science: Understanding Volcanoes and Seismic Waves: An Exploration through Virtual Reality": 1 +"7th Grade Physics: An Introduction to Electromagnetism and its Everyday Uses": 1 +"7th Grade English Literature: Unraveling Themes in Shakespeare’s Sonnets with Dramatic Performances": 1 +"6th Grade Literature: Interpreting Allegories in Aesop’s Fables through Group Discussion": 1 +"History for 5th Grade: Ancient Egyptian Civilization and the Role of Pulley Systems in Pyramid Construction": 1 +"8th Grade Biology: Evolution and Natural Selection: A Deep Dive into Charles Darwin’s Theory": 1 +"3rd Grade Art: Mastering Shapes and Patterns through Paper Collage and Origami Techniques": 1 +"3rd Grade Mathematics: Exploring Fractions and Decimals with Interactive Tools": 1 +"Kindergarten Science: Understanding Weather Patterns through Fun Experiments": 1 +"6th Grade Art: Sculpting Basics: Using Clay and 3D Printing Techniques": 1 +"5th Grade Geography: Investigating the World’s Biomes using Google Earth ": 1 +"Kindergarten Music: Learning Rhythm and Melody through Handheld Percussion Instruments": 1 +"3rd Grade Social Studies: Looking at Trade and Commerce: The Role of Ports and Harbors": 1 +"9th Grade History: The Industrial Revolution: The Rise of Factory Systems and their Impact on Society": 1 +"8th Grade Physical Education: The Physiology of Sports: Exploring Heart Rate and Stamina": 1 +"Eleventh Grade Music: Songwriting in Logic Pro: A Journey into Melody and Harmony": 1 +"6th Grade Biology: Understanding Botany: Dissecting Plant Anatomy with Microscopic Imaging Techniques": 1 +"5th Grade Art: Exploring Color Theory with Digital Painting Tools": 1 +"2nd Grade Math: Understanding Number Patterns through Interactive Games": 1 +"11th Grade Biology: Investigating the Role of DNA in Evolution and Heredity": 1 +"7th Grade English: Enhancing Vocabulary through Creative Writing Techniques": 1 +"3rd Grade Geography: Global Weather Patterns and the Importance of Weather Stations": 1 +"6th Grade History: Assessing the Impact of the Industrial Revolution on Modern Society": 1 +"9th Grade Physics: The Role of Gravity in Planetary Motion and Space Exploration": 1 +"1st Grade Reading: Developing Phonics Skills using Interactive eBooks": 1 +"Kindergarten Math: Grasping Basic Counting with Fun Number Puzzles": 1 +"4th Grade Social Studies: Understanding Democracy through Role-playing Activities": 1 +"8th Grade History: Exploring Medieval Castles: Architecture and Society": 1 +"5th Grade PE: Enhancing Balance and Stamina through Yoga and Heart Rate Monitors": 1 +"7th Grade Art: The Impact of Cubism on Modern Art Movements": 1 +"10th Grade Health: Understanding Body Systems - The Role of Vitamins and the USDA Database": 1 +"8th Grade History: World War II: Insights from Citizen’s Letters": 1 +"2nd Grade Earth Science: Discovering Local Insect Life through Microscopes and Nature Journals": 1 +"Investigating Rainforests through 3D Imaging: A 5th Grade Biology Course Using Microsoft HoloLens": 1 +"3rd Grade Geography: Examining Rivers with Topographic Maps and Satellite Data": 1 +"10th Grade Physical Education: Developing Speed and Reflexes through Soccer Drills": 1 +"6th Grade Physical Education: Mastering the Basics of Tennis using Virtual Reality": 1 +"6th Grade Science: Discovering the Solar System through Augmented Reality": 1 +"4th Grade Math: Mastering Multiplication with Number Line Activities and Flashcards": 1 +"8th Grade History: Unraveling the Mysteries of the Renaissance through Interactive Timelines": 1 +"5th Grade English: Delving into Fantasy Literature in the Context of Mythology": 1 +"7th Grade Art: Exploring Perspectives and Shadows in Sketching": 1 +"9th Grade Mathematics: Understanding Geometry through 3D Models and Online Simulations": 1 +"3rd Grade Science: Introduction to Plant Life Cycles through Hands-On Gardening": 1 +"4th Grade English: Building Language Skills through Storytelling and Drama": 1 +"6th Grade Social Studies: Investigating the Impact of Railroads in the Expansion of the United States": 1 +"5th Grade Art: Experimenting with Texture in Clay Sculpting.": 1 +"4th Grade Science: Plant Photosynthesis & Carbon Cycle Explored Through Interactive Labs": 1 +"6th Grade English: Exploring Metaphors in Shakespeare’s Plays using Drama and Group Discussion": 1 +"8th Grade History: The French Revolution and Its Influence on Modern Democracy: An Interactive Study": 1 +"5th Grade Mathematics: Mastering Decimals and Fractions with Math Fun App": 1 +"7th Grade Geography: Understanding Climate Zones and Their Impact on Human Civilization ": 1 +"2nd Grade English: Building Vocabulary and Sentence Construction with Word Building Games": 1 +"8th Grade Physical Education: The Role of Safety Gears in Skateboarding": 1 +"3rd Grade Social Studies: Native American Tribes: Understanding their Culture and Traditions through Storytelling": 1 +"4th Grade Environmental Studies: Exploring Renewable Energy Sources through Solar Panel and Windmill Models": 1 +"12th Grade History: The Impact of the Transcontinental Railroad on American Expansion - A Comprehensive Study": 1 +"3rd Grade Reading: Improving Comprehension through Interactive Storytelling Apps": 1 +"5th Grade Physical Education: Understanding Sportsmanship and Teamwork through Structured Games": 1 +"1st Grade Art: Exploring Colors and Shapes with Digital Drawing Tools": 1 +"8th Grade Physics: Introduction to Laws of Motion through Interactive Simulations": 1 +"6th Grade Coding: Learning Basic Programming with Scratch": 1 +"9th Grade Chemistry: Understanding the Periodic Table through Interactive Experiments": 1 +"5th Grade Geography: Discovering World Cultures through Virtual Field Trips": 1 +"2nd Grade Health: Developing Good Hygiene Habits through Interactive Videos": 1 +"7th Grade Mathematics: Geometry - Understanding Shapes and Angles with Virtual Models": 1 +"10th Grade Literature: Analyzing Themes in Classic Novels through Case Studies": 1 +"7th Grade Biology: Understanding Cell Structure through Microscopic Explorations": 1 +"2nd Grade Art: Abstract Expressionism and Color Theory - A Focus on Watercolors": 1 +"5th Grade History: Experiencing the American Civil War through Virtual Reality": 1 +"8th Grade Mathematics: Understanding Quadratic Equations through Interactive Digital Worksheets": 1 +"1st Grade Geography: Discovering the World’s Continents and Oceans through Interactive Maps": 1 +"3rd Grade Music: Exploring Rhythm and Melody using Handheld Percussion Instruments": 1 +"4th Grade Science: Introduction to Weather Systems - Cloud Types, Rain Cycles, and Weather Vanes": 1 +"6th Grade Language Arts: Enhancing Creative Writing Skills with Digital Storytelling Platforms": 1 +"9th Grade Physical Education: Basic Gymnastics - Tumbling and Balance Beam Techniques": 1 +"2nd Grade Environmental Studies: Discovering Local Bird Species with Field Trips and Bird Watching Binoculars": 1 +"6th Grade Geography: Navigating World Maps and Global Landscapes with Google Earth": 1 +"1st Grade Math: Engaging with Addition and Subtraction through the Fun Math Game on iPads": 1 +"10th Grade Literature: Exploring Themes and Characters in Classical Novels through Audible Audiobooks": 1 +"5th Grade Art: Understanding Colors and Textures through Collage Making with Recycled Materials": 1 +"3rd Grade Biology: Discovering the Life Cycle of Butterflies using Interactive Science Apps": 1 +"7th Grade Physics: Learning about Gravity through Rocket Launch Experiments": 1 +"4th Grade Geography: Uncovering Ancient Civilizations through Virtual Reality Tours": 1 +"9th Grade Computer Science: Introduction to Coding with Scratch and Python": 1 +"2nd Grade English: Developing Reading Skills through Interactive Storytelling Apps": 1 +"5th Grade Music: Learning about Melody and Tempo through GarageBand Workshops": 1 +"4th Grade Science: Exploring Ecosystems and Habitats through Augmented Reality": 1 +"The Influence of Women in the Civil Rights Movement: A 7th Grade History Course": 1 +"1st Grade Music: Discovering Melody and Pitch with a Glockenspiel and Music Blocks": 1 +"6th Grade Geography: Navigating Through the World’s Oceans with Virtual Expeditions": 1 +"7th Grade Music: The Impact of the Violin and Fugal Themes in Baroque Music": 1 +"3rd Grade Mathematics: Fun Addition and Subtraction Learning with Play-Doh, Jigsaw Puzzles, and Interactive Google Slides": 1 +"5th Grade History: Adventure Through Ancient Greece with Virtual Reality and Mythology": 1 +"4th Grade Science: Investigating the Solar System through Telescope Observations": 1 +"7th Grade Health Education: Exploring the Effects of Exercise on Our Bodies using Virtual Reality": 1 +"2nd Grade Science: Discovering Plant Life Cycles using Interactive Botany Apps": 1 +"5th Grade Geography: The Amazon Rainforest - Examining Ecosystems and Wildlife Conservation": 1 +"4th Grade Math: Everyday Applications - Understanding Grocery Shopping and Budgeting": 1 +"5th Grade Digital Arts: Mastering Animation with Adobe Animate and Digital Storytelling": 1 +"3rd Grade History: Journeying Through Ancient Egypt - The Construction of Pyramids": 1 +"1st Grade Environmental Studies: The Magic of Composting and its Impact on Garden Life": 1 +"2nd Grade Music: Discovering Melody with Recorders": 1 +"Kindergarten Science: Exploring Shapes and Patterns: Interactive Learning with Tangram Puzzles": 1 +"3rd Grade Astronomy: Navigating the Night Sky with Star Maps": 1 +"1st Grade Fine Arts: Exploring Emotion through Finger Painting": 1 +"7th Grade Literature: Developing Interpretative Skills through Classic Poetry Analysis": 1 +"6th Grade Geography: Unearth Earth’s Landforms: Exploring Topography with Google Maps and Virtual Reality": 1 +"2nd Grade Mathematics: Making Sense of Money: Hands-on Learning with Real and Digital Currency": 1 +"9th Grade Literature: Investigating Shakespeare’s Plays using Interactive E-books and Theater Performance Analysis": 1 +"5th Grade Biology: Dive into the Ocean: Discovering Marine Life with Virtual Aquariums and Microscopy": 1 +"6th Grade History: World War II: Understanding the Impact Using Augmented Reality and Documentaries": 1 +"4th Grade Science: The Magic of Magnetism: Learning with Fun Experiments and Interactive Models": 1 +"7th Grade Art: Exploring Renaissance Art: A Journey with Virtual Gallery Tours and Artistic Technique Analysis": 1 +"3rd Grade Language Arts: Fun with Phonics: Learning Sounds and Letters with Interactive Websites and Games ": 1 +"8th Grade Physics: Discovering Newton’s Laws using LEGO Robotics and Real-world Problem Solving": 1 +"1st Grade Astronomy: My First Trip to the Moon: Learning Lunar Phases with 3D Models and Augmented Reality Apps": 1 +"4th Grade Geography: Exploring World Cultures with Google Earth and Interactive Maps": 1 +"8th Grade Art: Learning Digital Drawing with Procreate, iPads, and Apple Pencil in Contemporary Art ": 1 +"Protein and Hydration: An In-depth Look at Nutritional Requirements using MyFitnessPal for 10th Grade Physical Education": 1 +"1st Grade Language Arts: Enhancing Vocabulary Skills using Flashcards and Fun Games ": 1 +"3rd Grade Science: Unveiling the Secrets of Plant Photosynthesis": 1 +"7th Grade Mathematics: Understanding Geometry and Angles through Real-Life Applications ": 1 +"4th Grade Physical Education: Mastering Soccer Skills With Ball Control Techniques": 1 +"5th Grade Physical Education: Improving Dance Moves Using Augmented Reality Technology ": 1 +"8th Grade Music: Decoding the Language of Music Theory using the Guitar, MuseScore Software, and an Interactive Whiteboard ": 1 +"6th Grade Language Arts: Delving into the Realm of Non-Fiction with Audio Books": 1 +"4th Grade Earth Science: Uncovering Fossils and Dinosaurs through Excavation Simulations": 1 +"3rd Grade Art: Exploring Shapes and Colors through Paper Collage": 1 +"7th Grade English Language: Enhancing Grammar and Vocabulary Using Duolingo and Google Classroom": 1 +"2nd Grade Elementary: Mastering Addition and Subtraction with Counting Beads and Digital Games": 1 +"6th Grade History: The Rise of Democracy and Its Influence on Modern Governments": 1 +"Understanding 10th Grade Trigonometry: Applying Sine, Cosine, and Tangent in Practical Settings": 1 +"Exploring 2nd Grade Science: Learning Weather Patterns and Seasons through Interactive Models": 1 +"4th Grade World Cultures: Discovering Global Cuisine and Food Traditions through Virtual Cooking Lessons": 1 +"6th Grade Physics: Understanding Gravity and Friction with Real-world Experiments": 1 +"1st Grade Reading: Mastering Phonics with Interactive Storybooks and Audio Recordings.": 1 +"4th Grade Science: Exploring Solar System through Virtual Reality": 1 +"6th Grade Biology: Understanding Plant Life Cycle with Time-Lapse Videography": 1 +"2nd Grade Mathematics: Boosting Number Sense with Interactive Digital Games": 1 +"8th Grade Geography: Mapping the World’s Biomes with Geographic Information System (GIS) Technology": 1 +"3rd Grade Music: Exploring Rhythm and Melody with Digital Drum Pads": 1 +"9th Grade Physics: Applying Newton’s Laws in Virtual Reality Simulations": 1 +"1st Grade Art: Learning Shapes and Colors with Augmented Reality Coloring Books": 1 +"5th Grade Health: Understanding Nutrition through Interactive Food Pyramid Software": 1 +"7th Grade Literature: Deciphering Symbolism in Classic Poetry with Digital Annotation Tools": 1 +"6th Grade Social Studies: Investigating Ancient Roman Architecture with 3D Modeling": 1 +"5th Grade History: Exploring the Civil War through Virtual Reality Experiences": 1 +"Advanced Poetry: Utilizing Metaphors and Similes in 10th Grade Literature": 1 +"Integrating Virtual Reality into Historical Site Tours for 4th Grade Social Studies": 1 +"1st Grade Math: Boosting Number Recognition with Interactive Puzzle Games": 1 +"6th Grade Art: Learning Proportion and Perspective through Clay Modeling and Digital Illustration": 1 +"Understanding 5th Grade Nutrition: Comparing Vegetarian Diets and Carnivorous Diets ": 1 +"8th Grade Technology: Exploring Web Design Basics and App Development with Python": 1 +"Mastering Soccer Techniques through the Science of Ball Spin: An 8th Grade Physical Education Course": 1 +"Exploring Parallel Universes in Doctor Who: A 6th Grade Science Course Using Quantum Mechanics": 1 +"5th Grade Geography: Understanding Climatic Zones and Weather Patterns in the World’s Biomes": 1 +"Intro to 1st Grade Science: Exploring Weather Patterns through DIY Barometers": 1 +"5th Grade History: The Role of the Printing Press in the Renaissance Era": 1 +"8th Grade Physics: Understanding Gravity through Homemade Pendulum Experiments": 1 +"4th Grade Math: Multiplication Mastery with Grid Paper and Virtual Manipulatives": 1 +"2nd Grade Art: Creating Textures with Salt Painting and Mixed Media": 1 +"3rd Grade Music: Exploring Rhythm through Hand Drums and Metronome App": 1 +"6th Grade Literature: Understanding Metaphors in Poetry using Graphic Organizers": 1 +"7th Grade Geometry: Developing Spatial Reasoning through Origami and CAD Software": 1 +"4th Grade Social Studies: The Impact of the Wheel on Ancient Civilizations": 1 +"5th Grade Science: Investigating Plant Life Cycles with Home Garden Projects": 1 +"7th Grade Geography: Navigating through the Geographical Landscapes of Ancient China": 1 +"10th Grade Political Science: Applying Monopoly Tactics to Understand Market Economy and Global Trade": 1 +"10th Grade Physics: Exploring Space Phenomena with Virtual Reality": 1 +"2nd Grade Art: Understanding Color and Form Basics with Finger Painting, Adobe Fresco, and the Concept of Perspective": 1 +"5th Grade Literature: Engaging with Folklore through Audible’s Interactive Audiobooks and their Influence": 1 +"6th Grade Sports Education: Fundamentals of Basketball: Dribbling and Shooting Techniques": 1 +"4th Grade Violin: Harmonizing Tunes with Interactive Music Games": 1 +"Medieval Architecture: The Role of Flying Buttresses in Gothic Cathedrals": 1 +"9th Grade Music: Exploring Sound Design with FL Studio Synthesizers and Ableton Live for Electronic Music Production: Emphasis on Audio Mixing": 1 +"6th Grade Reading: Improving Comprehension and Writing Skills through Interactive Story Maps and Book Clubs.": 1 +"5th Grade Science: Learning Life Cycles and Ecosystems with Virtual Reality": 1 +"2nd Grade Language Arts: Discovering Story Elements through Interactive Story Apps": 1 +"10th Grade Algebra: Mastering Quadratic Equations with Digital Tools": 1 +"6th Grade Music: Exploring Rhythm and Melody using GarageBand on iPads": 1 +"5th Grade History: Understanding the Civil War through Augmented Reality": 1 +"3rd Grade Art: Paper Mache and Collage: A Journey into Mixed Media Art": 1 +"Kindergarten Music: Learning Beats and Tones through Interactive Musical Instruments": 1 +"4th Grade Science: Grasping the Solar System through Planetarium Visits and Space Apps": 1 +"1st Grade Science: Discovering Plant Life Cycles with Greenhouse Explorations": 1 +"7th Grade Geography: Unraveling the Mystery of Maps using Google Earth and VR Technology": 1 +"7th Grade Geography: Understanding Climate Patterns and Their Impact on Civilization Using Interactive Maps": 1 +"5th Grade Science: Exploring the Solar System through Virtual Reality and 3D Modeling": 1 +"2nd Grade Art: Enhancing Creativity with Digital Drawing and Animation Tools": 1 +"11th Grade French: Mastering Language and Culture through Online Immersion and Collaborative Learning": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction with Interactive Games and Manipulatives": 1 +"6th Grade Physical Education: Learning Soccer Tactics and Formations through Video Analysis and Interactive Software": 1 +"4th Grade English: Crafting Narrative Structures using Storyboard Apps and Hand-crafted Illustrations": 1 +"The Role of Symbols in Poetry: A 9th Grade Literature Course": 1 +"1st Grade English: Building Vocabulary through Interactive Flashcards and Storytelling Apps": 1 +"3rd Grade Mathematics: Grasping Multiplication and Division Concepts with Online Puzzles and Math Games.": 1 +"1st Grade Mathematics: Learning Addition and Subtraction with Colorful Counting Beads ": 1 +"5th Grade History: Unveiling Civil War Stories through Virtual Reality Tours": 1 +"5th Grade English: Exploring Poetry - A Comprehensive Study of Emily Dickinson’s Works": 1 +"8th Grade Science: The Intricate World of DNA and Genetics using 3D Models": 1 +"7th Grade Mathematics: Discovering Trigonometry through the Construction of Sundials": 1 +"2nd Grade English: Engaging in Fairy Tales through Puppet Theatre": 1 +"3rd Grade Science: Exploring the Solar System with Augmented Reality on iPad": 1 +"8th Grade Art: Mastering Portraiture with Digital Drawing Tablets": 1 +"3rd Grade History: Journey Through Ancient Civilizations using Interactive Maps": 1 +"2nd Grade Science: Learning about Animal Habitats through Virtual Zoo Tours": 1 +"9th Grade Chemistry: Exploring Chemical Reactions through DIY Volcano Experiments": 1 +"6th Grade Geology: Understanding Earthquakes and Volcanoes using Virtual Reality and Seismograph Simulations": 1 +"11th Grade Literature: Diving into the World of Edgar Allan Poe with Artificial Intelligence and Symbolism Analysis": 1 +"7th Grade Music: Discovering Jazz Improvisation with GarageBand, MIDI Keyboards and Finale Notation Software": 1 +"6th Grade Geometry: Mastering the Pythagorean Theorem with 3D Models and Interactive Learning Apps": 1 +"11th Grade Music: Decoding Beethoven’s Symphony No. 5 in C minor Using Audacity, Metronome Calibration, and Sound Synthesis": 1 +"The Wonderful Water Cycle: A Detailed Study of Hydrology using Evaporation Models for Second Graders": 1 +"6th Grade English: Enhancing Vocabulary Skills through Interactive Flashcards and Word Games": 1 +"The Influence of the Printing Press on the Renaissance: A Comprehensive 9th Grade Social Studies Unit": 1 +"The Role of the Spinning Jenny in the Industrial Revolution: An Engaging 7th Grade History Course.": 1 +"3rd Grade Science: Understanding Plant Life Cycle through Interactive Apps and Gardening Experiments": 1 +"8th Grade Mathematics: Exploring Geometry using Augmented Reality and 3D Printing Technology": 1 +"4th Grade History: Study of Ancient Civilizations through Interactive Digital Maps and Virtual Reality Tours": 1 +"1st Grade Music: Discovering Rhythm and Melody through Xylophone and Digital Music Software": 1 +"5th Grade Health: Nutrition and Fitness: Understanding the Food Pyramid and Calorie Counting": 1 +"2nd Grade Geography: Discovering Continents and Oceans through Interactive Globe and Augmented Reality": 1 +"Kindergarten Science: Introduction to Weather Patterns through Creative Storytelling and Craft Activities": 1 +"7th Grade Art: Exploring Pottery Making with Hands-on Clay Modelling": 1 +"3rd Grade Environmental Studies: Understanding Waste Management through Recycling and Composting Projects": 1 +"6th Grade English: Creative Writing - Developing Character Arcs using Storyboarding Software": 1 +"3rd Grade Geography: Exploring Landforms Using Google Earth in Classroom Activities": 1 +"7th Grade Mathematics: Understanding the Geometry of Shadows through Sundial Construction": 1 +"1st Grade Art: Discovering Shapes and Colors with Finger Painting and Digital Apps": 1 +"3rd Grade Music: Introduction to Melody through Interactive Musical Games": 1 +"6th Grade Art: Exploring Texture in Clay Sculpting with 3D Printing Software": 1 +"4th Grade Science: Understanding Weather Patterns through the Study of Cloud Formations": 1 +"6th Grade History: The Civil War Era - Significance of the Telegraph in Warfare": 1 +"8th Grade Social Studies: The Structure and Functions of the United Nations in Modern World Politics": 1 +"11th Grade Music: Analysis of Beethoven’s Symphonies through Finale Notation Software and Cubase Program": 1 +"2nd Grade Elementary: Exploration of the Rainforest Ecosystem Using Virtual Reality Tools": 1 +"4th Grade Biology: Understanding Plant Life through Botany Kits and Virtual Labs": 1 +"7th Grade History: The Industrial Revolution: The Rise of the Steam Engine": 1 +"1st Grade Math: Mastering Number Sense with Fun Interactive Games": 1 +"Fifth Grade Geography: Exploring World Cultures Using Virtual Reality": 1 +"6th Grade Art: Exploring Shapes and Colors through Adobe Illustrator’s Tools": 1 +"8th Grade Physical Education: Fundamentals of Basketball Techniques with Cone Drills and Training Hoops": 1 +"5th Grade Science: Discovering Animal Habitats through Interactive Web Quests": 1 +"6th Grade Music: The Evolution of Pop Music in the Digital Era": 1 +"6th Grade Creative Writing: Developing Imaginative Stories with Digital Storytelling Tools": 1 +"3rd Grade’s Guide to Oceanography: Discovering Marine Life through Underwater Photography": 1 +"7th Grade Biology: Understanding Cell Division through Microscopic Observation": 1 +"6th Grade Geography: Exploring World Terrain through Interactive Maps and Virtual Tours": 1 +"4th Grade Literature: Developing Storytelling Skills through Puppet Show Creation": 1 +"3rd Grade Art: Understanding Shapes and Patterns through Origami Folding": 1 +"10th Grade Physics: The Impact of Newton’s Laws on Sports Science": 1 +"2nd Grade Environmental Science: Exploring Marine Life through Aquarium Visits and Specimen Collection": 1 +"5th Grade Mathematics: Introduction to Decimals using Abacus": 1 +"Analyzing Character Development in Harper Lee’s To Kill a Mockingbird with Online Discussion Boards in 8th Grade English": 1 +"9th Grade Music: Utilizing GarageBand Software in the Study of Electronic Music Production": 1 +"1st Grade Science: Incorporating Augmented Reality in Plant Life Cycle Studies": 1 +"Kindergarten Science: Discovering Nature with Interactive Plant Identification App": 1 +"3rd Grade English: Boosting Vocabulary Skills with Quizlet! Online Flashcards ": 1 +"2nd Grade Physical Education: Soccer Basics: Understanding Ball Control Techniques": 1 +"4th Grade Art: Exploring Texture through Clay Modeling on SculptGL Platform": 1 +"5th Grade Geography: Exploring Climate Zones through Virtual Tours on Google Maps ": 1 +"1st Grade Music: Learning Rhythm and Beat through Interactive Drum Sets ": 1 +"11th Grade Physical Education: The Sociology of Sports - Influence of Media and Fandom ": 1 +"2nd Grade Social Studies: Understanding World Cultures with Virtual Museum Tours ": 1 +"8th Grade Math: Investigating Geometric Shapes using 3D Modeling Software ": 1 +"6th Grade Mathematics: Mastering Fractions with Pizza Fraction Fun App and Number Line Strategies": 1 +"7th Grade Geography: Navigating the World through Google Earth and Virtual Field Trips": 1 +"2nd Grade Science: Discovering the Solar System with Interactive Models": 1 +"8th Grade Art: Portraiture in Charcoal: Techniques, Shading, and Digital Enhancements": 1 +"4th Grade Music: Grasping Tempo and Dynamics with Recorders and Digital Music Softwares": 1 +"3rd Grade Introduction to Geometry: Shapes and their Relationships": 1 +"9th Grade Environmental Studies: Biodiversity and Ecosystem Balance: An Introduction to Conservation Efforts": 1 +"7th Grade English Language Arts: Analyzing Symbolism and Irony in Poetry through Podcasts": 1 +"2nd Grade History: Life in the Medieval Times: Interactive Stories of Knights and Castles": 1 +"6th Grade Music: Unraveling Harmony and Counterpoint with Violin and Music Composition Tools": 1 +"4th Grade Social Studies: Indigenous Cultures of North America: Understanding Symbols and Traditions.": 1 +"6th Grade Geography: Navigating the Sahara Desert through Satellite Images and Virtual Reality": 1 +"7th Grade Biology: Discovering Biomes with Plant Adaptations and Food Chain Analysis": 1 +"9th Grade English Literature: Enhancing Poetry Comprehension through Imagery and Alliteration": 1 +"Creating Rhythms: Utilizing Percussion Instruments and Music Software for Rhythm Construction in 4th Grade Music ": 1 +"6th Grade Science: Investigating the Ocean Depths using the James Webb Space Telescope": 1 +"3rd Grade History: Unveiling Medieval Europe through Castle Architecture ": 1 +"3rd Grade Literature: Crafting Adventure Stories with Digital Animation using Computer Graphics": 1 +"1st Grade Language Arts: Improving Spelling with Interactive Online Games": 1 +"6th Grade: Deciphering Cultures - Exploring Modern Societies Using Augmented Reality Technology": 1 +"3rd Grade English: Understanding Plot Structure in Novels with Audiobooks": 1 +"5th Grade Biology: Exploring Plant Life Cycle through Hands-On Garden Projects and Microscope Studies": 1 +"7th Grade Physics: Understanding Gravity through DIY Gravity Wells and Pendulum Experiments": 1 +"6th Grade Literature: Exploring Storytelling in J.K. Rowling’s Harry Potter Series with Kindle Highlighting and Audible": 1 +"10th Grade History: World War II: A Comprehensive Study Through the Use of Propaganda and Radio Broadcasts": 1 +"The Use of MyFitnessPal App and Fitbit in 10th Grade Health Education: A Study on Nutrition and Physical Activity": 1 +"8th Grade Mathematics: Algebra Basics using Interactive Whiteboard and Khan Academy": 1 +"7th Grade English: Crafting Persuasive Speeches using Google Slides and Turnitin": 1 +"5th Grade History: Ancient Egyptians - The Innovation of Papyrus and the Art of Hieroglyphs": 1 +"5th Grade Language Arts: Improving Story Narratives on Chromebooks using Scrivener, Google Classroom, and Quizlet for Collaborative Writing": 1 +"2nd Grade Environmental Studies: Introduction to Composting and Its Benefits to Soil Health": 1 +"7th Grade Music: Understanding Jazz Improvisation Techniques Using Ableton Live and Pro Tools": 1 +"5th Grade History: Delving into the Maya Civilization and their Advanced Calendar System": 1 +"4th Grade English: Discovering Poetry through Mind Mapping Techniques": 1 +"2nd Grade Music: Introduction to Musical Scales and Chords Using a Recorder": 1 +"4th Grade Mathematics: Fun with Fractions: Using Fraction Tiles to Understand Part-Whole Relationships": 1 +"7th Grade Mathematics: Algebra in Practice: Exploring Equations with Interactive Whiteboard Activities": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Virtual Manipulatives & Augmented Reality": 1 +"5th Grade History: The Civil War - Understanding Propaganda and the Role of Newspaper Editorials": 1 +"6th Grade Geography: Exploring Urban Landscapes using GIS Technology & Python Programming": 1 +"5th Grade History: Journey through Medieval Europe with Oculus Rift VR": 1 +"3rd Grade History: Ancient Egyptian Civilization - The Pyramids and Hieroglyphics": 1 +"Algebra in 7th Grade: The World of Linear Equations with Emphasis on Graphing Techniques": 1 +"11th Grade Music: Mastering Harmony in Music Composition using Ableton Live and Sound Design": 1 +"6th Grade Science: Exploring Biodiversity and Conservation through Virtual Field Trips": 1 +"11th Grade Physics: Delving into Electromagnetism using Circuit Simulation Software": 1 +"7th Grade Mathematics: Understanding Geometry with Tangram Puzzles & Geoboard Apps": 1 +"11th Grade Social Studies: The Impact of Nonviolent Protests during the Civil Rights Movement": 1 +"4th Grade Mathematics: Mastering Multiplication Tables through Music and Games": 1 +"10th Grade Biology: Genetics and Evolution with Hands-On Lab Experiments": 1 +"7th Grade Language Arts: Enhancing Storytelling Skills through Digital Storyboarding": 1 +"6th Grade Science: Understanding Photosynthesis with Augmented Reality using Google Expeditions": 1 +"3rd Grade Mathematics: Enhancing Multiplication Skills with the Math Trainer App": 1 +"8th Grade History: Exploring the Civil War through Virtual Field Trips on Google Earth VR": 1 +"7th Grade Art: Introduction to 3D Modeling with Tinkercad ": 1 +"9th Grade Physics: Grasping the Concept of Velocity through Interactive Simulations on Physics Classroom ": 1 +"1st Grade English: Building Vocabulary with Digital Storybooks on Epic! ": 1 +"5th Grade Mathematics: Mastering Fractions with the Pizza Fractions App": 1 +"7th Grade Music: Discovering Jazz Improvisation with GarageBand": 1 +"6th Grade Language Arts: Enhancing Essay Writing Skills with Google Docs and Quizlet for Vocabulary Building": 1 +"10th Grade History: Studying the Renaissance Era through Immersive Storytelling in Minecraft: Education Edition": 1 +"4th Grade Science: Uncovering the Wonders of Ecosystems through Interactive Online Simulations": 1 +"8th Grade History: Understanding the Impact of Industrial Revolution on Modern Society": 1 +"6th Grade Algebra: Conquering Quadratic Equations with the Aid of Virtual Whiteboard Tools": 1 +"2nd Grade Elementary: Developing Basic Sentence Structures using Interactive Digital Storybooks": 1 +"8th Grade Art: An In-depth Guide to Creating Landscape Paintings with Acrylics": 1 +"2nd Grade Physical Education: Building Balance and Flexibility through Yoga and Interactive Balance Games": 1 +"6th Grade Science: Exploring the Solar System - A Virtual Reality Journey": 1 +"3rd Grade Physical Education: Enhancing Motor Skills through Dance and Rhythm Games using Augmented Reality": 1 +"9th Grade Literature: Understanding the Intricacies of Shakespearean Drama through Role-play and Script Writing": 1 +"5th Grade Life Skills: Money Management - Learning Saving and Spending through Virtual Bank Simulation": 1 +"6th Grade Geography: Exploring World Landforms through Virtual Reality Tours using Google Earth ": 1 +"2nd Grade Reading: Adventures in Audiobooks: The Magic of Voice Acting": 1 +"Kindergarten Physical Education: Introduction to Basic Yoga Poses and Healthy Movement Patterns": 1 +"6th Grade Sculpture: Clay Molding Techniques in Animal and Human Figurines": 1 +"2nd Grade Science: Understanding Germs and the Importance of Vaccination": 1 +"4th Grade Spanish: Learning Cultural Stories through Digital Storybooks and Duolingo": 1 +"8th Grade History: The Sphinx and Pyramids: Ancient Egypt’s Architectural Wonders": 1 +"Ninth Grade Physics: Mechanics and Kinematics Applying Vector Calculations": 1 +"3rd Grade Music: Discovering Rhythm and Beat with Virtual Drums and Beatboxing Apps": 1 +"6th Grade Painting: Exploring Acrylics with Palette Knives": 1 +"6th Grade Biology: Understanding Plant Photosynthesis through Interactive Experiments": 1 +"3rd Grade Geography: Discovering Different Cultures with Virtual Reality Tours": 1 +"2nd Grade Art: Exploring Texture and Form with Clay Sculpture": 1 +"9th Grade History: The Social and Economic Effects of the Great Depression": 1 +"1st Grade Health and Wellness: Basic Hygiene Lessons with Interactive Games": 1 +"Fourth Grade Music: Introduction to Piano - Learning with Simply Piano: Notes & Melodies": 1 +"6th Grade Physical Education: The Role of Exercise in Healthy Living": 1 +"Astronomy for Kids: Exploring the Solar System with Telescope Observations and Planetarium Software": 1 +"8th Grade Introduction to Physics: Understanding Force and Motion through Experiments": 1 +"7th Grade History: Digging into Ancient Egypt with Virtual Excavations and Timelines": 1 +"7th Grade Biology: Understanding Cellular Structures through 3D Printing and Microscopy": 1 +"8th Grade Art: Exploring Renaissance through Virtual Tours of the Uffizi Gallery": 1 +"3rd Grade Geography: Discovering Continents and Oceans with Interactive World Maps": 1 +"7th Grade History: Exploring the American Revolution through Augmented Reality": 1 +"12th Grade Chemistry: Learning the Periodic Table through Virtual Experiments": 1 +"Fifth Grade Mathematics: Understanding Fractions and Decimals through Cooking Recipes": 1 +"Fifth Grade Computer Science: Creating Animated Stories with Scratch Programming ": 1 +"6th Grade Language Arts: Exploring Mythology and Folklore through Digital Storytelling": 1 +"12th Grade Sports Science: Understanding Biomechanics through the Analysis of Athletic Movements": 1 +"4th Grade Environmental Studies: Studying Climate Change through NASA’s Climate Kids Resources": 1 +"5th Grade Art: Exploring Textures and Hues in Autumn Landscapes through Watercolor and Linocut Techniques": 1 +"6th Grade Geography: Decoding Geological Formations with Google Earth Pro and Topographic Maps": 1 +"8th Grade English Language Arts: Analyzing Irony in Mark Twain’s Novels through Interactive eBooks and Audiobooks": 1 +"1st Grade Mathematics: Introduction to Shapes and Symmetry with Interactive Online Platforms and Tangible Geometric Blocks": 1 +"4th Grade English: Creating Animated Stories from Greek Mythology using Toon Boom Harmony and Adobe After Effects": 1 +"2nd Grade English: Unfolding Fairy Tales from around the Globe with Augmented Reality Storybooks": 1 +"The Impact of the Gold Rush on American Expansion: A 6th Grade History Course": 1 +"1st Grade Science: An In-depth Investigation of Aquatic Life Cycles through Live Aquarium Visits and Augmented Reality Apps": 1 +"4th Grade Elementary: Mastering Division Concepts through Fraction Bars and Math Manipulatives": 1 +"5th Grade Geography: An Integrated Study of African Landscapes with VR Field Trips and Interactive Globe Models": 1 +"5th Grade Science: Exploring Life Cycles through Butterfly Metamorphosis": 1 +"Practical Geometry in 3rd Grade Mathematics using Tangram Puzzles": 1 +"1st Grade Literature: Unleashing Imagination with Story Creation and Puppet Theater": 1 +"3rd Grade Music: Discovering Melodies and Harmonies with the Ukulele": 1 +"4th Grade History: Journeying through the Middle Ages with Minecraft and Oculus Rift Technology": 1 +"2nd Grade Health and Nutrition: Discovering Food Groups using Interactive Food Pyramid": 1 +"Kindergarten Reading: Building Word Recognition with Animated eBooks": 1 +"5th Grade Art: Mastering Perspective Drawing with Sketch Pens and Protractors": 1 +"6th Grade Music: Exploring Jazz and Improvisation - An Insight into Music Composition": 1 +"3rd Grade Geography: Understanding Weather Patterns with Real-Time Data and Satellite Images": 1 +"7th Grade Science: The Wonders of Our Solar System: Interactive Learning with Planetarium Software": 1 +"3rd Grade English Language Arts: Illustrating Emotion through Watercolor and Chalk Art: A Study of Where the Wild Things Are": 1 +"Subtraction Mastery in 3rd Grade Mathematics Using the Math Blaster App ": 1 +"5th Grade Music: Exploring the Melodious Sounds of the Recorder and Kodály Method": 1 +"8th Grade History: The Manhattan Project and Nuclear Physics during World War II": 1 +"10th Grade Music: The Technique of Tremolo - Understanding the Impact of Bow Speed and Pressure on Violin": 1 +"6th Grade History: Ancient Greece - The Parthenon and the Greek Alphabet: Clay Tablet Creation and Quill Writing": 1 +"5th Grade Biology: Understanding Metamorphosis Through the Use of Frog Hatchery Kits": 1 +"6th Grade English Language Arts: Diving into Metaphors in Roald Dahl’s Literature with Puppet Theater": 1 +"10th Grade Music: The Harmony of Electronic Drums, Loop Stations, and Digital Audio Workstations in Contemporary Music Production": 1 +"2nd Grade Geography: Understanding Weather Patterns through Interactive Globe Models": 1 +"1st Grade Basic Math: Enhancing Numeric Skills with Digital Counting Games": 1 +"10th Grade Literature: Analyzing Contemporary Novels through E-reader Annotations": 1 +"6th Grade Algebra: Using Interactive Whiteboard for Simplifying Equations": 1 +"5th Grade Biology: Exploring Plant Life Cycles with Virtual Garden Tours": 1 +"Medieval History: Knights and Castles - Insights into Feudal System through Virtual Reality ": 1 +"8th Grade Music: Discovering Classical Music through Interactive Sound Mixing Apps": 1 +"8th Grade Music: Tracing the Roots of Rock n Roll and its Influence using Digital Music Libraries": 1 +"8th Grade English: Decoding Shakespearean Plays with Interactive E-book Notes": 1 +"7th Grade Physics: Delving into the Universe - An Augmented Reality Space Expedition": 1 +"7th Grade Science: Discovering Planetary Orbits with Augmented Reality Tools": 1 +"1st Grade Mathematics: Understanding Addition and Subtraction using Lego Blocks": 1 +"9th Grade History: Exploring The Renaissance Era through Virtual Reality": 1 +"5th Grade Music: Decoding Rhythms and Beats with GarageBand": 1 +"3rd Grade Art: Introduction to Watercolor Painting with Blending Techniques": 1 +"4th Grade Geography: Learning about Landforms through Interactive 3D Models": 1 +"1st Grade English: Phonics and Spelling Mastery using ABCmouse and Audible Audiobooks": 1 +"2nd Grade Health: Understanding Nutrition through Interactive Food Pyramid Games": 1 +"7th Grade Mathematics: Mastering Algebra with Coding and Algorithm": 1 +"6th Grade Literature: Analyzing Shakespeare’s Plays with No Fear Shakespeare Tools": 1 +"1st Grade Math: Fun with Numbers: Learning Arithmetic through Interactive Puzzles": 1 +"4th Grade Geography: Exploring Global Landscapes with Virtual Reality": 1 +"3rd Grade Science: Demystifying the Solar System with 3D Models and Animations": 1 +"6th Grade Literature: Journey into Classic Novels through Role-play and Creative Writing": 1 +"2nd Grade Art: Creating Masterpieces: Understanding Shapes and Colors with Paints and Brushes": 1 +"5th Grade Physics: Adventures in Force and Motion: Experiments with Mini Catapults": 1 +"4th Grade Music: Mastering Melody and Harmony with the Ukulele": 1 +"1st Grade Language Arts: Alphabet Adventures: Learning Letter Sounds with Interactive Games": 1 +"6th Grade Social Studies: Decoding the Constitution: A Deep Dive into American Democracy": 1 +"3rd Grade Biology: The Magic of Metamorphosis: A Study of Life Cycles in Butterflies Using Time-lapse Videos": 1 +"3rd Grade Mathematics: Exploring Geometry through Origami and Interactive Digital Tools": 1 +"6th Grade Science: Discovering Volcanoes: Formation, Eruption, and Impact using Virtual Reality": 1 +"8th Grade History: Understanding the Impact of Railroads during the Industrial Revolution": 1 +"4th Grade Music: Exploring Beethoven’s Symphonies using Audacity Software": 1 +"3rd Grade History: Decoding the Mysteries of Ancient Egypt: Hieroglyphs and Pyramids": 1 +"2nd Grade Science: Observing Desert Biomes through Cactus Terrarium Creation and Animal Tracking using Sand Trays and Weather Instruments ": 1 +"1st Grade Social Studies: An Adventure through Medieval Europe: Castles, Knights, and Folktales": 1 +"10th Grade Chemistry: Introduction to Organic Chemistry with Hands-on Lab Experiments and Molecular Modeling Kits ": 1 +"Pre-Kindergarten Language Arts: Mastering Numbers through Storytelling and Sensory Play Using Clay and Blocks ": 1 +"4th Grade Physical Education: Learning Basketball Fundamentals through Team Games.": 1 +"2nd Grade Geography: Exploring World Landforms through Virtual Reality and Interactive Maps": 1 +"10th Grade Chemistry: Understanding Chemical Reactions through Home-Baked Bread Experiment": 1 +"5th Grade Social Studies: The Influence of Cotton Gin on American Economy - A Deep Dive into Industrial Revolution": 1 +"7th Grade History: The Role of the Spinning Wheel in Ancient India and the Indus Valley": 1 +"9th Grade Art: The Evolution of Impressionism through Digital Painting with Procreate and Photoshop": 1 +"3rd Grade Mathematics: Grasping Fractions and Decimals using Pizza Making": 1 +"8th Grade Music: Exploring Jazz Progression through Digital Composition on GarageBand": 1 +"2nd Grade Science: Comprehending Plant Life Cycle by Growing Seeds in Homemade Greenhouses": 1 +"10th Grade Physics: Understanding Electromagnetic Waves using a DIY Radio Transmitter": 1 +"4th Grade Art: Learning about Renaissance Sculptures through Clay Modeling": 1 +"1st Grade Biology: Exploring Plant Life with Microscope and Interactive Software": 1 +"7th Grade Mathematics: Linear Equations and their Applications using GeoGebra": 1 +"3rd Grade Geography: Understanding Climate Zones through Virtual Field Trips and Google Earth ": 1 +"2nd Grade Music: Introduction to Musical Notes and Rhythm with Fun Piano App Games": 1 +"6th Grade Science: Discovering the Wonders of Astronomy: Telescopes, Stars and Planets": 1 +"4th Grade Art: The Renaissance and its Impact: Exploring famous Artists and their Work": 1 +"8th Grade Science: Renewable Energy: Wind Turbines and Solar Panels - A Study of Sustainable Solutions": 1 +"Understanding Colors and Patterns: A 1st Grade Art Course Incorporating Digital Drawing Tools": 1 +"5th Grade Health Education: The Importance of Balanced Diet and Regular Exercise": 1 +"4th Grade Social Studies: Understanding the Cultural Diversity in America Through Storytelling and Role-Playing Games": 1 +"8th Grade Physics: Exploring Projectile Motion in Soccer through Video Analysis": 1 +"4th Grade History: Experiencing the Wonders of Ancient Egypt through Augmented Reality": 1 +"Kindergarten Science: Discovering the Wonders of Weather with Thermometers, Barometers, and Weather Vane Crafts": 1 +"Analyzing Nutrient Cycles: A 5th Grade Biology Module Covering Decomposers, Producers, and Consumers": 1 +"2nd Grade Language Arts: Mastering Phonetics with Speech-to-Text Technology": 1 +"8th Grade Physical Education: Improving Basketball Skills Through Motion Tracking Technology": 1 +"6th Grade Gymnastics: Perfecting Tumbling Techniques with Trampolines, Gymnastic Mats, and Digital Motion Analysis": 1 +"3rd Grade Mathematics: Boosting Subtraction Skills using Tablet Games and Counting Beads": 1 +"1st Grade Mathematics: Grasping the Concept of Whole and Part in Fractions": 1 +"8th Grade Music: Composing Harmonies with Digital Audio Workstations and MuseScore Notation Software": 1 +"7th Grade Physical Education: Enhancing Agility through Dance Dance Revolution Gaming": 1 +"4th Grade Biology: Exploring Animal Adaptation with Time-Lapse Videos": 1 +"Second Grade Basic Computer Skills: Understanding Spreadsheets in Excel through SUM Function": 1 +"5th Grade French: Enhancing Language Proficiency through Role-playing and Interactive Quizzes": 1 +"6th Grade Algebra: Mastering Linear Equations with Virtual Manipulatives Apps": 1 +"9th Grade Poetry: Understanding Metaphors in Modern Poems Using Interactive eBooks": 1 +"12th Grade Graphic Design: Mastering Digital Illustration with Adobe Illustrator’s Pen Tool": 1 +"Soil Conservation and Food Chain: Learning About Composting in 5th Grade Ecology": 1 +"10th Grade Trigonometry: Solving Trigonometric Functions using Desmos and Graphing Calculators": 1 +"5th Grade Physical Health: Learning About Food Groups and Balanced Diet through MyPlate Interactive Tool": 1 +"9th Grade Literature: Decoding Social Themes in Victorian Novels: A Focus on Charles Dickens": 1 +"4th Grade Geography: Understanding Plate Tectonics through Minecraft and Virtual Reality": 1 +"1st Grade Biology: Discovering Life Cycles: From Caterpillar to Butterfly Using Augmented Reality ": 1 +"8th Grade Social Studies: Examining the Civil Rights Movement through Multimedia Sources and Virtual Museum Visits": 1 +"6th Grade Geography: Exploring the Wonders of the Amazon Rainforest through Virtual Field Trips": 1 +"3rd Grade Introduction to Geometry: Learning Shapes and Patterns through Interactive Digital Games": 1 +"Kindergarten Science: Gaining Awareness of Weather Patterns through IoT-Enabled Weather Station Projects": 1 +"5th Grade English Language Arts: Exploring Figurative Language in Dr. Seuss’s Books through Digital Storytelling Tools": 1 +"7th Grade Geography: Unveiling the Mysteries of Ancient Greece through Virtual Reality Temple Tours": 1 +"9th Grade Speech and Debate: Developing Argumentative Skills using Online Collaboration Platforms.": 1 +"10th Grade Physics: Unraveling the Mysteries of Quantum Mechanics through Simulations": 1 +"3rd Grade English: An Adventure into Poetry: Exploring Rhymes and Rhythm": 1 +"9th Grade Mathematics: Geometry - Understanding Shapes and Angles through Origami": 1 +"6th Grade History: Virtual Reality Journeys through the Great Wall of China": 1 +"12th Grade Design: Building Interactive Websites with HTML, CSS, and JavaScript": 1 +"8th Grade Chemistry: Exploring Chemical Reactions with Kitchen Ingredients": 1 +"5th Grade Physical Education: The Basics of Basketball: Dribbling, Shooting, and Sportsmanship": 1 +"1st Grade Language Arts: The Wonder of Fairy Tales through Puppet Show Storytelling": 1 +"8th Grade History: Tracing the Development of Modern Computers": 1 +"7th Grade Botany: Discovering the Lifecycle of a Flower through Time-lapse Photography": 1 +"2nd Grade Mathematics: Grasping Addition and Subtraction with Abacus and Smartboard Games": 1 +"4th Grade Geography: Exploring World Maps and Cultures through Google Earth Virtual Tours": 1 +"7th Grade Art: Sculpting Creativity with Clay and 3D Modelling Software": 1 +"5th Grade History: Journey through Medieval Europe using Castle Simulations and Feudal System Concepts": 1 +"1st Grade Science: Understanding Plant Life Cycle with Seed Germination Experiments": 1 +"6th Grade Language Arts: Enhancing Writing Skills with Grammarly Software and Storytelling Techniques": 1 +"3rd Grade Music: Rhythm Discovery with Percussion Instruments and Beat Making Apps": 1 +"7th Grade Science: Investigating Human Anatomy through Virtual Reality and Interactive Models": 1 +"2nd Grade Art: Creating Patterns with Mosaic Tiles and Color Wheel Concepts": 1 +"5th Grade Language Arts: Expanding Vocabulary and Reading Comprehension with Kindle Interactive Books.": 1 +"7th Grade Geography: Exploring African Landforms through Minecraft": 1 +"5th Grade Social Studies: Understanding Currency Exchange with Bitcoin Technology": 1 +"4th Grade History: The Mayan Empire and the Development of the Zero Concept": 1 +"6th Grade Science: The Impact of Plastic Bags on Marine Life and 10 Sustainable Alternatives": 1 +"9th Grade Music: Exploring Jazz Improvisation through GarageBand App": 1 +"5th Grade Geography: Virtual Exploration of European Landmarks with Google Earth VR": 1 +"2nd Grade English: Fairy Tales Analysis and Vocabulary Building using Augmented Reality": 1 +"4th Grade Social Studies: A Glimpse into the Maasai Culture - An Immersive African Safari with VR": 1 +"6th Grade History: The Importance of the Pyramid of Giza in Ancient Egyptian Society": 1 +"3rd Grade Music: The Role of the Violin in a Symphony Orchestra": 1 +"5th Grade Physical Education: Discovering Soccer Techniques through Field Practice and Team Coordination": 1 +"7th Grade Music: Exploring Beethoven’s Symphony No. 5 with Finale Music Notation Software and Timbre Analysis": 1 +"4th Grade Science: Understanding Weather Patterns through Interactive Climate Apps": 1 +"9th Grade English: Mastering Metaphors and Similes with Word Wagon and Engaging Language Games": 1 +"5th Grade Arts: Grasping Perspective in Landscape Painting ": 1 +"7th Grade Mathematics: Diving into Fractions using Virtual Manipulatives and Intuitive Learning Methods": 1 +"4th Grade English: Enhancing Writing Skills through Storybird and Interactive Story Building": 1 +"6th Grade Science: Exploring Photosynthesis using Microscopic Plant Models and Virtual Lab Experiments": 1 +"9th Grade Drama: Developing Improvisation Skills through Live Performances and Online Feedback Sessions": 1 +"5th Grade Introduction to Algebra: Variables and Equations Made Easy with Math Games and Puzzles.": 1 +"1st Grade Science: Exploring Weather Patterns with Interactive Puzzles": 1 +"8th Grade Chemistry: Learning Chemical Reactions through Virtual Simulation": 1 +"Third Grade Computer Science: Creating Digital Art with Scratch - A Project-Based Learning Approach": 1 +"2nd Grade Art: Sketching and Painting with iPad and Procreate": 1 +"5th Grade Geography: The Silk Road - Trade, Culture, and the Spread of Ideas": 1 +"5th Grade Geography: Navigating with the Stars - The Role of Astrolabe in Early Voyages": 1 +"5th Grade Social Science: Native American Tribes - The Development of Teepees and Totem Poles": 1 +"3rd Grade Health Education: Monitoring Nutrition and Physical Activity with Interactive Apps": 1 +"6th Grade Biology: Exploring Plant Life Cycles through Augmented Reality": 1 +"7th Grade Art History: The Impact of Impressionism on Contemporary Art Styles": 1 +"2nd Grade Geometry: Understanding Shapes through Origami Folding Techniques": 1 +"5th Grade Chemistry: Exploring Chemical Reactions through Edible Experiments": 1 +"Our Blue Planet: In-depth Study of the Water Cycle using Rain Gauges and Evaporation Models for Kindergarteners": 1 +"10th Grade Literature: Dissecting Shakespeare’s Sonnets using Rhyme Schemes and iambic Pentameter": 1 +"2nd Grade Music: Exploring Rhythm through Hand Drumming ": 1 +"1st Grade Physics: Learning about Forces and Motion using Toy Cars and Ramps": 1 +"9th Grade Astronomy: Investigating Stellar Evolution through Virtual Reality Constellation Mapping": 1 +"6th Grade History: The Impact of the Industrial Revolution on Modern Society": 1 +"3rd Grade Art: Exploring Texture through Clay Sculpting Techniques": 1 +"7th Grade Computer Science: Understanding the Basics of Coding with Python and Scratch.": 1 +"4th Grade Science: Exploring Photosynthesis and Plant Life": 1 +"7th Grade History: The Role of the Samurai in Feudal Japan ": 1 +"9th Grade Literature: Dissecting Symbolism in Gothic Fiction ": 1 +"8th Grade Mathematics: Mastering Algebraic Equations with Interactive Software": 1 +"11th Grade Social Studies: Analyzing the Effect of the Industrial Revolution on Modern Society ": 1 +"7th Grade Geography: Navigating the World - From Topography to Cartography": 1 +"5th Grade Mathematics: Unraveling the Puzzles of Fraction and Decimal Conversion": 1 +"9th Grade Music: Composing Melodies and Harmonies with Digital Audio Workstations": 1 +"6th Grade Science: The Magic of Magnets and the Principle of Polarity": 1 +"7th Grade Social Studies: Understanding the Significance of the Silk Road in Global Trade": 1 +"8th Grade World Politics: Analyzing the Impact of World War II on International Relations": 1 +"3rd Grade English: Adventure through Folktales: The Wonder of Augmented Reality": 1 +"3rd Grade Geography: Grasping the Influence of Mountains on Ancient Chinese Culture": 1 +"3rd Grade History: Journeying through Roman Colosseum with Augmented Reality": 1 +"6th Grade Chemistry: Exploring the Periodic Table through Interactive Experiments": 1 +"11th Grade Information Technology: Mastering Video Editing Techniques using Premiere Pro in Digital Filmmaking": 1 +"3rd Grade Science: Exploring Marine Ecosystems Using Underwater Drones": 1 +"7th Grade Social Studies: Greece’s Ancient Societies and the Use of Sculpting Tools in Creating Statues": 1 +"Learning Patterns and Quantities: A 2nd Grade Mathematics Course with Cuisenaire Rods and Montessori Materials": 1 +"10th Grade Geography: Discovering Sahara Desert Life Through Virtual Reality Using Oculus Rift and Google Earth VR": 1 +"6th Grade Art: Exploring Digital Painting with Procreate and Adobe Fresco": 1 +"8th Grade Science: Comprehending Genetics and DNA Sequencing through Interactive Software": 1 +"5th Grade Geography: Navigating the World of Maps and Globes with Google Maps and 3D Models": 1 +"7th Grade Music: Learning Musical Notation through Virtual Piano Apps and MIDI Controllers": 1 +"4th Grade Physical Education: Enhancing Flexibility and Balance with Yoga and Pilates": 1 +"3rd Grade History: Journey to Ancient Egypt: Pyramids, Hieroglyphics and the Art of Mummification": 1 +"8th Grade Language Arts: Utilizing MindMeister for Brainstorming Techniques and Essay Planning": 1 +"4th Grade Environmental Studies: Understanding Climate Change through Weather Tracking Apps": 1 +"5th Grade Physics: Introduction to Simple Machines and Their Applications in Everyday Life": 1 +"6th Grade Health: Exploring Nutrition and Healthy Eating Habits through Interactive Cooking Classes": 1 +"6th Grade Science: The Role of Photosynthesis in the Ecosystem: An Interactive Biology Lesson": 1 +"8th Grade Art: Digital Art Creation: Learning Techniques and Features of Procreate": 1 +"5th Grade History: The Importance of the Silk Road in Global Trade: A Detailed Study": 1 +"9th Grade English: The Influence of Shakespeare’s Works on Contemporary Literature": 1 +"7th Grade Physical Education: The Mechanics of Swimming: Understanding Strokes and Breathing Techniques": 1 +"5th Grade Music: Understanding Rhythm and Beats through the Use of Digital Drum Kits": 1 +"3rd Grade Art: Introduction to Sculpting: Hands-on Learning with Clay and Tools": 1 +"4th Grade Science: The Solar System: Exploring Planets and Stars through Virtual Reality": 1 +"3rd Grade English: Learning Grammar through Interactive Storytelling with Aesop’s Fables": 1 +"10th Grade History: The Impact of the Transcontinental Railway on the Growth of the American West": 1 +"3rd Grade Literature: Journey into Folklore with Virtual Reality Storytelling": 1 +"7th Grade Biology: Exploring Human Anatomy through Augmented Reality Models": 1 +"1st Grade Mathematics: Learning Addition and Subtraction using Interactive Puppet Theatre": 1 +"6th Grade Geography: Unveiling the Mysteries of the Amazon Rainforest with Satellite Imagery": 1 +"3rd Grade Art: Discovering the Renaissance Era through Clay Modelling and Painting": 1 +"7th Grade Mathematics: Conquering Algebra with Interactive Whiteboard Activities": 1 +"2nd Grade Physical Education: Learning Coordination and Agility with Dance and Gymnastics": 1 +"6th Grade History: Unraveling the Secrets of Medieval Castles through Virtual Reality Tours": 1 +"4th Grade Science: Exploring the Life Cycle of Butterflies using Augmented Reality": 1 +"8th Grade Music: Understanding the Science of Sound through Hands-on Instrument Play and Digital Sound Waves.": 1 +"7th Grade Geography: The Impact of the Panama Canal on Global Trade": 1 +"8th Grade Physics: Using Algebra to Understand Projectile Motion - Implications in Sports Science": 1 +"11th Grade Health Education: Utilizing Mobile Apps to Track Sleep Patterns and Improve Wellness": 1 +"5th Grade Mathematics: Unraveling Multiplication and Division through Everyday Scenarios": 1 +"2nd Grade Language Arts: Word Wonders: Enhancing Vocabulary through Interactive Storytelling": 1 +"2nd Grade Science: Exploration of Plant Life Cycles with Time-lapse Photography and Botanical Illustration": 1 +"7th Grade Digital Art: Delving into 3D Modelling and Texture Mapping in Blender": 1 +"10th Grade Orchestra: Harmony and Melody - Mastering Legato Technique on Cello with an Endpin Anchor": 1 +"Creating Melodies and Harmonies using GarageBand in 7th Grade Music": 1 +"7th Grade English: Developing Persuasive Arguments with Microsoft Word": 1 +"7th Grade Literature: Delving into Poetry and Metaphors in Modern Works using Audiobooks ": 1 +"9th Grade Technology: Introduction to Programming with Python and Java ": 1 +"3rd Grade English: Enhancing Vocabulary through Digital Flashcards and Online Quizzes using the Google Classroom ": 1 +"2nd Grade Music: Exploring Melody with Recorders using Music Notation Software ": 1 +"5th Grade Geography: Investigating the Impact of Volcanic Eruptions on Earth’s Landscape ": 1 +"6th Grade Mathematics: Understanding Fractions and Decimals with Interactive Whiteboard Games ": 1 +"Advanced 1st Grade Mathematics: Utilizing Number Lines in the TouchMath Program for Subtraction Skills ": 1 +"2nd Grade Art: Grasping Textures in Clay Sculpting with Molding Tools, Wire End Tools, and a Pottery Wheel ": 1 +"3rd Grade History: The Ancient Egyptian Civilization and the Development of Hieroglyphics ": 1 +"5th Grade Science: Comprehending the Life Cycle through the Study of Butterfly Metamorphosis": 1 +"4th Grade Science: Exploring Plant Photosynthesis through Interactive Virtual Labs": 1 +"7th Grade Music: Mastering Treble Clef Notes with Digital Tuners": 1 +"7th Grade History: The Role of the Enigma Machine in World War II’s Cryptographic Evolution": 1 +"Enhancing 9th Grade Football Skills with SmartBall Technology and Virtual Reality Training: 10 Strategies": 1 +"Decoding the Declaration of Independence: An 11th Grade History Course Focused on Revolutionary Ideals": 1 +"4th Grade Geography: Journey through Ancient Egyptian Civilization using Interactive Maps and Hieroglyphics": 1 +"Exploring the Effects of Composting on Soil Health in Urban Gardens using Data Analysis in 1st Grade Environmental Studies": 1 +"2nd Grade Mathematics: Understanding Addition and Subtraction through Fun Board Games": 1 +"Kindergarten Art: Discovering Textures and Patterns through Collage Art Using Recycled Materials": 1 +"12th Grade Mathematics: Navigating Trigonometric Functions with Desmos Graphing Calculator": 1 +"1st Grade Science: Introduction to Weather Patterns through Interactive Experiments": 1 +"8th Grade Math: Grasping Geometry: Exploring Shapes and Angles with Geoboards": 1 +"4th Grade English: Boosting Reading Comprehension: Using Raz-Kids Interactive Books": 1 +"6th Grade Music: Discovering Rhythm and Beat in Rock Music Using Audacity": 1 +"8th Grade Art: Urban Landscapes in Watercolor: A Study in Painting Using Wet-on-Wet Technique": 1 +"10th Grade History: The Renaissance Period - Artistic Techniques and Symbolism Analysis": 1 +"8th Grade Geography: Decoding the World - Focusing on Climate Zones and Ecosystems": 1 +"Third Grade Science: Journey through the Solar System using Virtual Reality Technology": 1 +"6th Grade History: The Byzantine Empire: Exploring the Impact on Law and Governance": 1 +"8th Grade Chemistry: Fundamentals of Chemical Reactions with a Special Focus on Acid-Base Reactions and Titration.": 1 +"6th Grade History: The Civil War - Analyzing Battles through Virtual Reality": 1 +"8th Grade Science: Exploring Space Through Telescopes and Satellite Data": 1 +"3rd Grade Geography: Identifying Global Landforms using Interactive 3D Models": 1 +"1st Grade: Learning about Farm Animals with Augmented Reality in Science Class": 1 +"7th Grade Music: Comprehending Music Composition through Interactive Apps": 1 +"4th Grade Language Arts: The Power of Storytelling - Exploring Fables and Myths using Animated E-books": 1 +"2nd Grade English: The Influence of Interactive Audiobooks on Audible: A Study on Listening Skills": 1 +"5th Grade World History: Investigating the Impact of The Industrial Revolution on Society": 1 +"8th Grade Social Studies: The American Revolution - The Importance of Letters and Document Analysis": 1 +"3rd Grade Science: Understanding Weather Patterns and Climate through Interactive Weather Apps": 1 +"3rd Grade Science: Investigating the Life Cycle of Butterflies using Augmented Reality": 1 +"6th Grade History: Exploring the Roman Empire through Virtual Reality Tours and Timelines": 1 +"4th Grade Geography: Understanding the World’s Biomes using Minecraft Education Edition": 1 +"7th Grade Music: Composing Original Melodies with GarageBand and Music Theory": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Interactive Math Games": 1 +"8th Grade History: Analyzing the Impact of the Industrial Revolution on Modern Economies using Simulations": 1 +"1st Grade Science: Exploring the Solar System with Educational Apps and Star Charts": 1 +"6th Grade PE: Building Flexibility and Balance with Yoga and Fitness Trackers": 1 +"9th Grade Social Studies: Investigating Global Climate Change through Data Visualization Tools": 1 +"4th Grade History: Uncovering the Mysteries of Ancient Greece using Interactive Storytelling and 3D Models": 1 +"7th Grade Physical Science: Electricity and Magnetism Explored through Simple Circuits": 1 +"6th Grade Art: Exploring Storytelling through Puppet Making and Shadow Play": 1 +"9th Grade Biology: Understanding Genetics through DNA Extraction and Gel Electrophoresis": 1 +"4th Grade Math: Learning Fractions and Decimals through Interactive Puzzles": 1 +"11th Grade Design: Building Virtual Reality Environments with Unity and Oculus Quest": 1 +"1st Grade Science: Introduction to the Seasons and Weather Patterns through Creative Arts": 1 +"3rd Grade History: Colonial America and the Evolution of Quill Pen Writing Techniques": 1 +"8th Grade Home Economics: The Chemistry of Cooking and the Art of Plating": 1 +"2nd Grade Art: Learning about Patterns and Symmetry through Paper Folding and Origami": 1 +"12th Grade Physics: Exploring the Universe with Telescopes and Astrophotography Techniques": 1 +"5th Grade Mathematics: Exploring Geometry with Origami and Interactive Software": 1 +"7th Grade History: The Renaissance Era - The Impact of the Printing Press": 1 +"2nd Grade Art: Exploring Shapes and Patterns with Clay Modelling": 1 +"5th Grade Language Arts: Exploring Metaphors through Puppetry and Digital Storytelling": 1 +"Advanced Instruction: Using Augmented Reality to Teach the History of the Great Wall in 7th Grade Social Studies": 1 +"10th Grade Computer Science: Introduction to Java Programming using CodeBlocks and Bitbucket": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality Models": 1 +"2nd Grade Art: Understanding Line and Form through Paper Mache Sculpture": 1 +"11th Grade Music: Harmonic Vibrations - Piano and the Concept of Melody": 1 +"11th Grade Art: Exploring Depth Perception with Photoshop’s Layers and Filters": 1 +"6th Grade Geography: Understanding Global Navigation and Map Reading through Virtual Reality": 1 +"8th Grade Literature: Exploring Character Development in Classic Novels using Literary Devices": 1 +"2nd Grade Biology: Unraveling the Life Cycle of Butterflies through Interactive Learning": 1 +"5th Grade Civics: The Influence of the Constitution and Bill of Rights on Modern Legislation": 1 +"2nd Grade Earth Science: Examining Rock Formation using Hands-on Experiments": 1 +"Nutrition Basics: 6th Grade Health Course on Understanding Food Groups and Nutritional Values": 1 +"4th Grade Economics: The Evolution of Trade and its Impact on Modern Economy": 1 +"8th Grade Art: Exploring Abstract Painting with Acrylics, Oil Pastels, and Digital Art Software": 1 +"7th Grade Physics: The Laws of Motion and the Invention of the Wheel": 1 +"5th Grade Algebra: Understanding Linear Equations with Graphing Calculators and Fun Math Games Online": 1 +"3rd Grade Science: Exploring the Solar System with Virtual Reality": 1 +"1st Grade Mathematics: Grasping Addition and Subtraction using Educational Mobile Apps": 1 +"8th Grade History: Understanding Democracy through the Lens of the American Revolution": 1 +"2nd Grade Reading: Picture Books and Animated Series for Engaging Reading Comprehension": 1 +"4th Grade Social Studies: Great Egyptian Pharaohs: The Pyramids and Their Significance in Ancient Culture": 1 +"5th Grade Mathematics: Mastering Decimals with Interactive Smartboards": 1 +"1st Grade Science: Learning About Weather Patterns through Interactive Games": 1 +"6th Grade Physical Education: Boosting Stamina with Wii Sports Training": 1 +"4th Grade Health: The Importance of Balanced Diet for Physical and Cognitive Development: An In-Depth Look": 1 +"2nd Grade Writing: Mastering Sentence Structure and Vocabulary with Digital Storytelling": 1 +"4th Grade Science: Exploring Ecosystems with Virtual Field Trips using Google Expeditions": 1 +"5th Grade Art: Journey through Picasso’s Blue and Rose Periods with Virtual Galleries and Sketchpad": 1 +"7th Grade Literature: The Development of Science Fiction in the Era of Digital Books": 1 +"4th Grade Social Studies: Unfolding American History using Augmented Reality": 1 +"8th Grade History: Ancient Mythologies Explored Through Artifact Analysis": 1 +"1st Grade Music: Melody Basics with Hand Bells & Music Learning Apps": 1 +"3rd Grade Music: Discovering Polyrhythms with Drums, Music Creation in Soundtrap, and Smart Board": 1 +"5th Grade Physical Education: Agility and Coordination Development through Dance and Aerobics": 1 +"8th Grade Physical Education: Introduction to Fencing: Mastering Basic Footwork": 1 +"7th Grade Mathematics: Understanding Fractions and Ratios in Baking Measurements": 1 +"5th Grade Geography: Exploring the World’s Biomes Through Satellite Imagery and Virtual Tours": 1 +"2nd Grade History: Unearthing Ancient Greece with Clay Sculpting": 1 +"1st Grade Science: Discovering the Water Cycle with Interactive Experiments": 1 +"9th Grade Physics: Grasping the Concept of Gravity Through Virtual Reality Simulations": 1 +"3rd Grade Physical Education: Track and Field Basics with Motion Analysis Technology": 1 +"5th Grade History: The Impact of Paper, Silk, and the Compass on Ancient China": 1 +"7th Grade English Literature: Essentials of Drama: Crafting Climax and Denouement": 1 +"6th Grade Science Fiction Studies: Deciphering the Paradox of Time Loops in Contemporary Literature": 1 +"3rd Grade Art: Mastering the Basics of Sculpting Using Clay and Sculpting Tools": 1 +"5th Grade History: Comprehending the Renaissance Era Through the Lens of Leonardo da Vinci’s Inventions": 1 +"8th Grade Science: Understanding Photosynthesis and its Impact on the Earth’s Atmosphere": 1 +"The Influence of Instagram Stories on Modern Poetry: An In-depth Analysis for 11th Grade Literature": 1 +"8th Grade Music: Detailed Examination of Jazz Musicians through Music Creation Apps": 1 +"5th Grade Social Studies: The Role of Radio in Forming 21st Century Political Movements": 1 +"12th Grade History: The Impact of the Invention of the Cotton Gin and the Expansion of Railroads on the American South during the Industrial Revolution": 1 +"The Implementation of Yoga and Mindfulness Practices in 2nd Grade Physical Education using Interactive Fitness Apps": 1 +"3rd Grade Art: An Introductory Course on Procreate for Digital Art - Mastering Layer Techniques": 1 +"7th Grade: The Significance of Sculpture in Ancient Greek Art History": 1 +"3rd Grade English: Enhancing Sentence Structure with Interactive Grammar Games on Google Classroom": 1 +"5th Grade Social Studies: Exploring Ancient Egyptian Civilizations through Virtual Reality Experiences": 1 +"4th Grade Science: Exploring the Solar System with Virtual Reality Headsets": 1 +"6th Grade Physics: Learning about Electromagnetism through Virtual Lab Experiments": 1 +"World History: The Industrial Revolution - A 9th Grade Social Studies Course Exploring Steam Power and the Spinning Jenny": 1 +"7th Grade Algebra: Quadratic Equations and Graph Theory using Mathcad": 1 +"2nd Grade Art: Creating Digital Collages with Online Art Tools": 1 +"6th Grade Biology: Discovering the Human Body through Interactive 3D Models": 1 +"1st Grade Introduction to Geometry: Understanding Basic Shapes with Interactive Games": 1 +"9th Grade English Literature: British Novels - Comprehending Character Development with Analysis Software": 1 +"8th Grade Chemistry: Periodic Table Mysteries - Learning Elements with Interactive Quizzes": 1 +"11th Grade Trigonometry: Understanding Sine, Cosine, and Tangent using Scientific Calculators": 1 +"8th Grade Music: Unveiling Harmony through the Violin": 1 +"5th Grade Geometry: Grasping Angles using Augmented Reality and Interactive Geometry Software": 1 +"3rd Grade English: Classic Folktales and Vocabulary Enrichment ": 1 +"10th Grade Trigonometry: Applying Sine, Cosine, and Tangent in Real-World Problems": 1 +"Discovering Ancient Rome through Virtual Reality in 5th Grade History": 1 +"Mastery in Simplifying Rational Expressions in 12th Grade Math using Desmos and the Rational Root Theorem": 1 +"2nd Grade Music: Discovering Pitch and Timbre with GarageBand": 1 +"3rd Grade Earth Science: Exploring Weather Patterns with Interactive Cloud Charts and the Water Cycle ": 1 +"6th Grade History: Investigating Medieval Europe with Blacksmithing Techniques": 1 +"7th Grade History: The Age of Discovery: The Influence of Navigation and Cartography": 1 +"8th Grade Mathematics: Understanding Geometry with Desmos and Sketchpad ": 1 +"2nd Grade Language Arts: Boosting Reading Comprehension with Interactive E-books ": 1 +"2nd Grade Elementary: Discovering Dinosaurs through Virtual Reality Models ": 1 +"10th Grade Social Studies: Analysis of Desert Ecosystems Using Virtual Reality Technology ": 1 +"10th Grade Social Studies: Investigating the Impact of Trench Warfare in World War I ": 1 +"4th Grade Music: Learning Rhythm Patterns Using Hand Percussion and Ableton Live Software ": 1 +"7th Grade Music: Mastering Musical Notation with Musescore and iReal Pro ": 1 +"4th Grade Music: Exploring the Fundamentals of Pitch and Melody with a Ukulele and Audacity ": 1 +"6th Grade Science: Introducing Weather Systems through Interactive Software ": 1 +"9th Grade Physical Education: Improving Basketball Techniques through Motion Analysis and Performance Metrics": 1 +"3rd Grade Science: Investigating Photosynthesis in Urban Green Spaces": 1 +"12th Grade Art: Unveiling the Techniques of Da Vinci Using Digital Painting Software and Texture Mapping": 1 +"5th Grade History: Discovering the Roman Empire through Virtual Reality-Based Learning": 1 +"Third Grade Arithmetic: Mastering Multiplication with Gamified Learning Tools": 1 +"12th Grade Politics: The Progression of Democracy: An Examination of the Role of the Internet": 1 +"Instagram and its Symbolic Role in Modern Poetry: An 11th Grade English Literature Study": 1 +"3rd Grade Geography: Exploring Our Local Ecosystem Through Pokemon Go Augmented Reality Walks": 1 +"6th Grade Geography: Journeying through the Amazon Rainforest with Google Maps and Satellite Image Interpretation": 1 +"Fifth Grade Government: Delving into the Declaration of Independence with Interactive History Software": 1 +"Investigating Aquaponics for Sustainability in Advanced Farming: 7th Grade Science Study with Focus on Water Conservation": 1 +"2nd Grade Art: Exploring Color Theory with Watercolors": 1 +"7th Grade History: The Influence of the Silk Road on Global Trade Patterns": 1 +"1st Grade Mathematics: Introduction to Numbers and Counting with Interactive Games": 1 +"5th Grade English: Mastering the Art of Persuasive Writing with Padlet and Microsoft Word": 1 +"9th Grade Health Education: Exploring the Human Digestive System Through 3D Virtual Models": 1 +"7th Grade Geography: Journey through the Solar System: Exploring Planets with Virtual Reality": 1 +"5th Grade Science: An Experiment with Photosynthesis using Hydroponic Systems": 1 +"3rd Grade Music: Understanding Beat and Harmony with Drum Pads": 1 +"9th Grade Physical Education: Understanding Body Mechanics through Dance Movements with Motion Capture Technology": 1 +"7th Grade Music: An In-depth Analysis of Mozart’s Symphonies with Virtual Instruments and Audio Mixing Software": 1 +"6th Grade History: Deciphering Ancient Mayan Scripts for Better Understanding of Mayan Civilization": 1 +"8th Grade Language Arts: Exploring Metaphors in Novels with Interactive Reading Software": 1 +"3rd Grade English: Enhancing Storytelling Skills with Digital Storybook Creation Tools": 1 +"4th Grade Science: Stellar Science - A Journey through the Solar System": 1 +"7th Grade History: Gothic Cathedrals and The Role of Sacred Geometry in Their Design": 1 +"3rd Grade Mathematics: Grasping Fractions through Virtual Baking Activities": 1 +"8th Grade Art: Creating Landscape Paintings with Digital Brushes and Color Mixing Techniques": 1 +"5th Grade Science: Understanding the Water Cycle through Virtual Weather Simulations": 1 +"1st Grade Mathematics: Fun with Shapes - Learning Geometry with Interactive Apps": 1 +"1st Grade Health: Learning About The Five Senses using Virtual Reality and Interactive Models.": 1 +"4th Grade Geography: Understanding Plate Tectonics through Augmented Reality": 1 +"7th Grade History: The Industrial Revolution and the Evolution of Steam Power": 1 +"1st Grade Language Arts: Journey into Rhymes with Interactive E-books": 1 +"3rd Grade Biology: Learning about Butterfly Transformation with Virtual Reality Cocooning": 1 +"2nd Grade Music: Exploring Rhythm and Tempo with Drumming and Fun Music Apps": 1 +"4th Grade Biology: Investigating Animal Anatomy through Digital Dissections": 1 +"5th Grade Astronomy: The Universe and Interactive Planetarium Software": 1 +"1st Grade Geography: Discovering Climates with Interactive Globe and Temperature Charts": 1 +"7th Grade Architecture: The Influence of Steel in Modern Skyscrapers": 1 +"Navigating Fables: A 2nd Grade Language Arts Exploration with Animated Reading Apps": 1 +"5th Grade Biology: Understanding Photosynthesis through Garden Experiments": 1 +"World Around Us: Uncovering the Secrets of Soil Composition – A Third Grade Earth Science Course": 1 +"3rd Grade Geography: Navigating Global Cultures using Augmented Reality and Virtual Globes": 1 +"12th Grade Chemistry: Deciphering Molecular Structures through 3D Modeling": 1 +"9th Grade Political Science: Understanding Governance and its Transformation through the Lens of Global News Outlets": 1 +"7th Grade Literature: Interpreting Themes in Fantasy Novels through Digital Annotation Tools": 1 +"12th Grade Physics: Exploring the Principles of Thermodynamics in Home Appliances using Interactive Simulations": 1 +"8th Grade English: Utilizing Mind Maps for Plot Development and Characterization": 1 +"2nd Grade Art: Sculpting Clay Models with Virtual Reality and Touch-Sensitive Technology": 1 +"Revolutionizing Learning: Involving 7th Grade Students in Ancient Roman History with Oculus Rift and Immersive Storytelling Technology": 1 +"5th Grade Mathematics: Enhancing Algebra Skills through Coding with Scratch": 1 +"7th Grade Geography: Exploring Global Cultures using Google Maps and Virtual Field Trips": 1 +"3rd Grade Science: Understanding Weather Patterns with Weather Station Kits and Data Analysis": 1 +"8th Grade Art: The Influence of Calligraphy in Islamic Art and Culture": 1 +"6th Grade Music: Mastering Rhythm and Beat through Digital Drumming Software": 1 +"2nd Grade History: Discovering the World of Dinosaurs through Fossil Excavation Simulations": 1 +"5th Grade Language Arts: Developing Storytelling Skills through Puppetry and Stop Motion Animation": 1 +"3rd Grade Art: Learning Basic Geometry Shapes through Origami and Paper Sculptures": 1 +"7th Grade Science: Investigating Plant Life Cycles using Hydroponics and Time-Lapse Photography": 1 +"4th Grade Physics: Introduction to Simple Machines with LEGO Technic Sets and Real-World Examples": 1 +"8th Grade Science: Exploring the Solar System through Virtual Reality": 1 +"High School PE: Enhancing Basketball Skills with Smart Ball Technology": 1 +"Mastering Calculus Concepts through Trigonometric Functions: An 11th Grade Mathematics Course": 1 +"5th Grade Language Arts: Unlocking Imagination through Graphic Story Telling": 1 +"3rd Grade Introduction to Geometry: Understanding Shapes with Tangible User Interfaces & Math Games": 1 +"Kindergarten Language Arts: Journey through Fairytales - Creating Digital Puppet Shows": 1 +"9th Grade Biology: Discovering the Human Body Systems with Interactive 3D Models": 1 +"6th Grade Physical Education: Improving Tennis Techniques through the Tennis Tutor App": 1 +"Cricket: Understanding the Game and Strategies - An In-depth Study of Bowling Techniques using Motion Capture Technology in 9th Grade Physical Education": 1 +"6th Grade History: Exploring Ancient Civilizations with Augmented Reality Puzzles": 1 +"4th Grade Physical Education: Understanding Soccer Techniques with the Conext15 Match Ball": 1 +"6th Grade Science: Unraveling the Egyptians’ Technological Advancements": 1 +"Sixth Grade Social Studies: The French Revolution - The Role of Printed Media": 1 +"3rd Grade History: The Compass - Its Creation, Functions, and Impact on the Age of Discovery": 1 +"5th Grade Geography: Exploring Biomes through Virtual Reality Landscapes": 1 +"1st Grade Mathematics: Utilizing Touchscreen Technology in Shapes Recognition": 1 +"Preschool Phonics: Grasping Vowel Sounds and Word Formation through Interactive Storytelling": 1 +"4th Grade Environmental Studies: The Significance of Recycling and Creating DIY Paper Mache": 1 +"2nd Grade Science: The Wonders of the Rainforest Explored through Augmented Reality": 1 +"3rd Grade Mathematics: Enhancing Division Skills with Educational Mobile Games": 1 +"4th Grade Literature: Journey into Mythology: Understanding Legends and Folklore through Shadow Puppetry": 1 +"5th Grade Geography: Discovering Different Biomes: A Virtual Expedition": 1 +"2nd Grade Art: Exploring Textures and Patterns through Collage Making": 1 +"7th Grade History: The Industrial Revolution: The Role of Steam Engines in Modern Transportation": 1 +"2nd Grade Science: The Wonders of Weather: Exploring Clouds and Rainfall Patterns": 1 +"Kindergarten Mathematics: Grasping Counting and Basic Addition through Interactive Number Toys": 1 +"7th Grade World Cultures: Appreciating Diversity: A Study of Traditional Music and Instruments": 1 +"4th Grade History: Understanding Ancient Civilizations through Augmented Reality": 1 +"Importance of Exercise Balls in 5th Grade Gym Class: Promoting Balance and Coordination": 1 +"9th Grade History: The Enlightenment: Examining the Influence of Scientific Revolution on Sociopolitical Changes in Europe.": 1 +"7th Grade Geography: Discovering the Amazon Rainforest with Virtual Reality": 1 +"8th Grade Physics: Unveiling Laws of Motion through Interactive Simulations": 1 +"4th Grade Spelling: Enhancing Vocabulary Skills with Educational Gaming Apps": 1 +"5th Grade History: Uncovering the Secrets of the Roman Empire through 3D Modelling": 1 +"1st Grade Communication: Developing Verbal Skills with Online Storytelling Platforms": 1 +"6th Grade Chemistry: Fathoming the Periodic Table with Augmented Reality": 1 +"7th Grade English: Exploring Shakespeare’s Macbeth through Dramatic Role Play and Digital Annotations": 1 +"10th Grade Physics: Grasping Quantum Mechanics through Immersive VR Experiences": 1 +"3rd Grade Mathematics: Learning Geometry with Augmented Reality Shapes and Models": 1 +"12th Grade Philosophy: Deconstructing Nietzsche’s Thus Spoke Zarathustra with Critical Theory and Discourse Analysis": 1 +"4th Grade Mathematics: Decoding Fractions and Decimals through Recipe Measurements": 1 +"6th Grade Science: Investigating Plant Photosynthesis Using Microscopic Imaging": 1 +"1st Grade Science: Discovering Animal Tracks with Augmented Reality and Satellite Imagery": 1 +"6th Grade Science: Journey into the Rainforest using Drone Mapping and Wildlife Photography": 1 +"3rd Grade Language Arts: Enhancing Vocabulary Skills with Word Clouds on Microsoft Word": 1 +"8th Grade Mathematics: Mastering Algebra with Interactive Whiteboards and Virtual Manipulatives": 1 +"The Silk Road and Porcelain: Exploring Ancient Chinese Trade for 6th Grade History": 1 +"3rd Grade Science: Learning about Cloud Formations and Weather Phenomena through Homemade Cloud Chambers": 1 +"Mozart’s Operas in 8th Grade Music: A Study with Audacity - A Dive into Classical Music": 1 +"Unraveling the Secrets of Gravity: An 8th Grade Science Exploration Using Virtual Reality, Pendulum Simulations, Raspberry Pi and the Principle of Equivalent Gravitational Mass.": 1 +"4th Grade Geometry: Exploring Shapes and Angles with Virtual Reality and Online Puzzles": 1 +"6th Grade History: Understanding the Roman Empire through VR Tours and Interactive Timeline": 1 +"7th Grade Science: Discovering Human Anatomy Through Virtual Dissection and 3D Models": 1 +"5th Grade Environmental Science: Studying the Water Cycle using Interactive Weather Stations": 1 +"9th Grade Music: Exploring the Evolution of Jazz through Listening and Composition Apps": 1 +"8th Grade Language Arts: Understanding Metaphors in Literature, A Deep Dive into English Language Arts": 1 +"7th Grade Geography: Exploring the Geology of Volcanoes with Interactive Earth Models": 1 +"6th Grade Music: Learning Beethoven’s Symphony No. 5 Using the Violin and Music Composition Apps": 1 +"8th Grade History: A Comprehensive Study of the Industrial Revolution through VR Experiences and Interactive Timelines": 1 +"4th Grade Science: Learning about Electricity through Hands-on Circuit Building Exercises": 1 +"6th Grade Mathematics: Exploring Geometry through Origami and 3D Modeling Software": 1 +"8th Grade Literature: Analyzing Character Development in Classic Novels using Mind Maps": 1 +"7th Grade History: The Influence of the Industrial Revolution on Modern Society": 1 +"4th Grade Science: Understanding the Solar System through Virtual Reality Simulations": 1 +"5th Grade Art: Discovering Color Theory with Digital Painting Tools": 1 +"9th Grade Biology: The Role of Photosynthesis in Global Oxygen Supply - A Study on Plant Biology": 1 +"3rd Grade Music: Exploring Rhythm and Melody with Interactive Digital Instruments": 1 +"10th Grade Economics: Understanding the Stock Market and Finance using Real-Time Data": 1 +"Improving 2nd Grade Mathematics Skills with Fun and Interactive Digital Games": 1 +"1st Grade Health: Learning about Dental Hygiene through Interactive Activities": 1 +"1st Grade Biology: Uncovering the Magic of Photosynthesis with Home Plant Experiments": 1 +"6th Grade Mathematics: Understanding Fractions Through Cooking Measurements": 1 +"11th Grade Art: Mastering Texture with Acrylic Paints on Canvas": 1 +"4th Grade History: Time Travel to Medieval Europe with Augmented Reality": 1 +"8th Grade Physical Education: Enhancing Agility and Speed with Training Ladders": 1 +"2nd Grade English: Delving into Folklore and Myths Through Interactive Storybooks": 1 +"10th Grade History: The Influence of the Steam Engine and Telephone on the Industrial Revolution": 1 +"3rd Grade Physical Education: Improving Hand-Eye Coordination with Dribbling Drills in Basketball": 1 +"7th Grade Social Studies: Navigating Government Structures through Role-Playing Games": 1 +"6th Grade Geography: Studying Climate Change through Interactive Global Warming Models": 1 +"8th Grade Physical Education: Volleyball Techniques and Strategies with Biomechanical Analysis": 1 +"Exploring Nutrition and Body Composition in 10th Grade Health Education": 1 +"12th Grade Biotechnology: Understanding the Role of CRISPR-Cas9 in Gene Editing ": 1 +"6th Grade Science: Exploring Ecosystems and Biodiversity through Field Studies": 1 +"12th Grade Music: Tracing the Evolution of Classical Music through the Piano": 1 +"5th Grade History: Ancient Civilizations and their Cultural Practices ": 1 +"8th Grade English Literature: Analyzing Shakespeare’s Sonnets with Augmented Reality Tools": 1 +"Chemistry 201: Mastery of Organic Chemistry with Virtual Lab Experiments and Molecular Modeling": 1 +"2nd Grade Mathematics: Enhancing Geometric Understanding with 3D Printing Technology": 1 +"Preschool: Learning Basic Phonics through Fun, Interactive Storytelling": 1 +"6th Grade Biology: Understanding Plant Life Cycles through Hands-on Gardening Projects": 1 +"11th Grade Literature: Diving into Symbolism in Novels Using Online Book Clubs": 1 +"3rd Grade Art: Creating Masterpieces with Pastel Chalk and Shadow Art Techniques": 1 +"9th Grade Chorus: Fine-tuning Melody and Tempo with Interactive Music Apps": 1 +"6th Grade Mathematics: Learning Decimals and Percentages through Real-world Shopping Scenarios": 1 +"9th Grade Music: Discovering Jazz History with a Spotlight on Improvisation and Syncopation": 1 +"Mastering Geometry: A Comprehensive 11th Grade Mathematics Course on Angles and Shapes": 1 +"6th Grade Physical Education: Enhancing Basketball Techniques with Go-Pro Cameras and Specialized Training Methods": 1 +"3rd Grade History: Journeying through Ancient Egypt with Microsoft HoloLens and Google Earth VR": 1 +"7th Grade Earth Science: Investigating Weather Patterns through Satellite Images and Real-time Data Analysis": 1 +"8th Grade Drama: Building Character Persona through Improvisation and Stanislavski’s System": 1 +"2nd Grade Math: Learning Shapes and Patterns with Tangram Puzzles": 1 +"Artistic Perspective in 6th Grade Photography: A Comprehensive Guide to Adobe Lightroom Editing": 1 +"Mastering Dribbling Techniques in Basketball: A 7th Grade Physical Education Course Using GoPro Hero 7": 1 +"Kindergarten: Enhancing Cognitive Skills through Lego Building Blocks": 1 +"11th Grade Physics: Grasping the Principles of Thermodynamics": 1 +"3rd Grade Literature: Exploring Greek Legends with Promethean ActivPanel and Kahoot": 1 +"2nd Grade World Studies: Understanding Cultures and Traditions through Virtual Reality Tours": 1 +"6th Grade Biological Science: Studying Rainforest Habitat Using Oculus Rift and Virtual Reality": 1 +"19th Century America: Examining the Impact of Gold Rush on Western Expansion in 8th Grade Social Studies": 1 +"3rd Grade Basic Geography: Exploring Plate Tectonics and Earthquakes": 1 +"1st Grade Art: Creating Portraits with Oil Pastels - A Beginner’s Guide": 1 +"6th Grade History: Decoding Ancient Greek Mythology through Symbolism and Art": 1 +"4th Grade History: Exploring Medieval Castles and the Significance of Masonry Techniques": 1 +"3rd Grade Mathematics: Fun Addition and Subtraction Lessons using Puzzles, Board Games, and Interactive Math Apps": 1 +"6th Grade Science: Exploring Tropical Rainforest Ecosystems with Virtual Reality Software": 1 +"5th Grade Computer Science: An Introduction to Game Development with Scratch": 1 +"2nd Grade Language Arts: Crafting Descriptive Paragraphs using Google Docs": 1 +"2nd Grade Music: Discovering Rhythm and Tempo with Percussion Instruments": 1 +"5th Grade History: The Impact of the Compass, Paper, and Gunpowder on World Civilizations": 1 +"8th Grade Physical Education: Basics of Volleyball and Team Strategy": 1 +"2nd Grade Reading: Understanding Plot and Setting with Interactive E-books": 1 +"4th Grade Music: Exploring Mozart’s Symphony No.40 with Keyboard and MuseScore Software": 1 +"8th Grade History: Studying the Influence of Deserts and Oceans on Medieval Empires": 1 +"5th Grade Engineering: Understanding the Use of Levers in Simple Machines: Learning through Practical Models": 1 +"2nd Grade English: Enhancing Writing Abilities with Punctuation and Digital Story Telling": 1 +"3rd Grade Earth Science: Discovering Plant Ecosystems using Virtual Reality": 1 +"3rd Grade Science: Understanding the Water Cycle through Homemade Evaporation Models": 1 +"2nd Grade Environmental Studies: Learning the Role of Wind Energy in Coastal Ecosystems": 1 +"Interpreting Hieroglyphics: The Rise of Monarchies in 7th Grade History Studies.": 1 +"5th Grade History: Unveiling the Secrets of Ancient Egyptian Pyramids": 1 +"7th Grade Science: Investigating Photosynthesis with Virtual Lab Experiments": 1 +"3rd Grade English: Conquering Antonyms and Synonyms through Interactive Online Games": 1 +"1st Grade Language Arts: Developing Reading Skills with Animated Storybook Apps": 1 +"9th Grade Art: Delving into the Techniques of Renaissance Painters with Digital Drawing Tools": 1 +"11th Grade History: Decoding the Enigma Machine: A Deep Dive into WWII Code Breaking": 1 +"7th Grade Music: Understanding Mozart’s Operas with Music Production Software": 1 +"Kindergarten Health and Wellness: Discovering Healthy Habits with Fun Exercise Activities": 1 +"5th Grade Music: Navigating through Vivaldi’s Four Seasons using Violin Tuning Techniques": 1 +"3rd Grade Mathematics: Grasping Multiplication Concepts with Number Line Games": 1 +"8th Grade Drama: Unveiling the Magic of Shakespeare’s Plays through Role-Play and Puppetry": 1 +"4th Grade Geography: Exploring World Landforms and Climates through Virtual Field Trips": 1 +"2nd Grade English: Developing Reading Skills with Interactive E-books and Audio Stories": 1 +"5th Grade Art: Creating Impressionist Paintings using Digital Art Platforms": 1 +"1st Grade Mathematics: Introduction to Addition and Subtraction through Interactive Math Games": 1 +"7th Grade French: Enhancing Grammar and Pronunciation through DuoLingo and Quizlet Exercises": 1 +"3rd Grade Environmental Studies: Learning about Recycling and Conservation through Practical Projects": 1 +"Kindergarten Physical Education: Promoting Basic Motor Skills through Dance and Playful Activities": 1 +"8th Grade Chemistry: Understanding Elements and Compounds through 3D Models ": 1 +"6th Grade Civics: Exploring the U.S. Constitution using Interactive Online Tools": 1 +"3rd Grade History: Understanding the Influence of the Silk Road on Ancient Trade": 1 +"2nd Grade Art: Experimenting with Textures and Patterns in Clay Sculpting Techniques": 1 +"5th Grade English: Improving Vocabulary through Interactive Crossword Puzzles and Kindle Read-Aloud Feature": 1 +"3rd Grade Mathematics: Learning Addition and Subtraction with Interactive Grocery Shopping Games": 1 +"Sixth Grade Social Studies: The Civil War; The Impact of Railroads on Strategy and Logistics": 1 +"Sixth Grade Social Studies: The Importance of Hunting in Early Human Societies": 1 +"2nd Grade Music: Discovering Rhythm Basics with Recorders and GarageBand App": 1 +"1st Grade Environmental Studies: Exploring the Basics of Plant Life Cycle with Home Gardening Kits": 1 +"2nd Grade Social Studies: Understanding Our City Through Virtual Field Trips": 1 +"3rd Grade Music: Learning Melody with Violin through Music Notation Software.": 1 +"3rd Grade Geography: Exploring World’s Major Rivers with 3D Models and Interactive Maps": 1 +"1st Grade Reading: Boosting Reading Skills using Storybook Apps and Picture References": 1 +"5th Grade History: Understanding the Feudal System of Medieval Japan Through Role Play": 1 +"3rd Grade Mathematics: Grasping Geometry with Origami, Tangrams, and the Montessori Method": 1 +"5th Grade Science: Space Journey to the Planets of Solar System with Virtual Reality": 1 +"6th Grade Geography: Decoding Weather Patterns and Climate Zones through Satellite Imagery": 1 +"2nd Grade History: The Role of the Great Wall in Ancient China’s Defense ": 1 +"8th Grade Music: Exploring Melody and Harmony with Digital Synthesizers": 1 +"Dental Hygiene for 1st Graders: Introduction to Flossing, Electric Toothbrushes, and Healthy Food Choices": 1 +"4th Grade History: The Viking Age and the Evolution of Seafaring Technology": 1 +"4th Grade History: Uncovering the Mysteries of the Mayans through Hieroglyphics": 1 +"Creating Interactive Math Problems with Scratch: A New Angle to 3rd Grade Geometry Lessons": 1 +"Journey through the Human Body in 5th Grade Science using Virtual Reality": 1 +"7th Grade Physical Education: Enhancing Agility and Coordination with Basketball Drills": 1 +"Kindergarten Physical Education: Learning Basic Motor Skills through Dance and Movement": 1 +"4th Grade Science: Exploring Space and the Solar System using 3D Printing": 1 +"1st Grade Science: Understanding Seasons and Climate Change through Interactive Apps": 1 +"Examining Themes and Symbolism in Roald Dahl’s Charlie and the Chocolate Factory in 6th Grade English with Podcasts": 1 +"3rd Grade Health: Learning about the Importance of Sleep and Exercise in Child Development": 1 +"1st Grade Geography: Discovering Landforms and Bodies of Water using Play-Doh Modelling": 1 +"4th Grade Mathematics: Unraveling the Mysteries of Fractions through Virtual Reality Technology": 1 +"Unmasking the Secrets of the Roman Empire in 7th Grade Social Studies: The Aqueducts, The Introduction of Concrete and the Evolution of the Roman Alphabet": 1 +"2nd Grade Science: Discovering Metamorphosis in Butterflies Using Virtual Reality Technology": 1 +"7th Grade Literature: Delving into Greek Myths through Augmented Reality Technology": 1 +"Exploring the Green Forests: A Third Grade Geography Course on Photosynthesis and Forest Conservation": 1 +"11th Grade History: The Impact of Espionage during the Cold War Era": 1 +"4th Grade’s Journey to Understanding Earth’s Geological Layers: Learning about Rock Formations through Virtual Field Trips": 1 +"6th Grade Art: Oil Painting: Impressionist Period Inspired Masterpieces": 1 +"Kindergarten Language Arts: Magic in Narration - Using Puppet Show Techniques and Interactive Learning Tools": 1 +"8th Grade History: The Effect of the Industrial Revolution on Contemporary Manufacturing Methods": 1 +"3rd Grade Geography: Exploring Earth’s Landforms through Virtual Reality": 1 +"2nd Grade Music: Understanding Rhythm and Pitch through Xylophone Play": 1 +"1st Grade Science: Introduction to Weather Patterns and Their Impact on Our Lives": 1 +"6th Grade Art: Principles of Perspective and Shading in Pencil Sketching": 1 +"5th Grade Mathematics: The World of Fractions and Decimals through Interactive Puzzles": 1 +"4th Grade Language Arts: Enhancing Reading Comprehension through Storytelling and Drama": 1 +"7th Grade History: The Ancient Egyptian Civilization - Pyramids and the Role of the Nile River": 1 +"1st Grade Physical Education: Basic Motor Skills through Cooperative Games": 1 +"4th Grade Digital Art: Creating Animated Characters with Scratch Programming": 1 +"2nd Grade Writing: Boosting Creativity with Story Builders and Google Slides": 1 +"7th Grade Earth Science: Understanding Volcanoes through Interactive 3D Models and Simulations": 1 +"3rd Grade Mathematics: Fun with Multiplication and Division through Board Games": 1 +"2nd Grade Geography: Understanding World Maps and Compass Usage through Interactive Games ": 1 +"2nd Grade Mathematics: Comprehending Multiplication and Division using Counting Beads ": 1 +"2nd Grade Physics: Introduction to Simple Machines through Toy Experiments ": 1 +"2nd Grade Botany: Learning Plant Life Cycle through Garden Observations ": 1 +"6th Grade Chemistry: Discovering Atomic Structure with Interactive 3D Models ": 1 +"6th Grade History: The American Revolution and its Influence on Modern Democracy ": 1 +"4th Grade Literature: Improving Vocabulary and Reading Comprehension using Storytelling and Puzzles ": 1 +"6th Grade History: Unraveling the Mysteries of Ancient Egypt and their Hieroglyphic Writing System ": 1 +"10th Grade Business Studies: The Impact of Globalization on Local Businesses and 10 Ways to Adapt ": 1 +"7th Grade Sociology: Understanding Prehistoric Cultures and Their Use of Cave Paintings for Communication": 1 +"4th Grade Geography: Exploring the Earth’s Landforms through Interactive 3D Maps": 1 +"7th Grade History: The Influence of the Industrial Revolution on 19th Century Europe": 1 +"6th Grade Art: Understanding Color Theory and Painting Techniques through Digital Art Apps": 1 +"Understanding Biology: A 7th Grade Course on Human Anatomy using Virtual Reality and 3D Models": 1 +"1st Grade Science: Discovering the Growth Cycle of Plants through Hands-on Experiments": 1 +"8th Grade Music: Exploring Beethoven’s Symphonies through Orchestra and Music Notation Software": 1 +"4th Grade English: Learning Rhyme and Rhythm in Poetry through Audio Books and Interactive Exercises": 1 +"Preschool Mathematics: Learning Shapes and Patterns through Fun Games and Colorful Blocks": 1 +"3rd Grade Mathematics: Understanding Subtraction with Interactive Number Charts and Math Apps": 1 +"10th Grade History: Analyzing the Role of Technology and Innovation During the Space Race Era": 1 +"5th Grade Science: Discovering the Solar System through Augmented Reality": 1 +"10th Grade Literature: Tracing the Influence of Ancient Mythology in Modern Fantasy Fiction": 1 +"3rd Grade Social Studies: Understanding Community Roles through Role-Playing Games": 1 +"7th Grade Physical Education: The Impact of Wearable Fitness Trackers on Personal Goal Setting": 1 +"1st Grade Music: Creating Rhythmic Patterns with Handmade Percussion Instruments": 1 +"4th Grade Geography: Exploring World Landforms through Interactive 3D Models": 1 +"6th Grade Math: Understanding Probability through Dice and Card Games": 1 +"8th Grade Art: The Role of Photography in Documenting Historical Events": 1 +"Kindergarten Environmental Studies: Learning about Plant Life Cycles through Gardening": 1 +"9th Grade Physics: Investigating Newton’s Laws using Drone Technology.": 1 +"5th Grade Art: Exploring Abstract Drawing with Charcoal, Colored Pencils, and Digital Painting Software": 1 +"7th Grade Social Studies: The Influence of the Printing Press on the Renaissance and the Information Age": 1 +"3rd Grade Language Arts: The World of Personification and Alliteration through Virtual Storytelling Sessions": 1 +"1st Grade Music: Discovering Rhythm and Harmony with Hand Drums, Fun Apps, and Music Theory Games": 1 +"5th Grade History: Journeying Through Medieval Europe with Augmented Reality and Virtual Museum Tours": 1 +"2nd Grade Science: Understanding Plant Life Cycle with Seed Germination Experiments": 1 +"9th Grade Music: Studying Mozart’s Composition Style Through GarageBand and Ableton Live": 1 +"2nd Grade Mathematics: Understanding Addition and Subtraction Using Tangible Number Lines": 1 +"8th Grade Language Arts: Interpreting Robert Frost’s Works using SMART Boards and Zoom Classes": 1 +"4th Grade Mathematics: Conquering Multiplication with Number Grids and Educational Software": 1 +"2nd Grade French: Exploring Basic Conversations with Duolingo and Interactive Whiteboard Activities": 1 +"7th Grade Mathematics: Mastering Algebraic Expressions using Python in Problem Solving": 1 +"1st Grade Creative Writing: Improving Descriptive Skills through Clay Modeling and Storytelling": 1 +"Third Grade Art: Learning Color Theory and Composition through Digital Art Software": 1 +"2nd Grade Earth Science: Exploring Weather Patterns with Weather Station Data and Online Mapping Tools": 1 +"5th Grade History: Grasping World Cultures through Virtual Museum Tours": 1 +"3rd Grade English: Mastering Pronouns through Augmented Reality-based Grammar Games": 1 +"4th Grade Archaeology: Unearthing Ancient Greece through Virtual Excavations and 3D Artifact Reconstructions": 1 +"4th Grade Biology: Understanding Plant Life Cycle with Augmented Reality and Interactive Quizzes": 1 +"7th Grade Computer Science: Getting Started with Website Development using HTML and CSS": 1 +"4th Grade Mathematics: Exploring Fraction Concepts through Interactive Whiteboards": 1 +"8th Grade Physical Education: Developing Coordination and Balance with Virtual Reality Games": 1 +"5th Grade Science: Understanding Photosynthesis through Virtual Lab Experiments ": 1 +"1st Grade Math: Learning Numbers and Basic Addition using Interactive Smartboards": 1 +"6th Grade History: Discovering the Roman Empire through Virtual Reality Tours": 1 +"Kindergarten Music: Introduction to Rhythm and Melody using Handbells and Percussion Instruments": 1 +"9th Grade Literature: Analyzing Shakespeare’s Plays with Interactive Online Discussions": 1 +"2nd Grade Art: Painting with Watercolors - An Introduction to Color Mixing and Texture": 1 +"Advanced Oceanography for 4th Grade: Exploring Marine Life and Ecosystems through Virtual Field Trips": 1 +"7th Grade Physics: Understanding Force and Motion through Interactive Simulations": 1 +"4th Grade Geography: Exploring Earth’s Landforms with Interactive 3D Models and Google Earth": 1 +"3rd Grade Art: Enhancing Creativity through Digital Painting Tools and Techniques": 1 +"5th Grade Spanish: Boosting Language Skills with Rosetta Stone and Interactive Games": 1 +"Innovations in Learning: Implementing Oculus Rift, Leap Motion and Virtual Reality in 4th Grade Ancient Rome Studies": 1 +"7th Grade Economics: Grasping the Concept of Supply and Demand through Interactive Spreadsheet Simulations": 1 +"3rd Grade Biology: Using Digital Microscopy for Understanding Plant Cell Structures and Processes": 1 +"7th Grade Literature: Utilizing Digital Storyboards for Symbolism and Theme Analysis in Classic Novels": 1 +"Kindergarten Music: Learning Rhythm and Beat with Interactive Percussion Apps and Virtual Drums": 1 +"9th Grade History: The Impact of Telegraph Communication on the Industrial Revolution": 1 +"Sustainable Energy & Climate Change: A 5th Grade Science Course": 1 +"5th Grade Biology: Exploring Ecosystems through Virtual Reality Tours": 1 +"2nd Grade Art: Creating Masterpieces with Digital Painting Tools": 1 +"4th Grade History: Discovering Ancient Civilizations through Interactive Timeline Apps": 1 +"10th Grade Literature: Analyzing Modern Novels with Goodreads Discussions": 1 +"Exploring the Roman Empire: Aqueducts, Emperors, and the Colosseum in 5th Grade History": 1 +"7th Grade Music: Understanding Jazz Improvisation with Virtual Instruments": 1 +"9th Grade Civics: Exploring the U.S. Constitution using Augmented Reality": 1 +"The Impact of Impressionism on Contemporary Art: A Detailed Study of Monet’s Water Lilies in 7th Grade Art Appreciation": 1 +"8th Grade English Language Arts: Deciphering Metaphors in Classic Novels": 1 +"6th Grade Geometry: Learning about Prism and Pyramids using Tinkercad": 1 +"4th Grade Mathematics: Boosting Division Skills through Interactive Tablet Games": 1 +"10th Grade Art: The Evolution of Impressionism: A Study of Painting Techniques from Monet to Cézanne": 1 +"1st Grade Technology: Introduction to Robotics using Simple Programmable Toys": 1 +"12th Grade Health Education: Enhancing Flexibility and Endurance through Yoga and Pilates": 1 +"6th Grade Geography: Exploring Deserts: A Study of Sand Dunes and Oasis Ecosystems": 1 +"4th Grade Grammar: Mastering Verbs through Interactive Storytelling and Role-playing": 1 +"2nd Grade History: Discovering Ancient Civilizations through Interactive Virtual Tours": 1 +"Preschool Nature Studies: Learning about Seasons and Weather Changes with Nature Walks and Observations": 1 +"7th Grade Drama: Interpretation of William Shakespeare’s Romeo and Juliet and its Impact on Modern Drama": 1 +"Physical Education for 5th Graders: Improving Agility and Speed with Obstacle Course Training and Plyometric Exercises": 1 +"5th Grade Mathematics: Exploring Geometric Shapes with Augmented Reality Tools": 1 +"3rd Grade English: Journey into Storytelling and Creative Writing Techniques": 1 +"8th Grade Art: The Evolution of Impressionism and its Impact on Contemporary Art": 1 +"5th Grade Physical Education: Enhancing Soccer Skills with Virtual Reality and HoloLens": 1 +"8th Grade History: Delving into the French Revolution using Primary Sources and Interactive Timelines": 1 +"5th Grade Science: Exploring the Solar System and Planetary Movements through Virtual Reality": 1 +"3rd Grade Social Studies: Learning about Ancient Egyptian Civilization through Virtual Museum Tours": 1 +"8th Grade Music: Understanding the Complexity of Beethoven’s Symphonies using Audacity and Virtual Instruments": 1 +"3rd Grade Reading: Boosting Reading Fluency with Interactive Story Apps in Seesaw": 1 +"4th Grade Social Studies: The Influence of the Silk Road on Ancient Trade and Commerce": 1 +"5th Grade Geography: Understanding Weather Patterns and Climate Zones through Interactive Maps": 1 +"7th Grade Physics: Basic Principles of Electricity - A Study with Circuit Simulation Software": 1 +"4th Grade History: The Viking Exploration and Settlement - Journey into the Norse Culture": 1 +"3rd Grade Music: Exploring Rhythms and Melodies with Digital Music Creation Tools": 1 +"7th Grade Social Studies: The Rise and Influence of the Roman Empire": 1 +"6th Grade Art: 3D Modeling - Creating Virtual Sculptures with Tinkercad": 1 +"4th Grade Science: The Life Cycle of Butterflies - A Study with Live Observation and Digital Illustration": 1 +"8th Grade Philosophy: An Introduction to Greek Philosophers - Socrates, Plato, and Aristotle": 1 +"7th Grade Mathematics: Geometry in Nature - Exploring the Golden Ratio and Fibonacci Sequence": 1 +"5th Grade English: Developing Storytelling Skills through Comic Strip Creation": 1 +"1st Grade Music: Exploring Rhythm and Melody with Hand Drums and Xylophones": 1 +"4th Grade Science: Understanding the Solar System through Interactive 3D Models and Astrological Charts": 1 +"2nd Grade Geography: Discovering Landforms and Weather Patterns Through Interactive Maps": 1 +"3rd Grade Art: Understanding Composition and Perspective with Sketchbooks and Still Life": 1 +"5th Grade Social Studies: Exploring the Impact of Industrial Revolution on Modern Cities through Infographics and Timelines": 1 +"2nd Grade Physical Education: Introduction to Basic Yoga Poses and their Health Benefits": 1 +"3rd Grade Computer Science: Getting Started with Coding Basics with Scratch Programming": 1 +"A Detailed Study of Fitbit’s Sleep Tracker: Understanding Sleep Patterns in 4th Grade Health Class": 1 +"2nd Grade Drama: The Magic of Puppetry: Crafting Stories with Shadow Puppets and Marionettes": 1 +"5th Grade Mathematics: Mastering Fractions and Decimals through Interactive Online Games and Puzzles": 1 +"3rd Grade Spanish: Conversational Proficiency through Rosetta Stone and Interactive Role-Play": 1 +"2nd Grade Reading Comprehension: Enhancing Vocabulary and Syntax with Kindle Kids Edition": 1 +"4th Grade Visual Arts: Surrealism and Design Principles - An Emphasis on Pastels": 1 +"6th Grade Algebra: Simplifying Equations and Learning the Order of Operations with Mathway App": 1 +"2nd Grade Geography: An In-depth Study of Desert Ecosystems and Water Scarcity Issues": 1 +"7th Grade Geometry: Understanding Angles using Geogebra App and the Concept of Parallel Lines": 1 +"Pre-Kindergarten Life Science: Discovering Plant Life through Virtual Garden Tours": 1 +"5th Grade History: Exploring the Impact of the Light Bulb on Industrial Revolution in Technological Evolution ": 1 +"9th Grade Choir: The Art of Harmony - Choral Techniques in Choir: Studying Pitch and Tone": 1 +"8th Grade Health Education: Mastering Yoga Postures with the Daily Yoga App": 1 +"7th Grade Geography: Exploring the Role of Rivers and Mountains in Ancient Civilizations": 1 +"12th Grade Chemistry: Investigating Chemical Reactions with Virtual Lab Experiments": 1 +"5th Grade Environmental Science: An Extensive Investigation of Non-renewable Resources: Unraveling the Mysteries of Fossil Fuels": 1 +"3rd Grade Music: An In-depth Study of Mozart’s Symphonies using Violin, Music Software like Garageband, and Sound Mixing Techniques": 1 +"7th Grade Mathematics: Deciphering Mathematical Concepts through Robotics": 1 +"5th Grade Social Studies: Grasping 19th Century Social Changes Through Literature with Audio Book Analysis": 1 +"1st Grade Life Skills: Mastering Personal Hygiene with Interactive Games and Physical Demonstrations": 1 +"9th Grade History: The French Revolution’s Influence on Modern Politics: The Rise of Democracy": 1 +"3rd Grade Art: Understanding Form and Texture with Clay Sculpture": 1 +"Advanced 6th Grade Zoology: Examining the Migration Patterns of Birds through Tracking and Field Notes": 1 +"7th Grade Art: Exploring the Renaissance: Brush Techniques and Color Mixing": 1 +"5th Grade Mathematics: Geometry Basics through Interactive 3D Modeling": 1 +"10th Grade Computer Science: Understanding Artificial Intelligence with Python and TensorFlow": 1 +"5th Grade Social Studies: Democracy and Government: Learning through Virtual Parliament Simulation": 1 +"7th Grade Chemistry: Molecular Structures and Reactions with Virtual Lab Experiments": 1 +"Climate Change: A 7th Grade Science Course on Global Warming and Its Effects using Interactive Models": 1 +"2nd Grade History: Discovering Dinosaurs: Fossil Excavations with Simulated Archaeological Digs": 1 +"5th Grade Mathematics: Baking with Ratios: Understanding Proportional Relationships": 1 +"7th Grade History: The Influence of Medieval Castle Architecture on Modern-Day Structures": 1 +"11th Grade Social Studies: The Cold War Era: Influential Events and Their Repercussions on Modern Politics": 1 +"3rd Grade Geometry: Understanding Shapes and Their Properties Using Tangram Puzzles": 1 +"4th Grade Literature: Enhancing Reading Comprehension through Interactive Storytelling ": 1 +"3rd Grade Biology: Discovering Plant Life Cycles with Hands-On Gardening Projects": 1 +"5th Grade History: Journey through Ancient Civilizations Using Virtual Reality Tours": 1 +"4th Grade Earth Science: Understanding Volcanoes and Earthquakes Using Interactive 3D Models": 1 +"1st Grade Animal Science: Observing Insect Life Cycles with Live Ant Farms": 1 +"Unveiling the Mysteries of Space: A 6th Grade Astronomy Course Using Telescopes and Star Maps": 1 +"Mastering Division: Using Math Manipulatives for 3rd Grade Mathematics": 1 +"4th Grade Language Arts: Enhancing Vocabulary with Crossword Puzzles and Word Games": 1 +"6th Grade Physics: Exploring Simple Machines Through Lego Engineering Projects": 1 +"4th Grade Geography: Navigating Map Reading and Understanding the Earth’s Terrain through Virtual Reality": 1 +"9th Grade Literature: Delving into the World of Jane Austen: Novel Analysis and Character Study with Interactive E-books": 1 +"5th Grade Art: Exploring the Power of Abstract Art through Digital Collage and Mixed Media Techniques": 1 +"11th Grade History: The Cold War: Espionage Tactics and the Influence of Nuclear Arms Race on Diplomatic Relations": 1 +"Kindergarten Science: Learning about Animal Habitats through Augmented Reality Zoo Tours": 1 +"The Water Cycle and Weather Forecasting: A Second Grade Observation of Climatology and Sustainable Water Usage": 1 +"3rd Grade Mathematics: Mastering Multiplication using Tactile Number Tiles and Virtual Math Games": 1 +"7th Grade Theater: Bringing Greek Tragedies to Life through Improvisation and Mask Making": 1 +"1st Grade Science: An In-depth Study of Butterfly Metamorphosis using Time-lapse Photography and Interactive Apps": 1 +"The Crusades and Medieval Warfare: An Examination of their Impact on Modern Military Strategies: An 11th Grade History Course": 1 +"5th Grade Physical Education: Enhancing Agility and Strength through Fun Gymnastics Lessons": 1 +"9th Grade Literature: The Influence of Greek Mythology on Modern Fantasy Novels": 1 +"6th Grade Geography: Understanding Weather Patterns and Climate Zones using Interactive Maps": 1 +"Advanced Trigonometry in 12th Grade Math: Mastering Sinusoidal Functions with Graphing Calculators": 1 +"1st Grade Music: Introduction to Rhythm and Melody through Interactive Beat-Matching Games": 1 +"4th Grade English: Advanced Punctuation and Paragraph Structure through Creative Writing Workshops": 1 +"2nd Grade Science: Exploring the Solar System with DIY Planetariums": 1 +"3rd Grade History: The Impact of the Cotton Gin on the American Economy and 10 Related Innovations": 1 +"5th Grade Language Arts: Developing Reading Comprehension Skills through Mystery Novels": 1 +"2nd Grade Environmental Studies: Identifying Local Bird Species and Understanding Their Roles in Ecosystems using Field Guides and Bird Watching Tools": 1 +"5th Grade Math: Geometry and Shapes Exploration through Architectural Design": 1 +"3rd Grade English: Exploring Mythology and Enhancing Vocabulary using Virtual Reality": 1 +"10th Grade Painting: The Science of Color Theory: Focus on Shades and Tints": 1 +"7th Grade Music: Composing Melodies in Pop Music using Digital Audio Workstations": 1 +"12th Grade Geography: The Age of Exploration - Navigation, Trade Routes, and the Impact of the Compass: Journey 8": 1 +"10th Grade Health Education: The Impact of Meditation on Physical Well-being and Stress Management": 1 +"5th Grade Civics: Understanding the U.S Constitution through Interactive Quizzes": 1 +"Second Grade Science: Exploring the Life Cycle of Butterflies with Augmented Reality Tools": 1 +"Preschool Art: Learning Shapes and Colors through Finger Painting": 1 +"10th Grade Literature: The Impact of Existentialism in Fyodor Dostoevsky’s Works": 1 +"10th Grade Health Education: Exploring Nutrition and Exercise Plans for Adolescent Health": 1 +"8th Grade Physics: Exploring the Laws of Motion through Interactive Simulations": 1 +"2nd Grade Earth Science: Understanding Weather Patterns and Climate Change": 1 +"9th Grade Course on Modern Art Analysis: Exploring Picasso’s Cubism with Adobe Photoshop": 1 +"7th Grade Literature: Enhancing Storytelling Skills using Microsoft Word": 1 +"4th Grade Art: Techniques for Still Life Sketching with Pencils": 1 +"4th Grade Biology: An In-depth Study of Animal Adaptations": 1 +"7th Grade Music: Composing Melodies with GarageBand: A Comprehensive Guide": 1 +"2nd Grade Art: Introduction to Texture and Pattern Creation with Clay": 1 +"8th Grade Physical Education: Mastering Basketball, Leadership and the Use of Heart Rate Monitors": 1 +"1st Grade Science: Discovering the Life Cycle of Butterflies and Plants": 1 +"2nd Grade Math: Learning Addition and Subtraction through Interactive Touchscreen Games": 1 +"6th Grade English: Enhancing Reading Comprehension - Journey through Classic Literature with Augmented Reality": 1 +"Understanding the Solar System: An Interactive 3rd Grade Astronomy Course with Virtual Reality": 1 +"7th Grade Music: Exploring Rhythm and Melody: Hands-on Learning with Digital Music Composition Software": 1 +"4th Grade Physical Education: Agility and Flexibility: Fun Learning with Gymnastics and Pilates": 1 +"Oral Hygiene for 1st Graders: Understanding Toothpaste, Dental Floss, and Healthy Food Choices": 1 +"8th Grade History: Investigating the Significance of the Printing Press in the Renaissance Period": 1 +"2nd Grade Language Arts: Mastering Phonics and Vocabulary through Voice Recognition Apps": 1 +"Sixth Grade Geography: Navigating the World Map with Augmented Reality and Google Earth": 1 +"6th Grade Geography: The Amazon Rainforest: A Deep Dive into the World’s Largest Tropical Rainforest": 1 +"Creative Expression with Adobe Illustrator: 4th Grade Visual Arts Course": 1 +"11th Grade Physics: Grasping the Laws of Thermodynamics": 1 +"3rd Grade Arithmetic: Excelling in Division and Fractions": 1 +"7th Grade Life Science: Understanding Photosynthesis through Microscopic Exploration": 1 +"10th Grade Algebra: Quadratic Functions - Mastering Parabolas and Vertex Form": 1 +"8th Grade Sculpture: Intermediate Techniques: Molding with Plaster and Wire": 1 +"9th Grade Film Studies: Exploring Film Editing with Adobe Premiere Pro in Modern Cinema": 1 +"The American Revolution: The Role of the Boston Tea Party in Revolutionary Politics": 1 +"Steam Engines and the Industrial Revolution: A Comprehensive Study for 10th Grade World History": 1 +"5th Grade Mathematics: Exploring Geometry through Interactive Models and 3D Printing": 1 +"10th Grade Music: Composing Original Scores with Digital Audio Workstations in Film Studies": 1 +"Fourth Grade Environmental Science: Discovering Ecosystems with Virtual Reality Underwater Expeditions": 1 +"1st Grade Geography: Exploring Continents and Oceans through Interactive Globe and Augmented Reality": 1 +"8th Grade Physics: Understanding Energy Conversion through DIY Solar Panel Construction": 1 +"7th Grade English Literature: Analyzing Classic Novels using Literary Device Identification Software": 1 +"10th Grade Wellness: Understanding the Human Digestive System using 3D Anatomy Apps with emphasis on Nutrition ": 1 +"Advanced 12th Grade Chemistry: Investigating Molecular Structures using X-Ray Crystallography": 1 +"5th Grade World History: Journey through Ancient Civilizations using Virtual Reality Time Travel": 1 +"The Influence of the Telegraph on the Revolutionary War: A Course for 10th Grade American History": 1 +"4th Grade Geography: Exploring Earth’s Biomes with Virtual Reality Tours and Interactive Maps": 1 +"6th Grade Literature: Unearthing Symbolism in Classic Novels using Kindle Highlights and Quizlet": 1 +"5th Grade Science: Understanding Weather Patterns through DIY Weather Stations and Weather Map Analysis": 1 +"Interactive 2nd Grade Math: Understanding Fractions with Digital Manipulatives and Math Playground Games": 1 +"7th Grade Art: Exploring Watercolor Techniques and Still Life Compositions": 1 +"4th Grade History: Investigating the Ancient Egyptian Civilization through Hieroglyphics Decoding": 1 +"3rd Grade Mathematics: Grasping Geometry with Tangram Puzzles and Interactive Shape Recognition Games": 1 +"1st Grade Music: Introduction to Pitch and Tempo using GarageBand and Mini Percussion Instruments": 1 +"Eighth Grade History: The Renaissance Period and the Impact of the Printing Press: Gutenberg’s Revolution": 1 +"5th Grade Environmental Science: Exploring Renewable Energy through Windmill Construction and Energy Consumption Graphs": 1 +"5th Grade Music: Exploring Rhythm and Tempo with DIY Maracas": 1 +"7th Grade History: Decoding the Mayan Calendar: An Introduction to Mesoamerican Astrology": 1 +"11th Grade Art: Mastering Perspective Drawing with Procreate’s Sketching Tools": 1 +"8th Grade Chemistry: Discovering the Magic of Chemical Reactions through Homemade Volcanoes": 1 +"6th Grade Geography: A Virtual Expedition through the Amazon Rainforest using Interactive Maps and Timelines": 1 +"Understanding Quadratic Equations in 10th Grade Math using GeoGebra and the Parabola": 1 +"3rd Grade Mathematics: Enhancing Multiplication Abilities with Board Games and Interactive Flashcards": 1 +"6th Grade History: Unearthing Ancient Greece: The Art of Archaeology": 1 +"7th Grade Social Studies: Exploring the Role of Telegraph in the American Civil War": 1 +"7th Grade Art: Constructing Miniature Landscapes using Clay and Natural Materials": 1 +"5th Grade Geography: Uncovering Earth’s Biomes with Augmented Reality Maps": 1 +"3rd Grade Physics: Building Simple Machines with Lego and Blockly Programming": 1 +"8th Grade Civics: Understanding the U.S Constitution through Interactive Quizzes and Virtual Tours": 1 +"1st Grade Art: Exploring Shapes and Colors with Digital Painting Tools": 1 +"Analyzing Quantum Mechanics in Sci-Fi Literature: An In-depth 8th Grade Language Arts Course": 1 +"5th Grade Language Arts: Enhancing Reading Comprehension with Interactive E-books and Digital Quizzes": 1 +"6th Grade Music: Discovering Scales and Chords through Online Piano Lessons": 1 +"Exploring Ecosystems: Using Virtual Field Trips to Understand Biodiversity in 5th Grade Science": 1 +"2nd Grade Mathematics: Mastering Addition and Subtraction with Interactive Math Games": 1 +"4th Grade English: Creating Your Own Greek Myth with Digital Animation and Scratch Programming": 1 +"6th Grade Mathematics: Unraveling the Mysteries of Fractions and Decimals": 1 +"9th Grade English: Unpacking Symbolism in British Literature through the Victorian Era": 1 +"2nd Grade Science: Introduction to Animal Habitats - Exploring the Jungle with Virtual Reality": 1 +"8th Grade Art: Understanding Color Theory and Its Application in Digital Art": 1 +"10th Grade History: The Rise and Fall of the Roman Empire - An Interactive Journey with Virtual Tours": 1 +"Middle School Music: An Exploration of Jazz Improvisation with GarageBand": 1 +"5th Grade Social Studies: Native American Cultures - Tracing their History with Interactive Timeline": 1 +"3rd Grade Literature: Delving into Fairy Tales - Understanding Morals and Themes": 1 +"6th Grade Earth Science: The Magnificent World of Minerals - with Microscopic Examination": 1 +"The French Revolution: A Detailed Analysis in a 12th Grade History Course Using Augmented Reality.": 1 +"3rd Grade Geography: Exploring World Continents and Oceans through Interactive Map Games": 1 +"2nd Grade Art: Learning About Shadows and Light with Silhouette Drawing": 1 +"5th Grade History: The Significance of the Printing Press in the Renaissance Era": 1 +"1st Grade Mathematics: Introduction to Subtraction Concepts using Counting Beads": 1 +"4th Grade English: Understanding Figurative Language through Poetry Analysis": 1 +"8th Grade Physics: Exploring Gravity and Motion through Hands-On Experiments": 1 +"6th Grade Music: Discovering Melody and Harmony with the Guitar": 1 +"3rd Grade Biology: Understanding Plant Life Cycles through Time-lapse Photography and Gardening Projects": 1 +"7th Grade Math: Grasping Probability Concepts through Card Games ": 1 +"1st Grade Science: Exploring the Solar System through Interactive Space Puzzles": 1 +"4th Grade Science: Discovering Marine Life through Interactive Virtual Aquariums and Augmented Reality": 1 +"1st Grade Geography: Exploring the African Savanna Ecosystem through Virtual Safari Tours and Animal Crafting": 1 +"3rd Grade History: Discovering Ancient Egypt’s Pyramids through Virtual Reality and Hieroglyph Decoding": 1 +"2nd Grade’s Comprehensive Guide to Geometry: Learning Shapes and Patterns through Tangram Puzzles": 1 +"5th Grade Art: Exploring Renaissance Artists’ Techniques in Fresco Painting": 1 +"6th Grade: Mastering Fractions and Decimals through Interactive Digital Board Games": 1 +"Probing the Mysteries of Black Holes in Space Science: A 7th Grade Physics Course Using the Wormhole Theory": 1 +"The Influence of the Printing Press on Renaissance Literature: A 6th Grade Literature Exploration": 1 +"4th Grade Health: Understanding the Importance of Nutrition in Physical Growth: An In-depth Study": 1 +"1st Grade Music: Joyful Learning of Basic Rhythm and Melody through Interactive Musical Games": 1 +"8th Grade Chemistry: Unveiling the Wonders of Periodic Table through Interactive Learning": 1 +"9th Grade Physics: Exploring the Universe with Stellarium Sky Map App": 1 +"5th Grade History: The Industrial Revolution and Its Influence on the Fashion Industry": 1 +"2nd Grade Life Sciences: Understanding the Life Cycle of Butterflies using VR Experiences": 1 +"Crafting Narratives in 5th Grade Literature: Delving into Character Development through Storyboard That": 1 +"7th Grade Geography: Discovering the Secrets of Plate Tectonics with Google Earth": 1 +"Kindergarten Basic Mathematics: Learning Addition and Subtraction through Math Playground": 1 +"3rd Grade Art Appreciation: The Journey into Watercolor Painting - Exploring Shades and Tones": 1 +"The Age of Enlightenment: A Comprehensive 8th Grade History Course": 1 +"2nd Grade Reading: Dive into Classic Children Stories using Interactive E-books and ABCmouse": 1 +"6th Grade Art: Exploring Picasso’s Blue Period using Augmented Reality Apps": 1 +"3rd Grade Science: Understanding the Water Cycle - Focus on Condensation": 1 +"Exploring the Solar System: A 4th Grade Science Course using Virtual Reality with Oculus Rift": 1 +"3rd Grade Mathematics: Mastering Multiplication - Using Number Line, Arrays, and the Concept of Repeated Addition": 1 +"6th Grade History: Exploring Ancient Civilizations with Virtual Reality Tours": 1 +"1st Grade Geography: An Interactive Journey through the Continents Using Augmented Reality": 1 +"12th Grade Physical Education: Monitoring Heart Rate and Stamina with the Strava App": 1 +"4th Grade English: Building Language Skills through Interactive Grammar Games": 1 +"1st Grade Mathematics: Using Math Magic for Subtraction Fundamentals": 1 +"11th Grade Music: Unraveling Beethoven’s Sonatas through MuseScore Notation Software and Harmony Analysis": 1 +"3rd Grade Social Studies: Exploring Ancient Civilizations with Interactive Timeline Activities": 1 +"5th Grade Art: An Introduction to Impressionism through Virtual Art Galleries": 1 +"9th Grade Language Arts: Understanding Irony and Satire in Modern Literature": 1 +"7th Grade English Literature: Examining Allegory and Symbolism in Fantasy Novels using E-Readers and Note-taking Apps": 1 +"1st Grade Art: Discovering Shapes and Colors through Hands-on Sculpting and Painting Activities": 1 +"Climate Chronicles: A 6th Grade Science Course Investigating Climate Change with Thermometers, Hygrometers, and Anemometers": 1 +"3rd Grade Math: Division Demystified through Fun Puzzle Challenges": 1 +"7th Grade Art: Investigating Renaissance Art using Virtual Reality Tours": 1 +"1st Grade Spanish: Mastering Basic Vocabulary and Phrases through Interactive Language Games": 1 +"3rd Grade Mathematics: Enhancing Subtraction Skills with the Number Line and Math Manipulatives": 1 +"1st Grade Science: Introduction to Plant Life through Hands-on Gardening Activities": 1 +"7th Grade Mathematics: Mastering Algebra through Interactive Puzzles and Games": 1 +"4th Grade History: The Impact of the Printing Press on the Renaissance Era": 1 +"10th Grade Biology: Understanding Human Anatomy through Virtual Reality Exploration": 1 +"3rd Grade Mathematics: Grasping the Basics of Division with Fun and Interactive Tools": 1 +"5th Grade Discovering the Wonders of the Ocean: Focus on Marine Life and Underwater Exploration": 1 +"1st Grade Mathematics: Learning Addition and Subtraction through Play and Interactive Activities": 1 +"Kindergarten Art: Enhancing Creativity through Recycled Materials Craft Projects": 1 +"8th Grade Geography: Understanding Climate Zones Using Interactive Maps and Virtual Field Trips": 1 +"6th Grade Health: Promoting Physical Fitness through Sports and Outdoor Activities": 1 +"6th Grade Creative Writing: Crafting Fantasy Tales with Plotagon Animation Software and Detailed Characters": 1 +"11th Grade History: Exploring Patterns in Civil War Battles through Data Visualization Tools": 1 +"10th Grade Philosophy: Unpacking Ethics in Harper Lee’s ’To Kill a Mockingbird’": 1 +"6th Grade Health and Wellness: Maximizing Teamwork in Outdoor Sports using Garmin’s Fitness Tracker": 1 +"2nd Grade Earth Science: Exploring Wind Energy Conversion for Sustainable Practices": 1 +"2nd Grade Earth Science: Investigating Local Weather Patterns using Thermometers, Anemometers, and Weather Satellite Images": 1 +"7th Grade Literature: Decoding Allegory in J.K. Rowling’s Harry Potter Series through Book-to-Movie Comparison": 1 +"3rd Grade Reading: Improving Understanding with Interactive Storytelling and Digital Book Highlights": 1 +"4th Grade Social Studies: Navigating Continental Drift with Google Earth and Interactive Globe Apps": 1 +"5th Grade Astronomy: Exploring Saturn’s Rings using Stellarium Sky Map Software and Radio Telescopes": 1 +"3rd Grade Science: Exploring the Solar System with Interactive Planet Models": 1 +"1st Grade Language Arts: Learning Alphabet and Phonics through Fun Storytelling": 1 +"5th Grade Geography: Understanding World Maps using Virtual Reality Tours": 1 +"9th Grade Physical Education: Perfecting Basketball Techniques with Motion Sensing Technology": 1 +"1st Grade Health: Encouraging Hydration with Interactive Water Tracking Charts": 1 +"3rd Grade History: The Medieval Era - The Role of Knights and Castles": 1 +"1st Grade Physical Education: Introduction to Soccer with Ball Control Exercises": 1 +"6th Grade Mathematics: Grasping Multiplication using Interactive Tablet Games": 1 +"5th Grade Social Studies: Studying Industrial Revolution through the Lens of Inventions": 1 +"8th Grade Art: Exploring Renaissance Artists through the Analysis of Fresco Paintings": 1 +"8th Grade Digital Art: Exploring Pixel Art Techniques Using Photoshop": 1 +"6th Grade Sculpture: Creating Lifelike Figures with Clay Modeling Techniques": 1 +"Football: Mastering Defensive Strategies through VR Simulation in 9th Grade Physical Education": 1 +"2nd Grade Reading: Enhancing Vocabulary and Reading Speed Using Interactive iPad Apps": 1 +"7th Grade Biology: Investigating Marine Life through pH Level Analysis Using Colorimetric Tests": 1 +"1st Grade Science: Discovering the Growth Stages of Plants Using Classroom Greenhouse Observations": 1 +"5th Grade Music: Exploring Mozart’s Symphonies Through Violin Practice and Digital Recording Using GarageBand Software": 1 +"Fourth Grade Piano: Mastering Scales and Chords using Synthesia Game Lessons": 1 +"3rd Grade History: Papyrus Scrolls - Ancient Documents with a Lasting Legacy": 1 +"5th Grade English: Grammar Enhancement through Interactive Quizzes and E-Learning on Google Classroom.": 1 +"7th Grade Art: Exploring Textures and Patterns with Clay Modeling Techniques ": 1 +"Medieval European Castles and the Use of Arch and Vault in Masonry: An Interactive Study for 5th Graders": 1 +"9th Grade Algebra: Exploring Equations and Inequalities through Graphical Representations on Digital Platforms": 1 +"2nd Grade Mathematics: Discovering Division with Fun Number Games ": 1 +"Kindergarten Art: Exploring Lines and Shapes with Interactive Drawing Tools ": 1 +"5th Grade Geography: Understanding Plate Tectonics through Seismography and Earthquake Simulations ": 1 +"12th Grade Biology: Decoding Evolution with Darwin’s Theory and Fossil Records ": 1 +"Kindergarten Music: Learning Melodies with Interactive Piano Apps ": 1 +"1st Grade Health: Discovering Hygiene through Storytelling and Role-Playing Games ": 1 +"3rd Grade Physical Education: Boosting Balance and Flexibility through Basic Yoga Poses": 1 +"1st Grade Math: Learning Addition and Subtraction through Interactive Games": 1 +"8th Grade Literature: An Exploration of Metaphors and Similes in Modern Poetry": 1 +"History of Ballet: Understanding Pavlova’s Influence on Pointe Technique in 5th Grade Dance Studies": 1 +"Decoding Cryptography: The Enigma Machine’s Role in World War II - An Advanced 9th Grade Math Course": 1 +"12th Grade Photography: Mastering Light and Shadow with Digital Cameras": 1 +"5th Grade Geography: The Great Pyramids - Discovering the Role of Ancient Egyptian Mathematics in Monument Construction": 1 +"Augmented Reality Study of Ecosystems: A 4th Grade Biology Course Using Smartphone AR Technology": 1 +"3rd Grade Physics: Simple Machines Explored Through Interactive Models": 1 +"7th Grade Health Education: Perfecting Yoga Poses with Posture Analysis Technology": 1 +"10th Grade Music: Harmony of Jazz - Understanding Saxophone Vibrato through Sound Wave Analysis": 1 +"5th Grade Math: Understanding Fractions through Baking Measurements": 1 +"Preschool Music: Exploring Rhythms and Melodies using Handmade Instruments ": 1 +"3rd Grade Geography: Marvels of Mountains: Understanding Elevation and Topography": 1 +"9th Grade Drama: Fundamentals of Acting: Embodying Character through Monologues": 1 +"2nd Grade Technology: Interactive Storytelling and Character Design Using Scratch ": 1 +"5th Grade Biology: The Fundamentals of Human Body Systems and Nutrition Analysis": 1 +"3rd Grade Art: Comprehending Texture and Form through Clay Modeling": 1 +"1st Grade History: Exploring Family Trees and Ancestry using Interactive Charts": 1 +"4th Grade Physics: Learning the Laws of Motion with DIY Roller Coaster Projects: Utilizing Everyday Objects": 1 +"3rd Grade Geography: Exploring World Cultures through Virtual Reality Tour using Google Earth VR.": 1 +"2nd Grade Physical Education: Fun with Yoga Poses: Understanding Flexibility and Balance": 1 +"6th Grade Geography: A Virtual Tour Around the World: Exploring Different Cultures and Landforms": 1 +"9th Grade Art: The Renaissance Period: A Deep Dive Into Leonardo da Vinci’s Techniques": 1 +"6th Grade: Introduction to World History: The Impact of the Industrial Revolution": 1 +"11th Grade History: The Evolution of Democracy: From Ancient Athens to Modern Times": 1 +"6th Grade Dance: Learning Rhythm and Timing Through Bollywood Dance Steps": 1 +"2nd Grade Language Arts: The Magical World of Words: An Adventure in Spelling": 1 +"2nd Grade Health Education: The Importance of Hygiene: Fun DIY Soap Making": 1 +"5th Grade Chemistry: A Journey Into the World of Elements and Compounds Through Colorful Experiments": 1 +"7th Grade Mathematics: Understanding Geometry Through Architecture: The Wonders of the Pyramids": 1 +"8th Grade Physics: Understanding Gravity and Motion through Experimenting with Pendulum Swings": 1 +"6th Grade Anatomy: Learning Musculoskeletal System through 3D Printing Models": 1 +"Introduction to Classical Music: A 3rd Grade Exploration Using Virtual Instruments & Ludwig van Beethoven’s Symphonies": 1 +"3rd Grade Art: Unveiling Colors and Shapes through Paint Mixing and Collage Techniques": 1 +"Kindergarten Zoology: Classifying Animal Types with Interactive Augmented Reality Zoo Tours": 1 +"4th Grade Mathematics: Mastering Geometry Concepts through Tangible Manipulatives and Digital Drawing Tools": 1 +"9th Grade Geography: Exploring Earth’s Landforms through Virtual Reality Expeditions": 1 +"2nd Grade Environmental Science: Understanding Weather Patterns through Interactive Cloud Chambers and Weather Station Kits": 1 +"Investigating Local Herbivore Diets: A 2nd Grade Environmental Studies Course Using Garden Observations and Food Web Diagrams": 1 +"Advanced Algebraic Techniques in 11th Grade Math: Factorizing Polynomials using Graphing Calculators and the Quadratic Formula": 1 +"4th Grade Geography: Understanding the Water Cycle and Its Impact on Climate": 1 +"8th Grade Physical Education: The Art of Fencing - An Introduction to Parries and Ripostes with Interactive 3D Models": 1 +"10th Grade History: The Influence of Railroads in the Expansion of the American West": 1 +"8th Grade World History: Deciphering the French Revolution through the Eyes of Peasantry": 1 +"10th Grade Physical Education: Enhancing Flexibility and Strength through Pilates and Bodyweight Exercises": 1 +"6th Grade Science: The Solar System: Journey Through Planets and Their Moons": 1 +"3rd Grade History: The Discovery of Fire in Prehistoric Times": 1 +"2nd Grade Elementary Health: Basics of Hygiene and the Importance of Handwashing": 1 +"5th Grade History: The Significance of the Printing Press during the Renaissance": 1 +"8th Grade Music: A First Look at Jazz - Understanding Tempo, Rhythm, and Improvisation.": 1 +"3rd Grade Physical Education: Embracing Teamwork Through Kickball Techniques and Strategies": 1 +"5th Grade Science: The Wonders of Weather: Interactive Experiments Understanding Weather Patterns": 1 +"7th Grade Geography: Investigating River Systems and Erosion with Virtual Reality": 1 +"Discovering 8th Grade Physics: A Comprehensive Study of Lenses, Mirrors & Light Rays using Laser Experiments": 1 +"1st Grade Music: Exploring Beat and Harmony with Fun Music Games": 1 +"5th Grade Physical Education: Mastering Volleyball: Serving and Team Dynamics": 1 +"Elementary Mathematics: Unraveling the Mystery of Addition and Subtraction with Number Lines": 1 +"3rd Grade Mathematics: Diving into Decimals with Interactive Math Apps": 1 +"7th Grade History: Ancient Greek Societies and Their Remarkable Acropolis": 1 +"9th Grade Health: Understanding the Impact of Exercise and Sleep on Mental Health using Health Tracker Apps": 1 +"6th Grade Literature: Enhancing Reading Comprehension with Interactive eBooks": 1 +"3rd Grade Science: Exploring the Solar System using Virtual Reality": 1 +"11th Grade Physical Education: Understanding Biomechanics through Dance and Movement": 1 +"Mastering Multiplication through Board Games and Interactive Tools in 3rd Grade Mathematics": 1 +"2nd Grade Art: Understanding Shapes and Patterns with Clay and Origami": 1 +"8th Grade Health: Tracking Physical Activity with Fitbit and Health Apps": 1 +"5th Grade History: The Age of Discovery - Utilizing Maps and Navigation Tools": 1 +"11th Grade Art: Creating 3D Models using Tinkercad and 3D Printing": 1 +"2nd Grade Math: Exploring Fractions through Cooking and Baking": 1 +"8th Grade Science: The Chemistry of Soap Making and the Role of pH Levels": 1 +"2nd Grade Science: Exploring Plant Life Cycles through Terrarium Projects": 1 +"4th Grade History: Understanding Roman Emperors with Augmented Reality and 3D Printing": 1 +"5th Grade English: Exploring Myths and Legends with Interactive e-Books and Kindle": 1 +"10th Grade Health & Fitness: Enhancing Flexibility and Strength through Pilates and Tai Chi": 1 +"2nd Grade Physical Education: Developing Skills in Gymnastics & Basketball Shooting Techniques using Fitness Balls": 1 +"8th Grade English: An Adventure into Short Stories and Novels using Spotify Audiobooks": 1 +"Innovative 5th Grade Math: Mastering Multiplication and Division Concepts Using Smartboard Games and Virtual Manipulatives": 1 +"10th Grade Geometry Basics: Uncovering the Mysteries of Quadrilaterals and Circles": 1 +"3rd Grade Art: Discovering Digital Drawing with Adobe Fresco for Kids": 1 +"8th Grade History: The Colosseum: Architectural Marvels of Ancient Rome": 1 +"5th Grade Science: Exploring Ecosystems with Virtual Reality: Forests, Oceans, and Deserts": 1 +"7th Grade Art: Interpreting Emotions through Abstract Expressionism using Oil Pastels and Canvas": 1 +"9th Grade Mathematics: Unraveling the Mysteries of Algebra using Mathematical Software": 1 +"4th Grade History: Discovering the Middle Ages through the Art of Illuminated Manuscripts and Castle Architecture": 1 +"High School Drama: Understanding Character Development through the Study of Shakespearean Monologues": 1 +"2nd Grade Mathematics: Addition and Subtraction Mastery with Interactive Board Games": 1 +"11th Grade Music: Examining Beethoven’s Moonlight Sonata Through Music Production Software, Beat Mapping, Key Changes, and the Theory of Counterpoint": 1 +"Kindergarten Art: Exploring Colors and Textures with Finger Paints and Mixed Media": 1 +"9th Grade Social Studies: Understanding Human Rights through Virtual Simulations and Constitutional Principles": 1 +"7th Grade Music: Discovering Rhythm and Tempo with Percussion Instruments and Music Sequencing Software": 1 +"4th Grade Geography: Exploring World Cultures through Virtual Field Trips": 1 +"1st Grade Mathematics: Fun with Numbers - Learning Subtraction through Interactive Activities ": 1 +"5th Grade Art: Discovering the Basics of Drawing and Painting with Digital Art Tools": 1 +"7th Grade Science: Introduction to Physics - Learning about Forces and Motion through Experiments": 1 +"6th Grade Health: The Importance of Physical Fitness through Fun Exercise Routines": 1 +"7th Grade English: Enhancing Writing Skills through Story Creation and Peer Review": 1 +"2nd Grade Science: Basics of Animal Habitats through Interactive 3D Models": 1 +"5th Grade Music: Discovering the Magic of Melodies with Keyboard and Notation Software": 1 +"4th Grade Environmental Studies: Understanding Weather Patterns through DIY Meteorology Projects": 1 +"3rd Grade Mathematics: Mastering Multiplication through Card Games and Online Challenges": 1 +"7th Grade Science: Exploring the Mysteries of the Ocean - Marine Biology and Submarines": 1 +"Advanced Weather Monitoring for Climate Change Mitigation: 7th Grade Geography Course": 1 +"2nd Grade Mathematics: Understanding Multiplication and Division using Animated Storytelling": 1 +"5th Grade Science: In-depth Examination of Earth’s Ecosystems Using the iNaturalist Mobile Application": 1 +"9th Grade Literature: Mastering Metaphor and Symbolism in Poetry through Virtual Classroom Debates": 1 +"2nd Grade Course: Grasping Measurement and Time Concepts with Interactive Digital Clocks": 1 +"10th Grade Literature: Boosting Comprehension and Analytical Skills Using Audible Audiobooks": 1 +"2nd Grade Introduction to Animals: Exploring the African Savannah with Augmented Reality": 1 +"Fitness and Health: Understanding the Role of Physical Activity in 9th Grade PE using Fitness Tracker Apps": 1 +"11th Grade Art: Discovering 3D Sculpture with Tinkercad’s Extrusion Technique": 1 +"8th Grade Health Education: Comprehensive Understanding of Nutrition and Diet using Food Pyramid Models": 1 +"Mastering Algebra: A Detailed 10th Grade Mathematics Course on Equations and Inequalities": 1 +"3rd Grade Science: Exploring Marine Life Ecosystems with ROV Submarine Kits, pH Testers, Shark Documentaries, and Starfish Dissection": 1 +"5th Grade Language Arts: Mastering Storytelling on Chromebooks using ProWritingAid and Final Draft for Editing": 1 +"Kindergarten Music: Pitch and Melody Basics with Interactive Piano Apps": 1 +"10th Grade Physics: Exploring Quantum Mechanics through Augmented Reality Simulations": 1 +"Kindergarten Art and Texture: Discovering Paper Mache Crafting with Balloons": 1 +"5th Grade Science: Understanding Weather Patterns through Experiments and Interactive Software": 1 +"3rd Grade Mathematics: Division Essentials and Beyond with Touchscreen Tablets and Counting Beads": 1 +"Sixth Grade Social Studies: The Impact of the Industrial Revolution on Modern Societies and Economies": 1 +"5th Grade Mathematics: Understanding Fractions with Interactive Software": 1 +"Advanced Biology for 12th Graders: Understanding Photosynthesis through 3D Animation": 1 +"6th Grade World History: Exploring Ancient Civilizations with Augmented Reality": 1 +"8th Grade Art: Mastering Watercolor Painting Techniques with Brush Varieties": 1 +"5th Grade Science: Investigating the Solar System using Virtual Planetariums": 1 +"11th Grade Literature: In-depth Analysis of Hemingway’s Novels using Semantic AI": 1 +"9th Grade Geography: The Impact of Deforestation on Rainforests and 10 Strategies for Restoration using Drone Reforestation": 1 +"6th Grade Art: Creating Landscape Pastels with Oil Pastels": 1 +"2nd Grade English: Boosting Vocabulary with Interactive E-books and Word Games": 1 +"Kindergarten Reading: Alphabet Familiarization with Augmented Reality Flashcards": 1 +"4th Grade Environmental Science: Understanding Climate Change through Interactive Experiments": 1 +"6th Grade Geography: The Amazon Rainforest - Its Diverse Ecosystems Explored through Virtual Field Trips": 1 +"Kindergarten Music: Discovering Rhythm and Melody with Simple Percussion Instruments": 1 +"6th Grade History: The Egyptian Pyramids - Unraveling Mysteries of Ancient Egypt": 1 +"1st Grade Earth Science: Discovering Local Plants and Their Growth Cycles": 1 +"7th Grade Chemistry: Exploring Chemical Reactions through Fun Kitchen Experiments": 1 +"4th Grade Mathematics: Engaging with Multiplication and Division through Interactive Puzzles": 1 +"2nd Grade Social Studies: Exploring Community Roles Through Role-Play and Storytelling": 1 +"Learning Soccer Strategies Through the Science of Angles: A 8th Grade Physical Education Course": 1 +"4th Grade Health: Understanding the Importance of Vitamins and Minerals in Our Daily Diet": 1 +"8th Grade Health: The Science of Nutrition - Understanding Dietary Needs and the Food Pyramid": 1 +"The Role of Microscopes in 4th Grade Science: Exploring Cellular Structures and Functions": 1 +"5th Grade English: Utilizing Flipgrid’s Video Feedback in Narrative Writing": 1 +"1st Grade Math: Learning Counting and Basic Geometry with Fun Puzzles": 1 +"Second Grade Language Arts: Mythology Exploration with Augmented Reality Storytelling Apps": 1 +"Kindergarten Earth Science: Discovering the Water Cycle through Terrarium Projects": 1 +"3rd Grade Science: Exploring Marine Life using Virtual Reality, Sea Creature Fact Sheets, and Oceanography Videos": 1 +"12th Grade Chemistry: Comprehensive Study of Organic Compounds with Molecular Modeling Software": 1 +"7th Grade Language Arts: Interpreting Symbolism in Literature with Plotagon Story Animation Software": 1 +"6th Grade Science: Examining Desert Biomes with Parrot ANAFI Thermal Drones": 1 +"4th Grade Biology: Discovering Animal Adaptations through Virtual Tours and Interactive Games": 1 +"1st Grade Physical Education: Introduction to Basic Dance Moves and Rhythmic Motion": 1 +"Studying Climate Change with Thermal Imaging and Ice Core Sampling: A 6th Grade Science Course ": 1 +"Understanding the Influence of Media During the Vietnam War: An 11th Grade History Course": 1 +"8th Grade Music: Delving into Beethoven’s Symphonies through Music Analysis and Digital Composition": 1 +"6th Grade Geography: Exploring Coastal Erosion using Augmented Reality and Aerial Photography": 1 +"4th Grade History: Journey through Ancient Egypt with Virtual Reality Excursions": 1 +"2nd Grade Science: Introduction to Plant Life Cycle through Interactive Virtual Reality": 1 +"Dental Hygiene for 1st Graders: Learning about Toothbrushes, Floss, and Healthy Eating Habits": 1 +"10th Grade Music: Harmonious Journey - Investigating Piano Sonority through Digital Sound Synthesis": 1 +"4th Grade Science: Discovering Ecosystems through Virtual Forest Tours and Interactive Food Chain Games": 1 +"7th Grade Music: Understanding Scales and Chords with the Digital Piano and Music Theory Apps": 1 +"1st Grade English: Exploring Storytelling and Narrative in Children’s Literature through Shadow Puppetry": 1 +"5th Grade Art: Introduction to Perspective and Shading Techniques through Charcoal Drawings": 1 +"6th Grade Geography: Traversing the Solar System: From Planetary Models to Google Mars": 1 +"7th Grade History: Civil Rights Movement - An Examination of the Montgomery Bus Boycott and the Use of Nonviolent Protest": 1 +"2nd Grade Life Skills: The Importance of Time Management: An Interactive Introduction to Schedules and Calendars": 1 +"4th Grade History: The Impact of the Steam Engine on the Industrial Revolution": 1 +"3rd Grade Art: Exploring Texture and Pattern through Paper Mache and Collage": 1 +"5th Grade Music: The Basics of Composing with Digital Audio Workstations and MIDI Keyboards": 1 +"3rd Grade Art: Exploring Color Theory through Digital Painting Apps": 1 +"4th Grade Geography: Understanding World Cultures with Virtual Reality Tours": 1 +"2nd Grade English: Developing Reading Skills through Storytelling and Interactive E-books": 1 +"5th Grade History: The Industrial Revolution - The Steam Engine and the Evolution of Transportation": 1 +"6th Grade Science: Grasping Physics Concepts through Lego Building Challenges": 1 +"3rd Grade Music: Understanding Melody and Harmony through Singing and Music Apps": 1 +"4th Grade Mathematics: Mastering Geometry with Augmented Reality Shapes and Puzzles": 1 +"Kindergarten Art: Introduction to Shapes and Colors through Hands-on Craft Activities": 1 +"2nd Grade Science: Discovering Life Cycles using Interactive Animal Models": 1 +"5th Grade English: Improving Writing Skills with Story Creation Software and Virtual Workshops": 1 +"8th Grade Music: Creating Beats with Digital Audio Workstations and MIDI Drums": 1 +"Health Education: Understanding Nutrition through 6th Grade Cooking Classes": 1 +"7th Grade Music: Jazz Improvisations and the Skill of Playing Saxophone": 1 +"The Renaissance Period: The Birth of Astronomy - A 4th Grade Science Course": 1 +"3rd Grade Music: Exploring the World of Percussions through Online Jam Sessions": 1 +"2nd Grade English: Narrative Writing Using Digital Illustrations in StoryJumper": 1 +"Kindergarten Music: Discovering Pitch Through Singing Nursery Rhymes ": 1 +"6th Grade: Exploring European History: The Influence of the Printing Press on Knowledge Dissemination": 1 +"7th Grade History: Unraveling the Wonders of Ancient Egyptian Civilization: Pyramids and Their Significance in Culture": 1 +"Biodiversity and Conservation: The Importance of Rainforests in 5th Grade Biology Studies.": 1 +"5th Grade Mathematics: Mastering Multiplication and Division with Practical Applications": 1 +"Third Grade Science: Learning about Gravity through Paper Airplane Experiments": 1 +"Understanding the Impact of Deforestation: 3rd Grade Environmental Studies": 1 +"7th Grade Math: Exploring Algebra with Virtual Manipulatives": 1 +"7th Grade Music: Starter String Instruments - Violin Lessons": 1 +"3rd Grade Mathematics: Learning about Volume and Surface Area through Interactive Geometry Games": 1 +"Kindergarten Science: Discovering Nature with Outdoor Scavenger Hunts": 1 +"3rd Grade Mathematics: Analyzing Bar Graphs with Google Sheets using Population Data": 1 +"1st Grade Spanish: Learning Basic Words with Rosetta Stone and Fun Memory Games": 1 +"5th Grade Science: Understanding the Solar System using Augmented Reality Tools": 1 +"5th Grade Science: Exploring the Solar System through Virtual Reality": 1 +"8th Grade Physical Education: Improving Basketball Skills with Motion Tracking Technology": 1 +"3rd Grade History: Understanding the Evolution of Transportation and Its Impact on Society": 1 +"6th Grade Geography: Discovering World Landforms with 3D Printing Technology": 1 +"2nd Grade Physical Education: Fun with Hula Hoops and Agility Ladders": 1 +"4th Grade Art and Design: Creating Mosaics with Recycled Materials": 1 +"7th Grade Mathematics: Boosting Geometry Skills by Building with Legos": 1 +"5th Grade Geography: Learning about Biomes and Ecosystems through Augmented Reality": 1 +"11th Grade Social Studies: Understanding Urban Planning through Minecraft and GIS Technologies": 1 +"8th Grade English: Exploring the Influence of Magic Realism in Modern Literature": 1 +"5th Grade History: The Medieval Age - The Role of Castles in Defense Strategies": 1 +"2nd Grade Social Studies: Learning about Neighborhood Dynamics through Local Field Trips": 1 +"2nd Grade Environmental Studies: Studying Plant Life Cycles in a Home Garden": 1 +"Digital 5th Grade Art: Integrating Shapes and Adobe Illustrator in Learning Geometric Design": 1 +"12th Grade Physics: Thermodynamics and its Application in Renewable Energy Technologies": 1 +"5th Grade Geography: Understanding the Nile River through Virtual Tours and Satellite Images": 1 +"9th Grade Art: Mastering Watercolor Techniques with Real-Life Observations": 1 +"9th Grade Sociology: Examining the Influence of Pop Culture on Youth Behavior": 1 +"4th Grade Mathematics: Mastering Division using the Mathway App": 1 +"7th Grade Mathematics: Applying Python Programming to Understand Probability": 1 +"10th Grade History: The Role of Espionage in Shaping Cold War Politics": 1 +"2nd Grade Science: Exploring the Concepts of Weight and Mass through Interactive Balancing Activities": 1 +"5th Grade: Grasping the Basics of Economics and Market Structures in Social Studies Using Simulations": 1 +"7th Grade Biology: Plant Cells and Photosynthesis - A Detailed Examination of Chloroplast Functions": 1 +"9th Grade Art History: A Journey into the World of Abstract Expressionism during the Post-World War II Era": 1 +"6th Grade Art: Developing Landscape Sketches using Adobe Illustrator and Vector Graphics": 1 +"Investigating the Impact of Blacksmithing on Medieval Warfare Strategies: A Comprehensive 9th Grade History Course": 1 +"5th Grade English: The Power of Storytelling - An Analysis of Pixar’s Influence on Animation Narratives": 1 +"Audio Mixing in 8th Grade Music: Lessons on Audacity, Track Layering and the Use of Reverb": 1 +"6th Grade Social Studies: The American Civil Rights Movement - The Significance of Sit-ins and Freedom Rides": 1 +"3rd Grade Physical Education: Understanding Basketball Fundamentals with Hoops and Balls": 1 +"6th Grade Mathematics: Exploring Geometry Through Online Origami Lessons": 1 +"5th Grade History: The Ancient Egyptians - The Construction and Purpose of Pyramids": 1 +"3rd Grade Mathematics: Comprehending Multiplication through Everyday Shopping Scenarios": 1 +"1st Grade Science: Unraveling the Mysteries of the Solar System with Planetarium Software": 1 +"9th Grade History: Assessing the Impact of the Industrial Revolution on Modern Society": 1 +"8th Grade Physics: Comprehending Laws of Motion through Roller Coaster Design Software ": 1 +"2nd Grade Language Arts: Boosting Reading Comprehension with Interactive Storytelling Apps": 1 +"11th Grade Health Education: Improving Physical Fitness through Diet and Exercise Programs": 1 +"6th Grade Chemistry: Understanding Elements and Compounds with 3D Models and Simulations": 1 +"4th Grade Geography: Exploring World Maps and Landforms using Augmented Reality": 1 +"8th Grade Mathematics: Understanding Algebra through Interactive Digital Puzzles": 1 +"3rd Grade History: Learning about Ancient Rome through Virtual Reality Tours": 1 +"7th Grade Language Arts: Enhancing Descriptive Writing using Interactive Imagery Exercises": 1 +"5th Grade Art: Mastering Pottery Techniques through Virtual Clay Modelling": 1 +"10th Grade Science: Dissecting the Human Body - A Virtual Reality Biology Experience": 1 +"1st Grade Mathematics: Interactive Learning of Multiplication and Division with Digital Beads": 1 +"8th Grade Music: Learning Musical Harmony through Interactive Digital Keyboards": 1 +"7th Grade Social Studies: The Impact of Industrial Revolution on Modern Society": 1 +"9th Grade Literature: Exploring Themes and Motifs in Shakespearean Plays with Audio Dramatizations": 1 +"7th Grade Geography: Charting the World: An Exploration of Cartography and its Impact on Exploration": 1 +"8th Grade Biology: Decoding Genetics: A Study of Mendelian Inheritance and Punnett Squares": 1 +"6th Grade History: The Industrial Revolution’s Effect on Society: An Examination of Urbanization and Child Labor": 1 +"11th Grade Environmental Science: The Impact of Hydraulic Fracturing on Ecosystems: A Look at Aquifer Contamination": 1 +"6th Grade Biology: Understanding Animal Adaptations: A Study of Camouflage and Mimicry": 1 +"1st Grade Science: Introduction to the Four Seasons: Learning through Interactive Weather Charts": 1 +"4th Grade Math: Building Numerical Fluency with Multiplication and Division through Card Games": 1 +"10th Grade Physics: Grasping the Principles of Light and Color Using Prism Experiments": 1 +"9th Grade Biology: Human Anatomy - An In-Depth Exploration of the Cardiovascular System with 3D Models": 1 +"6th Grade Literature: Introduction to Poetry - Understanding Rhyme and Meter with Classic and Contemporary Poems.": 1 +"3rd Grade Science: Exploring Recycling and Composting with Interactive Experiments": 1 +"4th Grade History: The Civil War and the Evolution of Telegraph Systems": 1 +"1st Grade Mathematics: Learning Numbers with Fun Math Games and Puzzles": 1 +"Decoding the Secrets of Braille: An 8th Grade English Course on Language for the Visually Impaired": 1 +"6th Grade Chemistry: An Introduction to The Periodic Table using Interactive Learning Tools and 3D Models": 1 +"3rd Grade Physical Education: Basics of Basketball: Dribbling and Shooting Techniques": 1 +"Kindergarten History: Discovering the Significance of Fire in Early Human Life": 1 +"1st Grade Mathematics: Understanding Basic Multiplication and Division using Colorful Counting Sticks": 1 +"4th Grade Geography: Exploring Continental Drift with Interactive Globe Models": 1 +"3rd Grade Mathematics: Learning Multiplication and Division Through Math Games and Educational Apps": 1 +"4th Grade Science: Exploring Ecosystems and Food Chains through Interactive Simulations": 1 +"9th Grade English: Enhancing Essay Writing Skills through Grammarly and Google Docs": 1 +"6th Grade Mathematics: Mastering Fractions and Decimals using Prodigy Math Game": 1 +"7th Grade History: The Role of Propaganda in World War II": 1 +"1st Grade Music: Introduction to Rhythm and Melody through Interactive Games": 1 +"3rd Grade Geography: Understanding Geographic Features through Google Maps and Virtual Tours": 1 +"8th Grade Chemistry: Basics of the Periodic Table and Chemical Reactions through Interactive Software": 1 +"2nd Grade Spanish: Developing Conversation Skills through Puppet Role-Plays": 1 +"5th Grade Physical Education: Mastering Basketball Techniques and Strategies": 1 +"10th Grade Mathematics: Solving Complex Geometric Problems with GeoGebra and Desmos Calculators": 1 +"3rd Grade Mathematics: Understanding Fractions and Decimals through Virtual Cooking Games": 1 +"6th Grade Art: Exploring Digital Painting Techniques using Graphic Tablets": 1 +"7th Grade Science: Investigating the Human Digestive System using Augmented Reality Anatomy Apps": 1 +"9th Grade English: Developing Persuasive Writing Skills through Virtual Debate Platforms": 1 +"5th Grade Physical Education: Enhancing Coordination and Balance through Dance and Kinect Technology": 1 +"3rd Grade Geography: Learning about the World’s Oceans with Interactive Global Mapping Tools": 1 +"8th Grade Math: Practical Geometry through Virtual 3D Modeling and Printing": 1 +"7th Grade Music: Learning Rhythm and Beat using Drum Machine Apps": 1 +"4th Grade Science: Introduction to Plant Growth and Photosynthesis using Virtual Gardens": 1 +"2nd Grade Art: Fostering Creativity and Color Theory through Augmented Reality Coloring Books": 1 +"5th Grade Mathematics: Mastering Fractions with Fun and Interactive Online Games": 1 +"3rd Grade Science: Discovering Life Cycles through Claymation using iStopMotion": 1 +"Physical Education for 6th Graders: Improving Basketball Skills with Agility Ladders and Resistance Bands": 1 +"5th Grade Geography: Travel the World with Google Earth Virtual Field Trips": 1 +"Understanding Aerodynamics with 3D Modeling: An In-depth Study of Lift and Drag using SolidWorks and Arduino Sensors": 1 +"7th Grade History: The Impact of Greek Philosophy on Contemporary Thought ": 1 +"2nd Grade English: Enhancing Storytelling Skills with Puppet Shows and Video Editing Software": 1 +"5th Grade Civics: Exploring the U.S. Government System through Interactive Simulations": 1 +"9th Grade Literature: Unlocking Symbolism in Emily Dickinson’s Poems with Audio-Visual Aids ": 1 +"Kindergarten Art: Exploring Colors and Shapes with Tux Paint Software": 1 +"5th Grade Mathematics: Understanding Geometry through Interactive 3D Shapes": 1 +"3rd Grade History: The American Revolution in Detail: Exploring Battles, Leaders, and Documents": 1 +"2nd Grade Science: Learning about Weather Patterns through Interactive Charts and Atlas": 1 +"8th Grade Biology: The Human Body: The Evolution of Cells and Genetic Makeup": 1 +"6th Grade Language Arts: Introduction to Poetry: Understanding Rhymes and Rhythms through Interactive Exercises": 1 +"4th Grade Music: Basics of Rhythm and Melody with Piano and Guitar": 1 +"1st Grade Mathematics: Introduction to Numbers and Counting through Interactive Games": 1 +"7th Grade Geography: Discovering the World’s Continents: An Interactive Journey through Virtual Reality": 1 +"4th Grade Social Studies: Exploring Cultures through Festivals and Traditions using Interactive Presentations": 1 +"5th Grade History: Exploring Ancient Civilizations with Virtual Reality: A Deep Dive into Mayan Culture": 1 +"3rd Grade Drama: Exploring Puppetry and Emotive Expression using Zoom Theater Techniques": 1 +"Advanced 5th Grade Mathematics: Discovering Geometry through Origami and 3D Modeling Software": 1 +"5th Grade Geography: Understanding the Impact of Climate Change on World Map using Virtual Reality": 1 +"Mastering Yoga Poses in 10th Grade Physical Education using Augmented Reality Technology": 1 +"10th Grade History: Machine Learning Approach to World War II Analysis using Java": 1 +"1st Grade Biological Science: Understanding Plant Growth with Interactive Touch Screen Technology": 1 +"8th Grade Art: Exploring Landscape Drawing with Watercolors and the Technique of Wet on Wet": 1 +"8th Grade English Language Arts: Understanding Metaphor and Allegory in Prose through Audiobooks": 1 +"5th Grade Art: Learning Sculpture Basics using Clay Modeling and Stop-Motion Techniques": 1 +"8th Grade Physics: Discovering the Laws of Motion through Augmented Reality Experiments": 1 +"6th Grade Geography: Exploring World Landforms using Google Earth and Virtual Field Trips": 1 +"1st Grade Science: Understanding the Life Cycle of Butterflies using Time-lapse Videos and Interactive Apps": 1 +"4th Grade Mathematics: Mastering Division Concepts through Cooking Measurements and Digital Recipes": 1 +"5th Grade Music: Discovering the Rhythms of Latin America with Hand Percussion Instruments and GarageBand": 1 +"8th Grade Music: Understanding Orchestral Symphonies with Violin and Digital Sheet Music": 1 +"6th Grade Mathematics: Learning Geometry with Lego Blocks and CAD Software": 1 +"3rd Grade Language Arts: Investigating Fairy Tales from Around the World using Digital Puppetry": 1 +"Physical Education: 6th Grade Soccer Training focusing on Goal Shooting Techniques with Virtual Reality": 1 +"5th Grade Mathematics: Grasping Percentages and Ratios through Money Management and Spreadsheet Software": 1 +"1st Grade Science: An In-depth Look at Farm Animal Behaviors and Life Cycles through Augmented Reality": 1 +"Mastering Subtraction in 3rd Grade with the Mathway App": 1 +"5th Grade French: Developing Language Proficiency with Duolingo, Zoom Flashcards, Kahoot Games, and HelloTalk Language Exchange": 1 +"2nd Grade Art: Discovering Texture and Form using Play-Doh": 1 +"5th Grade Science: Understanding Plant Photosynthesis through Experiments": 1 +"3rd Grade Math: Grasping Division through Interactive Worksheets": 1 +"7th Grade English Literature: Analyzing Symbolism in Greek Myths using Concept Mapping Software": 1 +"4th Grade Geography: Exploring Major Landforms and Water Bodies with Augmented Reality": 1 +"8th Grade Music: Discovering Rhythm and Tempo using Soundtrap": 1 +"6th Grade Music: An Introduction to Jazz: Understanding Its Roots and Cultural Impact.": 1 +"Basketball: Techniques and Tactics - Application of Video Analysis Software in 8th Grade Physical Education for Various Defensive Strategies.": 1 +"4th Grade History: Unraveling Ancient Civilizations with Augmented Reality": 1 +"6th Grade Math: Engaging with Geometry through Interactive 3D Models": 1 +"1st Grade English: Fun with Phonics using Interactive Educational Games": 1 +"Meditation for 5th Graders: Developing Focus and Calm through Mindful Practices": 1 +"8th Grade Science: Exploring the Human Anatomy with Virtual Dissections": 1 +"Understanding the Water Cycle with Augmented Reality: A 3rd Grade Environmental Science Course": 1 +"7th Grade Art: Learning to Create Digital Art with Adobe Creative Suite": 1 +"9th Grade Music: Exploring the Evolution of Jazz with Virtual Instruments and Music Production Software": 1 +"4th Grade Geography: Discovering the World’s Biomes through Virtual Field Trips": 1 +"5th Grade English: Mastering Sentence Structure with Grammarly and Other Language Tools": 1 diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_seminar_i.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_seminar_i.yaml new file mode 100644 index 0000000..ccd66e8 --- /dev/null +++ b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/evol_seminar_i.yaml @@ -0,0 +1,33784 @@ +# prompt +# "Here is the title of a course: {title}\nMake this title more specific. Include one specific tool, technology, or concept that is not mentioned in the title. Include up to 5 variations. WRITE ONLY TITLES, EACH SEPARATED BY ONE NEW LINE.": 1 + +title: + "Physics: An In-Depth Study of Elementary Mechanics Using Vernier Calipers and Newton's Laws of Motion": 1 + "Physics: Exploring Elementary Mechanics and the Use of Vernier Calipers in Fluid Dynamics": 1 + "Physics: The Role of Vernier Calipers in Elementary Mechanics and Kinematics": 1 + "Physics: Understanding Elementary Mechanics Through the Use of Vernier Calipers and CAD Software": 1 + "Physics: Elementary Mechanics, Vernier Calipers, and the Application in Thermodynamics": 1 + "Physics: The Intersection of Elementary Mechanics, Vernier Calipers, and Quantum Physics": 1 + "Physics: Examining Elementary Mechanics and Vernier Calipers through the Lens of Astrophysics": 1 + "Physics: Elementary Mechanics and the Use of Vernier Calipers in Nuclear Physics": 1 + "Physics: The Use of Vernier Calipers in Elementary Mechanics and Electromagnetism": 1 + "Physics: A Comprehensive Guide to Elementary Mechanics, Vernier Calipers, and Particle Physics": 1 + "Elementary Chemistry 104: Introduction to Atom Structure": 1 + "Elementary Chemistry 104: The Role of Energy in Chemical Reactions": 1 + "Elementary Chemistry 104: Decoding Matter with Atomic Spectroscopy": 1 + "Elementary Chemistry 104: Fundamentals of Thermodynamics in Chemistry": 1 + "Elementary Chemistry 104: Basics of Matter and Energy - Focus on Quantum Mechanics": 1 + "Elementary Chemistry 104: Exploring Matter with Electron Microscopy": 1 + "Elementary Chemistry 104: The Importance of Chemical Bonds in Matter and Energy": 1 + "Elementary Chemistry 104: Basics of Matter and Energy - A Deep Dive into Molecular Structure": 1 + "Elementary Chemistry 104: Understanding Energy Transfer with Calorimetry": 1 + "Elementary Chemistry 104: The Role of Radioactivity in Matter and Energy": 1 + "Geography: Exploring the Diverse Cultures of South America through Satellite Imagery": 1 + "Geography: Understanding South American Cultures through Population Density Analysis": 1 + "Geography: The Diverse Cultures of South America Examined through GIS Technology": 1 + "Geography: Cultural Landscapes of South America: A Study with Remote Sensing": 1 + "Geography: South American Cultures and Their Relationship with Climate Change": 1 + "Geography: Using Cartography to Map the Cultural Diversity of South America": 1 + "Geography: The Diverse Cultures of South America: An Analysis through Topographic Maps": 1 + "Geography: Exploring the Cultural Diversity of South America through GPS Technology": 1 + "Geography: The Influence of Natural Resources on the Cultures of South America": 1 + "Geography: The Diverse Cultures of South America: A Study through the Lens of Geospatial Analysis.": 1 + "Elementary Mathematics: Mastering Multiplication Tables with Abacus": 1 + "Elementary Mathematics: Understanding Division through Calculators": 1 + "Elementary Mathematics: Learning Basic Arithmetic with Geometric Shapes": 1 + "Elementary Mathematics: Exploring Addition and Subtraction with Math Apps": 1 + "Elementary Mathematics: Enhancing Number Sense through the Montessori Method": 1 + "Elementary Mathematics: Developing Fraction Skills using Fraction Circles": 1 + "Elementary Mathematics: Mastering Times Tables with Smart Board": 1 + "Elementary Mathematics: Exploring Place Value with Base Ten Blocks": 1 + "Elementary Mathematics: Learning Basic Arithmetic through Virtual Reality": 1 + "Elementary Mathematics: Understanding Decimals using Interactive": 1 + "Science and Art: The Role of Spectrophotometry in Analyzing Color and Light in Paintings": 1 + "Science and Art: Exploring the Use of Polarized Light in the Color Dynamics of Paintings": 1 + "The Interface of Science and Art: Chromatography and its Impact on Color and Light in Paintings": 1 + "Science and Art: The Contribution of Infrared Imaging to the Study of Color and Light in Paintings": 1 + "Science and Art: The Influence of Optical Illusion on the Perception of Color and Light in Paintings": 1 + "Science and Art: The Interplay of Color and Light in Paintings – A Study through the Lens of Rayleigh Scattering": 1 + "Science and Art: Understanding the Role of Diffraction Grating in the Color and Light of Paintings": 1 + "Science and Art: Illuminating the Art World - The Impact of LED Lighting on Color and Light in Paintings": 1 + "Science and Art: The Implication of RGB Color Model in the Perception of Color and Light in Paintings": 1 + "Science and Art: Leveraging Hyperspectral Imaging in Decoding Color and Light in Paintings.": 1 + "Biology: The Art of Microscopy and Cell Analysis with Fluorescence Techniques": 1 + "Biology: Exploring Cell Analysis through Microscopy and Confocal Imaging": 1 + "Biology: The Art of Microscopy, Cell Analysis, and Laser Scanning": 1 + "Biology: Delving into Cell Analysis and Microscopy with Electron Microscopes": 1 + "Biology: The Art of Microscopy and Cell Analysis: A Focus on Immunofluorescence": 1 + "Biology: Mastering Cell Analysis and Microscopy with the Aid of Two-Photon Excitation": 1 + "Biology: The Art of Microscopy and Cell Analysis: Introducing Flow Cytometry": 1 + "Biology: Elevating Microscopy and Cell Analysis with Digital Image Processing ": 1 + "Biology: The Art of Microscopy and Cell Analysis: A Deep Dive into Transmission Electron Microscopy": 1 + "Biology: Microscopy and Cell Analysis: Exploring Cellular Structures with Scanning Electron Microscopy": 1 + "History: The Role of the Internet in Globalization and its Impact on Modern Trade": 1 + "The Impact of Blockchain Technology on Globalization and Modern Trade: A Historical Perspective": 1 + "History: The Influence of AI on Globalization and its Effect on Modern Trade": 1 + "The Historical Impact of Cryptocurrency on Globalization and Modern Trade": 1 + "History: The Effect of E-commerce Platforms on Globalization and Modern Trade": 1 + "The Role of Digital Marketing Tools in Globalization and Modern Trade: A Historical Overview": 1 + "History: The Influence of Social Media on Globalization and its Impact on Modern Trade": 1 + "The Historical Perspective on The Impact of Cloud Computing on Globalization and Modern Trade": 1 + "History: The Role of Big Data in Globalization and its Impact on Modern Trade": 1 + "The Impact of Mobile Apps on Globalization and Modern Trade: A Historical Analysis": 1 + "History: The Impact of Radio Communication on Emotional Narratives in World Wars": 1 + "History: Decoding Emotional Narratives: The Role of Cryptography in World Wars": 1 + "History: Emotional Narratives in World Wars: A Study on Propaganda Tools": 1 + "History: The Influence of Airplanes on Emotional Narratives in World Wars": 1 + "History: Emotional Narratives in World Wars: The Impact of Atomic Bomb Technology": 1 + "History: Tanks and Trenches: Emotional Narratives in World Wars": 1 + "History: Emotional Narratives in World Wars: The Role of Machine Guns": 1 + "History: Submarine Warfare and its Impact on Emotional Narratives in World Wars": 1 + "History: The Role of Radar Technology in Shaping Emotional Narratives in World Wars": 1 + "History: Emotional Narratives in World Wars: The Impact of Medical Advances": 1 + "English Grammar: Building Sentences with Story Cubes Using Interactive Whiteboards": 1 + "English Grammar: Enhancing Sentence Construction with Story Cubes and Augmented Reality": 1 + "English Grammar: Building Sentences with Story Cubes and Google Classroom": 1 + "English Grammar: Sentence Formation with Story Cubes and Interactive eBooks": 1 + "English Grammar: Utilizing Story Cubes and Smartboards for Sentence Structure": 1 + "English Grammar: Story Cubes and EdTech Apps for Sentence Building": 1 + "English Grammar: Incorporating Story Cubes and Virtual Reality in Sentence Creation": 1 + "English Grammar: Sentence Development with Story Cubes and Digital Storytelling Tools": 1 + "English Grammar: Teach Sentence Construction with Story Cubes and iPads": 1 + "English Grammar: Story Cubes and Cloud-Based Learning for Sentence Formulation": 1 + "Drama: Exploring Stage Lighting in Theatrical Production and Stage Management": 1 + "Fundamentals of Theatrical Production: A Focus on Set Design and Stage Management": 1 + "Drama: Stage Management and Theatrical Production Using Digital Audio Workstations": 1 + "Theatrical Production and Stage Management: A Deep Dive into Costume Design": 1 + "Drama: Fundamentals of Theatrical Production with Emphasis on Makeup Artistry and Stage Management": 1 + "Sound Design in Drama: Fundamentals of Theatrical Production and Stage Management": 1 + "Drama: The Role of Computer-Aided Design in Theatrical Production and Stage Management": 1 + "Theatrical Production and Stage Management: The Impact of Special Effects": 1 + "Drama: Fundamentals of Theatrical Production with a Focus on Scenic Painting and Stage Management": 1 + "Drama: Understanding Rigging Systems in Theatrical Production and Stage Management.": 1 + "Mathematics: Exploring Geometry and Symmetry in Art Design through AutoCAD": 1 + "Geometry and Symmetry in Art Design: A Focus on Tessellation": 1 + "Mathematics: Geometry and Symmetry in Graphic Design using Adobe Illustrator": 1 + "The Application of Geometric Proofs in Art Design: A Study of Symmetry": 1 + "Geometry and Symmetry in Art Design: An Exploration of Golden Ratio": 1 + "Mathematics: Geometry and Symmetry in Art Design with 3D Modelling": 1 + "Using SketchUp to Understand Geometry and Symmetry in Art Design": 1 + "Mathematics: Geometry and Symmetry in Art Design - A Perspective on Vector Graphics": 1 + "Geometry and Symmetry in Art Design: The Role of Fractals": 1 + "Mathematics: Geometry and Symmetry in Art Design - Incorporating Geometric Transformations.": 1 + "Music and Sound: Creating Auditory Experiences in Tech using Ableton Live": 1 + "Synthesizing Sound: A Comprehensive Guide to Auditory Experiences in Tech with FL Studio": 1 + "Creative Tech: Designing Auditory Experiences with Logic Pro X": 1 + "Tech and Tunes: Sound Design with Pro Tools for Auditory Experiences": 1 + "Auditory Experiences in Tech: An Introduction to Sound Design with Audacity": 1 + "The Art of Sound: Creating Auditory Experiences in Tech using GarageBand": 1 + "Immersive Auditory Experiences in Tech: A Deep Dive into MaxMSP": 1 + "Sonic Tech: Building Auditory Experiences with Serato DJ Pro": 1 + "Tech Harmony: Crafting Music and Sound with Cubase for Better User Experience": 1 + "Soundscapes and Tech: Creating Auditory Experiences using Reaper.": 1 + "Mathematics: The Beauty of Geometry Through Pythagorean Theorem": 1 + "Mathematics: Exploring the Beauty of Geometry Using Compass and Straightedge": 1 + "Mathematics: Unveiling the Beauty of Geometry with Euclidean Constructs": 1 + "Mathematics: The Beauty of Geometry Explored through Geogebra Software": 1 + "Mathematics: The Beauty of Geometry - A Deep Dive into Fractal Patterns": 1 + "Mathematics: The Beauty of Geometry - Understanding the Golden Ratio": 1 + "Mathematics: The Beauty of Geometry Revealed with 3D Modeling Tools": 1 + "Mathematics: The Beauty of Geometry - The Art of Tessellations": 1 + "Mathematics: The Beauty of Geometry - Exploring Symmetry and Transformation": 1 + "Mathematics: The Beauty of Geometry - An Insight into Non-Euclidean Geometry": 1 + "Social Studies: A Deep Dive into The American Civil War": 1 + "Social Studies: Exploring the American Revolutionary War through Primary Sources": 1 + "Social Studies: Understanding Slavery in the Context of American History": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving": 1 + "Social Studies: The Great Depression - Analysis through Statistical Software": 1 + "Social Studies: Manifest Destiny and the American Westward Expansion": 1 + "Social Studies: The Role of Technology in the American Industrial Revolution": 1 + "Social Studies: Women's Suffrage Movement in America: A Study Through Documentary Analysis": 1 + "Social Studies: American History: Cold War Era - A Study Using Interactive Timelines": 1 + "Social Studies: The Civil Rights Movement: Exploring with Virtual Reality Technology": 1 + "Elementary Geography: Discovering the Spoken Map of the World with Google Earth": 1 + "Elementary Geography: The Spoken Map of the World Explored through GPS Technology": 1 + "Elementary Geography: The Spoken Map of the World using GIS Techniques ": 1 + "Elementary Geography: The Spoken Map of the World and the Concept of Latitude and Longitude ": 1 + "Elementary Geography: The Spoken Map of the World - An Introduction to Compass Reading ": 1 + "Elementary Geography: Understanding the Spoken Map of the World through Satellite Imagery ": 1 + "Elementary Geography: The Spoken Map of the World - A Study of Topographic Maps ": 1 + "Elementary Geography: The Spoken Map of the World - Exploring with Map Projections ": 1 + "Elementary Geography: The Spoken Map of the World - Navigating with Cartography ": 1 + "Elementary Geography: The Spoken Map of the World - Utilizing Digital Mapping Tools": 1 + "Social Studies: Exploring Global Cultures through Ethnography": 1 + "Social Studies: Global Cultures and Traditions through the Lens of Anthropology": 1 + "Social Studies: Using Cartography in Understanding Global Cultures": 1 + "Social Studies: The Role of Archaeology in Global Cultures and Traditions": 1 + "Social Studies: Deciphering Global Cultures through Linguistics": 1 + "Social Studies: The Impact of Technology on Global Cultures and Traditions": 1 + "Social Studies: Analyzing Global Cultures through Cultural Relativism": 1 + "Social Studies: Global Cultures and Traditions: A Genealogical Approach": 1 + "Social Studies: Global Cultures and Traditions and the Influence of Social Media": 1 + "Social Studies: Understanding Global Cultures through Historical Comparative Analysis": 1 + "Biology of Hearing: Understanding Auditory Perception through Cochlear Implants": 1 + "Biology of Hearing: Exploring Auditory Perception with FM Systems": 1 + "Biology of Hearing: Decoding Auditory Perception with Frequency Modulation": 1 + "Biology of Hearing: Studying Auditory Perception through Auditory Brainstem Responses ": 1 + "Biology of Hearing: Analysing Auditory Perception using Tympanometry": 1 + "Biology of Hearing: Investigating Auditory Perception through Otoacoustic Emissions": 1 + "Biology of Hearing: Understanding Auditory Perception using Pure-Tone Audiometry": 1 + "Biology of Hearing: Examining Auditory Perception with Speech Audiometry": 1 + "Biology of Hearing: Delving into Auditory Perception through Evoked Potentials": 1 + "Biology of Hearing: Discovering Auditory Perception with Bone Conduction Testing.": 1 + "Intro to Computer Science: Analyzing Athletic Performance with Python and Data Science": 1 + "Advanced Excel for Computer Science: Unpacking Athletic Performance through Data Analysis": 1 + "Computer Science Insights: Leveraging R for Athletic Performance Data Analysis": 1 + "Intro to Computer Science: Utilizing SQL in Analyzing Athletic Performance Data": 1 + "Computer Science in Sports: Analyzing Athletic Performance using Machine Learning": 1 + "Data-Driven Athletic Assessment: A Computer Science Approach using Tableau": 1 + "Computer Science and Sports: Analyzing Athletic Performance using Google Analytics": 1 + "Introduction to Computer Science: Exploring Athletic Performance using Big Data": 1 + "Computer Science for Athletes: Harnessing the Power of SAS for Performance Analysis": 1 + "A Deep Dive into Computer Science: Analyzing Athletic Performance using Apache Hadoop.": 1 + "Social Studies: Exploring the Role of Music in Cultural Celebrations through Ethnomusicology": 1 + "Social Studies: The Influence of Musical Instruments in Cultural Celebrations": 1 + "Social Studies: The Impact of Digital Technology on Music in Cultural Celebrations": 1 + "Social Studies: Music Notation's Role in Cultural Celebrations": 1 + "Social Studies: The Role of Music Production in Cultural Celebrations": 1 + "Social Studies: Understanding Cultural Celebrations through the Lens of Music Theory": 1 + "Social Studies: The Role of Music Recording Technology in Cultural Celebrations": 1 + "Social Studies: The Role of Music in Cultural Celebrations - A Case Study on Acoustics": 1 + "Social Studies: The Role of Synthesisers in Music for Cultural Celebrations": 1 + "Social Studies: The Role of Music in Cultural Celebrations - An Exploration of Sound Engineering": 1 + "Computer Science: Digital Drawing with Python Coding Basics": 1 + "Computer Science: Digital Drawing using JavaScript and Canvas": 1 + "Computer Science: Digital Drawing with CSS Animation Basics": 1 + "Computer Science: Digital Drawing using HTML5 and SVG": 1 + "Computer Science: Digital Drawing with Java Graphics Class Basics": 1 + "Computer Science: Digital Drawing using Blender for 3D Modelling": 1 + "Computer Science: Digital Drawing with Basics of Adobe Illustrator": 1 + "Computer Science: Digital Drawing using Unity for Game Design": 1 + "Computer Science: Digital Drawing with Basics of AutoCAD": 1 + "Computer Science: Digital Drawing using the Unreal Engine for Visualization.": 1 + "Economics 101: Understanding Money and Trade through Role-Play Using Blockchain Technology ": 1 + "Economics 101: Exploration into Trade Dynamics via Role-Play and Supply-Demand Graphs": 1 + "Economics 101: Grasping Financial Concepts through Role-Play & Inflation Analysis ": 1 + "Economics 101: Learning Economics through Role-Play and the Concept of Gross Domestic Product": 1 + "Economics 101: Understanding Money and Trade through Role-Play and Fiscal Policy": 1 + "Economics 101: Unlocking Economic Insights through Role-Play & Comparative Advantage": 1 + "Economics 101: Mastering Trade Principles through Role-Play and Trade Barriers": 1 + "Economics 101: Interpreting the Economy through Role-Play and Money Supply": 1 + "Economics 101: Delving into Economics through Role-Play & Opportunity Cost": 1 + "Economics 101: Understanding Money and Trade through Role-Play and Cryptocurrency Concepts": 1 + "Language Arts: The Rhetoric of Economic Policies - A Deep Dive into GDP": 1 + "Language Arts: Dissecting the Rhetoric of Inflation in Economic Policies": 1 + "Language Arts: The Rhetoric of Economic Policies: An Analysis of Fiscal Policy Mechanisms": 1 + "Language Arts: The Rhetoric of Economic Policies - Exploring the Role of Quantitative Easing": 1 + "Language Arts: The Rhetoric of Economic Policies - Deconstructing Taxation Policies": 1 + "Language Arts: The Rhetoric of Economic Policies and Unemployment - A Detailed Study": 1 + "Language Arts: Understanding the Rhetoric of Trade Policies in Economics": 1 + "Language Arts: The Rhetoric of Economic Policies - A Closer Look at Monetary Policy": 1 + "Language Arts: The Rhetoric of Economic Policies - Examining the Impact of Interest Rates": 1 + "Language Arts: The Rhetoric of Economic Policies - A Study on the Role of Supply-Side Economics.": 1 + "Computer Science: Creating Beats with Python - An Introduction to Music Technology": 1 + "Computer Science: Programming Beats with Ableton Live - An Introduction to Music Technology": 1 + "Computer Science: Music Production with GarageBand - An Introduction to Music Technology": 1 + "Computer Science: Exploring Sound with MIDI Programming - An Introduction to Music Technology": 1 + "Computer Science: Programming Beats using Digital Audio Workstations - An Introduction to Music Technology": 1 + "Computer Science: Introduction to Music Technology with Logic Pro X": 1 + "Computer Science: Beat Creation through FL Studio - An Introduction to Music Technology": 1 + "Computer Science: Programming Beats using Max MSP - An Introduction to Music Technology": 1 + "Computer Science: Introduction to Music Technology: Beat Creation with Audacity": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Programming Beats": 1 + "Art: The Aesthetics of Motion in Sports Through Photography": 1 + "Art and Technology: Capturing the Aesthetics of Motion in Sports Using High-Speed Cameras": 1 + "Art: The Role of 3D Animation in Portraying the Aesthetics of Motion in Sports": 1 + "Art: The Aesthetics of Motion in Sports Through The Lens of Drone Technology": 1 + "Art & Science: Exploring the Aesthetics of Motion in Sports Using Biomechanics": 1 + "Art: The Aesthetics of Motion in Sports – A Study Through Motion Capture Technology": 1 + "Art: The Influence of Virtual Reality on the Aesthetics of Motion in Sports": 1 + "Art: The Aesthetics of Motion in Sports Through Cinematography": 1 + "Art: Exploring the Aesthetics of Motion in Sports Using Time-Lapse Photography": 1 + "Art: The Aesthetics of Motion in Sports – A Perspective Through Augmented Reality": 1 + "Physics Fun: Exploring Motion and Energy with Newton's Laws": 1 + "Physics Fun: Understanding Motion and Energy Through the Lens of Kinematics": 1 + "Physics Fun: Energy Conservation in Motion - An In-depth Study": 1 + "Physics Fun: Deciphering Motion and Energy using Vector Analysis": 1 + "Physics Fun: Gravitational Influence on Motion and Energy": 1 + "Physics Fun: The Role of Friction in Motion and Energy": 1 + "Physics Fun: Delving into Motion and Energy with Thermodynamics": 1 + "Physics Fun: Unveiling the Secrets of Motion and Energy with Quantum Mechanics": 1 + "Physics Fun: Electricity's Impact on Motion and Energy": 1 + "Physics Fun: Motion and Energy - A Study Through the Prism of Electromagnetism.": 1 + "Health Education 220: Impact of Genetic Sequencing on Human Health": 1 + "Health Education 220: The Role of Telemedicine in Advancing Human Health": 1 + "Health Education 220: Impact of AI Diagnostics on Human Health": 1 + "Health Education 220: The Influence of Nanotechnology on Human Health": 1 + "Health Education 220: The Effect of Bioprinting on Human Health": 1 + "Health Education 220: Stem Cell Research and its Impact on Human Health": 1 + "Health Education 220: The Role of Robotic Surgery in Human Health Advancements": 1 + "Health Education 220: The Impact of Virtual Reality Therapy on Human Health": 1 + "Health Education 220: The Effect of Wearable Health Monitors on Human Health": 1 + "Health Education 220: Impact of Immunotherapy on Human Health": 1 + "Philosophical Foundations: Exploring Ancient Thinkers through Socratic Dialogues": 1 + "Philosophical Foundations: Understanding the Concept of Dualism in Ancient Thinkers": 1 + "Philosophical Foundations: The Influence of Ancient Thinkers on Modern Ethics": 1 + "Ancient Thinkers and the Birth of Democracy: An Introduction to Philosophical Foundations": 1 + "The Role of Rhetoric in Ancient Philosophical Foundations: A Study of Ancient Thinkers": 1 + "Philosophical Foundations: Analyzing Metaphysics in Ancient Thinkers' Works": 1 + "Philosophical Foundations: An Introduction to Ancient Thinkers and Their Contribution to Logic": 1 + "Philosophical Foundations: Unpacking the Concept of Virtue Ethics in Ancient Thinkers": 1 + "Philosophical Foundations: Understanding Ancient Thinkers through the Lens of Epistemology": 1 + "Philosophical Foundations: An Examination of Ancient Thinkers and Theories of Justice": 1 + "Physics: The Influence of Light Refraction in Artwork": 1 + "Physics: The Role of Laser Technology in Artistic Illumination": 1 + "Physics: The Impact of Prisms in Light-based Artwork": 1 + "Physics: The Application of Fiber Optic Lights in Art Creation": 1 + "Physics: The Interaction of Polarized Light with Artwork": 1 + "Physics: The Artistic Use of LEDs in Light Manipulation": 1 + "Physics: The Integration of Holography in Artistic Endeavors": 1 + "Physics: The Influence of Light Filters in Artistic Composition": 1 + "Physics: The Role of Fluorescent Lights in Modern Art": 1 + "Physics: The Application of Light Diffraction in Artwork.": 1 + "Physics: Understanding Light and Color through the Lens of a Spectrometer": 1 + "Physics: Exploring Light and Color with Polarization Techniques": 1 + "Physics: Decoding Light and Color using Optical Fiber Technology": 1 + "Physics: Grasping Light and Color with Laser Technology": 1 + "Physics: Light and Color Examination through Photomultiplier Tubes": 1 + "Physics: Understanding Light and Color through the Application of Quantum Mechanics": 1 + "Physics: Interpreting Light and Color using Digital Colorimeters": 1 + "Physics: Analyzing Light and Color through the Science of Spectroscopy": 1 + "Physics: Unraveling Light and Color with the Help of Photonics": 1 + "Physics: Light and Color Perception through Human Eye and Retinal Response.": 1 + "Musical Evolution: The Transition from Classical to Contemporary through the Lens of the Piano": 1 + "From Beethoven to Beyoncé: A Study of Musical Evolution via Recording Technology": 1 + "Musical Evolution: How Vinyls and Streaming Shaped the Journey from Classical to Contemporary": 1 + "The Impact of Synthesizers on the Musical Journey from Classical to Contemporary": 1 + "Musical Evolution: The Role of Electric Guitars in the Shift from Classical to Contemporary": 1 + "From Classical to Contemporary: Exploring the Influence of Music Production Software": 1 + "The Evolution of Music: From Classical Compositions to Autotune Anthems": 1 + "Musical Evolution: Decoding the Shift from Classical to Contemporary using Music Theory": 1 + "Melodic Metamorphosis: The Influence of Digital Audio Workstations from Classical to Contemporary": 1 + "Harmonic Progressions: The Evolution from Classical to Contemporary through the Microphone.": 1 + "Elementary Technology: Using MyFitnessPal App for Healthy Meal Planning": 1 + "Elementary Technology: Exploring Google Fit in Healthy Meal Planning": 1 + "Elementary Technology: Employing Fitbit App for Effective Meal Planning": 1 + "Elementary Technology: Utilizing Apple Health for Healthy Meal Planning": 1 + "Elementary Technology: Adopting Nutritionix for Personalized Meal Planning": 1 + "Elementary Technology: Using Lose It! App for Healthy Calorie Counting and Meal Planning": 1 + "Elementary Technology: Introduction to Yazio for Comprehensive Meal Planning": 1 + "Elementary Technology: Harnessing Lifesum for Detailed Food Tracking and Meal Planning": 1 + "Elementary Technology: Exploring the Power of Fooducate for Healthy Meal Planning": 1 + "Elementary Technology: Making the Most of MyNetDiary for Healthy Meal Planning.": 1 + "Science: The Physics of Money Printing and the Role of the Printing Press": 1 + "Quantum Mechanics: The Physics of Money Printing in the Digital Age": 1 + "Understanding the Physics of Money Printing through Blockchain Technology": 1 + "The Physics of Money Printing: An Examination of Offset Lithography": 1 + "The Physics of Money Printing and the Concept of Inflation": 1 + "The Role of Laser Engraving in the Physics of Money Printing": 1 + "The Physics of Money Printing: A Deep Dive into Inkjet Technology": 1 + "Science: The Physics of Money Printing and the Impact of Polymer Banknotes": 1 + "The Physics of Money Printing: Exploring the Concept of Quantitative Easing": 1 + "Science: The Physics of Money Printing and the Evolution of Intaglio Printing": 1 + "Physical Education: Team Sports and Sportsmanship through Basketball Strategies": 1 + "Physical Education: Enhancing Team Sports and Sportsmanship with Soccer Tactics ": 1 + "Physical Education: Team Sports and Sportsmanship: A Focus on Volleyball Techniques": 1 + "Physical Education: Team Sports and Sportsmanship: Exploring Cricket Equipment": 1 + "Physical Education: Team Sports and Sportsmanship in Action: Using Rugby Formations": 1 + "Physical Education: The Impact of Fitness Technology on Team Sports and Sportsmanship": 1 + "Physical Education: Team Sports and Sportsmanship: Understanding Baseball Pitching Mechanics": 1 + "Physical Education: Team Sports and Sportsmanship: Incorporating Football Playbooks": 1 + "Physical Education: Team Sports and Sportsmanship: Harnessing Hockey Stick Technology": 1 + "Physical Education: Team Sports and Sportsmanship: A Study on Tennis Racket Designs": 1 + "Physical Education: Team Sports and Sportsmanship: The Role of Heart Rate Monitors": 1 + "Art: Advanced Pottery and Ceramics Techniques using a Potter's Wheel": 1 + "Art: Introduction to Pottery and Ceramics Techniques with Kiln Firing": 1 + "Art: Glazing Techniques in Pottery and Ceramics": 1 + "Art: Exploring Pottery and Ceramics Techniques using Coiling Method": 1 + "Art: Pottery and Ceramics Techniques: A Deep Dive into Slip Casting": 1 + "Art: Pottery and Ceramics Techniques with a Focus on Hand Building": 1 + "Art: Pottery and Ceramics Techniques: Mastering the Jiggering Process": 1 + "Art: Pottery and Ceramics Techniques: The Art of Throwing on the Wheel": 1 + "Art: Raku Firing in Pottery and Ceramics Techniques": 1 + "Art: Pottery and Ceramics Techniques: The Science of Clay Preparation.": 1 + "The Impact of Blockchain Technology on Information Economics: A Detailed Study": 1 + "Machine Learning and Its Influence on the Economics of Information: A Comprehensive Analysis": 1 + "A Deep Dive into the Economics of Big Data: A Detailed Study": 1 + "The Economics of Information: A Detailed Study on the Role of Artificial Intelligence": 1 + "Data Analytics and the Economics of Information: An Extensive Review": 1 + "Cybersecurity and Its Economic Implications: A Detailed Study of Information Economics": 1 + "The Role of Internet of Things (IoT) in the Economics of Information: A Detailed Study": 1 + "Exploring the Economics of Information through the Lens of Cloud Computing: A Detailed Study": 1 + "The Economics of Information: A Detailed Study of Social Media's Impact": 1 + "The Economics of Information in the Age of Augmented Reality: A Detailed Study.": 1 + "Exploring Spatial Audio with MaxMSP: An In-depth Study of Ambisonics ": 1 + "Sound Synthesis in MaxMSP: A Deep Dive into Granular Synthesis": 1 + "Immersive Auditory Experiences with MaxMSP: Comprehensive Guide to MIDI Controllers": 1 + "MaxMSP for Interactive Sound Installations: Focusing on Sensor Technology": 1 + "Advanced Sampling Techniques in MaxMSP: Exploring the Groove~ Object": 1 + "Experimental Sound Design with MaxMSP: An In-depth Look at FFT (Fast Fourier Transform)": 1 + "Crafting Immersive Auditory Experiences in MaxMSP: A Study on Waveform Visualisation": 1 + "MaxMSP for Virtual Reality: Exploring Binaural Audio Techniques": 1 + "Signal Processing in MaxMSP: A Deep Dive into Convolution Reverb": 1 + "MaxMSP and Real-Time Performance: A Detailed Study on Live Looping Techniques.": 1 + "English Literacy: Enhancing Reading and Writing Skills with Storybird App": 1 + "English Literacy: Improving Literacy through Storytelling with Adobe Spark": 1 + "English Literacy: Exploring Reading and Writing with Sutori App": 1 + "English Literacy: Strengthening Language Skills through StoryJumper App": 1 + "English Literacy: Building Literacy with Storytelling using Google Slides": 1 + "English Literacy: Developing Reading and Writing Proficiency with Book Creator App": 1 + "English Literacy: Enhancing Language Skills with Digital Storytelling using Toontastic": 1 + "English Literacy: Boosting Literacy through Interactive Storytelling with Twine ": 1 + "English Literacy: Reading and Writing Enhancement using iMovie for Storytelling ": 1 + "English Literacy: Improving Literacy Skills with Storytelling via Microsoft PowerPoint.": 1 + "Health Education: Exploring the Impact of MyFitnessPal on Nutrition and Hygiene": 1 + "Health Education: A Deep Dive into the Role of Fitbit Devices in Nutrition and Hygiene": 1 + "Health Education: Understanding Nutrition and Hygiene through the Lens of Calorie Counting Apps": 1 + "Health Education: The Influence of Biofeedback Technology on Nutrition and Hygiene": 1 + "Health Education: Utilizing Diet Tracking Apps for Improved Nutrition and Hygiene": 1 + "Health Education: The Role of Digital Food Scales in Nutrition and Hygiene": 1 + "Health Education: The Impact of Online Nutritional Courses on Hygiene and Nutrition": 1 + "Health Education: Exploring Nutrition and Hygiene through the Concept of Macro Tracking ": 1 + "Health Education: The Intersection of Nutrition, Hygiene, and Smart Watches": 1 + "Health Education: Optimizing Nutrition and Hygiene through the Use of Health Informatics.": 1 + "History: The Role of Penicillin in World Wars: Emotional Narratives and Medical Advances": 1 + "History: Emotional Narratives in World Wars: The Impact of X-Ray Technology": 1 + "History: The Impact of Blood Transfusion Advances During World Wars: Emotional Narratives": 1 + "History: Emotional Narratives in World Wars: The Impact of Anesthetic Development": 1 + "History: Prosthetics and Rehabilitation In World Wars: Emotional Narratives and Medical Advances": 1 + "History: Emotional Narratives in World Wars: The Influence of Telecommunication in Medical Advances": 1 + "History: The Role of Antiseptics in World Wars: Emotional Narratives and Their Impact": 1 + "History: Emotional Narratives in World Wars: The Impact of Surgical Techniques Advancements": 1 + "History: The Introduction of Vaccination in World Wars: Emotional Narratives and Medical Advances": 1 + "History: Emotional Narratives in World Wars: The Impact of the Morphine Syrette's Advancement.": 1 + "Physics: Exploring Sound and Light Waves with Spectrometers": 1 + "Physics: Introduction to Sound and Light Waves through Laser Technology": 1 + "Physics: The Role of Oscilloscopes in Sound and Light Waves": 1 + "Physics: Understanding Sound and Light Waves Using Waveform Monitors": 1 + "Physics: Acoustics and Optics: A Study of Sound and Light Waves with Microphones": 1 + "Physics: Sound and Light Waves: An Experiment with Fiber Optics": 1 + "Physics: Introduction to Sound and Light Waves through Doppler Effect": 1 + "Physics: Sound and Light Waves: A Practical Approach with Sonar Technology": 1 + "Physics: Unraveling the Mysteries of Sound and Light Waves with Photometers": 1 + "Physics: The Interplay of Sound and Light Waves: A Study Using Interferometers.": 1 + "Organic Chemistry: Understanding Molecular Structures Through Mass Spectrometry": 1 + "Organic Chemistry: Exploring Molecular Structures with X-Ray Crystallography": 1 + "Organic Chemistry: Decoding Molecular Structures via Nuclear Magnetic Resonance (NMR) Spectroscopy": 1 + "Organic Chemistry: Unveiling Molecular Structures Using Infrared (IR) Spectroscopy": 1 + "Organic Chemistry: Understanding Molecular Structures - A Focus on Chromatography": 1 + "Organic Chemistry: Analyzing Molecular Structures with Electron Microscopy": 1 + "Organic Chemistry: A Deep Dive into Molecular Structures with Quantum Mechanics": 1 + "Organic Chemistry: The Role of Computational Chemistry in Understanding Molecular Structures": 1 + "Organic Chemistry: Understanding Molecular Structures - An Introduction to Molecular Dynamics": 1 + "Organic Chemistry: Deciphering Molecular Structures with Density Functional Theory.": 1 + "Theatrical Production and Stage Management: An In-depth Study of Costume Design using CAD Technology": 1 + "The Craft of Costume Design: Exploring Draping Techniques in Theatrical Production and Stage Management": 1 + "The Art of Theatrical Production: A Comprehensive Analysis of Costume Design with Adobe Photoshop": 1 + "Theatrical Production & Stage Management: The Role of Colour Theory in Costume Design": 1 + "Theatrical Production and Stage Management: The Influence of Historical Periods on Costume Design": 1 + "Stage Management and Theatrical Production: A Deep Dive into Costume Design with 3D Printing Technology": 1 + "Costume Design in Theatrical Production and Stage Management: Using SketchUp for Concept Visualization": 1 + "Theatrical Production and Stage Management: The Impact of Fabric Selection in Costume Design": 1 + "Exploring Costume Design in Theatrical Production: A Focus on Stage Makeup Techniques": 1 + "Theatrical Production and Stage Management: The Application of Sewing Techniques in Costume Design": 1 + "Computer Science: Exploring MIDI in Synthesizers for Music Technology - Programming Rhythmic Beats": 1 + "Computer Science: Understanding DAWs and Synthesizers in Music Technology - Creating Drum Patterns": 1 + "Computer Science: Utilizing Python in Programming Beats and Synthesizers in Music Technology": 1 + "Computer Science: Applying Logic Pro X in Music Technology - Crafting Synthesizer Beats": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Designing Amplifier Modulation Beats": 1 + "Computer Science: Exploring Max/MSP in Synthesizer Programming for Music Technology": 1 + "Computer Science: Understanding Synthesizers and VST Plugins in Music Technology - Programming Beats": 1 + "Computer Science: Using Ableton Live for Synthesizer Programming in Music Technology - Crafting Beats": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Programming Beats Using Frequency Modulation": 1 + "Computer Science: Applying Pro Tools in Synthesizer Beat Programming for Music Technology.": 1 + "Exploring Symmetry in Art Design: A Comprehensive Guide to Using SketchUp and V-Ray": 1 + "Using SketchUp and 3D Warehouse for Understanding Geometry in Art Design": 1 + "The Role of SketchUp and LayOut in Understanding Geometry and Symmetry in Art Design": 1 + "Mastering Geometry and Symmetry in Art Design with SketchUp and Podium Browser": 1 + "Advanced Art Design: Geometry and Symmetry with SketchUp and Twilight Render": 1 + "Integrating SketchUp and Shaderlight to Understand Geometry in Art Design": 1 + "Using SketchUp and GIMP to Understand Geometry and Symmetry in Art Design": 1 + "Exploring Geometry in Art Design: A Deep Dive into SketchUp and Photoshop": 1 + "Unveiling Symmetry in Art Design: A Focus on SketchUp and Artisan Plugin": 1 + "SketchUp and SU Podium: The Dynamic Duo for Understanding Geometry in Art Design.": 1 + "Technology in Music: Exploring the Impact of Pro Tools in Digital Audio Workstations": 1 + "Technology in Music: The Role of MIDI Controllers in Digital Audio Workstations": 1 + "Exploring the Influence of Ableton Live in Digital Audio Workstations": 1 + "Technology in Music: The Impact of Logic Pro X in Digital Audio Workstations": 1 + "Music and Tech: Understanding the Contribution of FL Studio in Digital Audio Workstations": 1 + "Exploring the Impact of Cubase in Digital Audio Workstations: A Study of Music Technology": 1 + "The Influence of GarageBand in Digital Audio Workstations: A Music Technology Perspective": 1 + "Music Technology: How Audacity Shapes Digital Audio Workstations": 1 + "Technology in Music: Examining the Role of Reason in Digital Audio Workstations": 1 + "The Impact of Reaper in Digital Audio Workstations: A Deep Dive into Music Technology": 1 + "Health Education: Exploring the Impact of Classical Music on Depression through Music Therapy": 1 + "The Effectiveness of Binaural Beats in Alleviating Anxiety: A Study in Health Education": 1 + "Health Education: How Virtual Reality Music Therapy Can Improve Mental Health": 1 + "Health Education: The Role of Digital Music Platforms in Enhancing Mental Well-being": 1 + "The Use of AI in Music Composition for Mental Health Recovery: A Health Education Perspective": 1 + "Health Education: Examining the Therapeutic Effects of Sound Healing on Stress Management": 1 + "The Influence of Music-Based Mobile Apps on Mental Health: A Course in Health Education": 1 + "Health Education: The Implications of Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: Enhancing Mindfulness Practices with Music for Mental Health Improvement": 1 + "The Impact of Interactive Music Technology on Emotional Well-being: A Health Education Study.": 1 + "Social Studies: An In-depth Exploration of World Cultures through Anthropology": 1 + "Social Studies: Understanding World Cultures with Geographic Information Systems": 1 + "Social Studies: Analyzing World Cultures using Statistical Data": 1 + "Social Studies: Exploring World Cultures through the Lens of Ethnography": 1 + "Social Studies: Interpreting World Cultures through Linguistic Analysis": 1 + "Social Studies: Deciphering World Cultures through Archaeological Artifacts": 1 + "Social Studies: Studying World Cultures using Ethnographic Fieldwork Methods": 1 + "Social Studies: Investigating World Cultures through Cultural Materialism": 1 + "Social Studies: Unearthing World Cultures through Historical Text Analysis": 1 + "Social Studies: Surveying World Cultures using Sociocultural Evolution Concepts.": 1 + "Social Studies: The Impact of Internet on Cultural Rhythms in World Societies ": 1 + "Social Studies: The Influence of Satellite Television on Cultural Rhythms in World Societies": 1 + "Social Studies: The Role of Social Media in Shaping Cultural Rhythms in World Societies ": 1 + "Social Studies: The Effect of Radio Broadcasting on Cultural Rhythms in World Societies ": 1 + "Social Studies: Cultural Rhythms in World Societies - A Study on the Impact of Mobile Phones ": 1 + "Social Studies: Understanding Cultural Rhythms in World Societies through Digital Photography ": 1 + "Social Studies: The Influence of Blockchain Technology on Cultural Rhythms in World Societies ": 1 + "Social Studies: Cultural Rhythms in World Societies - A Perspective through Virtual Reality ": 1 + "Social Studies: The Impact of E-Learning Platforms on Cultural Rhythms in World Societies ": 1 + "Social Studies: The Role of Artificial Intelligence in Shaping Cultural Rhythms in World Societies.": 1 + "Music: The Evolution of Melody across Civilizations - A Study in the Ancient Lyre": 1 + "Music: The Development of Polyphony across Civilizations - A Focus on the Organ ": 1 + "Music: The Progression of Rhythm across Civilizations - Exploring the Impact of Percussion Instruments": 1 + "Music: The Influence of the Harpsichord on Baroque Music across Civilizations": 1 + "Music: The Development of Music across Civilizations - The Role of the Printing Press in Music Dissemination": 1 + "Music: The Exploration of Tonality across Civilizations - Highlighting the Use of the Violin": 1 + "Music: The Development of Music across Civilizations - Insights into the Introduction of Electronic Synthesizers": 1 + "Music: The Growth of Harmony across Civilizations - The Contributions of the Piano": 1 + "Music: The Development of Music across Civilizations - The Impact of Recording Technology on Music Preservation": 1 + "Music: The Evolution of Musical Notation across Civilizations - The Influence of the Monochord": 1 + "Physics and Society: The Impact of Quantum Computing on Everyday Life": 1 + "The Revolutionary Role of Nuclear Technology in Modern Society: A Physics Perspective": 1 + "Physics and Society: Understanding the Effect of Nanotechnology on Everyday Life": 1 + "The Influence of Laser Technology on Everyday Life: A Physics Perspective": 1 + "Physics and Society: The Impact of Renewable Energy Technologies on Daily Life": 1 + "The Role of Artificial Intelligence in Society: A Physics Perspective": 1 + "Physics and Society: The Influence of Biotechnology on Everyday Life": 1 + "The Impact of Telecommunication Technology on Society: A Physics Perspective": 1 + "Physics and Society: The Role of Aerospace Technology in Everyday Life": 1 + "The Influence of Robotics on Modern Society: A Physics Perspective": 1 + "Creative Writing: Crafting Tales with English Expressions using Metaphors": 1 + "Creative Writing: Crafting Tales with English Expressions through Story Arcs": 1 + "Creative Writing: Crafting Tales with English Expressions and Character Development": 1 + "Creative Writing: Crafting Tales with English Expressions; Focus on Foreshadowing": 1 + "Creative Writing: Crafting Tales with English Expressions using Microsoft Word ": 1 + "Creative Writing: Crafting Tales with English Expressions and Dialogue Construction": 1 + "Creative Writing: Crafting Tales with English Expressions utilizing Google Docs": 1 + "Creative Writing: Crafting Tales with English Expressions and the Power of Imagery": 1 + "Creative Writing: Crafting Tales with English Expressions; Mastering Point of View": 1 + "Creative Writing: Crafting Tales with English Expressions and the Art of Suspense.": 1 + "Mathematics: Exploring Algebra and Its Business Applications through Linear Equations": 1 + "Unraveling Algebra: A Deep Dive into Quadratic Equations for Business Applications": 1 + "Mathematics: Understanding Algebra and Its Applications in Business through Matrix Algebra": 1 + "Decoding Algebra: The Role of Polynomial Functions in Business Applications": 1 + "Mathematics: A Closer Look at Algebra and Its Applications in Business using Graphing Calculators": 1 + "The Power of Algebra: Exploring Business Applications through Logarithmic Functions": 1 + "Mathematics: Understanding the Impact of Algebra on Business Applications using Microsoft Excel": 1 + "Algebra Unveiled: A Study of Business Applications through Rational Expressions": 1 + "Mathematics: A Comprehensive Approach to Algebra and Its Business Applications through Python Programming": 1 + "Algebra in Action: Understanding Its Business Applications through Statistical Analysis Tools.": 1 + "Mathematics in Art: Exploring the Role of Geometry and Golden Ratio in Visual Design": 1 + "The Effect of Mathematical Fractals on Art: An In-depth Analysis of Geometry in Visual Design": 1 + "The Intersection of Mathematics and Art: The Role of Geometry and Tessellation in Visual Design": 1 + "Mathematics in Art: The Influence of Geometry and the Fibonacci Sequence in Visual Design": 1 + "Exploring the Role of Geometry and Perspective Drawing in Artistic Visual Design": 1 + "Geometry in Art: The Role of 3D Modeling Tools in Visual Design": 1 + "Mathematics in Art: The Role of Geometry and CAD Software in Visual Design": 1 + "The Role of Geometry and Symmetry in Visual Design: A Mathematical Perspective": 1 + "Mathematics in Art: The Influence of Geometry, Proportions and Scaling in Visual Design": 1 + "The Impact of Geometry on Artwork: The Role of Computer Algorithms in Visual Design": 1 + "History of Science: Evolution of the Microscope in Chemistry Research": 1 + "History of Science: The Role of Spectroscopy in Discovering Chemical Elements": 1 + "History of Science: Impact of Distillation Techniques on Chemistry": 1 + "History of Science: Atomic Theory's Pivotal Role in Chemistry": 1 + "History of Science: The Revolution of Gas Chromatography in Chemical Analysis": 1 + "History of Science: Influence of X-Ray Crystallography on Molecular Chemistry": 1 + "History of Science: The Emergence of Electrochemistry in Chemical Reactions": 1 + "History of Science: The Importance of Mass Spectrometry in Identifying Chemical Compounds": 1 + "History of Science: The Contribution of Nuclear Magnetic Resonance in Organic Chemistry": 1 + "History of Science: The Advancement of Computational Chemistry in Molecular Modelling.": 1 + "Physics: Introduction to Classical Mechanics with Newton's Laws": 1 + "Physics: Understanding Classical Mechanics Through Kinematics": 1 + "Physics: Exploring Classical Mechanics with Force and Motion ": 1 + "Physics: Classical Mechanics and the Concept of Energy": 1 + "Physics: Classical Mechanics Using MATLAB for Simulations": 1 + "Physics: Applying Torque in Classical Mechanics": 1 + "Physics: Classical Mechanics: A Deep Dive into Circular Motion": 1 + "Physics: Introduction to Classical Mechanics: Focus on Momentum": 1 + "Physics: Classical Mechanics and the Physics of Oscillations": 1 + "Physics: Classical Mechanics: An Introduction to Fluid Dynamics": 1 + "Physics: Introduction to Classical Mechanics with Applications in Gravitation": 1 + "Elementary Chemistry: Understanding Molecular Structures through Microscopy": 1 + "Elementary Chemistry: Matter and Its Interactions via Thermodynamics": 1 + "Elementary Chemistry: Matter and Its Interactions Studied with Spectroscopy": 1 + "Elementary Chemistry: Matter and Its Interactions through the Lens of Mass Spectrometry": 1 + "Elementary Chemistry: Exploring Electron Configurations and Chemical Bonding": 1 + "Elementary Chemistry: Matter and Its Interactions – An In-depth Study of pH Scale": 1 + "Elementary Chemistry: Matter and Its Interactions with Gas Chromatography": 1 + "Elementary Chemistry: Defining Matter Interactions through Quantum Mechanics": 1 + "Elementary Chemistry: Matter and Its Interactions - A Study in Crystallography": 1 + "Elementary Chemistry: Matter and Its Interactions Analyzed through Nuclear Magnetic Resonance": 1 + "Exploring Ableton Live: The Application of MIDI Controllers in Digital Audio Workstations": 1 + "Harnessing Logic Pro X: The Impact of MIDI Controllers in Music Technology": 1 + "Understanding Pro Tools: MIDI Controllers and Their Role in Digital Audio Workstations": 1 + "A Deep Dive into Cubase: MIDI Controllers in Digital Audio Workstations": 1 + "Manipulating Sound with FL Studio: MIDI Controllers in Digital Audio Workstations": 1 + "An Overview of GarageBand: MIDI Controllers and Their Influence in Music Technology": 1 + "The Fusion of MIDI Controllers and Reason in Modern Digital Audio Workstations": 1 + "Exploring the Dynamics of MIDI Controllers in Reaper: A Digital Audio Workstation": 1 + "The Role of MIDI Controllers in Digital Audio Workstations: A Focus on Bitwig Studio": 1 + "The Influence of MIDI Controllers in Nuendo: A Comprehensive Digital Audio Workstation Tool": 1 + "Neuroscience: Understanding Brain Plasticity through Clay Modelling and MRI Imaging": 1 + "Neuroscience: Utilizing Electroencephalography (EEG) in Understanding Brain Plasticity through Clay Modelling": 1 + "Neuroscience: Understanding Brain Plasticity through Clay Modelling and Functional Magnetic Resonance Imaging (fMRI)": 1 + "Neuroscience: Understanding Brain Plasticity through Clay Modelling - An Insight into Neurogenesis": 1 + "Neuroscience: Understanding Synaptic Plasticity through Clay Modelling and Electrophysiology": 1 + "Neuroscience: Exploring Neuronal Migration through Clay Modelling and Confocal Microscopy": 1 + "Neuroscience: Understanding Brain Plasticity through Clay Modelling and Positron Emission Tomography (PET)": 1 + "Neuroscience: Utilizing Neuropsychological Tests in Understanding Brain Plasticity through Clay Modelling": 1 + "Neuroscience: Understanding Brain Plasticity through Clay Modelling and Diffusion Tensor Imaging (DTI)": 1 + "Neuroscience: Unveiling Glial Cell Function in Brain Plasticity through Clay Modelling and Calcium Imaging": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism": 1 + "English: Literature and Climate Change - Applying GIS Technology in Thematic Analysis": 1 + "English: Literature and Climate Change - Exploring Solutions through Sustainable Narratives": 1 + "English: Literature and Climate Change - A Deep Dive into Carbon Footprints in Literary Themes": 1 + "English: Literature and Climate Change - The Role of Solar Power in Literature Themes": 1 + "English: Literature and Climate Change - Understanding the Influence of Green Technology in Literary Works": 1 + "English: Literature and Climate Change - Examining Eco-activism in Thematic Contexts": 1 + "English: Literature and Climate Change - Using Machine Learning for Thematic Analysis": 1 + "English: Literature and Climate Change - A Data-driven Approach to Exploring Climate Solutions in Literature": 1 + "English: Literature and Climate Change - Exploring the Impact of Renewable Energy Solutions in Literary Themes": 1 + "Language Arts: A Detailed Study on the Rhetoric of Economic Policies and Unemployment through the Lens of Keynesian Economics": 1 + "Unveiling the Impact of Blockchain Technology on Economic Policies and Unemployment: A Language Arts Perspective": 1 + "Language Arts: A Deep Dive into the Rhetoric of Economic Policies and Unemployment using Econometric Analysis": 1 + "Exploring the Role of Artificial Intelligence in Shaping Economic Policies and Unemployment: A Language Arts Study": 1 + "Language Arts: The Rhetoric of Economic Policies and Unemployment - A Detailed Study based on Supply and Demand Principles": 1 + "Language Arts: Understanding the Rhetoric of Economic Policies and Unemployment through the Framework of Game Theory": 1 + "The Rhetoric of Economic Policies and Unemployment: A Language Arts Study on the Impact of Automation and Robotics": 1 + "Language Arts: The Rhetoric of Economic Policies and Unemployment - A Detailed Study with a Focus on Monetary Policy Tools": 1 + "Language Arts: The Influence of Big Data on the Rhetoric of Economic Policies and Unemployment - A Detailed Study": 1 + "Exploring the Rhetoric of Economic Policies and Unemployment through Language Arts: A Detailed Study on the Effect of Fiscal Policies.": 1 + "Geography: Mapping WWII - Global Impact and Strategy through Satellite Imagery": 1 + "Geography: The Role of Aerial Photography in Mapping WWII - Global Impact and Strategy": 1 + "Radar Technology in Geography: Mapping WWII - Global Impact and Strategy": 1 + "Geography: Utilizing GIS in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Mapping WWII - Global Impact and Strategy using Topographic Maps": 1 + "Geography: Decoding WWII - The Impact of Cryptography on Global Strategy": 1 + "Geography: Mapping WWII - Global Impact and Strategy through the Lens of Cartography": 1 + "Geography: The Influence of Telecommunications in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Mapping WWII - Global Impact and Strategy: The Role of Sonar Technology": 1 + "Geography: Mapping WWII - Global Impact and Strategy through GPS Technology": 1 + "Quantum Physics and Its Applications: Exploring Schrödinger's Equation": 1 + "The Role of Quantum Entanglement in Quantum Physics and Its Applications": 1 + "Quantum Physics and Its Applications: A Deep Dive into Particle Physics": 1 + "Quantum Physics and Its Applications in Quantum Computing": 1 + "The Influence of Quantum Teleportation in Quantum Physics and Its Applications": 1 + "Quantum Physics and Its Applications: Understanding Quantum Superposition": 1 + "The Application of Quantum Tunneling in Quantum Physics": 1 + "Quantum Physics and Its Applications: A Study on Quantum Field Theory": 1 + "Quantum Physics and Its Applications in Quantum Cryptography": 1 + "The Role of Quantum Mechanics in Quantum Physics and Its Applications": 1 + "Elementary Education 305: Introduction to Cooperative Games Using Smartboard Technology": 1 + "Elementary Education 305: Implementing Teamwork Concepts in Cooperative Games": 1 + "Elementary Education 305: Cooperative Games with Focus on Digital Tools": 1 + "Elementary Education 305: Introduction to Cooperative Games with iPads": 1 + "Elementary Education 305: Practical Use of VR Technology in Cooperative Games": 1 + "Elementary Education 305: Cooperative Games and the Application of Interactive Whiteboards": 1 + "Elementary Education 305: Introduction to Cooperative Games - Exploring Google Classroom Tools": 1 + "Elementary Education 305: Integrating Educational Apps in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games – Utilizing Online Collaboration Software": 1 + "Elementary Education 305: Cooperative Games Incorporating Flipgrid Video Responses": 1 + "Fundamentals of Biology: Exploring the Life Cycle Through Microscopy": 1 + "The Life Cycle in Detail: A Course on Cellular Biology and DNA Sequencing": 1 + "Fundamentals of Biology: Analyzing the Life Cycle with PCR Technology": 1 + "Understanding the Life Cycle with Bioinformatics: A Biology Course": 1 + "Fundamentals of Biology: The Life Cycle and Genetic Engineering": 1 + "The Life Cycle and CRISPR-Cas9: A Deep Dive into Biology": 1 + "Fundamentals of Biology: The Life Cycle Explored Through Spectrophotometry": 1 + "A Course on the Life Cycle: From Microscope to Genome Sequencing": 1 + "Fundamentals of Biology: Gene Expression in the Life Cycle": 1 + "The Life Cycle Explored: A Course on Biology and Flow Cytometry": 1 + "Introductory Computer Science: Programming with Python using Django": 1 + "Introductory Computer Science: Data Analysis with Python and Pandas": 1 + "Introductory Computer Science: Web Scraping with Python and BeautifulSoup": 1 + "Introductory Computer Science: Machine Learning with Python and Scikit-Learn": 1 + "Introductory Computer Science: Data Visualization with Python and Matplotlib": 1 + "Introductory Computer Science: Deep Learning with Python and TensorFlow": 1 + "Introductory Computer Science: Natural Language Processing with Python and NLTK": 1 + "Introductory Computer Science: Game Development with Python and Pygame": 1 + "Introductory Computer Science: Automation with Python and Selenium": 1 + "Introductory Computer Science: Web Development with Python and Flask": 1 + "Social Studies: The Role of Biodegradable Materials in Waste Management": 1 + "Social Studies: Evaluating the Impact of Landfill Technology on Society": 1 + "Social Studies: Exploring the Societal Repercussions of Waste-to-Energy Conversion": 1 + "Social Studies: The Influence of Composting Practices on Community Development": 1 + "Social Studies: Investigating the Societal Impact of Recycling Technology": 1 + "Social Studies: The Effect of Green Waste Disposal Solutions on Society": 1 + "Social Studies: The Social Implications of Sustainable Waste Management Systems": 1 + "Social Studies: Understanding the Societal Impact of Zero Waste Initiatives": 1 + "Social Studies: The Role of Industrial Waste Treatment in Societal Development": 1 + "Social Studies: Evaluating Societal Changes due to Electronic Waste Management Technologies": 1 + "Social Studies: Impact of Digital Art on Society's Economy": 1 + "Social Studies: Role of Graphic Design Tools in Economic Growth": 1 + "Social Studies: Economic Influence of 3D Printing in Artistic Industries": 1 + "Social Studies: Exploring the Economic Contributions of Virtual Reality in Art": 1 + "Social Studies: The Economic Impact of Photography Technology on Society": 1 + "Social Studies: The Role of Artificial Intelligence in Artistic Contributions to Economy": 1 + "Social Studies: Influence of Film Production Technologies on Society's Economy": 1 + "Social Studies: The Economics of Music Production Technologies": 1 + "Social Studies: Impact of Animation Software on Artistic Contributions to Economy": 1 + "Social Studies: The Role of Augmented Reality in Artistic Economic Growth.": 1 + "Social Studies: Analyzing the Impact of Title IX on Gender Equality in Sports History ": 1 + "Social Studies: The Role of Media Representation in Promoting Gender Equality in Sports History": 1 + "Social Studies: Using Statistical Analysis to Explore Gender Equality in Sports History": 1 + "Social Studies: The Effect of Social Media Campaigns on Gender Equality in Sports History ": 1 + "Social Studies: The Influence of Broadcasting Technology on Gender Equality in Sports History ": 1 + "Social Studies: Use of Surveys in Evaluating Gender Equality in Sports History": 1 + "Social Studies: The Impact of Coaching Techniques on Gender Equality in Sports History ": 1 + "Social Studies: The Role of Sports Psychology in Gender Equality in Sports History ": 1 + "Social Studies: The Effect of Sponsorship and Funding on Gender Equality in Sports History": 1 + "Social Studies: Using Data Visualization Tools to Understand Gender Equality in Sports History": 1 + "Chemistry: Basic Principles and Molecular Orbital Theory Examination using Spartan Software": 1 + "Chemistry: Exploring the Periodic Table and Quantum Numbers with Quantum ESPRESSO": 1 + "Chemistry: Basic Principles and Atomic Structure Analysis using Gaussian Programs": 1 + "Chemistry: Periodic Table Exploration and Electron Configuration with ORCA Software": 1 + "Chemistry: Basic Principles and Spectroscopic Techniques using Thermo Fisher's Spectrometers": 1 + "Chemistry: Periodic Table Exploration and Lewis Structures with ChemDraw": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software": 1 + "Chemistry: Periodic Table Exploration and Stoichiometry using Wolfram Alpha": 1 + "Chemistry: Basic Principles and Thermodynamics Concepts using MATLAB": 1 + "Chemistry: Periodic Table Exploration and Reaction Kinetics with Logger Pro Software": 1 + "Elementary Science: Exploring Photosynthesis in the Life Cycle of Plants": 1 + "Elementary Science: Microscopic Observation of the Life Cycle of Plants": 1 + "Elementary Science: Using Hydroponics in Studying the Life Cycle of Plants": 1 + "Elementary Science: DNA Analysis and the Life Cycle of Plants": 1 + "Elementary Science: Life Cycle of Plants through the Lens of a Microscope": 1 + "Elementary Science: Learning the Life Cycle of Plants through Botanical Illustrations": 1 + "Elementary Science: Life Cycle of Plants: From Seed Germination to Pollination": 1 + "Elementary Science: The Impact of Climate on the Life Cycle of Plants": 1 + "Elementary Science: Life Cycle of Plants Using Computer Simulation": 1 + "Elementary Science: The Role of Sunlight in the Life Cycle of Plants.": 1 + "Advanced Mathematics: Exploring Geometry with Pythagorean Theorem": 1 + "Advanced Mathematics: Geometry Exploration Using Euclidean Concepts": 1 + "Advanced Mathematics: Understanding Geometry through Trigonometric Functions": 1 + "Advanced Mathematics: Exploring Geometry with Geogebra Software": 1 + "Advanced Mathematics: Geometry Exploration Utilizing Cartesian Coordinates": 1 + "Advanced Mathematics: Exploring Geometry with Compass and Straightedge Constructions ": 1 + "Advanced Mathematics: Geometry Discovery through Vector Analysis": 1 + "Advanced Mathematics: Advanced Geometric Proofs and Theorems Exploration": 1 + "Advanced Mathematics: Geometry Exploration with the Use of CAD Systems": 1 + "Advanced Mathematics: Exploring Geometry through Analytic Geometry Concepts.": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow Using Convolutional Networks": 1 + "Exploring Recurrent Neural Networks in Advanced TensorFlow Deep Learning": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow: An Approach using LSTM": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow: A Focus on Reinforcement Learning": 1 + "Deep Learning in TensorFlow: Implementing Advanced Neural Networks Using Autoencoders": 1 + "Advanced Neural Networks: Deep Learning in TensorFlow with Attention Mechanisms": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow: An In-depth look at GANs": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow with Transfer Learning Techniques": 1 + "Advanced Neural Networks and Deep Learning: Building AI Models in TensorFlow using BERT": 1 + "Advanced Neural Networks and Deep Learning: TensorFlow and the Power of RNNs.": 1 + "Physical Education: Enhancing Fitness Through Farm-Based Labor with Shovels": 1 + "Physical Education: Fitness Through Agricultural Labor Using Tractors": 1 + "Physical Education: Maintaining Fitness Through Agricultural Labor with Wheelbarrows": 1 + "Physical Education: Fitness Through Agricultural Labor: The Role of Plows": 1 + "Physical Education: Fitness Through Agricultural Labor: Utilizing Rakes": 1 + "Physical Education: Boosting Fitness Through Agricultural Labor with Scythes": 1 + "Physical Education: Fitness Enhancement Through Agricultural Labor: The Power of Hoes": 1 + "Physical Education: Fitness Through Agricultural Labor: The Impact of Seed Drills": 1 + "Physical Education: Fitness Through Agricultural Labor: Harnessing the Power of Irrigation Systems": 1 + "Physical Education: Fitness Through Agricultural Labor: The Use of Harvesters.": 1 + "Philosophy: Exploring the Ethics of Sustainable Living through Solar Energy Technology": 1 + "Philosophy: Biodynamic Farming and the Ethical Implications for Sustainable Living": 1 + "Philosophy: Rainwater Harvesting - An Ethical Approach to Sustainable Living": 1 + "Philosophy: Ethics of Sustainable Living: Evaluating the Impact of Green Building Techniques": 1 + "Philosophy: Composting - An Ethical Solution for Sustainable Living": 1 + "Philosophy: The Ethics of Sustainable Living: A Deep Dive into Permaculture Design": 1 + "Philosophy: Circular Economy - The Ethical Path to Sustainable Living": 1 + "Philosophy: Ethics of Sustainable Living: A Study on the Benefits of Vertical Farming": 1 + "Philosophy: Ethics of Sustainable Living - The Role of Electric Vehicles": 1 + "Philosophy: Investigating the Ethics of Sustainable Living through the Lens of Renewable Energy Solutions": 1 + "Computer Science: Developing Fitness Apps for Athletes using Java": 1 + "Computer Science: Incorporating Machine Learning in Fitness Apps for Athletes": 1 + "Computer Science: Utilizing Python in Developing Fitness Apps for Athletes": 1 + "Computer Science: Employing Cloud-Based Technology in Fitness Apps Development for Athletes": 1 + "Computer Science: Developing Fitness Apps for Athletes with Blockchain Technology": 1 + "Computer Science: Using AI for Personalized Training in Fitness Apps for Athletes": 1 + "Computer Science: Leveraging SwiftUI in Fitness Apps Development for Athletes": 1 + "Computer Science: Developing Fitness Apps for Athletes using Firebase ": 1 + "Computer Science: Implementing AR Technology in Fitness Apps for Athletes": 1 + "Computer Science: Using React Native for Cross-Platform Fitness Apps for Athletes": 1 + "Biology: Investigating Forest Ecosystems with Electron Microscopes": 1 + "Biology: Exploring Aquatic Ecosystems with DNA Sequencing": 1 + "Biology: Deciphering Desert Ecosystems with Radiocarbon Dating": 1 + "Biology: Unraveling Grassland Ecosystems with Infrared Imaging": 1 + "Biology: Delving into Rainforest Ecosystems with Spectrophotometry": 1 + "Biology: Probing Arctic Ecosystems with Satellite Remote Sensing": 1 + "Biology: Analyzing Ocean Ecosystems with Sonar Technology": 1 + "Biology: Unveiling Mountain Ecosystems with LiDAR Technology": 1 + "Biology: Studying Wetland Ecosystems with GIS Mapping": 1 + "Biology: Examining Tundra Ecosystems with Drone Imagery": 1 + "Mathematics: Exploring Numbers with Abacus and Calculator": 1 + "Mathematics: Exploring Numbers with Abacus and Python Programming": 1 + "Mathematics: Exploring Numbers with Abacus and Excel Spreadsheets": 1 + "Mathematics: Exploring Numbers with Abacus and Fractional Concepts": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes": 1 + "Mathematics: Exploring Numbers with Abacus and Algebraic Equations": 1 + "Mathematics: Exploring Numbers with Abacus and Statistical Analysis": 1 + "Mathematics: Exploring Numbers with Abacus and Graph Theory": 1 + "Mathematics: Exploring Numbers with Abacus and Binary System ": 1 + "Mathematics: Exploring Numbers with Abacus and Trigonometry Functions": 1 + "Language Arts: The Rhetoric of Economic Discourse through Graph Theory": 1 + "Language Arts: The Role of Blockchain Technology in Economic Discourse": 1 + "Language Arts: The Rhetoric of Economic Discourse and its Relation with Big Data Analysis": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics": 1 + "Language Arts: Artificial Intelligence and its Impact on Economic Discourse": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Study on Game Theory": 1 + "Language Arts: The Rhetoric of Economic Discourse: Understanding through Neural Networks": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Role of Cryptocurrency": 1 + "Language Arts: The Rhetoric of Economic Discourse: An Examination of Internet of Things (IoT)": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Look into Machine Learning": 1 + "Basic English: Exploring Creative Writing with Metaphors": 1 + "Introduction to Creative Writing: Harnessing Imagery in Basic English": 1 + "Basic English: Creative Writing and the Art of Storytelling": 1 + "Basic English: Creative Writing through the Lens of Character Development": 1 + "Mastering Dialogue: Basic English Introduction to Creative Writing": 1 + "Basic English: Creative Writing Focused on Setting Description": 1 + "Basic English: Creative Writing with a Focus on Plot Development": 1 + "Exploring Tense and Viewpoint: Basic English's Intro to Creative Writing": 1 + "Basic English: Introduction to Creative Writing using Microsoft Word": 1 + "Basic English: Creative Writing with the Use of Grammarly for Editing.": 1 + "Neuroscience: Exploring the Human Brain and Its Functions through MRI Technology": 1 + "EEG in Neuroscience: A Deep Dive into the Human Brain and Its Functions": 1 + "Neuroscience: Understanding the Human Brain and Its Functions with fMRI": 1 + "PET Scans in Neuroscience: Unraveling the Mysteries of the Human Brain": 1 + "Neuroscience: The Human Brain and Its Functions: A Focus on Neuroplasticity": 1 + "The Role of Neurotransmitters in the Human Brain: A Neuroscience Perspective": 1 + "Neuroscience: The Human Brain and Its Functions through the Lens of Neuropsychology": 1 + "Decoding the Human Brain and Its Functions: An Introduction to Neuromorphic Engineering": 1 + "Neuroscience: The Human Brain, Its Functions, and the Power of Brain-Computer Interfaces": 1 + "Diving into the Human Brain and Its Functions: A Journey through Neuroimaging Techniques": 1 + "Introductory Biology: An In-Depth Study of Plant-Animal Interactions Using DNA Sequencing": 1 + "Metagenomics and Its Role in Understanding Plant-Animal Interactions: An Introductory Biology Course": 1 + "Unveiling Plant-Animal Interactions: An Introductory Biology Course on Bioinformatics": 1 + "Molecular Approach to Plant-Animal Interactions: An Introductory Biology Course Using PCR Techniques": 1 + "Microscopic View of Plant-Animal Interactions: An Introduction to Biology with Microscopy": 1 + "Introductory Biology: Exploring Plant-Animal Interactions through Genetic Engineering": 1 + "The Role of Drones in Studying Plant-Animal Interactions: An Introductory Biology Course": 1 + "Introductory Biology: Examining Plant-Animal Interactions through the Lens of Geospatial Technology": 1 + "The Use of AI in Analyzing Plant-Animal Interactions: An Introductory Biology Course": 1 + "Introductory Biology: A Deep Dive into Plant-Animal Interactions Using Electron Microscopy.": 1 + "Computer Science: Exploring Digital Art with Adobe Photoshop": 1 + "Digital Art Basics: Introduction to Computer Science Using Illustrator": 1 + "3D Design Basics: A Computer Science Approach to Blender": 1 + "Computer Science: Digital Art and Design Basics with Python": 1 + "Basics of Digital Art: A Computer Science Perspective using Maya": 1 + "Computer Science: Understanding Digital Art Through Unity": 1 + "Computer Science in Digital Art: A Deep Dive into AutoDesk SketchBook": 1 + "Digital Art and Design Basics: A Computer Science Approach to CorelDRAW": 1 + "Computer Science: Mastering Digital Art with ZBrush": 1 + "Introduction to Computer Science through Digital Art: Using Inkscape": 1 + "Chemistry in Everyday Life: Utilizing Spectrophotometry to Analyze the Role of Vitamins in Body Function": 1 + "Chemistry in Everyday Life: Using MRI Technology to Study the Effect of Proteins on Body Function": 1 + "Chemistry in Everyday Life: Exploring the Role of Nutrients in Body Function through Genomic Sequencing": 1 + "Chemistry in Everyday Life: The Role of Enzymes in Digestion and Absorption of Nutrients": 1 + "Chemistry in Everyday Life: Using Microscopy to Analyze the Role of Minerals in Body Function": 1 + "Chemistry in Everyday Life: Employing Mass Spectrometry to Study the Role of Fats in Body Function": 1 + "Chemistry in Everyday Life: The Role of Carbohydrates in Body Function Analyzed through Chromatography": 1 + "Chemistry in Everyday Life: Analyzing Nutrient Absorption through the Concept of Osmosis": 1 + "Chemistry in Everyday Life: Using Bioinformatics to Study the Role of Amino Acids in Body Function": 1 + "Chemistry in Everyday Life: The Role of Water in Body Function Explored Through Nuclear Magnetic Resonance (NMR) Spectroscopy.": 1 + "Geography: Using GIS to Analyze Music Cultures Around the Globe": 1 + "Geography: Exploring Global Music Cultures Through Satellite Mapping": 1 + "Ethnomusicology: Examining Music Cultures Globally with Sound Spectrum Analysis": 1 + "Geography: Deciphering Global Music Cultures Through Audio Recording Technology": 1 + "Geography: Utilizing Data Visualization in the Study of Music Cultures Around the Globe": 1 + "Geography: Music Cultures Around the Globe - A Study through Social Media Analytics": 1 + "Geography: A Comparative Analysis of Global Music Cultures Using Machine Learning": 1 + "Geography: Exploring the Impact of Digital Platforms on Music Cultures Around the Globe": 1 + "Geography: Music Cultures Around the Globe - An Ethnographic Approach Using Video Documentation": 1 + "Geography and Music: Using Virtual Reality to Immerse in Global Music Cultures": 1 + "Artistic Perspectives: Exploring Adobe Photoshop in Digital Mediums of Modern Art": 1 + "Artistic Perspectives: The Role of 3D Modeling in Digital Mediums of Modern Art": 1 + "Artistic Perspectives: The Impact of VR Technology on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: Digital Mediums in Modern Art - A Deep Dive into CGI Animation": 1 + "Artistic Perspectives: The Application of Digital Painting Tools in Modern Art": 1 + "Artistic Perspectives: Understanding Vector Graphics in Digital Mediums of Modern Art": 1 + "Artistic Perspectives: The Influence of Augmented Reality on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: Digital Mediums in Modern Art - The Use of CAD Software": 1 + "Artistic Perspectives: The Evolution of Pixel Art in Modern Digital Mediums": 1 + "Artistic Perspectives: The Integration of AI Technologies in Digital Mediums of Modern Art": 1 + "Artistic Elements: Exploring Shapes, Lines and Colors in Art Using Oil Pastels": 1 + "Digital Artistry: Exploring Shapes, Lines and Colors with Adobe Illustrator": 1 + "Traditional Techniques: Exploring Shapes, Lines and Colors in Art through Watercolor": 1 + "Artistic Elements: Exploring Shapes, Lines and Colors in Art with Charcoal Drawing": 1 + "Digital Exploration: Shapes, Lines and Colors in Art Using Graphic Tablets": 1 + "Artistic Elements: An In-depth Study of Shapes, Lines, and Colors in Acrylic Painting": 1 + "Exploring Shapes, Lines and Colors in Art: A Focus on Gouache Techniques": 1 + "The Art of Collage: Exploring Shapes, Lines and Colors with Mixed Media": 1 + "Artistic Elements: Exploring Shapes, Lines and Colors in Art through 3D Printing Technology": 1 + "Exploring Shapes, Lines and Colors in Art: A Study of Techniques in Pastel Pencil Drawing.": 1 + "Neuroscience: Utilizing MRI Technology to Understand the Athlete's Brain": 1 + "Neuroscience: Exploring the Athlete's Brain with Electroencephalography (EEG)": 1 + "Neuroscience: Understanding the Athlete's Brain using Functional Magnetic Resonance Imaging": 1 + "Neuroscience: PET Scans and the Study of the Athlete's Brain": 1 + "Neuroscience: The Role of Neuroplasticity in the Athlete's Brain": 1 + "Neuroscience: Using Transcranial Magnetic Stimulation to Understand the Athlete's Brain": 1 + "Neuroscience: A Deep Dive into the Athlete's Brain with Diffusion Tensor Imaging (DTI)": 1 + "Neuroscience: Unlocking the Athlete's Brain through Positron Emission Tomography": 1 + "Neuroscience: The Athlete's Brain and the Application of Neural Networks": 1 + "Neuroscience: Understanding the Athlete's Brain through the Lens of Cognitive Psychology": 1 + "Social Studies: A Journey through American History using Virtual Reality": 1 + "Social Studies: Exploring American History with Geographic Information Systems": 1 + "Social Studies: A Deep Dive into American History using Document Analysis": 1 + "Social Studies: Understanding American History through Political Cartography": 1 + "Social Studies: Unpacking American History with Archival Research Techniques": 1 + "Social Studies: A Journey through American History with Oral Histories": 1 + "Social Studies: Navigating American History using Statistical Data Analysis": 1 + "Social Studies: Decoding American History with Cryptography": 1 + "Social Studies: Tracing American History through Genealogical Research": 1 + "Social Studies: Exploring American History through the Lens of Economic Theories": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism Utilizing Geographic Information Systems (GIS)": 1 + "English: Literature and Climate Change - An In-Depth Analysis of Carbon Footprint through Eco-criticism ": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and Sustainable Energy Solutions": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and Climate Forecasting Tools": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and Carbon Sequestration Techniques": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism with a Spotlight on Renewable Energy": 1 + "English: Literature and Climate Change - Examining Mitigation Strategies through Eco-criticism ": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and the Utilization of Remote Sensing Technology": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and Green Architecture ": 1 + "English: Literature and Climate Change - A Thematic Exploration through Eco-criticism and the Impact of Electric Vehicles.": 1 + "Physics: Understanding Light and Color with Laser Diode Technology": 1 + "Physics: Exploring Photonics: Light and Color with Laser Technology": 1 + "Physics: Analyzing Light Spectrums: Grasping Color with Laser Beam Technology": 1 + "Physics: Unveiling the Mysteries of Light and Color with Quantum Cascade Laser Technology": 1 + "Physics: Harnessing Light and Color: A Deep Dive into Fiber Laser Technology": 1 + "Physics: The Physics of Color: Decoding Light with CO2 Laser Technology": 1 + "Physics: Grasping Light and Color through the Lens of Laser Scanning Technology": 1 + "Physics: Decoding Light and Color with Laser Spectroscopy Technology": 1 + "Physics: Laser Interferometry: A New Approach to Understanding Light and Color": 1 + "Physics: The Science of Light and Color: An Exploration with Laser Holography Technology": 1 + "Environmental Science: Sustainability in the Production of Sports Equipment through 3D Printing Technology": 1 + "Incorporating Eco-friendly Materials in Sports Equipment: A Ten-pronged Approach": 1 + "Environmental Science: Biomimicry Solutions for Sustainable Sports Equipment Production": 1 + "Green Manufacturing: Implementing Life Cycle Assessment in Sports Equipment Production": 1 + "Environmental Science: Utilizing Solar Energy in the Manufacture of Sustainable Sports Equipment": 1 + "Sports Equipment Production: Implementing Zero Waste Strategies for Sustainability": 1 + "Environmental Science: Sustainable Sports Equipment Production using Biodegradable Materials": 1 + "Sustainable Sports Equipment Manufacturing: Implementing Circular Economy Concepts": 1 + "Environmental Science: Using Recycled Materials for Sustainable Sports Equipment Production": 1 + "Environmental Science: Carbon Footprint Reduction Techniques in Sports Equipment Manufacturing.": 1 + "Social Studies: Analyzing World Cultures Using Sociocultural Evolution and Ethnographic Mapping Techniques": 1 + "Social Studies: A Comparative Analysis of World Cultures through Sociocultural Evolution and Archaeological Tools": 1 + "Social Studies: Utilizing Sociocultural Evolution and GIS Technology in the Study of World Cultures": 1 + "Social Studies: Application of Sociocultural Evolution and Cultural Anthropology in Global Cultural Studies": 1 + "Social Studies: Bridging World Cultures with Sociocultural Evolution and Linguistic Analysis Tools": 1 + "Social Studies: Studying World Cultures through the Lens of Sociocultural Evolution and Ethnohistory Techniques": 1 + "Social Studies: Sociocultural Evolution Concepts and Carbon Dating in World Cultures": 1 + "Social Studies: Using Sociocultural Evolution and Ethnobotany to Understand World Cultures": 1 + "Social Studies: Exploring World Cultures via Sociocultural Evolution and Artifact Analysis": 1 + "Social Studies: A Study of World Cultures through Sociocultural Evolution and Genographic Project Tools": 1 + "Introduction to Probability: The Science of Chance with Python": 1 + "Introduction to Probability: The Science of Chance and Bayesian Analysis": 1 + "Introduction to Probability: The Science of Chance using R Software": 1 + "Introduction to Probability: The Science of Chance with Markov Chains": 1 + "Introduction to Probability: The Science of Chance and Monte Carlo Simulation": 1 + "Introduction to Probability: The Science of Chance using SPSS": 1 + "Introduction to Probability: The Science of Chance and Statistical Inference": 1 + "Introduction to Probability: The Science of Chance with Random Variables": 1 + "Introduction to Probability: The Science of Chance using MATLAB": 1 + "Introduction to Probability: The Science of Chance and Probability Distributions": 1 + "Health: Utilizing Helmets in Safety Measures in Traditional Sports": 1 + "Health: Implementing Whistle Commands for Safety in Traditional Sports": 1 + "Health: Integrating Safety Net Systems in Traditional Sports ": 1 + "Health: The Role of First Aid Kits in Enhancing Safety in Traditional Sports": 1 + "Health: Using GPS Technology for Safety Measures in Traditional Sports": 1 + "Health: The Impact of Protective Gear in Traditional Sports Safety": 1 + "Health: Incorporating Video Replay Technology for Safety in Traditional Sports": 1 + "Health: Advantages of Using Hydration Packs for Safety in Traditional Sports": 1 + "Health: The Use of Biometric Monitors in Traditional Sports for Safety": 1 + "Health: The Importance of Defibrillators in Safety Measures of Traditional Sports": 1 + "Neuroscience for Beginners: Understanding Brain Waves through EEG Technology": 1 + "An Introduction to fMRI: Neuroscience for Beginners Focusing on Brain Waves": 1 + "Deciphering Brain Waves: A Beginners Guide to Understanding Neurofeedback": 1 + "A Deep Dive into Brain Waves: Understanding Neuroscience through NIRS technology": 1 + "Neuroscience for Beginners: A Comprehensive Study on Brain Waves using PET Scans": 1 + "Understanding Brain Waves: An Introductory course to Neuroscience using MEG Technology": 1 + "Neuroscience Demystified: A Beginners Guide to Brain Waves and Neural Oscillations": 1 + "Decoding Brain Waves: An Introduction to Neuroscience using TMS Technology": 1 + "Neuroscience for Beginners: Exploring Brain Waves through Diffusion MRI": 1 + "A Primer in Neuroscience: Understanding Brain Waves with Functional Ultrasound Imaging Technology": 1 + "Organic Chemistry: Understanding Molecular Structures using Nuclear Magnetic Resonance (NMR)": 1 + "Organic Chemistry: The Role of Mass Spectrometry in Decoding Molecules": 1 + "Organic Chemistry: Decoding the Language of Molecules with Infrared Spectroscopy": 1 + "Organic Chemistry: Using the Concepts of Stereochemistry to Understand Molecules": 1 + "Organic Chemistry: Decoding the Language of Molecules using Molecular Modeling Software": 1 + "Organic Chemistry: X-ray Crystallography and the Decoding of Molecular Structures": 1 + "Organic Chemistry: Decoding the Language of Molecules through Chromatography": 1 + "Organic Chemistry: The Role of Computational Chemistry in Decoding Molecules": 1 + "Organic Chemistry: Using Spectroscopic Techniques to Decipher Molecular Language": 1 + "Organic Chemistry: Understanding Molecules with the Help of Quantum Mechanics": 1 + "Chemistry: The Magic of Matter - Exploring Electron Microscopy": 1 + "Chemistry: The Magic of Matter - The Role of Spectrophotometry": 1 + "Chemistry: The Magic of Matter - Atomic Theory Unraveled": 1 + "Chemistry: The Magic of Matter - Understanding Chemical Bonding": 1 + "Chemistry: The Magic of Matter - A Deep Dive into Acid-Base Reactions": 1 + "Chemistry: The Magic of Matter - Discovering Mass Spectrometry": 1 + "Chemistry: The Magic of Matter - The Power of Polymerase Chain Reaction ": 1 + "Chemistry: The Magic of Matter - The Importance of pH Scale": 1 + "Chemistry: The Magic of Matter - Exploring Gas Chromatography": 1 + "Chemistry: The Magic of Matter - The World of Nuclear Magnetic Resonance": 1 + "Chemistry: The Magic of Matter - The Mystery of Molecular Structures": 1 + "Physical Education: Enhancing Coordination and Rhythm in Dance with Metronomes": 1 + "Physical Education: Use of Motion-Sensor Technology in Dance Coordination and Rhythm": 1 + "Physical Education: Utilizing Video Feedback for Coordination and Rhythm in Dance": 1 + "Physical Education: Exploring Coordination and Rhythm in Dance with Beat-Matching Software": 1 + "Physical Education: Biomechanical Analysis for Improved Coordination and Rhythm in Dance": 1 + "Physical Education: Accelerometers and Coordination in Dance Rhythm": 1 + "Physical Education: Virtual Reality Technology in Dance: A Focus on Coordination and Rhythm": 1 + "Physical Education: Coordination and Rhythm in Dance: A Study with Wearable Sensors": 1 + "Physical Education: Coordination and Rhythm in Dance: Using Music Mixing Software": 1 + "Physical Education: Improving Coordination and Rhythm in Dance with Drone Filming Technology": 1 + "Mathematics: Exploring Fibonacci Sequences in Music through Piano": 1 + "Mathematics: Patterns and Sequences in Music using Fourier Analysis": 1 + "Mathematics: Musical Scales and Proportional Ratios: An In-depth Study": 1 + "Mathematics: Pythagorean Tuning in Music: A Pattern Analysis": 1 + "Mathematics: The Geometry of Music: Using Fractal Theory to Understand Patterns and Sequences": 1 + "Mathematics: Patterns and Sequences in Music: A Study on Oscilloscopes": 1 + "Mathematics: Exploring Euclidean Rhythms in Music with Digital Audio Workstations": 1 + "Mathematics: The Golden Ratio in Music: A Computational Analysis": 1 + "Mathematics: Patterns and Sequences in Music using Spectral Analysis": 1 + "Mathematics: Understanding Music with Markov Chains: A Pattern and Sequence Study": 1 + "Physics: The Science of Sound and Music through the Lens of Acoustics": 1 + "Physics: Understanding Sound and Music with Oscilloscopes": 1 + "Physics: The Science of Sound and Music Explored with Sound Wave Analysis": 1 + "Sound Frequency and Pitch: The Physics Behind Music": 1 + "Physics: The Science of Sound, Music, and the Doppler Effect": 1 + "Physics: Exploring Sound and Music with Fourier Transforms": 1 + "Physics: The Science of Sound and Music - A Study in Resonance": 1 + "Advanced Physics: The Science of Sound and Music with Spectrograms": 1 + "Physics: The Science of Sound and Music - An Exploration of Echo and Reverberation": 1 + "Physics: The Science of Sound and Music through the Application of Decibel Meters.": 1 + "Logic: Essential Concepts, Logical Fallacies, and the Use of Syllogism": 1 + "Logic: Exploring Essential Concepts and Logical Fallacies Through Deductive Reasoning": 1 + "Logic: Essential Concepts and Logical Fallacies: A Deep Dive into Propositional Logic": 1 + "Logic: Essential Concepts and Logical Fallacies Made Clear Through Truth Tables": 1 + "Logic: Essential Concepts, Logical Fallacies, and the Power of Predicate Logic": 1 + "Logic: Essential Concepts and Logical Fallacies: An Introduction to Formal Logic": 1 + "Logic: Essential Concepts and Logical Fallacies: Understanding Through Venn Diagrams": 1 + "Logic: Essential Concepts and Logical Fallacies: A Study in Modal Logic": 1 + "Logic: Essential Concepts and Logical Fallacies: Exploring with Logic Puzzles": 1 + "Logic: Essential Concepts, Logical Fallacies, and the Art of Argument Mapping": 1 + "Logic: Essential Concepts and Logical Fallacies: A Journey into Fuzzy Logic": 1 + "Music: The Mathematics of Musical Scales Through the Lens of Fourier Analysis": 1 + "Music: Exploring the Mathematics of Musical Scales using Matlab": 1 + "Music: The Mathematics of Musical Scales - A Focus on Frequency Ratios": 1 + "Music: The Mathematics of Musical Scales and Its Application in Digital Audio Workstations": 1 + "Music: Decoding the Mathematics of Musical Scales with Python": 1 + "Music: The Mathematics of Musical Scales - Understanding with Oscilloscopes": 1 + "Music: The Mathematics of Musical Scales - A Study on Equal Temperament": 1 + "Music: The Mathematics of Musical Scales - Exploring with Electronic Synthesizers": 1 + "Music: The Mathematics of Musical Scales - An Insight through Waveform Analysis": 1 + "Music: The Mathematics of Musical Scales - A Perspective on Pythagorean Tuning.": 1 + "Physics: Understanding Gravity Through Newton's Laws": 1 + "Physics: Exploring Gravity with Gravitational Lensing Technology": 1 + "Physics: Analyzing Gravity Through Einstein's Theory of Relativity": 1 + "Physics: Understanding Gravity Using Space-Time Curvature Concept": 1 + "Physics: Investigating Gravity Through Geodesic Equations": 1 + "Physics: Unveiling Gravity with Gravitational Waves Detection": 1 + "Physics: Understanding Gravity: The Impact of Dark Matter": 1 + "Physics: Deciphering Gravity Through Quantum Mechanics": 1 + "Physics: Gravity Comprehension Using the Cavendish Experiment": 1 + "Physics: Conceptualizing Gravity with the Universal Law of Gravitation": 1 + "Economics for Beginners: Analyzing Supply and Demand with GDP": 1 + "Economics for Beginners: Utilizing Blockchain in Understanding Supply and Demand": 1 + "Economics for Beginners: Applying Elasticity Concept in Supply and Demand": 1 + "Economics for Beginners: Exploring Supply and Demand through Game Theory": 1 + "Economics for Beginners: Exploring Supply and Demand with Econometrics": 1 + "Economics for Beginners: Understanding Supply and Demand with Fiscal Policies": 1 + "Economics for Beginners: Comprehending Supply and Demand through Income Elasticity ": 1 + "Economics for Beginners: Understanding Supply and Demand using Price Ceilings": 1 + "Economics for Beginners: Mastering Supply and Demand with the Keynesian Model": 1 + "Economics for Beginners: Deciphering Supply and Demand with Price Floors": 1 + "Logic 108: The Use of Fibonacci Sequence in Logical Structures of Contemporary Art": 1 + "Logic 108: Exploring Geometric Proportions in Logical Structures of Contemporary Art": 1 + "Logic 108: The Influence of Golden Ratio on Logical Structures in Contemporary Art": 1 + "Logic 108: The Role of Symmetry in Logical Structures of Contemporary Art": 1 + "Logic 108: Incorporating Fractals in Logical Structures of Contemporary Art": 1 + "Logic 108: The Impact of Perspective in Logical Structures of Contemporary Art": 1 + "Logic 108: The Integration of Color Theory in Logical Structures of Contemporary Art": 1 + "Logic 108: The Application of 3D Printing in Logical Structures of Contemporary Art": 1 + "Logic 108: The Use of Digital Imaging in Logical Structures of Contemporary Art": 1 + "Logic 108: The Exploration of Virtual Reality in Logical Structures of Contemporary Art": 1 + "Basic English: Enhancing Creative Writing through the Lens of Character Development using Storyboard That": 1 + "Basic English: Creative Writing through the Lens of Character Development via Mind Mapping Tools": 1 + "Basic English: Character Development in Creative Writing using Scrivener's Corkboard Feature": 1 + "Basic English: Employing Google Docs for Collaborative Character Development in Creative Writing": 1 + "Basic English: Utilizing Microsoft Word's Review Features for Character Development in Creative Writing": 1 + "Basic English: Creative Writing and Character Development through Evernote's Organizational Features": 1 + "Basic English: Character Development in Creative Writing using the Snowflake Method": 1 + "Basic English: Harnessing Grammarly for Polished Character Development in Creative Writing": 1 + "Basic English: Exploring Creative Writing through Character Development using Trello's Project Management Tools": 1 + "Basic English: Creative Writing through the Lens of Character Development with the Aid of ProWritingAid's Style Suggestions": 1 + "Music: The Role of the Violin in Traditional Irish Dance Music": 1 + "Music: The Use of Drums in African Traditional Dance Music": 1 + "Music: The Influence of the Guitar in Flamenco Dance Music": 1 + "Music: Exploring the Piano in Traditional Jazz Dance Music": 1 + "Music: The Impact of the Mbira in Zimbabwean Traditional Dance Music": 1 + "Music: The Importance of the Balafon in West African Traditional Dance Music": 1 + "Music: The Role of the Tabla in Indian Traditional Dance Music": 1 + "Music: The Essence of the Accordion in Cajun Traditional Dance Music": 1 + "Music: The Significance of the Didgeridoo in Australian Traditional Dance Music": 1 + "Music: The Resonance of the Harp in Welsh Traditional Dance Music": 1 + "Language Arts: Storytelling with Salvaged Materials using Digital Photography": 1 + "Language Arts: Crafting Narratives with Upcycled Materials through Stop Motion Animation": 1 + "Language Arts: Storytelling with Salvaged Materials and the Art of Collage": 1 + "Language Arts: Translating Tales through Salvaged Materials and 3D Printing": 1 + "Language Arts: Storytelling with Salvaged Materials: An Exploration of Virtual Reality": 1 + "Language Arts: Creating Stories with Recycled Materials using Augmented Reality": 1 + "Language Arts: Storytelling with Salvaged Materials: The Power of Podcasting": 1 + "Language Arts: Narrative Creation with Salvaged Materials and Digital Illustration": 1 + "Language Arts: Storytelling with Salvaged Materials and Interactive E-books": 1 + "Language Arts: Salvaged Material Narratives: A Study in Film Editing Techniques": 1 + "Chemistry: Fundamentals of Biochemistry with pH Scale Analysis": 1 + "Chemistry: Fundamentals of Biochemistry and the Use of Spectrophotometry": 1 + "Chemistry: Exploring Biochemical Reactions through Microscopy": 1 + "Chemistry: Fundamentals of Biochemistry and Biotechnology - An Introduction to CRISPR": 1 + "Chemistry: Fundamentals of Biochemistry - Understanding Organic Compounds with Mass Spectrometry": 1 + "Chemistry: Fundamentals of Biochemistry - Exploring Protein Structure with X-Ray Crystallography": 1 + "Chemistry: Fundamentals of Biochemistry - Analyzing Metabolic Pathways through NMR Spectroscopy": 1 + "Chemistry: Fundamentals of Biochemistry - A Deep Dive into Enzyme Kinetics": 1 + "Chemistry: Fundamentals of Biochemistry - Understanding Thermodynamics in Biochemical Reactions": 1 + "Chemistry: Fundamentals of Biochemistry - Application of Bioinformatics in Genomic Studies": 1 + "Mathematics: Understanding Fractions through Music Notes with Use of Piano": 1 + "Mathematics: Exploring Fractions through Music Notes using Interactive Digital Tools": 1 + "Mathematics: Grasping Fractions through Music Notes: A Focus on Violin Compositions": 1 + "Mathematics: Applying Fractions through Music Notes using MIDI Software": 1 + "Mathematics: Learning Fractions through Music Notes with Guitar": 1 + "Mathematics: Decoding Fractions through Music Notes using Music Production Software": 1 + "Mathematics: Interpreting Fractions through Music Notes with Use of Metronome": 1 + "Mathematics: Mastering Fractions through Music Notes using Drum Patterns": 1 + "Mathematics: Teaching Fractions through Music Notes with Use of a Digital Audio Workstation": 1 + "Mathematics: Delving into Fractions through Music Notes using Music Theory Concepts.": 1 + "Social Studies on Stage: Understanding Cultural Dances around the World through Video Analysis": 1 + "Social Studies on Stage: Analyzing Cultural Dances with Motion Capture Technology": 1 + "Social Studies on Stage: A Comparative Study of Cultural Dances using VR Simulations": 1 + "Social Studies on Stage: Using AI to Understand Styles in Cultural Dances around the World": 1 + "Social Studies on Stage: Interpreting Cultural Dances through Digital Animation": 1 + "Social Studies on Stage: The Role of Music Technology in Cultural Dances around the World": 1 + "Social Studies on Stage: Exploring Cultural Dances with Interactive Digital Media": 1 + "Social Studies on Stage: Studying Cultural Dances through 3D Modelling and Simulation": 1 + "Social Studies on Stage: Cultural Dances from around the World - A Deep Dive with Data Analysis": 1 + "Social Studies on Stage: Exploring Cultural Dances around the World through Augmented Reality.": 1 + "Chemistry: The Magic of Chemical Reactions through Spectroscopy": 1 + "Chemistry: The Magic of Chemical Reactions using Electron Microscopy": 1 + "Chemistry: The Magic of Chemical Reactions and the Role of Molecular Modelling": 1 + "Chemistry: The Magic of Chemical Reactions Explored with Gas Chromatography": 1 + "Chemistry: The Magic of Chemical Reactions: An Examination using Atomic Force Microscopy": 1 + "Chemistry: The Magic of Chemical Reactions Analysed with Thermal Analysis Tools": 1 + "Chemistry: The Magic of Chemical Reactions: A Deep Dive into the World of Nuclear Magnetic Resonance": 1 + "Chemistry: The Magic of Chemical Reactions: Unveiling Secrets with X-Ray Crystallography": 1 + "Chemistry: The Magic of Chemical Reactions: Understanding with Mass Spectrometry": 1 + "Chemistry: The Magic of Chemical Reactions: A Study using Flow Chemistry Techniques.": 1 + "Historical Perspectives: Ancient Egyptian Art through the Ages": 1 + "Historical Perspectives: Art through the Ages with Fresco Techniques": 1 + "Historical Perspectives: The Impact of Oil Paint in Art through the Ages": 1 + "Historical Perspectives: Art through the Ages - Exploring the Printing Press": 1 + "Historical Perspectives: Renaissance Art through the Ages - The Chiaroscuro Technique": 1 + "Historical Perspectives: Impressionism - Art through the Ages and the Development of Photography": 1 + "Historical Perspectives: Art through the Ages - The Role of Digital Technology": 1 + "Historical Perspectives: Art through the Ages - The Influence of the Palette Knife": 1 + "Historical Perspectives: The Impact of Collage in Art through the Ages": 1 + "Historical Perspectives: Art through the Ages - The Evolution of Sculpture Techniques": 1 + "Geography: Utilizing ArcGIS in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Implementing LiDAR Technology in WWII Mapping - Global Impact and Strategy": 1 + "Geography: Utilizing GIS and Remote Sensing in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Using GIS and Cartographic Generalization in WWII Mapping - Global Impact and Strategy": 1 + "Geography: Utilizing GIS and Spatial Analysis in WWII Mapping - Global Impact and Strategy": 1 + "Geography: Using GIS and Cloud Computing in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Implementing GIS and GPS in WWII Mapping - Global Impact and Strategy": 1 + "Geography: Utilizing GIS and 3D Visualization in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Using GIS and Machine Learning in Mapping WWII - Global Impact and Strategy": 1 + "Geography: Implementing GIS and Big Data Analytics in WWII Mapping - Global Impact and Strategy": 1 + "Art: Expression through Sports Portraiture using Charcoal Techniques": 1 + "Art: Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Art: Creating Dynamic Sports Portraiture with Graphite Pencils": 1 + "Art: Sports Portraiture and the Power of Watercolour": 1 + "Art: Sports Portraiture - A Deep Dive into Digital Illustration": 1 + "Art: The World of Sports Portraiture through Acrylic Painting": 1 + "Art: Expressive Sports Portraiture using Pastel Techniques": 1 + "Art: Sports Portraiture - A Journey into Mixed Media Artistry": 1 + "Art: The Art of Sports Portraiture through Photography ": 1 + "Art: Chiaroscuro Techniques in Sports Portraiture.": 1 + "Language Arts: Mastering Story Structures with Plot Diagrams ": 1 + "Language Arts: Utilizing Mind Maps for Mastering Story Structures": 1 + "Language Arts: Mastering Story Structures through Character Arcs ": 1 + "Language Arts: Exploring Story Structures with 3-Act Frameworks ": 1 + "Language Arts: Mastering Story Structures: A Focus on Setting Development ": 1 + "Language Arts: Mastering Story Structures: The Role of Conflict ": 1 + "Language Arts: Mastering Story Structures: An In-depth Study of Themes ": 1 + "Language Arts: Using Freytag's Pyramid to Master Story Structures ": 1 + "Language Arts: Mastering Story Structures: A Detailed Look at Climaxes ": 1 + "Language Arts: Mastering Story Structures with the Help of Digital Writing Tools.": 1 + "Art: Advanced Pottery and Ceramics: Mastering the Wheel with a Potter's Needle Tool": 1 + "Art: Pottery and Ceramics Techniques: The Art of Throwing on the Wheel with a Rib Tool": 1 + "Art: The Craft of Clay: Exploring Pottery and Ceramics Techniques with a Kiln": 1 + "Art: Pottery and Ceramics Techniques: The Art of Throwing on the Wheel with Loop Trimming Tools": 1 + "Art: Pottery and Ceramics: Enhancing Techniques with a Banding Wheel": 1 + "Art: Pottery and Ceramics Techniques: The Art of Throwing on the Wheel using Slip": 1 + "Art: Pottery and Ceramics: The Art of Wheel-Throwing with Clay Extruders": 1 + "Art: Pottery and Ceramics: The Art of Wheel-Throwing and Using a Potter's Caliper": 1 + "Art: Pottery and Ceramics Techniques: Mastering the Wheel with a Wire Clay Cutter": 1 + "Art: Pottery and Ceramics: The Art of Throwing on the Wheel and Glazing Techniques.": 1 + "Physics Fundamentals: Exploring Newton's Laws through Lego Structures": 1 + "Physics Fundamentals: Understanding Gravity using Lego Structures and Pulleys": 1 + "Physics Fundamentals: Experimenting with Friction through Lego Structures": 1 + "Physics Fundamentals: Lego Structures and the Principles of Inertia": 1 + "Physics Fundamentals: Leveraging Lego Structures for Fluid Dynamics Study": 1 + "Physics Fundamentals: Thermodynamics Explored through Lego Structures": 1 + "Physics Fundamentals: Investigating Magnetic Fields with Lego Structures": 1 + "Physics Fundamentals: Lego Structures and the Study of Light Reflection": 1 + "Physics Fundamentals: Lego Structures for the Study of Sound Waves": 1 + "Physics Fundamentals: Exploring Electrostatics through Lego Structures": 1 + "Music Theory: An Exploration of Classical Composition through Sibelius Software": 1 + "Music Theory: A Deep Dive into Classical Composition using Ableton Live": 1 + "Music Theory: Understanding Classical Compositions using MIDI Technology": 1 + "Music Theory: Decoding Classical Compositions with Digital Audio Workstations": 1 + "Music Theory: Insights into Classical Compositions through Logic Pro X": 1 + "Music Theory: A Journey through Classical Compositions using Pro Tools": 1 + "Music Theory: Introduction to Classical Compositions with FL Studio": 1 + "Music Theory: Navigating Classical Compositions using Cubase Software": 1 + "Music Theory: An Analysis of Classical Compositions through Finale Notation Software": 1 + "Music Theory: A Study of Classical Compositions using Dorico Software": 1 + "Physics: Exploring Sound Waves in Acoustics Using Oscilloscopes": 1 + "Physics: An In-depth Analysis of Sound in Acoustics Through Fourier Transforms": 1 + "Physics: Understanding Sound Frequency in Acoustics Using Spectrum Analyzers": 1 + "Physics: Decoding Sound Waves in Acoustics with Oscillation Theory": 1 + "Physics: Exploring Acoustic Echo Cancellation in Sound Technology": 1 + "Physics: Understanding Sound Propagation in Acoustics Using Ultrasonic Transducers": 1 + "Physics: Probing Sound Intensity in Acoustics Through Decibel Measurements": 1 + "Physics: Unraveling Sound in Acoustics with Wave Interference Theory": 1 + "Physics: Understanding Sound in Acoustics Using Resonance and Vibration Analysis": 1 + "Physics: Investigating Sound in Acoustics Using Doppler Effect Principles": 1 + "Language Arts: Interpreting Financial News through Balance Sheets": 1 + "Language Arts: Utilizing Python in Reading Financial News": 1 + "Language Arts: Deciphering Financial News with Economic Indicators": 1 + "Language Arts: Reading Financial News with Statistical Analysis": 1 + "Language Arts: Understanding Financial News through Forex Market Tools": 1 + "Language Arts: Reading Financial News Using Financial Ratios": 1 + "Language Arts: Interpreting Financial News with Excel Spreadsheets": 1 + "Language Arts: Reading Financial News through Stock Market Analysis": 1 + "Language Arts: Reading Financial News with Cryptocurrency Blockchain Technology": 1 + "Language Arts: Decoding Financial News through Investment Portfolio Management.": 1 + "Computer Science Foundations: Coding with Scratch for Web Development": 1 + "Computer Science Foundations: Coding with Scratch and Python": 1 + "Computer Science Foundations: Coding with Scratch for Game Design": 1 + "Computer Science Foundations: Coding with Scratch and JavaScript": 1 + "Computer Science Foundations: Using Scratch and HTML": 1 + "Computer Science Foundations: Coding with Scratch for Mobile App Development": 1 + "Computer Science Foundations: Exploring AI with Scratch": 1 + "Computer Science Foundations: Coding with Scratch and CSS for Web Design": 1 + "Computer Science Foundations: 3D Modeling with Scratch": 1 + "Computer Science Foundations: Coding with Scratch and Arduino for Robotics": 1 + "Logic: The Structure of Visual Narratives - An Exploration of Adobe Illustrator": 1 + "Logic: The Structure of Visual Narratives - Understanding Storyboarding": 1 + "Logic: The Structure of Visual Narratives - Applying 3D Modeling Technology": 1 + "Logic: The Structure of Visual Narratives - The Art of Animation with Maya": 1 + "Logic: The Structure of Visual Narratives - Utilizing Virtual Reality for Storytelling": 1 + "Logic: The Structure of Visual Narratives - Exploring Augmented Reality": 1 + "Logic: The Structure of Visual Narratives - A Study of Digital Illustration Techniques": 1 + "Logic: The Structure of Visual Narratives - The Impact of Color Theory": 1 + "Logic: The Structure of Visual Narratives - The Role of Typography in Visual Storytelling": 1 + "Logic: The Structure of Visual Narratives - Understanding Perspective Drawing Techniques": 1 + "Economics: The Impact of Blockchain Technology on Global Trade": 1 + "Economics: The Role of Artificial Intelligence in Streamlining Global Trade": 1 + "Economics: How Cryptocurrency Impacts Global Trade Dynamics": 1 + "Economics: The Influence of Internet of Things (IoT) on Global Trade": 1 + "Economics: Analyzing the Effect of 3D Printing on Global Trade": 1 + "Economics: The Transformation of Global Trade by Augmented Reality": 1 + "Economics: The Impact of Machine Learning on Global Trade Efficiency": 1 + "Economics: The Effect of E-commerce on the Global Trade Landscape": 1 + "Economics: Big Data's Influence on Global Trade Decisions": 1 + "Economics: How Cloud Computing is Revolutionizing Global Trade.": 1 + "Biological Systems: An Introduction to Cellular and Molecular Biology with Microscopy": 1 + "Biological Systems: Gene Editing Techniques in Cellular and Molecular Biology": 1 + "An Introduction to Cellular and Molecular Biology: Exploring DNA Sequencing": 1 + "Biological Systems: Cellular and Molecular Biology with Flow Cytometry": 1 + "Biological Systems: Understanding Cellular and Molecular Biology through CRISPR Technology": 1 + "Cellular and Molecular Biology: A Deep Dive into Protein Synthesis": 1 + "An Introduction to Cellular and Molecular Biology: Studying Cell Division Through Mitosis and Meiosis": 1 + "Biological Systems: The Role of Stem Cells in Cellular and Molecular Biology": 1 + "Biological Systems: An Introduction to Cellular and Molecular Biology Using Gel Electrophoresis": 1 + "Biological Systems: Exploring Cellular and Molecular Biology through Genomic Mapping.": 1 + "Elementary Mathematics: Introduction to Algebra with the Abacus": 1 + "Elementary Mathematics: Exploring Algebra through Graphing Calculators": 1 + "Elementary Mathematics: Fundamentals of Algebra using Wolfram Alpha": 1 + "Elementary Mathematics: Algebra Basics with Microsoft Excel": 1 + "Elementary Mathematics: Understanding Algebra through Geometric Representations": 1 + "Elementary Mathematics: The Role of Variables in Algebra": 1 + "Elementary Mathematics: Fundamentals of Algebra with Interactive Whiteboards": 1 + "Elementary Mathematics: Solving Equations in Algebra Using Virtual Manipulatives": 1 + "Elementary Mathematics: Fundamentals of Algebra and the Quadratic Formula": 1 + "Elementary Mathematics: Exploring Algebraic Expressions with TI-84 Calculators": 1 + "History: The Impact of World War I on Cubism": 1 + "The Influence of WWII on Dadaism: A Historical Perspective": 1 + "Photography in the Trenches: World War I and its Impact on Visual Arts": 1 + "The Role of Propaganda in Shaping Modern Art during the World Wars": 1 + "War Technologies and their Reflection in Post-War Modern Art": 1 + "History: The Impact of Atomic Bomb Imagery on Post-WWII Art": 1 + "The Influence of War-time Censorship on Modern Art Movements": 1 + "World Wars and the Evolution of Surrealism: A Historical Analysis": 1 + "The Effects of World War II on the Development of Abstract Expressionism": 1 + "Military Camouflage and its Impact on Modern Art during the World Wars": 1 + "Elementary Reading: Utilizing Digital E-Books in Teaching Sports Literature for Children": 1 + "Elementary Reading: Incorporating Augmented Reality in Sports Literature for Children": 1 + "Elementary Reading: Interactive Whiteboards and Sports Literature for Children": 1 + "Elementary Reading: Sports Literature for Children through Online Platforms": 1 + "Elementary Reading: Leveraging Gamification in Teaching Sports Literature for Children": 1 + "Elementary Reading: Sports Literature for Children using Storytelling Apps": 1 + "Elementary Reading: Hybrid Learning Approach in Sports Literature for Children": 1 + "Elementary Reading: Implementing Project-Based Learning in Sports Literature for Children": 1 + "Elementary Reading: Sports Literature for Children with Assistive Technology": 1 + "Elementary Reading: Applying the Flipped Classroom Model in Sports Literature for Children": 1 + "The Influence of Virtual Reality Technology on Emotional Well-being: A Health Education Study using Mindfulness Apps": 1 + "The Role of AI Music Composing Software in Enhancing Emotional Well-being: A Comprehensive Health Education Study": 1 + "The Implications of Music Therapy Apps on Emotional Well-being: A Health Education Study with Ten Different Interventions": 1 + "Biofeedback Technology and Its Impact on Emotional Well-being: A Health Education Study": 1 + "The Effect of Therapeutic Drumming on Emotional Well-being: A Health Education Study": 1 + "Using Sound Healing Frequencies for Emotional Well-being: A Health Education Focus": 1 + "The Use of MIDI Controllers in Music Therapy: An Emotional Well-being Study": 1 + "The Emotional Well-being Impacts of Interactive Music Technology: A Study on the Healing Power of Binaural Beats": 1 + "The Impact of Digital Audio Workstations on Emotional Well-being: A Health Education Study": 1 + "The Influence of Smart Speakers and AI Music Generation on Emotional Well-being: A Detailed Health Education Study.": 1 + "Computer Coding: Creating Your First Game with Python": 1 + "Computer Coding: Building Your First Game Using Unity": 1 + "Computer Coding: Making Your First Game with C#": 1 + "Computer Coding: Developing Your First Game with JavaScript": 1 + "Computer Coding: Producing Your First Game on Unreal Engine": 1 + "Computer Coding: Crafting Your First Game using Swift": 1 + "Computer Coding: Constructing Your First Game with HTML5": 1 + "Computer Coding: Designing Your First Game with Godot Engine": 1 + "Computer Coding: Forming Your First Game with Java": 1 + "Computer Coding: Architecting Your First Game using RPG Maker": 1 + "Physical Education: Exploring the Role of the Nervous System in Movement through Electromyography ": 1 + "Physical Education: The Influence of the Nervous System in Movement with the Application of Motion Capture Technology": 1 + "Physical Education: Neuromuscular Coordination in Movement using Electroneurography": 1 + "Physical Education: Biofeedback Technology's Role in Understanding Nervous System Facilitated Movement": 1 + "Physical Education: Evaluating the Nervous System's Role in Movement with the Aid of Transcranial Magnetic Stimulation": 1 + "Physical Education: The Role of the Nervous System in Movement, a Deep Dive into Reflex Arcs": 1 + "Physical Education: An Examination of the Nervous System in Movement through the Lens of Neuromechanics": 1 + "Physical Education: The Nervous System and Human Movement: Insights from Functional Electrical Stimulation": 1 + "Physical Education: Neuroplasticity and its Impact on the Nervous System's Role in Movement": 1 + "Physical Education: Unraveling the Nervous System's Role in Movement using Neuroimaging Techniques": 1 + "Basic Physics: Exploring Laws of Motion through Newton's Cradle": 1 + "Practical Understanding of Laws of Motion in Basic Physics using Velocity-Time Graphs": 1 + "Basic Physics: Analyzing Laws of Motion with Inclined Plane Experiments": 1 + "Newton's Second Law and Laws of Motion in Basic Physics": 1 + "Basic Physics: Laws of Motion and the Role of Friction": 1 + "Advanced Study of Laws of Motion in Basic Physics: The Pendulum Experiment": 1 + "Basic Physics: Laws of Motion Explored through the Lens of Gravitational Pull": 1 + "Basic Physics: Laws of Motion and Momentum Conservation": 1 + "The Application of Force Meters in Understanding Laws of Motion: Basic Physics": 1 + "Basic Physics: Laws of Motion - A Comprehensive Study with Acceleration Due to Gravity.": 1 + "The Influence of Radio Propaganda on Modern Art Development during World War I": 1 + "The Impact of Cinematic Propaganda on Modern Art Trends during World War II": 1 + "The Role of Poster Propaganda in Shaping Modern Art during the World Wars": 1 + "The Effect of Newspaper Propaganda on the Evolution of Modern Art in the World Wars": 1 + "The Influence of Propaganda Cartoons on Modern Art during the World Wars": 1 + "The Role of Broadcast Propaganda in Shaping Modern Art during the World Wars": 1 + "The Impact of Propaganda Photography on Modern Art during the World Wars": 1 + "The Role of Propaganda Postcards in Shaping Modern Art during the World Wars": 1 + "The Influence of Propaganda Films on Modern Art during the World Wars": 1 + "The Impact of Radio Broadcast Propaganda on Modern Art during the World Wars.": 1 + "Art: Exploring the Intersection of Visual Art and Music through Photoshop": 1 + "Art: The Fusion of Visual Art and Music through Virtual Reality ": 1 + "Art: Analyzing the Intersection of Visual Art and Music using Adobe Illustrator": 1 + "Art: The Convergence of Visual Art and Music via Digital Art Software": 1 + "Art: The Crossroads of Visual Art and Music through Animation Technology": 1 + "Art: The Merge of Visual Art and Music utilizing 3D Printing Technology": 1 + "Art: The Nexus of Visual Art and Music through Digital Sculpting": 1 + "Art: The Junction of Visual Art and Music with the help of Augmented Reality": 1 + "Art: The Synthesis of Visual Art and Music employing Graphic Design Tools": 1 + "Art: The Cohesion of Visual Art and Music through CAD Software": 1 + "Computer Science 160: Programming with Python - Introduction to Machine Learning": 1 + "Computer Science 160: Programming with Python and Data Visualization Using Matplotlib": 1 + "Computer Science 160: Programming with Python & Network Programming with Socket": 1 + "Computer Science 160: Programming with Python - Web Scraping with BeautifulSoup": 1 + "Computer Science 160: Programming with Python - Data Analysis with Pandas": 1 + "Computer Science 160: Programming with Python - Django for Web Development": 1 + "Computer Science 160: Programming with Python - Game Development with Pygame": 1 + "Computer Science 160: Programming with Python - Natural Language Processing with NLTK": 1 + "Computer Science 160: Programming with Python - Scientific Computing with NumPy": 1 + "Computer Science 160: Programming with Python - GUI Development with Tkinter": 1 + "Social Studies: The Influence of Ballet on Community Cohesion: A Case Study on Zoom Engagement": 1 + "Social Studies: The Role of Traditional Dance in Fostering Community Cohesion: An Application of Social Network Analysis": 1 + "Social Studies: Impact of Dance Therapy on Community Cohesion: Exploring Dance Movement Therapy Techniques": 1 + "Social Studies: The Impact of Hip-hop Dance on Community Cohesion: A Study on Social Media Platforms": 1 + "Social Studies: The Impact of Ballroom Dance on Community Cohesion: An Analysis using GIS Mapping": 1 + "Social Studies: Influence of Folk Dance on Community Cohesion: A Study using Ethnographic Research Methods": 1 + "Social Studies: The Role of Contemporary Dance in Enhancing Community Cohesion: A Case Study using Virtual Reality Technology": 1 + "Social Studies: The Impact of Dance Improvisation on Community Cohesion: Exploring through the Lens of Anthropology": 1 + "Social Studies: The Effect of Salsa Dance on Community Cohesion: An Examination using Participant Observation Methods": 1 + "Social Studies: The Impact of Dance on Community Cohesion in Urban Areas: A Study using Drone Technology.": 1 + "Mathematics: Fundamentals of Sports Statistics Using SPSS": 1 + "Mathematics: Exploring Sports Statistics Through Excel": 1 + "Mathematics: Fundamentals of Sports Statistics With Probability Theory": 1 + "Mathematics: Sports Statistics Analysis Using R Programming": 1 + "Mathematics: Fundamentals of Sports Statistics and Data Visualization": 1 + "Mathematics: Sports Statistics and Predictive Modelling": 1 + "Mathematics: Fundamentals of Sports Statistics with Python": 1 + "Mathematics: Analysis of Sports Statistics Using Regression Models": 1 + "Mathematics: Sports Statistics Through Bayesian Inference": 1 + "Mathematics: Fundamentals of Sports Statistics and Machine Learning": 1 + "Social Studies: The Influence of Streaming Platforms on Music and Cultural Identity": 1 + "Examining the Role of Digital Audio Workstations in Music Production and Cultural Identity": 1 + "Social Studies: The Impact of Auto-tune on Music and its Influence on Cultural Identity": 1 + "The Role of Music in Cultural Identity: A Focus on Social Media Platforms": 1 + "Social Studies: Exploring the Impact of MP3 Technology on Music and Cultural Identity": 1 + "The Effect of Radio Broadcasting on Music and its Role in Cultural Identity": 1 + "Social Studies: The Influence of Sound Recording Technology on Music and Cultural Identity": 1 + "The Role of Music Sampling in Cultural Identity: A Social Studies Perspective": 1 + "Social Studies: The Impact of Music Notation Software on Music and Cultural Identity": 1 + "Social Studies: The Role of Music Synthesis in Shaping Cultural Identity.": 1 + "Computer Science: An Introduction to Python Programming with NumPy": 1 + "Computer Science: An Introduction to Python Programming for Data Analysis": 1 + "Computer Science: An Introduction to Python Programming with Django Framework": 1 + "Computer Science: Python Programming and Machine Learning with Scikit-Learn": 1 + "Computer Science: Python Programming and Web Development with Flask": 1 + "Computer Science: An Introduction to Python Programming for Image Processing with OpenCV": 1 + "Computer Science: Python Programming and Data Visualization with Matplotlib": 1 + "Computer Science: Python Programming and Deep Learning with TensorFlow": 1 + "Computer Science: Python Programming and Natural Language Processing with NLTK": 1 + "Computer Science: Python Programming and Web Scraping with Beautiful Soup": 1 + "Fundamentals of Language Arts: The Role of Communication in Social Media": 1 + "Empowering Communication: The Role of Digital Tools in Language Arts": 1 + "Fundamentals of Language Arts: Exploring the Impact of Podcasts on Communication": 1 + "Language Arts & Communication: The Role of Blogging Platforms": 1 + "Linguistic Mastery: The Role of E-Learning Technologies in Language Arts": 1 + "Language Arts in the Digital Age: Focusing on Communication via Email": 1 + "The Power of Words: Language Arts and Communication through Video Conferencing ": 1 + "Fundamentals of Language Arts: The Role of AI in Enhancing Communication": 1 + "Language Arts and the Impact of Mobile Apps on Communication": 1 + "Speech and Silence: The Role of Audio-Visual Media in Language Arts Communication": 1 + "Neuroscience: Examining Brain Functions with MRI through Interactive Models": 1 + "Neuroscience: Understanding Brain Functions using EEG Technology in Interactive Models": 1 + "Neuroscience: Learning Brain Functions through Interactive Models and PET Scanning": 1 + "Neuroscience: Exploring Brain Functions with fMRI through Interactive Models": 1 + "Neuroscience: Deciphering Brain Functions using Neural Networks in Interactive Models": 1 + "Neuroscience: Investigating Brain Functions through Interactive Models using Machine Learning": 1 + "Neuroscience: Delving into Brain Functions with SPECT Imaging through Interactive Models": 1 + "Neuroscience: Analysing Brain Functions using Artificial Intelligence in Interactive Models": 1 + "Neuroscience: Unraveling Brain Functions through Interactive Models and Deep Learning": 1 + "Neuroscience: Comprehending Brain Functions with DTI Imaging through Interactive Models": 1 + "Analyzing The Impact of Social Media on Sports Culture: Ten Solutions for Enhancing Engagement": 1 + "The Role of Virtual Reality in Sports: Ten Innovative Approaches for Social Impact": 1 + "The Influence of Performance Enhancing Drugs on Sports Society: Ten Strategies for Education and Prevention": 1 + "Sports Broadcasting Technology and Its Societal Impact: Ten Ideas for Fair Representation": 1 + "The Impact of Sports Analytics on Society: Ten Methods for Ethical Data Use": 1 + "How Stadium Architecture Influences Social Interaction: Ten Design Concepts for Community Engagement": 1 + "Exploring the Social Impact of E-Sports: Ten Strategies for Healthy Online Communities": 1 + "Impact of Sports Merchandising on Consumer Behavior: Ten Models for Sustainable Practices": 1 + "The Social Implications of Sports-Related Concussions: Ten Solutions for Safety and Awareness": 1 + "Gender Equality in Sports: Using Media Campaigns for Social Change – Ten Effective Strategies": 1 + "Mathematics: Calculating Budgets for Event Management using Excel": 1 + "Mathematics: Utilizing QuickBooks for Event Management Budgeting": 1 + "Mathematics: Application of Cost-Benefit Analysis in Event Management Budgeting": 1 + "Mathematics: Budget Forecasting with Python for Event Management": 1 + "Mathematics: Event Management Budgeting with Financial Modeling Techniques": 1 + "Mathematics: Leveraging SAP Software in Event Management Budgeting": 1 + "Mathematics: Event Budgeting using Zero-Based Budgeting Concept in Management": 1 + "Mathematics: Event Management Budgeting with the Use of Tableau": 1 + "Mathematics: Understanding Variance Analysis for Event Management Budgeting": 1 + "Mathematics: Event Management Budgeting using the Monte Carlo Simulation Techniques.": 1 + "Introductory Computer Science: Web Development with Python, Flask, and JavaScript": 1 + "Introductory Computer Science: Incorporating SQL in Web Development with Python and Flask": 1 + "Introductory Computer Science: Web Development with Python, Flask, and Bootstrap ": 1 + "Introductory Computer Science: Web Development with Python, Flask, and HTML5": 1 + "Introductory Computer Science: Web Development with Python, Flask, and CSS ": 1 + "Introductory Computer Science: Web Development with Python, Flask, and jQuery": 1 + "Introductory Computer Science: Web Development with Python, Flask, and Django ": 1 + "Introductory Computer Science: Web Development with Python, Flask, and MongoDB ": 1 + "Introductory Computer Science: Web Development with Python, Flask, and Ajax ": 1 + "Introductory Computer Science: Web Development with Python, Flask, and Google Cloud Platform": 1 + "Science: The Scientific Revolution and the Telescope's Role in the Renaissance Period": 1 + "Science: Understanding the Impacts of the Scientific Revolution on Renaissance Period's Astronomy": 1 + "Science: The Printing Press and the Dissemination of Scientific Knowledge in the Renaissance": 1 + "Science: The Scientific Revolution and the Impact of the Compass in the Renaissance Period": 1 + "Science: The Application of Algebra in the Scientific Revolution during the Renaissance Period": 1 + "Science: The Scientific Revolution and the Transformation of Medicine with the Advent of the Microscope in the Renaissance Period": 1 + "Science: The Scientific Revolution: The Influence of the Quadrant in Renaissance Navigation": 1 + "Science: The Significant Role of the Astrolabe in the Scientific Revolution of the Renaissance Period": 1 + "Science: The Scientific Revolution and the Introduction of the Mechanical Clock during the Renaissance": 1 + "Science: The Renaissance’s Scientific Revolution: The Influence of Anatomy and Vivisection": 1 + "Environmental Studies: The Impact of Pesticide Use in Agriculture on Nutritional Value": 1 + "Exploring the Impact of Irrigation Technology on Nutrition in Agricultural Practices": 1 + "Environmental Studies: Soil Fertility Management and Its Effect on Nutritional Value": 1 + "The Influence of Greenhouse Technology on Nutritional Outcomes in Agriculture": 1 + "Precision Farming: Its Role in Enhancing Nutritional Quality in Agriculture": 1 + "GMOs in Agriculture: Implications for Nutritional Content": 1 + "The Role of Biotechnology in Enhancing Nutritional Quality in Agriculture": 1 + "Environmental Studies: The Impact of Organic Farming on Nutritional Quality": 1 + "Understanding the Effect of Drip Irrigation on Nutritional Outcomes in Agriculture": 1 + "Environmental Studies: The Impact of Crop Rotation on Nutritional Quality.": 1 + "Language Arts: War Literature - Exploring Stories and Poems of Courage through the Lens of Metaphor": 1 + "Language Arts: War Literature - Understanding Courage in Stories and Poems with Symbolism": 1 + "Language Arts: War Literature - Examination of Courage in War Stories and Poems using Textual Analysis": 1 + "Language Arts: War Literature - Stories and Poems of Courage: A Study through Narratology": 1 + "Language Arts: War Literature - Using Literary Criticism to Understand Stories and Poems of Courage": 1 + "Language Arts: War Literature - Studying Courage in War Poetry and Prose through Structuralism": 1 + "Language Arts: War Literature - Courage in Stories and Poems: An Exploration through New Historicism": 1 + "Language Arts: War Literature - Analyzing Courage in War Stories and Poems through Feminist Criticism": 1 + "Language Arts: War Literature - Interpreting Courage in Stories and Poems with Psychoanalytical Criticism": 1 + "Language Arts: War Literature - Unveiling Courage in War Stories and Poems through Postcolonial Analysis": 1 + "Computer Science: Programming Beats using Max MSP & Ableton Live - An Introduction to Music Technology": 1 + "Advanced Algorithmic Composition: An Intro to Music Tech using Max MSP ": 1 + "Computer Science: Utilizing MIDI Controllers in Beat Programming with Max MSP": 1 + "Introduction to Music Technology: Sound Synthesis with Max MSP in Computer Science": 1 + "Computer Science: Exploring Max MSP & Digital Audio Workstations for Beat Programming ": 1 + "Sound Design with Max MSP: An Introduction to Computer Science in Music Technology ": 1 + "Computer Science: Max MSP for Beat Programming and Audio Signal Processing": 1 + "Computer Science and Music Tech: Programming Beats using Max MSP & Pro Tools ": 1 + "Computer Science: Beat Programming with Max MSP & Logic Pro - A Music Tech Introduction": 1 + "Introduction to Music Technology: Computer Science meets Beat Programming with Max MSP & FL Studio.": 1 + "Chemistry: A Detailed Study on Atoms, Molecules and Electron Microscopy": 1 + "Chemistry: An Introductory Course on Atoms, Molecules and Spectroscopy Techniques": 1 + "Chemistry: Understanding Atoms and Molecules through Nuclear Magnetic Resonance": 1 + "Chemistry: An In-depth Introduction to Atoms, Molecules and Mass Spectrometry": 1 + "Chemistry: Exploring Atoms and Molecules with Gas Chromatography Techniques ": 1 + "Chemistry: An Elementary Introduction to Atoms, Molecules and Molecular Dynamics Simulation": 1 + "Chemistry: Insight into Atoms and Molecules using X-Ray Diffraction": 1 + "Chemistry: An Introductory Course on Atoms, Molecules and Quantum Chemistry": 1 + "Chemistry: Unraveling Atoms and Molecules through Computational Chemistry": 1 + "Chemistry: An Elementary Introduction to Atoms, Molecules and Crystallography Techniques": 1 + "Physics: The Science of Sound and Music - An In-depth Study of Echo and Reverberation using Oscilloscopes": 1 + "Oscilloscope Applications: Exploring Echo and Reverberation in Sound and Music Physics": 1 + "Physics of Sound: Using Waveform Generators to Understand Echo and Reverberation in Music": 1 + "Sound and Music Physics: Exploring Echo and Reverberation through Frequency Spectrum Analysis": 1 + "Digital Signal Processing in the Physics of Sound and Music: Echo and Reverberation Studies": 1 + "Sound Physics: Exploring Echo and Reverberation using Acoustic Impedance Meters": 1 + "Sound and Music Physics: In-depth Analysis of Echo and Reverberation using Fourier Transforms": 1 + "Sound Analysis: An Exploration of Echo and Reverberation using Sound Level Meters in Physics": 1 + "Physics: The Science of Sound and Music - Examining Echo and Reverberation with Sound Pressure Level Meters": 1 + "Acoustic Analysis: Exploring Echo and Reverberation in Sound and Music Physics using Room Acoustic Software.": 1 + "Elementary English 119: Exploring Metaphors in Creative Writing": 1 + "Elementary English 119: The Role of Dialogue in Creative Writing": 1 + "Elementary English 119: Utilizing Imagery in Creative Writing": 1 + "Elementary English 119: The Art of Character Development in Creative Writing": 1 + "Elementary English 119: Introduction to Plot Structure in Creative Writing": 1 + "Elementary English 119: Harnessing Conflict in Creative Writing": 1 + "Elementary English 119: The Impact of Setting in Creative Writing": 1 + "Elementary English 119: The Power of Point of View in Creative Writing": 1 + "Elementary English 119: Mastering the Art of Description in Creative Writing": 1 + "Elementary English 119: Using Foreshadowing Techniques in Creative Writing": 1 + "Elementary English 119: Crafting Effective Themes in Creative Writing": 1 + "The Renaissance: The Impact of Linear Perspective on Modern Art": 1 + "Exploring The Influence of Oil Paint from The Renaissance on Modern Art": 1 + "Chiaroscuro in The Renaissance and its Legacy in Modern Art": 1 + "The Renaissance: The Advent of Printmaking and its Resonance in Modern Art": 1 + "Anatomy Studies in The Renaissance: Its Impact on Modern Artistic Representation": 1 + "The Renaissance: The Influence of Humanism on Modern Art Concepts": 1 + "The Birth of Naturalism in The Renaissance and its Role in Modern Art": 1 + "The Renaissance: The Impact of Fresco Techniques on Modern Mural Art": 1 + "Perspective and Proportion in The Renaissance: Its Influence on Modern Art": 1 + "The Renaissance: The Legacy of Sculptural Realism in Modern Art Forms": 1 + "Art: The Synthesis of Visual Art and Music using Adobe Illustrator in Graphic Design": 1 + "The Intersection of Visual Art and Music: Exploring Graphic Design through Photoshop": 1 + "Artistic Fusion: Combining Visual Art and Music using CorelDRAW in Graphic Design": 1 + "Art: The Integration of Visual Art and Music using InDesign for Graphic Design": 1 + "Graphic Design's Role in Visual Art and Music: A Study using Autodesk SketchBook": 1 + "Art: Blending Visual Art and Music through the use of Affinity Designer": 1 + "The Art of Sound and Vision: Using Canva for Graphic Design ": 1 + "Visual Art and Music: A Creative Synthesis using Digital Painting in Graphic Design": 1 + "The Harmonization of Visual Art and Music: A Deep Dive into GIMP in Graphic Design": 1 + "Art: The Confluence of Visual Art and Music using 3D Modelling in Graphic Design": 1 + "Essential Algorithms: An Introduction to Python and Machine Learning with Scikit-Learn": 1 + "Essential Algorithms: A Comprehensive Course in Computer Science with Python and Pandas": 1 + "Essential Algorithms: Exploring Data Structures Using Python and NumPy": 1 + "Essential Algorithms: Understanding Object-Oriented Programming in Python with PyCharm": 1 + "Essential Algorithms: A Step-by-Step Guide to Python and Web Scraping with Beautiful Soup": 1 + "Essential Algorithms: Mastering Python and Data Visualization with Matplotlib": 1 + "Essential Algorithms: Delving into Python and Game Development with Pygame": 1 + "Essential Algorithms: A Deep Dive into Python and Neural Networks with TensorFlow": 1 + "Essential Algorithms: Unraveling Python and Data Analysis with SQL Alchemy": 1 + "Essential Algorithms: Python Programming and Network Automation with Netmiko": 1 + "Art 203: Historical Art Movements and the Role of Charcoal": 1 + "Art 203: Impressionism and the Innovation of the Palette Knife": 1 + "Art 203: Renaissance Art and the Development of Linear Perspective": 1 + "Art 203: Historical Art Movements and the Evolution of Oil Paint": 1 + "Art 203: Pointillism and the Use of the Paintbrush": 1 + "Art 203: Historical Art Movements and the Influence of the Camera Obscura": 1 + "Art 203: Cubism and the Impact of Collage Techniques": 1 + "Art 203: Historical Art Movements and the Introduction of Acrylic Paint": 1 + "Art 203: Surrealism and the Experimentation with Photomontage": 1 + "Art 203: Historical Art Movements and the Advancements in Sculpting Tools": 1 + "Art 203: Post-Impressionism and the Application of Pastels": 1 + "Economics: Utilizing GDP to Assess the Economic Impact of Major Global Festivals": 1 + "Economics: Exploring The Economic Impact of Major Global Festivals through Cost-Benefit Analysis": 1 + "Economics: Econometric Modeling and the Economic Impact of Major Global Festivals": 1 + "Economics: The Role of Supply and Demand in the Economic Impact of Major Global Festivals": 1 + "Economics: Applying the Concept of Elasticity to the Economic Impact of Major Global Festivals": 1 + "Economics: The Economic Impact of Major Global Festivals: An Analysis using Keynesian Theory": 1 + "Economics: The Economic Impact of Major Global Festivals: A Perspective from Behavioral Economics": 1 + "Economics: Use of Big Data Analytics in Assessing the Economic Impact of Major Global Festivals": 1 + "Economics: The Economic Impact of Major Global Festivals: A Study using Marginal Analysis": 1 + "Economics: The Economic Impact of Major Global Festivals: An Evaluation using Opportunity Cost.": 1 + "Art: Evaluating the Value of Art in Economy Using Blockchain Technology": 1 + "Art: The Impact of Digital Marketing on the Value of Art in Economy": 1 + "Art: The Role of Augmented Reality in Amplifying the Value of Art in Economy": 1 + "Art: The Value of Art in Economy and the Influence of Social Media": 1 + "Art: An Analysis of the Value of Art in Economy Through Machine Learning": 1 + "Art: The Value of Art in Economy - A Perspective Through E-commerce Platforms": 1 + "Art: The Value of Art in Economy - Understanding with Quantitative Analysis": 1 + "Art: The Effect of Artificial Intelligence on the Value of Art in Economy": 1 + "Art: The Value of Art in Economy - A Study Using Data Analytics": 1 + "Art: Exploring the Value of Art in Economy Using Crowdfunding Platforms": 1 + "Economics: The Impact of Smart Contracts in Blockchain Technology on Global Trade": 1 + "Economics: Exploring the Role of Cryptography in Blockchain's Effect on Global Trade": 1 + "Economics: Distributed Ledger Technology in Blockchain and its Impact on Global Trade": 1 + "Economics: The Influence of Peer-to-Peer Networks in Blockchain on Global Trade": 1 + "Economics: The Role of Consensus Mechanisms in Blockchain on Global Trade": 1 + "Economics: Understanding Hash Functions in Blockchain's Impact on Global Trade": 1 + "Economics: Examining the Impact of Decentralization from Blockchain Technology on Global Trade": 1 + "Economics: Blockchain's Proof-of-Work Concept and its Impact on Global Trade": 1 + "Economics: The Impact of Public and Private Keys in Blockchain on Global Trade": 1 + "Economics: The Effect of Double Spending Solution in Blockchain Technology on Global Trade": 1 + "Data Structures and Algorithms in Computer Science: With a Focus on Java and Introduction to Big O Notation": 1 + "Data Structures and Algorithms: Advanced Java Programming with Eclipse IDE": 1 + "Understanding Data Structures and Algorithms in Computer Science: A Deep Dive into Java Hashmaps": 1 + "Mastering Data Structures and Algorithms: An In-depth Exploration Using Java and IntelliJ IDEA": 1 + "Data Structures and Algorithms in Computer Science: Exploring Java with the use of JUnit for Testing": 1 + "Expanding Java Knowledge: Data Structures, Algorithms, and the Implementation of Recursion": 1 + "Data Structures and Algorithms in Computer Science: Java and the Application of Binary Search Trees": 1 + "Advanced Java Concepts: Data Structures, Algorithms, and the Utilisation of Generics": 1 + "Data Structures and Algorithms in Computer Science: With a Focus on Java and the Introduction of Garbage Collection": 1 + "Comprehensive Guide to Data Structures and Algorithms: Java Programming with the aid of JavaFX for GUI Design.": 1 + "Art: The Science of Colors and the Role of Light": 1 + "Art: The Science of Colors in Digital Media ": 1 + "Art: Exploring Color Theory with Adobe Photoshop": 1 + "Art: The Science of Colors and the Impact of 3D Printing ": 1 + "Art: Implementing Color Grading in Film Production": 1 + "Art: The Science of Colors in Virtual Reality Design ": 1 + "Art: The Role of Color in Augmented Reality": 1 + "Art: The Science of Colors: An In-depth Study Using Graphic Tablets ": 1 + "Art: The Science of Colors in Animation Using Blender ": 1 + "Art: The Science of Colors: Understanding Color Correction in Film Editing ": 1 + "Art: The Science of Colors: A Study with Digital Photography": 1 + "Language Arts: Exploring War Literature through the Lens of Narratology and Digital Humanities": 1 + "The Role of Metafiction in War Literature: A Narratology Study": 1 + "Language Arts: War Literature - Analyzing Stories and Poems of Courage using Psychoanalysis": 1 + "The Use of Intertextuality in War Literature: A Narratological Analysis": 1 + "Language Arts: War Literature - Uncovering Themes of Courage through Structuralism and Narratology": 1 + "Literary Theory in Action: A Study of War Literature Using Narratology and Deconstruction": 1 + "Language Arts: War Literature - A Narratological Analysis using Feminist Theory": 1 + "Postcolonial Perspectives: A Narratological Study of War Literature": 1 + "Language Arts: Utilizing Reader Response Theory in the Study of War Literature and Narratology": 1 + "Language Arts: War Literature - A Study through Narratology and the Application of New Historicism.": 1 + "Logic: Essential Concepts and Logical Fallacies: Exploring with Sudoku Puzzles": 1 + "Advanced Logic: Essential Concepts and Logical Fallacies: Exploring with Chess Strategies": 1 + "Applied Logic: Essential Concepts and Logical Fallacies: A Deep Dive into Propositional Logic": 1 + "Logic and Reasoning: Essential Concepts and Logical Fallacies: A Journey with Rubik's Cube Puzzles": 1 + "Logic: Essential Concepts and Logical Fallacies: Exploring with Python Programming": 1 + "Logic: Essential Concepts and Logical Fallacies: Unraveling Mysteries with Detective Riddles": 1 + "Cognitive Logic: Essential Concepts and Logical Fallacies: Exploring with Brain Teasers": 1 + "Logic: Essential Concepts and Logical Fallacies: Exploring with Mind Mapping Techniques": 1 + "Logic: Essential Concepts and Logical Fallacies: Exploring with Cryptic Crosswords": 1 + "Logic: Essential Concepts and Logical Fallacies: Mastering Logical Reasoning with LSAT Practice Tests.": 1 + "Music: Incorporating Natural Rhythms into Percussion using Djembe Techniques": 1 + "Music: Exploring Natural Rhythms in Percussion through Digital Sampling": 1 + "Music: The Use of MIDI Technology in Incorporating Natural Rhythms into Percussion": 1 + "Music: Incorporating Natural Rhythms into Percussion using Loop Stations": 1 + "Music: The Role of Sequencing Software in Incorporating Natural Rhythms into Percussion": 1 + "Music: Incorporating Natural Rhythms into Percussion through Drum Machines": 1 + "Music: The Use of Electronic Pads in Incorporating Natural Rhythms into Percussion": 1 + "Music: Incorporating Natural Rhythms into Percussion using Cajon Techniques": 1 + "Music: The Role of Sound Editing Tools in Incorporating Natural Rhythms into Percussion": 1 + "Music: Incorporating Natural Rhythms into Percussion through Beatboxing Techniques": 1 + "Unveiling Geometric Shapes in Gouache Art: A Deep Dive into the Use of Palette Knives": 1 + "Color Manipulation in Gouache Painting: Exploring Shapes, Lines, and the Power of Blending Stumps": 1 + "Mastering Gouache Techniques: A Comprehensive Study of Shapes, Lines, Colors, and the Use of Easels": 1 + "The Art of Creating Shapes with Gouache: Incorporating Lines, Colors, and the Influential Role of Paintbrushes": 1 + "The Beauty of Gouache: Exploring Shapes, Lines, and Colors with the Aid of Projectors": 1 + "The Magic of Gouache: Exploring Shapes and Lines using Sponge Tools and Vibrant Colors": 1 + "Unraveling the Wonders of Gouache: A Look at Shapes, Lines, Colors, and the Impact of Light Boxes": 1 + "A Journey through Gouache Techniques: The Role of Shapes, Lines, Colors, and Canvases": 1 + "A Deep Dive into Gouache: Exploring Shapes, Lines, Colors, and the Impact of Layering Techniques": 1 + "Exploring the Power of Gouache: The Synergy of Shapes, Lines, Colors, and the Use of Acrylic Mediums.": 1 + "Biology: The Role of the Human Body in Physical Activities - A Focus on the Cardiovascular System": 1 + "Biology: The Impact of Physical Activities on the Human Skeletal System": 1 + "Biology: The Human Body in Physical Activities - Understanding Muscular System Through Electromyography": 1 + "Biology: The Human Body's Respiratory Response to Physical Activities": 1 + "Biology: The Human Body in Physical Activities - An Insight into Neurological Responses": 1 + "Biology: Exploring the Digestive System's Role in Physical Activities": 1 + "Biology: The Human Body in Physical Activities - Analyzing Energy Metabolism": 1 + "Biology: The Human Body and Physical Activities - A Study of Thermoregulatory Responses": 1 + "Biology: The Human Body in Physical Activities - Endocrine System and Hormonal Adjustments": 1 + "Biology: The Human Body in Physical Activities - Utilizing Biofeedback Technology.": 1 + "Social Studies: Utilizing Event Management Software to Enhance Cultural Diversity": 1 + "Social Studies: Leveraging Artificial Intelligence for Cultural Diversity in Event Management": 1 + "Social Studies: Implementing Digital Marketing Strategies for Cultural Diversity in Event Management": 1 + "Social Studies: Cultural Diversity in Event Management: A Focus on Virtual Reality": 1 + "Social Studies: Using Data Analysis to Improve Cultural Diversity in Event Management": 1 + "Social Studies: Exploring Blockchain Technology for Cultural Diversity in Event Management ": 1 + "Social Studies: Cultural Diversity in Event Management: An Approach Through Social Media Engagement": 1 + "Social Studies: Cultural Diversity in Event Management: The Role of Customer Relationship Management (CRM) Tools": 1 + "Social Studies: Implementing Augmented Reality for Enhancing Cultural Diversity in Event Management": 1 + "Social Studies: Cultural Diversity in Event Management: The Potential of Cloud Computing": 1 + "Physical Education: An In-depth Study of Sports Nutrition and Health Using Body Mass Index": 1 + "Understanding the Role of Calorie Counting in Sports Nutrition and Health: A Physical Education Course": 1 + "Physical Education: The Impact of Hydration Tracking on Sports Nutrition and Health": 1 + "Sports Nutrition and Health in Physical Education: A Focus on Dietary Planning Tools": 1 + "Physical Education: Using Heart Rate Monitors to Optimize Sports Nutrition and Health": 1 + "Physical Education: The Importance of Macronutrient Balancing in Sports Nutrition and Health": 1 + "Exploring the Relationship Between Protein Supplements and Sports Nutrition: A Physical Education Course": 1 + "Physical Education: Sports Nutrition and Health Through the Lens of Glycemic Index": 1 + "Physical Education: Sports Nutrition, Health, and the Role of Fitness Apps": 1 + "Physical Education: Implementing Nutritional Genomics in Sports Nutrition and Health.": 1 + "Logical Reasoning with Deductive Analysis: Strengthening Thought Processes": 1 + "Logical Reasoning with Cognitive Mapping Tools: Strengthening Thought Processes": 1 + "Logical Reasoning using Artificial Intelligence: Strengthening Thought Processes": 1 + "Logical Reasoning with Inductive Reasoning Techniques: Strengthening Thought Processes": 1 + "Logical Reasoning using Diagrammatic Representations: Strengthening Thought Processes": 1 + "Logical Reasoning with Bayesian Inference: Strengthening Thought Processes": 1 + "Logical Reasoning using Probability Theory: Strengthening Thought Processes": 1 + "Logical Reasoning with Decision Trees: Strengthening Thought Processes": 1 + "Logical Reasoning using Syllogistic Logic: Strengthening Thought Processes": 1 + "Logical Reasoning with Propositional Calculus: Strengthening Thought Processes": 1 + "Logical Reasoning using Formal Logic Systems: Strengthening Thought Processes": 1 + "Introduction to Computer Science: Scratch Programming with Array Concepts": 1 + "Introduction to Computer Science: Scratch Programming and Game Design": 1 + "Introduction to Computer Science: Scratch Programming with Interactive Storytelling": 1 + "Introduction to Computer Science: Scratch Programming for Algorithm Building": 1 + "Introduction to Computer Science: Scratch Programming and Animation Creation": 1 + "Introduction to Computer Science: Scratch Programming for Artificial Intelligence": 1 + "Introduction to Computer Science: Scratch Programming with Music and Sound Effects": 1 + "Introduction to Computer Science: Scratch Programming for 2D Graphics": 1 + "Introduction to Computer Science: Scratch Programming with User Input Handling": 1 + "Introduction to Computer Science: Scratch Programming for Data Visualization": 1 + "English Grammar: Utilizing Story Cubes and Google Classroom in Sentence Building": 1 + "English Grammar: Exploring Grammarly and Story Cubes for Effective Sentence Building": 1 + "English Grammar: Incorporating Story Cubes and Kahoot for Interactive Sentence Building": 1 + "English Grammar: Leveraging Story Cubes and Quizlet in Sentence Construction": 1 + "English Grammar: Integrating Story Cubes with Duolingo for Advanced Sentence Building": 1 + "English Grammar: Enhancing Sentence Building with Story Cubes and EdPuzzle": 1 + "English Grammar: Story Cubes and Nearpod for Engaging Sentence Building": 1 + "English Grammar: Combining Story Cubes and Edmodo for Creative Sentence Building": 1 + "English Grammar: Story Cubes and ClassDojo for Collaborative Sentence Building": 1 + "English Grammar: Using Story Cubes and Flipgrid for Interactive Sentence Building": 1 + "Art: The Influence of Oil Paint on the Development of Art Movements through Centuries": 1 + "Art: The Role of Photography in the Evolution of Art Movements over Time": 1 + "Art: The Impact of Lithography on the Course of Art Movements through Centuries": 1 + "Art: The Development of Art Movements and the Emergence of Acrylic Paint": 1 + "Art: The Transformation of Art Movements through Centuries: A Study on Cubism": 1 + "Art: The Effect of Digital Technology on the Progression of Art Movements": 1 + "Art: The Contribution of Sculpture Tools in Shaping Art Movements through Centuries": 1 + "Art: The Development of Art Movements: The Perspective Technique Revolution": 1 + "Art: The Development of Art Movements through Centuries: A Focus on Impressionism and Oil Painting": 1 + "Art: How Engraving Tools Paved the Way for New Art Movements across Centuries": 1 + "Mathematics: Understanding Fractions and Decimals using Fraction Bars": 1 + "Mathematics: Grasping Fractions and Decimals through the Abacus": 1 + "Mathematics: Navigating Fractions and Decimals with Digital Math Games": 1 + "Mathematics: Exploring Fractions and Decimals using the Number Line Technique": 1 + "Mathematics: Unpacking Fractions and Decimals with Interactive Whiteboards": 1 + "Mathematics: Mastering Fractions and Decimals through Manipulatives": 1 + "Mathematics: Learning Fractions and Decimals with Fraction Circles": 1 + "Mathematics: Comprehending Fractions and Decimals using the Montessori Method": 1 + "Mathematics: Decoding Fractions and Decimals through Virtual Reality Learning": 1 + "Mathematics: Understanding Fractions and Decimals with the Concept of Equivalence": 1 + "Science: The Renaissance’s Scientific Revolution: The Role of Telescopes in Advancing Astronomy": 1 + "Scientific Perspectives: The Influence of Galileo's Telescope on the Renaissance's Scientific Revolution": 1 + "The Revolution of Anatomy and Vivisection: The Application of the Microscope in the Renaissance’s Scientific Revolution": 1 + "Science: The Renaissance’s Scientific Revolution: The Impact of Andreas Vesalius's Fabrica on Anatomy and Vivisection": 1 + "The Renaissance’s Scientific Revolution: The Introduction and Influence of the Printing Press": 1 + "Science: The Renaissance’s Scientific Revolution: The Influence of Alchemy on Anatomy and Vivisection": 1 + "The Renaissance’s Scientific Revolution: The Influence of Anatomy and Vivisection Through the Lens of the Astrolabe": 1 + "Science: The Renaissance’s Scientific Revolution: The Role of Early Thermometers in Understanding Human Anatomy": 1 + "The Renaissance’s Scientific Revolution: The Influence of Anatomical Theatres on Anatomy and Vivisection": 1 + "Science: The Renaissance’s Scientific Revolution: The Impact of the Compass on Navigational and Anatomical Studies.": 1 + "Social Studies: The Influence of Vinyl Records on 1960s Society ": 1 + "Social Studies: The Role of Digital Streaming Services in Modern Society ": 1 + "Social Studies: The Impact of Hip-Hop Culture on Urban Society ": 1 + "Social Studies: The Transformation of Society through Music Videos ": 1 + "Social Studies: The Influence of Auto-Tune Technology on Modern Music and Society ": 1 + "Social Studies: The Effect of MP3 and Digital Downloads on Music Consumption": 1 + "Social Studies: The Influence of the Gramophone on Early 20th Century Society ": 1 + "Social Studies: Analyzing the Impact of Radio Broadcast on Pop Culture": 1 + "Social Studies: The Influence of Music Sampling in Digital Era Society ": 1 + "Social Studies: The Impact of Social Media on Music Distribution and Society.": 1 + "Art: Sketching Heroes of World War II using Charcoal": 1 + "Art: Utilizing Pencil Shading Techniques in Sketching WWII Heroes": 1 + "Art: Sketching Heroes of World War II: A Focus on Graphite Tools": 1 + "Art: Drawing WWII Heroes with Digital Tools": 1 + "Art: Ink Drawing Techniques in Sketching World War II Heroes": 1 + "Art: Using Watercolor Pencils to Sketch Heroes of World War II": 1 + "Art: A Pastel Approach to Sketching World War II Heroes": 1 + "Art: Sketching WWII Heroes through the Lens of Perspective Drawing": 1 + "Art: The Art of Sketching WWII Heroes using Mixed Media": 1 + "Art: Understanding Proportions in Sketching Heroes of World War II.": 1 + "Physical Education 200: Yoga's Impact on Health and Wellness in Different Cultures": 1 + "Physical Education 200: Exploring the Role of Calisthenics in Health and Wellness Across Cultures": 1 + "Physical Education 200: The Influence of Traditional Martial Arts on Health and Wellness in Various Cultures": 1 + "Physical Education 200: The Role of Dance in Promoting Health and Wellness Across Cultures": 1 + "Physical Education 200: Analyzing the Effect of Aerobics on Health and Wellness in Diverse Cultures": 1 + "Physical Education 200: The Impact of Resistance Training on Health and Wellness in Different Cultures": 1 + "Physical Education 200: The Role of Cardiovascular Exercise in Health and Wellness across Cultures": 1 + "Physical Education 200: Understanding the Influence of Pilates on Health and Wellness in Various Cultures": 1 + "Physical Education 200: The Effect of High Intensity Interval Training on Health and Wellness in Diverse Cultures": 1 + "Physical Education 200: The Impact of Functional Training on Health and Wellness Across Cultures": 1 + "Mastering the Use of Palette Knives in Gouache Art: A Dive into Shapes, Lines, and Colors": 1 + "Exploring Art with Gouache and Easel: A Detailed Study of Shapes, Lines, and Colors": 1 + "In-Depth Analysis of Brushwork in Gouache Art: Exploring Shapes, Lines, and Colors": 1 + "Adopting Digital Techniques in Gouache Art: A Comprehensive Exploration of Shapes, Lines, and Colors": 1 + "Using Lightbox for Gouache Art: A Study of Shapes, Lines, and Colors": 1 + "The Impact of Color Wheel on Gouache Techniques: An Exploration of Shapes and Lines": 1 + "The Role of Perspective in Gouache Art: A Detailed Exploration of Shapes, Lines, and Colors": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors": 1 + "Gouache Techniques on Canvas: An In-depth Study of Shapes, Lines, and Colors": 1 + "Exploring the Use of Texture in Gouache Art: Focusing on Shapes, Lines, and Colors": 1 + "Organic Chemistry: Understanding Molecular Structures - An Introduction to Molecular Dynamics using NMR Spectroscopy": 1 + "Organic Chemistry: The Role of Computational Simulations in Molecular Dynamics": 1 + "Organic Chemistry: Decoding Molecular Structures - An Introduction to Quantum Mechanics and Molecular Dynamics": 1 + "Organic Chemistry: Molecular Dynamics and the Application of Spectroscopy Techniques": 1 + "Organic Chemistry: An Exploration of Molecular Structures through X-ray Crystallography": 1 + "Organic Chemistry: A Deep Dive into Molecular Dynamics with Mass Spectrometry": 1 + "Organic Chemistry: Insights into Molecular Structures - An Introduction to Molecular Dynamics and Electron Microscopy": 1 + "Organic Chemistry: A Comprehensive Guide to Molecular Dynamics using Computational Chemistry": 1 + "Organic Chemistry: Understanding Molecular Structures with the Aid of Infrared Spectroscopy": 1 + "Organic Chemistry: Molecular Dynamics - A Detailed Study using Quantum Chemical Calculations.": 1 + "Physics Fundamentals: Introduction to Quantum Mechanics and the Role of Schrödinger's Equation": 1 + "Physics Fundamentals: Quantum Mechanics and the Application of Feynman Diagrams": 1 + "Physics Fundamentals: Quantum Mechanics and the Understanding of Quantum Entanglement": 1 + "Physics Fundamentals: Quantum Mechanics - Exploring Heisenberg's Uncertainty Principle": 1 + "Physics Fundamentals: Quantum Mechanics and the Use of Quantum Computers": 1 + "Physics Fundamentals: Quantum Mechanics - An Examination of Quantum States": 1 + "Physics Fundamentals: Quantum Mechanics and the Study of Quantum Field Theory": 1 + "Physics Fundamentals: Quantum Mechanics - A Focus on Wave-Particle Duality": 1 + "Physics Fundamentals: Quantum Mechanics and the Implementation of Quantum Cryptography": 1 + "Physics Fundamentals: Quantum Mechanics - The Importance of Quantum Tunneling": 1 + "Logical Minds: An Introduction to Syllogistic Reasoning for Children": 1 + "Logical Minds: Introducing Truth Tables to Children": 1 + "Logical Minds: Learning Reasoning through Puzzles for Children": 1 + "Logical Minds: Teaching Deductive Reasoning to Children": 1 + "Logical Minds: An Introduction to Propositional Logic for Children": 1 + "Logical Minds: An Introduction to Inductive Reasoning for Children": 1 + "Logical Minds: Enhancing Children's Logic through Coding": 1 + "Logical Minds: An Introduction to Fallacies for Children": 1 + "Logical Minds: Harnessing the Power of Logic Puzzles for Children": 1 + "Logical Minds: Using Chess to Teach Reasoning to Children": 1 + "Elementary Mathematics: Understanding Statistics and Probability through Excel": 1 + "Elementary Mathematics: Exploring Statistics and Probability with R Programming": 1 + "Elementary Mathematics: Using SPSS for Statistics and Probability Concepts": 1 + "Elementary Mathematics: Data Analysis with Statistics and Probability in Python": 1 + "Elementary Mathematics: Introduction to Bayesian Probability in Statistics": 1 + "Elementary Mathematics: Exploring Hypothesis Testing in Statistics and Probability": 1 + "Elementary Mathematics: Hands-on Application of Probability Distributions in Statistics": 1 + "Elementary Mathematics: Understanding Regression Analysis in Statistics and Probability": 1 + "Elementary Mathematics: Using MATLAB for Probability and Statistics Concepts": 1 + "Elementary Mathematics: Concepts of Statistics and Probability with Graph Theory.": 1 + "Introduction to Probability: Exploring the Science of Chance with Random Variables Using MATLAB": 1 + "Mastering Probability: A Deep Dive into Chance and Random Variables with Python": 1 + "Probability Essentials: Understanding Chance and Random Variables Through SPSS": 1 + "Practical Probability: Leveraging Excel for Random Variables and Chance Analysis": 1 + "Advanced Probability: Exploring Random Variables and Chance Theory using R Programming": 1 + "Probability & Statistics: Analyzing Chance with Random Variables in SAS": 1 + "Understanding Probability: Applying Random Variables and Chance Concepts with JMP": 1 + "Probability in Action: Using Stata for Chance and Random Variables Analysis": 1 + "Probability for Professionals: Mastering Chance and Random Variables with Minitab": 1 + "Probability Unleashed: Harnessing the Power of Chance and Random Variables Using Tableau.": 1 + "Introduction to Supervised Machine Learning Algorithms with Python and Scikit-Learn": 1 + "Deep Learning in Python: An Introduction to Machine Learning Algorithms with TensorFlow": 1 + "Unleashing Machine Learning Algorithms in Python Using PyTorch": 1 + "Understanding Regression Analysis: Introduction to Machine Learning Algorithms in Python": 1 + "Introduction to Keras and Neural Networks: Machine Learning Algorithms in Python": 1 + "Python Machine Learning: An Introduction to Clustering Algorithms with SciPy": 1 + "Advanced Python: Introduction to Machine Learning Algorithms with Pandas": 1 + "Exploring Decision Trees: Machine Learning Algorithms in Python": 1 + "Practical Machine Learning Algorithms in Python with Matplotlib Visualization": 1 + "Python and Numpy: Introduction to Machine Learning Algorithms in Linear Algebra Perspective.": 1 + "Science: Exploring the Solar System with Spectroscopy": 1 + "Science: Delving into the Solar System through Radio Astronomy": 1 + "Science: Astrobiology and the Exploration of the Solar System": 1 + "Science: Understanding the Solar System with the Hubble Space Telescope": 1 + "Science: Probing the Solar System with the Voyager Spacecraft": 1 + "Science: Uncovering Mysteries of the Solar System with Astrochemistry": 1 + "Science: The Solar System through the lens of Infrared Astronomy": 1 + "Science: Exploring the Solar System with Satellite Imagery": 1 + "Science: Observing the Solar System with Space Probes": 1 + "Science: The Solar System and the Role of Robotic Exploration": 1 + "Physics: The Magic of Magnetism and Its Application in MRI Technology": 1 + "Physics: Exploring Electromagnetism in the Magic of Magnetism": 1 + "Physics: The Magic of Magnetism - Understanding Magnetic Resonance": 1 + "Physics: The Magic of Magnetism - A Deep Dive into Geomagnetism": 1 + "Physics: The Magic of Magnetism - Analysis of Magnetic Fields": 1 + "Physics: The Magic of Magnetism - An Introduction to Magnetoencephalography": 1 + "Physics: The Magic of Magnetism - The Science Behind Magnetic Levitation": 1 + "Physics: The Magic of Magnetism - The Role of Ferrimagnetism": 1 + "Physics: The Magic of Magnetism - Unravelling the Secrets of Supermagnetism": 1 + "Physics: The Magic of Magnetism - The Influence of Magnetism on Quantum Physics": 1 + "Physics: The Magic of Magnetism - The Power of Magnetic Force in Particle Accelerators": 1 + "Exploring the Fibonacci Sequence in Music: The Mathematics of Musical Scales and Its Use in Pro Tools": 1 + "Music and Mathematics: Understanding Musical Scales through Fourier Transformations in Ableton Live": 1 + "The Mathematics of Musical Scales: A Deep Dive into Pythagorean Tuning and Its Application in FL Studio": 1 + "Music, Math, and MIDI: Exploring Musical Scales and Their Digital Representation in Cubase": 1 + "Music Theory in Digital Age: Applying Harmonic Series in Musical Scales with Logic Pro X": 1 + "The Mathematics of Just Intonation: A Practical Approach in Reason Software": 1 + "The World of Equal Temperament: Investigating Music Scales and its Implementation in GarageBand": 1 + "The Intersection of Math and Music: Exploring the Physics of Sound Waves in Musical Scales Using Audacity": 1 + "The Mathematics of Octave Divisions: Studying Musical Scales and Their Use in Serato DJ Pro": 1 + "Applying the Circle of Fifths: The Mathematics of Musical Scales in the Digital World of Bitwig Studio.": 1 + "Biology: Exploring Cell Structures through Microscopic Art using Electron Microscopy ": 1 + "Biology: The Art of Microscopy - Exploring Mitosis in Depth ": 1 + "Biology and Art: Exploring DNA Structures through Microscopes ": 1 + "Biology: An Artistic Study of Cellular Respiration through Microscopy ": 1 + "Biology: Exploring Life through Microscopic Art - A Focus on Cellular Division ": 1 + "Microscopic Art in Biology: Diving Deep into Photosynthesis ": 1 + "Biology: The Art of Chromosome Visualization through Microscopy ": 1 + "Biology: Unveiling the Mysteries of Genes through Microscopic Art ": 1 + "Biology and Microscopy: The Artistic Exploration of Protein Synthesis ": 1 + "Biology: An In-Depth Look at Cellular Organelles through Microscopic Art ": 1 + "Biology: Exploring Life through Microscopic Art - An Analysis of Cellular Metabolism": 1 + "Music: Decoding the Mathematics of Musical Scales with Python Using NumPy": 1 + "Analyzing Sound Waves: A Detailed Study of Musical Scales with Python and FFT Algorithm": 1 + "Music and Math: Exploring Musical Scales through Python and Spectral Analysis": 1 + "Unveiling Music: The Mathematics of Musical Scales Explored with Python and Matplotlib": 1 + "Music: Decoding the Mathematics of Musical Scales with Python and the Theory of Frequency Ratios": 1 + "Harmonizing Music and Math: Musical Scales Decoded with Python and Jupyter Notebooks": 1 + "Music: Exploring the Mathematics of Musical Scales with Python and PyDub": 1 + "Music: Decoding the Mathematics of Musical Scales using Python and MIDI Tools": 1 + "Python and Music: Dissecting the Mathematics of Musical Scales with SciPy": 1 + "Music: Deciphering the Math of Musical Scales with Python and the Principle of Octave Equivalence": 1 + "Neuroscience: Exploring Neural Networks and Synapses Through fMRI Technology": 1 + "Neuroscience: An In-depth Analysis of Neural Networks and Synapses Using EEG": 1 + "Neuroscience: Understanding Neural Networks and Synapses Through PET Scans": 1 + "Neuroscience: Basics of Neural Networks and Synapses Using Patch Clamp Techniques": 1 + "Neuroscience: Dissecting Neural Networks and Synapses Using Two-Photon Microscopy": 1 + "Neuroscience: Insights into Neural Networks and Synapses Through Optogenetics": 1 + "Neuroscience: Neural Networks and Synapses Explored Through Transcranial Magnetic Stimulation": 1 + "Neuroscience: Basics of Neural Networks and Synapses Unveiled Through Calcium Imaging": 1 + "Neuroscience: Neural Networks and Synapses Understood Through Diffusion Tensor Imaging": 1 + "Neuroscience: The Role of Neural Networks and Synapses Explored Through Single-Cell RNA Sequencing.": 1 + "Music Foundation: Understanding Rhythm and Melody through Tempo": 1 + "Music Foundation: Exploring Rhythm and Melody with MIDI Technology": 1 + "Music Foundation: Grasping Rhythm and Melody via DAW Software": 1 + "Music Foundation: Learning Rhythm and Melody with Beat Patterns": 1 + "Music Foundation: Understanding Rhythm and Melody using Notation Software": 1 + "Music Foundation: Mastering Rhythm and Melody with Metronomes": 1 + "Music Foundation: Rhythm and Melody Exploration using Synthesizers": 1 + "Music Foundation: Dissecting Rhythm and Melody through Loop Pedals": 1 + "Music Foundation: Comprehending Rhythm and Melody with Sound Sampling": 1 + "Music Foundation: An Introduction to Rhythm and Melody via Digital Audio Workstations": 1 + "Science: Sound Waves and Acoustics - An Exploration of Oscilloscopes": 1 + "The Role of Frequency Modulation in Sound Waves and Acoustics": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study": 1 + "Science: Sound Waves, Acoustics, and the Doppler Effect": 1 + "Understanding Sound Waves and Acoustics through Decibel Meters": 1 + "Advanced Acoustics: Applying Fourier Transforms in Sound Wave Analysis": 1 + "Sonar Technology: A Peek into Sound Waves and Acoustics": 1 + "Science: Sound Waves, Acoustics, and the Concept of Echo": 1 + "Investigating Sound Waves and Acoustics with Spectrograms": 1 + "Sound Waves and Acoustics: A Deep Dive into Reverberation.": 1 + "Mathematics: Utilizing Regression Analysis in Environmental Research Statistics": 1 + "Mathematics: Implementing Bayesian Theory in Statistics for Environmental Research": 1 + "Mathematics: Advanced ANOVA Techniques in Environmental Research Statistics": 1 + "Mathematics: Statistical Modelling with R Programming in Environmental Research": 1 + "Mathematics: Application of Machine Learning in Environmental Research Statistics": 1 + "Mathematics: SPSS for Data Analysis in Environmental Research Statistics": 1 + "Mathematics: Python in Statistical Modeling for Environmental Research": 1 + "Mathematics: Time Series Analysis in Environmental Research Statistics": 1 + "Mathematics: GIS and Spatial Analysis in Environmental Research Statistics": 1 + "Mathematics: Multivariate Analysis in Environmental Research Statistics": 1 + "Computer Programming: Python Basics to Applications": 1 + "Computer Programming: Learning Java From Basics to Applications": 1 + "Computer Programming: An Introduction to C++ From Basics to Applications": 1 + "Computer Programming: From Basics to Applications with HTML & CSS": 1 + "Computer Programming: Mastering JavaScript From Basics to Applications": 1 + "Computer Programming: From Basics to Applications Using Ruby on Rails": 1 + "Computer Programming: A Deep Dive into Swift From Basics to Applications": 1 + "Computer Programming: PHP From Basics to Web Applications": 1 + "Computer Programming: From Basics to Applications with SQL Databases": 1 + "Computer Programming: Understanding Object-Oriented Programming from Basics to Applications.": 1 + "English Literacy Enhancement: Utilizing iMovie and Adobe Photoshop for Digital Storytelling ": 1 + "Advanced English Literacy: Reading and Writing with iMovie and Procreate for Animated Storytelling ": 1 + "English Literacy Skills: Reading, Writing, and Storytelling using iMovie and Canva for Graphic Design ": 1 + "English Literacy: Integrating iMovie and Google Docs for Collaborative Storytelling ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie and Microsoft OneNote ": 1 + "English Literacy: Reading and Writing Enhancement using iMovie and Audacity for Audio Storytelling ": 1 + "English Literacy: Exploring Reading and Writing through iMovie and Powerpoint for Visual Storytelling ": 1 + "English Literacy: Reading, Writing, and Storytelling with iMovie and Prezi for Interactive Presentations ": 1 + "English Literacy: Reading and Writing Skills Enhancement using iMovie and GarageBand for Musical Storytelling ": 1 + "Advanced Literacy: Utilizing iMovie and Adobe Illustrator for Graphic Storytelling in English Language.": 1 + "Neuroscience of Computation: Exploring Cognitive Processes with Functional Magnetic Resonance Imaging": 1 + "The Application of Machine Learning in the Neuroscience of Computation and Cognitive Processes": 1 + "Computational Neuroscience and Cognitive Processes: An Introduction to Neural Networks": 1 + "Deep Learning Techniques in the Study of Neuroscience of Computation and Cognitive Processes": 1 + "Neuroscience of Computation: Utilizing Electroencephalography in the Study of Cognitive Processes": 1 + "The Role of Artificial Intelligence in the Neuroscience of Computation and Cognitive Processes": 1 + "Neuroscience of Computation: Understanding Cognitive Processes through Brain-Computer Interface Technology": 1 + "Cognitive Processes and Computational Neuroscience: A Study on the Impact of Quantum Computing": 1 + "Exploring Cognitive Processes: The Neuroscience of Computation using Bioinformatics": 1 + "The Neuroscience of Computation and Cognitive Processes: Decoding with Data Mining Techniques.": 1 + "Mathematics: Exploring Geometry through Theorems": 1 + "Mathematics: Introduction to Euclidean Geometry": 1 + "Mathematics: Journey into Geometry with Pythagoras Theorem": 1 + "Mathematics: Understanding Geometry using Geometric Transformations": 1 + "Mathematics: Geometry and the Power of Trigonometry": 1 + "Mathematics: Journey into Geometry with Digital Graphics": 1 + "Mathematics: Geometry Exploration through 3D Modeling": 1 + "Mathematics: Proofs and Postulates in Geometry": 1 + "Mathematics: Journey into Geometry using Geogebra": 1 + "Mathematics: Geometry and the Art of Tessellation": 1 + "Mathematics: Journey into Geometry - Understanding Angles and Shapes": 1 + "Computational Neuroscience: Understanding Neural Networks through MATLAB": 1 + "Understanding Neural Networks in Computational Neuroscience using Python": 1 + "Computational Neuroscience: A Deep Dive into Neural Networks with TensorFlow": 1 + "Machine Learning Tools for Neural Networks in Computational Neuroscience": 1 + "Application of Artificial Intelligence in Computational Neuroscience: Understanding Neural Networks": 1 + "Advanced Computational Neuroscience: Exploring Neural Networks with Deep Learning": 1 + "Computational Neuroscience: Neural Networks and their analysis using Python Libraries": 1 + "Point Neurons in Computational Neuroscience: A Closer Look at Neural Networks": 1 + "Computational Neuroscience: Unraveling Neural Networks with Data Mining Techniques": 1 + "Understanding Neural Networks in Computational Neuroscience through Reinforcement Learning.": 1 + "Introduction to Neuroscience: Exploring the Brain and Its Functions through fMRI": 1 + "Advanced Neuroimaging: A Focus on the Brain's Functions using PET Scans": 1 + "Neuroanatomy and Function: An In-depth Study with EEG Technology": 1 + "Cognitive Neuroscience: Unraveling Brain Functions using TMS": 1 + "Neurobiology: Understanding Brain Functions through Neuropsychological Testing": 1 + "Biological Basis of Behavior: An Exploration of Brain Functions using DTI": 1 + "Neurology and Neurosurgery: A Focus on Brain Functions using Stereotactic Techniques": 1 + "Brain Science: Decoding Brain Functions through Single-Photon Emission Computerized Tomography": 1 + "Neuropharmacology: Delving into Brain Functions using Positron Emission Tomography": 1 + "Behavioral Neuroscience: Applying Optogenetics to Explore Brain Functions.": 1 + "Social Studies: The Impact of Renaissance Music on Society through the Lens of the Harpsichord": 1 + "Social Studies: The Use of Polyphony in Renaissance Music and its Societal Effects": 1 + "Social Studies: The Role of the Printing Press in the Spread of Renaissance Music": 1 + "Social Studies: Renaissance Music and Society: A Study on the Use of Sheet Music": 1 + "Social Studies: The Influence of Gregorian Chant on Renaissance Music and Society": 1 + "Social Studies: Madrigal Singing in Renaissance Music: Its Impact on Society": 1 + "Social Studies: The Impact of the Lute in Renaissance Music on Society": 1 + "Social Studies: The Role of Church Modes in Renaissance Music and Society": 1 + "Social Studies: The Impact of the Viol in Renaissance Music on Society": 1 + "Social Studies: The Influence of the Counterpoint Technique in Renaissance Music on Society.": 1 + "English Literature: Exploring Themes through Critical Analysis with the Aid of NLP (Natural Language Processing)": 1 + "English: Exploring Literature through Critical Analysis Using Text Mining Techniques": 1 + "English: Critical Analysis of Literature with the Application of Semantic Networks ": 1 + "English Literature: Critical Analysis and Exploration through Machine Learning ": 1 + "English: Exploring Literature through Critical Analysis Utilizing Big Data": 1 + "English Literature: Exploration through Critical Analysis Employing Sentiment Analysis": 1 + "English: Exploring Literature through Critical Analysis Applying Corpus Linguistics": 1 + "English Literature: Critical Analysis and Exploration Using Data Visualization Tools": 1 + "English: Literature Exploration through Critical Analysis with Digital Humanities Techniques": 1 + "English Literature: Critical Analysis through the Lens of Computational Linguistics.": 1 + "Mathematics: Application of Regression Analysis in Agriculture Statistics": 1 + "Mathematics: Utilizing SPSS For Statistical Analysis in Agriculture": 1 + "Mathematics: Advanced Probability Techniques in Agriculture Statistics": 1 + "Mathematics: Linear Programming in Agriculture Statistics": 1 + "Mathematics: Statistical Forecasting for Crop Yield Prediction": 1 + "Mathematics: Use of R Programming in Agriculture Statistics": 1 + "Mathematics: Understanding Variance Analysis in Agriculture Statistics": 1 + "Mathematics: Predictive Modeling in Agriculture Statistics": 1 + "Mathematics: Excel for Data Analysis in Agriculture Statistics": 1 + "Mathematics: Time Series Analysis for Agriculture Forecasting.": 1 + "Beginning Chemistry: The Power of the Atom and the Role of Electron Microscopy": 1 + "Beginning Chemistry: The Power of the Atom Explored Through Spectroscopy": 1 + "Beginning Chemistry: The Power of the Atom - Understanding Atomic Structure with X-Ray Diffraction ": 1 + "Beginning Chemistry: The Power of the Atom - Introduction to Nuclear Magnetic Resonance": 1 + "Beginning Chemistry: The Power of the Atom - A Study of Atomic Bonds with Infrared Spectroscopy ": 1 + "Beginning Chemistry: The Power of the Atom - Exploring Chemical Reactions with Mass Spectrometry": 1 + "Beginning Chemistry: The Power of the Atom - Ionization Energy and Its Measurements ": 1 + "Beginning Chemistry: The Power of the Atom - An Introduction to Atomic Absorption Spectroscopy ": 1 + "Beginning Chemistry: The Power of the Atom - The Role of Neutron Scattering in Atomic Analysis ": 1 + "Beginning Chemistry: The Power of the Atom - Understanding Atomic Forces with Scanning Tunneling Microscopy": 1 + "English: An Exploration of Literature through Shakespeare's Plays": 1 + "English: Delving into Literature with Digital Humanities Tools": 1 + "English: An Exploration of Literature through Postmodern Theory": 1 + "English: The Role of Feminist Critique in Literature Exploration": 1 + "English: Exploring Literature through the Lens of Psychoanalytic Theory": 1 + "English: An Exploration of Literature using Text Mining Techniques": 1 + "English: The Impact of Marxism on Literature Exploration": 1 + "English: An Exploration of Literature through Postcolonial Theory": 1 + "English: Understanding Literature through Structuralism": 1 + "English: Exploring Literature with Contemporary Critical Theory": 1 + "English: An Exploration of Literature using Semantic Analysis Tools": 1 + "World Languages: The Role of The Telegraph in English Trade Language During The Industrial Age": 1 + "English Trade Language in the Industrial Age: The Influence of Steam Engine Technology": 1 + "World Languages: Impact of The Printing Press on English Trade Language During the Industrial Age": 1 + "The Industrial Age: English Trade Language and the Evolution of Railways": 1 + "English Trade Language During the Industrial Age: The Role of Steam Ships in Global Communication": 1 + "World Languages: The Effect of The Cotton Gin on English Trade Language in the Industrial Age": 1 + "Industrial Age Innovations: The Power Loom's Impact on English Trade Language": 1 + "English Trade Language: The Impact of Factory System during the Industrial Age": 1 + "The Spinning Jenny and its Influence on English Trade Language during the Industrial Age": 1 + "English Trade Language in the Industrial Age: The Role of Blast Furnace in Global Communication.": 1 + "Data-Driven Athletic Assessment: Utilizing Tableau and Python for Athletic Performance Analysis": 1 + "Advanced Metrics in Sports: A Computer Science Approach using Tableau and Machine Learning": 1 + "Comprehensive Athletic Assessment: A Deep Dive into Data Visualization with Tableau and SQL": 1 + "Data-Driven Athletic Assessment: A Computer Science Approach using Tableau and R Programming": 1 + "Performance Analytics in Sports: Using Tableau and Predictive Modeling for Athlete Evaluation": 1 + "Exploring Athletic Insights: A Data Science Approach using Tableau and Big Data Analysis": 1 + "Sports Performance Evaluation: An Interdisciplinary Approach using Tableau and IoT Devices": 1 + "Data-Driven Athletic Assessment: A Computer Science Approach using Tableau and Cluster Analysis": 1 + "Athlete Performance Optimization: A Detailed Study using Tableau and Neural Networks": 1 + "Quantitative Athletic Analysis: Deploying Tableau and Data Mining Techniques": 1 + "History 101: The Impact of the Steam Engine on the Industrial Revolution": 1 + "History 101: The Role of the Cotton Gin in the Industrial Revolution": 1 + "History 101: Locomotives and the Industrial Revolution": 1 + "History 101: The Spinning Jenny: Pivotal Technology of the Industrial Revolution": 1 + "History 101: The Impact of the Power Loom on the Industrial Revolution": 1 + "History 101: The Telegraph: Communication Breakthrough of the Industrial Revolution": 1 + "History 101: The Impact of the Industrial Revolution: The Bessemer Process": 1 + "History 101: The Steam Hammer: The Force behind the Industrial Revolution": 1 + "History 101: The Impact of Coal Mining Technology on the Industrial Revolution": 1 + "History 101: The Industrial Revolution and the Influence of the Sewing Machine": 1 + "Physics: Exploring Newton's Laws of Motion Through Kinematic Equations ": 1 + "Physics: An In-depth Study of Laws of Motion Using Vector Analysis ": 1 + "Physics: Understanding Laws of Motion Through Frictional Forces ": 1 + "Physics: A Comprehensive Look at Laws of Motion Using Calculus ": 1 + "Physics: Grasping Laws of Motion Through Momentum Conservation ": 1 + "Physics: Analyzing Laws of Motion with the Help of Free Body Diagrams ": 1 + "Physics: Learning Laws of Motion Through Force Fields ": 1 + "Physics: Delving into Laws of Motion Using Projectile Motion Concepts ": 1 + "Physics: A Detailed Study of Laws of Motion with the Aid of Energy Conservation ": 1 + "Physics: Unraveling the Laws of Motion Through Work-Energy Theorem.": 1 + "Health Education: Exploring the Role of Fitbit Devices and MyFitnessPal App in Nutrition Tracking": 1 + "Health Education: Fitbit Devices and Calorie Counting: A Comprehensive Study": 1 + "The Impact of Fitbit Devices on Dietary Habits: Integrating the Concept of Macros": 1 + "Health Education: Fitbit Devices and Portion Control Techniques": 1 + "Analyzing the Role of Fitbit Devices and BMI Calculation in Nutrition and Hygiene": 1 + "Fitbit Devices and Water Intake Monitoring: A Deep Dive into Health Education": 1 + "Health Education: Fitbit Devices in Sync with Food Diary Apps for Nutrition Management": 1 + "Fitbit and Sleep Quality: An In-depth Study on Health Education": 1 + "Health Education: Leveraging Fitbit Devices and Heart Rate Monitoring for Nutrition and Hygiene": 1 + "Fitbit Devices and the Concept of Caloric Deficit: A Comprehensive Course in Health Education.": 1 + "Science: Introduction to Biology: Plant Life - An Examination of Photosynthesis": 1 + "Science: Introduction to Biology: Plant Life - Using Microscopes for Cell Examination": 1 + "Science: Introduction to Biology: Plant Life - A Study on Genetic Engineering in Plants": 1 + "Science: Introduction to Biology: Plant Life - DNA Sequencing and Plant Evolution": 1 + "Science: Introduction to Biology: Plant Life - Understanding Plant Life through Hydroponics": 1 + "Science: Introduction to Biology: Plant Life - The Role of Nanotechnology in Plant Growth": 1 + "Science: Introduction to Biology: Plant Life - Exploring Plant Life with Spectrophotometry": 1 + "Science: Introduction to Biology: Plant Life - Using Drones for Plant Health Monitoring": 1 + "Science: Introduction to Biology: Plant Life - Satellite Imaging for Studying Plant Habitats": 1 + "Science: Introduction to Biology: Plant Life - The Impact of Climate Change on Plant Life": 1 + "Economics of Health Care: Leveraging Stata for Regression Analysis in Data": 1 + "Health Care Economics: Employing Stata for Time-Series Analysis": 1 + "Health Economic Evaluation: Using Stata for Econometric Modeling": 1 + "Economics of Health Care: Implementing Stata for Data Mining": 1 + "Health Care Economics: Utilizing Stata for Predictive Analytics": 1 + "Health Economics: Applying Stata for Linear Programming in Data Analysis": 1 + "Economics of Health Care: Harnessing Stata for Big Data Analysis": 1 + "Health Care Economics: Exploiting Stata for Machine Learning Applications": 1 + "Advanced Health Economics: Embracing Stata for Survival Analysis": 1 + "Health Economics: Navigating Stata for Monte Carlo Simulation in Data Analysis": 1 + "Philosophy of Art: Exploring Aesthetic Values in Baroque Music through Harpsichord": 1 + "Aesthetic Values in Classical Music: An In-depth Analysis through Mozart’s Symphony": 1 + "Philosophy of Art: A Study of Romantic Period's Aesthetic Values in Music through the Lens of Beethoven": 1 + "Aesthetic Values in Jazz: A Philosophical Examination through the Technology of Phonographs": 1 + "Philosophy of Art: Understanding Aesthetic Values in Rock Music through Electric Guitars": 1 + "Aesthetic Values in Electronic Music: A Philosophical Perspective through the Use of Synthesizers": 1 + "Philosophy of Art: A Study of Aesthetic Values in Film Scores through Orchestration": 1 + "The Philosophy of Art and Aesthetic Values in Folk Music: An Exploration through the Banjo": 1 + "Aesthetic Values in Hip-Hop: A Philosophical Study through Turntablism": 1 + "Philosophy of Art: A Study of Aesthetic Values in Opera through the Concept of Bel Canto.": 1 + "Elementary Mathematics: Introduction to Graphing and Data Representation Using Microsoft Excel": 1 + "Elementary Mathematics: Exploring Graphing and Data Representation with Python": 1 + "Elementary Mathematics: Basics of Graphing and Data Representation Using SPSS": 1 + "Elementary Mathematics: Graphing and Data Representation with Tableau": 1 + "Elementary Mathematics: Introduction to Bar Graphs and Data Representation": 1 + "Elementary Mathematics: Understanding Venn Diagrams in Graphing and Data Representation": 1 + "Elementary Mathematics: Graphing and Data Representation with Scatter Plots": 1 + "Elementary Mathematics: Introduction to Histograms in Graphing and Data Representation": 1 + "Elementary Mathematics: Exploring Graphing and Data Representation with R Software": 1 + "Elementary Mathematics: Pie Charts in Graphing and Data Representation.": 1 + "Geography: Satellite Imaging of Regional Landforms and their Influence on Culture": 1 + "Geography: GIS Mapping of Regional Landforms and their Cultural Impact": 1 + "Geography: Aerial Photogrammetry and its Role in Understanding Regional Landforms and Culture": 1 + "Geography: Laser Scanning of Regional Landforms and their Influence on Culture": 1 + "Geography: Regional Landforms and Culture: A Case Study using Remote Sensing": 1 + "Geography: Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Influence of Regional Landforms on Culture: An Analysis using LiDAR Technology": 1 + "Geography: 3D Modeling of Regional Landforms and their Impact on Culture": 1 + "Geography: Regional Landforms and Culture: An Examination using Drone Technology": 1 + "Geography: Cartographic Representation of Regional Landforms and their Cultural Influence": 1 + "Chemistry for Kids: Fun with Baking Soda Experiments": 1 + "Chemistry for Kids: Exploring Acid-Base Reactions with Litmus Paper": 1 + "Chemistry for Kids: Introduction to pH Scale using Red Cabbage Indicator": 1 + "Chemistry for Kids: Learning Crystallization with Salt and Sugar Experiments": 1 + "Chemistry for Kids: Exploring States of Matter with Ice Melting Experiments": 1 + "Chemistry for Kids: Creating Invisible Ink with Lemon Juice ": 1 + "Chemistry for Kids: Understanding Combustion with Candle Experiments": 1 + "Chemistry for Kids: Fun with Static Electricity Using Balloons": 1 + "Chemistry for Kids: Understanding Density with Oil and Water Experiments": 1 + "Chemistry for Kids: Creating Homemade Batteries using Lemons": 1 + "Chemistry for Kids: Making Slime: A Polymer Experiment": 1 + "Chemistry: Exploring Biochemistry Fundamentals with pH Scale Analysis using Litmus Paper": 1 + "Biochemistry in Depth: Understanding pH Scale and Acid-Base Equilibriums via Spectrophotometry": 1 + "Advanced Biochemistry: Comprehensive Study of pH Scale through Microscopy Techniques": 1 + "Chemistry: Fundamentals of Biochemistry and pH Scale Analysis with a Focus on Electrochemical Cells": 1 + "Expanding Biochemistry: Detailed pH Scale Analysis via Atomic Force Microscopy": 1 + "Biochemistry Uncovered: pH Scale Analysis and the Use of pH Meters": 1 + "Detailed Chemistry: Biochemistry Fundamentals with pH Scale Analysis using Colorimeters": 1 + "Biochemistry Breakdown: pH Scale Analysis using Ion-selective Electrodes": 1 + "In-depth Chemistry: Biochemistry with pH Scale Analysis through Potentiometric Titrations": 1 + "Chemistry: Understanding Biochemistry Fundamentals with pH Scale Analysis via Conductometric Titrations": 1 + "PET Scans in Neuroscience: Utilizing 3D Image Reconstruction in Unraveling the Human Brain's Mysteries": 1 + "PET Scans and fMRI: A Comparative Study in Decoding the Enigma of the Human Brain": 1 + "Advanced PET Scans in Neuroscience: Exploring the Role of Positron Emission in Understanding Brain Function ": 1 + "PET Scans in Neuroscience: Leveraging Radioactive Tracers to Uncover the Secrets of the Human Brain": 1 + "PET Scans in Neuroscience: A Deep Dive into Neurotransmitter Dynamics": 1 + "PET Scans and Artificial Intelligence: A Modern Approach to Deciphering the Human Brain's Mysteries": 1 + "PET Scans in Neuroscience: The Impact of Gamma Rays in Unveiling Brain Mechanics": 1 + "The Role of PET Scans and Data Visualization in Neuroscience: Decoding the Puzzles of the Human Brain": 1 + "PET Scans in Neuroscience: Harnessing the Power of Cyclotrons in Brain Research": 1 + "Exploring the Brain's Mysteries with PET Scans and Molecular Imaging Techniques.": 1 + "Science: Exploring the Physics of Sound and Pitch using Oscilloscopes": 1 + "The Physics of Sound and Pitch: A Detailed Study using Fourier Analysis": 1 + "Probing the Physics of Sound and Pitch with Digital Signal Processing": 1 + "Sound and Pitch: Uncovering Physics with Waveform Monitors": 1 + "Sound, Pitch, and Physics: An In-depth Analysis through Acoustic Spectroscopy": 1 + "Deciphering the Physics of Sound and Pitch using Spectrum Analyzers": 1 + "Physics of Sound and Pitch: A Comprehensive Study using Audio Software Tools": 1 + "The Physics of Sound and Pitch: A Special Focus on Frequency Modulation": 1 + "Investigating the Physics of Sound and Pitch with Acoustic Doppler Sonars": 1 + "A Detailed Examination of Sound and Pitch Physics through Resonance Theory.": 1 + "Physical Education: The Science of Movement with Heart Rate Monitors": 1 + "Physical Education: Exploring Movement through Biomechanics": 1 + "Physical Education: The Science of Movement and GPS Trackers": 1 + "Physical Education: The Science of Movement Utilizing Motion Capture Technology": 1 + "Physical Education: The Science of Movement - An Introduction to Kinesiology": 1 + "Physical Education: Movement Analysis with Wearable Technology": 1 + "Physical Education: The Science of Movement - A Study of Force Plate Technology": 1 + "Physical Education: The Science of Movement - Understanding Body Composition Analysis": 1 + "Physical Education: The Science of Movement - An Approach to Gait Analysis": 1 + "Physical Education: The Science of Movement Using Virtual Reality Training.": 1 + "Social Studies: Exploring Economic Systems around the World through GDP Analysis": 1 + "Social Studies: Understanding Global Economic Systems using the Concept of Inflation": 1 + "Social Studies: Examining World Economic Systems with the Aid of Supply and Demand": 1 + "Social Studies: Economic Systems around the World: A Study on Unemployment Rates": 1 + "Social Studies: The Influence of Technology on Economic Systems around the World": 1 + "Social Studies: The Role of Blockchain Technology in Global Economic Systems": 1 + "Social Studies: Impact of International Trade on Worldwide Economic Systems": 1 + "Social Studies: Economic Systems around the World: A Focus on Fiscal Policies": 1 + "Social Studies: Evaluating Economic Systems Globally Using the Concept of Market Equilibrium": 1 + "Social Studies: Investigating Economic Systems around the World through Currency Exchange Rates.": 1 + "Elementary Mathematics: The Importance of Numbers through the Lens of Geometry": 1 + "Practical Approach to Elementary Mathematics: Using Abacus as a Fundamental Tool": 1 + "Elementary Mathematics: Exploring the Importance of Numbers using Graphing Calculators": 1 + "Elementary Mathematics: Understanding the Role of Numbers in Algebraic Equations": 1 + "Elementary Mathematics: The Impact of Numbers on Statistical Analysis": 1 + "Elementary Mathematics: A Deep Dive into Number Theory": 1 + "Elementary Mathematics: The Importance of Numbers in Calculus": 1 + "Elementary Mathematics: Unveiling the Power of Numbers with Python Programming": 1 + "Elementary Mathematics: Learning Numbers through Interactive Math Applications": 1 + "Elementary Mathematics: Decoding the Importance of Numbers in Cryptography.": 1 + "Music Theory: Exploring Rhythm with Metronomes": 1 + "Music Theory: Understanding Rhythm through Drum Machines": 1 + "Music Theory: Dissecting Rhythm Using MIDI Technology": 1 + "Music Theory: A Deep Dive into Rhythm with Beat Tracking Software": 1 + "Music Theory: Applying Syncopation in Rhythm Studies": 1 + "Music Theory: Rhythm Patterns and Their Visualization with Oscilloscopes": 1 + "Music Theory: The Role of Tempo in Rhythm - A Study with BPM Counters": 1 + "Music Theory: Rhythm in Music Production - A Look into Loop Stations": 1 + "Music Theory: Understanding Rhythm - The Impact of Time Signature": 1 + "Music Theory: Exploring Rhythm - A Close Encounter with Sequencers": 1 + "History of Music: The Impact of Vinyl Records on the Evolution of Genres": 1 + "History of Music: Evolution of Genres through the Lens of Guitar Technology": 1 + "History of Music: The Role of Synthesizers in Genre Evolution": 1 + "History of Music: Evolution of Genres and the Impact of MP3 Technology": 1 + "History of Music: The Influence of the Piano on Genre Evolution": 1 + "History of Music: Evolution of Genres in the Age of Streaming Services": 1 + "History of Music: The Impact of Electric Amplification on Genre Evolution": 1 + "History of Music: Evolution of Genres and the Role of Digital Audio Workstations": 1 + "History of Music: The Influence of Auto-Tune on the Evolution of Genres": 1 + "History of Music: Evolution of Genres in the Era of Social Media Platforms": 1 + "Environmental Science: Utilizing 3D Printing for Biomimicry Solutions in Sustainable Sports Equipment Production": 1 + "Biomimicry and Nanotechnology: Ten Advanced Solutions for Environmentally Friendly Sports Gear Production": 1 + "Environmental Science: Biomimicry and CAD Modelling for Sustainable Sports Equipment Production": 1 + "Biomimicry and Carbon Fibre Recycling: Ten Green Solutions for Sustainable Sports Equipment Manufacturing": 1 + "Environmental Science: Biomimicry and AI Optimization in Sustainable Sports Equipment Design": 1 + "Biomimicry Solutions for Sustainable Sports Equipment: A Focus on Green Polymer Technologies": 1 + "Environmental Science: Biomimicry and Solar Power in the Production of Sustainable Sports Equipment": 1 + "Biomimicry and Biodegradable Materials: Ten Innovative Solutions for Sustainable Sports Equipment": 1 + "Biomimicry Solutions: Using Cradle-to-Cradle Design in Sustainable Sports Equipment Production": 1 + "Environmental Science: Biomimicry and Life Cycle Assessment for Sustainable Sports Equipment Production.": 1 + "Physics: The Role of Entropy in Fundamental Thermodynamics": 1 + "Physics: Thermodynamics: Understanding the Laws with Carnot's Engine": 1 + "Physics: Maxwell's Demon and the Fundamentals of Thermodynamics": 1 + "Physics: Thermodynamics and Heat Transfer: The Fourier's Law Perspective": 1 + "Physics: Applying the Boltzmann Constant in Fundamental Thermodynamics": 1 + "Physics: Thermodynamics: Study of Black Body Radiation": 1 + "Physics: The Thermodynamic Temperature Scale: Kelvin's Role in Physics": 1 + "Physics: Thermodynamics: Understanding Enthalpy and Heat Capacity": 1 + "Physics: The Impact of Quantum Mechanics on Fundamental Thermodynamics": 1 + "Physics: Thermodynamics: Exploring Phase Transitions and Critical Phenomena": 1 + "Physics: Fundamental Thermodynamics: Le Chatelier's Principle and Chemical Equilibrium": 1 + "Language Arts: Exploring English Literature through Poetry Analysis": 1 + "Language Arts: A Deep Dive into English Literature using Digital Humanities": 1 + "Language Arts: Exploring English Literature: A Focus on Dramatic Monologue": 1 + "Language Arts: Understanding English Literature through the Lens of Feminist Criticism": 1 + "Language Arts: Exploring English Literature with Close Reading Techniques": 1 + "Language Arts: Exploring English Literature: An Introduction to Postcolonial Theory": 1 + "Language Arts: Navigating English Literature using Story Mapping Tools": 1 + "Language Arts: Exploring English Literature through Historical Context Analysis": 1 + "Language Arts: A Comprehensive Guide to English Literature using Text Mining Technology ": 1 + "Language Arts: Exploring English Literature: A Critical Approach using New Historicism": 1 + "Coding Crusaders: Python Programming Adventure in Computer Science": 1 + "Coding Crusaders: Adventure in HTML & CSS for Web Development": 1 + "Coding Crusaders: Exploring Java in Computer Science": 1 + "Coding Crusaders: Adventure with C++ in Computer Science": 1 + "Coding Crusaders: SQL Databases Journey in Computer Science": 1 + "Coding Crusaders: Adventures in Computer Science with JavaScript": 1 + "Coding Crusaders: Offering Adventures in Ruby Programming": 1 + "Coding Crusaders: Adventure in Computer Science with Data Structures": 1 + "Coding Crusaders: Adventure in Computer Science with Machine Learning": 1 + "Coding Crusaders: Adventure in Computer Science Exploring Cybersecurity": 1 + "Coding Crusaders: Adventures in Computer Science with Cloud Computing": 1 + "Biology: Exploring Cell Biology and Microscopy through Gene Editing": 1 + "Biology: Basics of Cell Biology and Microscopy with Fluorescence Microscopy": 1 + "Biology: Understanding Cell Biology and Microscopy via DNA Sequencing": 1 + "Biology: Delving into Cell Biology and Microscopy using CRISPR": 1 + "Biology: Basics of Cell Biology and Microscopy with Flow Cytometry": 1 + "Biology: Fundamentals of Cell Biology and Microscopy through Mass Spectrometry": 1 + "Biology: Insights into Cell Biology and Microscopy using Next-Generation Sequencing": 1 + "Biology: Basics of Cell Biology and Microscopy with Bioinformatics": 1 + "Biology: Cell Biology and Microscopy: an Introduction to Transgenic Technology": 1 + "Biology: Cell Biology and Microscopy Basics using Polymerase Chain Reaction Techniques": 1 + "Practical Mathematics: Balancing Chemical Reactions using Stoichiometry": 1 + "Practical Mathematics: Balancing Chemical Reactions with Molecular Orbital Theory": 1 + "Practical Mathematics: Balancing Chemical Reactions using the ICE Method": 1 + "Practical Mathematics: Balancing Chemical Reactions and Redox Reactions with Oxidation Numbers": 1 + "Practical Mathematics: Balancing Chemical Reactions using the Limiting Reactant Concept": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Use of Spectrophotometry": 1 + "Practical Mathematics: Balancing Chemical Reactions through Reaction Rates and Equilibrium Constants": 1 + "Practical Mathematics: Balancing Chemical Reactions using Hess's Law": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Application of Le Chatelier's Principle": 1 + "Practical Mathematics: Balancing Chemical Reactions using the Concept of Molarity and Concentration.": 1 + "Language Arts: Exploring Poetry and Lyrics in Classical Music through Digital Humanities": 1 + "Language Arts: The impact of Metaphor in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Using Text Analysis Tools in Studying Poetry and Lyrics in Classical Music": 1 + "Language Arts: An In-depth Study of Alliteration in Poetry and Lyrics of Classical Music": 1 + "Language Arts: The Role of Figurative Language in Poetry and Lyrics in Classical Music": 1 + "Language Arts: Sentiment Analysis of Poetry and Lyrics in Classical Music": 1 + "Language Arts: The Impact of Rhyme Schemes in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Using Machine Learning to Analyze Poetry and Lyrics in Classical Music": 1 + "Language Arts: The Influence of Imagery in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Understanding Symbolism in Poetry and Lyrics in Classical Music using AI Tools.": 1 + "Computer Science for Beginners: An Introduction to Python Game Coding": 1 + "Beginner's Guide to Computer Science: Creating Games with JavaScript": 1 + "Introduction to Computer Science: Game Development with Unity": 1 + "Computer Science for Newbies: Building Games with C++": 1 + "Introduction to Computer Science: Game Design using Unreal Engine": 1 + "Computer Science for Beginners: Game Programming with Java": 1 + "Entry-Level Computer Science: Game Development using HTML5": 1 + "Computer Science 101: Developing Games with Godot": 1 + "Computer Science for Beginners: Game Creation with the Unity Game Engine": 1 + "Novice's Guide to Computer Science: Game Development with C#": 1 + "Art 203: Renaissance Art Movements and the Role of Charcoal in Fresco Painting": 1 + "Art 203: Impressionism and the Role of Charcoal in Plein Air Painting": 1 + "Art 203: Romanticism Art Movements and the Use of Charcoal in Sketching": 1 + "Art 203: Cubism Art Movements and the Role of Charcoal in Geometrical Art": 1 + "Art 203: Surrealism Art Movements and the Use of Charcoal in Dreamlike Imagery": 1 + "Art 203: Modern Art Movements and the Role of Charcoal in Abstract Expressionism": 1 + "Art 203: Baroque Art Movements and the Use of Charcoal in High Contrast Art": 1 + "Art 203: Gothic Art Movements and the Role of Charcoal in Stained Glass Design": 1 + "Art 203: Expressionism Art Movements and the Use of Charcoal in Emotional Representation": 1 + "Art 203: Pop Art Movements and the Role of Charcoal in Mass Culture Imagery": 1 + "Chemistry: The Study of Matter Through Spectroscopy": 1 + "Analytical Chemistry: Understanding Matter with Mass Spectrometry": 1 + "Chemistry: The Study of Matter and Energy Using Nuclear Magnetic Resonance": 1 + "Quantum Chemistry: The Study of Matter at the Molecular Level": 1 + "Organic Chemistry: The Study of Carbon Compounds Using Infrared Spectroscopy": 1 + "Chemistry: The Study of Matter Through the Lens of Chromatography": 1 + "Physical Chemistry: Exploring Matter with X-Ray Crystallography": 1 + "Inorganic Chemistry: The Study of Matter Using Electron Microscopy": 1 + "Chemistry: The Study of Matter Applying Computational Techniques": 1 + "Biochemistry: Understanding Biological Matter Through Enzymology": 1 + "Analyzing the Rhetoric of Economic Policies and Unemployment with Computational Linguistics: A Detailed Study on the Effect of Fiscal Policies Using Regression Analysis.": 1 + "Unpacking Economic Policies: A Textual Analysis of Rhetoric and Unemployment through Language Arts Using Topic Modeling.": 1 + "A Discourse Analysis Approach to Economic Policies and Unemployment: Employing Sentiment Analysis for Understanding Fiscal Policies.": 1 + "NLP and Economic Policies: A Detailed Study on the Effect of Fiscal Policies on Unemployment Using Machine Learning Models.": 1 + "Unraveling Economic Rhetoric with Python: A Detailed Study on the Effect of Fiscal Policies and Unemployment.": 1 + "Economic Policies and Unemployment: A Lexical Approach to Rhetoric Analysis Using Corpus Linguistics.": 1 + "A Detailed Study on the Rhetoric of Economic Policies and Unemployment with Big Data Analytics: Using Principal Component Analysis.": 1 + "The Power of Words: Exploring the Rhetoric of Economic Policies and Unemployment through Text Mining.": 1 + "Using Sentiment Analysis to Explore the Rhetoric of Economic Policies and Unemployment: A Detailed Study on the Effect of Fiscal Policies.": 1 + "Rhetoric of Economic Policies and Unemployment: A Detailed Study Utilizing Deep Learning for Textual Analysis.": 1 + "Introduction to Computer Science through Digital Art: Mastering Vector Graphics with Inkscape": 1 + "Exploring Computer Science via Digital Art: An In-Depth Guide to Using Layers in Inkscape": 1 + "Introduction to Computer Science through Digital Art: Understanding Bezier Tools in Inkscape": 1 + "A Journey into Computer Science with Digital Art: Creating SVG files using Inkscape": 1 + "Introduction to Computer Science through Digital Art: Using Inkscape for Bitmap Tracing": 1 + "Exploring Computer Science via Digital Art: Mastering Inkscape's Node Editing Tools": 1 + "Introduction to Computer Science through Digital Art: Creating 2D Animation with Inkscape": 1 + "A Deep Dive into Computer Science with Digital Art: Maximizing the Use of Color Tools in Inkscape": 1 + "Introduction to Computer Science through Digital Art: Crafting Textures and Patterns with Inkscape": 1 + "Introduction to Computer Science through Digital Art: Designing Logos using Inkscape.": 1 + "Mathematics: Exploring Euclidean Geometry with Geogebra": 1 + "Mathematics: Understanding Theorems in Trigonometry using Python": 1 + "Mathematics: Proofs and Postulates in Geometry with Compass and Straightedge": 1 + "Mathematics: Geometry Postulates: An Exploration of Triangle Inequalities using Graphing Calculators": 1 + "Mathematics: Proving Geometric Theorems with the Use of Desmos": 1 + "Mathematics: An Introduction to Pythagorean Theorem with CAD Technology": 1 + "Mathematics: Exploring Geometric Relationships with Coordinate Geometry Using MATLAB ": 1 + "Mathematics: Proofs in Analytic Geometry: Leveraging Algebraic Tools": 1 + "Mathematics: Investigating Plane Geometry with Geometric Transformations using GeoGebra": 1 + "Mathematics: Proofs and Postulates in 3D Geometry using SolidWorks": 1 + "Organic Chemistry: A Detailed Study of Molecular Structures using Quantum Mechanics and Nuclear Magnetic Resonance Spectroscopy": 1 + "Organic Chemistry: Quantum Mechanics and the Application of X-Ray Crystallography to Molecular Structures": 1 + "Organic Chemistry: Quantum Mechanics and Computational Chemistry's Role in Understanding Molecular Structures": 1 + "Organic Chemistry: A Deep Dive into Molecular Structures with Quantum Mechanics and Mass Spectrometry": 1 + "Organic Chemistry: Quantum Mechanics and the Use of Electron Microscopy for Inspecting Molecular Structures": 1 + "Organic Chemistry: Exploring Molecular Structures with Quantum Mechanics and Infrared Spectroscopy": 1 + "Organic Chemistry: Quantum Mechanics and the Impact of Chromatography on Molecular Structures Study": 1 + "Organic Chemistry: A Comprehensive Study of Molecular Structures using Quantum Mechanics and Gas Chromatography": 1 + "Organic Chemistry: Quantum Mechanics and the Role of Spectrophotometry in Molecular Structures ": 1 + "Organic Chemistry: A Detailed Examination of Molecular Structures with Quantum Mechanics and High-Performance Liquid Chromatography": 1 + "Environmental Studies: The Impact of Climate on Skiing Performance and Mitigation Techniques.": 1 + "Role of Weather Satellites in Predicting Climate Effects on Outdoor Sports: An Environmental Studies Perspective.": 1 + "Environmental Studies: Analyzing the Influence of Climate on Water Sports Using Oceanography.": 1 + "Leveraging Meteorological Data in Environmental Studies: Role of Climate in Football.": 1 + "Environmental Studies: Role of Climate in Mountain Biking and Erosion Control Measures.": 1 + "Environmental Studies: The Effect of Climate on Golf Course Management and Turfgrass Science.": 1 + "Role of Climate Modeling in Assessing Climate Influence on Winter Sports: An Environmental Studies Course.": 1 + "Environmental Studies: The Impact of Climate Change on Surfing and Coastal Erosion Solutions.": 1 + "Using GIS in Environmental Studies: Evaluating the Influence of Climate on Hiking Trails.": 1 + "Environmental Studies: Understanding The Impact of Climate on Tennis and Heatstroke Prevention Strategies.": 1 + "Science of Cooking: An Introduction to Food Chemistry through Molecular Gastronomy": 1 + "Exploring Culinary Techniques: Food Chemistry and Sous Vide Cooking": 1 + "Science of Cooking: A Deep Dive into Food Chemistry and Fermentation ": 1 + "An Introductory Course on Food Chemistry: Understanding the Role of Thermometers": 1 + "Science of Cooking: Food Chemistry and the Art of Baking ": 1 + "Food Chemistry Explored: The Science Behind Cooking with Induction Stoves": 1 + "The Science of Cooking: Understanding Food Chemistry through pH Levels ": 1 + "An Introduction to Food Chemistry: The Science Behind Cooking and Pasteurization": 1 + "Science of Cooking: A Focus on Food Chemistry and Vacuum Sealing Techniques": 1 + "Exploring the Science of Cooking: Food Chemistry and the Role of Pressure Cookers.": 1 + "Economic Endeavors: Learning Microeconomics with Monopoly and Supply-Demand Analysis": 1 + "Economic Endeavors: Grasping Macroeconomics Using Monopoly and GDP Calculation": 1 + "Economic Endeavors: Exploring Fiscal Policy through Monopoly and Taxation Models": 1 + "Economic Endeavors: Unraveling Inflation Concepts with Monopoly and CPI Tools": 1 + "Economic Endeavors: Understanding Economics with Monopoly and Blockchain Technology": 1 + "Economic Endeavors: Learning Economics with Monopoly and Game Theory Analysis": 1 + "Economic Endeavors: Studying Economics through Monopoly and Economic Indicators": 1 + "Economic Endeavors: Mastering Trade Economics with Monopoly and Import-Export Data Analysis": 1 + "Economic Endeavors: Navigating Labor Economics using Monopoly and Unemployment Rate Calculation": 1 + "Economic Endeavors: Learning Economic Forecasting with Monopoly and Regression Analysis.": 1 + "Elementary: Learning Basic Geography through Environmental Studies using Google Earth": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Satellite Imagery": 1 + "Elementary: Learning Basic Geography through Environmental Studies applying GIS Technology": 1 + "Elementary: Learning Basic Geography and Climate Patterns through Environmental Studies with Weather Forecasting Tools": 1 + "Elementary: Learning Basic Geography through Environmental Studies: An Exploration with Topographic Maps": 1 + "Elementary: Learning Basic Geography through Environmental Studies using Virtual Reality Exploration": 1 + "Elementary: Understanding Plate Tectonics in Basic Geography through Environmental Studies": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models": 1 + "Elementary: Learning Basic Geography through Environmental Studies: An Introduction to GPS Technology": 1 + "Elementary: Learning Basic Geography through Environmental Studies utilizing Drone Photography.": 1 + "Logic: Understanding the Role of Syllogisms in Deductive Reasoning in Mathematics ": 1 + "Logic: Exploring Truth Tables in Deductive Reasoning in Mathematics": 1 + "Logic: The Application of Propositional Calculus in Deductive Reasoning in Mathematics": 1 + "Logic: The Use of Venn Diagrams in Deductive Reasoning in Mathematics": 1 + "Logic: Basics of Deductive Reasoning in Mathematics with Direct and Indirect Proof Techniques": 1 + "Logic: The Function of Quantifiers in Deductive Mathematical Reasoning ": 1 + "Logic: The Role of Set Theory in Deductive Reasoning in Mathematics": 1 + "Logic: Introduction to Predicate Logic in Deductive Mathematical Reasoning": 1 + "Logic: Employing Euler Diagrams in Deductive Mathematical Reasoning": 1 + "Logic: Basics of Deductive Reasoning in Mathematics using Mathematical Induction.": 1 + "Neurobiology: Understanding Brain Functions through Neuropsychological Testing using fMRI Technology": 1 + "Neurobiology: Exploring Brain Functions via Neuropsychological Testing and EEG Analysis": 1 + "Neurobiology: Decoding Brain Functions through Neuropsychological Testing and PET Scans": 1 + "Neurobiology: A Study of Brain Functions through Neuropsychological Testing and Diffusion Tensor Imaging (DTI)": 1 + "Neurobiology: Insights into Brain Functions through Neuropsychological Testing and Transcranial Magnetic Stimulation (TMS)": 1 + "Neurobiology: Delineating Brain Functions through Neuropsychological Testing and Near-Infrared Spectroscopy (NIRS)": 1 + "Neurobiology: Examining Brain Functions through Neuropsychological Testing and the Concept of Neuroplasticity": 1 + "Neurobiology: Unveiling Brain Functions through Neuropsychological Testing and Magnetoencephalography (MEG)": 1 + "Neurobiology: Investigating Brain Functions through Neuropsychological Testing and Cognitive Rehabilitation Therapy": 1 + "Neurobiology: Understanding Brain Functions through Neuropsychological Testing and the Application of Functional Connectivity.": 1 + "Biology: The Role of DNA Sequencing in Understanding Human Adaptation to Environmental Changes": 1 + "Biology: The Use of Bioinformatics in Studying Human Adaptation to Climate Shifts": 1 + "Biology: The Influence of Genetic Engineering on Human Adaptation to Environmental Changes": 1 + "Biology: Employing CRISPR Technology to Analyze Human Adaptation to Environmental Changes": 1 + "Biology: The Impact of Molecular Biology Techniques on Human Adaptation to Environmental Shifts": 1 + "Biology: The Application of Genomic Data in Investigating Human Adaptation to Environmental Changes": 1 + "Biology: The Significance of Genetic Markers in Understanding Human Adaptation to Environmental Changes": 1 + "Biology: The Study of Human Adaptation to Environmental Changes through Proteomics": 1 + "Biology: The Use of Cloning Technology in Researching Human Adaptation to Environmental Changes": 1 + "Biology: The Role of Epigenetics in Deciphering Human Adaptation to Environmental Changes": 1 + "Artistic Expression: Exploring Impressionism Through Oil Painting": 1 + "Artistic Expression: The Role of Palette Knives in Impressionism": 1 + "Artistic Expression: The Impact of En Plein Air Technique in Impressionism": 1 + "Artistic Expression: The Use of Color Theory in Impressionism": 1 + "Artistic Expression: The Importance of Brushwork in Impressionist Art": 1 + "Artistic Expression: A Study of Light and Shadow in Impressionism": 1 + "Artistic Expression: Impressionism Through the Lens of Photography": 1 + "Artistic Expression: A Journey Through Impressionism Using Digital Tools": 1 + "Artistic Expression: Understanding Impressionism Through Perspective Drawing": 1 + "Artistic Expression: The Influence of Etching in Impressionist Art": 1 + "Decoding the Human Brain and Its Functions: An Introduction to Neuromorphic Engineering Through MRI Technology": 1 + "Exploring the Human Brain: Neuromorphic Engineering and its Application in EEG Analysis": 1 + "Neural Networks in the Human Brain: A Deep Dive into Neuromorphic Engineering with PET Scans": 1 + "Unraveling Brain Functions: Neuromorphic Engineering and the Use of fMRI Imaging": 1 + "The Role of Deep Brain Stimulation in Neuromorphic Engineering: A Comprehensive Study": 1 + "Decoding the Human Brain: Neuromorphic Engineering and the Application of Optogenetics": 1 + "Neuromorphic Engineering: A Journey into the Brain through the Lens of Diffusion Tensor Imaging": 1 + "The Interface of Neuromorphic Engineering and Transcranial Magnetic Stimulation: A Detailed Study": 1 + "Neuromorphic Engineering and Brain Mapping: An In-depth Look at the Use of Stereotactic Techniques": 1 + "Neuromorphic Engineering and its Role in Brain-Computer Interfaces: A Comprehensive Guide.": 1 + "Music Foundation: Harnessing Rhythm and Melody through Ableton Live DAW Software": 1 + "Music Foundation: Understanding Rhythm and Melody with Pro Tools DAW Software": 1 + "Music Foundation: Mastering Rhythm and Melody using FL Studio DAW Software": 1 + "Music Foundation: Exploring Rhythm and Melody through GarageBand DAW Software": 1 + "Music Foundation: Grasping Rhythm and Melody via MIDI Sequencing in DAW Software": 1 + "Music Foundation: Navigating Rhythm and Melody with Logic Pro X DAW Software": 1 + "Music Foundation: Unpacking Rhythm and Melody using Cubase DAW Software": 1 + "Music Foundation: Discovering Rhythm and Melody through Reaper DAW Software": 1 + "Music Foundation: Decoding Rhythm and Melody with Soundtrap DAW Software": 1 + "Music Foundation: Learning Rhythm and Melody via Virtual Instruments in DAW Software": 1 + "Physics: Examining Newton's Laws of Motion using Free Body Diagrams and Force Tables": 1 + "Physics: Analyzing Laws of Motion with Free Body Diagrams and Vector Analysis": 1 + "Physics: A Deep Dive into Laws of Motion and Free Body Diagrams using Friction Coefficients": 1 + "Physics: Leveraging Free Body Diagrams in the Study of Laws of Motion with Accelerometers": 1 + "Physics: Exploring Laws of Motion through Free Body Diagrams and Motion Sensors": 1 + "Physics: Utilizing Free Body Diagrams and Inclined Plane Concepts in Laws of Motion Analysis": 1 + "Physics: Laws of Motion Analysis using Free Body Diagrams and Torque Wrenches": 1 + "Physics: Dissecting Laws of Motion with the Help of Free Body Diagrams and Pulley Systems": 1 + "Physics: Analyzing Laws of Motion using Free Body Diagrams and Projectile Motion Calculations": 1 + "Physics: Investigating Laws of Motion with Free Body Diagrams and the Concept of Momentum.": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics through Stata Software": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Deep Dive into Time-Series Econometrics": 1 + "Language Arts: Utilizing Regression Analysis in the Rhetoric of Economic Discourse: Exploring Econometrics": 1 + "Language Arts: The Rhetoric of Economic Discourse: Analyzing Econometrics with Panel Data": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics through Quantile Regression": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics and Vector Autoregressions": 1 + "Language Arts: The Rhetoric of Economic Discourse: Econometrics and the Power of Non-Linear Modelling": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics Using Microeconomic Data": 1 + "Language Arts: The Rhetoric of Economic Discourse: Econometrics and Instrumental Variable Regression": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring Econometrics with Python Programming": 1 + "Elementary Health: An Introduction to Brain Nutrition Through Omega-3 Fatty Acids": 1 + "Elementary Health: Exploring Brain Nutrition with Neurofeedback Technology": 1 + "Elementary Health: A Deep Dive into Brain Nutrition with Antioxidants": 1 + "Elementary Health: Brain Nutrition and the Role of Vitamin B12": 1 + "Elementary Health: Understanding Brain Nutrition through Brain Imaging Technologies": 1 + "Elementary Health: The Effect of Iron on Brain Nutrition": 1 + "Elementary Health: Brain Nutrition - A Focus on Flavonoids ": 1 + "Elementary Health: Brain Nutrition and Cognitive Enhancement with Nootropics": 1 + "Elementary Health: Brain Nutrition - Deciphering the Impact of Probiotics": 1 + "Elementary Health: Brain Nutrition Explored Through the Ketogenic Diet.": 1 + "Elementary: Understanding World Geography through Environmental Studies using Google Earth": 1 + "Elementary: Learning Basic Geography through Environmental Studies using Augmented Reality Globe Models": 1 + "Elementary: Exploring Geography through Environmental Studies with Interactive 3D Printed Globe Models": 1 + "Elementary: Grasping Basic Geography through Environmental Studies with Virtual Reality Globe Models": 1 + "Elementary: Delving into Basic Geography through Environmental Studies using Geographic Information Systems": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models and the Application of Topographic Maps": 1 + "Elementary: Studying Basic Geography through Environmental Studies using Drone Technology and Interactive Globe Models": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models and Weather Pattern Analysis": 1 + "Elementary: Discovering Basic Geography through Environmental Studies using Satellite Imagery and Interactive Globe Models": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models and the Concept of Plate Tectonics.": 1 + "Chemistry: The Role of Spectrophotometers in the Chemistry of Fireworks and Festival Lights": 1 + "Chemistry: Analyzing Fireworks and Festival Lights Through Mass Spectrometry": 1 + "Chemistry: The Impact of Thermodynamics on the Chemistry of Fireworks and Festival Lights": 1 + "Chemistry: Understanding Fireworks and Festival Lights Using Gas Chromatography": 1 + "Chemistry: The Influence of Quantum Mechanics on the Chemistry of Fireworks and Festival Lights": 1 + "Chemistry: The Use of Nuclear Magnetic Resonance in Studying Fireworks and Festival Lights": 1 + "Chemistry: The Chemistry of Fireworks and Festival Lights: An Exploration Through Computational Chemistry": 1 + "Chemistry: The Application of HPLC in the Chemistry of Fireworks and Festival Lights": 1 + "Chemistry: The Chemistry of Fireworks and Festival Lights: A Study Through Crystallography": 1 + "Chemistry: The Chemistry of Fireworks and Festival Lights: A Perspective Through Electron Microscopy.": 1 + "Computer Science: Utilizing Logic Pro X's ES2 Synthesizer in Music Technology for Crafting Synthesizer Beats": 1 + "Computer Science: Using MIDI Control in Logic Pro X for Advanced Beat Synthesis": 1 + "Computer Science: Exploring Synthesizer Beat Creation with UltraBeat in Logic Pro X": 1 + "Computer Science: Drum Machine Designer in Logic Pro X for Crafting Synthesizer Beats": 1 + "Computer Science: Applying Logic Pro X's EXS24 Sampler in Music Technology for Beat Creation": 1 + "Computer Science: Creating Ambient Beats with Alchemy Synthesizer in Logic Pro X": 1 + "Computer Science: Crafting Synthesizer Beats with Logic Pro X's Retro Synth": 1 + "Computer Science: Beat Sequencing with Step Editor in Logic Pro X for Music Technology": 1 + "Computer Science: Sculpting Synthesizer Beats with Logic Pro X's Drum Synth": 1 + "Computer Science: Advanced Beat Crafting with Flex Time in Logic Pro X for Music Technology": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and Django": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and HTML5": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and CSS3": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and Bootstrap": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and SQL": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and MongoDB": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and AngularJS": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and REST API": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and AJAX": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, and Node.js": 1 + "World Art: The Visual Language of Sculpture": 1 + "World Art: The Visual Language Through Photography": 1 + "World Art: The Visual Language - A Study of Frescoes": 1 + "World Art: The Visual Language Explored Through Oil Paintings": 1 + "World Art: The Visual Language in Contemporary Digital Art": 1 + "World Art: The Visual Language and the Impact of Printmaking": 1 + "World Art: The Visual Language - Understanding Through Pottery": 1 + "World Art: The Visual Language Interpreted Through Mosaics": 1 + "World Art: The Visual Language - A Deep Dive Into Calligraphy": 1 + "World Art: The Visual Language - Decoding Through Architectural Designs": 1 + "Computer Science: An Introduction to Python Programming with Django Framework and SQLite Database Management": 1 + "Computer Science: Working with APIs in Python Programming Using Django Framework": 1 + "Computer Science: Designing Web Applications through Python Programming with Django Framework and AJAX Technology": 1 + "Computer Science: Understanding Data Structures in Python Programming Using Django Framework": 1 + "Computer Science: An Introduction to Python Programming with Django Framework and JavaScript Integration": 1 + "Computer Science: Python Programming with Django Framework and Object-Relational Mapping (ORM) Techniques": 1 + "Computer Science: Building Secure Websites: Python Programming with Django Framework and HTTPS Protocol": 1 + "Computer Science: Python Programming with Django Framework and Unit Testing Techniques": 1 + "Computer Science: Python Programming with Django Framework - Integrating with the Bootstrap Front-End Framework": 1 + "Computer Science: Python Programming with Django Framework and Introduction to Machine Learning Algorithms": 1 + "Music: Utilizing Spotify to Understand Music Genres for Event Planning": 1 + "Music: Employing Soundcloud for Comprehensive Knowledge on Music Genres for Event Planning": 1 + "Music: Leveraging Music Streaming Technology for Genre Selection in Event Planning": 1 + "Music: Understanding Music Genres for Event Planning using AI Tools": 1 + "Music: Using Music Recognition Technology for Genre Identification for Event Planning": 1 + "Music: Understanding Music Genres for Event Planning through Data Analysis": 1 + "Music: Exploiting Digital Music Libraries for Genre Comprehension in Event Planning": 1 + "Music: Utilizing Music Theory to Understand Genres for Event Planning": 1 + "Music: Sound Engineering Basics for Understanding Music Genres for Event Planning": 1 + "Music: Applying Music Analysis Software for Genre Understanding in Event Planning": 1 + "Deciphering Cryptocurrency: The Role of Bitcoin in Internet-Fueled Globalization and Modern Trade": 1 + "The Silicon Shift: The Impact of Microprocessor Technology on Globalization and Modern Trade": 1 + "Open-Source Software: The Internet's Influence on Globalization and Trade Dynamics": 1 + "Cyberspace to Market Place: Influence of E-commerce Platforms on Globalization and Modern Trade": 1 + "The Virtual Economy: The Role of Virtual Reality Technology in Internet-Driven Globalization and Trade": 1 + "Artificial Intelligence: Transforming Globalization and Modern Trade through the Internet": 1 + "The Digital Divide: The Role of Internet Accessibility in Globalization and Modern Trade": 1 + "The Data Revolution: The Impact of Big Data on Internet-Driven Globalization and Modern Trade": 1 + "Cloud Commerce: The Influence of Cloud Computing on Internet-Enabled Globalization and Trade ": 1 + "The Social Network Effect: How Social Media Platforms Impact Globalization and Modern Trade": 1 + "Logic 101: Introduction to Formal Logic with Truth Tables": 1 + "Logic 101: Deductive Reasoning in Formal Logic": 1 + "Logic 101: An Introduction to Conditional Statements in Formal Logic": 1 + "Logic 101: Exploring Propositional Logic": 1 + "Logic 101: A Study on Formal Logic using Venn Diagrams": 1 + "Logic 101: Understanding Quantifiers in Formal Logic": 1 + "Logic 101: Formal Logic and the Binary System": 1 + "Logic 101: Introduction to Formal Logic through Logic Gates": 1 + "Logic 101: Formal Logic: A Closer Look at Symbolic Logic": 1 + "Logic 101: Unveiling Formal Logic through Predicate Logic": 1 + "Mathematics: Time Series Analysis for Agriculture Forecasting Using R Programming": 1 + "Advanced Mathematics: Time Series Analysis for Agriculture Forecasting with Python": 1 + "Practical Approach to Time Series Analysis for Agriculture Forecasting: An Excel Tutorial": 1 + "Time Series Analysis for Agriculture Forecasting: A Deep Dive into MATLAB Application": 1 + "Comprehensive Study: Forecasting Agricultural Trends with Time Series Analysis and SPSS": 1 + "Data-Driven Agriculture: Time Series Analysis and Forecasting with SAS": 1 + "Mathematics: Time Series Analysis for Agriculture Forecasting using Machine Learning Techniques": 1 + "Mathematics: Time Series Analysis for Agriculture Forecasting: An Introduction to EViews": 1 + "Time Series Analysis for Agriculture Forecasting: Harnessing the Power of STATA": 1 + "Mathematics: Time Series Analysis for Agriculture Forecasting with Minitab.": 1 + "Organic Chemistry: Unraveling Molecules with the Use of Quantum Mechanics": 1 + "Organic Chemistry: Molecular Decoding through Computational Chemistry and Gaussian Software": 1 + "Organic Chemistry: The Role of Molecular Dynamics in Computational Chemistry for Decoding Molecules": 1 + "Organic Chemistry: Insights into Molecules through Computational Chemistry and Molecular Orbital Theory": 1 + "Organic Chemistry: Utilizing Density Functional Theory in Computational Chemistry for Decoding Molecules": 1 + "Organic Chemistry: The Impact of Ab Initio Methods in Computational Chemistry on Molecule Decoding": 1 + "Organic Chemistry: Exploring Molecules with Computational Chemistry and ChemDraw Software": 1 + "Organic Chemistry: The Role of Computational Chemistry and GAMESS Software in Decoding Molecules": 1 + "Organic Chemistry: Decoding Molecules through Computational Chemistry and the Hartree-Fock Method": 1 + "Organic Chemistry: Understanding Molecules using Computational Chemistry and the Spartan Software.": 1 + "Brain Basics: Exploring Elementary Neuroscience through MRI Scanning": 1 + "Brain Basics: A Dive into Elementary Neuroscience using EEG Technology": 1 + "Neuroscience 101: Understanding the Brain through Positron Emission Tomography": 1 + "Brain Basics: A Journey into Elementary Neuroscience via Electrocorticography": 1 + "Elementary Neuroscience: Understanding Brain Structure with the use of fMRI": 1 + "Brain Basics: Unveiling the Secrets of Neuroplasticity ": 1 + "Neuroscience Fundamentals: Exploring Neurons using Patch-Clamp Technique": 1 + "Brain Basics: A Deep Dive into Neurotransmission": 1 + "Exploring Elementary Neuroscience: An Introduction to Diffusion Tensor Imaging": 1 + "Brain Basics: Decoding Elementary Neuroscience with the Help of Optogenetics": 1 + "Economics: The Role of Blockchain Technology in Global Trade and its Impact on Sustainable Farming Practices": 1 + "Economics: Assessing the Impact of Global Trade Policies Using Data Analysis on Modern Farming Practices": 1 + "Economics: The Influence of GPS Technology in Global Trade and its Effect on Precision Farming": 1 + "Economics: The Impact of Global Trade on Organic Farming Practices: A Case Study on Hydroponics": 1 + "Economics: The Effect of E-commerce on Global Trade and Small-Scale Farming Practices": 1 + "Economics: The Impact of Global Trade on Farming Practices and the Potential of Vertical Farming": 1 + "Economics: The Role of Machine Learning in Global Trade and its Impact on Smart Farming Practices": 1 + "Economics: The Impact of Global Trade on Farming Practices: Solutions through Irrigation Technology": 1 + "Economics: The Impact of Global Trade and Genetically Modified Crops on Modern Farming Practices": 1 + "Economics: Evaluating the Impact of Global Trade Using AI in Forecasting and Farming Practices": 1 + "Physics Fun: Exploring Newton's Laws with Virtual Simulations": 1 + "Physics Fun: Introduction to Forces and Motion using Friction": 1 + "Physics Fun: Unveiling Inertia: An Intro to Forces and Motion": 1 + "Physics Fun: An Insight into Momentum in Forces and Motion": 1 + "Physics Fun: Gravitational Force: A Deep Dive into Forces and Motion": 1 + "Physics Fun: A Journey through Centripetal Force and Motion": 1 + "Physics Fun: Forces and Motion: A Comprehensive Study of Torque": 1 + "Physics Fun: Introduction to Forces and Motion: Understanding Impulse": 1 + "Physics Fun: The Role of Tension in Forces and Motion": 1 + "Physics Fun: Forces and Motion: An Exploration of Air Resistance": 1 + "Physics Fun: Delving into the World of Electrostatic Force and Motion": 1 + "Economics: Utilizing Blockchain Technology in Global Trade to Improve Sustainable Farming with the use of Vertical Farming": 1 + "Economics: Role of Smart Contracts in Blockchain for Efficient Global Trade and Sustainable Farming": 1 + "Economics: Impact of Blockchain and Internet of Things (IoT) on Global Trade and Sustainable Farming": 1 + "Economics: Decentralized Finance (DeFi) and its Role in Blockchain for Global Trade and Sustainable Farming": 1 + "Economics: Enhancing Sustainable Farming Techniques with Blockchain and Artificial Intelligence in Global Trade": 1 + "Economics: Blockchain and Drone Technology: A New Era for Global Trade and Sustainable Farming": 1 + "Economics: Big Data Analytics in Blockchain Technology for Global Trade and Sustainable Farming Enhancement": 1 + "Economics: Role of Blockchain and Machine Learning in Global Trade and its Impact on Sustainable Farming": 1 + "Economics: Use of Blockchain and Cryptocurrency in Global Trade to Improve Sustainable Farming Practices": 1 + "Economics: Blockchain, Cybersecurity and their Impact on Global Trade and Sustainable Farming": 1 + "World History: The Impact of the Silk Road on the Development of Civilizations": 1 + "World History: The Influence of the Printing Press on Trade and Civilizations": 1 + "World History: The Role of the Compass in Trade and the Evolution of Civilizations": 1 + "World History: The Impact of Gunpowder on Trade and the Progress of Civilizations": 1 + "World History: The Wheel's Effect on Trade and the Growth of Civilizations": 1 + "World History: The Consequences of Paper Money on Trade and the Advancement of Civilizations": 1 + "World History: The Effect of the Domestication of Horses on Trade and Civilizations": 1 + "World History: The Influence of the Steam Engine on Trade and the Development of Civilizations": 1 + "World History: The Impact of the Sextant on Trading Routes and Civilizations": 1 + "World History: The Role of Iron Smelting in Trade and the Emergence of Civilizations": 1 + "English Essentials: Enhancing Reading Skills through E-Books": 1 + "English Essentials: Improving Creative Writing with Grammarly": 1 + "English Essentials: Reading and Creative Writing Utilizing Mind Mapping Techniques": 1 + "English Essentials: Harnessing Google Docs for Collaborative Creative Writing": 1 + "English Essentials: Reading Comprehension through Interactive Apps": 1 + "English Essentials: Creative Writing with Scrivener Software": 1 + "English Essentials: Reading and Creative Writing with Focus on Character Development": 1 + "English Essentials: Reading Classics and Creative Writing using Kindle": 1 + "English Essentials: Creative Writing in the Digital Age with Blogging": 1 + "English Essentials: Reading and Creative Writing - Exploring Themes and Motifs with Evernote.": 1 + "Exploring the Impact of Amper AI on Emotional Well-being: Ten Therapeutic Approaches in Health Education": 1 + "Enhancing Emotional Wellness through IBM's Watson Beat: A Ten-fold Study in Health Education": 1 + "The Therapeutic Potential of AIVA AI Music Composing Software: A Ten-Strategy Health Education Study": 1 + "The Role of OpenAI's MuseNet in Facilitating Emotional Well-being: An In-depth Study of Ten Approaches": 1 + "Magenta Studio's Impact on Emotional Health: A Comprehensive Study of Ten Health Education Strategies": 1 + "Emotional Well-being Enhancement through Google's Magenta: A Study of Ten Innovative Health Education Techniques": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer: A Ten-fold Health Education Strategy Analysis": 1 + "The Role of Amadeus Code in Promoting Emotional Well-being: A Comprehensive Analysis of Ten Health Education Techniques": 1 + "Enhancing Emotional Well-being with Sony's Flow Machines: A Ten-Solution Health Education Study": 1 + "Emotional Health Improvement through Humtap's AI Music Software: A Comprehensive Study of Ten Health Education Strategies.": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Designing Amplifier Modulation Beats with Logic Pro X": 1 + "Computer Science: Application of Ableton Live in Creating Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Using FL Studio to Design Amplifier Modulation Beats in Music Technology": 1 + "Computer Science: Exploring Amplifier Modulation Beats through Pro Tools in Synthesizers": 1 + "Computer Science: Understanding the Role of Reason Software in Designing Amplifier Modulation Beats": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design in Synthesizers using Cubase": 1 + "Computer Science: Mastering Amplifier Modulation Beats in Music Technology with GarageBand": 1 + "Computer Science: Utilizing Digital Audio Workstations (DAWs) for Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Harnessing the Power of Reaper in Synthesizer Amplifier Modulation Beats Design": 1 + "Computer Science: Designing Amplifier Modulation Beats in Synthesizers using Bitwig Studio Technology": 1 + "Language Arts: Creating Haikus inspired by the Sounds of Nature using Digital Audio Recording": 1 + "Language Arts: Exploring Personification in Poetry Inspired by the Sounds of Nature through Online Journals": 1 + "Language Arts: Utilizing Imagery in Poetry Inspired by the Sounds of Nature with Virtual Reality Technology": 1 + "Language Arts: Creating Metaphors in Poetry Inspired by the Sounds of Nature using Sound Mapping Tools": 1 + "Language Arts: Developing Similes in Poetry Inspired by the Sounds of Nature through Soundscapes": 1 + "Language Arts: Exploring Alliteration in Poetry Inspired by the Sounds of Nature using Audio Editing Software": 1 + "Language Arts: Enhancing Rhyme Schemes in Poetry Inspired by the Sounds of Nature with Nature Sound Libraries": 1 + "Language Arts: Utilizing Onomatopoeia in Poetry Inspired by the Sounds of Nature through Digital Field Recordings": 1 + "Language Arts: Deepening Symbolism in Poetry Inspired by the Sounds of Nature using Acoustic Analysis Tools": 1 + "Language Arts: Creating Sonnets Inspired by the Sounds of Nature through Ambient Noise Generators.": 1 + "Computer Science: Utilizing AWS in Fitness Apps Development for Athletes: A Case Study on High-Performance Training": 1 + "Computer Science: Improving Athletes' Performance with Google Cloud in Fitness App Development": 1 + "Computer Science: Leveraging Azure Functions for Enhanced Fitness App Development for Athletes": 1 + "Computer Science: Applying Docker in the Development of Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Developing Fitness Apps for Athletes using Firebase Cloud Functions": 1 + "Computer Science: Enhancement of Athletes' Fitness Apps Using IBM Cloud Services": 1 + "Computer Science: Kubernetes in Action: Building Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Heroku Deployment for Athletes' Fitness Apps: A Cloud-Based Approach": 1 + "Computer Science: Unleashing the Power of Cloud Firestore in Fitness Apps Development for Athletes": 1 + "Computer Science: The Use of Oracle Cloud Infrastructure in the Development of Fitness Apps for Athletes.": 1 + "Health and Wellness: The Role of Fitbit in Tracking Physical Activities in Daily Life": 1 + "Health and Wellness: Utilizing Apple Watch for Enhancing Physical Activities in Daily Life": 1 + "Health and Wellness: The Impact of Pedometers on Physical Activities in Daily Life": 1 + "Health and Wellness: Utilizing Yoga Techniques to Increase Physical Activities in Daily Life": 1 + "Health and Wellness: The Role of Virtual Reality in Encouraging Physical Activities in Daily Life": 1 + "Health and Wellness: The Importance of Treadmill Workouts in Daily Physical Activities": 1 + "Health and Wellness: Incorporating Pilates into Daily Physical Activities for Overall Wellness": 1 + "Health and Wellness: Using HIIT Workouts to Boost Physical Activities in Daily Life": 1 + "Health and Wellness: The Influence of Fitness Apps on Physical Activities in Daily Life": 1 + "Health and Wellness: The Benefits of Zumba as a Physical Activity in Daily Life.": 1 + "Logical Thinkers: An Introduction to Elementary Logic using Deductive Reasoning": 1 + "Logical Thinkers: Exploring Elementary Logic with Truth Tables": 1 + "Logical Thinkers: Introduction to Elementary Logic and Propositional Calculus": 1 + "Logical Thinkers: Applying Elementary Logic using Syllogistic Logic": 1 + "Logical Thinkers: Introduction to Elementary Logic via Semantic Tableaux": 1 + "Logical Thinkers: Elementary Logic and Inductive Reasoning Fundamentals": 1 + "Logical Thinkers: Introduction to Elementary Logic with Python Programming": 1 + "Logical Thinkers: Exploring Elementary Logic using Digital Logic Circuits": 1 + "Logical Thinkers: Introduction to Elementary Logic and Set Theory": 1 + "Logical Thinkers: Elementary Logic with a Focus on Predicate Logic": 1 + "The Silk Road and the Role of Navigation Technology in Shaping Civilizations": 1 + "The Impact of the Silk Road and the Camel Caravan on Ancient Civilizations": 1 + "The Silk Road: The Influence of Papermaking Technology on Civilization": 1 + "Trade and Cultural Exchange: The Silk Road and the Compass": 1 + "The Silk Road and The Impact of Silk Weaving Technology on Civilization": 1 + "The Silk Road: The Role of the Printing Press in Cross-Cultural Integration": 1 + "The Silk Road and the Influence of Gunpowder Technology on Civilizations": 1 + "Maritime Advances: The Impact of the Silk Road on Navigation": 1 + "The Silk Road and the Impact of Watermill Technology on Agricultural Civilizations": 1 + "The Silk Road: The Influence of Metalworking and Civilization Development": 1 + "English 190: Poetry and Lyrics: A Study of Musical Language through Metaphors": 1 + "English 190: Poetry and Lyrics: Exploring Rhyme Schemes in Musical Language": 1 + "English 190: Poetry and Lyrics: Tone and Mood in Musical Language": 1 + "English 190: Poetry and Lyrics: The Role of Alliteration in Musical Language": 1 + "English 190: Poetry and Lyrics: Symbolism in Musical Language": 1 + "English 190: Poetry and Lyrics: The Influence of Sonnets on Musical Language": 1 + "English 190: Poetry and Lyrics: Analyzing Imagery in Musical Language": 1 + "English 190: Poetry and Lyrics: The Use of Syllable Count in Musical Language": 1 + "English 190: Poetry and Lyrics: A Study of Musical Language through Hyperboles": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language": 1 + "English 190: Poetry and Lyrics: The Impact of Iambic Pentameter on Musical Language": 1 + "Logic: Unraveling Essential Concepts and Logical Fallacies with the Use of Venn Diagrams": 1 + "Advanced Logic: Mastering Truth Tables and Fallacies using Python Programming": 1 + "Logic 101: Decoding Essential Concepts and Logical Fallacies through Propositional Calculus": 1 + "Critical Thinking: A Deep Dive into Logical Fallacies and Truth Tables using MATLAB": 1 + "Logic and Reasoning: Understanding Essential Concepts through Truth Tables and the Rule of Inference": 1 + "Logic: A Comprehensive Guide to Logical Fallacies and Truth Tables using Logical Equivalence": 1 + "Logic: Essential Concepts and Logical Fallacies Explained with Truth Tables and Semantic Tableaux": 1 + "The Art of Logic: Analyzing Logical Fallacies using Truth Tables and Predicate Logic": 1 + "Logic: Deciphering Essential Concepts and Logical Fallacies using Truth Tables and Boolean Algebra": 1 + "Logic: A Detailed Study on Logical Fallacies Using Truth Tables and the Law of Excluded Middle.": 1 + "Elementary Economics: The Role of Cryptocurrency in Money and Trade": 1 + "Trade and Transactions: Understanding Blockchain in Elementary Economics": 1 + "Elementary Economics: Exploring the Impact of Mobile Banking on Money and Trade": 1 + "Fundamentals of Money and Trade: A Deep Dive into the Stock Market": 1 + "Elementary Economics: Using Financial Software for Money Management and Trade": 1 + "The Influence of E-commerce on Elementary Economics: Fundamentals of Money and Trade": 1 + "Elementary Economics: Understanding Money and Trade through the Lens of Forex Trading": 1 + "Exploring the Role of Digital Wallets in Elementary Economics: Fundamentals of Money and Trade": 1 + "Elementary Economics: Fundamentals of Money and Trade with a Focus on Online Trading Platforms": 1 + "The Implication of Artificial Intelligence in Elementary Economics: Money and Trade.": 1 + "Biology: Deep Dive into Plant Genetics and Crop Breeding using CRISPR Technology": 1 + "Advanced Study of Plant Genetics: Application of QTL Mapping in Crop Breeding": 1 + "Biology: Introduction to Plant Genetics and Crop Breeding with a Focus on Genetic Engineering": 1 + "Beyond Basics: Plant Genetics and Crop Breeding using DNA Sequencing Techniques": 1 + "Biology and Biotechnology: Exploring Plant Genetics and Crop Breeding with Genomic Selection": 1 + "In-Depth Study: Plant Genetics and Marker-Assisted Selection in Crop Breeding": 1 + "Molecular Biology: Understanding Plant Genetics and the Role of Bioinformatics in Crop Breeding": 1 + "From Genes to Fields: Plant Genetics and Crop Breeding through the Lens of High-Throughput Phenotyping": 1 + "Biology: Plant Genetics and Crop Breeding - Unveiling the Potential of Genome Editing": 1 + "Advanced Biology: An Exploration of Plant Genetics and Precision Breeding in Crop Improvement.": 1 + "Science: Exploring Data through Experiments using Microscopes": 1 + "Science: Decoding Data through Experiments with Cloud Computing": 1 + "Science: Investigating Data through Experiments using DNA Sequencing": 1 + "Science: Unfolding Data through Experiments with Spectroscopy": 1 + "Science: Deducing Data through Experiments using Particle Accelerators": 1 + "Science: Analyzing Data through Experiments with Genetic Engineering": 1 + "Science: Understanding Data through Experiments using Quantum Computing": 1 + "Science: Deciphering Data through Experiments with Telescopes": 1 + "Science: Interpreting Data through Experiments using Artificial Intelligence": 1 + "Science: Exploring Data through Experiments with Nanotechnology.": 1 + "Physics: Exploring the Laws of Motion Through Newton's Cradle": 1 + "Physics: Applying the Laws of Motion in Robotics": 1 + "Physics: The Laws of Motion and the Impact of Friction": 1 + "Physics: Understanding the Laws of Motion Through Pendulum Experiments": 1 + "Physics: The Role of Gravity in the Laws of Motion": 1 + "Physics: The Laws of Motion in Sports Science": 1 + "Physics: Deciphering the Laws of Motion with the Help of Computer Simulation": 1 + "Physics: The Laws of Motion and Aerodynamics in Flight": 1 + "Physics: Understanding the Laws of Motion Through Ballistics": 1 + "Physics: Exploring the Laws of Motion in Particle Accelerators": 1 + "Analyzing the Influence of Color Wheel on Gouache Techniques with Palette Knives: A Detailed Exploration of Geometric Shapes": 1 + "Brushworks and Color Wheel: The Effect on Gouache Techniques and Linear Forms": 1 + "The Impact of Color Wheel on Gouache Techniques: An Extensive Study on Blending Techniques and Shapes": 1 + "Understanding the Effect of Color Wheel on Gouache Techniques Using Easel: A Study on Shapes and Lines": 1 + "Exploring Gouache Techniques: The Role of Color Wheel and Graphite Pencils in Creating Dynamic Shapes and Lines": 1 + "The Impact of Color Wheel on Gouache Techniques: An Exploration of Shapes and Lines Using Lightbox": 1 + "Color Wheel and Gouache Techniques: The use of pastel sticks in creating unique shapes and lines.": 1 + "Employing the Color Wheel in Gouache Techniques: A Deep Dive into the Use of Oil Pastels and the Formation of Shapes": 1 + "The Impact of Color Wheel on Gouache Techniques: An Exploration of Shapes and Lines Using Charcoal": 1 + "The Role of Stencils in Enhancing the Impact of Color Wheel on Gouache Techniques: A Study on Shapes and Lines.": 1 + "Social Studies: The Impact of Vinyl Records on Music and Cultural Identity": 1 + "Social Studies: The Role of Digital Streaming in Music and Cultural Identity": 1 + "Social Studies: The Influence of Auto-Tune on Music and Cultural Identity": 1 + "Social Studies: The Impact of Music Sampling on Cultural Identity": 1 + "Social Studies: Music, Cultural Identity, and the Rise of MIDI Technology": 1 + "Social Studies: The Role of Music Notation in Shaping Cultural Identity": 1 + "Social Studies: Music and Cultural Identity in the Age of Social Media": 1 + "Social Studies: Music, Cultural Identity, and the Evolution of Audio Mixing": 1 + "Social Studies: The Impact of Electronic Synthesizers on Music and Cultural Identity": 1 + "Social Studies: Music and Cultural Identity: A Study of Digital Audio Workstations": 1 + "Utilizing Metaphors in Music: The Harmony of Rhymes in Children's Poetry": 1 + "The Role of iambic Pentameter in Music: The Harmony of Rhymes in Children’s Poetry": 1 + "Enhancing Rhyme with Rhythm: Using Percussion Instruments in Children's Poetry Music": 1 + "Digital Recording Technology in Music: The Harmony of Rhymes in Children's Poetry": 1 + "Exploring Melody: The Harmony of Rhymes in Children's Poetry using the Piano": 1 + "Voice Modulation Techniques in Music: The Harmony of Rhymes in Children's Poetry": 1 + "Using Audacity Software for Music: The Harmony of Rhymes in Children's Poetry": 1 + "The Influence of Tempo on Music: The Harmony of Rhymes in Children's Poetry": 1 + "Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry": 1 + "Implementing MIDI Technology in Music: The Harmony of Rhymes in Children's Poetry": 1 + "English 190: Poetry and Lyrics: Exploring Personification in Musical Language through Metaphors": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language - A Study of Alliteration": 1 + "English 190: Poetry and Lyrics: Analyzing Personification in Musical Language through Imagery": 1 + "English 190: Poetry and Lyrics: Understanding Personification in Musical Language with Rhetorical Devices": 1 + "English 190: Poetry and Lyrics: Dissecting Personification in Musical Language using Symbolism": 1 + "English 190: Poetry and Lyrics: Insights into Personification in Musical Language via Meter Analysis": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language - A Journey through Rhyme Schemes": 1 + "English 190: Poetry and Lyrics: Identifying Personification in Musical Language through Sonnet Structures": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language - An Examination of Hyperbole Use": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language - A Deep Dive into Onomatopoeia": 1 + "Physical Education: Teamwork and Sportsmanship Through Basketball Strategies": 1 + "Physical Education: Enhancing Teamwork and Sportsmanship with Soccer Tactics": 1 + "Physical Education: Teamwork and Sportsmanship - A Focus on Volleyball Techniques": 1 + "Physical Education: Teamwork and Sportsmanship Through the Lens of Baseball Game Theory": 1 + "Physical Education: Utilizing Heart Rate Monitors to Foster Teamwork and Sportsmanship": 1 + "Physical Education: Teamwork and Sportsmanship in Track and Field - The Baton Pass Technique": 1 + "Physical Education: Enhancing Teamwork and Sportsmanship Through Tennis Doubles Strategy": 1 + "Physical Education: Teamwork and Sportsmanship - The Role of Digital Coaching Tools in Football": 1 + "Physical Education: Teamwork and Sportsmanship - Using Fitness Trackers in Group Exercise Activities": 1 + "Physical Education: Teamwork and Sportsmanship - The Impact of Communication Technology in Team Sports.": 1 + "Chemistry for Kids: Experimenting with Elements Using a Microscope": 1 + "Chemistry for Kids: Experimenting with Elements and the Periodic Table": 1 + "Chemistry for Kids: Fun with Elements and Bunsen Burners": 1 + "Chemistry for Kids: A Look at Elements through Spectroscopy": 1 + "Chemistry for Kids: Exploring Elements with pH Meters": 1 + "Chemistry for Kids: Elements and Experiments using Litmus Papers": 1 + "Chemistry for Kids: Making Sense of Elements with Molecular Models": 1 + "Chemistry for Kids: Discovering Elements through Chromatography": 1 + "Chemistry for Kids: Experimenting with Elements and Chemical Reactions": 1 + "Chemistry for Kids: Unveiling Elements with Laboratory Glassware": 1 + "Advanced Music Theory: Exploring Classical Composition with Ableton Live & MIDI Controllers": 1 + "Interactive Music Theory: Classical Composition Mastery using Ableton Live and Sibelius": 1 + "Music Theory Expertise: A Detailed Study of Classical Composition Using Ableton Live and Virtual Instruments": 1 + "In-Depth Music Theory: Classical Composition with Ableton Live and Max for Live": 1 + "Mastering Music Theory: Classical Composition Using Ableton Live and Pro Tools": 1 + "Music Theory Explained: Classical Composition Mastery using Ableton Live and Auto-Tune": 1 + "Advanced Music Theory: Classical Composition Techniques with Ableton Live and Logic Pro X": 1 + "Music Theory: Classical Composition Using Ableton Live and Sidechain Compression": 1 + "Practical Music Theory: A Deep Dive into Classical Composition using Ableton Live and Waves Plugins": 1 + "Music Theory Mastery: Classical Composition in Ableton Live Using the Circle of Fifths.": 1 + "Language Arts: The Role of Metaphor in Literary Perspectives on Environmental Conservation": 1 + "Language Arts: Eco-criticism and its Application in Environmental Conservation Literature": 1 + "Language Arts: Exploring Symbolism in Environmental Conservation Narratives": 1 + "Language Arts: The Influence of Imagery in Environmental Conservation Literature": 1 + "Language Arts: The Use of Irony in Literary Perspectives on Environmental Conservation": 1 + "Language Arts: Exploring Allegory in Environmental Conservation Literature": 1 + "Language Arts: The Role of Satire in Literary Perspectives on Environmental Conservation": 1 + "Language Arts: The Impact of Alliteration in Environmental Conservation Narratives": 1 + "Language Arts: The Power of Hyperbole in Environmental Conservation Literature": 1 + "Language Arts: The Significance of Onomatopoeia in Literary Perspectives on Environmental Conservation": 1 + "The Influence of Photography as a Propaganda Tool in Shaping Modern Art during World War I": 1 + "The Impact of Cinema in the Propaganda and Modern Artistic Expression during World War II": 1 + "The Role of Radio Broadcast Propaganda in Shaping Modern Art during the World Wars": 1 + "The Impact of Print Media in Shaping Propaganda-Influenced Modern Art during the World Wars": 1 + "The Role of Political Cartoons as a Propaganda Medium in Shaping Modern Art during the World Wars": 1 + "The Influence of Poster Art in Propaganda and Shaping Modern Art during the World Wars": 1 + "The Role of Mass Media Technologies in Propaganda and Shaping Modern Art during the World Wars": 1 + "The Impact of Television Broadcasting on Propaganda-Driven Modern Art during World War II": 1 + "The Role of Symbolism in Propaganda and Its Influence on Modern Art during the World Wars": 1 + "The Influence of Graphic Design in Propaganda and Shaping Modern Art during the World Wars.": 1 + "Science: An Exploration of Quantum Computing in Physics": 1 + "The Role of Semiconductor Physics in Computer Science": 1 + "Harnessing Nanotechnology: The Physics of Computers": 1 + "Understanding Computer Science: The Influence of Photonics": 1 + "Science: The Physics of Artificial Intelligence and Computing": 1 + "Digging Deeper into Computer Physics: The Role of Microprocessors": 1 + "The Physics of Supercomputing: A Scientific Exploration": 1 + "Exploring the Physics of Computers: The Impact of Virtual Reality Technology": 1 + "Quantum Mechanics and The Physics of Modern Computing": 1 + "The Science of Computing: An Insight into Optical Fibre Technology.": 1 + "Social Studies: Exploring Cultural Rhythms in Asian Societies through Drone Photography ": 1 + "Social Studies: Decoding Cultural Rhythms in African Tribes through Infrared Photography ": 1 + "Social Studies: Understanding Cultural Rhythms in Scandinavian Societies through Time-lapse Photography ": 1 + "Social Studies: Unveiling Cultural Rhythms in Latin American Societies through VR Photography ": 1 + "Social Studies: Analyzing Cultural Rhythms in Middle Eastern Societies through 360 Degree Photography ": 1 + "Social Studies: Interpreting Cultural Rhythms in North American Societies through Stereoscopic Photography ": 1 + "Social Studies: Deciphering Cultural Rhythms in Pacific Island Societies through High-Speed Photography ": 1 + "Social Studies: Examining Cultural Rhythms in European Societies through Underwater Photography ": 1 + "Social Studies: Insight into Cultural Rhythms in Aboriginal Societies through Aerial Photography ": 1 + "Social Studies: Investigating Cultural Rhythms in Arctic Societies through Macro Photography": 1 + "The Art of Mathematics: Exploring Geometry in Visual Arts through the Lens of Fractals": 1 + "The Art of Mathematics: Application of Fibonacci Sequence in Exploring Geometry in Visual Arts": 1 + "The Art of Mathematics: Merging Geometry and Visual Arts with the Golden Ratio": 1 + "The Art of Mathematics: An Insight into Geometry in Visual Arts using CAD Technology": 1 + "The Art of Mathematics: Exploring Geometry in Visual Arts and its Expression through 3D Printing": 1 + "The Art of Mathematics: The Influence of Pythagorean Theorem on Geometry in Visual Arts": 1 + "The Art of Mathematics: Exploring Geometry in Visual Arts with the Power of Geometric Transformations": 1 + "The Art of Mathematics: Uncovering the Role of Euclidean Geometry in Visual Arts": 1 + "The Art of Mathematics: Diving into Geometry in Visual Arts through the Prism of Perspective": 1 + "The Art of Mathematics: Geometry in Visual Arts - A Study of Symmetry and Patterns.": 1 + "Little Biologists: Exploring Animal Behavior through Microscopy": 1 + "Little Biologists: Discovering Animal Habitats using GPS Tracking": 1 + "Little Biologists: Understanding Animal Anatomy with 3D Printing": 1 + "Little Biologists: Studying Aquatic Life through Hydroponics": 1 + "Little Biologists: Investigating Insects using Microscopic Imaging": 1 + "Little Biologists: Unveiling Bird Migration Patterns using Satellite Technology": 1 + "Little Biologists: Learning Marine Biology through Submersible Exploration": 1 + "Little Biologists: Identifying Animal Species through DNA Sequencing": 1 + "Little Biologists: Unraveling the Secrets of Animal Physiology with Virtual Reality": 1 + "Little Biologists: Exploring Animal Adaptations using Time-Lapse Photography": 1 + "Physics Fundamentals: Exploring Quantum Mechanics with the Schrödinger Equation": 1 + "Quantum Mechanics: A Deep Dive into Particle Physics Using the Heisenberg Uncertainty Principle": 1 + "Quantum Universe: Understanding Physics Fundamentals through Quantum Field Theory": 1 + "Quantum Mechanics Mastery: Harnessing the Power of Quantum Computing": 1 + "Unraveling Quantum Mechanics: A Comprehensive Study of Quantum Entanglement": 1 + "Quantum Mechanics and Its Applications: The Role of Quantum Teleportation": 1 + "Physics Fundamentals: Quantum Mechanics and the Phenomenon of Quantum Superposition": 1 + "Quantum Mechanics Explained: The Science behind Quantum Tunneling": 1 + "Quantum Physics: Decoding the Universe with Wave-Particle Duality": 1 + "Physics Fundamentals: Quantum Mechanics and the Magic of Quantum Cryptography.": 1 + "Neuroscience: Understanding the Brain's Function through MRI": 1 + "Neuroscience: Deciphering the Brain's Function with EEG Technology": 1 + "Neuroscience: Exploring the Brain's Function using fMRI": 1 + "Neuroscience: Understanding the Brain's Function through Neuroimaging": 1 + "Neuroscience: Unveiling the Brain's Function with PET Scans": 1 + "Neuroscience: Delving into the Brain's Function using Electrophysiology": 1 + "Neuroscience: Understanding the Brain's Function with Brain Mapping Techniques": 1 + "Neuroscience: Decoding the Brain's Function using Transcranial Magnetic Stimulation": 1 + "Neuroscience: Understanding the Brain's Function through Diffusion Tensor Imaging": 1 + "Neuroscience: Examining the Brain's Function with Spectroscopy": 1 + "Utilizing Blockchain Technology to Analyze the Impact of Global Trade on Organic Hydroponic Farming: A Comprehensive Review": 1 + "The Role of Eco-Labeling in Global Trade's Impact on Organic Hydroponic Farming: A Case Study": 1 + "Investigating Precision Agriculture's Influence on Organic Hydroponic Farming in the Global Trade Scenario": 1 + "Greenhouse Gas Emissions and Global Trade: Exploring the Impact on Organic Hydroponic Farming Practices": 1 + "Internet of Things (IoT) and Its Role in Global Trade: Examining Effects on Organic Hydroponic Farming": 1 + "A Case Study: Impact of Global Trade on Organic Hydroponic Farming and the Role of Geographic Information Systems (GIS)": 1 + "Exploring Genetically Modified Crops' Influence on Organic Hydroponic Farming: A Global Trade Perspective": 1 + "The Impact of Global Trade on Organic Hydroponic Farming: A Case Study on the Use of Solar Energy Systems": 1 + "The Role of Drip Irrigation in Organic Hydroponic Farming: An Analysis of Global Trade Impacts": 1 + "The Impact of Global Trade on Organic Hydroponic Farming: A Case Study on the Use of Vertical Farming Techniques.": 1 + "Neuroscience: Examining the Human Brain's Functions using MRI Technology and Diffusion Tensor Imaging": 1 + "Neuroscience: A Deep Dive into the Human Brain with MRI Technology and Functional Connectivity Analysis": 1 + "Neuroscience: MRI Technology and Spectroscopy in Mapping the Human Brain Functions": 1 + "Neuroscience: Studying Human Brain Functions using MRI Technology and Voxel-based Morphometry": 1 + "Neuroscience: An Exploration of the Human Brain through MRI Technology and Arterial Spin Labeling": 1 + "Neuroscience: MRI Technology and Functional Magnetic Resonance Imaging (fMRI) in Understanding the Human Brain": 1 + "Neuroscience: A Comprehensive Study of the Human Brain Functions using MRI Technology and Neuronavigation": 1 + "Neuroscience: MRI Technology and Diffusion Weighted Imaging in the Exploration of Human Brain Functions": 1 + "Neuroscience: Tracing Human Brain Functions through MRI Technology and Echo Planar Imaging": 1 + "Neuroscience: MRI Technology and Magnetic Resonance Spectroscopy in the Analysis of Human Brain Functions.": 1 + "Physics: Exploring Resonance and Sound Waves with Oscilloscopes": 1 + "Physics: The Science of Sound Frequency Analysis with Fourier Transforms": 1 + "Physics: Vibrations and Sound - A Deep Dive into Wave Interference": 1 + "Physics: The Role of Quantum Mechanics in Vibrations and Sound": 1 + "Physics: The Physics of Vibrations and Sound: Studying Doppler Effect": 1 + "Physics: Understanding Sound Propagation with the Helmholtz Resonator": 1 + "Physics: The Physics of Vibrations and Sound: Analyzing with Fast Fourier Transform": 1 + "Physics: Sound Wave Propagation and Vibrations Explored through Acoustic Simulation": 1 + "Physics: The Physics of Vibrations, Sound, and their Spectral Analysis": 1 + "Physics: Deciphering the Physics of Vibrations and Sound through Waveform Analysis.": 1 + "Money Matters: Teaching Children about Savings and Investments": 1 + "Money Matters: An Introduction to Cryptocurrency for Kids": 1 + "Money Matters: Understanding Stock Market Basics for Children": 1 + "Money Matters: Teaching Kids About Budgeting and Financial Planning ": 1 + "Money Matters: An Introduction to Online Banking for Kids": 1 + "Money Matters: The Role of Money in the Economy for Children": 1 + "Money Matters: Teaching Kids about Credit and Loans": 1 + "Money Matters: Real Estate Investment Basics for Children": 1 + "Money Matters: Inflation and Deflation Concepts for Kids": 1 + "Money Matters: Understanding Taxes for Children.": 1 + "Science: Unraveling the Mysteries of Internet Protocols": 1 + "Exploring the Internet: A Deep Dive into the World of Packet Switching": 1 + "Science: Unraveling the Mysteries of DNS in the Internet": 1 + "Understanding the Internet: An Exploration of IP Addresses": 1 + "Science: Decoding the Internet with TCP/IP": 1 + "Digital Science: The Role of Routers in the Internet": 1 + "Internet Science: Deciphering the Mystery of HTTP and HTTPS": 1 + "Science: Unravelling the Mysteries of Internet with Cloud Computing": 1 + "The Science Behind the Internet: A Study of Bandwidth and Latency": 1 + "The world of Science: Understanding the Internet Through Subnetting.": 1 + "Language Arts: Decoding Food Labels Using Nutritrack": 1 + "Utilizing QR Code Technology in Reading and Understanding Food Labels": 1 + "Language Arts: Exploring Food Labels with Nutritional Calculators ": 1 + "Reading and Understanding Food Labels Through Barcode Scanning Apps": 1 + "Language Arts: Analyzing Food Labels Using Nutritional Databases": 1 + "Food Label Interpretation: A Focus on Ingredient Analysis Software": 1 + "Language Arts: Understanding Food Labels and Allergen Highlighting Tools": 1 + "Interpreting Food Labels Using the Nutri-Score System: A Language Arts Course": 1 + "Language Arts: Food Label Decoding with Ingredient Ranking Technology": 1 + "Language Arts: A Deep Dive into Reading Food Labels with GMO Detection Tools.": 1 + "Understanding the Influence of Color Wheel on Gouache Techniques: A Detailed Study on the Use of Palette Knife": 1 + "The Role of Color Theory in Gouache Techniques: An Analysis of Shapes and Lines Using Layering Technique": 1 + "The Impact of Color Wheel on Gouache Techniques: Exploring Dry Brushing Techniques and their Effects on Shapes and Lines": 1 + "Navigating the Color Wheel: A Deep Dive into Gouache Techniques Using Glazing Method": 1 + "Incorporating the Color Wheel in Gouache Techniques: An Investigation of Gradient Mixing": 1 + "The Effect of Color Wheel on Gouache Techniques: A Comprehensive Study on the Use of Grisaille Technique": 1 + "The Impact of Color Wheel on Gouache Techniques: A Close Examination of Tonal Values with the Use of Flat Wash": 1 + "The Color Wheel and Its Implications on Gouache Techniques: An Exploration of Shapes and Lines Using the Wet-on-Wet Technique": 1 + "The Significance of Color Wheel in Gouache Techniques: A Detailed Study of the Use of Sgraffito Technique": 1 + "The Color Wheel’s Influence on Gouache Techniques: An Exploration of Shapes and Lines Through the Use of Optical Mixing.": 1 + "Art: Glazing Techniques in Pottery and Ceramics using a Potter's Wheel": 1 + "Art: Exploring Glaze Application Techniques with a Brush in Ceramics": 1 + "Art: Utilizing Spray Guns for Glazing Techniques in Pottery and Ceramics": 1 + "Art: The Art of Dipping Glazing in Pottery and Ceramics": 1 + "Art: Glazing Techniques in Pottery and Ceramics: A Deep Dive into Kiln Technology": 1 + "Art: Mastering the Wax Resist Technique for Glazing in Ceramics": 1 + "Art: Glazing Techniques in Pottery and Ceramics using Slip Trailing Tools": 1 + "Art: The Use of Sponges in Glazing Techniques for Pottery and Ceramics": 1 + "Art: Understanding Underglaze Techniques in Pottery and Ceramics using Stencils": 1 + "Art: Advanced Glazing Techniques in Pottery and Ceramics with Airbrushing Tools": 1 + "Art: The Influence of Natural Environment on Impressionist Artistic Styles": 1 + "Art: The Impact of Urban Environment on Graffiti Art Styles": 1 + "Art: Exploring the Influence of Digital Technology on Contemporary Art Styles": 1 + "Art: The Role of Photography in Shaping Realist Artistic Styles": 1 + "Art: The Influence of Environment on Cubist Art: A Focus on Geometric Shapes": 1 + "Art: The Effect of War Environment on Expressionism Art Styles": 1 + "Art: The Impact of the Renaissance Environment on Classical Artistic Styles": 1 + "Art: The Influence of Environment on Surrealist Art: The Role of Dreams and Unconscious Mind": 1 + "Art: Exploring the Effect of Political Environment on Propaganda Art Styles": 1 + "Art: The Influence of Environment and 3D Printing on Modern Sculpture Styles": 1 + "Earth Science: The Symphony of Nature - Exploring Plate Tectonics with Seismographs": 1 + "Earth Science: Unveiling Geological Formations with Ground Penetrating Radar": 1 + "Earth Science: The Symphony of Nature - Understanding Climate Change through Satellite Imagery": 1 + "Earth Science: Harnessing Solar Energy - A Deep Dive into Photovoltaic Cells": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis using GIS Technology": 1 + "Oceanography in Earth Science: Exploring Marine Life with Sonar Technology": 1 + "Earth Science: Investigating Soil Composition with Spectroscopy": 1 + "Earth Science: The Symphony of Nature - Decoding Atmospheric Phenomena with Doppler Radar": 1 + "Earth Science: Understanding Volcanic Activity through Infrared Thermography": 1 + "Earth Science: The Symphony of Nature - Studying Glacial Movements with GPS Tracking": 1 + "Mathematics: Understanding Geometry Using Geometric Transformations with Pythagorean Theorem": 1 + "Mathematics: Utilizing Cartesian Coordinate System in Understanding Geometry and Geometric Transformations": 1 + "Mathematics: Understanding Geometry Using Geometric Transformations through Euclidean Spaces": 1 + "Mathematics: Applying Vector Spaces in Understanding Geometry and Geometric Transformations": 1 + "Mathematics: Exploring Geometry through Geometric Transformations using AutoCAD": 1 + "Mathematics: Geometry Analysis Using Geometric Transformations and SolidWorks ": 1 + "Mathematics: Understanding Geometry with Geometric Transformations through Matrices": 1 + "Mathematics: Mastering Geometry with Geometric Transformations using Geogebra Tech Tool": 1 + "Mathematics: Understanding Geometry using Geometric Transformations and Linear Algebra Concepts": 1 + "Mathematics: Geometry Mastery Using Geometric Transformations with Fusion 360 Technology": 1 + "Art: Understanding Modern Art through Cubism": 1 + "Art: The Role of Acrylic Paint in Modern Art": 1 + "Art: The Influence of Digital Technology on Modern Art": 1 + "Art: Understanding Modern Art through Abstract Expressionism": 1 + "Art: Modern Art and the Use of Mixed Media": 1 + "Art: The Impact of Photography on Modern Art": 1 + "Art: Understanding Modern Art: A Study on Collage Techniques": 1 + "Art: The Evolution of Sculpture in Modern Art": 1 + "Art: Modern Art and the Influence of Virtual Reality": 1 + "Art: Understanding Modern Art through the Lens of Pop Art": 1 + "Art: The Role of Installations in Modern Art": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Impact of Blockchain on Cryptocurrency": 1 + "Language Arts: The Rhetoric of Economic Discourse: Examining the Role of Bitcoin in Cryptocurrency": 1 + "Language Arts: The Rhetoric of Economic Discourse: Cryptocurrency and the Influence of Ethereum": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Functionality of Smart Contracts in Cryptocurrency": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Role of Cryptocurrency and its Relation to ICOs": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring the Impact of Digital Wallets on Cryptocurrency": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Role of Cryptocurrency and the Decentralized Finance (DeFi) Movement": 1 + "Language Arts: The Rhetoric of Economic Discourse: Cryptocurrency and its Connection to Peer-to-Peer Transactions": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Role of Cryptocurrency in the Context of Mining Operations": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Influence of Cryptocurrency Exchanges on Economic Discourse.": 1 + "World History: The Influence of Cutlery on Dining Traditions Across Cultures": 1 + "World History: The Role of Fire in Shaping Global Dining Traditions": 1 + "World History: The Impact of Pottery in Dining Traditions Across Different Cultures": 1 + "World History: The Evolution of Dining Tables and Their Role in Global Food Cultures": 1 + "World History: The Contribution of Fermentation to Dining Traditions Globally": 1 + "World History: The Significance of Salt in Dining Traditions Around the World": 1 + "World History: The Influence of the Spice Trade on Global Dining Customs": 1 + "World History: The Role of Agricultural Tools in Shaping Dining Traditions": 1 + "World History: The Impact of Food Preservation Techniques on Cultural Dining Traditions": 1 + "World History: Dining Traditions Across Cultures- The Influence of the Millstone.": 1 + "Music: A Deep Dive into Classical Compositions through the Lens of Piano Technique": 1 + "Music: Exploring Classical Compositions using Digital Music Technology": 1 + "Music: A Study of Classical Compositions with a Focus on Violin Interpretation": 1 + "Music: The Influence of Harpsichord in Classical Compositions": 1 + "Music: A Detailed Study of Classical Compositions using Music Production Software": 1 + "Music: Understanding Classical Compositions through the Art of Conducting": 1 + "Music: The Role of the Organ in Classical Compositions": 1 + "Music: Analyzing Classical Compositions through MIDI Technology": 1 + "Music: Classical Compositions - A Study Focused on the Cello's Role": 1 + "Music: Exploring Classical Compositions through the Perspective of Music Theory.": 1 + "Computer Science: Developing Fitness Apps for Athletes using Firebase Cloud Functions and React Native": 1 + "Computer Science: Incorporating Machine Learning in Fitness Apps for Athletes using Firebase Cloud Functions": 1 + "Computer Science: Using Flutter and Firebase Cloud Functions for Fitness Apps Development for Athletes": 1 + "Computer Science: Building Athlete Fitness Apps with Firebase Cloud Functions and Google Maps API": 1 + "Computer Science: Utilizing Firebase Cloud Functions and Swift for Developing Fitness Apps for Athletes": 1 + "Computer Science: Integrating Firebase Cloud Functions and Android Studio in Fitness Apps for Athletes": 1 + "Computer Science: Creating Fitness Apps for Athletes using Firebase Cloud Functions and Python": 1 + "Computer Science: Designing Athlete Fitness Apps with Firebase Cloud Functions and Kotlin": 1 + "Computer Science: Crafting Fitness Apps for Athletes using Firebase Cloud Functions and Node.js": 1 + "Computer Science: Using Firebase Cloud Functions and Java for Fitness Apps Development for Athletes": 1 + "Economic Forecasting with Parallel Algorithms and Big Data: Implementing Hadoop for Optimal Predictions": 1 + "Advanced Techniques in Economic Forecasting: Using MapReduce with Parallel Algorithms and Big Data": 1 + "Deep Dive into Economic Forecasting: Leveraging Python and Parallel Algorithms for Big Data Processing": 1 + "Powering Economic Forecasts with Parallel Algorithms and Big Data: An Exploration of Apache Spark": 1 + "Harnessing Machine Learning for Economic Forecasting: Parallel Algorithms and Big Data Applications": 1 + "Economic Forecasting Masterclass: Utilizing R Programming with Parallel Algorithms in Big Data": 1 + "Economic Forecasting in the Age of Big Data: Exploring Google Cloud Platform and Parallel Algorithms": 1 + "Advanced Economic Forecasting: Unpacking Parallel Algorithms and Big Data with MATLAB": 1 + "Economic Forecasting Revolution: Using Big Data and Parallel Algorithms with SAS Software": 1 + "Transforming Economic Forecasting: A Deep Dive into Parallel Algorithms, Big Data, and Amazon Web Services.": 1 + "Social Studies: Workers' Rights Movements during the Industrial Revolution - Focus on the Impact of the Spinning Jenny": 1 + "The Influence of the Steam Engine on Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: The Role of the Telegraph in Workers' Rights Movements during the Industrial Revolution": 1 + "Exploring the Cotton Gin's Impact on Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: How the Sewing Machine Sparked Workers' Rights Movements during the Industrial Revolution": 1 + "The Power Loom's Contribution to Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: The Impact of the Typewriter on Workers' Rights Movements during the Industrial Revolution": 1 + "Understanding the Influence of the Telephone on Workers' Rights Movements in the Industrial Revolution": 1 + "Social Studies: The Role of the Assembly Line in Workers' Rights Movements during the Industrial Revolution": 1 + "The Effect of the Railway System on Workers' Rights Movements during the Industrial Revolution": 1 + "Exploring the Use of Ethereum Blockchain in Examining the Global Trade Impact on Organic Hydroponic Farming: A Solution-focused Review of 10 Different Techniques": 1 + "Implementing Smart Contract Technology in Blockchain to Investigate Global Trade Influences on Organic Hydroponic Farming: An In-depth Analysis of 10 Possible Methods": 1 + "Utilizing Blockchain's Proof-of-Work Concept to Understand Global Trade Effects on Organic Hydroponic Farming: A Detailed Study of 10 Different Strategies": 1 + "Using Hyperledger Fabric in Blockchain to Assess Global Trade Impacts on Organic Hydroponic Farming: A Comprehensive Review of 10 Innovative Solutions": 1 + "The Role of Decentralized Applications in Analyzing Global Trade Contributions to Organic Hydroponic Farming: A Comprehensive Review of 10 Approaches": 1 + "Incorporating Cryptography in Blockchain to Explore Global Trade Impact on Organic Hydroponic Farming: A Comprehensive Review of 10 Diverse Solutions": 1 + "Leveraging Blockchain's Distributed Ledger for Analyzing Global Trade Impact on Organic Hydroponic Farming: An Examination of 10 Unique Solutions": 1 + "Applying InterPlanetary File System in Blockchain to Study Global Trade Impact on Organic Hydroponic Farming: A Comprehensive Review of 10 Different Possibilities": 1 + "Use of Consensus Algorithms in Blockchain to Gauge Global Trade Impact on Organic Hydroponic Farming: A Comprehensive Review of 10 Potential Solutions": 1 + "Implementing Blockchain's Peer-to-Peer Network to Investigate Global Trade Influences on Organic Hydroponic Farming: A Detailed Analysis of 10 Possible Methods.": 1 + "Social Studies: Utilizing Instagram for Music Promotion Strategies": 1 + "The Influence of YouTube on Effective Music Promotion: A Social Studies Perspective": 1 + "Social Studies: Harnessing the Power of TikTok for Music Promotion": 1 + "Social Studies: The Impact of Facebook Ads on Music Promotion": 1 + "The Role of SEO in Social Media Music Promotion: A Social Studies Course": 1 + "Social Studies: Exploring Spotify Playlists for Music Promotion": 1 + "Leveraging Twitter for Music Promotion: A Social Studies Examination": 1 + "Social Studies: The Effectiveness of Email Marketing in Music Promotion": 1 + "Social Studies: Snapchat and its Impact on Music Promotion": 1 + "The Role of Social Media Influencers in Music Promotion: A Social Studies Course": 1 + "Intro to Computer Science: Analyzing Athletic Performance with Python Programming": 1 + "Intro to Computer Science: Analyzing Athlete Performance using R for Data Analysis": 1 + "Intro to Computer Science: Utilizing Tableau for Athletic Performance Data Visualization": 1 + "Intro to Computer Science: SQL for Athletic Performance Data Manipulation": 1 + "Intro to Computer Science: Analyzing Athletic Performance using Machine Learning Algorithms": 1 + "Intro to Computer Science: Leveraging Excel for Athletic Performance Data Analysis": 1 + "Intro to Computer Science: Using Artificial Intelligence to Analyze Athletic Performance": 1 + "Intro to Computer Science: Analyzing Athletic Performance with MATLAB": 1 + "Intro to Computer Science: Using Java for Athletic Performance Data Mining": 1 + "Intro to Computer Science: Analyzing Athletic Performance using Big Data Concepts.": 1 + "Music: The Impact of Immigration on American Jazz - A Study through Vinyl Records": 1 + "Music: The Reflection of Immigration in American Hip Hop - Analysing through Beat Making Technology ": 1 + "Music: Influence of Immigration on American Folklore - Detailed Study of the Banjo ": 1 + "Music: Immigration and its Effect on American Country Music - Exploring through Radio Broadcasting ": 1 + "Music: The Intersection of Immigration and American Rock - An Examination through Electric Guitars": 1 + "Music: The Role of Immigration in American Gospel Music - A Look through Audio Mixing Tools": 1 + "Music: Immigration's Impact on American Bluegrass - Insight through String Instruments ": 1 + "Music: The Reflection of Immigration in American Rhythm and Blues - A Deep Dive into Synthesizer Technology ": 1 + "Music: Unpacking Immigration's Influence on American Reggae - A Study through Drum Machines ": 1 + "Music: Immigration and the Evolution of American Pop Music - A Study through Auto-Tune Technology.": 1 + "Introduction to Philosophy: Exploring the Human Mind Through Socratic Dialogue": 1 + "Introduction to Philosophy: Analyzing the Human Mind with Cognitive Behavioral Therapy": 1 + "Introduction to Philosophy: A Deep Dive into the Human Mind via Neuroimaging": 1 + "Introduction to Philosophy: Exploring the Human Mind Using Psychoanalytic Theory": 1 + "Introduction to Philosophy: Probing the Human Mind with Artificial Intelligence": 1 + "Introduction to Philosophy: Understanding the Human Mind through Quantum Consciousness": 1 + "Introduction to Philosophy: Investigating the Human Mind with Neuropsychology": 1 + "Introduction to Philosophy: Decoding the Human Mind with EEG Technology": 1 + "Introduction to Philosophy: Exploring the Human Mind via Existential Phenomenology": 1 + "Introduction to Philosophy: Surveying the Human Mind with Computational Neuroscience.": 1 + "Economics: Exploring Spotify's Influence on the Music Industry's Supply and Demand": 1 + "Economics: The Impact of Blockchain Technology on the Music Industry's Economic Structure": 1 + "Economics: Understanding the Role of AI in Shaping the Music Industry's Supply and Demand": 1 + "Economics: The Effect of Digital Streaming Platforms on the Economics of the Music Industry": 1 + "Economics: The Economics of the Music Industry: Supply, Demand, and the Role of Social Media Marketing": 1 + "Economics: Evaluating the Impact of Big Data on the Economics of the Music Industry": 1 + "Economics: The Influence of Mobile Applications on the Supply and Demand of the Music Industry": 1 + "Economics: Deciphering the Role of Cryptocurrency in the Music Industry's Economic Landscape": 1 + "Economics: The Impact of Programmatic Advertising on the Supply and Demand of the Music Industry": 1 + "Economics: The Role of Virtual Reality in the Economics of Music Industry: Supply, Demand, and Digital Platforms.": 1 + "Music: Utilizing Spotify's API for Genre Selection in Event Planning": 1 + "Leveraging SoundCloud's Music Streaming Technology for Effective Genre Selection in Event Design": 1 + "Using Pandora's Music Genome Project for Tailored Music Genre Selection in Event Planning": 1 + "Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning": 1 + "Tidal's HiFi Technology: A Guide to Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD for Optimal Genre Selection in Event Planning": 1 + "Utilizing YouTube Music's Personalized Playlist Feature for Genre Selection in Event Planning": 1 + "Harnessing Apple Music's Beats 1 Radio for Genre Selection in Event Planning": 1 + "Utilizing iHeartRadio's Live Radio Feature for Effective Genre Selection in Event Planning": 1 + "Leveraging Google Play Music's Smart Recommendations for Genre Selection in Event Planning.": 1 + "Exploring Symmetry in Art Design: A Deep Dive into SketchUp and Artisan Plugin with 3D Modeling ": 1 + "Unveiling Symmetry with SketchUp and Artisan Plugin: A Comprehensive Guide to Geometric Design ": 1 + "Mastering Symmetry in Art Design: Utilizing SketchUp, Artisan Plugin, and Vector Graphics ": 1 + "Advanced Techniques in Symmetry: Leveraging SketchUp and Artisan Plugin for Digital Sculpting": 1 + "Symmetry in Art Design: An Exploration of SketchUp, Artisan Plugin, and Layering Techniques": 1 + "Unraveling Symmetry through SketchUp and Artisan Plugin: An Introduction to CAD Technology": 1 + "Harnessing Symmetry in Art Design: A Focus on SketchUp, Artisan Plugin, and Digital Rendering": 1 + "The Art of Symmetry: SketchUp, Artisan Plugin, and Texture Mapping Techniques Unveiled": 1 + "Exploring Symmetry: A Deep Dive into SketchUp, Artisan Plugin, and Photorealistic Rendering": 1 + "Navigating Symmetry in Art Design: A Comprehensive Study of SketchUp, Artisan Plugin, and 2D Drafting Techniques.": 1 + "English Language Processing: A Deep Learning Approach with Java and TensorFlow": 1 + "English Language Processing: An NLP Approach with Java and the Stanford Parser": 1 + "English Language Processing: Sentiment Analysis Using Java and the Natural Language Toolkit": 1 + "English Language Processing: Text Classification with Java and Apache OpenNLP": 1 + "English Language Processing: An NLP Approach with Java and the GATE Framework": 1 + "English Language Processing: Semantic Analysis with Java and WordNet": 1 + "English Language Processing: An NLP Approach with Java and the JAWS API": 1 + "English Language Processing: Topic Modeling with Java and the Mallet Library": 1 + "English Language Processing: An NLP Approach with Java and the LingPipe Toolkit": 1 + "English Language Processing: Text Mining with Java and the Lucene Library": 1 + "Physics Fun: Exploring Motion and Energy with Magnetic Levitation": 1 + "Electromagnetic Energy: A Detailed Study of Motion and Energy through Lenz's Law": 1 + "Physics of Electromagnetism: Unraveling Motion and Energy with Gauss's Law": 1 + "Physics Fun: Understanding Motion and Energy Through the Concept of Electromagnetic Induction": 1 + "A Deep Dive into Motion and Energy: Understanding Electromagnetism through Faraday's Law": 1 + "The Physics of Electromagnetism: Analyzing Motion and Energy with Maxwell's Equations": 1 + "Physics Fun: Learning Motion and Energy with Electromagnetic Spectrum": 1 + "Motion and Energy in Electromagnetism: A Study with The Lorentz Force": 1 + "Physics Fun: The Study of Motion and Energy through Electromagnetic Radiation": 1 + "Exploring Motion and Energy: A Detailed Study of Electromagnetism using Tesla Coils.": 1 + "Creative Writing: Exploring Metaphors in English and Imagery Power with Scrivener": 1 + "Crafting Tales: Advanced English Expressions and the Power of Imagery using Google Docs": 1 + "Creative Writing: Crafting Tales with English Idioms and the Power of Imagery using Microsoft Word": 1 + "Advanced Creative Writing: Harnessing the Power of Adobe Story for English Expressions and Imagery ": 1 + "Creative Writing: Crafting Tales with English Puns and the Power of Visual Imagery using Photoshop": 1 + "Mastering Creative Writing: English Expressions, Imagery and the Power of Celtx": 1 + "Creative Writing: Crafting Tales with English Proverbs and the Power of Imagery using Final Draft": 1 + "Advanced Storytelling: English Expressions, Imagery Power and the Craft of Screenwriting using Trelby": 1 + "Creative Writing: Crafting Tales with English Slang and the Power of Imagery using Quip": 1 + "Mastering Creative Writing: English Expressions, Imagery and the Power of Evernote.": 1 + "Advanced Chemistry: Utilizing Mass Spectrometry and HPLC in the Production of Fireworks and Festival Lights": 1 + "Chemistry of Pyrotechnics: The Role of Chromatography and HPLC in Firework Creation": 1 + "Applied Chemistry: The Use of HPLC and Infrared Spectroscopy in Creating Vibrant Fireworks and Festival Lights": 1 + "Spectral Analysis in Pyrotechnics: Employing HPLC and UV-Vis Spectroscopy in Firework Chemistry": 1 + "Chemistry in Action: The Application of HPLC and X-Ray Crystallography in Pyrotechnics": 1 + "Colorful Chemistry: Leveraging HPLC and Electrochemical Analysis in Firework and Festival Light Manufacturing": 1 + "The Science of Light: Incorporating HPLC and Fluorescence Spectroscopy in Firework and Festival Light Production": 1 + "Pyrotechnic Chemistry: The Integration of HPLC and Nuclear Magnetic Resonance (NMR) Spectroscopy in Firework Design": 1 + "Illuminating Chemistry: The Use of HPLC and Raman Spectroscopy in the Chemistry of Fireworks and Festival Lights": 1 + "Chemistry of Celebration: Applying HPLC and Atomic Absorption Spectroscopy in Firework and Festival Light Development.": 1 + "Physical Education: Introduction to Football Tactics ": 1 + "Physical Education: Exploring Volleyball Techniques": 1 + "Physical Education: Basics of Basketball Strategy": 1 + "Physical Education: Understanding Soccer Formation Systems": 1 + "Physical Education: Cricket and Its Equipment Usage ": 1 + "Physical Education: Introduction to Rugby Scoring Methods": 1 + "Physical Education: Learning Baseball Pitching Techniques ": 1 + "Physical Education: Insights into Hockey Stick Handling ": 1 + "Physical Education: Netball Defensive Strategies ": 1 + "Physical Education: The Art of Handball Goalkeeping Techniques": 1 + "Basic Computer Programming: An Introduction to Python Using Anaconda": 1 + "Basic Computer Programming: A Beginner's Guide to Python and PyCharm IDE": 1 + "Basic Computer Programming: Diving into Python with Jupyter Notebook": 1 + "Basic Computer Programming: Exploring Python through Data Structures": 1 + "Basic Computer Programming: Python for Beginners and Numpy": 1 + "Basic Computer Programming: Python's Object-oriented Programming (OOP) Explained": 1 + "Basic Computer Programming: A Beginner's Guide to Python and Django Framework": 1 + "Basic Computer Programming: Learning Python with AI and Machine Learning Concepts": 1 + "Basic Computer Programming: Python for Beginners with a Focus on Flask Web Framework": 1 + "Basic Computer Programming: A Dive into Python with Pandas Data Analysis Library": 1 + "Environmental Studies: Exploring Ecosystems Using GIS Technology": 1 + "Environmental Studies: The Role of Drones in Ecosystem Analysis": 1 + "Environmental Studies: Insights into Ecosystems Through Satellite Imagery": 1 + "Environmental Studies: Ecosystem Wonders and Biodiversity Assessments": 1 + "Environmental Studies: Understanding Ecosystems with Remote Sensing Tools": 1 + "Environmental Studies: Ecosystem Analysis Using Carbon Dating Techniques": 1 + "Environmental Studies: The Ecosystem Wonders and Soil Composition Analysis": 1 + "Environmental Studies: The Influence of Climate Change on Ecosystems": 1 + "Environmental Studies: The Ecosystem Wonders and Aquatic Life Monitoring": 1 + "Environmental Studies: Ecosystem Dynamics and Species Distribution Modelling": 1 + "Basic Biology: Exploring Plant Life through Microscopy": 1 + "Basic Biology: A Deep Dive into Plant Life using DNA Sequencing": 1 + "Basic Biology: Unveiling Plant Life using Spectroscopy": 1 + "Basic Biology: Exploring Plant Life through Photosynthesis": 1 + "Basic Biology: Decoding Plant Life with Genomics": 1 + "Basic Biology: Examining Plant Life through Cellular Respiration": 1 + "Basic Biology: Investigating Plant Life using Chromatography ": 1 + "Basic Biology: Unraveling Plant Life with Bioinformatics": 1 + "Basic Biology: Analysing Plant Life through Pollination ": 1 + "Basic Biology: Understanding Plant Life using GMO Technology": 1 + "Biology: Exploring Life through Microscopic Lenses using Fluorescence Technology": 1 + "Biology: The Use of Microscopy in Genetic Studies": 1 + "Biology: Exploring Life with Electron Microscopes": 1 + "Biology: The Role of Optical Microscopes in Cell Analysis": 1 + "Biology: Understanding Life through Microscopic Lenses using DNA Sequencing": 1 + "Biology: The Impact of Confocal Microscopy on Biological Studies": 1 + "Biology: Delving into Life with Scanning Electron Microscopy": 1 + "Biology: Exploring Life through the Lens of a Transmission Electron Microscope": 1 + "Biology: The Use of Cryo-Electron Microscopy in Studying Life": 1 + "Biology: Exploring Cellular Life through Microscopic Lenses using Nanotechnology": 1 + "Music: The Sound of Sustainable Living Through Solar-Powered Instruments": 1 + "Harmonizing with Nature: Music and Sustainable Living with Recycled Instruments": 1 + "The Rhythm of Sustainability: Exploring the Use of Water-Powered Percussion": 1 + "The Symphony of Sustainability: Using Wind Energy in Music Production": 1 + "Living in Tune with Nature: Sustainable Living Through Biofuel-Powered Sound Systems": 1 + "Eco-Friendly Frequencies: Sustainable Living Through Energy-Efficient Recording Studios": 1 + "Harmonizing with Hydro: The Impact of Water Turbines on Music Production": 1 + "The Sound of Solar: Sustainable Living through Solar-Powered Synthesizers": 1 + "Music Production in a Circular Economy: Using Recycled Materials for Instruments": 1 + "Sound Waves and Wind Waves: Harnessing Wind Power for Eco-Friendly Music Production": 1 + "The Green Beat: Exploring the Use of Biogas in Music Festivals.": 1 + "Physics: Analyzing Sound in Acoustics Through Fourier Transforms Using MATLAB": 1 + "Physics: Utilizing the Oscilloscope in the Study of Sound in Acoustics Through Fourier Transforms": 1 + "Physics: An Intricate Analysis of Sound in Acoustics Through Fourier Transforms and the Principle of Superposition": 1 + "Physics: Harnessing Sound in Acoustics Through Fourier Transforms Using Python": 1 + "Physics: Using Waveform Generators in the Analysis of Sound in Acoustics Through Fourier Transforms": 1 + "Physics: Understanding Sound in Acoustics Through Fourier Transforms and the Doppler Effect": 1 + "Physics: Exploring Sound in Acoustics Through Fourier Transforms Using Spectrum Analyzers": 1 + "Physics: Delving Into Sound in Acoustics Through Fourier Transforms and the Concept of Resonance": 1 + "Physics: The Application of LabVIEW in Analyzing Sound in Acoustics Through Fourier Transforms": 1 + "Physics: Sound in Acoustics Through Fourier Transforms - A Study Using Signal Processing Toolbox.": 1 + "Sound Physics: Exploring Echo and Reverberation using Acoustic Impedance Meters and Doppler Effect ": 1 + "Advanced Sound Physics: A Deep Dive into Echo and Reverberation using Acoustic Impedance Meters and Fourier Transform ": 1 + "Practical Sound Physics: Echo and Reverberation Measurement with Acoustic Impedance Meters and Sound Intensity Probes ": 1 + "Comprehensive Sound Physics: Analyzing Echo and Reverberation with Acoustic Impedance Meters and Phased Array Systems ": 1 + "Detailed Sound Physics: A Study on Echo and Reverberation using Acoustic Impedance Meters and Waveform Generators ": 1 + "Sound Physics in Depth: Exploring Echo and Reverberation through Acoustic Impedance Meters and Oscilloscopes ": 1 + "Sound Physics Exploration: Using Acoustic Impedance Meters and Resonance Frequency for Echo and Reverberation Studies ": 1 + "In-depth Sound Physics: Unveiling Echo and Reverberation with Acoustic Impedance Meters and Decibel Meters ": 1 + "Advanced Course in Sound Physics: Echo, Reverberation and Acoustic Impedance Meters with the use of Spectrograms ": 1 + "Sound Physics: Echo and Reverberation Analysis using Acoustic Impedance Meters and Sound Level Meters": 1 + "Science Basics: Understanding Nutrition and Digestion using Microscopic Analysis": 1 + "Advanced Nutritional Science: Digestive Enzyme Mechanisms Explored": 1 + "Science in Depth: Analyzing Nutrients with Chromatography": 1 + "Nutritional Genomics: A Deep Dive into Digestion": 1 + "Science Basics: Understanding Nutrition and Digestion with DNA Sequencing": 1 + "Nutritional Biochemistry: An In-depth Look at Digestion with Spectroscopy": 1 + "Advanced Nutritional Science: The Role of MRI in Studying Digestion": 1 + "Nutritional Science: Exploring Digestion using Bioinformatics": 1 + "Science Basics: Understanding Nutrition and Digestion through Metabolomics": 1 + "Nutritional Science: The Power of Probiotics in Digestion.": 1 + "Economics: The Financial Impact of Sports Industry Through Data Analytics": 1 + "Evaluating Economic Impact of Sports Industry Using GDP Analysis": 1 + "Economic Perspectives: The Impact of Sports Industry on Employment Rates": 1 + "Economics and Sports: Exploring the Financial Impact through Econometrics": 1 + "The Financial Impact of Sports Industry: A Quantitative Analysis Approach": 1 + "Sports Economics: Using Revenue Management for Financial Assessment": 1 + "Economic Forecasting: Predicting the Financial Impact of Sports Industry": 1 + "Sports Industry and Economics: A Case Study on Profit Maximization": 1 + "Economics: The Financial Impact of Sports Industry Through Supply and Demand Analysis": 1 + "The use of Financial Modelling in Evaluating the Economic Impact of Sports Industry.": 1 + "Music: Exploring Revenue Streams in the Music Business Through Spotify Analytics": 1 + "Music: Utilizing SoundCloud Monetization for Revenue Generation in the Music Business": 1 + "Music: Leveraging YouTube Ad Revenue in the Music Business": 1 + "Music: Understanding Revenue Streams in the Music Business with iTunes Store": 1 + "Music: Exploring Revenue Streams in the Music Business via Music Licensing": 1 + "Music: Generating Revenue in the Music Business with Patreon Crowdfunding": 1 + "Music: Utilizing Bandcamp for Revenue Generation in the Music Business": 1 + "Music: Exploring Revenue Streams in the Music Business Through Concert Ticket Sales": 1 + "Music: Revenue Generation in the Music Business Using Merchandise Sales": 1 + "Music: Maximizing Revenue in the Music Business Through Music Publishing Rights": 1 + "Music: Leveraging the Power of Social Media for Revenue Generation in the Music Business": 1 + "Economics 101: Exploring the Graphical Representation of Supply and Demand": 1 + "Economics 101: Understanding Supply and Demand through the Lens of Elasticity": 1 + "Economics 101: The Role of Technology in Shaping Supply and Demand": 1 + "Economics 101: The Impact of Computer Modeling on Supply and Demand Analysis": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand": 1 + "Economics 101: The Blockchain Technology and its Impact on Supply and Demand": 1 + "Economics 101: The Influence of Social Media Trends on Supply and Demand": 1 + "Economics 101: The Role of Artificial Intelligence in Predicting Supply and Demand": 1 + "Economics 101: Understanding Supply and Demand through the Price Ceiling Concept": 1 + "Economics 101: The Impact of Big Data Analytics on Supply and Demand Predictions": 1 + "Biological Data Analysis Using Python and Pandas Library": 1 + "Biological Data Analysis Using Python with Jupyter Notebooks": 1 + "Biological Data Analysis Using Python and Scikit-learn Toolkit": 1 + "Biological Data Analysis Using Python: An Introduction to NumPy": 1 + "Biological Data Analysis Using Python and Matplotlib for Visualization": 1 + "Using Python and BioPython for Biological Data Analysis": 1 + "Biological Data Analysis: Implementing Machine Learning Algorithms with Python": 1 + "Biological Data Analysis Using Python and Seaborn for Statistical Data Visualization": 1 + "Biological Data Analysis Using Python and SciPy for Scientific Computations": 1 + "Using Python and Plotly for Interactive Biological Data Analysis": 1 + "Economics: Understanding Market Structures and Consumer Behavior Through Game Theory": 1 + "The Role of Econometrics in Analyzing Market Structures and Consumer Behavior": 1 + "Economics: Market Structures, Consumer Behavior, and the Influence of Blockchain Technology": 1 + "Behavioral Economics: Using Big Data to Understand Market Structures and Consumer Behavior": 1 + "Economics: Market Structures, Consumer Behavior, and the Impact of Artificial Intelligence": 1 + "Economics: Applying Supply Chain Optimization to Market Structures and Consumer Behavior": 1 + "Economics: Market Structures and Consumer Behavior in the Age of Machine Learning": 1 + "Economics: The Influence of Cryptocurrency on Market Structures and Consumer Behavior": 1 + "Economics: Demand Forecasting and Its Impact on Market Structures and Consumer Behavior": 1 + "Economics: Market Structures, Consumer Behavior, and the Application of Predictive Analytics.": 1 + "Learning Languages: Communicating through Dance using Sign Language": 1 + "Learning Languages: Enhancing Communication through Dance with Digital Tools": 1 + "Learning Languages: Dance Communication using Virtual Reality": 1 + "Learning Languages: Communicating through Dance with Body Language Analytics": 1 + "Learning Languages: Dance Communication and Interpretation using AI Technology": 1 + "Learning Languages: Exploring Dance Communication with Video Conferencing Tools": 1 + "Learning Languages: Improving Dance Communication using Motion Capture Technology": 1 + "Learning Languages: Dance Communication Mastery with E-Learning Platforms": 1 + "Learning Languages: Dance Communication Enhanced by Augmented Reality": 1 + "Learning Languages: Communicating through Dance using Gesture Recognition Software.": 1 + "Elementary Geography: Navigating World Maps with Compass": 1 + "Elementary Geography: Introduction to World Maps and GIS Technology": 1 + "Elementary Geography: Using GPS in Understanding World Maps": 1 + "Elementary Geography: Introduction to World Maps and Topography": 1 + "Elementary Geography: Understanding World Maps through Satellite Imagery": 1 + "Elementary Geography: Introduction to World Maps and Cartography": 1 + "Elementary Geography: Decoding World Maps with Grid System": 1 + "Elementary Geography: Introduction to World Maps and Longitude/Latitude Concepts": 1 + "Elementary Geography: Orientation in World Maps using North Arrow": 1 + "Elementary Geography: Introduction to World Maps and Map Scales": 1 + "Biology of Hearing: The Evolution of Auditory Systems through Cochlear Implants": 1 + "Genetic Insights into the Evolution of Auditory Systems: A Focus on Biology of Hearing": 1 + "Biology of Hearing: The Evolution of Auditory Systems and the Role of Hearing Aids": 1 + "Exploring Auditory Systems Evolution through the Lens of Biology: The Impact of Tympanometry": 1 + "Biology of Hearing: Evolution of Auditory Systems and the Influence of Otoacoustic Emissions": 1 + "Biology of Hearing: A Study on the Evolution of Auditory Systems with Audiometry": 1 + "Decoding the Evolution of Auditory Systems: Biology of Hearing and Auditory Brainstem Response": 1 + "Biology of Hearing: Tracing the Evolution of Auditory Systems through Vestibular Tests": 1 + "The Evolution of Auditory Systems: A Biological Perspective and the Role of Electrocochleography": 1 + "Biology of Hearing: The Evolution of Auditory Systems and the Application of Otoscopy": 1 + "Biochemistry Uncovered: pH Scale Analysis Using Beckman Coulter pH Meters ": 1 + "Advanced Biochemistry: The Use of Micro pH Electrodes in pH Scale Analysis ": 1 + "Biochemistry Deep Dive: pH Scale Analysis and the Use of Digital pH Meters ": 1 + "Biochemistry Explained: pH Scale Analysis and the Role of Ion Selective Electrodes ": 1 + "Unveiling Biochemistry: pH Scale Analysis with the Use of Glass Electrode pH Meters ": 1 + "Biochemistry in Focus: pH Scale Analysis Using Electronic pH Meters ": 1 + "Biochemistry Breakdown: pH Scale Analysis and the Use of pH Indicator Strips ": 1 + "Biochemistry Uncovered: pH Scale Analysis and the Utilization of pH Probes ": 1 + "Detailed Biochemistry: pH Scale Analysis and the Application of ISFET pH Meters ": 1 + "Biochemistry Unmasked: pH Scale Analysis and the Use of Combination pH Electrodes": 1 + "Mathematics: Utilizing Linear Regression in Market Analysis Statistics": 1 + "Mathematics: Market Analysis Statistics with Excel": 1 + "Mathematics: Implementing Probability Theory in Market Analysis Statistics": 1 + "Mathematics: The Role of Bayesian Statistics in Market Analysis": 1 + "Mathematics: Market Analysis Statistics using R Programming": 1 + "Mathematics: Predictive Modeling in Market Analysis Statistics": 1 + "Mathematics: Time Series Analysis in Market Statistics": 1 + "Mathematics: Market Analysis Statistics with SPSS": 1 + "Mathematics: Hypothesis Testing in Market Analysis Statistics": 1 + "Mathematics: Market Analysis Statistics using SAS software.": 1 + "Physics of Sound: An In-depth Study of Acoustics using Oscilloscopes": 1 + "Exploring Sound: An Introduction to Acoustics and the Role of Audio Spectrum Analyzers": 1 + "Sound Physics Unveiled: The Use of Microphones in Acoustics": 1 + "Insights into Acoustics: Understanding Sound Physics through Computer Simulations": 1 + "Physics of Sound: The Influence of Resonance in Acoustic Design": 1 + "Sound in Space: Acoustics and the Science of Echoes": 1 + "Acoustic Echo Cancellation: A Key Concept in the Physics of Sound": 1 + "The Physics of Sound: An Acoustic Analysis using Fourier Transforms": 1 + "Acoustics and Sound Wave Modelling: A Journey through the Physics of Sound": 1 + "Physics of Sound: A Comprehensive Look at Acoustics and Vibration Analysis.": 1 + "Biochemical Reactions: A Statistical Approach Using R and Python": 1 + "Biochemical Reactions: An Advanced Statistical Approach Using R and Machine Learning Techniques": 1 + "Biochemical Reactions: A Statistical Approach Using R and Metabolomics Data Analysis": 1 + "Biochemical Reactions: A Statistical Approach Using R and Genomic Data Analysis": 1 + "Biochemical Reactions: A Statistical Approach Using R and Protein Structure Analysis": 1 + "Biochemical Reactions: A Statistical Approach Using R and Monte Carlo Simulations": 1 + "Biochemical Reactions: A Statistical Approach Using R and Bayesian Inference": 1 + "Biochemical Reactions: A Statistical Approach Using R and Bioinformatics Tools": 1 + "Biochemical Reactions: A Statistical Approach Using R and Enzyme Kinetics ": 1 + "Biochemical Reactions: A Statistical Approach Using R and Gene Expression Analysis": 1 + "Introduction to Algorithms: Mathematical Modeling and Problem Solving with Python": 1 + "Algorithmic Thinking: Using Java for Math and Problem Solving": 1 + "Advanced Course on Algorithms: Math, Problem Solving and Data Structures": 1 + "Introduction to Algorithms: Problem Solving and Applications in MATLAB": 1 + "Algorithms, Math, and Problem Solving Using C++": 1 + "Problem Solving with Algorithms: Implementing Math Concepts through SQL": 1 + "Algorithmic Math: Problem Solving Techniques using R programming": 1 + "Comprehensive Guide to Algorithms: Applying Math in Problem Solving with Ruby ": 1 + "Introduction to Algorithms: Math & Problem Solving in the Lens of Artificial Intelligence": 1 + "Algorithms in Action: Math Problem Solving Using Swift": 1 + "Physics: Understanding Gravity and Galaxies through Newton's Law of Universal Gravitation": 1 + "Physics: Gravitational Lensing - A Deeper Insight into Gravity and Galaxies": 1 + "Physics: The Role of Spectroscopy in Studying Gravity and Galaxies": 1 + "Physics: Gravity and Galaxies - A Basic Insight with Stellar Parallax": 1 + "Physics: The Science of Astrophotography: Gravity and Galaxies": 1 + "Physics: Gravity and Galaxies - A Study through Doppler Shift": 1 + "Physics: Hubble Space Telescope - A Window into Gravity and Galaxies": 1 + "Physics: Gravity and Galaxies - Exploring Cosmic Microwave Background Radiation": 1 + "Physics: The Impact of Quantum Mechanics on Understanding Gravity and Galaxies": 1 + "Physics: Gravity and Galaxies - A Journey with Space Probes.": 1 + "Science: An In-depth Study of Sound Waves and Frequencies using Oscilloscopes": 1 + "Science: The Basics of Sound Waves, Frequencies, and Fourier Transformations": 1 + "Science: Understanding Sound Waves and Frequencies through Doppler Effect": 1 + "Science: Sound Wave Propagation and Frequency Analysis using Spectrometers": 1 + "Science: Exploring Sound Waves and Frequencies with Waveform Generators": 1 + "Science: Basics of Sound Waves and Frequencies - A Study using Resonance Chambers": 1 + "Science: Sound Waves and Frequencies: An Introduction to Digital Signal Processing": 1 + "Science: Mastering Sound Waves and Frequencies through Acoustic Measurements": 1 + "Science: The Interplay of Sound Waves and Frequencies - A Deep Dive into Acoustics": 1 + "Science: Decoding Sound Waves and Frequencies with the Help of Sonar Technology": 1 + "Language Arts: Exploring Metaphors in Poetry of the Palate": 1 + "Language Arts: Utilizing Imagery in Poetry of the Palate": 1 + "Language Arts: The Influence of Rhyme Scheme in Poetry of the Palate": 1 + "Language Arts: Understanding Alliteration in Poetry of the Palate": 1 + "Language Arts: Poetry of the Palate through the Lens of Literary Devices": 1 + "Language Arts: Expanding Vocabulary in Poetry of the Palate": 1 + "Language Arts: Identifying Themes in Poetry of the Palate": 1 + "Language Arts: The Role of Tone and Mood in Poetry of the Palate": 1 + "Language Arts: Analyzing Symbolism in Poetry of the Palate": 1 + "Language Arts: The Art of Sonnet Writing in Poetry of the Palate": 1 + "Social Studies: Utilizing SPSS for Data Analysis to Enhance Cultural Diversity in Event Management": 1 + "Data-Driven Improvement of Cultural Diversity in Event Management: A Study using Microsoft Power BI": 1 + "Applying Tableau for Data Analysis to Optimize Cultural Diversity in Event Management": 1 + "Social Studies: Leveraging R Programming to Boost Cultural Diversity in Event Management": 1 + "Cultural Diversity in Event Management: An Analytical Approach Using Python": 1 + "Enhancing Cultural Diversity in Event Management: A Data Analysis Approach with Excel": 1 + "Cultural Diversity Optimization in Event Management: An Exploratory Analysis with MATLAB": 1 + "Promoting Cultural Diversity in Event Management: Data Analysis with SAS Software": 1 + "Advanced Data Analysis with SQL for Cultural Diversity Improvement in Event Management": 1 + "Social Studies: Harnessing the Power of Big Data and Hadoop to Drive Cultural Diversity in Event Management": 1 + "Physical Education: Mastering Dribbling in Basketball": 1 + "Physical Education: Understanding Basketball Shooting Techniques": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing": 1 + "Physical Education: Exploring Defense Strategies in Basketball": 1 + "Physical Education: The Role of Strength Training in Basketball": 1 + "Physical Education: The Science of Jumping in Basketball": 1 + "Physical Education: Basketball Tactics: The Importance of Positioning": 1 + "Physical Education: Fundamentals of Basketball: Using Video Analysis for Improvement": 1 + "Physical Education: The Impact of Nutrition on Basketball Performance": 1 + "Physical Education: Basketball and Mental Conditioning: Building a Winning Mindset": 1 + "Physical Education: Using Wearable Technology to Enhance Basketball Performance": 1 + "Elementary Acoustics: A Detailed Study of Oscillations and Waves in Sound": 1 + "Fundamental Acoustics: An Introduction to the Science of Sound through Fourier Analysis": 1 + "Basic Acoustics: A Study into the Science of Sound and Ultrasound Technology": 1 + "Acoustic Engineering: A Basic Introduction to Sound Measurement with Decibel Meters": 1 + "Elementary Acoustics: In-depth Exploration of Sound Propagation and Echo Concept": 1 + "Applied Acoustics: An Introduction to the Science of Sound using Sound Spectrographs": 1 + "Exploring the Science of Sound: A Detailed Introduction to Resonance in Acoustics": 1 + "Acoustics and Audio Technology: A Basic Introduction to Amplifiers and Loudspeakers ": 1 + "Decoding Acoustics: An Introduction to the Science of Sound using Audio Equalization": 1 + "Elementary Acoustics: Understanding Sound Frequencies through Spectrum Analyzers.": 1 + "Intro to Computer Science: Analyzing Athletic Performance with Python Programming and Machine Learning": 1 + "Leveraging Data Science in Athletics: An Introduction to Python and TensorFlow for Performance Analysis": 1 + "Python Programming & NumPy for Sports Analytics: A Deep Dive into Athletic Performance ": 1 + "Athletic Performance Analysis: Applying Python and Pandas in Sports Data Science": 1 + "Python and Matplotlib for Athletic Performance Visualization: An Introductory Course": 1 + "Python Programming for Sports: Exploring Athletic Performance with Scikit-Learn ": 1 + "Using Python and Jupyter Notebooks for Athletic Performance Analysis: An Introductory Course": 1 + "Intro to Computer Science: Sports Performance Analysis using Python and SQL": 1 + "Advanced Python Programming: Analyzing Athletic Performance with the Power of PyTorch": 1 + "Introduction to Computer Science: Utilizing Python and Keras for In-depth Athletic Performance Analysis": 1 + "Music: Maximizing Profits with SoundCloud Monetization and Pro Tools in the Music Business": 1 + "Music: Leveraging SoundCloud Monetization and Audacity for Revenue Generation": 1 + "Music: Utilizing SoundCloud Monetization and DAW Software for Boosting Income in Music Business": 1 + "Music: Enhancing Earnings with SoundCloud Monetization and Spotify Analytics in the Music Industry": 1 + "Music: SoundCloud Monetization and GarageBand: A Comprehensive Guide to Revenue Generation in Music": 1 + "Music: Boosting Revenue with SoundCloud Monetization and Apple Logic Pro in the Music Business": 1 + "Music: Increasing Profits with SoundCloud Monetization and Beat Making Technology in Music Business": 1 + "Music: Using SoundCloud Monetization and Ableton Live for Profitability in the Music Industry": 1 + "Music: SoundCloud Monetization and FL Studio - 10 Strategies for Revenue Generation in the Music Business": 1 + "Music: Mastering SoundCloud Monetization and Digital Marketing Techniques for Successful Revenue Generation in Music.": 1 + "The History of Technology: The Evolution of the Printing Press": 1 + "From the Wheel to Quantum Computing: A Deep Dive into the Internet's History": 1 + "The History of Technology: The Rise and Impact of the Telegraph": 1 + "The Progression of Technology: The Story of the Steam Engine": 1 + "The History of Technology: Understanding the Influence of the Light Bulb": 1 + "From the Wheel to Quantum Computing: The Journey of the Telephone": 1 + "The History of Technology: The Advancement of the Microscope": 1 + "The History of Technology: The Development and Impact of the Television": 1 + "The Revolution of Technology: The Transformation brought by the Refrigerator": 1 + "From the Wheel to Quantum Computing: The Evolution of the Digital Camera.": 1 + "Elementary Science: Understanding Weather Patterns and Climate Change through Satellite Imagery": 1 + "Exploring Weather Patterns and Climate Change: A Deep Dive into Thermodynamics": 1 + "Elementary Science: Weather Patterns and Climate Change - A study with Doppler Radar": 1 + "The Role of Spectrum Analyzers in Studying Weather Patterns and Climate Change": 1 + "Elementary Science: Understanding Climate Change with Carbon Dating Techniques": 1 + "Weather Patterns and Climate Change: Exploring Predictive Models in Elementary Science": 1 + "Elementary Science: Studying Weather Patterns through the Lens of Infrared Technology": 1 + "An Introduction to Climatology: Weather Patterns and Climate Change with GIS Technology": 1 + "Weather Patterns and Climate Change: A Study in Elementary Science Using Hygrometers": 1 + "Elementary Science: Weather Patterns and Climate Change - Insights from Weather Balloons.": 1 + "Exploring Auditory Perception: The Role of Cochlear Implants and FM Systems in Biological Hearing": 1 + "The Influence of Auditory Brainstem Response (ABR) in Understanding Cochlear Implant's Role in Hearing Biology": 1 + "Biology of Hearing: Unveiling the Impact of Electrocochleography on Cochlear Implant Users": 1 + "An In-depth Study of Otoacoustic Emissions and Cochlear Implants in Auditory Perception": 1 + "Cochlear Implants and Speech Recognition: A Biological Hearing Study Incorporating Computerized Tomography (CT)": 1 + "The Impact of Magnetic Resonance Imaging (MRI) on Cochlear Implants in Auditory Perception": 1 + "An Examination of Cochlear Implants and Bone Anchored Hearing Aids in Biological Hearing": 1 + "Biological Hearing: A Deep Dive into Cochlear Implants and the Auditory Steady State Response (ASSR)": 1 + "Understanding Auditory Perception: Cochlear Implants and the Role of the Pure Tone Audiometry Test": 1 + "Cochlear Implants and Tympanometry: A Comprehensive Study of Hearing Biology.": 1 + "Biology: Exploring Cellular Structures with Transmission Electron Microscopy and Cryo-Electron Tomography": 1 + "Advanced Biology: Delving into Viral Structures through Transmission Electron Microscopy and Nanotechnology": 1 + "Biology: Probing Bio-Molecular Interactions with Transmission Electron Microscopy and Atomic Force Microscopy": 1 + "Advanced Biology: Exploring the Intricacies of Cellular Life using Transmission Electron Microscope and Immunogold Labelling": 1 + "Biology: Deciphering Metabolic Pathways with Transmission Electron Microscopy and Metabolomics": 1 + "Advanced Biology: Unraveling the Mysteries of DNA Structure with Transmission Electron Microscopy and X-ray Crystallography": 1 + "Biology: Investigating Neurotransmission using Transmission Electron Microscopy and Two-Photon Microscopy": 1 + "Advanced Biology: Studying Protein Folding using Transmission Electron Microscopy and Fluorescence Spectroscopy": 1 + "Biology: Exploring Viral Infections through Transmission Electron Microscopy and Next-Generation Sequencing": 1 + "Advanced Biology: Delving into Cellular Aging with Transmission Electron Microscopy and Telomere Analysis": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors using Brush Strokes": 1 + "Understanding the Impact of Negative Space in Gouache Techniques: Exploring Shapes, Lines, and Colors with Palette Knives": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors through Layering Method": 1 + "Exploring Negative Space in Gouache Techniques: Shapes, Lines, and Colors with the Aid of Masking Fluid": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors using Wet-on-Wet Techniques": 1 + "Mastering Negative Space in Gouache Techniques: An In-depth Study of Shapes, Lines, and Colors using Dry Brush Technique": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors through the Use of Gradients and Tints": 1 + "Decoding Negative Space in Gouache Techniques: A Comprehensive Study of Shapes, Lines, and Colors using Glazing Techniques": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors with the Application of Texture Effects": 1 + "Discovering the Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors using Sgraffito Techniques.": 1 + "The Telegraph's Impact on English Trade Language in the Industrial Age: A Study of Blast Furnace Terminology": 1 + "Morse Code and English Trade Language in the Industrial Age: Exploring the Role of Blast Furnace Jargon": 1 + "The Steam Engine's Influence on English Trade Language in the Industrial Age: Understanding the Role of Blast Furnace Linguistics": 1 + "The Impact of the Spinning Jenny on English Trade Language in the Industrial Age: Decoding Blast Furnace Communication": 1 + "Railroads and English Trade Language in the Industrial Age: The Role of Blast Furnace in Global Discourse": 1 + "Influence of the Cotton Gin on English Trade Language in the Industrial Age: The Blast Furnace as a Communication Tool": 1 + "Power Loom and the Transformation of English Trade Language in the Industrial Age: Deciphering Blast Furnace Terminology": 1 + "The Role of the Sewing Machine in Shaping English Trade Language in the Industrial Age: The Blast Furnace as a Global Communicator": 1 + "The Typewriter's Role in English Trade Language in the Industrial Age: Blast Furnace's Contribution to International Dialogue": 1 + "The Bessemer Process' effect on English Trade Language in the Industrial Age: Unraveling Blast Furnace's Linguistic Role.": 1 + "Art: The Impact of Chisels on Emerging Art Movements across Centuries": 1 + "Art: The Influence of Lithography on Artistic Movements across the Ages": 1 + "Art: How the Printing Press Revolutionized Art Movements over the Centuries": 1 + "Art: The Role of Drypoint in Shaping Art Movements through Time": 1 + "Art: The Contribution of Mezzotint to Art Movements across History": 1 + "Art: The Power of Burin in Pioneering Art Movements across the Centuries": 1 + "Art: The Transformation of Art Movements by the Etching Needle across Ages": 1 + "Art: The Effect of Aquatint on Evolution of Art Movements over Centuries": 1 + "Art: How the Graver Altered the Course of Art Movements across Time": 1 + "Art: The Evolution of Art Movements: The Impact of Woodcut Tools through History": 1 + "Economics of Music: Understanding the Sound Industry through Spotify Analytics": 1 + "The Impact of Blockchain Technology on the Economics of Music": 1 + "Economics of Music: Exploring Sound Industry through AI and Machine Learning": 1 + "The Role of Digital Distribution in the Economics of Music: Understanding the Sound Industry": 1 + "Streaming Services and the Economics of Music: A Deep Dive into the Sound Industry": 1 + "Economics of Music: Analyzing the Sound Industry with Big Data": 1 + "The Influence of Social Media on the Economics of Music: A Comprehensive Study": 1 + "Economics of Music: Understanding the Sound Industry through the Lens of Copyright Laws": 1 + "IoT and Its Impact on the Economics of Music: Understanding the Sound Industry": 1 + "Virtual Reality and the Transformation of the Economics of Music: A Detailed Analysis.": 1 + "Mastering Dialogue with Character Arcs: A Basic English Introduction to Creative Writing": 1 + "Exploring Conflict in Dialogue: Basic English Introduction to Creative Writing through Dramatica Theory": 1 + "Mastering Dialogue using Scrivener: Basic English Introduction to Creative Writing": 1 + "Emotional Subtext in Dialogue: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue through Point of View: Basic English Introduction to Creative Writing": 1 + "Basic English Introduction to Creative Writing: Dialogue Mastery using Hemingway Editor": 1 + "Mastering Dialogue: Unveiling Characters through Speech in Creative Writing": 1 + "Mastering Dialogue: Basic English Introduction to Creative Writing using Evernote": 1 + "Mastering Dialogue: Expressing Conflict and Resolution in Creative Writing": 1 + "Basic English Introduction to Creative Writing: Mastering Dialogue with the Snowflake Method.": 1 + "Physics: The Role of Photovoltaic Cells in Renewable Energy Sources": 1 + "Physics: Wind Turbines and the Physics of Renewable Energy Sources": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels": 1 + "Physics: Geothermal Energy - An In-depth Look at Heat Pumps": 1 + "Physics: Hydropower - Understanding the Mechanisms of Water Turbines": 1 + "Physics: Bioenergy - The Science Behind Biomass Conversion Technologies": 1 + "Physics: The Contribution of Fuel Cells to Renewable Energy Sources": 1 + "Physics: Energy Storage - Exploring the Physics of Lithium-ion Batteries": 1 + "Physics: Ocean Energy - The Mechanisms of Tidal and Wave Power": 1 + "Physics: The Potential of Hydrogen Energy - Exploring Electrolysis and Fuel Cells.": 1 + "Unraveling the Linguistic Impact of the Singer Sewing Machine on English Trade Language in the Industrial Era": 1 + "Telegraphy and the Sewing Machine: Shaping English Trade Language in the Industrial Age": 1 + "The Role of the Sewing Machine and Cotton Gin in Shaping English Trade Language: The Blast Furnace as a Global Communicator": 1 + "The Steam Engine's Influence on Sewing Machine Development and English Trade Language in the Industrial Age": 1 + "The Influence of the Sewing Machine and the Spinning Jenny on English Trade Language in the Industrial Revolution": 1 + "The Sewing Machine and The Printing Press: Shaping English Trade Language in the Industrial Age": 1 + "Mechanics of the Sewing Machine and the Loom: Impact on English Trade Language in the Industrial Age": 1 + "The Sewing Machine and the Telegraph: Catalysts for Change in English Trade Language during the Industrial Revolution": 1 + "The Sewing Machine and the Power Loom: Reshaping the English Trade Language during the Industrial Age": 1 + "The Sewing Machine and the Flying Shuttle: How They Reshaped English Trade Language in the Industrial Age.": 1 + "Social Studies: The Influence of Irrigation Systems on Agriculture": 1 + "The Role of GPS Technology in Modern Agriculture: A Social Perspective": 1 + "Social Studies: Examining the Societal Impact of Drones in Agriculture": 1 + "Social Studies: Greenhouse Technology's Impact on Society and Agriculture": 1 + "Social Impact of Genetically Modified Crops in Agriculture": 1 + "Social Studies: The Effects of Tractor Technology on Agricultural Society": 1 + "The Social Implications of Hydroponics in Modern Agriculture": 1 + "Social Studies: Impact of AI Technology on the Agricultural Society": 1 + "Social Studies: The Role of Organic Farming in Shaping Societies": 1 + "Societal Impact of Pesticide Use in Modern Agriculture: A Social Study.": 1 + "Mastering Ableton Live: Utilizing Akai Professional APC40 for MIDI Control": 1 + "Exploring Ableton Live: The Use of Pioneer DDJ-800 in MIDI Control": 1 + "Advanced Ableton Live: The Application of Traktor Kontrol S4 in Digital Audio Workstations": 1 + "Navigating Ableton Live: The Role of Novation Launchpad Mini in MIDI Control": 1 + "A Deep Dive into Ableton Live: Utilizing Native Instruments Maschine for MIDI Control ": 1 + "Exploring Ableton Live: The Use of Arturia BeatStep Pro in Digital Audio Workstations": 1 + "Understanding Ableton Live: Harnessing the Power of Korg nanoKONTROL2 in MIDI Control": 1 + "Learning Ableton Live: The Application of Behringer X-Touch in Digital Audio Workstations": 1 + "Mastering Ableton Live: The Use of Roli Seaboard Rise in MIDI Control": 1 + "Navigating Ableton Live: Integration of Ableton Push 2 in Digital Audio Workstations.": 1 + "Computer Science: Mastering Python Coding Language": 1 + "Computer Science: A Deep Dive into JavaScript": 1 + "Computer Science: Understanding the Basics of HTML": 1 + "Computer Science: Exploring the World of C++": 1 + "Computer Science: A Guide to Ruby Coding Language": 1 + "Computer Science: Learning Java and its Applications": 1 + "Computer Science: Discovering the Power of Swift Coding": 1 + "Computer Science: The Essence of PHP in Web Development": 1 + "Computer Science: Demystifying SQL Databases": 1 + "Computer Science: The Comprehensive Guide to C# Programming": 1 + "English: Exploring Storytelling and Narrative through Cinematic Techniques": 1 + "English: The Art of Storytelling: Exploring Narrative with Digital Media": 1 + "English: The Power of Narrative: Storytelling Explored through Podcasting": 1 + "English: Storytelling and Narrative: A Deep Dive into Animation Techniques": 1 + "English: The Role of Virtual Reality in Storytelling and Narrative ": 1 + "English: Exploring Storytelling and Narrative through Interactive Gaming": 1 + "English: Storytelling and Narrative: An Examination of Graphic Novels": 1 + "English: Exploring Storytelling and Narrative through Augmented Reality": 1 + "English: The Impact of Social Media on Storytelling and Narrative": 1 + "English: Storytelling and Narrative: A Study on the Influence of Mobile Apps": 1 + "History: Evolution of Computers and the Impact of Microprocessors": 1 + "The Genesis of Computers: A Study on Binary Code System ": 1 + "History: Evolution of Computers - Emphasizing on Assembly Language": 1 + "Decoding History: The Evolution of Computers and Data Storage Devices": 1 + "History: The Evolution of Computers and the Role of Operating Systems": 1 + "Transistors in the Spotlight: A Course on the Evolution of Computers": 1 + "History: The Evolution of Computers - A Deep Dive into Internet Technology": 1 + "The Silicon Story: Evolution of Computers and Integrated Circuits ": 1 + "History & Computers: The Evolution and Impact of Programming Languages": 1 + "AI's Ancestors: Evolution of Computers with a Focus on Artificial Intelligence Technology": 1 + "History: Evolution of Computers - A Special Focus on Graphical User Interface": 1 + "Mathematics: Exploring the Use of Pythagoras' Theorem in Global Architecture": 1 + "Mathematics: The Role of CAD Software in Geometry in International Architecture ": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry": 1 + "Mathematics: The Application of Pi in Global Architectural Design ": 1 + "Mathematics: The Use of Trigonometry in International Building Designs": 1 + "Mathematics: Protractor Applications in Geometry in World Architecture": 1 + "Mathematics: The Role of Golden Ratio in the Geometry of Global Architecture": 1 + "Mathematics: Geometry in Architecture Around the World: A Focus on 3D Modeling": 1 + "Mathematics: The Impact of Euclidean Geometry on Architecture Worldwide": 1 + "Mathematics: The Role of Geometric Transformations in Global Architectural Designs.": 1 + "Elementary Computing 110: Introduction to Coding with Python": 1 + "Elementary Computing 110: Basics of Java Programming": 1 + "Elementary Computing 110: Introduction to Web Development with HTML": 1 + "Elementary Computing 110: Coding with JavaScript for Beginners": 1 + "Elementary Computing 110: Getting Started with C++ Programming ": 1 + "Elementary Computing 110: Introduction to Data Structures in Coding": 1 + "Elementary Computing 110: Algorithms and Coding in Ruby ": 1 + "Elementary Computing 110: Coding Fundamentals with Swift": 1 + "Elementary Computing 110: Intro to Mobile App Development with Kotlin": 1 + "Elementary Computing 110: Introduction to Coding and Game Development with Unity": 1 + "Unraveling the Impact of Steam Engine Technology on Bessemer Process' Influence on English Trade Language during the Industrial Revolution": 1 + "The Role of Blast Furnaces in the Adoption of Telegraphic Language in English Trade during the Bessemer Era": 1 + "Exploring the Effects of the Bessemer Process on English Trade Language in the Industrial Age: The Specific Role of Conveyor Belts": 1 + "Deciphering the Role of Locomotives in the Bessemer Process' Impact on English Industrial Trade Language": 1 + "The Bessemer Process and the Cotton Gin: How Industrial Tools Shaped English Trade Language": 1 + "The Influence of the Spinning Jenny on the Bessemer Process' Effect on English Trade Language in the Industrial Age": 1 + "Unveiling the Role of Waterwheel Technology in the Bessemer Process' Effect on English Trade Language": 1 + "The Power Loom’s Effect on the Bessemer Process' Impact on English Trade Language During the Industrial Revolution": 1 + "The Interplay of the Steam Hammer and the Bessemer Process in Shaping English Trade Language in the Industrial Age": 1 + "Understanding the Role of the Traction Engine in the Bessemer Process' Influence on the English Trade Language of the Industrial Era": 1 + "Neuroscience of Music: Exploring Cognition through fMRI": 1 + "Neuroscience of Music: EEG Analysis of Sound Perception": 1 + "Neuroscience of Music: PET Scans and the Auditory Cortex": 1 + "Neuroscience of Music: TMS Studies on Musical Comprehension ": 1 + "Neuroscience of Music: Neural Plasticity and Music Therapy ": 1 + "Neuroscience of Music: DTI Investigations of Auditory Pathways": 1 + "Neuroscience of Music: MEG in the Study of Rhythmic Processing": 1 + "Neuroscience of Music: NIRS Insights into Melodic Understanding ": 1 + "Neuroscience of Music: Neurofeedback and Musical Performance": 1 + "Neuroscience of Music: Using Optogenetics to Understand Music Perception.": 1 + "Art: The Evolution of Fresco Painting in Different Cultures": 1 + "Art: The Progression of Photography in Diverse Cultures": 1 + "Art: The Transformation of Sculpture in Various Civilizations": 1 + "Art: The Development of Cinematography in Multiple Cultures": 1 + "Art: The Evolution of Digital Art in Different Cultures": 1 + "Art: The Progression of Pottery Making in Diverse Cultures": 1 + "Art: The Journey of Printmaking in Various Civilizations": 1 + "Art: The Impact of Collage Art in Multiple Cultures": 1 + "Art: The Evolution of Oil Painting in Different Cultures": 1 + "Art: The Revolution of Graffiti Art Across Diverse Cultures": 1 + "Artistic Perspectives: Integrating Adobe Photoshop with AI Technologies in Digital Art": 1 + "Exploring Artistic Boundaries: The Application of DeepArt AI in Modern Digital Art": 1 + "Enhancing Creativity: The Utilization of Neural Style Transfer in Digital Art Mediums": 1 + "Art in the Age of AI: The Role of GANs (Generative Adversarial Networks) in Digital Art": 1 + "Innovation in Art: The Fusion of AI and Prisma Filters in Modern Digital Art": 1 + "Artistic Explorations: The Integration of DeepDream in Modern Digital Art Mediums": 1 + "Digital Art Revolution: The Impact of AI-based Pix2Pix Technology on Artistic Creation": 1 + "Modern Art Transformed: Infusing AI Algorithms with Vector Graphics in Digital Mediums": 1 + "Artistic Evolution: The Intersection of AI and Autodesk SketchBook in Digital Art ": 1 + "Fusion of Art and Technology: The Use of Pix2PixHD in Modern Digital Art Creation": 1 + "Economics: The Role of Budgeting Software in Running a Gym Club": 1 + "Economics: The Use of CRM Systems in Enhancing Financial Management of a Gym Club": 1 + "Economics: Impact of Inventory Management Software on Gym Club Finances": 1 + "Economics: The Influence of Digital Payment Systems on Gym Club Economics": 1 + "Economics: The Integration of POS Systems in Gym Club Financial Management ": 1 + "Economics: The Importance of Accounting Software in Running a Gym Club": 1 + "Economics: Use of Financial Forecasting Tools in Gym Club Management": 1 + "Economics: The Role of Cloud-Based Finance Tools in Gym Club Economics": 1 + "Economics: The Impact of E-commerce Platforms on Gym Club Finances": 1 + "Economics: The Significance of Data Analytics in Gym Club Financial Management": 1 + "Social Studies: The History and Culture of Food through Culinary Tools": 1 + "Exploring the Impact of Fire on The History and Culture of Food: A Social Study": 1 + "Social Studies: The Evolution of Pottery and its Impact on Food Culture and History": 1 + "The History and Culture of Food: A Social Study on Fermentation Techniques": 1 + "Social Studies: The Influence of Agricultural Machinery on Food History and Culture": 1 + "The History and Culture of Food: A Study on the Impact of Refrigeration Technology": 1 + "The Influence of Milling Technology on Food History and Culture: A Social Study": 1 + "Social Studies: The History and Culture of Food through the Lens of Pasteurization": 1 + "The Role of Canning in the History and Culture of Food: A Social Study": 1 + "Social Studies: The Impact of the Oven on the History and Culture of Food.": 1 + "Spelling: Mastering Common English Words Using Flashcards": 1 + "Spelling: Mastering Common English Words through Phonics": 1 + "Spelling: Mastering Common English Words with Anki Software": 1 + "Spelling: Mastering Common English Words Using Mnemonics": 1 + "Spelling: Mastering Common English Words through Word Puzzles": 1 + "Spelling: Mastering Common English Words Using Quizlet": 1 + "Spelling: Mastering Common English Words with Spelling City App": 1 + "Spelling: Mastering Common English Words through Repetitive Writing": 1 + "Spelling: Mastering Common English Words Using the Look-Say-Cover-Write-Check Method": 1 + "Spelling: Mastering Common English Words through Spelling Bees": 1 + "Elementary Geography: The Spoken Map of the World - Exploring with Map Projections using Google Earth": 1 + "Elementary Geography: The Spoken Map of the World - An Adventure with Map Projections & GPS Technology": 1 + "Elementary Geography: The Spoken Map of the World - Exploring Map Projections with ArcGIS": 1 + "Elementary Geography: The Spoken Map of the World - Discovering Map Projections using the Mercator Projection": 1 + "Elementary Geography: The Spoken Map of the World - A Journey through Map Projections with Digital Globe": 1 + "Elementary Geography: The Spoken Map of the World - Understanding Map Projections using the Concept of Scale": 1 + "Elementary Geography: The Spoken Map of the World - Navigating Map Projections with Compass Skills": 1 + "Elementary Geography: The Spoken Map of the World - Exploring Map Projections with the aid of Satellite Imagery": 1 + "Elementary Geography: The Spoken Map of the World - Studying Map Projections using Spatial Analysis": 1 + "Elementary Geography: The Spoken Map of the World - Unfolding Map Projections with Cartographic Design Principles": 1 + "Neuroscience: Exploring Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Diffusion Tensor Imaging": 1 + "Neuroscience: In-depth Analysis of Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Functional Connectivity": 1 + "Neuroscience: Understanding Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Neuroinformatics": 1 + "Neuroscience: Comprehensive Study of Human Brain Functions using MRI Technology, Voxel-based Morphometry, and PET Scanning": 1 + "Neuroscience: Applying MRI Technology, Voxel-based Morphometry, and Electrophysiology in Studying Human Brain Functions": 1 + "Neuroscience: Deciphering Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Deep Learning Algorithms": 1 + "Neuroscience: Investigating Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Cortical Thickness Measurement": 1 + "Neuroscience: Evaluating Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Structural Equation Modeling": 1 + "Neuroscience: Probing Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Resting State fMRI Analysis": 1 + "Neuroscience: Dissecting Human Brain Functions using MRI Technology, Voxel-based Morphometry, and Transcranial Magnetic Stimulation": 1 + "Creative Writing: Crafting Tales with English Slang and the Power of Imagery using Quip and the Hemingway Editor": 1 + "Creative Writing: Developing Narratives with English Slang and Symbolism using Quip and the Concept of Foreshadowing": 1 + "Creative Writing: Building Stories with English Slang and Visual Language using Quip and Scrivener software": 1 + "Creative Writing: Constructing Fables with English Slang and the Power of Imagery using Quip and the Art of Metaphor": 1 + "Creative Writing: Creating Non-linear Narratives with English Slang and Imagery Power using Quip and Twine software": 1 + "Creative Writing: Formulating Fiction with English Slang and the Power of Imagery using Quip and the Power of Dialogue": 1 + "Creative Writing: Designing Drama with English Slang and Imagery Power using Quip and Google Docs Collaboration": 1 + "Creative Writing: Molding Mythology with English Slang and the Power of Imagery using Quip and the MonoMyth Structure": 1 + "Creative Writing: Composing Comedy with English Slang and Imagery Power using Quip and the Rule of Three Concept": 1 + "Creative Writing: Producing Poetry with English Slang and the Power of Imagery using Quip and the Rhythm and Rhyme Scheme.": 1 + "Social Studies: Interpreting World Cultures through Linguistic Analysis Using NLP (Natural Language Processing)": 1 + "Social Studies: Decoding Global Cultures through Linguistic Analysis with Machine Learning": 1 + "Social Studies: Understanding World Cultures Using Semantic Analysis in Linguistics": 1 + "Social Studies: Interpreting World Cultures through Corpus Linguistics and Big Data Tools": 1 + "Social Studies: A Pragmatic Analysis of World Cultures Using Linguistics": 1 + "Social Studies: Exploring World Cultures through Computational Linguistics": 1 + "Social Studies: Interpreting World Cultures through Linguistic Analysis and AI Technology": 1 + "Social Studies: Interpreting World Cultures Using Discourse Analysis in Linguistics": 1 + "Social Studies: Unraveling World Cultures through Linguistic Analysis with Semantic Networks": 1 + "Social Studies: Analyzing World Cultures through Linguistic Anthropology and Text Mining Tools": 1 + "English Explorations: Enhancing Grammar and Syntax with Scrabble and Microsoft Word": 1 + "English Explorations: A Deep Dive into Grammar and Syntax through Scrabble and Google Docs": 1 + "English Explorations: Mastering Grammar and Syntax with Scrabble and Grammarly": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble and Turnitin": 1 + "English Explorations: Grammar and Syntax Mastery through Scrabble and Hemingway Editor": 1 + "English Explorations: Understanding Grammar and Syntax with Scrabble and ProWritingAid": 1 + "English Explorations: Polishing Grammar and Syntax Skills with Scrabble and Ginger Software": 1 + "English Explorations: Grammar, Syntax and Scrabble- A Course with WhiteSmoke": 1 + "English Explorations: Scrabble as a Tool for Grammar and Syntax Improvement with PaperRater": 1 + "English Explorations: An Insight into Grammar and Syntax using Scrabble and LanguageTool": 1 + "Basic Physics: Exploring Newton's Laws of Motion with Gravitational Pull Using Pendulum Experiments": 1 + "Basic Physics: A Deep Dive into Laws of Motion through Gravitational Pull with the Aid of Accelerometers": 1 + "Basic Physics: Unraveling Laws of Motion via Gravitational Pull using Galileo's Inclined Plane": 1 + "Basic Physics: Laws of Motion Analyzed through Gravitational Pull Using Projectile Motion Concepts": 1 + "Basic Physics: Understanding Laws of Motion and Gravitational Pull with the Help of Frictionless Plane Experiments": 1 + "Basic Physics: Laws of Motion Explored through Gravitational Pull with the Application of Force Tables": 1 + "Basic Physics: Interpreting Laws of Motion through the Scope of Gravitational Pull Using Vector Diagram Concepts": 1 + "Basic Physics: Studying Laws of Motion and Gravitational Pull through the Lens of the Atwood Machine": 1 + "Basic Physics: Examining Laws of Motion through the Spectrum of Gravitational Pull with the Use of Free Body Diagrams": 1 + "Basic Physics: A Closer Look at Laws of Motion through Gravitational Pull Utilizing Conservation of Momentum Theories": 1 + "Exploring Fractals in Visual Arts: A Deep Dive into Geometry using AutoCAD": 1 + "The Intersection of Mathematics and Arts: A Study of Tessellations through SolidWorks": 1 + "The Art of Mathematics: Exploring Perspective Drawing with Rhino 3D CAD Technology": 1 + "The Art of Mathematics: Investigating Symmetry in Visual Arts through CATIA CAD Software": 1 + "Geometry in Visual Arts: An Exploration of Golden Ratio using SketchUp": 1 + "The Art of Mathematics: A Detailed Study of Polygonal Shapes using Fusion 360": 1 + "The Role of Mathematics in Visual Arts: A Look at Spirals using TurboCAD": 1 + "The Art of Mathematics: A Journey through 3D Modeling in Visual Arts using Blender": 1 + "Geometry in Visual Arts: The Study of Geometric Transformations through Tinkercad": 1 + "The Art of Mathematics: Understanding Proportions in Visual Arts using Revit CAD Software.": 1 + "The Use of Big Data Analytics in Evaluating the Impact of E-commerce Platforms on Gym Club Finances: A Study of 10 Strategies": 1 + "Harnessing Salesforce CRM to Counteract the Economic Impact of E-commerce Platforms on Gym Club Finances: 10 Solutions": 1 + "Blockchain Technology: Mitigating the Impact of E-commerce Platforms on Gym Club Finances through 10 Innovative Approaches": 1 + "Leveraging AI and Machine Learning to Study the Impact of E-commerce Platforms on Gym Club Finances: 10 Possible Solutions": 1 + "Cloud Computing: An Exploration of its Role in the Economic Impact of E-commerce on Gym Club Finances with 10 Solutions": 1 + "SEO Optimization: A Game Changer for Gym Club Finances Amidst the Rise of E-commerce Platforms, 10 Solution Strategies": 1 + "The Role of Cybersecurity in Protecting Gym Club Finances from the Impact of E-commerce Platforms: 10 Proactive Measures": 1 + "Using Social Media Marketing to Counter the Economic Impact of E-commerce Platforms on Gym Club Finances: 10 Strategic Solutions": 1 + "Digital Advertising: A Tool to Offset the Economic Impact of E-commerce Platforms on Gym Club Finances - 10 Tactics": 1 + "The Internet of Things (IoT): Its Role in the Economic Impact of E-commerce on Gym Club Finances and 10 Possible Solutions": 1 + "Chemistry 180: The Role of Spectrophotometry in Sports Nutrition": 1 + "Chemistry 180: The Impact of Hydration Monitoring in Sports Nutrition": 1 + "Chemistry 180: Protein Synthesis and Sports Nutrition": 1 + "Chemistry 180: The Biochemistry of Amino Acids in Sports Nutrition": 1 + "Chemistry 180: Understanding Glycolysis in Sports Nutrition": 1 + "Chemistry 180: Electrolyte Balance and Sports Nutrition": 1 + "Chemistry 180: Using Mass Spectrometry in Sports Nutrition Analysis": 1 + "Chemistry 180: The Role of Gas Chromatography in Analyzing Sports Nutrition": 1 + "Chemistry 180: The Importance of Antioxidants in Sports Nutrition": 1 + "Chemistry 180: Exploring the Role of Metabolomics in Sports Nutrition": 1 + "Chemistry 180: The Impact of Nutrigenomics on Sports Nutrition": 1 + "Art: The Use of Linear Perspective in Renaissance Paintings": 1 + "Art: The Role of Chiaroscuro in Renaissance Paintings": 1 + "Art: The Influence of Aerial Perspective in Renaissance Artwork": 1 + "Art: The Use of Vanishing Points in Renaissance Paintings": 1 + "Art: The Application of Foreshortening in Renaissance Art": 1 + "Art: The Impact of Proportion in Renaissance Paintings": 1 + "Art: Understanding Sfumato Technique in Renaissance Art": 1 + "Art: The Use of Symmetry in Renaissance Paintings": 1 + "Art: The Role of Contrapposto in Renaissance Art": 1 + "Art: Exploring Atmospheric Perspective in Renaissance Paintings": 1 + "Art: The Use of Anamorphosis in Renaissance Art.": 1 + "Physics of Sound Waves: A Comprehensive Study on Acoustics using Oscilloscopes": 1 + "Oscillatory Nature of Sound Waves: A Deeper Dive into Acoustics with Fourier Transform": 1 + "Physics of Sound Waves: An Introduction to Acoustics and Doppler Effect": 1 + "Acoustic Resonance: A Detailed Examination of Sound Physics using Spectrum Analyzers": 1 + "Harnessing Harmonics: An Exploration of Acoustics and Sound Waves using Signal Generators": 1 + "Physics of Sound Waves: Analyzing Acoustical Phenomena with Waveform Generators": 1 + "Sound Wave Propagation: An In-depth Study of Acoustics using Decibel Meters": 1 + "Physics of Sound Waves: Investigating Acoustics through the Lens of the Speed of Sound": 1 + "Physics of Sound Waves: Understanding Acoustics through Echo and Reverberation": 1 + "Frequency and Pitch: A Detailed Study of Sound Waves and Acoustics using Tuning Forks.": 1 + "Music: A Comprehensive Study of Piano and Its Sound Production Techniques": 1 + "Music: Exploring the Acoustic Properties of Violin through Technology": 1 + "Music: Introduction to Brass Instruments and their Sound Amplification": 1 + "Music: The Science of Sound in Woodwind Instruments": 1 + "Music: Understanding the Sound Mechanics of Guitar Using Resonance": 1 + "Music: Discovering the Harmonic Series in String Instruments": 1 + "Music: The Art of Creating Sound with Percussion Instruments and Mallets": 1 + "Music: The Role of Electronic Technology in Synthesizer Sounds": 1 + "Music: Exploring the Sound Production of Harp Using Waveform Analysis": 1 + "Music: The Physics of Sound in the Human Voice and Microphone Technology.": 1 + "Social Studies: Influence of E-commerce on Global Societies and Cultures": 1 + "Social Studies: The Role of Blockchain in Shaping Societies and Cultures": 1 + "Social Studies: The Impact of Internet Marketing on Different Societies and Cultures": 1 + "Social Studies: The Effect of Artificial Intelligence on Commercial Practices Across Cultures": 1 + "Social Studies: Understanding the Cultural Impact of Mobile Banking Technology": 1 + "Social Studies: The Impact of Cryptocurrency on International Trade and Cultures": 1 + "Social Studies: The Effect of Digital Advertising on Societal Behavior and Cultural Norms": 1 + "Social Studies: Influence of Supply Chain Management on Global Societies and Cultures": 1 + "Social Studies: The Role of Big Data in Commerce and its Societal Implications": 1 + "Social Studies: Exploring the Impact of E-commerce Platforms on Various Societies and Cultures": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms with Python": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms and Machine Learning Techniques": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms in Hadoop Environment": 1 + "Advanced Computational Biology: Genomic Data Analysis using CUDA-based Parallel Algorithms": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms on AWS Cloud": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms and R Programming": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms and Deep Learning Concepts": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms in Spark and Scala": 1 + "Advanced Computational Biology: Genomic Data Analysis using GPU-Accelerated Parallel Algorithms": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms and Big Data Analytics": 1 + "Logic: Decoding Essential Concepts and Logical Fallacies with the Use of Venn Diagrams and Euler Diagrams": 1 + "Logic and Critical Thinking: Dissecting Logical Fallacies through Venn Diagrams and Boolean Algebra": 1 + "Fundamentals of Logic: Unraveling Logical Concepts and Fallacies using Venn Diagrams and Truth Tables": 1 + "Introduction to Logic: Understanding Essential Concepts and Logical Fallacies with Venn Diagrams and Propositional Logic": 1 + "Logic Simplified: Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Decoding Logic: Essential Concepts and Logical Fallacies through Venn Diagrams and Predicate Logic": 1 + "Logic and Reasoning: Exploring Essential Concepts and Fallacies Using Venn Diagrams and the Square of Opposition": 1 + "Unraveling Logic: Essential Concepts and Logical Fallacies through Venn Diagrams and the Law of Non-Contradiction": 1 + "Logic: Unveiling Essential Concepts and Logical Fallacies through Venn Diagrams and De Morgan's Laws": 1 + "Analytical Logic: Essential Concepts and Logical Fallacies Dissected with Venn Diagrams and Modal Logic": 1 + "Mathematics: Geometry in Art through the Lens of Euclidean Concepts": 1 + "Mathematics: Exploring Golden Ratio in Geometry and Art": 1 + "Mathematics: Geometry in Art: An In-depth Study of Tessellations": 1 + "Mathematics: The Role of Fractals in Geometry and Art": 1 + "Mathematics: Geometry in Art - Understanding Perspective Drawing": 1 + "Mathematics: The Art of Geometry: A Study of Fibonacci Sequence": 1 + "Mathematics: Sacred Geometry in Art and its Digital Representation": 1 + "Mathematics: Geometry in Art - The Application of Pythagoras Theorem": 1 + "Mathematics: The Intersection of Geometry and Art: An Analysis of Symmetry": 1 + "Mathematics: Geometry in Art - Exploring the Magic of Protractors.": 1 + "Social Studies: The Impact of Agriculture on the Cultural Diversity of Ancient Civilizations": 1 + "Social Studies: The Role of the Wheel in Shaping Ancient Civilizations and their Cultural Diversity": 1 + "Social Studies: The Influence of Writing Systems on the Cultural Diversity of Ancient Civilizations": 1 + "Social Studies: The Role of Metallurgy in Ancient Civilizations and its Impact on Cultural Diversity": 1 + "Social Studies: The Cultural Diversity of Ancient Civilizations and the Influence of Irrigation Technology": 1 + "Social Studies: The Impact of Pottery on the Cultural Diversity of Ancient Civilizations": 1 + "Social Studies: Exploring the Cultural Diversity of Ancient Civilizations through the Lens of Architectural Innovations": 1 + "Social Studies: The Role of the Plow in Shaping the Cultural Diversity of Ancient Civilizations": 1 + "Social Studies: The Cultural Diversity of Ancient Civilizations and the Influence of Textile Production": 1 + "Social Studies: The Impact of Maritime Technology on the Cultural Diversity of Ancient Civilizations.": 1 + "Elementary Reading: Exploring Metaphors in Children's Literature through Story Mapping": 1 + "The Magic of Metaphors in Children's Literature: A Detailed Study using Text Analysis Software": 1 + "Elementary Reading: Understanding Metaphors in Children's Books with Visualization Tools": 1 + "The Magic of Metaphors in Children's Literature: An In-depth Approach Using Interactive Whiteboards": 1 + "Elementary Reading: The Role of Metaphors in Children's Literature Analyzed Through Digital Storytelling": 1 + "Exploring Metaphors in Children's Literature: A Comprehensive Study using E-Readers": 1 + "The Magic of Metaphors in Children's Literature: Deciphering Meaning through Close Reading Strategies": 1 + "Elementary Reading: Using Digital Annotation Tools to Understand Metaphors in Children's Literature": 1 + "The Magic of Metaphors in Children's Literature: A Detailed Investigation using Concordance Software": 1 + "Elementary Reading: Decoding Metaphors in Children's Books using Interactive eBooks.": 1 + "Mathematics: Understanding Geometry and Trigonometry through Pythagorean Theorem": 1 + "Mathematics: Exploring Geometry and Trigonometry with the use of Graphing Calculators": 1 + "Mathematics: Geometry and the Power of Trigonometry: A Deep Dive into Sine, Cosine, and Tangent": 1 + "Mathematics: Geometry and Trigonometry - Unravelling the Mysteries of Circles and Triangles": 1 + "Mathematics: Geometry and the Power of Trigonometry: An Exploration of Euclidean Spaces": 1 + "Mathematics: Geometry, Trigonometry and the Role of Geometric Proof": 1 + "Mathematics: Geometry and Trigonometry - Decoding Shapes with the Help of Mathematical Software": 1 + "Mathematics: Geometry and the Power of Trigonometry: An Insight into the Law of Sines and Cosines": 1 + "Mathematics: Geometry and Trigonometry - Understanding Space and Shapes using AutoCAD": 1 + "Mathematics: Geometry and the Power of Trigonometry - Mastering Angles with Protractors.": 1 + "Economic Theory and Practice: Insights from Game Theory through the Lens of Nash Equilibrium": 1 + "Advanced Econometrics: Game Theory and its Applications in Economic Forecasting": 1 + "Applied Mathematics in Economics: Game Theory and the Role of the Shapley Value": 1 + "Technological Advances and Economic Theory: Game Theory in Algorithmic Trading": 1 + "Blockchain Economics: A Game Theory Perspective on Cryptocurrency Markets": 1 + "Economic Theory and Practice: Game Theory Insights and the Impact of Artificial Intelligence": 1 + "Big Data Analytics in Economics: A Game Theory Approach": 1 + "The Economics of Cybersecurity: Understanding Threats through Game Theory": 1 + "Behavioral Economics: Exploring Game Theory through Prospect Theory": 1 + "Economic Theory and Practice: Game Theory Insights and Evolutionary Game Theory.": 1 + "Music: The Evolution of Classical Music through the Harpsichord": 1 + "Music: The Impact of Sheet Music on the Development of Classical Music": 1 + "Music: The Role of the Violin in Shaping Classical Music": 1 + "Music: The Influence of the Piano on Classical Music": 1 + "Music: Opera Glasses and their Role in Classical Music": 1 + "Music: The Contribution of the Metronome to Classical Music Era": 1 + "Music: The Symphony Orchestra's Transformation of Classical Music": 1 + "Music: Exploring the Classical Period through Chamber Music": 1 + "Music: The Classical Music Revolution through the Lens of the Fortepiano": 1 + "Music: The Effect of the Conducting Baton on Classical Music Development.": 1 + "Language Arts: Diving into Economic Discourse: Utilizing Regression Analysis in Stata Software": 1 + "The Rhetoric of Economic Discourse: A Comprehensive Guide to Time Series Analysis Using Stata ": 1 + "Language Arts: Exploring the Rhetoric of Econometrics with Panel Data Analysis in Stata": 1 + "An In-depth Study of Economic Discourse: Applying Cross-sectional Data Analysis through Stata": 1 + "Language Arts: The Rhetoric of Economic Discourse: Unfolding Econometrics through Hypothesis Testing in Stata": 1 + "Decoding Economic Discourse: A Journey into Econometrics using Probability Distribution in Stata": 1 + "The Rhetoric of Economic Discourse: Exploring Econometrics with Predictive Modelling Using Stata Software": 1 + "Language Arts: The Art of Economic Discourse: Understanding Econometrics through Multivariate Analysis in Stata": 1 + "The Rhetoric of Economic Discourse: A Deep Dive into Econometrics with Factor Analysis in Stata": 1 + "Economic Discourse in Language Arts: Exploring Econometrics through Quantitative Data Analysis in Stata Software.": 1 + "Art: Drawing the Human Body with Charcoal": 1 + "Art: Understanding Human Anatomy through Drawing with Graphite": 1 + "Art: Exploring Human Proportions using Digital Drawing Technology": 1 + "Art: Drawing and Understanding Human Musculature with Pastels": 1 + "Art: Mastering Human Anatomy with Pencil and Paper": 1 + "Art: Using Pen and Ink to Draw the Human Body": 1 + "Art: Drawing Human Anatomy with Watercolors": 1 + "Art: Understanding the Human Figure through Anatomy Software": 1 + "Art: Drawing the Human Body using 3D Modeling Technology": 1 + "Art: Exploring Human Anatomy using Mixed Media Techniques": 1 + "Basic Biology: Examining Plant Cells through Electron Microscopy": 1 + "Basic Biology: Cellular Exploration of Plant Life with Confocal Microscopy": 1 + "Basic Biology: Dissecting Plant Life through Microscopy and Chromatography": 1 + "Basic Biology: Exploring Plant Life through Microscopy and DNA Sequencing": 1 + "Basic Biology: Cellular Analysis of Plant Life using Microscopy and Flow Cytometry": 1 + "Basic Biology: Observing Plant Life through Microscopy and Spectrophotometry": 1 + "Basic Biology: Uncovering Plant Life through Microscopy and Cell Fractionation": 1 + "Basic Biology: Studying Plant Life through Microscopy and Gel Electrophoresis": 1 + "Basic Biology: Investigating Plant Life through Microscopy and Polymerase Chain Reaction": 1 + "Basic Biology: Exploring Plant Life through Microscopy and Cryopreservation Techniques": 1 + "Physics: Light and Lasers - A Fundamental Perspective Using Wave-Particle Duality": 1 + "Physics: Light and Lasers - An Exploration of Beam Splitters in Laser Technology": 1 + "Physics: Light and Lasers - Understanding Quantum Mechanics through Photonics": 1 + "Physics: Light and Lasers - A Deep Dive into Optical Resonators": 1 + "Physics: Light and Lasers - A Comprehensive Study on Fiber Optics": 1 + "Physics: Light and Lasers - The Role of Photodetectors in Laser Technology": 1 + "Physics: Light and Lasers - Polarization of Light: A Fundamental Perspective": 1 + "Physics: Light and Lasers - Exploring Laser Diodes in Modern Technology": 1 + "Physics: Light and Lasers - A Detailed Analysis on Interferometry": 1 + "Physics: Light and Lasers - The Impact of Quantum Entanglement in Laser Technology": 1 + "Music: Exploring Sound Aesthetics and Event Performances through MIDI Technology": 1 + "Music: The Art of Sound Aesthetics and Digital Music Production for Event Performances": 1 + "Music: Understanding Sound Aesthetics and Event Performances through Audio Mixing": 1 + "Music: Sound Aesthetics and Event Performances: A Focus on Pro Tools Usage": 1 + "Music: Sound Aesthetics and Event Performances: The Role of Autotune Technology": 1 + "Music: Enhancing Sound Aesthetics and Event Performances with Ableton Live": 1 + "Music: Sound Aesthetics and Event Performances: A Study on Acoustic Design": 1 + "Music: The Impact of Synthesizer Technology on Sound Aesthetics and Event Performances": 1 + "Music: The Use of Loop Pedals in Sound Aesthetics and Event Performances": 1 + "Music: Sound Aesthetics and Event Performances: The Application of Virtual Reality Technology": 1 + "Music: Sound Aesthetics and Event Performances: An Exploration of Electronic Music Sequencers": 1 + "Art and Economy: Evaluating the Economic Impact of Digital Art through Blockchain Technology": 1 + "The Power of Instagram: Exploring its Influence on Art and Economy": 1 + "Artistic Value in the Digital Economy: An Examination of NFTs": 1 + "Art and Economics: The Role of Virtual Reality in Art Appreciation and Valuation": 1 + "The Economic Influence of Social Media on Street Art: A Snapchat Perspective": 1 + "Art and E-commerce: A Study of Etsy's Impact on Art's Economic Value": 1 + "The Economics of Online Art Auctions: An Analysis of eBay's Influence": 1 + "Art, Economy, and Artificial Intelligence: An Investigation into AI's Role in Art Creation and Valuation": 1 + "Art and Cryptocurrency: A Study of Bitcoin's Impact on the Art Market": 1 + "Evaluating Art's Economic Value through Augmented Reality: A Case Study of Instagram Filters": 1 + "Music Appreciation: Understanding Classical Compositions through Mozart's Symphonies": 1 + "Music Appreciation: Analyzing Classical Compositions with Beethoven's Sonatas": 1 + "Music Appreciation: Exploring Classical Compositions: A Focus on Bach's Fugues": 1 + "Music Appreciation: Understanding Classical Compositions through the Lens of the Piano": 1 + "Music Appreciation: Decoding Classical Compositions with the Use of String Quartet": 1 + "Music Appreciation: The Art of Classical Compositions: A Study on Handel's Oratorios": 1 + "Music Appreciation: Understanding Classical Compositions: A Detailed Look at Vivaldi's Concertos": 1 + "Music Appreciation: Unveiling Classical Compositions through Chopin's Nocturnes": 1 + "Music Appreciation: Appreciating Classical Compositions through the Use of Orchestra": 1 + "Music Appreciation: Understanding Classical Compositions: Delving into Schubert's Lieder": 1 + "Biology: Exploring Cell Structure with Scanning Electron Microscopy and Cryofixation": 1 + "Biology: Unveiling Viral Morphology through Scanning Electron Microscopy and Negative Staining": 1 + "Biology: Understanding Tissue Architecture with Scanning Electron Microscopy and X-ray Microanalysis": 1 + "Biology: Investigating Nanoparticles in Life Sciences using Scanning Electron Microscopy and Energy Dispersive Spectroscopy": 1 + "Biology: Revealing Biological Surfaces with Scanning Electron Microscopy and Backscattered Electron Imaging": 1 + "Biology: Decoding Bacterial Interaction with Scanning Electron Microscopy and Focused Ion Beam Milling": 1 + "Biology: Studying Cellular Topography with Scanning Electron Microscopy and Atomic Force Microscopy": 1 + "Biology: Analysing Material-Biological Interactions using Scanning Electron Microscopy and Fourier-Transform Infrared Spectroscopy": 1 + "Biology: Probing Nano-Bio Interfaces with Scanning Electron Microscopy and Electron Backscatter Diffraction": 1 + "Biology: Discovering Subcellular Components using Scanning Electron Microscopy and Transmission Electron Microscopy.": 1 + "Social Studies: Exploring Cultural Diversity in Event Management Through Instagram Engagement": 1 + "Social Studies: Utilizing Twitter for Cultural Diversity Awareness in Event Management": 1 + "Social Studies: Harnessing Facebook Live for Cultural Diversity in Event Planning": 1 + "Social Studies: Enhancing Cultural Diversity in Event Management Using LinkedIn Strategies": 1 + "Social Studies: TikTok and Cultural Diversity in Event Management: A Comprehensive Approach": 1 + "Social Studies: Using YouTube as a Tool for Cultural Diversity in Event Management": 1 + "Social Studies: Cultural Diversity in Event Management: A Pinterest Approach": 1 + "Social Studies: Exploring Cultural Diversity in Event Management Through Snapchat Techniques": 1 + "Social Studies: Cultural Diversity in Event Management: An Approach Through Blogging": 1 + "Social Studies: Podcasting for Cultural Diversity Awareness in Event Management.": 1 + "Art: An Introduction to Sculpting Techniques using Clay": 1 + "Art: Exploring Sculpting Techniques with Wire Mesh": 1 + "Art: Implementing Hammer and Chisel in Sculpting Techniques": 1 + "Art: An Insight into Sculpting Techniques with Plaster": 1 + "Art: Embracing Digital Technology in Sculpting Techniques": 1 + "Art: An Introduction to Sculpting Techniques using Bronze Casting": 1 + "Art: Understanding Sculpting Techniques with 3D Printing": 1 + "Art: A Deep Dive into Sculpting Techniques using Stone Carving": 1 + "Art: Sculpting Techniques: The art of Wood Carving": 1 + "Art: An Introductory Course on Sculpting Techniques with Ceramic Materials": 1 + "Data-Driven Athletic Assessment: Utilizing Tableau, Python and Machine Learning for Basketball Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Using Tableau, Python and SQL for Soccer Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Harnessing Tableau, Python and Tensorflow for Golf Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Integrating Tableau, Python and Big Data for Baseball Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Applying Tableau, Python and Keras for Tennis Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Utilizing Tableau, Python and Cloud Computing for Swim Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Leveraging Tableau, Python and Neural Networks for Football Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Employing Tableau, Python and Pandas for Rugby Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Exploiting Tableau, Python and Data Mining for Gymnastics Performance Analysis ": 1 + "Data-Driven Athletic Assessment: Implementing Tableau, Python and Numpy for Track Performance Analysis": 1 + "The Influence of Radio Broadcasted Music on Troop Morale During WWII": 1 + "Swing Music: Its Role in Boosting Soldier Morale in WWII": 1 + "Role of Vinyl Records in Disseminating Motivational Music During WWII": 1 + "The Impact of Jazz Music on Morale Boosting During WWII": 1 + "The Propagandistic Power of Music: The Role of Gramophones During WWII": 1 + "The Role of Live Music Performances in Morale Boosting During WWII": 1 + "The Role of Patriotic Songs in Boosting Morale During WWII": 1 + "The Impact of Orchestra Music on Allied Forces' Morale During WWII": 1 + "Music and Morale: The Role of the Piano in WWII Army Camps": 1 + "WWII Morale Boosting: The influence of Big Band Music and Record Players.": 1 + "Neuroscience: Understanding Brain Function through fMRI Technology": 1 + "Neuroscience: Basics of Brain Function Explored through EEG": 1 + "Neuroscience: Decoding Brain Function with PET Scans": 1 + "Neuroscience: Basics of Brain Function and the Role of Neurotransmitters": 1 + "Neuroscience: Exploring Brain Function with Electrophysiology": 1 + "Neuroscience: Basics of Brain Function and Neural Plasticity Concept": 1 + "Neuroscience: Unveiling Brain Function through Single-Photon Emission Computed Tomography": 1 + "Neuroscience: Basics of Brain Function and the Impact of Brain Lesions": 1 + "Neuroscience: Brain Function Analysis using Diffusion Tensor Imaging": 1 + "Neuroscience: Basics of Brain Function Explored through Magnetoencephalography": 1 + "Philosophy for Kids: Introduction to Ethical Thinking Using Socratic Dialogue": 1 + "Philosophy for Kids: Exploring Ethical Thinking Through Critical Thinking Puzzles": 1 + "Philosophy for Kids: Introduction to Ethical Thinking with the Kantian Imperative": 1 + "Philosophy for Kids: Examining Ethical Thinking Through Plato’s Allegory of the Cave": 1 + "Philosophy for Kids: Introduction to Ethical Thinking via Utilitarianism Principles": 1 + "Philosophy for Kids: Discovering Ethical Thinking Through Digital Ethics Software": 1 + "Philosophy for Kids: Introduction to Ethical Thinking Through Aristotle's Virtue Ethics": 1 + "Philosophy for Kids: Unpacking Ethical Thinking Using Confucianism Principles": 1 + "Philosophy for Kids: Introduction to Ethical Thinking Utilizing Stoicism Concepts": 1 + "Philosophy for Kids: Investigating Ethical Thinking With Deontological Ethics.": 1 + "Art: Digital Design and Creativity using Adobe Photoshop": 1 + "Art: Expanding Creativity through Digital Design in Illustrator": 1 + "Art: The Intersection of Digital Design and Creativity with InDesign": 1 + "Art: Unleashing Creativity through Digital Design with Sketch-up": 1 + "Art: Digital Design and Creativity Explored through CorelDRAW": 1 + "Art: Boosting Creativity in Digital Design with AutoCAD": 1 + "Art: Digital Design and Creativity Enhancement using GIMP": 1 + "Art: The Artistry of Digital Design and Creativity with Blender": 1 + "Art: Digital Design and Creativity: A Deep Dive into Maya": 1 + "Art: Creativity in Digital Design using Unity 3D": 1 + "Music Appreciation: The Evolution of Genres through Vinyl Records": 1 + "Music Appreciation: The Evolution of Genres and the Impact of the Radio": 1 + "Music Appreciation: The Evolution of Genres in the Digital Age": 1 + "Music Appreciation: The Evolution of Genres - A Study on Auto-Tune": 1 + "Music Appreciation: The Evolution of Genres - The Influence of MIDI Technology": 1 + "Music Appreciation: The Evolution of Genres - A Closer Look at the Gramophone": 1 + "Music Appreciation: The Evolution of Genres - Understanding the Role of the Electric Guitar": 1 + "Music Appreciation: The Evolution of Genres - The Impact of Synthesizers": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - Exploring the Impact of Music Streaming Services": 1 + "Introduction to Neuroscience: An In-depth Analysis of Brain Waves Using PET Scans and EEG Technology ": 1 + "Neuroscience for Beginners: Exploring Brain Waves Through PET Scans and fMRI Imaging": 1 + "A Comprehensive Study of Brain Waves: Utilizing PET Scans and Diffusion Tensor Imaging in Neuroscience": 1 + "Neuroscience for Novices: Detailed Examination of Brain Waves using PET Scans and the Concept of Neuroplasticity": 1 + "Brain Wave Investigation: A Comprehensive Study Using PET Scans, DTI, and the Principles of Synaptic Transmission": 1 + "Neurological Study for Beginners: Decoding Brain Waves with PET Scans and Transcranial Magnetic Stimulation": 1 + "Unraveling the Mysteries of the Mind: A Comprehensive Study on Brain Waves using PET Scans and the Theory of Neural Networks": 1 + "Neuroscience Uncovered: Comprehensive Study on Brain Waves Using PET Scans, MEG Technology, and the Role of Glial Cells": 1 + "Understanding the Brain: A Comprehensive Study on Brain Waves with PET Scans and the Application of Optogenetics": 1 + "An In-depth Approach to Neuroscience: Studying Brain Waves through PET Scans and the Concept of Neurogenetics.": 1 + "Logic and Euler Diagrams: Mastering Deductive Reasoning and Puzzles": 1 + "Propositional Logic: Mastering Deductive Reasoning and Puzzles": 1 + "Logic and Syllogisms: Mastering Deductive Reasoning and Puzzle Solving": 1 + "Truth Tables and Logic: Mastering Deductive Reasoning and Puzzles": 1 + "Mastering Deductive Reasoning and Puzzles Using Digital Logic Gates": 1 + "Logic and Venn Diagrams: Mastering Deductive Reasoning and Puzzle Solutions": 1 + "Mastering Deductive Reasoning and Puzzles: An Introduction to Predicate Logic": 1 + "Mastering Deductive Reasoning and Puzzles: A Study in Modal Logic": 1 + "Logic, Algorithms, and Deductive Reasoning: Solving Puzzles Effectively": 1 + "Mastering Deductive Reasoning and Puzzles with Boolean Logic": 1 + "Mathematics: Exploring Fractions through Kids' Books": 1 + "Mathematics: The Art of Geometry in Children's Literature": 1 + "Algebra Concepts in Kids' Books: An Engaging Approach to Mathematics": 1 + "Mathematics: Understanding Probability and Statistics through Kids' Books": 1 + "Mathematics: Introducing Calculus Concepts in Children's Books": 1 + "The Art of Numbers: Teaching Trigonometry through Kids' Books": 1 + "Mathematics: Using Number Theory in Children's Literature": 1 + "Exploring Linear Equations through Kids' Books: A Unique Math Approach": 1 + "Mathematical Patterns: The Use of Sequences and Series in Kids' Books": 1 + "Mathematics: The Art of Numbers - Exploring Vectors in Children's Books": 1 + "Science: Utilizing Laser Technology in Stage Design Physics": 1 + "Science: The Role of Acoustics in Physics of Stage Design": 1 + "Science: Physics in Stage Design: Understanding Light Reflection and Refraction": 1 + "Science: The Application of Electromagnetism in Stage Design Physics": 1 + "Science: The Influence of Gravity in Physics of Stage Design": 1 + "Science: Physics in Stage Design: The Use of Hydraulics": 1 + "Science: The Application of Thermodynamics in Stage Design Physics": 1 + "Science: Physics in Stage Design: Exploring the Concept of Motion": 1 + "Science: The Use of LED Lights in Stage Design Physics": 1 + "Science: Physics in Stage Design: The Impact of Sound Waves.": 1 + "Biochemistry: Exploring Biological Matter Through Enzymology with Mass Spectrometry": 1 + "Biochemistry: A Deep Dive into Biological Matter Through Enzymology Using Nuclear Magnetic Resonance Spectroscopy": 1 + "Biochemistry: Understanding Biological Matter With Cryo-Electron Microscopy in Enzymology": 1 + "Biochemistry: The Role of Chromatography Techniques in Understanding Biological Matter Through Enzymology": 1 + "Biochemistry: Illuminating Biological Matter Through Enzymology with Fluorescence Microscopy": 1 + "Biochemistry: Unveiling Biological Matter Through Enzymology Using X-ray Crystallography": 1 + "Biochemistry: The Power of Computational Modelling in Understanding Biological Matter Through Enzymology": 1 + "Biochemistry: A Detailed Analysis of Biological Matter Through Enzymology with Atomic Force Microscopy": 1 + "Biochemistry: Understanding Biological Matter Through Enzymology and the Impact of Microfluidic Devices": 1 + "Biochemistry: The Application of Proteomics in Understanding Biological Matter Through Enzymology": 1 + "Environmental Education: Conservation and Climate Change through GIS Technology": 1 + "Environmental Education: Conservation and Climate Change - A focus on Renewable Energy Solutions": 1 + "Environmental Education: Conservation and Climate Change - Understanding Carbon Sequestration": 1 + "Environmental Education: Conservation and Climate Change - Exploring Biofuels": 1 + "Environmental Education: Conservation and Climate Change - The Role of Nuclear Energy": 1 + "Environmental Education: Conservation and Climate Change - Insights into Solar Energy Harnessing": 1 + "Environmental Education: Conservation and Climate Change - Implementing Hydroelectric Power": 1 + "Environmental Education: Conservation and Climate Change - The Power of Wind Energy": 1 + "Environmental Education: Conservation and Climate Change - Using IoT for Monitoring and Control": 1 + "Environmental Education: Conservation and Climate Change - The Impact of Electric Vehicles": 1 + "1Environmental Education: Conservation and Climate Change - The Importance of Energy Efficiency in Buildings.": 1 + "Physical Education: Exploring Man-to-Man Defense Strategies in Basketball Using VR Training": 1 + "Physical Education: Leveraging Biomechanics for Improved Defense in Basketball": 1 + "Physical Education: Utilizing Video Analysis in Learning Zone Defense Strategies in Basketball": 1 + "Physical Education: Exploring Defense Strategies in Basketball Using Motion Sensor Technology": 1 + "Physical Education: Applying Sports Psychology in Defense Strategies of Basketball": 1 + "Physical Education: Quantitative Analysis of Defense Strategies in Basketball using Statistical Tools": 1 + "Physical Education: Exploring Defense Strategies in Basketball: The Role of Strength Conditioning": 1 + "Physical Education: Incorporating Plyometrics in Basketball Defense Strategies": 1 + "Physical Education: Using Sports Wearables to Enhance Defense Techniques in Basketball": 1 + "Physical Education: A study on Defense Strategies in Basketball: The Impact of Nutrition and Hydration.": 1 + "Neuroscience: Exploring the Brain's Function Using fMRI Brain Mapping Techniques": 1 + "Neuroscience: Decoding the Brain's Function with PET Scans in Brain Mapping": 1 + "Neuroscience: Understanding the Brain's Function Using Diffusion Tensor Imaging Techniques": 1 + "Neuroscience: Deciphering the Brain's Function with EEG in Brain Mapping Techniques": 1 + "Neuroscience: Investigation of the Brain's Function Using MEG Brain Mapping Techniques": 1 + "Neuroscience: Analyzing the Brain's Function with Near-Infrared Spectroscopy in Brain Mapping": 1 + "Neuroscience: Understanding the Brain's Function through Transcranial Magnetic Stimulation Techniques": 1 + "Neuroscience: Unveiling the Brain's Function with Optogenetics in Brain Mapping": 1 + "Neuroscience: Interpreting the Brain's Function Using Single-Photon Emission Computed Tomography Techniques": 1 + "Neuroscience: Discovering the Brain's Function with Magnetic Particle Imaging in Brain Mapping Techniques": 1 + "Physics of Phonics: Analyzing Sound Waves and Resonance with Oscilloscopes": 1 + "Sound Wave Exploration: Application of Fourier Transform in Phonics Physics": 1 + "Advanced Phonics Physics: Understanding Resonance with Waveform Monitors": 1 + "Physics of Phonics: Utilizing Vector Oscillography in Sound Wave Analysis": 1 + "Phonics Physics: Spectral Analysis of Sound Waves and Resonance": 1 + "Physics of Phonics: Sound Wave Manipulation using Delay Line Oscillators": 1 + "Acoustic Resonance: Quantum Phonics Physics and the Role of Resonant Cavities": 1 + "Physics of Phonics: Analyzing Sound Waves and Resonance using Doppler Effect": 1 + "Phonics Physics: Sound Wave Propagation and Resonance using Resonance Tubes": 1 + "Physics of Phonics: An In-Depth Look at Sound Waves and Resonance through Microphones.": 1 + "Organic Chemistry: Exploring Molecular Modeling with Spartan Software": 1 + "Organic Chemistry: Insights into Molecular Modeling using ChemDraw": 1 + "Organic Chemistry: Understanding Molecular Modeling with Gaussian 09": 1 + "Organic Chemistry: Mastering Molecular Modeling using Jmol": 1 + "Organic Chemistry: A Deep Dive into Molecular Modeling with Avogadro": 1 + "Organic Chemistry: Unraveling Molecular Modeling through Q-Chem": 1 + "Organic Chemistry: Demystifying Molecular Modeling with GAMESS": 1 + "Organic Chemistry: Exploring Molecular Modeling using PyMOL": 1 + "Organic Chemistry: Advanced Study of Molecular Modeling with MOPAC": 1 + "Organic Chemistry: Comprehensive Guide to Molecular Modeling with WebMO": 1 + "The Role of Sorting Algorithms in Computer Science": 1 + "Exploring the Use of Recursive Algorithms in Computer Science": 1 + "The Impact of Graph Algorithms on Computer Science": 1 + "The Role of Machine Learning Algorithms in Computer Science": 1 + "The Function of Genetic Algorithms in Computer Science": 1 + "The Significance of Search Algorithms in Computer Science": 1 + "The Role of Algorithms in Quantum Computing": 1 + "The Role of Algorithms in Computer Science: Deep Dive into Data Structures": 1 + "The Role of Algorithms in Computer Science: A Focus on Dynamic Programming": 1 + "The Importance of Encryption Algorithms in Computer Science.": 1 + "Neuroscience Foundations: Exploring the Human Brain with MRI Technology": 1 + "Neuroimaging Techniques in Neuroscience Foundations: A Deep Dive into the Human Brain": 1 + "Neuroscience Foundations: Utilizing fMRI in Human Brain Exploration": 1 + "Neuroscience Foundations: Exploring the Human Brain Through EEG": 1 + "PET Scans in Neuroscience: Detailed Studies of the Human Brain": 1 + "Neuroscience Foundations: Exploring the Human Brain Using DTI Technology": 1 + "Neuroscience Foundations: A Journey Through the Human Brain with Neuroplasticity": 1 + "Neuroscience Foundations: Exploring the Human Brain Using Electrophysiology": 1 + "The Role of Synaptic Plasticity in Neuroscience Foundations: Exploring the Human Brain": 1 + "Neuroscience Foundations: Unveiling the Secrets of the Human Brain with Neuropsychology.": 1 + "Philosophy of Mind: Exploring Consciousness Through Neuroimaging Techniques": 1 + "Philosophy of Mind: Decoding Consciousness with Artificial Intelligence": 1 + "Understanding Consciousness: A Deep Dive into Cognitive Neuroscience": 1 + "Philosophy of Mind: Applying Quantum Physics to Consciousness Studies": 1 + "Unraveling Consciousness: The Role of MRI Scans in Philosophy of Mind": 1 + "Philosophy of Mind: Consciousness and its Relationship with Neuropsychology": 1 + "Exploring Consciousness: The Impact of Molecular Biology on Philosophy of Mind": 1 + "Philosophy of Mind: Using EEG Technology for Understanding Consciousness": 1 + "Understanding Consciousness: A Computational Neuroscience Approach in Philosophy of Mind": 1 + "Philosophy of Mind: The Intersection of Consciousness and Neural Network Analysis": 1 + "Exploring the Internet with Wireshark: A Deep Dive into Packet Switching": 1 + "The Art of Packet Switching: A Detailed Study of TCP/IP using Cisco Routers": 1 + "Deconstructing the Internet: An Analysis of Packet Switching and its Implementation through Ethernet": 1 + "Dissecting the Web: Exploring Packet Switching using Network Protocol Analyzer": 1 + "Beyond Browsing: A Comprehensive Study of Packet Switching and OSI Model": 1 + "Navigating the Net: A Deep Dive into Packet Switching with IPv6": 1 + "The Backbone of the Internet: Exploring Packet Switching through the lens of MPLS Technology": 1 + "Unmasking the Internet: Packet Switching and its Practice using UDP": 1 + "Internet Intricacies: A Detailed Overview of Packet Switching with ICMP Protocol": 1 + "The Internet Unveiled: A Deep Dive into Packet Switching using Subnet Masks.": 1 + "Computer Science Foundations: Coding with Scratch, Arduino, and Raspberry Pi for Robotics": 1 + "Advanced Computer Science: Utilizing Scratch and Arduino for Robotics and Python Basics": 1 + "Computer Science Essentials: Coding with Scratch, Arduino for Robotics and Introduction to Machine Learning": 1 + "Foundations of Computer Science: Building Robotics with Scratch, Arduino, and 3D Printing": 1 + "Computer Science Foundations: Coding with Scratch, Arduino for Robotics and IoT Applications": 1 + "Computer Science Basics: Coding with Scratch, Arduino for Robotics and Understanding Cybersecurity": 1 + "In-depth Computer Science: Coding with Scratch, Arduino for Robotics and AI Principles": 1 + "Computer Science Foundations: Using Scratch, Arduino, and Cloud Computing in Robotics": 1 + "Computer Science Principles: Scratch and Arduino Coding for Robotics and Blockchain Technology": 1 + "Exploring Computer Science: Coding Robotics with Scratch, Arduino, and Introduction to Data Science.": 1 + "Environmental Science: The Role of 3D Printing in the Sustainable Production of Sports Equipment using Biodegradable Materials": 1 + "Leveraging Bio-Composites: A Future in Sustainable Sports Equipment Production": 1 + "Environmental Science: Bamboo as a Biodegradable Material in Sustainable Sports Equipment Production": 1 + "Sustainable Sports Equipment Production: The Potential of Mycelium in Creating Biodegradable Materials": 1 + "Biodegradable Polymers in Sports Equipment: A Step Towards Environmental Sustainability": 1 + "Environmental Science: Harnessing the Power of Bioplastics in Sustainable Sports Equipment Production": 1 + "Green Manufacturing: Sustainable Sports Equipment Production using Biodegradable Alloys": 1 + "Environmental Science: Incorporating Nanotechnology in Sports Gear Production using Biodegradable Materials": 1 + "Sustainable Sports Equipment Production: The Application of Injection Moulding Techniques with Biodegradable Materials": 1 + "Environmental Science: The Impact of Genetic Engineering on the Production of Biodegradable Materials for Sports Equipment.": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Pythagorean Theorem": 1 + "Mathematics: Advanced Calculus in Exploring Numbers with Abacus and Geometric Shapes": 1 + "Mathematics: Exploring Numbers with Abacus, Geometric Shapes and Algebraic equations": 1 + "Mathematics: Integrating Trigonometry in Exploring Numbers with Abacus and Geometric Shapes": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes through Graph Theory": 1 + "Mathematics: Exploring Numbers with Abacus, Geometric Shapes and Statistical Analysis": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Matrix Algebra": 1 + "Mathematics: Proving Theorems while Exploring Numbers with Abacus and Geometric Shapes": 1 + "Mathematics: Exploring Numbers with Abacus, Geometric Shapes and the Fibonacci Sequence": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Computer Algorithms": 1 + "Art: Creating Dynamic Sports Portraits with Acrylic Paint and Palette Knife Techniques": 1 + "Art: Exploring the World of Sports Portraiture through Acrylic Painting and Glazing Technique": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - A Focus on Brushwork": 1 + "Art: The World of Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: The World of Sports Portraiture - Mastering Acrylic Painting with Layering Techniques": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Incorporating Underpainting Techniques": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - An Exploration of Tonal Values": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Utilizing the Color Wheel": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - A Deep Dive into Canvas Preparation": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Highlighting the Use of Mediums.": 1 + "Biology Basics: Exploring Cells Life with a Light Microscope": 1 + "Biology Basics: Unraveling Microorganisms with Compound Microscope": 1 + "Biology Basics: Analyzing Plant Tissues with a Stereo Microscope": 1 + "Biology Basics: Delving into Protozoa with a Digital Microscope": 1 + "Biology Basics: Understanding Cell Division with a Phase Contrast Microscope": 1 + "Biology Basics: Studying Bacteria with a Fluorescence Microscope": 1 + "Biology Basics: Exploring DNA Structures with Microscopy": 1 + "Biology Basics: Observing Yeast Cells with a Bright Field Microscope": 1 + "Biology Basics: Investigating Parasites with an Electron Microscope": 1 + "Biology Basics: Examining Viruses with a Transmission Electron Microscope": 1 + "Advanced Python Programming: Mastering Anaconda and the NumPy Library": 1 + "Basic Computer Programming: Introducing Python & Anaconda with Jupyter Notebook Integration": 1 + "Python Programming Essentials: An In-depth Study of Anaconda and Data Visualization with Matplotlib": 1 + "Python Programming with Anaconda: A Practical Approach to Machine Learning Concepts": 1 + "Hands-on Python Programming: Exploring Anaconda and SQLAlchemy": 1 + "Python Programming Mastery: Introduction to Anaconda and Django Framework": 1 + "Advanced Python: Anaconda for Data Analysis with Pandas Library": 1 + "Python and Anaconda for Beginners: An Introduction to Web Scraping Techniques": 1 + "Python Programming Fundamentals: Anaconda and Tensorflow for Deep Learning": 1 + "Python Programming: An Introductory Course on Anaconda and Pygame for Game Development": 1 + "Philosophy: Exploring Aesthetics through the Lens of Kant's Theory ": 1 + "Philosophy: A Deep Dive into Aesthetics Utilizing Heidegger's Concept of Art ": 1 + "Philosophy: Aesthetics and its Connection with Analytic Philosophy": 1 + "Philosophy: Aesthetics Explored through Plato's Theory of Forms": 1 + "Philosophy: Aesthetic Judgment in Kant's Critique of Pure Reason": 1 + "Philosophy: The Role of Aesthetics in Nietzsche's Philosophy of Art": 1 + "Philosophy: Applying Psychoanalytic Theory to Aesthetics": 1 + "Philosophy: Aesthetics and its Relation to Existentialism": 1 + "Philosophy: Unraveling Aesthetics with Postmodern Philosophy": 1 + "Philosophy: Phenomenological Approach to Aesthetics": 1 + "Elementary Astronomy: Exploring the Solar System with Telescopes": 1 + "Elementary Astronomy: Understanding the Solar System through Spectroscopy": 1 + "Elementary Astronomy: Discovering the Solar System using Satellite Imaging": 1 + "Elementary Astronomy: Unfolding the Solar System with Radio Astronomy": 1 + "Elementary Astronomy: Decoding the Solar System through Computer Simulations": 1 + "Elementary Astronomy: Unraveling the Solar System with Astrobiology Concepts": 1 + "Elementary Astronomy: Investigating the Solar System using Space Probes": 1 + "Elementary Astronomy: Unearthing the Solar System through Planetary Geology": 1 + "Elementary Astronomy: Surveying the Solar System with Stellar Parallax": 1 + "Elementary Astronomy: Mapping the Solar System using Celestial Navigation": 1 + "Social Studies: Exploring the Influence of Moog Synthesizers in Afro-Caribbean Music Celebrations": 1 + "Social Studies: The Role of MIDI Technology in Indian Festival Music": 1 + "Social Studies: The Impact of Korg Synthesizers in Traditional European Celebrations": 1 + "Social Studies: The Use of Digital Audio Workstations in Synthesizing Music for Asian Festivals": 1 + "Social Studies: The Role of Yamaha Synthesizers in African Ceremonial Music": 1 + "Social Studies: Understanding the Influence of Ableton Live in Synthesizing Music for Latin American Festivals": 1 + "Social Studies: The Role of Roland Synthesizers in Middle Eastern Music Celebrations": 1 + "Social Studies: The Use of Pro Tools in Synthesizing Music for North American Indigenous Ceremonies": 1 + "Social Studies: The Impact of Novation Synthesizers in Australian Aboriginal Celebrations": 1 + "Social Studies: The Role of Arturia Synths in Music for Pacific Islander Festivals": 1 + "Neuroscience: Exploring Brain Structures Through MRI Technology": 1 + "Neuroscience: Understanding Brain Structures with Electroencephalography": 1 + "Neuroscience: PET Scans and the Study of Brain Structures": 1 + "Neuroscience: Decoding Brain Structures Through Diffusion Tensor Imaging": 1 + "Neuroscience: Comprehending Brain Structures Using Functional MRI": 1 + "Neuroscience: Exploring Brain Structures Through the Lens of Transcranial Magnetic Stimulation": 1 + "Neuroscience: Understanding Brain Structures with Positron Emission Tomography": 1 + "Neuroscience: The Role of Spectroscopy in Studying Brain Structures": 1 + "Neuroscience: Unraveling Brain Structures Through Magnetic Resonance Spectroscopy": 1 + "Neuroscience: Understanding Brain Structures and Implications of Deep Brain Stimulation.": 1 + "Geography and Enigma: Unveiling WWII through Cryptography's Impact on Global Strategy": 1 + "Deciphering the WWII Code: The Role of the Lorenz Cipher in Shaping Global Geography": 1 + "The Impact of the Navajo Code Talkers on WWII Geography and Strategy": 1 + "Geography: Decoding WWII - The Influence of The Bombe Machine on Global Tactics": 1 + "WWII's Global Strategy: The Geographic Implications of the Purple Cipher Machine": 1 + "Geography & Alan Turing: Decoding WWII's Enigma Machine and Its Impact on Strategy": 1 + "WWII Geography: The Influence of the SIGABA Machine on Global Strategic Planning": 1 + "Cryptography's Role in WWII: The Hidden Impact of the M-209 Cipher Machine on Global Geography": 1 + "The Geography of Secrecy: The Role of Bletchley Park in Decoding WWII Strategy": 1 + "Decoding the Geographic Strategy of WWII: The Impact of the Tunny Machine.": 1 + "Music: The Rhythm of Nature - An Exploration of the Piano": 1 + "Music: The Rhythm of Nature - Understanding Rhythm through Drum Machines": 1 + "Music: The Rhythm of Nature - A Study on MIDI Technology": 1 + "Music: The Rhythm of Nature - The Impact of Digital Audio Workstations": 1 + "Music: The Rhythm of Nature - The Role of Synthesizers": 1 + "Music: The Rhythm of Nature - Using Autotune for Vocal Harmonies": 1 + "Music: The Rhythm of Nature - The Art of Sampling": 1 + "Music: The Rhythm of Nature - Exploring Music Theory through Software": 1 + "Music: The Rhythm of Nature - The Influence of Electronic Music Production": 1 + "Music: The Rhythm of Nature - The Science Behind Acoustic Engineering": 1 + "English: Art and Dance Imagery in Literature - An Analysis through the Lens of Metaphor": 1 + "English: Exploring Art and Dance Imagery in Literature with Machine Learning": 1 + "English: The Role of Symbolism in Art and Dance Imagery in Literature": 1 + "English: A Study of Art and Dance Imagery in Literature using Text Mining Techniques": 1 + "English: Art and Dance Imagery in Literature - A Psychoanalytic Approach": 1 + "English: Art and Dance Imagery in Literature - An Exploration via Digital Humanities Tools": 1 + "English: Art and Dance Imagery in Literature - A Critical Examination using Post-Structuralism": 1 + "English: Art and Dance Imagery in Literature - A Comparative Study using Cross-Cultural Literary Analysis": 1 + "English: Art and Dance Imagery in Literature - An Examination through Feminist Literary Criticism": 1 + "English: Art and Dance Imagery in Literature - Understanding through the Prism of Structuralism.": 1 + "Physics Fundamentals: Understanding the Laws of the Universe through Quantum Mechanics": 1 + "Physics Fundamentals: Exploring the Universe's Laws using Newton's Laws of Motion": 1 + "Physics Fundamentals: Deciphering Universal Laws with the Help of Einstein's Theory of Relativity": 1 + "Physics Fundamentals: Grasping the Laws of the Universe through Quantum Field Theory": 1 + "Physics Fundamentals: Unraveling the Universe's Laws with the Use of a Particle Accelerator": 1 + "Physics Fundamentals: Comprehending the Laws of the Universe through Applied Thermodynamics": 1 + "Physics Fundamentals: Understanding the Universe with Electromagnetic Spectrum Analysis": 1 + "Physics Fundamentals: Exploring the Laws of the Universe via Atomic Structure and Quantum Numbers": 1 + "Physics Fundamentals: Investigating the Universe's Laws using Spectroscopy Techniques": 1 + "Physics Fundamentals: Decoding the Laws of the Universe through the Lens of String Theory.": 1 + "Computer Science 160: Python Programming & Network Programming with Socket using Django Framework": 1 + "Computer Science 160: Introduction to Python Scripting & Network Socket Programming with TCP/IP": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io": 1 + "Computer Science 160: Python Programming with Data Visualization & Network Programming using Socket": 1 + "Computer Science 160: Python Programming & Network Socket Programming with HTTP Protocol": 1 + "Computer Science 160: Python Programming with Pandas & Network Programming using Socket": 1 + "Computer Science 160: Python Programming & Network Programming with Socket using Flask Framework": 1 + "Computer Science 160: Python Programming for Machine Learning & Network Programming with Socket": 1 + "Computer Science 160: Python Programming & Network Socket Programming with UDP Protocol": 1 + "Computer Science 160: Python Programming with NumPy & Network Programming using Socket": 1 + "Environmental Studies: The Role of GIS Technology in Evaluating the Impact of Crop Rotation on Nutritional Quality": 1 + "Environmental Studies: The Impact of Crop Rotation on Nutritional Quality - A Drone Technology Approach": 1 + "Environmental Studies: Using Satellite Imagery to Assess the Impact of Crop Rotation on Nutritional Quality": 1 + "Environmental Studies: The Effect of Crop Rotation on Nutritional Quality - A Case Study on Nitrogen Fixation": 1 + "Environmental Studies: The Importance of Soil pH in Crop Rotation and its Impact on Nutritional Quality": 1 + "Environmental Studies: Precision Farming and its Impact on Crop Rotation and Nutritional Quality": 1 + "Environmental Studies: The Impact of Crop Rotation on Nutritional Quality - A Hydroponics Perspective": 1 + "Environmental Studies: Leveraging IoT in Understanding the Impact of Crop Rotation on Nutritional Quality": 1 + "Environmental Studies: The Impact of Crop Rotation on Nutritional Quality - An Analysis using Bioinformatics": 1 + "Environmental Studies: The Effect of Crop Rotation on Nutritional Quality - A Study on the Role of Companion Planting.": 1 + "Mastering Deductive Reasoning and Puzzles Using Digital Logic Gates with Python Programming": 1 + "Implementing Binary Logic Gates for Deductive Reasoning and Puzzles: A Masterclass": 1 + "Mastering Deductive Reasoning and Puzzles with Arduino-Based Digital Logic Gates": 1 + "A Deep Dive into Deductive Reasoning: Mastering Puzzles Using Digital Logic Gates with Raspberry Pi": 1 + "FPGA-Based Deductive Reasoning: Mastering Puzzles Using Digital Logic Gates": 1 + "Mastering Deductive Reasoning and Puzzles: An In-depth Study of Digital Logic Gates with VHDL": 1 + "Advanced Course on Deductive Reasoning and Puzzles: Using Digital Logic Gates with LabVIEW ": 1 + "Mastering Deductive Reasoning and Puzzles: A Hands-on Approach with LogicSim Digital Logic Gates": 1 + "C++ for Deductive Reasoning: Mastering Puzzles Using Digital Logic Gates": 1 + "Mastering Deductive Reasoning and Puzzles: An Expert's Guide to Digital Logic Gates with Xilinx ISE Design Suite.": 1 + "Money Matters: A Comprehensive Guide to Supply and Demand in Economics": 1 + "Money Matters: The Role of Cryptocurrency in Elementary Economics": 1 + "Money Matters: An Elementary Introduction to Macroeconomics and GDP": 1 + "Money Matters: An Introduction to Economics Focusing on Fiscal Policy Tools": 1 + "Money Matters: Understanding Microeconomics with Game Theory": 1 + "Money Matters: Exploring the Impact of Blockchain Technology on Economics": 1 + "Money Matters: A Study of Economic Structures using Econometric Analysis": 1 + "Money Matters: An Elementary Introduction to Economics and The Stock Market": 1 + "Money Matters: The Influence of AI on Economic Forecasting": 1 + "Money Matters: An Insight into Behavioral Economics and Decision Making": 1 + "Money Matters: An Elementary Introduction to Economics with a Focus on Trade Tariffs": 1 + "Mathematics 110: Calculus in Sports Trajectories: Utilizing the Pythagorean Theorem": 1 + "Mathematics 110: The Use of Vectors in Calculus for Sports Trajectories": 1 + "Mathematics 110: The Impact of Friction in Calculus of Sports Trajectories": 1 + "Mathematics 110: Calculus in Sports Trajectories: Understanding Parabolic Motion": 1 + "Mathematics 110: The Role of Gravity in Calculus of Sports Trajectories": 1 + "Mathematics 110: Calculus in Sports Trajectories: Applying the Concept of Velocity": 1 + "Mathematics 110: The Use of Mathematical Modelling in Sports Trajectories Calculus": 1 + "Mathematics 110: Calculus in Sports Trajectories: Exploring Projectile Motion": 1 + "Mathematics 110: Understanding Acceleration in Calculus of Sports Trajectories": 1 + "Mathematics 110: The Role of Differential Equations in Calculus of Sports Trajectories": 1 + "Neuroscience: Exploring the Human Brain and Its Functions through MRI Scanning ": 1 + "Neuroscience: The Human Brain and Its Functions: A Deep Dive into EEG Technology ": 1 + "Neuroscience: The Human Brain and Its Functions Unveiling Through fMRI ": 1 + "Neuroscience: Understanding the Human Brain and Its Functions with PET Scans ": 1 + "Neuroscience: The Human Brain and Its Functions: Insights from Diffusion Tensor Imaging ": 1 + "Neuroscience: The Human Brain and Its Functions Analyzed Through Neurofeedback ": 1 + "Neuroscience: Understanding the Human Brain and Its Functions Using Spectroscopy ": 1 + "Neuroscience: The Human Brain and Its Functions: A Look into Neuropsychological Testing ": 1 + "Neuroscience: Investigating the Human Brain and Its Functions through Transcranial Magnetic Stimulation ": 1 + "Neuroscience: The Human Brain and Its Functions: A Study with Single-Photon Emission Computed Tomography": 1 + "Computer Science: Exploring Programming with Python Using Django Framework": 1 + "Computer Science: Exploring Programming with Python and Machine Learning Concepts": 1 + "Computer Science: Exploring Programming with Python and Data Visualization with Matplotlib": 1 + "Computer Science: Exploring Programming with Python and Web Scraping with BeautifulSoup": 1 + "Computer Science: Exploring Programming with Python and Data Analysis with Pandas": 1 + "Computer Science: Exploring Programming with Python and TensorFlow for Deep Learning": 1 + "Computer Science: Exploring Programming with Python and Game Development with Pygame": 1 + "Computer Science: Exploring Programming with Python and GUI Development with Tkinter": 1 + "Computer Science: Exploring Programming with Python and Network Programming with Socket": 1 + "Computer Science: Exploring Programming with Python and Automation with Selenium": 1 + "Logic and Reasoning: Mastering Venn Diagrams with the Aid of Digital Tools": 1 + "Essential Logic: A Comprehensive Study of Logical Fallacies using Venn Diagrams and Truth Tables": 1 + "Unraveling Logic: Decoding Fallacies with Venn Diagrams and Python Programming": 1 + "Advanced Logic: Exploring Essential Concepts and Logical Fallacies using Venn Diagrams and Probability Theory": 1 + "Logic Undressed: An In-depth Analysis of Logical Fallacies through Venn Diagrams and Computer Science": 1 + "Deciphering Logic: The Use of Venn Diagrams and Machine Learning in Understanding Logical Fallacies": 1 + "Logic in Action: Harnessing the Power of Venn Diagrams and Set Theory to Unravel Logical Fallacies": 1 + "Logical Explorations: Understanding Logical Fallacies using Venn Diagrams and Logic Gates": 1 + "The Logic Behind Fallacies: Expanding Understanding with Venn Diagrams and Propositional Calculus": 1 + "Logic Decoded: Unveiling Logical Fallacies through Venn Diagrams and Algorithmic Thinking.": 1 + "Art and Technology: Creating Digital Masterpieces with Adobe Photoshop": 1 + "Art and Technology: Exploring Vector Art with Adobe Illustrator": 1 + "Art and Technology: Mastering Digital Sculpting with ZBrush": 1 + "Art and Technology: Producing 3D Art with Blender": 1 + "Art and Technology: Digital Painting Techniques using Procreate": 1 + "Art and Technology: Animation Creation with Maya": 1 + "Art and Technology: Designing UI/UX with Sketch ": 1 + "Art and Technology: Developing Augmented Reality Art with Unity": 1 + "Art and Technology: Crafting Pixel Art with Aseprite": 1 + "Art and Technology: Visual Effects with Adobe After Effects.": 1 + "Exploring the Human Brain: A Comprehensive Course on Neuroimaging Techniques Using fMRI": 1 + "Understanding Neuroscience: A Deep Dive into the Human Brain with PET Scans": 1 + "A Detailed Study of Neuroimaging Techniques: Emphasizing on EEG in Neuroscience Foundations": 1 + "Neuroimaging Techniques in Neuroscience Foundations: A Focus on Diffusion Tensor Imaging": 1 + "Using MEG in Neuroimaging Techniques: A Deep Dive into the Human Brain": 1 + "Advanced Neuroanatomy: Exploring the Human Brain with Neuroimaging and CT Techniques": 1 + "The Human Brain Unveiled: A Course on Neuroimaging Techniques with Spectroscopy": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Exploration": 1 + "A Deep Dive into the Human Brain: Neuroimaging Techniques with Functional Near-Infrared Spectroscopy": 1 + "Exploring Brain Functionality: Neuroimaging Techniques in Neuroscience Foundations using Transcranial Magnetic Stimulation": 1 + "Biology: An Exploration of Cell Structures through Microscopy": 1 + "Biology: Introduction to Cell Structures - Understanding DNA Sequencing": 1 + "Biology: The Study of Cell Structures using Fluorescence Microscopy": 1 + "Biology: Cell Structures - An In-depth Study using Electron Microscopy": 1 + "Biology: Introduction to Cell Structures with a Focus on Cellular Respiration": 1 + "Biology: Advanced Study of Cell Structures using Spectrophotometry": 1 + "Biology: Cell Structures - Understanding Mitosis with Microscopy": 1 + "Biology: Introduction to Cell Structures - Exploring Cellular Metabolism ": 1 + "Biology: Detailed Analysis of Cell Structures using Confocal Microscopy": 1 + "Biology: Cell Structures - A Study through the Lens of Genomic Technologies": 1 + "Advanced Approach to Subcellular Biology: Exploring Mitochondria using Scanning Electron Microscopy, Transmission Electron Microscopy, and Fluorescence Microscopy.": 1 + "In-depth Study of Cellular Components: Using Cryo-electron Microscopy to Discover Subcellular Particles.": 1 + "RNA Analysis in Subcellular Biology: Utilizing Scanning and Transmission Electron Microscopy with Northern Blot Technique.": 1 + "Exploring Subcellular Structures: Application of Scanning Electron Microscopy, Transmission Electron Microscopy, and X-Ray Crystallography.": 1 + "Discovery of Subcellular Components: A Focused Look at Ribosomes using SEM, TEM, and Atomic Force Microscopy.": 1 + "Subcellular Biology: Unraveling the Mysteries of Nucleus using Scanning Electron Microscopy, Transmission Electron Microscopy, and Confocal Laser Scanning Microscopy.": 1 + "Decoding Subcellular Biology: Analyzing Golgi Apparatus using SEM, TEM, and Spectrophotometry.": 1 + "Subcellular Components Discovery: Employing Scanning Electron Microscopy, Transmission Electron Microscopy, and Two-Photon Excitation Microscopy for Endoplasmic Reticulum Study.": 1 + "In-depth Investigation of Subcellular Components: Exploring Lysosomes using SEM, TEM, and Chromatography Techniques.": 1 + "Subcellular Components Dissection: A Closer Look at Peroxisomes using Scanning Electron Microscopy, Transmission Electron Microscopy, and Mass Spectrometry.": 1 + "Introduction to Probability: Exploring Random Variables with MATLAB": 1 + "Introduction to Probability: Utilizing Markov Chains in MATLAB": 1 + "Introduction to Probability: The Science of Chance using MATLAB and Monte Carlo Simulations": 1 + "Introduction to Probability: Bayesian Analysis using MATLAB": 1 + "Introduction to Probability: Understanding Poisson Distribution with MATLAB": 1 + "Introduction to Probability: The Science of Chance using MATLAB and Random Number Generators": 1 + "Introduction to Probability: Applying Central Limit Theorem using MATLAB": 1 + "Introduction to Probability: The Science of Chance using MATLAB and Bernoulli Trials": 1 + "Introduction to Probability: Comprehending Binomial Distribution through MATLAB ": 1 + "Introduction to Probability: Stochastic Processes using MATLAB": 1 + "Science: Exploring the Plant Life Cycle Through Microscopy": 1 + "Science: Understanding the Plant Life Cycle Through DNA Sequencing": 1 + "Science: Insights into the Plant Life Cycle With Biotechnology": 1 + "Science: Studying the Plant Life Cycle Through Chromatography Techniques": 1 + "Science: Introduction to Botany: Plant Life Cycle and Photosynthesis": 1 + "Science: Plant Life Cycle Exploration Through Genetic Engineering": 1 + "Science: Diving into the Plant Life Cycle with Cell Division Concepts": 1 + "Science: Analyzing the Plant Life Cycle Through Bioinformatics": 1 + "Science: Plant Life Cycle: A Cellular Respiration Approach": 1 + "Science: The Plant Life Cycle: A Study Through Electron Microscopy": 1 + "Elementary Mathematics: Exploring Patterns with Fibonacci Sequence": 1 + "Elementary Mathematics: Understanding Sequences through the Number Line": 1 + "Elementary Mathematics: Interpreting Patterns using Pascal's Triangle": 1 + "Elementary Mathematics: Utilizing Spreadsheets for Sequence Analysis": 1 + "Elementary Mathematics: Integrating Technology: Patterns and Sequences with Python": 1 + "Elementary Mathematics: Investigating Patterns and Sequences with Graphing Calculators": 1 + "Elementary Mathematics: Exploring Geometric Sequences through Origami": 1 + "Elementary Mathematics: Basic Concepts of Patterns and Sequences with Algebraic Expressions": 1 + "Elementary Mathematics: Analyzing Patterns and Sequences with Mathematical Software": 1 + "Elementary Mathematics: Introduction to Patterns and Sequences with the Use of Grid Diagrams": 1 + "Physical Education: Gymnastics and Body Control using Balance Beams": 1 + "Physical Education: Trampoline Techniques in Gymnastics and Body Control": 1 + "Physical Education: Pommel Horse Mastery in Gymnastics and Body Control": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars": 1 + "Physical Education: Rings Routines in Gymnastics and Body Control": 1 + "Physical Education: Gymnastics and Body Control with Parallel Bars ": 1 + "Physical Education: Vault Techniques in Gymnastics and Body Control": 1 + "Physical Education: Gymnastics and Body Control: Introduction to Floor Exercises": 1 + "Physical Education: Gymnastics and Body Control: Exploring Artistic Gymnastics": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics": 1 + "Organic Chemistry: Exploring Molecules with Computational Chemistry, ChemDraw Software, and The Gaussian 16 Suite": 1 + "Organic Chemistry: Harnessing Molecular Orbital Theory in Computational Chemistry and ChemDraw Software": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw Software and Computational Chemistry Using Python": 1 + "Organic Chemistry: The Role of Quantum Mechanics in Computational Chemistry and ChemDraw": 1 + "Organic Chemistry: Integrating Molecular Dynamics Simulations in Computational Chemistry and ChemDraw Software": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw Software and Computational Chemistry Using LAMMPS": 1 + "Organic Chemistry: Unveiling Spectroscopy in Computational Chemistry and ChemDraw Software": 1 + "Organic Chemistry: Exploring Molecules with Computational Chemistry, ChemDraw Software, and Q-Chem Program": 1 + "Organic Chemistry: NMR Spectroscopy in Computational Chemistry and ChemDraw": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw and Computational Chemistry Using VMD Tools": 1 + "Python Machine Learning: An Introduction to Clustering Algorithms with SciPy and K-Means": 1 + "Python Machine Learning: Diving Deep into Hierarchical Clustering Algorithms with SciPy": 1 + "Python Machine Learning: Understanding Density-Based Clustering Algorithms with SciPy": 1 + "Python Machine Learning: An Exploration of Clustering Algorithms with SciPy Using Gaussian Mixture Models": 1 + "Python Machine Learning: Mastering Clustering Algorithms with SciPy and DBSCAN Technique": 1 + "Python Machine Learning: A Comprehensive Guide to Clustering Algorithms with SciPy and Spectral Clustering": 1 + "Python Machine Learning: Implementing Clustering Algorithms with SciPy using Mean-Shift Technique": 1 + "Python Machine Learning: Advanced Clustering Algorithms with SciPy and Agglomerative Hierarchical Clustering": 1 + "Python Machine Learning: A Practical Approach to Clustering Algorithms with SciPy using Affinity Propagation": 1 + "Python Machine Learning: Exploring Clustering Algorithms with SciPy through Expectation Maximization": 1 + "Computer Science: Utilizing Python in Data Analysis to Study Air Pollution": 1 + "Advanced R Programming for Detailed Data Analysis in Ozone Pollution Studies": 1 + "Computer Science: Leveraging SQL in Data Analysis to Study Water Pollution": 1 + "Application of Machine Learning in Data Analysis for Urban Noise Pollution Study": 1 + "Computer Science: Using Hadoop in Big Data Analysis to Study Soil Pollution": 1 + "Deep Dive into Java for Data Analysis in Radioactive Pollution Studies": 1 + "Computer Science: Implementing TensorFlow for Data Analysis in Light Pollution Studies": 1 + "Harnessing PowerBI for Data Visualization and Analysis in Plastic Pollution Research": 1 + "Computer Science: Using Apache Spark in Data Analysis to Study Thermal Pollution": 1 + "Exploration of MATLAB for Analyzing Data in the Study of Visual Pollution.": 1 + "Science of Cooking: An Introduction to Food Chemistry Using Molecular Gastronomy Techniques": 1 + "Food Science: Exploring Culinary Reactions with Infrared Thermometers": 1 + "The Chemistry of Food: Understanding Maillard Reaction in Cooking": 1 + "Science of Cooking: The Role of Sous Vide Technology in Food Chemistry": 1 + "Food Chemistry: The Science behind Cooking with Pressure Cookers": 1 + "Science of Cooking: An In-depth Study of Enzymatic Browning": 1 + "Baking Science: The Role of Yeast Fermentation in Food Chemistry": 1 + "Food Chemistry: Exploring the Science of Cooking with Induction Cooktops": 1 + "Science of Cooking: The Impact of Vacuum Sealing on Food Chemistry": 1 + "The Chemistry Behind Smoking Food: An Introduction to the Science of Cooking.": 1 + "Art: Embodying Emotion in Sports Portraiture with Oil Paints using Palette Knives": 1 + "Art: Techniques of Capturing Dynamic Emotion in Sports Portraiture with Oil Paints and Linseed Oil": 1 + "Art: The Role of Color Theory in Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Art: Capturing Emotion in Sports Portraiture with Oil Paints and Canvas Stretching Techniques": 1 + "Art: Exploring Brushwork in Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Art: The Impact of Lighting in Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Art: The Use of Glazing Techniques in Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Art: Capturing Emotion in Sports Portraiture with Oil Paints and Easel Setup": 1 + "Art: Capturing Emotion in Sports Portraiture with Oil Paints and the Grid Method": 1 + "Art: Texture Techniques in Capturing Emotion in Sports Portraiture with Oil Paints": 1 + "Neuroscience: Decoding Brain Structures with Positron Emission Tomography and Magnetic Resonance Imaging": 1 + "Neuroscience: Utilizing Positron Emission Tomography and fMRI in Understanding Brain Structures": 1 + "Neuroscience: Understanding Brain Structures with PET and DTI (Diffusion Tensor Imaging)": 1 + "Neuroscience: Exploring Brain Structures with Positron Emission Tomography and EEG (Electroencephalography)": 1 + "Neuroscience: Positron Emission Tomography and Spectroscopy in Brain Structure Analysis": 1 + "Neuroscience: PET Scans and Single-Photon Emission Computed Tomography in Understanding Brain Structures": 1 + "Neuroscience: An In-depth Look at Brain Structures using Positron Emission Tomography and Cerebral Angiography": 1 + "Neuroscience: Unraveling Brain Structures with Positron Emission Tomography and Neuropsychological Tests": 1 + "Neuroscience: Dissecting Brain Structures with Positron Emission Tomography and the BOLD (Blood Oxygen Level Dependent) Signal": 1 + "Neuroscience: Understanding Brain Structures with Positron Emission Tomography and the Concept of Neuroplasticity": 1 + "Art: Mastering Stone Carving Techniques with Chisels and Mallets ": 1 + "Art: The Power of Pneumatic Tools in Stone Carving Sculpting Techniques": 1 + "Art: Exploring Stone Carving Sculpting Techniques using Point Chisels": 1 + "Art: Unveiling Stone Sculpting Secrets with Diamond Tipped Tools": 1 + "Art: The Impact of Rotary Tools on Stone Carving Sculpting Techniques": 1 + "Art: The Role of Rasp in Fine-tuning Stone Carving Sculpting Techniques": 1 + "Art: Harnessing the Power of Carbide Chisel in Stone Carving Sculpting": 1 + "Art: Stone Carving Sculpting Techniques: A Focus on Abrasive Technology": 1 + "Art: Stone Carving Sculpting Techniques using Angle Grinders": 1 + "Art: Leveraging Flat Chisels in Stone Carving Sculpting Techniques": 1 + "Basic Biology: Studying Ferns through Fluorescence Microscopy and Chromatography": 1 + "Basic Biology: Exploring Algae Life with Scanning Electron Microscopy and Chromatography": 1 + "Basic Biology: Dissecting Plant Cells using Confocal Microscopy and Gas Chromatography": 1 + "Basic Biology: Probing Photosynthesis with Atomic Force Microscopy and Liquid Chromatography": 1 + "Basic Biology: Investigating Plant Genetics using DNA Sequencing and Chromatography": 1 + "Basic Biology: Unveiling Plant Pathogens through Transmission Electron Microscopy and Chromatography": 1 + "Basic Biology: Understanding Plant Metabolites using Mass Spectrometry and Chromatography": 1 + "Basic Biology: Decoding Plant Morphology with Stereo Microscopy and Chromatography": 1 + "Basic Biology: Unraveling Plant Physiology using Infrared Spectroscopy and Chromatography": 1 + "Basic Biology: Exploring Plant Tissues with Ultramicrotomy and Chromatography": 1 + "Advanced Photoshop Techniques for Graphic Design": 1 + "Python Programming: Mastering Data Structures": 1 + "Understanding AI: Deep Learning for Beginners": 1 + "Advanced SEO Strategies: Mastering Google Analytics": 1 + "Microsoft Excel: Data Analysis Techniques": 1 + "Social Media Marketing: Leveraging Facebook Ads": 1 + "Web Development: Building Websites with HTML5 and CSS": 1 + "Cybersecurity: Protecting Systems with Firewalls": 1 + "Machine Learning: Predictive Models with Python": 1 + "Mobile App Development: Creating Apps with Swift": 1 + "English Literature: Analyzing Texts with Natural Language Processing Using Python": 1 + "English Literature: Text Analysis with Machine Learning Algorithms in NLP": 1 + "English Literature: Application of TensorFlow in Natural Language Processing Text Analysis": 1 + "English Literature: Exploring Texts with Sentiment Analysis in Natural Language Processing": 1 + "English Literature: Using Deep Learning Models for Text Analysis in NLP": 1 + "English Literature: Leveraging NLTK for Text Analysis in Natural Language Processing": 1 + "English Literature: Analyzing Texts with Natural Language Processing and Neural Networks": 1 + "English Literature: Text Analysis with Natural Language Processing using Spacy": 1 + "English Literature: Implementing Word2Vec for Text Analysis in NLP ": 1 + "English Literature: Text Analysis Through Topic Modeling in Natural Language Processing": 1 + "Mathematics 105: Introduction to Statistics and Probability using SPSS": 1 + "Mathematics 105: Basics of Probability and Statistics with Python": 1 + "Mathematics 105: Introduction to Statistics and Probability with R Programming": 1 + "Mathematics 105: Data Analysis: An Introduction to Statistics and Probability using Excel": 1 + "Mathematics 105: Introduction to Probability and Statistics with MATLAB": 1 + "Mathematics 105: SAS for Statistics and Probability Basics": 1 + "Mathematics 105: Introduction to Probability and Statistics using Tableau": 1 + "Mathematics 105: Understanding Statistics and Probability with Minitab": 1 + "Mathematics 105: Probability and Statistics: An Introduction using JMP": 1 + "Mathematics 105: Introduction to Statistics and Probability with STATA": 1 + "Social Studies: The Role of the Remington No. 1 Typewriter in Workers' Rights Movements during the Industrial Revolution": 1 + "The Impact of Morse Code Communication on Workers' Rights Movements during the Typewriter Era": 1 + "Exploring the Influence of Carbon Paper on Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: The Impact of Typewriter Ribbon Technology on Labor Union Movements during the Industrial Revolution": 1 + "The Interplay of Typewriters and Telegraphs in Shaping Workers' Rights during the Industrial Revolution": 1 + "The Impact of the QWERTY Keyboard Layout on Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: How Typewriter Mechanism Revolutionized Workers' Movements during the Industrial Era": 1 + "The Influence of Typewriter Maintenance Tools on Workers' Rights Movements during the Industrial Revolution": 1 + "The Role of Typewriter Manufacturing Processes in Shaping Workers' Rights Movements during the Industrial Revolution": 1 + "Social Studies: The Impact of Typewriter Patent Laws on Labor Movements during the Industrial Revolution": 1 + "Exploring Bezier Curves in Inkscape: A Comprehensive Course in Computer Science and Digital Art": 1 + "Mastering the Use of Layers in Inkscape: A Deep Dive into Computer Science and Digital Art": 1 + "A Deep Dive into Computer Science with Digital Art: Harnessing the Power of SVG in Inkscape": 1 + "Maximizing the Use of Gradients in Inkscape: A Comprehensive Course in Computer Science and Digital Art": 1 + "A Deep Dive into Computer Science with Digital Art: Inkscape's Path Effects Advanced Course": 1 + "Exploring Clipping and Masking in Inkscape: Computer Science and Digital Art Course": 1 + "Inkscape's Blend Modes Uncovered: A Deep Dive into Computer Science and Digital Art": 1 + "Advanced Course in Computer Science and Digital Art: Maximizing the Use of Filters in Inkscape": 1 + "Mastering Tracing Bitmaps in Inkscape: A Comprehensive Course in Computer Science and Digital Art": 1 + "A Deep Dive into Computer Science with Digital Art: Unleashing the Power of Patterns in Inkscape.": 1 + "Logic 101: Understanding Formal Logic: A Deep Dive into Aristotle’s Syllogism": 1 + "Logic 101: Exploring Formal Logic: A Comprehensive Study of Boolean Algebra": 1 + "Logic 101: Formal Logic Decoded: A Closer Look at Symbolic Logic through Truth Tables": 1 + "Logic 101: The Essence of Formal Logic: An In-Depth Analysis of Propositional Calculus": 1 + "Logic 101: Dissecting Formal Logic: A Detailed Examination of Predicate Logic": 1 + "Logic 101: Formal Logic Unravelled: A Focused Study on Logical Connectives": 1 + "Logic 101: Formal Logic: Decoding Symbolic Logic with Venn Diagrams": 1 + "Logic 101: The Art of Formal Logic: An Intensive Study of Quantifier Logic": 1 + "Logic 101: Formal Logic Demystified: A Comprehensive Analysis of Modal Logic": 1 + "Logic 101: Formal Logic: A Closer Look at Symbolic Logic through Logic Gates": 1 + "Elementary: Learning Basic Geography through Environmental Studies using Google Earth and Interactive Globe Models": 1 + "Elementary: Understanding Plate Tectonics and Basic Geography with Interactive Globe Models and Augmented Reality": 1 + "Elementary: Basic Geography through Environmental Studies: An Introduction to GIS and Interactive Globe Models": 1 + "Elementary: Learning Basic Geography through Environmental Studies using 3D Printing Technology for Globe Models": 1 + "Elementary: Learning Basic Geography with Interactive Globe Models: A Focus on Plate Tectonics and Satellite Imagery": 1 + "Elementary: Environmental Studies through Basic Geography: Using Virtual Reality for Understanding Plate Tectonics": 1 + "Elementary: Basic Geography and Environmental Studies with Interactive Globe Models and Drone Technology": 1 + "Elementary: Learning Plate Tectonics and Basic Geography through Environmental Studies using Interactive Globe Models and Topographic Maps": 1 + "Elementary: Basic Geography through Environmental Studies: Incorporating Interactive Globe Models and Geocaching": 1 + "Elementary: Learning Basic Geography and Plate Tectonics through Environmental Studies using Interactive Globe Models and Digital Elevation Models.": 1 + "Harnessing the Sun: The Portrayal of Photovoltaic Technology in Climate Change Literature": 1 + "Solar Narratives: Exploring the Significance of Solar Panels in Climate Themed Literature": 1 + "Literary Solar Power: An Examination of Sunlight Concentrators in Climate Change Literature": 1 + "Between the Lines: The Role of Solar Thermal Energy in English Literature": 1 + "Sonnets and Solar: The Impact of Solar Cells in Climate Change Themed Literature": 1 + "Shining Light: The Influence of Solar-Powered Electric Systems in English Literature": 1 + "Solar Power in Prose: Exploring Solar Water Heating in Climate Change Literature": 1 + "Illuminating Literature: The Role of Solar Cookers in English Novels": 1 + "Reading by the Sun: The Depiction of Solar Lanterns in Climate Change Literature": 1 + "The Power of the Pen and the Sun: Solar Chargers in Climate-Themed Literature": 1 + "Basic Computer Programming: Understanding Python & Anaconda with Jupyter Notebook Integration and Introduction to NumPy": 1 + "Exploring Python Programming and Anaconda: Integration with Jupyter Notebook and Data Visualization with Matplotlib": 1 + "Comprehensive Python Programming: Anaconda, Jupyter Notebook and Pandas for Data Analysis": 1 + "Python & Anaconda Programming Basics: Jupyter Notebook Integration with Machine Learning Using Scikit-Learn": 1 + "Python Programming Essentials: Anaconda, Jupyter Notebook and Django Web Framework Introduction": 1 + "Mastering Python & Anaconda: Jupyter Notebook Integration and API Development with Flask": 1 + "Python Programming Fundamentals: Anaconda, Jupyter Notebook and Introduction to SQLAlchemy ORM": 1 + "Python & Anaconda Essentials: Jupyter Notebook Integration and Data Scrapping with Beautiful Soup": 1 + "Basic Python Programming: Anaconda, Jupyter Notebook and an Introduction to Tensorflow for Deep Learning": 1 + "Getting Started with Python & Anaconda: Jupyter Notebook Integration and Building GUIs with Tkinter.": 1 + "Social Studies: The Impact of Cartography on the Sociocultural Evolution of the Silk Road": 1 + "Social Studies: Influence of Navigation Technology on the Silk Road's Sociocultural Impact": 1 + "Social Studies: The Role of the Astrolabe in the Sociocultural Dynamics of the Silk Road": 1 + "Social Studies: The Sociocultural Consequences of the Silk Road: A focus on Maritime Technology": 1 + "Social Studies: The Compass and its Sociocultural Impact on the Silk Road": 1 + "Social Studies: The Sociocultural Influence of the Silk Road: A Study on the Impact of the Waterwheel": 1 + "Social Studies: The Plough’s Role on the Sociocultural Impact of the Silk Road": 1 + "Social Studies: The Printing Press and the Sociocultural Changes along the Silk Road": 1 + "Social Studies: The Sociocultural Impact of the Silk Road: The Role of Gunpowder ": 1 + "Social Studies: A Study on the Sociocultural Influence of the Silk Road: Contribution of Paper Money Technology": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and the Oxford English Dictionary": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets using Scrabble, Turnitin, and the Concept of Passive Voice": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and Microsoft Word's Spelling and Grammar Check": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets through Scrabble, Turnitin, and Sentence Diagramming Techniques": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and the Use of Prepositions": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets using Scrabble, Turnitin, and the Hemingway Editor Tool": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and the Usage of Conjunctions": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and the Rules of Punctuation": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets using Scrabble, Turnitin, and the Concept of Active Voice": 1 + "English Explorations: Unveiling Grammar and Syntax Secrets with Scrabble, Turnitin, and Google Docs' Grammar Correction Feature": 1 + "Art: The Impact of Oculus Rift on the Aesthetics of Motion in Basketball": 1 + "Exploring the Influence of Unity 3D on Artistic Interpretation of Movement in Tennis ": 1 + "The Role of Unreal Engine in Redefining Aesthetics of Motion in Football Through Art": 1 + "Art: The Effect of Virtual Reality Gloves on the Perception of Motion in Swimming ": 1 + "The Influence of Microsoft HoloLens on Artistic Conception of Movement in Soccer": 1 + "Art: The HTC Vive's Impact on the Aesthetics of Motion in Gymnastics ": 1 + "Dissecting the Influence of Google Cardboard on Artistic Portrayal of Movement in Baseball": 1 + "The Transformation of Aesthetics in Athletics: A Study on the Role of PlayStation VR ": 1 + "Art & Athletics: How the Samsung Gear VR Shapes Our Perception of Motion in Rugby": 1 + "The Influence of Augmented Reality in the Artistic Interpretation of Motion in Ice Hockey Using Magic Leap.": 1 + "Bioinformatics with Python: Exploring Genomic Data Using Machine Learning and Numpy": 1 + "Biology and Machine Learning: Bioinformatics with Python and Scikit-Learn": 1 + "Python-Based Bioinformatics: Advanced Machine Learning with NumPy and Pandas": 1 + "Bioinformatics and Machine Learning: Python Programming with TensorFlow for Biological Data": 1 + "Biology and Machine Learning: Deep Learning with Keras in Python for Bioinformatics": 1 + "Bioinformatics with Python: Machine Learning and Data Visualization Using Matplotlib": 1 + "Deep Learning in Bioinformatics: Python Programming and TensorFlow Applications": 1 + "Machine Learning for Bioinformatics: Python Programming and Data Analysis with Pandas": 1 + "Advanced Python for Bioinformatics: Machine Learning and Genomic Data Analysis with Scikit-Learn": 1 + "Biology and Machine Learning: Bioinformatics with Python, TensorFlow and Seaborn Visualization.": 1 + "English Literature and Climate Change: Analyzing the Role of Solar Power through Eco-criticism": 1 + "English: Literature, Climate Change and Wind Power - Detailed Study via Eco-criticism ": 1 + "A Thematic Exploration of Climate Change and English Literature: The Impact of Hydroelectric Energy through Eco-criticism": 1 + "English Literature and Climate Change: Eco-critical Analysis of Biomass Energy": 1 + "Climate Change in English Literature: An Eco-critical Look at Geothermal Energy ": 1 + "The Interplay of English Literature and Climate Change: Exploring Tidal Energy through Eco-criticism": 1 + "English Literature and Climate Change: Eco-criticism and the Potential of Nuclear Energy": 1 + "The Role of Hydrogen Energy in Climate Change: An Eco-critical Study in English Literature": 1 + "English Literature and Climate Change: An Eco-critical Perspective on Carbon Capture and Storage": 1 + "English: Literature, Climate Change and the Future of Fusion Energy - An In-depth Eco-critical Analysis.": 1 + "Mathematics: Utilizing Euclidean Geometry in Art Design": 1 + "Mathematics: Applying Fractal Geometry in Art Design with Adobe Illustrator": 1 + "Mathematics: Using Geometric Transformations in Graphic Art Design": 1 + "Mathematics: The Role of Tessellations in Modern Art Design": 1 + "Mathematics: The Impact of Golden Ratio in Art Design": 1 + "Mathematics: Exploring Symmetry in Art Design using AutoCAD": 1 + "Mathematics: The Application of Trigonometry in 3D Art Design": 1 + "Mathematics: Understanding Polygonal Structures in Art Design with Blender": 1 + "Mathematics: The Integration of Topology in Abstract Art Design": 1 + "Mathematics: The Influence of Non-Euclidean Geometry in Digital Art Design.": 1 + "Advanced Computer Science: Using Logic Pro X's ES2 Synthesizer and MIDI Controllers in Music Technology for Crafting Synthesizer Beats": 1 + "Computer Science: Exploiting Logic Pro X's ES2 Synthesizer and Automation Techniques in Music Technology for Creating Synth Beats": 1 + "Computer Science: Utilizing Logic Pro X's ES2 Synthesizer and Sound Design Principles in Music Technology for Synthesizer Beat Composition": 1 + "Computer Science: Harnessing Logic Pro X's ES2 Synthesizer and Sampling Technology in Music Technology for Synthesizer Beat Production": 1 + "Computer Science: Leveraging Logic Pro X's ES2 Synthesizer and FFT Algorithms in Music Technology for Crafting Synth Beats": 1 + "Computer Science: Application of Logic Pro X's ES2 Synthesizer and Waveform Modulation in Music Technology for Synthesizer Beat Generation": 1 + "Computer Science: Exploring Logic Pro X's ES2 Synthesizer and Digital Signal Processing in Music Technology for Synthesizer Beat Creation": 1 + "Computer Science: Unveiling Logic Pro X's ES2 Synthesizer and Envelope Followers in Music Technology for Crafting Synthesizer Beats": 1 + "Computer Science: Mastering Logic Pro X's ES2 Synthesizer and Filter Cutoff Techniques in Music Technology for Synthesizer Beat Design": 1 + "Computer Science: Embracing Logic Pro X's ES2 Synthesizer and LFO Modulation in Music Technology for Crafting Synthesizer Beats": 1 + "Elementary Education 305: Introduction to Cooperative Games Using SMART Board Technology": 1 + "Elementary Education 305: Incorporating Role-Playing in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games with Digital Whiteboards": 1 + "Elementary Education 305: Utilizing iPads in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games: The Role of Augmented Reality": 1 + "Elementary Education 305: Employing Virtual Reality in Cooperative Games": 1 + "Elementary Education 305: Adaptive Learning Systems in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games: The Use of Interactive Projectors": 1 + "Elementary Education 305: Cooperative Games and Interactive Learning Platforms": 1 + "Elementary Education 305: Introduction to Cooperative Games: Incorporating Gamification Tools": 1 + "Economic Principles: Utilizing Supply and Demand in The Lemonade Stand Experiment": 1 + "Economic Principles: The Lemonade Stand Experiment & Price Elasticity": 1 + "Economic Principles: Exploring Profit Maximization in The Lemonade Stand Experiment": 1 + "Economic Principles: The Lemonade Stand Experiment through Keynesian Economics": 1 + "Economic Principles: Implementing Marginal Analysis in The Lemonade Stand Experiment": 1 + "Economic Principles: The Lemonade Stand Experiment and the Role of Opportunity Cost": 1 + "Economic Principles: Understanding Scarcity and Choice in The Lemonade Stand Experiment": 1 + "Economic Principles: The Lemonade Stand Experiment with Microeconomic Models": 1 + "Economic Principles: The Lemonade Stand Experiment - An Examination of Market Structures": 1 + "Economic Principles: The Lemonade Stand Experiment - The Intersection of Economics and Behavioral Psychology": 1 + "Computer Science 101: Introduction to Python Programming with Numpy": 1 + "Computer Science 101: Introduction to Python Programming using Data Structures": 1 + "Computer Science 101: Python Programming and Machine Learning with Scikit-Learn": 1 + "Computer Science 101: Python Programming for Web Development using Django": 1 + "Computer Science 101: Python Programming for Data Visualization using Matplotlib": 1 + "Computer Science 101: Python Programming and Database Management with MySQL": 1 + "Computer Science 101: Python Programming and Web Scraping with BeautifulSoup": 1 + "Computer Science 101: Python Programming for Data Analysis using Pandas": 1 + "Computer Science 101: Python Programming for Game Development using Pygame": 1 + "Computer Science 101: Python Programming and Cybersecurity with PyCrypto": 1 + "Physics: Exploring Elementary Mechanics with the Use of Vernier Calipers and Newton's Laws": 1 + "Physics: A Comprehensive Study on Elementary Mechanics using Vernier Calipers and Vector Analysis": 1 + "Physics: Diving Deep into Elementary Mechanics Using Vernier Calipers and Friction Analysis": 1 + "Physics: Understanding Elementary Mechanics through Vernier Calipers and Kinetic Energy Calculations": 1 + "Physics: Elementary Mechanics and the Use of Vernier Calipers with a Focus on Potential Energy": 1 + "Physics: A Study on Elementary Mechanics using Vernier Calipers and Trajectory Analysis": 1 + "Physics: Profound Understanding of Elementary Mechanics using Vernier Calipers and Momentum Conservation": 1 + "Physics: Elementary Mechanics and Application of Vernier Calipers in Force Analysis": 1 + "Physics: Mastering Elementary Mechanics with Vernier Calipers and a Study on Circular Motion": 1 + "Physics: Elementary Mechanics, Vernier Calipers, and an Intensive Study on Gravitational Forces.": 1 + "Environmental Studies: The Role of Composting in Soil Fertility Management and Its Effect on Nutritional Value": 1 + "Soil Fertility Management: Utilizing Drones for Effective Environmental Studies and Nutrient Value Assessment": 1 + "Environmental Studies: The Impact of Nitrogen Fixation on Soil Fertility and Nutritional Value": 1 + "Soil Fertility Management: Exploring the Use of Satellite Imaging in Environmental Studies": 1 + "Environmental Studies: Understanding the Role of Crop Rotation in Soil Fertility and Nutrient Value": 1 + "Soil Fertility Management: Leveraging IoT Sensors for Environmental Studies and Nutritional Value Enhancement": 1 + "Environmental Studies: The Impact of Biochar on Soil Fertility and Its Effect on Nutritional Value": 1 + "Soil Fertility Management: Using Remote Sensing Technology in Environmental Studies for Nutritional Value Assessment": 1 + "Environmental Studies: The Effect of Vermiculture on Soil Fertility and Nutritional Value": 1 + "Soil Fertility Management: The Role of AI in Environmental Studies and Boosting Nutritional Value.": 1 + "Advanced English: Creative Writing through the Lens of Character Development using XMind": 1 + "Basic English: Enhancing Creative Writing through Character Development with MindMeister": 1 + "Exclusive English: Character Development and Creative Writing using Lucidchart": 1 + "Fundamental English: Developing Characters in Creative Writing via Coggle": 1 + "Practical English: Bubbl.us Tool for Character Development in Creative Writing": 1 + "Essential English: Using Padlet for Effective Character Development in Creative Writing": 1 + "Intermediate English: Creative Writing and Character Development through Wisemapping": 1 + "Advanced English: Mindomo - A Tool for Character Development in Creative Writing": 1 + "Applied English: Creative Writing through the Lens of Character Development using MindGenius": 1 + "Comprehensive English: Character Development in Creative Writing using SimpleMind": 1 + "Language Arts: Exploring Literature and Poetry Inspired by Nature through Digital Storytelling": 1 + "Language Arts: Nature-Inspired Literature and Poetry Analysis using Text Mining Tools": 1 + "Language Arts: Investigating Nature in Literature and Poetry using e-Reader Technology": 1 + "Language Arts: Ecocriticism Approach to Nature-Inspired Literature and Poetry": 1 + "Language Arts: Nature's Influence in Literature and Poetry through Virtual Reality Exploration": 1 + "Language Arts: Understanding Nature-Inspired Literature and Poetry through Linguistic Software": 1 + "Language Arts: Nature in Literature and Poetry Studied through Web-based Research Tools": 1 + "Language Arts: Analyzing Nature's Presence in Literature and Poetry using Text-to-Speech Software": 1 + "Language Arts: Literature and Poetry Inspired by Nature: A Study using Machine Learning Algorithms": 1 + "Language Arts: Literature and Poetry Inspired by Nature: Interpretation with Artificial Intelligence.": 1 + "Physical Education: Understanding Movement and Coordination through Biomechanics": 1 + "Physical Education: Utilizing Motion Capture Technology in Understanding Movement": 1 + "Physical Education: Exploring Kinesiology for Better Coordination": 1 + "Physical Education: Understanding Movement and Coordination through Gait Analysis": 1 + "Physical Education: The Role of Ergonomics in Movement and Coordination": 1 + "Physical Education: Incorporating Heart Rate Monitors in Studying Movement": 1 + "Physical Education: Understanding Movement and Coordination through Sports Science": 1 + "Physical Education: The Application of Gyroscopes in Studying Coordination": 1 + "Physical Education: Understanding Movement through Kinematic Analysis": 1 + "Physical Education: Enhancing Coordination through Wearable Technology in Physical Education.": 1 + "Music: Understanding the Economics of the Music Industry through Spotify Analytics": 1 + "Music: The Role of Blockchain Technology in the Economics of the Music Industry ": 1 + "Music: Exploring the Impact of Digital Distribution on the Economics of the Music Industry": 1 + "Music: The Economics of the Music Industry in the Era of Streaming Services": 1 + "Music: Quantifying the Economics of the Music Industry using Big Data Analysis": 1 + "Music: The Economics of the Music Industry: A Deep Dive into Royalty Calculations": 1 + "Music: Navigating the Economics of the Music Industry using Artificial Intelligence": 1 + "Music: The Economics of the Music Industry: The Influence of Social Media Marketing": 1 + "Music: The Economics of the Music Industry: The Impact of Music Copyright Laws": 1 + "Music: The Economics of the Music Industry: Insights from Music Production Software": 1 + "Music: The Economics of the Music Industry: Analyzing Trends with Music Recognition Technology": 1 + "Science: Exploring Botany through Microscopic Analysis": 1 + "Science: Botany and the Application of Spectrophotometry ": 1 + "Science: The Fascinating World of Botany and Genetic Engineering": 1 + "Science: Botanical Studies with Geographic Information Systems (GIS)": 1 + "Science: Botany and the Power of the Electron Microscope": 1 + "Science: Biotechnology in the Fascinating World of Botany": 1 + "Science: The Fascinating World of Botany using Hydroponic Systems": 1 + "Science: Exploring the World of Botany through DNA Sequencing": 1 + "Science: Botany - Understanding Plant Life through Chromatography": 1 + "Science: The Fascinating World of Botany: A Deep Dive into Photosynthesis.": 1 + "Sports Equipment Production: Implementing Zero Waste Strategies with 3D Printing Technology": 1 + "Sustainable Sports Equipment Production: Harnessing Solar Energy for Zero Waste Strategies": 1 + "Sports Equipment Production: Utilizing Biodegradable Materials in Zero Waste Strategies": 1 + "Implementing Zero Waste Strategies in Sports Equipment Production through Waste Auditing": 1 + "Sports Equipment Production: Incorporating Eco-Design for Zero Waste Strategies": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques": 1 + "Sports Equipment Production: Implementing Zero Waste Strategies with Life Cycle Assessment": 1 + "Zero Waste Strategies in Sports Equipment Production: Incorporating Biomimicry Concepts": 1 + "Sustainable Sports Equipment Production: Implementing Zero Waste Strategies through Cradle-to-Cradle Design": 1 + "Sports Equipment Production: Utilizing Circular Economy Principles in Implementing Zero Waste Strategies.": 1 + "Using Ableton Live for Incorporating Natural Rhythms into Percussion through Drum Machines": 1 + "Exploring the Roland TR-808: Incorporating Natural Rhythms into Percussion through Drum Machines": 1 + "Incorporating Natural Rhythms into Percussion through Drum Machines: A Deep Dive into MIDI Programming": 1 + "Music Production: Incorporating Natural Rhythms into Percussion through Drum Machines using Logic Pro X": 1 + "The Art of Rhythm: Incorporating Natural Rhythms into Percussion using Akai MPC Drum Machines": 1 + "Advanced Techniques: Incorporating Natural Rhythms into Percussion with the Maschine MK3 Drum Machine": 1 + "Beat Making Mastery: Incorporating Natural Rhythms into Percussion using the Korg Volca Beats Drum Machine": 1 + "Drum Programming in FL Studio: Incorporating Natural Rhythms into Percussion through Drum Machines": 1 + "Music Theory and Rhythm: Incorporating Natural Rhythms into Percussion through Drum Machines using the Alesis SR18": 1 + "Sound Design with Cubase: Incorporating Natural Rhythms into Percussion through Drum Machines.": 1 + "Social Studies in the Digital Age: Exploring Data Trends through Google Analytics": 1 + "Data Visualization in Social Studies: A Deep Dive into Tableau": 1 + "Social Studies in the Digital Era: Unpacking Trends with Python": 1 + "Exploring Social Studies Data: An Introduction to R Programming": 1 + "Harnessing Big Data for Social Studies: A Focus on SQL": 1 + "Social Studies in the Modern World: Understanding Data Trends using Excel": 1 + "Leveraging PowerBI for Social Studies: A Comprehensive Study of Data Trends": 1 + "Social Studies in the Digital Age: Analyzing Data Trends with SPSS": 1 + "Digital Social Studies: Exploring Data Trends through Machine Learning": 1 + "Data Trends in Social Studies: A Practical Approach using Hadoop.": 1 + "Dissecting Peroxisomes: A Detailed Study using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Cryo-electron Tomography": 1 + "Subcellular Components Dissection: Focused Exploration of Peroxisomes using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Immunofluorescence": 1 + "Peroxisomes Deep Dive: Using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and X-ray Crystallography": 1 + "Subcellular Analysis: Examining Peroxisomes with the Aid of Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Spectrophotometry": 1 + "Peroxisomes Analysis: A Comprehensive Study with Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Surface Plasmon Resonance": 1 + "Detailed Analysis of Peroxisomes: Using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Two-Photon Excitation Microscopy": 1 + "Subcellular Components Dissection: In-depth Peroxisomes Analysis through Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Atomic Force Microscopy": 1 + "Peroxisomes Dissection: A Comprehensive Study using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Chromatography": 1 + "Exploring Peroxisomes: A Detailed Study with Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Flow Cytometry": 1 + "Subcellular Analysis: Focused Exploration of Peroxisomes using Scanning Electron Microscopy, Transmission Electron Microscopy, Mass Spectrometry, and Confocal Microscopy": 1 + "Biology: Exploring Microscopy in Fundamental Concepts of Life Science": 1 + "Biology: DNA Sequencing and Fundamental Concepts of Life Science": 1 + "Biology: Fundamental Concepts of Life Science through CRISPR Technology": 1 + "Biology: Genetic Engineering in Fundamental Concepts of Life Science": 1 + "Biology: The Role of Bioinformatics in Life Science": 1 + "Biology: Fundamental Concepts of Life Science: An Insight into Cellular Respiration": 1 + "Biology: Exploring Photosynthesis in Life Science": 1 + "Biology: PCR Techniques in Fundamental Concepts of Life Science": 1 + "Biology: The Impact of Genomics on Life Science Fundamentals": 1 + "Biology: Proteomics and Fundamental Concepts of Life Science.": 1 + "Computer Science: Python Coding for Creative Design": 1 + "Computer Science: Using JavaScript in Creative Design": 1 + "Computer Science: Creative Design with CSS and HTML": 1 + "Computer Science: Coding for Creative Design using Adobe XD": 1 + "Computer Science: Intro to Java for Creative Design": 1 + "Computer Science: Creative Design with Swift Coding": 1 + "Computer Science: Ruby on Rails for Creative Design": 1 + "Computer Science: Creative Design using C++ Language": 1 + "Computer Science: Coding for Creative Design with Unity": 1 + "Computer Science: Using MATLAB in Creative Design": 1 + "Economics 101: Exploring the Theory of Supply and Demand with Graphical Analysis": 1 + "Economics 101: Understanding Supply and Demand through Elasticity": 1 + "Economics 101: Using Econometrics to Understand Supply and Demand": 1 + "Economics 101: The Role of Market Equilibrium in Supply and Demand": 1 + "Economics 101: Quantitative Analysis of Supply and Demand": 1 + "Economics 101: Applying Game Theory to Understand Supply and Demand": 1 + "Economics 101: Understanding Supply and Demand using Stochastic Models": 1 + "Economics 101: Linear Programming in Supply and Demand Analysis": 1 + "Economics 101: The Impact of Tariffs on Supply and Demand": 1 + "Economics 101: Supply and Demand Analysis using Monte Carlo Simulations": 1 + "Basic Biology: Exploring Plant Life through Fluorescence Microscopy": 1 + "Basic Biology: Diving into Plant Life with Scanning Electron Microscopy": 1 + "Basic Biology: Understanding Plant Life through Confocal Laser Microscopy": 1 + "Basic Biology: Exploring Plant Life through Microscopy and DNA Sequencing": 1 + "Basic Biology: Study of Plant Life using Microscopy and Chromatography": 1 + "Basic Biology: Microscopic Exploration of Plant Life using Spectrophotometry ": 1 + "Basic Biology: Exploring Plant Life with Microscopy and Cell Culture Techniques": 1 + "Basic Biology: Analyzing Plant Life through Microscopy and Gel Electrophoresis": 1 + "Basic Biology: Unraveling Plant Life using Microscopy and Immunofluorescence": 1 + "Basic Biology: Investigating Plant Life through Microscopy and PCR Techniques": 1 + "Logic: Rationality and Economic Choices through Game Theory": 1 + "Utilizing Bayesian Inference in Logic: Rationality and Economic Choices": 1 + "Logic: Rationality, Economic Choices, and Predictive Modeling": 1 + "Understanding Rationality and Economic Choices with Decision Trees": 1 + "Monte Carlo Simulations: Enhancing Logic and Rationality in Economic Choices": 1 + "Integrating Neural Networks in Logic: Rationality and Economic Choices": 1 + "Logic: Rationality and Economic Choices in the Lens of Machine Learning": 1 + "Exploring Rationality and Economic Choices through Statistical Analysis": 1 + "The Role of Regression Analysis in Logic: Rationality and Economic Choices": 1 + "Logic: Rationality, Economic Choices, and the Impact of Artificial Intelligence.": 1 + "Music: An In-depth Analysis of Piano and Its Sound Production Using Steinway Grand Pianos": 1 + "Music: A Detailed Study of Piano Sound Techniques through MIDI Technology": 1 + "Music: Exploring Piano Sound Production Techniques Using Amplifiers": 1 + "Music: A Comprehensive Study of Piano and Sound Production Using the Hammer Action Technique": 1 + "Music: Sound Production Techniques in Piano Using Synthesizer Technology": 1 + "Music: A Detailed Study of Piano Sound Using Microphone Placement Techniques": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage": 1 + "Music: A Comprehensive Study of Piano and Its Sound Production Using the Sostenuto Pedal": 1 + "Music: An In-depth Analysis of Piano and Its Sound Production Using Digital Sampling": 1 + "Music: A Detailed Study of Piano Sound Production Techniques Using Acoustic Enhancements.": 1 + "Economics for Beginners: Understanding Market Forces through Supply and Demand": 1 + "Economics for Beginners: Utilizing Graphical Models to Understand Market Forces": 1 + "Economics for Beginners: Understanding Market Forces with Game Theory": 1 + "Economics for Beginners: Deciphering Market Forces using Econometric Analysis": 1 + "Economics for Beginners: A Study of Market Forces using the Keynesian Model": 1 + "Economics for Beginners: Delving into Market Forces with the Monetarist Theory": 1 + "Economics for Beginners: A Look at Market Forces through the Lens of the Laffer Curve": 1 + "Economics for Beginners: Unraveling Market Forces using the IS-LM Model": 1 + "Economics for Beginners: A Deep Dive into Market Forces with the AD-AS Model": 1 + "Economics for Beginners: Understanding Market Forces through Stochastic Analysis.": 1 + "Physical Education: Fundamentals of Basketball with Focus on Dribbling Techniques": 1 + "Physical Education: Enhancing Basketball Skills through Advanced Jump Shots": 1 + "Physical Education: Basketball Essentials: Mastering the Art of Free Throws": 1 + "Physical Education: Basketball Training: Harnessing the Power of Defensive Strategies": 1 + "Physical Education: Fundamentals of Basketball: Understanding the Zone Defense System": 1 + "Physical Education: High-Level Basketball: A Deep Dive into Man-to-Man Defense": 1 + "Physical Education: Sharpening Basketball Skills through Effective Passing Techniques": 1 + "Physical Education: Basketball for Beginners: An Introduction to Layups and Dunks": 1 + "Physical Education: Basketball Fundamentals: The Role of the Pivot Foot": 1 + "Physical Education: Exploring Basketball: The Impact of Rebounding and Boxing Out": 1 + "Language Arts: The Influence of Iambic Pentameter on Rhyme Scheme in Poetry of the Palate": 1 + "Language Arts: Exploring the Impact of Metaphors on Rhyme Scheme in Culinary Poetry": 1 + "Language Arts: The Role of Alliteration in Enhancing Rhyme Scheme in Poetry of the Palate": 1 + "Language Arts: Investigating the Effect of Assonance on Rhyme Scheme in Edible Verses": 1 + "Language Arts: Rhyme Scheme and the Use of Hyperbole in Poetry of the Palate": 1 + "Language Arts: The Power of Imagery in Shaping Rhyme Scheme in Gastronomic Poetry": 1 + "Language Arts: The Function of Simile in Rhyme Scheme within Culinary Poetry": 1 + "Language Arts: Effects of Personification on Rhyme Scheme in Poetry of the Palate": 1 + "Language Arts: The Influence of Onomatopoeia on Rhyme Scheme in Edible Poetry": 1 + "Language Arts: Rhyme Scheme and the Impact of Symbolism in Gastronomic Verses": 1 + "Social Studies: Understanding Global Cultures through Historical Comparative Analysis using GIS Technology": 1 + "Social Studies: Exploring Global Cultures with Historical Comparative Analysis and Anthropological Linguistics": 1 + "Social Studies: Decoding Global Cultures through Historical Comparative Analysis and Archaeological Tools": 1 + "Social Studies: Examining Global Cultures through Historical Comparative Analysis and Ethnographic Film": 1 + "Social Studies: Interpreting Global Cultures by Historical Comparative Analysis using Machine Learning Algorithms": 1 + "Social Studies: Unraveling Global Cultures through Historical Comparative Analysis and Virtual Reality Tools": 1 + "Social Studies: Probing Global Cultures through Historical Comparative Analysis and AI-Driven Text Analysis": 1 + "Social Studies: Analysing Global Cultures through Historical Comparative Analysis with the Aid of Big Data Analytics": 1 + "Social Studies: Illuminating Global Cultures through Historical Comparative Analysis and Cybernetic Systems Theory": 1 + "Social Studies: Discovering Global Cultures through Historical Comparative Analysis applying Bayesian Statistics.": 1 + "Music: The Rhythm of Nature - Exploring the Impact of Pro Tools in Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - Revealing the Influence of Ableton Live on Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - Understanding the Role of Logic Pro in Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - The Impact of FL Studio on Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - How GarageBand Affects Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - The Transformative Power of Cubase in Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - Deciphering the Impact of Audacity on Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - The Role and Impact of Reason in Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - Tracing the Influence of Reaper in Digital Audio Workstations ": 1 + "Music: The Rhythm of Nature - The Impact of Digital Audio Workstations through the Lens of Studio One": 1 + "Basic Computer Programming: An Introduction to Python and Django Framework": 1 + "A Beginner's Guide to Python: Understanding Data Structures ": 1 + "Basic Computer Programming: Mastering Python and Jupyter Notebook": 1 + "Navigating Python: A Deep Dive into Machine Learning Libraries": 1 + "Python for Beginners: Exploring Flask Web Development ": 1 + "Basic Computer Programming: Python and its Application in Artificial Intelligence": 1 + "Python for Novices: An Introduction to GUI Programming with Tkinter": 1 + "Python Basics: A Comprehensive Guide to Database Interactions with SQLAlchemy": 1 + "A Beginner's Guide to Python: Delving into Web Scraping with Beautiful Soup": 1 + "Python Programming Fundamentals: Understanding Data Analysis with Pandas.": 1 + "Computer Science: Introduction to Adobe Photoshop in Digital Design ": 1 + "Computer Science: Understanding AutoCAD in Digital Design Tools": 1 + "Computer Science: An Overview of SketchUp for Digital Design": 1 + "Computer Science: Introduction to Blender in Digital Design": 1 + "Computer Science: Exploring 3Ds Max in Digital Design Tools": 1 + "Computer Science: Introduction to Digital Design using Unreal Engine": 1 + "Computer Science: A Dive into Unity for Digital Design": 1 + "Computer Science: Mastering Maya in Digital Design Tools": 1 + "Computer Science: Introduction to Digital Design with ZBrush": 1 + "Computer Science: Grasping SolidWorks in Digital Design Tools": 1 + "Elementary Computing: Introduction to Python Programming": 1 + "Elementary Computing: Basics of JavaScript Coding": 1 + "Elementary Computing: Understanding HTML for Beginners": 1 + "Elementary Computing: Entry-Level Course in CSS": 1 + "Elementary Computing: Introduction to C++ Coding": 1 + "Elementary Computing: Mastering the Basics of Java": 1 + "Elementary Computing: Ruby Programming for Beginners": 1 + "Elementary Computing: Introduction to Swift Coding": 1 + "Elementary Computing: Basics of PHP Programming": 1 + "Elementary Computing: Getting Started with MATLAB": 1 + "The Role of Quadrupole Mass Spectrometry in the History of Science: Identifying Chemical Compounds": 1 + "History of Science: Advancements in Gas Chromatography-Mass Spectrometry for Chemical Compound Identification": 1 + "Application of Time-of-Flight Mass Spectrometry in the History of Science for Chemical Compound Identification": 1 + "History of Science: The Impact of Magnetic Sector Mass Spectrometry in Identifying Chemical Compounds": 1 + "Fourier Transform Mass Spectrometry: Its Importance in the History of Science and Identifying Chemical Compounds": 1 + "History of Science: The Revolution of Tandem Mass Spectrometry in Chemical Compound Identification": 1 + "The Contribution of Ion Trap Mass Spectrometry in the Historical Identification of Chemical Compounds": 1 + "History of Science: The Role of Matrix-Assisted Laser Desorption/Ionization in Identifying Chemical Compounds": 1 + "Electrospray Ionization and Its Influence on the History of Science in Identifying Chemical Compounds": 1 + "History of Science: The Significance of Inductively Coupled Plasma Mass Spectrometry in Identifying Chemical Compounds.": 1 + "Economics for Beginners: Understanding Money Matters Through Supply and Demand": 1 + "Economics for Beginners: Grasping the Concept of Inflation": 1 + "Exploring Fiscal Policies: A Beginner's Guide to Economics": 1 + "Economics for Beginners: An Introduction to Macroeconomics": 1 + "Understanding Money Matters: A Beginner's Guide to Microeconomics": 1 + "Economics for Beginners: The Role of Central Banks Explained": 1 + "Economics for Beginners: Deconstructing the GDP": 1 + "A Beginner's Guide to Economics: Understanding Money Matters Through Interest Rates": 1 + "Economics for Beginners: Unraveling the Mystery of Exchange Rates": 1 + "A Beginner's Journey to Economics: Unpacking Monetary Policies.": 1 + "Mathematics: Exploring Architecture Through Geometry and CAD Software": 1 + "Mathematics: The Geometry of Architecture and the Role of 3D Modeling": 1 + "Mathematics: Geometry and Architecture - A Deep Dive into AutoCAD": 1 + "Mathematics: The Geometry of Architecture - Understanding Vector Graphics": 1 + "Mathematics: The Geometry of Architecture - An Introduction to Parametric Design": 1 + "Mathematics: The Geometry of Architecture - A Study on BIM Technology": 1 + "Mathematics: The Geometry of Architecture - Exploring Geometric Transformations in Design": 1 + "Mathematics: The Geometry of Architecture - Proportional Relationships via SketchUp ": 1 + "Mathematics: The Geometry of Architecture - Using Point Clouds for Site Analysis": 1 + "Mathematics: The Geometry of Architecture - Leveraging Revit for Structural Design": 1 + "Physical Education: The Economic Contribution of Biomechanics in Sports Artistry": 1 + "Physical Education: The Role of Virtual Reality Tech in the Economics of Sports Artistry": 1 + "Physical Education: The Economic Impact of Video Analysis in Sports Artistry": 1 + "Physical Education: The Economic Contribution of Sports Artistry through Wearable Technology": 1 + "Physical Education: The Economic Contribution of Sports Artistry - A Study on Motion Capture Technology": 1 + "Physical Education: The Use of Sports Analytics and its Economic Contribution to Sports Artistry": 1 + "Physical Education: The Economic Contribution of Sports Artistry - The Impact of AI Technology": 1 + "Physical Education: The Economic Effects of Drones in Sports Artistry": 1 + "Physical Education: Smart Stadiums - The Economic Contribution of Sports Artistry": 1 + "Physical Education: The Economic Contribution of Sports Artistry - An Examination of 3D Printing Technology": 1 + "Art: Using Brushes in Sports Portraiture Acrylic Painting and Easel Craftsmanship": 1 + "Art: Employing Palette Knives in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: The Impact of Canvas Textures on Sports Portraiture in Acrylic Painting and Easel Craftsmanship": 1 + "Art: Exploring Glazing Techniques in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: Grasping Color Theory in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: The Power of Lighting in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: Mixing Mediums for Sports Portraiture in Acrylic Painting and Easel Craftsmanship": 1 + "Art: The Role of Perspective in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: Understanding Composition Rules in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Art: Experimenting with Underpainting in Sports Portraiture through Acrylic Painting and Easel Craftsmanship": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring the Impact of Blockchain Technology on Cryptocurrency through Digital Wallets": 1 + "Economic Rhetoric in Blockchain: Assessing Bitcoin's Response to Digital Wallets": 1 + "Language Arts and Cryptocurrency: Analyzing the Influence of Ethereum Smart Contracts in Digital Wallet Use": 1 + "Rhetoric and Ripple: A Deep Dive into the Effects of Digital Wallets on XRP Transactions ": 1 + "The Discourse of Litecoin: Evaluating Digital Wallets and Decentralization in Cryptocurrency": 1 + "Economic Discourse in Cryptocurrency: Unveiling the Role of Digital Wallets in Bitcoin Cash Transactions": 1 + "Language Arts: Exploring the Impact of Digital Wallets on Cryptocurrency - A Special Focus on Dash Technology": 1 + "The Rhetoric of Economic Discourse: Understanding Zcash and the Influence of Digital Wallets": 1 + "Language Arts & Cryptoeconomics: Deciphering the Impact of Monero Anonymity in Digital Wallet Utilization": 1 + "The Rhetoric of Cryptocurrency: Assessing the Impact of Digital Wallets on Stellar Lumens Transactions.": 1 + "Physics: Exploring Gravitational Lensing with Hubble Space Telescope - A Deeper Insight into Gravity and Galaxies": 1 + "Physics: Gravitational Lensing - Unveiling Dark Matter Through Galaxy Clusters": 1 + "Physics: Gravitational Lensing and Quantum Mechanics - A Deeper Insight into Gravity and Galaxies": 1 + "Physics: Gravitational Lensing - A Detailed Study of Black Holes and Galaxies Using the Eddington Experiment": 1 + "Physics: Gravitational Lensing - Investigating Gravity with the Chandra X-ray Observatory and Galaxies": 1 + "Physics: Gravitational Lensing & Einstein's Theory of General Relativity - A Deeper Insight into Gravity and Galaxies": 1 + "Physics: Gravitational Lensing - Analyzing Galaxy Evolution Tracker (Galex) Data for a Deeper Insight into Gravity and Galaxies": 1 + "Physics: Gravitational Lensing - Decoding the Universe with the Cosmic Microwave Background Radiation": 1 + "Physics: Gravitational Lensing - Extensive Study Through Fermi Gamma-ray Space Telescope": 1 + "Physics: Gravitational Lensing - A Deeper Insight into Gravity and Galaxies Using the Very Large Array (VLA)": 1 + "Enhancing Cognitive Processes: Logical Reasoning with Python's Scikit-Learn Decision Trees": 1 + "Advanced Logical Reasoning: Applying Decision Trees with R Programming": 1 + "Python Decision Trees: A Comprehensive Course on Logical Reasoning and Critical Thinking": 1 + "Logical Reasoning with Decision Trees in Java: Strengthening Analytical Skills": 1 + "MATLAB for Decision Trees: A Course on Logical Reasoning and Strategic Thinking": 1 + "Cognitive Development through Decision Trees in Ruby: An In-depth Course": 1 + "Logical Reasoning with Decision Trees in SQL: Making Better Decisions": 1 + "Leveraging SAS for Decision Trees: A Course on Logical Reasoning": 1 + "Strengthening Thought Processes: A Course on Logical Reasoning with Decision Trees in Julia": 1 + "Swift Programming for Decision Trees: Advanced Logical Reasoning Course.": 1 + "Physics Fundamentals: Quantum Mechanics and the Application of Feynman Diagrams in Particle Physics": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the Use of Schrödinger Equation": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams and the Exploration of Heisenberg's Uncertainty Principle": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams and the Application of Quantum Tunneling ": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams and the Exploration of Quantum Entanglement": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the Use of Wave-Particle Duality": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the study of Quantum Field Theory": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the Understanding of Superposition Principle": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the Application of Quantum Harmonic Oscillator": 1 + "Physics Fundamentals: Quantum Mechanics, Feynman Diagrams, and the Exploration of Quantum Decoherence": 1 + "Social Studies: Utilizing R Programming and ggplot2 for Enhancing Cultural Diversity in Event Management": 1 + "Harnessing R Programming and Shiny App for Boosting Cultural Diversity in Event Management": 1 + "Social Studies: Applying R Programming with dplyr in Promoting Cultural Diversity in Event Management": 1 + "Leveraging R Programming and Data Visualization for Cultural Diversity in Event Management": 1 + "Social Studies: Boosting Cultural Diversity in Event Management Through R Programming and Tidyverse": 1 + "Utilization of R Programming and R Markdown to Foster Cultural Diversity in Event Management": 1 + "Social Studies: The Power of R Programming and Data Manipulation in Enhancing Cultural Diversity in Event Management": 1 + "R Programming and Machine Learning: A New Approach to Cultural Diversity in Event Management": 1 + "Social Studies: R Programming and Data Analysis for Cultural Diversity in Event Management": 1 + "R Programming and Predictive Modelling: The Future of Cultural Diversity in Event Management.": 1 + "Elementary Health: Understanding Brain Nutrition through Neurofeedback Technology using EEG ": 1 + "Exploring Brain Nutrition: A Detailed Study using Functional Magnetic Resonance Imaging (fMRI) in Neurofeedback ": 1 + "Elemental Health & Brain Nutrition: The Use of Transcranial Magnetic Stimulation in Neurofeedback ": 1 + "Elementary Health: Exploring Brain Nutrition using Quantitative Electroencephalography (qEEG) in Neurofeedback Technology ": 1 + "Diving into Brain Nutrition: The Role of Brain Computer Interface in Neurofeedback Technology ": 1 + "Elementary Health: Exploring Brain Nutrition with Neurofeedback using Diffusion Tensor Imaging (DTI) ": 1 + "Brain Nutrition Explored: Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET) ": 1 + "Elementary Health: A Focus on Brain Nutrition via Neuromodulation in Neurofeedback Technology": 1 + "Analyzing Brain Nutrition: Elementary Health through Neurofeedback Technology using Magnetic Resonance Spectroscopy (MRS)": 1 + "Elementary Health: Exploring Brain Nutrition using Event-Related Potential (ERP) in Neurofeedback Technology": 1 + "Machine Learning with Python: A Deep Learning Approach": 1 + "Machine Learning: A Python Approach using TensorFlow": 1 + "Machine Learning: A Python Approach with PyTorch": 1 + "Machine Learning: A Python Approach using Scikit-learn": 1 + "Machine Learning with Python: Exploring Neural Networks": 1 + "Machine Learning: A Python Approach with Keras": 1 + "Machine Learning: A Python Approach using Pandas DataFrames": 1 + "Machine Learning with Python: Understanding Decision Trees": 1 + "Machine Learning: A Python Approach with Natural Language Processing": 1 + "Machine Learning with Python: A Linear Regression Approach": 1 + "Machine Learning: A Python Approach using Support Vector Machines": 1 + "English: Critical Thinking and Textual Analysis Using Bloom's Taxonomy": 1 + "English: Textual Analysis and Critical Thinking through Narrative Structure": 1 + "English: Enhancing Critical Thinking via Textual Analysis and Digital Humanities Tools": 1 + "English: Analyzing Texts through Critical Thinking and Semantic Analysis Tools": 1 + "English: Textual Analysis and Critical Thinking: An Approach through Rhetorical Devices": 1 + "English: Deepening Critical Thinking Skills through Textual Analysis and Deconstruction": 1 + "English: Textual Analysis and Critical Thinking Using Machine Learning Tools": 1 + "English: Critical Thinking in English: A Focus on Textual Analysis and Lexical Chains": 1 + "English: Utilizing Text Mapping in English: Critical Thinking and Textual Analysis": 1 + "English: English: Critical Thinking and Textual Analysis through the Lens of Discourse Analysis": 1 + "English: Critical Thinking and Text Analysis: A Deep Dive into Stylistic Devices.": 1 + "Logic: Critical Thinking and Problem Solving using Syllogisms": 1 + "Logic: Harnessing the Power of Deductive Reasoning for Problem Solving": 1 + "Critical Thinking and Problem Solving: A Deep Dive into Logical Fallacies": 1 + "Logic and Problem Solving: From Puzzles to Real-world Applications using Inductive Reasoning": 1 + "The Art of Argument: A Course in Logic and Critical Thinking ": 1 + "Logic: Applying the Scientific Method for Effective Problem Solving": 1 + "Critical Thinking: An Exploration of Abductive Reasoning": 1 + "Logic and Problem Solving: A Comprehensive Guide to Propositional Logic": 1 + "Critical Thinking and Problem Solving: Unpacking Causal Reasoning": 1 + "Logic: Understanding and Applying Contrapositive Statements in Problem Solving": 1 + "The Power of Logic: Critical Thinking and Problem Solving using Disjunctive Syllogism.": 1 + "Neuroscience Foundations: Delving into Electrophysiology with EEG Technology": 1 + "Advanced Neuroscience: Analyzing the Human Brain using Electrophysiology and fMRI": 1 + "Neuroscience Foundations: Utilizing TMS for Electrophysiological Exploration of the Human Brain": 1 + "Advanced Neurology: Exploring the Human Brain Using Electrophysiology and Optogenetics": 1 + "Neuroscience Foundations: A Deep Dive into Human Brain Analysis Using MEG and Electrophysiology": 1 + "Neurological Discoveries: Applying ERP in Electrophysiology to Understand the Human Brain": 1 + "Neuroscience Foundations: Utilizing Single-Cell Electrophysiology for Human Brain Study": 1 + "In-depth Neuroscience: Exploring the Human Brain Using Electrophysiology and Diffusion Tensor Imaging": 1 + "Neuroscience Foundations: Exploring the Human Brain with Electrophysiology and Patch-Clamp Techniques": 1 + "Advanced Neuroscience: Decoding the Human Brain using Electrophysiology and PET Scans": 1 + "Economics: The Transformation of Global Trade by Augmented Reality and Blockchain Technology": 1 + "Economics: The Impact of Artificial Intelligence on the Global Trade Transformation through Augmented Reality": 1 + "Economics: Utilizing Augmented Reality and Big Data Analytics in the Transformation of Global Trade": 1 + "Economics: The Transformation of Global Trade by Augmented Reality and the Internet of Things": 1 + "Economics: Augmented Reality and Machine Learning: A New Era for Global Trade": 1 + "Economics: The Role of Augmented Reality and Quantum Computing in Global Trade Transformation": 1 + "Economics: Augmented Reality and Cybersecurity: Changing the Face of Global Trade ": 1 + "Economics: The Transformation of Global Trade through Augmented Reality and 3D Printing": 1 + "Economics: The Impact of Augmented Reality and Virtual Reality on the Transformation of Global Trade": 1 + "Economics: How Augmented Reality and Robotics are Transforming Global Trade": 1 + "Artistic Expression: Exploring Impressionism through Perspective Drawing using Charcoal": 1 + "Artistic Expression: Understanding Impressionism through 3D Modeling and Perspective Drawing": 1 + "Artistic Expression: Mastering Impressionism through Perspective Drawing with Graphite Pencils": 1 + "Artistic Expression: Unfolding Impressionism through Perspective Drawing and Digital Illustration": 1 + "Artistic Expression: Analyzing Impressionism through Perspective Drawing using Light and Shadows": 1 + "Artistic Expression: Deciphering Impressionism through Perspective Drawing and Color Theory": 1 + "Artistic Expression: Interpreting Impressionism through Perspective Drawing with the Use of Proportions": 1 + "Artistic Expression: Discovering Impressionism through Perspective Drawing using Mixed Media": 1 + "Artistic Expression: Investigating Impressionism through Perspective Drawing and the Use of Negative Space": 1 + "Artistic Expression: Appreciating Impressionism through Perspective Drawing using Oil Pastels.": 1 + "Using Neuroimaging to Understand the Influence of Music on Brain Activity": 1 + "The Role of EEG in Mapping Brain Responses to Sound": 1 + "The Impact of Music on Brain Activity: A Study Using fMRI Scans": 1 + "Music and the Mind: The Influence of Harmonics on Neural Pathways": 1 + "Using PET Scans to Trace the Effects of Sound on the Brain": 1 + "Sound, the Brain, and Biofeedback: An Interactive Study": 1 + "The Effect of Musical Frequencies on Brainwave Patterns: An EEG Analysis": 1 + "How Music Affects Brain Plasticity: A Study Using Neuroimaging Technology": 1 + "The Role of Music in Neuroregulation: A Neurofeedback-Based Study": 1 + "Music and the Mind: Understanding Brain Activity Through Spectrographic Sound Analysis": 1 + "Mastering 3D Modeling in SketchUp: A Comprehensive Guide to Geometry in Art Design": 1 + "Advanced Photoshop Techniques for Art Design: An In-depth Exploration of Geometry and Vector Tools": 1 + "Exploring Geometry in Art Design with Blender: A Detailed Study of SketchUp and Photoshop": 1 + "Geometry in Art Design: A Deep Dive into SketchUp, Photoshop, and Illustrator's Pen Tool": 1 + "Unveiling the Power of Geometry in Art Design: Using SketchUp, Photoshop, and AutoCAD ": 1 + "Geometry in Art Design: Enhancing Skills in SketchUp and Photoshop with a Focus on 3D Rendering": 1 + "Leveraging Adobe Lightroom in Art Design: A Deep Dive into Geometry using SketchUp and Photoshop": 1 + "Understanding Geometry in Art Design: Exploring SketchUp, Photoshop, and the Principles of 3D Animation": 1 + "Geometry in Art Design: Mastering SketchUp and Photoshop with an Introduction to ZBrush Techniques": 1 + "Incorporating the Power of Geometry in Art Design: A Detailed Study of SketchUp, Photoshop, and Unity's 3D Tools.": 1 + "Mathematics: Exploring Fractal Patterns with Python: A Global Overview": 1 + "Mathematics: Progressions and Regression Analysis in Excel: A Global Overview": 1 + "Mathematics: Patterns and Progressions: A Global Overview through Matlab": 1 + "Mathematics: Patterns and Progressions using Geometric Sequences: A Global Overview": 1 + "Mathematics: Fibonacci Sequences and Progressions: A Global Overview in R": 1 + "Mathematics: Exploring Patterns with the Monte Carlo Method: A Global Overview": 1 + "Mathematics: Patterns in Probability Theory and Progressions: A Global Overview": 1 + "Mathematics: Patterns and Progressions Using Matrix Algebra: A Global Overview": 1 + "Mathematics: Exploring Patterns with Complex Numbers: A Global Overview": 1 + "Mathematics: Patterns and Progressions in Cryptography: A Global Overview.": 1 + "Artistic Expressions of Economic Concepts through Abstract Painting": 1 + "The Application of Digital Art in Illustrating Economic Concepts": 1 + "The Role of Sculpture in Representing Economic Theories": 1 + "Economic Concepts Portrayed through Ceramics Art": 1 + "Exploring Economic Concepts through Collage Art": 1 + "The Use of Augmented Reality to Visualize Economic Concepts": 1 + "Understanding Economic Concepts through Conceptual Art": 1 + "Visualizing Economic Theories through Graphic Design": 1 + "Economic Concepts Expressed through Installation Art": 1 + "The Art of Photography: A Lens on Economic Concepts.": 1 + "Logic 101: Mastering Rational Thinking with Syllogistic Reasoning": 1 + "Logic 101: The Power of Rational Thinking through Deductive Reasoning": 1 + "Logic 101: Exploring Rational Thinking with Propositional Logic": 1 + "Logic 101: The Art of Rational Thinking using Aristotle's Square of Opposition": 1 + "Logic 101: Rational Thinking and Argument Mapping in Depth": 1 + "Logic 101: The Science of Rational Thinking through Truth Tables": 1 + "Logic 101: The Art of Rational Thinking: A Focus on Logical Fallacies": 1 + "Logic 101: Harnessing Rational Thinking with Inductive Reasoning": 1 + "Logic 101: Rational Thinking Made Clear: An Introduction to Formal Logic": 1 + "Logic 101: The Art of Rational Thinking: Uncovering Bias with Critical Thinking Tools.": 1 + "Mastering the Bezier Tool for Gradient Effects in Inkscape: A Detailed Course in Computer Science and Digital Art": 1 + "Advanced Layer Manipulation for Gradients in Inkscape: A Comprehensive Course in Computer Science and Digital Art": 1 + "The Power of Blend Modes in Maximizing Gradients in Inkscape: A Complete Course in Digital Art and Computer Science": 1 + "Inkscape Gradients and the Clipping Mask: A Comprehensive Computer Science and Digital Art Course": 1 + "Utilizing the Fill and Stroke Feature for Gradients in Inkscape: A Comprehensive Course in Computer Science and Digital Art": 1 + "The Art of Gradient Mesh in Inkscape: A Comprehensive Course in Digital Art and Computer Science": 1 + "Mastering SVG Paths for Gradients in Inkscape: An In-depth Course in Computer Science and Digital Art": 1 + "Inkscape Gradients and the Power of Live Path Effects: A Comprehensive Course in Computer Science and Digital Art": 1 + "Advanced Gradients in Inkscape with the Spray Tool: A Comprehensive Computer Science and Digital Art Course": 1 + "The Science of Gradients in Inkscape: Utilizing the Tweak Tool for Maximum Effect in a Comprehensive Digital Art Course.": 1 + "Basic Biology: Analysing Plant Life through Pollination using Microscopy": 1 + "Basic Biology: Dissecting Plant Life: A Detailed Study on Pollination using DNA Sequencing": 1 + "Basic Biology: Understanding Plant Life through Pollination Processes using Computer Simulation": 1 + "Basic Biology: Pollination Analysis in Plant Life using Drone Technology": 1 + "Basic Biology: Exploring Plant Life through Pollination using Chromatography Techniques": 1 + "Basic Biology: Pollination in Plant Life: A Study using Gel Electrophoresis": 1 + "Basic Biology: Unraveling Plant Life through Pollination using Spectrophotometry": 1 + "Basic Biology: A Deep Dive into Plant Life through Pollination using AI Recognition": 1 + "Basic Biology: Plant Life Study through Pollination using Scanning Electron Microscopy": 1 + "Basic Biology: Investigating Plant Life through Pollination using Isotope Analysis": 1 + "Basic Biology: Dissecting Plant Life Using Genomic Sequencing in Bioinformatics": 1 + "Basic Biology: Analyzing Phylogeny in Plant Life through Bioinformatics": 1 + "Basic Biology: Harnessing Machine Learning for Plant Life Study in Bioinformatics": 1 + "Basic Biology: Unraveling Plant Life with Bioinformatics and Data Visualization Tools": 1 + "Basic Biology: Unraveling Plant Life: An Introduction to Genetic Algorithms in Bioinformatics": 1 + "Basic Biology: Exploring Plant Life with Bioinformatics and Microarray Technology": 1 + "Basic Biology: Understanding Plant Life through Proteomics in Bioinformatics": 1 + "Basic Biology: Unraveling Plant Life with Bioinformatics and Comparative Genomics": 1 + "Basic Biology: Decoding Plant Life Using Molecular Modelling in Bioinformatics": 1 + "Basic Biology: Investigating Plant Life: Bioinformatics Application in Metagenomics.": 1 + "Logic: The Art of Problem Solving using Deductive Reasoning": 1 + "Logic: The Art of Problem Solving with Inductive Reasoning Techniques": 1 + "Logic and Boolean Algebra: The Art of Problem Solving": 1 + "Logic: Problem Solving with Critical Thinking Techniques": 1 + "Logic: The Art of Problem Solving using the Scientific Method": 1 + "Logic: The Art of Problem Solving with Propositional Calculus": 1 + "Logic: The Art of Problem Solving using Formal Logic Systems": 1 + "Logic: The Art of Problem Solving with Algorithmic Thinking": 1 + "Logic: The Art of Problem Solving using Heuristics": 1 + "Logic: The Art of Problem Solving through Game Theory": 1 + "Biology: Exploring Cell Biology and Microscopy Basics Using Polymerase Chain Reaction Techniques and Gel Electrophoresis": 1 + "Advanced Study in Cell Biology: Microscopy and Polymerase Chain Reaction Techniques with CRISPR-Cas9 Applications": 1 + "Biology: An In-depth Study of Cell Biology using Microscopy, Polymerase Chain Reaction Techniques and Flow Cytometry": 1 + "Detailed Survey of Cell Biology and Microscopy: Polymerase Chain Reaction Techniques with a Focus on Fluorescence Microscopy": 1 + "Biology: Understanding Cell Biology through Polymerase Chain Reaction Techniques and Spectrophotometry": 1 + "Cell Biology and Microscopy Basics: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing": 1 + "Biology: Cell Biology and Microscopy Techniques with Polymerase Chain Reaction and Mass Spectrometry": 1 + "Cell Biology: A Comprehensive Study of Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Biology: Cell Biology and Microscopy Basics using Polymerase Chain Reaction Techniques and Bioinformatics Analysis": 1 + "Cell Biology and Microscopy: Applying Polymerase Chain Reaction Techniques with a Focus on Transmission Electron Microscopy.": 1 + "Language Arts: The Evolution of Language through the Lens of Alphabet Development": 1 + "Language Arts: The Role of the Printing Press in the Evolution of Language": 1 + "Language Arts: Exploring the Impact of Internet Slang on Language Evolution": 1 + "Language Arts: The Influence of Morse Code on the Evolution of Language ": 1 + "Language Arts: The Evolution of Language - A Deep Dive into the Braille System": 1 + "Language Arts: The Evolution of Language in the age of Artificial Intelligence": 1 + "Language Arts: The Evolution of Language - Decoding the Rosetta Stone": 1 + "Language Arts: Understanding Language Evolution through Papyrus and Hieroglyphics": 1 + "Language Arts: The Evolution of Language - The Evolutionary Role of the Typewriter": 1 + "Language Arts: The Evolution of Language - Analyzing the Impact of Sign Language": 1 + "Language Arts: The Role of Metaphor in Poetry and Lyrics of American Social Protest Songs ": 1 + "Exploring the Use of Alliteration in Poetry and Lyrics of Social Protest Songs": 1 + "The Influence of Imagery in Poetry and Lyrics of Civil Rights Era Protest Songs": 1 + "Language Arts: The Power of Rhyme in Poetry and Lyrics of 1960s Social Protest Songs": 1 + "Analyzing the Use of Simile in Poetry and Lyrics of Feminist Social Protest Songs": 1 + "Language Arts: The Impact of Symbolism in Poetry and Lyrics of Environmental Social Protest Songs": 1 + "Harnessing Hyperbole: A Look at Poetry and Lyrics in LGBTQ+ Social Protest Songs": 1 + "Language Arts: Personification in Poetry and Lyrics of Anti-War Social Protest Songs": 1 + "The Role of Irony in Poetry and Lyrics of Anti-Racism Social Protest Songs": 1 + "Language Arts: Understanding the Use of Paradox in Poetry and Lyrics of Social Protest Songs.": 1 + "Digital Tools in Education: Harnessing Google Classroom for Enhanced Learning": 1 + "Exploring Microsoft Teams: The Role of Digital Tools in Education": 1 + "Harnessing the Power of Zoom: Technology for Learning in Digital Education": 1 + "Digital Tools in Education: Enhancing Learning through Interactive Whiteboards": 1 + "Virtual Reality in Education: A New Landscape for Learning": 1 + "Digital Tools in Education: The Impact of Gamification on Learning": 1 + "Augmented Reality in Education: Technology for Immersive Learning": 1 + "Digital Tools in Education: Utilizing Learning Management Systems for Effective Teaching": 1 + "Podcasting as a Digital Tool in Education: Exploring New Horizons for Learning": 1 + "Digital Tools in Education: Harnessing the Power of AI in Personalized Learning": 1 + "English: Expressing Environmental Concerns through Haiku Poetry": 1 + "English: Using Metaphors to Express Environmental Concerns in Creative Writing": 1 + "English: Expressing Environmental Concerns through Narrative Writing and Storytelling": 1 + "English: Creative Writing on Climate Change: Using Imagery to Express Environmental Concerns": 1 + "English: Empathy in Literature: Expressing Environmental Concerns through Character Development": 1 + "English: Expressing Environmental Concerns through Symbolism in Creative Writing": 1 + "English: Using Sonnets to Express Environmental Concerns in Creative Writing": 1 + "English: Expression of Environmental Concerns using Epistolary Writing Style": 1 + "English: Expressing Environmental Concerns through Allegory in Creative Writing": 1 + "English: Eco-criticism: Analyzing Environmental Concerns in Creative Non-fiction Writing": 1 + "Music Composition with Sibelius Software: Exploring the Harmony of Rhymes in Children's Poetry using MIDI Keyboard": 1 + "Transposition Techniques in Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry": 1 + "Using Sibelius Software and Score Editor for Enhanced Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry using Virtual Instruments": 1 + "Advanced Mixing Techniques in Sibelius Software for Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry and the Application of Digital Audio Workstation": 1 + "Exploring Sibelius Software Plugin Integration in Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry using Sound Libraries": 1 + "Using the Flexi-time feature in Sibelius Software for Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Music Composition with Sibelius Software: The Harmony of Rhymes in Children's Poetry and the Use of Multi-track Recording.": 1 + "Social Studies: Understanding American and Asian Cultures through Historical Comparative Analysis using GIS Technology": 1 + "Social Studies: Leveraging AI in Understanding Global Cultures: A Historical Comparative Analysis": 1 + "Understanding Global Cultures through Historical Comparative Analysis: An Emphasis on Blockchain Technology": 1 + "Historical Comparative Analysis of Global Cultures: A Deep Dive into Big Data Analytics": 1 + "Social Studies: Understanding Global Cultures through Ethnographic Mapping and Historical Comparative Analysis": 1 + "Understanding Global Cultures: A Comparative Analysis using Social Network Analysis Tools": 1 + "Historical Comparative Analysis in Social Studies: Exploring Global Cultures with VR Technology": 1 + "Social Studies: A Comparative Study of Global Cultures using Python Programming": 1 + "Understanding Global Cultures through Historical Comparative Analysis: An Approach using Machine Learning": 1 + "Social Studies: Understanding Global Cultures through Historical Comparative Analysis using Data Visualization Techniques.": 1 + "Fundamental Mathematics: Exploring Geometry with Compass and Straightedge": 1 + "Fundamental Mathematics: A Deep Dive into Geometric Proofs": 1 + "Fundamental Mathematics: Understanding Geometry through Euclidean Constructs": 1 + "Fundamental Mathematics: Exploring Geometry with Coordinate Systems": 1 + "Fundamental Mathematics: Geometry Exploration using AutoCAD": 1 + "Fundamental Mathematics: The Role of Pythagorean Theorem in Geometry": 1 + "Fundamental Mathematics: Trigonometry and Its Applications in Geometry": 1 + "Fundamental Mathematics: Exploring Geometry with Geogebra": 1 + "Fundamental Mathematics: From Basic Shapes to Complex Geometry using SolidWorks": 1 + "Fundamental Mathematics: Geometry Analysis using MATLAB": 1 + "Physics: Exploring Kelvin's Contribution to the Thermodynamic Temperature Scale Using Zeroth Law": 1 + "The Role of Kelvin's Scale in Thermodynamics: An Examination through Heat Engines ": 1 + "Kelvin's Role in Thermodynamics: The Specifics of Absolute Zero": 1 + "The Kelvin Scale in Thermodynamics: The Implication of Triple Point of Water": 1 + "Physics and Kelvin: The Thermodynamic Temperature Scale and its Relation to Entropy": 1 + "Thermodynamics: Understanding the Kelvin Scale through the Lens of the Carnot Cycle": 1 + "The Role of Kelvin's Scale in Thermodynamics: A Deep Dive into the Second Law": 1 + "Kelvin's Thermodynamic Temperature Scale: The Impact on Quantum Physics": 1 + "Kelvin and Thermodynamics: An In-depth Analysis of Blackbody Radiation": 1 + "The Kelvin Scale: Its Crucial Role in Statistical Mechanics and Thermodynamics.": 1 + "Social Studies: Analyzing North American Cultural Rhythms through Stereoscopic Photography Using Adobe Photoshop": 1 + "Social Studies: Interpreting Cultural Rhythms in Native American Societies through Stereoscopic Photography and Virtual Reality": 1 + "Social Studies: Understanding North American Cultural Diversity through Stereoscopic Photography and Drone Imaging": 1 + "Interpreting Cultural Rhythms in North American Urban Societies through Stereoscopic Photography and Machine Learning Algorithms": 1 + "Social Studies: The Role of Stereoscopic Photography and 3D Modeling in Interpreting Cultural Rhythms of North American Societies": 1 + "Social Studies: Decoding Cultural Rhythms in North American Societies through Stereoscopic Photography and Artificial Intelligence": 1 + "Social Studies: Studying Cultural Rhythms in North American Rural Societies through Stereoscopic Photography and Satellite Imaging": 1 + "Social Studies: Interpreting Cultural Rhythms in North American Societies through Stereoscopic Photography and Lidar Technology": 1 + "Social Studies: Analyzing North American Cultural Rhythms through Stereoscopic Photography using Augmented Reality": 1 + "Social Studies: Exploring Cultural Rhythms in North American Societies through Stereoscopic Photography and Photogrammetry Techniques.": 1 + "Solar System Sleuths: Unveiling Mysteries with Hubble Space Telescope": 1 + "Solar System Sleuths: Discovering Planets with Kepler Spacecraft": 1 + "Solar System Sleuths: Interstellar Exploration with James Webb Space Telescope": 1 + "Solar System Sleuths: Galactic Surveys with Sloan Digital Sky Survey": 1 + "Solar System Sleuths: Radio Astronomy Investigations with Very Large Array": 1 + "Solar System Sleuths: Probing Universe with Chandra X-ray Observatory": 1 + "Solar System Sleuths: Astrobiology Discoveries with Mars Rover": 1 + "Solar System Sleuths: Exoplanet Hunting with Transiting Exoplanet Survey Satellite": 1 + "Solar System Sleuths: Deep Space Imaging with Spitzer Space Telescope": 1 + "Solar System Sleuths: Unraveling Cosmos with Cosmological Redshift": 1 + "Music: Investigating Natural Rhythms with Djembe Drumming through Ableton Live Sampling": 1 + "Music: A Study of Natural Rhythms in Percussion through FL Studio Sampling Techniques": 1 + "Music: Exploring Natural Rhythms in Bongo Drums through Digital Sampling in Logic Pro X": 1 + "Music: Discovering Natural Rhythms in Tabla Beats through GarageBand's Digital Sampling": 1 + "Music: Analysis of Natural Rhythms in Taiko Drumming through Digital Sampling in Pro Tools": 1 + "Music: Examination of Natural Rhythms in Percussion using BeatMaker 3 for Digital Sampling": 1 + "Music: Natural Rhythms in Conga Drumming: A Deep Dive into Cubase Digital Sampling": 1 + "Music: Unraveling Natural Rhythms in Timpani through Digital Sampling Techniques in Reason": 1 + "Music: Investigating Natural Rhythms in Bodhrán Drumming through Digital Sampling in Serato DJ": 1 + "Music: A Study of Natural Rhythms in Marimba Beats through Digital Sampling in Bitwig Studio.": 1 + "Geography: Utilizing GIS to Map Traditional Sports and Games Globally": 1 + "Geography: Using Satellite Imagery to Map Traditional Sports and Games Globally": 1 + "Geography: Exploring GPS Technology in Mapping Traditional Sports and Games Globally": 1 + "Geography: Mapping Traditional Sports and Games Globally with Geospatial Analysis": 1 + "Geography: Applying Remote Sensing in Mapping Traditional Sports and Games Globally": 1 + "Geography: Using Geocoding in Mapping Traditional Sports and Games Globally": 1 + "Geography: Mapping Traditional Sports and Games Globally through Aerial Photography": 1 + "Geography: Utilizing Topographic Maps in Mapping Traditional Sports and Games Globally": 1 + "Geography: Mapping Traditional Sports and Games Globally using Geodatabase Techniques": 1 + "Geography: Using Spatial Analysis in Mapping Traditional Sports and Games Globally": 1 + "Geography: Mapping Traditional Sports and Games Globally using Cartographic Visualization Techniques": 1 + "Physical Education: Advanced Navigation Techniques with Compass in Outdoor Survival Skills": 1 + "Physical Education: Utilizing GPS Technology for Outdoor Survival and Nature Appreciation": 1 + "Physical Education: Outdoor Survival Skills with Flint and Steel Fire-Starting Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation with Basic First Aid Knowledge": 1 + "Physical Education: Knot-Tying Techniques for Outdoor Survival Skills and Nature Appreciation": 1 + "Physical Education: Introduction to Knife Handling in Outdoor Survival Skills and Nature Appreciation": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation: The Art of Shelter Building": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Foraging for Edible Plants": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation with Solar-Powered Technology Tools": 1 + "The Role of Quantum Entanglement in Quantum Teleportation: A Study on Its Applications in Quantum Computing": 1 + "Quantum Cryptography: The Unexplored Potential of Quantum Teleportation in Quantum Physics": 1 + "Quantum Teleportation and its Impact on Quantum Communication Networks: A Detailed Analysis": 1 + "Quantum Teleportation and Quantum Key Distribution: An Exploration of Their Interplay in Quantum Physics": 1 + "Enhancing Quantum Computing Through Quantum Teleportation: Investigation of 10 Different Algorithms": 1 + "The Application of Quantum Teleportation in Quantum Sensors: An In-depth Study": 1 + "Quantum Teleportation: The Catalyst for Advancements in Quantum Logic Gates": 1 + "Quantum Error Correction: The Unseen Role of Quantum Teleportation in Quantum Physics": 1 + "Quantum Teleportation: Its Influence on Quantum Tunneling and Potential Applications": 1 + "Quantum Teleportation in Quantum Physics: A Study on Its Application in Quantum Optics.": 1 + "Physical Education: Dance as a Form of Artistic Expression through Ballet Technique": 1 + "Physical Education: Exploring Dance as Artistic Expression using Contemporary Forms": 1 + "Physical Education: Dance as Artistic Expression: A Focus on Hip Hop Culture": 1 + "Physical Education: Dance as Artistic Expression: A Study of Jazz Techniques": 1 + "Physical Education: Dance as an Art Form: Utilization of Barre Technique": 1 + "Physical Education: Dance as Artistic Expression: An Exploration of Tap Dance Rhythms": 1 + "Physical Education: Dance as Artistic Expression: The Role of Choreographic Software": 1 + "Physical Education: Dance as Artistic Expression: Implementing Aerial Silk Techniques": 1 + "Physical Education: Dance as Artistic Expression: Using Motion Capture Technology ": 1 + "Physical Education: Dance as Artistic Expression: A Deep-Dive into Flamenco Technique": 1 + "Mathematics: Exploring Geometry in Art through the Lens of Euclidean Concepts using Pythagorean Theorem": 1 + "Mathematics: Incorporating Fractal Geometry in Art through Euclidean Concepts": 1 + "Mathematics: Analyzing Geometry in Art with Euclidean Concepts and the Aid of AutoCAD": 1 + "Mathematics: Geometry in Art through the Lens of Euclidean Concepts: A Focus on Golden Ratio": 1 + "Mathematics: Geometry in Art through the Lens of Euclidean Concepts using Geometric Transformations": 1 + "Mathematics: Geometry in Art through Euclidean Concepts and the Perspective of Linear Algebra": 1 + "Mathematics: Using Euclidean Concepts to Understand Geometry in Art with Geogebra": 1 + "Mathematics: Geometry in Art through Euclidean Concepts: An Examination through 3D Modelling": 1 + "Mathematics: Geometry in Art through the Lens of Euclidean Concepts with the Help of VR Technology": 1 + "Mathematics: Geometry in Art: A Study of Euclidean Concepts and Symmetry.": 1 + "Dissecting the Web: Exploring Packet Switching with Wireshark Network Protocol Analyzer": 1 + "In-Depth Analysis: Utilizing Packet Sniffing in Packet Switching with Tcpdump": 1 + "Exploring Network Dynamics: Packet Switching Study using Cisco Packet Tracer": 1 + "Unveiling the Web: ICMP Protocol and Packet Switching Analysis with Wireshark": 1 + "Decoding the Web: Packet Switching and ARP Protocol Analysis using Network Miner": 1 + "Tracing Packets: Network Protocol Analysis and Packet Switching using Traceroute": 1 + "Deep Dive into Web: Packet Switching Investigation using OSI Model and Wireshark": 1 + "Packet Switching Explained: Study of TCP/IP Model using Network Protocol Analyzer": 1 + "Web Dissection: Probing Packet Switching with Nmap Network Scanner": 1 + "Dissecting the Web: Exploring Packet Switching using DNS and Wireshark": 1 + "Language Arts: Analyzing Lyrics in Traditional Music Using Textual Analysis Software": 1 + "Language Arts: Exploring Traditional Music Lyrics with Semantic Analysis": 1 + "Language Arts: Utilizing Machine Learning for Traditional Music Lyrics Analysis": 1 + "Language Arts: Analyzing Lyrics in Traditional Music Through Sentiment Analysis Algorithms": 1 + "Language Arts: An In-depth Study of Traditional Music Lyrics using Concordance Tools": 1 + "Language Arts: Lyrics Dissection in Traditional Music with Text Mining Techniques": 1 + "Language Arts: Analyzing Traditional Music Lyrics via Natural Language Processing": 1 + "Language Arts: Traditional Music Lyrics Analysis Using Lexical Database Tools": 1 + "Language Arts: Analyzing Lyrics in Traditional Music with Computational Linguistics": 1 + "Language Arts: A Study of Traditional Music Lyrics through the Lens of Big Data Analytics": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw and Computational Chemistry Using VMD and NAMD Tools": 1 + "Organic Chemistry: Analyzing Molecules with ChemDraw and Computational Chemistry Using VMD and Gaussian Software": 1 + "Organic Chemistry: Understanding Molecular Structures with ChemDraw and Computational Chemistry Using VMD and PyMOL Tools": 1 + "Organic Chemistry: Investigating Molecules with ChemDraw and Computational Chemistry Using VMD and Jmol Tools": 1 + "Organic Chemistry: Examining Molecules with ChemDraw and Computational Chemistry Using VMD and Biovia Discovery Studio Tools": 1 + "Organic Chemistry: Decoding Molecules with ChemDraw and Computational Chemistry Using VMD and Spartan'18 Tools": 1 + "Organic Chemistry: Delving into Molecules with ChemDraw and Computational Chemistry Using VMD and AutoDock Tools": 1 + "Organic Chemistry: Discovering Molecules with ChemDraw and Computational Chemistry Using VMD and MolView Tools": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw and Computational Chemistry Using VMD and UCSF Chimera Tools": 1 + "Organic Chemistry: Unveiling Molecules with ChemDraw and Computational Chemistry Using VMD and Avogadro Software": 1 + "Philosophy and Artificial Intelligence: Ethical Implications of AI in the Digital Age": 1 + "Blockchain Technology: Philosophical and Ethical Implications in the Digital Age": 1 + "Philosophy and Internet of Things: Ethical Dilemmas in the Digital Age": 1 + "Biotechnology in Philosophy: Ethical Considerations in the Digital Age": 1 + "Virtual Reality: The Ethical and Philosophical Implications of this Technology in the Digital Age": 1 + "Philosophy and Cybersecurity: Ethical Challenges in the Digital Age": 1 + "Philosophy of Big Data: Ethical Implications in the Digital Age": 1 + "Autonomous Vehicles: Philosophical and Ethical Implications in the Digital Age": 1 + "Philosophy and Social Media: Ethical Considerations in the Digital Age": 1 + "Philosophy and Machine Learning: Ethical Implications in the Digital Age": 1 + "Decoding Brain Nutrition: An Insight into fMRI Technology": 1 + "Elementary Health: Understanding Brain Nutrition through PET Scans": 1 + "Brain Health and Nutrition: A Detailed Study Using EEG Technology": 1 + "Dissecting Brain Nutrition: A Deep Dive into Microscopy Techniques": 1 + "Nutritional Neuroscience: Exploration through Diffusion Tensor Imaging (DTI)": 1 + "Elemental Health: Understanding Brain Nutrition via Functional Near-Infrared Spectroscopy (fNIRS)": 1 + "Brain Nutrition Explained: A Study Using MEG Imaging Technology": 1 + "Elementary Health: A Focus on Brain Nutrition through Single-Photon Emission Computed Tomography (SPECT)": 1 + "Brain Health and Nutrition: Unraveling the Mysteries with Optical Imaging": 1 + "Elementary Health: A Study of Brain Nutrition Through the Lens of Transcranial Magnetic Stimulation (TMS)": 1 + "History: Evolution of Human Civilizations and the Impact of Fire": 1 + "History: The Role of Wheel in the Evolution of Human Civilizations": 1 + "History: Evolution of Human Civilizations: A Focus on Agriculture": 1 + "History: The Influence of Iron Tools on Human Civilizations' Development": 1 + "History: Evolution of Human Civilizations: Understanding the Role of The Printing Press": 1 + "History: The Internet and its Influence on the Evolution of Human Civilizations": 1 + "History: Evolution of Human Civilizations and the Development of Paper": 1 + "History: The Compass and Its Impact on the Evolution of Human Civilizations": 1 + "History: Evolution of Human Civilizations: A Deep Dive into the Use of Bronze Tools": 1 + "History: The Influence of Gunpowder on the Evolution of Human Civilizations": 1 + "Neuroscience: Exploring the Brain through EEG Technology and fMRI Scans": 1 + "Neuroscience: A Detailed Study of the Brain using EEG Technology and Diffusion Tensor Imaging": 1 + "Neuroscience: Decoding the Brain through EEG Technology and Neuroimaging": 1 + "Neuroscience: The Brain's Secrets Revealed through EEG Technology and Positron Emission Tomography": 1 + "Neuroscience: Understanding the Brain with EEG Technology and Magnetic Resonance Spectroscopy": 1 + "Neuroscience: The Brain - A Deep Dive through EEG Technology and Single-photon Emission Computerized Tomography": 1 + "Neuroscience: Unravelling the Brain using EEG Technology and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience: Brain Analysis through EEG Technology and Transcranial Magnetic Stimulation": 1 + "Neuroscience: Navigating the Brain through EEG Technology and Voxel-based Morphometry": 1 + "Neuroscience: The Brain - A Journey through EEG Technology and Magnetoencephalography": 1 + "Advanced Anatomy: Understanding Human Nutrition and Digestion through Electron Microscope Analysis": 1 + "Science Fundamentals: Nutrition and Digestion Comprehension using Spectrophotometry": 1 + "In-Depth Exploration of Nutrition and Digestion: A Molecular Approach using CRISPR Technology": 1 + "Nutritional Science: Detailed Digestion Analysis using Mass Spectrometry": 1 + "Advanced Biology: Understanding Nutrition and Digestion using DNA Sequencing": 1 + "Science Basics: Nutrition and Digestion Comprehension through Bioinformatics Analysis": 1 + "Exploring Human Nutrition and Digestion: A Microbiome Perspective via Metagenomic Sequencing": 1 + "Science in Detail: Understanding Nutrition and Digestion through Fluorescence Microscopy": 1 + "Comprehensive Nutrition: Digestion Study using Positron Emission Tomography (PET) Scanning": 1 + "Biological Science: Deep Dive into Nutrition and Digestion using Magnetic Resonance Imaging (MRI).": 1 + "Social Studies: Evaluating Twitter's Impact on Gender Equality in Sports History through Hashtag Activism": 1 + "Social Studies: The Role of Instagram Stories in Propagating Gender Equality in Sports History": 1 + "Social Studies: The Influential Power of YouTube Documentaries on Gender Equality in Sports History": 1 + "Social Studies: Facebook Live Discussions and Their Effect on Gender Equality in Sports History": 1 + "Social Studies: The Influence of TikTok Viral Campaigns on Gender Equality in Sports History": 1 + "Social Studies: The Impact of LinkedIn Networking on Gender Equality in Sports History": 1 + "Social Studies: How Snapchat Filters Promote Gender Equality in Sports History": 1 + "Social Studies: The Effect of Pinterest Inspiration Boards on Gender Equality in Sports History": 1 + "Social Studies: How Podcasts on Spotify Advocate for Gender Equality in Sports History": 1 + "Social Studies: The Role of Virtual Reality Simulations in Enhancing Gender Equality in Sports History": 1 + "Probability & Statistics: Exploring Chance with Random Variables using SAS and Monte Carlo Simulation": 1 + "Probability & Statistics: Analyzing Chance with Random Variables in SAS: An Introduction to Hypothesis Testing": 1 + "Probability & Statistics: A Deep Dive into Random Variables using SAS and Regression Analysis": 1 + "Probability & Statistics: Learning to Predict Outcomes with Random Variables in SAS and R Programming": 1 + "Probability & Statistics: Deciphering Chance with Random Variables using SAS and Python's NumPy": 1 + "Probability & Statistics: A Practical Approach to Random Variables in SAS using Bayesian Inference": 1 + "Probability & Statistics: Unraveling Chance with Random Variables in SAS using Machine Learning Algorithms": 1 + "Probability & Statistics: A Comprehensive Study of Chance with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Mastering Probability Distributions with Random Variables in SAS and Excel": 1 + "Probability & Statistics: Understanding Chance with Random Variables in SAS: An Insight into Descriptive Statistics": 1 + "Neuroscience Foundations: Applying Diffusion Tensor Imaging in fMRI for Human Brain Exploration": 1 + "Neuroscience Foundations: Using fMRI and Electroencephalography for Advanced Human Brain Exploration": 1 + "Neuroscience Foundations: Incorporating fMRI with Neurofeedback in Human Brain Exploration": 1 + "Neuroscience Foundations: Utilizing fMRI and Positron Emission Tomography in Human Brain Exploration": 1 + "Neuroscience Foundations: Exploring the Human Brain using fMRI and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience Foundations: Merging fMRI and Machine Learning for Human Brain Exploration": 1 + "Neuroscience Foundations: Integrating fMRI with Transcranial Magnetic Stimulation in Human Brain Exploration": 1 + "Neuroscience Foundations: Combining fMRI and Magnetoencephalography in Human Brain Investigation": 1 + "Neuroscience Foundations: Coupling fMRI with Single-Photon Emission Computed Tomography in Human Brain Exploration": 1 + "Neuroscience Foundations: A Multi-modal Approach using fMRI and Event-Related Potential in Human Brain Exploration": 1 + "Social Studies: The Impact of GIS Mapping on Community Games in Varied Terrains ": 1 + "Analyzing the Effect of Satellite Imagery on Terrain-Based Community Games": 1 + "GIS and Remote Sensing: Understanding Terrain Impact on Community Games": 1 + "The Role of GPS Technology in Terrain Influence on Community Games": 1 + "Topography and Community Games: A Study through Lidar Technology": 1 + "Digital Elevation Models (DEM) and their Impact on Terrain-Based Community Games": 1 + "3D Terrain Visualization and Its Influence on Community Games": 1 + "Utilizing Drone Technology to Evaluate Terrain Impact on Community Games": 1 + "The Influence of Geospatial Analysis on Terrain-Based Community Games": 1 + "Social Studies: Using Topographic Maps to Understand Terrain Impact on Community Games": 1 + "Computer Science: Mastering Python in the Art of Coding and Algorithm Design": 1 + "Computer Science: Exploring JavaScript through Coding and Algorithm Design": 1 + "Computer Science: Utilizing C++ in Coding and Algorithm Design": 1 + "Computer Science: Harnessing Java for Coding and Algorithm Design": 1 + "Computer Science: The Art of Coding and Algorithm Design with Data Structures": 1 + "Computer Science: The Art of Coding and Algorithm Design using ReactJS": 1 + "Computer Science: The Art of Coding and Algorithm Design: An Introduction to Machine Learning": 1 + "Computer Science: The Art of Coding and Algorithm Design in Swift": 1 + "Computer Science: The Art of Coding and Algorithm Design: A Deep Dive into Artificial Intelligence": 1 + "Computer Science: The Art of Coding and Algorithm Design with SQL.": 1 + "Mathematics: Understanding Climate Change Through Stats, Graphs, and Regression Analysis": 1 + "Mathematics: Deciphering Climate Change with Statistical Software and Graphical Interpretation": 1 + "Mathematics: Climate Change Insights Through SPSS and Graphical Data": 1 + "Mathematics: Utilizing Python for Climate Change Analysis Through Stats and Graphs": 1 + "Mathematics: Understanding Climate Change Through Probability Theory, Stats, and Graphs": 1 + "Mathematics: Climate Change Exploration Through Excel, Statistics, and Graphs": 1 + "Mathematics: Climate Change Prediction Using Linear Regression, Stats, and Graphs": 1 + "Mathematics: Understanding Climate Change Through R Programming, Statistics, and Graphs": 1 + "Mathematics: Climate Change Comprehension Through MATLAB, Stats, and Graphs": 1 + "Mathematics: Unraveling Climate Change Through Bayesian Statistics, Graphs, and Data Visualization Tools.": 1 + "Exploring Cochlear Function: A Detailed Study using Pure-Tone Audiometry and Otoscope": 1 + "Sound Perception Analysis: Pure-Tone Audiometry and Otoacoustic Emissions Testing in Auditory Biology": 1 + "The Use of Tympanometry in Understanding Auditory Perception: A Pure-Tone Audiometry Approach": 1 + "Auditory Brainstem Response in the Biology of Hearing: Pure-Tone Audiometry as a Diagnostic Tool": 1 + "The Role of Bone Conduction in Auditory Perception: A Study using Pure-Tone Audiometry": 1 + "Evoked Potential Audiometry in the Biology of Hearing: A Deep Dive into Auditory Perception": 1 + "The Impact of Middle Ear Analysis on Understanding Auditory Perception using Pure-Tone Audiometry": 1 + "The Use of Audiograms in Auditory Biology: A Deep Dive into Pure-Tone Audiometry": 1 + "Speech Audiometry in Understanding Auditory Perception: A Pure-Tone Audiometry Approach": 1 + "The Role of Otolaryngology in the Biology of Hearing: Exploring Pure-Tone Audiometry Techniques.": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Django Framework Deep Dive": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Unraveling Multi-threading": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Exploring Flask Microframework": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: NumPy for Scientific Computing": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Asynchronous Programming with asyncio": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Pygame for Game Development": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Data Visualization with Matplotlib": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Web Scraping with BeautifulSoup": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Machine Learning with Scikit-Learn": 1 + "Tracing Packets: Deep Dive into Network Protocol Analysis and Packet Switching using Traceroute and Wireshark": 1 + "Analyzing Packets: Detailed Study of Network Protocol and Packet Switching with Traceroute and Tcpdump": 1 + "Network Mastery: Packet Tracing, Network Protocol Analysis, and Switching with Traceroute and Nmap": 1 + "Traceroute and Beyond: Comprehensive Analysis of Network Protocol and Packet Switching using Ping": 1 + "Advanced Networking: In-depth Analysis of Packet Switching and Network Protocol using Traceroute and OpenSSL": 1 + "Packet Tracing Pro: Exploring Network Protocol Analysis and Packet Switching using Traceroute and Netcat": 1 + "Next-Level Networking: Understanding Packet Switching and Network Protocol Analysis with Traceroute and Nessus": 1 + "Tracing Packets: A Practical Approach to Network Protocol Analysis and Packet Switching using Traceroute and Snort": 1 + "Tracing and Tracking: Network Protocol Analysis and Packet Switching Mastery using Traceroute and Splunk": 1 + "Packet Pursuit: Network Protocol Analysis and Packet Switching with Traceroute and SolarWinds": 1 + "Introduction to Philosophy: A Deep Dive into Socratic Method": 1 + "Understanding Kantian Ethics: An Introductory Philosophy Course": 1 + "Exploring Basic Concepts of Philosophy through the Lens of Existentialism": 1 + "Introduction to Philosophy: The Role of Logical Reasoning": 1 + "A Beginner's Guide to Philosophy: Exploring Basic Concepts using the Hegelian Dialectic": 1 + "Introduction to Philosophy: Unpacking the Theory of Forms": 1 + "Philosophical Foundations: A Focus on Phenomenology": 1 + "Introduction to Philosophy: Embracing Empiricism and its Role": 1 + "Analyzing Metaphysics: An Introductory Course to Philosophy": 1 + "Introduction to Philosophy: Studying Basic Concepts through Epistemology.": 1 + "Computer Science: Utilizing Max for Live in Ableton to Create Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Designing Amplifier Modulation Beats in Synthesizers using Ableton Live and MIDI Controllers": 1 + "Computer Science: Audio Processing in Ableton Live for Creating Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Application of Ableton Live's Operator Instrument in Creating Amplifier Modulation Beats": 1 + "Computer Science: Using Ableton's Wavetable in Generating Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Algorithms for Amplifier Modulation Beats Creation in Synthesizers using Ableton Live": 1 + "Computer Science: Creating Amplifier Modulation Beats in Synthesizers using Ableton Live and VST Plugins": 1 + "Computer Science: Advanced Techniques in Ableton Live for Amplifier Modulation Beats Creation in Synthesizers": 1 + "Computer Science: Exploring Drum Racks in Ableton Live for Amplifier Modulation Beats in Synthesizers": 1 + "Computer Science: Applying Ableton Live's Envelope Follower in Crafting Amplifier Modulation Beats in Synthesizers.": 1 + "Art: The Art of Python Coding in Information Technology": 1 + "Art: The Art of Java Script in Information Technology": 1 + "Art: The Art of HTML Coding in Website Development": 1 + "Art: The Art of Ruby on Rails in Website Development": 1 + "Art: The Art of C++ in Game Development": 1 + "Art: The Art of SQL in Database Management": 1 + "Art: The Art of PHP in Web Application Development": 1 + "Art: The Art of Swift in iOS App Development": 1 + "Art: The Art of C# in Windows Application Development": 1 + "Art: The Art of R in Data Analysis and Visualization": 1 + "Chemistry: The Science of Art Materials - Understanding Oil Paint Components": 1 + "Chemistry: The Science of Art Materials - The Role of pH in Watercolor Painting": 1 + "Chemistry: The Science of Art Materials - Exploring Acrylic Paint Composition": 1 + "Chemistry: The Science of Art Materials - The Science Behind 3D Printing Art Materials": 1 + "Chemistry: The Science of Art Materials - The Chemistry of Clay in Pottery": 1 + "Chemistry: The Science of Art Materials - Analyzing Metal Alloys in Sculpture": 1 + "Chemistry: The Science of Art Materials - Molecular Structures in Textile Dyes": 1 + "Chemistry: The Science of Art Materials - The Application of Nanotechnology in Art Preservation": 1 + "Chemistry: The Science of Art Materials - The Impact of Temperature on Art Materials": 1 + "Chemistry: The Science of Art Materials - The Role of Polymers in Synthetic Art Materials.": 1 + "Art: Exploring Stage Design and Construction with CAD Software": 1 + "Art: Delving into Stage Design and Construction Utilizing 3D Printing": 1 + "Art: Mastering Stage Design and Construction with Laser Cutting Technology": 1 + "Art: An In-depth Exploration of Stage Design and Construction using Virtual Reality Tech": 1 + "Art: The Use of CNC Routers in Stage Design and Construction": 1 + "Art: Stage Design and Construction: A Focus on Welding Techniques": 1 + "Art: The Art of Stage Design and Construction through Augmented Reality": 1 + "Art: Exploring Stage Design and Construction with Green Screen Technology": 1 + "Art: Stage Design and Construction: Unleashing Creativity with Projection Mapping": 1 + "Art: The Role of Acoustics in Stage Design and Construction.": 1 + "Music Appreciation: Understanding Classical Compositions: A Deep Dive into Schubert's Lieder through Music Theory ": 1 + "Music Appreciation: Employing Audio Analysis to Understand Schubert's Lieder ": 1 + "Music Appreciation: Exploring Schubert's Lieder through the Lens of Historical Context ": 1 + "Music Appreciation: Decoding Schubert's Lieder with Digital Sheet Music ": 1 + "Music Appreciation: Dissecting Schubert's Lieder through Melodic Patterns ": 1 + "Music Appreciation: Utilizing Music Transcription Software to Understand Schubert's Lieder ": 1 + "Music Appreciation: A Comprehensive Study of Schubert's Lieder through the Use of MIDI Technology ": 1 + "Music Appreciation: Unraveling Schubert's Lieder through the Concept of Romanticism ": 1 + "Music Appreciation: Understanding Schubert's Lieder through the Context of Song Cycles ": 1 + "Music Appreciation: Appreciating Schubert's Lieder through the Study of Lyric Poetry.": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars using Grip Enhancing Chalk ": 1 + "The Role of Balance Beams in Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars": 1 + "Advanced Techniques in Physical Education: Gymnastics and Body Control: Uneven Bars and the Springboard": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars and the Spotting Belt ": 1 + "Harnessing Core Strength: Physical Education, Gymnastics and Body Control on the Uneven Bars": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars using Biomechanics ": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars with the Aid of Swing Trainers": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars using 3D Motion Analysis": 1 + "The Science of Momentum in Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars": 1 + "Physical Education: Gymnastics and Body Control: A Focus on Uneven Bars and the Use of Safety Mats": 1 + "Music Appreciation: The Evolution of Genres - The Impact of the Akai MPC on Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Digital Audio Workstations in Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - The Influence of Auto-Tune on the Rise of Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques: A Focus on Audio Looping": 1 + "Music Appreciation: The Evolution of Genres - Exploring the Role of the Roland TR-808 in Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques: The Impact of Beat Making Software": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques: Understanding the Influence of the MIDI Interface": 1 + "Music Appreciation: The Evolution of Genres - The Significance of the SP-1200 Sampler in the Rise of Sampling Techniques": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques: The Emergence of Digital Sampling": 1 + "Music Appreciation: The Evolution of Genres - The Rise of Sampling Techniques: The Use of Synthesizers in Modern Music Genres": 1 + "Coding Crusaders: Exploring Cybersecurity with Python": 1 + "Adventure in Computer Science: Mastering Java for Cybersecurity": 1 + "Coding Crusaders: Cybersecurity Essentials with SQL Injection": 1 + "Adventure in Computer Science: Unmasking Cybersecurity with Network Protocols": 1 + "Coding Crusaders: Journey into Cybersecurity with Cryptography": 1 + "Adventure in Computer Science: Cybersecurity Explored through Firewall Technology": 1 + "Coding Crusaders: Cybersecurity Intricacies with Data Encryption": 1 + "Adventure in Computer Science: Cybersecurity Defenses with Antivirus Software": 1 + "Coding Crusaders: Unlocking Cybersecurity with Digital Certificates": 1 + "Adventure in Computer Science: Cybersecurity Explored with Ethical Hacking.": 1 + "Probability Essentials: Understanding Chance and Random Variables Through SPSS Using Hypothesis Testing": 1 + "Probability Essentials: Unveiling Chance and Random Variables with SPSS and the Binomial Theorem": 1 + "Probability Essentials: Mastering Chance and Random Variables Through SPSS and R Programming": 1 + "Probability Essentials: A Deep Dive into Chance and Random Variables using SPSS and Regression Analysis": 1 + "Probability Essentials: Exploring Chance and Random Variables Through SPSS and Excel Data Analysis": 1 + "Probability Essentials: Acquiring Knowledge on Chance and Random Variables Through SPSS and Python": 1 + "Probability Essentials: Studying Chance and Random Variables Through SPSS and Monte Carlo Simulation": 1 + "Probability Essentials: Discovering Chance and Random Variables Through SPSS and Bayesian Inference": 1 + "Probability Essentials: A Journey Through Chance and Random Variables Using SPSS and Machine Learning Algorithms": 1 + "Probability Essentials: Demystifying Chance and Random Variables With SPSS and MATLAB.": 1 + "History of Music: The Impact of the Electric Guitar on Rock 'n' Roll Evolution": 1 + "The Amplification Revolution: Studying the Evolution of Guitar Genres through the Lens of Electric Guitar Technology": 1 + "Exploring Music History: The Role of Distortion Pedals in Guitar Genre Evolution": 1 + "Sonic Evolution: The Influence of Loop Pedals on Guitar-Based Music Genres": 1 + "Music History: How Guitar Pickups Shaped the Progression of Genres": 1 + "The Progression of Guitar Music: The Influence of Multi-Effects Processors": 1 + "History of Music: Understanding Genre Evolution through the Impact of Guitar Synthesizers": 1 + "Music History: The Impact of the Capo on the Evolution of Guitar Genres": 1 + "Studying Music through Technology: The Influence of Guitar Tuners on Genre Evolution": 1 + "The Evolution of Guitar Genres: A Study on the Impact of Slide Guitar Technology": 1 + "Machine Learning: Predictive Models with Python using TensorFlow": 1 + "Machine Learning: Implementing Predictive Models with Python and Scikit-Learn": 1 + "Machine Learning: Predictive Models with Python and Keras": 1 + "Machine Learning: Predictive Models with Python using Decision Trees": 1 + "Machine Learning: Building Predictive Models with Python and PyTorch": 1 + "Machine Learning: Predictive Models with Python utilizing Neural Networks": 1 + "Machine Learning: Predictive Models with Python and Pandas ": 1 + "Machine Learning: Predictive Models with Python featuring Support Vector Machines": 1 + "Machine Learning: Predictive Models with Python using XGBoost": 1 + "Machine Learning: Predictive Models with Python and Matplotlib for Data Visualization": 1 + "Economics of Music: Analyzing the Sound Industry with Big Data Using Python": 1 + "Machine Learning in Music: Analyzing the Sound Industry with Big Data Tools": 1 + "Economics of Music: Utilizing Blockchain Technology in Analyzing the Sound Industry": 1 + "Economics of Music: Exploring the Sound Industry with Big Data and Artificial Intelligence": 1 + "Music Industry Analysis: Leveraging Big Data and Predictive Analytics": 1 + "Economics of Music: A Deep Dive into the Sound Industry with Big Data and Cloud Computing": 1 + "Economics of Music: Sound Industry Analysis using Big Data and Data Mining Techniques": 1 + "Big Data and the Music Industry: A Study on Economics of Music using Hadoop": 1 + "Economics of Music: Harnessing the Power of Big Data and Internet of Things in the Sound Industry": 1 + "Data Science in Music: An Economic Analysis of the Sound Industry using Big Data and R Programming.": 1 + "Geography and Gastronomy: Exploring Regional Delicacies Around the World Through Satellite Imagery": 1 + "Geospatial Analysis of Regional Delicacies: A Global Culinary Journey": 1 + "Geography: Unearthing Regional Delicacies Around the World Through GIS Technology": 1 + "Global Delicacies: A Virtual Tour with Google Earth": 1 + "Geography: Mapping Regional Delicacies Around the World with Drones": 1 + "Culinary Geography: Navigating Global Delicacies with GPS Technology": 1 + "Geography and Gastronomy: A Satellite Overview of Regional Delicacies": 1 + "Geography: Drone-assisted Exploration of Regional Delicacies Around the World": 1 + "Geospatial Culinary Journey: Regional Delicacies Around the World": 1 + "Geography: A Virtual Reality Tour of Regional Delicacies Around the Globe": 1 + "History: The Role of Plow in the Evolution of Plant Cultivation": 1 + "History: Irrigation Systems and the Evolution of Plant Cultivation": 1 + "History: The Impact of Crop Rotation on the Evolution of Plant Cultivation": 1 + "History: The Evolution of Plant Cultivation: A Look at Fertilizers": 1 + "History: Greenhouses and their Impact on the Evolution of Plant Cultivation": 1 + "History: The Evolution of Plant Cultivation: Understanding the Role of Pesticides": 1 + "History: Genetic Engineering and the Evolution of Plant Cultivation": 1 + "History: The Effect of the Scythe in the Evolution of Plant Cultivation": 1 + "History: The Evolution of Plant Cultivation: The Significance of Seed Drills": 1 + "History: Mechanization and its Influence on the Evolution of Plant Cultivation": 1 + "Language Arts: Interpreting Financial News with Excel Spreadsheets Using PivotTables": 1 + "Language Arts: Understanding Financial News through Excel Spreadsheets and VLOOKUP Function": 1 + "Language Arts: Interpreting Financial News with Excel Spreadsheets and Power Query": 1 + "Language Arts: Analyzing Financial News using Excel Spreadsheets and Macros": 1 + "Language Arts: Deciphering Financial News with Excel Spreadsheets and Conditional Formatting": 1 + "Language Arts: Interpreting Financial News with Excel Spreadsheets and Data Validation Tools": 1 + "Language Arts: Reading Financial News with Excel Spreadsheets and the SUMIF Function": 1 + "Language Arts: Evaluating Financial News with Excel Spreadsheets and Charting Tools": 1 + "Language Arts: Interpreting Financial News with Excel Spreadsheets and Solver Add-in": 1 + "Language Arts: Processing Financial News with Excel Spreadsheets and the INDEX MATCH Function": 1 + "Elementary Philosophy: Exploring the Aesthetics of Sound and Visual Arts through Adobe Photoshop": 1 + "A Study of Aesthetics in Sound and Visual Arts: An Introduction to Logic Pro X": 1 + "Elementary Philosophy: The Aesthetics of Sound and Visual Arts - A Deep Dive into Adobe Illustrator": 1 + "The Aesthetics of Sound and Visual Arts: An Elementary Philosophy Course on Autodesk Maya": 1 + "Understanding the Aesthetics of Sound and Visual Arts: An Elementary Philosophy Course with a Focus on Pro Tools": 1 + "Elementary Philosophy: The Aesthetics of Sound and Visual Arts - A Comprehensive Study with Final Cut Pro": 1 + "The Aesthetics of Sound and Visual Arts: Elementary Philosophy through the Lens of Adobe Premiere Pro": 1 + "Sound and Visual Arts Aesthetics: A Philosophical Approach using Ableton Live": 1 + "The Philosophy of Aesthetics in Sound and Visual Arts: An Introduction to Adobe After Effects": 1 + "Elementary Philosophy: The Aesthetics of Sound and Visual Arts - A Study Using DaVinci Resolve.": 1 + "History: Navigating the Age of Exploration with Compass": 1 + "History: The Age of Exploration and the Impact of Astrolabe": 1 + "History: The Printing Press and its Role in the Age of Exploration": 1 + "History: The Sextant: A Tool of Navigators in the Age of Exploration": 1 + "History: The Age of Exploration: Unearthing the Power of Gunpowder": 1 + "History: Tracing the Age of Exploration through the Lens of Cartography": 1 + "History: The Galleon Ships and the Age of Exploration": 1 + "History: The Age of Exploration: A Deep Dive into the Use of Quadrants": 1 + "History: The Telescope's Impact during the Age of Exploration": 1 + "History: Understanding the Age of Exploration through the Spread of Currency": 1 + "Neuroscience: Exploring Brain Structures Using Functional MRI and Diffusion Tensor Imaging": 1 + "Neuroscience: Analyzing Brain Structures with Functional MRI and Positron Emission Tomography": 1 + "Neuroscience: An In-depth Study of Brain Structures Using Functional MRI and Electroencephalography": 1 + "Neuroscience: Comprehending Brain Structures Using Functional MRI and Machine Learning Algorithms": 1 + "Neuroscience: Understanding Brain Structures through Functional MRI and Neuronavigation Systems": 1 + "Neuroscience: Examining Brain Structures Using Functional MRI and Transcranial Magnetic Stimulation": 1 + "Neuroscience: Investigating Brain Structures with Functional MRI and Neurofeedback Techniques": 1 + "Neuroscience: Decoding Brain Structures Using Functional MRI and Brain-Computer Interface": 1 + "Neuroscience: Assessing Brain Structures Through Functional MRI and Magnetoencephalography": 1 + "Neuroscience: Mapping Brain Structures Utilizing Functional MRI and Resting State Connectivity Analysis.": 1 + "Home Economics: Boosting Emotional Well-being through Balanced Nutrition Using Nutrient-Rich Superfoods": 1 + "Home Economics: Utilizing Meal Planning Technology for Emotional Well-being through Balanced Nutrition": 1 + "Home Economics: Emotional Well-being through Balanced Nutrition: A Focus on Macronutrients": 1 + "Home Economics: Emotional Well-being through Balanced Nutrition with the Glycemic Index": 1 + "Home Economics: Emotional Well-being through Balanced Nutrition: A Comprehensive Guide to Vitamins and Minerals ": 1 + "Home Economics: Understanding Emotional Well-being through Balanced Nutrition with Dietary Software": 1 + "Home Economics: Emotional Well-being through Balanced Nutrition: Role of Probiotics and Prebiotics": 1 + "Home Economics: Embracing Emotional Well-being through Balanced Nutrition and Intermittent Fasting": 1 + "Home Economics: Emotional Well-being through Balanced Nutrition: The Impact of Polyphenols": 1 + "Home Economics: Boosting Emotional Well-being through Balanced Nutrition: A Study on Whole Food Plant-Based Diets.": 1 + "Application of IBM Q Experience in Enhancing Quantum Computing Through Quantum Teleportation: An Examination of 10 Different Algorithms": 1 + "Utilizing Python for Quantum Teleportation in Quantum Computing: In-depth Study of 10 Unique Algorithms": 1 + "Advancing Quantum Computing Through Quantum Teleportation Using Qiskit: Analysis of 10 Alternative Algorithms": 1 + "Enhancement of Quantum Computing Through Quantum Teleportation via Quantum Circuit Design: Exploration of 10 Distinct Algorithms": 1 + "Improving Quantum Computing Through Quantum Teleportation: An Investigation into 10 Algorithms Using Quantum Entanglement": 1 + "Quantum Computing Improvement Through Quantum Teleportation: A Review of 10 Algorithms and the Use of Quantum Gates": 1 + "Exploiting Quantum Error Correction in Quantum Computing Through Quantum Teleportation: Evaluation of 10 Different Algorithms": 1 + "Quantum Computing Enhancement Through Quantum Teleportation: Detailed Study of 10 Algorithms Using Quantum Superposition Principle": 1 + "Quantum Computing Progress Through Quantum Teleportation Utilizing Tensor Networks: Investigation of 10 Diverse Algorithms": 1 + "Strengthening Quantum Computing Using Quantum Teleportation and Quantum Machine Learning: A Study of 10 Different Algorithms": 1 + "Biomimicry, 3D Printing and Biodegradable Materials: Innovative Solution for Sustainable Tennis Rackets ": 1 + "Biomimicry and Biodegradable Polymers: Sustainable Soccer Balls Design and Production ": 1 + "Biomimicry, Nanotechnology, and Biodegradable Materials: An Approach to Sustainable Ski Equipment ": 1 + "Biomimicry in Synthesizing Biodegradable Materials: Crafting Sustainable Golf Clubs ": 1 + "Biomimicry, Bioplastics, and Biodegradable Materials: Developing Sustainable Baseball Bats ": 1 + "Biomimicry, Bio-composites, and Biodegradable Materials: Sustainable Solutions for Cycling Helmets ": 1 + "Biomimicry, CAD Modelling, and Biodegradable Materials: Designing Sustainable Hockey Sticks ": 1 + "Biomimicry, Bio-fabrication, and Biodegradable Materials: Sustainable Practices for Boxing Gloves ": 1 + "Biomimicry, Recycled Materials, and Biodegradable Materials: The Future of Sustainable Skateboards ": 1 + "Biomimicry, Plant-based Resin, and Biodegradable Materials: Eco-friendly Approaches to Surfboard Development": 1 + "Elementary Astronomy: Mapping Mars' Orbit using Celestial Navigation and Theodolite": 1 + "Elementary Astronomy: Plotting Venus' Path using Celestial Navigation and Stellarium Software": 1 + "Elementary Astronomy: Tracing Jupiter's Journey using Celestial Navigation and Astrolabe": 1 + "Elementary Astronomy: Charting Saturn's Course using Celestial Navigation and Sextant": 1 + "Elementary Astronomy: Tracking Uranus' Transit using Celestial Navigation and Star Chart App": 1 + "Elementary Astronomy: Decoding Neptune's Nautical Mile using Celestial Navigation and Quadrant": 1 + "Elementary Astronomy: Scoping Mercury's Movement using Celestial Navigation and Telescope": 1 + "Elementary Astronomy: Surveying Pluto's Progress using Celestial Navigation and Backstaff": 1 + "Elementary Astronomy: Measuring Earth's Ecliptic using Celestial Navigation and Cross Staff": 1 + "Elementary Astronomy: Calculating Comet's Course using Celestial Navigation and Astrometric Binoculars": 1 + "Science: Ecosystems and Evolution: A Worldwide View Through Microscopy": 1 + "DNA Sequencing in Understanding Ecosystems and Evolution: A Worldwide View": 1 + "Satellite Imaging: A Tool in Studying Ecosystems and Evolution: A Worldwide View": 1 + "Geographic Information Systems (GIS) and Global Ecosystems and Evolution": 1 + "Radio Telemetry in Monitoring Ecosystems and Evolution: A Worldwide View": 1 + "Studying Ecosystems and Evolution: A Worldwide View Through the Lens of Carbon Dating": 1 + "Science: Ecosystems and Evolution: A Worldwide View Using Drone Technology": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics": 1 + "Remote Sensing Technology: A New Perspective on Ecosystems and Evolution": 1 + "Ecosystems and Evolution: A Worldwide View With the Use of Bioinformatics.": 1 + "English: Storytelling and Narrative: Exploring the Impact of Mobile Apps through Gamification": 1 + "English: Storytelling and Narrative: An Analysis of Mobile Apps Using Augmented Reality Technology": 1 + "English: Storytelling and Narrative: The Role of Chatbots in Mobile Apps": 1 + "English: Storytelling and Narrative: A Study on Mobile Apps Influence through Text-to-Speech Technology": 1 + "English: Storytelling and Narrative: The Influence of Mobile Apps and Blockchain Technology": 1 + "English: Storytelling and Narrative: The Impact of Mobile Apps Using Artificial Intelligence": 1 + "English: Storytelling and Narrative: A Study on Mobile Apps Influence through Virtual Reality": 1 + "English: Storytelling and Narrative: The Role of Cloud Computing in Mobile Apps": 1 + "English: Storytelling and Narrative: A Study on Mobile Apps Influence through Internet of Things": 1 + "English: Storytelling and Narrative: The Impact of Mobile Apps Using Machine Learning": 1 + "English: Utilizing Text Mapping in English with Word Clouds: Critical Thinking and Textual Analysis": 1 + "English: Harnessing Mind-mapping Software for Text Mapping in English: Critical Thinking and Textual Analysis": 1 + "English: Incorporating Semantic Analysis Tools in Text Mapping: Critical Thinking in English": 1 + "English: Utilizing Text Mapping with Concordance Software in English: Critical Thinking and Textual Analysis": 1 + "English: Applying Google Ngram Viewer in Text Mapping for English: Critical Thinking and Textual Analysis": 1 + "English: Leveraging Text Mining Tools in Text Mapping: Critical Thinking and Textual Analysis in English": 1 + "English: Text Mapping in English using Natural Language Processing: Critical Thinking and Textual Analysis": 1 + "English: Utilizing Text Mapping with Python Programming in English: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping in English using Text Analytics: Critical Thinking and Textual Analysis": 1 + "English: Deploying Keyword Extraction Techniques in Text Mapping: Critical Thinking and Textual Analysis in English.": 1 + "Economics of Music: The Impact of Spotify Streaming on the Supply and Demand in the Music Industry": 1 + "The Economic Shift: How Apple Music Alters the Supply and Demand Structure of the Music Industry": 1 + "SoundCloud and its Economic Influence: A Deep Dive into the Supply and Demand of the Music Industry": 1 + "Pandora's Box: The Economic Implications of Music Streaming Apps on the Music Industry's Supply and Demand": 1 + "The Tidal Wave: How Tidal's HiFi Technology Changes the Music Industry's Economic Landscape": 1 + "The Economic Symphony: Examining YouTube's Role in Supply and Demand of the Music Industry": 1 + "The Power of Playlist: How Curated Playlists on Spotify Influence the Music Industry's Economics": 1 + "Amazon Music and the Economics of the Music Industry: A Comprehensive Look at Supply and Demand": 1 + "The Blockchain Beat: The Impact of Blockchain Technology on Economics of the Music Industry": 1 + "The Sound of Economics: Unraveling the Influence of Deezer's Flow Feature on Music Industry's Supply and Demand.": 1 + "Economics 150: The Impact of Digital Streaming on the Music Industry": 1 + "Economics 150: The Role of Blockchain Technology in the Music Industry": 1 + "Economics 150: The Effects of Mobile Technology on the Music Industry": 1 + "Economics 150: The Influence of Artificial Intelligence on the Music Industry": 1 + "Economics 150: Understanding the Economics of Copyright Laws in the Music Industry": 1 + "Economics 150: The Impact of Social Media Marketing in the Music Industry": 1 + "Economics 150: The Economics of Live Performances in the Music Industry": 1 + "Economics 150: The Role of Digital Platforms in the Music Industry Revenue": 1 + "Economics 150: The Impact of E-commerce on the Music Industry": 1 + "Economics 150: The Economics of Music Licensing and Royalties": 1 + "Economics 150: The Impact of Virtual Reality on Music Industry Economics.": 1 + "Art: Painting Seascapes of the Maritime World Using Acrylics": 1 + "Art: Techniques for Brushwork in Maritime Seascape Paintings": 1 + "Art: Incorporating Light and Shadow in Maritime Seascape Paintings": 1 + "Art: Painting Maritime Seascapes with Oil Pastels": 1 + "Art: Creating Texture in Maritime Seascape Paintings Using Palette Knives": 1 + "Art: Digital Painting Techniques for Maritime Seascapes": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color": 1 + "Art: The Role of Perspective in Painting Maritime Seascapes": 1 + "Art: Painting Maritime Seascapes: Watercolor Techniques": 1 + "Art: Exploring Impressionism through Maritime Seascape Paintings": 1 + "Physics: Studying Light Refraction and Color Spectrum with Laser Holography and Prisms": 1 + "Physics: In-depth Analysis of Light and Color using Laser Holography and Spectrometry": 1 + "Physics: Exploring the Science of Light and Color through Laser Holography and Photonic Crystals": 1 + "Physics: Advanced Study of Light and Color using Laser Holography and Fiber Optics": 1 + "Physics: Unveiling the Mysteries of Light and Color with Laser Holography and Quantum Dots": 1 + "Physics: The Science of Light and Color: Exploring Waves and Particles with Laser Holography": 1 + "Physics: Understanding Chromatic Dispersion and Color with Laser Holography Technology": 1 + "Physics: The Science of Light and Color: An Exploration of Polarization with Laser Holography": 1 + "Physics: Probing the Secrets of Light and Color Using Laser Holography and Interferometry": 1 + "Physics: Exploring the Science of Light and Color through Laser Holography and Diffraction Gratings": 1 + "Practical Mathematics: Using Stoichiometry and Redox Reactions to Balance Chemical Equations": 1 + "Practical Mathematics: Balancing Chemical Reactions with Stoichiometry using Mole-to-Mole Ratios": 1 + "Practical Mathematics: Utilizing Stoichiometry and the Law of Conservation of Mass in Balancing Chemical Reactions": 1 + "Practical Mathematics: Balancing Chemical Reactions using Stoichiometry and Molar Mass Concept ": 1 + "Practical Mathematics: Balancing Chemical Reactions and Yield Predictions using Stoichiometry": 1 + "Practical Mathematics: Implementing Stoichiometry and Reaction Stoichiometry in Balancing Chemical Reactions": 1 + "Practical Mathematics: Balancing Chemical Reactions using Stoichiometry and the Limiting Reactant Concept": 1 + "Practical Mathematics: Utilizing Stoichiometry and Empirical Formulae for Balancing Chemical Reactions": 1 + "Practical Mathematics: Application of Stoichiometry and Atom Economy in Balancing Chemical Reactions": 1 + "Practical Mathematics: Balancing Chemical Reactions using Stoichiometry with the aid of the Periodic Table.": 1 + "Science: Exploring the Universe Through Astronomy Using Telescopes": 1 + "Science: Delving into Astronomy with the Hubble Space Telescope ": 1 + "Science: The Universe Revealed: An Introduction to Radio Astronomy": 1 + "Science: Exploring the Universe Through Astronomy: The Power of Spectroscopy": 1 + "Science: The Universe Through a Lens: A Course on Astronomical Photography": 1 + "Science: Exploring Celestial Bodies Using Computerized Telescope Systems in Astronomy": 1 + "Science: Astronomy and the Universe: Deep Space Exploration with Satellites": 1 + "Science: Navigating the Universe: Astronomy through the Lens of Infrared Technology": 1 + "Science: The Universe Unveiled: Astronomy with Adaptive Optics": 1 + "Science: Probing the Universe with Gravitational Waves: An Astronomy Course": 1 + "Science: The Cosmic Frontier: Astronomy with the James Webb Space Telescope": 1 + "English Literature 101: Exploring Classics through Shakespearean Plays": 1 + "English Literature 101: Analyzing Classic Novels with Modern Linguistic Tools": 1 + "English Literature 101: Exploring Classics using Digital Humanities Tools": 1 + "English Literature 101: Diving into Classic Poetry with Metaphorical Analysis": 1 + "English Literature 101: Understanding Classics through Historical Context": 1 + "English Literature 101: Exploring Classics with Focus on Feminist Criticism ": 1 + "English Literature 101: Studying Classics using Postcolonial Theory": 1 + "English Literature 101: Exploring Classics through Authorial Intent": 1 + "English Literature 101: Interpreting Classics using Structuralism ": 1 + "English Literature 101: Exploring Classics through Close Reading Techniques": 1 + "Social Studies: The Impact of Blockchain Technology on Labour Movements and Social Change": 1 + "Social Studies: The Role of Social Media in Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change: A Case Study on Collective Bargaining": 1 + "Social Studies: The Influence of Big Data on Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change in the Age of Artificial Intelligence": 1 + "Social Studies: The Effect of Virtual Reality on Labour Movements and Social Change": 1 + "Social Studies: Using Predictive Analytics in Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change through the Lens of Machine Learning": 1 + "Social Studies: The Integration of IoT in Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change: An Examination of Digital Activism.": 1 + "Biology: Understanding Cellular Structures through Microscopy": 1 + "Biology: Unveiling Cellular Structures using Electron Microscopy": 1 + "Biology: Analyzing Cellular Structures with Confocal Microscopy": 1 + "Biology: Deciphering Cellular Structures through Flow Cytometry": 1 + "Biology: Understanding Cellular Structures via Fluorescent Tagging ": 1 + "Biology: Cellular Structures Exploration using DNA Sequencing": 1 + "Biology: Cellular Structures Comprehension through Proteomics": 1 + "Biology: Unraveling Cellular Structures using Spectrophotometry": 1 + "Biology: Understanding Cellular Structures: A Focus on Mitochondria ": 1 + "Biology: Cellular Structures Dissection using CRISPR Technology": 1 + "Computer Science for Beginners: Building 2D Games with Unity and C#": 1 + "Intro to Computer Science: Creating Virtual Reality Games with Unity and VR SDK": 1 + "Computer Science for Newbies: Unity Game Engine and Python for Game Development": 1 + "Computer Science Starter: Designing 3D Games with Unity and Blender": 1 + "Foundation of Computer Science: Unity Game Engine and JavaScript in Game Creation": 1 + "Beginner's Guide to Computer Science: Developing Mobile Games with Unity and Android Studio": 1 + "Computer Science for Beginners: Unity Game Engine and Shader Graph for Stunning Visuals": 1 + "Start with Computer Science: Multiplayer Game Development with Unity and Photon": 1 + "Entry-Level Computer Science: Unity Game Engine and AI for Interactive Games": 1 + "Computer Science Basics: Game Creation with Unity and Unreal's Blueprints.": 1 + "English Literacy: Enhancing Reading and Writing Skills using Storybird App": 1 + "Fostering English Literacy: A Practical Guide to Using Google Storytelling Apps": 1 + "English Literacy: Mastering Reading and Writing through Storytelling with Adobe Spark ": 1 + "English Literacy: Kindle Storyteller for Reading and Writing Enhancement": 1 + "Developing English Literacy: Reading and Writing with the Aid of Storytelling on Toontastic": 1 + "Boosting English Literacy: Storytelling Techniques using the Book Creator App": 1 + "Strengthening English Literacy: Reading and Writing with Plotagon Story App": 1 + "English Literacy: Exploring Reading and Writing using the Amazon Storywriter Tool": 1 + "English Literacy Enhancement: Using Storytelling Apps like Little Bird Tales": 1 + "English Literacy: Fostering Reading and Writing Skills with the Storymakery App.": 1 + "Physical Education: Outdoor Exploration and Survival Skills with Map Reading Techniques": 1 + "Physical Education: Outdoor Exploration and Survival Skills Utilizing GPS Technology": 1 + "Physical Education: Outdoor Exploration and Survival Skills Focusing on Fire Starting Techniques": 1 + "Physical Education: Outdoor Exploration and Survival Skills with emphasis on Knot Tying": 1 + "Physical Education: Outdoor Exploration and Survival Skills Incorporating Compass Use": 1 + "Physical Education: Outdoor Exploration and Survival Skills with Detailed Shelter Building": 1 + "Physical Education: Outdoor Exploration and Survival Skills Exploring Water Purification Methods": 1 + "Physical Education: Outdoor Exploration and Survival Skills Learning First Aid Procedures": 1 + "Physical Education: Outdoor Exploration and Survival Skills Examining Food Foraging Techniques": 1 + "Physical Education: Outdoor Exploration and Survival Skills Understanding Weather Prediction": 1 + "Physical Education: Outdoor Exploration and Survival Skills Mastering Signal Flare Usage": 1 + "Art 203: Detailing Pointillism Through the Lens of Acrylic Paints": 1 + "Art 203: Exploring Pointillism using Gouache and Paintbrush Techniques": 1 + "Art 203: Pointillism Unleashed: The Power of Oil Paints and Brushes": 1 + "Art 203: The Science of Pointillism: A Deep Dive into Watercolor Techniques": 1 + "Art 203: The Art of Pointillism: Exploring Tempera Paints and Brushes": 1 + "Art 203: The Interplay of Pointillism and Paintbrush Techniques using Pastels": 1 + "Art 203: Pointillism and Paintbrush Techniques: A Study in Charcoal": 1 + "Art 203: The Dynamics of Pointillism: Exploring Encaustic Paint Techniques": 1 + "Art 203: Pointillism and Paintbrush Techniques: The Impact of Ink": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques": 1 + "Harnessing Metaphors in Folk Music: The Harmony of Rhymes in Children's Poetry Using Similes": 1 + "Exploiting Metaphors in Classical Music: The Symbiosis of Rhymes in Children's Verse with Alliteration": 1 + "Utilizing Metaphors in Pop Music: The Harmony of Rhymes in Nursery Rhymes through Repetition": 1 + "Leveraging Metaphors in Jazz: The Confluence of Rhymes in Children's Poetry using Onomatopoeia": 1 + "Employing Metaphors in Rock Music: The Harmony of Rhymes in Children's Poetry through Symbolism": 1 + "Implementing Metaphors in Country Music: The Harmony of Rhymes in Children's Poetry Using Hyperbole": 1 + "Applying Metaphors in Blues: The Synergy of Rhymes in Children's Poetry with Assonance": 1 + "Navigating Metaphors in Reggae: The Harmony of Rhymes in Children's Poetry via Personification": 1 + "Integrating Metaphors in Hip Hop: The Harmony of Rhymes in Children's Poetry with Oxymorons": 1 + "Orchestrating Metaphors in Metal Music: The Harmony of Rhymes in Children's Poetry Using Irony.": 1 + "Exploring Negative Space in Gouache Techniques Using Palette Knives: A Detailed Study of Shapes, Lines, and Colors": 1 + "Unleashing the Power of Negative Space in Gouache Techniques with Brushwork: A Comprehensive Study of Shapes, Lines, and Colors": 1 + "Mastering Negative Space in Gouache Techniques through Layering: A Study of Shapes, Lines, and Colors": 1 + "Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors using Dry Brush Techniques": 1 + "Harnessing Negative Space in Gouache Techniques with Glazing: An Exploration of Shapes, Lines, and Colors": 1 + "Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors with the Application of Texture Effects Using Sponges": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors Using Scumbling Techniques": 1 + "Exploring Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors with the Application of Texture Effects Using Masking Fluid": 1 + "Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors Applying Stippling Techniques": 1 + "The Power of Negative Space in Gouache Techniques Using Wash Techniques: A Detailed Study of Shapes, Lines, and Colors": 1 + "Mathematics 110: The Use of Mathematical Modelling in Sports Trajectories Calculus Using Python": 1 + "Mathematics 110: Exploring Sports Trajectories Calculus Through Mathematical Modelling and MATLAB": 1 + "Mathematics 110: Application of R-Programming in Mathematical Modelling of Sports Trajectories Calculus": 1 + "Mathematics 110: Harnessing the Power of Mathematica in Sports Trajectories Calculus using Mathematical Modelling": 1 + "Mathematics 110: Utilization of Differential Equations in Mathematical Modelling for Sports Trajectories Calculus": 1 + "Mathematics 110: Linear Algebra's Role in Mathematical Modelling for Sports Trajectories Calculus": 1 + "Mathematics 110: Employing Vector Calculus in Mathematical Modelling for Sports Trajectories": 1 + "Mathematics 110: The Influence of Probability Theory in Mathematical Modelling for Sports Trajectories Calculus": 1 + "Mathematics 110: Utilizing SPSS in Mathematical Modelling for Sports Trajectories Calculus": 1 + "Mathematics 110: The Integration of Geometry in Mathematical Modelling for Sports Trajectories Calculus": 1 + "Physical Education: Enhancing Movement and Coordination through Sports Science using Biomechanics": 1 + "Physical Education: Understanding Movement and Coordination through Heart Rate Monitors in Sports Science": 1 + "Physical Education: Smartwatch Applications in Studying Movement and Coordination through Sports Science": 1 + "Physical Education: Understanding Movement and Coordination through Sports Science - A Focus on Motion Capture Technology": 1 + "Physical Education: The Role of GPS Devices in Understanding Movement and Coordination through Sports Science": 1 + "Physical Education: A Study on Movement and Coordination through the Lens of Sports Science using Neuromuscular Control": 1 + "Physical Education: Understanding Movement and Coordination through Sports Science - An Exploration of Kinesiology Taping": 1 + "Physical Education: Improving Movement and Coordination with Wearable Technology in Sports Science": 1 + "Physical Education: The Impact of Electroencephalography (EEG) on Understanding Movement and Coordination in Sports Science": 1 + "Physical Education: Kinematic Analysis in Understanding Movement and Coordination through Sports Science.": 1 + "Elementary Mathematics: Utilizing Graphing Calculators in Understanding Variables in Algebra": 1 + "Elementary Mathematics: Exploring Variables in Algebra through Desmos Technology": 1 + "Elementary Mathematics: The Role of Variables and Coefficients in Algebra": 1 + "Elementary Mathematics: Variables in Algebra and Their Application in Equations": 1 + "Elementary Mathematics: Identifying Variables in Algebra Using Microsoft Excel": 1 + "Elementary Mathematics: Understanding Variables in Algebra through Polynomials": 1 + "Elementary Mathematics: The Role of Variables in Algebraic Expressions and Equations": 1 + "Elementary Mathematics: Simplifying Algebraic Equations with Variables": 1 + "Elementary Mathematics: Analyzing Variables in Algebra Using MatLab": 1 + "Elementary Mathematics: The Impact of Variables on Algebraic Functions Using Python Programming": 1 + "Chemistry: Exploring Chemical Reactions via Nuclear Magnetic Resonance Spectroscopy": 1 + "Chemistry: The role of Mass Spectrometry in Understanding Chemical Reactions": 1 + "Chemistry: Decoding the Periodic Table with X-ray Crystallography": 1 + "Chemistry: Understanding Chemical Reactions through Gas Chromatography-Mass Spectrometry": 1 + "Chemistry: Applying Computational Chemistry in Chemical Reactions and the Periodic Table": 1 + "Chemistry: Utilizing Spectrophotometry in Understanding Chemical Reactions": 1 + "Chemistry: Diving into Chemical Reactions with Electrochemical Analysis": 1 + "Chemistry: Role of Quantum Mechanics in Chemical Reactions and the Periodic Table": 1 + "Chemistry: Understanding Chemical Reactions through Fourier Transform Infrared Spectroscopy": 1 + "Chemistry: Deciphering the Periodic Table through Atomic Force Microscopy": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: A Focus on Bioacoustics": 1 + "Biology: The use of Spectrogram in Acoustic Ecology and the Sounds of Nature": 1 + "Biology: Analyzing the Sounds of Nature through Passive Acoustic Monitoring": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: An Introduction to Sonograms": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: Exploring Wildlife Acoustics": 1 + "Biology: The use of Hydrophones in Acoustic Ecology and the Sounds of Nature": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: A Study on Echo Location": 1 + "Biology: The Role of Fourier Transform in Acoustic Ecology and the Sounds of Nature": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: Understanding Soundscapes through AudioMoth ": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: The Practicality of Parabolic Microphones": 1 + "Biology: Acoustic Ecology and the Sounds of Nature: Using Raven Pro Software in Sound Analysis": 1 + "Understanding Market Forces with the IS-LM Model: A Beginners Guide to Economics using Microsoft Excel": 1 + "Exploring Economics: A Beginner's Journey through Market Forces with the IS-LM Model and Python Programming": 1 + "Economics for Novices: Unraveling Market Forces using the IS-LM Model and SPSS Analysis": 1 + "The Impact of Market Forces: Economics for Beginners using the IS-LM Model and R Programming": 1 + "Economics Essentials: Decoding Market Forces with the IS-LM Model and MATLAB": 1 + "Introduction to Economics: Unraveling Market Forces with the IS-LM Model and SAS Software": 1 + "Economics for Beginners: A Deep Dive into Market Forces with the IS-LM Model and Stata": 1 + "Navigating Economics: A Beginner's Guide to Market Forces using the IS-LM Model and Tableau for Data Visualization": 1 + "Economics: Discovering Market Forces with the IS-LM Model and the Concept of Elasticity": 1 + "Unraveling Market Forces in Economics: A Beginner's Course using the IS-LM Model and the Power BI Tool.": 1 + "History 101: The Impact of the Industrial Revolution: The Bessemer Process and the Steam Engine": 1 + "History 101: Analysing the Bessemer Process and its Influence on Textile Industry in the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Advent of Railroads in the Industrial Revolution": 1 + "History 101: The Bessemer Process: Catalyst for the Mining Boom during the Industrial Revolution": 1 + "History 101: The Industrial Revolution: The Intersection of the Bessemer Process and Telegraphy": 1 + "History 101: The Impact of the Industrial Revolution: The Bessemer Process and Advancement in Agriculture": 1 + "History 101: The Bessemer Process and the Rise of Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Impact on Urbanization in the Industrial Revolution": 1 + "History 101: The Integration of the Bessemer Process and the Power Loom in the Industrial Revolution": 1 + "History 101: The Bessemer Process in the Industrial Revolution: The Trigger for the Concept of Mass Production": 1 + "Data Science in Music: An Economic Analysis of the Sound Industry using Big Data, R Programming, and TensorFlow": 1 + "Predictive Analytics in Music: Economic Forecasting in the Sound Industry with Big Data and R Programming": 1 + "Machine Learning in Music: Sound Industry's Economic Analysis using Big Data, R Programming, and Python Scikit-Learn": 1 + "Neural Networks in Music: Economic Analysis of the Sound Industry using Big Data, R Programming, and Keras": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Time Series Analysis in Music: Economic Forecasting in the Sound Industry with Big Data, R Programming, and ARIMA Models": 1 + "Data Mining in Music: Uncovering Economic Patterns in the Sound Industry with Big Data, R Programming, and Weka": 1 + "Deep Learning in Music: Economic Analysis of the Sound Industry using Big Data, R Programming, and PyTorch": 1 + "Data Science in Music: Economic Analysis of the Sound Industry using Big Data, R Programming, and Apache Hadoop": 1 + "Regression Analysis in Music: Economic Predictions in the Sound Industry using Big Data, R Programming, and SPSS.": 1 + "Exploring the Impact of Palette Knives on Negative Space in Gouache Techniques: A Comprehensive Study of Shapes, Lines, and Colors through Layering Method": 1 + "The Power of Negative Space in Gouache Techniques with Brushwork: A Detailed Study of Shapes, Lines, and Colors through Layering Method": 1 + "A Study on Negative Space in Gouache Techniques: Using Acrylic Mediums to Enhance Shapes, Lines, and Colors through Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: An In-depth Study of Shapes, Lines, and Colors through Sponge Painting Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: Mastering the Use of Palette in Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors through Layering Method Using Masking Fluid": 1 + "The Power of Negative Space in Gouache Techniques: Exploring the Role of Easel in Shapes, Lines, and Colors through Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: The Impact of Gradients on Shapes, Lines, and Colors through Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors through Wet-on-Wet Layering Method": 1 + "The Power of Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors through Dry Brush Layering Method": 1 + "History: The Role of the Steam Engine during the Industrial Revolution": 1 + "History: Textile Innovations: The Spinning Jenny and the Industrial Revolution": 1 + "History: Power Looms and their Impact on the Industrial Revolution": 1 + "History: The Telegraph: Communication Breakthrough of the Industrial Revolution": 1 + "History: The Cotton Gin’s Influence on the Industrial Revolution": 1 + "History: The Advent of Railways during the Industrial Revolution": 1 + "History: Mechanized Agriculture: The Threshing Machine and the Industrial Revolution": 1 + "History: The Bessemer Process: Revolutionizing Steel Production in the Industrial Age": 1 + "History: Steam-powered Factories: A Deep Dive into the Industrial Revolution": 1 + "History: The Rise of Coal Mining during the Industrial Revolution": 1 + "Culinary Geography: Exploring Global Delicacies with Google Earth Pro": 1 + "Gastronomic Cartography: Tracking Global Cuisine with Satellite Imagery": 1 + "Culinary Geography: Navigating Global Delicacies with GPS and Augmented Reality Technology": 1 + "Culinary Paths: Decoding Global Delicacies with Blockchain Technology": 1 + "Gastronomic Geolocation: Exploring International Cuisine with GIS Technology": 1 + "Edible Earth: Mapping Global Delicacies with Drone Technology": 1 + "Culinary Geography: Tracing Global Cuisine with Machine Learning Algorithms": 1 + "Taste Travels: Unraveling Global Delicacies with Big Data Analytics": 1 + "Global Gastronomy: Navigating International Delicacies with Artificial Intelligence": 1 + "Culinary Wayfinder: Exploring World Cuisines with Virtual Reality Technology": 1 + "Music and Mathematics: Exploring Harmonies in Frequencies Using Fourier Transform": 1 + "Music and Mathematics: Pythagorean Tuning and the Harmony of Frequencies": 1 + "Music and Mathematics: Investigation of Harmonies in Frequencies through Matlab": 1 + "Music and Mathematics: Harmonies in Frequencies and the Application of Harmonic Series": 1 + "Music and Mathematics: Understanding Harmonies in Frequencies through Sound Spectrum Analysis": 1 + "Music and Mathematics: Harmonies in Frequencies: An Acoustic Resonance Perspective": 1 + "Music and Mathematics: Frequencies Harmonization with Digital Signal Processing Software": 1 + "Music and Mathematics: Harmonies in Frequencies and the Role of the Piano's Equal Temperament": 1 + "Music and Mathematics: The Study of Harmonies in Frequencies Using Waveform Analysis ": 1 + "Music and Mathematics: Decoding Harmonies in Frequencies with Oscilloscope Technology.": 1 + "Coding for Kids: Introduction to Computer Science with Scratch - Understanding Variables": 1 + "Coding for Kids: Exploring Computer Science with Scratch and Python": 1 + "Coding for Kids: Learning to Code with Scratch and Raspberry Pi": 1 + "Coding for Kids: Introduction to Artificial Intelligence with Scratch": 1 + "Coding for Kids: Developing Games with Scratch and Unity": 1 + "Coding for Kids: Introduction to Computer Science with Scratch - Mastering Functions": 1 + "Coding for Kids: Exploring Data Structures with Scratch": 1 + "Coding for Kids: Introduction to Computer Science with Scratch - Diving into Algorithms": 1 + "Coding for Kids: Learning Robotics Programming with Scratch": 1 + "Coding for Kids: Introduction to Computer Science with Scratch - Understanding Conditionals and Loops.": 1 + "Physical Education: Military Drills and Use of Bayonets in the 1940s": 1 + "Physical Education: Morse Code Communication in 1940s Military Drills": 1 + "Physical Education: Navigation Skills in 1940s Military Exercises": 1 + "Physical Education: The Role of Radios in 1940s Military Drills": 1 + "Physical Education: The Impact of Trench Warfare Tactics on 1940s Military Drills": 1 + "Physical Education: 1940s Military Drills and the Use of Flamethrowers": 1 + "Physical Education: Paratrooper Training and Exercises of the 1940s": 1 + "Physical Education: Utilizing Tanks in 1940s Military Drills": 1 + "Physical Education: The Role of Aircraft in 1940s Military Exercises": 1 + "Physical Education: Sniper Training and Techniques in 1940s Military Drills": 1 + "Mathematics: Utilizing Statistics in Baseball with R Programming": 1 + "Mathematics: Introduction to Sports Statistics with Python": 1 + "Mathematics: Advanced Sports Analytics with SPSS": 1 + "Mathematics: Predictive Modeling for Sports Statistics with Excel": 1 + "Mathematics: Probability Theory in Basketball Statistics with MatLab": 1 + "Mathematics: Football Statistics and Data Visualization with Tableau": 1 + "Mathematics: Sports Statistics with SAS: A Focus on Soccer": 1 + "Mathematics: Understanding Cricket Statistics with Minitab": 1 + "Mathematics: The Use of Machine Learning in Tennis Statistics": 1 + "Mathematics: Exploring Rugby Statistics with SQL": 1 + "Mathematics: Regression Analysis in Golf Statistics with JMP": 1 + "Language Arts: Examining the Rhetoric of Econometrics through Panel Data Analysis in Stata using Time Series": 1 + "Language Arts: Incorporating Vector Auto-regression (VAR) in the Rhetoric of Econometrics with Panel Data Analysis in Stata": 1 + "Language Arts: Exploring the Rhetoric of Econometrics with Panel Data Analysis in Stata using Fixed Effects Model": 1 + "Language Arts: Unraveling the Rhetoric of Econometrics with Panel Data Analysis in Stata using Random Effects Model": 1 + "Language Arts: A Deep Dive into the Rhetoric of Econometrics: Panel Data Analysis in Stata using Instrumental Variables": 1 + "Language Arts: Exploring the Rhetoric of Econometrics with Panel Data Analysis in Stata: A Focus on Regression Discontinuity Design": 1 + "Language Arts: Exploring the Rhetoric of Econometrics with Panel Data Analysis in Stata using Propensity Score Matching": 1 + "Language Arts: Discovering the Rhetoric of Econometrics with Panel Data Analysis in Stata: A Look at Multivariate Analysis": 1 + "Language Arts: Understanding the Rhetoric of Econometrics through Panel Data Analysis in Stata using Difference in Differences ": 1 + "Language Arts: Exploring the Rhetoric of Econometrics with Panel Data Analysis in Stata: An Introduction to Hierarchical Modelling.": 1 + "Quantum Chemistry: Using Gaussian Software for Computational Study of Chemical Reactions": 1 + "Chemistry: Utilizing Density Functional Theory in Analyzing the Periodic Table": 1 + "Quantum Chemistry: Applying Computational Chemistry in Chemical Reactions Using Python Programming": 1 + "Advanced Chemistry: The Role of Molecular Dynamics in Predicting Chemical Reactions": 1 + "Quantum Chemistry: Using GAMESS for Computational Simulation of Chemical Reactions": 1 + "Theoretical Chemistry: Application of Quantum Mechanics in the Periodic Table": 1 + "Chemistry Insights: The Use of Spartan Software in Modeling Chemical Reactions": 1 + "Chemistry: Applying Computational Chemistry in Chemical Reactions Using the Monte Carlo Method": 1 + "Quantum Chemistry: Quantum Espresso in Modelling Periodic Table Elements": 1 + "Advanced Chemistry: Using Computational Chemistry and Schrödinger's Equation in Understanding the Periodic Table.": 1 + "Tiny Life: Delving into Microbiology with Electron Microscopy": 1 + "Exploring Cell Structures: An In-depth Study of Biochemistry at the Microscopic Level": 1 + "From Microbes to Molecules: Understanding Biology with Molecular Imaging": 1 + "DNA and Tiny Life: Using Genetic Sequencing to Explore Microbiology": 1 + "Tiny Life: Unraveling the Microscopic World using Fluorescence Microscopy": 1 + "The Microscopic Perspective: Exploring Cellular Biology with Confocal Microscopy": 1 + "Tiny Life: A Journey through Cell Division and Mitosis at the Microscopic Level": 1 + "Exploring Microbial Diversity: A Deep Dive with Metagenomics ": 1 + "Tiny Life: Exploring Biology at the Microscopic Level using Flow Cytometry": 1 + "Unseen Universe: Exploring Microbiology with Scanning Electron Microscopy.": 1 + "Language Arts: The Art of Economic Discourse: Understanding Econometrics through Multivariate Analysis in Stata using Panel Data": 1 + "Language Arts: Delving into Economic Discourse: A Comprehensive Study of Econometrics through Time Series Analysis in Stata": 1 + "Language Arts: The Art of Economic Discourse: Exploring Econometrics through Multivariate Analysis in Stata with Regression Models": 1 + "Language Arts: Economic Discourse Mastery: Detailing Econometrics through Multivariate Analysis in Stata using Quantitative Data": 1 + "Language Arts: The Art of Economic Discourse: Understanding Econometrics via Multivariate Analysis in Stata leveraging ANOVA Tests": 1 + "Language Arts: The Art of Economic Discourse: Unraveling Econometrics through Multivariate Analysis in Stata using Chi-Square Tests": 1 + "Language Arts: The Art of Economic Discourse: Mastering Econometrics through Multivariate Analysis in Stata and Factor Analysis": 1 + "Language Arts: The Art of Economic Discourse: Dissecting Econometrics through Multivariate Analysis in Stata using Logistic Regression": 1 + "Language Arts: The Art of Economic Discourse: Learning Econometrics through Multivariate Analysis in Stata with Nonparametric Tests": 1 + "Language Arts: The Art of Economic Discourse: Deconstructing Econometrics through Multivariate Analysis in Stata using Correlation Coefficients": 1 + "Physical Education: Foundations of Fitness with Resistance Bands": 1 + "Physical Education: Implementing Heart Rate Monitors in Fitness Foundations": 1 + "Physical Education: Foundations of Fitness Integrating Yoga Concepts": 1 + "Physical Education: Foundations of Fitness Using Sports Performance Technology": 1 + "Physical Education: Foundations of Fitness: Understanding Biomechanics": 1 + "Physical Education: Foundations of Fitness with Plyometric Training Tools": 1 + "Physical Education: Foundations of Fitness through Aerobic Exercise Machines": 1 + "Physical Education: Foundations of Fitness: Exploring the Concept of Body Mass Index": 1 + "Physical Education: Foundations of Fitness with Wearable Fitness Trackers": 1 + "Physical Education: Foundations of Fitness Using Stability Balls": 1 + "Neuroscience: Unveiling Brain Function with Magnetic Particle Imaging and fMRI in Brain Mapping Techniques": 1 + "Neuroscience: Exploring the Brain's Function with Magnetic Particle Imaging and EEG in Brain Mapping Techniques": 1 + "Neuroscience: Investigating Neural Activity through Magnetic Particle Imaging and Positron Emission Tomography in Brain Mapping Techniques": 1 + "Neuroscience: Understanding the Brain's Function using Magnetic Particle Imaging and Diffusion Tensor Imaging in Brain Mapping Techniques": 1 + "Neuroscience: Decoding Brain's Function with Magnetic Particle Imaging and Optogenetics in Brain Mapping Techniques": 1 + "Neuroscience: Dissecting the Brain's Function with Magnetic Particle Imaging and Near-Infrared Spectroscopy in Brain Mapping Techniques": 1 + "Neuroscience: Examining the Brain's Function with Magnetic Particle Imaging and Transcranial Magnetic Stimulation in Brain Mapping Techniques": 1 + "Neuroscience: Unraveling Brain Function through Magnetic Particle Imaging and Single-Photon Emission Computed Tomography in Brain Mapping Techniques": 1 + "Neuroscience: Navigating Brain's Function with Magnetic Particle Imaging and Magnetoencephalography in Brain Mapping Techniques": 1 + "Neuroscience: Revealing Neural Mechanism with Magnetic Particle Imaging and Stereotactic Techniques in Brain Mapping Techniques.": 1 + "English: Exploring Textual Analysis and Critical Thinking with Python Text Mining Tools in Text Mapping": 1 + "English: Utilizing RapidMiner for Text Mapping: Enhancing Critical Thinking and Textual Analysis": 1 + "English: Leveraging Natural Language Processing Tools in Text Mapping for English: Critical Thinking and Textual Analysis": 1 + "English: Implementing Data Visualization Techniques in Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Applying Machine Learning in Text Mining Tools for Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Using SQL for Text Mining in Text Mapping: Enhancing Critical Thinking and Textual Analysis": 1 + "English: Harnessing R Programming in Text Mining for Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Leveraging Text Mining with Tensorflow in Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Implementing Sentiment Analysis with Text Mining Tools in Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Using IBM Watson for Text Mining in Text Mapping: Enhancing Critical Thinking and Textual Analysis": 1 + "Enhancing Quantum Computing Through Quantum Teleportation via IBM Qiskit: Exploration of 10 Distinct Algorithms": 1 + "Quantum Computing Improvement Using Quantum Teleportation and Quantum Circuit Design in TensorFlow Quantum: A Deep Dive into 10 Algorithms": 1 + "Advanced Applications of Quantum Teleportation in Quantum Circuit Design Using Python: A Study of 10 Unique Algorithms": 1 + "Quantum Computing Augmentation Through Quantum Teleportation via Quantum Circuit Design in PyQuil: Examination of 10 Innovative Algorithms": 1 + "Quantum Teleportation in Computing: Enhancing Quantum Circuit Design using Microsoft Quantum Development Kit and 10 Distinct Algorithms": 1 + "Exploration of 10 Novel Algorithms in Quantum Teleportation for Quantum Circuit Design Enhancement Using Pennylane": 1 + "Quantum Computing Enhancement Through Quantum Teleportation in ProjectQ: In-depth Analysis of 10 Algorithms": 1 + "Advancement in Quantum Computing Through Quantum Teleportation via Quipper: Exploration of 10 Distinct Algorithms": 1 + "Quantum Teleportation in Quantum Circuit Design: Enhancing Quantum Computing Using Rigetti Forest and Analysis of 10 Algorithms": 1 + "Enhanced Quantum Computing Through Quantum Teleportation via Quantum Circuit Design in Quantum++: Breakdown of 10 Distinct Algorithms.": 1 + "Exploring Athletic Insights through Python Programming: A Data Science Approach using Tableau and Big Data Analysis": 1 + "SQL in Sports: A Data Science Approach to Exploring Athletic Insights using Tableau and Big Data Analysis": 1 + "Harnessing Machine Learning for Athletic Insights: A Data Science Approach using Tableau and Big Data Analysis": 1 + "Exploring Athletic Insights with R Programming: A Data Science Approach using Tableau and Big Data Analysis": 1 + "A Deep Dive into Athletic Insights: Exploring Data Visualization with Tableau and Big Data Analysis": 1 + "Exploring Athletic Insights: A Data Science Approach using Tableau, Big Data Analysis and Hadoop": 1 + "Uncovering Athletic Insights: A Data Science Approach using Tableau, Big Data Analysis, and SAS": 1 + "Exploring Athletic Insights: Leveraging Neural Networks in Data Science using Tableau and Big Data Analysis": 1 + "BigQuery and Athletic Insights: A Data Science Approach using Tableau and Big Data Analysis": 1 + "Exploring Athletic Insights: A Data Science Approach using Apache Spark, Tableau and Big Data Analysis": 1 + "Physical Education: Exploring Biomechanics with Heart Rate Monitors and Accelerometers": 1 + "Physical Education: The Science of Movement with Heart Rate Monitors and Smart Watches": 1 + "Physical Education: Utilizing Heart Rate Monitors and GPS Devices in Movement Analysis": 1 + "Physical Education: Enhancing Performance with Heart Rate Monitors and Resistance Bands": 1 + "Physical Education: Understanding Kinesiology with Heart Rate Monitors and Pedometers": 1 + "Physical Education: The Science of Movement with Heart Rate Monitors and Treadmills": 1 + "Physical Education: Integrating Heart Rate Monitors and Fitness Apps in Movement Studies": 1 + "Physical Education: The Role of Aerobic Exercise with Heart Rate Monitors and Elliptical Machines": 1 + "Physical Education: Studying Cardiovascular Endurance with Heart Rate Monitors and Rowing Machines": 1 + "Physical Education: The Science of Movement - Heart Rate Monitors and High-Intensity Interval Training (HIIT) Techniques.": 1 + "World Languages: The Music of Speech Through Phonetics": 1 + "Analyzing World Languages: The Music of Speech Using Speech Recognition Software": 1 + "World Languages: The Music of Speech and The Art of Translation": 1 + "Using Linguistics to Understand World Languages: The Music of Speech": 1 + "World Languages: The Music of Speech Explored Through Voice Synthesis Technology": 1 + "World Languages: The Music of Speech - A Study in Accent Reduction Techniques": 1 + "Decoding World Languages: The Music of Speech with Machine Learning": 1 + "World Languages: The Music of Speech - The Role of Text-to-Speech Technology": 1 + "Exploring World Languages: The Music of Speech Through the Lens of Sociolinguistics": 1 + "World Languages: The Music of Speech - A Deep Dive into Language Modelling": 1 + "World Languages: The Music of Speech - Unveiling Secrets Through Natural Language Processing.": 1 + "Biology: Dissection of Cellular Structures using CRISPR Technology and Fluorescence Microscopy": 1 + "Biology: Dissecting Cellular Structures with CRISPR Technology and Scanning Electron Microscopy": 1 + "Advanced Course on Cellular Structures Dissection using CRISPR Technology and Optogenetics": 1 + "Deep Dive into Cellular Structures Dissection: A focus on CRISPR Technology and Confocal Microscopy": 1 + "Biology: Cellular Structures Dissection using CRISPR Technology and Single Cell RNA Sequencing": 1 + "Exploring Cellular Structures: A Comprehensive Study using CRISPR Technology and Atomic Force Microscopy": 1 + "Biology: Cellular Structures Dissection using CRISPR Technology and Spectral Karyotyping": 1 + "In-depth Study of Cellular Structures Dissection using CRISPR Technology and Flow Cytometry": 1 + "Biology: Advanced Dissection of Cellular Structures using CRISPR Technology and Live Cell Imaging": 1 + "Biology: Cellular Structures Dissection using CRISPR Technology and Comparative Genomic Hybridization Techniques.": 1 + "Blockchain: The Impact of Cryptocurrency Technology on Global Economy": 1 + "AI: The Impact of Artificial Intelligence on Global Economy": 1 + "Internet of Things: The Impact of IoT on Global Economy": 1 + "5G: The Impact of Fifth Generation Technology on Global Economy": 1 + "Robotics: The Impact of Automation on Global Economy": 1 + "Big Data: The Impact of Data Analysis on Global Economy": 1 + "E-Commerce: The Impact of Online Shopping Technology on Global Economy": 1 + "Renewable Energy: The Impact of Green Technology on Global Economy": 1 + "Biotechnology: The Impact of Genetic Engineering on Global Economy": 1 + "Virtual Reality: The Impact of VR Technology on Global Economy": 1 + "Exploring the World of Botany: Utilizing Hydroponic Systems with LED Lighting Technology ": 1 + "Deep Dive into Botany: Applying the pH Meter in Hydroponic Systems": 1 + "The Intricate World of Botany: The Role of Nutrient Film Technique in Hydroponic Systems": 1 + "Mastering Botany: The Impact of Aeroponic Technology in Hydroponic Systems": 1 + "Science Unveiled: The Use of Ebb and Flow Systems in Hydroponic Botany": 1 + "Botany Explored: The Power of Drip System in Hydroponic Plant Growth": 1 + "Understanding Botany: The Importance of Oxygen Pumps in Hydroponic Systems": 1 + "Navigating Botany: The Contribution of Wick Systems to Hydroponic Plant Cultivation": 1 + "Botany Demystified: The Significance of Rockwool as a Growing Medium in Hydroponic Systems": 1 + "Advanced Botany: The Effectiveness of Dutch Buckets in Hydroponic Plant Breeding.": 1 + "Algebra Unveiled: Applying Rational Expressions in Business through Excel": 1 + "Algebra Unveiled: Rational Expressions in Business Applications with SPSS ": 1 + "Algebra Unveiled: Utilizing Rational Expressions in Business Analytics through Tableau": 1 + "Algebra Unveiled: A Deep Dive into Business Applications Using Rational Expressions and Python": 1 + "Algebra Unveiled: Rational Expressions and Their Place in Business Forecasting with R": 1 + "Algebra Unveiled: Rational Expressions in Business Decision Making with MATLAB": 1 + "Algebra Unveiled: Business Applications of Rational Expressions through Data Visualization in PowerBI": 1 + "Algebra Unveiled: Implementing Rational Expressions in Business Strategy with SAS ": 1 + "Algebra Unveiled: Unraveling Rational Expressions in Business Intelligence with SQL": 1 + "Algebra Unveiled: A Practical Approach to Rational Expressions in Business Modeling using Google Sheets": 1 + "Mathematics: Exploring Algebra and Geometry using Geogebra": 1 + "Mathematics: A Deep Dive into Algebra and Geometry with Graphing Calculators": 1 + "Mathematics: Journey Through Algebra and Geometry with the Aid of MATLAB": 1 + "Mathematics: Understanding Algebra and Geometry through Desmos Graphing": 1 + "Mathematics: Algebra and Geometry - An Expedition with Wolfram Alpha": 1 + "Mathematics: A Close Look at Algebra and Geometry with the Use of Python": 1 + "Mathematics: Algebra and Geometry Explored through the Lens of 3D Geometry Software ": 1 + "Mathematics: Innovating Algebra and Geometry Understanding with MathCAD": 1 + "Mathematics: Decoding Algebra and Geometry using Maple Mathematics Software ": 1 + "Mathematics: Simplifying Algebra and Geometry with the help of Microsoft Mathematics": 1 + "World History: The Impact of the Printing Press on the Emergence and Influence of Paper Money in Trade and Civilizations": 1 + "The Monetary Revolution: How Paper Money and the Silk Road Transformed Ancient Trade and Civilizations": 1 + "The Game Changer: Influence of Paper Money and Maritime Navigation on Trade and the Progress of Civilizations": 1 + "World History: The Legacy of Paper Money and the Compass on Trade and the Progress of Civilizations ": 1 + "The Currency Evolution: Influence of Paper Money and the Wheel on Trade and Civilizations": 1 + "World History: The Influence of Paper Money and the Abacus on Trade and the Evolution of Civilizations ": 1 + "The Trade Transformation: How Paper Money and the Sextant Impacted Global Trade and Civilizations": 1 + "World History: The Impact of Paper Money and the Telegraph on Trade and Civilizations": 1 + "The Trade Revolution: The Role of Paper Money and the Steam Engine in Advancing Civilizations": 1 + "World History: The Ripple Effect of Paper Money and the Internet on Trade and the Progress of Civilizations.": 1 + "Physical Education: The Impact of Ballet in French Cultural Movements": 1 + "Exploring the Influence of Hip-Hop Dance in American Civil Rights Movements": 1 + "Analysis of Flamenco's Role in Spanish Cultural Movements through Video Technology": 1 + "Physical Education: The Role of Salsa in Latin American Cultural Movements and its Preservation through Digital Archiving": 1 + "The Impact of Contemporary Dance in LGBTQ+ Cultural Movements: A Study on Expressive Therapy": 1 + "Physical Education: The Role of Tango in Argentine Cultural Movements using Motion Capture Technology": 1 + "Analyzing the Influence of Butoh in Japanese Cultural Movements through Virtual Reality": 1 + "Physical Education: The Influence of Irish Step Dance in Celtic Cultural Movements using Dance Notation": 1 + "The Role of Kathak Dance in Indian Cultural Movements: Exploring Change through Choreographic Software": 1 + "Physical Education: Studying the Impact of Polynesian Hula Dance in Cultural Movements with 3D Modeling Technology": 1 + "Elementary Science: Exploring the Life Cycle of Plants Using Microscopes": 1 + "Elementary Science: The Life Cycle of Plants and Photosynthesis Analysis": 1 + "Elementary Science: Studying the Life Cycle of Plants with Digital Imaging": 1 + "Elementary Science: Understanding the Life Cycle of Plants through Time-lapse Photography": 1 + "Elementary Science: The Life Cycle of Plants and DNA Sequencing": 1 + "Elementary Science: The Life Cycle of Plants: A Study of Cellular Biology": 1 + "Elementary Science: Life Cycle of Plants and the Role of Climate Change ": 1 + "Elementary Science: Life Cycle of Plants: A Study Using Hydroponics": 1 + "Elementary Science: Experimenting the Life Cycle of Plants with Artificial Lighting": 1 + "Elementary Science: The Life Cycle of Plants – A Biochemistry Perspective": 1 + "Artistic Adventures: The Impact of Ballet on French Culture and History": 1 + "Artistic Adventures: Exploring Cultural Shifts through Flamenco in Spanish History": 1 + "Artistic Adventures: The Impact of Tap Dancing on American Culture and the Role of Radio": 1 + "Artistic Adventures: The Influence of Tango on Argentinean Culture and History through Film": 1 + "Artistic Adventures: The Impact of Hip-Hop Dance on Urban Culture and the Music Industry": 1 + "Artistic Adventures: The Influence of Classical Indian Dance on Culture and History through Religious Rituals": 1 + "Artistic Adventures: The Impact of Japanese Noh Dance on Culture and History through Masks": 1 + "Artistic Adventures: The Role of Television in Popularizing Ballroom Dance and Its Cultural Significance": 1 + "Artistic Adventures: The Impact of Irish Step Dance on Culture and History through Competitive Festivals": 1 + "Artistic Adventures: The Influence of Hawaiian Hula Dance on Culture and History through Storytelling": 1 + "English for Beginners: Exploring Stories and Poems using Audio Books": 1 + "English for Beginners: Analyzing Literature with Story Mapping Tools": 1 + "English for Beginners: A Deep Dive into Poetry with Rhyme Schemes": 1 + "English for Beginners: Exploring Stories using E-Readers": 1 + "English for Beginners: Discovering Poetry through Metaphoric Analysis": 1 + "English for Beginners: Interactive Learning with Digital Storytelling": 1 + "English for Beginners: Understanding Poems through Symbolism Studies": 1 + "English for Beginners: Immersive Learning with Virtual Reality Literature": 1 + "English for Beginners: Exploring Stories and Poems with AI Language Models": 1 + "English for Beginners: Unpacking Poems with Alliteration Analysis.": 1 + "Technology: Utilizing GIS in Digital Mapping of Biomes": 1 + "Technology: Implementing Satellite Imagery for Digital Mapping of Biomes": 1 + "Technology: Drone Technology in Digital Mapping of Biomes": 1 + "Technology: Application of Lidar in Digital Mapping of Biomes": 1 + "Technology: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Technology: Incorporating Remote Sensing in Digital Mapping of Biomes": 1 + "Technology: Digital Mapping of Biomes with CAD Tools": 1 + "Technology: Advanced GPS Systems in Digital Mapping of Biomes": 1 + "Technology: Applying Python Programming in Digital Mapping of Biomes": 1 + "Technology: Machine Learning Algorithms for Digital Mapping of Biomes": 1 + "Advanced English Literacy: Enhancing Reading and Writing Skills using Amazon Storywriter and Microsoft Word": 1 + "Interactive English Literacy: Exploring Reading and Writing with Amazon Storywriter and Adobe InDesign": 1 + "English Literacy in Digital Age: Utilizing Amazon Storywriter and Google Docs for Effective Reading and Writing": 1 + "English Literacy and Technology: Exploring Reading and Writing using Amazon Storywriter and Grammarly": 1 + "In-depth English Literacy: A Comprehensive Study of Reading and Writing using Amazon Storywriter and Scrivener": 1 + "Navigating English Literacy: Enhancing Reading and Writing Skills with Amazon Storywriter and ProWritingAid": 1 + "Tech-based English Literacy: Reading and Writing Proficiency using Amazon Storywriter and Evernote": 1 + "English Literacy: Exploring Advanced Reading and Writing using Amazon Storywriter and Quillbot Paraphrasing Tool": 1 + "English Literacy: An Exploration of Reading and Writing using Amazon Storywriter and Hemingway Editor": 1 + "English Literacy for the Modern Era: Reading and Writing Mastery using Amazon Storywriter and Google Translate.": 1 + "Logic: The Use of Truth Tables in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Applying Boolean Algebra in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Logic: Understanding Implication in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "De Morgan’s Laws: Their Role in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Logic: Propositional Calculus and its Application in Deductive Reasoning Using Karnaugh Maps in Mathematics": 1 + "Applying Propositional Calculus in Deductive Reasoning in Mathematics Using Logic Gates": 1 + "Logic: The Role of Tautologies in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Using Venn Diagrams in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Logic: The Application of Semantic Tableaux in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Propositional Calculus and its Application in Deductive Reasoning Using Logic Puzzles in Mathematics": 1 + "Digital Citizenship: Making Ethical Choices on Social Media Platforms": 1 + "Digital Citizenship: Ethical Use of AI in Online Interactions": 1 + "Digital Citizenship: Ensuring Privacy and Security with Cryptography Online": 1 + "Digital Citizenship: Promoting Ethical Choices through Blockchain Technology": 1 + "Digital Citizenship: Ethical Decision Making in Online Gaming": 1 + "Digital Citizenship: Navigating Ethical Dilemmas in E-Commerce": 1 + "Digital Citizenship: Ethical Content Creation Using Digital Design Tools": 1 + "Digital Citizenship: Making Ethical Choices on Online Educational Platforms": 1 + "Digital Citizenship: Ethical Data Management in Cloud Computing": 1 + "Digital Citizenship: Ethical Choices in Online Collaborative Tools.": 1 + "Economics: Exploring Monopolies through Machine Learning using Python": 1 + "Economics: Consumer Behavior Analysis in the Age of Machine Learning using Big Data Analytics": 1 + "Economics: The Impact of Machine Learning on Supply and Demand using Linear Regression Models": 1 + "Economics: Assessing Market Structures using Machine Learning and Neural Networks": 1 + "Economics: Understanding Consumer Preferences with Machine Learning and Predictive Analytics": 1 + "Economics: The Role of Machine Learning in Oligopoly Market Structures using Data Visualization Tools": 1 + "Economics: The Influence of Machine Learning on Economic Elasticity using Tensorflow Technology": 1 + "Economics: A Study of Perfect Competition through Machine Learning using Data Mining Techniques": 1 + "Economics: Machine Learning's Impact on Consumer Risk Behavior using Risk Analysis Tools ": 1 + "Economics: Market Structures and Consumer Behavior: An Analysis using Machine Learning and Blockchain Technology.": 1 + "Computer Science: Introduction to Graphic Design with Adobe Photoshop": 1 + "Computer Science: Exploring Graphic Design through Illustrator": 1 + "Computer Science: Graphic Design Concepts with InDesign": 1 + "Computer Science: Introduction to Graphic Design using CorelDRAW": 1 + "Computer Science: Graphic Design Fundamentals with Sketch": 1 + "Computer Science: Learning Graphic Design Principles with GIMP": 1 + "Computer Science: Graphic Design - Understanding Typography with Adobe Fonts": 1 + "Computer Science: Graphic Design - Mastering Layers in Photoshop": 1 + "Computer Science: Introduction to Graphic Design - Exploring Color Theory with Adobe Color": 1 + "Computer Science: Graphic Design Techniques using Canva.": 1 + "Logical Minds: Enhancing Children's Logic through Python Coding": 1 + "Logical Minds: Boosting Children's Problem-solving Skills with Scratch Programming": 1 + "Logical Minds: Fostering Children's Logic using JavaScript": 1 + "Logical Minds: Advancing Children's Logic through Robotics and Coding": 1 + "Logical Minds: Improving Children's Logical Thinking with Swift Playgrounds": 1 + "Logical Minds: Nurturing Children's Logic via HTML & CSS Coding": 1 + "Logical Minds: Promoting Children's Logic through Arduino Programming": 1 + "Logical Minds: Building Children's Logic using Ruby Coding": 1 + "Logical Minds: Developing Children's Logic through Blockly Games": 1 + "Logical Minds: Strengthening Children's Logic with Raspberry Pi Programming.": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Use of UV-Vis Spectrophotometry and Beer's Law": 1 + "Analyzing Chemical Reactions: A Practical Approach Using Spectrophotometry and Python Programming": 1 + "Practical Mathematics: Application of Mass Spectrometry in Balancing Chemical Reactions": 1 + "Quantitative Analysis: Balancing Chemical Reactions Using Spectrophotometry and Molar Concentration": 1 + "Implementing Spectrophotometric Analysis and Stoichiometry in Balancing Chemical Reactions: A Mathematical Approach": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Use of Spectrophotometry and Matrix Algebra": 1 + "Computational Chemistry: Using MATLAB for Balancing Reactions with Spectrophotometry": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Use of Raman Spectrophotometry and Molecular Structures": 1 + "Balancing Chemical Reactions: A Practical Approach to Spectrophotometry and Reaction Rate Laws": 1 + "Practical Mathematics: Balancing Chemical Reactions with the Use of Spectrophotometry and Quantum Mechanics.": 1 + "Computer Science Foundations: Coding with Scratch, Python and Django Framework": 1 + "Advanced Computer Science: Creating Interactive Applications with Scratch, Python, and Tkinter": 1 + "Computer Science Foundations: Data Structures in Python and Scratch": 1 + "Computer Science Essentials: Web Development with Scratch, Python and Flask": 1 + "Computer Science Foundations: Introduction to Machine Learning with Python and Scratch": 1 + "Computer Science Basics: Coding with Scratch, Python and Numpy": 1 + "Computer Science Foundations: Algorithm Design with Scratch and Python": 1 + "Computer Science Principles: Coding with Scratch, Python and TensorFlow": 1 + "Computer Science Foundations: Building Games with Scratch and Python’s Pygame": 1 + "Computer Science Foundations: Coding with Scratch, Python and Pandas for Data Analysis": 1 + "Chemistry for Kids: Exploring Elements using Test Tubes and Laboratory Glassware": 1 + "Chemistry for Kids: Unveiling Elements with Microscopes and Laboratory Glassware": 1 + "Chemistry for Kids: Discovering Elements with Bunsen Burners and Laboratory Glassware": 1 + "Chemistry for Kids: Learning about Elements with Beakers and Laboratory Glassware": 1 + "Chemistry for Kids: Unveiling Elements through pH Testing and Laboratory Glassware": 1 + "Chemistry for Kids: Understanding Elements with Spectrometers and Laboratory Glassware": 1 + "Chemistry for Kids: Investigating Elements using Petri Dishes and Laboratory Glassware": 1 + "Chemistry for Kids: Unveiling Elements with Distillation Apparatus and Laboratory Glassware": 1 + "Chemistry for Kids: Unveiling Elements using Chemical Reactions and Laboratory Glassware": 1 + "Chemistry for Kids: Revealing Elements with Chromatography and Laboratory Glassware": 1 + "Social Studies: The Evolution of Language Through The Printing Press": 1 + "Social Studies: The Impact of the Internet on The Evolution of Language": 1 + "Social Studies: The Evolution of Language: A Study of Cryptography": 1 + "Social Studies: The Evolution of Language Through the Lens of Linguistic Anthropology": 1 + "Social Studies: The Evolution of Language and the Role of Braille": 1 + "Social Studies: The Evolution of Language: An Exploration of Sign Language": 1 + "Social Studies: The Influence of Morse Code on The Evolution of Language": 1 + "Social Studies: The Evolution of Language in the Digital Age": 1 + "Social Studies: The Evolution of Language: The Impact of Radio Technology": 1 + "Social Studies: The Evolution of Language: A Study on the Effects of Television Broadcasting": 1 + "Physical Education: An In-depth Study of the Nervous System and Human Movement Using Functional Electrical Stimulation and MRI Techniques": 1 + "Physical Education: Exploring the Role of Functional Electrical Stimulation and Biofeedback in the Nervous System and Human Movement": 1 + "Physical Education: The Nervous System, Human Movement, and the Implications of Functional Electrical Stimulation and Neuroimaging": 1 + "Physical Education: Functional Electrical Stimulation, The Nervous System, and Human Movement - An Electromyography Approach": 1 + "Physical Education: The Nervous System, Human Movement, and Functional Electrical Stimulation - Insights from TENS Unit ": 1 + "Physical Education: The Nervous System and Human Movement - A Deep Dive into Functional Electrical Stimulation and Electroencephalography": 1 + "Physical Education: Functional Electrical Stimulation in The Nervous System and Human Movement - Understanding the Role of Transcranial Magnetic Stimulation": 1 + "Physical Education: The Nervous System, Human Movement, and Functional Electrical Stimulation - A Neuromodulation Perspective": 1 + "Physical Education: The Nervous System and Human Movement - An Exploration of Functional Electrical Stimulation and Neuroplasticity": 1 + "Physical Education: The Nervous System, Human Movement and Functional Electrical Stimulation - Insights from Neuromuscular Junction.": 1 + "Digital Art 200: Mastering Layers in Adobe Photoshop": 1 + "Digital Art 200: Creating Vector Graphics with Adobe Photoshop": 1 + "Digital Art 200: Text Manipulation Techniques in Adobe Photoshop": 1 + "Digital Art 200: Advanced Brush Techniques in Adobe Photoshop": 1 + "Digital Art 200: Color Correction with Adobe Photoshop": 1 + "Digital Art 200: Photo Retouching Techniques in Adobe Photoshop": 1 + "Digital Art 200: Creating 3D Effects with Adobe Photoshop": 1 + "Digital Art 200: Mastering Image Adjustment Tools in Adobe Photoshop": 1 + "Digital Art 200: Advanced Filters and Effects in Adobe Photoshop": 1 + "Digital Art 200: Creating Digital Collages with Adobe Photoshop": 1 + "Utilizing Geographic Information Systems (GIS) in Logic and Critical Thinking: Evaluating Environmental Policies": 1 + "Logic and Critical Thinking in Evaluating Environmental Policies: An Examination of the Role of Remote Sensing Technology": 1 + "Evaluating Environmental Policies with Logic Models: A Course in Critical Thinking": 1 + "Logic and Critical Thinking: Evaluating Environmental Policies using Life Cycle Assessment": 1 + "Logic and Critical Thinking: Evaluating Environmental Policies through Ecological Footprint Analysis": 1 + "Utilizing Environmental Impact Assessment in Logic and Critical Thinking: Evaluating Environmental Policies": 1 + "Evaluating Environmental Policies: An Approach to Logic and Critical Thinking using the Carbon Footprint Concept": 1 + "Data Analysis in Logic and Critical Thinking: Evaluating Environmental Policies": 1 + "Logic and Critical Thinking: Evaluating Environmental Policies with Carbon Accounting": 1 + "Logic and Critical Thinking: Evaluating Environmental Policies using the Concept of Sustainability Indices.": 1 + "Neuroscience Basics: Exploring the Brain with 3D Models": 1 + "Neuroscience Basics: Exploring the Brain using MRI Scans": 1 + "Neuroscience Basics: A Deep Dive into Brain Mapping Techniques": 1 + "Neuroscience Basics: Understanding Brain Functions through EEG": 1 + "Neuroscience Basics: Interactive Study of the Brain using fMRI": 1 + "Neuroscience Basics: Exploring Neural Networks with Interactive Models": 1 + "Neuroscience Basics: Using PET Scans to Navigate the Brain": 1 + "Neuroscience Basics: Exploring the Brain with Computational Models": 1 + "Neuroscience Basics: Brain Exploration with Diffusion Tensor Imaging": 1 + "Neuroscience Basics: Decoding Cognition through Functional Connectivity Analysis": 1 + "Physical Education: Using Fitbit Trackers to Incorporate Heart Rate Monitors in Studying Movement": 1 + "Physical Education: Utilizing Garmin Devices in Studying Movement via Heart Rate Monitoring": 1 + "Physical Education: Apple Watch as a Tool for Heart Rate Monitoring in Movement Studies": 1 + "Physical Education: Incorporating Heart Rate Monitors and GPS Technology in Studying Movement": 1 + "Physical Education: Polar Heart Rate Monitors in Analyzing Student Movement": 1 + "Physical Education: Exploring Movement Studies through Heart Rate Monitors and Virtual Reality": 1 + "Physical Education: The Role of Smart Bands in Heart Rate Monitoring for Movement Study": 1 + "Physical Education: Studying Movement with Heart Rate Monitors and IoT (Internet of Things)": 1 + "Physical Education: The Use of Smartphone Apps for Heart Rate Monitoring in Movement Study": 1 + "Physical Education: Incorporating Heart Rate Monitors and Machine Learning in Studying Movement.": 1 + "Physics Fun: An In-depth Analysis of Torque Using Pendulum Motion": 1 + "Physics Fun: Forces, Motion, and Torque: A Detailed Study Through Vector Calculations": 1 + "Physics Fun: Exploring Torque and Motion with Frictionless Pulley Systems": 1 + "Physics Fun: The Dynamics of Torque: A Study Through Newton's Laws of Motion": 1 + "Physics Fun: Understanding Torque: Analysis through Lever Arm Concepts": 1 + "Physics Fun: Forces and Motion: A Comprehensive Study of Torque using Force Meters": 1 + "Physics Fun: Forces, Motion and Torque: Exploring with Incline Plane Experiments": 1 + "Physics Fun: Torque and Motion: Detailed Study Using Rotational Dynamics": 1 + "Physics Fun: Torque in Motion: A Comprehensive Study using Physics Simulation Software": 1 + "Physics Fun: Forces and Motion: In-depth Study of Torque Using Torsion Pendulum Experiments.": 1 + "Biology: A Deep Dive into Cells and Microorganisms through Light Microscopy ": 1 + "Biology: Exploring Cells and Microorganisms using Electron Microscopy": 1 + "Biology: Understanding Cells and Microorganisms through DNA Sequencing": 1 + "Biology: Studying Cells and Microorganisms with Fluorescence Microscopy": 1 + "Biology: An In-depth Study of Cells and Microorganisms with Mass Spectrometry": 1 + "Biology: A Detailed Look at Cells and Microorganisms using Confocal Microscopy": 1 + "Biology: Decoding Cells and Microorganisms through Genomic Sequencing": 1 + "Biology: Exploring the World of Cells and Microorganisms using X-ray Crystallography": 1 + "Biology: Unveiling the Mysteries of Cells and Microorganisms through Polymerase Chain Reaction": 1 + "Biology: Understanding the Life of Cells and Microorganisms through Cellular Respiration.": 1 + "Computer Science: Introduction to Python Programming": 1 + "Computer Science: Introduction to Java Programming": 1 + "Computer Science: Introduction to C++ Programming": 1 + "Computer Science: Introduction to JavaScript Programming": 1 + "Computer Science: Introduction to SQL Database Management": 1 + "Computer Science: Introduction to Ruby Programming": 1 + "Computer Science: Introduction to Swift Programming": 1 + "Computer Science: Introduction to HTML & CSS Web Development": 1 + "Computer Science: Introduction to PHP Web Development": 1 + "Computer Science: Introduction to Programming with R": 1 + "Computer Science: Introduction to Programming in MATLAB": 1 + "Social Studies: A Deep Dive into The American Revolution": 1 + "Social Studies: Exploring Slavery and Civil Rights in American History": 1 + "Social Studies: The Impact of Industrial Revolution on American Society": 1 + "Social Studies: The Role of Technology in Shaping American History": 1 + "Social Studies: The Influence of Religion in Early American History": 1 + "Social Studies: The Concept of Manifest Destiny in American Expansion": 1 + "Social Studies: A Study of Women's Suffrage in American History": 1 + "Social Studies: An Examination of American History through Maps and Cartography": 1 + "Social Studies: The Impact of Cold War on American Foreign Policy": 1 + "Social Studies: The Role of Gunpowder Technology in American Wars": 1 + "Social Studies: An Analysis of the Great Depression in American Economic History": 1 + "Health: Utilizing Protective Gear for Safety Measures in Traditional Sports": 1 + "Health: Advancements in Helmet Technology for Safety in Traditional Sports": 1 + "Health: Implementation of Video Replay for Injury Prevention in Traditional Sports": 1 + "Health: Safety Measures in Traditional Sports: Focusing on Hydration Techniques": 1 + "Health: Safety Measures in Traditional Sports: The Role of Sports Medicine": 1 + "Health: An Exploration of Safety Equipment in Traditional Sports": 1 + "Health: The Impact of Artificial Turf on Safety Measures in Traditional Sports": 1 + "Health: Safety Measures in Traditional Sports: Understanding the Role of Referees": 1 + "Health: Utilizing Safety Nets in Traditional Sports for Injury Prevention": 1 + "Health: Safety Measures in Traditional Sports: A Study on the Effectiveness of Mouth Guards.": 1 + "Sound Wave Propagation: An In-depth Study of Acoustics using Decibel Meters and Oscilloscope": 1 + "Exploring Sound Wave Propagation: Acoustic Analysis using Decibel Meters and Frequency Spectrum": 1 + "Decibel Meters and Noise-cancelling Technology: A Comprehensive Study on Sound Wave Propagation ": 1 + "Sound Wave Propagation: In-depth Analysis of Acoustics using Decibel Meters and Fourier Transforms": 1 + "Acoustic Echo Cancellation in Sound Wave Propagation: A Study using Decibel Meters": 1 + "Sound Wave Propagation: A Detailed Study of Acoustics using Decibel Meters and Audio Spectrum Analyzer": 1 + "Harnessing Sound Wave Propagation: An Exploration of Acoustics using Decibel Meters and Digital Signal Processing": 1 + "Decoding Sound Wave Propagation: An In-depth Study of Acoustics using Decibel Meters and Phase Measurement": 1 + "Sound Wave Propagation: An Advanced Study of Acoustics using Decibel Meters and Sonar Technology": 1 + "Sound Wave Propagation: Investigating Acoustics using Decibel Meters and Subtractive Synthesis Techniques": 1 + "Environmental Science: Carbon Footprint Reduction Using Life Cycle Assessment in Sports Equipment Manufacturing": 1 + "Environmental Science: Utilising 3D Printing Technology for Carbon Footprint Reduction in Sports Equipment Production": 1 + "Environmental Science: Implementing Lean Manufacturing for Carbon Footprint Reduction in Sports Equipment Production": 1 + "Environmental Science: Carbon Footprint Reduction through Energy Efficiency Improvements in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Footprint Reduction with Sustainable Sourcing in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Footprint Reduction Utilising Renewable Energy in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Footprint Reduction through Waste Reduction Techniques in Sports Equipment Production": 1 + "Environmental Science: Carbon Footprint Reduction with Eco-Design Concepts in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Footprint Reduction through Biodegradable Materials in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Footprint Reduction Implementing Circular Economy in Sports Equipment Manufacturing": 1 + "Biology: Exploring Fundamentals of Natural Patterns and Designs Through Microscopy ": 1 + "Biology: Fundamentals of Natural Patterns and Designs - A Deep Dive into DNA Sequencing": 1 + "Biology: Understanding Natural Patterns Through Computer Modelling and Simulation": 1 + "Biology: Decoding the Fundamentals of Natural Designs with Genetic Engineering ": 1 + "Biology: Analysis of Natural Patterns and Designs Using Bioinformatics Tools": 1 + "Biology: Studying Fundamentals of Natural Patterns Through Cellular Imaging Techniques": 1 + "Biology: Application of CRISPR Technology in Understanding Natural Designs": 1 + "Biology: Fundamentals of Natural Patterns - A Study Using Electron Microscopy": 1 + "Biology: Insights into Natural Designs Through Genome Mapping": 1 + "Biology: Nanotechnology's Role in Understanding Fundamentals of Natural Patterns.": 1 + "The Trade Revolution: How Gutenberg's Printing Press, Paper Money, and the Sextant Altered Global Commerce and Societies": 1 + "The Impact of Compass Navigation, Paper Money, and the Sextant on the Evolution of Global Trade and Civilizations": 1 + "The Trade Renaissance: The Significant Role of Paper Money, the Sextant, and the Mechanical Clock in the Transformation of Global Commerce": 1 + "Navigating Change: How Paper Money, the Sextant, and the Telescope Transformed Global Trade and Civilizations": 1 + "The Trade Transformation: The Influence of Paper Money, the Sextant, and the Spinning Wheel on Global Exchange and Societies": 1 + "Global Shifts: The Impact of Paper Money, the Sextant, and the Telegraph on International Trade and Civilizations": 1 + "The Trade Transformation: Exploring the Influence of Paper Money, the Sextant, and the Steam Engine on Global Commerce": 1 + "Unfolding Trade Evolution: Paper Money, the Sextant, and the Cotton Gin's Impact on Global Trade and Civilizations": 1 + "The Trade Transformation: The Role of Paper Money, the Sextant, and the Power Loom in Shaping Global Trade and Societies": 1 + "Changing Tides: How Paper Money, the Sextant, and the Transatlantic Cable Revolutionized Global Trade and Civilizations": 1 + "Physics: Understanding Light and Color Using Laser Spectroscopy and Photomultiplier Tube": 1 + "Physics: Analyzing Light and Color with Tunable Diode Laser Absorption Spectroscopy": 1 + "Physics: Deciphering Light and Color Using Laser Spectroscopy and Spectral Analysis": 1 + "Physics: Decoding Light and Color with Raman Spectroscopy": 1 + "Physics: Interpreting Light and Color by Combining Laser Spectroscopy and Quantum Mechanics": 1 + "Physics: Explicating Light and Color through Laser Spectroscopy and Fourier Transform Infrared Spectroscopy ": 1 + "Physics: Clarifying Light and Color Using Laser Spectroscopy and Polarization Concepts": 1 + "Physics: Unveiling Light and Color with Laser Spectroscopy and Photodetectors": 1 + "Physics: Explaining Light and Color Through Laser Spectroscopy and Optical Coherence Tomography": 1 + "Physics: Decoding Light and Color by Integrating Laser Spectroscopy and Diffraction Grating.": 1 + "Interactive Music Theory: Mastering Classical Composition with Ableton Live, Sibelius, and MIDI Controllers": 1 + "Composing Classical Music: Advanced Techniques with Ableton Live, Sibelius, and Pro Tools": 1 + "Digital Musicology: Understanding Music Theory through Classical Composition using Ableton Live, Sibelius and Audacity": 1 + "Classical Composition Mastery: An In-depth Study using Ableton Live, Sibelius, and Melodyne": 1 + "Interactive Classical Music Creation: Using Ableton Live, Sibelius, and MAX/MSP for Advanced Composition": 1 + "Music Theory and Composition: A Practical Approach using Ableton Live, Sibelius, and Logic Pro X": 1 + "Modern Classical Composition: Exploring Music Theory with Ableton Live, Sibelius, and Reason": 1 + "Transformative Music Theory: Mastering Classical Composition using Ableton Live, Sibelius, and Cubase": 1 + "Digital Symphony: Creating Classical Music with Ableton Live, Sibelius, and GarageBand": 1 + "Classical Music in the Digital Age: Advanced Composition Techniques using Ableton Live, Sibelius, and FL Studio": 1 + "Biology: Cell Structures - Understanding Mitosis with Fluorescence Microscopy": 1 + "Biology: Cell Structures - Exploring Mitosis with Confocal Microscopy": 1 + "Biology: Cell Structures - A Deep Dive into Mitosis with Electron Microscopy": 1 + "Biology: Cell Structures - Unraveling Mitosis using Digital Holography Microscopy ": 1 + "Biology: Cell Structures - Deciphering Mitosis with Atomic Force Microscopy": 1 + "Biology: Cell Structures - Studying Mitosis through the Lens of Two-Photon Excitation Microscopy": 1 + "Biology: Cell Structures - A Comprehensive Study of Mitosis using Super-Resolution Microscopy": 1 + "Biology: Cell Structures - Understanding Mitosis with Scanning Tunneling Microscopy": 1 + "Biology: Cell Structures - Mitosis Examination with X-ray Microscopy": 1 + "Biology: Cell Structures - Delving into Mitosis with Light Sheet Fluorescence Microscopy": 1 + "The Art of Logic: Exploring Deductive Reasoning": 1 + "The Art of Logic: An Insight into Inductive Reasoning": 1 + "The Art of Logic: A Deep Dive into Syllogistic Reasoning": 1 + "The Art of Logic: Unpacking Propositional Logic": 1 + "The Art of Logic: A Journey into Reasoning with Truth Tables": 1 + "The Art of Logic: Understanding Reasoning with Venn Diagrams": 1 + "The Art of Logic: Deciphering Reasoning with Euler Diagrams": 1 + "The Art of Logic: A Study of Reasoning using Logical Connectives": 1 + "The Art of Logic: A Journey into Reasoning with Digital Logic Gates": 1 + "The Art of Logic: Exploring Reasoning with Predicate Logic": 1 + "The Art of Logic: A Journey into Reasoning using Formal Logic Systems": 1 + "Computer Science: Docker and Kubernetes in Action: Building Cloud-Based Fitness Apps using Python for Athletes": 1 + "Computer Science: Kubernetes and Jenkins CI/CD: Building Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes in Action with React Native: Building Mobile Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and GraphQL: Building Optimized Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes with ElasticSearch: Building Searchable Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and TensorFlow: Building AI-Driven Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Node.js: Building Scalable Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes with MongoDB: Building Database-Driven Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes in Action with Swift: Building iOS Fitness Apps for Athletes": 1 + "Science: Sound Waves, Acoustics, and the Doppler Effect: An In-depth Study on Oscilloscopes": 1 + "Exploring the Doppler Effect and Acoustics Using the Spectrum Analyzer": 1 + "The Role of Microphones in Understanding Sound Waves, Acoustics, and the Doppler Effect": 1 + "Analyzing Sound Waves: A Focus on the Doppler Effect and Waveform Generators": 1 + "Acoustics and the Doppler Effect: A Special Emphasis on Sound Level Meters": 1 + "Implementing the Decibel Scale in the Study of Sound Waves, Acoustics, and the Doppler Effect": 1 + "The Doppler Effect and Acoustics: An Exploration through Sound Editing Software": 1 + "Science: Sound Waves, Acoustics, the Doppler Effect, and the Influence of Equalizers": 1 + "The Impact of Reverberation Chambers in Studying Sound Waves, Acoustics, and the Doppler Effect": 1 + "Sound Waves, Acoustics, and the Doppler Effect: A Detailed Examination with the Use of Acoustic Cameras.": 1 + "The Impact of Amazon Echo Smart Speakers on Emotional Health: An In-depth Health Education Study with 10 Therapeutic Interventions.": 1 + "Evaluating the Influence of AI Music Generation Using OpenAI's MuseNet on Emotional Well-being: Ten Possible Therapeutic Approaches.": 1 + "The Effect of Google Home Smart Speakers on Emotional Wellness: A Detailed Health Education Study Proposing 10 Different Solutions.": 1 + "Exploring the Influence of AI-Generated Music Using Jukin Media on Emotional Well-being: A Comprehensive Study with 10 Potential Remedies.": 1 + "The Role of Apple HomePod in Affecting Emotional Health: An In-depth Health Education Study Outlining 10 Possible Therapeutic Approaches.": 1 + "The Effect of AI Music Generation Using AIVA on Emotional Health: A Detailed Study with Ten Potential Interventions.": 1 + "Understanding the Impact of Sonos One Smart Speakers on Emotional Wellness: A Comprehensive Health Education Study with 10 Solutions.": 1 + "The Influence of AI-Generated Music Using Amper Music on Emotional Well-being: An In-depth Study Proposing 10 Different Therapeutic Methods.": 1 + "How Bose Home Speaker 500 Affects Emotional Health: A Detailed Health Education Study Offering 10 Potential Solutions.": 1 + "Evaluating the Role of AI Music Generation Using IBM's Watson Beat on Emotional Wellness: A Comprehensive Study with 10 Therapeutic Interventions.": 1 + "Mathematics: Exploring Geometry in Art through Euclidean Concepts: A Study using Blender for 3D Modelling": 1 + "A Deep Dive into Geometry in Art via Euclidean Concepts: Utilizing AutoCAD for 3D Modelling": 1 + "Mathematics: A Detailed Analysis of Geometry in Art through Euclidean Concepts with Rhino 3D": 1 + "Geometry in Art: An Examination through Euclidean Concepts using SketchUp for 3D Modelling": 1 + "Mathematics: Investigating Geometry in Art through Euclidean Concepts: Applications of SolidWorks in 3D Modelling": 1 + "Geometry in Art through Euclidean Concepts: An Examination with the Assistance of Autodesk 3ds Max": 1 + "Geometry in Art: A Comprehensive Study through Euclidean Concepts Using Cinema 4D for 3D Modelling": 1 + "Mathematics: Unfolding Geometry in Art through Euclidean Concepts: An Exploration with ZBrush for 3D Modelling": 1 + "Geometry in Art: A Detailed Examination through Euclidean Concepts using Fusion 360 for 3D Modelling": 1 + "Mathematics: Navigating Geometry in Art through Euclidean Concepts: A Study using Maya for 3D Modelling": 1 + "Physics: Detailed Analysis of Light Refraction using Snell's Law and Laser Holography": 1 + "Physics: Spectroscopy and Color Spectrum Study with Prisms and Laser Holography": 1 + "Physics: Understanding Polarization through Laser Holography and Prisms": 1 + "Physics: Studying Light Refraction and Color Spectrum with Laser Holography, Prisms, and Photonic Crystals": 1 + "Physics: Applications of Fresnel Equations in Light Refraction and Color Spectrum with Laser Holography and Prisms": 1 + "Physics: Exploring the Phenomenon of Dispersion with Prisms and Laser Holography": 1 + "Physics: Studying Light Refraction using Brewster's Angle, Laser Holography, and Prisms": 1 + "Physics: Investigating the Impact of Absorption on Color Spectrum with Laser Holography and Prisms": 1 + "Physics: Studying Light Refraction and Color Spectrum with Laser Holography, Prisms, and Waveplates": 1 + "Physics: Exploring Interference and Diffraction in Light Refraction and Color Spectrum with Laser Holography and Prisms.": 1 + "Social Studies: The Role of Drone Technology in Enhancing Agricultural Society": 1 + "Social Studies: The Impact of AI-Powered Irrigation Systems on Agricultural Society ": 1 + "Social Studies: The Influence of Machine Learning on Crop Yield in Agricultural Societies ": 1 + "Social Studies: Exploring the Impact of AI-Based Soil Analysis on Agricultural Society ": 1 + "Social Studies: The Effect of Autonomous Tractors on Productivity in Agricultural Societies": 1 + "Social Studies: Application of AI in Predictive Weather Modeling for Agricultural Societies ": 1 + "Social Studies: The Transformation of Agricultural Society through AI-Enabled Precision Farming ": 1 + "Social Studies: The Impacts of AI-Integrated Greenhouse Technology on Agricultural Society ": 1 + "Social Studies: Understanding the Effect of AI in Genetic Crop Engineering in Agricultural Societies ": 1 + "Social Studies: Impact of Artificial Intelligence in Pest Control on Agricultural Society": 1 + "Music: The Rhythm of Nature - A Comprehensive Guide to Mixing in Logic Pro Using Digital Audio Workstations": 1 + "Advanced Techniques in Logic Pro: Exploring the Role of MIDI Sequencing in Digital Audio Workstations": 1 + "The Art of Sound Design: Understanding Logic Pro and its Role in Digital Audio Workstations": 1 + "Music Production Essentials: Exploring Beat Making in Logic Pro with Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools in Digital Audio Workstations": 1 + "Sound Engineering Secrets: Understanding the Role of Logic Pro’s Flex Pitch in Digital Audio Workstations": 1 + "Music: The Rhythm of Nature - Delving into the World of Sampling in Logic Pro Using Digital Audio Workstations": 1 + "Logic Pro and Digital Audio Workstations: A Detailed Look at Automation Tools": 1 + "The Role of Logic Pro in Digital Audio Workstations: The Power of Synthesis Tools": 1 + "Music Production: Exploring the Role of Drum Machine Programming in Logic Pro Using Digital Audio Workstations": 1 + "Language Arts: Exploring Shakespeare's Works through Film Adaptation": 1 + "Digital Analysis of Shakespeare's Works in Language Arts": 1 + "Language Arts: Understanding Shakespeare's Plays with VR Technology": 1 + "Analyzing Shakespeare's Works through Linguistic Software": 1 + "Language Arts: Studying Shakespeare's Dramas with Audio Books": 1 + "Language Arts: Exploring Shakespeare's Works through Interactive E-books": 1 + "Language Arts: Shakespeare's Works and the Use of Artificial Intelligence": 1 + "Exploring Shakespeare's Works in Language Arts: A Study with Text Mining": 1 + "Language Arts: Understanding Shakespeare through Social Media Analysis": 1 + "Language Arts: Exploring Shakespeare's Works using Augmented Reality.": 1 + "Music and Fractal Mathematics: Exploring Patterns with Mandelbrot Set": 1 + "Music and Mathematics: Understanding Patterns Through Fourier Analysis": 1 + "Patterns in Music and Mathematics: A Deep Dive into Fibonacci Sequences": 1 + "Music and Mathematics: Understanding Patterns Using the Moiré Effect": 1 + "Music and Mathematics: Interpreting Patterns with Cellular Automata": 1 + "Harmonic Patterns: Music and Mathematics Through the Lens of Oscilloscopes": 1 + "Music and Mathematics: Unraveling Patterns with Waveform Analysis": 1 + "Deciphering Musical Patterns: A Mathematical Approach Using Matrix Theory": 1 + "Music and Mathematics: Understanding Patterns through Fractal Geometry": 1 + "Music and Mathematics: Exploring Rhythmic Patterns with Euclidean Algorithms": 1 + "Mathematics: Exploring Geometry in Art through the Lens of Euclidean Concepts using Pythagorean theorem": 1 + "Mathematics: Geometry in Art Utilizing Euclidean Concepts and CAD Software": 1 + "Mathematics: Analyzing Art through Geometry and Euclidean Concepts using Compass and Straightedge Constructions": 1 + "Mathematics: Geometry in Art and Euclidean Concepts: A Closer Look at Golden Ratio": 1 + "Mathematics: Geometry in Art through the Lens of Euclidean Concepts and Geometric Transformations": 1 + "Mathematics: Geometric Proportions in Art: The Euclidean Approach using Tessellations": 1 + "Mathematics: Euclidean Concepts and the Role of Geometry in Art through the use of the Fractal Tool": 1 + "Mathematics: Geometry in Art: Understanding Euclidean Concepts with the help of a Protractor": 1 + "Mathematics: Insights into Geometry in Art and Euclidean Concepts using Geogebra Software": 1 + "Mathematics: Geometry in Art: A Study of Euclidean Concepts through Symmetry and Asymmetry.": 1 + "Biology: Decoding Cells and Microorganisms through Genomic Sequencing Using CRISPR Technology": 1 + "Analyzing Microbial Genomes with Next-Generation Sequencing in Biology": 1 + "Biology of Cells: Deciphering Microorganisms with Genomic Sequencing and Flow Cytometry": 1 + "Cellular Biology: Microbe Analysis with Genomic Sequencing and Bioluminescence Tools": 1 + "In-depth Biology: Exploring Microorganisms and Cells through Genomic Sequencing and Polymerase Chain Reaction": 1 + "Biological Analysis: Genomic Sequencing and Fluorescence in situ Hybridization for Studying Cells and Microorganisms": 1 + "Biology: Decoding Cellular Structures and Microorganisms with Genomic Sequencing and Mass Spectrometry": 1 + "Decoding Cellular Biology & Microorganisms: An In-Depth Study Using Genomic Sequencing and Gel Electrophoresis": 1 + "Exploring Cells and Microorganisms: A Biological Study Using Genomic Sequencing and Microscopy": 1 + "Advanced Biology: Unfolding Cellular and Microbial Mysteries with Genomic Sequencing and Spectrophotometry": 1 + "Physical Education: Exploring Salsa with Video Analysis Technology": 1 + "Physical Education: Understanding Belly Dance through Kinesthetic Awareness": 1 + "Physical Education: Learning Flamenco with Footwork Techniques": 1 + "Physical Education: Capoeira Dance and Its Cultural Context through Multimedia Tools": 1 + "Physical Education: Interactive Study of Tango with Virtual Reality": 1 + "Physical Education: Bharatanatyam Dance from India Studied through Motion Capture Technology": 1 + "Physical Education: Appreciating Hula Dance with Cultural Anthropology Concepts": 1 + "Physical Education: Irish Step Dance with Rhythm Analysis Software": 1 + "Physical Education: Studying Kathak Dance of India through Historical Context": 1 + "Physical Education: Ballroom Dancing and Bio-mechanical Concepts": 1 + "Physical Education: Exploring Hip Hop Dance with Beat Matching Techniques": 1 + "Introduction to Theatre: The Power of Lighting Design in Performance": 1 + "Introduction to Theatre: Exploring Set Design for Powerful Performances": 1 + "Introduction to Theatre: The Influence of Sound Technology on Performance": 1 + "Introduction to Theatre: The Power of Performance through Costume Design": 1 + "Introduction to Theatre: The Impact of Makeup Artistry on Performance": 1 + "Introduction to Theatre: The Power of Performance and Stage Management": 1 + "Introduction to Theatre: Utilizing Prop Design for Effective Performances": 1 + "Introduction to Theatre: The Power of Performance through Choreography": 1 + "Introduction to Theatre: Harnessing Digital Technology for Performance Power": 1 + "Introduction to Theatre: The Power of Performance - A Study on Method Acting": 1 + "Introduction to Theatre: The Power of Performance - Exploring Voice Modulation Techniques": 1 + "Advanced Mathematics: Exploring Pythagorean Theorem with Geometric Proofs": 1 + "Advanced Mathematics: Utilizing GeoGebra in Advanced Geometric Theorems Exploration": 1 + "Advanced Mathematics: An In-depth Study of Euclidean Proofs in Geometry": 1 + "Advanced Mathematics: Advanced Geometric Proofs and Theorems Exploration using Python": 1 + "Advanced Mathematics: Exploring Circle Theorems in Geometric Proofs": 1 + "Advanced Mathematics: Advanced Geometric Proofs and Theorems Exploration with Desmos": 1 + "Advanced Mathematics: An Exploration of Quadrilaterals and their Theorems in Geometric Proofs": 1 + "Advanced Mathematics: Using 3D Modelling Tools in Advanced Geometric Proofs": 1 + "Advanced Mathematics: Advanced Geometric Proofs - Exploring the Theorems of Similarity": 1 + "Advanced Mathematics: Geometric Proofs and Theorems Exploration with Algebraic Tools": 1 + "Neuroscience: MRI Imaging and the Basics of Brain Function": 1 + "The Impact of Brain Lesions: A Neurological Study Using EEG Technology": 1 + "Neuroscience: Understanding Brain Function and Lesions Through the Lens of Functional MRI ": 1 + "Exploring Brain Function Basics and Lesion Impacts: A Deep Dive into Positron Emission Tomography (PET)": 1 + "Neuroscience: Decoding Brain Function and Lesion Impact Using Diffusion Tensor Imaging (DTI)": 1 + "The Role of Electroencephalography (EEG) in Understanding Brain Function and Lesion Impact": 1 + "Neuroscience: The Impact of Brain Lesions and Basics of Brain Function Through Transcranial Magnetic Stimulation (TMS)": 1 + "Neuropsychology of Brain Lesions: A Structural MRI Approach": 1 + "Functional Near-Infrared Spectroscopy (fNIRS) in Neuroscience: Brain Function Basics and Brain Lesion Impact": 1 + "An Introduction to Magnetoencephalography (MEG) in Studying Brain Function and the Impact of Brain Lesions.": 1 + "Computer Science: Coding Basics with Scratch and Python": 1 + "Computer Science: Creating Games with Scratch and HTML5": 1 + "Computer Science: Animation and Storytelling with Scratch and Adobe Animate": 1 + "Computer Science: Coding Basics with Scratch and Java": 1 + "Computer Science: Understanding Algorithms with Scratch and C++": 1 + "Computer Science: Web Development Basics with Scratch and CSS": 1 + "Computer Science: App Development Foundations with Scratch and Swift": 1 + "Computer Science: Fundamental Programming with Scratch and JavaScript": 1 + "Computer Science: Building Interactive Websites with Scratch and PHP": 1 + "Computer Science: Cybersecurity Foundations with Scratch and SQL": 1 + "Probability & Statistics: Understanding Bayesian Analysis with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Application of Hypothesis Testing with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Exploring Regression Analysis with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Deep Dive into Data Distribution with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: An In-depth Study of Variance Analysis with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Mastering Central Limit Theorem with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Detailed Study of Poisson Distribution with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Unfolding the Mystery of Chi-Square Test with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Comprehensive Study of Correlation Coefficient with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Getting Hands-on with Predictive Analytics using Random Variables in SAS and SPSS.": 1 + "Cell Biology: An In-depth Analysis of Fluorescence Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: A Comprehensive Study of Scanning Electron Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: A Detailed Examination of Transmission Electron Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: A Profound Enquiry into Polymerase Chain Reaction Techniques using Next Generation Sequencing and Gel Electrophoresis": 1 + "Cell Biology: A Comprehensive Study of Confocal Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: Insights into Polymerase Chain Reaction Techniques using Next Generation Sequencing and Flow Cytometry": 1 + "Cell Biology: An In-depth Study of Atomic Force Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: A Comprehensive Analysis of Polymerase Chain Reaction Techniques using Next Generation Sequencing and Spectrophotometry": 1 + "Cell Biology: A Thorough Review of Light Microscopy and Polymerase Chain Reaction Techniques using Next Generation Sequencing": 1 + "Cell Biology: A Comprehensive Study of Polymerase Chain Reaction Techniques using Next Generation Sequencing and Fluorescence-Activated Cell Sorting.": 1 + "Geography: Utilizing ArcGIS and Spatial Analysis in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Employing ArcGIS and 3D Visualization in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Leveraging ArcGIS and Python Programming in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Integrating ArcGIS and Geocoding Techniques in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Utilizing ArcGIS and Cartographic Design in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Applying ArcGIS and Geospatial Data Collection in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Harnessing ArcGIS and Remote Sensing in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Incorporating ArcGIS and Geodatabase Management in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Deploying ArcGIS and Network Analysis in Mapping WWII - Global Impact and Strategy ": 1 + "Geography: Utilizing ArcGIS and GIS Cloud Computing in Mapping WWII - Global Impact and Strategy.": 1 + "Essential Algorithms: Mastering Python and Game Development with Pygame and OOP Concepts": 1 + "Essential Algorithms: Exploring Python, Pygame and Linear Programming for Game Development": 1 + "Essential Algorithms: Delving into Python, Pygame, and Data Structures for Game Design": 1 + "Essential Algorithms: Unpacking Python, Pygame, and AI Concepts for Game Development": 1 + "Essential Algorithms: Python, Pygame, and Machine Learning Integration for Game Development": 1 + "Essential Algorithms: Python, Pygame, and the Use of APIs in Game Development": 1 + "Essential Algorithms: Python, Pygame, and the Incorporation of SQL Databases in Game Design": 1 + "Essential Algorithms: Python, Pygame, and the Use of GUI Libraries for Game Development": 1 + "Essential Algorithms: Python, Pygame, and the Implementation of Multi-threading in Game Design": 1 + "Essential Algorithms: Python, Pygame, and the Integration of Networking for Online Game Development": 1 + "Advanced Language Arts: Deconstructing Econometrics Through Multivariate Analysis in Stata using Correlation Coefficients with Application to GDP": 1 + "Language Arts: The Art of Economic Discourse: An In-depth Study of Econometrics using Stata and the Pearson Correlation Coefficient": 1 + "Language Arts and Econometrics: Exploring Economic Discourse through Multivariate Analysis in Stata using Spearman's Rank Correlation Coefficient": 1 + "The Art of Economic Discourse: Deconstructing Econometrics through Multivariate Analysis in Stata using Correlation Coefficients and Regression Analysis": 1 + "Language Arts: The Art of Economic Discourse: A Comprehensive Study on Multivariate Analysis in Stata using Correlation Coefficients and ANOVA": 1 + "Advanced Econometrics: Unveiling Economic Discourse through Multivariate Analysis in Stata using Partial Correlation Coefficients": 1 + "Language Arts: The Art of Economic Discourse: Deconstructing Econometrics through Multivariate Analysis in Stata using Correlation Coefficients and Machine Learning": 1 + "Language Arts: The Art of Economic Discourse: Deconstructing Econometrics through Multivariate Analysis in Stata using Correlation Coefficients and Big Data Analytics": 1 + "Advanced Econometrics: The Art of Economic Discourse through Multivariate Analysis in Stata using Correlation Coefficients and Time Series Analysis": 1 + "Language Arts: The Art of Economic Discourse: Deconstructing Econometrics through Multivariate Analysis in Stata using Correlation Coefficients and Monte Carlo Simulation": 1 + "Language Arts: Exploring Food in Shakespeare's Works ": 1 + "Language Arts: Analyzing the Role of Food in Victorian Literature through Digital Humanities": 1 + "Language Arts: A Thematic Study of Food in 19th Century British Novels": 1 + "Language Arts: Food Imagery in Modern Poetry: A Study through Text Mining": 1 + "Language Arts: The Impact of Food in Greek Mythology using Semantic Analysis": 1 + "Language Arts: Food Symbolism in American Literature: Understanding through Concordance Analysis": 1 + "Language Arts: Food Metaphors in Classic Literature: An Exploration with Natural Language Processing": 1 + "Language Arts: Food as Cultural Signifier in Postcolonial Literature: A Discourse Analysis Approach": 1 + "Language Arts: Food References in Children’s Literature: A Study through Corpus Linguistics": 1 + "Language Arts: Food in Gothic Literature: A Critical Analysis through Machine Learning.": 1 + "Foundations of Computer Science: Building Robotics with Scratch, Arduino, 3D Printing, and Raspberry Pi": 1 + "Advanced Course in Computer Science: Developing Robotics Using Scratch, Arduino, 3D Printing, and Python Programming": 1 + "Computer Science Essentials: Creating Robots with Scratch, Arduino, 3D Printing, and C++ Coding": 1 + "In-depth Guide to Computer Science: Constructing Robotics with Scratch, Arduino, 3D Printing, and Lego Mindstorms": 1 + "Computer Science Framework: Building Robotics with Scratch, Arduino, 3D Printing, and AI Concepts": 1 + "Computer Science Mastery: Developing Robotics with Scratch, Arduino, 3D Printing, and Machine Learning Principles": 1 + "Comprehensive Computer Science: Designing Robotics with Scratch, Arduino, 3D Printing, and Internet of Things (IoT)": 1 + "Advanced Robotics in Computer Science: Using Scratch, Arduino, 3D Printing, and CAD Design": 1 + "Computer Science Perspectives: Building Robotics with Scratch, Arduino, 3D Printing, and Microcontroller Programming": 1 + "Computer Science in Depth: Crafting Robots with Scratch, Arduino, 3D Printing, and Servo Motor Integration.": 1 + "Introduction to Formal Logic for Beginners: Utilizing Syllogistic Logic": 1 + "Basic Principles of Formal Logic: An Introductory Course on Propositional Logic for Beginners": 1 + "Understanding Formal Logic: A Beginner's Guide to Predicate Logic": 1 + "Uncovering Truth Tables: Basic Principles of Formal Logic for Beginners": 1 + "Formal Logic for Beginners: Exploring the Fundamentals of Symbolic Logic": 1 + "Basic Principles of Formal Logic: An Introduction to Boolean Algebra for Beginners": 1 + "Mastering Formal Logic: A Beginner's Guide to Quantifiers": 1 + "Basic Principles of Formal Logic: A Comprehensive Course on Inference Rules for Beginners": 1 + "Formal Logic and the Art of Reasoning: An Introductory Course on Deontic Logic for Beginners": 1 + "Basic Principles of Formal Logic: An Exploration of Modus Ponens for Beginners.": 1 + "Computer Science: Creating Beats with Python - An Introduction to Music Technology using Audacity": 1 + "Computer Science: Manipulating Sound Waves in Python - A Deep Dive into Music Technology": 1 + "Computer Science: Creating Electronic Beats with Python - Utilizing MIDI in Music Technology": 1 + "Computer Science: Python and Pro Tools - An In-depth Look at Music Technology": 1 + "Computer Science: Making Music with Python - Exploring the Concept of Digital Signal Processing": 1 + "Computer Science: Python in Music - An Intro to Beat Tracking with Librosa": 1 + "Computer Science: Crafting Beats with Python - A Study of FFT Algorithms in Music Technology": 1 + "Computer Science: Python for DJs - An Intro to Ableton Live and Music Technology": 1 + "Computer Science: Music Production with Python - Exploring Synthesis Techniques": 1 + "Computer Science: Creating Beats with Python - An Introduction to Music Technology using Logic Pro X.": 1 + "Mathematics: Multivariate Analysis in Environmental Research Statistics Using R Software": 1 + "Advanced Techniques of Multivariate Analysis in Environmental Research Statistics: Application of SPSS": 1 + "Mathematics: Multivariate Analysis in Environmental Research Statistics with MATLAB": 1 + "Environmental Research Statistics: Multivariate Analysis using Python": 1 + "Mathematics & Environmental Research: Multivariate Analysis using SAS": 1 + "Multivariate Analysis in Environmental Research Statistics: An In-depth Study with Excel": 1 + "Advanced Environmental Research: Mathematic Approaches in Multivariate Analysis using STATA": 1 + "Utilizing JMP for Multivariate Analysis in Environmental Research Statistics": 1 + "Mathematics: Multivariate Analysis in Environmental Research Statistics with an Emphasis on PCA": 1 + "Environmental Research Statistics: Multivariate Analysis and Interpretation with Minitab": 1 + "English: Utilizing Google Ngram Viewer and Python for Text Mapping - Critical Thinking and Textual Analysis": 1 + "English: Applying Google Ngram Viewer and Text Mining in Text Mapping for English: Critical Thinking and Textual Analysis": 1 + "English: Advanced Text Mapping - Google Ngram Viewer, Stanford's CoreNLP and Critical Thinking": 1 + "English: Textual Analysis through Google Ngram Viewer and Machine Learning: A Course in English Critical Thinking": 1 + "English: Using Google Ngram Viewer and Natural Language Processing (NLP) in Text Mapping for Critical Thinking and Textual Analysis": 1 + "English: Implementing Google Ngram Viewer and Jupyter Notebooks for Text Mapping: A Deep Dive into Critical Thinking and Textual Analysis": 1 + "English: Google Ngram Viewer and Text Analytics in Text Mapping: An English Course in Critical Thinking and Textual Analysis": 1 + "English: Google Ngram Viewer and Sentiment Analysis in Text Mapping for English: Critical Thinking and Textual Analysis": 1 + "English: Applying Google Ngram Viewer and Tableau for Text Mapping in English: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping with Google Ngram Viewer and MATLAB for English: Critical Thinking and Textual Analysis.": 1 + "Economics 150: The Impact of Spotify on the Music Industry: A Comparative Analysis": 1 + "Economics 150: Deciphering the Role of Blockchain in E-commerce and Music Industry": 1 + "Economics 150: AI's Influence on E-commerce in the Music Industry: An In-depth Study": 1 + "Economics 150: The Impact of Digital Distribution Platforms on the E-commerce of Music": 1 + "Economics 150: Evaluating the Effect of Streaming Services on the Music Industry's E-commerce": 1 + "Economics 150: The Role of Social Media Marketing in E-commerce for the Music Industry": 1 + "Economics 150: Investigating the Impact of SEO in E-commerce for the Music Industry": 1 + "Economics 150: The Influence of E-commerce Tools like Shopify on the Music Industry": 1 + "Economics 150: The Effect of Mobile Applications on E-commerce in the Music Industry": 1 + "Economics 150: Analyzing the Impact of Cybersecurity on E-commerce in the Music Industry": 1 + "Elementary: Understanding Asian Geography through Environmental Studies using Google Earth and ArcGIS": 1 + "Elementary: Exploring African Geography through Environmental Studies using Google Earth and Climate Change Concepts": 1 + "Elementary: Analysing European Geography through Environmental Studies using Google Earth and Satellite Imagery": 1 + "Elementary: Comprehensive Study of North American Geography through Environmental Studies using Google Earth and Drone Technology": 1 + "Elementary: Decoding South American Geography through Environmental Studies using Google Earth and Geographical Information Systems (GIS)": 1 + "Elementary: Understanding Antarctic Geography through Environmental Studies using Google Earth and Ice Core Data": 1 + "Elementary: Exploration of Australian Geography through Environmental Studies using Google Earth and 3D Terrain Models": 1 + "Elementary: Study of Oceanic Geography through Environmental Studies using Google Earth and Marine Biology Concepts": 1 + "Elementary: Unveiling Middle Eastern Geography through Environmental Studies using Google Earth and Desertification Studies": 1 + "Elementary: Grasping Arctic Geography through Environmental Studies using Google Earth and Permafrost Research.": 1 + "Detailed Analysis of Mitochondrial Structures Dissection using CRISPR-Cas9 Technology and Flow Cytometry with Electron Microscopy": 1 + "Focused Study of Nuclear Structures Dissection using CRISPR Technology, Flow Cytometry, and Confocal Microscopy": 1 + "In-depth Investigation of Ribosomal Structures Dissection using CRISPR Technology, Flow Cytometry, and Atomic Force Microscopy": 1 + "Comprehensive Study of Lysosomal Structures Dissection using CRISPR Technology, Flow Cytometry, and Fourier-Transform Infrared Spectroscopy": 1 + "Specialized Study of Cellular Membrane Structures Dissection using CRISPR Technology, Flow Cytometry, and Scanning Probe Microscopy": 1 + "Advanced Investigation of Cytoplasmic Structures Dissection using CRISPR Technology, Flow Cytometry, and Raman Spectroscopy": 1 + "Detailed Analysis of Endoplasmic Reticulum Structures Dissection using CRISPR Technology, Flow Cytometry, and Fluorescence Correlation Spectroscopy": 1 + "Thorough Study of Golgi Apparatus Structures Dissection using CRISPR Technology, Flow Cytometry, and Near-field Scanning Optical Microscopy": 1 + "In-depth Exploration of Cellular Organelle Structures Dissection using CRISPR Technology, Flow Cytometry, and Magnetic Resonance Imaging": 1 + "Comprehensive Investigation of Cellular Vesicular Structures Dissection using CRISPR Technology, Flow Cytometry, and Transmission Electron Microscopy.": 1 + "Geometry in Art Design: Mastering SketchUp and Photoshop with Advanced ZBrush Techniques and Introduction to AutoCAD": 1 + "From SketchUp to ZBrush: The Role of Geometry in Art Design Using Adobe Illustrator": 1 + "Geometry in Art Design: Enhancing Skills in SketchUp and Photoshop with ZBrush Techniques and Rhino 3D Modeling": 1 + "Artistic Geometry: Mastering SketchUp, Photoshop and ZBrush Techniques with an Emphasis on 3D Printing": 1 + "Geometry in Art Design: Exploring SketchUp, Photoshop and ZBrush Techniques with a Dive into Fusion 360": 1 + "Mastering Geometry in Art Design: SketchUp, Photoshop and ZBrush Techniques with a Focus on Blender 3D": 1 + "Applying Geometry in Art Design: From SketchUp and Photoshop to ZBrush Techniques with a Touch of Inkscape": 1 + "Geometry in Art Design: Mastering SketchUp, Photoshop and ZBrush with an Introduction to Maya 3D Animation": 1 + "The Art of Geometry: Using SketchUp, Photoshop and ZBrush Techniques with an Insight into Tinkercad": 1 + "Geometry in Art Design: Unpacking SketchUp, Photoshop and ZBrush Techniques with an Overview of CorelDRAW.": 1 + "Physical Education: Exploring Body Chemistry Through Heart Rate Monitors": 1 + "Physical Education: A Deep Dive into Metabolism using Calorimeters": 1 + "Physical Education: Understanding Electrolyte Balance through Hydration Tracking Devices ": 1 + "Physical Education: The Role of Insulin in Body Chemistry via Glucometers": 1 + "Physical Education: Exploring Muscle Chemistry with Electromyography": 1 + "Physical Education: Understanding Body Chemistry via Blood Oxygen Monitors": 1 + "Physical Education: Measuring Body Composition through Bioelectrical Impedance Analysis": 1 + "Physical Education: Body Chemistry and Energy Expenditure Measured by Pedometers": 1 + "Physical Education: Understanding Body Chemistry through Body Temperature Monitors": 1 + "Physical Education: Body Chemistry and Lactate Thresholds using Lactate Analyzers": 1 + "Biology: Exploring Life Through Microscopy": 1 + "Biology: The Study of Life and DNA Sequencing": 1 + "Biology: Evolutionary Theory and The Study of Life": 1 + "Biology: Life's Study Through Cellular Imaging": 1 + "Biology: The Study of Life and Genetic Engineering": 1 + "Biology: Understanding Life Through Bioinformatics": 1 + "Biology: The Study of Life - A Focus on Biotechnology": 1 + "Biology: The Insight into Life Through Genomics": 1 + "Biology: Life Studies through the Lens of the Electron Microscope": 1 + "Biology: The Study of Life and the Role of CRISPR Technology": 1 + "Computer Science: Designing Beats with Python & MIDI - An Introductory Course to Music Technology": 1 + "Using Python and Audacity for Beat Creation: An Introduction to Computer Science in Music Technology": 1 + "Python & Abelton: A Computer Science Approach to Beat Creation in Music Technology": 1 + "Computer Science: An Introduction to Beat Making with Python and FL Studio": 1 + "Building Beats with Python and GarageBand: A Beginner's Guide to Music Technology": 1 + "Computer Science: Beat Making with Python & Digital Audio Workstations - An Introduction to Music Technology": 1 + "Creating Beats with Python & Logic Pro X: A Computer Science Perspective on Music Technology": 1 + "Python and Cubase in Beat Creation: A Computer Science Introduction to Music Technology": 1 + "Computer Science: Using Python and Pro Tools for Beat Making - An Introductory Course to Music Technology": 1 + "Beat Creation with Python & Reason: A Computer Science Approach to Music Technology.": 1 + "Music: Exploring the Role of MIDI Controllers in Synthesizer Sounds": 1 + "Music: Deep Dive into the Influence of Ableton Live on Synthesizer Sounds": 1 + "Music: The Impact of Digital Audio Workstations in Synthesizer Sounds": 1 + "Music: The Role of VST Plugins in Shaping Synthesizer Sounds": 1 + "Music: Understanding the Use of Oscillators in Synthesizer Sounds": 1 + "Music: The Integration of Moog Synthesizers in Electronic Music": 1 + "Music: The Contribution of FL Studio in Synthesizer Sounds": 1 + "Music: Analysing the Effect of FM Synthesis on Synthesizer Sounds": 1 + "Music: The Evolution of Sequencers in Synthesizer Technology": 1 + "Music: The Role of Logic Pro X in Modulating Synthesizer Sounds": 1 + "Mathematics: The Golden Ratio in The Fibonacci Sequence and Its Application in World Architecture Geometry Using AutoCAD": 1 + "Mathematics: Analyzing The Fibonacci Sequence in World Architecture Geometry with Rhino Software": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: An Exploration with Geometric Compass": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: A Study Using SketchUp": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: Understanding Through Vectorworks": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry and its Illustration with ArchiCAD": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: A Deep Dive Using Revit": 1 + "Mathematics: The Fibonacci Sequence and Fractal Geometry in World Architecture Using 3D Modeling Software": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: Analysis with Digital Rendering Tools": 1 + "Mathematics: The Fibonacci Sequence in World Architecture Geometry: A Comprehensive Study with BIM Technology.": 1 + "Language Arts: War Literature - Analyzing Courage in Hemingway's Works through Psychoanalytical Criticism and Archetypal Symbols": 1 + "Language Arts: War Literature - Examining Bravery in WWI Poems using Freudian Psychoanalytical Criticism and Textual Analysis": 1 + "Language Arts: War Literature - Unraveling Courage in War Novels Through Psychoanalytical Criticism and Comparative Literature": 1 + "Language Arts: War Literature - Interpreting Courage in Epic War Poems with Psychoanalytical Criticism and Narratology": 1 + "Language Arts: War Literature - Decoding Courage in War Stories through Jungian Psychoanalytical Criticism and Digital Humanities Tools": 1 + "Language Arts: War Literature - Analyzing Bravery in War-Time Literature using Lacanian Psychoanalytical Criticism and Close Reading": 1 + "Language Arts: War Literature - Understanding Valor in War Narratives through Psychoanalytical Criticism and Semiotics": 1 + "Language Arts: War Literature - Interpreting Courage in War Poetry with Psychoanalytical Criticism and Intertextuality": 1 + "Language Arts: War Literature - Investigating Heroism in War Literature through Psychoanalytical Criticism and the New Historicism Approach": 1 + "Language Arts: War Literature - Revealing Courage in War Texts through Psychoanalytical Criticism and Feminist Literary Theory": 1 + "Elementary Mathematics: Utilizing Excel for Basic Budgeting in Event Management": 1 + "Elementary Mathematics: Basic Budgeting for Event Management using QuickBooks": 1 + "Elementary Mathematics: Cash Flow Management in Event Planning with Google Sheets": 1 + "Elementary Mathematics: Cost-Benefit Analysis for Event Management using Budgeting Software": 1 + "Elementary Mathematics: Projected Budgeting for Event Management with Microsoft Project": 1 + "Elementary Mathematics: Event Management Budgeting with Zero-Based Budgeting Concept": 1 + "Elementary Mathematics: Applying Financial Ratios for Budget Control in Event Management": 1 + "Elementary Mathematics: Basic Budgeting for Event Management using SAP Business One": 1 + "Elementary Mathematics: Advanced Budgeting Techniques for Event Management with Zoho Books": 1 + "Elementary Mathematics: Understanding Event Management Finances with FreshBooks Accounting Software.": 1 + "An Advanced Guide to Sound Waves: Utilizing Spectrograms in Acoustic Research": 1 + "The Doppler Effect: A Comprehensive Study Using Ultrasonic Sensors": 1 + "Science: Sound Waves and Acoustics: Exploring Oscilloscopes and Fourier Transforms": 1 + "The Role of Oscilloscopes and Resonance in Acoustics: A Detailed Study": 1 + "Oscilloscopes in Practice: A Deep Dive into Sound Waves, Acoustics, and the Doppler Effect": 1 + "Understanding Acoustics: An In-depth Study of Oscilloscopes and Waveform Generators": 1 + "Practical Examination of Sound Waves: Using Oscilloscopes and Logic Analyzers": 1 + "The Doppler Effect: A Comprehensive Study Utilizing Oscilloscopes and Frequency Modulation": 1 + "Advanced Acoustics: An In-depth Study on Oscilloscopes and Phase Shifts": 1 + "The Science of Sound Waves: Exploring Acoustics with Oscilloscopes and Decibel Meters.": 1 + "Python Programming: From Basics to Applications": 1 + "Computer Programming: Mastering Java from Basics to Applications": 1 + "The Fundamentals of C++: From Basics to Applications": 1 + "Computer Programming: Exploring Data Structures from Basics to Applications": 1 + "Computer Programming: Introduction to Algorithms from Basics to Applications": 1 + "JavaScript Programming: From Web Basics to Advanced Applications": 1 + "Computer Programming: From Basics to Database Applications using SQL": 1 + "Swift Programming: From Basics to iOS App Development": 1 + "Computer Programming: Ruby on Rails from Basics to Web Applications": 1 + "HTML & CSS: From Basic Web Design to Complex Applications": 1 + "Art: Using Palette Knives to Paint Acrylic Seascapes of the Maritime World": 1 + "Art: Creating Maritime World Seascapes with Acrylics and Airbrush Techniques": 1 + "Art: Painting Seascapes of the Maritime World Using Acrylics and Glazing Techniques": 1 + "Art: Applying Acrylic Mediums in Maritime Seascape Paintings": 1 + "Art: Painting Maritime World Seascapes Using Acrylics and Fan Brushes": 1 + "Art: Impasto Technique in Acrylic Seascape Paintings of the Maritime World": 1 + "Art: Painting Seascapes of the Maritime World Using Acrylics and Dry Brushing Techniques": 1 + "Art: Utilizing the Underpainting Technique in Acrylic Maritime Seascape Paintings": 1 + "Art: Employing Pointillism in Painting Seascapes of the Maritime World Using Acrylics": 1 + "Art: Exploring the Tonalism Technique in Acrylic Seascapes of the Maritime World": 1 + "Neuroscience Foundations: Exploring Electrophysiology with EEG Technology and Fast Fourier Transform Analysis": 1 + "Neuroscience Foundations: An In-depth Study of Electrophysiology Using EEG Technology and Time-frequency Analysis": 1 + "Neuroscience Foundations: Understanding Electrophysiology through EEG Technology and Event-related Potentials": 1 + "Neuroscience Foundations: Mastering Electrophysiology with EEG Technology and Brain-computer Interfaces": 1 + "Neuroscience Foundations: Unraveling Electrophysiology with EEG Technology and LORETA Analysis": 1 + "Neuroscience Foundations: A Comprehensive Approach to Electrophysiology with EEG Technology and Dipole Source Localization": 1 + "Neuroscience Foundations: Navigating Electrophysiology through EEG Technology and Independent Component Analysis": 1 + "Neuroscience Foundations: A Deep Dive into Electrophysiology with EEG Technology and Power Spectral Density Analysis": 1 + "Neuroscience Foundations: Exploring Brain Activity through Electrophysiology with EEG Technology and Neurofeedback Training": 1 + "Neuroscience Foundations: Illuminating Electrophysiology with EEG Technology and Cross-spectral Density Analysis": 1 + "Language Arts: Multicultural Literature Exploration through Digital Storytelling": 1 + "Language Arts: Analyzing Multicultural Literature with Machine Learning Algorithms": 1 + "Language Arts: Multicultural Literature Exploration using Semantic Analysis": 1 + "Language Arts: Multicultural Literature Exploration and Interpretation through Virtual Reality": 1 + "Language Arts: Exploring Multicultural Literature with Text-to-Speech Technology": 1 + "Language Arts: Multicultural Literature Exploration using Sentiment Analysis Tools": 1 + "Language Arts: Multicultural Literature Exploration: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration using AI-Assisted Translation Tools": 1 + "Language Arts: Multicultural Literature Exploration: A Deep Dive into Metadata Analysis": 1 + "Language Arts: Multicultural Literature Exploration through the Lens of E-Reading Technology.": 1 + "Science of Cooking: An In-Depth Exploration of Sous Vide and Food Chemistry": 1 + "Molecular Gastronomy: The Role of Fermentation and pH Levels in Cooking": 1 + "The Art of Fermentation in Cooking: Utilizing Spectrophotometers for Food Analysis": 1 + "The Science of Sous Vide: Unraveling Food Chemistry and Fermentation Techniques": 1 + "Science of Cooking: The Impact of Thermal Circulators on Food Chemistry and Fermentation": 1 + "Food Chemistry and Fermentation: A Detailed Study of the Maillard Reaction": 1 + "The Role of Pressure Cookers in Food Chemistry and Fermentation: A Scientific Investigation": 1 + "Science of Cooking: Exploring the Impact of Low-Temperature Cooking on Fermentation": 1 + "The Chemistry of Food Fermentation: An In-depth Study of Autoclaves and Sterilization Techniques": 1 + "Science of Cooking: A Deep Dive into Food Chemistry, Fermentation and the Use of Vacuum Sealers.": 1 + "Mathematics: Utilizing Linear Regression in Statistics to Address World Hunger": 1 + "Mathematics: Studying World Hunger through Descriptive Statistics and Predictive Modeling": 1 + "Mathematics: Role of Probability Theory in Statistics to Counteract World Hunger": 1 + "Mathematics: Data Visualization in Statistics for Understanding World Hunger": 1 + "Mathematics: GIS Technology in Statistics for Mapping World Hunger": 1 + "Mathematics: Machine Learning Applications in Statistics to Predict World Hunger": 1 + "Mathematics: Statistical Analysis Using R Programming to Solve World Hunger": 1 + "Mathematics: Understanding World Hunger through Bayesian Statistics": 1 + "Mathematics: Big Data & Statistical Analysis to Combat World Hunger": 1 + "Mathematics: Python Programming in Statistics for World Hunger Solutions.": 1 + "The Utilization of Deep Learning Algorithms in the Neuroscience of Computation and Cognitive Processes": 1 + "The Integration of Python in Machine Learning Applied to Cognitive Neuroscience": 1 + "The Application of Machine Learning in Neurological Computation: A Focus on Convolutional Neural Networks": 1 + "The Use of TensorFlow in Machine Learning for Understanding Cognitive Processes": 1 + "The Role of Support Vector Machines in Machine Learning for Neuroscientific Computation": 1 + "The Application of Machine Learning in the Neuroscience of Computation: An Examination of Neural Networks": 1 + "The Application of Machine Learning in Cognitive Neuroscience: The Case of Keras": 1 + "The Exploitation of Natural Language Processing in Machine Learning for Cognitive Neuroscience": 1 + "The Application of Machine Learning in the Neuroscience of Computation: A Study on Reinforcement Learning ": 1 + "Applying Principal Component Analysis Techniques in Machine Learning for Neuroscientific Computation.": 1 + "Easy Logic with Puzzles: Enhancing Reasoning Skills for Young Minds": 1 + "Easy Logic with Chess: Developing Strategic Thinking for Young Minds": 1 + "Easy Logic with Coding: Fostering Algorithmic Thinking for Young Minds": 1 + "Easy Logic with Sudoku: Promoting Problem-Solving Skills for Young Minds": 1 + "Easy Logic with LEGO: Building Structural Thinking for Young Minds": 1 + "Easy Logic with Robotics: Encouraging Mechanical Reasoning for Young Minds": 1 + "Easy Logic with Minecraft: Cultivating Spatial Reasoning for Young Minds": 1 + "Easy Logic with Rubik's Cube: Training Geometrical Thinking for Young Minds": 1 + "Easy Logic with Origami: Strengthening Abstract Reasoning for Young Minds": 1 + "Easy Logic with Scratch: Inspiring Computational Thinking for Young Minds": 1 + "Computer Science: Creating 2D Artwork in Unity with Adobe Photoshop for Game Design": 1 + "Computer Science: 3D Modeling for Game Design using Unity and Blender": 1 + "Computer Science: Digital Animation in Unity with Maya for Game Design": 1 + "Computer Science: Advanced Lighting Techniques in Unity for Game Design": 1 + "Computer Science: Developing Realistic Textures in Unity using Substance Painter for Game Design": 1 + "Computer Science: Designing User Interfaces in Unity with Sketch for Game Design": 1 + "Computer Science: Scripting with C# in Unity for Game Design": 1 + "Computer Science: Implementing Particle Effects in Unity for Game Design": 1 + "Computer Science: Integrating Sound Effects in Unity with Audacity for Game Design": 1 + "Computer Science: Building Virtual Reality Games in Unity with Oculus Rift for Game Design": 1 + "Mastering Deductive Reasoning and Puzzles: An Expert's Guide to Digital Logic Gates with Xilinx ISE Design Suite and VHDL Programming.": 1 + "A Complete Course on Digital Logic Gates, Deductive Reasoning and Puzzles using Xilinx ISE Design Suite and Verilog HDL.": 1 + "Expert's Guide to Digital Logic Gates and Deductive Reasoning: Mastering Puzzles with Xilinx ISE Design Suite and FPGA Implementation.": 1 + "Advanced Course on Deductive Reasoning and Puzzles: Unraveling Digital Logic Gates with Xilinx ISE Design Suite and Boolean Algebra.": 1 + "Exploring Digital Logic Gates with Xilinx ISE Design Suite: A Comprehensive Course on Deductive Reasoning and Puzzles with CPLD Design.": 1 + "Mastering Deductive Reasoning and Puzzles with Digital Logic Gates: An Expert's Guide to Xilinx ISE Design Suite and ASIC Design.": 1 + "An Expert's Guide to Deductive Reasoning and Puzzles: Perfecting Digital Logic Gates with Xilinx ISE Design Suite and VLSI Technology.": 1 + "A Detailed Course on Deductive Reasoning and Puzzles: Exploring Digital Logic Gates with Xilinx ISE Design Suite and System Verilog.": 1 + "Advanced Guide to Digital Logic Gates: Mastering Deductive Reasoning and Puzzles with Xilinx ISE Design Suite and Logic Synthesis.": 1 + "Expert's Guide to Deductive Reasoning and Puzzles: Exploring Digital Logic Gates with Xilinx ISE Design Suite and EDA Tools.": 1 + "Sustainable Golf Ball Production: Utilising Injection Moulding Techniques with Biodegradable Polymers": 1 + "Eco-friendly Tennis Racket Manufacturing: Applying Injection Moulding and CAD Technology with Biodegradable Materials": 1 + "Green Football Production: A Study on Injection Moulding Techniques and 3D Printing with Biodegradable Materials": 1 + "Sustainable Manufacturing of Soccer Cleats: The Use of CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Eco-friendly Production of Hockey Sticks: The Application of Injection Moulding Techniques and Laser Cutting with Biodegradable Materials": 1 + "Sustainable Cricket Bat Manufacturing: Using Injection Moulding Techniques and Finite Element Analysis with Biodegradable Materials": 1 + "Green Baseball Glove Production: Implementation of Injection Moulding Techniques and Rapid Prototyping with Biodegradable Materials": 1 + "Sustainable Production of Running Shoes: Incorporating Injection Moulding Techniques and Computer Aided Design with Biodegradable Materials": 1 + "Eco-friendly Basketball Production: The Application of Injection Moulding Techniques and Additive Manufacturing with Biodegradable Materials": 1 + "Green Rugby Ball Manufacturing: Using Injection Moulding Techniques and Material Testing with Biodegradable Materials": 1 + "World Cultures: Art and Traditions through the Lens of Photography": 1 + "World Cultures: Exploring Art and Traditions with Digital Media": 1 + "World Cultures: Art and Traditions Explored through Virtual Reality": 1 + "World Cultures: Art and Traditions in the Age of 3D Printing": 1 + "World Cultures: Art and Traditions Analysed through AI Technology": 1 + "World Cultures: Art and Traditions - An Exploration of Drone Photography": 1 + "World Cultures: Art and Traditions in the Digital Age - The Impact of Social Media": 1 + "World Cultures: Art and Traditions - A Study of Cultural Preservation through Blockchain": 1 + "World Cultures: Art and Traditions - A Deep Dive into Augmented Reality": 1 + "World Cultures: Art and Traditions - Understanding the Influence of Nanotechnology.": 1 + "Computer Science: An Introduction to Python Coding and Algorithms": 1 + "Machine Learning: A Deep Dive into Algorithms using Scikit-Learn": 1 + "Computer Science: Mastering Java and Data Structures": 1 + "Data Analysis: Practical Algorithms with SQL": 1 + "Computer Science: C++ Coding and Algorithmic Problem Solving": 1 + "Web Development: JavaScript Coding and Algorithms": 1 + "Mobile Development: Swift Coding and Algorithms for iOS": 1 + "Cybersecurity: Understanding Algorithms through Cryptography": 1 + "Game Development: Unity3D Coding and Algorithms": 1 + "Data Science: R Programming and Algorithm Design.": 1 + "Philosophy: Utilizing Socratic Dialogue in Understanding Ethical Concepts": 1 + "Philosophy: An Introduction to Ethical Concepts through Kantian Ethics": 1 + "Philosophy: An Exploration of Ethical Concepts using Virtue Ethics": 1 + "Philosophy: Ethical Concepts and Their Applications in AI Technology": 1 + "Philosophy: Analyzing Ethical Concepts through Utilitarianism": 1 + "Philosophy: An Insight into Ethical Concepts using Deontological Ethics": 1 + "Philosophy: Understanding Ethical Concepts with Aristotle's Nicomachean Ethics": 1 + "Philosophy: Introduction to Ethical Concepts: A Deep Dive into Bioethics": 1 + "Philosophy: Ethical Concepts in the Digital Age: A Study of Cyber Ethics": 1 + "Philosophy: The Influence of Stoicism on Modern Ethical Concepts.": 1 + "Biological Data Analysis using R and Bioconductor: A Comprehensive Course": 1 + "Comprehensive Course on Biological Data Analysis using R and ggplot2": 1 + "Biological Data Analysis using R and Shiny: An In-Depth Course": 1 + "dplyr in Biological Data Analysis using R: A Comprehensive Course": 1 + "Biological Data Analysis: Harnessing the Power of R and Tidyverse": 1 + "Comprehensive Course in Biological Data Analysis using R and Machine Learning Techniques": 1 + "Genome Sequencing Data Analysis using R: A Comprehensive Course": 1 + "Comprehensive Course: Biological Data Analysis using R and Genomic Ranges": 1 + "Biological Data Analysis through R and Phylogenetic Analysis": 1 + "Biological Data Analysis using R and Microarray Techniques: A Comprehensive Course": 1 + "Neuroscience 110: The Impact of Music on the Brain through fMRI - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with EEG Technology": 1 + "Neuroscience 110: Brain and Music - Exploring Neural Plasticity through an Interdisciplinary Approach": 1 + "Neuroscience 110: An Interdisciplinary Approach to Brain and Music - The Role of Dopamine": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with Brain Mapping": 1 + "Neuroscience 110: The Influence of Music on the Brain in Alzheimer's - An Interdisciplinary Approach": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with PET Scans": 1 + "Neuroscience 110: Brain and Music - A Study of Neurotransmitters through an Interdisciplinary Approach": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with Transcranial Magnetic Stimulation": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with Deep Brain Stimulation": 1 + "Physical Education: Enhancing Basketball Performance using Fitbit Heart Rate Monitors": 1 + "Physical Education: Boosting Basketball Skills with GPS Sports Vests": 1 + "Physical Education: Utilizing Smart Basketball Technology for Performance Enhancement": 1 + "Physical Education: Applying Zepp Basketball Sensors for Skill Development": 1 + "Physical Education: Basketball Improvement through Nike Hyperdunk Smart Shoes": 1 + "Physical Education: Optimizing Basketball Performance with Catapult Sports Wearable Tech": 1 + "Physical Education: Using Apple Watch Features for Basketball Performance Enhancement": 1 + "Physical Education: Enhancing Basketball Performance with WHOOP Strap 3.0": 1 + "Physical Education: Boosting Basketball Skills with ShotTracker Sensor Technology": 1 + "Physical Education: Utilizing Vert Jump Wearable Tech for Basketball Performance Enhancement": 1 + "Music: Unraveling Natural Rhythms in Timpani through Digital Sampling Techniques in Reason Using MIDI Controllers": 1 + "Exploring Timpani Rhythms: Advanced Digital Sampling Techniques with Native Instruments Kontakt in Reason": 1 + "Harnessing Natural Rhythms: A Practical Approach to Timpani Sampling with Propellerhead Reason and Pro Tools": 1 + "Timpani's Natural Rhythms: Deciphering through Digital Sampling Techniques using Reason and Logic Pro X": 1 + "Music Production: Advanced Techniques for Sampling Timpani Rhythms in Reason Using Audio Interfaces": 1 + "Advanced Sampling in Reason: Dissecting Timpani Rhythms Using Steinberg Cubase": 1 + "Music Technology: Exploring Timpani Rhythms through Digital Sampling Techniques in Reason Using Ableton Live": 1 + "Decoding Timpani Rhythms: Music Production Techniques Using Reason and FL Studio": 1 + "Unveiling Timpani Rhythms: Digital Sampling Techniques in Reason Using Audacity's Spectral Analysis": 1 + "Music and Technology: An In-depth Study of Timpani Rhythms using Digital Sampling Techniques in Reason and Garageband.": 1 + "Elementary Geography: The Countries of the Renaissance and the Use of Compass": 1 + "Elementary Geography: The Influence of Printing Press on the Countries of the Renaissance ": 1 + "Elementary Geography: Renaissance Countries and the Role of Astrolabe": 1 + "Elementary Geography: The Countries of the Renaissance and the Impact of Gunpowder": 1 + "Elementary Geography: The Renaissance Countries and the Emergence of Linear Perspective": 1 + "Elementary Geography: The Countries of the Renaissance and the Use of Quadrants": 1 + "Elementary Geography: The Renaissance Countries and the Introduction of Paper Money": 1 + "Elementary Geography: The Countries of the Renaissance and the Development of Telescopes": 1 + "Elementary Geography: The Renaissance Countries and the Impact of the Waterwheel": 1 + "Elementary Geography: The Countries of the Renaissance and the Evolution of Mechanical Clocks": 1 + "Mathematics in Sports: Utilizing SPSS for Performance Analysis and Statistics": 1 + "The Role of Python in Sports Mathematics: A Deep Dive into Performance Statistics": 1 + "Using Excel in Sports Mathematics: Statistics and Performance Analysis Explored": 1 + "The Implementation of R Programming in Sports Mathematics: Statistics and Performance Analysis": 1 + "Sports Mathematics: An In-depth Study of Tableau for Statistics and Performance Analysis": 1 + "Leveraging MATLAB for Performance Analysis: A Study in Sports Mathematics and Statistics": 1 + "The Use of SQL in Sports Mathematics: Exploring Statistics and Performance Analysis": 1 + "Mathematics in Sports: Data Analysis with Power BI and Its Impact on Performance Statistics": 1 + "Sports Mathematics: Utilizing Data Mining for Performance Analysis and Statistics": 1 + "An Examination of SAS in Sports Mathematics: Performance Analysis and Statistical Insights.": 1 + "Sustainable Sports Equipment Production: Application of Injection Moulding Techniques with Biodegradable Materials using CAD Design": 1 + "Poly Lactic Acid in Sustainable Sports Equipment Production: Injection Moulding Techniques and Biodegradable Materials": 1 + "Implementing 3D Printing in Sustainable Sports Equipment Production: Injection Moulding with Biodegradable Materials": 1 + "Green Sports Gear: Utilising Injection Moulding Techniques and Biodegradable Materials with Laser Cutting Technology": 1 + "Biodegradable Material Selection for Sustainable Sports Equipment: The Use of Injection Moulding Techniques and Finite Element Analysis": 1 + "Sustainable Sports Equipment Production: The Integration of Injection Moulding Techniques with Bio-PET Materials": 1 + "Bioplastics in Sports: Injection Moulding Techniques and Material Science for Sustainable Equipment Production": 1 + "Injection Moulding Techniques for PLA-Based Sustainable Sports Equipment Production": 1 + "CNC Machining in Sustainable Sports Equipment Production: The Application of Injection Moulding Techniques with Biopolymers": 1 + "Sustainable Sports Equipment Production: The Role of Injection Moulding Techniques, Biodegradable Materials, and Rapid Prototyping.": 1 + "Art: The HTC Vive's Influence on the Aesthetics of Motion in Gymnastics Through Virtual Reality Training": 1 + "Exploring the Impact of HTC Vive's 360-degree Video on Artistic Gymnastics Aesthetics": 1 + "Art and Athletics: How HTC Vive and Haptic Feedback Revolutionize Gymnastics Aesthetics": 1 + "Art: The Impact of HTC Vive and Augmented Reality on the Aesthetics of Gymnastics Movements": 1 + "Art: The HTC Vive's Kinesthetic Learning Impact on the Aesthetics of Motion in Gymnastics": 1 + "The Influence of HTC Vive and Motion-Capture Technology on Artistic Expression in Gymnastics": 1 + "The Impact of HTC Vive and Immersive Technology on the Aesthetic Elements in Gymnastics": 1 + "Art: The Role of HTC Vive and Spatial Computing in Transforming Gymnastics Aesthetics": 1 + "The Transformation of Gymnastics Aesthetics Through HTC Vive's Virtual Reality Environment": 1 + "The HTC Vive and 3D Modelling: A New Perspective on the Aesthetics of Motion in Gymnastics.": 1 + "Physics Simplified: Understanding Newton's Laws with the Use of Inertia Balances": 1 + "Physics Made Practical: Exploring Newton's Laws through Force Tables": 1 + "Newton's Laws in Depth: Using Motion Sensors in Physics Made Easy": 1 + "Physics Made Easy: A Comprehensive Study of Newton's Laws using Frictionless Surfaces": 1 + "Exploring Newton's Laws: Physics Made Easy with the Use of Velocity Calculators": 1 + "Physics Made Easy: Applying Newton's Laws Using Kinematic Equations": 1 + "Simplified Physics: Exploring Newton's Laws through Mass and Weight Experiments": 1 + "Physics Simplified: Newton's Laws and the Role of Acceleration Graphs": 1 + "Physics Made Easy: Understanding Newton's Laws through Momentum Conservation": 1 + "Newton's Laws Uncovered: Physics Made Easy Using Projectile Motion Simulations": 1 + "Language Arts: Multicultural Literature Exploration Using Python: Insights from Natural Language Processing ": 1 + "Language Arts: Deep Learning Approach to Multicultural Literature Exploration: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration with IBM Watson: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - A Text Mining Perspective: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - A Sentiment Analysis Approach: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration using R Programming: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - A TensorFlow Framework: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - Using Machine Learning Algorithms: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - A Study with Apache Lucene: Insights from Natural Language Processing": 1 + "Language Arts: Multicultural Literature Exploration - Neural Network Concepts: Insights from Natural Language Processing.": 1 + "History: The Role of Telescopes in the Evolution of Space Exploration": 1 + "History: The Impact of Satellite Technology on Space Exploration": 1 + "History: Unveiling Space with the Hubble Telescope: An Evolutionary Journey": 1 + "History: The Influence of Rocketry on the Evolution of Space Exploration": 1 + "History: Evolution of Space Exploration: A Focus on Astronautical Hydraulics": 1 + "History: The Evolution of Space Suits in Space Exploration": 1 + "History: The Effect of Radar Technology on the Evolution of Space Exploration": 1 + "History: The Role of Computers in the Evolution of Space Exploration": 1 + "History: The Evolution of Space Exploration: The Impact of Artificial Intelligence": 1 + "History: Understanding Space Exploration through the Lens of the Mars Rover Technology.": 1 + "Introductory Computer Science: Web Development with Python, Flask, jQuery, HTML5, and CSS3 ": 1 + "Advanced Web Development: Building Web Applications using Python, Flask, jQuery, HTML5, and MySQL": 1 + "Comprehensive Guide to Web Development: Python, Flask, jQuery, HTML5 and Bootstrap Framework": 1 + "Mastering Web Development: Using Python, Flask, jQuery, HTML5 and Django Framework ": 1 + "Python for Web: An Introduction to Development with Python, Flask, jQuery, HTML5, and Firebase": 1 + "Practical Web Development: Python, Flask, jQuery, HTML5, and AJAX Implementation": 1 + "Essential Web Development: Python, Flask, jQuery, HTML5, and MongoDB Database Management": 1 + "Web Development Fundamentals: Python, Flask, jQuery, HTML5, and Responsive Design": 1 + "Web Development with Python: Comprehensive Guide to Flask, jQuery, HTML5, and Docker Implementation ": 1 + "Hands-on Web Development: Python, Flask, jQuery, HTML5, and RESTful API Design": 1 + "Biology: Genetics and the Study of Life through DNA Sequencing": 1 + "Biology: Microscopic Examination of Cellular Life": 1 + "Biology: The Study of Life through Bioinformatics": 1 + "Biology: The Use of Biotechnology in Life Sciences": 1 + "Biology: The Study of Life: An Introduction to Genomics": 1 + "Biology: The Study of Life and Evolution using Fossil Records": 1 + "Biology: The Study of Life through the Lens of a Microscope": 1 + "Biology: Unveiling Life with Electron Microscopy": 1 + "Biology: Exploring Life's Diversity through Phylogenetics": 1 + "Biology: The Study of Life – Understanding Ecosystems using GIS Technology": 1 + "Biology: The Study of Life – Exploring Biodiversity through Bioacoustics": 1 + "Biology: Understanding Cellular Structures through Fluorescence Microscopy": 1 + "Biology: Decoding Cellular Structures using Scanning Electron Microscopy": 1 + "Biology: Exploring Cellular Structures through Atomic Force Microscopy": 1 + "Biology: Understanding Cellular Structures with Confocal Laser Scanning Microscopy": 1 + "Biology: Investigating Cellular Structures using Transmission Electron Microscopy": 1 + "Biology: Unraveling Cellular Structures through Phase Contrast Microscopy": 1 + "Biology: Analyzing Cellular Structures using Super Resolution Microscopy": 1 + "Biology: Understanding Cellular Structures through Microscopy: A Focus on Cryo-electron Microscopy": 1 + "Biology: Delving into Cellular Structures using Light-sheet Fluorescence Microscopy": 1 + "Biology: Deciphering Cellular Structures through Microscopy: A Deep Dive into Dark-field Microscopy": 1 + "Mathematics: Understanding Climate Change through MATLAB Programming and Linear Regression Analysis": 1 + "Mathematics: Climate Change Comprehension with MATLAB, Stats, Graphs, and Python Coding": 1 + "Mathematics: Climate Change Interpretation using MATLAB, Statistics, Graphs and Tensorflow Machine Learning Techniques": 1 + "Mathematics: Decoding Climate Change with MATLAB, Stats, Graphs, and GIS Technology": 1 + "Mathematics: Insight into Climate Change through MATLAB, Statistics, Graphs, and R Programming": 1 + "Mathematics: Climate Change Perception Through MATLAB, Stats, Graphs and Neural Networks": 1 + "Mathematics: Analysis of Climate Change with MATLAB, Stats, Graphs, and Quantum Computing": 1 + "Mathematics: Climate Change Comprehension through MATLAB, Stats, Graphs, and Big Data Analytics": 1 + "Mathematics: Climate Change Investigation with MATLAB, Stats, Graphs, and Blockchain Technology": 1 + "Mathematics: Climate Change Detection Through MATLAB, Statistics, Graphs, and Artificial Intelligence Algorithms.": 1 + "Logic and Deduction: Essential Concepts and Logical Fallacies Explored through Sudoku Puzzles and Venn Diagrams": 1 + "Analyzing Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles using Truth Tables": 1 + "Exploring Logic: Essential Concepts, Logical Fallacies and Sudoku Solutions using Propositional Logic": 1 + "Dissecting Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles with Puzzle Solver Algorithms": 1 + "Understanding Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles through Binary Logic": 1 + "Logical Thinking: Essential Concepts, Logical Fallacies and Sudoku Puzzles Explored with Python Programming": 1 + "Breaking Down Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles using Set Theory": 1 + "Logic Uncovered: Essential Concepts, Logical Fallacies and Sudoku Puzzles through Digital Logic Design": 1 + "Logic in Practice: Essential Concepts, Logical Fallacies, and Sudoku Puzzles using Predicate Logic": 1 + "Diving into Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles Explored with Logic Gates.": 1 + "Mathematics: Investigating Geometry with Pythagoras Theorem using TI-84 Graphing Calculators": 1 + "Mathematics: Exploring Trigonometry with Sine, Cosine, and Tangent using Casio fx-9750GII Graphing Calculators": 1 + "Mathematics: Applying Geometry Concepts using Desmos Graphing Calculators and Geometric Proofs": 1 + "Mathematics: Understanding Trigonometry through Unit Circles with Texas Instruments TI-89 Titanium Graphing Calculators": 1 + "Mathematics: Unveiling Geometry with Euclidean Postulates using HP Prime Graphing Calculators": 1 + "Mathematics: Exploring Trigonometry with the Law of Sines using TI-Nspire CX II Graphing Calculators": 1 + "Mathematics: Diving into Geometry with Coordinate Systems using HP 50g Graphing Calculators": 1 + "Mathematics: Trigonometry and the Pythagorean Identity Explored with Casio fx-9860GII Graphing Calculators": 1 + "Mathematics: Geometry and the Art of Proving using CASIO PRIZM FX-CG50 Color Graphing Calculators": 1 + "Mathematics: Trigonometry Explored: Understanding Inverse Functions using Texas Instruments TI-83 Plus Graphing Calculators.": 1 + "Art in Science: Exploring Genetic Structures through Pencil Drawing": 1 + "Art in Science: Unveiling Quantum Physics Concepts through Digital Illustration": 1 + "Art in Science: Understanding Astronomy through Watercolor Painting": 1 + "Art in Science: Interpreting Biological Cells through Charcoal Drawing": 1 + "Art in Science: Dissecting Anatomy through Pastel Sketching": 1 + "Art in Science: Discovering Chemical Bonds through Acrylic Painting": 1 + "Art in Science: Visualizing Geometric Theorems through Pen and Ink Drawing": 1 + "Art in Science: Depicting Ecosystems through Colored Pencil Sketching": 1 + "Art in Science: Exploring Electromagnetic Fields through Oil Painting": 1 + "Art in Science: Appreciating Thermodynamics through Graphite Drawing": 1 + "World History: The Impact of the Compass and Silk Route on Trade and Civilizational Evolution": 1 + "World History: Cross-Cultural Exchange: The Role of the Compass and the Printing Press in Trade and Civilization Development": 1 + "World History: The Role of the Compass and the Astrolabe in Maritime Trade and the Spread of Civilizations": 1 + "World History: The Compass and the Telescope: Technological Advances that Changed Trade and Civilizations": 1 + "World History: The Compass, Gunpowder and their Influence on Trade and Civilizational Evolution": 1 + "World History: The Role of the Compass and Paper Money in Trade and the Evolution of Civilizations": 1 + "World History: The Compass and the Wheel: A Study of Technological Influence on Trade and Civilization": 1 + "World History: The Compass and the Spinning Wheel: Pivotal Tools in Trade and Civilizational Growth": 1 + "World History: The Influence of the Compass and the Pottery Wheel on Trade and the Evolution of Civilizations": 1 + "World History: The Compass and the Plow: Tools that Shaped Trade and Civilizational Evolution": 1 + "Mathematics of Computers: Understanding Binary Code Structure": 1 + "Algorithms and Mathematics: The Heart of Computer Technology": 1 + "Mathematics of Computers: A Deep Dive into Machine Learning Algorithms": 1 + "Understanding Computer Mathematics: The Role of Cryptographic Algorithms": 1 + "Mathematics of Computers: Dissecting the Technology of Artificial Intelligence": 1 + "Mathematics of Computers: A Study on the Importance of Data Structures": 1 + "Mathematics in Computer Technology: A Focus on Boolean Algebra": 1 + "Mathematics of Computers: The Power of Computational Complexity": 1 + "Computer Mathematics: Exploring The Science Behind Computer Graphics": 1 + "Mathematics of Computers: Uncovering the Logic in Computer Processors.": 1 + "Physical Education: The Impact of Pointe Shoes in French Ballet and Cultural Movements": 1 + "The Influence of Ballet on French Cultural Movements: A Study on The Use of Tutus": 1 + "Ballet Barre's Role in French Cultural Movements: A Physical Education Perspective ": 1 + "Physical Education: The Impact of Ballet's Choreographic Notation in French Cultural Movements": 1 + "The Role of Ballet's Pas de Deux in Shaping French Cultural Movements: A Physical Education Analysis": 1 + "Exploring the Impact of Ballet's Pirouette in French Cultural Movements: A Physical Education Course": 1 + "The Influence of Ballet's Grand Jeté on French Cultural Movements: A Physical Education Viewpoint": 1 + "Physical Education: The Impact of Ballet's Plie Technique in French Cultural Movements": 1 + "Ballet's Role in French Cultural Movements: A Study on The Use of Pointe Technique": 1 + "Physical Education: The Impact of Ballet's Arabesque Pose on French Cultural Movements": 1 + "Music: The Influence of Metronome Use on Rhythm in Gymnastics": 1 + "Exploring the Midi Keyboard: Enhancing Rhythm in Gymnastics": 1 + "Music Software and its Application: Rhythm in Gymnastics": 1 + "Music: The Role of Digital Audio Workstations in Gymnastics Rhythm": 1 + "Musicality in Gymnastics: The Impact of Loop Stations ": 1 + "Rhythm in Gymnastics: The Contribution of Beat Making Software": 1 + "Auto-Tuning and its Effect on Rhythm in Gymnastics": 1 + "Music: The Role of Electronic Drum Kits in Rhythm Development for Gymnastics": 1 + "The Role of the Sequencer in Shaping Rhythm for Gymnastics ": 1 + "Music: The Impact of Synthesizers on Rhythmic Gymnastics.": 1 + "Physical Education: Understanding the Nervous System through EMG Biofeedback Technology ": 1 + "Human Movement Analysis and Functional Electrical Stimulation: An In-depth Study on TENS Unit ": 1 + "Neuromuscular Stimulation and Human Movement: A Course on TENS Unit and Its Applications ": 1 + "The Nervous System and Human Movement: Exploring Functional Electrical Stimulation with TENS Unit and Gait Analysis ": 1 + "Functional Electrical Stimulation in Physical Education: Exploring the TENS Unit and Electromyography ": 1 + "The Nervous System and Functional Electrical Stimulation: A Comprehensive Course on TENS Unit and Neuroplasticity ": 1 + "Studying Human Movement through the Lens of the Nervous System: TENS Unit, Motion Capture Technology and Beyond ": 1 + "Physical Education and the Nervous System: Impact of TENS Unit and Neurofeedback on Human Movement ": 1 + "The Nervous System, Human Movement, and Functional Electrical Stimulation: TENS Unit and the Application of Physiological Sensors ": 1 + "Exploring the Nervous System in Physical Education: A Deep Dive into Human Movement and TENS Unit through EEG Neuroimaging.": 1 + "Logic and Mathematics: Enhancing Deductive Reasoning with Syllogisms Using Venn Diagrams": 1 + "Exploring the Role of Syllogisms in Mathematical Reasoning: An In-depth Look at Truth Tables": 1 + "Applying Predicate Logic to Syllogisms: A Mathematical Perspective": 1 + "Syllogisms in Mathematics: Utilizing Euler Circles for Improved Deductive Reasoning": 1 + "The Art of Deductive Reasoning: A Deep Dive into Mathematical Syllogisms with Propositional Logic": 1 + "Leveraging Syllogisms in Mathematics: An Exploration of the Semantic Tableaux Method": 1 + "Enhancing Deductive Reasoning: The Power of Syllogisms and the Resolution Principle in Mathematics": 1 + "The Role of Syllogisms in Math: Understanding Deductive Reasoning with First-order Logic": 1 + "Advanced Syllogisms: A Study of Deductive Reasoning in Mathematics Using Karnaugh Maps": 1 + "Mathematical Logic: The Application of Syllogisms in Deductive Reasoning with the Sequent Calculus.": 1 + "World History: The Evolution of Sports and Games through the Lens of Ball Technology ": 1 + "Analyzing World History: The Influence of the Wheel on Traditional Sports and Games ": 1 + "World History: The Evolution of Sports and Games - The Impact of the Stopwatch ": 1 + "World History: Examining the Role of Telecommunications in Modern Sports and Games ": 1 + "World History: The Evolution of Sports and Games - The Revolution of Rubber ": 1 + "World History: The Impact of the Printing Press on the Popularity of Sports and Games ": 1 + "World History: The Evolution of Sports and Games - A Deep Dive into Synthetic Materials ": 1 + "World History: The Evolution of Sports and Games - The Role of the Internet ": 1 + "World History: The Evolution of Sports and Games - Understanding the Impact of Broadcasting ": 1 + "World History: The Evolution of Sports and Games - The Influence of Modern Medicine.": 1 + "Mathematics: Exploring Geometry and Trigonometry through Pythagorean Theorem": 1 + "Mathematics: Unveiling the Power of Trigonometry with Sine and Cosine Functions": 1 + "Mathematics: The Impact of Geometry and Trigonometry in Cartesian Coordinates": 1 + "Mathematics: Geometry and Trigonometry - Understanding Circle Theorems": 1 + "Mathematics: Geometry and Trigonometry - A Deep Dive into Angles": 1 + "Mathematics: Geometry and Trigonometry - Exploring with Geometrical Tools": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios": 1 + "Mathematics: The Influence of Geometry and Trigonometry in Vector Calculus": 1 + "Mathematics: The Role of Geometry and Trigonometry in Spatial Dimensions": 1 + "Mathematics: Geometry and Trigonometry - A Focus on Euclidean Principles": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Python on Apache Hadoop": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Machine Learning Techniques": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Big Data Analytics with Spark": 1 + "Deep Dive into Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Bioinformatics Tools": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Cloud Computing with AWS": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Data Visualization with Tableau": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and High Performance Computing Techniques": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Docker for Reproducible Research": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Data Mining Techniques": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and GPU Computing for Accelerated Analysis": 1 + "Music: An Introduction to Music Theory with Sibelius Software": 1 + "Music: Understanding Harmony in Music Theory using Pro Tools": 1 + "Music: Introduction to Music Theory: Exploring Counterpoint with Finale Notation": 1 + "Music: Transposition Techniques in Music Theory with Avid Sibelius": 1 + "Music: Music Theory 101: Rhythm Analysis with MuseScore": 1 + "Music: Introduction to Music Theory: A Deep Dive into Melody with GarageBand": 1 + "Music: Exploring Music Theory: Chord Progression Studies with Ableton Live": 1 + "Music: Advanced Music Theory: Exploring Key Signatures with Logic Pro X": 1 + "Music: Introduction to Music Theory: Composition Techniques with FL Studio": 1 + "Music: Music Theory Basics: Understanding Intervals with Steinberg Cubase": 1 + "Probability & Statistics: Exploring the Role of Bayes' Theorem in Chance with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Understanding Hypothesis Testing and Random Variables through SAS and SPSS": 1 + "Probability & Statistics: A Deep Dive into Regression Analysis with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Comprehensive Study of ANOVA and Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Unraveling the Mysteries of Factorial Design using Random Variables in SAS and SPSS": 1 + "Probability & Statistics: An In-Depth Analysis of Covariance using Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Mastering Chi-Square Tests with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Thorough Examination of the Central Limit Theorem with Random Variables in SAS and SPSS": 1 + "Probability & Statistics: Unveiling the Power of Correlation Coefficients and Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Comprehensive Study of Probability Distributions with Random Variables in SAS and SPSS": 1 + "Art: Understanding Modern Art through Impressionism": 1 + "Art: Exploring Modern Art with Digital Technology": 1 + "Art: The Role of Photography in Understanding Modern Art": 1 + "Art: The Impact of 3D Printing in Modern Art": 1 + "Art: Understanding Modern Art through the Lens of Abstract Expressionism": 1 + "Art: Decoding Modern Art - The Influence of Cubism": 1 + "Art: Modern Art - A Deep Dive into Surrealism": 1 + "Art: The Evolution of Modern Art - Focus on Pop Art": 1 + "Art: Exploring Modern Art through Mixed Media Techniques": 1 + "Art: Understanding Modern Art - The Significance of Installation Art": 1 + "Artistic Side of Sports: Exploring Football through Photography": 1 + "Artistic Side of Sports: Exploring Baseball through Oil Painting": 1 + "Artistic Side of Sports: Exploring Basketball through Digital Art": 1 + "Artistic Side of Sports: Exploring Soccer through Watercolor Techniques": 1 + "Artistic Side of Sports: Exploring Tennis through Sculpture ": 1 + "Artistic Side of Sports: Exploring Gymnastics through Collage Art": 1 + "Artistic Side of Sports: Exploring Golf through Charcoal Sketching": 1 + "Artistic Side of Sports: Exploring Swimming through Acrylic Painting": 1 + "Artistic Side of Sports: Exploring Volleyball through Pencil Drawing": 1 + "Artistic Side of Sports: Exploring Athletics through Pastel Art": 1 + "Biology Basics: Exploring DNA with Gel Electrophoresis": 1 + "Biology Basics: Understanding Life Through Microscopy": 1 + "Biology Basics: The Role of PCR in Unraveling Life's Building Blocks": 1 + "Biology Basics: The Building Blocks of Life - A Dive into Cell Culture Techniques": 1 + "Biology Basics: Decoding Genes with Next-Generation Sequencing": 1 + "Biology Basics: The Building Blocks of Life - An Introduction to CRISPR-Cas9": 1 + "Biology Basics: Life's Building Blocks through Bioinformatics Tools": 1 + "Biology Basics: The Building Blocks of Life - A Study with Flow Cytometry": 1 + "Biology Basics: Discovering Life's Building Blocks with Spectrophotometry": 1 + "Biology Basics: The Building Blocks of Life – Unveiling Mysteries with Immunohistochemistry.": 1 + "Nature's Athletes: The Use of Biotelemetry in Studying Animal Performance in Competitive Sports": 1 + "Biomechanics of Nature's Athletes: Analyzing Animal Performance in Sports Using Motion Capture Technology": 1 + "Nature's Athletes: A Biological Study of Animals in Sports Using DNA Sequencing": 1 + "Animal Performance in Sports: A Study Through the Lens of High-Speed Camera Technology": 1 + "Nature's Athletes: A Biological Exploration of Animal Sports Performance Using Microscopic Techniques": 1 + "Analyzing Nature's Athletes: The Role of Computer Simulation in Studying Animals in Sports": 1 + "Nature's Athletes: Understanding Animal Sports Performance Using Infrared Thermography": 1 + "Nature's Athletes: A Biological Study of Animal Performance in Sports via Magnetic Resonance Imaging (MRI)": 1 + "A Biological Investigation into Animal Sports Performance: The Use of Biochemical Analysis in Nature's Athletes": 1 + "Nature's Athletes: A Study of Animal Sports Performance Through the Application of Doppler Radar Technology.": 1 + "Elementary: Understanding Earth's Topography through Satellite Imagery and 3D Globe Models using Plate Tectonics Concept": 1 + "Elementary: Exploring World Geography with Augmented Reality Globes and Plate Tectonics Studies": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models and the Concept of Plate Tectonics using Google Earth": 1 + "Elementary: Harnessing the Power of Virtual Reality for Basic Geography Learning: An Environmental Study with Interactive Globe Models and Plate Tectonics": 1 + "Elementary: Discovering World Geography with Drone Technology and Interactive Globe Models: An Introduction to Plate Tectonics": 1 + "Elementary: Geographic Information Systems (GIS) in Basic Geography Learning: Environmental Studies using Interactive Globe Models and Plate Tectonics": 1 + "Elementary: Basics of Geography through Environmental Studies: Using Interactive Globe Models, Plate Tectonics, and Digital Topographic Maps": 1 + "Elementary: A Study of Global Geography through Environmental Studies with Interactive Globe Models, Plate Tectonics, and Satellite Data Interpretation": 1 + "Elementary: Learning Basic Geography through Environmental Studies with Interactive Globe Models and the Concept of Plate Tectonics using 3D Printing Technology": 1 + "Elementary: Understanding Geography through Environmental Studies and Interactive Globe Models: A Study of Plate Tectonics with the Aid of GPS Technology": 1 + "Exploring the Influence of Color Theory in Gouache Techniques Using Flat Brushes: A Detailed Study of Shapes and Lines with Layering Technique": 1 + "The Use of Palette Knife in Gouache Techniques: An In-depth Analysis of Color Theory, Shapes, and Lines": 1 + "The Role of Color Theory in Gouache Techniques Using Acrylic Mediums: An Analysis of Shapes and Lines Using Layering Technique": 1 + "Understanding the Impact of Color Theory in Gouache Techniques through Color Wheel: A Comprehensive Analysis of Shapes and Lines": 1 + "The Role of Color Theory in Gouache Techniques: The Application of Grisaille Technique in Shaping Lines and Layers": 1 + "Harnessing the Power of Digital Tablets in Gouache Techniques: An Analysis of Color Theory, Shapes, and Lines using Layering Technique": 1 + "The Role of Color Theory in Gouache Techniques using Easel: A Study of Shapes and Lines Using Layering Technique": 1 + "The Impact of Color Theory in Gouache Techniques Using Rigger Brushes: An Analysis of Shapes and Lines Using Layering Technique": 1 + "The Role of Color Theory in Gouache Techniques with the Use of Glazing: An Examination of Shapes and Lines Using Layering Technique": 1 + "Exploring Gouache Techniques with Airbrush: The Role of Color Theory in Shaping Lines and Layers.": 1 + "Earth Science: Exploring Plate Tectonics with Ground Penetrating Radar and Seismographs": 1 + "Unveiling Geological Formations: The Use of Ground Penetrating Radar and Magnetometers in Earth Science": 1 + "Earth Science: Understanding Stratigraphy Using Ground Penetrating Radar and Core Sampling": 1 + "Interpreting Geological Formations: Ground Penetrating Radar and Fossil Analysis in Earth Science": 1 + "Earth Science: The Role of Ground Penetrating Radar and Drones in Mapping Geological Formations": 1 + "Revealing Earth's Secrets: Ground Penetrating Radar and Satellite Imagery in Geological Exploration": 1 + "Earth Science: Ground Penetrating Radar and GIS Applications in Studying Geological Formations": 1 + "Earth Science: Ground Penetrating Radar and the Use of Sonar in Aquatic Geological Formations": 1 + "Earth Science: Ground Penetrating Radar and LIDAR Technology in Geological Formations Analysis": 1 + "Earth Science: Ground Penetrating Radar and 3D Modeling Techniques in Unveiling Geological Formations.": 1 + "Art: Exploring Nature in Still Life with Charcoal Techniques": 1 + "Art: The Use of Watercolors in Creating Natural Still Life": 1 + "Art: Digital Artistry: Nature in Still Life Using Photoshop": 1 + "Art: Nature in Still Life: Integrating Pastel Techniques": 1 + "Art: Oil Painting and Nature in Still Life": 1 + "Art: Nature in Still Life: A Study in Acrylic Techniques": 1 + "Art: The Art of Nature in Still Life using Ink Wash Painting": 1 + "Art: Nature in Still Life: A Gouache Painting Approach": 1 + "Art: Nature in Still Life: A Focus on Collage Techniques": 1 + "Art: Encaustic Painting: Nature in Still Life.": 1 + "Science: The Science of Nutrition: Examining American Food Diversity through DNA Barcoding": 1 + "Science: The Science of Nutrition: Probing American Food Diversity using Mass Spectrometry": 1 + "Science: The Science of Nutrition: Unraveling American Food Diversity with Bioinformatics": 1 + "Science: The Science of Nutrition: Delving into American Food Diversity with Genomic Sequencing": 1 + "Science: The Science of Nutrition: Investigating American Food Diversity through Proteomics": 1 + "Science: The Science of Nutrition: Analyzing American Food Diversity using Chromatography": 1 + "Science: The Science of Nutrition: Exploring American Food Diversity with Metabolomics": 1 + "Science: The Science of Nutrition: Evaluating American Food Diversity through Microscopy": 1 + "Science: The Science of Nutrition: Understanding American Food Diversity using Spectrophotometry": 1 + "Science: The Science of Nutrition: Assessing American Food Diversity with PCR Techniques.": 1 + "Exploring The Fibonacci Sequence in Architectural Geometry: A Deep Dive with AutoCAD": 1 + "Mathematics and Architecture: The Fibonacci Sequence in World Geometry Using the Golden Ratio": 1 + "The Fibonacci Sequence in World Architecture Geometry: A Comprehensive Study Using Geometric Compass and Protractor": 1 + "Unraveling The Fibonacci Sequence in Architectural Geometry: An Exploration with 3D Modeling Software": 1 + "Fibonacci Sequence in Architectural Geometry: In-depth Analysis with Mathematical Modeling": 1 + "The Fibonacci Sequence in World Architecture Geometry: A Detailed Study Using Pythagoras' Theorem": 1 + "Mathematics: Using The Fibonacci Sequence for Architectural Geometry Design with CAD Software": 1 + "The Fibonacci Sequence in World Architecture Geometry: An Examination Using the Principle of Symmetry": 1 + "Exploring The Fibonacci Sequence in World Architecture Geometry Using Geometric Compass and Rhinoceros 3D": 1 + "The Fibonacci Sequence in Architecture: A Mathematical Approach Using Geometric Compass and Fractal Geometry.": 1 + "Utilizing the Palette Knife in The Color Wheel: An In-Depth Study on Gouache Techniques Using the Wet-on-Wet Method": 1 + "The Color Wheel and its Influence on Gouache Techniques: An Exploration of Shapes and Lines Using the Wet-on-Wet Technique and Grisaille": 1 + "The Role of the Color Wheel in Gouache Techniques: A Detailed Analysis of Shapes and Lines Using the Wet-on-Wet Technique and Sponging": 1 + "Examining the Impact of the Color Wheel on Gouache Techniques: The Wet-on-Wet Method and Use of the Rigger Brush": 1 + "The Color Wheel and Its Effect on Gouache Techniques: An Exploration of Shapes and Lines Using the Wet-on-Wet Technique and Glazing": 1 + "Understanding the Color Wheel: A Comprehensive Study of Gouache Techniques Using the Wet-on-Wet Method and Fan Brushes": 1 + "The Color Wheel and Gouache Techniques: Investigating Shapes and Lines Using the Wet-on-Wet Technique and Layering": 1 + "The Color Wheel's Influence on Gouache Techniques: An Exploration of Shapes and Lines with the Wet-on-Wet Technique and Stippling": 1 + "Delving into the Color Wheel: Gouache Techniques and the Wet-on-Wet Technique Using the Mottler Brush": 1 + "The Color Wheel and Its Implications on Gouache Techniques: An Exploration of Shapes and Lines Using the Wet-on-Wet Technique and the Underpainting Concept.": 1 + "Art: The Impact of Daguerreotype Photography on Modern Art": 1 + "Art: The Influence of Digital Photography on Contemporary Art": 1 + "Art: The Role of Film Photography in Shaping Modern Art": 1 + "Art: The Impact of Color Photography on Modern Artistic Expression": 1 + "Art: The Transformation of Modern Art through Polaroid Photography": 1 + "Art: The Influence of Darkroom Techniques on Modern Art": 1 + "Art: The Effect of Photoshop on the Evolution of Modern Art": 1 + "Art: The Impact of Underwater Photography on Modern Art": 1 + "Art: The Role of Drone Photography in Shaping Modern Art": 1 + "Art: The Influence of 3D Photography on Contemporary Artistic Trends": 1 + "Art Creation: Discovering Impressionism through Oil Painting": 1 + "Art Creation: The Role of Brushwork in Impressionism": 1 + "Art Creation: Discovering Impressionism with Acrylics": 1 + "Art Creation: Palette Knife Techniques in Impressionism": 1 + "Art Creation: Discovering Impressionism: The Use of Light and Color": 1 + "Art Creation: Plein Air Painting in Impressionism": 1 + "Art Creation: Exploring Impressionism through Digital Art Tools": 1 + "Art Creation: The Impact of Canvas Textures in Impressionism": 1 + "Art Creation: Discovering Impressionism through Watercolors": 1 + "Art Creation: The Influence of Photography on Impressionism": 1 + "Mathematics: The Role of Pythagorean Theorem in Geometry and Trigonometry within Vector Calculus": 1 + "Mathematics: The Impact of Euclidean Geometry and Trigonometry in Vector Calculus": 1 + "Mathematics: Advanced Application of Spherical Geometry and Trigonometry in Vector Calculus": 1 + "Mathematics: The Use of Geometric Proofs in Trigonometry for Vector Calculus": 1 + "Mathematics: The Intersection of Coordinate Geometry, Trigonometry, and Vector Calculus": 1 + "Mathematics: The Influence of Graphing Calculators in Solving Geometry and Trigonometry within Vector Calculus": 1 + "Mathematics: The Application of Non-Euclidean Geometry and Trigonometry in Vector Calculus ": 1 + "Mathematics: The Integration of Desmos Technology in Geometry and Trigonometry for Vector Calculus ": 1 + "Mathematics: The Significance of Right Triangle Trigonometry in Geometry for Vector Calculus": 1 + "Mathematics: The Synergy of Geometric Transformations and Trigonometry in Vector Calculus.": 1 + "Language Arts: Exploring Character Development in Sports Literature through Textual Analysis": 1 + "Storytelling in Sports Literature: A Study of Plot Structures": 1 + "Language Arts: Using Digital Media to Enhance Storytelling in Sports Literature": 1 + "Exploring Themes in Sports Literature: A Language Arts Study with Podcasting": 1 + "Language Arts: Storytelling through Sports Literature and its Reflection on Society": 1 + "The Power of Metaphor in Sports Literature: A Language Arts Course": 1 + "Language Arts: Analyzing Cultural Context in Sports Literature using Digital Tools": 1 + "Sports Literature as a Narrative Device: A Language Arts Course": 1 + "Language Arts: Storytelling through Sports Literature using Interactive E-books": 1 + "The Role of Symbolism in Sports Literature: A Language Arts Study.": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Steinway Grand Pianos": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Digital Pianos": 1 + "Music: Exploring Piano Sound Production Techniques using Pedal and Hammer Action": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage through MIDI Technology": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Sustain Pedal Techniques": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Damper Pedal Nuances": 1 + "Music: Exploring Piano Sound Production Techniques using Pedal and Synthesizer Sounds": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Acoustic Piano Resonance": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Fortepiano Articulation": 1 + "Music: Exploring Piano Sound Production Techniques with Pedal Usage and Silent Piano Systems.": 1 + "Physics for Young Minds: Exploring Gravity Through Pendulum Experiments": 1 + "Physics for Young Minds: Understanding Gravity Using Mass and Weight Scale Measurements": 1 + "Physics for Young Minds: Investigating Gravity with Inclined Plane Experiments": 1 + "Physics for Young Minds: Learning Gravity Through Free Fall Demonstrations": 1 + "Physics for Young Minds: Exploring Gravity Using Vacuum Chambers": 1 + "Physics for Young Minds: Delving into Gravity with Computer Simulations": 1 + "Physics for Young Minds: Discovering Gravity Through Newton's Laws of Motion": 1 + "Physics for Young Minds: Exploring Gravity with Force Meters": 1 + "Physics for Young Minds: Unraveling Gravity Through Orbital Motion Studies": 1 + "Physics for Young Minds: Exploring Gravity Using the Concept of Space-Time Curvature.": 1 + "Art: Exploring Geometric Shapes and Patterns through Collage using Scissors": 1 + "Art: Understanding Shapes and Patterns in Cubist Collage using Photoshop": 1 + "Art: Exploring Shapes and Patterns through Collage with Acrylic Mediums": 1 + "Art: Creation of Patterns using Origami Shapes in Collage ": 1 + "Art: Understanding Shapes and Patterns through Collage using Mixed Media Techniques": 1 + "Art: Exploring Contemporary Patterns through Collage using GIMP": 1 + "Art: Understanding Shapes and Patterns through Paper Mosaic Collage": 1 + "Art: Exploration of Abstract Patterns in Collage using Digital Painting ": 1 + "Art: Understanding Organic Shapes and Patterns through Collage using Glue": 1 + "Art: Deconstructing Shapes and Patterns through Collage using Layering Techniques": 1 + "Elementary Astronomy: Understanding the Solar System through Telescopes": 1 + "Elementary Astronomy: Exploring the Solar System with Radio Astronomy": 1 + "Elementary Astronomy: Unveiling the Solar System through Spectroscopy": 1 + "Elementary Astronomy: The Role of Satellites in Understanding the Solar System": 1 + "Elementary Astronomy: Unveiling the Solar System with Astrophotography": 1 + "Elementary Astronomy: The Use of Space Probes in the Solar System": 1 + "Elementary Astronomy: Studying the Solar System through Infrared Astronomy": 1 + "Elementary Astronomy: Unveiling the Solar System with the Hubble Space Telescope": 1 + "Elementary Astronomy: Understanding the Solar System through the Doppler Effect": 1 + "Elementary Astronomy: Unveiling the Solar System: An Introduction to Astrochemistry": 1 + "Physical Education: Enhancing Fitness Through Agricultural Labor with Scythes - Focusing on Core Strength": 1 + "Physical Education: Improved Cardiovascular Health Through Agricultural Labor with Scythes and Heart Rate Monitors": 1 + "Physical Education: Boosting Fitness Through Agricultural Labor with Scythes - Incorporating Interval Training": 1 + "Physical Education: Balancing Fitness and Ergonomics in Agricultural Labor with Scythes and Anti-Vibration Gloves": 1 + "Physical Education: Promoting Flexibility Through Agricultural Labor with Scythes and Stretching Techniques": 1 + "Physical Education: Boosting Fitness Through Agricultural Labor with Scythes - The Art of Proper Posture": 1 + "Physical Education: Enhancing Endurance Through Agricultural Labor with Scythes and Pedometers": 1 + "Physical Education: Boosting Fitness Through Agricultural Labor with Scythes - Understanding the Role of Hydration": 1 + "Physical Education: Strength Building Through Agricultural Labor with Scythes and Resistance Bands": 1 + "Physical Education: Boosting Fitness Through Agricultural Labor with Scythes - Utilizing Breathing Techniques.": 1 + "The Art of Movement: Integrating Dance and Physical Education with Biomechanics": 1 + "Harnessing Motion Capture Technology in Dance and Physical Education": 1 + "The Art of Movement: Dance, Physical Education, and the Science of Kinesiology": 1 + "Dance and Physical Education: An Exploration of the Human Anatomy and Physiology": 1 + "The Art of Movement: Dance, Physical Education, and the Use of Virtual Reality": 1 + "Dance and Physical Education: Enhancing Performance through Sports Nutrition ": 1 + "The Art of Movement: Applying Dance Theory in Physical Education": 1 + "Dance and Physical Education: Utilizing Wearable Fitness Technology ": 1 + "The Art of Movement: Dance, Physical Education, and the Study of Motor Learning": 1 + "Dance and Physical Education: Incorporating Choreographic Software.": 1 + "Mathematics 110: Calculus in Baseball Pitching Trajectories: Utilizing the Pythagorean Theorem and Doppler Radar": 1 + "Mathematics 110: Applying Calculus in Basketball Shot Trajectories with Pythagorean Theorem and Motion Sensors": 1 + "Mathematics 110: Pythagorean Theorem & GPS Tech in Calculus of Golf Ball Trajectories ": 1 + "Mathematics 110: Analysis of Soccer Ball Trajectories with Calculus, Pythagorean Theorem, and 3D Modeling ": 1 + "Mathematics 110: Utilizing the Pythagorean Theorem and Drone Technology in Calculus of Tennis Serve Trajectories": 1 + "Mathematics 110: Understanding Football Kick Trajectories with Calculus, Pythagorean Theorem, and Video Analysis Software ": 1 + "Mathematics 110: Calculus in Volleyball Spike Trajectories: Exploring the Pythagorean Theorem and Inertial Measurement Units ": 1 + "Mathematics 110: Using Pythagorean Theorem and Time-of-Flight Cameras in Calculus of Cricket Ball Trajectories ": 1 + "Mathematics 110: Calculus in Hockey Puck Trajectories: Utilizing the Pythagorean Theorem and LIDAR Technology": 1 + "Mathematics 110: Analysis of Rugby Kick Trajectories with Calculus, Pythagorean Theorem, and Accelerometers": 1 + "Mathematics: Utilizing Linear Regression in SPSS for Statistical Analysis to Address World Hunger: A Focus on Food Distribution Efficiency": 1 + "Mathematics: Application of Linear Regression in Excel to Understand and Combat World Hunger: The Power of Agricultural Technology": 1 + "Mathematics: Leveraging Linear Regression in R Programming to Address World Hunger: Exploring Genetic Modification of Crops": 1 + "Mathematics: Using Linear Regression in Python for Statistical Analysis to Fight World Hunger: The Role of Water Conservation Techniques": 1 + "Mathematics: The Impact of Linear Regression in MATLAB on Understanding World Hunger: The Promise of Vertical Farming": 1 + "Mathematics: Linear Regression in Stata for Addressing World Hunger: A Case Study on Soil Fertility Improvement": 1 + "Mathematics: Addressing World Hunger through Linear Regression in SAS: Strategies for Reducing Food Waste": 1 + "Mathematics: Linear Regression in Tableau for World Hunger Analysis: Investigating the Effects of Climate Change on Crop Yield": 1 + "Mathematics: Unleashing the Power of Linear Regression in Minitab to Combat World Hunger: The Potential of Aquaponics": 1 + "Mathematics: Using Linear Regression in JMP to Understand World Hunger: A Deep Dive into Sustainable Farming Practices.": 1 + "Biology: Exploring the Physiological Impact of Harmonic Frequencies Using EEG Technology": 1 + "The Role of Oscilloscope in Understanding The Physiological Impact of Harmonic Frequencies in Biology": 1 + "Biology of Sound: The Physiological Impact of Harmonic Frequencies Analyzed Through Spectrographic Technology": 1 + "Quantum Biology: The Physiological Impact of Harmonic Frequencies Studied Through Quantum Entanglement": 1 + "The Physiological Impact of Harmonic Frequencies in Biology: A Study Utilizing Sonar Technology": 1 + "Biology: Analyzing the Physiological Impact of Harmonic Frequencies Using Fourier Transforms": 1 + "Bioacoustics: The Physiological Impact of Harmonic Frequencies Determined Through Waveform Analysis": 1 + "Biology: Investigating the Physiological Impact of Harmonic Frequencies Using Magnetic Resonance Imaging (MRI)": 1 + "The Physiological Impact of Harmonic Frequencies on Cellular Biology: A Microscopic Study": 1 + "Biology: Understanding the Physiological Impact of Harmonic Frequencies Using the Doppler Effect.": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - An In-depth Look at Electron Microscopy": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Exploring Quantum Mechanics": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Utilizing Molecular Modeling Software ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Spectroscopy and Elemental Identification ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Analyzing Atomic Structure with X-Ray Diffraction ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Studying Isotopes through Mass Spectrometry ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Understanding Atomic Bonding with Lewis Dot Structures ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Atomic Interactions through Quantum Field Theory ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Investigating Radioactivity and Decay Chains ": 1 + "Chemistry 101: The Periodic Table and Atomic Theory - Application of Nuclear Magnetic Resonance Spectroscopy": 1 + "Science: Exploring Earth's Ecosystems through Satellite Imaging": 1 + "Science: Unveiling Earth's Ecosystems Using GIS Technology": 1 + "Science: The Role of Drones in Discovering Earth's Ecosystems": 1 + "Science: Unraveling Earth's Ecosystems Using Carbon Dating": 1 + "Science: The Contribution of DNA Sequencing in Understanding Earth's Ecosystems": 1 + "Science: The Use of Hydrological Models in Discovering Earth's Ecosystems": 1 + "Science: Exploring Earth's Ecosystems through Geospatial Analysis": 1 + "Science: The Impact of Remote Sensing on Earth's Ecosystem Study": 1 + "Science: Discovering Earth's Ecosystems through Ecosystem Services Evaluation": 1 + "Science: The Influence of Climate Change Modelling on Earth's Ecosystem Exploration": 1 + "Physics: Analyzing Laws of Motion through Free Body Diagrams, Motion Sensors, and Newton's Second Law": 1 + "Physics: Delving into Laws of Motion using Free Body Diagrams, Motion Sensors, and Friction Coefficients": 1 + "Physics: Understanding Laws of Motion through Free Body Diagrams, Motion Sensors, and Inclined Plane Experiments": 1 + "Physics: Exploring Laws of Motion with Free Body Diagrams, Motion Sensors, and the Application of Force Vectors": 1 + "Physics: Investigating Laws of Motion through Free Body Diagrams, Motion Sensors, and Momentum Conservation": 1 + "Physics: Studying Laws of Motion using Free Body Diagrams, Motion Sensors, and Kinematics Graphs": 1 + "Physics: Probing Laws of Motion with Free Body Diagrams, Motion Sensors, and the Concept of Work and Energy": 1 + "Physics: Discovering Laws of Motion through Free Body Diagrams, Motion Sensors, and Velocity-Time Graphs": 1 + "Physics: Unveiling Laws of Motion using Free Body Diagrams, Motion Sensors, and the Principle of Equilibrium": 1 + "Physics: Learning Laws of Motion through Free Body Diagrams, Motion Sensors, and Centripetal Force Calculations": 1 + "Physics: Understanding the Laws of Thermodynamics Using the Carnot Cycle": 1 + "Physics: An In-depth Study of Thermodynamics with Maxwell's Equations": 1 + "Physics: Fundamentals of Thermodynamics with a Focus on Entropy": 1 + "Physics: Exploring Thermodynamics Through the Lens of Statistical Mechanics": 1 + "Physics: Thermodynamics and its Applications in Heat Engines": 1 + "Physics: Using the First Law of Thermodynamics in Energy Conversion Processes": 1 + "Physics: Thermodynamics and its Relation to Quantum Mechanics": 1 + "Physics: Thermodynamics: Understanding the Concept of Enthalpy": 1 + "Physics: The Second Law of Thermodynamics and its Implications": 1 + "Physics: Thermodynamics: Exploring the Kelvin-Planck Statement.": 1 + "History: The Evolution of Chess through the Ages: A Comprehensive Study": 1 + "The Impact of Technology on the Evolution of Classic Board Games: A Deep Dive into Chess": 1 + "Classical Games and Modern Technology: An In-depth Look at the Evolution of Chess": 1 + "Chess Evolution: A Historical Perspective on the Role of Technology": 1 + "Classic Games in a Modern World: Understanding the Evolution of Chess through Technology": 1 + "The Evolution of Chess: A Journey from Analog to Digital": 1 + "History and Technology: The Evolution and Digitalization of Chess": 1 + "Chess Transformation: An Exploration of Evolution through Technology": 1 + "The Evolutionary Journey of Chess: From Boards to Digital Platforms": 1 + "Intersect of History and Technology: The Evolution of Chess from Classic to Digital Era": 1 + "Technology's Role in Reshaping Classic Games: A Case Study on Chess": 1 + "Mathematics: Exploring the Euclidean Concepts and Geometry in Art with Fractal Tool and the Fibonacci Sequence": 1 + "Mathematics: The Impact of Euclidean Concepts and Geometry in Renaissance Art through Fractal Tool and Golden Ratio": 1 + "Mathematics: Euclidean Concepts, Fractal Tool, and the Role of Geometry in Digital Art using Adobe Illustrator": 1 + "Mathematics: The Integration of Euclidean Concepts, Fractal Tool, and Geometry in Architectural Art through AutoCAD": 1 + "Mathematics: The Role of Fractal Tool and Euclidean Concepts in the Study of Geometry in Surrealist Art ": 1 + "Mathematics: Fractal Tool and Euclidean Concepts: Geometry's Role in Modern Art and the use of Geogebra": 1 + "Mathematics: Unraveling Euclidean Concepts and Geometry in Art with Fractal Tool and Tessellations": 1 + "Mathematics: The Influence of Euclidean Concepts and Geometry in Art through the Fractal Tool and the Pythagorean Theorem": 1 + "Mathematics: The Intersection of Euclidean Concepts, Fractal Tool, and Geometry in Abstract Art with the use of Photoshop": 1 + "Mathematics: Euclidean Concepts, Fractal Tool, and the Geometry in Cubist Art: A Study through the Perspective of Linear Algebra.": 1 + "Exploring the Impact of Drip Irrigation on Nutritional Outcomes in Soybean Cultivation Using GIS Technology": 1 + "Understanding the Role of Drip Irrigation in Enhancing Nutritional Outcomes in Rice Farming Through Remote Sensing": 1 + "A Comprehensive Study on Drip Irrigation and its Effect on Nutritional Outcomes in Corn Production Using Soil Moisture Sensors": 1 + "The Influence of Drip Irrigation on Nutritional Outcomes in Tomato Farming Using AI-Based Precision Agriculture": 1 + "Utilizing Drone Technology to Assess the Effect of Drip Irrigation on Nutritional Outcomes in Wheat Farming": 1 + "Investigating the Impact of Drip Irrigation on Nutritional Outcomes in Potato Cultivation Using IoT Devices": 1 + "Evaluating the Effect of Drip Irrigation on Nutritional Outcomes in Cotton Farming Through Satellite Imagery": 1 + "Understanding the Implications of Drip Irrigation on Nutritional Outcomes in Vitis Vinifera Cultivation Using Predictive Modelling": 1 + "The Role of Drip Irrigation in Improving Nutritional Outcomes in Maize Production: An Analysis Using Big Data": 1 + "A Detailed Study on the Impact of Drip Irrigation on Nutritional Outcomes in Olive Farming Using Machine Learning Algorithms.": 1 + "Social Studies: Exploring World Cultures through Anthropological Tools": 1 + "Social Studies: Understanding World Cultures with Geographic Information Systems": 1 + "Social Studies: Analyzing World Cultures through Historical Documents": 1 + "Social Studies: Decoding World Cultures using Linguistic Analysis": 1 + "Social Studies: Understanding World Cultures through the Lens of Religion": 1 + "Social Studies: Surveying World Cultures using Quantitative Methods": 1 + "Social Studies: Interpreting World Cultures through Ethnographic Research": 1 + "Social Studies: Delving into World Cultures with Archaeological Techniques": 1 + "Social Studies: Unraveling World Cultures using Comparative Studies": 1 + "Social Studies: Understanding World Cultures through the Perspective of Economics": 1 + "Quantum Chemistry: Quantum Espresso and Density Functional Theory in Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso Utilizing Plane-Wave Basis Sets in Structural Analysis of Periodic Table Elements": 1 + "Quantum Chemistry: Using Quantum Espresso and Kohn-Sham Equations for Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso in Modelling Periodic Table Elements Using Pseudopotentials": 1 + "Quantum Chemistry: Quantum Espresso and Plane-Wave Pseudopotential Method in Modelling Periodic Elements": 1 + "Quantum Chemistry: Quantum Espresso and Electronic Band Structure in Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso with Local Density Approximation in Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso and Generalized Gradient Approximation in Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso with Projector Augmented Wave Method in Modelling Periodic Table Elements": 1 + "Quantum Chemistry: Quantum Espresso and Molecular Dynamics Simulation in Modelling Periodic Table Elements": 1 + "Music: Migration Impact and the Evolution of American Pop through the Lens of Auto-Tune and MIDI Technology": 1 + "Decoding the Influences of Immigration on American Pop: A Study through Auto-Tune and Sampling Techniques": 1 + "Immigration and its Effect on American Pop: An Exploration through Auto-Tune and Loop Stations": 1 + "Tracking the Evolution of American Pop: A Detailed Study on Auto-Tune and Synthesizer Techniques": 1 + "Music: Immigration Influences on American Pop through the Prism of Auto-Tune and Beat-Making Software": 1 + "The Role of Immigration in Shaping American Pop: A Study of Auto-Tune and Digital Audio Workstations": 1 + "Technology's Role in the Evolution of American Pop: A Study of Auto-Tune and Sequencer Tools": 1 + "Unraveling American Pop Music: An Insight into the Impact of Immigration through Auto-Tune and Sound Mixing Techniques": 1 + "Auto-Tune and the Evolution of American Pop: A Deep Dive into the Impact of Immigration and the Use of Drum Machines": 1 + "The Intersection of Immigration and Tech: A Study of American Pop Evolution through Auto-Tune and Sound Editing Software.": 1 + "Biology of Hearing: Tracing Evolution of Auditory Systems through Vestibular Tests Using Electronystagmography": 1 + "Understanding Auditory Evolution: A Detailed Study of Vestibular Tests with Video Head Impulse Testing": 1 + "Decoding Hearing Evolution: An In-depth Analysis of Vestibular Tests using Rotary Chair Testing": 1 + "Biology of Hearing: The Role of Vestibular Evoked Myogenic Potential (VEMP) Testing in Tracing Auditory System Evolution": 1 + "Exploring Hearing Evolution: A Comprehensive Study of Vestibular Tests Incorporating Posturography": 1 + "Biology of Hearing: Insights into Auditory Evolution through Vestibular Tests using Caloric Testing": 1 + "Biology of Hearing: Using Platform posturography to Trace Auditory Systems' Evolution through Vestibular Tests": 1 + "Biology of Hearing: The Application of Audiometry in Tracing Auditory Systems Evolution through Vestibular Tests": 1 + "Biology of Hearing: Tracing the Evolution of Auditory Systems using Vestibular Tests with Pure Tone Audiometry": 1 + "Analyzing Hearing Biology: The Role of Immittance Audiometry in Tracing Auditory System Evolution through Vestibular Tests": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Detailed Study on Game Theory with Nash Equilibrium": 1 + "Language Arts: The Impact of Bayes' Theorem on The Rhetoric of Economic Discourse: A Game Theory Study": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Study on Game Theory and the Application of Probability Theory": 1 + "Language Arts: Exploring the Rhetoric of Economic Discourse: Utilizing Game Theory and Decision Trees": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Study on Game Theory Through the Prism of the Prisoner's Dilemma": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Game Theory Study with a Focus on Rational Choice Theory": 1 + "Language Arts: Zero-Sum Games in The Rhetoric of Economic Discourse: A Study on Game Theory": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Study on Game Theory and the Concept of Pareto Efficiency": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Study on Game Theory Using Matrix Analysis": 1 + "Language Arts: The Rhetoric of Economic Discourse: Game Theory and its Relation to the Monty Hall Problem.": 1 + "Solar System Sleuths: Analyzing Cosmic Phenomena with Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Probing Universe with Chandra X-ray Observatory and Radio Telescopes": 1 + "Solar System Sleuths: Unraveling Cosmic Mysteries with Chandra X-ray Observatory and Infrared Imaging": 1 + "Solar System Sleuths: Investigating Astronomical Wonders with Chandra X-ray Observatory and Doppler Shift Technique": 1 + "Solar System Sleuths: Decoding Universe with Chandra X-ray Observatory and Hubble Space Telescope": 1 + "Solar System Sleuths: Probing Universe with Chandra X-ray Observatory and Kepler's Laws": 1 + "Solar System Sleuths: Exploring Cosmos with Chandra X-ray Observatory and Gravitational Lensing": 1 + "Solar System Sleuths: Unveiling Universe with Chandra X-ray Observatory and Dark Matter Theory": 1 + "Solar System Sleuths: Discovering Universe with Chandra X-ray Observatory and Pulsar Timing": 1 + "Solar System Sleuths: Probing Universe with Chandra X-ray Observatory and Quantum Mechanics.": 1 + "Neuroscience: Exploring the Brain's Function through MRI Scanning": 1 + "Neuroscience: Understanding the Brain's Function using EEG Technology": 1 + "Neuroscience: Decoding the Brain's Function with Neuropsychological Tests": 1 + "Neuroscience: Unveiling the Brain's Function through fMRI Studies": 1 + "Neuroscience: Investigating the Brain's Function using PET Scans": 1 + "Neuroscience: Examining the Brain's Function through the concept of Neuroplasticity": 1 + "Neuroscience: Understanding the Brain's Function via Neuroimaging Techniques": 1 + "Neuroscience: Delving into the Brain's Function using the concept of Synaptic Plasticity": 1 + "Neuroscience: Probing the Brain's Function through Transcranial Magnetic Stimulation": 1 + "Neuroscience: Grasping the Brain's Function using Diffusion Tensor Imaging": 1 + "Virtual Reality and Artificial Intelligence: Ethical Implications in the Digital Age - A 10-Point Solution Guide": 1 + "The Ethics of Augmented Reality: Analyzing Philosophical Implications and Proposing 10 Solutions": 1 + "Virtual Reality and Blockchain Technology: Addressing Ethical Concerns in the Digital Age - Ten Solutions": 1 + "Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Potential Solutions": 1 + "Machine Learning in Virtual Reality: Ethical Dilemmas in the Digital Age and 10 Possible Resolutions": 1 + "Virtual Reality and Data Privacy: Exploring Ethical Concerns in the Digital Age - Ten Solutions": 1 + "The Role of Virtual Reality in Social Media: Ethical and Philosophical Considerations with 10 Solutions": 1 + "Virtual Reality and Gamification: Ethical Implications and 10 Possible Solutions in the Digital Age": 1 + "Virtual Reality and Cloud Computing: The Ethical and Philosophical Implications - Ten Potential Solutions ": 1 + "The Impact of Virtual Reality on E-Commerce: Ethical and Philosophical Implications with 10 Solutions.": 1 + "Junior Biology: Dissecting the Intricacies of Plant and Animal Cells using Microscopes": 1 + "Junior Biology: Utilizing DNA Sequencing to Understand the Genetics of Plants and Animals": 1 + "Junior Biology: Exploring Plant and Animal Habitats using Geographic Information System (GIS)": 1 + "Junior Biology: Understanding the Anatomy of Plants and Animals via 3D Modeling": 1 + "Junior Biology: Exploring the Biochemistry of Plants and Animals through Spectrophotometry": 1 + "Junior Biology: Investigating Plant and Animal Growth using Time-lapse Photography": 1 + "Junior Biology: Examining the Physiology of Plants and Animals with Biometric Technology": 1 + "Junior Biology: Studying the Behavior of Animals using Tracking Devices": 1 + "Junior Biology: Uncovering the World of Plants and Animals through Genetic Engineering": 1 + "Junior Biology: Exploring Plant and Animal Evolution using Fossil Analysis.": 1 + "Little Chemists: Exploring Acids and Bases using Litmus Paper": 1 + "Little Chemists: Introduction to Chemical Reactions with Bunsen Burners": 1 + "Little Chemists: Discovering Elements using the Periodic Table": 1 + "Little Chemists: Introduction to Molecular Bonding with Model Kits": 1 + "Little Chemists: Understanding Chemical Equations using Balancing Scales": 1 + "Little Chemists: Delving into Organic Chemistry with Microscopes": 1 + "Little Chemists: Exploring Gas Laws using Syringes": 1 + "Little Chemists: Introduction to Stoichiometry using Digital Scales": 1 + "Little Chemists: Discovering Atomic Structure with Electron Microscopes": 1 + "Little Chemists: Understanding Solutions and Mixtures using Separatory Funnels": 1 + "History: The Age of Exploration and Maritime Trade - The Influence of the Compass": 1 + "Navigational Maps and their Role in the Age of Exploration and Maritime Trade": 1 + "The Impact of the Sextant in the Era of Exploration and Maritime Trade": 1 + "The Age of Exploration and Maritime Trade: A Special Focus on the Caravel": 1 + "The Age of Exploration and Maritime Trade: The Use of Astrolabes": 1 + "History: The Age of Exploration - The Importance of Lateen Sails in Maritime Trade": 1 + "The Impact of the Chronometer on the Age of Exploration and Maritime Trade": 1 + "History: The Age of Exploration and the Role of Gunpowder in Maritime Trade": 1 + "The Age of Exploration and Maritime Trade: The Development of the Galleon": 1 + "History: The Age of Exploration and Maritime Trade - Understanding the Quadrant.": 1 + "History of Music: Exploring the Impact of Spotify on the Evolution of Genres ": 1 + "The Pandora Effect: How Streaming Services Shaped Music Genres ": 1 + "Apple Music and the Evolution of Music Genres in the Digital Age": 1 + "The Role of YouTube in the Evolution of Music Genres: A Historical Overview": 1 + "History of Music: Analyzing the Influence of SoundCloud on Genre Development": 1 + "Tidal Waves: How Tidal Impacted the Evolution of Music Genres ": 1 + "Diving into Deezer: Understanding its Role in the Evolution of Music Genres": 1 + "The Rise of Electronic Dance Music (EDM): The Role of Streaming Services": 1 + "Streaming and The Evolution of Hip Hop: A Case Study on Spotify": 1 + "The Impact of Amazon Music on the Evolution and Growth of Indie Genres.": 1 + "Language Arts: Exploring Shakespeare's World through Film Analysis": 1 + "Language Arts: An Examination of Shakespeare's World using Interactive Digital Maps ": 1 + "Language Arts: Reading Shakespeare's World through Historical Contextualization ": 1 + "Language Arts: Dissecting Shakespeare's World through Character Analysis ": 1 + "Language Arts: Interpreting Shakespeare's World using Literary Theory ": 1 + "Language Arts: Exploring Shakespeare's World with the Aid of Augmented Reality ": 1 + "Language Arts: Decoding Shakespeare's World through Symbolic Interpretation ": 1 + "Language Arts: Diving into Shakespeare's World using Dramatic Performance ": 1 + "Language Arts: Unraveling Shakespeare's World through Linguistic Tools ": 1 + "Language Arts: Understanding Shakespeare's World through Socio-Political Perspectives ": 1 + "Language Arts: Navigating Shakespeare's World with Thematic Analysis": 1 + "History: The Impact of the Steam Engine on the Industrial Revolution": 1 + "History: The Role of Textile Machinery in the Industrial Revolution": 1 + "History: The Influence of the Telegraph on the Industrial Revolution": 1 + "History: How Railways Changed the Course of the Industrial Revolution": 1 + "History: The Industrial Revolution and the Emergence of Factory System": 1 + "History: The Industrial Revolution: The Power of Coal and Iron": 1 + "History: The Part Cotton Gin Played in the Industrial Revolution": 1 + "History: The Industrial Revolution's Growth Fuelled by the Steamboat": 1 + "History: The Industrial Revolution: The Emergence of Mass Production Concept": 1 + "History: The Spinning Jenny and its Impact on the Industrial Revolution": 1 + "Physical Education: Utilizing Polar Heart Rate Monitors and Garmin GPS Technology in Movement Studies": 1 + "Physical Education: Leveraging Smart Watch Heart Rate Monitors and Strava GPS in Analyzing Human Motion": 1 + "Physical Education: Implementing Fitbit Heart Rate Monitors and Google Earth GPS for Movement Tracking": 1 + "Physical Education: Embracing Garmin Heart Rate Monitors and GPS Technology in the Study of Athletic Performance": 1 + "Physical Education: Introducing Apple Watch Heart Rate Monitors and GPS Technology in Movement Exploration": 1 + "Physical Education: Incorporating Suunto Heart Rate Monitors and GPS Devices in Analyzing Movement Patterns": 1 + "Physical Education: Adopting Wahoo Heart Rate Monitors and GPS Tracking in Studying Human Locomotion": 1 + "Physical Education: Using TomTom Heart Rate Monitors and GPS Technology for Movement Analysis": 1 + "Physical Education: Applying Samsung Heart Rate Monitors and GPS Technology in Movement Science": 1 + "Physical Education: Integrating WHOOP Heart Rate Monitors and GPS Technology in the Study of Human Motion": 1 + "Neuroscience: Exploring Brain Structures through Functional MRI, Neuronavigation Systems and PET Scanning Techniques": 1 + "Brain Mapping: Utilizing Functional MRI, Neuronavigation Systems and Diffusion Tensor Imaging for In-depth Study of Brain Structures": 1 + "Advanced Neuroscience: Understanding Brain Structures through Functional MRI, Neuronavigation Systems and Electroencephalography": 1 + "Neuroscience: Delving into Brain Structures with Functional MRI, Neuronavigation Systems and Transcranial Magnetic Stimulation": 1 + "Neuroscience: Comprehensive Study of Brain Structures through Functional MRI, Neuronavigation Systems and Magnetoencephalography": 1 + "Cognitive Neuroscience: Investigating Brain Structures using Functional MRI, Neuronavigation Systems and Cognitive Task Analysis": 1 + "Clinical Neuroscience: Understanding Brain Structures through Functional MRI, Neuronavigation Systems and Intracranial Electroencephalography": 1 + "Neuroscience: Detailed Analysis of Brain Structures through Functional MRI, Neuronavigation Systems and Single Photon Emission Computed Tomography": 1 + "Neuroscience: Specialized Study of Brain Structures through Functional MRI, Neuronavigation Systems and Voxel-Based Morphometry": 1 + "Neuroscience: Comparative Analysis of Brain Structures through Functional MRI, Neuronavigation Systems and Positron Emission Tomography.": 1 + "Elementary Science: Exploring Weather Patterns with Infrared Satellite Imagery": 1 + "Elementary Science: Studying Weather Shifts Using Infrared Doppler Radar Technology ": 1 + "Elementary Science: Investigating Climate Changes Through Infrared Thermography": 1 + "Elementary Science: Analyzing Weather Patterns Using Infrared Spectroscopy": 1 + "Elementary Science: Decoding Weather Patterns through Infrared Thermal Imaging Cameras": 1 + "Elementary Science: Understanding Meteorology Using Infrared Weather Balloons": 1 + "Elementary Science: Studying Weather Patterns through the Lens of Infrared LiDAR Technology": 1 + "Elementary Science: Examining Weather Phenomena Using Infrared Radiometry": 1 + "Elementary Science: Tracking Weather Patterns with Infrared Drone Technology": 1 + "Elementary Science: Discovering Weather Variations Through Infrared Thermometer Readings": 1 + "Philosophy 101: Understanding Life through Socratic Dialogues Using the Elenchus Method": 1 + "Philosophy 101: Exploring Life's Meaning through Socratic Dialogues and Critical Thinking Techniques": 1 + "Philosophy 101: Analysis of Life through Socratic Dialogues Using Logical Fallacies": 1 + "Philosophy 101: Understanding Life through Socratic Dialogues and the Concept of Irony": 1 + "Philosophy 101: Deconstructing Life's Complexities through Socratic Dialogues and the Theory of Forms": 1 + "Philosophy 101: Evaluating Life through Socratic Dialogues and the Use of the Socratic Method": 1 + "Philosophy 101: Understanding Life through Socratic Dialogues and the Application of Dialectics": 1 + "Philosophy 101: Insight into Life through Socratic Dialogues and the Principle of Non-contradiction": 1 + "Philosophy 101: Comprehending Life through Socratic Dialogues and the Concept of Aporia": 1 + "Philosophy 101: Unraveling Life's Mysteries through Socratic Dialogues and the Tool of Maieutics": 1 + "Probability & Statistics: A Deep Dive into Gaussian Distribution using Random Variables in SAS and SPSS": 1 + "Advanced Probability & Statistics: In-depth Analysis of Binomial Distribution with Random Variables in SAS": 1 + "Probability & Statistics: Exploring Poisson Distribution through Random Variables in SPSS": 1 + "Probability & Statistics: A Comprehensive Study of Normal Distribution using Random Variables in SAS": 1 + "Expansive Probability & Statistics: An Examination of Bernoulli Distribution with Random Variables in SPSS": 1 + "Probability & Statistics: Understanding Uniform Distribution through Random Variables in SAS and SPSS": 1 + "Probability & Statistics: A Detailed Look at Exponential Distribution using Random Variables in SAS": 1 + "Probability & Statistics: A Comprehensive Study of Geometric Distribution with Random Variables in SPSS": 1 + "Advanced Topics in Probability & Statistics: Focusing on Negative Binomial Distribution using SAS": 1 + "Probability & Statistics: A Thorough Examination of Hypergeometric Distribution with Random Variables in SPSS.": 1 + "Chemistry for Kids: Exploring pH Scale with Red Cabbage Indicator & Litmus Paper": 1 + "Introduction to pH Scale for Kids: Using Red Cabbage Indicator and Digital pH Meters": 1 + "Chemistry for Kids: Hands-On pH Scale Lessons with Red Cabbage Indicator & Microscope ": 1 + "Kids Chemistry: pH Scale and Acid-Base Reactions using Red Cabbage Indicator": 1 + "Chemistry for Kids: Understanding pH Scale through Red Cabbage Indicator and pH Color Chart": 1 + "Chemistry for Kids: Introduction to pH Scale & Buffer Solutions using Red Cabbage Indicator": 1 + "Interactive Chemistry for Kids: pH Scale Exploration with Red Cabbage Indicator & Virtual Labs": 1 + "Chemistry for Kids: Discovering pH Scale using Red Cabbage Indicator and pH Test Strips": 1 + "Kids Chemistry: pH Scale and Neutralization Reactions using Red Cabbage Indicator": 1 + "Chemistry for Kids: Introduction to pH Scale & Hydrogen Ion Concentration using Red Cabbage Indicator": 1 + "The History of Technology: The Development and Impact of the Television on Satellite Communication": 1 + "The History of Technology: The Evolution and Impact of the Television on Wireless Technology": 1 + "The History of Technology: The Progression of Television and its Influence on Digital Broadcasting": 1 + "The History of Technology: The Development of the Television and its Impact on High Definition Imaging": 1 + "The History of Technology: Exploring the Television's Role in the Advancement of Remote Control Devices": 1 + "The History of Technology: The Television's Contribution to the Emergence of Cable Networks": 1 + "The History of Technology: The Development of Television and its Impact on Streaming Technologies": 1 + "The History of Technology: The Television's Role in the Evolution of Video Recording Technology": 1 + "The History of Technology: The Influence of Television Development on Color Display Technology": 1 + "The History of Technology: The Impact of Television on the Advancement of Smart TV Technologies": 1 + "Economics of Music: Exploring Sound Industry through Spotify's AI and Machine Learning": 1 + "Understanding the Music Industry: A Study on Audio Fingerprinting and Machine Learning ": 1 + "Economics of Music: A Deep Dive into SoundCloud's AI and Machine Learning Techniques": 1 + "The Role of Convolutional Neural Networks in the Music Industry: A Study on AI and Economics": 1 + "Economics of Music: Exploring Sound Industry through AI, Machine Learning and Blockchain Technology": 1 + "The Impact of TensorFlow in the Music Industry: An Economic Perspective": 1 + "Neural Networks in Music: Exploring Sound Industry Economics through AI": 1 + "Sound Industry Economics: An Analysis using Python, AI and Machine Learning": 1 + "The Music Economy: A Deep Learning Perspective on Soundcloud ": 1 + "IBM Watson and the Music Economy: Exploring the Impact of AI and Machine Learning": 1 + "Organic Chemistry: Exploring Molecules through Infrared Spectroscopy using Fourier Transform Infrared (FTIR) Spectrometer": 1 + "Organic Chemistry: Studying Molecular Structures with Infrared Spectroscopy and Raman Technology": 1 + "Organic Chemistry: Decoding the Language of Molecules with Infrared Spectroscopy and Mass Spectrometry": 1 + "Organic Chemistry: Unraveling Molecular Secrets with Infrared Spectroscopy and Nuclear Magnetic Resonance (NMR)": 1 + "Organic Chemistry: Mapping Molecules using Infrared Spectroscopy and Gas Chromatography": 1 + "Organic Chemistry: Analyzing Molecular Composition with Infrared Spectroscopy and Liquid Chromatography-Mass Spectrometry (LC-MS)": 1 + "Organic Chemistry: Understanding Molecular Behavior with Infrared Spectroscopy and Spectrophotometry": 1 + "Organic Chemistry: Deciphering Molecular Language with Infrared Spectroscopy and X-Ray Crystallography": 1 + "Organic Chemistry: Interpreting Molecules with Infrared Spectroscopy and Electron Microscopy": 1 + "Organic Chemistry: Investigating Molecular Interactions with Infrared Spectroscopy and Quantum Mechanics.": 1 + "Mathematics: Analyzing Baseball Statistics Through Excel and Python": 1 + "Exploring Basketball Stats: A Deep Dive into Excel and VBA": 1 + "Mathematics: Golf Statistics Analysis Through Excel and Machine Learning": 1 + "Soccer Statistics: Exploring Data Visualization in Excel and Tableau": 1 + "Mathematics: Cricket Statistics Decoded Using Excel and Power BI": 1 + "Excel and R for Sports: An In-depth Analysis of Tennis Statistics": 1 + "Excel and SQL: A Comprehensive Study of Football Stats ": 1 + "Mathematics: Hockey Statistics Explored Through Excel and Pandas": 1 + "Excel and MATLAB for Sports: Diving into Swimming Statistics": 1 + "Exploring Athletics: An Analysis of Track & Field Statistics Using Excel and SAS.": 1 + "Understanding Acoustic Guitar Sound Mechanics with Resonance Using a Spectrum Analyzer": 1 + "Acoustic Resonance: A Detailed Study of Sound Mechanics in Guitars with the Helmholtz Resonator": 1 + "Utilizing Oscilloscopes to Explore Sound Mechanics and Resonance in Guitars": 1 + "Fourier Transforms: Analyzing Guitar Sound Mechanics and Resonance": 1 + "Delving into Guitar Sound Mechanics: An Analysis of Resonance Using Waveform Monitors": 1 + "Decoding Guitar Sound Mechanics: A Deep-Dive into Resonance with Spectral Analysis": 1 + "Sound Mechanics in Guitars: An Exploration of Resonance Using Harmonic Distortion Analysis": 1 + "Using Audio Spectrum Analysis to Understand Resonance in Guitar Sound Mechanics ": 1 + "A Study on Guitar Sound Mechanics: Understanding Resonance Through Time-Domain Reflectometer": 1 + "Unraveling Guitar Sound Mechanics: A Detailed Examination of Resonance Using a Signal Generator.": 1 + "The Revolution of Technology: The Transformation brought by the Refrigerator and the Impact of the Internet of Things": 1 + "The Evolution of Cold Storage: Exploring the Impact of Energy-efficient Refrigerators": 1 + "The Revolution of Technology: The Role of AI in Modern Refrigeration Systems": 1 + "From Ice Boxes to Smart Fridges: The Technological Advancements in Refrigeration": 1 + "The Revolution of Technology: The Transformation brought by the Refrigerator and the Introduction of Solar Power": 1 + "Transforming Food Preservation: A Deep Dive into the Impact of Digital Thermostats in Refrigerators": 1 + "The Revolution of Technology: The Transformation brought by the Refrigerator and the Emergence of Wi-Fi Enabled Functions": 1 + "Advanced Coolants and the Modern Refrigerator: A Study of the Technological Revolution": 1 + "The Revolution of Technology: The Transformation brought by the Refrigerator and the Inclusion of Touchscreen Interfaces": 1 + "Preserving More than Food: The Environmentally Friendly Innovations in Modern Refrigeration Technology": 1 + "Philosophy for Kids: An Introduction to Ethics and Morality through the Lens of Plato's Allegory of the Cave": 1 + "Philosophy for Kids: Exploring Ethics and Morality with Socratic Questioning": 1 + "Philosophy for Kids: Understanding Ethics and Morality Using the Kantian Categorical Imperative": 1 + "Philosophy for Kids: Exploring Ethics and Morality through Aristotle's Virtue Ethics": 1 + "Philosophy for Kids: An Introduction to Ethics and Morality Using the Utilitarianism Approach": 1 + "Philosophy for Kids: Understanding Ethics and Morality Through John Locke's Social Contract Theory": 1 + "Philosophy for Kids: Examining Ethics and Morality through the Prism of Altruism": 1 + "Philosophy for Kids: Ethics, Morality and the Golden Rule: A Comprehensive Study": 1 + "Philosophy for Kids: An Introduction to Ethics and Morality using Nietszche's Will to Power": 1 + "Philosophy for Kids: Discovering Ethics and Morality through the Buddhist Concept of Karma.": 1 + "Computer Science: Using Firebase Cloud Functions and Java for Fitness Apps Development: Incorporating Google Fit API for Athletes": 1 + "Computer Science: Android Studio and Firebase Cloud Functions: Developing Fitness Apps for Athletes with Java": 1 + "Computer Science: Exploring Firebase Cloud Messaging in Java for Developing Fitness Apps for Athletes": 1 + "Computer Science: Utilizing Firebase Cloud Functions and Java for Fitness Apps Development: An Introduction to SQLite for Athletes": 1 + "Computer Science: Using Firebase Cloud Functions and Java with Retrofit Library for Fitness Apps Development for Athletes": 1 + "Computer Science: Leveraging Firebase Cloud Functions, Java, and JSON for Fitness Apps Development for Athletes": 1 + "Computer Science: Incorporating REST APIs with Firebase Cloud Functions and Java for Fitness Apps Development for Athletes": 1 + "Computer Science: Firebase Authentication & Cloud Functions in Java for Fitness Apps Development for Athletes": 1 + "Computer Science: Using Firebase Realtime Database with Cloud Functions and Java for Fitness Apps Development for Athletes": 1 + "Computer Science: Implementing Firebase Cloud Functions and Java with MVVM Architecture for Fitness Apps Development for Athletes.": 1 + "Music: Traditional Songs of Maritime Trade and the Use of the Sextant": 1 + "Music: The Influence of the Compass on Traditional Songs of Maritime Trade": 1 + "Music: Traditional Songs of Maritime Trade and the Evolution of the Ship's Wheel": 1 + "Music: The Impact of Navigation Charts on Traditional Songs of Maritime Trade": 1 + "Music: Traditional Songs of Maritime Trade: A Study on Sail Rigging": 1 + "Music: The Role of the Astrolabe in Traditional Songs of Maritime Trade": 1 + "Music: Traditional Songs of Maritime Trade and the Importance of the Chronometer": 1 + "Music: The Telescope's Influence on Traditional Songs of Maritime Trade": 1 + "Music: Traditional Songs of Maritime Trade and the Development of the Anchor": 1 + "Music: The Intersection of the Quadrant and Traditional Songs of Maritime Trade": 1 + "Music: Traditional Songs of Maritime Trade: Exploring the Role of the Spyglass": 1 + "Computer Science 101: Learning Coding with Scratch through Python": 1 + "Computer Science 101: Learning Coding with Scratch and HTML": 1 + "Computer Science 101: Learning Coding with Scratch using JavaScript": 1 + "Computer Science 101: Learning Coding with Scratch - Applying CSS": 1 + "Computer Science 101: Learning Coding with Scratch - Understanding Data Structures": 1 + "Computer Science 101: Learning Coding with Scratch - Exploring C++": 1 + "Computer Science 101: Learning Coding with Scratch - Intro to PHP": 1 + "Computer Science 101: Learning Coding with Scratch - Mastering Ruby": 1 + "Computer Science 101: Learning Coding with Scratch - Discovering SQL": 1 + "Computer Science 101: Learning Coding with Scratch - Diving Into Swift": 1 + "The Impact of VHS: The Television's Role in the Evolution of Video Recording Technology": 1 + "The Rise of Blu-Ray: The Television's Role in the Evolution of Video Recording Technology": 1 + "The Influence of Digital Video Broadcasting: The Television’s Role in the Evolution of Video Recording Technology": 1 + "The Advent of Streaming Services: The Television’s Role in the Evolution of Video Recording Technology": 1 + "The Era of DVR: The Television's Role in the Evolution of Video Recording Technology": 1 + "The Transition from Analog to Digital: The Television’s Role in the Evolution of Video Recording Technology": 1 + "The Role of High Definition Technology: The Television's Influence on the Evolution of Video Recording Technology": 1 + "Smart TVs and On-Demand Video: The Television's Role in the Evolution of Video Recording Technology": 1 + "The Emergence of IPTV: The Television's Role in the Evolution of Video Recording Technology": 1 + "The Integration of 4K Resolution: The Television's Role in the Evolution of Video Recording Technology": 1 + "Leveraging Hadoop in Transforming Economic Forecasting: A Comprehensive Study on Parallel Algorithms, Big Data, and Amazon Web Services": 1 + "Transforming Economic Forecasting: A Deep Dive into Python-based Parallel Algorithms, Big Data, and Amazon Web Services": 1 + "Economic Forecasting Evolution: Exploring TensorFlow in Parallel Algorithms, Big Data, and Amazon Web Services": 1 + "Empowering Economic Forecasting: A Detailed Analysis on Parallel Algorithms, Big Data, Machine Learning, and Amazon Web Services": 1 + "Rethinking Economic Forecasting: An In-depth Study on Parallel Algorithms, Big Data, Amazon Web Services, and BlockChain Technology": 1 + "Economic Forecasting with SQL: A Deep Insight into Parallel Algorithms, Big Data, and Amazon Web Services": 1 + "Optimizing Economic Forecasting: A Deep Dive into Parallel Algorithms, Big Data, Amazon Web Services, and Neural Networks": 1 + "Transforming Economic Forecasting: Exploiting Parallel Algorithms, Big Data, Amazon Web Services, and Data Mining Techniques": 1 + "Economic Forecasting Reinvented: Harnessing the Power of Parallel Algorithms, Big Data, Amazon Web Services, and Artificial Intelligence": 1 + "Revamping Economic Forecasting: A Deep Dive into Parallel Algorithms, Big Data, Amazon Web Services, and Quantum Computing.": 1 + "Streaming Economics in the Music Industry: Utilizing Spotify Data to Understand Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Exploring Market Trends and Consumer Behavior through Blockchain Technology": 1 + "Economics of the Music Industry: Unpacking Market Trends and Consumer Behavior with Big Data Analysis": 1 + "Utilizing AI in the Music Industry: Understanding Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Understanding Market Trends and Consumer Behavior through Social Media Analytics": 1 + "Economics of the Music Industry: Applying Predictive Modelling to Understand Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Decoding Market Trends and Consumer Behavior with Machine Learning": 1 + "Economics of the Music Industry: Exploring Consumer Behavior and Market Trends through the Lens of Digital Marketing Strategies": 1 + "Economics of the Music Industry: Leveraging Virtual Reality Technology to Understand Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Using User Experience (UX) Design Principles to Understand Market Trends and Consumer Behavior": 1 + "Physics Principles: Utilizing Newton's Second Law in Studying Laws of Motion": 1 + "Physics Principles: Examining Laws of Motion through Projectile Motion Simulations": 1 + "Physics Principles: Exploring Laws of Motion with Frictional Force Concepts": 1 + "Physics Principles: Understanding Laws of Motion Using Vector Calculations": 1 + "Physics Principles: Examining Laws of Motion through Momentum Conservation": 1 + "Physics Principles: The Role of Gravitational Force in Laws of Motion": 1 + "Physics Principles: Analyzing Laws of Motion Using Free-Body Diagrams": 1 + "Physics Principles: Application of Kinetic Energy in the Laws of Motion": 1 + "Physics Principles: Laws of Motion Studied Through the Lens of Inertia": 1 + "Physics Principles: Examining Laws of Motion using A Computerized Motion Tracker.": 1 + "Logical Thinkers: Using Python to Explore Elementary Logic with Truth Tables": 1 + "Logical Thinkers: Mastering Elementary Logic with Truth Tables through MATLAB": 1 + "Logical Thinkers: Delving into Propositional Logic with Truth Tables": 1 + "Logical Thinkers: Leveraging Java for Elementary Logic with Truth Tables": 1 + "Logical Thinkers: Exploring Elementary Logic with Venn Diagrams and Truth Tables": 1 + "Logical Thinkers: Boolean Algebra and Elementary Logic with Truth Tables": 1 + "Logical Thinkers: Applying Set Theory in Elementary Logic with Truth Tables": 1 + "Logical Thinkers: A Deep Dive into Elementary Logic with Karnaugh Maps and Truth Tables": 1 + "Logical Thinkers: Understanding Elementary Logic with Truth Tables using Logic Gates": 1 + "Logical Thinkers: Learning Elementary Logic with Truth Tables using Excel": 1 + "Logic 101: Introduction to Formal Logic with Truth Tables using Propositional Calculus": 1 + "Logic 101: Deep Dive into Formal Logic with Truth Tables and Set Theory": 1 + "Formal Logic 101: An Introductory Course featuring Truth Tables and Predicate Logic": 1 + "Logic 101: Exploring Formal Logic and Truth Tables through Computer Programming": 1 + "Logic 101: Introduction to Formal Logic with Truth Tables and Venn Diagrams": 1 + "Formal Logic 101: An Overview of Truth Tables and Mathematical Induction": 1 + "Logic 101: Formal Logic and Truth Tables with an Emphasis on Binary Operations": 1 + "Introduction to Formal Logic 101: Unraveling Truth Tables and Logical Equivalences": 1 + "Formal Logic 101: Understanding Truth Tables with Boolean Algebra": 1 + "Logic 101: Introduction to Formal Logic, Truth Tables and Modal Logic.": 1 + "Cell Biology and Microscopy Basics: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing Using Gel Electrophoresis": 1 + "DNA Extraction and Analysis: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing in Cell Biology": 1 + "Exploring CRISPR-Cas9 in Cell Biology: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing ": 1 + "Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing: A Focus on Chromatography in Cell Biology": 1 + "Cell Biology and Microscopy Basics: In-Depth Study of Fluorescence Microscopy in Polymerase Chain Reaction and DNA Sequencing ": 1 + "Cell Biology and Microscopy Basics: Application of Next-Generation Sequencing in Polymerase Chain Reaction ": 1 + "Cell Biology and Microscopy Basics: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing Using Southern Blotting": 1 + "Innovative Approaches in Cell Biology: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing Using Microarray Technology": 1 + "Cell Biology and Microscopy Basics: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing with a Focus on Restriction Enzymes": 1 + "Cell Biology and Microscopy Basics: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing Using Quantitative PCR.": 1 + "Neuroscience: Utilizing MRI in Brain Mapping Techniques to Discover the Brain's Function": 1 + "Neuroscience: Exploring the Brain's Function with MPI and Functional Connectivity": 1 + "Neuroscience: Implementing Neuroimaging in Magnetic Particle Imaging for Brain Function Discovery": 1 + "Neuroscience: The Role of Diffusion Tensor Imaging in Discovering Brain's Function through MPI": 1 + "Neuroscience: Discovering Brain's Function with MPI: A Focus on Electroencephalography Techniques": 1 + "Neuroscience: Positron Emission Tomography and MPI in Discovering the Brain's Function": 1 + "Neuroscience: Unveiling the Brain's Function with Magnetic Particle Imaging and Computer Tomography": 1 + "Neuroscience: The Impact of Single-Photon Emission Computerized Tomography on MPI in Brain Mapping": 1 + "Neuroscience: Combining Magnetic Particle Imaging with Near-Infrared Spectroscopy in Brain Function Discovery": 1 + "Neuroscience: Exploring Brain's Function with MPI and the Power of Transcranial Magnetic Stimulation.": 1 + "Advanced Biology: Utilizing CRISPR-Cas9 and Sequencing Technologies to Analyze Human Adaptation to Climatic Changes": 1 + "Comprehensive Study of Human Adaptation to Environmental Shifts: A Focus on CRISPR Technology and Polymerase Chain Reaction": 1 + "Exploring Human Adaptation to Environmental Changes: A Deep Dive into CRISPR-Cas9 and Gel Electrophoresis": 1 + "Human Evolution and Environmental Adaptation: Employing CRISPR and Mass Spectrometry for Detailed Analysis": 1 + "In-Depth Analysis of Human Adaptation to Environmental Alterations: The Role of CRISPR Technology and DNA Microarrays": 1 + "Detailed Study of Human Environmental Adaptation: Using CRISPR and Next Generation Sequencing Technologies": 1 + "The Science of Human Adaptation: Leveraging CRISPR Technology and Flow Cytometry in Environmental Changes": 1 + "Investigating Human Adaptation to Environmental Changes: A Study Using CRISPR and Fluorescence in situ Hybridization": 1 + "Unraveling Human Adaptation to Environmental Changes: A Focus on CRISPR Technology and Southern Blotting": 1 + "Biological Insights into Human Adaptation: Utilizing CRISPR and Chromatography Techniques in Environmental Change Analysis.": 1 + "Computer Science: Introduction to Coding with Scratch using Variables": 1 + "Computer Science: Introduction to Coding with Scratch and Data Structures": 1 + "Computer Science: Introduction to Game Development with Scratch": 1 + "Computer Science: Enhancing Algorithms using Scratch": 1 + "Computer Science: Scratch and Introduction to Object-Oriented Programming": 1 + "Computer Science: Creating Animations with Scratch": 1 + "Computer Science: Building Interactive Programs with Scratch": 1 + "Computer Science: Scratch and the Basics of Computational Thinking": 1 + "Computer Science: Exploring Artificial Intelligence with Scratch": 1 + "Computer Science: Introduction to Coding with Scratch and Python Integration": 1 + "Biology Basics: Exploring Cellular Structures with Electron Microscopy": 1 + "Unveiling Mysteries: Applying CRISPR in Immunohistochemistry ": 1 + "The Building Blocks of Life: Advanced Study of DNA Sequencing ": 1 + "Biology Basics: Understanding Life Processes through PCR Techniques": 1 + "The Building Blocks of Life: A Deep Dive into Genomic Editing with TALENs ": 1 + "Immunohistochemistry and Life's Mysteries: Utilizing Fluorescence Microscopy ": 1 + "The Building Blocks of Life: Detailing Biological Structures with X-ray Crystallography ": 1 + "Unveiling Mysteries: The Role of Mass Spectrometry in Immunohistochemistry ": 1 + "Biology Basics: Exploring Life through the Lens of Confocal Microscopy ": 1 + "The Building Blocks of Life: A Journey into the Cellular World with Flow Cytometry.": 1 + "Biology: The World of Cells and Microorganisms through Microscopy": 1 + "Biology: Analyzing Cells and Microorganisms with Gel Electrophoresis": 1 + "Biology: Genetic Mapping in the World of Cells and Microorganisms": 1 + "Biology: The World of Cells and Microorganisms Explored through DNA Sequencing": 1 + "Biology: Cellular Respiration in Cells and Microorganisms": 1 + "Biology: The World of Cells and Microorganisms: A Focus on Mitosis": 1 + "Biology: PCR Technology in Studying Cells and Microorganisms": 1 + "Biology: The World of Cells and Microorganisms: Understanding through Bioinformatics": 1 + "Biology: Cell Culturing in the World of Cells and Microorganisms": 1 + "Biology: Exploring Cells and Microorganisms through Flow Cytometry.": 1 + "Language Arts: English Grammar and Composition with Emphasis on Punctuation Tools": 1 + "Language Arts: Enhancing English Grammar and Composition with Digital Writing Platforms ": 1 + "Language Arts: Exploring English Grammar and Composition via Microsoft Word ": 1 + "Language Arts: English Grammar and Composition - A Focus on Proofreading Software ": 1 + "Language Arts: English Grammar and Composition Using Grammarly ": 1 + "Language Arts: English Grammar and Composition - An Introduction to Google Docs ": 1 + "Language Arts: English Grammar and Composition with Text-to-Speech Technology ": 1 + "Language Arts: English Grammar and Composition - Incorporating Sentence Diagramming ": 1 + "Language Arts: English Grammar and Composition in the Context of Blogging Platforms ": 1 + "Language Arts: Utilizing E-books in English Grammar and Composition.": 1 + "Philosophy 101: Utilizing Data Analysis in Evaluating Ethics in Sports": 1 + "Philosophy 101: An Examination of Doping Ethics in Sports through Spectroscopy": 1 + "Philosophy 101: Implementing VR Technology to Understand Ethics in Sports": 1 + "Philosophy 101: The Role of Biometric Technology in Sports Ethics": 1 + "Philosophy 101: GPS Technology's Influence on Ethics in Sports": 1 + "Philosophy 101: Understanding Ethics in Sports through the Lens of Game Theory": 1 + "Philosophy 101: Ethics in Sports - A Deep Dive into Performance Enhancing Drugs": 1 + "Philosophy 101: The Impact of AI Analytics on Sports Ethics": 1 + "Philosophy 101: The Ethical Implications of Wearable Tech in Sports": 1 + "Philosophy 101: Exploring Ethics in Sports: The Case of Genetic Engineering.": 1 + "Analyzing the Role of Calcium in Body Function: Utilizing Scanning Electron Microscopy": 1 + "Using X-ray Crystallography to Investigate the Role of Minerals in Bone Density": 1 + "Chemistry in Everyday Life: A Focus on Magnesium's Role in Body Function through Atomic Force Microscopy": 1 + "Elucidating Iron's Role in Blood Function: A Study with Transmission Electron Microscopy": 1 + "Deciphering Potassium's Role in Neuronal Activity: A Course with Energy-Dispersive X-ray Spectroscopy": 1 + "Probing the Role of Zinc in Immune Function: Understanding through Near-Field Scanning Optical Microscopy": 1 + "Using Nuclear Magnetic Resonance to Explore Sodium's Role in Body Function": 1 + "Chemistry in Everyday Life: Delving into the Role of Phosphorus in Body Function with Confocal Laser Scanning Microscopy": 1 + "Exploring Copper's Role in Body Function: An Examination through Surface Plasmon Resonance": 1 + "Understanding the Role of Chromium in Metabolic Function through Fourier Transform Infrared Spectroscopy": 1 + "Social Studies: Impact of Folk Dance on Community Cohesion: A Comparative Analysis using Ethnographic Research Methods & GIS Mapping Technology": 1 + "Social Studies: Exploring the Influence of Folk Dance on Community Unity: An Ethnographic Study Utilizing Video Ethnography": 1 + "Social Studies: Role of Folk Dance in Community Cohesion: A Study using Ethnographic Research Methods and Nvivo Software": 1 + "Social Studies: Assessing Folk Dance's Contribution to Community Cohesion: An Ethnographic Analysis with Participant Observation": 1 + "Social Studies: Influence of Folk Dance on Community Solidarity: An Ethnographic Research using Grounded Theory Method": 1 + "Social Studies: Impact of Folk Dance on Community Cohesion: An Ethnographic Study Incorporating Cross-Cultural Comparison": 1 + "Social Studies: Folk Dance as a Tool for Community Cohesion: An Ethnographic Study using Reflexivity Concept": 1 + "Social Studies: The Role of Folk Dance in Strengthening Community Bonds: A Study using Ethnographic Research Methods and Social Network Analysis ": 1 + "Social Studies: Unveiling the Impact of Folk Dance on Community Cohesion: An Ethnographic Research using Atlas.ti Qualitative Data Analysis Software": 1 + "Social Studies: Exploring the Influence of Folk Dance on Community Cohesion: A Thematic Analysis using Ethnographic Research Methods": 1 + "Apple Music and the Evolution of Hip Hop in the Digital Age: An Examination of Streaming Analytics": 1 + "The Impact of Auto-Tune on Music Genres Evolution through Apple Music in the Digital Age": 1 + "Apple Music and the Evolution of Pop Music: A Study on the Role of Digital Audio Workstations": 1 + "The Influence of Social Media Promotion on Music Genres' Evolution via Apple Music": 1 + "AI and the Evolution of Music Genres on Apple Music in the Digital Age": 1 + "The Role of SoundCloud in the Evolution of Music Genres: A Comparative Study with Apple Music": 1 + "Blockchain Technology and its Impact on the Evolution of Music Genres on Apple Music": 1 + "Apple Music and the Evolution of Country Music in the Digital Age: The Power of Podcasts": 1 + "The Impact of YouTube on the Evolution of Music Genres: A Comparative Analysis with Apple Music": 1 + "Apple Music and Music Genres Evolution: The Role of Virtual Reality in the Digital Age.": 1 + "Physics Fundamentals: Exploring the Universe's Laws with the Use of a Large Hadron Collider ": 1 + "Quantum Mechanics: Unraveling the Laws of the Universe with the Application of a Particle Accelerator and Feynman Diagrams ": 1 + "Nuclear Physics: Unraveling the Universe's Laws with the Use of a Particle Accelerator and a Cloud Chamber": 1 + "Astrophysics: Unraveling the Universe's Laws with the Use of a Particle Accelerator and a Spectroscope": 1 + "Particle Physics: Unraveling the Universe's Laws using a Cyclotron and Quantum Field Theory": 1 + "Theoretical Physics: Understanding the Universe's Laws with a Particle Accelerator and String Theory": 1 + "Experimental Physics: Unraveling the Universe's Laws with the Use of a Particle Accelerator and Scintillation Detectors ": 1 + "Physics Fundamentals: Unraveling the Universe's Laws with the Use of a Particle Accelerator and Heisenberg's Uncertainty Principle": 1 + "Advanced Physics: Unraveling the Universe's Laws with the Use of a Synchrotron and Quantum Entanglement": 1 + "Cosmology: Unraveling the Universe's Laws with the Use of a Particle Accelerator and Dark Matter Detection Technology": 1 + "Art and Acoustics: Exploring the Impact of Digital Sound Editing on Visual Art ": 1 + "The Influence of Sound Waves: A Deep Dive into the Role of Acoustic Technology in Visual Art ": 1 + "From Paintbrush to Microphone: The Symbiosis of Acoustic Modelling and Visual Art ": 1 + "The Harmony of Sound and Art: An Analysis of Sound Frequency in Contemporary Art ": 1 + "Visual Art and Acoustic Engineering: A Study on the Use of Sound Synthesizers ": 1 + "Echoes on Canvas: The Role of Reverberation Technology in Visual Art ": 1 + "The Art of Noise: Unraveling the Connection Between Acoustic Filters and Visual Art ": 1 + "Soundscapes and Brushstrokes: The Influence of Acoustic Software on Visual Art ": 1 + "Sonic Art: How Acoustic Resonance Shapes Visual Art ": 1 + "The Science of Sound: An Examination of Acoustic Analysis Tools in Visual Art Creation": 1 + "Economics Essentials: Understanding Supply and Demand through Elasticity Analysis": 1 + "Monetarist Theory in Economics Essentials: Exploring Supply and Demand": 1 + "Economics Essentials: Utilizing Regression Analysis in Studying Supply and Demand": 1 + "Economics Essentials: The Concept of Supply and Demand in Game Theory": 1 + "Economics Essentials: The Impact of Blockchain Technology on Supply and Demand": 1 + "Essentials of Economics: Applying Monte Carlo Simulations to Supply and Demand Analysis": 1 + "Economics Essentials: Supply and Demand Forecasting using Machine Learning": 1 + "Economics Essentials: The Concept of Supply and Demand through Comparative Statics": 1 + "Economics Essentials: Analyzing Supply and Demand using Big Data Analytics": 1 + "Economics Essentials: Using Econometrics to Understand the Dynamics of Supply and Demand.": 1 + "Health Education: Exploring EMDR Therapy as a Music-Integrated Virtual Reality Tool for PTSD Treatment": 1 + "Health Education: The Role of Biofeedback in Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: The Application of Neurofeedback in Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: The Use of the Oculus Rift in Music-Integrated Virtual Reality PTSD Treatments": 1 + "Health Education: Implementing AI Algorithms in Music-Integrated Virtual Reality PTSD Therapy": 1 + "Health Education: The Potential of Binaural Beats in Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: The Impact of Haptic Technology in Music-Integrated Virtual Reality PTSD Therapy": 1 + "Health Education: Utilizing the HTC Vive in Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: The Integration of Mindfulness Techniques in Music-Integrated Virtual Reality for PTSD Treatment": 1 + "Health Education: Exploring the Use of Brain-Computer Interfaces in Music-Integrated Virtual Reality PTSD Therapy": 1 + "Music: Exploring the Mathematics of Musical Scales using Python, MIDI Tools, and the Harmonic Series": 1 + "Music: Decoding the Mathematics of Musical Scales using Python, MIDI Tools, and PyDub Audio Processing Library": 1 + "Music: Unraveling the Mathematics of Musical Scales using Python, MIDI Tools, and Fourier Transformations": 1 + "Music: Deciphering the Mathematics of Musical Scales using Python, MIDI Tools, and NumPy Package": 1 + "Music: Understanding the Mathematics of Musical Scales with Python, MIDI Tools, and Musical Set Theory": 1 + "Music: Decoding the Mathematics of Musical Scales using Python, MIDI Tools, and the Circle of Fifths": 1 + "Music: Analyzing the Mathematics of Musical Scales using Python, MIDI Tools, and the Pentatonic Scale": 1 + "Music: Delving into the Mathematics of Musical Scales using Python, MIDI Tools, and Frequency Modulation": 1 + "Music: Interpreting the Mathematics of Musical Scales using Python, MIDI Tools, and the Pyo Synthesis Toolkit": 1 + "Music: Unraveling the Mathematics of Musical Scales using Python, MIDI Tools, and the Just Intonation Tuning System": 1 + "History: The Age of Exploration: Unearthing the Power of Gunpowder and the Role of the Compass": 1 + "The Influence of Astrolabe in the Age of Exploration: A Historical Study of Gunpowder's Power": 1 + "Unraveling History: The Power of Gunpowder and the Significance of Cartography in the Age of Exploration ": 1 + "History: The Age of Exploration and the Emergence of Sextants: The Silent Power of Gunpowder": 1 + "The Age of Exploration: The Power of Gunpowder and the Impact of the Lateen Sail": 1 + "History: Celestial Navigation in the Age of Exploration: Gunpowder's Unseen Power": 1 + "The Age of Exploration: Gunpowder's Power and the Evolution of Caravel Ships": 1 + "History: The Age of Exploration - Gunpowder's Power and the Revolutionary Quadrant": 1 + "The Power of Gunpowder in the Age of Exploration: The Unsung Role of the Cross-Staff": 1 + "History: The Age of Exploration - How Gunpowder and the Astrolabe Shaped the World.": 1 + "AI and Blockchain: The Impact of Artificial Intelligence and Blockchain Technology on Global Economy": 1 + "AI and Machine Learning: Analysing Global Economic Impacts": 1 + "Deep Learning's Role in AI: Impact on the Global Economy": 1 + "AI and Neural Networks: Transforming the Global Economy": 1 + "The Impact of Artificial Intelligence and Big Data on Global Economy": 1 + "AI and Natural Language Processing: Influencing the Global Economy": 1 + "AI and Robotics: Assessing Economic Impacts Worldwide": 1 + "AI and Predictive Analytics: Potential Effects on the Global Economy": 1 + "AI and Cybersecurity: Implications for the Global Economy": 1 + "AI and Autonomous Systems: Disruptive Potential in the Global Economy": 1 + "Basic Biology: Delving into Plant Life using Electron Microscopy and Cryopreservation Techniques": 1 + "Advanced Plant Biology: A Detailed Study of Photosynthesis through Fluorescence Microscopy and Cryopreservation ": 1 + "In-depth Plant Study: Exploring Plant Life with Atomic Force Microscopy and Cryopreservation Techniques": 1 + "Detailed Plant Biology: Understanding Cell Structure through Confocal Microscopy and Cryopreservation": 1 + "Plant Life Exploration: A Comprehensive Study using Scanning Electron Microscopy and Cryopreservation Techniques": 1 + "Advanced Biology: Understanding Plant Life through Microscopy, Cryopreservation, and DNA Sequencing Techniques": 1 + "Basic Biology: Plant Cell Study Using Transmission Electron Microscopy and Cryopreservation Methods": 1 + "Plant Life Investigation: A Detailed Study using X-ray Microscopy and Cryopreservation Techniques": 1 + "In-depth Biology: Exploring Plant Life through Microscopy, Cryopreservation, and Genetic Engineering Techniques": 1 + "Exploring Plant Life: A Study of Plant Cell Walls using Nanoscale Infrared Spectroscopy and Cryopreservation Techniques.": 1 + "Social Studies: Ancient Egyptian Civilizations and Their Irrigation Techniques": 1 + "Social Studies: The Role of Metallurgy in Ancient Mesopotamian Societies": 1 + "Social Studies: Ancient Greek Civilizations: The Birth of Democracy": 1 + "Social Studies: Ancient Roman Architecture and Its Influence on Their Environment": 1 + "Social Studies: The Use of Astronomy in Ancient Mayan Civilization": 1 + "Social Studies: Ancient Chinese Civilizations and The Invention of Paper": 1 + "Social Studies: The Indus Valley Civilization and Their Drainage Systems": 1 + "Social Studies: Ancient African Civilizations and Their Iron Smelting Technologies": 1 + "Social Studies: Ancient Incan Civilization: The Concept of Terraced Farming": 1 + "Social Studies: Ancient Persian Civilizations and Their Road Networking Systems.": 1 + "Advanced Exploration of Brain Functionality: Using 3D Neuroimaging Techniques in Transcranial Magnetic Stimulation": 1 + "Deep Dive into Brain Functionality: Utilizing MRI Scanners in Neuroimaging Techniques for Transcranial Magnetic Stimulation": 1 + "A Comprehensive Study on Brain Functionality: Assessing Neural Pathways with Transcranial Magnetic Stimulation and fMRI": 1 + "Neuroimaging Techniques in Neuroscience Foundations: An In-depth Exploration of Brain Functionality Using PET Scans and Transcranial Magnetic Stimulation": 1 + "Exploring Brain Functionality: Efficacy of Transcranial Magnetic Stimulation and Diffusion Tensor Imaging ": 1 + "Detailed Analysis of Brain Functionality: Incorporating CT Scan Technology in Transcranial Magnetic Stimulation": 1 + "Neuroscience Foundations: Examining Brain Functionality with Spectroscopy and Transcranial Magnetic Stimulation": 1 + "A Close Look at Brain Functionality: Implementing Electroencephalography in Transcranial Magnetic Stimulation": 1 + "Investigating Brain Functionality: The Role of Near-Infrared Spectroscopy in Transcranial Magnetic Stimulation": 1 + "Brain Functionality Exploration: Combining Transcranial Magnetic Stimulation with MEG for Neuroimaging Techniques in Neuroscience Foundations.": 1 + "Philosophy: The Power of Sound in Thought - An Exploration of Binaural Beats": 1 + "Philosophy: The Influence of Sound in Thought - Understanding the Role of Isochronic Tones": 1 + "Philosophy: The Power of Sound in Cognitive Processes - A Deep Dive into Neurofeedback": 1 + "Philosophy: Unraveling Thought Processes - The Impact of White Noise": 1 + "Philosophy: Exploring Thought through Sound - The Concept of Pink Noise": 1 + "Philosophy: The Implications of Sound on Thought - Exploring the Solfeggio Frequencies": 1 + "Philosophy: The Power of Sound in Thought - The Science behind Sound Bath Therapy": 1 + "Philosophy: The Role of Sound in Thought Processing - Tuning into Delta Waves": 1 + "Philosophy: The Power of Sound in Thought - Unveiling the Secrets of Theta Waves": 1 + "Philosophy: The Impact of Sound on Thought - The Technological Advancements in Sound Therapy.": 1 + "The Science of Computing: A Detailed Study of Optical Fibre Technology and Laser Diodes": 1 + "Understanding Optical Fibre Technology: A Deep Dive into Wavelength-Division Multiplexing in Computing Science": 1 + "The Science of Computing: Exploring the Role of Optical Amplifiers in Optical Fibre Technology": 1 + "An Insight into Optical Fibre Technology: The Impact of Single-Mode Fibres in Computing Science": 1 + "The Science of Computing: Exploring the Use of Fusion Splicers in Optical Fibre Technology": 1 + "Optical Fibre Technology: A Comprehensive Study on Fibre Optic Cables in Computing Science": 1 + "The Role of Optical Time-Domain Reflectometers in Optical Fibre Technology and Computing Science": 1 + "The Science of Computing: Unveiling the Power of Optical Switches in Fibre Technology": 1 + "Optical Fibre Technology in Computing Science: The Importance of Optical Receivers": 1 + "The Science of Computing: An Insight into Optical Fibre Technology and its Application of Optical Splitters.": 1 + "Advanced Course in Computer Science: Creating AI Robots Using Scratch, Arduino, 3D Printing, Python Programming, and TensorFlow": 1 + "Advanced Course in Computer Science: Building Drones Using Scratch, Arduino, 3D Printing, Python Programming, and Raspberry Pi": 1 + "Advanced Course in Computer Science: Developing Automated Vehicles Using Scratch, Arduino, 3D Printing, Python Programming, and LIDAR Technology": 1 + "Advanced Course in Computer Science: Crafting Industrial Robots Using Scratch, Arduino, 3D Printing, Python Programming, and PLCs": 1 + "Advanced Course in Computer Science: Designing Home Automation Robots Using Scratch, Arduino, 3D Printing, Python Programming, and IoT": 1 + "Advanced Course in Computer Science: Fabricating Medical Robots Using Scratch, Arduino, 3D Printing, Python Programming, and Biomedical Engineering Principles": 1 + "Advanced Course in Computer Science: Generating Agriculture Robots Using Scratch, Arduino, 3D Printing, Python Programming, and GPS Technology": 1 + "Advanced Course in Computer Science: Producing Rescue Robots Using Scratch, Arduino, 3D Printing, Python Programming, and Infrared Sensors": 1 + "Advanced Course in Computer Science: Constructing Service Robots Using Scratch, Arduino, 3D Printing, Python Programming, and Machine Vision": 1 + "Advanced Course in Computer Science: Developing Humanoid Robots Using Scratch, Arduino, 3D Printing, Python Programming, and Artificial Muscle Technology": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and JavaScript Integration": 1 + "Introductory Computer Science: Building Websites with Python, Flask, Bootstrap and SQL Databases": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and Django Framework": 1 + "Introductory Computer Science: Web Development using Python, Flask, Bootstrap and JQuery": 1 + "Introductory Computer Science: Front-End Development with Python, Flask, Bootstrap and ReactJS": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and CSS Styling": 1 + "Introductory Computer Science: Responsive Web Design with Python, Flask, Bootstrap and HTML5": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and AJAX Techniques": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and User Authentication": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap and RESTful APIs.": 1 + "Music: Decoding the Mathematics of Musical Scales with Python, MIDI Tools, Fourier Transform and Musical Set Theory": 1 + "Music: Exploring Musical Scales through Python, MIDI Tools, NumPy Library, and Set Theory": 1 + "Music: Understanding the Mathematics of Musical Scales with Python, MIDI Tools, and PyDub Analysis in Musical Set Theory": 1 + "Music: Dissecting Musical Scales with Python, MIDI Tools, and the Concept of Frequency Spectrums in Musical Set Theory": 1 + "Music: Demystifying Musical Scales: An In-depth Study with Python, MIDI Tools, Harmonic Analysis, and Set Theory": 1 + "Music: Mathematical Insights into Musical Scales through Python, MIDI Tools, Waveform Analysis, and Set Theory": 1 + "Music: A Deep Dive into the Mathematics of Musical Scales using Python, MIDI Tools, Fast Fourier Transform (FFT), and Musical Set Theory": 1 + "Music: Analyzing Musical Scales with Python, MIDI Tools, the Circle of Fifths, and Set Theory": 1 + "Music: Unveiling the Mathematics of Musical Scales with Python, MIDI Tools, Digital Signal Processing (DSP), and Set Theory": 1 + "Music: A Comprehensive Study of Musical Scales through Python, MIDI Tools, Octave Analysis, and Musical Set Theory": 1 + "Art in Science: Exploring Genetic Structures through Pencil Drawing using Microscopy": 1 + "Art in Science: Decoding DNA Patterns through Pencil Drawing and PCR Techniques": 1 + "Art in Science: Visualizing Genetic Structures using Pencil Drawing and Gel Electrophoresis": 1 + "Art in Science: Depicting Chromosomes through Pencil Drawing and Karyotyping": 1 + "Art in Science: Genetic Mapping through Pencil Drawing and Next-Generation Sequencing": 1 + "Art in Science: Illustrating Genetic Variations through Pencil Drawing and Genomic Data Visualization": 1 + "Art in Science: Exploring Genomic Structures through Pencil Drawing and Bioinformatics": 1 + "Art in Science: Genetic Structures and Pencil Drawing: An Exploration through CRISPR Technology": 1 + "Art in Science: Visualizing DNA Replication through Pencil Drawing and Microscopy": 1 + "Art in Science: Exploring Genetic Mutations through Pencil Drawing and Cloning Technology": 1 + "Social Studies: Exploring the Cultural Significance of Traditional Sports through Ethnography": 1 + "Social Studies: The Role of Anthropological Analysis in Understanding Traditional Sports' Cultural Significance ": 1 + "Social Studies: Evaluating the Cultural Significance of Traditional Sports using Historical Research Techniques": 1 + "Social Studies: The Impact of Digitization on the Cultural Significance of Traditional Sports": 1 + "Social Studies: Applying Sociological Theories to the Cultural Significance of Traditional Sports": 1 + "Social Studies: Uncovering the Cultural Significance of Traditional Sports through Archival Research": 1 + "Social Studies: The Cultural Significance of Traditional Sports in the Lens of Comparative Analysis": 1 + "Social Studies: The Interpretation of Cultural Significance in Traditional Sports through Qualitative Research": 1 + "Social Studies: The Cultural Significance of Traditional Sports and the Role of Statistical Analysis": 1 + "Social Studies: Navigating the Cultural Significance of Traditional Sports using Geographic Information Systems.": 1 + "Environmental Research Statistics: Multivariate Analysis using Python and Pandas Library": 1 + "Advanced Environmental Research: Multivariate Analysis with Python and Jupyter Notebooks": 1 + "Statistical Analysis in Environmental Research: Python and Numpy for Multivariate Modeling": 1 + "Environmental Research Statistics: Multivariate Analysis using Python and Matplotlib for Data Visualization": 1 + "Exploring Environmental Data: Multivariate Analysis with Python and Seaborn": 1 + "Quantitative Environmental Research: Multivariate Analysis with Python and Scikit-learn": 1 + "Environmental Research Statistics: A Deep Dive into Multivariate Analysis using Python and SciPy": 1 + "Practical Environmental Statistics: Multivariate Analysis using Python and Statsmodels": 1 + "Environmental Research Statistics: Multivariate Analysis using Python and Conda for Package Management": 1 + "Python for Environmental Scientists: Multivariate Analysis using Jupyter and IPython.": 1 + "Algorithmic Thinking: Using Java and Eclipse IDE for Mathematical Problem Solving": 1 + "Advanced Algorithmic Thinking: Incorporating Data Structures in Java for Complex Math Challenges": 1 + "Algorithmic Thinking in Action: Utilizing Java and JUnit for Math and Problem-Solving Applications ": 1 + "Mastering Algorithmic Thinking: A Deep Dive into Java and NetBeans for Mathematical Solutions": 1 + "Algorithmic Thinking Unraveled: Applying Java and OOP Concepts for Math Problem Solving": 1 + "Algorithmic Thinking: Harnessing the Power of Java and JDBC for Math and Problem Solving": 1 + "Algorithmic Thinking Explored: Using Java and Git for Effective Math Problem Solving": 1 + "Algorithmic Thinking: Leveraging Java and Maven for Efficient Math and Problem Solving": 1 + "Algorithmic Thinking Decoded: Utilizing Java and Swing for Interactive Math Problem Solving": 1 + "Algorithmic Thinking: Advancing Math and Problem Solving Skills with Java and JSON.": 1 + "Exploring the Role of Logic Pro in Digital Audio Workstations: The Power of ES2 Synthesizer": 1 + "The Role of Logic Pro in Digital Audio Workstations: Harnessing the Power of Alchemy Synth": 1 + "Understanding Ultrabeat Drum Synthesizer in Logic Pro: A Deep Dive into Digital Audio Workstations": 1 + "The Role of Logic Pro in Digital Audio Workstations: Mastering the EXS24 Sampler": 1 + "The Power of Flex Time in Logic Pro: A Detailed Look at Digital Audio Workstations": 1 + "Logic Pro and Digital Audio Workstations: Unleashing the Power of Retro Synth": 1 + "The Role of Logic Pro in Digital Audio Workstations: An Intensive Study of Space Designer Reverb": 1 + "Logic Pro in Digital Audio Workstations: Exploring the Potential of Sculpture Physical Modelling Synth": 1 + "Harnessing the Power of MainStage in Logic Pro: A Comprehensive Study on Digital Audio Workstations": 1 + "The Role of Logic Pro in Digital Audio Workstations: A Closer Look at Auto-Tune Technology": 1 + "Language Arts: The Rhetoric of Economic Policies and Unemployment - A Detailed Study Using Quantitative Analysis": 1 + "Economic Policies and Unemployment: A Linguistic Approach Through the Lens of Blockchain Technology": 1 + "Language Arts: Exploring the Rhetoric of Economic Policies and Unemployment with Machine Learning": 1 + "Unraveling the Rhetoric of Economic Policies and Unemployment: A Study Using Econometrics": 1 + "The Rhetoric of Economic Policies and Unemployment: A Detailed Study Using Big Data Analytics": 1 + "Language Arts: An In-depth Analysis of Economic Policies and Unemployment Rhetoric Using AI Technology": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling": 1 + "Language Arts: The Rhetoric of Economic Policies and Unemployment - Exploring Solutions Using Statistical Analysis": 1 + "Economic Policies and Unemployment: A Language Arts Perspective Through the Use of Text Mining": 1 + "Language Arts and the Rhetoric of Economic Policies: Investigating Unemployment Using Social Network Analysis.": 1 + "Biology Basics: The Human Body and Sports Performance through Biomechanics Analysis": 1 + "Biology Basics: The Human Body and Sports Performance: A Look at Metabolic Testing": 1 + "Biology Basics: The Impact of VO2 Max on Human Body and Sports Performance": 1 + "Biology Basics: The Human Body and Sports Performance: Understanding Muscular Dystrophy": 1 + "Biology Basics: The Human Body, Sports Performance, and the Role of Doppler Imaging": 1 + "Biology Basics: The Human Body and Sports Performance: A Study on Heart Rate Monitors": 1 + "Biology Basics: The Human Body and Sports Performance: The Importance of Lactic Acid Threshold": 1 + "Biology Basics: The Human Body and Sports Performance: An Exploration of Wearable Technology": 1 + "Biology Basics: The Human Body and Sports Performance: The Role of DNA Sequencing": 1 + "Biology Basics: The Human Body and Sports Performance: Insights from Thermal Imaging Technology": 1 + "Chemistry: The Science of Art Materials - Analyzing Metal Alloys in Sculpture Using X-Ray Fluorescence": 1 + "Spectroscopic Techniques in Art: Identifying Metal Alloys in Sculpture Using Neutron Activation Analysis": 1 + "Advanced Chemistry: The Use of Electron Microscopy in Analyzing Metal Alloys in Sculpture": 1 + "Chemistry and Art: Analyzing Metal Alloys in Sculpture Through Mass Spectrometry": 1 + "The Science of Art Materials: A Focus on Metal Alloys in Sculpture Using Energy Dispersive X-Ray Analysis": 1 + "Analytical Chemistry in Art: Understanding Metal Alloys in Sculpture Through Atomic Absorption Spectroscopy": 1 + "Chemistry: The Science of Art Materials - Metal Alloys in Sculpture Analyzed by Fourier-Transform Infrared Spectroscopy": 1 + "The Art of Science: Using Raman Spectroscopy for Metal Alloy Analysis in Sculpture": 1 + "Chemistry and Sculpture: Analyzing Metal Alloys in Art using X-Ray Diffraction": 1 + "The Chemistry of Art: Identifying Metal Alloys in Sculpture Through Nuclear Magnetic Resonance Spectroscopy": 1 + "Chemistry 101: Introduction to Chemical Reactions with the Periodic Table": 1 + "Chemistry 101: Embracing Stoichiometry in Chemical Reactions": 1 + "Chemistry 101: Exploring Chemical Reactions through Molecular Modelling": 1 + "Chemistry 101: Understanding Chemical Reactions via Spectroscopy": 1 + "Chemistry 101: Chemical Reactions and their Energy Changes - Thermodynamics": 1 + "Chemistry 101: Navigating Chemical Reactions with Quantum Mechanics": 1 + "Chemistry 101: Introduction to Chemical Reactions - Focus on Redox Reactions": 1 + "Chemistry 101: Chemical Reactions and the Role of Catalysts": 1 + "Chemistry 101: Chemical Reactions - A Deep Dive into Acid-Base Reactions": 1 + "Chemistry 101: Unveiling Chemical Reactions through Computer Simulations.": 1 + "Computer Science 101: Mastering Scratch through Python Programming": 1 + "Computer Science 101: Scratch Coding for Building Interactive Stories": 1 + "Computer Science 101: Exploring Scratch and HTML for Web Development": 1 + "Computer Science 101: Learning Coding with Scratch and JavaScript": 1 + "Computer Science 101: An Introduction to Scratch and CSS Stylesheets": 1 + "Computer Science 101: Scratch and SQL: An Intro to Databases": 1 + "Computer Science 101: Scratch Coding and Basics of Git Version Control": 1 + "Computer Science 101: Understanding Scratch and Ruby on Rails Framework": 1 + "Computer Science 101: Introduction to Scratch and Machine Learning Concepts": 1 + "Computer Science 101: Scratch Coding with a Touch of Artificial Intelligence": 1 + "Neuroscience and Spectroscopy: Understanding the Effects of Pesticides on the Brain and Exploring Therapeutic Solutions": 1 + "Utilizing Neuroimaging to Illuminate the Impact of Pesticides on the Brain: A Study of Ten Possible Remedies": 1 + "Effects of Pesticides on Neural Plasticity: An In-depth Analysis with EEG and Potential Solutions": 1 + "Neurological Impacts of Pesticides: A PET Scan Study and Examination of Ten Detoxifying Solutions": 1 + "Pesticides and Their Effects on Brain Health: An MRI Analysis and Ten Possible Neuroprotective Strategies": 1 + "Neurotoxicology of Pesticides: A Deep Dive into Neurotransmitter Interactions and Ten Potential Interventions": 1 + "Using fMRI to Understand Pesticides' Impact on the Brain: A Comprehensive Study with Ten Potential Antidotes": 1 + "Pesticides and Neurogenesis: A Study with Diffusion Tensor Imaging and Ten Possible Neurorestorative Approaches": 1 + "Neurocognitive Effects of Pesticides: A Spectroscopy Study and Ten Potential Cognitive Rehabilitation Techniques": 1 + "Exploring Pesticides' Influence on Neurodegeneration: A Positron Emission Tomography Approach and Ten Possible Neuroregenerative Solutions": 1 + "Junior Biology: Exploring Plant and Animal Genetics through CRISPR-Cas9 Technology": 1 + "Junior Biology: A Deep Dive into Flora and Fauna Genetics using Polymerase Chain Reaction": 1 + "Junior Biology: Decoding the World of Plants and Animals through DNA Sequencing": 1 + "Junior Biology: Unveiling the Genetics of Flora and Fauna using Gel Electrophoresis": 1 + "Junior Biology: An In-depth Study of Plant and Animal Genetics using Microarrays": 1 + "Junior Biology: Unraveling the Mysteries of Genetics in Plants and Animals through Flow Cytometry": 1 + "Junior Biology: Exploring the Genetic World of Plants and Animals through Next-Generation Sequencing": 1 + "Junior Biology: A Journey into the Genetics of Plants and Animals using Southern Blotting": 1 + "Junior Biology: Probing the Genetic Secrets of Plants and Animals through Gene Knockout Techniques": 1 + "Junior Biology: Understanding the Genetic Landscape of Flora and Fauna through In Situ Hybridization.": 1 + "English Language Arts: Analyzing Literature in the Digital Age with Google Scholar": 1 + "English Language Arts: Utilizing Text Mining Tools for Literature Analysis": 1 + "English Language Arts: Applying Machine Learning in Literature Analysis": 1 + "English Language Arts: Analyzing Literature in the Digital Age using E-Readers": 1 + "English Language Arts: Incorporating Big Data Analytics into Literature Studies": 1 + "English Language Arts: Analyzing Literature with Sentiment Analysis Tools": 1 + "English Language Arts: Using Digital Concordance Tools for Literature Analysis": 1 + "English Language Arts: Analyzing Literature in the Digital Age with the Use of e-Libraries": 1 + "English Language Arts: Utilizing Python for Literature Analysis in the Digital Era": 1 + "English Language Arts: Harnessing AI for Analyzing Literature in the Digital Age": 1 + "Mastering Inkscape's Blend Tool: A Detailed Look into Gradients and Tweak Tool Usage in Digital Art": 1 + "Harnessing the Power of Inkscape's Node Tool in The Science of Gradients: A Comprehensive Digital Art Course ": 1 + "Utilizing the Gradient Tool and Tweak Tool in Inkscape for Advanced Digital Art Techniques": 1 + "The Science of Gradients in Inkscape: Exploiting the Power of the Tweak and Spray Tools in Digital Art": 1 + "Focusing on Fill and Stroke in Inkscape: Understanding Gradients and the Tweak Tool in Digital Artistry": 1 + "A Comprehensive Study of Gradients in Inkscape: The Tweak and Text Tools in Digital Art Creation": 1 + "In-depth Analysis of Gradients in Inkscape: Incorporating the Tweak and Pattern Along Path Tools in Digital Art": 1 + "Exploring Gradients and the Tweak Tool in Inkscape: The Role of the Clone Tool in Advanced Digital Art Techniques": 1 + "Inkscape for Artists: Utilizing Gradients, the Tweak Tool, and the 3D Box Tool in Comprehensive Digital Art": 1 + "Advanced Inkscape: Manipulating Gradients with the Tweak Tool and Lattice Deformation in Digital Art.": 1 + "Mathematics: The Application of Pythagorean Theorem in Trigonometry for International Building Designs": 1 + "Mathematics: The Use of Trigonometry and CAD Software in International Building Designs": 1 + "Mathematics: The Role of Sine, Cosine, and Tangent in Trigonometry for International Building Designs": 1 + "Mathematics: Utilizing Trigonometry and 3D Modeling in International Building Designs": 1 + "Mathematics: The Integration of Trigonometry and BIM Technology in International Building Designs": 1 + "Mathematics: The Influence of Trigonometry and Geometric Algorithms in International Building Designs": 1 + "Mathematics: The Application of Trigonometric Ratios and AutoCAD in International Building Designs": 1 + "Mathematics: The Impact of Trigonometry and GIS Technology on International Building Designs": 1 + "Mathematics: The Use of Trigonometry and Parametric Design in International Building Designs": 1 + "Mathematics: The Implementation of Trigonometry and Digital Fabrication in International Building Designs": 1 + "Math Magic: Solving Linear Equations with Abacus and Calculators": 1 + "Math Magic: Problem Solving with Abacus and Geometry Concepts": 1 + "Math Magic: Maximizing the use of Abacus for Fractions": 1 + "Math Magic: Understanding Algebra through Abacus": 1 + "Math Magic: Problem Solving with Abacus and Python Programming": 1 + "Math Magic: Abacus and Excel for Efficient Problem Solving": 1 + "Math Magic: Harnessing the Power of Abacus and Probability": 1 + "Math Magic: Abacus and Statistics for Effective Problem Solving": 1 + "Math Magic: Problem Solving with Abacus and Trigonometry": 1 + "Math Magic: Mastering Calculus with the use of Abacus.": 1 + "Science of Cooking: Mastering Sous Vide with Immersion Circulators": 1 + "Thermodynamics in the Kitchen: Understanding Sous Vide and Food Chemistry": 1 + "The Art of Precision Cooking: A Detailed Study of Sous Vide and Vacuum Sealers": 1 + "The Science Behind Sous Vide: An In-Depth Exploration of Temperature Control and Food Chemistry": 1 + "Sous Vide and Food Chemistry: Exploring the Role of Water Baths in Cooking": 1 + "Unraveling Sous Vide: The Science of Cooking with Thermal Immersion Circulators": 1 + "The Physics of Flavor: Exploring Sous Vide Cooking and Maillard Reaction": 1 + "Sous Vide Mastery: Understanding Food Chemistry with Precision Cookers": 1 + "Culinary Science: The Impact of Sous Vide and Vacuum Packaging on Food Chemistry": 1 + "Science of Sous Vide: Exploring the Role of Time and Temperature in Cooking.": 1 + "Mathematics: Exploring the Geometry of Architecture through AutoCAD": 1 + "Mathematics: The Role of Pythagorean Theorem in Architectural Geometry": 1 + "Mathematics: Understanding Architectural Geometry with 3D Modeling Software": 1 + "Mathematics: The Application of Geometric Transformations in Architecture": 1 + "Mathematics: The Geometry of Architecture and its Visualization in SketchUp": 1 + "Mathematics: The Impact of Euclidean Geometry on Architecture": 1 + "Mathematics: Architectural Geometry through the Prism of Topology": 1 + "Mathematics: Proportional Relationships in the Geometry of Architecture": 1 + "Mathematics: Architectural Geometry and Spatial Visualization with Virtual Reality": 1 + "Mathematics: The Intersection of Fractal Geometry and Architecture": 1 + "Elementary Education 305: Utilizing Oculus Rift in VR Technology for Cooperative Games": 1 + "Elementary Education 305: Incorporating HTC Vive in VR-based Cooperative Games": 1 + "Elementary Education 305: Empowering Learning through PSVR in Cooperative Games ": 1 + "Elementary Education 305: Applying Google Cardboard in VR for Cooperative Games": 1 + "Elementary Education 305: Leveraging Unity Engine for VR in Cooperative Games": 1 + "Elementary Education 305: Exploring The Use of Unreal Engine in VR for Cooperative Games": 1 + "Elementary Education 305: Integration of ARToolKit in VR Technology for Cooperative Games": 1 + "Elementary Education 305: Implementing VR Interaction Techniques in Cooperative Games": 1 + "Elementary Education 305: Practical Use of Head-Mounted Displays in VR for Cooperative Games": 1 + "Elementary Education 305: Advancing Education with Microsoft HoloLens in VR Cooperative Games": 1 + "Elementary Education 305: Enhancing Learning through Leap Motion Controller in VR Cooperative Games": 1 + "Language Arts: Exploring Environmental Issues through Blogging": 1 + "Language Arts: Analyzing Climate Change in Literature using Machine Learning": 1 + "Language Arts: Reading and Writing about Renewable Energy using Digital Media ": 1 + "Language Arts: E-learning about Environmental Conservation and Biodiversity ": 1 + "Language Arts: Understanding Environmental Policy through Podcasting": 1 + "Language Arts: Reading and Writing about Sustainable Agriculture using Interactive Whiteboards": 1 + "Language Arts: Studying Ecological Footprint through Animation and Storyboarding ": 1 + "Language Arts: Exploring Deforestation through Virtual Reality ": 1 + "Language Arts: Reading and Writing about Water Pollution using Infographics": 1 + "Language Arts: Analyzing Environmental Ethics using Video Conferencing.": 1 + "Mastering Geometry with Protractors: Exploring the Artistic Side of Shapes and Angles": 1 + "Integrating AutoCAD in Mastering Geometry: The Artistic Side of Shapes and Angles": 1 + "Mastering Pythagorean Theorem in Geometry: The Artistic Side of Shapes and Angles": 1 + "Geometry Mastery with Compass: Unveiling the Artistic Side of Shapes and Angles": 1 + "Mastering Geometry: The Artistic Side of Shapes and Angles using Geogebra": 1 + "Understanding Trigonometry in Mastering Geometry: The Artistic Side of Shapes and Angles": 1 + "Mastering Geometry with Vector Analysis: The Artistic Side of Shapes and Angles": 1 + "Mastering Geometry: The Artistic Side of Shapes and Angles through the Lens of SolidWorks": 1 + "Exploring the Artistic Side of Shapes and Angles: Mastering Geometry with Coordinate Systems": 1 + "Mastering Geometry Using Euclidean Spaces: The Artistic Side of Shapes and Angles.": 1 + "Decoding Acoustics: Understanding the Science of Sound through Audio Equalization using Pro Tools": 1 + "The Art of Acoustics: An Introduction to Audio Equalization with Real-Time Analyzer": 1 + "Acoustics Decoded: Harnessing the Power of Sound using Equalization and Adobe Audition": 1 + "The Science of Sound: A Study in Acoustics and Audio Equalization with Logic Pro X": 1 + "Decoding Acoustics: Exploring Sound Science through Audio Equalization and FL Studio": 1 + "Acoustics Made Easy: Introduction to Sound Science using EQ and Ableton Live": 1 + "The World of Acoustics: An Experiential Guide to the Science of Sound using Audio Equalization and Cubase": 1 + "Acoustic Wonders: A Journey into the Science of Sound using Audio Equalization and GarageBand": 1 + "Unraveling Acoustics: Breaking Down the Science of Sound using EQ and Reaper": 1 + "Acoustics Unveiled: A Comprehensive Study of Sound Science through Audio Equalization using Pro Tools.": 1 + "Art Basics: Mastering Watercolor Techniques with Brush Strokes": 1 + "Art Basics: Exploring Watercolor Techniques using Wet-on-Wet Method": 1 + "Art Basics: Mastering Watercolor Techniques with Palette Knives": 1 + "Art Basics: The Art of Layering in Watercolor Techniques ": 1 + "Art Basics: Exploring Watercolor Techniques using Dry Brush Technique": 1 + "Art Basics: Mastering Watercolor Techniques with Graded Washes": 1 + "Art Basics: Exploring Watercolor Techniques using the Glazing Method": 1 + "Art Basics: Mastering Watercolor Techniques with Salt Texturing": 1 + "Art Basics: Exploring Watercolor Techniques using Sponging Method": 1 + "Art Basics: Mastering Watercolor Techniques with Color Mixing": 1 + "Social Studies: The Evolution of Language: A Deep Dive into Cryptography and the Enigma Machine": 1 + "Decoding the Past: The Role of Caesar's Cipher in the Evolution of Language": 1 + "Social Studies: Morse Code and Cryptography: Shaping Language Evolution": 1 + "The Evolution of Language: The Impact of Cryptography and Binary Code": 1 + "Cryptographic Chronicles: The Influence of Telegraph Technology on Language Evolution": 1 + "Social Studies: The Evolution of Language: Cryptography and the Internet Protocol Suite": 1 + "Coded Messages: The Evolution of Language through Cryptography and the Rosetta Stone": 1 + "Language Evolution: The Role of Cryptography and Public Key Cryptosystem": 1 + "Social Studies: The Language Evolution: A Study of Cryptography and the Braille System ": 1 + "Pioneering Cryptography: The Influence of the Navajo Code Talkers on Language Evolution": 1 + "Social Studies: The Impact of Blockchain Technology on E-commerce and its Effects on Global Societies and Cultures": 1 + "Social Studies: Exploring the Influence of AI-driven E-commerce on International Societies and Cultures": 1 + "Social Studies: The Role of Mobile Payment Systems in E-commerce and their Impact on Global Cultures": 1 + "Social Studies: Understanding the Influence of Cybersecurity in E-commerce on Worldwide Societies and Cultures": 1 + "Social Studies: The Effect of Internet of Things (IoT) on E-commerce and its Global Sociocultural Implications": 1 + "Social Studies: Influence of E-commerce using Augmented Reality on Global Societies and Cultures": 1 + "Social Studies: The Impact of Big Data Analytics in E-commerce on International Societies and Cultures": 1 + "Social Studies: The Role of Cloud Computing in E-commerce and its Influence on Global Cultures": 1 + "Social Studies: Understanding the Influence of Social Media Marketing in E-commerce on Worldwide Societies": 1 + "Social Studies: The Effect of E-commerce User Experience Design on Global Societies and Cultures.": 1 + "Chemistry Wonders: Exploring Atomic Structures with Lab Experiments using Microscopes": 1 + "Spectroscopy in Action: Introduction to Elements and Compounds through Laboratory Experiments": 1 + "Chemistry Wonders: Introduction to Elements and Compounds using Lab Experiments and Gas Chromatography": 1 + "Chemistry Wonders: Introduction to Elements and Compounds using Lab Experiments and Mass Spectrometry": 1 + "Introduction to Elements and Compounds: A Practical Approach Using Lab Experiments and Electron Microscopes": 1 + "Chemistry Wonders: Delving into Molecular Structures with Lab Experiments and X-ray Crystallography": 1 + "Chemistry Wonders: Introduction to Elements and Compounds using Lab Experiments and Nuclear Magnetic Resonance": 1 + "Chemistry Wonders: Understanding Ionic and Covalent Bonds through Lab Experiments and Electrophoresis": 1 + "Chemistry Wonders: Introduction to Elements and Compounds using Lab Experiments and Infrared Spectroscopy": 1 + "Chemistry Wonders: Exploring Chemical Reactions with Lab Experiments using Titration Techniques": 1 + "Physical Education: Utilizing Suunto Heart Rate Monitors, GPS Devices and Polar Activity Trackers for Detailed Analysis of Movement Patterns ": 1 + "Physical Education: Incorporating Suunto Heart Rate Monitors, GPS Devices, and Fitbit Tracker to Analyze Individual Exercise Patterns ": 1 + "Physical Education: Leveraging Suunto Heart Rate Monitors, GPS Devices, and Garmin Running Dynamics Pod in Analyzing Athlete's Movement Patterns ": 1 + "Physical Education: Using Suunto Heart Rate Monitors, GPS Devices, and the Concept of Anaerobic Threshold in Movement Pattern Analysis ": 1 + "Physical Education: Incorporating Suunto Heart Rate Monitors, GPS Devices, and VO2 Max Tests in Evaluating Student's Movement Patterns ": 1 + "Physical Education: Combining Suunto Heart Rate Monitors, GPS Devices, and the Science of Biomechanics for Analyzing Movement Patterns ": 1 + "Physical Education: Integrating Suunto Heart Rate Monitors, GPS Devices, and Myzone Effort Points in Understanding Exercise Efficiency ": 1 + "Physical Education: Applying Suunto Heart Rate Monitors, GPS Devices, and Body Battery Metrics in Assessing Physical Performance ": 1 + "Physical Education: Utilizing Suunto Heart Rate Monitors, GPS Devices, and Polar Sleep Plus Stages for Comprehensive Fitness Analysis ": 1 + "Physical Education: Incorporating Suunto Heart Rate Monitors, GPS Devices, and the Concept of Lactate Threshold in Performance Analysis": 1 + "The Intersection of Math and Music: Analyzing the Physics of Sound Waves in Musical Scales Using Audacity and Fourier Transformations": 1 + "The Role of Oscilloscopes in Exploring the Physics of Sound Waves in Musical Scales: A Study Using Audacity": 1 + "Utilizing MATLAB in the Study of Math and Music: Exploring Sound Wave Physics in Musical Scales Using Audacity": 1 + "The Intersection of Math and Music: A Deep Dive into Sound Wave Physics and Musical Scales Using Audacity and Python Programming": 1 + "Exploring the Physics of Sound Waves in Musical Scales Using Audacity: An In-depth Study of Signal Processing": 1 + "The Intersection of Math and Music: Understanding Sound Waves in Musical Scales through Audacity and Arduino Technology": 1 + "The Application of Wavelet Transform in Studying the Physics of Sound Waves in Musical Scales Using Audacity": 1 + "Unraveling the Physics of Sound Waves in Musical Scales with Audacity and Spectrogram Visualization Tools": 1 + "The Intersection of Math and Music: A Study on the Physics of Sound Waves in Musical Scales Using Audacity and Frequency Modulation": 1 + "Understanding Sound Waves in Musical Scales Through the Lens of Math: A Study Using Audacity and Digital Signal Processing.": 1 + "Pandora's Impact: Evaluating Spotify's Algorithmic Influence on Music Industry's Supply and Demand": 1 + "The Spotify Effect: Assessing the Economic Impact of Machine Learning on Music Streaming and Industry Economics": 1 + "The Digital Turntable: Blockchain Technology's Role in Music Streaming and its Potential Solutions for the Music Industry": 1 + "The Ripple Effect: Deciphering AI's Impact on Music Streaming and its Prospective Resolutions for the Music Industry": 1 + "The Sound of Money: An In-depth Analysis of Data Analytics in Music Streaming Apps and their Economic Implications": 1 + "Echoes of Change: Big Data's Role in Music Streaming Apps and its Potential Solutions for the Music Industry's Economics": 1 + "The Harmony of Tech: Unwrapping the Impact of Cloud Computing on Music Streaming and Possible Industry Resolutions": 1 + "Rhythms of Revenue: Examining the Effects of Digital Rights Management on Music Streaming and the Music Industry": 1 + "The Playlist Paradox: Deep Diving into the Role of Predictive Modeling in Music Streaming Apps and its Economic Solutions": 1 + "The Revenue Remix: Evaluating the Impact of Peer-to-Peer Sharing on Music Streaming and its Potential Solutions for the Music Industry.": 1 + "Biology of Hearing: Tracing Evolution of Auditory Systems with Vestibular Tests Using Electronystagmography and Auditory Brainstem Response": 1 + "Examining Auditory Systems Evolution through Vestibular Tests and Otoacoustic Emissions Using Electronystagmography": 1 + "Comparative Study on the Evolution of Auditory Systems: Utilizing Electronystagmography and Cochlea Modeling": 1 + "Tracing the Evolutionary Path of Auditory Systems: Vestibular Tests with Electronystagmography and Temporal Bone Imaging": 1 + "Advanced Study of Hearing Biology: Implementing Electronystagmography and Micro-CT Scanning in Vestibular Tests": 1 + "Auditory Systems Evolution: Vestibular Tests with Electronystagmography and Exploration of Hair Cells Regeneration": 1 + "Biological Analysis of Auditory Systems: Harnessing Electronystagmography and Advanced Pitch Perception in Vestibular Tests": 1 + "Evolutionary Biology of Auditory Systems: Vestibular Tests Using Electronystagmography and Spatial Hearing Concepts": 1 + "Decoding Auditory Systems Evolution through Electronystagmography and Ototoxicity in Vestibular Tests": 1 + "In-depth Study on Hearing Biology: Electronystagmography and Psychoacoustics in Vestibular Tests.": 1 + "Poly Lactic Acid in Sustainable Sports Equipment Production: Exploring Injection Moulding Techniques with 3D Printing ": 1 + "Biodegradable Materials for Sports Equipment: Poly Lactic Acid and Injection Moulding using CAD Software": 1 + "Utilizing Computer Numerical Control in Poly Lactic Acid Injection Moulding for Sustainable Sports Equipment": 1 + "Poly Lactic Acid Injection Moulding in Sustainable Sports Equipment: Role of Rapid Prototyping": 1 + "Sustainable Sports Equipment Production: Poly Lactic Acid Use in Laser Sintering Injection Moulding ": 1 + "Poly Lactic Acid and Advanced Robotic Automation in Sustainable Sports Equipment Injection Moulding": 1 + "Sustainable Sports Equipment Production: Expanding Poly Lactic Acid Injection Moulding with Vacuum Forming Techniques": 1 + "Poly Lactic Acid and Additive Manufacturing in Sustainable Sports Equipment Injection Moulding": 1 + "The Role of Finite Element Analysis in Poly Lactic Acid Injection Moulding for Sustainable Sports Equipment": 1 + "Sustainable Sports Equipment Production: Poly Lactic Acid and Injection Moulding with CNC Machining for Biodegradable Materials.": 1 + "Decoding the Human Brain: A Detailed Course on Functional Magnetic Resonance Imaging (fMRI) and Spectroscopy": 1 + "The Human Brain Explored: An In-depth Course on PET Scans in Neuroimaging Techniques": 1 + "Unraveling the Brain: A Comprehensive Course on Diffusion Tensor Imaging (DTI) and Spectroscopy": 1 + "The Human Brain Revealed: An Advanced Course on Electroencephalography (EEG) and Spectroscopy Techniques": 1 + "Delving Into the Brain: A Specialized Course on Magnetoencephalography (MEG) in Neuroimaging": 1 + "Understanding the Human Brain: An Exclusive Course on Near-Infrared Spectroscopy (NIRS) Techniques": 1 + "The Human Brain Unveiled: A Focused Course on Transcranial Magnetic Stimulation (TMS) and Spectroscopy": 1 + "Exploring the Human Brain: A Course on Neuroimaging Techniques with Spectroscopy and Positron Emission Tomography (PET)": 1 + "The Human Brain Decoded: An Intensive Course on Voxel-Based Morphometry (VBM) in Neuroimaging": 1 + "Inside the Human Brain: A Comprehensive Course on Neuroimaging Techniques with Computed Tomography (CT) Scans and Spectroscopy.": 1 + "Physical Education: Enhancing Dance Coordination with DJI Phantom 4 Pro Drone Filming and Augmented Reality Tools": 1 + "Physical Education: Improving Dance Rhythm using GoPro Karma Drones and Virtual Reality Sets": 1 + "Physical Education: Leveraging Parrot Bebop 2 Drone Filming Tech to Improve Coordination in Ballet Dance": 1 + "Physical Education: Rhythm Improvement in Salsa Dance using Mavic 2 Zoom Drones and Motion Capture Technology": 1 + "Physical Education: Augmenting Coordination in Hip-Hop Dance through Yuneec Typhoon H Pro Drone Filming": 1 + "Physical Education: Rhythm Enhancement in Tap Dance using Inspire 2 Drones and AI Algorithms": 1 + "Physical Education: Utilizing Autel Robotics X-Star Premium Drone Filming for Coordination Improvement in Contemporary Dance": 1 + "Physical Education: Rhythm Refinement in Jazz Dance through Skydio 2 Drone Filming and Haptic Feedback Devices": 1 + "Physical Education: Employing Mavic Mini Drone Filming Technology for Coordination Boost in Street Dance": 1 + "Physical Education: Improving Rhythm in Ballroom Dance using PowerVision PowerEye Drone Filming and Biofeedback Techniques.": 1 + "Computer Science: Using Apache Spark and Python in Data Analysis to Investigate Thermal Pollution in Urban Areas": 1 + "Computer Science: Applying Machine Learning Techniques with Apache Spark to Study Thermal Pollution": 1 + "Computer Science: Utilizing Apache Spark and Hadoop in Data Analysis to Evaluate Thermal Pollution in Rivers": 1 + "Computer Science: Leveraging Apache Spark and SQL in Data Analysis to Understand the Impact of Thermal Pollution on Marine Life": 1 + "Computer Science: Implementing Data Analysis with Apache Spark and R to Explore Thermal Pollution in Power Plants": 1 + "Computer Science: Utilization of Apache Spark and TensorFlow in Data Analysis for Thermal Pollution Assessment": 1 + "Computer Science: Using Apache Spark and Big Data Analytics to Investigate Thermal Pollution in Industrial Areas": 1 + "Computer Science: Applying Apache Spark and Data Visualization Tools in Data Analysis to Study Thermal Pollution ": 1 + "Computer Science: Using Apache Spark and Cloud Computing in Data Analysis to Analyze Thermal Pollution in Coastal Regions": 1 + "Computer Science: Integrating Apache Spark and Artificial Intelligence in Data Analysis to Study Thermal Pollution Effects on Agriculture.": 1 + "Physics: Understanding the Laws of Motion through Newton's Cradle": 1 + "Physics: Exploring the Laws of Motion with Frictionless Surfaces": 1 + "Physics: Grasping the Laws of Motion using Accelerometers": 1 + "Physics: Investigating the Laws of Motion with Velocity Sensors": 1 + "Physics: Mastering the Laws of Motion through Applied Force Analysis": 1 + "Physics: Comprehending the Laws of Motion using Momentum Conservation": 1 + "Physics: Studying the Laws of Motion with Projectile Motion Simulators": 1 + "Physics: Unraveling the Laws of Motion through Kinetic Energy Concepts": 1 + "Physics: Deciphering the Laws of Motion using Inertia Demonstrations": 1 + "Physics: Learning the Laws of Motion with the Help of a Pendulum": 1 + "Advanced R Programming with ggplot2 for Detailed Data Analysis in Ozone Pollution Studies": 1 + "Utilizing Dplyr in Advanced R Programming for In-depth Ozone Pollution Data Analysis": 1 + "Advanced R Programming and Shiny App Development for Ozone Pollution Studies ": 1 + "Advanced R Programming with Tidyverse for Comprehensive Analysis of Ozone Pollution Data": 1 + "Advanced R Programming and Machine Learning Techniques for Ozone Pollution Studies": 1 + "Advanced R Programming with RMarkdown for Detailed Data Analysis in Ozone Pollution Studies": 1 + "Application of RShiny in Advanced R Programming for Detailed Ozone Pollution Data Analysis": 1 + "Advanced R Programming and Data Visualization with ggplot2 in Ozone Pollution Studies": 1 + "Advanced R Programming with Caret for Predictive Modeling in Ozone Pollution Studies": 1 + "Advanced R Programming and Data Manipulation with Dplyr for Ozone Pollution Studies.": 1 + "The Role of Blockchain Technology in Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Potential Solutions": 1 + "The Influence of Artificial Intelligence on Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications & 10 Innovative Solutions": 1 + "Virtual Reality's Impact on Cybersecurity through Deep Learning: Ethical and Philosophical Implications and 10 Advanced Solutions": 1 + "Quantum Computing and Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Unique Solutions": 1 + "The Power of Biometrics in Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Groundbreaking Solutions": 1 + "Cloud Security in Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Promising Solutions": 1 + "Intrusion Detection Systems and Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications & 10 Potential Solutions": 1 + "The Application of Cryptography in Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Effective Solutions": 1 + "The Role of Antivirus Software in Virtual Reality's Impact on Cybersecurity: Ethical and Philosophical Implications with 10 Potential Solutions": 1 + "Virtual Reality's Impact on Cybersecurity via Secure Coding: Ethical and Philosophical Implications and 10 Futuristic Solutions": 1 + "Language Arts Basics: Building Grammar Skills with Sentence Diagramming": 1 + "Language Arts Basics: Enhancing Grammar Skills through Interactive Whiteboard Application": 1 + "Language Arts Basics: Building Grammar Skills with Kahoot Quizzes": 1 + "Language Arts Basics: Improving Grammar Skills through Google Classroom ": 1 + "Language Arts Basics: The Role of Microsoft Word in Building Grammar Skills": 1 + "Language Arts Basics: Building Grammar Skills with the Use of Grammarly": 1 + "Language Arts Basics: Strengthening Grammar Skills through Padlet Boards": 1 + "Language Arts Basics: Building Grammar Skills Using Quizlet Flashcards": 1 + "Language Arts Basics: The Impact of Prezi Presentations on Grammar Skills": 1 + "Language Arts Basics: Building Grammar Skills with the SMART Learning Suite": 1 + "Physics: Examining Newton's Laws in Understanding Motion and Forces": 1 + "Physics: Understanding Motion and Forces through Vector Analysis": 1 + "Physics: The Role of Kinematics in Motion and Force Analysis": 1 + "Physics: Leveraging Quantum Mechanics to Understand Motion and Forces ": 1 + "Physics: Understanding Motion and Forces through Momentum Conservation": 1 + "Physics: The Influence of Gravitational Forces on Motion": 1 + "Physics: The Use of Free Body Diagrams in Motion and Force Analysis": 1 + "Physics: The Impact of Frictional Forces on Motion": 1 + "Physics: Understanding Motion and Forces: An In-depth Look into Centripetal Force": 1 + "Physics: The Application of Calculus in Understanding Motion and Forces.": 1 + "Physics: Understanding the Physics of Vibrations and Sound through Fourier Transformations Waveform Analysis": 1 + "Physics: Exploring Vibrations and Sound by Waveform Analysis using Oscilloscopes": 1 + "Physics: The Role of Spectral Analysis in Deciphering the Physics of Vibrations and Sound": 1 + "Physics: Dissecting the Physics of Vibrations and Sound through Waveform Analysis utilizing MATLAB": 1 + "Physics: Waveform Analysis of Vibrations and Sound using Quantum Mechanics Concepts in Physics": 1 + "Physics: Deciphering Vibrations and Sound through Waveform Analysis and Python Programming": 1 + "Physics: A Deep Dive into Vibrations and Sound through Waveform Analysis using Fast Fourier Transform": 1 + "Physics: Unfolding the Physics of Sound and Vibrations through Waveform Analysis and Soundwave Simulations": 1 + "Physics: Decoding the Physics of Vibrations and Sound via Waveform Analysis and Acoustic Resonance": 1 + "Physics: Exploring the Physics of Vibrations and Sound through Waveform Analysis using Digital Signal Processing Techniques.": 1 + "Mathematics: Utilizing Statistical Analysis Tools in Examining World Hunger and Food Production": 1 + "Mathematics: The Role of Regression Analysis in World Hunger and Food Production Statistics": 1 + "Mathematics: Application of SPSS in Statistics for World Hunger and Food Production": 1 + "Mathematics: Data Mining Techniques for World Hunger and Food Production Statistics": 1 + "Mathematics: Using R Programming in Statistics for World Hunger and Food Production": 1 + "Mathematics: The Impact of Predictive Modeling on World Hunger and Food Production Statistics": 1 + "Mathematics: Linear Programming in Analyzing World Hunger and Food Production Statistics ": 1 + "Mathematics: Python in Statistical Analysis of World Hunger and Food Production": 1 + "Mathematics: Monte Carlo Simulations for World Hunger and Food Production Statistics": 1 + "Mathematics: Exploring Time Series Analysis in World Hunger and Food Production.": 1 + "Python Machine Learning: A Deep Dive into Clustering Algorithms with SciPy Using Gaussian Mixture Models and K-Means Techniques": 1 + "Python Machine Learning: Exploring Hierarchical Clustering Algorithms with SciPy and Gaussian Mixture Models": 1 + "Python Machine Learning: An Exploration of Clustering Algorithms with SciPy Using Gaussian Mixture Models and the Expectation Maximization Algorithm": 1 + "Python Machine Learning: A Comprehensive Guide to Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN": 1 + "Python Machine Learning: Advanced Clustering Algorithms with SciPy Using Gaussian Mixture Models and PCA for Feature Reduction ": 1 + "Python Machine Learning: An Exploration of Clustering Algorithms with SciPy and Gaussian Mixture Models in TensorFlow Environment": 1 + "Python Machine Learning: An Examination of Clustering Algorithms with SciPy Using Gaussian Mixture Models and Jupyter Notebooks": 1 + "Python Machine Learning: Leveraging Clustering Algorithms with SciPy Using Gaussian Mixture Models and the Elbow Method for Optimal Clusters": 1 + "Python Machine Learning: An Exploration of Clustering Algorithms with SciPy Using Gaussian Mixture Models and Unsupervised Learning Techniques": 1 + "Python Machine Learning: An Analysis of Clustering Algorithms with SciPy Using Gaussian Mixture Models and Silhouette Coefficient Evaluation.": 1 + "History: Evolution of Human Civilizations: An In-depth Study of the Development and Use of Bronze Age Spears": 1 + "Bronze Age Metallurgy: Evolution of Human Civilizations through the Lens of Sword Making": 1 + "The Wheel in Bronze Age: A Detailed Analysis of Its Impact on Human Civilizations": 1 + "History: Evolution of Human Civilizations: Delving into the Importance of Bronze Age Ploughs": 1 + "Evolution of Human Civilizations: A Comprehensive Study of Bronze Cooking Utensils": 1 + "History: The Evolution of Human Civilizations: A Deep Dive into the Use of Bronze Chariots": 1 + "Impact of Bronze Age Pottery on the Evolution of Human Civilizations": 1 + "A Detailed Analysis of the Use of Bronze Age Sickle in Human Civilizations": 1 + "History: Evolution of Human Civilizations: A Deep Dive into the Use and Significance of Bronze Age Axes": 1 + "The Evolution of Human Civilizations: An In-depth Look at Bronze Age Aqueducts.": 1 + "World Cultures: Art and Traditions - Understanding the Influence of Nanotechnology on Ceramic Pottery Techniques": 1 + "The Influence of Nanotechnology on Traditional Weaving Patterns in World Cultures": 1 + "Artistic Evolution: The Role of Nanotechnology in Ancient Mural Preservation": 1 + "World Cultures: Unveiling Nanotechnology's Impact on Traditional Jewelry Making": 1 + "Nanotechnology in Cultural Artifacts: A Study on Ancient Glassmaking Techniques": 1 + "World Cultures: Exploring Nanotechnology's Role in Enhancing Traditional Textile Dyeing": 1 + "The Intersection of Nanotechnology and Woodcraft in World Cultures": 1 + "Bridging World Cultures: The Role of Nanotechnology in Stone Carving Traditions": 1 + "Nano-Conservation: The Influence of Nanotechnology in Preserving World Art and Traditions": 1 + "World Cultures and Nanotechnology: A Deep Dive into Traditional Paper Making Techniques.": 1 + "Computer Science for Young Minds: Introduction to Coding with Scratch Using Variables": 1 + "Computer Science for Young Minds: Mastering Control Flow in Scratch Coding": 1 + "Computer Science for Young Minds: Exploring Data Types in Scratch Programming": 1 + "Computer Science for Young Minds: Understanding and Implementing Events in Scratch": 1 + "Computer Science for Young Minds: Animation and Game Design Using Scratch": 1 + "Computer Science for Young Minds: Scratch Programming and the Art of Debugging": 1 + "Computer Science for Young Minds: Interactive Storytelling with Scratch": 1 + "Computer Science for Young Minds: Building Basic Algorithms in Scratch": 1 + "Computer Science for Young Minds: Developing Math Skills through Scratch Coding": 1 + "Computer Science for Young Minds: Introduction to Coding with Scratch and the Concept of Loops": 1 + "Mathematics: Geometry in Art: Understanding Euclidean Concepts through the Lens of a Protractor and Pythagorean Theorem": 1 + "Mathematics: Geometry in Art: Exploring Euclidean Concepts with a Protractor and CAD Technology": 1 + "Mathematics: Geometry in Art: Applying Euclidean Concepts with a Protractor and Compass": 1 + "Mathematics: Geometry in Art: Unraveling Euclidean Concepts with a Protractor and Trigonometry": 1 + "Mathematics: Geometry in Art: Decoding Euclidean Concepts with a Protractor and Cartesian Coordinate System": 1 + "Mathematics: Geometry in Art: Grasping Euclidean Concepts with a Protractor and Geogebra Software": 1 + "Mathematics: Geometry in Art: Interpreting Euclidean Concepts with a Protractor and 3D Modeling": 1 + "Mathematics: Geometry in Art: Understanding Euclidean Concepts with a Protractor and Ruler": 1 + "Mathematics: Geometry in Art: Deciphering Euclidean Concepts with a Protractor and Algebraic Formulas": 1 + "Mathematics: Geometry in Art: Analyzing Euclidean Concepts with a Protractor and Geometric Sequences.": 1 + "Physical Chemistry of Nanomaterials: An Examination of Scanning Electron Microscopy": 1 + "Quantum Dots in Physical Chemistry of Nanomaterials": 1 + "Physical Chemistry of Nanomaterials: Focus on Transmission Electron Microscopy": 1 + "Nanomaterials in Physical Chemistry: A Closer Look at Atomic Force Microscopy": 1 + "Physical Chemistry of Nanomaterials: Understanding through X-Ray Diffraction": 1 + "Physical Chemistry of Nanomaterials: A Study on Nanoparticle Synthesis": 1 + "Spectroscopic Analysis in Physical Chemistry of Nanomaterials": 1 + "Physical Chemistry of Nanomaterials: Nanocomposites and their Properties": 1 + "Physical Chemistry of Nanomaterials: Exploring Carbon Nanotubes": 1 + "Physical Chemistry of Nanomaterials: Utilizing Nanoindentation Techniques.": 1 + "Art and Technology: Impact of Oculus Rift on the Aesthetics of Motion in Baseball ": 1 + "Art & VR: The Use of HTC Vive in Analyzing Aesthetic Motions in Football ": 1 + "Artistic Analysis: The Influence of PlayStation VR on Basketball Motion Aesthetics ": 1 + "Art in Sports: Studying Google Cardboard's Effect on Tennis Motion Aesthetics ": 1 + "Exploring Art and Sports: The Role of Samsung Gear VR in Rugby Motion Aesthetics ": 1 + "Art and Virtual Reality: How Microsoft HoloLens Influences Soccer Motion Aesthetics": 1 + "Digital Art and Athletics: The Impact of Varjo VR-1 on Cricket Motion Aesthetics": 1 + "Art and Sports: The Effect of VRChat on the Aesthetics of Motion in Volleyball": 1 + "Artistic Representation of Motion: The Role of Unity Engine in Analyzing Ice Hockey Movements ": 1 + "The Aesthetics of Motion in Gymnastics: A Study on the Influence of Unreal Engine VR.": 1 + "English: Expressing Environmental Concerns through Haiku Poetry with Digital Tools": 1 + "English: Utilizing Metaphors in Haiku Poetry to Express Environmental Concerns": 1 + "English: Expressing Environmental Issues through Haiku Poetry using Natural Imagery": 1 + "English: Environmental Advocacy: Using Haiku Poetry and Social Media Platforms": 1 + "English: Exploring Environmental Concerns through Haiku Poetry using Rhythmic Patterns": 1 + "English: Using Symbolism in Haiku Poetry to Address Environmental Concerns": 1 + "English: Expressing Environmental Concerns through Haiku Poetry: An Approach using Literary Devices": 1 + "English: The Role of Imagery in Expressing Environmental Concerns through Haiku Poetry": 1 + "English: The Power of Haiku Poetry: Using Similes to Express Environmental Concerns": 1 + "English: Expressing Environmental Concerns through Haiku Poetry: A Study in Figurative Language.": 1 + "Geography: Exploring Trade Routes and their Historical Significance using GIS Technology": 1 + "Geography: Mapping Ancient Trade Routes with Satellite Imagery ": 1 + "Geography: Charting Silk Road Trade Routes using Digital Cartography": 1 + "Geography: Evaluating Historical Trade Routes using Big Data Analysis": 1 + "Geography: Mapping Trade Routes and their Historical Significance using 3D Modelling": 1 + "Geography: Analyzing Trade Routes with Modern GPS Technology": 1 + "Geography: Unveiling Trade Routes and their Historical Significance through Remote Sensing": 1 + "Geography: Trade Routes Mapping and their Impact through Time-Series Analysis": 1 + "Geography: Studying Trade Routes using Drone Technology and their Historical Importance": 1 + "Geography: Understanding Trade Routes and their History through Virtual Reality Simulation": 1 + "Elementary Mathematics: The Impact of Numbers on Statistical Analysis Using Excel": 1 + "Elementary Mathematics: Utilizing SPSS in Statistical Analysis ": 1 + "The Role of Probability in Elementary Mathematics: Impact on Statistical Analysis": 1 + "Elementary Mathematics: The Impact of R Programming on Statistical Analysis": 1 + "Elementary Mathematics: Application of Descriptive Statistics in Statistical Analysis": 1 + "Elementary Mathematics: The Impact of Numbers on Regression Analysis": 1 + "Elementary Mathematics: Exploring Data Patterns with Python in Statistical Analysis": 1 + "Elementary Mathematics: The Power of Hypothesis Testing in Statistical Analysis": 1 + "Elementary Mathematics: The Impact of MATLAB in Statistical Analysis": 1 + "Elementary Mathematics: Understanding Variance with Statistical Analysis Tools": 1 + "Data-Driven Athletic Assessment: Applying Python Programming with Tableau and Cluster Analysis": 1 + "Advanced Data Mining for Athletic Assessment: A Computer Science Approach with Tableau and K-Means Clustering": 1 + "Applying Machine Learning in Data-Driven Athletic Assessment: A Tableau and Cluster Analysis Approach": 1 + "Data Visualization and Interpretation in Athletic Assessment: A Tableau and Cluster Analysis Approach using Python": 1 + "Data-Driven Athletic Assessment: A Computer Science Approach using Tableau, Cluster Analysis, and Jupyter Notebooks": 1 + "Predictive Analysis in Athletic Assessment: A Tableau and Cluster Analysis Approach using R Programming": 1 + "Data-Driven Athletic Assessment: Utilizing SQL with Tableau and Cluster Analysis for Data Management": 1 + "Advanced Sports Analytics: Implementing Linear Regression with Tableau and Cluster Analysis": 1 + "Data-Driven Athletic Assessment: A Computer Science Approach Using Tableau, Cluster Analysis, and TensorFlow": 1 + "Implementing Neural Networks in Data-Driven Athletic Assessment: A Tableau and Cluster Analysis Approach.": 1 + "Elementary Mathematics: Counting Beats with Abacus": 1 + "Elementary Mathematics: Counting Beats using Digital Metronomes": 1 + "Elementary Mathematics: Counting Beats with Basic Calculator": 1 + "Elementary Mathematics: Counting Beats through Rhythm Patterns": 1 + "Elementary Mathematics: Counting Beats with Music Software": 1 + "Elementary Mathematics: Counting Beats with Numerical Notations": 1 + "Elementary Mathematics: Counting Beats using MIDI Technology": 1 + "Elementary Mathematics: Counting Beats with Beatboxing Techniques": 1 + "Elementary Mathematics: Counting Beats using Binary System": 1 + "Elementary Mathematics: Counting Beats with Rhythmic Fractions": 1 + "Art: The Use of Oil Paintings in Visual Representation of Dance in African Culture": 1 + "Art & Technology: Digitally Illustrating the Visual Representation of Flamenco Dance in Spanish Culture": 1 + "Art: Analyzing the Visual Representation of Ballet Dance in French Culture through Sculpture": 1 + "Art: Exploring the Visual Representation of Traditional Dance in Japanese Culture through Watercolor ": 1 + "Art & Photography: Capturing the Visual Representation of Tango Dance in Argentine Culture": 1 + "Art: Using Charcoal Sketches to Represent Samba Dance in Brazilian Culture": 1 + "Art: The Role of Mixed Media in Visual Representation of Belly Dance in Middle Eastern Culture": 1 + "Art & Technology: 3D Modeling the Visual Representation of Hula Dance in Hawaiian Culture": 1 + "Art: Pastel Interpretations of the Visual Representation of Kathak Dance in Indian Culture": 1 + "Art: The Use of Collage in Visual Representation of Maori Haka Dance in New Zealand Culture": 1 + "Art: Representing the Visual Aspect of Capoeira Dance in Brazilian Culture through Digital Animation.": 1 + "Art: A Detailed Study of Sculpting Techniques using Stone Carving and Chisel": 1 + "Art: Exploring Stone Carving Techniques with Hammer and Chisel": 1 + "Art: Mastering Stone Sculpting Techniques using Point Chisels": 1 + "Art: Unravelling Stone Carving Techniques with Diamond Tip Tools": 1 + "Art: A Comprehensive Guide to Stone Carving using Carbide Tipped Chisels": 1 + "Art: An In-Depth Analysis of Stone Sculpting Techniques with a Mallet": 1 + "Art: Perfecting Stone Carving Techniques using Pneumatic Tools": 1 + "Art: A Deep Dive into Stone Carving Techniques with Rotary Tools": 1 + "Art: Understanding Sculpting Techniques using Stone Carving and Rasps": 1 + "Art: Advanced Stone Carving Techniques using the Flat Chisel Technique.": 1 + "Microbiology 101: An Insight into Genetic Engineering with Polymerase Chain Reaction (PCR)": 1 + "Microbiology 101: Using Gel Electrophoresis in Genetic Engineering": 1 + "Microbiology 101: Exploring Genetic Engineering and CRISPR-Cas9 with DNA Sequencing ": 1 + "Microbiology 101: Cloning and its Role in Genetic Engineering ": 1 + "Microbiology 101: Genetic Engineering with CRISPR-Cas9 and Plasmid Transformation ": 1 + "Microbiology 101: Genetic Engineering - A Deep Dive into Restriction Enzymes": 1 + "Microbiology 101: The Power of Genetic Engineering and CRISPR-Cas9 in RNA Interference": 1 + "Microbiology 101: Exploring Genetic Engineering and CRISPR-Cas9 through Gene Therapy": 1 + "Microbiology 101: Utilizing Southern Blot Technique in Genetic Engineering": 1 + "Microbiology 101: Genetic Engineering and CRISPR-Cas9: Introduction to Recombinant DNA Technology.": 1 + "Physics: The Science of Sound and Music - Exploring Acoustic Resonance": 1 + "Physics: The Science of Sound, Music and Frequency Spectrums": 1 + "Physics: The Science of Sound and Music - A Deep Dive into Doppler Effect": 1 + "Physics: Understanding Sound Waves and Music through Oscilloscope": 1 + "Physics: The Role of Fourier Transforms in Sound and Music": 1 + "Physics: The Science of Sound and Music - Studying Harmonics": 1 + "Physics: Exploring Music through the Lens of Decibel Measurements": 1 + "Physics: The Science of Sound and Music - An Introduction to Wave Interference ": 1 + "Physics: The Science of Sound and Music - Understanding Sound Propagation": 1 + "Physics: The Science of Sound and Music - Sound Amplification via Microphones.": 1 + "Introduction to Mathematics: Exploring Numbers and Sets with the Abacus": 1 + "Dissecting Mathematics: A Deep Dive into Numbers and Sets using Wolfram Alpha": 1 + "Mathematics Unveiled: Understanding Numbers and Sets through the Lens of Python Programming": 1 + "Advanced Mathematics: Exploring Numbers and Sets through MATLAB": 1 + "The World of Mathematics: Exploring Numbers and Sets using Smartboard Technology": 1 + "Mathematics Demystified: A Practical Approach to Numbers and Sets with Calculators": 1 + "Exploring Mathematics: A Comprehensive Study of Numbers and Sets through GeoGebra": 1 + "Mathematics in Focus: Learning Numbers and Sets using Microsoft Excel": 1 + "Mathematics Simplified: Unfolding Numbers and Sets with Use of R Programming": 1 + "Introduction to Mathematics: Decoding Numbers and Sets via Statistical Analysis Software (SAS)": 1 + "Physics: Exploring Newton's Laws of Motion with Free Body Diagrams, Motion Sensors, and Momentum Conservation using Arduino Microcontrollers": 1 + "Physics: Probing Laws of Motion with Free Body Diagrams, Ultrasonic Motion Sensors, and Momentum Conservation": 1 + "Physics: Investigating Laws of Motion through Free Body Diagrams, Infrared Motion Sensors, and Momentum Conservation: An In-depth Study": 1 + "Physics: Delving into Laws of Motion using Free Body Diagrams, Motion Sensors, Momentum Conservation and The Doppler Effect": 1 + "Physics: A Comprehensive Study on Laws of Motion with Advanced Motion Sensors, Free Body Diagrams, and Momentum Conservation": 1 + "Physics: Investigating Laws of Motion using Free Body Diagrams, Motion Sensors, and Momentum Conservation with MATLAB Simulations": 1 + "Physics: Exploring Laws of Motion through Free Body Diagrams, 3D Motion Sensors, and Momentum Conservation Techniques": 1 + "Physics: Unraveling Laws of Motion through Free Body Diagrams, Motion Sensors, Momentum Conservation and Kinetic Energy": 1 + "Physics: Investigating Laws of Motion via Free Body Diagrams, Motion Sensors, Momentum Conservation using Python Programming": 1 + "Physics: Probing Laws of Motion with Free Body Diagrams, Quantum Motion Sensors, and Momentum Conservation: A Detailed Approach.": 1 + "Atomic Bomb and its Reflection in Post-War Modern Art": 1 + "Tank Warfare Technologies and their Impact on Post-War Modern Art": 1 + "Artillery Advancements and their Influence on Post-War Modern Art": 1 + "Chemical Warfare and its Reflection in Post-War Modern Art": 1 + "Radar Technology and its Impression on Post-War Modern Art": 1 + "Fighter Aircrafts and their Echo in Post-War Modern Art": 1 + "Submarines and their Impact on Post-War Modern Art": 1 + "Machine Guns and their Reflection in Post-War Modern Art": 1 + "Flamethrowers and their Resonance in Post-War Modern Art": 1 + "Combat Medicine and its Reflection in Post-War Modern Art": 1 + "Chemistry Fun for Kids: Exploring Acids and Bases with Household Items": 1 + "Chemistry Fun for Kids: Experiments with Baking Soda and Vinegar": 1 + "Junior Scientists: Chemistry Fun with Food Coloring and Household Items": 1 + "Chemistry Fun for Kids: Discovering pH Levels with Household Items": 1 + "Kitchen Chemistry for Kids: Experiments with Sugar and Salt Solutions": 1 + "Chemistry Fun for Kids: Creating Crystals with Household Items": 1 + "Chemistry Fun for Kids: Exploring Chemical Reactions with Household Items": 1 + "Chemistry Fun for Kids: Making Slime with Glue and Borax": 1 + "Chemistry Fun for Kids: Learning about Density with Household Items": 1 + "Chemistry Fun for Kids: Experiments with Balloons and Static Electricity.": 1 + "Computer Science Foundations: Implementing Data Structures in Python and Scratch with NumPy": 1 + "Computer Science Foundations: Understanding Data Structures in Python and Scratch with Pandas": 1 + "Computer Science Foundations: Data Structures and Algorithm Analysis in Python and Scratch": 1 + "Computer Science Foundations: Data Structures in Python and Scratch using Matplotlib for Visualization": 1 + "Computer Science Foundations: Exploring Data Structures in Python and Scratch with Pygame": 1 + "Computer Science Foundations: Data Structures in Python and Scratch - An introduction to TensorFlow": 1 + "Computer Science Foundations: Data Structures in Python and Scratch with Jupyter Notebook": 1 + "Computer Science Foundations: Data Structures in Python and Scratch - A Deep Dive into Machine Learning": 1 + "Computer Science Foundations: Data Structures in Python and Scratch with the Use of Scikit-Learn": 1 + "Computer Science Foundations: Data Structures in Python and Scratch - A Comprehensive Guide to PyTorch.": 1 + "Little Chemists: Exploring Elements with Microscopes": 1 + "Little Chemists: Fun with Bunsen Burners in Elementary Chemistry": 1 + "Little Chemists: Learning About Molecular Structures through Elementary Chemistry": 1 + "Little Chemists: An Introduction to Chromatography in Elementary Chemistry": 1 + "Little Chemists: Hands-On Experiments with Test Tubes in Elementary Chemistry": 1 + "Little Chemists: Understanding pH Values in Elementary Chemistry": 1 + "Little Chemists: Exploring Chemical Reactions with Pipettes in Elementary Chemistry": 1 + "Little Chemists: The Magic of Crystallization in Elementary Chemistry": 1 + "Little Chemists: Discovering Density with Graduated Cylinders in Elementary Chemistry": 1 + "Little Chemists: The Fascinating World of Chemical Bonds in Elementary Chemistry": 1 + "Little Chemists: Fun with Spectrophotometry in Elementary Chemistry": 1 + "Mathematics: Advanced Statistical Modelling with R Programming in Climate Change Research Using ANOVA ": 1 + "Mathematics: Regression Analysis in Environmental Research with R Programming and Python": 1 + "Mathematics: Utilizing GIS and R Programming for Statistical Modelling in Environmental Research": 1 + "Mathematics: Linear Modelling with R Programming in Atmospheric Studies": 1 + "Mathematics: Time Series Analysis using R Programming in Environmental Research": 1 + "Mathematics: Predictive Modelling in Environmental Research using R Programming and Machine Learning": 1 + "Mathematics: Multivariate Statistical Modelling with R Programming in Biodiversity Research": 1 + "Mathematics: Bayesian Inference in Environmental Research with R Programming ": 1 + "Mathematics: Spatial Analysis in Environmental Research using R Programming and ArcGIS": 1 + "Mathematics: Decision Tree Modelling with R Programming in Environmental Impact Studies.": 1 + "Science: Exploring Cellular Structures Through Microscopy in Biology": 1 + "Science: Unraveling DNA Sequencing in the Fundamentals of Biology": 1 + "Science: Fundamentals of Biology - A Deep Dive into Genetic Engineering": 1 + "Science: Exploring the Fundamentals of Biology with CRISPR Technology": 1 + "Science: A Closer Look at the Fundamentals of Biology - Biotechnology": 1 + "Science: Fundamentals of Biology - Understanding Photosynthesis": 1 + "Science: The Role of Synthetic Biology in Exploring Biological Fundamentals": 1 + "Science: Fundamentals of Biology - Studying Cellular Respiration": 1 + "Science: Exploring Biology Fundamentals Through Bioinformatics": 1 + "Science: Probing the Fundamentals of Biology - The Evolution Theory.": 1 + "Advanced Exploration of Cellular Components: Utilizing Cryo-electron Microscopy and Fourier Transform Infrared Spectroscopy in the Discovery of Ribosomes": 1 + "Decoding Subcellular Particles: A Detailed Analysis Using Cryo-electron Microscopy and Fluorescence Microscopy": 1 + "New Insights into Cellular Components: Exploring Mitochondria with Cryo-electron Microscopy and Confocal Microscopy": 1 + "Probing Lysosomes: In-depth Study using Cryo-electron Microscopy and Atomic Force Microscopy": 1 + "Delving into Endoplasmic Reticulum: A Comprehensive Analysis Using Cryo-electron Microscopy and Super-Resolution Microscopy": 1 + "Unveiling the Secrets of the Golgi Apparatus: Employing Cryo-electron Microscopy and STED Microscopy": 1 + "Cellular Components: A Detailed Study of Peroxisomes Using Cryo-electron Microscopy and Light Sheet Fluorescence Microscopy": 1 + "Detailed Examination of Nuclear Pores: Integrating Cryo-electron Microscopy with X-ray Crystallography": 1 + "Proteasomes Revealed: An In-depth Study with Cryo-electron Microscopy and Electron Tomography": 1 + "The World of Vesicles: Exploring with Cryo-electron Microscopy and Scanning Electron Microscopy.": 1 + "Artists and Architects: Exploring Geometry with Lego and 3D Modeling Software": 1 + "SketchUp in Practice: Artists and Architects Exploring Geometry with Lego": 1 + "Artists and Architects: Exploring Geometry with Lego and CAD Design Tools": 1 + "The Golden Ratio: Artists and Architects Exploring Geometry with Lego": 1 + "Artists and Architects: Exploring Geometry with Lego and Virtual Reality": 1 + "3D Printing and Lego: Artists and Architects Exploring Geometry": 1 + "Artists and Architects: Exploring Geometry with Lego and Augmented Reality": 1 + "Exploring Fibonacci Sequences: Artists and Architects with Lego": 1 + "Artists and Architects: Exploring Fractal Geometry with Lego": 1 + "Artists and Architects: Exploring Geometry with Lego and Parametric Design Tools": 1 + "Quantum Entanglement and Its Role in Quantum Computing: A Deep Dive into Quantum Bit (Qubit)": 1 + "The Role of Quantum Entanglement in Quantum Communication: Exploring Quantum Teleportation ": 1 + "Quantum Entanglement and its Applications in Quantum Cryptography: A Focus on Quantum Key Distribution": 1 + "Quantum Entanglement in Quantum Optics: The Foundation of Photon Entanglement": 1 + "The Role of Quantum Entanglement in Quantum Error Correction: An Introduction to Quantum Decoherence": 1 + "Quantum Entanglement and its Applications in Quantum Sensors: Unveiling Superposition Principle": 1 + "The Role of Quantum Entanglement in Quantum Metrology: Understanding The Heisenberg Uncertainty Principle ": 1 + "Quantum Entanglement and its Role in Quantum Imaging: The Power of Entangled Photons ": 1 + "The Role of Quantum Entanglement in Quantum Networks: Deciphering Quantum Internet ": 1 + "Quantum Entanglement in Quantum Simulation: A Study of Quantum Gates.": 1 + "Exploring the Role of Algorithms in Computer Science: A Deep Dive into Dynamic Programming Using Python": 1 + "The Influence of Algorithms in Computer Science: A Study on Dynamic Programming with Java": 1 + "The Role of Algorithms in Computer Science: Focusing on Dynamic Programming and Its Applications in Machine Learning": 1 + "Detailed Analysis of Algorithms in Computer Science: Understanding Dynamic Programming and Big O Notation": 1 + "The Role of Algorithms in Computer Science: A Focus on Dynamic Programming Utilizing C++": 1 + "The Significance of Algorithms in Computer Science: A Concentration on Dynamic Programming through JavaScript": 1 + "The Role of Algorithms in Computer Science: A Comprehensive Study on Dynamic Programming with Recursion": 1 + "The Essence of Algorithms in Computer Science: In-depth Analysis of Dynamic Programming Using Swift": 1 + "The Importance of Algorithms in Computer Science: A Focus on Dynamic Programming and Its Role in Artificial Intelligence": 1 + "Understanding Algorithms in Computer Science: A Focus on Dynamic Programming Implementations with Ruby": 1 + "Advanced Cell Biology and Microscopy: Exploring DNA Amplification through Polymerase Chain Reaction Techniques Using Gel Electrophoresis": 1 + "In-depth Study of Cell Biology: Microscopy and Polymerase Chain Reaction Techniques with a Focus on Spectrophotometry": 1 + "Cellular Exploration: Microscopy Basics and Polymerase Chain Reaction Techniques Employing Fluorescent Microscopy": 1 + "Bioinformatics in Cell Biology: A Deep Dive into Microscopy and Polymerase Chain Reaction Techniques": 1 + "Cell Biology and Microscopy Basics: Implementing Polymerase Chain Reaction Techniques with Thermal Cycler Usage": 1 + "Molecular Biology: Focusing on Cell Biology and Microscopy Basics Using Polymerase Chain Reaction Techniques and DNA Sequencing": 1 + "Cell Biology Mastery: Microscopy Basics and Polymerase Chain Reaction Techniques with a Focus on Flow Cytometry Technology": 1 + "Advanced Cell Biology: Integrating Microscopy Basics and Polymerase Chain Reaction Techniques with Centrifugation Process": 1 + "Exploring Life: A Detailed Study of Cell Biology and Microscopy Basics Using Polymerase Chain Reaction Techniques and Chromatography": 1 + "Cellular Dynamics: Microscopy Basics and Polymerase Chain Reaction Techniques Combined with Nanotechnology Applications.": 1 + "Science Basics: Exploring the Life Cycle of a Butterfly Through Microscopy": 1 + "Science Basics: Dissecting the Life Cycle of a Butterfly with Digital Imaging": 1 + "Science Basics: Understanding the Life Cycle of a Butterfly Using DNA Sequencing": 1 + "Science Basics: Examining the Life Cycle of a Butterfly with Infrared Imaging": 1 + "Science Basics: Studying the Life Cycle of a Butterfly Using Computer Simulation": 1 + "Science Basics: Exploring the Life Cycle of a Butterfly Through Time-Lapse Photography": 1 + "Science Basics: Investigating the Life Cycle of a Butterfly Using Genetic Engineering": 1 + "Science Basics: Analyzing the Life Cycle of a Butterfly with Thermal Imaging": 1 + "Science Basics: Unveiling the Life Cycle of a Butterfly Through Molecular Biology": 1 + "Science Basics: Decoding the Life Cycle of a Butterfly Using Bioinformatics": 1 + "Exploring the Impact of Color Theory in Gouache Techniques through Color Wheel using Adobe Color CC: A Comprehensive Analysis of Geometric Shapes and Straight Lines": 1 + "A Detailed Study of Color Theory Impact in Gouache Techniques through Color Wheel and Watercolor Brushes: Analyzing Organic Shapes and Diagonal Lines": 1 + "The Effect of Color Theory on Gouache Techniques using Color Wheel and Pantone Connect: An Examination of Abstract Shapes and Curved Lines": 1 + "Unraveling the Impact of Color Theory in Gouache Techniques with Color Wheel and CAD Software: An In-Depth Analysis of Polygons and Zigzag Lines": 1 + "Investigating Color Theory in Gouache Techniques through Color Wheel using RGB Sliders: A Detailed Study of Solid Shapes and Wavy Lines": 1 + "Adobe Illustrator’s Role in Understanding the Impact of Color Theory in Gouache Techniques through Color Wheel: A Comprehensive Analysis of 3D Shapes and Parallel Lines": 1 + "The Influence of Color Theory on Gouache Techniques through Color Wheel using Grayscale Converter: A Comprehensive Study of Natural Shapes and Broken Lines": 1 + "Understanding the Impact of Color Theory in Gouache Techniques using Color Wheel and Digital Tablets: A Detailed Investigation of Symmetrical Shapes and Perpendicular Lines": 1 + "The Role of Color Picker Tool in Studying the Impact of Color Theory in Gouache Techniques through Color Wheel: An In-Depth Analysis of Irregular Shapes and Horizontal Lines": 1 + "The Impact of Color Theory in Gouache Techniques through Color Wheel using Photoshop's Blend Modes: A Comprehensive Analysis of Regular Shapes and Vertical Lines.": 1 + "Elementary Physical Activity: Basics of Dance Choreography with Ballet Techniques": 1 + "Elementary Physical Activity: Exploring Dance Choreography through Contemporary Styles": 1 + "Elementary Physical Activity: Basics of Dance Choreography Utilizing Video Recording": 1 + "Elementary Physical Activity: Basics of Dance Choreography and the Use of Motion Capture Technology": 1 + "Elementary Physical Activity: Basics of Dance Choreography Featuring Hip Hop Moves": 1 + "Elementary Physical Activity: Basics of Dance Choreography with a Focus on Jazz Routines": 1 + "Elementary Physical Activity: Basics of Dance Choreography Using Virtual Reality for Practice": 1 + "Elementary Physical Activity: Basics of Dance Choreography and the Application of Mirror Analysis": 1 + "Elementary Physical Activity: Basics of Dance Choreography with a Spotlight on Tap Dancing": 1 + "Elementary Physical Activity: Basics of Dance Choreography and the Role of Music Editing Software": 1 + "Philosophy of Sustainability: Ethical Implications of Rainwater Harvesting using Rain Barrels": 1 + "Ethical Stewardship: The Use of Rain Chains in Rainwater Harvesting for Sustainable Living": 1 + "Exploring Eco-Ethics: Rainwater Harvesting through Green Roofs for Sustainable Living": 1 + "Rainwater Harvesting: Using Cistern Systems for Ethical and Sustainable Living": 1 + "Philosophy and Practicality: Ethical Rainwater Harvesting with Rain Gardens": 1 + "Sustainable Philosophy: The Ethics of Rainwater Harvesting using Rain Saucers": 1 + "The Ethics of Sustainability: Rainwater Harvesting with Catchment Systems": 1 + "Philosophy: The Use of Rainwater Tanks in Ethical Rainwater Harvesting for Sustainability": 1 + "Ethical Approach to Sustainability: Rainwater Harvesting and the Role of Downspout Diverters": 1 + "Living Sustainably: The Philosophy and Ethics of Rainwater Harvesting using Water Butts.": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis Using Google Classroom": 1 + "Exploring Words and Worlds: An English Course with Shakespearean Analysis via Zoom Meetings": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis and Grammarly Integration": 1 + "Interactive Words and Worlds: An English Course with Literary Analysis Using Smartboard Technology": 1 + "Words and Worlds: Utilizing Microsoft Teams for an Elementary English Course with Literary Analysis": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis and Turnitin Anti-Plagiarism Tools": 1 + "Words and Worlds: An English Course Integrating Literary Analysis with Podcast Technology": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis and Virtual Reality Experience": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis through E-books Technology": 1 + "Words and Worlds: An English Course with Literary Analysis Using Mind Mapping Techniques": 1 + "Art Creation: Exploring Impressionism with Acrylics and Palette Knives": 1 + "Art Creation: Discover Impressionism with Acrylics using Texture Techniques ": 1 + "Art Creation: Impressionism Through Acrylics and Glazing Techniques": 1 + "Art Creation: Mastering Impressionism with Acrylics and Easel Painting": 1 + "Art Creation: Discovering Impressionism with Acrylics and Layering Techniques": 1 + "Art Creation: Experimenting Impressionism with Acrylics using Brush Strokes": 1 + "Art Creation: Uncovering Impressionism with Acrylics and Blending Techniques": 1 + "Art Creation: Journey into Impressionism with Acrylics using Tinting Techniques": 1 + "Art Creation: Impressionism Adventure with Acrylics and Canvas Stretching": 1 + "Art Creation: Delving into Impressionism with Acrylics and Underpainting Techniques": 1 + "Analyzing the Impact of Carbon Paper and Typewriters on Workers' Rights Movements during the Industrial Revolution": 1 + "The Role of Carbon Paper and the Printing Press in Shaping Workers' Rights Movements during the Industrial Revolution": 1 + "The Influence of Carbon Paper and Telegraph Communication on Workers' Rights Movements in the Industrial Age": 1 + "Understanding the Link between Carbon Paper, Steam Power, and Workers' Rights Movements during the Industrial Revolution": 1 + "The Relationship between Carbon Paper and the Cotton Gin in Workers' Rights Movements during the Industrial Revolution": 1 + "The Contribution of Carbon Paper and the Spinning Jenny to Workers' Rights Movements during the Industrial Revolution": 1 + "Impact of Carbon Paper and the Power Loom on Workers' Rights Movements during the Industrial Revolution": 1 + "The Connection between Carbon Paper and the Mechanical Reaper in Workers' Rights Movements during the Industrial Revolution": 1 + "Carbon Paper and the Steam Engine: Its Influence on Workers' Rights Movements during the Industrial Revolution": 1 + "The Effect of Carbon Paper and the Sewing Machine on Workers' Rights Movements during the Industrial Revolution": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Python": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Machine Learning ": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques on Cloud Platforms": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Big Data Analytics ": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques using CUDA Technology": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Docker Containers": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques via GPU Acceleration": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with OpenMP": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques using Bioconductor Packages": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with MPI (Message Passing Interface)": 1 + "Language Arts: Mastering the Rhetoric of Economic Discourse through the Lens of Time-Series Econometrics Using STATA": 1 + "Analyzing Economic Discourse: A Comprehensive Study of Time-Series Econometrics with EViews ": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Deep Dive into Time-Series Econometrics and VAR Models ": 1 + "The Rhetoric of Economic Discourse: Exploring Time-Series Econometrics through ARIMA Models ": 1 + "Language Arts: Unpacking Economic Discourse with Time-Series Econometrics and Granger Causality": 1 + "Advanced Course in Economic Discourse: Time-Series Econometrics and Panel Data Analysis ": 1 + "Language Arts: The Rhetoric of Economic Discourse: A Deep Dive into Time-Series Econometrics using Gretl": 1 + "Delving into Economic Discourse: A Study of Time-Series Econometrics and Unit Root Tests": 1 + "Language Arts: The Rhetoric of Economic Discourse: Time-Series Econometrics and Cointegration Analysis with MATLAB": 1 + "Economic Discourse Deconstructed: Understanding Time-Series Econometrics through the Durbin-Watson Test.": 1 + "Astronomy: The Story of Star Gazing through Telescopes": 1 + "Astronomy: Unfolding the Universe with Radio Telescopes": 1 + "Astronomy: The Story of Star Gazing and Spectroscopy": 1 + "Astronomy: The Journey of Star Gazing with Hubble Space Telescope": 1 + "Astronomy: The Story of Star Gazing and Celestial Navigation": 1 + "Astronomy: Unraveling the Cosmos through Infrared Technology": 1 + "Astronomy: The Story of Star Gazing and the Concept of Light Years": 1 + "Astronomy: The Story of Star Gazing with Adaptive Optics": 1 + "Astronomy: Discovering the Universe with Satellite Telescopes": 1 + "Astronomy: The Story of Star Gazing and Space Probes.": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones with Interactive Flashcards": 1 + "Utilizing Anki for Advanced Homonyms and Homophones Mastery in Spelling and Vocabulary": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones through Online Quizzes": 1 + "Spelling and Vocabulary: Enhancing Homonyms and Homophones Knowledge with Duolingo": 1 + "Mastering Homonyms and Homophones in Spelling and Vocabulary: A Comprehensive Guide with Rosetta Stone": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones using Language Learning Apps": 1 + "Spelling and Vocabulary Mastery: Focusing on Homonyms and Homophones with Memrise": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones with the Aid of Language Immersion Technology": 1 + "Spelling and Vocabulary: Homonyms and Homophones Mastery through Virtual Reality": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones with the Support of Machine Learning Algorithms": 1 + "Basic Computer Programming: An Introduction to Python, Django Framework and PyCharm IDE": 1 + "Mastering Python and Django Framework with Git Version Control": 1 + "Exploring Python and Django Framework using Visual Studio Code": 1 + "Python and Django Framework: A Deep Dive into Object-Oriented Programming": 1 + "Python and Django Framework: Leveraging SQLite for Efficient Data Management": 1 + "Python and Django Framework: Introduction to Web Development with HTML Integration": 1 + "Basic Computer Programming with Python, Django Framework and Unit Testing Tools": 1 + "Python and Django Framework: Understanding MVC Architecture": 1 + "Python and Django Framework: Building Web Applications with Bootstrap": 1 + "Python and Django Framework: Implementing RESTful APIs with Postman.": 1 + "World History: The Age of Exploration and the Compass": 1 + "World History: The Age of Exploration - The Impact of Cartography": 1 + "World History: The Age of Exploration - The Role of Astrolabe": 1 + "World History: The Introduction of Caravels in The Age of Exploration": 1 + "World History: The Age of Exploration and the Quadrant": 1 + "World History: The Age of Exploration - The Influence of the Cross-Staff": 1 + "World History: The Age of Exploration - The Significance of the Sextant": 1 + "World History: The Age of Exploration - The Emergence of Latitude and Longitude Concepts": 1 + "World History: The Age of Exploration - The Revolutionary Backstaff": 1 + "World History: The Age of Exploration - The Adoption of Gunpowder Technology": 1 + "Essential English: Using Padlet and Google Docs for Character Development in Creative Writing": 1 + "Advanced Techniques: Using Padlet with Trello in Creative Writing for Character Development": 1 + "Essential English: Applying Padlet and Mind Mapping Tools for Enhanced Character Development": 1 + "Character Crafting: Utilizing Padlet & Scrivener for Effective Development in Creative Writing": 1 + "Essential English: Incorporating Padlet and Grammarly in Creative Writing for Robust Character Development": 1 + "Creative Writing Mastery: Using Padlet and Evernote for Comprehensive Character Development": 1 + "Essential English: Padlet and Storyboard That for Visual Character Development in Creative Writing": 1 + "Storytelling Essentials: Using Padlet and Plottr for Dynamic Character Development in Creative Writing": 1 + "Essential English: Applying Padlet and Microsoft Word Tools for Detailed Character Development": 1 + "Padlet Power: Combining Padlet with Google Slides for Interactive Character Development in Creative Writing.": 1 + "Logic: Principles of Reasoning and Argumentation with Syllogistic Logic": 1 + "Logic: Principles of Reasoning and Argumentation Using Propositional Calculus": 1 + "Logic: An In-depth Look into Principles of Reasoning and Argumentation with Truth Tables": 1 + "Logic: Principles of Reasoning and Argumentation - A Study on Formal Fallacies": 1 + "Logic: Principles of Reasoning and Argumentation with a Focus on Predicate Logic": 1 + "Logic: Exploring Principles of Reasoning and Argumentation Using Logical Connectives": 1 + "Logic: Principles of Reasoning and Argumentation - Understanding through Venn Diagrams": 1 + "Logic: Principles of Reasoning and Argumentation - An Introduction to Modal Logic": 1 + "Logic: Principles of Reasoning and Argumentation and the Role of Quantifiers": 1 + "Logic: Principles of Reasoning and Argumentation - Incorporating Set Theory.": 1 + "The Spinning Jenny's Impact on Power Loom: Transformation of English Trade Language in the Industrial Age": 1 + "The Steam Engine's Role in the Power Loom Revolution: Deciphering Blast Furnace Terminology in English Trade Language": 1 + "Cotton Gin and Power Loom: Revisiting the Industrial Age through Trade Language Transformation": 1 + "Effect of Jacquard Loom on the Power Loom: An Analysis of English Trade Language in the Industrial Age": 1 + "Power Loom and the Impact of the Telegraph: Transformation of English Trade Language in the Industrial Age": 1 + "The Influence of the Water Frame on Power Loom: A Study on English Trade Language in the Industrial Age": 1 + "Power Loom and the Evolution of the Flying Shuttle: Deciphering Blast Furnace Terminology in the Industrial Age": 1 + "The Role of Throstle Spinning Machine in Power Loom Development: Transformation of English Trade Language": 1 + "Power Loom and the Revolution of the Spinning Mule: An Insight into Industrial Age English Trade Language": 1 + "Impact of the Carding Machine on Power Loom: Deciphering Blast Furnace Terminology in the Industrial Era.": 1 + "Physical Education: The Rhythm of Dance and Music through Zumba": 1 + "Physical Education: The Rhythm of Dance and Music: A Focus on Ballet Techniques": 1 + "Physical Education: The Rhythm of Dance and Music with Aerobic Fitness": 1 + "Physical Education: The Rhythm of Dance and Music: Exploring Hip-Hop Culture": 1 + "Physical Education: The Rhythm of Dance and Music: a Study of Contemporary Dance": 1 + "Physical Education: The Rhythm of Dance and Music: An Introduction to Salsa": 1 + "Physical Education: The Rhythm of Dance and Music: Training with Dance Mat Technology": 1 + "Physical Education: The Rhythm of Dance and Music: Enhancing Performance through Heart Rate Monitors": 1 + "Physical Education: The Rhythm of Dance and Music: The Role of Choreography Software": 1 + "Physical Education: The Rhythm of Dance and Music: Understanding Rhythm through Drumming Techniques.": 1 + "Biology of Hearing: Exploring Auditory Perception with FM Systems and Cochlear Implants": 1 + "Auditory Neurobiology: Insights from FM Systems and Hearing Aids": 1 + "Understanding Auditory Perception: FM Systems and the Role of the Auditory Cortex": 1 + "FM Systems in Audiology: A Deep Dive into the Biology of Hearing and the Use of Bone Conduction Devices": 1 + "Biology of Hearing: Decoding Auditory Perception with FM Systems and Auditory Brainstem Responses": 1 + "Auditory Perception Explored: The Interplay Between FM Systems and Otoacoustic Emissions": 1 + "Unraveling the Mysteries of Hearing: FM Systems, Sound Localization, and Beyond": 1 + "Auditory Perception and FM Systems: The Impact and Integration of Modern Tympanometry": 1 + "The Biology of Sound: Exploring Auditory Perception using FM Systems and Real Ear Measurements": 1 + "Auditory Perception: A Comprehensive Study of FM Systems, Speech Audiometry, and the Biology of Hearing.": 1 + "Chemistry for Kids: Exploring Acidity and Alkalinity with Red Cabbage Indicator and Digital pH Meter": 1 + "Hands-On Chemistry: Learning pH Scale with Red Cabbage Indicator, pH Test Strips, and Colorimeter ": 1 + "Interactive Chemistry: Discovering pH Scale using Red Cabbage Indicator, pH Test Strips, and a Microscope": 1 + "Fun Chemistry Experiments: Using Red Cabbage Indicator and pH Test Strips to Evaluate Household Substances": 1 + "Chemistry Explorations: Understanding pH Scale with Red Cabbage Indicator, pH Test Strips, and Litmus Paper": 1 + "Junior Chemistry: Discovering pH Scale with Red Cabbage Indicator, pH Test Strips, and a Spectrophotometer": 1 + "Chemistry for Beginners: Experimenting with pH using Red Cabbage Indicator, pH Test Strips, and a Digital pH Tester": 1 + "Kids Chemistry Lab: Discovering pH Scale with Red Cabbage Indicator, pH Test Strips, and Universal Indicator Solution": 1 + "Chemistry Adventures: Learning about pH Scale using Red Cabbage Indicator, pH Test Strips, and pH Probe": 1 + "Easy Chemistry Experiments: Discovering pH Scale with Red Cabbage Indicator, pH Test Strips, and a pH Buffer Solution": 1 + "Exploring the Impact of Sound Waves through Sonoluminescence: A Detailed Study of Acoustic Technology in Visual Art": 1 + "The Influence of Sound Waves on Holography: A Deep Dive into the Role of Acoustic Technology in Visual Art": 1 + "The Impact of Sound Waves on Cymatics: A Comprehensive Analysis of Acoustic Technology in Visual Art": 1 + "The Role of Sound Waves in Doppler Effect: An In-depth Study of Acoustic Technology in Visual Art": 1 + "Revealing the Influence of Sound Waves through Theremin: A Detailed Examination of Acoustic Technology in Visual Art": 1 + "Sound Waves and Oscilloscopes: A Deep Dive into the Role of Acoustic Technology in Visual Art": 1 + "The Influence of Sound Waves on Resonance: A Thorough Investigation of Acoustic Technology in Visual Art": 1 + "Deciphering the Impact of Sound Waves through Soundbeam: A Deep Dive into the Role of Acoustic Technology in Visual Art": 1 + "The Influence of Sound Waves on Echo: A Comprehensive Dissection of Acoustic Technology in Visual Art": 1 + "Sound Waves and Frequency Modulation: A Deep Dive into the Role of Acoustic Technology in Visual Art": 1 + "Geography: A Satellite Imaging Approach to Landforms and Landmarks: An International Survey": 1 + "Geography: Utilizing GIS in Studying Landforms and Landmarks: An International Perspective": 1 + "Geography: Radar Technology and its Role in Deciphering Landforms and Landmarks: A Global Analysis": 1 + "Geography: Examining Landforms and Landmarks Through Drone Technology: An International Survey": 1 + "Geography: The Use of LiDAR in Analyzing Landforms and Landmarks: A Global Study": 1 + "Geography: An International Survey of Landforms and Landmarks through Topographic Map Interpretation": 1 + "Geography: Thermal Imaging in the Study of Landforms and Landmarks: An International Survey": 1 + "Geography: The Role of GPS Technology in Studying Landforms and Landmarks: A Worldwide Survey": 1 + "Geography: 3D Modelling Techniques in the Analysis of Landforms and Landmarks: An International Perspective": 1 + "Geography: Remote Sensing Technology in the Study of Landforms and Landmarks: A Global Analysis": 1 + "Biology: The Role of Epigenetics in Deciphering Human Adaptation to Climate Change Using DNA Methylation": 1 + "Biology: Applying Next-Generation Sequencing to Understand Epigenetic Influences on Human Adaptation to Environmental Changes": 1 + "Biology: The Contribution of Epigenetics and Genomic Imprinting in Human Adaptation to Environmental Changes": 1 + "Understanding Human Adaptation to Environmental Changes: A Study on Epigenetics Using Chromatin Immunoprecipitation": 1 + "Biology: The Role of Epigenetics and Histone Modification in Human Adaptation to Environmental Changes": 1 + "Biology: Epigenetic Regulation and Human Adaptation to Environmental Changes: Insights from Bisulfite Sequencing": 1 + "Using Epigenomics to Decipher Human Adaptation to Environmental Changes: A Focus on DNA Methylation": 1 + "Biology: Epigenetics and CRISPR-Cas9: Tools to Decipher Human Adaptation to Environmental Changes": 1 + "Biology: The Role of Epigenetics in Human Adaptation to Environmental Changes: A Study Using RNA Sequencing": 1 + "Biology: Decoding Human Adaptation to Environmental Changes through Epigenetics and Single-Cell Sequencing": 1 + "Computer Science: Web Development Basics with Scratch, CSS and HTML5": 1 + "Computer Science: Introduction to CSS Animations in Web Development ": 1 + "Computer Science: Web Development Basics with Scratch, CSS and JavaScript": 1 + "Computer Science: Web Development Basics with Scratch, CSS and Bootstrap Framework ": 1 + "Computer Science: Web Development Basics - Exploring Grid Layout in CSS ": 1 + "Computer Science: Web Development Basics - CSS Flexbox and Scratch Programming": 1 + "Computer Science: Web Development Basics with Scratch, CSS and Responsive Design": 1 + "Computer Science: Web Development with Scratch, CSS and SASS Preprocessor": 1 + "Computer Science: Building Web Interfaces with Scratch, CSS and jQuery": 1 + "Computer Science: Web Development Basics - Scratch Programming and CSS Transitions.": 1 + "Computer Science: Introduction to JavaScript and Web Development ": 1 + "Computer Science: Python Basics for Coding and Web Development": 1 + "Computer Science: Understanding HTML for Coding and Web Development": 1 + "Computer Science: Basics of Coding with C++ and Web Development": 1 + "Computer Science: Fundamentals of CSS in Coding and Web Development": 1 + "Computer Science: Exploring Ruby in Coding and Web Development": 1 + "Computer Science: Basics of Coding with Java and Web Development": 1 + "Computer Science: Web Development with PHP and Basic Coding": 1 + "Computer Science: Basics of Coding and Web Development using SQL": 1 + "Computer Science: Intro to Swift for Coding and Web Development": 1 + "Physics: Understanding Vibrations and Sound through Waveform Analysis using Fourier Transforms": 1 + "Physics: Deciphering the Physics of Vibrations and Sound through Waveform Analysis and Oscilloscope Use": 1 + "Physics: Investigating Sound Phenomena with Waveform Analysis and Spectrum Analyzers": 1 + "Physics: Exploring Vibrations and Sound through Waveform Analysis and Digital Signal Processing": 1 + "Physics: Mastering the Physics of Vibrations and Sound through Waveform Analysis using MATLAB": 1 + "Physics: Decoding Vibrations and Sound Physics with Waveform Analysis and Time-Frequency Representation": 1 + "Physics: Unraveling the Physics of Sound and Vibrations through Waveform Analysis using Wavelets": 1 + "Physics: Analyzing Vibrations and Sound through Waveform Analysis using Python Programming": 1 + "Physics: Delving into Vibrations and Sound through Waveform Analysis and Spectrogram Visualization ": 1 + "Physics: Discovering the Physics of Vibrations and Sound by Waveform Analysis using Fast Fourier Transforms": 1 + "Economics 101: An Exploration of Supply and Demand Through Graphical Analysis": 1 + "Economics 101: Advanced Supply and Demand Charts in Microeconomics": 1 + "Economics 101: Unveiling Supply and Demand Using Economic Models": 1 + "Economics 101: The Impact of Elasticity on Supply and Demand": 1 + "Economics 101: Understanding Supply and Demand via Price Mechanism": 1 + "Economics 101: Examination of Supply and Demand with Quantitative Methods": 1 + "Economics 101: Insights into Supply and Demand through Market Equilibrium": 1 + "Economics 101: Applying Game Theory to Understand Supply and Demand": 1 + "Economics 101: A Deep Dive into Supply and Demand Using Econometrics": 1 + "Economics 101: Demystifying Supply and Demand with the Concept of Marginal Utility.": 1 + "Language Arts: Exploring Metaphors in Renaissance Poetry ": 1 + "Language Arts: The Use of Imagery in Renaissance Poetry ": 1 + "Language Arts: Analyzing Sonnets of the Renaissance Period ": 1 + "Language Arts: Understanding Symbolism in Renaissance Poetry ": 1 + "Language Arts: The Influence of Printing Press on Renaissance Poetry ": 1 + "Language Arts: Study of Allegory in Renaissance Poetry ": 1 + "Language Arts: The Role of Alliteration in Renaissance Poetry ": 1 + "Language Arts: Exploring Renaissance Poetry Through Quill Writing ": 1 + "Language Arts: The Impact of Humanism on Renaissance Poetry ": 1 + "Language Arts: Decoding Metrical Patterns in Renaissance Poetry.": 1 + "The Rhetoric of Economic Policies and Unemployment: A Detailed Linguistic Study with Predictive Modeling using Python": 1 + "Exploring Economic Policies Through Text Analysis: A Linguistic Study with Machine Learning Predictive Modelling ": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Big Data Analytics": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Artificial Intelligence": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Neural Networks": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Data Mining Techniques": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using TensorFlow": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Regression Analysis ": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Natural Language Processing": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Deep Learning Algorithms.": 1 + "English: Storytelling and Narrative: The Impact of Mobile Apps, Blockchain Technology, and Virtual Reality on Modern Literature": 1 + "The Revolution of English: Storytelling and Narrative in the Era of Mobile Apps, Blockchain Technology, and Cryptocurrency": 1 + "English: The Evolution of Storytelling and Narrative through Mobile Apps, Blockchain Technology, and Augmented Reality ": 1 + "Transformation of English: Storytelling and Narrative via Mobile Apps, Blockchain Technology, and Internet of Things": 1 + "English: Storytelling and Narrative: Exploring the Intersection of Mobile Apps, Blockchain Technology, and Artificial Intelligence": 1 + "English: The Future of Storytelling and Narrative: Mobile Apps, Blockchain Technology, and Cloud Computing ": 1 + "English: Storytelling and Narrative: The Role of Mobile Apps, Blockchain Technology, and Cybersecurity in Story Creation": 1 + "English: Storytelling and Narrative: The Influence of Mobile Apps, Blockchain Technology, and Machine Learning on Storytelling Techniques": 1 + "English: Storytelling and Narrative: Analysing the Integration of Mobile Apps, Blockchain Technology, and Data Science": 1 + "English: Storytelling and Narrative: The Emergence of Mobile Apps, Blockchain Technology, and Quantum Computing in Modern Literature.": 1 + "Visual Arts: Exploring Techniques and History of Oil Painting": 1 + "The Artistic Journey: Techniques and History of Painting with Acrylics": 1 + "The Digital Canvas: Techniques and History of Digital Painting": 1 + "Visual Arts: Techniques and History of Watercolor Painting": 1 + "Visual Arts: Techniques and History of Fresco Painting": 1 + "Mastering the Palette Knife: Techniques and History of Palette Knife Painting": 1 + "Visual Arts: Techniques and History of Painting using Airbrush Technology": 1 + "The Art of Impasto: Techniques and History of Textured Painting": 1 + "Visual Arts: Techniques and History of Painting with Gouache": 1 + "The Pastel Perspective: Techniques and History of Pastel Painting": 1 + "Economics: The Influence of Public and Private Keys in Blockchain on Global Trade through Bitcoin": 1 + "Understanding Global Trade: The Role of Smart Contracts in Blockchain Economics": 1 + "Utilizing Cryptographic Hash Functions: The Impact of Public and Private Keys in Blockchain on Global Trade": 1 + "Economics and Cryptography: The Effect of Merkle Trees in Blockchain on Global Trade": 1 + "A Detailed Study of Peer-to-Peer Networks: The Influence of Public and Private Keys in Blockchain on Global Trade": 1 + "Deciphering Global Trade: The Impact of Digital Signatures in Blockchain Economics": 1 + "The Role of Consensus Algorithms: How Public and Private Keys in Blockchain Affect Global Trade": 1 + "Revolutionizing Global Trade: The Impact of Distributed Ledgers in Blockchain through Public and Private Keys": 1 + "Economics Reimagined: The Effect of Proof-of-Work Concept in Blockchain on Global Trade": 1 + "Exploring Blockchain: The Impact of Public and Private Keys on Global Trade with Ethereum as a Case Study": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics through Motion Capture Technology": 1 + "Physical Education: Gymnastics and Body Control: Evaluating Rhythmic Gymnastics Utilizing Video Analysis": 1 + "Physical Education: Gymnastics and Body Control: Understanding Rhythmic Gymnastics through Biomechanical Analysis": 1 + "Physical Education: Gymnastics and Body Control: Studying Rhythmic Gymnastics with Augmented Reality": 1 + "Physical Education: Gymnastics and Body Control: Enhancing Rhythmic Gymnastics Performance using Wearable Technology ": 1 + "Physical Education: Gymnastics and Body Control: Assessing Rhythmic Gymnastics through Kinematic Analysis": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics with 3D Motion Tracking": 1 + "Physical Education: Gymnastics and Body Control: Rhythmic Gymnastics Examination using Force Plate Technology": 1 + "Physical Education: Gymnastics and Body Control: Rhythmic Gymnastics Analysis through Balance Evaluation Systems": 1 + "Physical Education: Gymnastics and Body Control: Investigating Rhythmic Gymnastics using Pressure Mat Systems": 1 + "Advanced Mathematics: Time Series Analysis for Crop Yield Forecasting using Python and ARIMA": 1 + "Advanced Mathematics: Weather Prediction for Agriculture with Python and Deep Learning": 1 + "Advanced Mathematics: Time Series Analysis for Soil Moisture Forecasting with Python and LSTM networks": 1 + "Advanced Mathematics: Predictive Irrigation Scheduling using Python and Time Series Analysis": 1 + "Advanced Mathematics: Time Series Analysis for Agriculture Forecasting with Python and SARIMA model": 1 + "Advanced Mathematics: Crop Disease Prediction using Python and Time Series Analysis": 1 + "Advanced Mathematics: Time Series Analysis for Agriculture Forecasting with Python and Prophet library": 1 + "Advanced Mathematics: Precision Agriculture with Python using Time Series Analysis and Machine Learning": 1 + "Advanced Mathematics: Time Series Analysis using Python and TensorFlow for Agriculture Forecasting": 1 + "Advanced Mathematics: Python-based Time Series Analysis for Predicting Harvest Time in Agriculture using RNN.": 1 + "Physical Education: A Comprehensive Analysis of Rhythmic Gymnastics through Inertial Sensors in Balance Evaluation Systems": 1 + "Implementing Pressure Mats in Rhythmic Gymnastics: Body Control and Balance Evaluation Systems": 1 + "Physical Education: Rhythmic Gymnastics Analysis through Photogrammetry in Balance Evaluation Systems": 1 + "The Role of Force Plates in Analyzing Rhythmic Gymnastics: A Study in Balance Evaluation Systems": 1 + "Utilizing 3D Motion Capture in Rhythmic Gymnastics Analysis: A Course in Physical Education": 1 + "Physical Education: Rhythmic Gymnastics and Body Control through Electromyography in Balance Evaluation Systems": 1 + "Gait Analysis Tools in Rhythmic Gymnastics: A Deep Dive into Balance Evaluation Systems": 1 + "Physical Education: Rhythmic Gymnastics Analysis through the Use of Wearable Sensors in Balance Evaluation Systems": 1 + "Application of Gyroscopes in Rhythmic Gymnastics Analysis: A Physical Education Course": 1 + "Physical Education: Biofeedback Technology in the Analysis of Rhythmic Gymnastics through Balance Evaluation Systems": 1 + "Geography: Mapping Traditional Sports and Games Globally Using ArcGIS for Geospatial Analysis": 1 + "Geography: Implementing Remote Sensing in Mapping Traditional Sports and Games Globally": 1 + "Geography: Utilizing Cartographic Principles in Global Mapping of Traditional Sports and Games": 1 + "Geography: Spatial Data Analysis in Global Mapping of Traditional Sports and Games": 1 + "Geography: Integrating GPS Technology in Mapping Traditional Sports and Games Globally": 1 + "Geography: Global Mapping of Traditional Sports and Games via Geodatabase Management": 1 + "Geography: Quantum GIS Application in Global Mapping of Traditional Sports and Games": 1 + "Geography: Leveraging Geostatistical Analysis in Mapping Traditional Sports and Games Globally": 1 + "Geography: Mapping Traditional Sports and Games Globally with Aerial Imagery and Geospatial Analysis": 1 + "Geography: Using Lidar Technology in the Global Mapping of Traditional Sports and Games.": 1 + "Exploring Photovoltaic Technology in Climate Literature: The Depiction of Solar Power in 10 Major Works": 1 + "Harnessing the Sun: An Analysis of Solar Panels and their Influence on Literary Themes in Climate Change Literature": 1 + "Literature and the Green Revolution: The Role of Solar Inverters in 10 Climate Change Narratives": 1 + "The Power of the Sun: A Study of Solar Batteries in Climate Change Literature": 1 + "From Page to Panel: The Representation of Solar Power Systems in Climate Change Literature": 1 + "Lighting up Literature: The Role of Solar Cells in Climate Change Narratives": 1 + "Shining a Light on Climate Literature: The Influence of Solar Tracking Systems": 1 + "Literary Illuminations: The Impact of Solar Energy Storage in Climate Change Literature": 1 + "Solar Power in Print: An Examination of Concentrated Solar Power's Role in Literature": 1 + "Words into Watts: The Role of Solar Thermal Energy in Climate Change Literature.": 1 + "Chemistry: The Role of Spectroscopy in Recycling and its Chemical Processes": 1 + "Analyzing the Chemical Processes in Recycling using Gas Chromatography": 1 + "Chemistry: Mass Spectrometry and Its Application in Recycling Processes": 1 + "The Use of Infrared Spectroscopy in Recycling and its Chemical Processes": 1 + "Chemistry: Exploring Recycling Processes through Nuclear Magnetic Resonance": 1 + "The Role of Electrochemical Analysis in Recycling and its Chemical Processes": 1 + "Chemistry: Application of X-ray Diffraction in Recycling Processes": 1 + "Recycling and its Chemical Processes: A Study through Atomic Absorption Spectroscopy": 1 + "The Impact of Fourier Transform Infrared Spectroscopy on Recycling Processes": 1 + "Understanding Recycling through Chemical Processes using Ultraviolet-Visible Spectroscopy": 1 + "Social Studies: Analyzing Civil Rights Movements through Documentaries": 1 + "Social Studies: The Role of Photography in Understanding Civil Rights Movements": 1 + "Social Studies: Social Media's Impact on Civil Rights Movements": 1 + "Social Studies: Understanding Civil Rights Movements through Oral Histories": 1 + "Social Studies: The Influence of Television on Civil Rights Movements": 1 + "Social Studies: Examining Civil Rights Movements through Political Cartoons": 1 + "Social Studies: Understanding Civil Rights Movements through Propaganda Analysis": 1 + "Social Studies: Decoding Civil Rights Movements through Iconography": 1 + "Social Studies: The Role of Newspaper Journalism in Civil Rights Movements": 1 + "Social Studies: Understanding Civil Rights Movements through Speech Analysis": 1 + "Art Creation: Journey into Impressionism with Acrylics using Tinting and Glazing Techniques": 1 + "Art Creation: Deep Dive into Impressionism with Acrylics using Palette Knife Techniques": 1 + "Art Creation: Exploring Impressionism with Acrylics and Easel Techniques": 1 + "Art Creation: Journey into Impressionism with Acrylics using Brushwork Techniques": 1 + "Art Creation: Discovery of Impressionism with Acrylics using Wet-on-Wet Techniques": 1 + "Art Creation: Mastering Impressionism with Acrylics using Underpainting Techniques": 1 + "Art Creation: Journey into Impressionism with Acrylics: Focus on Color Theory": 1 + "Art Creation: Journey into Impressionism with Acrylics using Layering Techniques": 1 + "Art Creation: Unraveling Impressionism with Acrylics using Sponging Techniques": 1 + "Art Creation: Understanding Impressionism with Acrylics using Dry Brushing Techniques": 1 + "Art Creation: Voyage into Impressionism with Acrylics using Grisaille Techniques": 1 + "Logic: The Art of Reasoning with Syllogistic Logic": 1 + "Logic: Mastering the Art of Reasoning with Inductive Arguments": 1 + "Logic: Art of Reasoning and Critical Thinking with Deductive Reasoning Tools": 1 + "Logic: Art of Reasoning - Exploring Propositional Logic": 1 + "Logic: Art of Reasoning with Modal Logic Concepts": 1 + "Logic: Art of Reasoning - Understanding with Semantic Tableaux": 1 + "Logic: Art of Reasoning - A Journey into First-Order Logic": 1 + "Logic: The Art of Reasoning with Proof Theory Techniques": 1 + "Logic: Art of Reasoning - Decoding with Truth Tables": 1 + "Logic: Art of Reasoning - A Guide to Understanding Predicate Logic": 1 + "Logic: Art of Reasoning - Harnessing the Power of Logic Gates.": 1 + "Utilizing Google Earth VR for Historical Comparative Analysis in Social Studies: A Deep Dive into Ten Global Cultures": 1 + "Historical Comparative Analysis in Social Studies: Exploring Global Cultures with Oculus Rift VR and Ten Case Studies": 1 + "Leveraging Tilt Brush for Immersive Experience in Global Cultures: Historical Comparative Analysis in Social Studies": 1 + "Exploring Global Cultures through VR Technology: A Historical Comparative Analysis Using Unity Engine": 1 + "Historical Comparative Analysis in Social Studies: A Study of Ten Global Cultures Using Unreal Engine VR Technology": 1 + "Social Studies in VR: Analyzing Global Cultures Historically with HTC Vive and Ten Unique Approaches": 1 + "Historical Comparative Analysis in Social Studies: Understanding Global Cultures through Microsoft HoloLens VR": 1 + "Historical Comparative Analysis Using VR and Big Data: A Detailed Study of Ten Global Cultures ": 1 + "Augmented Reality in Historical Comparative Analysis: Exploring Ten Global Cultures in Social Studies with ARKit": 1 + "Historical Comparative Analysis in Social Studies: A Journey into Ten Global Cultures Using PlayStation VR.": 1 + "Mastering Packet Switching: A Comprehensive Analysis of TCP/IP with Cisco Routers Using Wireshark": 1 + "The Science of Packet Switching: An In-Depth Study of TCP/IP via Cisco Routers and OSPF Protocol": 1 + "Advanced Packet Switching: A Detailed Exploration of TCP/IP using Cisco Routers and EIGRP": 1 + "The Art of Packet Switching: A Detailed Study of TCP/IP using Cisco Routers and VLANs": 1 + "The Intricacies of Packet Switching: Exploring TCP/IP with Cisco Routers and NAT Technology": 1 + "Packet Switching Mastery: A Comprehensive Study of TCP/IP using Cisco Routers and IPv6": 1 + "The Art of Packet Switching: An In-depth Analysis of TCP/IP using Cisco Routers and BGP Protocol": 1 + "Advanced Packet Switching Techniques: Detailed Study of TCP/IP Using Cisco Routers and EtherChannel": 1 + "The Art of Packet Switching: TCP/IP Deep Dive with Cisco Routers and NetFlow Analysis": 1 + "Packet Switching Expertise: A Detailed Study of TCP/IP using Cisco Routers and Subnetting Techniques.": 1 + "Language Arts: The Evolution of Language - An In-depth Analysis of the Braille System and the Perkins Brailler ": 1 + "Language Arts: Exploring the Braille System - The Role of Slate and Stylus in its Evolution ": 1 + "The Evolution of Language: A Comprehensive Study on the Braille System and Braille e-books ": 1 + "Language Arts: The Evolution of Language - Braille System and the Impact of Digital Braille Displays ": 1 + "Language Arts: Unraveling the Braille System - The Revolutionary Role of Braille Embossers ": 1 + "The Evolution of Language: A Deep Dive into the Braille System and Braille Notetakers ": 1 + "Language Arts: Braille System - The Transformation Brought by Braille Transcription Software ": 1 + "The Evolution of Language: The Braille System and the Influence of Braille Smartphones ": 1 + "Language Arts: The Braille System - Its Evolution and the Contribution of Refreshable Braille Technology ": 1 + "Language Arts: The Evolution and Development of the Braille System through Braille Printers.": 1 + "Biology: Exploring Plant Genetics and Crop Breeding through CRISPR-Cas9 Technology": 1 + "Biology: Deep Dive in Plant Genetics and Crop Breeding with Micropropagation Techniques": 1 + "Biology: An Introduction to Plant Genetics via Polymerase Chain Reaction (PCR) and Crop Breeding Techniques": 1 + "Biology: Studying Plant Genetics and Crop Breeding using DNA Sequencing": 1 + "Biology: A Detailed Study of Plant Genetics using Gel Electrophoresis and Crop Breeding ": 1 + "Biology: A Comprehensive Guide to Plant Genetics and Crop Breeding using Genomic Selection": 1 + "Biology: Introduction to Plant Genetics and Crop Breeding through Genome Editing Techniques ": 1 + "Biology: Exploring Plant Genetics and Crop Breeding using Next Generation Sequencing": 1 + "Biology: Introduction to Plant Genetics and Crop Breeding with Marker-Assisted Selection": 1 + "Biology: Plant Genetics and Crop Breeding - A Study using RNA Interference Technology": 1 + "Exploring Human Nutrition: A Comprehensive Study through High-Resolution Fluorescence Microscopy": 1 + "Investigating Digestive Processes: An In-Depth Look with Fluorescence Microscopy and Flow Cytometry": 1 + "Decoding Nutrition through Confocal Fluorescence Microscopy: A Detailed Study": 1 + "Understanding Gastrointestinal Health: Nutrition, Digestion, and Fluorescence Microscopy Analysis": 1 + "In-Depth Analysis of Nutrient Absorption through Quantum Dots and Fluorescence Microscopy": 1 + "Integrated Approach to Nutrition: Understanding Digestion via Two-Photon Fluorescence Microscopy": 1 + "Science Unveiled: Exploring the Gut Microbiome through Fluorescence Microscopy and Metagenomics": 1 + "Exploring Nutritional Science: A Deep Dive into Digestion with Super-Resolution Microscopy": 1 + "Deciphering Digestive Physiology: A Comprehensive Overview using Fluorescence Microscopy and PET Scans": 1 + "Unveiling Nutritional Science through Fluorescence Microscopy and Proteomics: A Detailed Approach to Digestive Health.": 1 + "Chemistry: An In-depth Study of Biochemistry and Spectrophotometry using Nuclear Magnetic Resonance": 1 + "Chemistry: Comprehensive Understanding of Biochemistry and Spectrophotometry with Mass Spectrometry": 1 + "Chemistry: Advanced Biochemistry and Spectrophotometry Techniques using Gas Chromatography": 1 + "Chemistry: Biochemistry and Spectrophotometry Explored through Fourier Transform Infrared Spectroscopy": 1 + "Chemistry: Biochemistry and Spectrophotometry Analysis through Molecular Modelling": 1 + "Chemistry: Biochemistry and Spectrophotometry Insights using Scanning Electron Microscopy": 1 + "Chemistry: Biochemistry and Spectrophotometry with a Focus on Crystallography": 1 + "Chemistry: Biochemistry and Spectrophotometry Explored through X-ray Diffraction": 1 + "Chemistry: Biochemistry and Spectrophotometry using High Performance Liquid Chromatography": 1 + "Chemistry: In-depth Biochemistry and Spectrophotometry Study with Raman Spectroscopy.": 1 + "A Detailed Examination of Brain Functionality: Implementing Electroencephalography in Transcranial Magnetic Stimulation Using MATLAB": 1 + "Brain Functionality Explored: Utilizing the EEG Data Analysis Tool 'EEGLAB' in TMS": 1 + "Advanced Study in Brain Function: Implementing Electroencephalography in Transcranial Magnetic Stimulation with OpenVibe": 1 + "A Specialized Approach to Brain Function: The Role of Python in EEG and TMS": 1 + "A Comprehensive Review of Brain Functionality: Use of SPSS in EEG Data Analysis for TMS": 1 + "A Close Look at Brain Functionality: The Implementation of FieldTrip Toolbox in EEG and TMS Studies": 1 + "Brain Functionality and Neuroscience: Incorporating the Brainstorm Toolbox in EEG and TMS": 1 + "An In-depth Analysis of Brain Functionality: The Role of R Programming in EEG and TMS": 1 + "Brain Functionality Explored: Using the Emotiv EPOC+ in EEG and TMS Studies": 1 + "A Detailed Study on Brain Function: The Use of LabVIEW in EEG and TMS Analysis.": 1 + "Philosophy: The Influence of Socratic Dialogue on Modern Democratic Societies": 1 + "Philosophy: The Impact of Plato's Allegory of the Cave on Modern Perception Theory": 1 + "Philosophy: The Influence of Aristotle's Logic on Modern Computational Technologies": 1 + "Philosophy: How Epictetus's Stoicism Shaped Modern-day Resilience Strategies": 1 + "Philosophy: Decoding the Influence of Pythagoras Theorem on Modern Mathematical Concepts": 1 + "Philosophy: The Influence of Heraclitus's Flux Doctrine on Modern Physics": 1 + "Philosophy: The Role of Sophist Rhetoric in Modern Political Discourse": 1 + "Philosophy: Tracing the Influence of Platonic Solids on Modern Geometry": 1 + "Philosophy: The Effect of Zeno's Paradoxes on Modern Quantum Mechanics": 1 + "Philosophy: How Ancient Greek Skepticism Influences Modern Scientific Methods": 1 + "Utilizing Python and Audacity for Beat Creation with MIDI: An Introductory Course in Music Technology and Computer Science": 1 + "Exploring Python and Audacity for Beat Creation using Oscillators: A Beginner's Guide to Computer Science in Music": 1 + "Python, Audacity, and Digital Signal Processing for Beat Creation: An Introductory Course in Music Technology": 1 + "Using Python and Audacity for Beat Creation with Specific Focus on Equalization: An Introduction to Computer Science in Music Technology": 1 + "Python, Audacity, and Ableton Live for Beat Creation: A Comprehensive Introduction to Music Technology and Computer Science": 1 + "Integrating Python, Audacity, and Synthesis for Beat Creation: A Primer on Computer Science in Music Technology": 1 + "Python, Audacity, and Logic Pro X: Beat Creation and Music Production - An Introduction to Computer Science in Music": 1 + "Learning Beat Creation with Python, Audacity, and Audio Effects: An Introduction to Computer Science in Music Technology": 1 + "Mastering Beat Creation with Python, Audacity, and the Fourier Transform: A Comprehensive Guide to Computer Science in Music Production": 1 + "Python, Audacity, and Sound Design for Beat Creation: A Detailed Introduction to Computer Science in Music Technology.": 1 + "Language Arts: Exploring Storytelling through Song using Digital Audio Workstations": 1 + "Language Arts: The Art of Storytelling through Song using Metaphor": 1 + "Language Arts: Storytelling through Song - An Analysis of Lyrical Structure": 1 + "Language Arts: The Art of Storytelling through Song with the aid of GarageBand": 1 + "Language Arts: Storytelling through Song - A Study on Rhyme Schemes": 1 + "Language Arts: The Art of Storytelling through Song using Symbolism": 1 + "Language Arts: The Art of Storytelling through Song - Utilizing Audacity": 1 + "Language Arts: The Art of Storytelling through Song - The Power of Imagery": 1 + "Language Arts: Storytelling through Song - Exploring Themes with Pro Tools": 1 + "Language Arts: The Art of Storytelling through Song - Understanding Alliteration and Assonance.": 1 + "Neuroscience of Music: An In-Depth Look at the Brain's Response to Melody through EEG Technology": 1 + "Exploring Brain's Reaction to Harmonies: A Deep Dive into fMRI Scans in Music Neuroscience": 1 + "PET Scans and Music: A Specific Study of Neuroscience and the Brain's Response to Melodies": 1 + "Music and the Brain: Understanding Neural Plasticity through the Lens of Melodies": 1 + "Brain's Response to Melody: A Comprehensive Study using Transcranial Magnetic Stimulation (TMS)": 1 + "Neuroimaging Techniques in Music: An Examination of the Brain's Response to Tonal Variations": 1 + "The Dopamine Release: Exploring the Neuroscience of Music through Neurotransmitter Analysis": 1 + "Functional Connectivity in the Brain: Investigating the Neuroscience of Music through Diffusion Tensor Imaging (DTI)": 1 + "The Mirror Neuron System in Music: A Study of Neuroscience and the Brain's Response to Melody": 1 + "The Auditory Cortex and Music: Using Magnetic Resonance Spectroscopy to Study the Neuroscience of Melody": 1 + "Language Arts: The Impact of Siri on Language Evolution in the Age of Artificial Intelligence": 1 + "Language Arts: Exploring the Role of Google Translate in the Evolution of Language in AI Era": 1 + "Language Arts: The Influence of Machine Learning on Language Transformation within Artificial Intelligence": 1 + "Language Arts: The Evolution of Language in the Age of Artificial Intelligence: A NLP Perspective": 1 + "Language Arts: Understanding the Effect of IBM's Watson on Language Evolution in AI": 1 + "Language Arts: The Evolution of Language with Chatbots in the AI Age": 1 + "Language Arts: The Role of Text-to-Speech Technology in Language Evolution during AI Era": 1 + "Language Arts: Examining the Impact of Alexa's AI on Language Evolution": 1 + "Language Arts: How Automated Translation Services are Shaping Language Evolution in the AI Age": 1 + "Language Arts: Decoding Language Evolution in the Age of AI through Voice Recognition Software": 1 + "Comprehensive Analysis of Electromagnetism: An In-depth Study using Tesla Coils and Oscilloscope.": 1 + "Exploring Motion and Energy: Detailed Examination of Electromagnetism with Tesla Coils and Faraday's Law.": 1 + "Electromagnetic Dynamics: A Deep Dive into Tesla Coils and Magnetic Field Measurement.": 1 + "Tesla Coils and the Lorentz Force: A Specific Study of Electromagnetism and Motion.": 1 + "Advanced Electromagnetism: Studying Energy Motion with Tesla Coils and Gauss's Law.": 1 + "Tesla Coils and the Study of Maxwell's Equations: An Exploration of Electromagnetic Motion and Energy ": 1 + "In-depth Study of Electromagnetism: Using Tesla Coils and Vector Analysis.": 1 + "Detailed Research on Energy and Motion: Using Tesla Coils and the Concept of Electric Potential.": 1 + "The Science behind Electromagnetism: A Detailed Study using Tesla Coils and Electromagnetic Spectrum.": 1 + "The Specifics of Electromagnetism: A Deeper Understanding of Motion and Energy with Tesla Coils and the Principle of Superposition.": 1 + "Science: Acoustic Manipulation with Equalizers for Event Sound Systems": 1 + "Understanding Acoustics for Event Sound Systems: An In-depth Analysis of Microphone Placement": 1 + "The Role of Digital Signal Processors in Acoustics for Event Sound Systems": 1 + "Science: A Comprehensive Study on Acoustics and Speaker Configurations for Event Sound Systems": 1 + "Advanced Acoustics for Event Sound Systems: Exploring the Impact of Soundproofing Materials": 1 + "Science: Mastering Acoustics for Event Sound Systems with Sound Level Meters": 1 + "Acoustic Modelling and Simulation Tools for Optimizing Event Sound Systems": 1 + "Understanding Acoustics: The Integration of Line Arrays in Event Sound Systems": 1 + "Science: Acoustics and The Power of Mixing Consoles for Event Sound Systems": 1 + "Acoustics for Event Sound Systems: A Deep Dive into the Use of Subwoofers and Crossovers.": 1 + "Economics for Kids: Understanding Money, Trade and the Concept of Supply and Demand": 1 + "Digital Currency: Introducing Bitcoin in Economics for Kids": 1 + "Economics for Kids: Exploring Trade with the Use of Barter System": 1 + "The Role of Banks: A Deep Dive into Economics for Kids": 1 + "Economics for Kids: Understanding Money and Trade through the Lens of Globalization": 1 + "Exploring Economics: The Impact of Inflation for Kids": 1 + "Economics for Kids: Learning Money and Trade with the Introduction of Stock Market": 1 + "Exploring Economics for Kids: The Importance of Interest Rates in Money and Trade": 1 + "Economics for Kids: Understanding Money and Trade using Economic Indicators": 1 + "Comprehending Economics: Understanding Money, Trade and Taxation for Kids.": 1 + "Geography: Mapping Ancient Trade Routes Using GIS Technology": 1 + "Geography: The Role of Compass in Mapping Ancient Trade Routes": 1 + "Geography: Exploring Ancient Trade Routes Through Satellite Imaging": 1 + "Geography: Utilizing GPS in the Study of Ancient Trade Routes": 1 + "Geography: Cartography and Ancient Trade Routes": 1 + "Geography: Mapping Ancient Trade Routes with the Aid of Drones": 1 + "Geography: The Use of Topographic Maps in Tracing Ancient Trade Routes": 1 + "Geography: Digital Terrain Modeling and Ancient Trade Routes": 1 + "Geography: The Role of Aerial Photography in Mapping Ancient Trade Routes": 1 + "Geography: Lidar Technology in the Study of Ancient Trade Routes": 1 + "Geography: 3D Modeling in Mapping Ancient Trade Routes": 1 + "Utilizing Satellite Imagery for Leveraging Meteorological Data in Environmental Studies: Role of Climate in Football.": 1 + "Application of Doppler Radar in Understanding Weather Impact on Football: An Environmental Study.": 1 + "Role of Climate Modelling in Leveraging Meteorological Data for Football Environmental Studies.": 1 + "GIS-Based Analysis of Climate Influence on Football: An Environmental Study.": 1 + "Utilizing Weather Balloon Data in Analyzing Climate's Role in Football: An Environmental Perspective.": 1 + "Harnessing Climatological Data through Weather Stations for Football Environmental Studies.": 1 + "Role of Supercomputers in Climate Simulations for Environmental Studies in Football.": 1 + "Understanding Football's Environmental Dynamics through Numerical Weather Prediction.": 1 + "Role of Thermometers in Collecting Meteorological Data for Football Environmental Studies.": 1 + "The Impact of Barometric Pressure Data in Assessing Climate Effects on Football: An Environmental Study.": 1 + "Physical Education: The Impact of Oculus Rift VR in the Economics of Sports Artistry": 1 + "The Role of Haptic Feedback Technology in Economic Sports Artistry: A Physical Education Perspective": 1 + "Physical Education: Utilizing Microsoft's HoloLens in the Economics of Sports Artistry": 1 + "The Integration of Virtual Reality Gloves in Sports Artistry Economics: A Physical Education Course": 1 + "Virtual Reality Treadmills: Their Economic Impact on Sports Artistry in Physical Education": 1 + "Physical Education: The Influence of Sony's PlayStation VR on the Economics of Sports Artistry": 1 + "The Effect of Augmented Reality Applications in the Economical Aspect of Sports Artistry: A Physical Education Study": 1 + "HTC Vive in Physical Education: A Study on its Role in the Economics of Sports Artistry": 1 + "Physical Education: The Economic Impact of Motion Tracking Technology in Sports Artistry": 1 + "The Role of Virtual Reality Headsets in the Economics of Sports Artistry: A Physical Education Perspective": 1 + "Mathematics: Understanding Distances and Measurements on Maps Using a Compass": 1 + "Geometry and Cartography: Calculating Distances and Measurements on Maps with GPS Technology": 1 + "Mathematics: Using Pythagorean Theorem to Understand Distances and Measurements on Maps": 1 + "Mathematics: Applying Scale Factor to Understand Distances and Measurements on Maps": 1 + "Mathematics: Analyzing Distances and Measurements on Maps Using Geographic Information Systems (GIS)": 1 + "Mathematics: Interpreting Distances and Measurements on Maps with Map Projections": 1 + "Mathematics: Utilizing Satellite Imagery to Understand Distances and Measurements on Maps": 1 + "Mathematics: Understanding Distances and Measurements on Maps with the Aid of a Ruler": 1 + "Mathematics: Deciphering Distances and Measurements on Maps Using Coordinate Systems": 1 + "Mathematics: Grasping Distances and Measurements on Maps with Digital Mapping Tools": 1 + "Exploring the Impact of Drip Irrigation on Nutritional Outcomes in Agriculture using Soil Moisture Sensors": 1 + "Evaluating the Use of Drip Irrigation and IoT in Improving Nutritional Outcomes in Agriculture": 1 + "The Role of Drip Irrigation and Drone Technology on Nutritional Outcomes in Farming": 1 + "Understanding Drip Irrigation and Satellite Imaging: Effects on Nutritional Outcomes in Agriculture": 1 + "A Detailed Study on Drip Irrigation and Automated Sprinkler Systems: Improving Nutritional Outcomes in Agriculture": 1 + "The Influence of Drip Irrigation and Precision Agriculture on Nutritional Outcomes": 1 + "The Effect of Drip Irrigation and AI-Based Crop Monitoring on Nutritional Outcomes in Agriculture": 1 + "Investigating the Impact of Drip Irrigation and Smart Farming Techniques on Nutritional Outcomes": 1 + "Drip Irrigation and Vertical Farming: A Comprehensive Study on Their Effect on Nutritional Outcomes in Agriculture": 1 + "The Impact of Drip Irrigation and Remote Sensing Technology on Nutritional Outcomes in Agriculture.": 1 + "Biology Fun: Exploring Plant Cells with Compound Microscopes": 1 + "Biology Adventure: Analyzing Animal Tissues Using Electron Microscopes": 1 + "Discovery in Biology: Identifying Plant Species with DNA Sequencing Technology": 1 + "Biology Insights: Investigating Animal Behavior Using Motion-Sensor Cameras": 1 + "Biology Exploration: Understanding Photosynthesis with Spectrophotometers": 1 + "Biology Journey: Examining Cellular Respiration in Animals Using Respirometers": 1 + "Biology Enigma: Decoding Plant Genetics with Polymerase Chain Reaction": 1 + "Biology Wonder: Observing Animal Mitosis with Fluorescent Microscopes": 1 + "Biology Quest: Studying Plant Growth with Hydroponics Technology": 1 + "Biology Expedition: Investigating Animal Physiology with Biotelemetry Devices": 1 + "Exploring the Art of Acoustics: A Detailed Study on Audio Equalization with Real-Time Analyzer and Pro Tools Software": 1 + "The Art of Acoustics: An Introduction to Audio Equalization with Real-Time Analyzer and Focus on Dolby Atmos Technology": 1 + "Mastering Acoustics: A Comprehensive Guide to Audio Equalization using Real-Time Analyzer and Adobe Audition": 1 + "The Science and Art of Acoustics: An Introductory Course on Audio Equalization with Real-Time Analyzer and FL Studio": 1 + "Breaking Down Acoustics: A Comprehensive Course on Audio Equalization with Real-Time Analyzer and the Concept of Spatial Audio": 1 + "The Art of Acoustics: A Deep Dive into Audio Equalization with Real-Time Analyzer and Logic Pro X": 1 + "Acoustic Excellence: A Detailed Study of Audio Equalization with Real-Time Analyzer and Avid Pro Tools": 1 + "Sound Science: An Introduction to Audio Equalization with Real-Time Analyzer and Understanding of Frequency Modulation": 1 + "The Art of Acoustics: Exploring Audio Equalization with Real-Time Analyzer and GarageBand": 1 + "Defining Sound: A Course on Audio Equalization with Real-Time Analyzer and the Principles of Sound Design": 1 + "C++ and Boolean Algebra: Solving Logic Puzzles with NAND Gates": 1 + "Mastering Puzzles in C++ Using Digital Logic Gates and XOR Operators": 1 + "Advanced C++: Using Truth Tables to Solve Deductive Reasoning Puzzles": 1 + "C++ and Circuit Design: An Introduction to Digital Logic Gates and Karnaugh Maps": 1 + "C++ for Puzzles: Leveraging Binary Decision Diagrams in Digital Logic Gates": 1 + "Using C++ and De Morgan's Laws to Solve Deductive Reasoning Puzzles": 1 + "Solving Logic Puzzles with C++: An Exploration of Digital Logic Gates and Sequential Circuits": 1 + "C++ and Propositional Logic: Solving Puzzles with Digital Logic Gates and Truth Tables": 1 + "C++ for Deductive Reasoning: Mastering Puzzles with Digital Logic Gates and Quine-McCluskey Algorithm": 1 + "An Introduction to C++: Using Logic Gates and Finite State Machines for Puzzle Solving.": 1 + "Mathematics: Understanding Climate Change with MATLAB, R Statistics, Graphical Representations, and Python Programming for CO2 Emissions": 1 + "Mathematics: Predictive Analytics for Climate Change using MATLAB, Stats, Graphs, and Python with TensorFlow": 1 + "Mathematics: Climate Change Projection Modelling with MATLAB, Stats, Graphs, Python, and Linear Regression Analysis": 1 + "Mathematics: Climate Change Comprehension with MATLAB, Bayesian Statistics, Graphs, and Python Programming for Sea Level Studies": 1 + "Mathematics: Climate Change Impact Analysis with MATLAB, Stats, Graphs, Python, and Machine Learning Algorithms": 1 + "Mathematics: Climate Change Simulation with MATLAB, Spatial Statistics, Graphs, and Python Coding for Atmospheric Studies": 1 + "Mathematics: Advanced Climate Change Analytics with MATLAB, Stats, Graphs, Python, and Principal Component Analysis": 1 + "Mathematics: Assessing Climate Change using MATLAB, Time-Series Analysis, Graphs, and Python Coding for Temperature Trends": 1 + "Mathematics: Climate Change Predictions using MATLAB, Stats, Graphs, Python, and Monte Carlo Simulations": 1 + "Mathematics: Climate Change Studies with MATLAB, Multivariate Statistics, Graphs, and Python for Climate Variability and Change.": 1 + "Computer Whizz Kids: An Introduction to Python Coding": 1 + "The Young Coder: Getting Started with Java Programming": 1 + "Whizz Kids: A Beginner's Guide to HTML and CSS": 1 + "Computer Whizz Kids: Intro to JavaScript for Young Learners": 1 + "The Budding Programmer: Learning Scratch for Kids": 1 + "Whizz Kids Unleashed: A Dive into C++ Programming": 1 + "Computer Whizz Kids: A Beginner's Adventure in Ruby Coding": 1 + "Whizz Kids in Action: An Introduction to MATLAB Programming": 1 + "The Young Tech Guru: Grasping the Basics of PHP Coding": 1 + "Computer Whizz Kids: An Introductory Course on Swift for iOS Development": 1 + "Advanced Logic: Exploring Essential Concepts and Logical Fallacies with Chess Strategies Using Propositional Calculus": 1 + "Advanced Logic: Dissecting Logical Fallacies through Chess Strategies with Predicate Logic": 1 + "Advanced Logic: Mastering Essential Concepts Using Chess Strategies and Boolean Algebra": 1 + "Advanced Logic: Logical Fallacies and Chess Strategies Unraveled through First-Order Logic": 1 + "Advanced Logic: Exploring Essential Concepts with Chess Strategies and Formal Logic": 1 + "Advanced Logic: Delving into Logical Fallacies with Chess Strategies and Modal Logic": 1 + "Advanced Logic: Essential Concepts in Chess Strategies Uncovered with Set Theory": 1 + "Advanced Logic: Logical Fallacies in Chess Strategies: A Study using Model Theory": 1 + "Advanced Logic: Unraveling Chess Strategies and Essential Concepts with Proof Theory": 1 + "Advanced Logic: Logical Fallacies and Chess Strategies: An Exploration through Algebraic Logic.": 1 + "Decoding Light and Color: A Detailed Study of Laser Spectroscopy, Diffraction Grating, and Photomultiplier Tubes": 1 + "Physics: Decoding Light and Color through Laser Spectroscopy, Diffraction Grating, and Charge-Coupled Device Applications": 1 + "Quantum Leap: Unraveling Spectrum Mysteries with Laser Spectroscopy, Diffraction Grating, and Quantum Entanglement": 1 + "Physics: An In-depth Study of Light and Color using Laser Spectroscopy, Diffraction Grating, and Polarization": 1 + "Advanced Physics: Exploring Light and Color through Laser Spectroscopy, Diffraction Grating, and Fourier Transforms": 1 + "Physics: Decoding Light and Color by Integrating Laser Spectroscopy, Diffraction Grating, and Michelson Interferometer": 1 + "The Physics of Light: A Comprehensive Study of Laser Spectroscopy, Diffraction Grating, and Wave-Particle Duality": 1 + "Physics Unveiled: Decoding Light and Color with Laser Spectroscopy, Diffraction Grating, and Photonic Crystals": 1 + "Investigating Color: A Deep Dive into Laser Spectroscopy, Diffraction Grating, and the Principle of Superposition": 1 + "Physics: Decoding Light and Color through Laser Spectroscopy, Diffraction Grating, and the Use of CCD Cameras.": 1 + "Exploring Cellular Biology: Understanding Microscopy with Fluorescence Techniques and the Use of Confocal Microscope ": 1 + "Mastering Cell Analysis: A Deep Dive into Fluorescence Techniques and Flow Cytometry in Biology ": 1 + "Advanced Microscopy in Biology: Emphasizing on Fluorescence Techniques and ImageJ Software ": 1 + "Cell Analysis in Depth: A Study of Fluorescence Techniques and Transmission Electron Microscopy ": 1 + "The Art of Microscopy in Biology: Concentrating on Fluorescence Techniques and Atomic Force Microscopy ": 1 + "Biology and Microscopy: Exploring Fluorescence Techniques and Scanning Electron Microscopy ": 1 + "Cellular Biology and Microscopy: Implementing Fluorescence Techniques with Raman Spectroscopy ": 1 + "Unraveling Biology: The Art of Microscopy and Cell Analysis with Fluorescence Techniques and Single Molecule Spectroscopy ": 1 + "The Science of Microscopy in Biology: Fluorescence Techniques and the Role of Light Sheet Microscopy ": 1 + "Biology Revealed: Microscopy, Cell Analysis, Fluorescence Techniques and the Power of Cryo-Electron Microscopy.": 1 + "Geography and GIS: Tracing the Roots of International Music Styles": 1 + "Satellite Imagery in Geography: Mapping the Origins of Global Music Genres": 1 + "Geography: Utilizing Cartography to Trace International Music Styles": 1 + "Topography and Music: Mapping the Origins of International Music Styles": 1 + "Geography and Digital Mapping: Exploring the Origins of World Music Styles": 1 + "Using GPS in Geography: Locating the Origins of International Music Styles": 1 + "Remote Sensing in Geography: Uncovering the Origins of Global Music Styles": 1 + "Geographic Information Systems: Tracing the Evolution of International Music Styles": 1 + "Geography: Utilizing Geostatistics in Tracking International Music Styles Origins": 1 + "Physical Geography and Music: Mapping the Origins of International Music Styles Using Topographic Maps.": 1 + "Implementing Principal Component Analysis Techniques with Python in Machine Learning for Neuroscientific Computation.": 1 + "Utilizing R Programming for Principal Component Analysis Techniques in Machine Learning for Neuroscientific Computation.": 1 + "Applying Principal Component Analysis Techniques with TensorFlow in Machine Learning for Neuroscientific Computation.": 1 + "Leveraging MATLAB in Principal Component Analysis Techniques for Machine Learning in Neuroscientific Computation.": 1 + "Incorporating Linear Algebra in Principal Component Analysis Techniques in Machine Learning for Neuroscientific Computation.": 1 + "Applying Principal Component Analysis Techniques in Deep Learning Using PyTorch for Neuroscientific Computation.": 1 + "Implementing Principal Component Analysis Techniques with Scikit-Learn in Machine Learning for Neuroscientific Computation.": 1 + "Utilizing SQL for Data Management in Principal Component Analysis Techniques in Machine Learning for Neuroscientific Computation.": 1 + "Incorporating GPU Acceleration in Principal Component Analysis Techniques in Machine Learning for Neuroscientific Computation.": 1 + "Applying Principal Component Analysis Techniques with Jupyter Notebooks in Machine Learning for Neuroscientific Computation.": 1 + "Neuroscience Basics: Exploring Brain Mapping Techniques through fMRI": 1 + "A Detailed Study on EEG in Neuroscience Basics: Brain Mapping Techniques": 1 + "Neuroscience Basics: Harnessing PET Scans for Brain Mapping Techniques": 1 + "Deep Dive into Brain Mapping Techniques: Understanding DTI in Neuroscience": 1 + "Neuroscience Basics: A Focus on MEG in Brain Mapping Techniques": 1 + "Brain Mapping Techniques in Neuroscience: A Thorough Inspection of NIRS": 1 + "Understanding Brain Mapping Techniques: The Role of SPECT in Neuroscience Basics": 1 + "Neuroscience Basics: Brain Mapping Techniques Using the Allen Brain Atlas": 1 + "In-Depth Analysis of TMS in Neuroscience Basics: Brain Mapping Techniques": 1 + "Deep Dive into Brain Mapping Techniques: Unveiling the Power of Connectomics in Neuroscience.": 1 + "Advanced Logic: Unraveling Logical Fallacies and Chess Strategies with First-Order Logic and the Lichess Database": 1 + "Advanced Logic: Analyzing Chess Strategies through Logical Fallacies using First-Order Logic and Python Programming": 1 + "Advanced Logic: Dissecting Logical Fallacies and Chess Strategies with First-Order Logic and the PGN Viewer": 1 + "Advanced Logic: Exploring Logical Fallacies and Chess Strategies using First-Order Logic and Chess.com's Analysis Board": 1 + "Advanced Logic: Decoding Chess Strategies through Logical Fallacies with First-Order Logic and ChessBase": 1 + "Advanced Logic: Deciphering Logical Fallacies in Chess Strategies using First-Order Logic and SCID": 1 + "Advanced Logic: Understanding Chess Strategies and Logical Fallacies through First-Order Logic and Fritz": 1 + "Advanced Logic: Logical Fallacies and Chess Strategies Explored using First-Order Logic and the Stockfish Engine": 1 + "Advanced Logic: Applying First-Order Logic to Logical Fallacies and Chess Strategies using Chessmaster": 1 + "Advanced Logic: Logical Fallacies and Chess Strategies Unraveled using First-Order Logic and the Chess Position Trainer.": 1 + "Applying the Euler Diagram Tool in Venn Diagrams for Deductive Reasoning in Propositional Calculus Mathematics": 1 + "Utilizing MATLAB in Venn Diagrams for Propositional Calculus and Deductive Reasoning": 1 + "Leveraging Truth Tables in Using Venn Diagrams for Propositional Calculus and Deductive Reasoning in Mathematics": 1 + "Exploring the Use of Python for Venn Diagrams in Propositional Calculus for Deductive Reasoning in Mathematics": 1 + "Incorporating Set Theory in Venn Diagrams for Propositional Calculus and Deductive Reasoning": 1 + "Applying Logic Gates in Using Venn Diagrams for Propositional Calculus and Deductive Reasoning in Mathematics": 1 + "Adopting Boolean Algebra in Venn Diagrams for Propositional Calculus and Deductive Reasoning": 1 + "Utilizing R Programming in Venn Diagrams for Propositional Calculus and Deductive Reasoning in Mathematics": 1 + "Incorporating Discrete Mathematics in Using Venn Diagrams for Propositional Calculus and Deductive Reasoning": 1 + "Applying the Karnaugh Map Tool in Venn Diagrams for Deductive Reasoning in Propositional Calculus Mathematics.": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Adobe Premiere Pro ": 1 + "English Literacy and Digital Storytelling: Integrating iMovie, Microsoft OneNote, and Google Docs ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Cloud Storage Techniques ": 1 + "English Literacy and Digital Storytelling: A Deep Dive into iMovie, Microsoft OneNote, and Podcasting ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Social Media Platforms ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Augmented Reality": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Virtual Reality ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Video Conferencing Tools": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Search Engine Optimization ": 1 + "English Literacy and Digital Storytelling: Enhancements through iMovie, Microsoft OneNote, and Python Programming": 1 + "Economics of the Music Industry: Harnessing Big Data Analytics for Market Trends and Consumer Behavior": 1 + "Blockchain Technology in the Music Industry: Unraveling Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Application of Predictive Analytics in Understanding Market Trends and Consumer Behavior": 1 + "Streaming Platforms and the Music Industry: A Deep Dive into Market Trends and Consumer Behavior": 1 + "Artificial Intelligence in the Music Industry: A New Approach to Understanding Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: The Role of Social Media Analytics in Discerning Market Trends and Consumer Behavior": 1 + "Music Industry Economics: Decoding Consumer Behavior and Market Trends through Neural Networks": 1 + "The Impact of Virtual Reality on the Economics of the Music Industry: A Study of Market Trends and Consumer Behavior": 1 + "Machine Learning’s Influence on the Music Industry: Understanding Market Trends and Consumer Behavior": 1 + "Economics of the Music Industry: Using Cloud Computing to Uncover Market Trends and Consumer Behavior": 1 + "Physical Education: Incorporating Fitbit Heart Rate Monitors in Movement Studies": 1 + "Physical Education: Application of Apple Health App in Movement Analysis": 1 + "Physical Education: Utilizing Garmin Heart Rate Monitors in Fitness Training": 1 + "Physical Education: Strava App Integration in Movement Studies": 1 + "Physical Education: Benefits of Polar Heart Rate Monitors in Physical Activities": 1 + "Physical Education: Integrating Google Fit App in Movement Studies": 1 + "Physical Education: Exploiting Samsung Health App for Fitness Tracking": 1 + "Physical Education: Use of Suunto Heart Rate Monitors in Physical Education": 1 + "Physical Education: MyFitnessPal App Integration in Movement Studies": 1 + "Physical Education: Implementing Wahoo Heart Rate Monitors in Fitness Education": 1 + "Physical Education: Utilizing Endomondo App in Movement Analysis": 1 + "Physical Education: Implementing Wahoo Heart Rate Monitors and Fitbit Devices in Fitness Education: A Comprehensive Approach": 1 + "Physical Education: Using Wahoo Heart Rate Monitors and Google Fit in Fitness Education: An Integrated Solution": 1 + "Physical Education: Incorporating Wahoo Heart Rate Monitors and Smart Watches in Fitness Education: A Modern Approach": 1 + "Physical Education: Application of Wahoo Heart Rate Monitors and VR Technology in Fitness Education: A Futuristic Perspective": 1 + "Physical Education: Implementing Wahoo Heart Rate Monitors and Peloton Bikes in Fitness Education: A Practical Solution": 1 + "Physical Education: Deploying Wahoo Heart Rate Monitors and Fitbod App in Fitness Education: An Innovative Approach": 1 + "Physical Education: Combining Wahoo Heart Rate Monitors and MyFitnessPal in Fitness Education: A Holistic Perspective": 1 + "Physical Education: Leveraging Wahoo Heart Rate Monitors and Strava App in Fitness Education: A Strategic Approach": 1 + "Physical Education: Implementing Wahoo Heart Rate Monitors and Garmin Devices in Fitness Education: A Technological Solution": 1 + "Physical Education: Integrating Wahoo Heart Rate Monitors and Apple Health App in Fitness Education: A Systematic Approach": 1 + "A Discourse Analysis Approach to Economic Policies and Unemployment: Utilizing Python's NLTK Library for Sentiment Analysis of Fiscal Policies.": 1 + "An Exploration of Economic Policies through Discourse Analysis: Leveraging Machine Learning for Sentiment Analysis in Unemployment Studies.": 1 + "A Discourse Analysis Approach: Application of Text Mining in Understanding Economic Policies and Unemployment.": 1 + "Utilizing Big Data in Discourse Analysis to Understand Economic Policies and Unemployment.": 1 + "A Discourse Analysis Approach to Economic Policies: Employing Google Cloud's Natural Language API for Sentiment Analysis.": 1 + "An In-depth Analysis of Economic Policies: Using Deep Learning for Sentiment Analysis of Unemployment.": 1 + "Discourse Analysis and Economic Policies: An Insight through R programming for Sentiment Analysis.": 1 + "A Discourse Analysis Approach: Using IBM Watson for Sentiment Analysis of Economic Policies and Unemployment.": 1 + "Economic Policies and Unemployment: A Discourse Analysis Approach Using SAS Text Miner for Sentiment Analysis.": 1 + "A Discourse Analysis Approach to Economic Policies: Utilizing the Power of Tableau for Sentiment Analysis of Unemployment.": 1 + "Music Theory: Exploring Classical Compositions with Pro Tools and MIDI Sequencing": 1 + "Music Theory: A Deep Dive into Classical Compositions using Pro Tools and Sibelius Notation": 1 + "Music Theory: Unveiling Classical Compositions through Pro Tools and Auto-Tune Technology": 1 + "Music Theory: A Journey through Classical Compositions using Pro Tools and Digital Audio Workstations": 1 + "Music Theory: Mastering Classical Compositions with Pro Tools and Audio Plugins": 1 + "Music Theory: Analyzing Classical Compositions using Pro Tools and Logic Pro X": 1 + "Music Theory: A Study of Classical Compositions using Pro Tools and Ableton Live": 1 + "Music Theory: The Art of Classical Compositions with Pro Tools and FL Studio": 1 + "Music Theory: Navigating Classical Compositions using Pro Tools and Reaper DAW": 1 + "Music Theory: Deciphering Classical Compositions using Pro Tools and Cubase Technology": 1 + "Music and Sports: A Detailed Analysis of Heart Rate Monitors in Examining the Impact of Rhythms on Athletic Performance": 1 + "The Role of Biometric Wearables in Studying the Influence of Music Rhythms on Sports Performance ": 1 + "Using AI Technology to Analyze the Impact of Rhythmic Music on Athlete's Performance": 1 + "The Influence of Music on Athletes: An Empirical Study Using Electroencephalography (EEG)": 1 + "A Quantitative Study of GPS Technology's Role in Analysing the Impact of Music on Athletic Performance": 1 + "Exploring the Effect of Rhythmic Music on Athletic Performance through Motion Capture Technology": 1 + "The Impact of Rhythms on Athletic Performance: An In-depth Study Using Spectral Analysis": 1 + "The Use of Bluetooth Heart Rate Sensors in Understanding the Relationship Between Music and Athletic Performance": 1 + "Sports Science: Effect of Rhythmic Tempo on Athletic Performance using Doppler Radar Technology ": 1 + "The Role of Metronome in Investigating the Impact of Music Rhythms on Sports Performance": 1 + "Art: Mastering Stone Carving Techniques with Chisels, Mallets and Diamond Point Tools": 1 + "Art: Perfecting Stone Carving Techniques with Chisels, Mallets and Pneumatic Hammers": 1 + "Art: Enhancing Stone Carving Skills with Chisels, Mallets and Carbide Tipped Tools": 1 + "Art: Advanced Stone Carving Techniques using Chisels, Mallets and Die Grinders ": 1 + "Art: Artistic Stone Carving Techniques with Chisels, Mallets and Rasps ": 1 + "Art: Stone Carving Mastery: Techniques with Chisels, Mallets and Sandblasting ": 1 + "Art: Precision Stone Carving Techniques with Chisels, Mallets and Micro Chisels ": 1 + "Art: Comprehensive Guide to Stone Carving with Chisels, Mallets and Rifflers ": 1 + "Art: Exploring Stone Carving Techniques with Chisels, Mallets and Polishers ": 1 + "Art: Stone Carving Techniques with Chisels, Mallets and the use of Dremel Tools": 1 + "Exploiting Google Earth for Geographic Analysis: Tracing the Roots of Ten International Music Genres": 1 + "Utilizing GIS Tools in Geography: Pinpointing the Origins of Ten International Music Styles": 1 + "Leveraging Satellite Imagery: A Deep Dive into the Geographic Origins of Ten Global Music Styles": 1 + "Using GPS and Big Data in Geography: Deciphering the Roots of Ten International Music Genres": 1 + "Embracing Geospatial Technologies: Uncovering the Evolution of Ten Worldwide Music Styles": 1 + "Applying Geocoding in Geography: Discovering the Origins of Ten Unique International Music Styles": 1 + "GIS and Digital Mapping: A Geographic Exploration of Ten International Music Genres Origins": 1 + "Decoding International Music Styles: A GPS and Machine Learning Approach to Geographic Roots of Ten Genres": 1 + "Using GPS and Predictive Analytics in Geography: Unraveling the Birthplaces of Ten International Music Styles": 1 + "Geo-tagging and Musicology: A GPS-guided Journey to the Origins of Ten Iconic International Music Styles": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing with a Chest Pass Technique": 1 + "Physical Education: Fundamentals of Basketball: Enhancing Art of Passing with Dribbling Drills": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing using Smart Ball Technology ": 1 + "Physical Education: Fundamentals of Basketball: Mastering the Bounce Pass Technique": 1 + "Physical Education: Fundamentals of Basketball: The Art of Overhead Passing and Catching Drills": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing with Video Analysis Tools": 1 + "Physical Education: Fundamentals of Basketball: Improving the Art of Passing with Resistance Bands Training": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing: A Focus on the No-Look Pass": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing using Virtual Reality Training": 1 + "Physical Education: Fundamentals of Basketball: The Art of Passing through Plyometric Drills.": 1 + "Physics: Utilizing Optical Spectroscopy in the Study of Gravity and Galaxies.": 1 + "Physics: The Role of Infrared Spectroscopy in Analyzing Gravitational Effects in Galaxies.": 1 + "Physics: Implementing Fourier Transform Spectroscopy in Gravity and Galaxy Studies.": 1 + "Physics: The Detailed Study of Gravity and Galaxies Through Raman Spectroscopy.": 1 + "Physics: The Use of Mass Spectrometry in Understanding Gravity and Galaxies.": 1 + "Physics: The Influence of Laser Spectroscopy in Studying Gravity and Galaxies.": 1 + "Physics: The Contribution of UV-Visible Spectroscopy in Gravity and Galaxy Research.": 1 + "Physics: The Application of X-Ray Spectroscopy in Gravity and Galaxy Studies.": 1 + "Physics: The Integration of Emission Spectroscopy in Gravitational and Galaxy Research.": 1 + "Physics: Leveraging Atomic Absorption Spectroscopy to Study Gravity and Galaxies.": 1 + "Chemistry: Basic Principles and Molecular Structure Analysis using ADF and Gaussian Software": 1 + "Chemistry: Understanding Ionic Bonds and Covalent Bonds using ADF Software and Valence Shell Electron Pair Repulsion (VSEPR) Theory": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software with Quantum Mechanics Approach": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF and Spartan Software": 1 + "Chemistry: Advanced Chemical Bonding Analysis using ADF Software and Infrared Spectroscopy": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Molecular Orbital Theory": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and X-ray Crystallography": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software with emphasis on Hybridization Concepts": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF and MOPAC Software.": 1 + "Spelling and Vocabulary: Mastering Homonyms and Homophones with Duolingo App": 1 + "Advanced Spelling: Conquering Homonyms and Homophones using Memrise Technology": 1 + "Linguistic Mastery: Homonyms and Homophones with Rosetta Stone's Language Learning Suite": 1 + "Vocabulary Development: Homonyms and Homophones using Anki Flashcards": 1 + "Homonyms and Homophones: A Comprehensive Study using Quizlet's Learning Tools": 1 + "Spelling Mastery: Homonyms and Homophones Explored through Babbel Language Learning App": 1 + "Interactive Learning: Mastering Homonyms and Homophones with Tandem Language Exchange App": 1 + "Language Proficiency: Homonyms and Homophones using FluentU App": 1 + "Linguistic Exploration: Homonyms and Homophones using Rosetta Stone’s Immersion Method": 1 + "Vocabulary Enhancement: Decoding Homonyms and Homophones with Mondly Language Learning App.": 1 + "Utilizing Hadoop in Big Data Analytics to Assess the Impact of Alibaba's E-commerce Platform on Gold's Gym Finances: Exploring Ten Revenue Enhancement Strategies": 1 + "The Role of Python Programming in Evaluating the Financial Effects of Amazon's E-commerce Influence on 24 Hour Fitness: A Study of 10 Cost-Reduction Tactics": 1 + "Leveraging Machine Learning to Gauge the Impact of E-commerce Giant eBay on Anytime Fitness Finances: A Detailed Analysis of 10 Revenue Diversification Strategies": 1 + "Harnessing the Power of Data Visualization Tools in Analyzing E-commerce's Influence on Planet Fitness Finances: A Comprehensive Study of 10 Member Retention Strategies": 1 + "The Use of Apache Spark in Big Data Analytics to Examine the Impact of Shopify's E-commerce Platform on LA Fitness Finances: A Study of 10 Pricing Strategies": 1 + "Deploying SQL in Big Data Analysis for Assessing E-commerce Impacts on Crossfit Gym's Financial Health: An Investigation into 10 Financial Planning Techniques": 1 + "The Application of Artificial Intelligence in Evaluating the Financial Impact of Etsy's E-commerce Platform on Pure Gym: A Study of 10 Cost-Efficiency Approaches": 1 + "Utilizing Tableau in Big Data Analytics to Evaluate the Impact of E-commerce on Virgin Active's Finances: A Study of 10 Risk Management Strategies": 1 + "Implementing R Programming to Assess the Influence of E-commerce Platforms like Walmart on Equinox Gym's Finances: A Study of 10 Investment Strategies": 1 + "Leveraging SAS Software in Evaluating the Impact of E-commerce Marketplaces on Gym Group's Finances: A Study of 10 Debt Management Techniques": 1 + "Chemistry and Sculpture: Analyzing Bronze Alloys in Art using X-Ray Diffraction and Microscopy": 1 + "Chemistry and Sculpture: A Comparative Analysis of Metal Alloys in Renaissance Art using X-Ray Diffraction and Electron Microprobe": 1 + "Advancing Art: Analyzing Iron Alloys in Modern Sculptures using X-Ray Diffraction and Fourier Transform Infrared Spectroscopy": 1 + "Art and Science Collide: A Comprehensive Study of Metal Alloys in Ancient Greek Statues using X-Ray Diffraction and Mass Spectrometry": 1 + "The Hidden Art: Decoding Metal Alloys in Medieval Artifacts using X-Ray Diffraction and Synchrotron Radiation": 1 + "Chemistry and Sculpture: Unveiling Secrets of Copper Alloys in Egyptian Art using X-Ray Diffraction and Energy Dispersive Spectroscopy": 1 + "The Science of Art: Analyzing Metal Alloys in Roman Sculpture using X-Ray Diffraction and Auger Electron Spectroscopy": 1 + "Bridging Art and Chemistry: A Detailed Analysis of Gold Alloys in Byzantine Art using X-Ray Diffraction and X-Ray Fluorescence": 1 + "Combining Art and Science: Investigating Lead Alloys in Baroque Art using X-Ray Diffraction and Scanning Electron Microscopy": 1 + "Chemistry and Sculpture: A Deep Dive into Silver Alloys in Gothic Art using X-Ray Diffraction and Neutron Activation Analysis.": 1 + "Junior Neuroscience: Exploring the Brain with 3D Printed Models": 1 + "Junior Neuroscience: An Insight into Brain Connectivity with Diffusion Tensor Imaging ": 1 + "Junior Neuroscience: Studying Brain Functions with Functional MRI ": 1 + "Junior Neuroscience: Exploring the Brain with Computer Simulations ": 1 + "Junior Neuroscience: Understanding Brain Anatomy with Virtual Reality ": 1 + "Junior Neuroscience: Exploring Neuronal Activity with Electroencephalography ": 1 + "Junior Neuroscience: Discovering the Brain's Structure with Magnetic Resonance Imaging ": 1 + "Junior Neuroscience: Brain Mapping with Positron Emission Tomography ": 1 + "Junior Neuroscience: Decoding Brain Signals with Neural Network Models ": 1 + "Junior Neuroscience: Investigating Brain Disorders with Spectroscopy ": 1 + "Junior Neuroscience: Exploring the Brain with Machine Learning Algorithms": 1 + "Social Studies: The Impact of the Civil Rights Movement on African American Literature: A Focus on Symbolism": 1 + "Exploring the Influence of the Civil Rights Movement on Feminist Literature Using Comparative Analysis": 1 + "The Use of Allegory in Literature Influenced by the Civil Rights Movement: A Detailed Study": 1 + "Social Studies: The Civil Rights Movement's Influence on Literature - A Focus on the Role of Photography": 1 + "Civil Rights Movement and its Reflection in Literature: An In-Depth Look at Irony": 1 + "The Effect of the Civil Rights Movement on Literature: Exploring the Role of Television Broadcasting": 1 + "The Role of the Printing Press in Spreading Literature Influenced by the Civil Rights Movement": 1 + "The Influence of the Civil Rights Movement on Literature: A Study on the Use of Metaphors": 1 + "The Impact of the Civil Rights Movement on Literature: An Analysis of Satire ": 1 + "Social Studies: Civil Rights Movement and its Influence on Literature - Exploring the Role of Radio Broadcasting.": 1 + "Language Arts: An In-depth Analysis of Economic Policies and Unemployment Rhetoric Using AI Technology - A Focus on Python Programming": 1 + "Natural Language Processing in Language Arts: A Detailed Study of Economic Policies and Unemployment Rhetoric": 1 + "Language Arts: Exploring Economic Policies and Unemployment Rhetoric Through Machine Learning Algorithms": 1 + "Language Arts: Economic Policies and Unemployment Rhetoric - An AI Deep Dive Using Sentiment Analysis": 1 + "Language Arts: Utilizing IBM Watson to Analyze Economic Policies and Unemployment Rhetoric": 1 + "Language Arts: An In-depth Study of Economic Policies and Unemployment Rhetoric Using TensorFlow and AI": 1 + "Language Arts: A Comparative Study of Economic Policies and Unemployment Rhetoric Using AI and Big Data Analytics": 1 + "Language Arts: Economic Policies and Unemployment Rhetoric - An AI Analysis with Data Mining Techniques": 1 + "Language Arts: Analyzing Economic Policies and Unemployment Rhetoric Using AI and Quantitative Textual Analysis": 1 + "Language Arts: AI in Unemployment Rhetoric and Economic Policies - A Study Using Neural Networks.": 1 + "Physical Education 130: Dance and Expressive Movement using Ballet Techniques": 1 + "Physical Education 130: Dance and Expressive Movement with Focus on Modern Dance": 1 + "Physical Education 130: Dance and Expressive Movement Incorporating Aerobic Exercise": 1 + "Physical Education 130: Dance and Expressive Movement Utilizing Dance Therapy Concepts": 1 + "Physical Education 130: Dance and Expressive Movement with Hip-Hop Styles": 1 + "Physical Education 130: Dance and Expressive Movement through the Lens of Cultural Dances": 1 + "Physical Education 130: Dance and Expressive Movement Using Stretch Bands": 1 + "Physical Education 130: Dance and Expressive Movement incorporating Choreography Software ": 1 + "Physical Education 130: Dance and Expressive Movement with Ballroom Dance Techniques": 1 + "Physical Education 130: Dance and Expressive Movement Applying Pilates Concepts": 1 + "Physical Education: Basics of Astronaut Training with Anti-Gravity Treadmills": 1 + "Physical Education: Astronaut Training Basics Using VR Simulation": 1 + "Physical Education: Introduction to Astronaut Training with Space Suits": 1 + "Physical Education: Astronaut Training Basics and the Use of Oxygen Tanks": 1 + "Physical Education: Basics of Astronaut Training with Zero Gravity Chambers": 1 + "Physical Education: Astronaut Training Techniques Using 3D Motion Capture": 1 + "Physical Education: Basics of Astronaut Training with Robotic Manipulators": 1 + "Physical Education: Astronaut Training Essentials Using Space Capsules": 1 + "Physical Education: Basics of Astronaut Training with Resistance Bands": 1 + "Physical Education: Astronaut Training Basics and the Use of Canadarm Technology": 1 + "Physics: The Thermodynamic Temperature Scale: Kelvin's Role and the Application of Laser Cooling": 1 + "Physics: Understanding Kelvin's Role through the Lens of Quantum Thermodynamics": 1 + "The Thermodynamic Temperature Scale: Kelvin's Contribution and the Concept of Absolute Zero": 1 + "Physics: Kelvin's Role in Thermodynamics and the Use of Thermal Imaging Cameras": 1 + "Physics: Kelvin's Influence on the Thermodynamic Temperature Scale and the Implementation of Cryogenics": 1 + "Thermodynamics: Kelvin's Impact and the Introduction of Thermoelectric Generators": 1 + "Physics: Kelvin and the Thermodynamic Temperature Scale: A Deep Dive into Heat Engines": 1 + "Thermodynamics in Physics: Kelvin's Role and the Phenomenon of Thermal Expansion": 1 + "The Thermodynamic Temperature Scale: Kelvin's Contribution and the Evolution of Thermistors": 1 + "Physics: The Role of Kelvin in Thermodynamics and the Principles of Thermal Conductivity.": 1 + "Practical Application of Random Variables in SAS with Bayesian Inference using Markov Chains": 1 + "SAS for Probability & Statistics: A Deep Dive into Random Variables using Bayesian Inference and Monte Carlo Simulations": 1 + "Probability & Statistics with Python: Hands-on Bayesian Inference and Random Variables in SAS": 1 + "SAS for Probability & Statistics: Utilizing Random Variables with Bayesian Inference and Linear Regression": 1 + "Probability & Statistics: Mastering Random Variables in SAS using Bayesian Inference and Hypothesis Testing": 1 + "Advanced Probability & Statistics in SAS: Bayesian Inference, Random Variables, and Neural Networks": 1 + "Probability & Statistics: A Step-by-Step Guide to Random Variables in SAS using Bayesian Inference and Decision Trees": 1 + "Exploring Random Variables in SAS through Bayesian Inference and Probability & Statistics with Data Visualization": 1 + "Mastering Probability & Statistics: Random Variables in SAS using Bayesian Inference and Predictive Modeling": 1 + "A Comprehensive Study of Random Variables in SAS: Understanding Probability & Statistics through Bayesian Inference and Logistic Regression.": 1 + "Logical Thinkers: Mastering Truth Tables with Logic Gates using Python": 1 + "Decoding Elementary Logic: A Deep Dive into Truth Tables and XOR Gates": 1 + "Logical Thinkers: Understanding Elementary Logic using Truth Tables and Boolean Algebra": 1 + "Elementary Logic Unveiled: Exploring Truth Tables with Logic Gates using MATLAB": 1 + "Logical Thinkers: Delving into Truth Tables and NAND Gates in Elementary Logic": 1 + "Logical Thinkers: Exploring Elementary Logic with Karnaugh Maps and Truth Tables": 1 + "Mastering Elementary Logic: Hands-on with Truth Tables and Logic Gates using Java": 1 + "Logical Thinkers: A Journey through Elementary Logic using Truth Tables and De Morgan's Laws": 1 + "The Science of Elementary Logic: Unraveling Truth Tables and NOR Gates": 1 + "Logical Thinkers: Understanding Elementary Logic with Truth Tables using Logic Gates and Propagation Delay.": 1 + "Detailed Plant Biology: Understanding Cell Structure through Confocal Microscopy, Cryopreservation, and Atomic Force Microscopy": 1 + "In-depth Analysis of Plant Biology: Using Confocal Microscopy, Cryopreservation and DNA Sequencing Techniques": 1 + "Comprehensive Plant Biology: Understanding Cell Structure through Confocal Microscopy, Cryopreservation, and Gel Electrophoresis": 1 + "Advanced Plant Biology: Exploring Cell Structure through Confocal Microscopy, Cryopreservation, and Flow Cytometry": 1 + "Intensive Plant Biology: Unraveling Cell Structure through Confocal Microscopy, Cryopreservation, and Chromatography Techniques": 1 + "Detailed Plant Biology: Insight into Cell Structure through Confocal Microscopy, Cryopreservation, and Spectrophotometry": 1 + "In-depth Plant Biology: Investigating Cell Structure through Confocal Microscopy, Cryopreservation, and Mass Spectrometry": 1 + "Comprehensive Plant Biology: Understanding Cell Structure through Confocal Microscopy, Cryopreservation, and Western Blotting": 1 + "Advanced Plant Biology: Cell Structure Examination through Confocal Microscopy, Cryopreservation, and Polymerase Chain Reaction": 1 + "Intensive Plant Biology: Deciphering Cell Structure through Confocal Microscopy, Cryopreservation, and Fluorescence-Activated Cell Sorting": 1 + "Health Education: Understanding Nutrition and Diet through MyFitnessPal ": 1 + "Health Education: Applying Dietary Reference Intakes in Nutrition and Diet ": 1 + "Health Education: Utilizing Nutrition Data Analysis in Diet Planning ": 1 + "Health Education: Nutrition and Diet with Focus on Caloric Intake Calculators ": 1 + "Health Education: Exploring Nutrition and Diet with Nutritional Genomics ": 1 + "Health Education: Nutrition and Diet Management using Digital Health Records ": 1 + "Health Education: Nutrition and Diet Assessment with Bioelectrical Impedance Analysis ": 1 + "Health Education: Nutrition and Diet Planning using Artificial Intelligence ": 1 + "Health Education: Nutrition and Diet Understanding through Microbiome Analysis ": 1 + "Health Education: Dietitian's Guide to Nutrition and Diet using Nutritional Software ": 1 + "Health Education: Nutrition and Diet Optimization with Fitness Wearable Technology": 1 + "Elementary: Unveiling Basic Geography through Environmental Studies using Google Earth Satellite Imagery and Interactive Globe Models": 1 + "Elementary: Exploring Physical Geography through Environmental Studies using GIS Technology and Interactive Globe Models": 1 + "Elementary: Navigating Basic Geography through Environmental Studies using Drone Captured Imagery and Interactive Globe Models": 1 + "Elementary: Understanding Geographic Coordinates through Environmental Studies using Satellite Imagery and 3D Printed Globe Models": 1 + "Elementary: Studying Biogeography through Environmental Studies using Satellite Imagery and Augmented Reality Globe Models": 1 + "Elementary: Grasping Basic Geography through Environmental Studies using LIDAR Technology and Interactive Globe Models": 1 + "Elementary: Learning about Landforms through Environmental Studies using Satellite Imagery and Virtual Reality Globe Models": 1 + "Elementary: Discovering Plate Tectonics through Environmental Studies using Satellite Imagery and Haptic Feedback Globe Models": 1 + "Elementary: Exploring Climate Zones through Environmental Studies using Thermal Imaging Satellites and Interactive Globe Models": 1 + "Elementary: Unraveling Human Geography through Environmental Studies using Satellite Imagery and Interactive Globe Models with Population Data Overlay.": 1 + "Art: Exploring Stone Carving Sculpting Techniques using Point Chisels and Mallets": 1 + "Art: Detailed Study of Stone Carving Techniques using Point Chisels and the Pneumatic Hammer": 1 + "Art: Mastering Stone Carving Sculpting Techniques using Point Chisels and Diamond Tools": 1 + "Art: Advancing in Stone Carving Sculpting Techniques using Point Chisels and Rasps": 1 + "Art: Unleashing Creativity in Stone Carving Sculpting Techniques using Point Chisels and Carbide Hand Tools": 1 + "Art: The Artistry of Stone Carving Sculpting Techniques using Point Chisels and Angle Grinders": 1 + "Art: Practical Approach to Stone Carving Sculpting Techniques using Point Chisels and SDS Drills": 1 + "Art: Stone Carving Sculpting Techniques using Point Chisels and the Concept of Negative Space": 1 + "Art: Navigating Stone Carving Sculpting Techniques using Point Chisels and the Principle of Three-Dimensionality": 1 + "Art: Proficient Stone Carving Sculpting Techniques using Point Chisels and the Philosophy of Proportion": 1 + "Analyzing the Use of Alliteration in Poetry and Lyrics of Social Protest Songs Using Textual Analysis Software": 1 + "A Study on Alliteration in Poetry and Lyrics of Social Protest Songs: Applying Rhyme and Rhythm Statistics": 1 + "Evaluating the Use of Alliteration in Poetry and Lyrics of Social Protest Songs through Linguistic Analysis Algorithms": 1 + "Exploring the Use of Alliteration in Poetry and Lyrics of Social Protest Songs: A Comparative Study Using Text Mining": 1 + "The Impact of Alliteration in Poetry and Lyrics of Social Protest Songs: A Deep Dive into Semantic Analysis Tools": 1 + "Insights into Alliteration in Poetry and Lyrics of Social Protest Songs: Utilizing Machine Learning Technologies": 1 + "In-depth Assessment of Alliteration in Poetry and Lyrics of Social Protest Songs through Natural Language Processing": 1 + "Unveiling Alliteration in Poetry and Lyrics of Social Protest Songs: A Study using Sentiment Analysis Tools": 1 + "The Role of Alliteration in Poetry and Lyrics of Social Protest Songs: An Examination with Corpus Linguistics": 1 + "Decoding Alliteration in Poetry and Lyrics of Social Protest Songs: An Exploration using Computational Linguistics Techniques": 1 + "History: The Age of Exploration and the Impact of Astrolabe on Nautical Navigation": 1 + "The Role of the Compass in the Age of Exploration and the Astrolabe Era": 1 + "The Age of Exploration: The Implications of the Astrolabe and Introduction of Quadrants": 1 + "History: The Impact of Astrolabe and the Emergence of Cartography during the Age of Exploration": 1 + "The Age of Exploration: Astrolabe's Influence and the Use of Telescopes": 1 + "The Cross-Staff and Astrolabe: Technological Advances during the Age of Exploration": 1 + "The Age of Exploration: The Astrolabe and the Introduction of Log Lines": 1 + "Astrolabe and the Backstaff: Pioneering Inventions of the Age of Exploration": 1 + "History: The Age of Exploration and the Impact of the Astrolabe and Nautical Almanacs": 1 + "The Age of Exploration: The Proliferation of the Astrolabe and the Sextant.": 1 + "The Industrial Age: The Impact of the Steam Engine on English Trade Language and the Evolution of Railways": 1 + "The Industrial Age: English Trade Language and the Development of Telegraph Systems in Railways": 1 + "The Industrial Age: Iron and Steel - Their Role in English Trade Language and Railway Evolution": 1 + "The Industrial Age: The Influence of the Cotton Gin on English Trade Language and Railway Growth": 1 + "The Industrial Age: English Trade Language and the Evolution of Railways: A Study on the Spinning Jenny": 1 + "The Industrial Age: English Trade Language and the Role of the Power Loom in the Advancement of Railways": 1 + "The Industrial Age: The Effect of the Water Frame on English Trade Language and Railway Expansion": 1 + "The Industrial Age: English Trade Language and the Evolution of Railways through the Lens of the Sewing Machine": 1 + "The Industrial Age: The Role of the Telephone in Shaping English Trade Language and Railway Development": 1 + "The Industrial Age: English Trade Language and the Evolution of Railways - A Focus on the Mechanical Reaper.": 1 + "Elementary Education 305: Introduction to Cooperative Games - Utilizing Google Forms in Google Classroom": 1 + "Elementary Education 305: Exploring the use of Google Slides in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games - Maximizing Google Drive in Google Classroom": 1 + "Elementary Education 305: Leveraging Google Docs for Cooperative Games in Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Harnessing Google Sheets in Google Classroom": 1 + "Elementary Education 305: Exploring Google Classroom Tools - Incorporating Google Jamboard in Cooperative Games": 1 + "Elementary Education 305: Using Google Meet for Cooperative Games - An Introductory Course": 1 + "Elementary Education 305: Introduction to Cooperative Games - Advancing with Google Calendar in Google Classroom": 1 + "Elementary Education 305: Streamlining Cooperative Games with Google Classroom's Assignment Feature": 1 + "Elementary Education 305: Introduction to Cooperative Games - Exploring Google Classroom's Grading System.": 1 + "Computer Science: An Introduction to Python Programming and Algorithms": 1 + "Computer Science: A Comprehensive Guide to Java Coding and Data Structures": 1 + "Computer Science: Mastering C++ and Algorithmic Thinking": 1 + "Computer Science: Exploring JavaScript and Algorithms in Web Development": 1 + "Computer Science: An Introduction to Coding with Swift and Advanced Algorithms": 1 + "Computer Science: Understanding Ruby Programming and Algorithms": 1 + "Computer Science: An Insight into SQL Coding and Database Algorithms": 1 + "Computer Science: Learning Kotlin and Algorithms for Android Development": 1 + "Computer Science: An Introduction to MATLAB Coding and Algorithms for Engineers": 1 + "Computer Science: A Dive into R Programming and Statistical Algorithms": 1 + "Baking Science: The Role of Yeast Fermentation in Bread Chemistry Using a Dough Mixer": 1 + "Baking Science: Exploring Yeast Fermentation with Infrared Thermometers in Food Chemistry": 1 + "Baking Science: The Impact of Yeast Fermentation on Gluten Formation in Baked Goods": 1 + "Baking Science: The Role of Yeast Fermentation in Food Chemistry - A Study Using pH Meters": 1 + "Baking Science: Yeast Fermentation and Its Effects on Sugars in Food Chemistry - An Insight with Spectrophotometers": 1 + "Baking Science: Using Microscopy to Understand Yeast Fermentation in Food Chemistry": 1 + "Baking Science: The Role of Yeast Fermentation in Food Chemistry - Analysis with Gas Chromatography ": 1 + "Baking Science: Molecular Gastronomy and Yeast Fermentation in Food Chemistry": 1 + "Baking Science: The Role of Yeast Fermentation in Food Chemistry - A Study with Centrifuges": 1 + "Baking Science: The Role of Yeast Fermentation in Food Chemistry - An Examination using Mass Spectrometry.": 1 + "Language Arts: Exploring the Art of Sonnet Writing with iambic Pentameter in Poetry of the Palate": 1 + "Language Arts: Utilizing Rhyme Schemes in Sonnet Writing for the Poetry of the Palate": 1 + "Language Arts: The Impact of Metaphors in Sonnet Writing for Poetry of the Palate": 1 + "Language Arts: The Role of Quatrains in Sonnet Writing in Poetry of the Palate": 1 + "Language Arts: Exploring Imagery in Sonnet Writing for the Poetry of the Palate": 1 + "Language Arts: The Art of Sonnet Writing using Anaphora in Poetry of the Palate": 1 + "Language Arts: Mastering Alliteration in Sonnet Writing for Poetry of the Palate": 1 + "Language Arts: The Power of Personification in Sonnet Writing in Poetry of the Palate": 1 + "Language Arts: Understanding the Use of Volta in Sonnet Writing for Poetry of the Palate": 1 + "Language Arts: The Art of Sonnet Writing with Hyperbole in Poetry of the Palate": 1 + "Coding Crusaders: Cybersecurity Essentials with SQL Injection using Python": 1 + "SQL Injection Defense: Cybersecurity Essentials in Coding Crusaders with OWASP ZAP": 1 + "Coding Crusaders: Mastering Cybersecurity Essentials through SQL Injection and Nmap": 1 + "Cybersecurity Essentials: Coding Crusaders tackle SQL Injection with Burp Suite": 1 + "SQL Injection: A Deep Dive into Cybersecurity Essentials with Wireshark in Coding Crusaders": 1 + "Coding Crusaders: Cybersecurity Essentials and SQL Injection Mitigation using Nessus": 1 + "Cybersecurity Essentials: SQL Injection Prevention with Metasploit in Coding Crusaders": 1 + "Coding Crusaders: Cybersecurity Essentials, SQL Injection and Intrusion Detection using Snort": 1 + "Cybersecurity Essentials: Defeating SQL Injection with OpenVAS in Coding Crusaders": 1 + "Coding Crusaders: SQL Injection and Cybersecurity Essentials using Kali Linux Tools.": 1 + "Tiny Life: Unveiling Microbiology with Flow Cytometry and Fluorescent Microscopy": 1 + "Exploring Cellular Biology: Flow Cytometry and Atomic Force Microscopy ": 1 + "Tiny Life: Unraveling Genetics at Micro Level using Flow Cytometry and PCR": 1 + "Investigating Microbiology: Flow Cytometry and Nucleic Acid Sequencing": 1 + "Tiny Life: Probing Microbiology using Flow Cytometry and Confocal Microscopy": 1 + "Insight into Cellular Biology: Flow Cytometry and Electron Microscopy": 1 + "Understanding Microbiology: Flow Cytometry and Mass Spectrometry Techniques": 1 + "Tiny Life: Exploring Cellular Biology with Flow Cytometry and Immunoassays": 1 + "Microscopic Exploration: Flow Cytometry and Spectrophotometry in Cellular Biology": 1 + "Tiny Life: Dissecting Microbiology using Flow Cytometry and Gel Electrophoresis.": 1 + "Economics 101: Analyzing the Impact of Tariffs on Supply and Demand using Game Theory": 1 + "Economics 101: Understanding Tariffs Impact on Supply and Demand through Elasticity Concept": 1 + "Economics 101: Evaluating Tariffs Impact on Supply and Demand using Econometric Models": 1 + "Economics 101: The Influence of Tariffs on Supply and Demand: A Comparative Advantage Perspective": 1 + "Economics 101: Effect of Tariffs on Supply and Demand using the Law of Diminishing Returns": 1 + "Economics 101: Tariffs Impact on Supply and Demand - An Analysis through the Lens of Opportunity Cost": 1 + "Economics 101: The Role of Tariffs in Supply and Demand - A Study using Price Discrimination": 1 + "Economics 101: Assessing Tariffs Impact on Supply and Demand through the Monopolies and Oligopolies Framework": 1 + "Economics 101: The Impact of Tariffs on Supply and Demand - A Deep Dive into the Concept of Deadweight Loss": 1 + "Economics 101: Tariffs and their Effect on Supply and Demand - An Exploration of the Pareto Efficiency Concept.": 1 + "Social Studies: The Role of Internet in Globalization and its Ten Possible Solutions": 1 + "Social Studies: Globalization Through Digital Media and Ten Potential Remedies": 1 + "Social Studies: The Impact of Blockchain Technology on Globalization and Ten Possible Solutions": 1 + "Social Studies: Globalization and Its Effects Through E-Commerce, with Ten Possible Solutions": 1 + "Social Studies: Understanding Globalization via Satellite Communication and Ten Possible Solutions": 1 + "Social Studies: Artificial Intelligence’s Contribution to Globalization and Ten Possible Solutions": 1 + "Social Studies: The Influence of Social Media on Globalization and Ten Possible Solutions": 1 + "Social Studies: Globalization and Its Effects via Technological Advancements in Communication: Ten Possible Solutions": 1 + "Social Studies: The Effect of Robotics on Globalization and Ten Possible Solutions": 1 + "Social Studies: The Role of Cybersecurity in Globalization and Ten Possible Solutions": 1 + "The Role of Norton Antivirus in Mitigating Cybersecurity Threats in Virtual Reality: Ethical Implications and 10 Tailored Solutions": 1 + "The Impact of McAfee Antivirus on Virtual Reality Cybersecurity: Ethical Considerations and 10 Innovative Defensive Strategies": 1 + "Kaspersky Antivirus and Its Influence on Virtual Reality Cybersecurity: A Philosophical Perspective with 10 Practical Solutions": 1 + "The Role of Avast Antivirus in Virtual Reality's Cybersecurity: Ethical Implications and 10 Proactive Measures": 1 + "The Influence of Bitdefender Antivirus on Cybersecurity in Virtual Reality: Philosophical Reflections and 10 Strategic Solutions": 1 + "The Impact of AVG Antivirus on Virtual Reality's Cybersecurity: Ethical Aspects and 10 Unique Solutions": 1 + "The Role of Webroot Antivirus in Virtual Reality Cybersecurity: A Philosophical Examination and 10 Effective Strategies": 1 + "The Influence of ESET Antivirus on Cybersecurity in Virtual Reality: Ethical Scrutiny and 10 Possible Fixes": 1 + "The Impact of F-Secure Antivirus on Virtual Reality's Cybersecurity: Philosophical Insights and 10 Concrete Solutions": 1 + "The Role of Trend Micro Antivirus in Enhancing Cybersecurity in Virtual Reality: Ethical Dilemmas and 10 Tactical Solutions": 1 + "Physical Education: Enhancing Teamwork and Sportsmanship Through Basketball Strategies Using Video Analysis": 1 + "Physical Education: Developing Teamwork Through Basketball's Zone Defense Strategy": 1 + "Physical Education: Promoting Sportsmanship Through Basketball's Pick-and-Roll Strategy in Practice": 1 + "Physical Education: Utilizing Biomechanics in Basketball Strategies for Improved Teamwork": 1 + "Physical Education: Advancing Sportsmanship Through Utilization of Motion Capture Technology in Basketball": 1 + "Physical Education: Incorporating Heart Rate Monitors to Measure Performance in Team Basketball Strategies": 1 + "Physical Education: Applying Sports Psychology Concepts in Basketball for Enhanced Teamwork": 1 + "Physical Education: Using Wearable Technology to Improve Basketball Strategies and Teamwork": 1 + "Physical Education: Integrating Nutrition Science for Optimal Performance in Basketball Teamwork": 1 + "Physical Education: Enhancing Sportsmanship Through the Use of VR Technology in Basketball Training.": 1 + "Exploring Hadoop: The Role of Big Data in Globalization and its Impact on Modern Trade": 1 + "Blockchain Technology: Big Data's Influence on Globalization and Modern Trade": 1 + "Examining Cloud Computing: Big Data in Globalization and its Impact on Modern Trade": 1 + "Understanding AI: Big Data's Contribution to Globalization and Modern Trade": 1 + "The Power of Predictive Analysis: Big Data in Globalization and Modern Trade": 1 + "Big Data Visualization: Understanding its Role in Globalization and Modern Trade": 1 + "Machine Learning: The Impact of Big Data on Globalization and Modern Trade": 1 + "IoT: Big Data's Role in Globalization and its Influence on Modern Trade": 1 + "Data Mining: The Impact of Big Data in Globalization and Modern Trade": 1 + "Exploring Apache Spark: The Role of Big Data in Globalization and Modern Trade": 1 + "Advanced Insights: Plant Genetics and Crop Breeding using CRISPR-Cas9 and DNA Sequencing Techniques": 1 + "Progressive Study: Analysis of Plant Genetics through QTL Mapping and DNA Sequencing in Crop Breeding": 1 + "Specialized Approach: Plant Genetics and Crop Breeding using DNA Sequencing and Genomic Selection Techniques": 1 + "Precision Breeding: Leveraging DNA Sequencing and Marker-Assisted Selection in Plant Genetics": 1 + "In-depth Understanding: Plant Genetics and Crop Breeding using RNA-Seq and DNA Sequencing Techniques": 1 + "Advanced Course: Plant Genetics and Crop Breeding using DNA Sequencing and Computational Genomics": 1 + "Detailed Exploration: Plant Genetics and Crop Breeding using DNA Sequencing and Genomic Prediction Models": 1 + "Advanced Knowledge: Plant Genetics and Crop Breeding using DNA Sequencing and High-Throughput Genotyping": 1 + "Specialized Study: Plant Genetics and Crop Breeding using DNA Sequencing and Genome-Wide Association Studies (GWAS)": 1 + "Thorough Examination: Plant Genetics and Crop Breeding using DNA Sequencing and Next Generation Sequencing (NGS) Technologies": 1 + "Music: Understanding the Role of Digital Audio Workstations in Musical Arrangements for Live Performance": 1 + "Music: Practical Uses of MIDI Controllers in Musical Arrangements for Live Performance": 1 + "Music: Harnessing the Power of Audio Mixers in Musical Arrangements for Live Performance": 1 + "Music: Mastering Microphone Techniques in Musical Arrangements for Live Performance": 1 + "Music: Exploring the Impact of Amplifiers on Musical Arrangements for Live Performance": 1 + "Music: Sound Design Principles for Musical Arrangements in Live Performance": 1 + "Music: The Art of Beat Making for Musical Arrangements in Live Performance": 1 + "Music: The Use of Loop Stations in Musical Arrangements for Live Performance": 1 + "Music: Understanding the Application of Equalizers in Musical Arrangements for Live Performance": 1 + "Music: The Role of Dynamic Processors in Musical Arrangements for Live Performance": 1 + "Advanced Java Concepts: Data Structures, Algorithms, and the Utilisation of Generics with Eclipse IDE": 1 + "Advanced Java Concepts: Mastering Data Structures, Algorithms, and Generics with NetBeans": 1 + "Deep Dive into Java: Data Structures, Algorithms, Generics, and Utilisation of JUnit Testing": 1 + "Advanced Java Concepts: Data Structures, Algorithms, and Generics - A Focus on IntelliJ IDEA": 1 + "Advanced Java Concepts: Exploring Data Structures, Algorithms, Using Generics and JDBC": 1 + "Java Mastery: Advanced Concepts of Data Structures, Algorithms, Generics, and the Application of Maven": 1 + "Advanced Java Concepts: Data Structures, Algorithms, Generics, and Deployment with Docker": 1 + "Advanced Java Concepts: Data Structures, Algorithms, Generics, and the Power of Apache Tomcat": 1 + "Comprehensive Java: Advanced Data Structures, Algorithms, Generics, and the Usage of Spring Framework": 1 + "Advanced Java Concepts: Data Structures, Algorithms, Generics, and Code Optimization with JProfiler.": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios with Pythagorean Theorem": 1 + "Mathematics: Geometry and Trigonometry - Exploring Tangent Ratios through SOHCAHTOA": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios using Geometric Software": 1 + "Mathematics: Geometry and Trigonometry - Understanding Tangent Ratios with Trigonometric Identities": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios through Triangle Similarity": 1 + "Mathematics: Geometry and Trigonometry - Navigating Tangent Ratios with Graphing Calculators": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios with the Unit Circle Concept": 1 + "Mathematics: Geometry and Trigonometry - Tangent Ratios Mastery through Real-world Applications": 1 + "Mathematics: Geometry and Trigonometry - Mastering Tangent Ratios using Computer Algebra Systems": 1 + "Mathematics: Geometry and Trigonometry - Comprehensive Guide to Tangent Ratios with Coordinate Geometry.": 1 + "Economics for Beginners: A Deep Dive into Supply and Demand with Graphical Analysis": 1 + "Understanding the Market: Supply and Demand in Economics with Elasticity Concepts": 1 + "Economics for Beginners: Exploring Supply and Demand using Digital Simulations": 1 + "Grasping Economics: An Introduction to Supply and Demand through Cost-Benefit Analysis": 1 + "The Fundamentals of Economics: Understanding Supply and Demand via The Law of Diminishing Returns": 1 + "Economics Simplified: Decoding Supply and Demand using the Price Ceiling Concept": 1 + "Navigating Economics: The Role of Equilibrium in Understanding Supply and Demand": 1 + "Economics for Beginners: Unveiling Supply and Demand through the Lens of Comparative Advantage": 1 + "Economics Demystified: Exploring Supply and Demand with the Marginal Cost Concept": 1 + "Economics 101: Probing into Supply and Demand using Game Theory.": 1 + "Implementing Waveforms in Python for Beat Creation: A Comprehensive Guide to Oscillators and Audacity": 1 + "Introduction to Audacity and Python: Beat Creation using Oscillators and FFT Algorithms": 1 + "Understanding Frequency Modulation in Python and Audacity for Beat Creation: A Beginner's Guide": 1 + "Python and Audacity for Music: Exploring Oscillators and MIDI Sequencing for Beat Creation": 1 + "Creating Beats with Python, Audacity and Envelope Generators: A Beginner's Guide": 1 + "Python, Audacity, and Oscillators: Beat Creation using Signal Processing Techniques": 1 + "Sound Synthesis in Python and Audacity: A Beginner's Guide to Oscillators and Beat Creation": 1 + "Python and Audacity for Music: Beat Creation using Oscillators and Digital Audio Workstations": 1 + "Exploring Python, Audacity, and Oscillators for Beat Creation: A Beginner's Guide to Music Theory and Computer Science": 1 + "Creating Beats using Python, Audacity and Oscillators: An Introduction to Time Domain Processing.": 1 + "Neuroscience: Understanding the Impact of Air Pollution on Brain Development Through fMRI Technology": 1 + "Neuroscience: Using Neuroimaging to Study the Effects of Air Pollution on Brain Development": 1 + "Neuroscience: Exploring Air Pollution and Brain Development Using EEG": 1 + "Neuroscience: Air Pollution and Brain Development: A Study Through PET Scanning": 1 + "Neuroscience: The Role of Air Pollution in Brain Development: Insights from Neuroplasticity": 1 + "Neuroscience: Air Pollution and Brain Development: An Analysis Through Cellular Neuroscience": 1 + "Neuroscience: Air Pollution and Brain Development: A Neuroinformatics Perspective": 1 + "Neuroscience: Investigating Air Pollution's Effects on Brain Development Through Computational Neuroscience": 1 + "Neuroscience: Air Pollution and Brain Development: Deciphering Through Molecular Neuroscience": 1 + "Neuroscience: Air Pollution and Brain Development: A Behavioral Neuroscience Approach.": 1 + "Physical Education: Enhancing Coordination and Rhythm in Dance with Metronomes Using Virtual Reality Technology": 1 + "Physical Education: Implementation of Accelerometers in Dance Training for Improved Coordination and Rhythm with Metronomes": 1 + "Physical Education: Incorporating Motion Capture Tech to Improve Dance Coordination and Rhythm with Metronomes": 1 + "Physical Education: The Role of Biomechanics in Dance Coordination and Rhythm Enhancement with Metronomes": 1 + "Physical Education: Using Haptic Feedback Devices to Improve Dance Coordination and Rhythm with Metronomes": 1 + "Physical Education: Enhancing Coordination and Rhythm in Dance with Metronomes and AI Choreography Software": 1 + "Physical Education: Application of Video Analysis in Dance Training for Improved Coordination and Rhythm with Metronomes": 1 + "Physical Education: Use of Wearable Sensors to Enhance Coordination and Rhythm in Dance with Metronomes": 1 + "Physical Education: Leveraging Digital Dance Platforms for Enhanced Coordination and Rhythm with Metronomes": 1 + "Physical Education: Enhancing Dance Coordination and Rhythm with Metronomes Through the Use of Interactive Dance Mats.": 1 + "Philosophy: An In-depth Study of Ethics and Human Nature through Kantian Philosophy": 1 + "Unraveling Ethics and Human Nature: Utilizing Plato's Theory of Forms in Philosophy": 1 + "Philosophy: Exploring Ethics and Human Nature with Aristotle's Virtue Ethics": 1 + "The Role of Nietzsche's Will to Power in Understanding Ethics and Human Nature": 1 + "Philosophy: Deciphering Ethics and Human Nature through the Lens of Utilitarianism": 1 + "Philosophy: The Influence of Stoicism on Ethics and Human Nature": 1 + "Philosophy: Deconstructing Ethics and the Human Nature with Derrida's Deconstruction Theory": 1 + "Philosophy: Exploring Ethics and Human Nature using Spinoza's Ethical Theory": 1 + "Philosophy: Scrutinizing Ethics and Human Nature through Socratic Dialogue": 1 + "Philosophy: Applying Hegel's Dialectics to Understand Ethics and Human Nature": 1 + "Music: A Detailed Analysis of Classical Compositions using Beethoven's Hammerklavier Sonata with Piano Technique": 1 + "Music: Exploring Chopin's Nocturnes through Advanced Piano Technique": 1 + "Music: A Deep Dive into Classical Compositions using Liszt's Transcendental Etudes and Piano Technique": 1 + "Music: Understanding Mozart's Sonatas with the Aid of Piano Technique": 1 + "Music: Bach's Well-Tempered Clavier Explored through Piano Technique": 1 + "Music: Deciphering Classical Compositions using Schubert's Impromptus and Piano Technique": 1 + "Music: A Comprehensive Study of Beethoven's Diabelli Variations through Piano Technique": 1 + "Music: Interpreting Rachmaninoff's Preludes through the Lens of Piano Technique": 1 + "Music: Analyzing Classical Compositions with Debussy's Preludes and Piano Technique": 1 + "Music: Discovering Haydn's Sonatas through In-depth Piano Technique": 1 + "Elementary Mathematics: Utilizing Abacus for Counting Beats using Binary System": 1 + "Elementary Mathematics: Using Microsoft Excel for Beat Counting in Binary System": 1 + "Elementary Mathematics: Beat Counting in Binary System through Python Programming": 1 + "Elementary Mathematics: Counting Beats using Binary System with MATLAB": 1 + "Elementary Mathematics: Beat Counting using Binary System and Scratch Programming": 1 + "Elementary Mathematics: Interactive Beat Counting in Binary System using Smartboard Technology": 1 + "Elementary Mathematics: Binary Beat Counting with TI-84 Graphing Calculator": 1 + "Elementary Mathematics: Rhythm Counting in Binary System using Metronome Tool": 1 + "Elementary Mathematics: Counting Beats using Binary System with Binary Clocks": 1 + "Elementary Mathematics: Application of Binary Code in Counting Beats using LED Lights.": 1 + "English: Exploring Literature and Environmental Activism through Digital Humanities": 1 + "Green Literature: The Role of English Language and Environmental Activism in Social Media Campaigns": 1 + "English: Literature and Environmental Activism - A Deep Dive into Eco-criticism": 1 + "Environmental Activism in Literature: Using English Texts to Explore Satellite Imagery Technology": 1 + "English: Literature and Environmental Activism - A Study of Climate Change Visualization Tools": 1 + "English Literature: An Examination of Environmental Activism through Data Analysis": 1 + "English: The Impact of Literature in Environmental Activism and Sustainable Technology Innovations": 1 + "English: Environmental Activism in Literature - Building Awareness through Virtual Reality Experiences": 1 + "English: Literature and Environmental Activism - Decoding the Message with Text Mining Tools": 1 + "The Intersection of English Literature and Environmental Activism: Exploring Geo-Tagging and its Implications.": 1 + "Logical Thinkers: Mastering Elementary Logic with Truth Tables using Excel and Venn Diagrams": 1 + "Truth Seekers: Exploring Elementary Logic through Truth Tables and Conditional Statements in Excel": 1 + "Excel Enthusiasts: Learning Elementary Logic with Truth Tables and Pivot Tables": 1 + "Logical Thinkers: Understanding Elementary Logic with Truth Tables using Excel and Python": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel and SQL": 1 + "Logical Puzzles: Decoding Elementary Logic with Truth Tables using Excel and Visual Basic": 1 + "Excel in Logic: Learning Elementary Logic with Truth Tables and Macros": 1 + "Beyond Logic: Enhancing Elementary Logic with Truth Tables using Excel and MATLAB": 1 + "Logi-Excel: Exploring Elementary Logic with Truth Tables and Spreadsheet Formulas": 1 + "Logic Unlocked: Navigating Elementary Logic with Truth Tables using Excel and Power Query": 1 + "Utilizing the Euler Diagram Tool with Python in Venn Diagrams for Enhanced Deductive Reasoning in Propositional Calculus Mathematics": 1 + "Advanced Propositional Calculus Mathematics: A Deep Dive into Applying the Euler Diagram Tool in Venn Diagrams using MATLAB": 1 + "Propositional Calculus Mathematics: Euler Diagram Tool in Venn Diagrams and its Application in Set Theory": 1 + "Incorporating the Euler Diagram Tool with R Programming in Venn Diagrams for Deductive Reasoning in Propositional Calculus Mathematics": 1 + "Understanding Propositional Calculus Mathematics: Application of the Euler Diagram Tool in Venn Diagrams using Boolean Algebra": 1 + "Practical Guide to Applying the Euler Diagram Tool with SPSS in Venn Diagrams for Deductive Reasoning in Propositional Calculus Mathematics": 1 + "An In-depth Study of Propositional Calculus Mathematics: Using the Euler Diagram Tool in Venn Diagrams with Logic Gates": 1 + "Exploring Propositional Calculus Mathematics: Applying the Euler Diagram Tool in Venn Diagrams using Mathematica": 1 + "An Analytical Approach to Propositional Calculus Mathematics: Utilizing the Euler Diagram Tool in Venn Diagrams with Excel Solver": 1 + "Advanced Strategies in Propositional Calculus Mathematics: Applying the Euler Diagram Tool in Venn Diagrams using Quantitative Methods.": 1 + "Introductory Biology: Exploring Plant-Animal Interactions Through Microscopy": 1 + "Molecular Approach: Introductory Biology Focusing on Plant-Animal Interactions": 1 + "Introductory Biology: Plant-Animal Interactions and Genetic Sequencing": 1 + "Introductory Biology: Analysis of Plant-Animal Interactions Using Bioinformatics": 1 + "Field Study: Introductory Biology of Plant-Animal Interactions": 1 + "Introductory Biology: Plant-Animal Interactions Explored Through DNA Barcoding ": 1 + "Introductory Biology: Understanding Plant-Animal Interactions with Genomic Studies": 1 + "Introductory Biology: Use of Drones in Observing Plant-Animal Interactions": 1 + "Introductory Biology: Plant-Animal Interactions Studied Through Geotagging Techniques ": 1 + "Introductory Biology: The Role of Satellite Imaging in Plant-Animal Interactions": 1 + "English Literature: Text Analysis with Python's NLTK in Machine Learning Algorithms": 1 + "English Literature: Text Analysis using Scikit-Learn for Machine Learning in NLP": 1 + "English Literature: Employing TensorFlow for Text Analysis in Machine Learning Algorithms": 1 + "English Literature: Text Analysis with PyTorch in NLP Machine Learning Algorithms": 1 + "English Literature: Text Analysis using the Bag of Words concept in Machine Learning NLP": 1 + "English Literature: Text Analysis with Decision Trees in Machine Learning Algorithms": 1 + "English Literature: Text Analysis leveraging Keras in NLP Machine Learning Algorithms": 1 + "English Literature: Text Analysis with Machine Learning Algorithms using Support Vector Machines in NLP": 1 + "English Literature: Text Analysis in NLP using Machine Learning Algorithms and Apache OpenNLP": 1 + "English Literature: Text Analysis with Machine Learning Algorithms using the Concept of Word Embedding in NLP.": 1 + "Logic for Beginners: Exploring Syllogisms in Philosophical Reasoning": 1 + "Logic for Beginners: The Art of Reasoning with Quantifier Logic in Philosophy": 1 + "Propositional Logic: The Art of Reasoning in Philosophy for Beginners": 1 + "Logic for Beginners: Applying Truth Tables in Philosophical Reasoning": 1 + "Dialogic Logic: The Art of Reasoning in Philosophy for Beginners": 1 + "Logic for Beginners: The Art of Reasoning with Modal Operators in Philosophy": 1 + "Logic for Beginners: The Art of Reasoning using the Semantic Tableaux method in Philosophy": 1 + "Logic for Beginners: The Role of Predicate Calculus in Philosophical Reasoning": 1 + "Logic for Beginners: Understanding the Law of Non-Contradiction in Philosophical Reasoning": 1 + "Logic for Beginners: The Art of Reasoning through Aristotle's Syllogistic Logic in Philosophy.": 1 + "Science: Exploring Nutrition and Digestion through Microscopic Analysis": 1 + "Applied Science: Understanding Nutrition and Digestion using DNA Sequencing": 1 + "Scientific Insights: Nutrition and Digestion through Biochemical Analysis": 1 + "Advanced Science: Analyzing Nutrient Absorption and Digestion using MRI Technology": 1 + "Biomedical Science: Nutrition and Digestion Explored through Endoscopy": 1 + "Science: Understanding Nutrition and Digestion via Metabolic Profiling": 1 + "Integrated Science: Nutrition and Digestion Studies using Gut Microbiome Analysis": 1 + "Precision Science: Nutrition and Digestion Assessment through Metabolomics Technology": 1 + "Nutritional Science: Understanding Digestion using Spectroscopy": 1 + "Advanced Biomedical Science: Exploring Nutrition and Digestion with Genomic Analysis.": 1 + "Elementary Computing 110: Introduction to Coding with Python using Anaconda": 1 + "Elementary Computing 110: Introduction to Coding with Python and Data Structures": 1 + "Elementary Computing 110: Introduction to Coding with Python and NumPy": 1 + "Elementary Computing 110: Introduction to Coding with Python and Jupyter Notebooks": 1 + "Elementary Computing 110: Introduction to Coding with Python using Object-Oriented Programming": 1 + "Elementary Computing 110: Introduction to Coding with Python and Pandas for Data Science": 1 + "Elementary Computing 110: Introduction to Coding with Python and Matplotlib for Data Visualization": 1 + "Elementary Computing 110: Introduction to Coding with Python and Django for Web Development": 1 + "Elementary Computing 110: Introduction to Coding with Python and TensorFlow for Machine Learning": 1 + "Elementary Computing 110: Introduction to Coding with Python and Flask for Web Applications": 1 + "Computer Science: Mastering Python in Coding and Algorithm Design: A Deep Dive into Machine Learning": 1 + "Applied Computer Science: A Comprehensive Guide to Java and Algorithm Design in Artificial Intelligence": 1 + "Computer Science: An In-Depth Exploration of R Programming and Algorithm Design for Artificial Intelligence ": 1 + "Computer Science: The Art of SQL in Coding and Algorithm Design for Data-Driven AI": 1 + "Computer Science: Advanced HTML5 and CSS3 in Algorithm Design: Exploring the Depths of AI Web Development ": 1 + "Computer Science: A Deep Dive into Neural Networks using TensorFlow and Algorithm Design": 1 + "Computer Science: Exploring Algorithm Design with C++: A Deep Dive into AI Programming ": 1 + "Computer Science: The Art of Coding with JavaScript and Algorithm Design in AI Development": 1 + "Applied Computer Science: Algorithm Design using MATLAB: A Deep Dive into AI Simulations": 1 + "Computer Science: Algorithm Design with Swift: A Deep Dive into iOS Artificial Intelligence.": 1 + "Social Studies: Exploring the Effect of IBM Watson-Powered Irrigation Systems on Rice Cultivation in Agricultural Societies": 1 + "Social Studies: Revolutionizing Agriculture with AI-Driven Drip Irrigation Systems: A Study of 10 Solutions": 1 + "Social Studies: Harnessing the Power of AI with Arduino Microcontrollers in Irrigation Systems: A Comprehensive Study ": 1 + "Social Studies: The Impact of Machine Learning Algorithms on AI-Powered Irrigation Systems in Modern Farming": 1 + "Social Studies: Analyzing the Implications of Google AI in Smart Irrigation Systems on Crop Yield Enhancement ": 1 + "Social Studies: The Effect of Internet of Things (IoT) in AI-Powered Irrigation Systems on Sustainable Agriculture": 1 + "Social Studies: The Role of Neural Networks in AI-Enhanced Irrigation Systems in Transforming Agriculture Society ": 1 + "Social Studies: The Impact of Python Programming in AI-Powered Irrigation Systems on Agricultural Productivity ": 1 + "Social Studies: The Influence of Satellite Data in AI-Powered Irrigation Systems on Drought Management in Agriculture": 1 + "Social Studies: The Impact of Blockchain Technology in AI-Based Irrigation Systems on Transparency in Agricultural Society.": 1 + "Elementary Philosophy 101: An Introduction to Critical Thinking through Socratic Dialogue": 1 + "Elementary Philosophy 101: Exploring Critical Thinking using the Toulmin Model": 1 + "Elementary Philosophy 101: Introduction to Critical Thinking with Deductive Reasoning": 1 + "Elementary Philosophy 101: Engaging Critical Thinking via the Paul-Elder Framework": 1 + "Elementary Philosophy 101: Discovering Critical Thinking through the use of Logic Puzzles": 1 + "Elementary Philosophy 101: Introduction to Critical Thinking: A focus on Argument Mapping": 1 + "Elementary Philosophy 101: Unraveling Critical Thinking using Fallacy Identification": 1 + "Elementary Philosophy 101: Introduction to Critical Thinking: A dive into Inductive Reasoning": 1 + "Elementary Philosophy 101: Mastering Critical Thinking through the Analysis of Cognitive Biases": 1 + "Elementary Philosophy 101: Introduction to Critical Thinking: Exploring Problem Solving Techniques": 1 + "Logical Thinkers: Introduction to Elementary Logic using Syllogisms": 1 + "Logical Thinkers: An Introduction to Elementary Logic with Venn Diagrams": 1 + "Logical Thinkers: A Practical Guide to Elementary Logic using Truth Tables": 1 + "Logical Thinkers: Introduction to Elementary Logic and Propositional Calculus": 1 + "Logical Thinkers: Mastering Elementary Logic with Boolean Algebra": 1 + "Logical Thinkers: Introduction to Elementary Logic: A Deep Dive into Predicate Logic": 1 + "Logical Thinkers: Elementary Logic Explained through Digital Circuits": 1 + "Logical Thinkers: Introduction to Elementary Logic: An Approach using First-Order Logic": 1 + "Logical Thinkers: A Comprehensive Study of Elementary Logic using Formal Proofs": 1 + "Logical Thinkers: Introduction to Elementary Logic and its Applications in Computer Programming.": 1 + "Elementary Science: Exploring Weather Patterns with Infrared Satellite Imagery Using Doppler Radar": 1 + "Elementary Science: Investigating Weather Patterns with Infrared Satellite Imagery and Atmospheric Pressure Readings": 1 + "Elementary Science: Utilizing GIS Technology to Understand Weather Patterns with Infrared Satellite Imagery": 1 + "Elementary Science: Analyzing Weather Patterns Using Infrared Satellite Imagery and Thermodynamic Diagrams": 1 + "Elementary Science: Decoding Weather Patterns with Infrared Satellite Imagery through Numerical Weather Prediction": 1 + "Elementary Science: Observing Weather Patterns with Infrared Satellite Imagery and Weather Balloons": 1 + "Elementary Science: Interpreting Weather Patterns with Infrared Satellite Imagery and Anemometers": 1 + "Elementary Science: Evaluating Weather Patterns with Infrared Satellite Imagery and Hygrometers": 1 + "Elementary Science: Studying Weather Patterns with Infrared Satellite Imagery and Cloud Charts": 1 + "Elementary Science: Discovering Weather Patterns with Infrared Satellite Imagery and Barometers.": 1 + "Technology in Education: An Introduction to Virtual Reality as an E-Learning Tool": 1 + "Utilizing Interactive Whiteboards in Education: An Introductory Course": 1 + "Transforming Education with EdTech: A Focus on Learning Management Systems": 1 + "Exploring the Potential of Augmented Reality in E-Learning": 1 + "Technology in Education: Harnessing the Power of Artificial Intelligence in E-Learning": 1 + "Game-Based Learning in Education: An Introduction to E-Learning Tools": 1 + "Introduction to E-Learning Tools: The Impact of Cloud Computing on Education": 1 + "Technology in Education: Exploring the Use of Mobile Applications as E-Learning Tools": 1 + "E-Learning Tools in Education: An Introduction to Digital Storytelling": 1 + "An Introduction to E-Learning Tools: Leveraging E-Books in Education.": 1 + "Elementary: Exploring Plate Tectonics and Basic Geography using Google Earth and AR Technology": 1 + "Elementary: Understanding Plate Tectonics with Interactive Seismic Wave Models": 1 + "Elementary: Basic Geography and Plate Tectonics with 3D Printed Globe Models and VR": 1 + "Elementary: Studying Plate Tectonics and Basic Geography with Interactive GIS Mapping": 1 + "Elementary: Understanding Plate Tectonics and Basic Geography with Augmented Reality using Microsoft HoloLens": 1 + "Elementary: Plate Tectonics and Basic Geography with Interactive Globe Models using Leap Motion Controller": 1 + "Elementary: Exploration of Plate Tectonics with Earthquake Simulations and Basic Geography": 1 + "Elementary: Understanding Plate Tectonics and Basic Geography through Minecraft Earth and AR Technology": 1 + "Elementary: Plate Tectonics and Basic Geography using Raspberry Pi for Interactive Globe Models": 1 + "Elementary: Understanding Plate Tectonics with Satellite Imagery and Basic Geography using Augmented Reality.": 1 + "Elementary Course: Introduction to Basic Mathematics with Abacus": 1 + "Elementary Course: Exploring Basic Mathematics through Fractions": 1 + "Elementary Course: Introduction to Basic Mathematics using Calculators": 1 + "Elementary Course: Understanding Basic Mathematics with Geometry Tools": 1 + "Elementary Course: Introduction to Basic Mathematics focusing on Algebra": 1 + "Elementary Course: Learning Basic Mathematics through Computer Software": 1 + "Elementary Course: Introduction to Basic Mathematics with Graphing Calculators": 1 + "Elementary Course: Basic Mathematics Made Easy with Mathematics Mobile Apps": 1 + "Elementary Course: Introduction to Basic Mathematics and Number Theory": 1 + "Elementary Course: Mastering Basic Mathematics with Practical Worksheets": 1 + "Environmental Science: Utilizing 3D Printing for Carbon Footprint Reduction in Sports Equipment Manufacturing through Life Cycle Assessment ": 1 + "Carbon Footprint Reduction in Sports Equipment Manufacturing: The Role of Recyclable Materials and Life Cycle Assessment ": 1 + "Environmental Science: Implementing Solar Energy in Sports Equipment Manufacturing to Reduce Carbon Footprint through Life Cycle Assessment ": 1 + "Carbon Footprint Reduction: The Impact of Robotics Automation in Sports Equipment Manufacturing and Life Cycle Assessment ": 1 + "Environmental Science: Waste Management Strategies for Carbon Footprint Reduction in Sports Equipment Manufacturing - A Life Cycle Assessment Perspective ": 1 + "The Influence of Bio-based Materials on Carbon Footprint Reduction in Sports Equipment Manufacturing: A Life Cycle Assessment Approach ": 1 + "Environmental Science: The Application of Artificial Intelligence in Reducing Carbon Footprint in Sports Equipment Manufacturing - A Life Cycle Assessment Study ": 1 + "The Role of Lean Manufacturing in Reducing Carbon Footprint in Sports Equipment Production: A Life Cycle Assessment Perspective ": 1 + "Environmental Science: Leveraging Wind Energy for Carbon Footprint Reduction in Sports Equipment Manufacturing through Life Cycle Assessment ": 1 + "Carbon Footprint Reduction: The Impact of Green Chemistry in Sports Equipment Manufacturing and Life Cycle Assessment.": 1 + "Physics: Exploring the Spectrum with Prisms: The Physics of Light and Color": 1 + "Physics: The Physics of Light and Color through the Lens of a Microscope": 1 + "Physics: The Physics of Light and Color: Understanding through Spectrometers": 1 + "Physics: The Physics of Light and Color: A Study through Photometers": 1 + "Physics: The Physics of Light and Color: An Insight through Fiber Optics": 1 + "Physics: The Physics of Light and Color: An Analysis using Lasers": 1 + "Physics: The Physics of Light and Color: An Examination through Polarized Lenses": 1 + "Physics: The Physics of Light and Color: Exploration with Optical Filters": 1 + "Physics: The Physics of Light and Color: A Journey through Telescopes": 1 + "Physics: The Physics of Light and Color: Discovery using Holography.": 1 + "Geography: Unveiling Earth's Landscape Through Satellite Imagery ": 1 + "Geography: Exploring Earth's Landscape with GIS Technology ": 1 + "Geography: Deciphering Earth's Landscape Using Topographic Maps ": 1 + "Geography: Uncovering Earth's Landscape with Remote Sensing ": 1 + "Geography: Interpreting Earth's Landscape Through Aerial Photography ": 1 + "Geography: Unearthing Earth's Landscape with LiDAR Technology ": 1 + "Geography: Understanding Earth's Landscape Through Geographical Information Systems ": 1 + "Geography: Investigating Earth's Landscape with Digital Elevation Models ": 1 + "Geography: Examining Earth's Landscape Using Geospatial Technology ": 1 + "Geography: Revealing Earth's Landscape Through Cartographic Visualization": 1 + "Art: Quantifying the Economic Value of Art Through Python Data Analytics": 1 + "Art: The Economic Impact of Art Evaluated with Tableau Data Visualization": 1 + "Art: The Value of Art in Economy - A Study Using SPSS Statistics": 1 + "Art: Economic Significance of Art: A Data Science Approach with R": 1 + "Art: The Economic Value of Art - An Analysis using SQL Database Queries": 1 + "Art: Understanding Art's Economic Influence through Big Data Analytics": 1 + "Art: The Value of Art in Economy - A Study Using Microsoft Power BI": 1 + "Art: Investigating Art's Economic Worth through Machine Learning Techniques": 1 + "Art: The Economic Contribution of Art: A Study Using Google Analytics": 1 + "Art: The Role of Art in Economy - A Data-Driven Study using MATLAB.": 1 + "Neurobiology: Exploring Brain Functions with fMRI Techniques and Neuropsychological Testing": 1 + "Neurobiology: Utilizing EEG in Neuropsychological Testing and Studying Neuroplasticity": 1 + "Neurobiology: PET Scans in Examining Brain Functions and the Concept of Neuroplasticity": 1 + "Neurobiology: Role of Transcranial Magnetic Stimulation in Neuropsychological Testing and Neuroplasticity": 1 + "Neurobiology: Insights into Brain Functions through Functional Near-Infrared Spectroscopy and Neuroplasticity": 1 + "Neurobiology: Understanding Brain Functions through Magnetoencephalography and the Concept of Neuroplasticity": 1 + "Neurobiology: Analyzing Brain Functions through Diffusion Tensor Imaging and Neuropsychological Testing": 1 + "Neurobiology: The Use of Positron Emission Tomography in Examining Neuroplasticity": 1 + "Neurobiology: SPECT Imaging in Neuropsychological Testing and Understanding Neuroplasticity": 1 + "Neurobiology: The Role of Functional MRI in Neuropsychological Testing and the Study of Neuroplasticity": 1 + "Sustainable Production of Sports Equipment: Utilising Poly Lactic Acid and Injection Moulding with CNC Machining for Biodegradable Footballs.": 1 + "Environmentally-Friendly Production Techniques: Poly Lactic Acid and 3D Printing for Golf Balls.": 1 + "Sustainable Production of Sports Equipment: Poly Lactic Acid and Injection Moulding with Laser Cutting for Biodegradable Tennis Balls.": 1 + "Poly Lactic Acid and Injection Moulding with CNC Machining for Biodegradable Sports Equipment: A Focus on Hockey Sticks.": 1 + "Advanced Eco-Friendly Production: Poly Lactic Acid, Injection Moulding and CAD Design for Biodegradable Cricket Bats.": 1 + "Eco-conscious Manufacturing Techniques: Poly Lactic Acid and Injection Moulding with CNC Machining for Biodegradable Volleyballs.": 1 + "Biodegradable Baseball Bat Production: Poly Lactic Acid and Injection Moulding with CNC Machining Techniques.": 1 + "Environmentally Sustainable Production: Poly Lactic Acid and Injection Moulding with CNC Machining for Biodegradable Rugby Balls.": 1 + "Progressive Eco Production: Poly Lactic Acid, Injection Moulding and CNC Machining for Biodegradable Badminton Shuttlecocks.": 1 + "Sustainable Sports Equipment Manufacturing: Poly Lactic Acid, Injection Moulding, CNC Machining and Rapid Prototyping for Biodegradable Basketballs.": 1 + "Physics: The Use of Holography in Light Diffraction for Artwork ": 1 + "Physics: The Role of Fiber Optics in Light Diffraction in Art Creation": 1 + "Physics: Exploring the application of Laser Technology in Light Diffraction in Art": 1 + "Physics: The Influence of Prism Refraction in Light Diffraction Artwork": 1 + "Physics: The Integration of Spectroscopy in Light Diffraction Artistry": 1 + "Physics: The Impact of Interference Filters on Light Diffraction in Art": 1 + "Physics: The Application of Light Diffraction in Artwork using Wavefront Sensors": 1 + "Physics: The Role of Photoluminescence in Light Diffraction-based Art": 1 + "Physics: The Insight into Photonic Crystals in Light Diffraction Artwork": 1 + "Physics: The Use of LED Technology in Light Diffraction for Artistic Purposes.": 1 + "Social Studies: Analyzing Cultures through Children's Stories Using Comparative Literature": 1 + "Understanding Cultures through Children's Stories: A Visual Analysis Approach": 1 + "Decoding Cultures: A Semiotic Analysis of Children's Stories in Social Studies": 1 + "Social Studies: Unveiling Cultures through Children's Stories Using Ethnographic Methods": 1 + "Mapping Cultures: A Geographic Information System (GIS) Approach to Children's Stories in Social Studies": 1 + "Social Studies: A Multimedia Approach to Understanding Cultures through Children's Stories": 1 + "Unraveling Cultural Insights: A Content Analysis Technique in Children's Stories for Social Studies": 1 + "Social Studies: Exploring Cultures through Children's Stories Using Mixed Methods Research": 1 + "Learning Cultures through Children's Stories: A Data Visualization Perspective in Social Studies": 1 + "Social Studies: Understanding Cultures through Children's Stories Using Narrative Analysis.": 1 + "Elementary Philosophy 101: Introduction to Ethical Thinking with Kantian Ethics": 1 + "Elementary Philosophy 101: Exploring Ethical Thinking through Utilitarianism": 1 + "Elementary Philosophy 101: Introduction to Ethical Thinking: A Focus on Virtue Ethics": 1 + "Elementary Philosophy 101: Ethical Thinking through the Lens of Deontology": 1 + "Elementary Philosophy 101: Introduction to Ethical Thinking using Consequentialism": 1 + "Elementary Philosophy 101: Ethical Thinking and the Golden Rule": 1 + "Elementary Philosophy 101: Navigating Ethical Thinking with Social Contract Theory": 1 + "Elementary Philosophy 101: Introduction to Ethical Thinking: A Dive into Moral Relativism": 1 + "Elementary Philosophy 101: Ethical Thinking and the Ethics of Care": 1 + "Elementary Philosophy 101: Exploring Ethical Thinking with Egoism.": 1 + "Soccer Statistics: Mastering Advanced Pivot Tables in Excel and Data Visualization in Tableau": 1 + "Soccer Statistics: Applying Regression Analysis in Excel and Tableau for Data Visualization": 1 + "Soccer Statistics: Harnessing Macros in Excel and Tableau for Effective Data Visualization": 1 + "Soccer Statistics: Data Visualization in Excel Using VLOOKUP and Tableau": 1 + "Soccer Statistics: Exploring Data Visualization in Excel with Power Query and Tableau": 1 + "Soccer Statistics: In-depth Study of Conditional Formatting in Excel and Data Visualization in Tableau": 1 + "Soccer Statistics: Leveraging Excel Solver for Data Analysis and Visualization in Tableau": 1 + "Soccer Statistics: Exploring Data Visualization Using Python in Excel and Tableau": 1 + "Soccer Statistics: Understanding Data Visualization through Excel Array Formulas and Tableau": 1 + "Soccer Statistics: Excel Data Modeling and Visualization in Tableau.": 1 + "Biology Basics: Exploring the Human Body and Sports Performance using MRI Scans: The Importance of Lactic Acid Threshold": 1 + "Advanced Biochemistry: The Role of Lactic Acid Threshold in Sports Performance, A Study with Heart Rate Monitors": 1 + "Biology and Sports Science: The Human Body's Lactic Acid Threshold and Its Measurement with Lactate Analyzers": 1 + "Human Physiology: Exploring Lactic Acid Threshold and Sports Performance through VO2 Max Testing": 1 + "In-depth Studies: The Human Body, Lactic Acid Threshold, and Sports Performance: Insights from Ultrasound Technology": 1 + "Biology and Sports Science: The Impact of Lactic Acid Threshold on Performance, A Study using Blood Gas Analyzers": 1 + "Advanced Human Biology: Using Near-Infrared Spectroscopy to Study Lactic Acid Threshold and Sports Performance": 1 + "Human Anatomy & Physiology: Understanding the Lactic Acid Threshold and Its Impact on Sports Performance through Biomechanical Analysis ": 1 + "Detailed Analysis: The Human Body, Lactic Acid Threshold, and Sports Performance: A Study using Electrocardiogram Technology": 1 + "Advanced Sports Science: The Human Body's Lactic Acid Threshold and Its Impact on Performance: Insights from Doppler Ultrasound Technology": 1 + "Mastering Deductive Reasoning with Advanced Sudoku Puzzles: A Deep Dive into Digital Logic Gates using Xilinx ISE Design Suite, VLSI Technology, and Karnaugh Maps.": 1 + "The Expert's Guide to Digital Logic Puzzles: Exploring Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and VHDL Programming.": 1 + "Advanced Guide to Deductive Reasoning and Cryptic Crosswords: Enhancing Digital Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and Field-Programmable Gate Arrays.": 1 + "Unveiling Digital Logic Gates: A Comprehensive Study using Xilinx ISE Design Suite, VLSI Technology, and Verilog Hardware Description Language.": 1 + "An Insider's Path to Deductive Reasoning and Chess Puzzles: Optimizing Digital Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and Boolean Algebra.": 1 + "The Ultimate Guide to Deductive Reasoning and Rubik's Cube Solutions: Deciphering Digital Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and Combinational Logic Circuits.": 1 + "Navigating Deductive Reasoning and Puzzle Solving: Unraveling Digital Logic Gates using Xilinx ISE Design Suite, VLSI Technology, and Sequential Logic Circuits.": 1 + "The Masterclass on Deductive Reasoning and Mystifying Mazes: Decoding Digital Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and Binary Number System.": 1 + "An Expert's Journey: Solving Puzzles with Deductive Reasoning and Digital Logic Gates using Xilinx ISE Design Suite, VLSI Technology, and De Morgan's Laws.": 1 + "The Definitive Guide to Deductive Reasoning and Logic Puzzles: Elevating Digital Logic Gates with Xilinx ISE Design Suite, VLSI Technology, and Integrated Circuits.": 1 + "Advanced Neuroscience: Detailed Analysis of Brain Structures using Functional MRI, Neuronavigation Systems, Magnetoencephalography and Diffusion Tensor Imaging": 1 + "Neuroscience in Focus: Exploring Brain Structures with Functional MRI, Neuronavigation Systems, Magnetoencephalography and Positron Emission Tomography": 1 + "Neuroscience: In-depth Study of Brain Structures through Functional MRI, Neuronavigation Systems, Magnetoencephalography and Electroencephalography": 1 + "Neuroscience: Comprehensive Examination of Brain Structures using Functional MRI, Neuronavigation Systems, Magnetoencephalography and Transcranial Magnetic Stimulation": 1 + "Cutting-Edge Neuroscience: Studying Brain Structures with Functional MRI, Neuronavigation Systems, Magnetoencephalography and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience: Diving into Brain Structures with Functional MRI, Neuronavigation Systems, Magnetoencephalography and Resting State fMRI": 1 + "Progressive Neuroscience: Analysis of Brain Structures using Functional MRI, Neuronavigation Systems, Magnetoencephalography and Brain-Computer Interfaces": 1 + "Neuroscience: A Detailed Study of Brain Structures through Functional MRI, Neuronavigation Systems, Magnetoencephalography and Cerebral Blood Flow Measurement": 1 + "Neuroscience: Brain Structures Unveiled using Functional MRI, Neuronavigation Systems, Magnetoencephalography and Single Photon Emission Computed Tomography": 1 + "Neuroscience: Comprehensive Study of Brain Structures through Functional MRI, Neuronavigation Systems, Magnetoencephalography and Voxel-Based Morphometry": 1 + "Exploring the Influence of Ableton Live's Warping Function in Digital Audio Workstations": 1 + "Unpacking the Impact of Ableton Live's Drum Rack on Modern Music Production": 1 + "The Role of Ableton Live's Sampler in Shaping Digital Audio Workstations": 1 + "Exploring MIDI Mapping in Ableton Live: Its Impact on Digital Audio Workstations": 1 + "Delving into the Influence of Ableton Live's Max for Live on Digital Audio Workstations": 1 + "Dissecting the Impact of Ableton Live's Operator Synth in Digital Audio Workstations": 1 + "The Significance of Ableton Live's Simpler Sampling Instrument in Digital Audio Workstations": 1 + "The Effect of Ableton Live's Audio Effect Racks on Modern Music Production": 1 + "Unraveling the Impact of Ableton Live's Session View on Digital Audio Workstations": 1 + "The Power of Ableton Live's Groove Pool: Its Influence on Digital Audio Workstations": 1 + "Words and Worlds: An Elementary English Course with Shakespearean Literary Analysis and Turnitin Anti-Plagiarism Tools": 1 + "Words and Worlds: An Elementary English Course with Poetry Analysis, Turnitin Anti-Plagiarism Tools, and Google Docs Integration": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis, Turnitin Anti-Plagiarism Tools, and Grammarly Grammar Check": 1 + "Words and Worlds: An Elementary English Course with Victorian Era Literary Analysis, Turnitin Anti-Plagiarism Tools": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis using Metaphors, Turnitin Anti-Plagiarism Tools": 1 + "Words and Worlds: An Elementary English Course with American Literature Analysis, Turnitin Anti-Plagiarism Tools, and Prezi Presentations": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis of Prose, Turnitin Anti-Plagiarism Tools, and Canvas Learning Management System": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis, Turnitin Anti-Plagiarism Tools, and Kahoot Learning Games": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis, Turnitin Anti-Plagiarism Tools, and G Suite for Education": 1 + "Words and Worlds: An Elementary English Course with Literary Analysis of Drama, Turnitin Anti-Plagiarism Tools, and Zoom Virtual Classroom.": 1 + "Exploring Philosophy: Understanding Basic Concepts through Epistemology Using Socratic Method": 1 + "Introduction to Philosophy: Analyzing Basic Concepts through Epistemology with Logic": 1 + "Understanding Philosophy: Examining Basic Concepts using Textual Analysis in Epistemology ": 1 + "Philosophy 101: Utilizing Deductive Reasoning to Study Basic Concepts in Epistemology": 1 + "Philosophy Basics: A Closer Look at Epistemology Concepts using Conceptual Analysis": 1 + "Deeper into Philosophy: Applying Hermeneutics in Studying Epistemology Concepts": 1 + "Philosophy Uncovered: Comprehending Basic Concepts in Epistemology through Phenomenology": 1 + "Introduction to Philosophy: Implementing Empirical Methods in Understanding Epistemology Concepts": 1 + "Philosophy Insights: Unraveling Basic Epistemology Concepts using Cartesian Doubt": 1 + "Introduction to Philosophy: Decoding Epistemology Concepts with the Aid of Critical Thinking.": 1 + "Music: Utilizing Soundcloud and Spotify for In-depth Understanding of 10 Music Genres for Event Planning": 1 + "Music: Leveraging Soundcloud and Beatport to Master 10 Different Music Genres for Event Planning": 1 + "Music: Exploiting Soundcloud and Discogs for Comprehensive Knowledge on 10 Music Genres for Event Planning": 1 + "Music: Harnessing Soundcloud and iTunes to Study 10 Varieties of Music Genres for Event Planning": 1 + "Music: Using Soundcloud and Last.fm for Detailed Insight into 10 Music Genres for Event Planning": 1 + "Music: Applying Soundcloud and Bandcamp to Gain Thorough Knowledge of 10 Music Genres for Event Planning": 1 + "Music: Operating Soundcloud and YouTube for Extensive Comprehension of 10 Music Genres for Event Planning": 1 + "Music: Incorporating Soundcloud and Deezer for Proficient Understanding of 10 Music Genres for Event Planning": 1 + "Music: Adopting Soundcloud and Shazam for Complete Awareness of 10 Music Genres for Event Planning": 1 + "Music: Implementing Soundcloud and Pandora for Detailed Knowledge on 10 Music Genres for Event Planning": 1 + "Mastering Channel EQ in Logic Pro: A Comprehensive Guide to Equalization Techniques ": 1 + "Advanced Compression in Logic Pro: A Detailed Study of EQ Tools in Digital Audio Workstations": 1 + "Logic Pro and Space Designer: A Detailed Study of EQ Tools and Reverb Effects in Digital Audio Workstations": 1 + "Mastering Audio with Alchemy in Logic Pro: A Detailed Study of EQ Tools in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and MIDI Control Surfaces in Digital Audio Workstations": 1 + "Mastering Audio with Flex Time in Logic Pro: A Detailed Study of EQ Tools in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: Understanding EQ Tools and Automation Techniques in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and Sidechain Compression in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and Sample Rate Conversion in Digital Audio Workstations": 1 + "Mastering Ultrabeat in Logic Pro: A Detailed Study of EQ Tools in Digital Audio Workstations.": 1 + "Geography: Uncovering Earth's Landscape with Satellite Imagery": 1 + "Geography: Exploring Earth's Landscape with GPS Technology": 1 + "Geography: Deciphering Earth's Landscape using GIS Systems": 1 + "Geography: Unveiling Earth's Landscape through Topographic Maps": 1 + "Geography: Analyzing Earth's Landscape with Aerial Photography": 1 + "Geography: Probing Earth's Landscape using Remote Sensing Techniques": 1 + "Geography: Inspecting Earth's Landscape with Drone Technology": 1 + "Geography: Interpreting Earth's Landscape using Digital Elevation Models": 1 + "Geography: Revealing Earth's Landscape through Lidar Technology": 1 + "Geography: Investigating Earth's Landscape with Geospatial Analysis": 1 + "Geography: Unraveling Earth's Landscape using Seismic Surveys": 1 + "Exploring the Influence of Color Theory on Gouache Techniques in Modern Art Using Adobe Illustrator: 10 Case Studies": 1 + "Detailed Analysis of Color Wheel and Watercolor Brushes Impact on Gouache Techniques: A Focus on Prismacolor Premier Pencils": 1 + "A Comprehensive Study of Color Theory in Gouache Techniques Using Photoshop: 10 Interactive Projects": 1 + "Organic Shapes and Diagonal Lines in Gouache Techniques: The Role of Color Theory and Acrylic Paints": 1 + "The Impact of Color Theory on Gouache Techniques Using Procreate: A Study of 10 Different Art Styles": 1 + "Utilizing Color Wheel and Watercolor Brushes in Gouache Techniques: A Focus on Winsor & Newton Cotman Watercolors": 1 + "Understanding the Influence of Color Theory in Gouache Techniques Using Digital Tablets: 10 Different Exercises": 1 + "Mastering Gouache Techniques through Color Theory: A Study on Organic Shapes and Diagonal Lines Using Faber-Castell Pitt Artist Pens": 1 + "The Application of Color Theory in Gouache Techniques Using Corel Painter: Analyzing 10 Different Artworks": 1 + "The Impact of Color Theory on Gouache Techniques: A Study Using Arches Watercolor Paper and Organic Shapes.": 1 + "Microbiology 101: A Deep Dive into Genetic Engineering using Polymerase Chain Reaction and CRISPR-Cas9 ": 1 + "Exploring Gene Editing: An In-depth Study of CRISPR-Cas9 and DNA Sequencing with Gel Electrophoresis": 1 + "Microbiology 101: Understanding CRISPR-Cas9 and DNA Sequencing through Next-Generation Sequencing Technology": 1 + "Microbiology 101: A Comprehensive Study on Genetic Engineering and Sanger Sequencing with CRISPR-Cas9 ": 1 + "Exploring Genetic Engineering: A Detailed Analysis of CRISPR-Cas9 and DNA Sequencing through Microarrays": 1 + "Microbiology 101: Delving into Genetic Engineering and CRISPR-Cas9 through Whole-Genome Sequencing": 1 + "Detailed Study on Genetic Engineering: Using CRISPR-Cas9 and DNA Sequencing with Spectrophotometry ": 1 + "Microbiology 101: Unraveling Genetic Engineering through CRISPR-Cas9 and Pyrosequencing": 1 + "Genetic Engineering in Depth: A Study of CRISPR-Cas9 and DNA Sequencing using Southern Blotting": 1 + "Microbiology 101: An Exploration of Genetic Engineering and CRISPR-Cas9 with DNA Sequencing and Fluorescence Microscopy.": 1 + "Mathematics & Architecture: Exploring Fibonacci Sequence Patterns with AutoCAD": 1 + "Geometry in Architecture: Understanding Fibonacci Sequence through Vectorworks and Sketchup": 1 + "The Fibonacci Sequence in World Architecture: A Deep Dive into Parametric Design": 1 + "Unraveling the Fibonacci Sequence in Architecture Geometry: A Guide to 3D Modeling Using Rhino": 1 + "Golden Ratio and Fibonacci Sequence: Exploring Architectural Geometry with Revit": 1 + "Advanced Vectorworks: Applying the Fibonacci Sequence in Architectural Design": 1 + "Architecture Geometry: The Fibonacci Sequence and Its Application in BIM Technology": 1 + "The Fibonacci Sequence in Architecture: Understanding Geometry Through Vectorworks and Grasshopper": 1 + "The Fibonacci Sequence in World Architecture: A Study Using Computational Design Methods": 1 + "Exploring the Fibonacci Sequence: From Mathematics to Architectural Geometry with Dynamo Software": 1 + "Exploring Consciousness: The Role of Neuroimaging in Molecular Biology and Philosophy of Mind ": 1 + "The Impact of CRISPR Technology on Molecular Biology and the Philosophy of Consciousness ": 1 + "Consciousness Explored: The Influence of Genomic Sequencing on the Philosophy of Mind ": 1 + "The Cognitive Landscape: fMRI Technology's Contribution to Molecular Biology and Mind Philosophy ": 1 + "Decoding Consciousness: The Implications of Proteomics on Molecular Biology and Philosophy of Mind ": 1 + "Unraveling Consciousness: The Impact of Single-Cell RNA Sequencing on Molecular Biology's Approach to Mind Philosophy ": 1 + "The Mind Mapped: How Connectomics Shapes Molecular Biology and Philosophy of Consciousness ": 1 + "Exploring Consciousness: The Role of Epigenetics in Molecular Biology's Influence on Mind Philosophy ": 1 + "Consciousness Deconstructed: The Impact of Bioinformatics on Molecular Biology and Philosophy of Mind ": 1 + "The Conscious Genome: Assessing the Influence of Genomic Editing on Molecular Biology and Philosophy of Mind.": 1 + "World Cultures: Art, Traditions, and Cultural Preservation through Blockchain - Exploring Non-Fungible Tokens": 1 + "The Impact of Smart Contracts on the Preservation of World Art and Cultural Traditions": 1 + "World Cultures: Decentralized Ledger Technology and its Role in Cultural Preservation": 1 + "Blockchain and Quantum Computing: An In-depth Study of Cultural Preservation": 1 + "World Cultures: Harnessing AI and Blockchain for Artistic and Traditional Cultural Preservation": 1 + "World Cultures: Art, Traditions, and Cultural Preservation through Blockchain - A Focus on Ethereum": 1 + "Cryptographic Security in Blockchain: A New Approach to Preserving World Cultures": 1 + "World Cultures: The Intersection of Art, Traditions, and Blockchain - The Role of Bitcoin": 1 + "Interplanetary File System (IPFS) and Blockchain: A New Era for Cultural Preservation": 1 + "World Cultures: Art, Traditions, and Cultural Preservation through Blockchain - The Use of Chainlink Oracles.": 1 + "Logic: A Comprehensive Analysis of Logical Fallacies Using Truth Tables, Propositional Calculus and the Law of Excluded Middle.": 1 + "Logical Reasoning: Exploring Fallacies with Truth Tables, Venn Diagrams, and the Law of Excluded Middle.": 1 + "Advanced Logic: A Study on Logical Fallacies Using Truth Tables, Reductio ad Absurdum, and the Law of Excluded Middle.": 1 + "Logic and Critical Thinking: Decoding Logical Fallacies with Truth Tables, Euler Diagrams, and the Law of Excluded Middle.": 1 + "Logic: Detailed Examination of Logical Fallacies using Truth Tables, Boolean Algebra, and the Law of Excluded Middle.": 1 + "In-depth Logic: Dissecting Logical Fallacies using Truth Tables, Karnaugh Maps, and the Law of Excluded Middle.": 1 + "Logic: A Study on Logical Fallacies using Truth Tables, Logic Gates, and the Law of Excluded Middle.": 1 + "Logical Analysis: Probing into Fallacies with Truth Tables, Binary Decision Diagrams, and the Law of Excluded Middle.": 1 + "Reasoning and Logic: An Investigation into Logical Fallacies using Truth Tables, De Morgan’s Laws, and the Law of Excluded Middle.": 1 + "Logic: Unveiling Logical Fallacies with Truth Tables, Set Theory, and the Law of Excluded Middle.": 1 + "Logical Thinking 101: The Power of Reasoning Through Syllogisms": 1 + "Logical Thinking 101: The Power of Reasoning Using Inductive Reasoning": 1 + "Logical Thinking 101: The Power of Reasoning With Deductive Arguments": 1 + "Logical Thinking 101: Harnessing the Power of Reasoning Through Fallacy Identification": 1 + "Logical Thinking 101: Mastering Reasoning with the Tool of Analogies": 1 + "Logical Thinking 101: The Power of Reasoning Through Causal Analysis": 1 + "Logical Thinking 101: Understanding Reasoning with Critical Thinking Software": 1 + "Logical Thinking 101: The Power of Reasoning and Evaluative Judgement": 1 + "Logical Thinking 101: The Power of Reasoning Using Abductive Reasoning": 1 + "Logical Thinking 101: The Power of Reasoning Through the Lens of Cognitive Biases": 1 + "Physical Chemistry: Analyzing Matter with X-Ray Crystallography and Fourier Transform ": 1 + "Physical Chemistry: Unraveling Material Structure with X-Ray Crystallography and Electron Microscopy ": 1 + "Physical Chemistry: A Deep Dive into Matter using X-Ray Crystallography and Bragg’s Law ": 1 + "Physical Chemistry: Deciphering Matter with X-Ray Crystallography and Reciprocal Lattice Concept ": 1 + "Physical Chemistry: Investigation of Matter using X-Ray Crystallography and Atomic Force Microscopy ": 1 + "Physical Chemistry: Uncovering Matter through X-Ray Crystallography and Quantitative Analysis ": 1 + "Physical Chemistry: Understanding Matter with X-Ray Crystallography and Single Crystal Diffractometer ": 1 + "Physical Chemistry: Probing Matter with X-Ray Crystallography and Powder Diffraction ": 1 + "Physical Chemistry: Examining Matter with X-Ray Crystallography and Scanning Electron Microscopy ": 1 + "Physical Chemistry: Insight into Matter using X-Ray Crystallography and Laue Method": 1 + "History: The Influence of Email Communication on the Evolution of Human Civilizations": 1 + "History: The Impact of Social Media Platforms on the Progression of Human Societies": 1 + "History: The Role of Search Engines in the Transformation of Human Civilizations": 1 + "History: The Internet's Hyperlinks - A Game Changer in the Evolution of Human Civilizations": 1 + "History: The Effect of Web Browsers on the Development of Human Civilizations": 1 + "History: The Emergence of E-commerce and its Impact on the Evolution of Human Civilizations": 1 + "History: The Internet and its Influence on the Evolution of Human Civilizations through Online Education": 1 + "History: Streaming Services: Transforming Society and Shaping Human Civilizations": 1 + "History: The Influence of Cryptocurrency on the Evolution of Human Civilizations ": 1 + "History: The Role of Internet of Things (IoT) in the Progression of Human Societies": 1 + "Physics Fundamentals: Analyzing Sound Waves through Lego Structures with Oscilloscopes": 1 + "Physics Fundamentals: Lego Structures and the Resonance Box: A Study of Sound Waves": 1 + "Physics Fundamentals: Lego Structures & Frequency Analysis of Sound Waves": 1 + "Physics Fundamentals: Lego Structures for the Study of Sound Waves using Spectrum Analyzers": 1 + "Physics Fundamentals: Utilizing Lego Structures and Waveform Monitors for Sound Wave Study": 1 + "Physics Fundamentals: Exploring Sound Waves through Lego Structures and Fourier Transforms": 1 + "Physics Fundamentals: Lego Structures and Sound Wave Study using Signal Generators": 1 + "Physics Fundamentals: Lego Structures and the Doppler Effect: A Study of Sound Waves": 1 + "Physics Fundamentals: Lego Structures for the Study of Sound Waves with Phase Shift Analysis": 1 + "Physics Fundamentals: Lego Structures for Sound Waves Exploration using Vibration Meters.": 1 + "Geography: Mapping Ancient Silk Road Trade Routes Using ArcGIS Technology": 1 + "Geography: Utilizing Drone Imaging for Mapping Ancient Trade Routes": 1 + "Geography: Tracing the Phoenician Trade Routes Using GIS and Satellite Imagery": 1 + "Geography: Mapping Ancient Mediterranean Trade Routes Using LiDAR and GIS ": 1 + "Geography: Using 3D Modelling in ArcGIS to Map Ancient Trade Routes": 1 + "Geography: Deciphering Ancient Trade Routes Using GIS and Machine Learning": 1 + "Geography: Exploring the Roman Trade Network Using GIS and Spatial Analysis": 1 + "Geography: Mapping Ancient Maritime Trade Routes with GIS and Sonar Technology": 1 + "Geography: Investigating Ancient Silk Road with GIS and Geospatial Data Analysis": 1 + "Geography: Mapping Ancient Trans-Saharan Trade Routes Using QGIS and Remote Sensing.": 1 + "Art: Evaluating the Economic Impact of Art through Data Visualization in Microsoft Power BI": 1 + "Art and Economy: Assessing the Value of Art Using Microsoft Power BI and Regression Analysis": 1 + "Art's Economic Value: A Study Using Microsoft Power BI and Predictive Modeling": 1 + "The Value of Art in Economy: A Study Using Microsoft Power BI and Machine Learning": 1 + "Art and Economics: A Detailed Analysis Using Microsoft Power BI and Big Data": 1 + "The Economic Significance of Art: A Study Utilizing Microsoft Power BI and Data Mining Techniques": 1 + "Art's Worth in Economy: An In-depth Study Using Microsoft Power BI and Cloud Computing": 1 + "The Economic Value of Art: An Analysis Using Microsoft Power BI and SQL Databases": 1 + "Understanding Art's Economic Impact: A Microsoft Power BI Study with Focus on Data Analytics ": 1 + "Art and Economy: A Comprehensive Study Using Microsoft Power BI and Blockchain Technology.": 1 + "Junior Neuroscience: Exploring the Brain's Structure with MRI and Diffusion Tensor Imaging": 1 + "Junior Neuroscience: Understanding the Brain via Magnetic Resonance Imaging and Functional Connectivity Analysis": 1 + "Junior Neuroscience: Unveiling Brain Structure through Magnetic Resonance Imaging and Voxel-Based Morphometry": 1 + "Junior Neuroscience: Discovering Brain Architecture with MRI and Tractography Techniques": 1 + "Junior Neuroscience: Delving into the Brain with Magnetic Resonance Imaging and Arterial Spin Labeling": 1 + "Junior Neuroscience: Investigating the Brain's Structure with MRI and Echo Planar Imaging": 1 + "Junior Neuroscience: Probing Brain Structure through Magnetic Resonance Imaging and Magnetic Field Correlations": 1 + "Junior Neuroscience: Unraveling the Brain's Structure using Magnetic Resonance Imaging and Susceptibility Weighted Imaging": 1 + "Junior Neuroscience: Understanding the Brain's Internal Workings with MRI and Functional Magnetic Resonance Imaging": 1 + "Junior Neuroscience: Exploring the Brain Structure with Magnetic Resonance Imaging and Diffusion Weighted Imaging.": 1 + "Physical Education: Fundamentals of Basketball: Enhancing Art of Passing with Dribbling Drills using Spalding TF-1000": 1 + "Physical Education: Fundamentals of Basketball: Perfecting Passing and Dribbling with Wilson Evolution Game Ball ": 1 + "Physical Education: The Art of Passing and Dribbling in Basketball using Under Armour 495": 1 + "Physical Education: Basketball Drills: Enhancing Passing Skills with Molten GG7X ": 1 + "Physical Education: Fundamentals of Basketball: Utilizing Nike Elite Championship to Improve Dribbling Drills ": 1 + "Physical Education: Enhancing Basketball Passing Techniques with the Aid of Baden Elite ": 1 + "Physical Education: Fundamentals of Basketball: Elevating the Art of Passing with Spalding Precision ": 1 + "Physical Education: The Science of Dribbling in Basketball: A Comprehensive Guide using Wilson NCAA Replica Game Ball ": 1 + "Physical Education: Basketball Passing and Dribbling Drills: A Deep Dive with The Rock ": 1 + "Physical Education: Mastering Passing and Dribbling in Basketball: The Role of Spalding NBA Street Outdoor Basketball": 1 + "Language Arts: Exploring Shakespeare's Sonnets Through Quill and Ink Writing": 1 + "Language Arts: Analysis of Petrarchan Sonnets Through Quill Writing and Parchment Paper": 1 + "Language Arts: Delving into Renaissance Poetry with the Aid of Spectacles and Quill Writing": 1 + "Language Arts: A Study of Elizabethan Poetry Through Quill Writing and Candlelight Reading": 1 + "Language Arts: Understanding Metaphysical Poetry Through Quill Writing and Papyrus Paper": 1 + "Language Arts: A Dive into Renaissance Poetry with Quill Writing and the Concept of Iambic Pentameter": 1 + "Language Arts: A Journey Through Renaissance Poetry via Quill Writing and the Printing Press": 1 + "Language Arts: Exploring Renaissance Poetry Through Quill Writing and the Art of Illumination": 1 + "Language Arts: Renaissance Poetry - A Study of Sonnets with Quill Writing and Wax Sealing": 1 + "Language Arts: Unraveling Renaissance Poetry Through Quill Writing and the Study of Allegory.": 1 + "Exploring the Role of Blockchain in IoT and Its Impact on the Economics of Music: 10 Strategies for Revitalizing the Sound Industry": 1 + "Understanding the Impact of IoT and AI on Music Economics: 10 Ways to Revolutionize the Sound Industry": 1 + "The Effect of IoT and Streaming Services on the Music Economy: 10 Innovative Solutions to Enhance the Sound Industry": 1 + "IoT, Big Data, and Their Effects on the Music Economy: 10 Strategies for Sound Industry Transformation": 1 + "The Impact of IoT and Cloud Computing on Music Economics: 10 Potential Approaches to Advance the Sound Industry": 1 + "IoT and Machine Learning in Music Economics: 10 Strategies for Improving the Sound Industry": 1 + "The Influence of IoT and Cyber-Physical Systems on Music Economics: 10 Solutions for the Future of the Sound Industry": 1 + "Investigating IoT and Edge Computing in Music Economics: 10 Key Strategies for Sound Industry Development": 1 + "Understanding IoT and 5G Technology's Impact on Music Economics: 10 Innovative Solutions for a Vibrant Sound Industry": 1 + "IoT, Quantum Computing, and the Music Economy: 10 Ways to Overhaul the Sound Industry": 1 + "Art: Fundamentals of Drawing and Sketching with Charcoal": 1 + "Art: Exploring the Basics of Drawing and Sketching using Graphite Pencils": 1 + "Art: Fundamentals of Drawing and Sketching with Digital Tablets": 1 + "Art: Basics of Drawing and Sketching using Pastels": 1 + "Art: Fundamentals of Drawing and Sketching - A Focus on Perspective": 1 + "Art: Drawing and Sketching Fundamentals using Gouache": 1 + "Art: Introduction to Drawing and Sketching with Colored Pencils": 1 + "Art: Fundamentals of Drawing and Sketching - Understanding Proportions": 1 + "Art: Deep Dive into Drawing and Sketching with Oil Pastels": 1 + "Art: Fundamentals of Drawing and Sketching - The Art of Shading.": 1 + "Elementary Education 305: Integrating Google Classroom in Cooperative Games": 1 + "Elementary Education 305: Utilizing iPad Apps in Cooperative Games": 1 + "Elementary Education 305: Implementing Interactive Whiteboards in Cooperative Games": 1 + "Elementary Education 305: Integrating Kahoot! in Cooperative Learning Games": 1 + "Elementary Education 305: Exploring Augmented Reality Apps in Cooperative Games": 1 + "Elementary Education 305: Incorporating Quizlet in Cooperative Games": 1 + "Elementary Education 305: Integrating Seesaw App in Cooperative Games": 1 + "Elementary Education 305: Utilizing Minecraft Education Edition in Cooperative Games": 1 + "Elementary Education 305: Implementing SMART Boards in Cooperative Games": 1 + "Elementary Education 305: Exploring the use of Edmodo in Cooperative Games": 1 + "Elementary Education 305: Incorporating Scratch Programming in Cooperative Games": 1 + "Chemistry: Basic Principles and Advanced Chemical Bonding Analysis using ADF Software and Gaussian Suite with a focus on Lewis Structures": 1 + "Chemistry: Comprehensive Approach to Chemical Bonding Analysis using ADF Software and Molecular Orbital Theory with an Emphasis on Lewis Structures": 1 + "Chemistry: Understanding Chemical Bonding through ADF Software and VSEPR Theory with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Quantum ESPRESSO with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis in ADF Software and ChemDraw with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Periodic Trends with a focus on Lewis Structures": 1 + "Chemistry: Chemical Bonding Analysis using ADF Software, Dalton Software, with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Crystal Field Theory with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software, Schrödinger Suite with a focus on Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Hybridization Theory with a focus on Lewis Structures": 1 + "Biology: An In-depth Study of Cell Structure Using Microscopy": 1 + "Biology: Exploring Cell Structure Through DNA Sequencing": 1 + "Biology: An Introduction to Cell Structure and Electron Microscopy": 1 + "Biology: Advanced Cell Structure Analysis with Confocal Microscopy": 1 + "Biology: Understanding Cell Structure Through Cellular Respiration": 1 + "Biology: Cell Structure Exploration with Fluorescent Tagging": 1 + "Biology: Cell Structure and Function: An Approach through Gene Expression": 1 + "Biology: A Closer Look at Cell Structure Using Spectrophotometry": 1 + "Biology: Cell Structure and Processes: A Bioinformatics Perspective": 1 + "Biology: Exploring Cell Structure Through Chromatography Techniques ": 1 + "Biology: Introduction to Cellular Structure Using Flow Cytometry.": 1 + "Science: Acoustics and The Science of Sounds - An In-depth Study of Sonar Technology": 1 + "Vibrational Frequency: The Core of Acoustics and the Science of Sounds": 1 + "Science: Acoustics and The Science of Sounds - Exploring Ultrasonic Waves": 1 + "The Role of Oscilloscopes in Acoustics and the Science of Sounds": 1 + "Acoustics and The Science of Sounds: A Look into Decibel Meters": 1 + "Science: Acoustics and The Science of Sounds: Understanding Soundproofing Techniques ": 1 + "Acoustics and The Science of Sounds: The Application of Fourier Transform": 1 + "The Science of Sounds: Acoustics and the Role of Microphones": 1 + "Acoustics and The Science of Sounds: Exploring the Impact of Amplifiers": 1 + "Acoustics and The Science of Sounds: A Deep Dive into Echo and Reverberation": 1 + "Physics: The Science of Sound and Vibration - An Exploration of Oscilloscopes": 1 + "Physics: The Science of Sound, Vibration and Frequency Modulation": 1 + "Physics: The Science of Sound and Vibration - Utilizing Spectrum Analyzers": 1 + "Physics: The Science of Sound, Vibration and Signal Processing": 1 + "Physics: The Science of Sound and Vibration - An Introduction to Waveforms ": 1 + "Physics: The Science of Sound and Vibration - Exploring Resonance Phenomena": 1 + "Physics: The Science of Sound, Vibration and Doppler Effect": 1 + "Physics: The Science of Sound and Vibration - Harnessing the Power of Sonar Technology": 1 + "Physics: The Science of Sound, Vibration and Acoustic Impedance ": 1 + "Physics: The Science of Sound and Vibration - Understanding Decibel Levels": 1 + "English: Exploring the Impact of Oculus Rift on Storytelling and Narrative": 1 + "English: Storytelling in the Age of Virtual Reality: A Case Study on Unity 3D": 1 + "English: The Role of Unreal Engine in Virtual Reality Storytelling and Narrative": 1 + "English: Haptic Feedback Technology: A New Dimension to Virtual Reality Storytelling": 1 + "English: The Transformation of Narrative through Google Cardboard in Virtual Reality": 1 + "English: Immersive Storytelling: A Study on the Contribution of HTC Vive in Virtual Reality": 1 + "English: The Role of Virtual Reality in Storytelling and Narrative: An Insight into PlayStation VR": 1 + "English: Affective Storytelling in Virtual Reality: The Role of Biometric Feedback": 1 + "English: The Influence of Microsoft's HoloLens on Virtual Reality Narratives and Storytelling": 1 + "English: Storytelling and Narrative in Virtual Reality: The Potential of Augmented Reality.": 1 + "History: Power Looms and the Role of the Spinning Jenny in the Industrial Revolution": 1 + "Historical Impacts: The Power Loom, Steam Engine, and the Industrial Revolution": 1 + "Power Looms & Steam Power: Unraveling the Threads of the Industrial Revolution": 1 + "Textile Technologies: Power Looms, Cotton Gin, and their Impact on the Industrial Revolution": 1 + "Mechanizing History: The Power Loom, the Water Frame, and the Industrial Revolution": 1 + "The Power Loom and the Flying Shuttle: Weaving the Fabric of the Industrial Revolution": 1 + "Historical Machinery: The Power Loom, the Spindle, and the Industrial Revolution": 1 + "History: Power Looms, the Carding Machine, and their Influence on the Industrial Revolution": 1 + "The Impact of Power Looms and the Spinning Mule on the Industrial Revolution": 1 + "History in Threads: Power Looms, the Jacquard Loom, and the Industrial Revolution": 1 + "Organic Chemistry: Exploring Molecules with ChemDraw, Computational Chemistry Using VMD, and Molecular Docking with AutoDock Tools": 1 + "Organic Chemistry: In-depth Analysis with ChemDraw, VMD, and AutoDock Tools, Featuring Nuclear Magnetic Resonance ": 1 + "Organic Chemistry: Delving into Molecules using ChemDraw, VMD, AutoDock Tools, and Quantum Mechanics Concepts": 1 + "Organic Chemistry: Molecule Design using ChemDraw, VMD, AutoDock Tools, and the Concept of Molecular Orbital Theory": 1 + "Organic Chemistry: Advanced Study of Molecules using ChemDraw, VMD, AutoDock Tools, and Spectroscopy Techniques": 1 + "Organic Chemistry: Understanding Molecules with ChemDraw, Computational Chemistry with VMD, AutoDock Tools, and Mass Spectrometry Analysis": 1 + "Organic Chemistry: Exploration of Molecular Structures with ChemDraw, VMD, AutoDock Tools, and X-ray Crystallography": 1 + "Organic Chemistry: Delving into Molecular Interactions with ChemDraw, VMD, AutoDock Tools, and Thermodynamics Concepts": 1 + "Organic Chemistry: An In-depth Study with ChemDraw, VMD, AutoDock Tools, and Application of Stereochemistry": 1 + "Organic Chemistry: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Introduction to Kinetics.": 1 + "Geography and GIS: Mapping the Origins of Chess": 1 + "Geography and Cartography: Tracing the Path of Backgammon": 1 + "Geography and GPS: Exploring the Birthplaces of Soccer": 1 + "Geography and Remote Sensing: Uncovering the Roots of Cricket": 1 + "Geography and Spatial Analysis: Investigating the Origins of Basketball": 1 + "Geography and Drone Technology: Tracking the Evolution of Baseball": 1 + "Geography and Satellite Technology: Charting the Genesis of American Football": 1 + "Geography and Digital Mapping: Deciphering the Rise of Tennis": 1 + "Geography and 3D Modelling: Mapping the Emergence of Golf": 1 + "Geography and Geocoding: Locating the Origins of Rugby": 1 + "Mathematics: Utilizing Excel for Profit and Loss Calculations": 1 + "Mathematics: The Art of Calculating Profits and Losses with QuickBooks": 1 + "Mathematics: Profit and Loss Forecasting using Financial Modelling": 1 + "Mathematics: Applying Python in Profit and Loss Analysis": 1 + "Mathematics: Understanding Profits and Losses through Graph Theory": 1 + "Mathematics: The Role of Probability in Forecasting Profits and Losses": 1 + "Mathematics: Utilizing MatLab for Profits and Losses Calculations": 1 + "Mathematics: The Art of Calculating Profits and Losses using Financial Ratios": 1 + "Mathematics: Leveraging Blockchain Technology in Profit and Loss Analysis": 1 + "Mathematics: The Art of Calculating Profits and Losses Using Data Analytics.": 1 + "Computer Science: Digital Art and Graphic Design with Adobe Photoshop": 1 + "Computer Science: Exploring Digital Art through Graphic Design with Illustrator": 1 + "Computer Science: Digital Art and Graphic Design using 3D Modeling with Blender": 1 + "Computer Science: Advanced Techniques in Digital Art and Graphic Design using Unity": 1 + "Computer Science: Digital Art and Graphic Design: An Introduction to AutoCAD": 1 + "Computer Science: Digital Art and Graphic Design with CorelDRAW for Beginners": 1 + "Computer Science: Digital Art and Graphic Design - Mastering SketchUp": 1 + "Computer Science: Digital Art and Graphic Design - An In-depth Study of GIMP": 1 + "Computer Science: Digital Art and Graphic Design using HTML5 Canvas": 1 + "Computer Science: Digital Art and Graphic Design Techniques with InDesign": 1 + "Economics 150: The Economics of Music Licensing and Royalties - A Deep Dive into Blockchain Technology": 1 + "Economics 150: The Economics of Music Licensing and Royalties - Exploring the Role of Digital Rights Management (DRM)": 1 + "Economics 150: The Economics of Music Licensing and Royalties - An Analysis of Copyright Management Systems": 1 + "Economics 150: The Economics of Music Licensing and Royalties - The Impact of Napster's Peer-to-Peer Sharing": 1 + "Economics 150: The Economics of Music Licensing and Royalties - Dissecting the Role of Spotify's Streaming Model": 1 + "Economics 150: The Economics of Music Licensing and Royalties - The Influence of YouTube's Ad Revenue Model": 1 + "Economics 150: The Economics of Music Licensing and Royalties - Understanding the Concept of Mechanical Royalties": 1 + "Economics 150: The Economics of Music Licensing and Royalties - Examining the Use of SoundExchange for Royalty Distribution": 1 + "Economics 150: The Economics of Music Licensing and Royalties - A Study on Royalty-Free Music Platforms": 1 + "Economics 150: The Economics of Music Licensing and Royalties - The Impact of iTunes' Download Sales Model.": 1 + "Social Studies: The Role of the Silk Road in Cultural Exchange in Ancient Trade Networks": 1 + "Social Studies: Navigational Tools and Cultural Exchange in Ancient Maritime Trade Networks": 1 + "Social Studies: Cultural Exchange in Ancient Trade Networks: Focusing on the Use of Coins": 1 + "Social Studies: The Impact of the Wheel on Cultural Exchange in Ancient Trade Networks": 1 + "Social Studies: Cultural Exchange Through Papyrus in Ancient Egyptian Trade Networks": 1 + "Social Studies: Cultural Exchange in Ancient Trade Networks: A Study of the Bronze Age Metallurgy": 1 + "Social Studies: The Influence of the Domestication of Horses on Cultural Exchange in Ancient Trade Networks": 1 + "Social Studies: Cultural Exchange in Ancient Trade Networks: The Importance of Pottery": 1 + "Social Studies: The Use of Camel Caravans in Cultural Exchange in Ancient Trade Networks": 1 + "Social Studies: Cultural Exchange in Ancient Trade Networks: Exploring the Impact of the Alphabet.": 1 + "Physics: The Mechanics of Play-Dough and the Application of Force Sensors": 1 + "Physics: Exploring Play-Dough Mechanics through Computational Modeling": 1 + "Physics: The Role of Infrared Thermography in Play-Dough Mechanics": 1 + "Physics: Play-Dough Mechanics and the Influence of 3D Printing Technology": 1 + "Physics: The Mechanics of Play-Dough and the Use of Tensile Testing": 1 + "Physics: Utilizing Microscopic Imaging in Play-Dough Mechanics": 1 + "Physics: Play-Dough Mechanics: A Study in Shear Modulus": 1 + "Physics: The Mechanics of Play-Dough and the Use of Stress-Strain Curves": 1 + "Physics: The Impact of Elasticity on Play-Dough Mechanics": 1 + "Physics: Play-Dough Mechanics and the Application of Hooke’s Law.": 1 + "Oscilloscope Analysis: Dissecting Vibrational Frequency in Acoustics and Sound Science": 1 + "Fourier Transformations: The Heart of Acoustics and Sound Science in Vibrational Frequency": 1 + "Spectrograms in Vibrational Frequency: Exploring Acoustics and the Science of Sounds": 1 + "Harmonic Oscillators: A Deep Dive into Vibrational Frequency and Acoustics": 1 + "Vibration Meter Applications: Understanding the Core of Acoustics and Sound Science": 1 + "The Role of Resonance in Vibrational Frequency: A Study of Acoustics and Sound Science": 1 + "Waveform Analysis: A New Perspective on Vibrational Frequency and Acoustics": 1 + "The Science of Sounds: Exploring Vibrational Frequency through Signal Processing": 1 + "Decibel Meter: Measuring Vibrational Frequency in Acoustics and the Science of Sounds": 1 + "The Influence of Wave Propagation on Vibrational Frequency: An Acoustical and Sound Science Perspective.": 1 + "Mathematics 110: Calculus in Sports Trajectories Using Python Programming": 1 + "Mathematics 110: Utilizing Spreadsheets for Calculus in Sports Trajectories": 1 + "Mathematics 110: Application of Vector Analysis in Calculus for Sports Trajectories": 1 + "Mathematics 110: Calculus in Sports Trajectories with MATLAB Illustrations": 1 + "Mathematics 110: Utilizing GeoGebra in Calculus for Sports Trajectories": 1 + "Mathematics 110: Calculus in Sports Trajectories: A Deep Dive into Projectile Motion": 1 + "Mathematics 110: Calculus in Sports Trajectories: Understanding Velocity and Acceleration": 1 + "Mathematics 110: Calculus in Sports Trajectories and the Role of Newton's Laws": 1 + "Mathematics 110: Incorporating Wolfram Alpha in Calculus for Sports Trajectories": 1 + "Mathematics 110: Calculus in Sports Trajectories: Exploring Forces and Energy": 1 + "Logic: Analyzing Color-Based Puzzles Using Photoshop Techniques": 1 + "Logic: Color-based Puzzle Analysis with Adobe Illustrator": 1 + "Logic: Analyzing Color-Based Puzzles Through CIE Color System": 1 + "Logic: RGB Color Model in Analyzing Color-Based Puzzles": 1 + "Logic: Color-Based Puzzles Analysis Through Pantone Matching System": 1 + "Logic: Analyzing Color-Based Puzzles Utilizing Hexadecimal Color Codes": 1 + "Logic: Color-Based Puzzle Analysis with CMYK Color Model": 1 + "Logic: Analyzing Color-Based Puzzles Using Color Theory Concepts": 1 + "Logic: Color-Based Puzzles: A Deep Dive into HSL Color Model": 1 + "Logic: Analyzing Color-Based Puzzles with the Aid of Digital Color Meters": 1 + "Computer Science: Music Production with Python - Exploring Synthesis Techniques using MIDI Libraries": 1 + "Computer Science: Music Production with Python - Deep Dive into Frequency Modulation Synthesis": 1 + "Computer Science: Music Production with Python - Unpacking the Secrets of Additive Synthesis": 1 + "Computer Science: Utilizing the PyDub Library for Music Synthesis Techniques in Python": 1 + "Computer Science: Music Production with Python - Creating Sonic Textures with Granular Synthesis": 1 + "Computer Science: Music Production with Python - Exploring Wavetable Synthesis Techniques": 1 + "Computer Science: Music Production with Python - Understanding Subtractive Synthesis": 1 + "Computer Science: Advanced Techniques in Music Production with Python and the Librosa Library": 1 + "Computer Science: Music Production with Python - Implementing Phase Distortion Synthesis": 1 + "Computer Science: Music Production with Python - Harnessing the Power of Physical Modelling Synthesis.": 1 + "English Literacy Improvement: Employing iMovie and GarageBand for Musical Storytelling with iPad Integration": 1 + "Advanced English Literacy: Creating Narratives using iMovie, GarageBand and Podcasting Tools": 1 + "Musical Storytelling in English Literacy: Reading and Writing Advancement using iMovie, GarageBand and Voiceover Techniques": 1 + "English Literacy: Enhancing Reading and Writing Skills through iMovie, GarageBand and Interactive Whiteboard Tools for Musical Storytelling": 1 + "English Literacy: Exploring Reading and Writing Enhancement through iMovie, GarageBand and Digital Storytelling ": 1 + "Advanced Literacy: Reading and Writing Skill Enhancement using iMovie, GarageBand and Audio Mixing for Musical Storytelling": 1 + "English Literacy: Reading and Writing Enhancement via Musical Storytelling using iMovie, GarageBand and Collaborative Learning Tools": 1 + "English Literacy: Reading and Writing Skills Development using iMovie, GarageBand and Animation Techniques for Musical Storytelling ": 1 + "English Literacy: Reading and Writing Enhancement through Musical Storytelling using iMovie, GarageBand and Virtual Reality Technology ": 1 + "English Literacy: Reading and Writing Improvement using iMovie, GarageBand and Cloud-Based Collaboration for Musical Storytelling.": 1 + "History 101: The Bessemer Process and The Introduction of the Turret in Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Role of the Steam Engine in the Rise of Ironclad Warships during the Bessemer Era": 1 + "History 101: The Bessemer Process and the Development of the Propeller in Ironclad Warships during the Industrial Revolution ": 1 + "History 101: The Bessemer Process and the Evolution of the Armor Plate in Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Impact of the Screw Propulsion on Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Invention of the Rotary Engine in Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Significance of the Ram Bow in Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Introduction of the Breech-loading Gun in Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Effect of the Rifled Cannon on Ironclad Warships during the Industrial Revolution": 1 + "History 101: The Bessemer Process and the Adoption of the Compressed Air Firing System in Ironclad Warships during the Industrial Revolution.": 1 + "Advanced Study: Utilizing CRISPR-Cas9 in Plant Genetics and Crop Breeding through DNA Sequencing and Genome-Wide Association Studies (GWAS)": 1 + "Specialized Course: Bioinformatics and its Application in Plant Genetics and Crop Breeding using DNA Sequencing and GWAS": 1 + "Intensive Study: The Role of Next-Generation Sequencing in Plant Genetics and Crop Breeding using GWAS": 1 + "Focused Study: Plant Genetics and Crop Breeding using Microarrays, DNA Sequencing and GWAS": 1 + "Comprehensive Course: Exploring Quantitative Trait Loci (QTL) Mapping in Plant Genetics and Crop Breeding using DNA Sequencing and GWAS": 1 + "Advanced Course: Using Single Nucleotide Polymorphism (SNP) in Plant Genetics and Crop Breeding through DNA Sequencing and GWAS": 1 + "Specialized Study: Plant Genetics and Crop Breeding using DNA Sequencing, GWAS, and Marker-Assisted Selection": 1 + "Detailed Course: Applying Genomic Selection in Plant Genetics and Crop Breeding using DNA Sequencing and GWAS": 1 + "Intensive Study: The Role of Restriction Fragment Length Polymorphism (RFLP) in Plant Genetics and Crop Breeding using DNA Sequencing and GWAS": 1 + "Focused Course: Plant Genetics and Crop Breeding using DNA Sequencing, GWAS and Genetic Linkage Mapping.": 1 + "History: The Impact of the Cotton Gin on the Evolution of Plant Cultivation": 1 + "History: Understanding the Influence of the Plow on Mechanization and Plant Cultivation": 1 + "History: The Green Revolution: The Role of Fertilizers in the Mechanization of Plant Cultivation": 1 + "History: Mechanization and the Evolution of Plant Cultivation: A Focus on Crop Rotation": 1 + "History: The Influence of the Threshing Machine on the Evolution of Plant Cultivation": 1 + "History: The Role of Irrigation Systems in the Mechanization of Plant Cultivation": 1 + "History: Mechanization and the Evolution of Plant Cultivation: The Impact of the Reaper": 1 + "History: The Revolution of Plant Cultivation through the Introduction of Tractors": 1 + "History: The Influence of the Seed Drill on the Evolution of Mechanized Plant Cultivation": 1 + "History: The Introduction of Pesticides and its Impact on the Mechanization of Plant Cultivation.": 1 + "Storytelling 101: Creative Writing for Kids using Microsoft Word": 1 + "Storytelling 101: Introducing Kids to Creative Writing through Digital Storyboarding ": 1 + "Storytelling 101: Creative Writing for Kids via Google Docs": 1 + "Storytelling 101: Enhancing Kids' Creative Writing with Grammarly": 1 + "Storytelling 101: Utilizing iPads in Creative Writing for Kids ": 1 + "Storytelling 101: Creative Writing for Kids with Plot Development Focus": 1 + "Storytelling 101: Creative Writing for Kids - Exploring Character Creation": 1 + "Storytelling 101: Utilizing Mind Maps for Creative Writing in Kids ": 1 + "Storytelling 101: Creative Writing for Kids Leveraging Storybird ": 1 + "Storytelling 101: Boosting Kids' Creative Writing with Scrivener Software": 1 + "Elementary Logic Unveiled: Utilizing AND Gates in Truth Tables using MATLAB and Simulink": 1 + "Exploring XOR Logic Gates in Truth Tables with MATLAB and Python": 1 + "Delving into Truth Tables: Understanding NOR Gates using MATLAB and Verilog": 1 + "Elementary Logic Unveiled: Analyzing NAND Gates in Truth Tables using MATLAB and VHDL": 1 + "Introduction to Logic Gates: Exploration of OR Gates in Truth Tables using MATLAB and C++": 1 + "Unveiling Elementary Logic: Grasping XNOR Gates with Truth Tables using MATLAB and Java": 1 + "Streamlining Truth Tables: A Deep Dive into Buffer Gates using MATLAB and FPGA": 1 + "Elementary Logic Unveiled: Mastering NOT Gates in Truth Tables using MATLAB and LabVIEW": 1 + "Comprehensive Study of Truth Tables: Decoding De Morgan's Laws using MATLAB and C#": 1 + "Advanced Logic Exploration: Unveiling Truth Tables and Binary Arithmetic using MATLAB and Assembly Language.": 1 + "Advanced Study of Ribosomal Structure Using Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and X-Ray Crystallography": 1 + "Exploration of Ribosomal Biogenesis through Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Isotope Labeling": 1 + "Advances in Ribosomal Protein Mapping: Utilizing Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy and Mass Spectrometry": 1 + "Analysis of Ribosomal RNA: Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Reverse Transcription PCR Techniques": 1 + "Advanced Exploration of Ribosomal Assembly using Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Fluorescence Microscopy": 1 + "Comprehensive Study of Ribosomal Subunits using Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Single-Molecule Fluorescence Resonance Energy Transfer": 1 + "In-depth Study of Ribosome Functions using Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Next Generation Sequencing": 1 + "A Detailed Study of Ribosome-Associated Factors: Utilizing Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Chromatin Immunoprecipitation": 1 + "Advanced Exploration of Ribosome-Mediated Protein Synthesis using Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and Pulsed-Field Gel Electrophoresis": 1 + "Advanced Exploration of Ribosomal Antibiotics Interactions: Utilizing Cryo-electron Microscopy, Fourier Transform Infrared Spectroscopy, and High-Performance Liquid Chromatography.": 1 + "Elementary Reading: Implementing Kindle in Teaching Basketball Literature for Children": 1 + "Elementary Reading: Utilizing iPad Apps in Teaching Baseball Literature for Children": 1 + "Elementary Reading: Incorporating Google Books in Teaching Soccer Literature for Children": 1 + "Elementary Reading: Using Augmented Reality in Teaching Gymnastics Literature for Children": 1 + "Elementary Reading: Exploiting Interactive PDFs in Teaching Cricket Literature for Children": 1 + "Elementary Reading: Applying Interactive E-books in Teaching Swimming Literature for Children using Adobe Digital Editions": 1 + "Elementary Reading: Deploying Project Gutenberg in Teaching Football Literature for Children": 1 + "Elementary Reading: Implementing Epub files in Teaching Volleyball Literature for Children using Calibre": 1 + "Elementary Reading: Utilizing OverDrive in Teaching Athletics Literature for Children ": 1 + "Elementary Reading: Incorporating Kobo Books in Teaching Tennis Literature for Children": 1 + "Elementary Education 305: Introduction to Cooperative Games - Utilizing Google Forms in Google Classroom with Kahoot Integration": 1 + "Elementary Education 305: Introduction to Cooperative Games - Using Google Forms and Flippity for Interactive Activities in Google Classroom ": 1 + "Elementary Education 305: Introduction to Cooperative Games - Employing Google Forms and Quizlet Live in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Implementing Google Forms and Padlet for Collaborative Learning in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Integrating Google Forms and Flipgrid for Video Responses in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Incorporating Google Forms and Pear Deck for Interactive Presentations in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Exploring Google Forms with Socrative for Quizzes in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Applying Google Forms and Edpuzzle for Video Lessons in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Enhancing Google Forms with ThingLink for Interactive Images in Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games - Utilizing Google Forms and Seesaw for Student Portfolios in Google Classroom": 1 + "Mathematics: Application of Pivot Tables in Excel to Combat World Hunger: A Deep Dive into Precision Farming Techniques": 1 + "Mathematics: Utilizing Solver Function in Excel to Understand World Hunger: Exploring the Impact of Drones in Agriculture": 1 + "Mathematics: Understanding World Hunger through Linear Regression in Excel: The Role of Automated Irrigation Systems": 1 + "Mathematics: Deploying What-If Analysis in Excel to Combat World Hunger: A Study on Biofortified Crops": 1 + "Mathematics: Exploring World Hunger through Excel's Data Model: The Potential of Vertical Farming": 1 + "Mathematics: Application of Excel's Power Query to Understand World Hunger: Evaluating the Benefits of Aquaponics": 1 + "Mathematics: Combatting World Hunger through Excel's Forecast Sheets: Harnessing the Power of Hydroponics": 1 + "Mathematics: Excel's Scenario Manager and its Role in Understanding World Hunger: The Opportunities in Lab-Grown Foods": 1 + "Mathematics: Using Excel's Conditional Formatting to Analyze World Hunger: The Impact of Blockchain Technology in Agriculture": 1 + "Mathematics: Application of Excel's Data Tables in Understanding World Hunger: The Power of Genetic Engineering in Crop Production.": 1 + "Artistic Side of Sports: Exploring Football through DSLR Photography": 1 + "Artistic Side of Sports: Capturing Football Moments through Lens Filters": 1 + "Artistic Side of Sports: Football Photography using Time-Lapse Techniques": 1 + "Artistic Side of Sports: Exploring Football through Drone Photography": 1 + "Artistic Side of Sports: Action Photography in Football using High-Speed Cameras": 1 + "Artistic Side of Sports: Football Photography and the Art of Composition": 1 + "Artistic Side of Sports: Football Photography with a Focus on Lighting Techniques": 1 + "Artistic Side of Sports: Exploring Football through Film Photography": 1 + "Artistic Side of Sports: Football Photography and the Use of Wide-Angle Lenses": 1 + "Artistic Side of Sports: Football Photojournalism using Digital Editing Software.": 1 + "Physical Education: Incorporating Net Systems in Team Sports: A Comprehensive Study on Volleyball Techniques": 1 + "The Role of Digital Scoreboards in Physical Education: A Focus on Volleyball Techniques and Team Sports": 1 + "Physical Education: The Impact of Whistle Signals in Team Sports and Volleyball Techniques": 1 + "Volleyball Techniques and Team Sports: Exploring the Role of Gym Flooring in Physical Education": 1 + "Physical Education: Understanding the Use of Electronic Timers in Team Sports with an Emphasis on Volleyball Techniques": 1 + "Physical Education: The Influence of Knee Pads in Volleyball Techniques and Team Sports": 1 + "Exploring the Role of Video Analysis Software in Physical Education: Team Sports and Volleyball Techniques": 1 + "Team Sports and Volleyball Techniques in Physical Education: The Impact of First Aid Kits": 1 + "Physical Education: A Focus on Volleyball Techniques and the Importance of Ball Inflation Devices in Team Sports": 1 + "Usage of Hydration Stations in Physical Education: A Detailed Study on Volleyball Techniques and Team Sports.": 1 + "Logic: Utilizing Venn Diagrams in Principles of Reasoning and Argumentation": 1 + "Exploring Propositional Logic: Principles of Reasoning and Argumentation with Truth Tables": 1 + "Logic: The Role of Quantifiers and the Application of Euler Circles": 1 + "Logic: Understanding Argumentation through the Lens of Predicate Logic": 1 + "Formal Logic: Principles of Reasoning, Argumentation and Deductive Reasoning using Natural Deduction": 1 + "Logic: The Role of Quantifiers in Categorical Syllogism": 1 + "Logic and Fallacies: Principles of Reasoning and Argumentation with Aristotle's Square of Opposition": 1 + "Digital Logic: Applying Boolean Algebra in Principles of Reasoning and Argumentation": 1 + "Logic: Principles of Reasoning, Argumentation and the Role of Quantifiers in Set Theory": 1 + "Analyzing Logic: Applying Karnaugh Maps to Principles of Reasoning and Argumentation.": 1 + "Social Studies: Enhancing Cultural Diversity in Event Management Using LinkedIn's SlideShare Tool": 1 + "Cultural Diversity in Event Management: A Deep Dive into LinkedIn's Algorithm": 1 + "Utilizing LinkedIn's Analytics to Foster Cultural Diversity in Event Management": 1 + "Social Studies: Event Management and Cultural Diversity through LinkedIn Ads Manager": 1 + "Social Studies: Navigating LinkedIn's Job Posting Feature for Diverse Event Management": 1 + "Using LinkedIn's Network Building to Enhance Cultural Diversity in Event Management": 1 + "Social Studies: Applying LinkedIn's InMail for Cultural Diversity in Event Management": 1 + "Enhancing Cultural Diversity in Event Management: A Study on LinkedIn's Content Marketing": 1 + "Social Studies: LinkedIn's Learning Platform and its Impact on Diverse Event Management": 1 + "Social Studies: Leveraging LinkedIn's Live Video Feature for Culturally Diverse Event Management": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques using 3D Printing": 1 + "Harnessing CNC Machining for Zero Waste: Sustainable Sports Equipment Production ": 1 + "Sustainable Sports Equipment Production: Applying CAD Software for Zero Waste Strategies ": 1 + "RFID Technology in Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques": 1 + "Sustainable Sports Equipment Production: IoT Integration for Zero Waste Strategies with Lean Manufacturing Techniques": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques and Six Sigma": 1 + "Implementing AI in Sustainable Sports Equipment Production: Lean Manufacturing Techniques for Zero waste": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies using Injection Moulding Techniques with Lean Manufacturing ": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques using Robotics Automation": 1 + "Sustainable Sports Equipment Production: Zero Waste Strategies with Lean Manufacturing Techniques using Carbon Fiber Composites.": 1 + "English: Leveraging Text Mining with Tensorflow and Python in Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Application of Tensorflow and NLTK in Text Mining: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping and Analysis using Tensorflow and Machine Learning Concepts": 1 + "English: Enhancing Text Mining with Tensorflow and Recurrent Neural Networks: Critical Textual Analysis": 1 + "English: English Text Mining: Using Tensorflow and Keras for Text Mapping and Critical Thinking": 1 + "English: Text Mining and Mapping: A Deep Dive into Tensorflow and Word2Vec Analysis": 1 + "English: Advanced Text Mining with Tensorflow and Scikit-learn: Critical Thinking and Textual Analysis": 1 + "English: Leveraging Text Mining with Tensorflow and Gensim in Text Mapping: Critical Thinking and Analysis": 1 + "English: English: Critical Textual Analysis using Text Mining with Tensorflow and Sentiment Analysis": 1 + "English: Tensorflow and SpaCy in Text Mining: Text Mapping for Critical Thinking and Textual Analysis.": 1 + "Mathematics: The Language of Numbers through Algebra": 1 + "Mathematics: Exploring The Language of Numbers with Calculus": 1 + "Mathematics: The Language of Numbers - A Focus on Trigonometry": 1 + "Mathematics: The Language of Numbers Decoded with Geometry": 1 + "Mathematics: Understanding The Language of Numbers Using Fractions": 1 + "Mathematics: The Language of Numbers - A Journey through Statistics": 1 + "Mathematics: Deciphering The Language of Numbers with Probability": 1 + "Mathematics: The Language of Numbers - Exploring through Linear Equations": 1 + "Mathematics: The Language of Numbers - A Deep Dive into Integrals": 1 + "Mathematics: The Language of Numbers - Unveiling Patterns with Sequences and Series.": 1 + "Neuroscience 110: Exploring the Brain-Music Connection through Deep Brain Stimulation and Functional MRI Imaging": 1 + "Neuroscience 110: Interdisciplinary Approach to Brain and Music: Deep Brain Stimulation and EEG Analysis": 1 + "Neuroscience 110: The Role of Deep Brain Stimulation and PET Scans in Understanding the Brain-Music Relationship": 1 + "Neuroscience 110: Deep Brain Stimulation and the Use of Transcranial Magnetic Stimulation in the Brain-Music Study": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with Deep Brain Stimulation and Neurofeedback Techniques": 1 + "Neuroscience 110: Utilizing Deep Brain Stimulation and NIRS in the Study of Brain-Music Interaction": 1 + "Neuroscience 110: The Brain-Music Connection: Deep Brain Stimulation and the Application of Brain-Computer Interfaces": 1 + "Neuroscience 110: Deep Brain Stimulation and the Use of Diffusion Tensor Imaging in Brain-Music Studies": 1 + "Neuroscience 110: The Neuroscience of Music: Deep Brain Stimulation and the Role of Magnetoencephalography": 1 + "Neuroscience 110: Unveiling the Brain-Music Link through Deep Brain Stimulation and the Application of Computational Neuroscience": 1 + "Introduction to Mathematics: The Art of Counting Calories using MyFitnessPal": 1 + "Understanding Calorie Calculation: A Deep Dive into MyPlate Technology": 1 + "Calorie Counting with Fitbit: A Mathematical Perspective": 1 + "A Detailed Study of Calorie Tracking using the Lose It! App": 1 + "CalorieKing and Mathematics: An Intensive Course on Calorie Counting": 1 + "Mastering Calorie Counting with Chronometer: A Mathematical Approach": 1 + "Introduction to Calorie Counting: Using Mathematical Concepts in Noom": 1 + "Calorie Counting with Apple Health: A Mathematical Exploration": 1 + "Advanced Calorie Counting with Samsung Health: A Mathematical Perspective": 1 + "Mathematics and Nutrition: Mastering Calorie Counting with LifeSum.": 1 + "Social Studies: Exploring Cultural Rhythms in Asian Societies through Drone Photography Utilizing DJI Phantom 4 Pro": 1 + "Social Studies: A Deep Dive into Asian Cultures using DJI Mavic Pro Drone Photography ": 1 + "Social Studies: Exploring Cultural Rhythms in Asian Societies through Drone Photography Leveraging Thermal Imaging Technology": 1 + "Social Studies: Capturing Cultural Rhythms in Asian Societies Using Drone Photography and Photogrammetry": 1 + "Social Studies: Decoding Cultural Rhythms in Asian Societies with Drone Photography and GIS Technology": 1 + "Social Studies: A Study of Cultural Rhythms in Asian Societies using Drone Photography and 3D Modeling": 1 + "Social Studies: Uncovering Cultural Rhythms in Asian Societies through Drone Photography and LiDAR Technology": 1 + "Social Studies: Exploring Cultural Rhythms in Asian Societies using Drone Photography and Augmented Reality": 1 + "Social Studies: Analyzing Cultural Rhythms in Asian Societies through Drone Photography and Machine Learning Algorithms": 1 + "Social Studies: Immersive Study of Cultural Rhythms in Asian Societies using Drone Photography and Virtual Reality Technology.": 1 + "Internet Science: Deciphering the Mystery of HTTP and HTTPS through Wireshark": 1 + "Exploring Digital Certificates: A Deep Dive into HTTP and HTTPS": 1 + "Internet Science: Unraveling HTTP and HTTPS with OpenSSL": 1 + "Understanding HTTP and HTTPS: A Detailed Study through TCP/IP Model": 1 + "Internet Science: Deciphering HTTP and HTTPS using Packet Sniffing Tools": 1 + "SSL/TLS Encryption: A Closer Look at HTTP and HTTPS": 1 + "Internet Science: Deciphering HTTP and HTTPS with Network Protocols": 1 + "Digging Deep into HTTP and HTTPS: A Course on Internet Cookies": 1 + "Internet Science: Deciphering the Mystery of HTTP and HTTPS through Firewalls": 1 + "Decoding HTTP and HTTPS: An In-depth Study of Internet Protocol Suite.": 1 + "Exploring the Influence of VRChat on Volleyball Aesthetics through the Oculus Rift: 10 Innovative Approaches": 1 + "The Impact of VRChat on Volleyball Motion Aesthetics: A Detailed Study on the use of Motion Capture Technology": 1 + "Art and Sports: Evaluating the Role of VRChat and Kinect Sensor in the Evolution of Volleyball Aesthetics": 1 + "The Confluence of VRChat and Google Cardboard in Enhancing Volleyball Movement Aesthetics: 10 Potential Solutions": 1 + "VRChat and HTC Vive: Redefining the Aesthetics of Motion in Volleyball – A Tenfold Approach": 1 + "A Detailed Study on the Influence of VRChat and PlayStation VR in Volleyball Motion Aesthetics": 1 + "VRChat and the Magic Leap One: A New Perspective on the Aesthetics of Volleyball Motion": 1 + "The Intersection of VRChat and the HoloLens in Volleyball Aesthetics: Ten Innovative Approaches": 1 + "The Effect of VRChat and Spatial Computing on the Aesthetics of Volleyball Motions: An Exploration of 10 Possibilities": 1 + "A Comprehensive Study of VRChat and the Use of Eye-Tracking Technology in Volleyball Movement Aesthetics": 1 + "Advanced Neuroscience: Comparative Analysis of Brain Structures using Functional MRI, Neuronavigation Systems, Positron Emission Tomography and Diffusion Tensor Imaging": 1 + "In-depth Study of Brain Structures with Functional MRI, Neuronavigation Systems, Positron Emission Tomography and Electroencephalography": 1 + "Neuroscience Insights: Understanding Brain Structures through MRI, Neuronavigation, PET and Single Photon Emission Computed Tomography": 1 + "Comprehensive Neuroscience: Exploring Brain Structures with Functional MRI, Neuronavigation Systems, PET and Stereotactic Biopsy Procedures": 1 + "Neuroscience: Detailed Analysis of Brain Structures using MRI, Neuronavigation Systems, PET and Transcranial Magnetic Stimulation": 1 + "Advanced Study in Neuroscience: Examining Brain Structures through Functional MRI, Neuronavigation Systems, PET and Magnetic Resonance Spectroscopy": 1 + "In-depth Neuroscience: Comparative study of Brain Structures using Functional MRI, Neuronavigation Systems, PET and Cerebrospinal Fluid Analysis": 1 + "Neuroscience: Diving into Brain Structures through Functional MRI, Neuronavigation Systems, PET and Positron Emission Mammography": 1 + "Advanced Neuroscience: Detailing Brain Structures with Functional MRI, Neuronavigation Systems, PET and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience Explorations: Brain Structures Analysis using Functional MRI, Neuronavigation Systems, PET and Magnetoencephalography.": 1 + "Elementary: Exploring Asian Geography through Environmental Studies with Interactive 3D Printed Globe Models and Augmented Reality": 1 + "Elementary: Exploring Geography through Climate Change Studies with Interactive 3D Printed Globe Models and GIS Technology": 1 + "Elementary: Understanding Geographical Patterns through Environmental Studies with Interactive 3D Printed Globe Models and Satellite Imagery": 1 + "Elementary: Learning North American Geography through Environmental Studies Using Interactive 3D Printed Globe Models and Virtual Reality Simulations": 1 + "Elementary: Exploring Geography via Biodiversity Studies with Interactive 3D Printed Globe Models and Taxonomy Tools": 1 + "Elementary: Understanding African Geography through Environmental Studies with Interactive 3D Printed Globe Models and Drone Mapping": 1 + "Elementary: Exploring Geography through Hydrological Studies with Interactive 3D Printed Globe Models and Water Quality Test Kits": 1 + "Elementary: Delving into European Geography through Environmental Studies with Interactive 3D Printed Globe Models and Weather Forecasting Tools": 1 + "Elementary: Exploring Antarctic Geography through Environmental Studies with Interactive 3D Printed Globe Models and Thermographic Cameras": 1 + "Elementary: Understanding South American Geography through Environmental Studies Using Interactive 3D Printed Globe Models and Soil Analysis Kits.": 1 + "Advanced Data Analytics in Python: An Extensive Review of Economic Information": 1 + "Utilizing R in Data Analytics and the Economics of Information: A Comprehensive Analysis": 1 + "An In-depth Review of Machine Learning in Data Analytics and Information Economics": 1 + "SQL for Data Analytics: A Detailed Examination of the Economics of Information": 1 + "Big Data Analytics and the Economics of Information: A Comprehensive Review Using Hadoop": 1 + "Tableau and Its Application in Data Analytics and Information Economics: An Extensive Review": 1 + "A Comprehensive Review on Data Analytics and Information Economics Using Predictive Modeling": 1 + "The Role of Artificial Intelligence in Data Analytics and the Economics of Information: An Extensive Review": 1 + "An Insightful Review on Data Mining in Data Analytics and the Economics of Information": 1 + "Data Visualization in Data Analytics: A Comprehensive Review of the Economics of Information Using Power BI.": 1 + "Bioinformatics with Python: Analyzing Genomic Data Using Machine Learning, Numpy, and Pandas": 1 + "Bioinformatics with Python: Utilizing Machine Learning and Numpy for Genomic Sequencing": 1 + "Bioinformatics with Python: Exploring Genomic Data with Machine Learning, Numpy, and Matplotlib": 1 + "Bioinformatics with Python: Genomic Data Analysis Using Machine Learning, Numpy, and Jupyter Notebooks": 1 + "Bioinformatics and Python: Unraveling Genomic Data Using Machine Learning, Numpy, and Scikit-Learn": 1 + "Bioinformatics with Python: Genomic Data Mining Using Machine Learning, Numpy and TensorFlow": 1 + "Bioinformatics with Python: Exploring Genomic Data Through Machine Learning, Numpy, and Seaborn": 1 + "Bioinformatics with Python: Decoding Genomic Data Using Machine Learning, Numpy, and PyCharm": 1 + "Bioinformatics with Python: A Focus on Genomic Data Interpretation Using Machine Learning, Numpy, and Keras": 1 + "Bioinformatics with Python: Exploring Genomic Data with Machine Learning, Numpy, and the Command Line Interface": 1 + "Art: Creating Mixed Media Art Inspired by Cultural Games ": 1 + "Art: Crafting Sculptures Inspired by Cultural Games Using Clay": 1 + "Art: Producing Digital Art Inspired by Cultural Games Using Photoshop": 1 + "Art: Developing Watercolor Paintings Inspired by Cultural Games": 1 + "Art: Constructing Collages Inspired by Cultural Games Using Recyclable Materials": 1 + "Art: Designing Art Inspired by Cultural Games Using 3D Printing Technology": 1 + "Art: Fabricating Art Inspired by Cultural Games Using Graffiti Techniques": 1 + "Art: Creating Art Inspired by Cultural Games Through the Lens of Cubism": 1 + "Art: Creating Art Inspired by Cultural Games Using Charcoal Drawing Techniques": 1 + "Art: Crafting Art Inspired by Cultural Games Using Origami Techniques": 1 + "Science: The Acoustics and Physics of Music - A Focus on Sound Waves ": 1 + "Science: Exploring the Physics and Acoustics of Music using Resonance ": 1 + "Science: The Acoustics and Physics of Music - An Exploration of Frequency Analysis ": 1 + "Science: The Physics of Music and Acoustics through the Lens of Sound Synthesis ": 1 + "Science: The Acoustics and Physics of Music - Decoding Harmonics ": 1 + "Science: Amplifying the Acoustics and Physics of Music through Digital Signal Processing ": 1 + "Science: The Acoustics and Physics of Music - A Study of Timbre and Tone ": 1 + "Science: The Acoustics and Physics of Music - Unveiling the Mystery of Overtones ": 1 + "Science: The Physics and Acoustics of Music - Exploring Pitch using Oscilloscopes ": 1 + "Science: The Acoustics and Physics of Music: Dissecting Sound Using Fourier Transforms.": 1 + "Physical Education: The Geometry of Sports Through Motion Capture Technology ": 1 + "Physical Education: The Geometry of Sports Using GPS Tracking ": 1 + "Physical Education: The Geometry of Sports and the Pythagorean Theorem ": 1 + "Physical Education: The Geometry of Sports Explored Through Virtual Reality ": 1 + "Physical Education: The Geometry of Sports - A Focus on Angle Measurement ": 1 + "Physical Education: The Geometry of Sports and the Science of Biomechanics ": 1 + "Physical Education: The Geometry of Sports - An Exploration of Vector Analysis ": 1 + "Physical Education: The Geometry of Sports - Understanding through 3D Modelling": 1 + "Physical Education: The Geometry of Sports - A Study on Proportions and Ratios ": 1 + "Physical Education: The Geometry of Sports - The Impact of Trajectory Analysis": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Distillation Water Purification Techniques": 1 + "Physical Education: Advanced Outdoor Survival Skills and Nature Appreciation by Learning Ceramic Filtering Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through UV Light Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation via Solar Water Disinfection Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation with Iodine Tablet Water Purification Methods": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Boiling Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation using Activated Charcoal Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Reverse Osmosis Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation via Chlorine Drop Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation with Survival Straw Water Purification Methods": 1 + "Health: Using Digital Whistles to Improve Safety in Traditional Sports: Exploring 10 Different Strategies": 1 + "Health: Application of Smart Whistle Technology for Enhanced Safety in Traditional Sports: A Study of 10 Methods": 1 + "Health: Implementing Whistle Commands Via Audio Amplification Tools for Safety in Traditional Sports: An Insight into 10 Solutions": 1 + "Health: Leveraging Electronic Whistle Systems for Safety in Traditional Sports: A Review of 10 Approaches": 1 + "Health: Enhancing Safety in Traditional Sports through Whistle Commands: An Examination of 10 Sports Safety Applications": 1 + "Health: Utilizing Wireless Whistle Commands for Safety in Traditional Sports: 10 Innovative Techniques": 1 + "Health: The Role of Advanced Whistle Technology in Ensuring Safety in Traditional Sports: 10 Practical Implementations": 1 + "Health: Integrating Whistle Commands with Safety Measures in Traditional Sports Using IoT Devices: 10 Noteworthy Solutions": 1 + "Health: Implementing Whistle Commands for Safety in Traditional Sports Using Smart Devices: A Study of 10 Different Techniques": 1 + "Health: Implementing Whistle Commands for Safety in Traditional Sports Through AI Technology: An Exploration of 10 Solutions.": 1 + "Neuroscience Foundations: Exploring Electrophysiology with EEG Technology and MATLAB Analysis": 1 + "Neuroscience Foundations: An Examination of Electrophysiology Using EEG Technology and Spike Sorting Techniques": 1 + "Neuroscience Foundations: Focusing on Electrophysiology Through EEG Technology and ERP Data Analysis": 1 + "Neuroscience Foundations: Understanding Electrophysiology via EEG Technology and Time-Frequency Analysis": 1 + "Neuroscience Foundations: A Study on Electrophysiology with EEG Technology and Python Programming": 1 + "Neuroscience Foundations: Delving into Electrophysiology Utilizing EEG Technology and Wavelet Transform Tools": 1 + "Neuroscience Foundations: Electrophysiology Explored with EEG Technology and Spectrogram Interpretation": 1 + "Neuroscience Foundations: Investigating Electrophysiology by EEG Technology and Quantitative EEG (QEEG)": 1 + "Neuroscience Foundations: Unveiling Electrophysiology with EEG Technology and Independent Component Analysis (ICA)": 1 + "Neuroscience Foundations: Fathoming Electrophysiology via EEG Technology and Neurofeedback Training Techniques": 1 + "Advanced Botany: Evaluating the Effectiveness of Dutch Buckets in Hydroponic Plant Breeding Using pH Meters": 1 + "Advanced Botany: The Impact of LED Grow Lights on Dutch Buckets in Hydroponic Plant Breeding": 1 + "Advanced Botany: Utilizing Nutrient Film Technique for Enhanced Plant Breeding in Dutch Buckets": 1 + "Advanced Botany: The Role of Aeroponics in Improving Dutch Bucket Hydroponic Plant Breeding": 1 + "Advanced Botany: Exploring the Effectiveness of Dutch Buckets in Hydroponic Plant Breeding Through Deep Water Culture": 1 + "Advanced Botany: Optimizing Dutch Buckets using Ebb and Flow Systems in Hydroponic Plant Breeding": 1 + "Advanced Botany: The Influence of Drip Irrigation on Dutch Buckets in Hydroponic Plant Breeding": 1 + "Advanced Botany: Assessing the Effectiveness of Dutch Buckets in Hydroponic Plant Breeding Using Fogponics": 1 + "Advanced Botany: The Application of Wick Systems in Dutch Buckets for Hydroponic Plant Breeding ": 1 + "Advanced Botany: Enhancing Dutch Bucket Efficiency with CO2 Enrichment in Hydroponic Plant Breeding.": 1 + "Language Arts: Analyzing Shakespeare's Dramas with Audible Audio Books": 1 + "Language Arts: Studying Shakespeare's Dramas using Spotify's Audiobook Collection": 1 + "Language Arts: Understanding Shakespeare's Dramas through Google Play Audiobooks": 1 + "Language Arts: Exploring Shakespeare's Dramas with Librivox Free Audiobooks": 1 + "Language Arts: Investigating Shakespeare's Dramas using Amazon's Audible and Annotation Tools": 1 + "Language Arts: Delving into Shakespeare's Dramas with Apple Books Audio Editions": 1 + "Language Arts: Studying Shakespeare's Dramas using Voice Dream Reader App": 1 + "Language Arts: Comprehending Shakespeare's Dramas through Scribd's Audiobook Selections": 1 + "Language Arts: Decoding Shakespeare's Dramas with OverDrive Library Audiobooks": 1 + "Language Arts: Learning Shakespeare's Dramas using Audiobooks.com and Literary Analysis Techniques.": 1 + "Practical Probability: Utilizing Excel's Data Analysis ToolPak for Random Variables and Chance Analysis": 1 + "Advanced Probability Studies: Leveraging Excel Pivot Tables for Complex Random Variables Analysis": 1 + "Probability & Statistics: Excel's Solver Function for Optimizing Random Variables and Chance Analysis": 1 + "Practical Probability: Using Excel's Monte Carlo Simulation for Random Variables and Chance Analysis": 1 + "In-depth Probability: Exploiting Excel's VBA Programming for Random Variables and Chance Analysis": 1 + "Applied Probability: Decoding Random Variables with Excel's Linear Regression Tool and Chance Analysis": 1 + "Practical Probability: Exploring Random Variables and Chance Analysis with Excel's Histogram Tool": 1 + "Real-world Probability: Excel Power Query for Advanced Random Variables and Chance Analysis": 1 + "Practical Probability: Excel's Scenario Manager for Effective Random Variables and Chance Analysis": 1 + "Advanced Probability: Harnessing Excel's Conditional Formatting for Random Variables and Chance Analysis": 1 + "Quantum Chemistry: Utilizing GAMESS and Gaussian for Advanced Computational Simulation of Chemical Reactions ": 1 + "Quantum Chemistry: Application of GAMESS and Ab Initio Methods for Computational Simulation of Chemical Reactions ": 1 + "Quantum Chemistry: Exploring Chemical Reactions through GAMESS and Density Functional Theory ": 1 + "Quantum Chemistry: Computational Simulation of Chemical Reactions using GAMESS and Hartree-Fock Theory ": 1 + "Quantum Chemistry: Leveraging GAMESS and Python for Advanced Chemical Reaction Modeling ": 1 + "Quantum Chemistry: GAMESS and Molecular Mechanics in Computational Simulation of Chemical Reactions ": 1 + "Quantum Chemistry: Using GAMESS and Semi-Empirical Methods for Computational Simulation of Chemical Reactions ": 1 + "Quantum Chemistry: GAMESS and Molecular Dynamics for In-depth Computational Simulation of Chemical Reactions ": 1 + "Quantum Chemistry: GAMESS and Monte Carlo Simulations for Comprehensive Chemical Reactions Analysis": 1 + "Quantum Chemistry: GAMESS and Quantum Mechanics for Advanced Computational Simulation of Chemical Reactions.": 1 + "English Literature: Utilizing BERT Models for Text Analysis in NLP": 1 + "Deep Learning in English Literature: Employing GPT-3 for Advanced Text Analysis": 1 + "English Literature: Text Analysis Using LSTM Networks in Natural Language Processing": 1 + "Leveraging Transformers for Text Analysis in English Literature: A Deep Learning Approach": 1 + "English Literature: Text Analysis and NLP Interpretation with RNN Models": 1 + "English Literature: Deep Learning with Attention Mechanisms for Text Analysis in NLP": 1 + "Implementing GRU Networks for Text Analysis in English Literature: An NLP Study": 1 + "English Literature: Incorporating Seq2Seq Models for In-depth Text Analysis in NLP": 1 + "English Literature: Exploring Text Analysis with Word2Vec in Natural Language Processing": 1 + "English Literature and NLP: Text Analysis using ELMo Models in Deep Learning.": 1 + "English Literature and Climate Change: Utilizing Solar Panels in Eco-criticism": 1 + "Analyzing the Application of Photovoltaic Technology in English Literature with a Climate Change Perspective": 1 + "The Role of Solar Energy Converters in Climate Change Discussions within English Literature": 1 + "English Literature's Perspective on Climate Change: An Analysis through the Lens of Solar Batteries": 1 + "Evaluating Climate Change in English Literature: The Impact of Solar Cell Technology": 1 + "English Literature and Climate Change: A Study on the Role of Solar Energy Storage Systems through Eco-criticism": 1 + "Harnessing Sunlight: A Study on the Role of Solar Thermal Technology in English Literature's Approach to Climate Change": 1 + "English Literature and Climate Change: Analyzing the Role of Concentrated Solar Power through Eco-criticism": 1 + "Solar Energy in English Literature: An Eco-critical Examination of Climate Change and Photovoltaic Systems": 1 + "Climate Change Perspectives in English Literature: A Study on the Role of Solar Power Inverters through Eco-criticism.": 1 + "Social Studies: Evaluating the Impact of Ballroom Dance on Community Cohesion Using ArcGIS Software: A Comparative Regional Analysis": 1 + "Social Studies: The Influence of Ballroom Dance on Community Cohesion: A GIS Mapping Study Using QGIS Tools": 1 + "Social Studies: Profiling Community Cohesion through Ballroom Dance: An Assessment Utilizing Geographical Information Systems (GIS) and Python Programming": 1 + "Social Studies: Assessing Community Cohesion through Ballroom Dance: A GIS Mapping Study using GeoDa Software": 1 + "Social Studies: The Role of Ballroom Dance in Community Cohesion: A GIS Mapping Analysis Using Spatial Autocorrelation Concept": 1 + "Social Studies: The Impact of Ballroom Dance on Community Cohesion: A GIS Mapping Study with GeoJSON Format Analysis": 1 + "Social Studies: Analyzing Community Cohesion through Ballroom Dance: A GIS Mapping Study Using Raster Data Analysis": 1 + "Social Studies: Ballroom Dance's Impact on Community Cohesion: A GIS Mapping Study Incorporating the Use of Vector Data": 1 + "Social Studies: The Impact of Ballroom Dance on Community Cohesion: A GIS Mapping Study Using PostgreSQL Database Management System": 1 + "Social Studies: Exploring the Impact of Ballroom Dance on Community Cohesion: A GIS Mapping Analysis Using the Network Analyst Extension of ArcGIS": 1 + "Understanding Brain Function: Utilizing Magnetic Particle Imaging, fMRI and EEG in Advanced Brain Mapping Techniques": 1 + "Neuroscience Insights: Exploring Brain Function through Magnetic Particle Imaging, fMRI and Positron Emission Tomography": 1 + "Unveiling Brain Function: A Study of Magnetic Particle Imaging, fMRI and Diffusion Tensor Imaging in Brain Mapping": 1 + "Neuroscience: Exploring Brain Function with Magnetic Particle Imaging, fMRI and Transcranial Magnetic Stimulation": 1 + "Decoding Brain Function: Integration of Magnetic Particle Imaging, fMRI and Near Infrared Spectroscopy in Brain Mapping": 1 + "Advanced Neuroscience: Magnetic Particle Imaging, fMRI and Functional Near-Infrared Spectroscopy in Brain Mapping Techniques": 1 + "Pioneering Neuroscience: Using Magnetic Particle Imaging, fMRI and Optogenetics for Brain Mapping": 1 + "Modern Neuroscience: Application of Magnetic Particle Imaging, fMRI and Resting State fMRI in Brain Mapping": 1 + "Detailed Brain Study: In-depth Analysis of Brain Function with Magnetic Particle Imaging, fMRI and Voxel-based Morphometry": 1 + "Neuroscience Breakthroughs: Advancements in Brain Function Mapping using Magnetic Particle Imaging, fMRI and Single-photon Emission Computed Tomography.": 1 + "Physical Education: Strength Building Through Agricultural Labor Using Scythes, Resistance Bands and Tractor-Pulling Techniques": 1 + "Physical Education: Enhancing Muscular Endurance with Scythes, Resistance Bands, and Ergonomic Load Lifters in Agricultural Labor": 1 + "Physical Education: Strength Training with Scythes, Resistance Bands, and Pedometer Tracking in Agricultural Labor": 1 + "Physical Education: Utilizing Scythes, Resistance Bands, and GPS Tech for Efficient Strength Building in Agricultural Labor": 1 + "Physical Education: Incorporating Scythes, Resistance Bands, and Heart Rate Monitors in Agricultural Labor for Optimal Strength Gains": 1 + "Physical Education: Strength Building Through Agricultural Labor: A Focus on Scythes, Resistance Bands, and Soil Resistance": 1 + "Physical Education: Strength Enhancement in Agricultural Labor Using Scythes, Resistance Bands, and Kinetic Energy Concepts": 1 + "Physical Education: Agricultural Labor Strength Training with Scythes, Resistance Bands, and Force Vector Analysis": 1 + "Physical Education: Strength Building Through Agricultural Labor Using Scythes, Resistance Bands, and Hydration Technology": 1 + "Physical Education: Leveraging Scythes, Resistance Bands, and Drone Tech for Strength Building in Agricultural Labor.": 1 + "Neuroscience: Exploring Neural Networks and Synapses Using PET Scans and fMRI Technology": 1 + "Advanced Neuroscience: A Deep Dive into Neural Networks and Synapses Through PET Scans and Diffusion Tensor Imaging": 1 + "Neuroscience: Unraveling Neural Networks and Synapses Using PET Scans and Electroencephalography (EEG)": 1 + "Neuroscience: Comprehensive Study of Neural Networks and Synapses Through PET Scans and Transcranial Magnetic Stimulation": 1 + "Neuroscience: Investigating Neural Networks and Synapses with PET Scans and Optogenetics": 1 + "In-depth Neuroscience: Analyzing Neural Networks and Synapses Through PET Scans and Microdialysis": 1 + "Neuroscience: Understanding Neural Networks and Synapses Through PET Scans and Positron Emission Tomography–Computed Tomography (PET-CT)": 1 + "Advanced Neuroscience: Explication of Neural Networks and Synapses Using PET Scans and Near-Infrared Spectroscopy": 1 + "Neuroscience: Decoding Neural Networks and Synapses Through PET Scans and Magnetoencephalography (MEG)": 1 + "Neuroscience: Insight into Neural Networks and Synapses Through PET Scans and Single-Photon Emission Computed Tomography (SPECT)": 1 + "Harnessing the Power of Dartfish Software for Video Analysis in Team Sports and Volleyball Techniques": 1 + "Utilizing Hudl for Enhanced Video Analysis in Physical Education: A Deep Dive into Team Sports and Volleyball Techniques": 1 + "Applying the Concept of Motion Analysis in Physical Education: Exploring Team Sports and Volleyball Techniques through LongoMatch Software": 1 + "Using SportsCode Gamebreaker for Video Analysis in Team Sports and Volleyball Techniques: A Comprehensive Guide": 1 + "The Role of Kinovea in Video Analysis for Physical Education: An Exploration of Team Sports and Volleyball Techniques": 1 + "In-depth Analysis of Team Sports and Volleyball Techniques: The Impact of Siliconcoach Video Analysis Software": 1 + "Exploring Team Sports and Volleyball Techniques through the Lens of Coach's Eye Video Analysis Software": 1 + "Understanding Team Sports and Volleyball Techniques Better with Nacsport: A Video Analysis Software": 1 + "A Detailed Study on the Role of Quintic Biomechanics Software in Video Analysis for Team Sports and Volleyball Techniques": 1 + "The Impact of Video Analysis in Physical Education: An Exploration of Team Sports and Volleyball Techniques using APAS Software.": 1 + "Exploring the Enigma of the Mind: A Detailed Analysis of Brain Waves using PET Scans, EEG Technology, and Neural Network Theory": 1 + "Decoding the Brain's Secrets: A Comprehensive Study using PET Scans, fMRI Imaging, and Neural Network Concepts": 1 + "The Brain Unveiled: In-depth Analysis using PET Scans, Transcranial Magnetic Stimulation, and Neural Network Theories": 1 + "The Mind's Mysteries: Comprehensive Study of Brain Waves using PET Scans, Neurofeedback Technology, and Neural Network Theory": 1 + "Unraveling Brain Mysteries: An Extensive Study using PET Scans, Diffusion Tensor Imaging, and the Theory of Neural Networks": 1 + "Exploring the Mind's Labyrinth: A Comprehensive Study on Brain Waves using PET Scans, Optogenetics, and Neural Network Principles": 1 + "The Brain: A Mystery Unraveled through PET Scans, Deep Brain Stimulation, and Neural Network Concepts": 1 + "Dissecting the Brain: An In-depth Study on Brain Waves using PET Scans, Stereotactic Surgery, and Neural Network Theory": 1 + "Revealing the Mind's Secrets: A Detailed Examination using PET Scans, Single-Photon Emission Computed Tomography, and Neural Network Theory": 1 + "The Brain Demystified: A Comprehensive Study on Brain Waves using PET Scans, Positron Emission Mammography, and Neural Networks.": 1 + "Mathematics: Using Euclidean Geometry in Art Design with Adobe Illustrator": 1 + "Mathematics: Application of Euclidean Geometry in Art Design using Python Programming": 1 + "Mathematics: Exploring Euclidean Geometry in Art Design through AutoCAD": 1 + "Mathematics: The Role of Euclidean Geometry in Art Design with 3D Printing": 1 + "Mathematics: Utilizing Euclidean Geometry in Art Design with Geogebra Software": 1 + "Mathematics: Euclidean Geometry in Art Design: The Perspective Grid Tool in Adobe Photoshop": 1 + "Mathematics: Integrating Euclidean Geometry and Digital Art Design using Vector Graphics": 1 + "Mathematics: Employing Euclidean Geometry in Art Design with SketchUp": 1 + "Mathematics: Euclidean Geometry in Art Design: Advanced Techniques with CAD Software": 1 + "Mathematics: The Fusion of Euclidean Geometry and Art Design using Augmented Reality Technology.": 1 + "Chemistry: Exploring Chemical Reactions Through Atomic Spectroscopy": 1 + "Chemistry: The Magic of Chemical Reactions Enhanced by Nuclear Magnetic Resonance": 1 + "The Role of Computational Chemistry in Understanding Chemical Reactions": 1 + "Chemistry: Exploring Chemical Reactions and Molecular Modelling with Gas Chromatography": 1 + "The Role of Mass Spectrometry in Chemical Reactions and Molecular Modelling": 1 + "Chemistry: The Magic of Chemical Reactions and Molecular Modelling Through Infrared Spectroscopy": 1 + "Quantum Mechanics: The Core of Chemical Reactions and Molecular Modelling": 1 + "Chemistry: Discovering Chemical Reactions with X-Ray Crystallography and Molecular Modelling": 1 + "The Role of Electron Microscopy in Unveiling the Magic of Chemical Reactions": 1 + "Chemistry: The Magic of Chemical Reactions and Molecular Modelling Unraveled by Ultraviolet-visible Spectroscopy": 1 + "English Grammar: Building Sentences with Story Cubes Using Google Docs": 1 + "English Grammar: Incorporating Story Cubes and Trello in Sentence Building": 1 + "English Grammar: Utilizing Story Cubes and PowerPoint for Sentence Construction": 1 + "English Grammar: Building Sentences with Story Cubes and Microsoft Word": 1 + "English Grammar: Integrating Story Cubes and Google Slides in Sentence Formation": 1 + "English Grammar: Leveraging Story Cubes and Prezi for Sentence Crafting": 1 + "English Grammar: Sentence Construction with Story Cubes and Notion": 1 + "English Grammar: Building Sentences with Story Cubes and Grammarly Tool": 1 + "English Grammar: Using Story Cubes and Canva for Sentence Development": 1 + "English Grammar: Sentence Building with Story Cubes and Evernote": 1 + "Social Studies: The Evolution of Language: The Impact of Morse Code in Radio Technology": 1 + "Social Studies: The Evolution of Language: The Role of Transistors in Radio Broadcasting": 1 + "Social Studies: The Evolution of Language: The Impact of Frequency Modulation on Radio Technology": 1 + "Social Studies: The Evolution of Language: The Influence of Vacuum Tubes on Radio Technology": 1 + "Social Studies: The Evolution of Language: The Contribution of the Crystal Radio to Broadcasting Technology": 1 + "Social Studies: The Evolution of Language: The Effects of AM and FM Bandwidths on Radio Technology": 1 + "Social Studies: The Evolution of Language: The Impact of Shortwave Radio on Global Communications": 1 + "Social Studies: The Evolution of Language: The Role of Radio Antennas in Broadcasting Technology": 1 + "Social Studies: The Evolution of Language: The Impact of Digital Radio Technology on Information Dissemination": 1 + "Social Studies: The Evolution of Language: The Influence of Satellite Radio on Global Language Evolution": 1 + "Sustainable Sports Equipment Production: Poly Lactic Acid Use in Laser Sintering Injection Moulding with Computer-Aided Design Software": 1 + "Advanced Techniques in Poly Lactic Acid Use for Sustainable Sports Equipment: The Role of 3D Printing": 1 + "Harnessing Biodegradable Polymers: Poly Lactic Acid in Laser Sintering Injection Moulding for Sports Equipment": 1 + "Poly Lactic Acid and Laser Sintering Injection Moulding: Incorporating Finite Element Analysis for Sustainable Sports Gear": 1 + "Optimizing Sustainability: Poly Lactic Acid Use in Laser Sintering Injection Moulding with Rapid Prototyping Technology": 1 + "Sustainable Sports Equipment via Poly Lactic Acid: Exploring Laser Sintering Injection Moulding and Additive Manufacturing": 1 + "Poly Lactic Acid in Sports Equipment Production: Laser Sintering Injection Moulding and the Use of CAD/CAM Technology": 1 + "3D Modelling and Laser Sintering: A Deep Dive into Poly Lactic Acid Use for Sustainable Sports Equipment Production": 1 + "Poly Lactic Acid and Laser Sintering Injection Moulding: A Study on Computational Fluid Dynamics in Sports Equipment Fabrication": 1 + "Exploring the Use of Poly Lactic Acid in Laser Sintering Injection Moulding: A Case Study on Sustainable Sports Equipment with Material Extrusion.": 1 + "Elementary Course: Introduction to Basic Mathematics with Casio fx-9860GII Graphing Calculators": 1 + "Elementary Course: Mastering Basic Mathematics through Quadratic Equations with Graphing Calculators": 1 + "Exploring Fractions: An Elementary Course in Basic Mathematics with TI-84 Plus Graphing Calculators": 1 + "Elementary Course: Introduction to Basic Mathematics and Geometry with HP Prime Graphing Calculators": 1 + "Foundation of Basic Mathematics with Pythagorean Theorem using Graphing Calculators": 1 + "Elementary Course: Understanding Trigonometry with Texas Instruments TI-83 Graphing Calculators": 1 + "Basic Mathematics and Linear Algebra Introduction with Casio Graphing Calculators": 1 + "Elementary Course: Introduction to Basic Mathematics and Algebraic Expressions with Graphing Calculators": 1 + "Solving Equations: An Elementary Course in Basic Mathematics with TI-Nspire CX II Graphing Calculators": 1 + "Elementary Course: Introduction to Basic Mathematics and Probability with Graphing Calculators": 1 + "Geography and GIS: Tracing the Origins of 10 Popular Dance Styles": 1 + "Geography: Using Satellite Mapping to Origin Trace 10 Popular Dance Styles": 1 + "Geography: Applying Geospatial Analysis to the Origins of 10 Dance Styles": 1 + "Geography and GPS: Mapping the Origins of 10 Global Dance Styles": 1 + "Geography: Using Geocaching to Uncover the Roots of 10 Dance Styles": 1 + "Geography: A Topographic Approach to Discovering the Origins of 10 Dance Styles": 1 + "Geography: Utilizing Drone Mapping in the Study of 10 Dance Styles' Origins": 1 + "Geography and Digital Mapping: Tracking the Evolution of 10 Dance Styles": 1 + "Geography: Using Cartography to Explore the Origins of 10 Popular Dance Styles": 1 + "Geography: Leveraging Geotagging in the Study of 10 Dance Styles' Origins": 1 + "Science: Understanding the Ecology of Landfills through Bioremediation: Exploring 10 Solutions.": 1 + "Analyzing Landfill Ecology with GIS Mapping: 10 Innovative Approaches.": 1 + "Applying Remote Sensing Technology in the Study of Landfill Ecology: 10 Possible Solutions.": 1 + "Science: The Role of Microbial Fuel Cells in Understanding Landfill Ecology: 10 Potential Solutions.": 1 + "Exploring Landfill Ecology using Biochar: 10 Effective Methods.": 1 + "Science: Understanding the Ecology of Landfills using Pyrolysis: 10 Potential Remedies.": 1 + "Landfill Ecology: Unraveling mysteries with Ground Penetrating Radar (GPR): 10 Possible Solutions.": 1 + "Science: Understanding Landfill Ecology through Leachate Analysis: A Look at 10 Solutions.": 1 + "The Use of Spectroscopy in Studying Landfill Ecology: 10 Proposed Solutions.": 1 + "Science: Unveiling Landfill Ecology using Drone Surveying: 10 Potential Solutions.": 1 + "Music: The Harmony of Planetary Orbits Explored Through Kepler's Laws": 1 + "Sonification of Planetary Orbits: A Course in Music and Astrophysics": 1 + "Soundscapes of the Cosmos: Using Digital Audio Workstations to Interpret Planetary Orbits": 1 + "Music: The Harmony of Planetary Orbits and The Doppler Effect": 1 + "Sonic Astronomy: Exploring Planetary Orbits with Synthesizers": 1 + "The Melody of Movement: Using MIDI Technology to Understand Planetary Orbits": 1 + "Music and Mathematics: Fourier Transforms in the Harmony of Planetary Orbits": 1 + "Celestial Symphony: The Harmony of Planetary Orbits through Oscilloscope ": 1 + "Music: The Harmony of Planetary Orbits Analyzed with Spectrograms": 1 + "Frequencies of the Universe: Understanding Planetary Orbits through Music Theory.": 1 + "English: The Impact of Email Etiquette in International Business Communication": 1 + "English: Using Social Media for International Business Communication": 1 + "English: The Role of Video Conferencing in International Business Communication": 1 + "English: Exploring CRM Tools in International Business Communication": 1 + "English: The Language of SEO in International Business Communication": 1 + "English: Utilizing PowerPoint for Effective International Business Communication": 1 + "English: Cloud Computing and its Influence on International Business Communication": 1 + "English: Navigating Digital Marketing in International Business Communication": 1 + "English: The Importance of Content Management Systems in International Business Communication": 1 + "English: Leveraging Big Data Analytics in International Business Communication": 1 + "Advanced Computational Biology: Exploring Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Big Data Analytics through Python": 1 + "Decoding Genomic Data: A Deep-dive into Parallel Algorithms, R Programming, and High Performance Computing Techniques with Big Data Analytics using Apache Hadoop": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and High Performance Computing Techniques with Big Data Analytics and Machine Learning Concepts": 1 + "Genomic Data Analysis with Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics: An Introduction to Spark": 1 + "In-depth Computational Biology: Applying Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics in Genomic Data Analysis using MATLAB": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics with MongoDB": 1 + "Applied Computational Biology: Exploring Genomic Data Analysis using Parallel Algorithms, R Programming, High Performance Computing Techniques with Big Data Analytics and Data Visualization Techniques": 1 + "Computational Biology and Genomics: Advanced Data Analysis using Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics with TensorFlow": 1 + "Advanced Computational Biology: Unravelling Genomic Data with Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics using SQL Databases": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics.": 1 + "Exploring Zoom: The Potential of Video Conferencing as an E-Learning Tool in Education.": 1 + "The Power of Google Classroom: Revolutionizing Education Through Mobile Applications.": 1 + "Incorporating Kahoot! in Education: Enhancing E-Learning Through Interactive Quizzes.": 1 + "Technology in Education: Utilizing Duolingo for Innovative Language Learning.": 1 + "Transforming Education with Slack: Using Collaborative Platforms as E-Learning Tools.": 1 + "Integrating Evernote in Education: The Prospects of Note-Taking Apps as E-Learning Tools.": 1 + "Technology in Education: The Role of Quizlet in Enhancing Mobile Learning.": 1 + "Using Trello in Education: The Impact of Project Management Apps on E-Learning.": 1 + "Technology in Education: The Use of Nearpod as an Interactive Learning Tool.": 1 + "Harnessing the Potential of Edmodo: A Deep Dive into Social Learning Networks as E-Learning Tools.": 1 + "Precision Analysis of Team Sports and Volleyball Techniques: Utilizing Siliconcoach Video Analysis Software and Dartfish Video Technology": 1 + "Exploring the Impact of Siliconcoach Video Analysis and GPS Tracking on Team Sports and Volleyball Techniques ": 1 + "Team Sports and Volleyball Techniques: A Comprehensive Study Using Siliconcoach Video Analysis Software and Accelerometer Data": 1 + "The Role of Siliconcoach Video Analysis Software and Heart Rate Monitors in Team Sports and Volleyball Techniques": 1 + "Enhancing Team Sports and Volleyball Techniques: An Examination of Siliconcoach Video Analysis Software and Sportscode Gamebreaker Software": 1 + "In-depth Analysis of Team Sports and Volleyball Techniques: The Impact of Siliconcoach Video Analysis Software and Virtual Reality Training": 1 + "Unraveling Team Sports and Volleyball Techniques: Siliconcoach Video Analysis Software and Drone Technology in Focus": 1 + "A Detailed Study on Team Sports and Volleyball Techniques: The Confluence of Siliconcoach Video Analysis Software and Force Plate Technology": 1 + "Decoding Team Sports and Volleyball Techniques: The Use of Siliconcoach Video Analysis Software and Smart Ball Technology": 1 + "Dissecting Volleyball Techniques in Team Sports: The Impact of Siliconcoach Video Analysis Software and KINEXON Sports Tracking Technology": 1 + "Cryptography's Role in WWII: The Specific Influence of the Enigma Machine and the M-209 Cipher Machine on Global Geography": 1 + "The M-209 Cipher Machine: A Detailed Study of Cryptography's Effects on WWII Outcomes": 1 + "Bletchley Park's Contribution: The M-209 Cipher Machine’s Impact on WWII Geography": 1 + "Cryptanalysis During WWII: The M-209 Cipher Machine's Influence on the Battlefields": 1 + "Deciphering the War: The Role of M-209 Cipher Machine and Turing Bombe in WWII Cryptography": 1 + "The Hidden Impact of Cryptanalysis: The M-209 Cipher Machine and Navajo Code Talkers in WWII": 1 + "The M-209 Cipher Machine: How Cryptography Shaped WWII Through the Lens of the Lorenz Cipher": 1 + "WWII's Secret Weapon: The Influence of the M-209 Cipher Machine and the Colossus Computer on the War's Geography": 1 + "Cryptography in WWII: Exploring the M-209 Cipher Machine and its Relation to the Purple Encryption Machine": 1 + "The M-209 Cipher Machine and the SIGABA: A Comparative Study of Their Impact on WWII Geography": 1 + "English Grammar: Mastering Sentence Structures through Syntax Diagramming": 1 + "English Grammar: Mastering Sentence Structures with Gerunds and Infinitives": 1 + "English Grammar: Mastering Sentence Structures using Noun Clauses": 1 + "English Grammar: Mastering Sentence Structures via Compound and Complex Sentences": 1 + "English Grammar: Mastering Sentence Structures through Active and Passive Voice": 1 + "English Grammar: Mastering Sentence Structures with Conjunctions and Interjections": 1 + "English Grammar: Utilizing the Toulmin Model to Master Sentence Structures": 1 + "English Grammar: Mastering Sentence Structures using the Hemingway Editor Tool": 1 + "English Grammar: Mastering Sentence Structures with Direct and Indirect Objects": 1 + "English Grammar: Mastering Sentence Structures through Prepositional Phrases": 1 + "English Grammar: Mastering Sentence Structures using the Grammarly Editing Tool": 1 + "Logic for Beginners: Understanding Aristotle's Square of Opposition in Modal Reasoning": 1 + "The Art of Reasoning: Exploring Quine's Criticism of Modal Operators in Philosophy": 1 + "Logic for Beginners: Applying Kripke Semantics in Modal Reasoning": 1 + "Mastering the Art of Reasoning: A Deep Dive into Lewis's Counterfactuals and Modal Operators": 1 + "Logic for Beginners: An Introduction to Possible World Semantics in Modal Logic": 1 + "The Art of Reasoning: A Practical Approach to Barcan Formulas in Modal Logic": 1 + "Logic for Beginners: Exploring the Influence of Leibniz's Law on Modal Operators": 1 + "Mastering the Art of Reasoning: The Role of Accessibility Relations in Modal Logic": 1 + "Logic for Beginners: Understanding the Concept of Necessity through S5 Modal Logic": 1 + "The Art of Reasoning: Exploring the Applications of Deontic Logic in Modal Reasoning.": 1 + "English Essentials: Reading and Creative Writing with Mind Mapping Techniques using XMind": 1 + "Mastering English: Creative Writing and Reading through Mind Mapping with MindMeister": 1 + "Advanced English: Utilizing Mind Mapping Techniques in Creative Writing with FreeMind": 1 + "English Proficiency: Enhancing Reading and Writing Skills through MindJet Mind Mapping": 1 + "English Mastery: Exploring Reading and Creative Writing using Lucidchart Mind Mapping": 1 + "English Focus: Creative Writing and Reading Improvement through MindNode Mapping Techniques": 1 + "English Precision: Reading and Creative Writing via Mindomo Mind Mapping": 1 + "English Enhancement: Utilizing Mind Mapping Techniques in Reading and Writing with Microsoft Visio": 1 + "English Acumen: Reading and Creative Writing Mastery using Mind Vector": 1 + "English Prowess: Enhancing Creative Writing and Reading Skills with SimpleMind Mind Mapping.": 1 + "Big Data Visualization Using Tableau: Its Impact on Globalization and Modern Trade": 1 + "Understanding Globalization Through Big Data Visualization with Power BI": 1 + "Modern Trade Analysis via Big Data Visualization Using D3.js": 1 + "Big Data Visualization with Python: A Deep Dive into its Role in Globalization and Modern Trade": 1 + "Exploring Globalization with Big Data Visualization Using R Programming": 1 + "Modern Trade Insights: A Course on Big Data Visualization Using Google Charts": 1 + "Harnessing QlikView for Big Data Visualization: Implications for Globalization and Modern Trade": 1 + "Big Data Visualization in Modern Trade: A Course on Excel Pivot Charts": 1 + "Big Data Visualization using Highcharts: Unraveling the Secrets of Globalization": 1 + "Globalization and Modern Trade Trends: A Course on Big Data Visualization Using SAS Visual Analytics.": 1 + "Harnessing AI Algorithms: Optimizing YouTube Music's Personalized Playlist Feature for Jazz Genre in Event Planning": 1 + "Leveraging Machine Learning: Tailoring YouTube Music's Personalized Playlist for Classic Rock in Event Planning": 1 + "Decoding Data Analytics: Enhancing YouTube Music's Personalized Playlist Feature for Pop Genre in Event Planning": 1 + "Exploring Natural Language Processing: Customizing YouTube Music's Personalized Playlist for Country Music in Event Planning": 1 + "Adopting Cloud Computing: Refining YouTube Music's Personalized Playlist Feature for Indie Genre in Event Planning": 1 + "Harnessing IoT: Upgrading YouTube Music's Personalized Playlist Feature for Electronic Dance Music in Event Planning": 1 + "Unveiling Predictive Modeling: Advance YouTube Music's Personalized Playlist Feature for Hip-hop Genre in Event Planning": 1 + "Empowering with Blockchain: Revamping YouTube Music's Personalized Playlist Feature for Reggae Genre in Event Planning": 1 + "Embracing Augmented Reality: Redefining YouTube Music's Personalized Playlist Feature for Soul Music in Event Planning": 1 + "Utilizing Big Data: Advancing YouTube Music's Personalized Playlist Feature for Classical Music in Event Planning.": 1 + "Science: Introduction to Robotics with Arduino Microcontrollers": 1 + "Science: Exploring Robotics with Raspberry Pi Technology": 1 + "Science: Introduction to Robotics using Machine Learning Concepts": 1 + "Science: Robotics and the Application of Artificial Intelligence": 1 + "Science: Introductory Course to Robotics and Python Coding": 1 + "Science: Robotics 101: Understanding Servo Motors": 1 + "Science: Robotics: Utilizing CAD Software for Design": 1 + "Science: Robotics: An Introduction to Lidar Technology": 1 + "Science: Robotics and the Basics of Computer Vision ": 1 + "Science: Robotics: An Introduction to Kinematic Chains": 1 + "World History: The Age of Exploration and the Compass - Navigational Maps' Influence": 1 + "World History: The Age of Exploration, the Compass, and the Astrolabe": 1 + "World History: The Age of Exploration, the Compass, and the Emergence of Cartography": 1 + "World History: The Impact of the Sextant in the Age of Exploration and the Compass": 1 + "World History: The Age of Exploration, the Compass, and the Development of the Caravel": 1 + "World History: Advancements in Timekeeping during the Age of Exploration and the Compass": 1 + "World History: The Age of Exploration, the Compass, and the Use of Quadrants": 1 + "World History: The Age of Exploration, the Compass, and the Introduction of the Cross-Staff": 1 + "World History: The Age of Exploration, the Compass, and the Invention of the Astrolabe ": 1 + "World History: The Age of Exploration, the Compass, and the Role of Lateen Sails": 1 + "Leveraging Google Forms: Revolutionizing Education Through Google Classroom.": 1 + "Google Slides in Classroom: Enhancing Learning through Interactive Presentations.": 1 + "Empowering Education: Using Google Docs in Google Classroom for Collaborative Learning.": 1 + "Google Classroom and Jamboard: An Innovative Approach to Virtual Whiteboards in Education.": 1 + "The Power of Google Sheets in Classroom: Revolutionizing Data Analysis in Education.": 1 + "Google Classroom and Google Meet: Reinventing Virtual Classroom Interactions.": 1 + "Effectively Using Google Drive in Classroom for Seamless Resource Sharing.": 1 + "Google Calendar and Classroom: Streamlining Schedules and Deadlines in Education.": 1 + "The Power of Google Classroom: Integrating YouTube for Interactive Learning.": 1 + "Google Classroom and Chromebooks: A Comprehensive Guide to Mobile Learning.": 1 + "Physical Education: The Application of Fitbit Technology for Heart Rate Monitoring in Movement Study": 1 + "Physical Education: Utilizing Garmin Connect App for Heart Rate Monitoring in Movement Study": 1 + "Physical Education: An Investigation into the Use of Apple's Health App for Heart Rate Monitoring in Movement Studies": 1 + "Physical Education: The Role of Strava App in Heart Rate Monitoring for Movement Study": 1 + "Physical Education: The Impact of MyFitnessPal on Heart Rate Monitoring in Movement Study": 1 + "Physical Education: The Significance of Google Fit in Heart Rate Monitoring for Movement Study": 1 + "Physical Education: The Utility of Samsung Health for Heart Rate Monitoring in Movement Study": 1 + "Physical Education: A Study on the Use of Polar Flow in Heart Rate Monitoring for Movement Studies": 1 + "Physical Education: The Effectiveness of Endomondo for Heart Rate Monitoring in Movement Study": 1 + "Physical Education: The Implementation of Runtastic in Heart Rate Monitoring for Movement Study": 1 + "Chemistry for Kids: Exploring Acids and Bases with Litmus Paper": 1 + "Chemistry for Kids: Discovering Atomic Structures using Electron Microscopes": 1 + "Chemistry for Kids: Fun with Bunsen Burners and Spectroscopy": 1 + "Chemistry for Kids: Understanding Chemical Reactions with Balancing Scales": 1 + "Chemistry for Kids: Exploring Molecules using Molecular Models": 1 + "Chemistry for Kids: Fun with Elements and Microscopes": 1 + "Chemistry for Kids: Learning about Gases with Syringes and Balloons": 1 + "Chemistry for Kids: Exciting Experiments with Bunsen Burners and Test Tubes": 1 + "Chemistry for Kids: Exploring Crystal Formation with Supersaturated Solutions": 1 + "Chemistry for Kids: Fun with Elements, Bunsen Burners, and pH Meters": 1 + "Language Arts: Enhancing Communication Skills through Social Media in a Digital Age": 1 + "Language Arts: Developing Communication Skills with Zoom in a Digital Age": 1 + "Language Arts: Improving Communication Skills using Email Etiquette in a Digital Age": 1 + "Language Arts: Building Communication Skills with Blogging in a Digital Age": 1 + "Language Arts: Developing Communication Skills using Google Docs in a Digital Age": 1 + "Language Arts: Enhancing Communication Skills through Podcasting in a Digital Age": 1 + "Language Arts: Strengthening Communication Skills with Video Conferencing in a Digital Age": 1 + "Language Arts: Developing Communication Skills using PowerPoint in a Digital Age": 1 + "Language Arts: Cultivating Communication Skills through Digital Storytelling in a Digital Age": 1 + "Language Arts: Advancing Communication Skills with Online Collaboration Tools in a Digital Age": 1 + "Art: Techniques for Mixing Mediums in Sports Portraiture: Acrylic Painting and Easel Craftsmanship with Palette Knives": 1 + "Art: Sports Portraiture in Acrylic Painting: Incorporating Mixed Mediums and Easel Craftsmanship with Chiaroscuro Techniques ": 1 + "Art: Mixed Mediums in Acrylic Sports Portraiture: Exploring Easel Craftsmanship and Palette Knife Techniques": 1 + "Art: Sports Portraiture Mastery: Acrylic Painting, Mixed Mediums, and Easel Craftsmanship Using Wet-on-Wet Technique ": 1 + "Art: Innovation in Sports Portraiture: Mixing Mediums with Acrylics, Easel Craftsmanship, and Brushwork Techniques": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Easel Craftsmanship and the Use of Grisaille Technique": 1 + "Art: Advanced Sports Portraiture: Acrylic Painting, Mixed Media Techniques, and Easel Craftsmanship with Glazing Techniques": 1 + "Art: Acrylic Painting and Mixed Mediums in Sports Portraiture: Mastering Easel Craftsmanship and Underpainting Techniques": 1 + "Art: The Art of Mixing Mediums in Sports Portraiture: Acrylic Painting, Easel Craftsmanship, and the Use of Impasto Techniques": 1 + "Art: Mixed Mediums and Acrylic Painting in Sports Portraiture: Exploring Easel Craftsmanship and Sgraffito Techniques": 1 + "Money Matters: Understanding Tax Calculations Using Excel for Children": 1 + "Money Matters: An Introduction to TurboTax for Children": 1 + "Money Matters: Exploring the Concept of Deductions in Taxes for Children": 1 + "Money Matters: A Child's Guide to E-filing Taxes": 1 + "Money Matters: Understanding Tax Brackets and Rates for Children": 1 + "Money Matters: Using QuickBooks to Understand Taxes for Children": 1 + "Money Matters: Learning About Payroll Taxes through Payroll Software for Children": 1 + "Money Matters: Explaining Tax Credits with Online Tools for Children": 1 + "Money Matters: IRS Forms and Tax Filing Apps for Children": 1 + "Money Matters: The Role of Financial Software in Understanding Taxes for Children.": 1 + "Elementary Mathematics: The Role of Numbers in Regression Analysis using SPSS": 1 + "Elementary Mathematics: The Impact of Numbers on Regression Analysis with Excel Solver": 1 + "Elementary Mathematics: The Influence of Numbers on Regression Analysis and the Application of Python": 1 + "Elementary Mathematics: The Effect of Numbers on Regression Analysis through R Programming": 1 + "Elementary Mathematics: The Significance of Numbers in Regression Analysis using MATLAB": 1 + "Elementary Mathematics: The Impact of Numbers on Regression Analysis and the Introduction of SAS": 1 + "Elementary Mathematics: The Role of Numbers in Regression Analysis through the Lens of Stata": 1 + "Elementary Mathematics: The Use of Numbers in Regression Analysis with the Assistance of Tableau": 1 + "Elementary Mathematics: The Impact of Numbers on Regression Analysis and the Exploration of JMP": 1 + "Elementary Mathematics: Understanding Regression Analysis through Numbers and the Application of Minitab": 1 + "Geography: Utilizing ArcGIS Tools for Environmental Analysis": 1 + "Geography: Environmental Analysis Using QGIS Software": 1 + "Geography: Leveraging Remote Sensing for GIS Environmental Analysis": 1 + "Geography: Application of LiDAR in GIS for Environmental Analysis": 1 + "Geography: Using Python in GIS for Environmental Data Analysis ": 1 + "Geography: Environmental Analysis with GIS using Geodatabase Technology ": 1 + "Geography: Integrating GPS Technology in GIS for Environmental Analysis ": 1 + "Geography: Geospatial Statistics in GIS for In-depth Environmental Analysis ": 1 + "Geography: GeoServer Application for GIS Environmental Analysis": 1 + "Geography: Environmental Analysis in GIS Using Raster Data.": 1 + "Junior Neuroscience: Exploring the Brain's Structure with MRI and Echo Planar Imaging using Advanced Neuroimaging Techniques": 1 + "Junior Neuroscience: Tracing Neural Pathways with Diffusion Tensor Imaging (DTI) and MRI": 1 + "Junior Neuroscience: Investigating the Brain's Structure with MRI, Echo Planar Imaging and Functional Near-Infrared Spectroscopy (fNIRS)": 1 + "Junior Neuroscience: Analyzing Brain Activity with Electroencephalography (EEG) Assisted Echo Planar Imaging": 1 + "Junior Neuroscience: Studying the Brain's Structure using MRI, Echo Planar Imaging and Positron Emission Tomography (PET)": 1 + "Junior Neuroscience: Unveiling Neural Mechanisms with MRI and MEG-Echo Planar Imaging": 1 + "Junior Neuroscience: Probing into the Brain's Structure with MRI, Echo Planar Imaging and Single-photon Emission Computed Tomography (SPECT)": 1 + "Junior Neuroscience: Decoding Brain's Structure with MRI, Echo Planar Imaging and Transcranial Magnetic Stimulation (TMS)": 1 + "Junior Neuroscience: Investigating Brain's Structure with MRI, Echo Planar Imaging and Optogenetic Technology": 1 + "Junior Neuroscience: Exploring Brain's Structure with MRI, Echo Planar Imaging and Deep Brain Stimulation Techniques.": 1 + "Practical Web Development: Python, Flask, jQuery, HTML5, AJAX Implementation & Bootstrap Framework Integration": 1 + "Web Development Mastery: Python, Flask, jQuery, HTML5, AJAX and CSS Preprocessors": 1 + "Advanced Web Development: Python, Flask, jQuery, HTML5, AJAX and Angular.js Implementation": 1 + "Practical Web Development: Python, Flask, jQuery, HTML5, AJAX Implementation & React.js Usage": 1 + "A Detailed Guide to Web Development: Python, Flask, jQuery, HTML5, AJAX & Firebase Database Integration": 1 + "In-Depth Web Development: Python, Flask, jQuery, HTML5, AJAX & SEO Principles ": 1 + "Comprehensive Web Development: Python, Flask, jQuery, HTML5, AJAX & Git Version Control": 1 + "Web Development Essentials: Python, Flask, jQuery, HTML5, AJAX & Node.js Implementation": 1 + "The Complete Web Development Course: Python, Flask, jQuery, HTML5, AJAX & Docker Deployment": 1 + "Practical Web Development: Python, Flask, jQuery, HTML5, AJAX & Responsive Design Techniques.": 1 + "Elementary Computing 110: Introduction to C++ Programming with Microsoft Visual Studio": 1 + "Elementary Computing 110: Getting Started with C++ Programming using Eclipse IDE": 1 + "Elementary Computing 110: Fundamentals of C++ Programming with Object Oriented Concepts": 1 + "Elementary Computing 110: Beginning C++ Programming with Control Structures": 1 + "Elementary Computing 110: C++ Programming Basics using Code::Blocks": 1 + "Elementary Computing 110: Getting Started with C++ Programming: An Emphasis on Pointers": 1 + "Elementary Computing 110: Introduction to C++ Programming with Data Structures": 1 + "Elementary Computing 110: C++ Programming Fundamentals using Functions and Arrays": 1 + "Elementary Computing 110: Learning C++ Programming with Console Input/Output ": 1 + "Elementary Computing 110: C++ Programming for Beginners with Exception Handling Concept": 1 + "Spelling Mastery: Enhancing English Vocabulary Using Spelling Bees and Flashcards": 1 + "Spelling Expertise: Proficiency in Common English Words through Spelling Bees and Mobile Apps": 1 + "Spelling Prowess: Mastering English Vocabulary via Spelling Bees and Online Games": 1 + "The Art of Spelling: Improving English Word Recognition through Spelling Bees and Interactive Whiteboards": 1 + "Spelling Excellence: Embracing Common English Words through Spelling Bees and Digital Dictionaries": 1 + "Spelling Wizardry: Enhancing English Language Skills through Spelling Bees and E-learning Platforms": 1 + "Spelling Savvy: Conquering Common English Words Using Spelling Bees and Educational Software": 1 + "Spelling Brilliance: Achieving Proficiency in English Words through Spelling Bees and Virtual Reality Tools": 1 + "Spelling Whiz: Expanding English Vocabulary via Spelling Bees and Artificial Intelligence": 1 + "The Spelling Guru: Mastering English Words through Spelling Bees and Augmented Reality Games": 1 + "Advanced Networking: A Comprehensive Study of Packet Switching and Network Protocol using Traceroute, OpenSSL, and Wireshark": 1 + "In-depth Analysis of Packet Switching and Network Protocol through Traceroute, OpenSSL, and TCP/IP: An Advanced Networking Course": 1 + "Advanced Networking: Exploring Packet Switching, Network Protocol, and Firewall Configurations with Traceroute and OpenSSL": 1 + "Advanced Networking: A Detailed Look into Packet Switching and Network Protocol using Traceroute, OpenSSL, and Network Mappers": 1 + "Advanced Networking: A Deep Dive into Packet Switching, Network Protocol, and OSI Model using Traceroute and OpenSSL": 1 + "Advanced Networking: Studying Packet Switching, Network Protocol and IP Routing with Traceroute and OpenSSL": 1 + "Advanced Networking: Analysis of Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute and OpenSSL": 1 + "Advanced Networking: Understanding Packet Switching, Network Protocol, and VPN Operations with Traceroute and OpenSSL": 1 + "Advanced Networking: Packet Switching and Network Protocol Analysis using Traceroute, OpenSSL, and SNMP Tools": 1 + "Advanced Networking: In-depth Exploration of Packet Switching, Network Protocol, and DNS Queries using Traceroute and OpenSSL.": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study Using Oscilloscopes": 1 + "Exploring Acoustic Resonance: Sound Wave Analysis with Fourier Transforms": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study Using Waveform Monitors": 1 + "The Role of Spectrum Analyzers in Acoustic Resonance and Sound Waves Study": 1 + "Acoustic Resonance: An In-depth Study of Sound Waves using Decibel Meters": 1 + "Acoustic Resonance and Sound Waves: A Study of Frequency Modulation": 1 + "Using Signal Generators for In-depth Study of Acoustic Resonance and Sound Waves": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study Using Microphone Polar Patterns": 1 + "Acoustic Resonance and Sound Waves: Understanding the Impact of Echo Through Sonar Technology": 1 + "Investigating Acoustic Resonance: An In-depth Study of Sound Waves using Audio Equalizers.": 1 + "Social Studies: Utilizing Ethnographic Research to Understand Traditional Sports' Cultural Significance.": 1 + "Social Studies: The Role of Participant Observation in Analyzing Traditional Sports' Cultural Impact.": 1 + "Social Studies: Applying Cultural Materialism in Interpreting Traditional Sports' Cultural Significance.": 1 + "Social Studies: The Influence of Symbolic Anthropology on Understanding Traditional Sports' Cultural Significance.": 1 + "Social Studies: Using Digital Ethnography Tools to Decode Traditional Sports' Cultural Significance.": 1 + "Social Studies: The Role of Fieldwork in Studying Traditional Sports' Cultural Significance.": 1 + "Social Studies: Applying Cross-Cultural Comparison for Understanding Traditional Sports' Cultural Significance.": 1 + "Social Studies: The Role of Anthropological Linguistics in Understanding Traditional Sports' Cultural Significance.": 1 + "Social Studies: Using Genealogical Method in Analyzing Traditional Sports' Cultural Significance.": 1 + "Social Studies: The Impact of Structural-Functionalism on Understanding Traditional Sports' Cultural Significance.": 1 + "Art and Technology: The Influence of Oculus Rift VR Gloves on the Perception of Motion in Swimming ": 1 + "Artistic Perception: The Role of HTC Vive VR Gloves in Sensing Motion in Aquatic Movements": 1 + "Digital Art: Exploring the Impact of Google Daydream VR Gloves on Motion Perception in Swimming": 1 + "The Intersection of Art and VR: Understanding the Effect of Samsung Gear VR Gloves on Swimming Motion Perception": 1 + "Motion Art: The Impact of PlayStation VR Gloves on Swimming Motion Perception": 1 + "Artistic Motion: Evaluating the Effect of Microsoft HoloLens VR Gloves on Swimming Movements": 1 + "Art in Virtual Reality: The Influence of Leap Motion VR Gloves on Perception of Swimming Motion": 1 + "Art and VR: Investigating the Effect of Nintendo Switch VR Gloves on Swimming Motion Perception": 1 + "The Art of Motion: The Impact of Sony Morpheus VR Gloves on the Perception of Swimming Movements": 1 + "Artistic Reality: The Role of Magic Leap VR Gloves in Perceiving Motion in Swimming": 1 + "Harnessing Solar Power: Sustainable Living Through Energy-Efficient Recording Studios": 1 + "Bio-Acoustics: Implementing Biomimicry in Energy-Efficient Recording Studios": 1 + "Renewable Resonance: Using Wind Turbines in Sustainable Recording Studios": 1 + "Geo-Thermal Grooves: Sustainable Living through Geo-Thermal Energy in Recording Studios": 1 + "Eco-Soundscapes: Utilizing Rainwater Harvesting in Sustainable Recording Studios": 1 + "Sustainable Soundwaves: Using Energy-Efficient LED Lighting in Recording Studios": 1 + "Green Frequencies: Sustainable Living with Energy Star Certified Equipment in Recording Studios": 1 + "Eco-Bass: Energy Efficiency through Insulation in Recording Studios": 1 + "Green Decibels: Using Motion Sensors for Energy Conservation in Recording Studios": 1 + "Carbon-Neutral Chords: Sustainable Living Through Solar-Powered Mixing Consoles in Recording Studios.": 1 + "The Enigma Machine: Bletchley Park's Secret Weapon in Decoding WWII Strategies": 1 + "Codebreakers of Bletchley Park: The Role of the Bombe Machine in Deciphering WWII Strategy": 1 + "The Geography of Secrecy: Cryptanalysis and Bletchley Park's Role in WWII ": 1 + "Unraveling the Lorenz Cipher: Bletchley Park's Contribution to Decoding WWII Strategy": 1 + "The Ultra Project: Bletchley Park's Secret Decoding of WWII Axis Communications": 1 + "The Colossus Computer: Bletchley Park's Technological Triumph in WWII Decoding": 1 + "Bletchley Park and the Zuse Z3: How Early Computing Decoded WWII Strategy": 1 + "The Purple Code: Bletchley Park's Decoding of Japanese Diplomatic Secrecy in WWII ": 1 + "Bletchley Park: The Role of Frequency Analysis in Cracking Enigma's Secrets during WWII": 1 + "The Turing-Welchman Bombe: Bletchley Park's Innovative Approach to Decoding WWII Strategy": 1 + "History 101: Influence of Steam Engines on the Industrial Revolution": 1 + "History 101: The Role of the Cotton Gin in Industrial Revolution": 1 + "History 101: Power Looms: Weaving the Fabric of the Industrial Revolution": 1 + "History 101: Telegraphs and their Impact on the Industrial Revolution": 1 + "History 101: The Revolutionary Role of the Spinning Jenny in Industrial Times": 1 + "History 101: Iron Making Processes and their Contribution to the Industrial Revolution": 1 + "History 101: The Steam Hammer and the Industrial Revolution": 1 + "History 101: Water Frame: The Game-Changer of the Industrial Revolution": 1 + "History 101: The Blast Furnace: Melting the Way into Industrial Revolution": 1 + "History 101: The Crucible Steel Technique and its Impact on the Industrial Revolution": 1 + "Biology: Exploring Life through Microscopic Art - A Focus on Cellular Division using Electron Microscopy": 1 + "Microscopic Art and Cellular Division: A Detailed Study through Fluorescence Microscopy": 1 + "Cellular Division: A Deep Dive into Mitosis and Meiosis through Microscopic Art using Confocal Microscopy": 1 + "Exploring Cellular Division with Microscopic Art: An In-depth Look at Cytokinesis using Phase-Contrast Microscopy": 1 + "Unveiling the Art of Cellular Division: A Journey through Microscopic Art using Transmission Electron Microscopy": 1 + "The Art of Cellular Division: Exploring Life through Microscopic Art using Atomic Force Microscopy": 1 + "Life under the Lens: A Study of Cellular Division through Microscopic Art using Cryo-Electron Microscopy": 1 + "Microscopic Art and the Beauty of Cellular Division: A Comprehensive Study using Light Microscopy": 1 + "Delving into Cellular Division: An Exploration through Microscopic Art using Scanning Electron Microscopy": 1 + "The Intricacies of Cellular Division: A Study through Microscopic Art using X-ray Microscopy.": 1 + "English: Utilizing Shakespearean Sonnets to Address Climate Change in Creative Writing ": 1 + "English: Expressing Environmental Concerns through Petrarchan Sonnets in Creative Writing Using Metaphors": 1 + "English: Leveraging Imagery in Sonnets for Creative Writing about Deforestation": 1 + "English: Harnessing the Power of Alliteration in Sonnets to Discuss Water Pollution in Creative Writing": 1 + "English: Utilizing Sonnets to Convey Environmental Concerns: A Focus on Rhyme Schemes and Air Pollution ": 1 + "English: Conveying Oceanic Pollution Concerns through English Sonnets with the Aid of Assonance in Creative Writing ": 1 + "English: Using Sonnets in Creative Writing to Discuss Global Warming: A Study in Iambic Pentameter": 1 + "English: Creative Writing - Using Sonnets to Express Environmental Concerns about Wildlife Extinction with Symbolism ": 1 + "English: Conveying Environmental Concerns with Sonnets: A Study of Paradoxes and Soil Erosion in Creative Writing ": 1 + "English: Creative Writing Course Focusing on Hyperbole in Sonnets to Discuss Climate Change.": 1 + "Geography and GIS: Tracing the Journey of Food from Farm to Plate": 1 + "Geography: Farm to Plate Food Journey through Satellite Imagery": 1 + "Geography: Application of Drone Technology in Tracking the Food Journey from Farm to Plate": 1 + "Geography: Utilizing GPS Technology to Map Food's Journey from Farm to Plate": 1 + "Geography: The Journey of Food from Farm to Plate - A Focus on Hydroponics": 1 + "Geography: Understanding Food Supply Chains with Blockchain Technology": 1 + "Geography: The Influence of Agricultural Machinery on the Food's Journey from Farm to Plate": 1 + "Geography: The Role of Refrigeration Technology in the Food's Journey from Farm to Plate": 1 + "Geography: Using AI in Tracing the Journey of Food from Farm to Plate": 1 + "Geography: The Journey of Food from Farm to Plate - A Study on Vertical Farming Technology": 1 + "Neuroscience for Beginners: Exploring the Auditory System with EEG Technology": 1 + "Understanding the Auditory System: A Deep Dive into Cochlear Implants": 1 + "Auditory Neuroscience for Beginners: Utilizing fMRI to Study the Brain's Sound Processing": 1 + "Decoding the Auditory System: An Introduction to Neuroscience and Brainstem Auditory Evoked Potentials": 1 + "Neuroscience for Beginners: A Comprehensive Guide to Hearing Aids and the Auditory System": 1 + "Understanding the Auditory System: The Role of the Brain in Sound Localization": 1 + "Auditory System 101: Neuroscience and the Use of TMS in Studying Hearing ": 1 + "Exploring the Auditory System with Neuroimaging Techniques: A Beginner's Guide to Neuroscience": 1 + "An Introduction to the Auditory System: The Use of PET Scans in Neuroscience": 1 + "Neuroscience for Beginners: The Auditory System and the Impact of Otoacoustic Emissions.": 1 + "Green Football Production: A Comprehensive Study on Injection Moulding Techniques using Polylactic Acid (PLA) and 3D Printing with Biodegradable Materials": 1 + "Sustainable Football Production: Exploring the Use of Fused Deposition Modeling (FDM) in 3D Printing with Biodegradable Materials": 1 + "Green Football Manufacturing: Delving into Injection Moulding Techniques with High-Density Polyethylene (HDPE) and 3D Printing": 1 + "Environmentally Friendly Football Production: An Examination of Stereolithography (SLA) in 3D Printing and Injection Moulding Techniques": 1 + "Green Football Production: A Detailed Analysis of Injection Moulding Techniques using Recycled PET and 3D Printing": 1 + "Sustainable Football Manufacturing: A Study on Injection Moulding Techniques and 3D Printing using Selective Laser Sintering (SLS)": 1 + "Bio-based Football Production: Investigating Injection Moulding Techniques using Polyhydroxyalkanoates (PHA) and 3D Printing": 1 + "Eco-friendly Football Production: A Deep Dive into Injection Moulding Techniques and 3D Printing using Digital Light Processing (DLP)": 1 + "Green Football Production: A Study on Injection Moulding Techniques using Biodegradable Thermoplastic Starch (TPS) and 3D Printing": 1 + "Sustainable Football Manufacturing: A Comprehensive Examination of Injection Moulding Techniques and 3D Printing using Continuous Liquid Interface Production (CLIP)": 1 + "Computer Science Foundations: Exploring AI with Scratch through Python Programming": 1 + "Advanced Computer Science: AI Development with Scratch and TensorFlow": 1 + "Computer Science Essentials: Learning AI with Scratch and Neural Networks": 1 + "Computer Science Foundations: Exploring AI and Deep Learning with Scratch": 1 + "In-depth Computer Science: AI Exploration with Scratch and Machine Learning": 1 + "Computer Science Foundations: Exploring AI with Scratch using Natural Language Processing": 1 + "Programming and Computer Science: AI Concepts with Scratch and Data Mining Techniques": 1 + "Computer Science for Beginners: AI and Robotics with Scratch": 1 + "Computer Science Foundations: Exploring AI with Scratch and Reinforcement Learning": 1 + "Core Computer Science: AI Integration with Scratch and Blockchain Technology.": 1 + "Neuroscience: Exploring Decision Making Through fMRI and Neural Networks": 1 + "The Role of Neural Networks in Decision Making: A Deep Dive into EEG Technology": 1 + "Understanding Decision Making: A PET Scan Approach to Neural Networks": 1 + "Neural Networks and Decision Making: An In-depth Analysis with Tensorflow ": 1 + "The Application of Deep Learning Algorithms in Understanding Neural Networks and Decision Making": 1 + "Exploring Decision Making: Neural Networks through the Lens of Brain-Computer Interface": 1 + "Neural Networks in Decision Making: A Study using Artificial Neural Network Models": 1 + "Machine Learning and Neural Networks: Their Role in Decision-Making Processes": 1 + "Neuroscience: Decoding Decision Making Through the Use of Neural Networks and Neuroimaging": 1 + "Neural Networks and Decision Making: A Comprehensive Study using MATLAB.": 1 + "Language Arts: Using Google Docs Comment Feature to Enhance Communication in the Digital Age": 1 + "Language Arts: Developing Communication Skills using Google Docs Spelling and Grammar Check in a Digital Age ": 1 + "Language Arts: Utilizing Google Docs Voice Typing Feature for Improved Communication in a Digital Age": 1 + "Language Arts: Crafting Effective Messages using Google Docs Translation Tool in a Digital Age": 1 + "Language Arts: Developing Communication Skills using Google Docs Explore Feature in a Digital Time": 1 + "Language Arts: Enhancing Communication Skills with Google Docs Version History in a Digital Age": 1 + "Language Arts: Streamlining Communication with Google Docs Collaboration Tools in a Digital Age": 1 + "Language Arts: Building Communication Skills using Google Docs Research Tool in the Digital Age": 1 + "Language Arts: Developing Communication Skills using Google Docs Citation Tool in a Digital Age": 1 + "Language Arts: Improving Communication Skills using Google Docs Speech to Text Function in a Digital Age": 1 + "Physics: Exploring Polarization through Laser Holography and Prisms Using the Brewster's Angle": 1 + "Advanced Physics: Analyzing Polarization through Quantum Dots, Laser Holography, and Prisms": 1 + "The Physics of Polarization: An In-depth Study of Prisms, Laser Holography, and Snell's Law": 1 + "Physics: Understanding Polarization through Laser Holography, Prisms, and the Malus Law": 1 + "Physics: A Practical Approach to Polarization with Laser Holography, Prisms, and Photomultiplier Tubes": 1 + "Physics: Polarization Revealed through Laser Holography, Prisms, and the Use of Polarimeters": 1 + "Physics: Studying Polarization through Laser Holography, Prisms, and the Fresnel Equations": 1 + "Physics: Decoding Polarization through Laser Holography, Prisms, and the Pockels Effect": 1 + "Physics: Understanding Polarization through Laser Holography, Prisms, and the Jones Calculus": 1 + "Physics: Polarization Insights through Laser Holography, Prisms, and the Stokes Parameters.": 1 + "Physics: Analysis of Vibrations and Sound using Fast Fourier Transform in MATLAB": 1 + "Physics: A Detailed Study of Waveform Analysis using Fast Fourier Transform and Python Programming": 1 + "Physics: Understanding Sound and Vibrations through Waveform Analysis using Fast Fourier Transform in LabVIEW": 1 + "Physics: An In-depth Look into Vibrations and Sound using Fast Fourier Transform with Oscilloscopes": 1 + "Physics: Exploration of Vibrations and Sound using Fast Fourier Transform and Sound Analyzer Software": 1 + "Physics: Advanced Analysis of Vibrations and Sound using Fast Fourier Transform and Simulink": 1 + "Physics: A Comprehensive Study of Vibrations and Sound through Waveform Analysis using Fast Fourier Transform and Signal Processing Toolbox": 1 + "Physics: Deep Dive into Sound and Vibrations through Waveform Analysis using Fast Fourier Transform and Octave": 1 + "Physics: Exploring the Science of Sound using Fast Fourier Transform in Waveform Analysis with Audacity Software": 1 + "Physics: A Detailed Exploration of Vibrations and Sound using Fast Fourier Transform in Mathematica": 1 + "Language Arts: Mastering Sonnet Writing using Anaphora and Alliteration in Gastronomic Poetry": 1 + "Language Arts: Sonnet Creation with Anaphora and Metaphor in Culinary-Inspired Poetry": 1 + "Language Arts: The Art of Sonnet Composition using Anaphora and Rhyme Schemes in Food-Themed Poetry": 1 + "Language Arts: Crafting Sonnets using Anaphora and Iambic Pentameter in Gourmet Poetry": 1 + "Language Arts: Sonnet Writing Mastery using Anaphora and Simile in Epicurean Poetry": 1 + "Language Arts: The Craft of Sonnet Writing using Anaphora and Imagery in Gastronomical Poetry": 1 + "Language Arts: Advanced Sonnet Construction using Anaphora and Hyperbole in Cuisine-Inspired Poetry": 1 + "Language Arts: Sonnet Development with Anaphora and Metonymy in Culinary Poetry": 1 + "Language Arts: The Technique of Sonnet Writing using Anaphora and Personification in Tasteful Poetry": 1 + "Language Arts: Skillful Sonnet Crafting using Anaphora and Onomatopoeia in Delicious Poetry.": 1 + "Music: Introduction to Rhythm and Beats Using a Metronome": 1 + "Music: Exploring Rhythm and Beats with Digital Audio Workstations": 1 + "Music: Understanding Rhythm and Beats through Drum Machines": 1 + "Music: Rhythm and Beats Analysis with MIDI Technology": 1 + "Music: An Introduction to Rhythm and Beats Using Loop Pedals": 1 + "Music: Rhythm and Beats: A Study through Percussion Instruments": 1 + "Music: Rhythm and Beats Decoded with Beat-Making Software": 1 + "Music: Introduction to Rhythm and Beats with Sampling Techniques": 1 + "Music: Rhythm and Beats: A Comprehensive Guide to Tempo": 1 + "Music: Understanding Rhythm and Beats Through Notation Software": 1 + "World History: The Sextant and the Telescope: Technical Innovations that Transformed Maritime Trade and Civilizations": 1 + "The Printing Press and the Compass: A Detailed Study of World History and Technological Advancements": 1 + "World History: The Wheel and the Compass: How these Technologies Altered the Course of Civilizations": 1 + "World History: The Compass and Gunpowder: The Influence of Technology on Trade and Warfare": 1 + "World History: The Compass and the Steam Engine: Technological Progress that Revolutionized Trade and Civilizations": 1 + "The Compass and the Telegraph: A Comprehensive Review of Technological Development in World History": 1 + "World History: Iron Smelting and the Compass: How Technology Shaped Trade and Civilizations": 1 + "World History: The Compass and the Clock: Timekeeping and Navigation Technologies that Altered Civilizations": 1 + "World History: The Compass and the Loom: Technological Breakthroughs that Impacted Trade and Cultural Development": 1 + "The Compass and Paper Money: Technological and Conceptual Advances in World History.": 1 + "Physics Fundamentals: Studying Magnetic Fields with Lego Structures and Tesla Coil": 1 + "Physics Fundamentals: Investigating Magnetic Fields using Lego Structures and Hall Effect Sensors": 1 + "Physics Fundamentals: Applying Faraday's Law in Magnetic Field Investigation with Lego Structures": 1 + "Physics Fundamentals: Exploring Magnetic Fields with Lego Structures and Gauss Meters": 1 + "Physics Fundamentals: Understanding Magnetic Flux with Lego Structures": 1 + "Physics Fundamentals: Investigating Magnetic Field Strength with Lego Structures and Magnetometers": 1 + "Physics Fundamentals: Observing Magnetic Field Lines with Lego Structures and Iron Filings": 1 + "Physics Fundamentals: Analyzing Magnetic Field Interactions with Lego Structures and Ferrofluids": 1 + "Physics Fundamentals: Using Lorentz Force in Magnetic Field Investigation with Lego Structures": 1 + "Physics Fundamentals: Examining Magnetic Fields with Lego Structures and Superconducting Magnets": 1 + "Logic & Algorithms: Critical Thinking for Sustainable Solutions using Blockchain Technology": 1 + "Logic & Artificial Intelligence: Critical Thinking for Sustainable Energy Solutions": 1 + "Logic & Machine Learning: Critical Thinking for Sustainable Agricultural Solutions": 1 + "Logic & Data Analysis: Critical Thinking for Sustainable Waste Management Solutions": 1 + "Logic & Quantum Computing: Critical Thinking for Sustainable Water Management Solutions": 1 + "Logic & Internet of Things (IoT): Critical Thinking for Sustainable Urban Development Solutions": 1 + "Logic & Cybersecurity: Critical Thinking for Sustainable Digital Infrastructure Solutions": 1 + "Logic & GIS Mapping: Critical Thinking for Sustainable Land Use Solutions": 1 + "Logic & Robotics: Critical Thinking for Sustainable Manufacturing Solutions": 1 + "Logic & 3D Printing: Critical Thinking for Sustainable Product Design Solutions": 1 + "Logic & Nanotechnology: Critical Thinking for Sustainable Health Solutions": 1 + "Elementary Mathematics: Basic Arithmetic in Business using Excel": 1 + "Elementary Mathematics: Basic Arithmetic in Business with QuickBooks": 1 + "Elementary Mathematics: Business Calculations with Calculators": 1 + "Elementary Mathematics: Basic Arithmetic in Business using Financial Modeling": 1 + "Elementary Mathematics: Basic Arithmetic in Business with Accounting Software": 1 + "Elementary Mathematics: Basic Arithmetic in Business using Algorithms": 1 + "Elementary Mathematics: Business Calculations with Statistical Analysis Tools": 1 + "Elementary Mathematics: Basic Arithmetic in Business using Financial Ratios": 1 + "Elementary Mathematics: Basic Arithmetic in Business with Probability Theory": 1 + "Elementary Mathematics: Business Calculations with Spreadsheet Software": 1 + "Elementary History: The Evolution of Dietary Guidelines Through the Lens of Anthropology": 1 + "Elementary History: Dietary Guidelines Evolution and the Role of Agricultural Technology": 1 + "Elementary History: The Evolution of Dietary Guidelines - A Deep Dive into Nutritional Science": 1 + "Elementary History: The Impact of Cooking Technology on the Evolution of Dietary Guidelines": 1 + "Elementary History: Understanding the Evolution of Dietary Guidelines through Archival Research": 1 + "Elementary History: The Evolution of Dietary Guidelines and the Role of Food Preservation Techniques": 1 + "Elementary History: Dietary Guidelines Evolution - The Influence of Fermentation Technology": 1 + "Elementary History: Tracing the Evolution of Dietary Guidelines with Carbon-Dating Techniques": 1 + "Elementary History: The Evolution of Dietary Guidelines - An Insight into Ancient Cooking Utensils": 1 + "Elementary History: The Role of Genomic Technology in the Evolution of Dietary Guidelines": 1 + "Advanced English Literacy: Mastery of Reading and Writing using Amazon Storywriter, Google Translate and Grammarly.": 1 + "English Literacy in the Digital Age: Enhancing Skills with Amazon Storywriter, Google Translate, and Microsoft Word.": 1 + "Modern English Literacy: Reading and Writing Proficiency using Amazon Storywriter, Google Translate and Duolingo.": 1 + "English Literacy for the Tech-Savvy: Proficiency in Reading and Writing using Amazon Storywriter, Google Translate, and Kindle.": 1 + "English Literacy Enhancement: Achieving Mastery in Reading and Writing using Amazon Storywriter, Google Translate, and Evernote.": 1 + "English Literacy for the Modern Professional: A Comprehensive Guide to Reading and Writing Mastery using Amazon Storywriter, Google Translate, and Slack.": 1 + "Contemporary English Literacy: Mastering Reading and Writing with Amazon Storywriter, Google Translate, and Google Docs.": 1 + "English Literacy for the 21st Century: Achieving Excellence in Reading and Writing using Amazon Storywriter, Google Translate, and Udemy.": 1 + "English Literacy for the Digital World: Reading and Writing Expertise using Amazon Storywriter, Google Translate, and Coursera.": 1 + "English Literacy for the Global Citizen: Hone Reading and Writing Skills using Amazon Storywriter, Google Translate, and Zoom.": 1 + "Mathematics: Utilizing Excel for Calculating Profits and Expenses in Business": 1 + "Mathematics: Using QuickBooks for Profit and Expense Calculations in Business": 1 + "Mathematics: Applying Profit Margin Formulas to Calculate Business Expenses and Profits": 1 + "Mathematics: Leveraging Financial Analysis Software for Business Profit and Expense Calculations": 1 + "Mathematics: Implementing Financial Ratios for Profit and Expense Analysis in Business": 1 + "Mathematics: Using Business Intelligence Tools for Profit and Expense Calculations": 1 + "Mathematics: Incorporating Cost Accounting Principles in Calculating Business Profits and Expenses": 1 + "Mathematics: Utilizing ERP Systems to Calculate Profits and Expenses in Business": 1 + "Mathematics: Applying Cash Flow Analysis for Business Profit and Expense Calculations": 1 + "Mathematics: Using SAP for Profit and Expense Calculations in Business": 1 + "Science: Understanding Emotions through Neurobiology using MRI Technology": 1 + "The Role of PET Scans in Understanding Emotions through Neurobiology": 1 + "Science: Decoding Emotions through Neurobiology and EEG Analysis": 1 + "Neurobiology: Interpreting Emotions through Functional Magnetic Resonance Imaging ": 1 + "Unveiling Emotions via Neurobiology: The Application of Transcranial Magnetic Stimulation": 1 + "Science: Emotions Explored through Neurobiology using Computational Modelling": 1 + "Neurobiology and Emotions: A Deep Dive into Brain Mapping Techniques": 1 + "Neurobiology: Unraveling Emotions through the Lens of Diffusion Tensor Imaging": 1 + "Science: Exploring Emotions through Neurobiology and Deep Brain Stimulation": 1 + "Understanding Emotions through Neurobiology: A Focus on Machine Learning Algorithms.": 1 + "Digital Marketing 101: Harnessing Facebook Ads for Indie Music Promotion": 1 + "Maximizing Spotify Playlists: A Guide to Digital Marketing for Musicians": 1 + "Instagram Influencers and Music Promotion: Digital Marketing 101": 1 + "Utilizing YouTube for Digital Music Marketing: A Comprehensive Guide": 1 + "Twitter for Musicians: Digital Marketing 101 and Beyond": 1 + "TikTok and Music Promotion: A Digital Marketing Masterclass": 1 + "SoundCloud Optimization: The Art of Digital Marketing in Music": 1 + "LinkedIn for Bands: Unconventional Digital Marketing Tactics": 1 + "Pinterest Strategies for Music Promotion: Digital Marketing 101": 1 + "Streaming Services and Music Promotion: A Deep Dive into Digital Marketing.": 1 + "Music: Exploration of Lute's Role in Renaissance Era Compositions": 1 + "Music: The Influence of Polyphony in Renaissance Era Compositions": 1 + "Music: The Impact of Gut Strings on Composers of the Renaissance Era": 1 + "Music: Composers of the Renaissance Era and the Advent of Music Printing": 1 + "Music: The Use of Harpsichord in Compositions of the Renaissance Era": 1 + "Music: Modal Counterpoint and Composers of the Renaissance Era": 1 + "Music: The Renaissance Era Composers and the Birth of the Madrigal": 1 + "Music: The Role of Choirs in the Works of Renaissance Era Composers": 1 + "Music: Composers of the Renaissance Era: Exploring the Use of the Viol": 1 + "Music: The Impact of Monophonic Gregorian Chant on Renaissance Era Composers": 1 + "Physics Fundamentals: Exploring Forces and Energy with Newton's Laws": 1 + "Quantum Physics: A Deep Dive into Energy and Forces": 1 + "Physics Fundamentals: Forces and Energy using Vector Analysis": 1 + "Physics in Motion: Studying Forces and Energy with Kinematics": 1 + "Thermodynamics: Uncovering the Relationship between Forces and Energy": 1 + "Physics Fundamentals: Forces, Energy, and the Role of Electromagnetism": 1 + "Advanced Physics: Forces and Energy in Fluid Dynamics": 1 + "Physics Fundamentals: Gravitational Forces and Energy Conservation": 1 + "Nuclear Physics: Forces and Energy in Atomic Structures": 1 + "Physics Fundamentals: Forces and Energy Explored through Quantum Mechanics.": 1 + "Music Appreciation: The Art of Classical Compositions: A Deep Dive into Handel's Oratorios through the Lens of Music Theory": 1 + "Music Appreciation: Utilizing Audio Analysis Technology in the Study of Handel's Oratorios": 1 + "Music Appreciation: The Art of Classical Compositions: An Exploration of Handel's Oratorios using Sheet Music Analysis": 1 + "Music Appreciation: The Art of Classical Compositions: A Case Study on Handel's Oratorios using Digital Sound Processing": 1 + "Music Appreciation: The Art of Classical Compositions: A Study on Handel's Oratorios through the prism of Historical Context": 1 + "Music Appreciation: The Art of Classical Compositions: A Comparative Study on Handel's Oratorios using Harmonic Progression ": 1 + "Music Appreciation: The Art of Classical Compositions: An In-depth Study on Handel's Oratorios using Melodic Structure": 1 + "Music Appreciation: The Art of Classical Compositions: A Study on Handel's Oratorios with Focus on Rhythm Analysis": 1 + "Music Appreciation: The Art of Classical Compositions: A Study on Handel's Oratorios using Comparative Musicology ": 1 + "Music Appreciation: The Art of Classical Compositions: A Study on Handel's Oratorios using Acoustic Resonance Technology": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Programming Beats with Ableton Live": 1 + "Computer Science: Mastering Drum Programming in Music Production using FL Studio": 1 + "Computer Science: Exploring Synthesizers and Beat Sequencing with Logic Pro X": 1 + "Computer Science: Harnessing Synthesizers in Music Technology - Beat Programming with Propellerhead Reason": 1 + "Computer Science: Introduction to Synthesizers & Beat Making with Maschine Studio": 1 + "Computer Science: Synthesizers in Music Technology - Beat Creation with Pro Tools": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Drum Sequencing with Cubase": 1 + "Computer Science: The Art of Synthesizers and Beat Production with Serato Studio": 1 + "Computer Science: In-Depth Analysis of Synthesizers - Beat Programming with Bitwig Studio ": 1 + "Computer Science: Exploring the Digital Audio Workstation - Programming Beats with GarageBand": 1 + "Using Python's Scikit-Learn in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning": 1 + "Leveraging Deezer's Flow Feature with TensorFlow for Precise Music Genre Determination in Event Planning": 1 + "Application of Machine Learning Algorithms in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning ": 1 + "Utilizing Big Data Analytics in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning ": 1 + "Exploiting Deezer's Flow Feature with Hadoop for Music Genre Determination in Event Planning ": 1 + "Using MySQL Database Management in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning ": 1 + "Exploring Deezer's Flow Feature with Jupyter Notebooks for Music Genre Determination in Event Planning ": 1 + "Implementing Artificial Neural Networks in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning ": 1 + "Utilizing Apache Spark in Exploiting Deezer's Flow Feature for Music Genre Determination in Event Planning ": 1 + "Analysis of Deezer's Flow Feature with R Programming for Music Genre Determination in Event Planning": 1 + "Discovering Python, Audacity, and MIDI Sequencing for Beat Creation: An Introduction to Oscillators in Music Technology": 1 + "Unveiling the Power of Python, Audacity, and Fourier Transforms in Beat Making: A Freshman's Guide to Digital Sound Synthesis": 1 + "Learning Beat Creation with Python, Audacity, and Digital Signal Processing: The Basics of Oscillators in Audio Programming": 1 + "Python, Audacity, and Logic Pro X: An Entry-Level Course in Beat Creation and Oscillator Use": 1 + "Mastering Python, Audacity, and FL Studio for Beat Creation: A Novice's Handbook on Oscillators in Music Production": 1 + "Python, Audacity, and Pro Tools: A Beginner's Journey into Oscillators and Beat Creation": 1 + "Kickstarting Beat Creation with Python, Audacity, and Ableton Live: A Beginner's Manual to Oscillators in Electronic Music": 1 + "Python, Audacity, and AmpliTube for Beat Creation: An Introductory Course on Oscillators in Sound Engineering": 1 + "Exploring Python, Audacity, and Serum for Beat Creation: A Starter's Guide to Oscillators and Synthesizers": 1 + "The Basics of Beat Creation with Python, Audacity, and GarageBand: A Newbie's Guide to Oscillators in Music Composition": 1 + "Excel in Logic: Mastering Elementary Logic with Truth Tables, Macros, and Venn Diagrams": 1 + "Excel in Logic: A Practical Guide to Truth Tables, Macros, and Predicate Logic": 1 + "Excel in Logic: Harnessing Truth Tables, Macros, and Propositional Logic for Beginners": 1 + "Advanced Course in Elementary Logic: Truth Tables, Macros, and Boolean Algebra": 1 + "Excel in Logic: Exploring Elementary Logic through Truth Tables, Macros, and Logical Connectives": 1 + "Elementary Logic Mastery: Using Truth Tables, Macros, and Natural Deduction": 1 + "Logic and Reasoning: Enhancing Skills with Truth Tables, Macros, and Syllogistic Logic": 1 + "Practical Approach to Elementary Logic: Truth Tables, Macros, and Set Theory": 1 + "Excel in Logic: A Comprehensive Study of Truth Tables, Macros, and Direct Proofs": 1 + "Excel in Logic: Understanding Elementary Logic with Truth Tables, Macros, and Formal Proofs.": 1 + "Biological Data Analysis Using Python, Pandas Library, and Jupyter Notebooks": 1 + "Implementing Machine Learning in Biological Data Analysis Using Python and Pandas Library": 1 + "Biological Data Analysis Using Python, Pandas Library, and Seaborn for Data Visualization": 1 + "Exploratory Data Analysis in Biology Using Python, Pandas Library, and Matplotlib": 1 + "Biological Data Analysis Using Python, Pandas Library, and Numpy for Array Processing": 1 + "Biological Data Analysis Using Python, Pandas Library, and Scikit-Learn for Predictive Modeling": 1 + "Biological Data Analysis Using Python, Pandas Library, and TensorFlow for Neural Network Algorithms": 1 + "Genomic Data Analysis Using Python, Pandas Library, and BioPython": 1 + "Biological Data Analysis Using Python, Pandas Library, and SQLite for Database Management": 1 + "Biological Data Analysis Using Python, Pandas Library, and PySpark for Big Data Processing.": 1 + "Machine Learning: Predictive Models with Scikit-Learn and Python for Data Visualization Using Matplotlib": 1 + "Machine Learning: Predictive Models using TensorFlow in Python and Data Visualization with Matplotlib": 1 + "Python Machine Learning: Building Predictive Models with PyTorch and Data Visualization using Matplotlib": 1 + "Machine Learning: Predictive Models with Keras and Python for Data Visualization Using Matplotlib": 1 + "Machine Learning: Predictive Models with XGBoost in Python and Matplotlib for Data Visualization": 1 + "Machine Learning: SVM Predictive Models with Python and Matplotlib for Data Visualization": 1 + "Machine Learning: Decision Tree Predictive Models with Python and Data Visualization using Matplotlib": 1 + "Python and Machine Learning: Predictive Models with PCA and Data Visualization using Matplotlib": 1 + "Machine Learning: Predictive Models with Random Forests in Python and Data Visualization using Matplotlib": 1 + "Python Machine Learning: Predictive Models with Naive Bayes and Data Visualization using Matplotlib": 1 + "Science: Exploring Molecular Gastronomy in Cooking": 1 + "Science: The Role of Oven Temperature in Baking Chemistry": 1 + "Science: The Chemistry of Cooking with Sous Vide Technology": 1 + "Science: Understanding the Maillard Reaction in Culinary Chemistry": 1 + "Science: The Importance of pH in Cooking and Baking Chemistry": 1 + "Science: The Science of Slow Cooking: A Chemical Perspective": 1 + "Science: The Chemistry Behind Pressure Cooking Techniques": 1 + "Science: The Transformation of Proteins in the Cooking Process": 1 + "Science: The Role of Emulsion in Culinary Chemistry": 1 + "Science: Unveiling the Chemical Reactions in Fermentation Cooking.": 1 + "Neuroscience: Analyzing Brain Function With fMRI and DTI Mapping Techniques": 1 + "Exploring the Brain's Function Using fMRI and EEG Neuroimaging Technologies": 1 + "Neuroscience: Understanding the Brain Through fMRI and PET Scan Mapping": 1 + "The Application of fMRI and MEG in the Exploration of Brain Function": 1 + "Neuroscience: Unveiling Brain Functions with fMRI and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience: A Deep Dive into the Brain Using fMRI and Diffusion Tensor Imaging": 1 + "Exploring the Brain's Function: A Focus on fMRI and Transcranial Magnetic Stimulation": 1 + "Neuroscience: fMRI Brain Mapping and the Role of Structural MRI Techniques": 1 + "The Use of fMRI and Single-Photon Emission Computed Tomography (SPECT) in Brain Function Exploration": 1 + "Neuroscience: A Detailed Study of the Brain Using fMRI and Neurofeedback Techniques": 1 + "Computer Science 101: Mastering Python for Data Analysis": 1 + "Computer Science 101: Utilizing Excel in Data Analysis": 1 + "Computer Science 101: Practical Use of SQL for Data Analysis": 1 + "Computer Science 101: Data Analysis with R Programming": 1 + "Computer Science 101: Understanding Big Data Analysis Tools": 1 + "Computer Science 101: Using Apache Hadoop for Data Analysis": 1 + "Computer Science 101: Exploring Tableau as a Data Analysis Tool": 1 + "Computer Science 101: Data Analysis with the Power of SPSS": 1 + "Computer Science 101: Harnessing SAS for Data Analysis": 1 + "Computer Science 101: Introduction to MATLAB for Data Analysis": 1 + "Music: Mastering Rhythm and Beat Using a Metronome": 1 + "Music: Interactive Learning of Rhythm and Beat with Digital Apps": 1 + "Music: Exploring Rhythm and Beat with MIDI Technology": 1 + "Music: Understanding Rhythm and Beat through Drum Machines": 1 + "Music: Basics of Rhythm and Beat: A Focus on Loop Stations": 1 + "Music: Rhythm and Beat - Learning with Music Production Software": 1 + "Music: The Art of Rhythm and Beat Using Ableton Live": 1 + "Music: Rhythm and Beat Basics with Pro Tools": 1 + "Music: Discovering Rhythm and Beat through FL Studio ": 1 + "Music: Rhythm and Beat: A Comprehensive Study with Cubase.": 1 + "Green Sports Gear Manufacturing: Implementing Injection Moulding Techniques and Biodegradable Materials with Laser Cutting Technology using CAD Software": 1 + "Advanced Course on Utilising Injection Moulding Techniques and Biodegradable Materials with Laser Cutting Technology in Green Sports Gear Fabrication": 1 + "FDM 3D Printing: Its Role in Green Sports Gear Production using Injection Moulding Techniques and Biodegradable Materials": 1 + "Green Sports Gear: Exploring the Use of CNC Milling in Injection Moulding Techniques with Biodegradable Materials": 1 + "The Influence of SLA 3D Printing in Green Sports Gear: A Study on Injection Moulding Techniques and Biodegradable Materials": 1 + "Rapid Prototyping: Its Impact on Green Sports Gear through Injection Moulding Techniques and Biodegradable Materials": 1 + "Green Sports Gear Production: A Comprehensive Study of Injection Moulding Techniques, Biodegradable Materials, and Laser Cutting with the Use of Fusion 360": 1 + "Green Sports Gear: Mastering Injection Moulding Techniques and Biodegradable Materials with Laser Cutting Technology and SolidWorks": 1 + "Practical Uses of Vacuum Forming in Green Sports Gear: An Exploration of Injection Moulding Techniques and Biodegradable Materials": 1 + "Green Sports Gear: An In-depth Study of Injection Moulding Techniques, Biodegradable Materials, and Laser Cutting Technology using Autodesk Inventor.": 1 + "Art: The Use of Symmetry in Renaissance Paintings - An Exploration of Linear Perspective": 1 + "The Impact of Chiaroscuro on Symmetrical Composition in Renaissance Art": 1 + "The Role of Oil Paints in Symmetrical Renaissance Paintings": 1 + "Renaissance Art: The Relation between Symmetry and Vanishing Point Techniques": 1 + "The Implementation of the Golden Ratio in Symmetrical Renaissance Paintings": 1 + "Art: The Use of Symmetry and Fresco Techniques in Renaissance Paintings": 1 + "Renaissance Art: The Influence of Camera Obscura on Symmetrical Compositions": 1 + "The Art of Symmetry in Renaissance Paintings - A Study on Egg Tempera Technique": 1 + "The Integration of Symmetry and Foreshortening in Renaissance Paintings": 1 + "Art and Geometry: The Use of Symmetry and Euclidean Principles in Renaissance Paintings": 1 + "Exploring the Silk Road: Mapping Ancient Maritime Trade Routes with ArcGIS and Side-Scan Sonar Technology": 1 + "Tracing Phoenician Paths: Utilizing GIS and Multibeam Sonar Technology in Ancient Maritime Trade Routes": 1 + "Nautical Navigation: Decoding Ancient Maritime Trade Routes with GIS and 3D Sonar Imaging": 1 + "Underwater Archaeology: Mapping Ancient Maritime Spice Trade Routes using GIS and Bathymetric Sonar": 1 + "Sea Routes of Rome: Applying GIS and Doppler Sonar Technology to Ancient Maritime Trade": 1 + "Uncovering Atlantis: Mapping Ancient Maritime Trade Routes with GIS and Synthetic Aperture Sonar": 1 + "Pirates and Traders: Utilizing GIS and Sonar Imaging to Map Ancient Caribbean Trade Routes": 1 + "The Amber Road: Applying GIS and Active Sonar Technology to Ancient Maritime Trade Routes": 1 + "Silk and Spices: Utilizing GIS and Passive Sonar in the Study of Ancient Maritime Trade Routes": 1 + "Invisible Highways: Revealing Ancient Maritime Trade Routes with GIS and Dual Frequency Identification Sonar": 1 + "English: Lyric Analysis and Emotional Response through Cognitive Behavioral Therapy Techniques": 1 + "English: Lyric Analysis and Emotional Response using Music Informatics Tools": 1 + "English: Exploring Emotional Response in Lyric Analysis with Linguistic Anthropology": 1 + "English: Lyric Analysis and Emotional Response using Natural Language Processing Technology": 1 + "English: Lyric Analysis and Emotional Response: A Focus on Psychoacoustics": 1 + "English: Lyric Analysis and Emotional Response: Applying Sentiment Analysis Algorithms": 1 + "English: Lyric Analysis and Emotional Response through the Lens of Neurolinguistics": 1 + "English: Lyric Analysis and Emotional Response: Exploring Emotional Intelligence Concepts": 1 + "English: Lyric Analysis and Emotional Response: A Study with Psycholinguistic Tools": 1 + "English: Lyric Analysis and Emotional Response: Utilizing Text Mining Techniques.": 1 + "Fundamental Mathematics: Analyzing Geometry Using MATLAB and Python": 1 + "Geometry Analysis in Fundamental Mathematics Using MATLAB and AutoCAD": 1 + "Fundamental Mathematics: Advanced Geometry Analysis with MATLAB and ArchiCAD": 1 + "Fundamental Mathematics: Geometry Analysis using MATLAB and Vector Calculus": 1 + "Geometry Analysis in Fundamental Mathematics: Incorporating MATLAB and Trigonometry": 1 + "Fundamental Mathematics: Geometry Analysis Using MATLAB and SolidWorks": 1 + "Geometry Analysis and Linear Algebra in Fundamental Mathematics Using MATLAB": 1 + "Fundamental Mathematics: Geometry Analysis Using MATLAB and Differential Equations": 1 + "Fundamental Mathematics: Analyzing Geometry Through MATLAB and Multivariable Calculus": 1 + "Geometry Analysis in Fundamental Mathematics with MATLAB and Inventor.": 1 + "Implementing ggplot2 with R Programming for Venn Diagrams in Propositional Calculus ": 1 + "Introduction to Shiny Apps in R Programming for Venn Diagrams and Deductive Reasoning ": 1 + "Leveraging Tidyverse in R Programming for Propositional Calculus Using Venn Diagrams ": 1 + "Advanced RStudio Techniques for Venn Diagrams in Propositional Calculus and Deductive Reasoning ": 1 + "Application of dplyr in R Programming to Construct Venn Diagrams for Mathematical Deductive Reasoning ": 1 + "Understanding Data Manipulation with R Programming for Venn Diagrams in Propositional Calculus ": 1 + "R Markdown and Reproducible Research Techniques for Venn Diagrams and Deductive Reasoning ": 1 + "Exploring ggvenn: An Advanced Venn Diagram Package in R Programming for Propositional Calculus ": 1 + "Implementing VennDiagram Package in R for Mathematical Deductive Reasoning": 1 + "Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus.": 1 + "Advanced Physical Education: Understanding Body Chemistry and Lactate Thresholds using Lactate Pro2 Analyzers": 1 + "Physical Education: Exploring Heart Rate Variability and Lactate Thresholds with Polar H10 Heart Rate Monitors": 1 + "Physical Education: A Deep Dive into Lactate Thresholds and Body Chemistry using Blood Gas Analyzers": 1 + "Physical Education: Body Chemistry Analysis and Lactate Thresholds using Near-Infrared Spectroscopy": 1 + "Physical Education: Understanding Lactate Thresholds through VO2 max Testing and Body Chemistry Analysis": 1 + "Physical Education: Lactate Thresholds Exploration using Lactate Analyzers and Gas Exchange Measurements": 1 + "Physical Education: Body Chemistry, Lactate Thresholds, and Performance Analysis using GPS Running Watches": 1 + "Physical Education: Body Chemistry and Lactate Threshold Monitoring using Wearable Sensor Technology": 1 + "Physical Education: Body Chemistry Analysis and Lactate Thresholds using Lactate Analyzers and Echocardiography": 1 + "Physical Education: Lactate Thresholds and Body Chemistry Evaluation using Lactate Analyzers and Respiratory Gas Analyzers": 1 + "Music: The Impact of International Music Styles on Art Through the Lens of Digital Technology": 1 + "Music: Exploring International Music Styles and Their Influence on Art Using MIDI Technology": 1 + "Music: The Influence of Global Music Styles on Art and the Role of Recording Technology": 1 + "Music: Harmonizing International Music Styles and Art Through the Use of Synthesizers": 1 + "Music: The Interplay of International Music Styles and Art: A Study of Digital Audio Workstations": 1 + "Music: International Music Styles and Their Influence on Art: A Deep Dive into Electronic Instruments": 1 + "Music: The Intersection of International Music Styles and Art: A Focus on Music Production Software": 1 + "Music: International Music Styles and Their Influence on Art Through the Prism of Auto-Tune": 1 + "Music: The Translation of International Music Styles to Art Using Sound Engineering Concepts": 1 + "Music: A Journey into International Music Styles and Their Influence on Art with Music Sampling Techniques": 1 + "Exploring Athletics: An In-depth Analysis of Track & Field Statistics Using Excel, SAS and Python": 1 + "Utilizing Power BI in Athletics: A Detailed Study of Track & Field Statistics": 1 + "Exploring Athletics: An Analysis of Track & Field Statistics with Advanced Excel Techniques": 1 + "Leveraging SQL in Athletics: An Analysis of Track & Field Statistics": 1 + "Athletics Uncovered: Track & Field Statistics Analysis using Excel, SAS and Tableau": 1 + "Applying Machine Learning in Athletics: An Analysis of Track & Field Statistics": 1 + "Exploring Athletics: A Comprehensive Analysis of Track & Field Statistics Using Excel, SAS and R Programming": 1 + "Exploring Athletics: Track & Field Statistics Analysis using Excel, SAS and Big Data Tools": 1 + "Digging Deeper into Athletics: An Analysis of Track & Field Statistics Using Excel, SAS and SPSS": 1 + "Exploring Athletics: An Analysis of Track & Field Statistics Using Excel, SAS and Jupyter Notebooks.": 1 + "The Spinning Jenny: Industrial Age Innovations and the Power Loom's Impact on English Trade Language": 1 + "Industrial Age Innovations: The Power Loom, Steam Engines, and Their Impact on English Trade Language": 1 + "Industrial Age Innovations: The Role of the Cotton Gin in the Power Loom's Impact on English Trade Language": 1 + "Industrial Revolution: The Power Loom, Railways, and English Trade Language": 1 + "The Power Loom and Telegraph: Industrial Age Innovations Impacting English Trade Language": 1 + "Industrial Age Innovations: The Power Loom's Impact and the Emergence of the Factory System in English Trade Language": 1 + "The Power Loom and the Textile Industry: Industrial Age Innovations Impacting English Trade Language": 1 + "Industrial Age Innovations: The Power Loom, Mechanized Cotton Spinning, and Their Impact on English Trade Language": 1 + "The Power Loom and Coal Mining: Industrial Age Innovations Affecting English Trade Language": 1 + "Industrial Age Innovations: The Power Loom, the Steamboat, and Their Impact on English Trade Language.": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology using Spectrum Analysis": 1 + "Physics: Utilization of Single Mode Fiber in Decoding Light and Color in Optical Fiber Technology": 1 + "Physics: Exploring Chromatic Dispersion while Decoding Light and Color using Optical Fiber Technology": 1 + "Physics: Understanding Polarization Mode Dispersion in Decoding Light and Color using Optical Fiber Technology": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology: A Deep-Dive into Optical Time-Domain Reflectometers": 1 + "Physics: Decoding Light and Color using Optical Fiber Amplifiers in Optical Fiber Technology": 1 + "Physics: Decoding Light and Color using Optical Fiber Technology and Fiber Bragg Grating": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology - A Study on Optical Splitters": 1 + "Physics: Decoding Light and Color using Optical Fiber Technology and Fiber Optic Gyroscope": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology - The Role of Wavelength Division Multiplexers.": 1 + "Logic 101: Exploring Essential Concepts, Logical Fallacies, and Argument Mapping Using Deductive Reasoning": 1 + "Advanced Logic: Unpacking Logical Fallacies and Mastering Argument Mapping with Venn Diagrams": 1 + "Logic Explored: Grasping Essential Concepts and Logical Fallacies through Propositional Calculus": 1 + "The Art of Logic: Mastering Essential Concepts, Logical Fallacies, and Argument Mapping Using Truth Tables": 1 + "Logic: A Deep Dive into Essential Concepts, Logical Fallacies, and the Craft of Argument Mapping with Euler Diagrams": 1 + "Mastering Logic: An In-Depth Study of Logical Fallacies and Argument Mapping using Formal Logic": 1 + "Logic Dissected: Understanding Essential Concepts, Logical Fallacies and Perfecting Argument Mapping with Syllogistic Logic": 1 + "Logic: A Comprehensive Study on Essential Concepts, Logical Fallacies, and Argument Mapping Using First-Order Logic": 1 + "Logic Decoded: Unraveling Essential Concepts and Logical Fallacies with Argument Mapping and Logic Gates": 1 + "Unlocking Logic: Essential Concepts, Logical Fallacies, and Argument Mapping Using Predicate Logic": 1 + "Biochemical Reactions: A Statistical Approach Using R and Protein Structure Analysis with PyMOL": 1 + "Advanced Biochemical Reactions: A Deep Dive into Enzyme Kinetics using R and Protein Data Bank": 1 + "Biochemical Reactions: A Statistical Approach with RStudio and Protein Structure Analysis": 1 + "Harnessing R and X-ray Crystallography for Biochemical Reactions and Protein Structure Analysis": 1 + "Biochemical Reactions: A Statistical Treatment Using R, Protein Structure Analysis, and Mass Spectrometry": 1 + "Biochemical Reactions: A Statistical Approach Using R, Protein Structure Analysis and NMR Spectroscopy": 1 + "Biochemical Reactions: A Comprehensive Study Using R, Protein Structure Analysis and Molecular Dynamics Simulations": 1 + "Biochemical Reactions: A Statistical Approach Using R, Protein Structure Analysis, and Cryo-Electron Microscopy": 1 + "Exploring Biochemical Reactions: A Statistical Approach Using R, Protein Structure Analysis, and Bioinformatics": 1 + "Biochemical Reactions: A Statistical Approach Using R, Protein Structure Analysis, and Fourier Transform Infrared Spectroscopy.": 1 + "Essential Algorithms: A Practical Guide to Python and Web Scraping with Beautiful Soup and Selenium": 1 + "Mastering Python and Web Scraping: A Comprehensive Guide to Essential Algorithms using Beautiful Soup and Scrapy": 1 + "Essential Algorithms in Python: A Detailed Guide to Web Scraping with Beautiful Soup and Requests Library": 1 + "Python Power: Essential Algorithms and Web Scraping with Beautiful Soup and Pandas": 1 + "Essential Algorithms: A Step-by-Step Guide to Python, Web Scraping with Beautiful Soup, and Data Visualization with Matplotlib": 1 + "Python and Web Scraping Essentials: Algorithms, Beautiful Soup, and Machine Learning with Scikit-Learn": 1 + "Essential Algorithms Unveiled: Python, Web Scraping with Beautiful Soup and Data Analysis with NumPy": 1 + "Python and Essential Algorithms: A Deep Dive into Web Scraping with Beautiful Soup and Django": 1 + "Essential Algorithms: A Practical Approach to Python, Web Scraping with Beautiful Soup and Deploying with Docker": 1 + "Advanced Python and Essential Algorithms: A Hands-On Guide to Web Scraping with Beautiful Soup and Flask": 1 + "Art Studies: Exploring Renaissance Masterpieces through Oil Painting Techniques": 1 + "Art Studies: Discovering Renaissance Masterpieces via Fresco Analysis": 1 + "Art Studies: Renaissance Masterpieces and their Relation to Chiaroscuro": 1 + "Art Studies: Decoding Symbolism in Renaissance Masterpieces": 1 + "Art Studies: Understanding Perspective in Renaissance Masterpieces": 1 + "Art Studies: Renaissance Masterpieces- A Study of Egg Tempera Technique": 1 + "Art Studies: A Detailed Study of Gold Leaf Application in Renaissance Masterpieces": 1 + "Art Studies: Analyzing Renaissance Masterpieces through Sfumato Technique": 1 + "Art Studies: Understanding Anatomy in Renaissance Masterpieces": 1 + "Art Studies: Discovering Renaissance Masterpieces with a Focus on Underdrawing Techniques": 1 + "Mathematics 105: Data Analysis Using Excel: Introduction to Statistics and Probability with Pivot Tables": 1 + "Mathematics 105: Data Analysis: An Introduction to Statistics and Probability using Excel and Python": 1 + "Mathematics 105: Data Analysis: An Introduction to Regression Analysis in Statistics and Probability using Excel": 1 + "Mathematics 105: Data Analysis: An Introduction to Statistics and Probability using Excel and R Programming": 1 + "Mathematics 105: Data Analysis: Exploring Statistical Hypothesis Testing Using Excel": 1 + "Mathematics 105: Data Analysis: An Introduction to Statistics and Probability using Excel with Power BI Integration": 1 + "Mathematics 105: Data Analysis: Advanced Excel Functions for Statistics and Probability ": 1 + "Mathematics 105: Data Analysis: Introduction to Statistics and Probability using Excel with SQL Database Integration": 1 + "Mathematics 105: Data Analysis: Monte Carlo Simulation in Statistics and Probability with Excel": 1 + "Mathematics 105: Data Analysis: An Introduction to Variable Analysis in Statistics and Probability using Excel.": 1 + "Exploring Truth Tables: An Introduction to Boolean Algebra with Basic Principles of Formal Logic for Beginners": 1 + "Understanding Logic Gates: A Beginner's Course on Boolean Algebra and Formal Logic Principles": 1 + "An Introduction to Boolean Algebra for Beginners: Applying De Morgan's Laws in Formal Logic": 1 + "Basic Principles of Formal Logic: A Hands-on Introduction to Boolean Algebra using Python for Beginners": 1 + "Mastering Karnaugh Maps: A Beginner's Guide to Boolean Algebra and Formal Logic Principles": 1 + "Binary Arithmetic and Boolean Algebra: An Introductory Course in Formal Logic Principles for Beginners": 1 + "Basic Principles of Formal Logic: An Introduction to Boolean Algebra using MATLAB for Beginners": 1 + "An Introductory Course on Boolean Algebra: Understanding Propositional Logic for Beginners": 1 + "Basic Principles of Formal Logic: A Beginner's Guide to Boolean Algebra using Digital Circuits": 1 + "Comprehending Logical Connectives: An Introduction to Boolean Algebra and Formal Logic for Beginners.": 1 + "Biology: Evolution and Its Impact on Human Design through Genetic Engineering": 1 + "Biology: The Role of Molecular Biology Tools in Understanding Evolution and Its Impact on Human Design": 1 + "Biology: Unpacking Evolution and Its Impact on Human Design with CRISPR Technology": 1 + "Biology: Evolution, Human Design, and the Influence of Bioinformatics": 1 + "Biology: Evolutionary Biology and Human Design: A Deep Dive into DNA Sequencing": 1 + "Biology: Exploring Evolution and Human Design through Comparative Genomics": 1 + "Biology: Evolution and Human Design: Understanding the Role of Biotechnology": 1 + "Biology: Deciphering Evolution and Its Impact on Human Design with Phylogenetics": 1 + "Biology: The Impact of Evolution on Human Design through the Lens of Genomic Medicine": 1 + "Biology: Evolution and Its Impact on Human Design: A Study in Proteomics": 1 + "Biology: Evolution, Human Design, and the Interface with Synthetic Biology.": 1 + "Health: Ensuring Safety and Hygiene in Event Planning with HACCP Principles": 1 + "Utilizing UV Sanitization Technology for Safety and Hygiene in Event Planning": 1 + "Leveraging AI-Based Crowd Management for Health Safety in Event Planning": 1 + "Event Planning Health: Safety and Hygiene through Infrared Temperature Screening": 1 + "Health: Ensuring Safety and Hygiene in Event Planning with Touchless Soap Dispensers": 1 + "Using Digital Contact Tracing for Safe Event Planning": 1 + "Health: Ensuring Safety and Hygiene in Event Planning with Advanced Air Filtration Systems": 1 + "Safety and Hygiene in Event Planning: A Focus on Personal Protective Equipment (PPE)": 1 + "Health: Implementing Social Distancing Technology in Event Planning": 1 + "Event Planning Health: Ensuring Safety and Hygiene with Automated Cleaning Robots.": 1 + "Neuroscience: Exploring the Human Brain Through EEG Technology": 1 + "Neuroscience: Functional MRI and the Exploration of the Human Brain": 1 + "Neuroscience: PET Scans in Understanding the Human Brain": 1 + "Neuroscience: Exploring the Human Brain Using Diffusion Tensor Imaging": 1 + "Neuroscience: The Role of Neuroimaging in Brain Exploration": 1 + "Neuroscience: Navigating the Human Brain with TMS": 1 + "Neuroscience: Understanding the Human Brain Through Neurofeedback": 1 + "Neuroscience: The Contributions of Spectroscopy to Brain Exploration": 1 + "Neuroscience: Exploring the Human Brain Using Optogenetics": 1 + "Neuroscience: The Human Brain and the Power of Cognitive Neuroscience.": 1 + "Computer Science: Coding Basics with Scratch, Java, and Python for Web Development": 1 + "Computer Science: Advanced Coding Techniques with Scratch, Java, and Eclipse IDE": 1 + "Computer Science: Introduction to Algorithms and Data Structures using Scratch and Java": 1 + "Computer Science: Building Interactive Websites with Scratch, Java, and HTML5": 1 + "Computer Science: Coding Basics with Scratch, Java, and IntelliJ IDEA for Software Development": 1 + "Computer Science: Mastering Object-Oriented Programming with Scratch and Java": 1 + "Computer Science: Exploring Game Development with Scratch, Java, and Unity3D": 1 + "Computer Science: Coding Basics with Scratch, Java, and Git for Version Control": 1 + "Computer Science: Web App Development using Scratch, Java, and MySQL Database": 1 + "Computer Science: Machine Learning Fundamentals with Scratch, Java, and TensorFlow": 1 + "Physical Education: Foundations of Fitness: Exploring the Concept of Body Mass Index Using Calipers": 1 + "Physical Education: Foundations of Fitness: Understanding BMI through Bioelectrical Impedance Analysis": 1 + "Physical Education: Foundations of Fitness: Applying Dual Energy X-ray Absorptiometry in BMI Calculation": 1 + "Physical Education: Foundations of Fitness: A Deep Dive into BMI and Waist-to-Hip Ratio": 1 + "Physical Education: Foundations of Fitness: Leveraging Hydrostatic Weighing in BMI Interpretation": 1 + "Physical Education: Foundations of Fitness: Understanding Body Mass Index Through Air Displacement Plethysmography": 1 + "Physical Education: Foundations of Fitness: Incorporating 3D Body Scanners in BMI Analysis": 1 + "Physical Education: Foundations of Fitness: Understanding BMI Through Near-Infrared Interactance": 1 + "Physical Education: Foundations of Fitness: BMI Calculation Using Body Circumference Measurements": 1 + "Physical Education: Foundations of Fitness: Exploring BMI with Skinfold Thickness Measurements": 1 + "Music Composition with Sibelius 7 Software: Exploring the Harmony of Rhymes in Children's Poetry using Kontakt Sound Libraries": 1 + "Creating Melodies with Sibelius 8 and EastWest Quantum Leap Pianos: The Harmony of Rhymes in Children's Poetry": 1 + "Detailed Music Composition with Sibelius Software and MIDI Keyboard: The Harmony of Rhymes in Children's Poetry using Sound Libraries ": 1 + "Advanced Music Composition with Sibelius Software and Pro Tools: The Harmony of Rhymes in Children's Poetry ": 1 + "Music Composition with Sibelius Software and Ableton Live: The Harmony of Rhymes in Children's Poetry using VST Sound Libraries ": 1 + "Exploring Children's Poetry through Sibelius Music Software and Propellerhead Reason: Harmonizing Rhymes with Sound Libraries ": 1 + "Composition of Children's Poetry Rhymes: Integration of Sibelius Software and Logic Pro X Sound Libraries ": 1 + "Music Composition with Sibelius Software and Cubase: The Harmony of Rhymes in Children's Poetry using Sound Libraries ": 1 + "Music Composition with Sibelius Software and FL Studio: The Harmony of Rhymes in Children's Poetry using Sound Libraries ": 1 + "Music Composition with Sibelius Software and Motif XF8: The Harmony of Rhymes in Children's Poetry using Sound Libraries.": 1 + "Understanding Brain Function and Lesion Impact through EEG and fMRI Technology": 1 + "The Role of Quantitative EEG (qEEG) in Analyzing Brain Function and Impact of Lesions": 1 + "EEG and the Use of Neurofeedback Training in Assessing Brain Function after Lesions": 1 + "Deep Exploration of Brain Function and Lesion Impact: The Role of EEG and Diffusion MRI": 1 + "Applying EEG and Transcranial Magnetic Stimulation in Understanding Brain Function and Lesion Impact": 1 + "Integrated Neuroimaging: Assessing Brain Function and Lesion Impact using EEG and PET Scans": 1 + "The Role of High-Density EEG in the Study of Brain Function and Lesion Impact": 1 + "EEG and Brain Computer Interface: A New Approach to Understanding Brain Function and Lesion Impact": 1 + "The Role of EEG and Spectroscopy in Understanding Neurological Damage from Brain Lesions": 1 + "Advancing Understanding of Brain Function and Lesion Impact: EEG and Magnetoencephalography (MEG) Techniques.": 1 + "Optical Fibre Technology: In-depth Analysis of Fibre Optic Cables and DWDM Technology in Computing Science": 1 + "Optical Fibre Technology: A Study on Fibre Optic Cables and OTDR Testing in Computing Science": 1 + "Optical Fibre Technology: Exploring Fibre Optic Cables and Fusion Splicing in Computing Science": 1 + "Optical Fibre Technology: Detailed Study of Fibre Optic Cables and EDFAs in Computing Science ": 1 + "Optical Fibre Technology: A Comprehensive Review on Fibre Optic Cables and FTTx Networks in Computing Science": 1 + "Optical Fibre Technology: Understanding Fibre Optic Cables and Optical Switches in Computing Science": 1 + "Optical Fibre Technology: A Study on Fibre Optic Cables and Fiber Bragg Gratings in Computing Science": 1 + "Optical Fibre Technology: Exploring Fibre Optic Cables and Optical Amplifiers in Computing Science": 1 + "Optical Fibre Technology: In-depth Analysis of Fibre Optic Cables and Wavelength Division Multiplexing in Computing Science": 1 + "Optical Fibre Technology: A Comprehensive Study on Fibre Optic Cables and Optical Time-Domain Reflectometer in Computing Science.": 1 + "Music: Using Ableton Live to Incorporate Natural Rhythms into MIDI Percussion": 1 + "MIDI Technology: A Deep Dive into Drum Racks for Natural Rhythms in Percussion": 1 + "Music Production: The Role of MIDI Controllers in Incorporating Natural Rhythms into Percussion ": 1 + "MIDI Technology: Utilizing Logic Pro X to Infuse Natural Rhythms into Percussion": 1 + "Music: The Use of MIDI Technology and Beat Mapping in Creating Natural Rhythms for Percussion": 1 + "MIDI Technology: Harnessing FL Studio to Incorporate Natural Rhythms into Percussion Pieces": 1 + "Music Production: The Use of MIDI Technology and Time Stretching to Blend Natural Rhythms into Percussion": 1 + "MIDI Technology: Integrating Natural Rhythms into Percussion using Cubase": 1 + "Music: The Use of MIDI Technology and Quantization in Infusing Natural Rhythms into Percussion": 1 + "MIDI Technology: Exploring Pro Tools to Integrate Natural Rhythms into Percussion Tracks": 1 + "Philosophy & Quantum Physics: Heraclitus's Flux Doctrine and the Concept of Uncertainty": 1 + "The Impact of Heraclitus's Flux Doctrine on the Theory of Relativity in Modern Physics": 1 + "Quantum Mechanics Unveiled: Heraclitus's Flux Doctrine and the Observational Effect": 1 + "Heraclitus's Flux Doctrine: Its Influence on the Concept of Quantum Entanglement in Modern Physics": 1 + "Heraclitus's Flux Doctrine and its Significance in the Development of Quantum Field Theory": 1 + "The Role of Heraclitus's Flux Doctrine in the Evolution of Particle Physics": 1 + "From Philosophy to Physics: Heraclitus's Flux Doctrine and the Emergence of Quantum Computing": 1 + "Heraclitus's Flux Doctrine: Bridging the Gap Between Metaphysics and the String Theory": 1 + "Quantum Reality and Heraclitus's Flux Doctrine: Exploring the Concept of Wave-Particle Duality": 1 + "The Influence of Heraclitus's Flux Doctrine on Space-Time Continuum in Einstein's Theory of General Relativity": 1 + "Music: Folk Songs and Their Roots in Harvesting - A Study of the Scythe's Symbolism": 1 + "The Influence of the Threshing Machine on Folk Songs and Their Roots in Harvesting": 1 + "Harvesting Technology in Music: The Plough's Impact on Folk Songs": 1 + "Music: Folk Songs and Their Roots in Harvesting - The Role of the Winnowing Fan": 1 + "The Harvester's Song: The Connection between Folk Music and the Sickle": 1 + "Grain Elevator in Folk Tunes: A Study of Harvesting Songs": 1 + "The Cotton Gin's Influence on Folk Songs and Their Roots in Harvesting": 1 + "Tractor Ballads: Exploring Folk Songs and Their Roots in Harvesting": 1 + "Music: The Water Wheel's Rhythm in Folk Songs and Harvesting Roots": 1 + "The Seed Drill and its Resonance in Folk Songs and Their Harvesting Roots": 1 + "Logic for Young Minds: The Art of Problem Solving Using Python Programming": 1 + "Logic for Young Minds: Mastering the Art of Problem Solving with Chess Strategies": 1 + "Logic for Young Minds: Problem Solving through Sudoku Puzzles": 1 + "Logic for Young Minds: Developing Problem Solving Skills with Lego Building Techniques": 1 + "Logic for Young Minds: The Art of Problem Solving and Critical Thinking using Mind Maps": 1 + "Logic for Young Minds: Enhancing Problem Solving Skills through Rubik's Cube Algorithms": 1 + "Logic for Young Minds: Problem Solving Skills through Computer Coding": 1 + "Logic for Young Minds: The Art of Problem Solving with Mathematical Equations": 1 + "Logic for Young Minds: The Art of Problem Solving through Digital Animation Techniques": 1 + "Logic for Young Minds: The Art of Problem Solving using Virtual Reality Technology": 1 + "Art: Capturing Nature in Still Life: A Gouache Painting Approach with Palette Knives": 1 + "Art: Nature in Still Life: A Gouache Painting Approach using Dry Brush Technique": 1 + "Art: Nature in Still Life: A Gouache Painting Approach and the Use of Easel": 1 + "Art: Nature in Still Life: Exploring Gouache Painting with a Flat Brush Approach": 1 + "Art: Nature in Still Life: A Gouache Painting Approach using Layering Technique": 1 + "Art: Nature in Still Life: A Gouache Painting Approach with Blending Techniques": 1 + "Art: Nature in Still Life: A Gouache Painting Approach using the Concept of Chiaroscuro": 1 + "Art: Nature in Still Life: A Gouache Painting Approach and the Use of a Viewfinder": 1 + "Art: Nature in Still Life: A Gouache Painting Approach with Glazing Techniques": 1 + "Art: Nature in Still Life: A Gouache Painting Approach using Grisaille Technique": 1 + "Art: Nature in Still Life: A Gouache Painting Approach and the Use of a Mahl Stick": 1 + "Biology: An In-depth Study of Genetic Engineering using CRISPR-Cas9": 1 + "Biology: Applications of PCR in Genetic Analysis": 1 + "Biology: Understanding the Human Genome Project and its Impact on Genetics": 1 + "Biology: An Introduction to Genetics with a Focus on DNA Sequencing": 1 + "Biology: Exploring Genetic Modification with Gene Drive Technology": 1 + "Biology: The Role of Bioinformatics in Genetics": 1 + "Biology: Gene Therapy: A New Horizon in Genetics": 1 + "Biology: Genetic Mapping and Marker-Assisted Selection": 1 + "Biology: Molecular Cloning Techniques in Genetic Research": 1 + "Biology: RNA Interference and its Role in Genetic Studies": 1 + "Physics: Exploring Electromagnetism in the Magic of Magnetism - An In-Depth Study of Gauss's Law": 1 + "Physics: Probing Electromagnetism and Lorentz Force in the Magic of Magnetism": 1 + "Physics: A Comprehensive Look into Electromagnetism and Faraday's Law in the Magic of Magnetism": 1 + "Physics: The Role of Ampere's Law in Exploring Electromagnetism within the Magic of Magnetism": 1 + "Physics: Delving into Electromagnetism and Magnetic Flux in the Magic of Magnetism": 1 + "Physics: The Magic of Magnetism - Exploring Electromagnetism through Biot-Savart Law": 1 + "Physics: Magnetism Magic - Unraveling Electromagnetism using Maxwell's Equations": 1 + "Physics: Exploring Electromagnetism and Magnetic Fields in the Magic of Magnetism": 1 + "Physics: Unveiling the Magic of Magnetism - A Detailed Examination of Electromagnetic Induction": 1 + "Physics: The Magic of Magnetism - Understanding Electromagnetism through Tesla Coil Experimentation": 1 + "Basic Electronics: An Introduction to Digital Circuits with Arduino": 1 + "Fundamentals of Electronics: Exploring Digital Circuits through Raspberry Pi": 1 + "Basic Electronics: Understanding Digital Circuits with Multisim": 1 + "Hands-on Guide to Digital Circuits: An Introduction to Basic Electronics with Breadboard": 1 + "Basic Electronics: An Introduction to Digital Circuits using Oscilloscopes": 1 + "Oscillators and Digital Circuits: A Basic Electronics Course": 1 + "Basic Electronics: An Exploration of Digital Circuits and Boolean Algebra": 1 + "Basic Electronics: A Practical Approach to Digital Circuits with Logic Gates": 1 + "Introduction to Digital Circuits: Basic Electronics with Circuit Design Software": 1 + "Basic Electronics: A Comprehensive Study of Digital Circuits and Microcontrollers.": 1 + "Elementary Science: Exploring the Solar System with Telescopes": 1 + "Elementary Science: Introduction to the Solar System using Planetarium Software": 1 + "Elementary Science: The Solar System and Astrophotography": 1 + "Elementary Science: Studying the Solar System through Satellite Imagery": 1 + "Elementary Science: Introduction to the Solar System with VR Technology": 1 + "Elementary Science: Delving into the Solar System using Space Probes": 1 + "Elementary Science: Understanding the Solar System through Celestial Mechanics": 1 + "Elementary Science: Exploring the Solar System with 3D Modeling": 1 + "Elementary Science: The Solar System and Spectroscopy Techniques": 1 + "Elementary Science: Journey through the Solar System using Stellarium Software": 1 + "The Power of Algebra: Exploring Business Applications of Logarithmic Functions using Excel": 1 + "Applications of R Programming in Logarithmic Functions for Business Algebra": 1 + "The Power of Algebra: Business Insights through Logarithmic Functions and Python": 1 + "Business Analytics: Leveraging the Power of Logarithmic Functions with SPSS": 1 + "Advanced Business Algebra: Exploiting Logarithmic Functions using MATLAB": 1 + "The Power of Algebra: Exploring Business Applications through Logarithmic Functions with Tableau": 1 + "Unleashing Business Potentials with Logarithmic Functions in Algebra using SAS": 1 + "Business Algebra: Harnessing Logarithmic Functions through JMP Statistical Analysis": 1 + "The Power of Algebra: Business Applications of Logarithmic Functions using Mathematica": 1 + "Exploring Business Opportunities: Logarithmic Algebra Functions with Microsoft Power BI.": 1 + "Social Studies: The Impact of Structural-Functionalism on Understanding Traditional Sports' Cultural Significance through Ethnographic Research": 1 + "Using Survey Analysis to Evaluate Structural-Functionalism's Influence on Traditional Sports' Cultural Importance: A Social Studies Perspective": 1 + "Social Studies: A Quantitative Approach to Structural-Functionalism and its Impact on Traditional Sports' Cultural Significance": 1 + "Social Studies: Applying Data Mining Techniques to Structural-Functionalism and Traditional Sports' Cultural Significance": 1 + "Structural-Functionalism's Impact on Traditional Sports: A Social Studies Inquiry Using Grounded Theory ": 1 + "Social Studies: Utilizing Content Analysis to Unravel the Impact of Structural-Functionalism on Traditional Sports' Cultural Significance": 1 + "Understanding Traditional Sports' Cultural Significance: A Structural-Functionalism Study using Case Study Method": 1 + "Social Studies: Structural-Functionalism's Effect on Traditional Sports' Cultural Significance through Experimental Research": 1 + "Exploring Structural-Functionalism in Traditional Sports' Cultural Significance: A Social Studies Perspective Leveraging Longitudinal Studies": 1 + "Social Studies: Structural-Functionalism's Role in Traditional Sports' Cultural Significance - A Phenomenological Approach.": 1 + "Elementary Astronomy: Observing the Night Sky with Dobsonian Telescopes": 1 + "Elementary Astronomy: Exploring the Night Sky with Hubble Space Telescope": 1 + "Elementary Astronomy: Observing the Night Sky using Refracting Telescopes": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes": 1 + "Elementary Astronomy: Stellar Observation with Radio Telescopes": 1 + "Elementary Astronomy: Observing the Night Sky using Adaptive Optics Technology": 1 + "Elementary Astronomy: Deep Sky Observation with Schmidt-Cassegrain Telescopes": 1 + "Elementary Astronomy: Observing the Night Sky using Spectroscopy": 1 + "Elementary Astronomy: Observing the Night Sky with Infrared Telescopes": 1 + "Elementary Astronomy: Observing the Night Sky and Nebulae with Newtonian Telescopes": 1 + "Utilizing Python in Computer Science: A Deep Dive into Athletic Performance using Big Data Analytics": 1 + "Introduction to R Programming for Computer Science: Enhancing Athletic Performance through Big Data Insights": 1 + "Harnessing SQL in Computer Science: Uncovering Secrets of Athletic Performance using Big Data": 1 + "Computer Science and Machine Learning: Optimizing Athletic Performance with Big Data Exploration": 1 + "Exploring Athletic Performance using Big Data: An Introduction to Computer Science with Hadoop": 1 + "Java Programming in Computer Science: Enhancing Athletic Performance through Big Data Analysis": 1 + "Introduction to Computer Science: Investigating Athletic Performance using Big Data and Artificial Intelligence": 1 + "Computer Science and Data Visualization: Interpreting Athletic Performance through Big Data": 1 + "Advanced Excel for Computer Science: Monitoring Athletic Performance using Big Data Techniques": 1 + "Introduction to Computer Science with Tableau: Translating Athletic Performance through Big Data.": 1 + "Language Arts: The Art of Economic Discourse: Understanding Econometrics through Multivariate Analysis in Stata with R Programming": 1 + "Understanding Econometrics through Multivariate Regression Analysis in Stata: An Emphasis on Time-Series Data": 1 + "The Art of Economic Discourse: Enhancing Econometric Analysis with Multivariate Techniques in Stata and Python": 1 + "Language Arts and Econometrics: Multivariate Analysis in Stata using Panel Data": 1 + "Mastering Econometric Discourse: Multivariate Analysis using Stata and SAS": 1 + "Econometrics for Language Arts: Advanced Multivariate Analysis using Stata and SPSS": 1 + "Applied Econometrics: Multivariate Analysis using Stata and ANOVA Techniques": 1 + "Language Arts: The Art of Economic Discourse: Understanding Econometrics through Machine Learning Techniques in Stata": 1 + "Economic Discourse and Language Arts: A Deep Dive into Econometrics via Multivariate Analysis in Stata and SQL": 1 + "Understanding Econometrics through Multivariate Analysis in Stata: The Power of Logistic Regression.": 1 + "Physics: The Science of Sound and Vibration - Understanding Frequencies with Oscilloscopes": 1 + "Physics: The Science of Sound and Vibration - Exploring Resonance with Signal Generators": 1 + "Physics: The Science of Sound and Vibration - Decoding Harmonics with Spectrum Analyzers": 1 + "Physics: The Science of Sound and Vibration - Studying Waves with Fourier Transforms": 1 + "Physics: The Science of Sound and Vibration - Exploring Acoustics with Microphones and Amplifiers": 1 + "Physics: The Science of Sound and Vibration - Unveiling Sound Intensity with Decibel Meters": 1 + "Physics: The Science of Sound and Vibration - Discovering Doppler Effect with Ultrasonic Sensors": 1 + "Physics: The Science of Sound and Vibration - Understanding Sound Propagation with Echo Sounders": 1 + "Physics: The Science of Sound and Vibration - Studying Sound Absorption with Impedance Tubes": 1 + "Physics: The Science of Sound and Vibration - Investigating Vibrational Modes with Laser Doppler Vibrometers.": 1 + "Environmental Science: Integrating Biomimicry and Genetic Algorithm in the Design of Sustainable Sports Equipment": 1 + "Advancements in Environmental Science: Biomimicry and Machine Learning Application in Sustainable Basketball Equipment Design": 1 + "Environmental Science Explored: Biomimicry, Object-Oriented Programming, and AI Optimization in Eco-Friendly Soccer Gear": 1 + "Innovative Environmental Science: Biomimicry, Neural Networks, and AI in Sustainable Sports Equipment Development": 1 + "Cutting-Edge Environmental Science: Biomimicry, Deep Learning, and AI in Sustainable Tennis Gear Design": 1 + "Environmental Science in Practice: Biomimicry, MATLAB Tools, and AI Optimization in Sustainable Golf Equipment Design": 1 + "The Future of Environmental Science: Biomimicry, TensorFlow, and AI in the Creation of Sustainable Sports Gear": 1 + "Exploring Environmental Science: Biomimicry, Computer Vision, and AI Optimization in Sustainable Baseball Equipment Design": 1 + "Environmental Science Unveiled: Biomimicry, Python Programming, and AI in Sustainable Swimming Gear Creation": 1 + "Environmental Science: Biomimicry, Reinforcement Learning, and AI Optimization in the Manufacture of Sustainable Climbing Equipment.": 1 + "Data-Driven Athletic Assessment: Utilizing Python Programming with Tableau, Cluster Analysis, and Machine Learning Techniques": 1 + "Advanced Course on Data-Driven Athletic Assessment: Applying Python with Tableau, Cluster Analysis, and Scikit-Learn": 1 + "Data-Driven Athletic Assessment: A Comprehensive Study of Python Programming, Tableau, and K-means Cluster Analysis": 1 + "Python Programming for Athletic Assessment: Combining Tableau, Cluster Analysis, and Predictive Modelling": 1 + "Practical Applications of Python, Tableau, and Cluster Analysis in Data-Driven Athletic Assessment: An Introduction to Regression Analysis": 1 + "Data-Driven Athletic Assessment: Exploring Python Programming, Tableau and Hierarchical Cluster Analysis": 1 + "Python Programming for Athletic Performance: Infusing Tableau, Cluster Analysis, and Linear Algebra Concepts": 1 + "Advanced Analytics in Sports: Applying Python Programming with Tableau, Cluster Analysis, and TensorFlow": 1 + "In-depth Look at Data-Driven Athletic Assessment: Python Programming with Tableau, Cluster Analysis, and Data Visualization": 1 + "Data-Driven Athletic Assessment: Leveraging Python Programming, Tableau, Cluster Analysis, and Principal Component Analysis.": 1 + "The Art of Mind: Exploring the Link Between Art and Neuroscience Using fMRI Technology": 1 + "The Art of Mind: Connecting Art and Neuroscience Through the Lens of Neuroplasticity": 1 + "The Art of Mind: Investigating Art Influences on Brain Development using EEG Technology": 1 + "The Art of Mind: An In-depth Study of Art and Neuroscience with Cognitive Mapping": 1 + "The Art of Mind: A Comprehensive Guide to Art and Neuroscience using Brain-Computer Interfaces": 1 + "The Art of Mind: Delving into Art and Neuroscience with Functional Neuroimaging": 1 + "The Art of Mind: Unraveling Art and Neuroscience through the Concept of Synesthesia": 1 + "The Art of Mind: Exploring Art and Neuroscience with the Use of Neurofeedback": 1 + "The Art of Mind: The Interplay of Art and Neuroscience Explored through Neural Networks": 1 + "The Art of Mind: Connecting Art and Neuroscience via the Study of Neuroaesthetics.": 1 + "Neuroscience: Exploring Dance Perception Through Brain Mechanisms Using fMRI ": 1 + "Neuroimaging Techniques in the Study of Brain Mechanisms Influencing Dance Perception": 1 + "The Role of EEG in Neuroscience: Understanding Brain Mechanisms in Dance Perception ": 1 + "Neuroscience: Brain Mechanisms in Dance Perception - A PET Scan Perspective": 1 + "Neuroscience: Brain Mechanisms and Dance Perception - The Cognitive Neuroscience Approach": 1 + "Investigating Dance Perception: A Deep Dive into Brain Mechanisms Using DTI ": 1 + "The use of TMS in Neuroscience: Decoding Brain Mechanisms in Dance Perception": 1 + "The Application of NIRS in Studying Brain Mechanisms in Dance Perception": 1 + "Functional Connectivity Analysis in the Neuroscience of Dance Perception": 1 + "Neuroscience: Brain Mechanisms in Dance Perception - A Study Using Neurofeedback.": 1 + "Maritime Advances: The Impact of the Compass on Silk Road Navigation": 1 + "Maritime Advances: The Role of Celestial Navigation in Silk Road Voyages": 1 + "Maritime Advances: The Influence of the Silk Road on Cartography": 1 + "Maritime Advances: The Silk Road and the Development of the Sextant": 1 + "Maritime Advances: The Silk Road's Contribution to Nautical Astronomy": 1 + "Maritime Advances: The Silk Road and the Emergence of the Astrolabe in Navigation": 1 + "Maritime Advances: The Impact of the Silk Road on the Evolution of Shipbuilding": 1 + "Maritime Advances: The Silk Road's Influence on the Development of Maritime Chronometers": 1 + "Maritime Advances: The Silk Road and the Advent of the Quadrant in Navigation": 1 + "Maritime Advances: The Role of the Silk Road in the Progression of Dead Reckoning Navigation Techniques": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Matrix Algebra and Python Programming": 1 + "Mathematics: Delving into Numbers with Abacus, Geometric Shapes, and Matrix Algebra through Wolfram Mathematica": 1 + "Mathematics: Engaging with Numbers using Abacus, Geometric Shapes and Matrix Algebra with the aid of Graphing Calculator ": 1 + "Mathematics: A Deep Dive into Numbers with Abacus, Geometric Shapes, and Matrix Algebra using SPSS": 1 + "Mathematics: Analyzing Numbers with Abacus, Geometric Shapes and Matrix Algebra through MATLAB": 1 + "Mathematics: Investigating Numbers with Abacus, Geometric Shapes using Matrix Algebra and R Programming ": 1 + "Mathematics: Unearthing Numbers with Abacus, Geometric Shapes, and Matrix Algebra via Excel Spreadsheets": 1 + "Mathematics: Examining Numbers using Abacus, Geometric Shapes, Matrix Algebra, and Desmos": 1 + "Mathematics: Probing Numbers with Abacus, Geometric Shapes using Matrix Algebra and Tableau": 1 + "Mathematics: Navigating Numbers with Abacus, Geometric Shapes, and Matrix Algebra through GeoGebra": 1 + "Exploring the Impact of Adobe Photoshop's Color Wheel on Gouache Painting Techniques: An In-Depth Analysis of Natural Shapes and Broken Lines using Grayscale Converter": 1 + "A Detailed Study on the Usage of Prismacolor Pencil Set in Color Theory Influence on Gouache Techniques through Grayscale Converter": 1 + "The Role of Wacom Graphic Tablet in Enhancing Gouache Techniques inspired by Color Theory: A Comprehensive Study using Grayscale Converter": 1 + "The Synergy of Color Theory and Gouache Techniques through Pantone Color Wheel: A Comprehensive Study of Natural Shapes and Broken Lines in Grayscale": 1 + "Harnessing the Power of Corel Painter's Color Wheel in Gouache Techniques: A Comprehensive Study of Natural Shapes and Broken Lines via Grayscale Converter": 1 + "The Influence of Color Theory on Gouache Techniques using Color Wheel and Grayscale Converter in Adobe Illustrator: A Comprehensive Study of Natural Shapes and Broken Lines": 1 + "Utilizing the X-Rite Color Checker in the Study of Color Theory's Influence on Gouache Techniques through Grayscale Converter": 1 + "The Impact of AutoCAD on Gouache Techniques: A Comprehensive Study of Natural Shapes and Broken Lines influenced by Color Theory using a Color Wheel": 1 + "The Influence of Color Theory on Gouache Techniques through CIE Color Space: A Comprehensive Study of Natural Shapes and Broken Lines using Grayscale Converter": 1 + "Procreate's Role in the Influence of Color Theory on Gouache Techniques: A Comprehensive Study of Natural Shapes and Broken Lines using Grayscale Converter.": 1 + "Utilizing Hadoop: The Role of Big Data in Globalization and its Impact on Modern Trade": 1 + "Exploring SQL: The Impact of Big Data on Globalization and Trade Modernization": 1 + "Machine Learning: Understanding Globalization and Modern Trade through Big Data": 1 + "Python Programming: Big Data's Role in Globalization and Modern Trade Trends": 1 + "Neural Networks: Big Data and its Influence on Globalization and Modern Trade": 1 + "Data Mining: Big Data's Contribution to Globalization and the Revolution of Trade": 1 + "Artificial Intelligence: The Role of Big Data in Globalization and Trade Modernization": 1 + "Predictive Analytics: Big Data's Impact on Globalization and Changing Trade Landscapes": 1 + "Big Data Visualization: Globalization and Modern Trade Insights": 1 + "Apache Spark: Big Data's Role in Globalization and the Evolution of Modern Trade": 1 + "Mathematics: The Role of Trigonometry, AutoCAD, and GIS Technology in International Building Designs": 1 + "Advanced Trigonometry and GIS Technology: Their Influence on Earthquake-resistant Building Designs Worldwide": 1 + "Applying Trigonometry and GIS Technology in International Building Designs: A Focus on 3D Modeling": 1 + "The Integration of Trigonometry and BIM Technology in Modern International Building Designs": 1 + "Impacts of Trigonometry and GIS Technology on Green Building Designs: A Global Perspective": 1 + "Trigonometry and GIS Technology: Revolutionizing International Building Designs with Revit Architecture": 1 + "Sustainable Building Designs: A Mathematical Perspective with Trigonometry and GIS Technology": 1 + "The Influence of Trigonometry and ArcGIS on International Building Designs and Urban Planning": 1 + "Mathematics in Architecture: Trigonometry, SketchUp, and GIS Technology Shaping Building Designs": 1 + "The Impact of Trigonometry and GIS Technology on International Building Designs: A Deep Dive into Vectorworks Software.": 1 + "Physical Education: Analyzing Rhythmic Gymnastics using Wearable Inertial Sensors in Balance Evaluation Systems": 1 + "Physical Education: Leveraging Accelerometers for Rhythmic Gymnastics Analysis in Balance Evaluation Systems": 1 + "Physical Education: Use of Gyroscopes in Rhythmic Gymnastics Analysis through Wearable Balance Evaluation Systems": 1 + "Physical Education: Rhythmic Gymnastics Analysis utilizing Wearable Motion Capture Technology in Balance Evaluation Systems": 1 + "Physical Education: Role of Biofeedback Devices in Rhythmic Gymnastics Analysis for Balance Evaluation Systems": 1 + "Physical Education: Harnessing IoT Devices for Rhythmic Gymnastics Analysis in Balance Evaluation Systems": 1 + "Physical Education: Application of Virtual Reality in Rhythmic Gymnastics Analysis through Wearable Balance Evaluation Systems": 1 + "Physical Education: Rhythmic Gymnastics Analysis through the Use of Wearable EMG Sensors in Balance Evaluation Systems": 1 + "Physical Education: Rhythmic Gymnastics Analysis using Wearable Smart Textiles in Balance Evaluation Systems": 1 + "Physical Education: Role of Haptic Technology in Rhythmic Gymnastics Analysis through Wearable Balance Evaluation Systems": 1 + "Mathematics: Utilizing Pythagorean Theorem to Calculate Distances and Angles in Mountainous Terrains": 1 + "Mathematics: Using Trigonometry to Measure Distances and Angles in Urban Terrains": 1 + "Mathematics: Application of GPS Technology in Calculating Distances and Angles in Varied Terrains": 1 + "Mathematics: Employing Euclidean Geometry to Compute Distances and Angles in Forest Terrains": 1 + "Mathematics: Leveraging Compass for Assessing Distances and Angles in Desert Terrains": 1 + "Mathematics: Using Sextant to Determine Distances and Angles in Nautical Terrains": 1 + "Mathematics: Application of Ruler and Protractor in Calculating Distances and Angles in Flat Terrains": 1 + "Mathematics: Utilizing Laser Rangefinders to Measure Distances and Angles in Hilly Terrains": 1 + "Mathematics: Using Topographical Maps to Calculate Distances and Angles in Various Terrains": 1 + "Mathematics: Application of Geodesy in Calculating Distances and Angles on Global Terrains.": 1 + "Junior Neuroscience: Exploring the Brain's Internal Workings with MRI, fMRI and DTI (Diffusion Tensor Imaging)": 1 + "Junior Neuroscience: Understanding Brain Function through MRI, fMRI, and PET (Positron Emission Tomography)": 1 + "Junior Neuroscience: Decoding the Brain's Activity with MRI, fMRI, and EEG (Electroencephalography)": 1 + "Junior Neuroscience: Delving into Brain Mechanisms with MRI, fMRI, and NIRS (Near-Infrared Spectroscopy)": 1 + "Junior Neuroscience: Comprehending the Brain's Workings using MRI, fMRI and the Concept of Neuroplasticity": 1 + "Junior Neuroscience: Learning about Brain Anatomy through MRI, fMRI and the Brodmann Areas": 1 + "Junior Neuroscience: Understanding the Brain's Internal Workings with MRI, fMRI and the Application of tDCS (Transcranial Direct Current Stimulation)": 1 + "Junior Neuroscience: Analyzing Brain Functions using MRI, fMRI, and the Theory of Lateralization": 1 + "Junior Neuroscience: Investigating the Brain with MRI, fMRI and the Principle of Synaptic Transmission": 1 + "Junior Neuroscience: A Deep Dive into the Brain's Internal Workings with MRI, fMRI, and the Use of Optogenetics.": 1 + "Elementary Education 305: Utilizing ScratchJr for Cooperative Games on iPads": 1 + "Elementary Education 305: Introduction to Cooperative Math Games with iPads and Prodigy": 1 + "Elementary Education 305: Exploring Cooperative Language Games on iPads with Epic!": 1 + "Elementary Education 305: Navigating Cooperative Games with iPads and Kahoot!": 1 + "Elementary Education 305: Using Seesaw for Cooperative Learning Games on iPads": 1 + "Elementary Education 305: Implementing Cooperative Science Games with iPads and Tynker": 1 + "Elementary Education 305: Engaging in Cooperative Games on iPads using Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Art Games with iPads and Adobe Spark": 1 + "Elementary Education 305: Cooperative Games with iPads and Minecraft for Elementary Education": 1 + "Elementary Education 305: Introduction to Cooperative Coding Games with iPads and Code.org": 1 + "Philosophy and Psychology: The Role of Binaural Beats in Cognitive Processes - A Detailed Study of Neurofeedback Techniques": 1 + "Exploring the Power of Sound Therapy in Cognitive Processes through EEG Neurofeedback: A Deep Dive": 1 + "Philosophy: The Power of Sound in Cognitive Processes - A Comprehensive Analysis of Brainwave Entrainment and Neurofeedback": 1 + "Philosophy: The Cognitive Impact of Isochronic Tones - A Deep Dive into Neurofeedback Methods": 1 + "Philosophy: The Power of Sound in Cognitive Processes - An In-depth Exploration of Neuroplasticity through Neurofeedback": 1 + "Philosophy: Understanding Cognitive Processes through Frequency Following Response and Neurofeedback": 1 + "Philosophy: Auditory Stimulation and Cognitive Enhancement - An Insight into Neurofeedback using Brainwave Synthesizers": 1 + "Philosophy: The Power of Sound in Cognitive Processes - A Deep Dive into Neurofeedback using Biofeedback Software": 1 + "Philosophy: Exploring Cognitive Processes through Sound Healing and Neurofeedback Techniques": 1 + "Philosophy: The Cognitive Effects of Solfeggio Frequencies - A Deep Dive into Neurofeedback.": 1 + "Computer Science: Introduction to Coding with Python and Data Structures": 1 + "Computer Science: Python Programming and Introduction to Machine Learning": 1 + "Computer Science: Coding with Python & Introduction to Django Framework": 1 + "Computer Science: Introductory Course on Python and Database Management": 1 + "Computer Science: Introduction to Python Coding and Web Scraping Techniques": 1 + "Computer Science: Python Programming and Fundamentals of Artificial Intelligence": 1 + "Computer Science: Coding in Python and Exploring the Flask Framework": 1 + "Computer Science: Introduction to Python and Cybersecurity Concepts": 1 + "Computer Science: Python Coding and Introduction to Game Development ": 1 + "Computer Science: Python Programming and Introduction to Data Visualization Tools": 1 + "Utilizing ArcGIS: Exploring the Influence of Geospatial Mapping on Community Games in Varied Terrains": 1 + "Leveraging Drone Technology: The Impact of GIS Mapping on Community Games in Varied Terrains": 1 + "Social Studies: The Role of 3D GIS Mapping in Enhancing Community Games in Varied Terrains": 1 + "Applying GPS Tracking: The Effect of GIS Mapping on Community Games in Diverse Landscapes": 1 + "Social Studies: The Impact of GIS Mapping and Augmented Reality on Community Games in Different Terrains": 1 + "Incorporating Google Earth: Studying the Impact of GIS Mapping on Community Games in Varied Terrains": 1 + "Using LiDAR Technology: Understanding the Impact of GIS Mapping on Community Games in Different Terrains": 1 + "Exploring Vector Data: The Influence of GIS Mapping on Community Games in Varied Terrains": 1 + "Social Studies: The Impact of GIS Mapping and Raster Data on Community Games in Varied Terrains": 1 + "Employing Remote Sensing: The Role of GIS Mapping in Shaping Community Games in Diverse Terrains": 1 + "Utilizing Fourier Transform: An In-depth Study of Spectrograms in Vibrational Frequency": 1 + "Exploring Acoustics with Oscilloscopes: Spectrograms in Vibrational Frequency": 1 + "Spectrograms in Vibrational Frequency: Understanding Sound Waves through Resonance Chambers": 1 + "Analyzing Vibrational Frequency: A Focus on Spectrograms and the Doppler Effect": 1 + "Spectrograms and Sound Spectrum Analyzers: A Deep Dive into Vibrational Frequency": 1 + "The Role of Waveform Generators in Spectrograms and Vibrational Frequency": 1 + "Deciphering Spectrograms in Vibrational Frequency using Digital Signal Processing": 1 + "Spectrograms in Vibrational Frequency: An Examination of Acoustics through Phasors": 1 + "Utilizing Spectral Estimation in the Study of Spectrograms and Vibrational Frequency": 1 + "Spectrograms in Vibrational Frequency: Applying the Nyquist-Shannon Sampling Theorem for Sound Analysis.": 1 + "Economics 150: Understanding Music Licensing and Royalties through Blockchain Technology": 1 + "Economics 150: Spotify’s Role in the Economics of Music Licensing and Royalties": 1 + "Economics 150: The Effect of AI on Music Licensing and Royalties": 1 + "Economics 150: Utilizing Big Data in the Economics of Music Licensing and Royalties": 1 + "Economics 150: The Impact of Copyright Law on Music Licensing and Royalties": 1 + "Economics 150: How Streaming Platforms Affect Music Licensing and Royalties": 1 + "Economics 150: Analyzing Music Licensing and Royalties with Financial Models": 1 + "Economics 150: The Role of Digital Distribution in Music Licensing and Royalties": 1 + "Economics 150: The Influence of Social Media on Music Licensing and Royalties": 1 + "Economics 150: Music Licensing and Royalties: A Study of Market Monopolization": 1 + "Social Studies: Analyzing Civil Rights Movements through Political Cartoons using Adobe Illustrator": 1 + "Historical Analysis: Evaluating Civil Rights Movements through Political Cartoons with Deep Learning": 1 + "Sociopolitical Study: Examining Civil Rights Movements via Political Cartoons with Critical Discourse Analysis": 1 + "Political Cartoon Studies: Understanding Civil Rights Movings using Digital Archiving Technology": 1 + "Social Studies: Exploring Civil Rights Movements through Political Cartoons using Data Visualization Tools": 1 + "Interdisciplinary Study: Probing Civil Rights Movements through Political Cartoons and GIS Mapping": 1 + "Historical Cartography: Dissecting Civil Rights Movements through Political Cartoons using AR Technology": 1 + "Sociocultural Studies: Interpreting Civil Rights Movements via Political Cartoons through Semiotic Analysis": 1 + "Social Studies: Examining Civil Rights Movements through Political Cartoons using Machine Learning Algorithms": 1 + "Social Sciences: Investigating Civil Rights Movements through Political Cartoons utilizing VR Technology": 1 + "Exploring the Impact of Color Wheel on Gouache Techniques Using Acrylic Brushes and Easel: A Comprehensive Study on Geometric Shapes and Linear Perspective": 1 + "Implementing Adobe Color CC in Understanding the Effect of Color Wheel on Gouache Techniques: An Examination on Shapes and Lines": 1 + "Using Palette Knives to Understand the Influence of Color Wheel on Gouache Techniques: A Detailed Analysis on Shapes and Lines": 1 + "The Role of Digital Tablets in Comprehending the Effect of Color Wheel on Gouache Techniques: A Study on Shapes and Lines": 1 + "Understanding the Effect of Color Wheel on Gouache Techniques Using Easel and Lightbox: A Study on Shapes and Lines in Still Life": 1 + "The Impact of Color Wheel on Gouache Techniques: A Focus on Easel Use, Raster Graphics, Shapes, and Lines": 1 + "Delving into the Effect of Color Wheel on Gouache Techniques Using Easel and Blending Stumps: A Study on Shapes and Lines": 1 + "Applying Color Theory and Photoshop in Understanding the Effect of Color Wheel on Gouache Techniques: An In-depth Look at Shapes and Lines": 1 + "Understanding the Effect of Color Wheel on Gouache Techniques Using Easel and Calligraphy Pens: A Study on Shapes and Lines": 1 + "The Influence of Color Wheel on Gouache Techniques: A Study on Shapes, Lines, and their Digital Representation Using Vector Graphics.": 1 + "Earth Science: The Application of LiDAR Technology and Drones in Mapping Geological Formations": 1 + "Earth Science: The Impact of Ground Penetrating Radar and 3D Imaging in Mapping Geological Formations": 1 + "Earth Science: The Role of Ground Penetrating Radar, Drones and Seismic Refraction in Mapping Geological Formations": 1 + "Earth Science: Utilizing Ground Penetrating Radar, Drones, and GIS in the Study of Geological Formations": 1 + "Earth Science: Exploring Geological Formations through Ground Penetrating Radar, Drones, and Sonar Technology": 1 + "Earth Science: Ground Penetrating Radar, Drones, and Photogrammetry in Mapping Geological Formations": 1 + "Earth Science: The Use of Ground Penetrating Radar, Drones, and Magnetometer in Mapping Geological Formations": 1 + "Earth Science: The Role of Ground Penetrating Radar, Drones, and Geospatial Imaging in Mapping Geological Formations": 1 + "Earth Science: The Integration of Ground Penetrating Radar, Drones, and Remote Sensing in Geological Mapping": 1 + "Earth Science: Ground Penetrating Radar, Drones, and Satellite Imagery in the Analysis of Geological Formations": 1 + "Biology Basics: Exploring DNA Structure with Gel Electrophoresis": 1 + "Biology Basics: Decoding Genetic Mysteries with CRISPR-Cas9": 1 + "Biology Basics: Unveiling Cellular Secrets with Fluorescence Microscopy": 1 + "Biology Basics: Investigating Proteins with Mass Spectrometry": 1 + "Biology Basics: Studying Evolution with Bioinformatics": 1 + "Biology Basics: Probing Metabolic Pathways with NMR Spectroscopy": 1 + "Biology Basics: Discovering Microbial Diversity with Next-Generation Sequencing": 1 + "Biology Basics: Understanding Disease Mechanisms with Animal Models": 1 + "Biology Basics: Examining Neurological Wonders with Patch-Clamp Technique": 1 + "Biology Basics: Unraveling Ecosystem Dynamics with Stable Isotope Analysis": 1 + "Physical Education: The Rhythm of Dance and Music - A Focus on Zumba with Fitbit Heart Rate Monitors": 1 + "Physical Education: Enhancing Ballet Performance through Garmin Heart Rate Monitors and Music Therapy": 1 + "The Rhythm of Dance and Music: Improving Jazz Dance with Polar Heart Rate Monitors in Physical Education": 1 + "Physical Education: The Influence of Hip Hop Dance and Music on Performance Enhancement with Whoop Heart Rate Monitors": 1 + "The Rhythm of Dance and Music: Enhancing Contemporary Dance Performance through Apple Watch Heart Rate Monitors in Physical Education": 1 + "Physical Education: Tango Dance and Music - Optimizing Performance with Mio Heart Rate Monitors": 1 + "The Rhythm of Dance and Music: Boosting Salsa Performance through Suunto Heart Rate Monitors in Physical Education": 1 + "Physical Education: The Art of Ballroom Dance - Performance Enhancement using Wahoo Heart Rate Monitors and Rhythm Analysis": 1 + "The Rhythm of Dance and Music: Upgrading Tap Dance Performance with Samsung Galaxy Watch Heart Rate Monitors in Physical Education": 1 + "Physical Education: Flamenco Dance and Music - Performance Enhancement through FitSpark Heart Rate Monitors and Tempo Adjustments.": 1 + "Advanced Human Biology: Utilizing Near-Infrared Spectroscopy and Lactate Pro Test for Assessing Lactic Acid Threshold and Sports Performance": 1 + "Advanced Human Biology: Evaluation of Lactic Acid Threshold and Sports Performance using Near-Infrared Spectroscopy and Treadmill Exercise Testing": 1 + "Advanced Human Biology: Using Near-Infrared Spectroscopy and Heart Rate Monitors to Study Lactic Acid Threshold in Relation to Sports Performance": 1 + "Advanced Human Biology: Blood Lactate Analysis via Near-Infrared Spectroscopy and Ergometer for Optimizing Sports Performance": 1 + "Advanced Human Biology: Use of Near-Infrared Spectroscopy and VO2 Max Testing for Comprehensive Study of Lactic Acid Threshold and Sports Performance": 1 + "Advanced Human Biology: Implementing Near-Infrared Spectroscopy and Isokinetic Dynamometer in Studying Lactic Acid Threshold and Sports Performance": 1 + "Advanced Human Biology: Near-Infrared Spectroscopy and Electromyography in the Investigation of Lactic Acid Threshold and its Impact on Sports Performance": 1 + "Advanced Human Biology: Using Near-Infrared Spectroscopy and Body Composition Analysis for Studying Lactic Acid Threshold and its Effect on Sports Performance": 1 + "Advanced Human Biology: Application of Near-Infrared Spectroscopy and Spirometry in Understanding Lactic Acid Threshold and Sports Performance": 1 + "Advanced Human Biology: Harnessing Near-Infrared Spectroscopy and Bioimpedance Analysis for Comprehensive Study of Lactic Acid Threshold and Sports Performance.": 1 + "Philosophy and Auditory Stimulation: Exploring Neuroplasticity through Neurofeedback and Binaural Beats": 1 + "The Power of Sound in Cognitive Processes: An Examination of Neuroplasticity through Neurofeedback and the Mozart Effect": 1 + "The Role of Sound in Brain Plasticity: A Study of Neurofeedback and the Tomatis Method": 1 + "Philosophy of Audio-Brain Interaction: In-depth Study of Neuroplasticity through Neurofeedback and Isochronic Tones": 1 + "Cognitive Processes and Auditory Stimuli: Understanding Neuroplasticity through Neurofeedback and the Feldenkrais Method": 1 + "The Philosophy of Auditory Perception: A Comprehensive Study of Neuroplasticity through Neurofeedback and Synesthesia": 1 + "Philosophy: The Power of Sound Enhancing Cognitive Functions - An In-depth Exploration of Neuroplasticity through Neurofeedback and the Bonny Method": 1 + "The Power of Sound in Cognitive Processes: A Detailed Look at Neuroplasticity through Neurofeedback and the Samonas Method": 1 + "Philosophy of Sound Perception: In-depth Analysis of Neuroplasticity through Neurofeedback and the Hemi-Sync Technology": 1 + "Philosophy: The Power of Sound in Cognitive Processes - Neurofeedback and the Influence of the Berard AIT on Neuroplasticity.": 1 + "Culinary Geography: Tracing Global Cuisine with Python-based Machine Learning Algorithms": 1 + "Culinary Cartography: Unfolding Global Cuisine through R Programming and Machine Learning ": 1 + "Gastronomic Geography: Exploring Global Cuisine with TensorFlow Machine Learning Algorithms": 1 + "Culinary Geography: Global Cuisine Analysis with Support Vector Machine Learning Algorithms": 1 + "Gastronomic Map: Decoding Global Cuisine with Neural Networks and Machine Learning": 1 + "Food Geography: Unraveling Global Cuisine with Deep Learning Algorithms": 1 + "Culinary Topography: Understanding Global Cuisine Through LSTM Machine Learning Models": 1 + "Gastronomic Exploration: Tracing Global Cuisine with Keras and Machine Learning": 1 + "Culinary Geography: A Computational Approach to Global Cuisine with Gradient Boosting Algorithms": 1 + "Food Mapping: Analyzing Global Cuisine with Decision Tree Machine Learning Algorithms.": 1 + "Physics 101: Principles of Classical Mechanics and the Use of Free Body Diagrams": 1 + "Physics 101: Exploring Classical Mechanics Through Newton's Laws": 1 + "Physics 101: Principles of Classical Mechanics: An Introduction to Kinematics": 1 + "Physics 101: Understanding Classical Mechanics Through Force Analysis": 1 + "Physics 101: Classical Mechanics and the Role of Friction Forces": 1 + "Physics 101: Principles of Classical Mechanics: A Dive into Work and Energy": 1 + "Physics 101: Classical Mechanics and the Concept of Momentum": 1 + "Physics 101: Principles of Classical Mechanics: The Study of Rotational Motion": 1 + "Physics 101: Exploring the Principles of Classical Mechanics Through Projectile Motion": 1 + "Physics 101: Classical Mechanics: An Overview of Simple Harmonic Motion": 1 + "Physics 101: Principles of Classical Mechanics and the Utility of Vectors": 1 + "Logical Minds: Enhancing Children's Logical Thinking with Swift Playgrounds and Python Coding": 1 + "Logical Minds: Advancing Children's Logical Reasoning using Swift Playgrounds and JavaScript ": 1 + "Logical Minds: Refining Children's Problem-Solving Skills with Swift Playgrounds and Scratch": 1 + "Logical Minds: Boosting Children's Logical Prowess with Swift Playgrounds and Robotics": 1 + "Logical Minds: Strengthening Children's Logical Acumen with Swift Playgrounds and Binary Systems": 1 + "Logical Minds: Augmenting Children's Logical Reasoning using Swift Playgrounds and Artificial Intelligence Concepts": 1 + "Logical Minds: Fostering Children's Logical Intelligence with Swift Playgrounds and Game Design": 1 + "Logical Minds: Amplifying Children's Logical Thought Process with Swift Playgrounds and Raspberry Pi": 1 + "Logical Minds: Cultivating Children's Logical Aptitude with Swift Playgrounds and 3D Printing Technology": 1 + "Logical Minds: Building Children's Logical Strategy with Swift Playgrounds and Lego Mindstorms.": 1 + "Physical Education: Strength Training Basics with Kettlebells": 1 + "Physical Education: An Introduction to Strength Training using Resistance Bands": 1 + "Physical Education: Strength Training Basics with Weight Machines": 1 + "Physical Education: Strength Training Basics - Focus on Free Weights": 1 + "Physical Education: Exploring Strength Training Basics with TRX Suspension": 1 + "Physical Education: Strength Training Basics - Using Medicine Balls": 1 + "Physical Education: Strength Training Basics and the Science of Plyometrics": 1 + "Physical Education: Strength Training Basics - An Introduction to Bodyweight Exercises": 1 + "Physical Education: Strength Training Basics with Dumbbells": 1 + "Physical Education: Strength Training Basics - Incorporating Yoga for Flexibility": 1 + "Social Studies: Exploring World Cultures with ArcGIS Mapping Technology": 1 + "Social Studies: Understanding Global Cultures through Google Earth Pro": 1 + "Social Studies: Deciphering World Cultures with QGIS Software": 1 + "Social Studies: Unraveling Global Societies with the Power of Digital Globe": 1 + "Social Studies: Analyzing World Cultures with Geospatial Analysis": 1 + "Social Studies: Comprehending Global Cultures with Cartographic Visualization Tools": 1 + "Social Studies: Studying Global Societies with the Use of Satellite Imagery": 1 + "Social Studies: Interpreting World Cultures using Geo-Referencing Techniques": 1 + "Social Studies: Understanding Global Cultures through the Lens of Remote Sensing Technology": 1 + "Social Studies: Investigating World Cultures with Spatial Data Analysis Tools": 1 + "Physical Education: Exploring Cricket in International Sports and Cultural Exchange": 1 + "Physical Education: The Role of Biomechanics in International Sports and Cultural Exchange": 1 + "Physical Education: GPS Technology in International Sports and Cultural Exchange": 1 + "Physical Education: International Sports and Cultural Exchange through Dance": 1 + "Physical Education: The Influence of Virtual Reality in International Sports and Cultural Exchange": 1 + "Physical Education: International Sports and Cultural Exchange: A Focus on Olympic Games": 1 + "Physical Education: The Impact of Sports Psychology in International Sports and Cultural Exchange": 1 + "Physical Education: The Use of Video Analysis in International Sports and Cultural Exchange": 1 + "Physical Education: International Sports and Cultural Exchange: Exploring the World through Soccer": 1 + "Physical Education: Nutrition and Diet in International Sports and Cultural Exchange": 1 + "Physical Education: Wearable Tech in International Sports and Cultural Exchange.": 1 + "Advanced Study of Biochemistry: Analyzing pH Scale through Potentiometric Titrations using Glass Electrodes": 1 + "In-depth Chemistry: Detailed Examination of Biochemistry with pH Scale Analysis employing Potentiometric Titrations and Digital pH Meters": 1 + "Comprehensive Biochemistry: Analyzing pH Scale through Potentiometric Titrations using Universal Indicator Solution": 1 + "Specialized Study in Chemistry: Biochemistry with pH Scale Analysis through Potentiometric Titrations and Ion-Selective Electrodes": 1 + "Practical Biochemistry: Analyzing pH Scale with Potentiometric Titrations utilizing Automatic Titrators": 1 + "Chemistry Mastery: Biochemistry and pH Scale Analysis via Potentiometric Titrations and Conductometric Techniques": 1 + "Advanced Biochemistry: pH Scale Analysis with Potentiometric Titrations using Redox Indicators": 1 + "In-depth Study of Chemistry: Biochemistry with pH Scale Analysis through Potentiometric Titrations and Burette Usage": 1 + "Comprehensive Chemistry: Biochemistry and pH Scale Analysis through Potentiometric Titrations using Spectrophotometric Techniques": 1 + "Detailed Chemistry: Biochemistry with pH Scale Analysis via Potentiometric Titrations and the Henderson-Hasselbalch Equation.": 1 + "Physical Education: Exploring Movement and Coordination through Sports Science - An Advanced Study on Kinesiology Taping using 3D Motion Analysis": 1 + "Kinesiology Taping in Physical Education: A Detailed Examination of Biomechanical Analysis Tools in Sports Science": 1 + "Understanding Movement through Sports Science: Using Electromyography in Kinesiology Taping for Physical Education": 1 + "Kinesiology Taping in Physical Education: Incorporating Infrared Thermography in Sports Science to Analyze Movement and Coordination": 1 + "Physical Education: Advanced Sports Science Exploration of Kinesiology Taping using Force Plates": 1 + "Kinesiology Taping in Sports Science: An In-depth Study of Movement and Coordination using Pressure Mapping Technology in Physical Education": 1 + "Physical Education: A Comprehensive Study on Kinesiology Taping using Video Motion Capture in Sports Science": 1 + "Sports Science in Physical Education: Examining Kinesiology Taping through the Lens of Gait Analysis Technology": 1 + "Kinesiology Taping in Physical Education: A Deep Dive into the Concept of Biomechanics using Isokinetic Dynamometers in Sports Science": 1 + "Physical Education: Using Wearable Sensors to Explore Movement and Coordination in Kinesiology Taping.": 1 + "Elementary Science: Utilizing Infrared Doppler Radar Technology for Precipitation Analysis": 1 + "Exploring Climate Patterns: A Look into Atmospheric Pressure with Infrared Doppler Radar Technology ": 1 + "Elementary Science: Studying Weather Shifts Using Infrared Doppler Radar and Balloon Observations": 1 + "Advanced Weather Forecasting: An Examination of Wind Speeds Using Infrared Doppler Radar Technology ": 1 + "Elementary Science: Understanding Cloud Formation through Infrared Doppler Radar Technology ": 1 + "Elementary Science: Insights into Temperature Variations Using Infrared Doppler Radar Technology and Thermal Cameras": 1 + "Studying the Impact of Humidity on Weather Shifts with Infrared Doppler Radar Technology": 1 + "Elementary Science: Investigating Storm Patterns Using Infrared Doppler Radar and Satellite Imagery ": 1 + "Elementary Science: Analysis of Seasonal Weather Shifts Using Infrared Doppler Radar Technology ": 1 + "Elementary Science: Tracking Hurricane Development with Infrared Doppler Radar Technology and Cyclone Tracking Systems": 1 + "Introduction to Economics: Understanding Supply and Demand Concepts": 1 + "Introduction to Economics: A Deep Dive into Monetary Policy": 1 + "Introduction to Economics: Grasping the Basics of Fiscal Policy": 1 + "Introduction to Economics: Comprehending Economic Indicators": 1 + "Introduction to Economics: Exploring Game Theory Basics": 1 + "Introduction to Economics: Analyzing GDP and its Implications": 1 + "Introduction to Economics: The Fundamentals of Elasticity": 1 + "Introduction to Economics: A Closer Look at Inflation and Deflation": 1 + "Introduction to Economics: Unpacking the Principles of Microeconomics": 1 + "Introduction to Economics: A Study on Macroeconomic Variables.": 1 + "Music Appreciation: Analyzing Beethoven's String Quartets with the Use of Ludwig Software": 1 + "Decoding Mozart's Symphonies: A Study in Classical Compositions Using Harmony Assistant": 1 + "Bach's Legacy: Understanding Classical Compositions through String Quartet and Sibelius Software": 1 + "The Power of Melody: Decoding Classical Compositions with the Use of String Quartet and Audacity": 1 + "Exploring Vivaldi's Masterpieces: A Study in Music Appreciation Using String Quartet and MuseScore": 1 + "Haydn's Harmonies: Breaking Down Classical Compositions with String Quartet and Finale Notepad": 1 + "Music Appreciation: Interpreting Chopin's Works with the Use of String Quartet and Transcribe! Software": 1 + "Classical Compositions Decoded: A Deep Dive into Schubert's Music using String Quartet and ScoreCloud": 1 + "Harmony in Handel's Compositions: An Analysis Using String Quartet and NoteFlight Software": 1 + "Tchaikovsky's Compositions: A Study in Music Appreciation Using the String Quartet and Soundtrap Technology": 1 + "Algorithmic Thinking in Action: Utilizing Java, JUnit, and Eclipse IDE for Mathematical Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Using Java, JUnit, and Data Structures for Math and Problem-Solving Applications": 1 + "Algorithmic Thinking Explored: Using Java, JUnit and Git Version Control for Math and Problem-Solving Applications": 1 + "Algorithmic Thinking in Action: Utilizing Java, JUnit and Big O Notation for Math and Problem-Solving Applications": 1 + "Practical Algorithmic Thinking: Incorporating Java, JUnit, and IntelliJ IDE for Math and Problem-Solving Applications": 1 + "Algorithmic Thinking and Problem Solving: Applying Java, JUnit, and Object-Oriented Programming Concepts": 1 + "Algorithmic Thinking in Depth: Employing Java, JUnit, and Recursion for Math and Problem-Solving Applications": 1 + "Advanced Algorithmic Practices: Using Java, JUnit, and Maven Build Automation for Mathematical Problem-Solving Applications": 1 + "Algorithmic Thinking in Action: Using Java, JUnit, and Apache Ant for Math and Problem-Solving Applications": 1 + "Algorithmic Thinking in Action: Applying Java, JUnit, and JDBC for Math and Problem-Solving Applications": 1 + "Exploring Melody Creation with Sibelius 8 and EastWest Quantum Leap Pianos: Utilizing Note Input Tool for Rhyming Children's Poetry ": 1 + "Mastering Sibelius 8 and EastWest Quantum Leap Pianos: Employing Magnetic Layout in Crafting Melodies for Children's Poetry ": 1 + "The Art of Melody Composition with Sibelius 8 and EastWest Quantum Leap Pianos: An Exploration of Flexi-time for Children's Poetry ": 1 + "Orchestrating Children’s Poetry with Sibelius 8 and EastWest Quantum Leap Pianos: Leveraging “Playback” Functionality ": 1 + "Harnessing Sibelius 8 and EastWest Quantum Leap Pianos: Expanding Children's Poetry with the Navigator Panel ": 1 + "Melody development with Sibelius 8 and EastWest Quantum Leap Pianos: The Power of Dynamic Parts in Children's Poetry ": 1 + "Unveiling the Magic of Sibelius 8 and EastWest Quantum Leap Pianos: Using Live Tempo in Children's Poetry Melodies ": 1 + "Crafting Rhymes in Children's Poetry with Sibelius 8 and EastWest Quantum Leap Pianos: A Deep Dive into Plug-ins ": 1 + "The Power of Sibelius 8 and EastWest Quantum Leap Pianos in Children's Poetry: Discovering the Transport Panel ": 1 + "Children's Poetry Melodies with Sibelius 8 and EastWest Quantum Leap Pianos: Exploiting the Inspector Tool ": 1 + "Utilizing MRI in Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Exploration": 1 + "The Use of PET Scans in Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Analysis": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics and Deep Brain Stimulation for Brain Exploration": 1 + "Functional MRI Examination in Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Exploration": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics and EEG for Comprehensive Brain Exploration": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics with a Focus on Diffusion Tensor Imaging": 1 + "Role of NIRS in Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Exploration": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics and Visual Evoked Potential Studies": 1 + "Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics and Transcranial Magnetic Stimulation for Brain Exploration": 1 + "Use of Spectroscopy in Neuroimaging Techniques in Neuroscience Foundations: Implementing Optogenetics for Brain Exploration": 1 + "English Essentials: Exploring Character Development Through the Lens of Shakespearean Literature": 1 + "English Essentials: Reading and Creative Writing with Focus on Character Development Using Mind Mapping Techniques": 1 + "English Essentials: Reading and Character Sketching in Creative Writing with Scrivener": 1 + "English Essentials: Character Arc Development in Reading and Creative Writing": 1 + "English Essentials: Using ProseMirror for Reading and Creative Writing with Character Development": 1 + "English Essentials: Reading and Creative Writing - Character Development Through Dialogues": 1 + "English Essentials: Reading and Creative Writing - Character Development Using the Snowflake Method": 1 + "English Essentials: Character Development in Creative Writing - A Study of JK Rowling's Techniques": 1 + "English Essentials: Reading and Creative Writing - Character Development Through Storyboarding": 1 + "English Essentials: Reading and Creative Writing - Character Development Using the Hero's Journey Concept.": 1 + "Physical Education Power: Utilizing Biomechanics in Global Sports": 1 + "Physical Education Power: The Role of Heart Rate Monitors in International Sports": 1 + "Physical Education Power: Nutrition and Hydration Strategies in Worldwide Sports": 1 + "Physical Education Power: Exploring Video Analysis in Sports from Around the Globe": 1 + "Physical Education Power: The Impact of GPS Tracking in Global Sports ": 1 + "Physical Education Power: Implementing Resistance Training in Worldwide Sports": 1 + "Physical Education Power: The Use of Wearable Technology in International Sports ": 1 + "Physical Education Power: Role of Plyometric Training in Global Sports ": 1 + "Physical Education Power: The Influence of Virtual Reality in Sports from Around the Globe": 1 + "Physical Education Power: Applying Sports Psychology Principles in International Sports": 1 + "Language of Science: Exploring Chemical Terminology through Molecular Modeling": 1 + "Language of Science: Introduction to Chemical Terminology via Spectroscopy Techniques": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis": 1 + "Language of Science: Unveiling Chemical Terms with Nuclear Magnetic Resonance ": 1 + "Language of Science: Introduction to Chemical Terminology with Chromatography Methods": 1 + "Language of Science: Chemical Terminology Explained through X-ray Crystallography": 1 + "Language of Science: Understanding Chemical Terminology via Computational Chemistry Tools ": 1 + "Language of Science: Introduction to Chemical Terminology using Electron Microscopy": 1 + "Language of Science: Diving into Chemical Terminology with Quantum Mechanical Models": 1 + "Language of Science: Grasping Chemical Terminology through Atomic Force Microscopy.": 1 + "Physics Fundamentals: Understanding Motion and Energy using Newton's Laws": 1 + "Physics Fundamentals: Analysis of Motion and Energy with Kinematic Equations": 1 + "Physics Fundamentals: Studying Energy and Motion using Conservation Laws": 1 + "Physics Fundamentals: Exploring Motion and Energy with Frictional Forces": 1 + "Physics Fundamentals: Motion and Energy: An In-depth look at Potential and Kinetic Energy": 1 + "Physics Fundamentals: Motion and Energy Explored through Momentum": 1 + "Physics Fundamentals: Motion and Energy: Unraveling the Mysteries of Work and Power": 1 + "Physics Fundamentals: Motion and Energy Interactions via Collision Experiments": 1 + "Physics Fundamentals: The Role of Gravity in Motion and Energy": 1 + "Physics Fundamentals: Motion and Energy: Understanding the Implications of Inertia.": 1 + "Biology Basics: Investigating Malarial Parasites with a Scanning Electron Microscope": 1 + "Biology Basics: Analyzing Protozoan Parasites using Cryo-Electron Microscopy": 1 + "Biology Basics: Identifying Parasitic Worms through Transmission Electron Microscopy": 1 + "Biology Basics: Exploring Parasitic Fungi with Confocal Electron Microscopy": 1 + "Biology Basics: Probing Parasitic Infections using Fluorescent Microscopy": 1 + "Biology Basics: Unveiling Parasite Structures with Atomic Force Microscopy": 1 + "Biology Basics: Dissecting Parasite Life Cycle using Differential Interference Contrast Microscopy": 1 + "Biology Basics: Decoding Parasite-host Interactions with Two-Photon Excitation Microscopy": 1 + "Biology Basics: Investigating Parasites DNA with Electron Microscopy and Polymerase Chain Reaction": 1 + "Biology Basics: Exploring Parasites' Biochemical Pathways using Electron Microscopy and Mass Spectrometry.": 1 + "Chemistry for Kids: Exploring Elements and Compounds with Lab Experiments": 1 + "Chemistry for Kids: Learning About Elements and Compounds Through Microscope": 1 + "Chemistry for Kids: The Role of Periodic Table in Understanding Elements and Compounds": 1 + "Chemistry for Kids: Elements and Compounds and the Magic of pH Scale": 1 + "Chemistry for Kids: Elements and Compounds in Everyday Life with Microscope Studies": 1 + "Chemistry for Kids: Understanding Elements and Compounds with Chemical Reactions": 1 + "Chemistry for Kids: Elements, Compounds, and Their Interaction with Heat": 1 + "Chemistry for Kids: A Deep Dive into Elements and Compounds Using Spectrophotometry": 1 + "Chemistry for Kids: The Evolution of Elements and Compounds Through Atomic Theory": 1 + "Chemistry for Kids: Elements and Compounds – The Science of Mixtures and Solutions.": 1 + "Music Theory: Exploring Rhythm with Ableton Live's Beat Tracking Software": 1 + "Music Theory: A Comprehensive Guide to Rhythm using Logic Pro's Beat Tracking Tools": 1 + "Music Theory: Harnessing Rhythm with Cubase's Beat Tracking Tools": 1 + "Music Theory: A Deep Dive into Rhythm using Pro Tools' Beat Tracking": 1 + "Music Theory: Mastering Rhythm with FL Studio's Beat Tracking Software": 1 + "Music Theory: Exploring Rhythm and Time Signatures with Serato's Beat Tracking Tools": 1 + "Music Theory: A Deep Dive into Rhythm using Reason's Beat Tracking Features": 1 + "Music Theory: Understanding Rhythm with GarageBand's Beat Tracking Tools": 1 + "Music Theory: Navigating Rhythm with Bitwig Studio's Beat Tracking Software": 1 + "Music Theory: Decoding Rhythm with Audacity's Beat Tracking Functionality": 1 + "The Influence of the Pipe Organ in Classical Symphonies: An Exploration": 1 + "The Role of the Organ in Baroque Era Classical Compositions": 1 + "Understanding the Organ's Contribution to Classical Music: An Examination of Pedal Techniques": 1 + "The Organ in Classical Music: A Study on Johann Sebastian Bach's Compositions": 1 + "The Impact of the Organ on Classical Compositions: A Focus on the Tracker Action System": 1 + "Music: How the Organ Shaped Classical Compositions Through the Use of Stops": 1 + "The Organ and its Technological Evolution in Classical Music Compositions": 1 + "The Role of the Organ in the Classical Period: An Exploration of the Swell Box Technique": 1 + "The Organ's Influence on Classical Compositions: A Study of the Registration Method": 1 + "Classical Compositions: The Role of the Organ and the Impact of the Coupler System.": 1 + "Philosophy 101: Understanding Life's Meaning through Socratic Dialogues and the Application of Aristotle's Logic": 1 + "Philosophy 101: Unraveling Existence using Socratic Dialogues, Critical Thinking, and Kant's Categorical Imperative": 1 + "Philosophy 101: Exploring Life's Meaning through Socratic Dialogues and the Utilization of Plato's Theory of Forms": 1 + "Philosophy 101: Navigating Life's Purpose with Socratic Dialogues and Descartes' Method of Doubt": 1 + "Philosophy 101: Discussing Life's Meaning through Socratic Dialogues and the Lens of Nietzsche's Perspectivism": 1 + "Philosophy 101: Interpreting Life's Meaning through Socratic Dialogues and the Framework of Spinoza's Pantheism": 1 + "Philosophy 101: Probing Life's Meaning through Socratic Dialogues, Critical Thinking, and the Insights of Kierkegaard's Existentialism": 1 + "Philosophy 101: Deciphering Life's Meaning through Socratic Dialogues and the Principles of Hegel's Dialectics": 1 + "Philosophy 101: Understanding Life's Meaning through Socratic Dialogues and the Application of Lockean Empiricism": 1 + "Philosophy 101: Grappling with Life's Meaning through Socratic Dialogues and the Perspective of Hume's Skepticism.": 1 + "Brain Wonders: Exploring Neuroscience for Young Minds Using MRI Technology": 1 + "Brain Wonders: Introduction to EEG and Neuroscience for Kids": 1 + "Brain Wonders: A Young Minds' Guide to Neurons and Neuroscience": 1 + "Brain Wonders: Neuroscience for Young Minds - Decoding the Brain with fMRI": 1 + "Brain Wonders: Understanding Synapses - Neuroscience for Young Minds": 1 + "Brain Wonders: Neuroscience for Youth Through the Lens of Neuroimaging": 1 + "Brain Wonders: Neuroplasticity Explored - Neuroscience for Young Minds": 1 + "Brain Wonders: Introduction to Neuropsychology for Young Minds": 1 + "Brain Wonders: Neuroscience for Kids - Exploring the Brain with PET Scans": 1 + "Brain Wonders: The Power of Neurotransmitters - Neuroscience for Young Minds": 1 + "Brain Wonders: Unveiling Brain Mapping - Neuroscience for Youth": 1 + "Money Matters: The Influence of Ethereum Blockchain on Global Economics": 1 + "Cryptocurrency and Economy: Exploring the Impact of Bitcoin Blockchain Technology": 1 + "The Ripple Effect: Assessing the Impact of Ripple's Blockchain Tech on Economic Structures": 1 + "The Economic Ripple: Unpacking the Impact of Lightning Network on Blockchain Economics": 1 + "Deconstructing Economics: A Deep Dive into the Role of Smart Contracts in Blockchain Tech": 1 + "Decoding Economics: The Impact of Cryptographic Hashing in Blockchain Technology": 1 + "Blockchain and Digital Economy: Exploring The Potential of Hyperledger Technology": 1 + "The Economic Paradigm: Evaluating the Impact of DeFi (Decentralized Finance) on Blockchain Economics": 1 + "Blockchain's Economic Footprint: The Influence of Distributed Ledger Technology": 1 + "Economic Shifts: Understanding the Impact of Proof-of-Stake Concept in Blockchain Technology.": 1 + "Social Studies: The Influence of Ableton Live on Music and Cultural Identity": 1 + "Social Studies: Music and Cultural Identity: A Study of Digital Audio Workstations and the Impact of Pro Tools": 1 + "Social Studies: Music and Cultural Identity Explored Through Logic Pro X": 1 + "Social Studies: The Role of GarageBand in Shaping Music and Cultural Identity": 1 + "Social Studies: Music and Cultural Identity: An Analysis of FL Studio's Impact on Digital Audio Workstations": 1 + "Social Studies: Understanding Cultural Identity through Music: A Study of Cubase in Digital Audio Workstations": 1 + "Social Studies: Music, Cultural Identity, and the Influence of Reason Software on Digital Audio Workstations": 1 + "Social Studies: The Impact of Audacity on Music and Cultural Identity: A Study of Digital Audio Workstations": 1 + "Social Studies: Music and Cultural Identity: A Deep Dive into the Role of Serato DJ in Digital Audio Workstations": 1 + "Social Studies: The Role of Reaper in Defining Music and Cultural Identity through Digital Audio Workstations.": 1 + "Mathematics: Utilizing AutoCAD in the Application of Pi in Global Architectural Design": 1 + "Mathematics: The Role of Pi in Global Architectural Design using 3D Printing Technology": 1 + "Mathematics: Applying Pi in Global Architectural Design with Parametric Design Tools": 1 + "Mathematics: The Integration of Pi and BIM Technology in Global Architectural Design": 1 + "Mathematics: The Use of Pi in Global Architectural Design through Virtual Reality Technology": 1 + "Mathematics: The Application of Pi in Global Architectural Design using Geodesic Structures": 1 + "Mathematics: Exploring Golden Ratio and Pi in Global Architectural Design using CAD Software": 1 + "Mathematics: The Application of Pi in Global Architectural Design through Computational Design": 1 + "Mathematics: The Influence of Pi in Global Architectural Design with the use of Rhino 3D": 1 + "Mathematics: The Practicality of Pi in Global Architectural Design using Advanced Modelling Techniques": 1 + "Economics for Beginners: Understanding Market Forces through the AD-AS Model and GDP": 1 + "A Comprehensive Guide to Market Forces: Using the AD-AS Model and Inflation Rate Analysis": 1 + "Economics for Beginners: Applying the AD-AS Model in Conjunction with the Demand Curve": 1 + "A Deep Dive into Market Forces: Exploring the AD-AS Model and the Concept of Unemployment Rate": 1 + "Introductory Economics: Understanding Market Forces Using the AD-AS Model and the Law of Demand": 1 + "Economics for Beginners: Exploring Market Forces with the AD-AS Model and the Phillips Curve ": 1 + "A Detailed Study of Market Forces: The AD-AS Model and the Role of Fiscal Policy": 1 + "Economics for Beginners: Navigating Market Forces Using the AD-AS Model and the Money Supply": 1 + "Advanced Market Forces: Interpreting the AD-AS Model with a Focus on Price Elasticity": 1 + "Economics for Beginners: A Deep Dive into Market Forces using the AD-AS Model and the Lorenz Curve.": 1 + "Biology: Investigating Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Calcium Imaging Techniques": 1 + "Advanced Biology: Unraveling Neurotransmission with Transmission Electron Microscopy, Two-Photon Microscopy, and Patch-Clamp Techniques": 1 + "Biological Research: Exploring Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Optogenetics": 1 + "Biology: A Detailed Study of Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Brainbow Staining": 1 + "Biology: An Exploration of Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and fMRI Scanning": 1 + "Advanced Biology: Dissecting Neurotransmission with Transmission Electron Microscopy, Two-Photon Microscopy, and PET Scanning": 1 + "Biological Studies: Investigating Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Diffusion Tensor Imaging": 1 + "Biology: Analysis of Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Neuropharmacological Techniques": 1 + "Biology: Unveiling Neurotransmission using Transmission Electron Microscopy, Two-Photon Microscopy, and Stereotactic Techniques": 1 + "Advanced Biology: A Deep Dive into Neurotransmission with Transmission Electron Microscopy, Two-Photon Microscopy, and Electrophysiological Recording Techniques.": 1 + "Computer Programming: Mastering Java with Eclipse IDE from Basics to Applications": 1 + "An Introduction to Java Programming: Utilizing JUnit for Effective Testing": 1 + "Computing Concepts: In-depth Study of Java with NetBeans IDE": 1 + "Java Programming: Learning Basics to Applications with JavaFX": 1 + "Computer Programming: Investigating Java Through the Lens of JDBC": 1 + "Java Programming 101: From Basics to Applications with Git Version Control": 1 + "Advanced Java: From Basics to Applications Using Apache Maven": 1 + "Programming Essentials: Learning Java with Spring Framework from Basics to Applications": 1 + "Java Development: Mastering Basics to Applications with the Help of Docker": 1 + "Computer Programming: Exploring Java from Basics to Applications Using the IntelliJ IDEA.": 1 + "Mathematics: Utilizing the Gauss-Jordan Method in Matrix Algebra for Business Applications": 1 + "Mathematics: Applying Cramer's Rule in Matrix Algebra for Business Problem Solving": 1 + "Mathematics: Understanding the Role of Eigenvalues in Matrix Algebra for Business Applications": 1 + "Mathematics: Exploring Business Applications of Matrix Algebra through LU Decomposition": 1 + "Mathematics: Solving Business Problems with Matrix Algebra using the Gauss-Seidel Method": 1 + "Mathematics: Enhancing Business Solutions with Matrix Algebra and the Jacobi Iteration Method": 1 + "Mathematics: Leveraging the Power of the Inverse Matrix in Business through Matrix Algebra": 1 + "Mathematics: Strategic Business Problem Solving with Matrix Transpose in Matrix Algebra": 1 + "Mathematics: Understanding the Practical Application of Determinants in Business through Matrix Algebra": 1 + "Mathematics: Unlocking Business Success with the Rank of Matrix Concept in Matrix Algebra.": 1 + "Music: Exploring Rhythm and Beats through a Metronome: A Comprehensive Guide to Tempo": 1 + "Music: Understanding Rhythm and Beats with Beat Detection Software: A Comprehensive Guide to Tempo": 1 + "Music: Rhythm and Beats Using Tempo Mapping Technology: A Comprehensive Guide": 1 + "Music: Rhythm, Beats, and Tempo: A Detailed Study Using Audio Sequencers": 1 + "Music: Mastering Rhythm and Beats with Tempo Automation: A Comprehensive Guide": 1 + "Music: Rhythm and Beats in Digital Audio Workstations: A Comprehensive Guide to Tempo": 1 + "Music: A Comprehensive Guide to Tempo - Understanding Rhythm and Beats with MIDI Controllers": 1 + "Music: Rhythm and Beats: A Comprehensive Guide to Tempo using Loop Stations": 1 + "Music: Rhythm and Beats through Beatmaking Software: A Comprehensive Guide to Tempo": 1 + "Music: Rhythm and Beats Performed with Drum Machines: A Comprehensive Guide to Tempo": 1 + "Python Machine Learning: An In-depth Study of Hierarchical Clustering Algorithms with SciPy using Dendrogram": 1 + "Python Machine Learning: A Closer Look at Hierarchical Clustering Algorithms in SciPy with Heatmaps": 1 + "Python Machine Learning: Exploring Hierarchical Clustering Algorithms with SciPy and NumPy": 1 + "Python Machine Learning: Understanding Hierarchical Clustering Algorithms in SciPy through Agglomerative Clustering": 1 + "Python Machine Learning: Leveraging Hierarchical Clustering Algorithms with SciPy and Pandas": 1 + "Python Machine Learning: Detailed Analysis of Hierarchical Clustering Algorithms in SciPy using Seaborn": 1 + "Python Machine Learning: Mastering Hierarchical Clustering Algorithms with SciPy and Matplotlib": 1 + "Python Machine Learning: Unveiling Hierarchical Clustering Algorithms in SciPy using Distance Metrics": 1 + "Python Machine Learning: Practical Approach to Hierarchical Clustering Algorithms with SciPy and Jupyter Notebooks": 1 + "Python Machine Learning: Applying Hierarchical Clustering Algorithms in SciPy using Linkage Methods": 1 + "Analyzing Economic Policies and Unemployment Rhetoric: A Deep Learning Approach using TensorFlow's Neural Networks": 1 + "The Rhetoric of Economic Policies and Unemployment: A Predictive Linguistic Study using Python's PyTorch for Neural Networks": 1 + "Application of Google's BERT in Linguistic Study of Economic Policies and Unemployment Rhetoric with Predictive Modeling": 1 + "Economic Policies and Unemployment Discourse Analysis: A Machine Learning Approach using Keras for Neural Networks": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study using Natural Language Processing (NLP) with Neural Networks": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using Linear Regression in Neural Networks": 1 + "Analyzing Economic Policies and Unemployment Rhetoric: A Predictive Modeling Study using Support Vector Machines (SVMs)": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using R's Neuralnet Package": 1 + "Application of Amazon's SageMaker in Linguistic Study of Economic Policies and Unemployment Rhetoric with Predictive Modeling": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study using Decision Tree Algorithms with Neural Networks": 1 + "History: Evolution of Composting Techniques in Recycling over the Centuries": 1 + "The Rise of Glass Recycling: A Detailed Study of its History and Evolution": 1 + "Paper Recycling through Ages: An In-depth Look at its Evolution": 1 + "History: Evolution of Metal Recycling and Smelting Techniques over the Centuries": 1 + "Evolution of Recycling: A Focus on the Development of Plastic Recycling Techniques": 1 + "The Influence of Industrial Revolution on the Evolution of Recycling Practices": 1 + "The Historical Evolution of Recycling: The Emergence of E-waste Management": 1 + "From Charcoal to Biofuel: The Evolution of Organic Waste Recycling over the Centuries": 1 + "The History of Recycling: Understanding the Impact of the Industrial Shredder": 1 + "History: Evolution of Recycling and the Introduction of Single-stream Recycling over the Centuries": 1 + "Basic Computer Skills: Introduction to Microsoft Word": 1 + "Elementary Subject: Mastering Email and Internet Basics": 1 + "Elementary Subject: Fundamentals of Excel for Beginners": 1 + "Basic Computer Skills: Learning PowerPoint Essentials": 1 + "Elementary Subject: Introduction to Adobe Photoshop": 1 + "Basic Computer Skills: Getting Started with Google Docs": 1 + "Elementary Subject: Understanding Computer Hardware and Software": 1 + "Basic Computer Skills: Exploring Windows Operating System": 1 + "Elementary Subject: Essentials of Computer Programming with Python": 1 + "Basic Computer Skills: Mastering File Management and Organization.": 1 + "Elementary Health: Exploring Brain Nutrition with Antioxidants Using Ketogenic Diet": 1 + "A Detailed Study of Brain Nutrition: Antioxidants and the Role of Omega-3 Supplements": 1 + "Elementary Health: Utilizing Biofeedback Technology in Brain Nutrition with Antioxidants": 1 + "A Comprehensive Guide to Brain Nutrition: Antioxidants and Brain-Boosting Nootropics": 1 + "Elementary Health: Enhancing Brain Nutrition with Antioxidants Through Mindfulness Meditation": 1 + "Brain Nutrition: The Impact of Antioxidants and Exercise on Cognitive Health": 1 + "Elementary Health: A Deep Dive into Brain Nutrition with Antioxidants Using Neurofeedback ": 1 + "Elementary Health: Brain Nutrition, Antioxidants, and the Effects of Intermittent Fasting": 1 + "A Detailed Investigation into Brain Nutrition: Antioxidants and the Role of Polyphenol-Rich Foods": 1 + "Elementary Health: Enhancing Brain Nutrition with Antioxidants Through the Application of Neuroplasticity Concepts": 1 + "Exploring Gouache Techniques with Palette Knives: Understanding Shapes, Lines, and Colors": 1 + "Mastering Gouache: The Role of Light Boxes and Digital Tools in Creating Art": 1 + "Unraveling the Wonders of Gouache: The Impact of Shapes, Lines, Colors, and Acrylic Mediums": 1 + "The Art of Gouache: Harnessing the Power of Light Boxes and Color Theory ": 1 + "Gouache Mastery: Incorporating the Use of Graphite in Exploring Shapes, Lines, and Colors": 1 + "Artistry in Gouache: A Deep Dive into Shapes, Lines, Colors, and the Use of Procreate ": 1 + "Gouache and Light: Exploring the Impact of Light Boxes and Photoshop Techniques": 1 + "Gouache Painting: Understanding Shapes, Lines, and Colors with the Aid of Vector Graphics": 1 + "The Wonders of Gouache: Exploring Shapes, Lines, Colors, and the Impact of Digital Brushes": 1 + "Unraveling Gouache: A Detailed Study of Shapes, Lines, Colors, and the Use of Layering Techniques.": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color with Oil Pastels": 1 + "Art: Maritime Seascape Paintings: Mastering Color using Digital Technology": 1 + "Art: The Use of Acrylics in Maritime Seascape Paintings: Mastering Color": 1 + "Art: Digital Art: Mastering the Use of Color in Maritime Seascape Paintings with Photoshop": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color and Texture with Palette Knives": 1 + "Art: Maritime Seascape Paintings: Exploring Color with Watercolors": 1 + "Art: The Art of Color Mixing in Maritime Seascape Paintings: Techniques with Oil Paints": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color through the Medium of Charcoal": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color with Gouache": 1 + "Art: Maritime Seascape Paintings: Mastering the Use of Color using Airbrush Techniques": 1 + "Social Studies: Assessing the Influence of Amazon on Global Economies and Cultures": 1 + "The Impact of Blockchain Technology on E-commerce and its Effects on Different Societies": 1 + "Big Data Analytics: An Exploration of its Role in E-commerce & Societal Impacts": 1 + "Exploring the Impact of Mobile Payment Systems in E-commerce on Various Cultures and Societies": 1 + "Social Studies: Impact of E-commerce Platforms on Local Economies - A Case Study on Shopify": 1 + "Cross-cultural Analysis of Social Media Marketing in E-commerce Platforms": 1 + "The Role of Artificial Intelligence in E-commerce and its Influence on Different Societies": 1 + "Social Studies: The Impact of E-commerce Platforms using SEO on Various Cultures and Economies": 1 + "Augmented Reality in E-commerce: Its Impact on Global Societies and Cultures": 1 + "Social Studies: Exploring the Impact of E-commerce Platforms Enabled with Cryptocurrency on Various Societies and Cultures.": 1 + "Neuroscience: Exploring Brain's Function with MPI, EEG, and Transcranial Magnetic Stimulation": 1 + "Neuroscience: Understanding Brain's Function through MPI and Transcranial Magnetic Stimulation with NIRS": 1 + "Neuroscience: A Detailed Study of Brain's Function using MPI, Transcranial Magnetic Stimulation, and Neurofeedback": 1 + "Neuroscience: Delving into Brain's Function with MPI, Transcranial Magnetic Stimulation, and Functional MRI": 1 + "Neuroscience: Exploring Brain's Function with MPI, Transcranial Magnetic Stimulation, and Advanced Brain Mapping Techniques": 1 + "Neuroscience: Unveiling Brain's Function using MPI, Transcranial Magnetic Stimulation, and PET Scans": 1 + "Neuroscience: A Comprehensive Study of Brain Function with MPI, Transcranial Magnetic Stimulation and Diffusion Tensor Imaging": 1 + "Neuroscience: Investigating Brain's Function with MPI, Transcranial Magnetic Stimulation, and Spectroscopy Techniques": 1 + "Neuroscience: Decoding Brain's Function with MPI, Optical Imaging, and Transcranial Magnetic Stimulation": 1 + "Neuroscience: An In-depth Analysis of Brain's Function using MPI, Transcranial Magnetic Stimulation, and Brain-Computer Interfaces.": 1 + "Language Arts: Exploring Courage in War Novels Using Freudian Psychoanalysis and Comparative Literature with the Aid of Digital Humanities Tools": 1 + "Language Arts: Unraveling Courage in War Novels Through Lacanian Psychoanalysis: A Comparative Literature Approach Using Text Mining Techniques": 1 + "Language Arts: A Comparative Literature Study of Courage in War Novels Through Jungian Psychoanalysis Using Discourse Analysis": 1 + "Language Arts: A Study of Courage in War Novels through Post-structuralist Psychoanalysis and Comparative Literature Using Corpus Linguistics": 1 + "Language Arts: Unveiling Courage in War Novels via Derridian Deconstruction and Comparative Literature Supported by Semantic Analysis Technology": 1 + "Language Arts: Analyzing Courage in War Novels Through Psychoanalytical Criticism and Comparative Literature: An Application of Machine Learning Algorithms": 1 + "Language Arts: Unraveling Courage in War Novels Through Psychoanalytical Criticism using Queer Theory and Comparative Literature Aided by Textual Analysis Software": 1 + "Language Arts: A Comparative Literature Study on Courage in War Novels Through a Feminist Psychoanalytical Lens Using Computational Linguistics": 1 + "Language Arts: Deciphering Courage in War Novels Through Postcolonial Psychoanalysis and Comparative Literature: An Integration of Big Data Analytics": 1 + "Language Arts: Unraveling Courage in War Novels Through Eco-Criticism and Comparative Literature Supported by Natural Language Processing Technology": 1 + "Physical Education: Utilizing TomTom Heart Rate Monitors and GPS Technology for Movement Analysis with Strava": 1 + "Physical Education: Exploring Movement Analysis through TomTom Heart Rate Monitors, GPS Technology, and Fitbit Trackers": 1 + "Physical Education: Enriching Movement Analysis with TomTom Heart Rate Monitors, GPS Technology, and Garmin Connect": 1 + "Physical Education: Enhancing Movement Analysis using TomTom Heart Rate Monitors, GPS Technology, and Apple Watch": 1 + "Physical Education: Deepening Understanding of Movement Analysis with TomTom Heart Rate Monitors, GPS Technology, and Polar Flow": 1 + "Physical Education: Advancing Movement Analysis using TomTom Heart Rate Monitors, GPS Technology, and Suunto App": 1 + "Physical Education: Applying TomTom Heart Rate Monitors and GPS Technology for Movement Analysis with MyFitnessPal": 1 + "Physical Education: Integrating TomTom Heart Rate Monitors, GPS Technology, and Google Fit for Comprehensive Movement Analysis": 1 + "Physical Education: Augmenting Movement Analysis through TomTom Heart Rate Monitors, GPS Technology, and Nike Run Club": 1 + "Physical Education: Navigating Movement Analysis with TomTom Heart Rate Monitors, GPS Technology, and Under Armour MapMyRun": 1 + "From Gramophone to Spotify: The Role of Technology in the Transformation of Music from Classical to Contemporary": 1 + "Musical Evolution: The Impact of Radio Broadcasting on the Journey from Classical to Contemporary": 1 + "The Sound Revolution: How LP Records and Digital Sampling Shaped Music from Classical to Contemporary": 1 + "The Influence of Magnetic Tape and Streaming on Musical Progression: From Classical to Contemporary": 1 + "From Phonograph to Pandora: Tracing the Technological Transition in Music from Classical to Contemporary": 1 + "Musical Evolution: The Contribution of Compact Discs and Streaming to the Classical to Contemporary Journey": 1 + "Melodic Metamorphosis: The Effect of Cassette Tapes and Streaming Services on the Evolution from Classical to Contemporary": 1 + "From Piano Rolls to MP3: The Technological Evolution of Music from Classical to Contemporary": 1 + "The Sonic Shift: How 8-Track Tapes and Online Platforms Influenced the Journey from Classical to Contemporary Music": 1 + "The Impact of MIDI Technology and Streaming in the Transition from Classical to Contemporary Music": 1 + "Mathematics: The Geometry of Architecture - Understanding Vector Graphics through AutoCAD": 1 + "Mathematics: Exploring Vector Graphics in Architecture through Blender": 1 + "Geometry in Architecture: A Deep Dive into Vector Graphics using Adobe Illustrator": 1 + "AutoCAD for Architecture: Applying Mathematics and Vector Graphics": 1 + "Mathematics: The Geometry of Architecture - Vector Graphics and 3D Modeling with SketchUp": 1 + "Mathematics: Understanding Vector Graphics for Architecture using Rhino 3D": 1 + "The Geometry of Architecture: Vector Graphics Mastery with CorelDRAW": 1 + "Mathematics: Vector Graphics in Architecture - A Practical Approach with FreeCAD": 1 + "The Role of Mathematics in Architecture: Mastering Vector Graphics with Fusion 360": 1 + "Geometry, Vector Graphics, and Architecture: A Comprehensive Guide using ArchiCAD.": 1 + "Advanced Networking: Analysis of Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute, OpenSSL, and Wireshark for Intrusion Detection": 1 + "Advanced Networking: Implementation of Firewall Rules in Packet Switching using Traceroute and OpenSSL": 1 + "Exploring TCP/IP in Advanced Networking: Analysis of Packet Switching and Network Protocol using Traceroute and OpenSSL": 1 + "Advanced Networking: A Comprehensive Study of VLANs with Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute and OpenSSL": 1 + "Advanced Networking: Analysis of Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute, OpenSSL, and Cisco Packet Tracer": 1 + "Advanced Networking: Analysis of IPv6 in Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute and OpenSSL": 1 + "QoS Strategies in Advanced Networking: Analysis of Packet Switching and Network Protocol using Traceroute and OpenSSL": 1 + "Advanced Networking: Load Balancing Analysis in Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute and OpenSSL": 1 + "Advanced Networking: Analysis of MPLS in Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute and OpenSSL": 1 + "Advanced Networking: Analysis of Packet Switching, Network Protocol, and Ethernet Concepts using Traceroute, OpenSSL, and NetFlow for Traffic Management.": 1 + "Elementary Mathematics: Utilizing Excel in Statistical Analysis of Numbers.": 1 + "Elementary Mathematics: The Role of SPSS in Numbers' Impact on Statistical Analysis.": 1 + "Elementary Mathematics: Application of Python in Numerical Statistical Analysis.": 1 + "Elementary Mathematics: The Influence of Numbers on Statistical Analysis Using R Programming.": 1 + "Elementary Mathematics: Understanding Numbers in Statistical Analysis with MATLAB.": 1 + "Elementary Mathematics: Exploring the Impact of Numbers on Statistics Using the Standard Deviation Concept.": 1 + "Elementary Mathematics: Using Graph Theory to Understand the Impact of Numbers on Statistical Analysis.": 1 + "Elementary Mathematics: The Impact of Numbers on Statistical Analysis with the Help of Probability Theory.": 1 + "Elementary Mathematics: The Significance of Numbers in Statistical Analysis through Regression Analysis.": 1 + "Elementary Mathematics: Leveraging SAS for Examining the Influence of Numbers on Statistical Analysis.": 1 + "Economics: Evaluating the Financial Impact of Sports Industry through Data Analytics using Python": 1 + "Economics: The Financial Impact of Sports Industry Using Tableau for Data Analytics": 1 + "Economics: Applying Linear Regression in Analyzing the Financial Impact of Sports Industry": 1 + "Economics: The Financial Impact of Sports Industry: A Deep Dive into Data Analytics using R": 1 + "Economics: The Financial Impact of Sports Industry through Predictive Analytics using SPSS": 1 + "Economics: The Financial Impact of Sports Industry through Data Analytics: An Exploration using Excel": 1 + "Economics: Understanding the Financial Impact of Sports Industry through Neural Networks and Data Analytics": 1 + "Economics: The Financial Impact of Sports Industry Through Big Data Analytics using Hadoop ": 1 + "Economics: The Financial Impact of Sports Industry Through Machine Learning and Data Analytics": 1 + "Economics: The Financial Impact of Sports Industry Through Business Intelligence Tools and Data Analytics.": 1 + "Fundamental Mathematics: Exploring Geometry through Pythagorean Theorem": 1 + "Geometry Essentials: Understanding Shapes with Compass and Straightedge ": 1 + "Fundamental Mathematics: Exploring Geometry using CAD Software ": 1 + "Geometry Basics: An Exploration of Euclidean Postulates ": 1 + "Intro to Geometry: Unraveling Angles with Protractors ": 1 + "Fundamental Mathematics: Exploring Geometry and Coordinate Systems ": 1 + "Discovering Geometry: An Insight into Congruence and Similarity ": 1 + "Geometry Fundamentals: Exploring Geometric Transformations ": 1 + "Mathematics in Action: Exploring Geometry with Geogebra ": 1 + "Fundamental Mathematics: Exploring Geometry through Trigonometric Ratios": 1 + "Logic and Reasoning: The Art of Problem Solving using Deductive Reasoning": 1 + "The Art of Problem Solving: Exploring Logic and Reasoning with Python": 1 + "Logic and Reasoning: Harnessing the Power of Algorithms in Problem Solving": 1 + "Utilizing Probability Theory in Logic and Reasoning: The Art of Problem Solving": 1 + "Logic and Reasoning: The Art of Problem Solving with Excel VBA": 1 + "Game Theory: A Novel Approach to Logic and Reasoning in Problem Solving": 1 + "Logic and Reasoning: The Art of Problem Solving through Decision Trees": 1 + "The Art of Problem Solving: A Deep Dive into Logic and Reasoning with MatLab": 1 + "Logic and Reasoning: Problem Solving using Statistical Analysis": 1 + "Quantum Logic and Reasoning: The Future of Problem Solving.": 1 + "Science: Exploring Emotions through Neurobiology using Computational Modelling and fMRI Technology": 1 + "Science: Unveiling Emotions through Neurobiology with Python-Based Computational Modelling": 1 + "Science: Deciphering Emotions through Neurobiology using Artificial Neural Network Computational Modelling": 1 + "Science: Analyzing Emotions through Neurobiology using Computational Modelling and MATLAB": 1 + "Science: Emotions Explored through Neurobiology using Computational Modelling and Machine Learning Concepts": 1 + "Science: Detailed Study of Emotions through Neurobiology using Computational Modelling and Neuroimaging Tools": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling": 1 + "Science: Understanding Emotions through Neurobiology with Computational Modelling and Deep Learning Algorithms": 1 + "Science: Insights into Emotions through Neurobiology using Computational Modelling and Statistical Analysis": 1 + "Science: Emotions Explored through Neurobiology using Quantum Computational Modelling.": 1 + "Social Studies: Discovering Our World through Maps": 1 + "Social Studies: Exploring Our World with Geographic Information System (GIS)": 1 + "Social Studies: Understanding Our World through Cultural Anthropology": 1 + "Social Studies: Discovering Our World using Satellite Imagery": 1 + "Social Studies: Navigating Our World with Global Positioning System (GPS)": 1 + "Social Studies: Deciphering Our World through Historical Artifacts": 1 + "Social Studies: Interpreting Our World with Archaeological Tools": 1 + "Social Studies: Discovering Our World: A Deep Dive into Political Science": 1 + "Social Studies: Investigating Our World with Behavioral Economics": 1 + "Social Studies: Unveiling Our World through Virtual Reality Technology": 1 + "Social Studies: Discovering Our World: Analyzing Societies with Statistical Data": 1 + "Neuroscience: Unraveling Neural Networks with Diffusion Tensor Imaging (DTI) Technique": 1 + "Synaptic Exploration in Neuroscience: Utilizing Electroencephalography (EEG) ": 1 + "Neuroimaging in Neuroscience: A Focus on Functional Magnetic Resonance Imaging (fMRI) and Positron Emission Tomography (PET)": 1 + "Neural Network Analysis Through Transcranial Magnetic Stimulation (TMS) in Neuroscience": 1 + "Neuroscience: Mapping Synapses and Neural Networks Using Cranial Ultrasound Technology": 1 + "Exploring Synaptic Plasticity in Neuroscience with Two-Photon Excitation Microscopy": 1 + "Neuroproteomics: A New Approach to Exploring Neural Networks and Synapses in Neuroscience": 1 + "The Role of Optogenetics in Mapping Neural Networks and Synapses in Neuroscience": 1 + "Functional Near-Infrared Spectroscopy (fNIRS) in Neuroscience: Exploring Neural Networks and Synapses": 1 + "Neuroscience: Understanding Neural Networks Through Multi-Electrode Arrays and Synaptic Analysis.": 1 + "Practical Mathematics: Utilizing Raman Spectrophotometry and Molecular Structures in Balancing Chemical Reactions with the Aid of Computational Chemistry Software": 1 + "Comprehensive Guide to Balancing Chemical Reactions: A Study Using Raman Spectrophotometry, Molecular Structures, and Quantum Mechanics": 1 + "Practical Mathematics: Balancing Chemical Reactions Using Raman Spectrophotometry, Molecular Structures, and Gaussian Software": 1 + "Exploring Chemical Reactions: An In-depth Study of Raman Spectrophotometry, Molecular Structures, and Fourier Transform Infrared Spectroscopy ": 1 + "Advanced Course on Balancing Chemical Reactions: A Dive into Raman Spectrophotometry, Molecular Structures, and ChemDraw Software": 1 + "Practical Mathematics & Chemistry: Balancing Reactions through Raman Spectrophotometry, Molecular Structures, and Quantum Chemical Calculations": 1 + "Balancing Chemical Reactions: A Practical Approach Using Raman Spectrophotometry, Molecular Structures, and Ab Initio Methods": 1 + "Practical Mathematics in Chemistry: Exploring Raman Spectrophotometry, Molecular Structures, and the Role of Molecular Orbital Theory": 1 + "Raman Spectrophotometry and Molecular Structures in the Real World: Balancing Chemical Reactions with the Help of Spartan Software": 1 + "Practical Mathematics: Leveraging Raman Spectrophotometry, Molecular Structures, and Density Functional Theory in Balancing Chemical Reactions.": 1 + "Economics of Music: Exploring SoundCloud's AI with Python and Machine Learning Techniques": 1 + "TensorFlow in Music Economics: A Deep Dive into SoundCloud's AI and Machine Learning Techniques": 1 + "Economics of Music: Understanding SoundCloud's AI and Machine Learning Techniques through Neural Networks": 1 + "Economics of Music: Unraveling SoundCloud's AI and Machine Learning Techniques with Data Mining": 1 + "Economics of Music: A Study on SoundCloud's AI and Machine Learning Techniques using PyTorch": 1 + "Decoding SoundCloud's AI: A Deep Dive into Music Economics and Machine Learning Techniques with Natural Language Processing": 1 + "Economics of Music: A Comprehensive Study on SoundCloud's AI and Machine Learning Techniques using Keras": 1 + "A Deep Dive into SoundCloud's AI: Economics of Music and Machine Learning Techniques with Scikit-Learn": 1 + "Economics of Music: Exploring SoundCloud's AI and Machine Learning Techniques using Convolutional Neural Networks": 1 + "Economics of Music: Understanding SoundCloud's AI and Apache Spark in Machine Learning Techniques.": 1 + "Language Arts: Exploring Grammar and Sentence Structure through Storytelling": 1 + "Language Arts: Enhancing Grammar and Sentence Structure with Digital Tools": 1 + "Language Arts: Understanding Grammar and Sentence Structure via Mind Mapping": 1 + "Language Arts: Utilizing Artificial Intelligence in Grammar and Sentence Structure": 1 + "Language Arts: Improving Grammar and Sentence Structure using Interactive Whiteboards": 1 + "Language Arts: Grammar and Sentence Structure Mastery through Gamification": 1 + "Language Arts: Learning Grammar and Sentence Structure with Virtual Reality": 1 + "Language Arts: Grammar and Sentence Structure Enhancement through Podcasts": 1 + "Language Arts: Grammar and Sentence Structure Development with Mobile Apps": 1 + "Language Arts: Incorporating Social Media in Grammar and Sentence Structure Learning": 1 + "Language Arts: Grammar and Sentence Structure Training with Multimedia Presentations.": 1 + "History: Ancient Civilizations and Their Cultures - The Rise of Pottery": 1 + "History: Agricultural Innovations in Ancient Civilizations and Their Cultures": 1 + "History: Ancient Civilizations and Their Cultures - A Study on Bronze Age Technology": 1 + "Ancient Civilizations and Their Cultures: The Role of the Wheel": 1 + "History: Ancient Civilizations and Their Cultures - The Invention of Writing Systems": 1 + "The Impact of Metallurgy in Ancient Civilizations and Their Cultures": 1 + "Ancient Civilizations and Their Cultures: The Development and Use of the Plow": 1 + "History: Ancient Civilizations and Their Cultures - An Insight into Aqueducts and Irrigation": 1 + "Ancient Civilizations and Their Cultures: The Evolution of Weaving Techniques": 1 + "History: Ancient Civilizations and Their Cultures - The Advancement of Shipbuilding Technology": 1 + "English Literature: Exploring Storytelling Through Blogging": 1 + "English Literature: Storytelling and Digital Narratives with Podcasts": 1 + "English Literature: Storytelling in the Digital Age using Virtual Reality": 1 + "English Literature: Storytelling and Digital Narratives - A Focus on Social Media Platforms": 1 + "English Literature: Storytelling with E-books and Digital Narratives": 1 + "English Literature: Storytelling and Digital Narratives - An Introduction to Interactive Fiction": 1 + "English Literature: The Role of YouTube in Storytelling and Digital Narratives": 1 + "English Literature: Storytelling and Digital Narratives through Webinars": 1 + "English Literature: Storytelling and Digital Narratives using Video Game Design": 1 + "English Literature: Storytelling and Digital Narratives - The Impact of Mobile Apps": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study Using Oscilloscopes and Fourier Transforms": 1 + "Analyzing Acoustic Resonance: An Extensive Study Using Oscilloscopes and Spectral Density Estimation": 1 + "Advanced Acoustic Resonance: A Comprehensive Examination Using Oscilloscopes and Time-Frequency Analysis": 1 + "Acoustic Resonance and Sound Waves: An In-depth Study with Oscilloscopes and Doppler Effect Analysis": 1 + "Oscilloscope-Based Study of Acoustic Resonance: Incorporating Interference of Sound Waves": 1 + "Acoustic Resonance and Sound Waves: A Detailed Study Using Oscilloscopes and Infrasound Technology": 1 + "Acoustic Resonance and Sound Waves: A Study Emphasizing on Oscilloscopes and Waveform Analysis": 1 + "Acoustic Resonance: An In-depth Investigation Using Oscilloscopes and Beat Frequency Oscillation": 1 + "Acoustic Resonance and Sound Waves: A Thorough Analysis Using Oscilloscopes and Harmonic Motion Principles": 1 + "Acoustic Resonance: An Expansive Study Using Oscilloscopes and Reflection, Refraction and Diffraction Concepts.": 1 + "Science: Utilizing Gas Chromatography-Mass Spectrometry in the Study of Nutrition: A Deep Dive into American Food Diversity": 1 + "Science: Implementation of Nuclear Magnetic Resonance in the Science of Nutrition: Examining American Food Diversity ": 1 + "Science: Leveraging Machine Learning in Nutritional Science: Uncovering American Food Diversity ": 1 + "Science: Application of Bioinformatics in Nutritional Science: Investigating American Food Diversity": 1 + "Science: Metabolomics and Spectroscopy: A Detailed Study of American Food Diversity in Nutritional Science": 1 + "Science: The Science of Nutrition: Analyzing American Food Diversity through Genomic Sequencing": 1 + "Science: The Science of Nutrition: Exploring American Food Diversity with Metabolomics and Chemometrics": 1 + "Science: Nutritional Genomics and the Exploration of American Food Diversity": 1 + "Science: The Role of High-Performance Liquid Chromatography in the Science of Nutrition: Unraveling American Food Diversity": 1 + "Science: Utilizing Proteomics in the Science of Nutrition: A Comprehensive Study of American Food Diversity": 1 + "Art: Fundamentals of Color Theory Using Watercolors": 1 + "Art: Exploring Color Theory with Acrylics": 1 + "Art: Fundamentals of Color Theory in Digital Painting": 1 + "Art: Understanding Color Theory through Oil Paints": 1 + "Art: The Role of Color Theory in Graphic Design": 1 + "Art: Advanced Color Theory with Photoshop": 1 + "Art: Color Theory for Sculpture - A Focus on Light and Shadow": 1 + "Art: Color Theory in Textile Design - An Emphasis on Dyeing Techniques": 1 + "Art: Fundamentals of Color Theory in Animation": 1 + "Art: Color Theory in Photography - Understanding Filters and White Balance": 1 + "Economics: Exploring Supply and Demand with The Lorenz Curve": 1 + "Economics: A Detailed Analysis of Supply, Demand, and Elasticity": 1 + "Economics: The Role of Pareto Efficiency in Supply and Demand": 1 + "Economics: Unpacking Supply and Demand through The Law of Diminishing Returns": 1 + "Economics: A Dive into Supply and Demand using The Nash Equilibrium": 1 + "Economics: Understanding Supply and Demand Dynamics with Econometric Software": 1 + "Economics: The Impact of Tariffs and Trade on Supply and Demand": 1 + "Economics: Supply and Demand in the Context of The Prisoner's Dilemma": 1 + "Economics: The Influence of Game Theory on Supply and Demand": 1 + "Economics: Break-Even Analysis as a Tool for Understanding Supply and Demand": 1 + "English Literature: Critical Analysis and Exploration through Machine Learning using Python": 1 + "Exploring English Literature: A Critical Analysis through TensorFlow in Machine Learning": 1 + "English Literature: Decoding Texts through Critical Analysis and Natural Language Processing": 1 + "Advanced English Literature: Critical Analysis and Exploration using Support Vector Machines": 1 + "English Literature & Machine Learning: An Insight into Critical Analysis using Deep Learning": 1 + "English Literature: A New Approach to Critical Analysis using Scikit-learn in Machine Learning": 1 + "Applying Keras in Machine Learning for English Literature: A Journey through Critical Analysis": 1 + "English Literature: A Critical Analysis and Exploration using PyTorch in Machine Learning": 1 + "Neural Networks and English Literature: Unraveling Critical Analysis through Machine Learning": 1 + "English Literature: A Critical Analysis and Exploration using Machine Learning and Sentiment Analysis.": 1 + "Biology: Understanding Plants in Ancient Art through Biochemical Analysis": 1 + "Biology: Carbon-dating and the Role of Plants in Ancient Art": 1 + "Biology: Understanding Plants in Ancient Art using DNA Barcoding": 1 + "Biology: Unraveling Plant Depiction in Ancient Art through Microscopic Analysis": 1 + "Biology: Study of Plants in Ancient Art using Pollen Analysis": 1 + "Biology: Understanding Plants in Ancient Art through X-ray Fluorescence": 1 + "Biology: Analyzing Plant Depiction in Ancient Art using Infrared Imaging": 1 + "Biology: Understanding Plants in Ancient Art through Gas Chromatography-Mass Spectrometry": 1 + "Biology: Deciphering Plants in Ancient Art through Spectroscopy": 1 + "Biology: Understanding Plants in Ancient Art using Dendrochronology.": 1 + "English Literature: Decoding Texts through Critical Analysis and Natural Language Processing using Python": 1 + "Textual Analysis in English Literature: Using IBM Watson for Natural Language Processing": 1 + "Decoding English Texts: Critical Analysis and Natural Language Processing with Google's BERT": 1 + "English Literature: Advanced Text Analysis using Critical Theory and TensorFlow for Natural Language Processing": 1 + "English Literature: Text Decoding through Critical Analysis and Sentiment Analysis using NLTK": 1 + "English Literature and Artificial Intelligence: Analyzing Texts with Critical Theory and Machine Learning using PyTorch": 1 + "English Literature: Decoding Texts using Critical Analysis and Stanford's CoreNLP": 1 + "Text Interpretation in English Literature: Critical Analysis and Natural Language Processing with Microsoft Azure": 1 + "English Literature: Text Decoding through Critical Analysis and Semantic Analysis using SpaCy": 1 + "Artificial Intelligence in English Literature: Text Decoding using Critical Theory and Gensim for Natural Language Processing.": 1 + "Brain Basics: An Introduction to Elementary Neuroscience using EEG Technology and Neurofeedback Training": 1 + "Unraveling the Mind: Exploring Elementary Neuroscience with EEG Technology and fMRI Imaging": 1 + "Brain Basics: A Comprehensive Study of Neurotransmitters using EEG Technology": 1 + "Insight into the Brain: A Detailed Study on Synaptic Plasticity using EEG Technology": 1 + "Brain Basics: A Dive into Elementary Neuroscience using EEG Technology and TMS Stimulation": 1 + "Investigating the Cortex: A Study on Neural Networks using EEG Technology": 1 + "Brain Basics: An Overview of Neuropharmacology using EEG Technology": 1 + "Brain Basics: A Journey through Neuroanatomy with EEG Technology and PET Scans": 1 + "Decoding the Mind: An Elementary Neuroscience Study using EEG Technology and Nootropics": 1 + "Brain Basics: Exploring Cognitive Neuroscience with EEG Technology and Deep Brain Stimulation.": 1 + "History: The Influence of Immigration on American Culture - An Analysis through the Lens of the Ellis Island Records": 1 + "History: The Influence of the Printing Press on the Dissemination of Immigrant Culture in America": 1 + "History: Understanding the Impact of Immigration on American Popular Music": 1 + "History: The Role of the Telegraph in the Spread of Immigrant Influences in American Culture": 1 + "Oral Histories: An In-Depth Study of Immigration's Impact on American Culture": 1 + "History: The Influence of Immigration on American Cuisine - A Culinary Journey through Time": 1 + "Film and Immigration: Shaping American Culture through Cinematography": 1 + "History: The Influence of Immigration on American Architecture - A Study from Adobe to Modernism": 1 + "History: The Influence of Immigration on American Fashion - A Perspective through the Sewing Machine": 1 + "History: Interpreting the Impact of Immigration on American Culture through Census Data Analysis.": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Gaussian Method": 1 + "Advanced Inorganic Chemistry: Chemical Bonding Assessment through ADF Software and Quantum Mechanics": 1 + "Introduction to Chemistry: Understanding Chemical Bonding using ADF Software and VSEPR Theory": 1 + "Chemistry: Molecular Structure Analysis and Chemical Bonding using ADF Software and Molecular Orbital Theory": 1 + "Computational Chemistry: ADF Software for Chemical Bonding Analysis and Lewis Structures": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis with ADF Software and Balmer Series": 1 + "Chemistry: Exploring Chemical Bonding using ADF Software and Pauling's Electronegativity Concept": 1 + "Quantum Chemistry: Chemical Bonding Analysis using ADF Software and Hartree-Fock Method": 1 + "Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Hybridization Theory": 1 + "Chemistry: In-depth Chemical Bonding Analysis using ADF Software and Periodic Trends.": 1 + "Mathematics: Exploring Patterns and Emotion in Fractal Geometry Using the Mandelbrot Set": 1 + "Fractal Geometry in Mathematics: Understanding Emotional Patterns Through Chaos Theory": 1 + "Mathematics and Emotion: A Deep Dive into Fractal Geometry Using Python": 1 + "The Art of Mathematics: Tracing Emotional Patterns in Fractal Geometry with MATLAB": 1 + "Mathematics: Harnessing Emotion and Patterns in Fractal Geometry through the Julia Set": 1 + "Patterns and Emotion in Fractal Geometry: An Insightful Journey with Mathematica": 1 + "Emotional Patterns in Mathematics: A Study of Fractal Geometry Using Fractal Dimension": 1 + "Mathematics: The Intersection of Emotion and Patterns in Fractal Geometry via the Koch Curve": 1 + "Fractal Geometry and Mathematics: Decoding Emotional Patterns through Iterated Function Systems": 1 + "Mathematics: An Emotional Insight into Fractal Geometry Patterns with the Use of the Sierpinski Triangle": 1 + "Spelling Mastery: Utilizing the Spelling City App and Flashcard Technology for Common English Words": 1 + "Enhancing Spelling Skills: Incorporating the Spelling City App and Phonics Concepts for English Words": 1 + "Effective Spelling: Fusing Spelling City App with Dictation Techniques to Master Common English Words": 1 + "Spelling Precision: Pairing Spelling City App with Interactive Whiteboard Technology for English Words": 1 + "Spelling Excellence: Leveraging the Spelling City App and Memory Palace Technique for English Words": 1 + "Mastering Spelling: Integrating the Spelling City App with Text-to-Speech Tools for Common English Words": 1 + "Spelling Proficiency: Combining the Spelling City App with Visual Imagery Concepts for English Words": 1 + "Superior Spelling: Merging Spelling City App with Mnemonic Devices to Master Common English Words": 1 + "Spelling Perfection: Utilizing Spelling City App with Repetition Technique for English Words": 1 + "Advanced Spelling: Incorporating Spelling City App and Mind Mapping for Mastery of English Words": 1 + "Language Arts: Interpreting Financial News with GDP Indicators using R Programming": 1 + "Language Arts: Understanding Financial News through Unemployment Rate Analysis with Python": 1 + "Language Arts: Decoding Financial News with Inflation Rate Indicators using Tableau": 1 + "Language Arts: Analyzing Financial News with Stock Market Indicators using Excel": 1 + "Language Arts: Dissecting Financial News with Interest Rate Indicators through SQL": 1 + "Language Arts: Comprehending Financial News with Exchange Rate Indicators using Power BI": 1 + "Language Arts: Deciphering Financial News with Consumer Price Index using Google Data Studio": 1 + "Language Arts: Evaluating Financial News with Producer Price Index using MATLAB": 1 + "Language Arts: Reading Financial News with Fiscal Policy Indicators using SAS Programming": 1 + "Language Arts: Interpreting Financial News with Housing Market Indicators using Stata.": 1 + "Music Appreciation: Understanding Classical Compositions Through Mozart's Symphonies": 1 + "Exploring Classical Music: Understanding Compositions with Beethoven's Sonatas": 1 + "Music Appreciation: A Deep Dive into Bach's Fugues": 1 + "Understanding Classical Compositions: A Study of Chopin's Polonaises": 1 + "The Art of Classical Music: Dissecting Schubert's Lieder": 1 + "Music Appreciation: Exploring Tchaikovsky's Ballet Scores": 1 + "Understanding Classical Compositions: A Focus on Handel's Oratorios ": 1 + "Music Appreciation: Analysis of Wagner's Opera": 1 + "Exploring Classical Music: A Journey through Haydn's String Quartets": 1 + "Understanding Classical Compositions: A Study of Vivaldi's Concertos": 1 + "Mathematics 110: Analyzing Football Kick Trajectories with Calculus, Pythagorean Theorem, Video Analysis Software, and Newton's Laws of Motion": 1 + "Mathematics 110: Utilizing the Concept of Parabolas in Calculus to Understand Football Kick Trajectories": 1 + "Mathematics 110: Using MATLAB for Detailed Analysis of Football Kick Trajectories with Calculus and Pythagorean Theorem": 1 + "Mathematics 110: Incorporating the Principle of Projectile Motion in Football Kick Trajectories Analysis": 1 + "Mathematics 110: Using Vector Analysis in Understanding Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Application of Trigonometry in Football Kick Trajectories alongside Calculus and Video Analysis Software": 1 + "Mathematics 110: Understanding Football Kick Trajectories with Calculus, Pythagorean Theorem, Video Analysis Software, and Doppler Radar Technology": 1 + "Mathematics 110: Leveraging Quadratic Equations to Analyze Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Applying the Concept of Force and Gravity in Analyzing Football Kick Trajectories with Calculus": 1 + "Mathematics 110: Integrating the Bernoulli's Principle in Understanding Football Kick Trajectories with Video Analysis Software.": 1 + "Biology: Dissection of Cellular Structures using CRISPR-Cas9, Fluorescence Microscopy, and Electron Microscopy": 1 + "Advanced Biology: Utilizing CRISPR Technology and Fluorescence Microscopy for the Dissection of Mitochondrial Structures": 1 + "Biology: In-depth Study of Cellular Structures using CRISPR Technology, Fluorescence Microscopy, and Light Sheet Microscopy": 1 + "Advanced Cell Biology: Dissection and Analysis of Cellular Structures using CRISPR-Cas9 and Confocal Fluorescence Microscopy": 1 + "Biology: Investigating Cellular Structures using CRISPR Technology, Fluorescence Microscopy, and Spectrophotometry": 1 + "Advanced Biology: Dissection of Cellular Structures using CRISPR Technology, Fluorescence Microscopy, and DNA Sequencing": 1 + "Cellular Biology: Dissection using CRISPR Technology, Fluorescence Microscopy, and Atomic Force Microscopy": 1 + "In-depth Biology: Dissection of Cellular Structures using CRISPR Technology, Fluorescence Microscopy, and Flow Cytometry ": 1 + "Advanced Biology: Exploration of Cellular Structures using CRISPR Technology, Fluorescence Microscopy, and Prokaryotic Cell Analysis": 1 + "Cellular Biology: Detailed Dissection using CRISPR Technology, Fluorescence Microscopy, and Cellular Respiration Analysis.": 1 + "Twitter for Musicians: Mastering Hashtag Marketing 101 and Beyond": 1 + "Twitter for Musicians: Leveraging Tweet Analytics for Digital Marketing ": 1 + "Twitter for Musicians: Engaging Fans with Twitter Polls 101": 1 + "Twitter for Musicians: A Deep Dive into Twitter Ads and Digital Marketing": 1 + "Twitter Spaces for Musicians: Digital Marketing in Audio Platforms ": 1 + "Twitter for Musicians: Expanding Reach with Promoted Tweets 101": 1 + "Twitter for Musicians: Utilizing Twitter Moments in Digital Marketing ": 1 + "Twitter for Musicians: Advanced Scheduling with TweetDeck and Digital Marketing ": 1 + "Twitter for Musicians: Twitter Video Marketing 101 and Beyond ": 1 + "Twitter for Musicians: Building a Brand with Twitter Fleets and Digital Marketing.": 1 + "Topography and Music: Using GIS to Trace the Origins of Ten International Music Styles": 1 + "Topography and Music: Leveraging Satellite Imagery to Unravel the Birthplaces of Ten World Music Genres": 1 + "Topography and Music: Applying Geospatial Analysis to Identify Ten Global Music Origins": 1 + "Topography and Music: Utilizing Digital Mapping for Tracing Origins of Ten International Musical Traditions": 1 + "Topography and Music: Using Cartographic Techniques to Explore the Roots of Ten Unique Music Styles": 1 + "Topography and Music: Employing GPS Technology to Track the Birthplaces of Ten Music Genres Worldwide": 1 + "Topography and Music: Leveraging Geo-Tagging to Discover the Roots of Ten Different International Music Styles": 1 + "Topography and Music: Using Topographical Scanning to Trace the Origins of Ten Global Music Genres": 1 + "Topography and Music: Applying Geocoding in Unearthing the Roots of Ten International Music Traditions": 1 + "Topography and Music: Using Geospatial Data to Explore the Origins of Ten Different World Music Styles": 1 + "Cybersecurity: Understanding AES Algorithms through Cryptography": 1 + "Cybersecurity: Exploring RSA Cryptosystems through Cryptography": 1 + "Cybersecurity: A Deep Dive into Hash Functions through Cryptography": 1 + "Cybersecurity: Understanding Algorithms through Cryptography and Blockchain Technology": 1 + "Cybersecurity: Learning Cryptography through the Lens of Public Key Infrastructure": 1 + "Cybersecurity: Unveiling Algorithms through Quantum Cryptography ": 1 + "Cybersecurity: Decoding Algorithms with Symmetric Key Cryptography": 1 + "Cybersecurity: Penetrating into Algorithms through Steganography and Cryptography": 1 + "Cybersecurity: Dissecting SSL/TLS Protocols through Cryptographic Algorithms": 1 + "Cybersecurity: Exploring Algorithms through Cryptography using Python Cryptography Library": 1 + "Utilizing Satellite Imagery to Leverage Meteorological Data in Environmental Studies: The Impact of Climate on Football Performance.": 1 + "GIS Applications in Analyzing Meteorological Data: Examining the Role of Climate in Football.": 1 + "Leveraging Doppler Radar Data in Environmental Studies: The Influence of Weather Conditions on Football.": 1 + "Utilizing Thermodynamic Diagrams in Meteorological Data Analysis: The Role of Climate in Football Tactics.": 1 + "Climate Modeling and Meteorological Data: Influence on Football Strategy and Performance.": 1 + "Weather Balloons and Meteorological Data: Analyzing the Impact of Climate on Football Games.": 1 + "Application of Remote Sensing in Meteorological Studies: The Role of Climate in Football Injuries.": 1 + "Weather Stations and Their Role in Meteorological Data Collection: The Impact of Climate on Football Training.": 1 + "Using the SODAR System for Meteorological Data in Environmental Studies: Understanding the Climate's Effect on Football.": 1 + "The Role of Anemometers in Gathering Meteorological Data: The Impact of Wind Direction and Speed on Football Matches.": 1 + "Exploring Environmental Issues through Allegorical Storytelling in English: Utilizing Metaphors ": 1 + "The Art of Allegory in Creative Writing: Deconstructing Environmental Concerns through Simile Implementation ": 1 + "English Creative Writing: Expressing Environmental Concerns through Allegory using Imagery ": 1 + "Harnessing Foreshadowing: A Study of Environmental Allegory in English Creative Writing ": 1 + "Environmental Narratives: Utilizing Symbolism in Allegorical English Creative Writing": 1 + "Digital Storytelling: Expressing Environmental Concerns through Allegory in English Creative Writing ": 1 + "English Creative Writing: Exploring Environmental Issues through the Lens of Allegory and Irony ": 1 + "Dialect Usage in English Creative Writing: An Allegorical Approach to Environmental Concerns ": 1 + "Environmental Discourse: Using Satire and Allegory in English Creative Writing ": 1 + "Personification in English: Expressing Environmental Concerns through Allegory in Creative Writing.": 1 + "Lighting up Literature: The Role of Photovoltaic Solar Cells in Climate Change Narratives - A Study of 10 Sustainable Energy Solutions": 1 + "Illuminating Texts: The Impact of Silicon-based Solar Cells on Climate Discourses - An Analysis of 10 Alternative Energy Solutions": 1 + "Harnessing the Sun: Understanding Concentrated Solar Power's Influence on Climate Change Literature - A Review of 10 Renewable Energy Strategies": 1 + "Sunlit Stories: Examining Thin-film Solar Cells in Climate Change Narratives - A Comparison of 10 Green Energy Alternatives": 1 + "Luminous Letters: The Contribution of Solar Panels to Climate Change Dialogues - An Overview of 10 Eco-friendly Energy Solutions": 1 + "Radiant Reads: The Part of Thermal Solar Cells in Climate Change Conversations - A Perspective on 10 Clean Energy Options": 1 + "Solar Scribes: The Significance of Solar Inverters in Climate Change Storytelling - A Presentation of 10 Sustainable Energy Possibilities": 1 + "Glowing Narratives: The Function of Solar Batteries in Climate Change Tales - A Compilation of 10 Renewable Energy Proposals": 1 + "Bright Chronicles: The Relevance of Solar Trackers in Climate Change Accounts - A Synopsis of 10 Alternative Energy Innovations": 1 + "Shining Scripts: The Importance of Solar Charge Controllers in Climate Change Chronicles - An Examination of 10 Green Energy Solutions": 1 + "Exploring Neuroplasticity: The Effect of Visual Art on Brain Development using EEG and fMRI Technology": 1 + "The Art of Mind: A Detailed Study on Picasso's Influence on Cognitive Development using EEG Technology": 1 + "Deciphering the Mind: The Impact of Abstract Art on Neurological Growth using EEG and DTI Technology": 1 + "Bridging Art and Neuroscience: EEG Analysis of Brain Responses to Color Theory Concepts": 1 + "The Science of Creativity: Understanding Brain Development through Impressionist Art using EEG Technology": 1 + "NeuroArt: Examining the Effects of Sculpture on Brain Maturation using EEG and PET Scans": 1 + "Artistic Influence on the Brain: A Study on Brain Wave Changes using EEG and MEG Technology": 1 + "The Art-Cognition Connection: Observing Brain Development through the Lens of Surrealist Art using EEG Technology": 1 + "Unveiling the Brain's Artistic Side: An EEG Study on the Impact of Cubism on Neural Development": 1 + "The Artistic Brain: A Study of Brain Reactions to Renaissance Art using EEG and NIRS Technology": 1 + "Foundations of Neuroscience: Decoding the Human Brain with MRI Technology": 1 + "Foundations of Neuroscience: Exploring Brain Functions through EEG": 1 + "Foundations of Neuroscience: The Impact of Neuroplasticity on Brain Functioning": 1 + "Foundations of Neuroscience: Deep Dive into Brain Mapping Techniques": 1 + "Foundations of Neuroscience: The Role of fMRI in Understanding the Human Brain": 1 + "Foundations of Neuroscience: PET Scans and Their Interpretation in Brain Study": 1 + "Foundations of Neuroscience: The Influence of Neuromodulation in Brain Function": 1 + "Foundations of Neuroscience: Understanding Brain Chemistry through Spectroscopy": 1 + "Foundations of Neuroscience: The Application of Optogenetics in Brain Studies": 1 + "Foundations of Neuroscience: Deciphering Human Brain with Transcranial Magnetic Stimulation.": 1 + "Gastronomic Geolocation: A Detailed Study of International Cuisine through ArcGIS Technology": 1 + "Gastronomic Geolocation: Utilizing LiDAR Technology to Explore International Cuisine ": 1 + "Gastronomic Geolocation: Exploring International Cuisine with GIS and Remote Sensing Techniques": 1 + "Gastronomic Geolocation: An In-depth Analysis of Global Foods using GIS and Drone Technology": 1 + "Gastronomic Geolocation: Leveraging Quantum GIS for the Exploration of International Cuisine": 1 + "Gastronomic Geolocation: Studying International Cuisine through the Lens of GIS and Big Data Analytics": 1 + "Gastronomic Geolocation: Harnessing GPS Technology for the Study of Global Cuisine": 1 + "Gastronomic Geolocation: Using Machine Learning Algorithms to Explore International Cuisine with GIS Technology": 1 + "Gastronomic Geolocation: Employing Geocoding in the Study of International Cuisine with GIS": 1 + "Gastronomic Geolocation: Exploring International Cuisine through Geo-visualization and GIS Technology.": 1 + "The Impact of The Cotton Gin on English Trade Language in the Industrial Age: A Focus on Telegraph Communication": 1 + "The Influence of The Cotton Gin on English Trade Language During the Industrial Age: The Role of the Steam Engine": 1 + "Exploring How The Cotton Gin Affected English Trade Language: The Application of the Spinning Jenny": 1 + "The Cotton Gin and its Effect on English Trade Language: The Relevance of Railways in the Industrial Age": 1 + "Tracing the Effect of The Cotton Gin on English Trade Language: The Role of Factories in the Industrial Revolution": 1 + "The Cotton Gin's Role in Shaping English Trade Language: The Impact of Mass Production Techniques": 1 + "The Cotton Gin and English Trade Language: The Emergence of Capitalism in the Industrial Age": 1 + "Impact of The Cotton Gin on English Trade Language: The Introduction of Assembly Line Production": 1 + "The Cotton Gin's Influence on English Trade Language: The Effect of Power Loom during the Industrial Age": 1 + "The Cotton Gin and its Impact on English Trade Language: The Significance of Coal Mining Technologies in the Industrial Age.": 1 + "Advanced Analysis of Football Stats using Excel, SQL, and Power BI": 1 + "Football Statistic Analysis with Excel, SQL, and Tableau": 1 + "Comprehensive Study of Football Stats using Excel, SQL, and Python": 1 + "Excel, SQL, and R Programming: A Deep Dive into Football Stats": 1 + "Using Excel, SQL, and Google Analytics for Football Statistic Exploration": 1 + "Football Data Analysis with Excel, SQL, and SAS: A Detailed Study": 1 + "Excel, SQL, and MATLAB for Football Stats: A Comprehensive Course": 1 + "Exploring Football Stats with Excel, SQL, and Apache Hadoop": 1 + "Football Stats Deciphered: A Course on Excel, SQL, and Microsoft Power Query": 1 + "Football Data Science: A Comprehensive Study using Excel, SQL, and SPSS.": 1 + "Predicting Economic Trends in the Music Industry Using Regression Analysis, Big Data, R Programming, SPSS, and Python.": 1 + "Regression Analysis in Music: A Focus on Economic Predictions through Big Data and Machine Learning Tools.": 1 + "Regression Analysis and Economic Forecasting in the Music Industry using Big Data, R Programming, SPSS, and Tableau.": 1 + "Predictive Modeling using Regression Analysis, Big Data, R Programming, SPSS, and the Hadoop Ecosystem in the Music Industry.": 1 + "Economic Predictions in the Music Industry: A Deep Dive into Regression Analysis using Big Data, R Programming, SPSS, and SAS.": 1 + "Regression Analysis in Music: Big Data, R Programming, SPSS, and Artificial Intelligence for Economic Predictions.": 1 + "A Comprehensive Study of Regression Analysis in Music: Economic Predictions using Big Data, R Programming, SPSS, and SQL.": 1 + "Advanced Economic Predictions in the Music Industry: Regression Analysis, Big Data, R Programming, SPSS, and the Power of Data Mining.": 1 + "Regression Analysis in Music: Economic Predictions with Big Data, R Programming, SPSS, and the Application of Predictive Analytics.": 1 + "The Science of Economic Prediction in the Music Industry: A Study of Regression Analysis, Big Data, R Programming, SPSS, and Neural Networks.": 1 + "The Power Loom and the Textile Industry: The Impact of the Flying Shuttle on Industrial Age Innovations in English Trade Language": 1 + "The Power Loom and the Textile Industry: An Examination of the Spinning Jenny's Influence on Industrial Age Innovations in English Trade Language": 1 + "The Power Loom and the Textile Industry: Industrial Age Innovations Impacting English Trade Language and the Role of the Cotton Gin": 1 + "The Power Loom and the Textile Industry: The Steam Engine's Effect on Industrial Age Innovations in English Trade Language": 1 + "The Power Loom and the Textile Industry: Industrial Age Innovations and the Influence of the Water Frame on English Trade Language": 1 + "The Power Loom and the Textile Industry: The Transformation of English Trade Language through the Spinning Mule and Industrial Age Innovations": 1 + "The Power Loom and the Textile Industry: Assessing the Impact of the Jacquard Loom on Industrial Age Innovations in English Trade Language": 1 + "The Power Loom and the Textile Industry: Understanding the Role of the Carding Machine in Industrial Age Innovations Impacting English Trade Language": 1 + "The Power Loom and the Textile Industry: The Influence of the Throstle Spinning Machine on Industrial Age Innovations in English Trade Language": 1 + "The Power Loom and the Textile Industry: Industrial Age Innovations and the Impact of the Warp-Beam Loom on English Trade Language": 1 + "Mastering Football Photography: Time-Lapse Techniques using a Canon EOS 5D Mark IV DSLR": 1 + "The Art of Sports: Football Photography with Time-Lapse and Adobe Lightroom": 1 + "Unique Perspectives: Football Photography via Time-Lapse using GoPro Hero8": 1 + "The Beauty of Motion: Football Photography with Time-Lapse Techniques using Intervalometer": 1 + "Capture the Game: Football Photography with Time-Lapse using Sony A7R IV ": 1 + "Dynamic Sports Imagery: Football Photography using Time-Lapse and Neutral Density Filters": 1 + "Artistic Sports Photography: Time-Lapse Techniques in Football using Nikon D850": 1 + "Football Through the Lens: Time-Lapse Photography using DJI Osmo Action Camera": 1 + "Mastering the Field: Football Photography with Time-Lapse using Panasonic Lumix GH5": 1 + "The Game in Motion: Football Time-Lapse Photography using Olympus OM-D E-M1 Mark III.": 1 + "Physical Education: Soccer Strategy and Teamwork": 1 + "Physical Education: Volleyball Techniques and Tactics": 1 + "Physical Education: Basketball Gameplay and Strategy": 1 + "Physical Education: Cricket Strategy and Team Coordination": 1 + "Physical Education: Rugby Tactics and Team Building": 1 + "Physical Education: Baseball Strategy and Team Dynamics": 1 + "Physical Education: Football Gameplay and Teamwork": 1 + "Physical Education: Ice Hockey Strategies and Team Tactics": 1 + "Physical Education: Field Hockey Strategy and Teamwork": 1 + "Physical Education: Lacrosse Gameplay and Team Dynamics": 1 + "Physical Education: Team Sports Strategy with Video Analysis Technology": 1 + "Historical Developments in Chemistry: The Impact of Spectroscopy": 1 + "The Evolution of Electrochemistry in Historical Developments in Chemistry": 1 + "Historical Developments in Chemistry: An Exploration of The Periodic Table": 1 + "The Role of Distillation in Historical Developments in Chemistry": 1 + "Historical Developments in Chemistry: A Deep Dive into Chromatography": 1 + "Analytical Chemistry: Mass Spectrometry and its Historical Developments": 1 + "Historical Developments in Chemistry: Understandings from Nuclear Magnetic Resonance": 1 + "The Influence of Titration Techniques on Historical Developments in Chemistry": 1 + "Historical Developments in Chemistry: The Breakthroughs of Microscopy": 1 + "Historical Developments in Chemistry: The Importance of Gas Chromatography": 1 + "Physical Education: Rugby Tactics and Team Building using Video Analysis": 1 + "Physical Education: Exploring Rugby Tactics and Team Building with GPS Tracking": 1 + "Physical Education: Enhancing Rugby Tactics and Team Building through Virtual Reality": 1 + "Physical Education: Rugby Tactics and Team Building: A Focus on Biomechanics": 1 + "Physical Education: Rugby Tactics and Team Building with Heart Rate Monitors": 1 + "Physical Education: Rugby Tactics and Team Building: Understanding through Motion Capture Technology": 1 + "Physical Education: Rugby Tactics and Team Building - Applying Game Theory": 1 + "Physical Education: Implementing Nutrition Science in Rugby Tactics and Team Building": 1 + "Physical Education: Rugby Tactics and Team Building: Applying Drone Technology for Aerial Analysis": 1 + "Physical Education: Rugby Tactics and Team Building: Using Sports Psychology Concepts": 1 + "Mastering the Use of Magnetic Layout in Sibelius 8 for Melody Creation in Children's Poetry": 1 + "Harnessing the Power of Flexi-Time Input in Sibelius 8 for Rhyming Children's Poetry": 1 + "Exploring Advanced Note Spacing in Sibelius 8 for Crafting Melodies in Children's Poetry": 1 + "Utilizing the Note Input Tool and Playback Line in Sibelius 8 for Rhyming Children's Poetry": 1 + "Navigating the Inspector Tool in Sibelius 8 for Melody Creation in Rhyming Children's Poetry": 1 + "Incorporating EastWest Quantum Leap Pianos with Sibelius 8's Live Tempo Tool in Children's Poetry": 1 + "Exploring Melody Creation for Children's Poetry: A Deep Dive into Sibelius 8's Staff Text Tool": 1 + "Leveraging Sibelius 8's Ideas Hub for Melodic Innovation in Rhyming Children's Poetry": 1 + "Mastering the Use of Sibelius 8's Rewire Tool with EastWest Quantum Leap Pianos for Children's Poetry": 1 + "Utilizing Sibelius 8's Dynamic Parts Tool for Versatile Melody Creation in Children's Poetry.": 1 + "Social Studies: The Impact of Digital Media on Cultural Influence on Music": 1 + "Social Studies: The Role of the Internet in Shaping Cultural Influence on Music": 1 + "Social Studies: Cultural Influence on Music through Vinyl Record Technology": 1 + "Social Studies: The Use of Radio Broadcast in Cultural Influence on Music": 1 + "Social Studies: The Influence of Gramophone Technology on Cultural Music": 1 + "Social Studies: Cultural Influence on Music: An Examination of the MP3 Revolution": 1 + "Social Studies: The Role of Streaming Platforms in Cultural Influence on Music": 1 + "Social Studies: Cultural Influence on Music: A Study on Audio Sampling Technology": 1 + "Social Studies: Cultural Influence on Music in the Era of Social Media": 1 + "Social Studies: The Influence of Music Production Software on Cultural Music": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer Utilizing Neurofeedback Technology: A Ten-fold Health Education Strategy Analysis": 1 + "The Impact of Biofeedback in Jukin Media's Jukin Composer: A Comprehensive Ten-fold Health Education Strategy Analysis": 1 + "The Integration of Virtual Reality in Jukin Media's Jukin Composer: A Ten-fold Health Education Strategy Analysis": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer with Augmented Reality: A Ten-fold Health Education Strategy Analysis": 1 + "The Use of Artificial Intelligence in Jukin Media's Jukin Composer: A Ten-fold Health Education Strategy Analysis": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer Leveraging Machine Learning: A Ten-fold Health Education Strategy Analysis": 1 + "The Role of Blockchain Technology in Jukin Media's Jukin Composer: A Ten-fold Health Education Strategy Analysis": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer Employing Cloud Computing: A Ten-fold Health Education Strategy Analysis": 1 + "The Influence of Big Data in Jukin Media's Jukin Composer: A Ten-fold Health Education Strategy Analysis": 1 + "The Therapeutic Applications of Jukin Media's Jukin Composer Using Internet of Things (IoT): A Ten-fold Health Education Strategy Analysis": 1 + "History: The Role of Chloroform as an Antiseptic in World Wars: Emotional Narratives and Their Impact": 1 + "History: The Impact of Antiseptic Sutures in World Wars: Emotional Narratives and Their Consequences": 1 + "History: The Penicillin Revolution: Antiseptics in World Wars and Emotional Narratives": 1 + "History: The Role of Antiseptic Bandages in World Wars: Emotional Narratives and Their Influence": 1 + "History: Antiseptic Surgery in World Wars: Emotional Narratives and Their Effects": 1 + "History: The Role of Iodine in Antiseptic Treatment During World Wars: Emotional Narratives and Their Impact": 1 + "History: The Influence of Antiseptic Vaccines in World Wars: Emotional Narratives and Their Echoes": 1 + "History: Antiseptic Tools and Techniques in World Wars: Emotional Narratives and Their Impact": 1 + "History: The Role of Aseptic Techniques as Antiseptic Measures in World Wars: Emotional Narratives and Their Impact": 1 + "History: The Impact of Antiseptic Hand Wash in World Wars: Emotional Narratives and Their Lasting Effects": 1 + "Geography and Music: Using Oculus Rift for Immersive Exploration of Global Music Cultures": 1 + "Augmented Reality in Geography and Music: Exploration of Global Music Cultures Through HoloLens": 1 + "Geography and Music: Using VR and Google Earth to Explore Global Music Cultures": 1 + "360-Degree Video and Music: Immersive VR Experiences of Global Music Cultures": 1 + "Geography and Music: Utilizing VR and Spatial Audio for an Immersive Global Music Journey": 1 + "Immersive Music: Using VR and Blockchain Technology to Explore Global Music Cultures": 1 + "Geography and Music: Using VR and AI to Discover Intricacies of Global Music Cultures": 1 + "Virtual Reality and Music: A Deep Dive into Global Music Cultures with Unity 3D": 1 + "Geography and Music: Using VR and the Concept of Gamification to Explore Global Music Cultures": 1 + "Immersive Educational Experiences: Using VR and Sound Recognition Technology in Global Music and Geography.": 1 + "Art: Exploring Pottery and Ceramics Techniques using Coiling Method with a Potter's Wheel": 1 + "Art: Mastering Coiling Method in Pottery and Ceramics using Clay Extruders": 1 + "Art: Advanced Techniques in Coiling Method for Pottery and Ceramics with Slip Trailing Tools": 1 + "Art: Utilizing Kiln Technology in Coiling Method for Pottery and Ceramics": 1 + "Art: Applying Underglaze Decoration in Pottery and Ceramics using Coiling Method": 1 + "Art: Exploring Pottery and Ceramics Techniques using Coiling Method and 3D Printing Technology": 1 + "Art: Coiling Method in Pottery and Ceramics: A Deep Dive into Clay Wedging Techniques": 1 + "Art: Advanced Coiling Method for Pottery and Ceramics: Understanding Clay Composition": 1 + "Art: Techniques in Pottery and Ceramics: Coiling Method with Carving Tools": 1 + "Art: Pottery and Ceramics with the Coiling Method: A Focus on Glazing Techniques": 1 + "History: The Impact of the Scythe and the Plough in the Evolution of Plant Cultivation": 1 + "History: The Role of the Scythe and Crop Rotation in the Evolution of Plant Cultivation": 1 + "History: The Effect of the Scythe and Greenhouse Technology in the Evolution of Plant Cultivation ": 1 + "History: The Scythe's Contribution and the Introduction of Irrigation Systems in Plant Cultivation Evolution ": 1 + "History: Understanding the Scythe and Fertilization Techniques in the Evolution of Plant Cultivation ": 1 + "History: The Influence of the Scythe and the Concept of Terracing in the Evolution of Plant Cultivation ": 1 + "History: The Scythe and the Development of Selective Breeding in Plant Cultivation Evolution ": 1 + "History: The Effect of the Scythe and the Invention of the Seed Drill in the Evolution of Plant Cultivation ": 1 + "History: The Scythe in Context: The Impact of Organic Farming in the Evolution of Plant Cultivation ": 1 + "History: The Scythe's Role and the Emergence of Hydroponics in the Evolution of Plant Cultivation.": 1 + "Advanced English Literacy: Enhancing Reading and Writing Skills using Amazon Storywriter, Microsoft Word and Grammarly for Error Correction": 1 + "Advanced English Literacy: Streamlining Composition with Amazon Storywriter, Microsoft Word, and Google Docs Collaboration": 1 + "Advanced English Literacy: Utilizing Amazon Storywriter, Microsoft Word, and Turnitin for Plagiarism detection": 1 + "Advanced English Literacy: Enhancing Reading and Writing Skills Using Amazon Storywriter, Microsoft Word, and ProWritingAid for Stylistic Improvements": 1 + "Advanced English Literacy: Mastering Amazon Storywriter, Microsoft Word, and Dragon Naturally Speaking for Speech-to-Text Functionality": 1 + "Advanced English Literacy: Leveraging Amazon Storywriter, Microsoft Word, and Zotero for Citation Management": 1 + "Advanced English Literacy: Refining Skills with Amazon Storywriter, Microsoft Word, and Hemingway Editor for Readability Enhancement": 1 + "Advanced English Literacy: Boosting Proficiency with Amazon Storywriter, Microsoft Word, and Evernote for Organized Note-taking": 1 + "Advanced English Literacy: Innovating with Amazon Storywriter, Microsoft Word, and Scrivener for Comprehensive Writing Management": 1 + "Advanced English Literacy: Enhancing Reading and Writing Skills Using Amazon Storywriter, Microsoft Word, and Mindmapping with XMind.": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Utilizing Palette Knives.": 1 + "Art: Emphasizing Brushwork in Sports Portraiture through Acrylic Painting.": 1 + "The Use of Layering in Acrylic Sports Portraiture: An In-depth Exploration.": 1 + "Art: Sports Portraiture through Acrylic Painting - A Focus on Color Mixing Techniques.": 1 + "Art: The Art of Sports Portraiture - Acrylic Painting with Easel Techniques.": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Exploring the Use of Light and Shadow.": 1 + "Art: Sports Portraiture with Acrylics - The Role of Canvas Preparation.": 1 + "Art: Acrylic Sports Portraiture - Techniques for Capturing Motion.": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - The Power of Underpainting.": 1 + "Art: Sports Portraiture in Acrylic - Exploring the Use of Drying Retarders.": 1 + "Social Studies: The Application of LiDAR Technology in 3D GIS Mapping for Terrain-Based Community Games": 1 + "Social Studies: The Impact of Drone Imagery in 3D GIS Mapping for Community Games Across Varied Terrains": 1 + "Social Studies: Utilizing ArcGIS Pro for Enhanced 3D GIS Mapping in Community Games": 1 + "Social Studies: The Role of QGIS3 in 3D GIS Mapping for Community Games in Diverse Terrains": 1 + "Social Studies: The Integration of VR Technology in 3D GIS Mapping to Improve Community Games": 1 + "Social Studies: The Use of GeoJSON in 3D GIS Mapping for Community Games over Varied Terrains": 1 + "Social Studies: Leveraging CAD Data in 3D GIS Mapping for Community Game Development": 1 + "Social Studies: The Influence of Photogrammetry in 3D GIS Mapping for Terrain-Based Community Games": 1 + "Social Studies: The Integration of Python Programming in 3D GIS Mapping for Community Games": 1 + "Social Studies: The Role of AutoCAD in 3D GIS Mapping to Enhance Community Games in Varied Terrains": 1 + "Analyzing Logic: The Study of Propositional Logic and Logical Fallacies using Truth Tables and Venn Diagrams": 1 + "Analyzing Logic: An In-Depth Study of Logical Fallacies and Sudoku Puzzles using Truth Tables and Python": 1 + "Exploring Logic: Essential Concepts and Logical Fallacies using Truth Tables and Euler Diagrams": 1 + "Analyzing Logic: Understanding Sudoku Puzzles through Truth Tables and Bayesian Probability": 1 + "Analyzing Logic: Mastering Logical Fallacies and Sudoku Puzzles using Truth Tables and Fitch-style Proof Systems": 1 + "Analyzing Logic: Essential Concepts and Logical Fallacies mastered through Truth Tables and Karnaugh Maps": 1 + "Understanding Logic: Logical Fallacies and Sudoku Puzzles using Truth Tables and Formal Semantics": 1 + "Analyzing Logic: Essential Concepts, Logical Fallacies, and Sudoku Puzzles using Truth Tables and Modal Logic": 1 + "Dissecting Logic: Logical Fallacies and Sudoku Puzzles using Truth Tables and Semantic Tableaux": 1 + "Analyzing Logic: Advanced Concepts, Logical Fallacies, and Sudoku Puzzles using Truth Tables and Predicate Logic.": 1 + "Social Studies: Exploring Ancient Civilizations through Historical Text Analysis using the Rosetta Stone": 1 + "Unearthing World Cultures: A Deep Dive into Historical Text Analysis with Blockchain Technology": 1 + "Social Studies: Deciphering World Cultures through Historical Text Analysis with the Use of Machine Learning": 1 + "Unearthing World Cultures: Historical Text Analysis and Comparative Linguistics": 1 + "Social Studies: Utilizing Big Data in Unearthing World Cultures through Historical Text Analysis": 1 + "Advanced Social Studies: Decoding World Cultures Using AI and Historical Text Analysis": 1 + "Social Studies: A Study of World Cultures through the Lens of Paleography and Historical Text Analysis": 1 + "Unearthing World Cultures: Historical Text Analysis using Python Programming": 1 + "Social Studies: Unearthing World Cultures through Historical Text Analysis with the Aid of Optical Character Recognition": 1 + "Social Studies: A Deep Dive into World Cultures through Historical Text Analysis using Natural Language Processing.": 1 + "Organic Chemistry: Exploring Molecular Modeling using PyMOL and Gaussian 09": 1 + "Organic Chemistry: Advanced Molecular Modeling with PyMOL and QM/MM Methods": 1 + "Organic Chemistry: Exploring Molecular Modeling using PyMOL and Hückel Theory": 1 + "Organic Chemistry: PyMOL and Quantum Mechanics in Molecular Modeling": 1 + "Organic Chemistry: Understanding Molecular Modeling with PyMOL and Spartan": 1 + "Organic Chemistry: Molecular Modeling using PyMOL and Density Functional Theory": 1 + "Organic Chemistry: PyMOL and HyperChem for Advanced Molecular Modeling": 1 + "Organic Chemistry: Molecular Modeling using PyMOL and Semi-empirical Methods": 1 + "Organic Chemistry: Exploring Molecular Modeling with PyMOL and GAMESS": 1 + "Organic Chemistry: PyMOL and Ab Initio Methods in Molecular Modeling": 1 + "Logic 101: Understanding Quantifiers in Formal Logic using Truth Tables": 1 + "Logic 101: Applying Venn Diagrams to Understand Quantifiers in Formal Logic": 1 + "Logic 101: Exploring Formal Logic Quantifiers through Propositional Calculus": 1 + "Logic 101: Utilizing First-Order Logic to Understand Quantifiers ": 1 + "Logic 101: Understanding Quantifiers in Formal Logic via Set Theory": 1 + "Logic 101: Deciphering Quantifiers in Formal Logic through Predicate Logic": 1 + "Logic 101: Unpacking Quantifiers in Formal Logic with Natural Deduction": 1 + "Logic 101: Understanding Quantifiers in Formal Logic with the Help of Binary Trees": 1 + "Logic 101: Comprehending Formal Logic Quantifiers using Sequent Calculus": 1 + "Logic 101: Applying Lambda Calculus to Understand Quantifiers in Formal Logic": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and Python Programming": 1 + "Science: Deep Learning Applications in Emotional Neurobiology using GPU-based Computational Modelling": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and MATLAB": 1 + "Science: Exploring Emotions through Neurobiology using GPU-based Computational Modelling and Artificial Neural Networks": 1 + "Science: Neurobiology of Emotions: An exploration using GPU-based Computational Modelling and TensorFlow": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and CUDA Toolkit": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and PyTorch": 1 + "Science: Emotion Recognition in Neurobiology using GPU-based Computational Modelling and Machine Learning": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and Convolutional Neural Networks": 1 + "Science: Emotions Explored through Neurobiology using GPU-based Computational Modelling and R Programming.": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Water Purification Techniques using Portable Filters": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Distillation Water Purification Techniques": 1 + "Nature Valor: Mastering UV Light Water Purification in Outdoor Survival": 1 + "Physical Education: Outdoor Survival and Nature Appreciation using Solar Still Water Purification Techniques": 1 + "Wilderness Survival: Water Purification Techniques using Halogen Tablets": 1 + "Outdoor Survival: Mastering Nature Appreciation through Boiling Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills using Nature-Driven Water Filtration Techniques": 1 + "Nature Survival: Appreciation through Water Purification Techniques using Iodine Drops": 1 + "Outdoor Survival: Physical Education and Nature Appreciation through Chlorine Dioxide Water Purification Techniques": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation through Gravity Bag Water Purification Techniques.": 1 + "Music: Exploring the Use of Monophonic Texture in Renaissance Era Compositions and the Birth of the Madrigal": 1 + "Music: Understanding Polyphony in the Works of Renaissance Era Composers and the Emergence of the Madrigal": 1 + "Music: The Role of Counterpoint in the Renaissance Era and the Advent of the Madrigal": 1 + "Music: The Impact of the Harpsichord on Renaissance Era Compositions and the Rise of the Madrigal": 1 + "Music: The Utilization of Modal Scales in Renaissance Era Compositions and the Development of the Madrigal": 1 + "Music: The Influence of the Printing Press on Renaissance Era Music and the Birth of the Madrigal": 1 + "Music: Exploring the Role of the Lute in Renaissance Era Compositions and the Genesis of the Madrigal": 1 + "Music: The Use of Cantus Firmus in Renaissance Era Compositions and the Emergence of the Madrigal": 1 + "Music: The Impact of Sacred vs Secular Themes in Renaissance Era Music and the Birth of the Madrigal": 1 + "Music: The Influence of Humanism on Renaissance Era Composers and the Creation of the Madrigal": 1 + "Advanced Chemistry: Utilizing Mass Spectrometry, HPLC, and Gas Chromatography in the Production of Multi-Colored Fireworks": 1 + "Advanced Chemistry: The Role of Mass Spectrometry and HPLC in the Production of Pyrotechnic Effects for Outdoor Festivals": 1 + "The Impact of Mass Spectrometry and HPLC on the Production of Fireworks: A Focus on Chromatographic Techniques": 1 + "Advanced Chemistry: Using Mass Spectrometry, HPLC, and Infrared Spectroscopy in the Design of Festival Lights": 1 + "Advanced Chemistry: Exploring the Integration of Mass Spectrometry and HPLC with Pyrotechnic Compounds for Fireworks": 1 + "The Application of Mass Spectrometry and HPLC in Fireworks Creation: A Study on High Pressure Liquid Chromatography": 1 + "Advanced Chemistry: A Deep Dive into Mass Spectrometry, HPLC, and Spectrophotometry in Fireworks Production": 1 + "Advanced Chemistry: Utilizing Mass Spectrometry, HPLC, and NMR Spectroscopy in the Manufacturing of Festival Lights": 1 + "Advanced Chemistry: The Science of Fireworks - A Study on the Use of Mass Spectrometry and HPLC with Pyrotechnic Colorants": 1 + "Advanced Chemistry: Harnessing Mass Spectrometry, HPLC, and Atomic Absorption Spectroscopy in the Production of Fireworks and Festival Lights": 1 + "The Impact of Alembic Distillation on Historical Developments in Chemistry": 1 + "The Role of Fractional Distillation in the Evolution of Chemistry": 1 + "Chemistry and History: The Influence of Retort Distillation": 1 + "The Historical Impact of Steam Distillation in Chemistry": 1 + "Distillation Columns: A Turning Point in Chemical History": 1 + "Exploring the Role of Vacuum Distillation in Chemical Discoveries": 1 + "Reflux Distillation and Its Role in the Progression of Chemistry": 1 + "Simple Distillation: A Key Player in Early Chemical Developments": 1 + "Chemistry and History: The Influence of Rotary Evaporator in Distillation": 1 + "The Significance of Azeotropic Distillation in the Advancement of Chemistry": 1 + "History of Chemistry: An Insight into Freeze Distillation's Impact": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis using Fourier Transform Ion Cyclotron Resonance": 1 + "Advanced Study on Chromatography in Chemical Terminology and Mass Spectrometry Analysis": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis with Gas Chromatography": 1 + "Understanding Infrared Spectroscopy in Chemical Terminology and Mass Spectrometry Analysis": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis utilizing Pyrolysis": 1 + "Advanced Analytical Techniques: Chemical Terminology and Mass Spectrometry Analysis using Nuclear Magnetic Resonance": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis with a Focus on Electron Ionization": 1 + "Comprehensive Study of Chemical Terminology and Mass Spectrometry Analysis using Liquid Chromatography": 1 + "Language of Science: Exploring Chemical Terminology and Mass Spectrometry Analysis using High Performance Liquid Chromatography": 1 + "Language of Science: Chemical Terminology and Mass Spectrometry Analysis - A Deep Dive into Ion Mobility Spectrometry.": 1 + "Mathematics: Proving Geometric Theorems using Coordinate Geometry and Desmos": 1 + "Mathematics: Utilizing Desmos and Algebraic Calculations to Prove Geometric Theorems": 1 + "Mathematics: Proving Geometric Theorems using Desmos and Converse Theorem Concept": 1 + "Mathematics: Proving Geometric Theorems with Desmos and Pythagorean Theorem": 1 + "Mathematics: The Application of Desmos and Euclidean Geometry in Proving Theorems": 1 + "Mathematics: Proving Geometric Theorems using Desmos and Angle Bisector Theorem": 1 + "Mathematics: Proving Geometric Theorems using Desmos and the Principle of Transversal": 1 + "Mathematics: Proving Geometric Theorems with Desmos and Similarity Criteria": 1 + "Mathematics: The Use of Desmos and Quadrilateral Properties in Proving Geometric Theorems": 1 + "Mathematics: Proving Geometric Theorems with the Aid of Desmos and Circle Theorems.": 1 + "History: Evolution of Human Civilizations, Development of Paper and the Impact of the Printing Press": 1 + "History: Understanding the Evolution of Human Civilizations and the Development of Paper Through the Lens of Papyrus Making": 1 + "History: Evolution of Human Civilizations, Development of Paper and the Influence of Ink Technology": 1 + "History: The Role of Hieroglyphics in the Evolution of Human Civilizations and the Development of Paper": 1 + "Evolution of Human Civilizations: A Study of the Development of Paper and the Introduction of the Watermark Technique": 1 + "History: Evolution of Human Civilizations, Development of Paper and the Emergence of the Paper Mill": 1 + "History: Tracing the Evolution of Human Civilizations and the Development of Paper: A Study of the Quill Pen": 1 + "History: Evolution of Human Civilizations and the Development of Paper: The Revolutionary Role of Bamboo Scripts": 1 + "History: Evolution of Human Civilizations, Development of Paper and the Impact of the Gutenberg Press": 1 + "History: Evolution of Human Civilizations and the Development of Paper: A Focus on the Parchment Era.": 1 + "Computer Science: Using Oscilloscope in Principles of Amplifier Modulation Beats Design for Synthesizers using Cubase": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design with FFT Spectrum Analysis in Synthesizers using Cubase": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design in Synthesizers using Cubase and Midi Controllers": 1 + "Computer Science: Implementing ADSR Envelopes in Amplifier Modulation Beats Design for Synthesizers using Cubase": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design in Synthesizers using Cubase and VST Plugins": 1 + "Computer Science: Exploring LFOs in Amplifier Modulation Beats Design for Synthesizers using Cubase": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design in Synthesizers using Cubase and Sylenth1": 1 + "Computer Science: Filter Modulation Techniques in Amplifier Modulation Beats Design for Synthesizers using Cubase": 1 + "Computer Science: Principles of Amplifier Modulation Beats Design in Synthesizers using Cubase with Waveform Editors": 1 + "Computer Science: Utilizing Digital Signal Processing in Amplifier Modulation Beats Design for Synthesizers using Cubase.": 1 + "Spelling Savvy: Mastering English Words with Spelling Bees and Rosetta Stone Software": 1 + "Spelling Brilliance: Conquering English Vocabulary using Spelling Bees and Duolingo App": 1 + "Spelling Mastery: Harnessing English Words through Spelling Bees and Vocabulary.com": 1 + "Spelling Pro: Attaining English Proficiency using Spelling Bees and Memrise Software": 1 + "Linguistic Wizardry: Commanding English Words with Spelling Bees and Quizlet Tools": 1 + "Spelling Champion: Excelling in English Vocabulary using Spelling Bees and Anki App": 1 + "Lexicon Conqueror: Mastering English Words through Spelling Bees and Babbel Software": 1 + "Spelling Genius: Conquering English Words using Spelling Bees and FluentU App": 1 + "Spelling Ace: Dominating English Words through Spelling Bees and Mondly Software": 1 + "Spelling Maestro: Triumphing over English Vocabulary using Spelling Bees and Pimsleur App": 1 + "Logic: Essentials of Deductive Reasoning with Truth Tables": 1 + "Analyzing Arguments: Deductive Reasoning & Venn Diagrams": 1 + "Logic: Essentials of Deductive Reasoning using Propositional Calculus": 1 + "The Essentials of Deductive Reasoning: Employing Syllogisms": 1 + "Logic: Deductive Reasoning and the Use of Semantic Tableaux": 1 + "Applying Formal Logic: Essentials of Deductive Reasoning with Predicate Calculus": 1 + "Logic: Mastering Deductive Reasoning with Binary Decision Diagrams": 1 + "Harnessing Logic: Deductive Reasoning and the Boolean Algebra": 1 + "Logic: Essentials of Deductive Reasoning using Resolution Method": 1 + "The Art of Logic: Deductive Reasoning and Natural Deduction.": 1 + "Easy Logic with LEGO: Developing Structural Thinking in Children using Duplo Bricks": 1 + "Introducing Simple Mechanics: Building Structural Thinking with LEGO and Gears": 1 + "Fostering Young Minds: Easy Logic with LEGO and Robotics": 1 + "Easy Logic with LEGO: Enhancing Structural Thinking Through LEGO Digital Designer": 1 + "Building Structural Thinking: An Exploration of LEGO Technic Sets for Young Minds": 1 + "The Art of Problem Solving: Easy Logic with LEGO and Programming Concepts": 1 + "Easy Logic with LEGO: Incorporating Physics Principles in Building Projects": 1 + "Structured Play: Combining LEGO and Mathematics for Young Minds": 1 + "Easy Logic with LEGO: Incorporating Structural Engineering Principles for Young Minds": 1 + "LEGO and Coding: Building Structural Thinking in Children using Mindstorms": 1 + "Advanced Neural Networks and Deep Learning in TensorFlow Using Convolutional Networks: An Exploration of GANs": 1 + "Deep Learning in TensorFlow: A Detailed Look at Convolutional Networks and LSTM": 1 + "Advanced Neural Networks in TensorFlow: Understanding Convolutional Networks using Keras": 1 + "Deep Learning with Convolutional Networks in TensorFlow: A Practical Approach using Python": 1 + "Advanced Deep Learning Techniques: Implementing Convolutional Networks in TensorFlow with PyTorch": 1 + "Convolutional Networks in TensorFlow: Advanced Deep Learning with the Power of RNNs": 1 + "Advanced Neural Networks: Leveraging Deep Learning in TensorFlow using Convolutional Networks and Transfer Learning": 1 + "Deep Learning in TensorFlow: Mastering Convolutional Networks through Reinforcement Learning Techniques": 1 + "Advanced Neural Networks and Deep Learning: A Comprehensive Guide to Convolutional Networks using TensorFlow and Scikit-Learn": 1 + "Unmasking Deep Learning: Advanced Neural Networks in TensorFlow using Convolutional Networks and SVM.": 1 + "Mathematics of Linear Programming: Utilizing Excel Solver in Analyzing World Hunger and Food Production Statistics": 1 + "Linear Programming with MATLAB: A Detailed Analysis of World Hunger and Food Production Data": 1 + "Linear Programming in Python: A Computational Approach to World Hunger and Food Production Statistics": 1 + "Application of Java in Linear Programming: Studying World Hunger and Food Production Statistics": 1 + "Linear Programming using R Programming: Statistical Analysis of World Hunger and Food Production": 1 + "SPSS and Linear Programming: Comprehensive Research on World Hunger and Food Production Statistics": 1 + "Big Data Analysis: Linear Programming with Hadoop in Addressing World Hunger and Food Production Statistics": 1 + "Linear Programming with SAS: Quantitative Analysis of World Hunger and Food Production ": 1 + "Machine Learning and Linear Programming: A Data-Driven Approach to Analyzing World Hunger and Food Production": 1 + "Using the Simplex Method in Linear Programming: A Mathematical Analysis of World Hunger and Food Production Statistics.": 1 + "Physical Education: Mastering Outdoor Survival Skills with Navigation Techniques and Survival Straw Water Purification Methods": 1 + "Physical Education: Understanding Nature Appreciation and Survival Skills using Flint Striker Fire-Starting Tool": 1 + "Physical Education: Exploring Outdoor Survival Skills with Shelter Building Concepts and Survival Straw Water Purification Methods": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation: A Focus on Paracord Bracelet Usage and Survival Straw Water Purification Methods": 1 + "Physical Education: Developing Outdoor Survival Skills using Signal Mirror Techniques and Survival Straw Water Purification Methods": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation: Incorporating Multi-Tool Usage and Survival Straw Water Purification Methods": 1 + "Physical Education: Enhancing Outdoor Survival Skills with Fishing Gear Techniques and Survival Straw Water Purification Methods": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation: Learning to use Solar Chargers and Survival Straw Water Purification Methods": 1 + "Physical Education: Advanced Outdoor Survival Skills with Compass Navigation and Survival Straw Water Purification Methods": 1 + "Physical Education: Outdoor Survival Skills and Nature Appreciation: Utilizing First Aid Kit Essentials and Survival Straw Water Purification Methods.": 1 + "Exploring the Role of Minerals in Body Function Using Microscopy and X-ray Crystallography in Everyday Life ": 1 + "Analyzing the Role of Minerals in Body Function: A Focus on Atomic Force Microscopy in Everyday Chemistry": 1 + "Chemistry in Everyday Life: A Deep Dive into the Role of Minerals Using Electron Microscopy": 1 + "Spectroscopy and Microscopy: Unveiling the Role of Minerals in Body Function": 1 + "Everyday Chemistry: Exploring the Role of Minerals in Body Function Using Scanning Electron Microscopy": 1 + "Using Raman Spectroscopy and Microscopy to Analyze the Role of Minerals in Everyday Life": 1 + "Understanding the Role of Minerals in Body Function: A Microscopy and Mass Spectrometry Approach": 1 + "Everyday Chemistry: Utilizing Microscopy and Infrared Spectroscopy to Analyze the Role of Minerals": 1 + "The Role of Minerals in Body Function: A Detailed Analysis through Microscopy and X-ray Diffraction": 1 + "Minerals in Body Function: A Comprehensive Study Using Microscopy and Nuclear Magnetic Resonance.": 1 + "Language Arts: Enhancing Communication Skills with Google Docs Explore Feature and Grammarly Tool": 1 + "Language Arts: Improving Writing Skills using Google Docs Explore Feature and Hemingway Editor": 1 + "Language Arts: Promoting Collaborative Learning with Google Docs Explore Feature and Google Hangouts": 1 + "Language Arts: Digital Storytelling using Google Docs Explore Feature and Adobe Spark": 1 + "Language Arts: Developing Listening Skills using Google Docs Explore Feature and Audacity Software": 1 + "Language Arts: Fostering Reading Comprehension with Google Docs Explore Feature and Read&Write Tool": 1 + "Language Arts: Encouraging Peer Review using Google Docs Explore Feature and Kaizena": 1 + "Language Arts: Strengthening Vocabulary with Google Docs Explore Feature and Quizlet Tool": 1 + "Language Arts: Cultivating Critical Thinking using Google Docs Explore Feature and Mindomo Software": 1 + "Language Arts: Enhancing Presentation Skills using Google Docs Explore Feature and Prezi Tool.": 1 + "Fundamentals of Neuroscience: Exploring Brain Basics with MRI": 1 + "Fundamentals of Neuroscience: Brain Basics and Neuroimaging Techniques": 1 + "Fundamentals of Neuroscience: Brain Basics and the Use of EEG": 1 + "Brain Basics: An Introduction to Neuroscience through fMRI": 1 + "Fundamentals of Neuroscience: Brain Basics and PET Scans": 1 + "Neuroscience Foundations: Brain Basics and DTI Technology": 1 + "Brain Basics: A Study in Neuroscience with Electrophysiology": 1 + "Fundamentals of Neurotransmitters in Neuroscience: Brain Basics": 1 + "Neuroscience: Brain Basics and the Role of Neuroplasticity": 1 + "Brain Basics: A Dive into Neuroscience through Neural Networks": 1 + "Neuroscience 101: Understanding the Brain Through fMRI Scans": 1 + "Neuroscience 101: Exploring the Brain with EEG Technology": 1 + "Neuroscience 101: The Role of Neurotransmitters in Brain Function": 1 + "Neuroscience 101: Decoding the Brain with PET Scans": 1 + "Neuroscience 101: Understanding Neural Networks in the Brain": 1 + "Neuroscience 101: The Impact of Neuroplasticity on the Brain": 1 + "Neuroscience 101: Brain Mapping and its Significance": 1 + "Neuroscience 101: The Brain and the Role of Synaptic Pruning": 1 + "Neuroscience 101: Understanding the Brain Using Transcranial Magnetic Stimulation": 1 + "Neuroscience 101: A Close Look at the Brain with Diffusion Tensor Imaging": 1 + "Neuroscience: Understanding Brain Functions with DTI Imaging and fMRI Technology through Interactive Models": 1 + "Neuroscience: Exploring Brain Functions with DTI Imaging and PET Scans through Interactive Models": 1 + "Neuroscience: Interpreting Brain Functions with DTI Imaging and Electrophysiology through Interactive Models": 1 + "Neuroscience: Analyzing Brain Functions with DTI Imaging and Neuropsychological Tests through Interactive Models": 1 + "Neuroscience: Deciphering Brain Functions with DTI Imaging and Neurofeedback through Interactive Models": 1 + "Neuroscience: Comprehending Brain Functions with DTI Imaging and Connectome Maps through Interactive Models": 1 + "Neuroscience: Examining Brain Functions with DTI Imaging and Single-Photon Emission Computed Tomography through Interactive Models": 1 + "Neuroscience: Investigating Brain Functions with DTI Imaging and Magnetoencephalography through Interactive Models": 1 + "Neuroscience: Illustrating Brain Functions with DTI Imaging and Neuroimaging Genomics through Interactive Models": 1 + "Neuroscience: Unraveling Brain Functions with DTI Imaging and Deep Brain Stimulation through Interactive Models": 1 + "Environmental Science: Utilizing Energy Efficient Technologies for Carbon Footprint Reduction in Sports Equipment Manufacturing: A Life Cycle Assessment Perspective": 1 + "Environmental Science: Implementing Waste to Energy Conversion Strategies for Carbon Reduction in Sports Equipment Production": 1 + "Environmental Science: AI-Driven Waste Management Systems for Carbon Footprint Reduction in Sports Equipment Manufacturing ": 1 + "Environmental Science: Adopting Solar Power in Sports Equipment Manufacturing for Carbon Footprint Reduction: An LCA Approach": 1 + "Environmental Science: Incorporating Recycling and Reuse Strategies for Carbon Footprint Reduction in Sports Equipment Manufacturing": 1 + "Environmental Science: Carbon Neutral Production Processes in Sports Equipment Manufacturing: A Life Cycle Assessment Study": 1 + "Environmental Science: Biomimicry-Based Waste Management for Carbon Reduction in Sports Equipment Manufacturing": 1 + "Environmental Science: The Role of Smart Grids in Reducing Carbon Footprint in Sports Equipment Manufacturing": 1 + "Environmental Science: Integration of Circular Economy Concepts in Sports Equipment Manufacturing for Carbon Footprint Reduction": 1 + "Environmental Science: Lean Manufacturing Techniques for Carbon Footprint Reduction in Sports Equipment Manufacturing - A Life Cycle Assessment Perspective.": 1 + "Philosophical Foundations: The Impact of Plato's Ideals on Modern Ethical AI Algorithms": 1 + "Ancient Thinkers and Modern Ethics: The Influence of Aristotle's Virtue Ethics on Biomedical Technology": 1 + "Philosophical Foundations: Utilizing Socratic Method in Modern Ethical Decision-making Algorithms": 1 + "Ancient Thinkers and Modern Ethics: The Role of Stoic Philosophy in Developing Ethical Coding Practices": 1 + "Philosophical Foundations: The Influence of Confucianism on Modern Business Ethics and Blockchain Technology": 1 + "The Intersection of Ancient Philosophy and Modern Ethics: How Epicureanism Guides Today's Data Privacy Practices": 1 + "Philosophical Foundations: The Impact of Pythagorean Theorem on Ethical Cryptography": 1 + "Ancient Philosophers and Modern Ethics: How Kant's Deontology Influences Modern Ethical AI Development": 1 + "Philosophical Foundations: The Influence of Nietzsche's Existentialism on Modern Ethical Social Media Algorithms": 1 + "Ancient Thinkers and Modern Ethics: Applying Hegelian Dialectics to Cybersecurity Ethics.": 1 + "The Physics of Light in Photography: A Deep Dive into Camera Lenses": 1 + "Understanding Shutter Speed: The Physics of Light in Photography ": 1 + "The Role of Aperture in The Physics of Light in Photography": 1 + "Science and Art: The Physics of Light in Photography Using Digital Cameras": 1 + "The Physics of Light in Photography: Exploring the Impact of ISO ": 1 + "The Physics of Light in Photography: A Focus on Film Cameras": 1 + "Exploring HDR Technology: The Physics of Light in Photography": 1 + "The Physics of Light in Photography: Using Light Meters for Perfect Exposure": 1 + "The Physics of Light in Photography: A Study of Photographic Filters": 1 + "The Physics of Light in Photography: The Role of Reflectors in Light Manipulation": 1 + "Spelling: Mastering Common English Words with Anki Software using Flashcards": 1 + "Spelling: Mastering Common English Words with Anki Software and Mnemonic Devices ": 1 + "Spelling: Mastering Common English Words with Anki Software through Interactive Exercises ": 1 + "Spelling: Utilizing Text-to-Speech Technology in Anki Software to Master Common English Words": 1 + "Spelling: Mastering Common English Words with Anki Software and Visual Aids ": 1 + "Spelling: Mastering Common English Words using Anki Software and Phonetic Transcription ": 1 + "Spelling: Mastering Common English Words with Anki Software through Progressive Testing ": 1 + "Spelling: Mastering Common English Words using Anki Software and Semantic Mapping ": 1 + "Spelling: Mastering Common English Words with Anki Software and Chunking Technique ": 1 + "Spelling: Mastering Common English Words using Anki Software and Gamification Techniques": 1 + "Implementing Hierarchical Clustering in Python Machine Learning: Advanced Use of SciPy and Gaussian Mixture Models with PCA for Feature Reduction": 1 + "Mastering K-Means Clustering in Advanced Python Machine Learning: Utilization of SciPy, Gaussian Mixture Models, and PCA for Feature Reduction": 1 + "Unsupervised Machine Learning in Python: Advanced Clustering Techniques Using SciPy, Gaussian Mixture Models, PCA, and DBSCAN": 1 + "Python Machine Learning: Advanced Clustering with SciPy using Gaussian Mixture Models, PCA for Feature Reduction, and Tensorflow": 1 + "Advanced Clustering Algorithms in Python Machine Learning: Exploring SciPy, Gaussian Mixture Models, PCA for Feature Reduction, and Numpy": 1 + "Python Machine Learning: Advanced Clustering Algorithms with SciPy, Gaussian Mixture Models, PCA for Feature Reduction and Matplotlib for Visualization": 1 + "Python Machine Learning: Fuzzy Clustering with SciPy, Gaussian Mixture Models, PCA for Feature Reduction, and Sklearn": 1 + "Python Machine Learning: Advanced Clustering using SciPy, Gaussian Mixture Models, PCA for Feature Reduction, and Pandas for Data Manipulation": 1 + "Python Machine Learning: Advanced Spectral Clustering with SciPy, Gaussian Mixture Models, PCA for Feature Reduction, and Seaborn for Data Visualization": 1 + "Delving into Density-Based Clustering in Python Machine Learning: Advanced Use of SciPy, Gaussian Mixture Models, PCA for Feature Reduction, and Jupyter Notebook.": 1 + "Logical Thinkers: Exploring Elementary Logic with a Focus on Predicate Logic using Python": 1 + "Logical Thinkers: Elementary Logic and Predicate Logic with the Application of Truth Tables": 1 + "Logical Thinkers: An In-depth Study of Elementary Logic with Emphasis on Predicate Logic through SQL": 1 + "Logical Thinkers: Elementary Logic and Predicate Logic Explored through the Lens of Boolean Algebra": 1 + "Logical Thinkers: Mastering Elementary Logic with Predicate Logic using MATLAB": 1 + "Logical Thinkers: A Study of Elementary Logic Focused on Predicate Logic with the Use of Propositional Calculus": 1 + "Logical Thinkers: Elementary Logic and Predicate Logic with Application of Logic Gates": 1 + "Logical Thinkers: A Comprehensive Course on Elementary Logic and Predicate Logic using Java": 1 + "Logical Thinkers: Understanding Elementary Logic with Predicate Logic through Quantum Logic": 1 + "Logical Thinkers: Advanced Exploration of Elementary Logic and Predicate Logic using Logic Programming.": 1 + "Chemistry: Understanding Atomic and Molecular Structures with X-Ray Crystallography": 1 + "The Role of X-Ray Diffraction in the Analysis of Atomic and Molecular Chemistry": 1 + "Exploring Atomic and Molecular Structures Using X-Ray Diffraction and Fourier Transformations": 1 + "X-Ray Diffraction and Electron Density Maps: A Closer Look into Atoms and Molecules": 1 + "Chemistry: Utilizing X-Ray Diffraction and Bragg’s Law for Molecular Analysis": 1 + "Breaking Down Atoms and Molecules: A Study of X-Ray Diffraction and Electron Microscopy": 1 + "Probing Atoms and Molecules: X-Ray Diffraction and the Use of Synchrotron Radiation": 1 + "Chemistry: Deep Dive into Atoms Using X-Ray Diffraction and Scattering Techniques": 1 + "Advanced Chemistry: Unraveling Atomic Structures with X-Ray Diffraction and Neutron Diffraction": 1 + "A Detailed Study of Atoms and Molecules using X-Ray Diffraction and Laue Method.": 1 + "English Explorations: Mastering Grammar and Syntax with Scrabble, Turnitin, Google Docs and Grammarly's Proofreading Feature": 1 + "English Proficiency: Enhancing Syntax Understanding through Scrabble, Turnitin, Google Docs and Microsoft Word's Spelling and Grammar Check": 1 + "Comprehensive English: Revealing Grammar Techniques with Scrabble, Turnitin, Google Docs and Hemingway Editor": 1 + "English Mastery: Exploring Syntax with Scrabble, Turnitin, Google Docs and the Concept of Sentence Diagramming": 1 + "Advanced English: Scrabble, Turnitin, Google Docs and the Use of LanguageTool for Grammar and Syntax Improvement": 1 + "English Language Mastery: Unveiling Grammar Secrets Using Scrabble, Turnitin, Google Docs and the Oxford English Corpus": 1 + "English Skills Enhancement: Unraveling Syntax Secrets with Scrabble, Turnitin, Google Docs and ProWritingAid": 1 + "English Expertise: Scrabble, Turnitin, Google Docs and the Use of WhiteSmoke for Advanced Grammar and Syntax": 1 + "English Language Proficiency: Decoding Grammar and Syntax with Scrabble, Turnitin, Google Docs and Ginger Software": 1 + "English Language Understanding: Exploring Grammar and Syntax with Scrabble, Turnitin, Google Docs and Preposition Checker Tools.": 1 + "Computer Science: Digitizing Ancient Artifacts Using 3D Scanning Technology": 1 + "Computer Science: Applying Machine Learning in Digitizing Ancient Artifacts": 1 + "Computer Science: Utilizing Augmented Reality in the Digitization of Ancient Artifacts": 1 + "Computer Science: Blockchain Technology in the Preservation of Digitized Ancient Artifacts": 1 + "Computer Science: Digitizing Ancient Artifacts with Artificial Intelligence": 1 + "Computer Science: The Use of Cloud Computing in Storing Digitized Ancient Artifacts": 1 + "Computer Science: Data Analysis Techniques in the Study of Digitized Ancient Artifacts": 1 + "Computer Science: The Role of Virtual Reality in Exploring Digitized Ancient Artifacts": 1 + "Computer Science: The Application of Quantum Computing in Digitizing Ancient Artifacts": 1 + "Computer Science: Cybersecurity Protocols for Protecting Digitized Ancient Artifacts": 1 + "Ethical Approach to Sustainability: Rainwater Harvesting and the Role of Downspout Diverters Using Greywater Systems": 1 + "The Implication of Rain Chains in Ethical Approach to Sustainability: Rainwater Harvesting and Downspout Diverters": 1 + "Ethical Approach to Sustainability: Rainwater Harvesting, Downspout Diverters, and the Role of Rain Barrels": 1 + "Sustainable Development: The Influence of Downspout Diverters and Rainwater Tanks in Rainwater Harvesting": 1 + "Ethical Approach to Sustainability: The Impact of First Flush Diverters in Rainwater Harvesting and Downspout Diversion": 1 + "Rainwater Harvesting: The Role of Downspout Diverters and Gutter Guards in Advancing Sustainability": 1 + "Ethical Approach to Sustainability: The Importance of Cisterns in Rainwater Harvesting and Downspout Diversion": 1 + "Harnessing Rainwater: The Use of Downspout Diverters and Rain Saucers in Sustainable Practices": 1 + "Ethical Approach to Sustainability: Rainwater Harvesting, Downspout Diverters, and the Application of Rainwater Filters": 1 + "Sustainable Water Management: The Integration of Downspout Diverters and Rainwater Pumps in Rainwater Harvesting.": 1 + "Mathematics: Grasping Geometry through Pythagorean Theorem": 1 + "Mathematics: Understanding Geometry with Compass and Straightedge": 1 + "Mathematics: Mastering Geometry using Geogebra Software": 1 + "Mathematics: Grasping Geometry - A Deep Dive into Euclidean Spaces": 1 + "Mathematics: Exploring Geometry through Coordinate Systems": 1 + "Mathematics: Geometry Mastery with Geometric Proofs": 1 + "Mathematics: Grasping Geometry using AutoCAD": 1 + "Mathematics: Geometry Exploration with Trigonometric Concepts": 1 + "Mathematics: Applying Vector Algebra in Geometry": 1 + "Mathematics: Grasping Geometry - An Insight into Transformation Matrices": 1 + "Elementary: An In-Depth Study of Geography with Google Earth Technology: Exploring Plate Tectonics and Digital Topographic Maps": 1 + "Elementary: Harnessing the Power of Augmented Reality for Geographic Learning: Interactive Globe Models and Plate Tectonics": 1 + "Elementary: Geographic Information Systems (GIS) in Basics of Geography: Utilizing Interactive Globe Models and Digital Topographic Maps": 1 + "Elementary: Basics of Geography through Environmental Studies: Using Interactive Globe Models, Plate Tectonics, and Drone Imagery": 1 + "Elementary: Integrating Satellite Imagery in Geography Studies: Exploring Plate Tectonics and Digital Topographic Maps": 1 + "Elementary: Basics of Geography through Environmental Studies: Leveraging 3D Printing for Interactive Globe Models and Plate Tectonics": 1 + "Elementary: Exploring the Role of GPS Technology in Geography: Interactive Globe Models, Plate Tectonics and Digital Topographic Maps": 1 + "Elementary: Basics of Geography through Environmental Studies: Using Virtual Reality for Interactive Globe Models and Plate Tectonics": 1 + "Elementary: Applying Remote Sensing in Basics of Geography: Interactive Globe Models, Plate Tectonics, and Digital Topographic Maps": 1 + "Elementary: Utilizing Climate Modeling in Geography: Understanding Plate Tectonics and Digital Topographic Maps through Interactive Globe Models.": 1 + "Elementary Computer Science: Introduction to Python with Anaconda": 1 + "Learning with Python: A Deep Dive into Machine Learning Libraries": 1 + "Elementary Computer Science: Python Programming with Jupyter Notebook": 1 + "Elementary Computer Science: Understanding Data Structures in Python": 1 + "Elementary Computer Science: Python and Matplotlib for Data Visualization": 1 + "Learning Python: An Introduction to Django for Web Development": 1 + "Elementary Computer Science: Python for Data Analysis using Pandas": 1 + "Elementary Computer Science: Learning Python for Artificial Intelligence": 1 + "Learning with Python: Exploring Numpy for Scientific Computing": 1 + "Elementary Computer Science: Python and Pygame for Game Development": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes and Star Chart Software": 1 + "Elementary Astronomy: Utilizing Reflecting Telescopes and CCD Cameras in Night Sky Observation": 1 + "Elementary Astronomy: Application of Spectroscopy in Observing the Night Sky with Reflecting Telescopes": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes and Digital Image Processing": 1 + "Elementary Astronomy: Exploring the Night Sky Using Reflecting Telescopes and Radio Astronomy Techniques": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes and Photometry Methods": 1 + "Elementary Astronomy: Understanding the Night Sky through Reflecting Telescopes and Astrometry": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes and Polarimetry Tools": 1 + "Elementary Astronomy: Utilizing Reflecting Telescopes and Infrared Technology in Night Sky Observation": 1 + "Elementary Astronomy: Observing the Night Sky with Reflecting Telescopes and Astronomical Interferometry Techniques": 1 + "Art: Exploring the Use of Oil Paintings and Palette Knives in Visual Representation of Yoruba Dance in Nigerian Culture": 1 + "Art: The Use of Oil Paintings and Grisaille Technique in Visualizing African Dance: A Focus on Ghana's Adowa Dance": 1 + "Art: The Role of Oil Paintings and Impasto in Depicting Bantu Tribes' Dance in South Africa": 1 + "Art: Utilizing Oil Paintings and Glazing in the Visual Representation of Zulu Indlamu Dance": 1 + "Art: Oil Paintings and Scumbling Technique: A Study on the Visual Representation of Ethiopian Eskista Dance": 1 + "Art: The Use of Oil Paintings and Underpainting in Expressing Mozambique's Makwaya Dance": 1 + "Art: Understanding the Use of Oil Paintings and Tenebrism in the Visual Representation of Angolan Kizomba Dance": 1 + "Art: Employing Oil Paintings and Sfumato Technique in Visualizing Senegal's Sabar Dance": 1 + "Art: Oil Paintings and Chiaroscuro: Visualizing Traditional Dance in Kenyan Culture": 1 + "Art: The Use of Oil Paintings and Dry Brushing Technique in Representing Ugandan Bakisimba Dance.": 1 + "Decoding SoundCloud's AI: An In-depth Analysis of Music Economics using TensorFlow and Machine Learning Techniques with Natural Language Processing": 1 + "Unraveling SoundCloud's AI: A Comprehensive Study on Music Economics and Machine Learning Techniques using Python's NLTK": 1 + "Exploring SoundCloud's AI: Delving into Music Economics and Machine Learning Techniques with GPT-3 for Natural Language Processing": 1 + "Decoding SoundCloud's AI: A Thorough Examination of Music Economics and Machine Learning Techniques utilizing PyTorch for Natural Language Processing": 1 + "SoundCloud's AI Unveiled: An Intensive Look at Music Economics and Machine Learning Techniques using BERT in Natural Language Processing": 1 + "Revealing SoundCloud's AI: A Detailed Investigation on Music Economics and Machine Learning Techniques with SpaCy for Natural Language Processing": 1 + "Interpreting SoundCloud's AI: A Deep Dive into Music Economics and Machine Learning Techniques using OpenAI for Natural Language Processing": 1 + "Dissecting SoundCloud's AI: A Comprehensive Review of Music Economics and Machine Learning Techniques with Word2Vec in Natural Language Processing": 1 + "Unveiling SoundCloud's AI: A Thorough Insight into Music Economics and Machine Learning Techniques using Apache Mahout for Natural Language Processing": 1 + "Deciphering SoundCloud's AI: An In-depth Exploration of Music Economics and Machine Learning Techniques with FastText for Natural Language Processing": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis with Jupyter Notebook": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Utilizing TensorFlow in Pandas Data Analysis": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis with Matplotlib": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Incorporating Scikit-Learn in Pandas Data Analysis": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis with PySpark": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Utilizing Keras in Pandas Data Analysis": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis with Seaborn": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Incorporating Numpy in Pandas Data Analysis": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Mastering Pandas Data Analysis with Plotly": 1 + "Computer Science 160: Advanced Python Programming & Network Programming with Socket.io: Utilizing Django in Pandas Data Analysis": 1 + "Advanced English: Enhancing Character Development in Creative Writing using the Snowflake Method and Scrivener": 1 + "Basic English: Character Development in Creative Writing using the Snowflake Method and Mind Mapping Techniques": 1 + "Creative Writing Mastery: Character Development using the Snowflake Method and Trello": 1 + "English Writing Course: Character Development with Snowflake Method and Google Docs": 1 + "Comprehensive English: Character Development in Creative Writing with Snowflake Method and Evernote": 1 + "Modern English: Utilizing the Snowflake Method and Grammarly for Character Development in Creative Writing": 1 + "Basic English: Character Development in Creative Writing using the Snowflake Method and Dragon Dictation": 1 + "English Creative Writing: Character Development using the Snowflake Method and Celtx Script Writing Tool": 1 + "Specialized English: Character Building using the Snowflake Method and ProWritingAid in Creative Writing": 1 + "English Language Mastery: Character Development in Creative Writing using the Snowflake Method and Microsoft OneNote.": 1 + "Elementary Mathematics: Exploring Patterns and Repetition in Music through the Fibonacci Sequence": 1 + "Elementary Mathematics: Analyzing Musical Patterns with the Aid of Software": 1 + "The Application of Algebra in Identifying Patterns and Repetition in Music": 1 + "Decoding Musical Patterns and Repetition: A Study on Fractal Geometry": 1 + "Elementary Mathematics: Understanding Music through the Lens of Matrix Theory": 1 + "Elementary Mathematics: The Role of Algorithms in Music Patterns and Repetition": 1 + "Elementary Mathematics: An Introduction to Fourier Transforms in Music Analysis": 1 + "Elementary Mathematics: Utilizing Python Coding to Explore Patterns in Music": 1 + "Elementary Mathematics: Application of Frequency Analysis in Musical Pattern Recognition": 1 + "Elementary Mathematics: Music Pattern Analysis with the Use of Computer Programming.": 1 + "Chemistry for Kids: Exploring pH Scale with Red Cabbage Indicator, pH Test Strips, and Litmus Paper": 1 + "pH Scale Journey for Kids: An Insight into Acidity and Alkalinity with Red Cabbage Indicator and pH Test Strips": 1 + "Child's Play in Chemistry: Unveiling pH Scale using Red Cabbage Indicator, pH Test Strips, and Universal Indicator Solution": 1 + "Kids' Chemistry Course: Understanding pH Scale through Red Cabbage Indicator, pH Test Strips, and Burette Readings": 1 + "Interactive Chemistry for Kids: Discovering pH Scale using Red Cabbage Indicator, pH Test Strips, and Microscope Examination": 1 + "pH Scale Dissection with Kids: A Study using Red Cabbage Indicator, pH Test Strips, and pH Meter": 1 + "Chemistry Fun for Kids: Exploring pH Scale with Red Cabbage Indicator, pH Test Strips, and Titration Technique": 1 + "Young Chemists: Delving into pH Scale using Red Cabbage Indicator, pH Test Strips, and Colorimetry": 1 + "Chemistry 101 for Kids: Learning pH Scale with Red Cabbage Indicator, pH Test Strips, and Spectrophotometry": 1 + "Junior Chemist Course: Unraveling pH Scale using Red Cabbage Indicator, pH Test Strips, and Conductometry": 1 + "Physical Education: Enhancing Motor Skills through Fitbit Heart Rate Monitors and Oculus Rift Virtual Reality": 1 + "Physical Education: Studying Aerobic Activity through Garmin Heart Rate Monitors and HTC Vive Virtual Reality": 1 + "Physical Education: Innovative Learning of Cardiovascular Health through Polar Heart Rate Monitors and Google Cardboard Virtual Reality": 1 + "Physical Education: Understanding Kinematics through Wahoo Fitness Heart Rate Monitors and PlayStation VR": 1 + "Physical Education: Exploring Biomechanics through Mio Heart Rate Monitors and Samsung Gear VR": 1 + "Physical Education: Movement Studies using Suunto Heart Rate Monitors and Immersive Virtual Reality of Oculus Go": 1 + "Physical Education: Analyzing Exercise Physiology through TomTom Heart Rate Monitors and Virtual Reality with Oculus Quest": 1 + "Physical Education: Detailed Study of Kinesiology with Sigma Heart Rate Monitors and Valve Index Virtual Reality": 1 + "Physical Education: Movement Education via Apple Heart Rate Monitors and Google Daydream Virtual Reality": 1 + "Physical Education: Investigating Physical Fitness through Scosche Heart Rate Monitors and Windows Mixed Reality.": 1 + "Physics Fundamentals: Exploring Motion and Energy through Momentum with Newton's Laws ": 1 + "Understanding Kinetic Energy: Physics Fundamentals of Motion and Momentum with the Use of Lab Experiments": 1 + "Physics Fundamentals: Applying The Conservation of Energy to Understand Motion and Momentum ": 1 + "Physics Fundamentals: Investigating Motion and Energy through Momentum using Calculus ": 1 + "Physics Fundamentals: Momentum-Based Energy and Motion Study through Vector Analysis ": 1 + "Physics Fundamentals: The Role of Friction in Motion and Energy Explored through Momentum ": 1 + "Understanding Physics: Motion and Energy Explored through Momentum using Force-Mass-Acceleration Calculations ": 1 + "Physics Fundamentals: Motion and Energy Explored through Momentum in Vacuum Chambers ": 1 + "Physics Fundamentals: Understanding Motion and Energy with Quantum Momentum ": 1 + "Physics Fundamentals: Exploring Motion and Energy through Momentum Using Collision Experiments.": 1 + "The Impact of Color Symbolism in Propaganda and Its Influence on Modern Art during World War I": 1 + "The Role of Metaphorical Symbolism in Propaganda Films and Their Impact on Modern Art during World War II": 1 + "Propagandistic Symbolism in Posters and Its Influence on Modern Art during the World Wars: A Study on Typography": 1 + "The Effect of Symbolism in Radio Propaganda and Its Influence on Modern Art during the World Wars": 1 + "The Influence of Symbolic Imagery in Propaganda Literature and Its Effect on Modern Art during the World Wars": 1 + "The Role of Symbolism in Propaganda Photography and Its Influence on Modern Art during the World Wars": 1 + "The Use of Animal Symbolism in Propaganda and Its Influence on Modern Art during the World Wars": 1 + "The Interplay of Symbolism in Propaganda Music and Its Influence on Modern Art during the World Wars": 1 + "The Role of Symbolism in Propaganda Cartoons and Its Influence on Modern Art during the World Wars": 1 + "The Impact of Symbolism in Propaganda Postage Stamps and Its Influence on Modern Art during the World Wars.": 1 + "Sports Economics: Utilizing Excel in Revenue Management for Financial Assessment": 1 + "Sports Economics: A Deep Dive into Revenue Management Using ERP Systems": 1 + "Sports Economics: An Introduction to Financial Assessment via Blockchain Technology": 1 + "Sports Economics: Harnessing Data Analytics in Revenue Management for Financial Assessment": 1 + "Sports Economics: An Exploration of Revenue Management Using Financial Forecasting Techniques": 1 + "Sports Economics: Applying SAS in Revenue Management for Financial Assessment": 1 + "Sports Economics: Leveraging Artificial Intelligence in Revenue Management for Financial Assessment": 1 + "Sports Economics: A Comprehensive Study of Revenue Management using Financial Ratios": 1 + "Sports Economics: A Look into Revenue Management using Predictive Analytics for Financial Assessment": 1 + "Sports Economics: An Investigation of Revenue Management Using Risk Assessment Tools for Financial Evaluation.": 1 + "Music Appreciation: An In-depth Analysis of Handel's Oratorios and the Role of Harpsichord in the Historical Context": 1 + "Musicology: Studying Handel's Oratorios: A Detailed Study Using Music Theory": 1 + "Understanding Handel's Oratorios: A Study on Classical Compositions Using Textual Analysis": 1 + "Music Appreciation: The Impact of Baroque Period on Handel's Oratorios - A Historical Study Using Comparative Analysis": 1 + "The Art of Classical Compositions: A Study on Handel's Oratorios through the Lens of the Counterpoint Technique": 1 + "Music Appreciation: A Study on Handel's Oratorios Using the Concepts of Melodic Structure": 1 + "Analyzing Handel's Oratorios: A Music Appreciation Course Focused on the Historical Context and the Use of the Strophic Form ": 1 + "Music Appreciation: The Art of Classical Compositions: Handel's Oratorios Explored through the Concept of Tonality": 1 + "Historical Context and Handel's Oratorios: A Study in Music Appreciation Using the Analytical Approach": 1 + "Music Appreciation: Handel's Oratorios and their Interpretation through the Use of Musical Notation.": 1 + "Advanced GIS Analysis of the Impact of Crop Rotation on Nutritional Quality: A Closer Look at 10 Different Strategies.": 1 + "Using Drone Technology to Enhance Crop Rotation for Improved Nutritional Quality: An Examination of 10 Solutions.": 1 + "Using Satellite Imaging in the Study of Crop Rotation and Nutritional Quality: A Discussion on 10 Innovative Approaches.": 1 + "Biotech in Environmental Studies: The Impact of Genetically Modified Crops on Rotation and Nutritional Quality.": 1 + "Soil Analysis Techniques in Studying Crop Rotation Effects on Nutritional Quality: Ten Potential Remedies.": 1 + "Environmental Studies: The Impact of Crop Rotation on Nutritional Quality Through the Lens of Hydroponics - Ten Solutions.": 1 + "The Role of GPS Technology in Optimizing Crop Rotation for Enhanced Nutritional Quality: A Review of 10 Methods.": 1 + "The Impact of Crop Rotation on Nutritional Quality: A Deep Dive into Precision Farming Techniques and 10 Potential Solutions.": 1 + "Utilizing Machine Learning to Optimize Crop Rotation for Improved Nutritional Quality: A Study of 10 Possible Approaches.": 1 + "The Impact of Crop Rotation on Nutritional Quality: An Investigation into Nanotechnology and 10 Innovative Solutions.": 1 + "Essential English: Using Padlet and Microsoft Word's Track Changes for Detailed Character Development in Novels": 1 + "Advanced English: Applying Padlet and Microsoft Word's Table of Contents for Methodical Character Development in Drama": 1 + "Essential English: Utilizing Padlet and Microsoft Word's Header and Footer Tools for In-depth Character Development in Short Stories": 1 + "Essential English: Leveraging Padlet and Microsoft Word's SmartArt for Comprehensive Character Development in Poetry": 1 + "Advanced English: Employing Padlet and Microsoft Word's Cross-Referencing for Detailed Character Development in Fiction": 1 + "Essential English: Using Padlet and Microsoft Word's Spell Check Feature for Enhanced Character Development in Playwriting": 1 + "Advanced English: Applying Padlet and Microsoft Word's Reviewing Tab for Efficient Character Development in Screenwriting": 1 + "Essential English: Utilizing Padlet and Microsoft Word's Hyperlink Tool for Profound Character Development in Novellas": 1 + "Advanced English: Employing Padlet and Microsoft Word's Bibliography Feature for Detailed Character Development in Epic Poetry": 1 + "Essential English: Leveraging Padlet and Microsoft Word's Footnote Tool for Thorough Character Development in Literary Fiction.": 1 + "Mathematics: Exploring the Practicality of Pi in Global Architectural Design using AutoCAD Modelling Techniques": 1 + "Mathematics: Application of Pi in Global Architectural Design with BIM Modelling Techniques": 1 + "Mathematics: The Role of Pi in Global Architectural Design Utilizing Rhino 3D Advanced Modelling": 1 + "Mathematics: Leveraging Pi in Global Architectural Design through Parametric Modelling in Grasshopper": 1 + "Mathematics: The Practicality of Pi in Global Architectural Design using Revit Modelling Techniques": 1 + "Mathematics: The Impact of Pi on Global Architectural Design through SketchUp Advanced Modelling": 1 + "Mathematics: The Utility of Pi in Global Architectural Design employing 3D Max Modelling Techniques": 1 + "Mathematics: Analyzing Pi in Global Architectural Design with SOLIDWORKS Advanced Modelling": 1 + "Mathematics: The Significance of Pi in Global Architectural Design using Fusion 360 Modelling Techniques": 1 + "Mathematics: The Use of Pi in Global Architectural Design through MicroStation Advanced Modelling Techniques": 1 + "Digital Audio Workstations: Exploring Pro Tools in Modern Music Production": 1 + "Understanding Ableton Live: The Technology Behind Modern Music Production": 1 + "FL Studio and its Role in Digital Audio Workstations": 1 + "Logic Pro X: The Driving Force in Modern Music Production": 1 + "Utilizing Reaper in Digital Audio Workstations for Music Production": 1 + "The Power of Cubase in Modern Music Production: A Comprehensive Guide": 1 + "Digital Audio Workstations: The Impact of Reason in Modern Music Production": 1 + "Digital Audio Workstations: The Role of Audacity in Modern Music Production": 1 + "Exploring the Use of GarageBand in Digital Audio Workstations": 1 + "A Deeper Dive into Digital Performer: Modern Music Production's Powerful Tool.": 1 + "Language Arts: Crafting Eco-Friendly Tales with Procreate's Augmented Reality and Recycled Materials": 1 + "Language Arts: Storytelling with Aurasma's AR Technology and Recycled Materials": 1 + "Language Arts: Constructing Narratives using Blender 3D, Augmented Reality, and Recycled Materials": 1 + "Language Arts: Designing Eco-Stories with Google's ARCore and Recycled Items": 1 + "Language Arts: Creating Immersive Narratives using Unity3D, Augmented Reality, and Recycled Materials": 1 + "Language Arts: Building Sustainable Stories with ARKit and Repurposed Materials": 1 + "Language Arts: Fabricating AR Fables with SketchUp and Recycled Materials": 1 + "Language Arts: Developing AR Tales with Tinkercad and Recycled Items": 1 + "Language Arts: Constructing Eco-Friendly Narratives with Zappar's AR Technology and Recycled Materials": 1 + "Language Arts: Story Creation with Vuforia's Augmented Reality and Repurposed Materials": 1 + "Biology 101: Exploring Cell Structures Through Microscopy": 1 + "Biology 101: Cell Structures Examination with Electron Microscope": 1 + "Biology 101: A Study of Cellular Structures Using Confocal Microscopy": 1 + "Biology 101: Exploring Cell Structures with Flow Cytometry ": 1 + "Biology 101: Analyzing Cell Structures Through Fluorescence Microscopy ": 1 + "Biology 101: Cell Structures Investigation using Spectrophotometry ": 1 + "Biology 101: Exploring Cell Structures and Mitosis with Light Microscope ": 1 + "Biology 101: Unveiling Cell Structures Using Scanning Probe Microscopy ": 1 + "Biology 101: Cell Structures: A Deep Dive with Cryo-electron Microscopy ": 1 + "Biology 101: Understanding Cell Structures Through Atomic Force Microscopy": 1 + "Neuroscience Basics: Utilizing PET Scans and Radiotracers for Advanced Brain Mapping Techniques": 1 + "Neuroscience Basics: Harnessing PET Scans and MRI Technology for Comprehensive Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans and fMRI Integration for Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans, Neuroimaging Software, and Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans and Diffusion Tensor Imaging (DTI) for Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans Coupled with Functional Connectivity Analysis for Brain Mapping Techniques": 1 + "Neuroscience Basics: Exploring PET Scans and Neuronavigation for Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans and Multimodal Imaging for Advanced Brain Mapping Techniques": 1 + "Neuroscience Basics: PET Scans, 3D Rendering, and Brain Mapping Techniques": 1 + "Neuroscience Basics: Harnessing PET Scans and Digital Image Processing for Brain Mapping Techniques.": 1 + "Neurobiology: Exploring Brain Functions through Neuropsychological Testing, PET Scans, and EEG Analysis": 1 + "Neurobiology: Decoding Brain Functions using Neuropsychological Testing, PET Scans, and fMRI Techniques": 1 + "Neurobiology: Interpreting Brain Functions through Neuropsychological Testing, PET Scans, and Dopamine Tracking": 1 + "Neurobiology: Unraveling Brain Functions via Neuropsychological Testing, PET Scans, and Glial Cell Examination": 1 + "Neurobiology: Understanding Brain Functions through Neuropsychological Testing, PET Scans, and Neurotransmitter Study": 1 + "Neurobiology: Deciphering Brain Functions with Neuropsychological Testing, PET Scans, and Diffusion Tensor Imaging": 1 + "Neurobiology: Probing Brain Functions through Neuropsychological Testing, PET Scans, and Synaptic Plasticity Study": 1 + "Neurobiology: Investigating Brain Functions using Neuropsychological Testing, PET Scans, and Cerebral Blood Flow Measurement": 1 + "Neurobiology: Demystifying Brain Functions through Neuropsychological Testing, PET Scans, and Neuron Firing Patterns": 1 + "Neurobiology: Decoding Brain Functions via Neuropsychological Testing, PET Scans, and Neural Network Mapping": 1 + "Music and Tech: Exploring the Role of VST Plugins in FL Studio's Contribution to Digital Audio Workstations": 1 + "Music and Tech: The Impact of FL Studio's MIDI Controller on Digital Audio Workstations": 1 + "Music and Tech: Understanding FL Studio's Piano Roll and Its Contribution to Digital Audio Workstations": 1 + "Music and Tech: How FL Studio's Mixer Enhances Digital Audio Workstation Capabilities": 1 + "Music and Tech: The Role of FL Studio's Step Sequencer in Advancing Digital Audio Workstations": 1 + "Music and Tech: FL Studio's Automation Clips and Their Contribution to Digital Audio Workstations": 1 + "Music and Tech: Delving into FL Studio's Browser Functionality in the Context of Digital Audio Workstations": 1 + "Music and Tech: Unpacking the Influence of FL Studio's Fruity Loops on Modern Digital Audio Workstations": 1 + "Music and Tech: Understanding the Impact of FL Studio's Channel Rack on Digital Audio Workstation Technology": 1 + "Music and Tech: The Significance of FL Studio's Playlist Feature in the Evolution of Digital Audio Workstations": 1 + "The Tidal Wave: Exploring MQA Technology and Its Impact on the Music Industry's Economic Landscape": 1 + "Unraveling the Tidal Wave: The Influence of FLAC Lossless Audio on the Music Industry's Economic Landscape": 1 + "The Tidal Wave: Dissecting the Role of HD Music Streaming in Reshaping the Music Industry's Economic Landscape": 1 + "The Tidal Wave: How HiFi Sound Quality Standards Are Revolutionizing the Music Industry's Economic Landscape": 1 + "The Tidal Wave: How HiFi Audio Compression Techniques are Altering the Music Industry's Economic Ecosystem": 1 + "The Tidal Wave: The Impact of Exclusive HiFi Content on the Music Industry's Economic Landscape": 1 + "The Tidal Wave: The Effect of Tidal's Master Quality Authenticated Technology on the Music Industry's Economic Landscape": 1 + "The Tidal Wave: Navigating the Economic Impact of Tidal's Lossless Streaming Technology": 1 + "The Tidal Wave: The Power of Digital Signal Processing in Tidal's HiFi Technology and its Impact on the Music Industry's Economy": 1 + "The Tidal Wave: How Tidal's HiFi Technology and Premium Subscription Model Reshape the Music Industry's Economic Landscape": 1 + "Physics: Exploring Newton's Laws of Motion through Free Body Diagrams, Motion Sensors, and Momentum Conservation using Frictionless Incline Plane": 1 + "Physics: Understanding Laws of Motion with Free Body Diagrams, Motion Sensors, Momentum Conservation and Pendulum Experiments": 1 + "Physics: Investigating Laws of Motion via Free Body Diagrams, Motion Sensors, Momentum Conservation, and Projectile Motion Analysis": 1 + "Physics: Examination of Laws of Motion through Free Body Diagrams, Motion Sensors, Momentum Conservation and Force Table Experiments": 1 + "Physics: Explicating Laws of Motion using Free Body Diagrams, Motion Sensors, Momentum Conservation and Air Track Gliders": 1 + "Physics: Detailed Study of Laws of Motion through Free Body Diagrams, Motion Sensors, Momentum Conservation and Kinetic Energy Concepts": 1 + "Physics: Analyzing Laws of Motion with Free Body Diagrams, Motion Sensors, Momentum Conservation and Collisions in Two Dimensions": 1 + "Physics: Navigating Laws of Motion through Free Body Diagrams, Motion Sensors, Momentum Conservation and Torque Balances": 1 + "Physics: Deciphering Laws of Motion using Free Body Diagrams, Motion Sensors, Momentum Conservation and Vector Addition Techniques": 1 + "Physics: Probing Laws of Motion through Free Body Diagrams, Motion Sensors, Momentum Conservation and Coefficient of Friction Calculations": 1 + "Logic: Analyzing Social Trends in Popular Music through Quantitative Content Analysis": 1 + "Applying SPSS in the Study of Social Trends in Popular Music": 1 + "Logic: Using Big Data to Analyze Social Trends in Popular Music": 1 + "Logic: Use of Sentiment Analysis in Studying Social Trends in Popular Music": 1 + "Logic: The Role of Machine Learning in Analyzing Social Trends in Popular Music ": 1 + "Logic: Analyzing Social Trends in Popular Music with Python Programming": 1 + "Logic: Utilizing Tableau for Visual Representation of Social Trends in Popular Music": 1 + "Logic: Using Ethnomusicology to Analyze Social Trends in Popular Music": 1 + "Logic: Analyzing Social Trends in Popular Music using Artificial Intelligence": 1 + "Logic: Exploring Social Trends in Popular Music through the Lens of Cultural Theory.": 1 + "Exploring the Influence of Blockchain Technology and Machine Learning on the Evolution of Music Genres on Apple Music": 1 + "Blockchain Technology and Data Analytics: Their Impact on the Evolution of Music Genres on Apple Music": 1 + "The Role of Blockchain Technology and Artificial Intelligence in Shaping Music Genres on Apple Music": 1 + "The Effect of Blockchain Technology and Big Data on the Evolution of Music Genres on Apple Music": 1 + "Blockchain Technology and Cybersecurity: Unraveling their Impact on the Evolution of Music Genres on Apple Music": 1 + "Understanding the Impact of Blockchain Technology and Cloud Computing on the Evolution of Music Genres on Apple Music": 1 + "Blockchain Technology and IoT: Their Influence on the Evolution of Music Genres on Apple Music": 1 + "Decrypting the Impact of Blockchain Technology and Cryptography on the Evolution of Music Genres on Apple Music": 1 + "Blockchain Technology and Quantum Computing: Affecting the Evolution of Music Genres on Apple Music": 1 + "The Impact of Blockchain Technology and Virtual Reality on the Evolution of Music Genres on Apple Music": 1 + "Computer Science: Creating Harmonics with Python and MIDI - A Deep Dive into Digital Signal Processing": 1 + "Computer Science: Composing Music with Python and Audacity - Exploring Digital Signal Processing": 1 + "Computer Science: Synthesizing Sounds with Python and SuperCollider - Studying Digital Signal Processing": 1 + "Computer Science: Crafting Melodies with Python and Max MSP - Unpacking Digital Signal Processing": 1 + "Computer Science: Making Music with Python and Pure Data - Understanding the Intricacies of Digital Signal Processing": 1 + "Computer Science: Exploring Music Theory with Python and Ableton Live - Decoding Digital Signal Processing": 1 + "Computer Science: Making Music with Python and FL Studio - Analyzing the Science of Digital Signal Processing": 1 + "Computer Science: Designing Soundscapes with Python and Logic Pro - Grasping Digital Signal Processing": 1 + "Computer Science: Constructing Beats with Python and Pro Tools - Mastering Digital Signal Processing": 1 + "Computer Science: Creating Sound Effects with Python and GarageBand - Delving into Digital Signal Processing": 1 + "Social Studies: Exploring World Cultures through the Lens of Ethnography": 1 + "Social Studies: Navigating Global Cultures with Geographic Information Systems (GIS)": 1 + "Social Studies: Understanding World Cultures through Archaeological Excavations": 1 + "Social Studies: Immersing in World Cultures through Participant Observation Techniques": 1 + "Social Studies: Exploring Global Societies via Cultural Materialism": 1 + "Social Studies: Analysing World Cultures with Structural Functionalism": 1 + "Social Studies: Unfolding World Cultures through Linguistic Anthropology": 1 + "Social Studies: Unraveling Global Cultures with Kinship and Descent Systems": 1 + "Social Studies: Exploring World Cultures with Symbolic and Interpretive Anthropology": 1 + "Social Studies: Navigating World Cultures through the Use of Ethnographic Films": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving and Machine Learning": 1 + "Social Studies: Utilizing Blockchain Technology in Deciphering the American Constitution through Digital Archiving": 1 + "Social Studies: Analyzing the American Constitution using Digital Archiving and Text Mining Techniques": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving and Natural Language Processing": 1 + "Social Studies: Applying Big Data Analytics in Deciphering the American Constitution through Digital Archiving": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving and Optical Character Recognition": 1 + "Social Studies: Leveraging Artificial Intelligence in Deciphering the American Constitution through Digital Archiving": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving and Data Visualization Tools": 1 + "Social Studies: Deciphering the American Constitution through Digital Archiving and Cloud Computing": 1 + "Social Studies: Deciphering the American Constitution using Digital Archiving and Cybersecurity Tools.": 1 + "Microbiology 101: Using Agarose Gel Electrophoresis and Polymerase Chain Reaction in Genetic Engineering": 1 + "Microbiology 101: Genetic Engineering through Gel Electrophoresis and DNA Sequencing": 1 + "Microbiology 101: Implementing Gel Electrophoresis and CRISPR-Cas9 in Genetic Engineering": 1 + "Microbiology 101: Gel Electrophoresis and Spectrophotometry in Genetic Engineering": 1 + "Microbiology 101: Genetic Engineering using Gel Electrophoresis and Restriction Enzymes": 1 + "Microbiology 101: Advanced Techniques in Genetic Engineering: Gel Electrophoresis and Southern Blotting": 1 + "Microbiology 101: Genetic Engineering with Gel Electrophoresis and Gene Cloning": 1 + "Microbiology 101: Exploring Genetic Engineering through Gel Electrophoresis and Bioinformatics": 1 + "Microbiology 101: Gel Electrophoresis and Plasmid Mapping in Genetic Engineering": 1 + "Microbiology 101: Genetic Engineering: Gel Electrophoresis and Gene Synthesis Techniques.": 1 + "Advanced Mathematics: Time Series Analysis using R Programming and ARIMA Models in Environmental Research": 1 + "Practical Mathematics: Application of Fourier Transform in Time Series Analysis using R Programming for Environmental Research": 1 + "Mathematics and Data Science: Time Series Analysis with R Programming and ggplot2 in Environmental Research": 1 + "Time Series Analysis in Environmental Research: Exploring Trend Analysis using R Programming and Excel": 1 + "Advanced Statistics: Time Series Analysis with R Programming and Machine Learning in Environmental Research": 1 + "Mathematics for Environmental Research: Time Series Analysis using R Programming and DPLYR Package": 1 + "Mathematics and Programming: Time Series Analysis using R and Python in Environmental Research": 1 + "Mathematical Modeling: Time Series Analysis using R Programming and Prophet in Environmental Research": 1 + "Mathematics and Data Visualization: Time Series Analysis using R Programming and Tableau in Environmental Research": 1 + "Mathematics and Big Data: Time Series Analysis using R Programming and Hadoop in Environmental Research": 1 + "Chemistry: Delving into Chemical Reactions with the Aid of Stoichiometry": 1 + "The Periodic Table and Chemical Reactions: A Deep Dive into Quantum Mechanics": 1 + "Chemistry: Understanding Chemical Reactions through Computational Modelling ": 1 + "Advanced Chemistry: Utilizing Spectroscopy in the Study of Chemical Reactions": 1 + "The Role of Electron Microscopy in Understanding Chemical Reactions and the Periodic Table": 1 + "Chemistry: Grasping Chemical Reactions and the Periodic Table through Chromatography": 1 + "Manipulating Chemical Reactions: A Comprehensive Study with the Help of Nuclear Magnetic Resonance ": 1 + "Chemistry: Applying Mass Spectrometry to Understand Chemical Reactions and the Periodic Table": 1 + "Chemistry: Exploring Chemical Reactions and the Periodic Table with the Assistance of X-ray Crystallography": 1 + "Quantum Chemistry: Decoding Chemical Reactions and the Periodic Table through Density Functional Theory.": 1 + "Advanced Brain Function Decoding: Utilizing Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and EEG in Brain Mapping for Alzheimer's Disease": 1 + "Enhanced Brain Mapping: Integration of Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Diffusion Tensor Imaging in Stroke Recovery": 1 + "Decoding Brain Function for Autism: Applying Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Positron Emission Tomography ": 1 + "Specific Brain Mapping: Integration of Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and TMS in Epilepsy Analysis ": 1 + "Brain Function Decoding for Parkinson's: Including Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Deep Brain Stimulation ": 1 + "Decoding Brain Function for Mental Disorders: Integration of Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Voxel-Based Morphometry ": 1 + "Advanced Brain Mapping: Utilizing Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Functional Connectivity in ADHD Research ": 1 + "Comprehensive Brain Decoding: Incorporating Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Neurofeedback in Schizophrenia Research ": 1 + "Brain Function Decoding for Mood Disorders: Applying Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Transcranial Direct Current Stimulation ": 1 + "Decoding Brain Function for Traumatic Brain Injury: Integration of Magnetic Particle Imaging, fMRI, Near Infrared Spectroscopy, and Proton Magnetic Resonance Spectroscopy": 1 + "Geography: Utilizing Aerial Photography and GIS Technology in WWII Mapping - Global Impact and Strategic Outcomes": 1 + "Geography: The Role of Stereoscopic Aerial Photography in Mapping WWII - Global Impact and Strategic Insights": 1 + "Geography: The Impact of Aerial Photography and Infrared Imaging in WWII Cartography - Global Consequences and Tactics": 1 + "Geography: WWII Mapping through Aerial Photography and Photogrammetry - Global Ramifications and Strategy": 1 + "Geography: Aerial Photography and the Use of Radar Technology in WWII Mapping - Global Influence and Strategic Planning": 1 + "Geography: The Role of Aerial Photography and Remote Sensing in WWII Cartography - Global Impact and Military Tactics": 1 + "Geography: Aerial Photography and the Use of Satellite Imagery in WWII Mapping - Global Consequences and Strategic Design": 1 + "Geography: WWII Cartographic Strategies using Aerial Photography and Thermal Imaging - Global Impact and Military Planning": 1 + "Geography: The Role of Aerial Photography and Lidar Technology in WWII Mapping - Global Influence and Strategic Measures": 1 + "Geography: Aerial Photography and the Application of Drones in WWII Cartography - Global Effects and Tactical Planning": 1 + "Biology Basics: The Life of Plants through Microscopy": 1 + "Biology Basics: Investigating Plant Life with DNA Sequencing": 1 + "Biology Basics: Examining Plant Life via Photosynthesis ": 1 + "Biology Basics: The Life of Plants through Cellular Respiration ": 1 + "Biology Basics: Understanding Plant Life with Biotechnology ": 1 + "Biology Basics: Exploration of Plant Life Using Hydroponics ": 1 + "Biology Basics: The Life of Plants through Genetic Engineering ": 1 + "Biology Basics: Analyzing Plant Life with Chromatography ": 1 + "Biology Basics: The Life of Plants through Cloning Techniques ": 1 + "Biology Basics: Studying Plant Life Using Bioinformatics ": 1 + "Biology Basics: The Life of Plants: A Deep Dive into Pollination Techniques": 1 + "Mathematics 105: Introduction to Statistics with Excel and Power BI Integration: Special Focus on Linear Regression Analysis": 1 + "Mathematics 105: An Introduction to Probability using Excel and Power BI: Incorporating Bayesian Statistics": 1 + "Mathematics 105: Data Analysis using Excel and Power BI: Understanding Hypothesis Testing": 1 + "Mathematics 105: An Introduction to Statistics and Probability using Excel and Power BI: Highlight on Normal Distribution": 1 + "Mathematics 105: Advanced Data Analysis using Excel with Power BI Integration: Exploring Correlation and Covariance": 1 + "Mathematics 105: Statistics and Probability using Excel with Power BI: Delving into Sample Size Determination": 1 + "Mathematics 105: Data Analysis using Excel and Power BI: A Study on Confidence Intervals": 1 + "Mathematics 105: An Introduction to Statistics and Probability with Excel and Power BI: Exploring Predictive Analysis": 1 + "Mathematics 105: Advanced Statistics and Probability using Excel and Power BI: Focus on Decision Trees Analysis": 1 + "Mathematics 105: Data Analysis with Excel and Power BI Integration: Understanding ANOVA (Analysis of Variance).": 1 + "Understanding Eristic Fallacies: Analyzing Logical Errors with Venn Diagrams and Syllogistic Logic using Aristotle's Square of Opposition": 1 + "Logic Simplified: Deconstructing Logical Fallacies with Venn Diagrams, Syllogistic Logic, and Euler's Circles": 1 + "Advanced Logic: Analyzing Fallacies using Venn Diagrams, Syllogistic Logic, and Truth Tables": 1 + "Taming Paradoxes: Exploring Logical Fallacies with Venn Diagrams, Syllogistic Logic, and Russell's Paradox": 1 + "Logic Unraveled: Mapping Fallacies with Venn Diagrams, Syllogistic Logic, and Karnaugh Maps": 1 + "Decoding Logic: Analyzing Fallacies with Venn Diagrams, Syllogistic Logic, and Deductive Reasoning": 1 + "Logic Demystified: Investigating Fallacies with Venn Diagrams, Syllogistic Logic, and Propositional Calculus": 1 + "Mastering Logic: Analyzing Fallacies with Venn Diagrams, Syllogistic Logic, and Zermelo-Fraenkel Set Theory": 1 + "Logic Dissected: Evaluating Fallacies using Venn Diagrams, Syllogistic Logic, and Godel's Incompleteness Theorem": 1 + "Logic Unboxed: Dissecting Fallacies with Venn Diagrams, Syllogistic Logic, and Leibniz's Law of Identity.": 1 + "Physics: An In-depth Study of Thermodynamics through Maxwell's Equations": 1 + "Physics: Exploring Thermodynamics using Entropy": 1 + "Physics: The Role of Heat Engines in Thermodynamics": 1 + "Physics: Thermodynamics and its Application in Refrigeration Technology": 1 + "Physics: The Concept of Thermodynamic Equilibrium and Its Importance": 1 + "Physics: Understanding Thermodynamics through Carnot's Theorem": 1 + "Physics: Thermodynamics and Statistical Mechanics: A Detailed Analysis": 1 + "Physics: Thermodynamics and its Implication in Quantum Mechanics": 1 + "Physics: The Laws of Thermodynamics and their Applications in Heat Pumps": 1 + "Physics: Thermodynamics in Modern Physics: An Introduction to Black Body Radiation": 1 + "Language Arts: Visual Communication and Design with Adobe Photoshop": 1 + "Language Arts: Exploring Visual Communication through InDesign": 1 + "Language Arts: Mastery of Design using Illustrator": 1 + "Language Arts: Visual Communication and Design with Sketch": 1 + "Language Arts: Enhancing Visual Communication through Canva": 1 + "Language Arts: Designing with CorelDRAW in Visual Communication": 1 + "Language Arts: Visual Communication and Design via GIMP": 1 + "Language Arts: Visual Communication and Design using Graphic Tablets": 1 + "Language Arts: 3D Design in Visual Communication with Blender": 1 + "Language Arts: Visual Communication and Design with CSS": 1 + "Language Arts: Visual Communication and Design - The Power of Lightroom": 1 + "Art: Exploring Impressionism through Maritime Seascape Paintings using Oil Pastels": 1 + "Art: The Role of Palette Knives in Impressionist Maritime Seascape Paintings": 1 + "Art: Creating Impressionist Maritime Seascape Paintings using Watercolor Techniques": 1 + "Art: Examining the Use of Chiaroscuro in Impressionist Maritime Seascape Paintings": 1 + "Art: Exploring Impressionism through Maritime Seascape Paintings: The Power of Acrylics": 1 + "Art: Understanding Brushwork in Impressionist Maritime Seascape Paintings": 1 + "Art: The Impact of Color Theory in Impressionist Maritime Seascape Paintings": 1 + "Art: Utilizing Digital Tools in Creating Impressionist Maritime Seascape Paintings": 1 + "Art: Exploring Impressionism through Maritime Seascape Paintings: A Study on Canvas Textures": 1 + "Art: The Influence of Plein Air Painting Techniques in Impressionist Maritime Seascape Paintings": 1 + "Science: The Scientific Revolution and the Influence of the Astrolabe during the Renaissance": 1 + "Science: The Impact of the Telescope in the Scientific Revolution of the Renaissance Period": 1 + "Science: The Printing Press and its Influence on the Scientific Revolution during the Renaissance": 1 + "Science: The Scientific Revolution and the Role of the Microscope during the Renaissance": 1 + "Science: The Influence of Galileo's Thermoscope on the Scientific Revolution in the Renaissance": 1 + "Science: The Scientific Revolution and the Impact of the Sextant in the Renaissance Period": 1 + "Science: The Scientific Revolution and the Influence of the Pendulum Clock in the Renaissance": 1 + "Science: The Effects of the Mechanical Calculator on the Scientific Revolution during the Renaissance": 1 + "Science: The Scientific Revolution: How the Quadrant Transformed the Renaissance Period": 1 + "Science: The Scientific Revolution and the Significance of the Water Pump in the Renaissance Era": 1 + "Mastering Bezier Tool in Inkscape: An Advanced Course on Path Effects in Digital Art and Computer Science": 1 + "Exploring Advanced Layering Techniques in Inkscape's Path Effects: A Computer Science Perspective": 1 + "A Deep Dive into Computer Science with Digital Art: Exploring Inkscape's Path Effects and SVG Format Advanced Course": 1 + "Advanced Course on Inkscape's Path Effects: Enhancing Computer Science Knowledge with the Node Editor": 1 + "Advanced Course on Computer Science and Digital Art: Exploring Inkscape's Path Effects and Filters": 1 + "Inkscape's Path Effects and Clipping Masks Advanced Course: A Deep Dive into Computer Science with Digital Art": 1 + "Computer Science Meets Digital Art: An Advanced Course on Inkscape's Path Effects and Bitmap Tracing": 1 + "Exploring Vector Graphics in Computer Science: An Advanced Course on Inkscape's Path Effects and Gradients": 1 + "A Deep Dive into Computer Science and Digital Art: Inkscape's Path Effects and Pattern Along Path Advanced Course": 1 + "Mastering Computer Science with Digital Art: An Advanced Course on Inkscape's Path Effects and LPE Shape Tools.": 1 + "Physical Education: Mastering Basketball Passing Techniques with Resistance Bands and DribbleUp Smart Basketball": 1 + "Advanced Basketball: Developing Precision Passing Using Resistance Bands and Real-time Motion Analysis": 1 + "Physical Education: Fundamentals of Basketball: Enhancing Passing Skills with Resistance Bands and Virtual Reality Training": 1 + "Basketball Training: Boosting Passing Efficiency with Resistance Bands and the Use of Sports Biomechanics": 1 + "Physical Education: Basketball Passing Excellence: Resistance Bands and Wearable Technology Integration": 1 + "Basketball Mastery: Elevating Passing Skills with Resistance Bands and Reactive Training Tools": 1 + "Physical Education: Improving Basketball Passing with Resistance Bands and AI-Infused Skills Development": 1 + "Advanced Basketball: Optimizing Passing Techniques with Resistance Bands and Sensor-Based Performance Tracking": 1 + "Basketball Education: Advanced Passing Development Utilizing Resistance Bands and Video Analysis Tools": 1 + "Sports Education: Basketball: Enriching the Art of Passing with Resistance Bands and Plyometric Training Methods.": 1 + "Organic Chemistry: Understanding Molecular Structures through NMR Spectroscopy": 1 + "Organic Chemistry: A Deep Dive into Molecular Structures using Mass Spectrometry": 1 + "Organic Chemistry: Decoding Molecular Structures with Infrared Spectroscopy": 1 + "Organic Chemistry: Exploring Molecular Structures via Quantum Mechanics": 1 + "Organic Chemistry: Comprehending Molecular Structures through X-ray Crystallography": 1 + "Organic Chemistry: Scrutinizing Molecular Structures using Electron Microscopy": 1 + "Organic Chemistry: Unveiling Molecular Structures with Computational Chemistry": 1 + "Organic Chemistry: Interpreting Molecular Structures through UV/Vis Spectroscopy": 1 + "Organic Chemistry: Understanding Molecular Structures using Molecular Modelling": 1 + "Organic Chemistry: Navigating Molecular Structures with Chemical Kinetics": 1 + "Art: Using DSLR Cameras to Convey Environmental Awareness through Photography": 1 + "Art: Creating Environmental Awareness through Drone Photography": 1 + "Art: Utilizing Film Photography to Promote Environmental Consciousness": 1 + "Art: Polaroid Photography: A Unique Approach to Environmental Awareness": 1 + "Art: Using Adobe Photoshop for Creating Environmental Awareness through Photography": 1 + "Art: Exploring Environmental Awareness through Macro Photography": 1 + "Art: Harnessing the Power of Night Photography for Environmental Advocacy": 1 + "Art: Creating Environmental Awareness through Underwater Photography Techniques": 1 + "Art: Using Portraiture to Advocate for Environmental Awareness in Photography": 1 + "Art: Landscape Photography: Capturing Environmental Awareness through Wide-Angle Shots.": 1 + "The Chemistry of Food Fermentation: A Comprehensive Analysis of Autoclaves, Sterilization Techniques, and the Role of pH Meters": 1 + "The Science Behind Food Fermentation: Delving Deep into Autoclaves, Sterilization Techniques, and Bacterial Cultures": 1 + "Exploring Autoclaves and Sterilization Techniques: Unveiling the Impact of Gas Chromatography on Food Fermentation Chemistry": 1 + "Food Fermentation Chemistry: The Influence of Autoclaves, Sterilization Techniques, and HPLC Systems": 1 + "The Chemistry of Food Fermentation: A Detailed Study on Autoclaves, Sterilization Techniques, and the Implementation of Spectrophotometry": 1 + "Fermentation Chemistry: A Comprehensive Review of Autoclaves, Sterilization Techniques, and the Application of Polymerase Chain Reaction (PCR)": 1 + "Autoclaves and Sterilization Techniques: The Role of Agar Plates in the Chemistry of Food Fermentation": 1 + "The Art of Food Fermentation: A Deep Dive into Autoclaves, Sterilization Techniques, and the Significance of Mass Spectrometry": 1 + "The Chemistry of Food Fermentation: Studying Autoclaves, Sterilization Techniques, and the Use of Nuclear Magnetic Resonance (NMR)": 1 + "Food Fermentation and Chemistry: An In-depth Look at Autoclaves, Sterilization Techniques, and the Effectiveness of Microscopy.": 1 + "Language Arts: The Rhetoric of Economic Discourse: Econometrics and the Power of Non-Linear Modelling Using Python": 1 + "Advanced Econometrics: Non-Linear Modelling with Stata in Economic Discourse": 1 + "Language Arts and Econometrics: Exploring Non-Linear Modelling with EViews": 1 + "The Rhetoric of Economic Discourse: An Exploration of Non-Linear Modelling in Econometrics Using R": 1 + "Econometrics Discourse: Harnessing the Power of Non-Linear Modelling with MATLAB": 1 + "Language Arts: Understanding Economic Discourse through Non-Linear Modelling using SAS": 1 + "Exploring Economic Rhetoric: Non-Linear Econometric Modelling with SPSS": 1 + "The Power of Economic Discourse: A Focus on Non-Linear Modelling in Econometrics using Gretl": 1 + "Language Arts: Economic Rhetoric and Non-Linear Modelling in Econometrics with Julia Language": 1 + "The Rhetoric of Economic Discourse: Unpacking Non-Linear Econometric Modelling with STAN.": 1 + "Biology: Unveiling Cell Structures - A Comprehensive Study of Mitosis with Electron Microscopy and Cryofixation": 1 + "Biology: Exploring Mitosis - A Deep Dive into Cell Structures with Electron Microscopy and Fluorescence Recovery After Photobleaching": 1 + "Biology: Cell Structures in Detail - A Deep Dive into Mitosis with Electron Microscopy and Super-Resolution Microscopy": 1 + "Biology: The Magic of Mitosis - An In-Depth Analysis of Cell Structures with Electron Microscopy and Optical Tweezers": 1 + "Biology: Unraveling Mitosis - A Deep Dive into Cell Structures with Electron Microscopy and Atomic Force Microscopy": 1 + "Biology: Mitosis Revealed - A Deep Study into Cell Structures with Electron Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Cell Structures - A Deep Dive into Mitosis with Electron Microscopy and Live Cell Imaging Techniques": 1 + "Biology: Decoding Cell Structures - An In-Depth Look at Mitosis with Electron Microscopy and Time-Lapse Imaging": 1 + "Biology: Inside Mitosis - A Deep Dive into Cell Structures with Electron Microscopy and X-Ray Microscopy": 1 + "Biology: Cell Structures Unplugged - A Detailed Study of Mitosis with Electron Microscopy and Confocal Laser Scanning Microscopy": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Pythagoras Theorem": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes utilising Graphing Calculators": 1 + "Mathematics: Understanding Geometry with Abacus and Solid Shapes through AutoCAD": 1 + "Mathematics: Learning with Abacus, Geometric Shapes and Dynamic Geometry Software": 1 + "Mathematics: Investigating Numbers with Abacus, Geometric Shapes and Binary System": 1 + "Mathematics: Exploring Numbers and Geometric Shapes using Abacus and Desmos Graphing Calculator": 1 + "Mathematics: Interpreting Numbers with Abacus and Geometric Shapes via Probability Theory": 1 + "Mathematics: Exploring Numbers with Abacus and Geometric Shapes using Algebraic Expressions ": 1 + "Mathematics: Exploring Numbers and Geometric Shapes with Abacus and Computer Algebra Systems": 1 + "Mathematics: Discovering Numbers with Abacus, Geometric Shapes and Euclidean Geometry Concepts": 1 + "Computer Science: Utilizing Kubernetes and Firebase with Swift: Building Real-Time Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes using API Integration": 1 + "Computer Science: Kubernetes and Firebase: Leveraging Node.js for Building Real-Time Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes, Firebase and Docker: Building Real-Time Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes with React Native": 1 + "Computer Science: Kubernetes and Firebase: Developing Real-Time Fitness Apps for Athletes with Machine Learning Algorithms": 1 + "Computer Science: Kubernetes and Firebase Integration with Python: Building Real-Time Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes using Agile Development Methods": 1 + "Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes with User Interface Design Principles": 1 + "Computer Science: Kubernetes, Firebase and Cloud Functions: Building Real-Time Fitness Apps for Athletes.": 1 + "Exploring Granular Synthesis in MaxMSP through The Gen~ Object: A Detailed Study": 1 + "Understanding Granular Synthesis in MaxMSP Using Buffer~: An In-Depth Analysis": 1 + "Deep Dive into Granular Synthesis in MaxMSP: A Study on the Use of Groove~ Object": 1 + "Detailed Analysis of Granular Synthesis in MaxMSP: Focusing on Wave~ Tool": 1 + "Sound Synthesis in MaxMSP: A Detailed Study of Granular Synthesis Using the Jitter Matrix": 1 + "Mastering Granular Synthesis in MaxMSP with the Msp~ Tool: A Comprehensive Course": 1 + "MaxMSP Sound Synthesis: A Thorough Examination of Granular Synthesis Using the Phasor~ Object": 1 + "Advanced Techniques for Granular Synthesis in MaxMSP: A Study on the Use of Cycle~ Object": 1 + "Sound Synthesis in MaxMSP: Exploring Granular Synthesis with the Signal~ Tool": 1 + "Comprehensive Study of Granular Synthesis in MaxMSP: Using the Line~ Object for Sound Manipulation.": 1 + "Neuroscience Basics: Utilizing Radiotracers in PET Scans for Advanced Brain Mapping Techniques": 1 + "Harnessing PET Scans and MRI Fusion for Comprehensive Brain Mapping: A Neuroscience Primer": 1 + "Neuroscience Essentials: Exploring Brain Functionality through PET Scans and Functional MRI": 1 + "PET Scans in Neuroscience: Using CT Imaging for Accurate Brain Mapping Techniques": 1 + "Neuroscience Fundamentals: PET Scans and Software-based Image Reconstruction for Brain Mapping": 1 + "Brain Mapping Techniques: An Emphasis on PET Scans and Positron Annihilation in Neuroscience": 1 + "Understanding the Brain: PET Scans, Cyclotrons, and Brain Mapping Techniques in Neuroscience": 1 + "Neuroscience Basics: Harnessing PET Scans and Digital Geometry Processing for Brain Mapping": 1 + "An Introduction to Neuroscience: PET Scans and Crystal Detectors in Brain Mapping Techniques": 1 + "Neuroscience and PET Scans: Brain Mapping with the Help of Time-of-Flight Technique.": 1 + "Art: Creating Maritime World Seascapes with Acrylics and Airbrush Techniques using Palette Knives": 1 + "Art: Mastering the Use of Blending Brushes in Creating Maritime World Seascapes with Acrylics and Airbrush ": 1 + "Art: Incorporating Stencils in Creating Maritime World Seascapes with Acrylics and Airbrush Techniques": 1 + "Art: Exploring Glazing Techniques in Maritime World Seascapes Creation with Acrylics and Airbrush": 1 + "Art: Creating Maritime World Seascapes with Acrylics and Airbrush Techniques using Digital Tablets": 1 + "Art: Integrating Texture Gels in Maritime World Seascapes with Acrylics and Airbrush Techniques": 1 + "Art: Creating Atmospheric Perspective in Maritime World Seascapes with Acrylics and Airbrush Techniques": 1 + "Art: Use of Color Theory in Creating Maritime World Seascapes with Acrylics and Airbrush Techniques": 1 + "Art: Creating Maritime World Seascapes with Acrylics, Airbrush and Pouring Medium Techniques": 1 + "Art: Enhancing Maritime World Seascapes with Acrylics and Airbrush Techniques using Variegated Gold Leaf.": 1 + "Exploring Computer Science through Digital Art: Creating Textures and Patterns with Inkscape and GIMP": 1 + "Advanced Computer Science: Designing Digital Art Textures with Inkscape and Python": 1 + "Computer Science in Digital Art: Understanding Textures and Patterns with Inkscape and Adobe Illustrator": 1 + "Mastering Computer Science through Digital Art: Texture Development with Inkscape and Blender": 1 + "Computer Science for Digital Artists: Building Patterns with Inkscape and Vector Graphics": 1 + "In-Depth Computer Science: Crafting Seamless Textures with Inkscape and WebGL": 1 + "Computer Science in Art: Pattern Design with Inkscape and CSS Grids": 1 + "Advanced Inkscape Techniques in Computer Science: Creating Realistic Textures and Patterns": 1 + "Computer Science and Digital Artistry: Producing Patterns with Inkscape and HTML5 Canvas": 1 + "Computer Science Applied to Digital Art: Texture Design with Inkscape and JavaScript.": 1 + "Language Arts: The Evolution of Language - Braille System, the Emergence of E-Braille and the Impact of Digital Braille Displays": 1 + "Language Arts: The Evolution of Language - Exploring the Braille System and the Impact of Braille e-Books": 1 + "Language Arts: The Evolution of Language - Introduction to Braille System and the Significance of Braille Smartwatches ": 1 + "Language Arts: The Evolution of Language - A Study on Braille System and the Advancements in Refreshable Braille Displays": 1 + "Language Arts: The Evolution of Language - Braille System, Tactile Graphics, and the Impact of Digital Braille Displays": 1 + "Language Arts: The Evolution of Language - Braille System and the Transformation Brought by Digital Braille Keyboards": 1 + "Language Arts: The Evolution of Language - Braille System, the Role of Braille Notetakers, and Digital Braille Displays": 1 + "Language Arts: The Evolution of Language - The Transition from Braille System to Digital Braille Tablets": 1 + "Language Arts: The Evolution of Language - Braille System and the Impact of Braille Embossers in the Digital Age": 1 + "Language Arts: The Evolution of Language - Braille System, its Integration with Speech Synthesis, and the Impact of Digital Braille Displays.": 1 + "From Paintbrush to Microphone: Exploring the Symbiosis of Acoustic Modelling and Visual Art Using Adobe Photoshop": 1 + "Navigating the Intersection of Acoustic Modelling and Visual Art: A Comprehensive Guide to Utilizing AutoCAD": 1 + "Acoustic Modelling Meets Visual Art: The Impact of 3D Printing Technology": 1 + "Acoustic Modeling and Visual Art Synergy: A Deep Dive into the Application of Virtual Reality": 1 + "From Paintbrush to Microphone: Unveiling the Connection of Acoustic Modelling and Visual Art through Augmented Reality": 1 + "The Symbiosis of Acoustic Modelling and Visual Art: An Exploration of Sound Editing with Audacity": 1 + "From Paintbrush to Microphone: The Connection of Acoustic Modelling and Visual Art through Digital Image Processing": 1 + "The Confluence of Acoustic Modelling and Visual Art: A Study on the Role of Pro Tools in Sound Design": 1 + "Acoustic Modelling in Visual Art: A Practical Exploration of Sonic Visualiser": 1 + "From Paintbrush to Microphone: Understanding the Symbiosis of Acoustic Modelling and Visual Art through the Use of MIDI Technology.": 1 + "Introductory Computer Science: Web Development with Python, Flask, Bootstrap, RESTful APIs and Django Framework": 1 + "Advanced Web Development: Integrating Python, Flask, Bootstrap, RESTful APIs with MySQL Database": 1 + "Comprehensive Guide to Web Development: Python, Flask, Bootstrap, RESTful APIs and JavaScript Integration": 1 + "Computer Science Basics: Developing Web Apps with Python, Flask, Bootstrap, RESTful APIs, and HTML5": 1 + "In-Depth Web Development: Python, Flask, Bootstrap, RESTful APIs and Application of CSS3": 1 + "Introductory Computer Science: Building Web Applications with Python, Flask, Bootstrap, RESTful APIs and jQuery": 1 + "Python Web Development: In-depth Introduction to Flask, Bootstrap, RESTful APIs and Git Version Control": 1 + "Web Development Mastery: Python, Flask, Bootstrap, RESTful APIs and Implementing Server-Side Templating with Jinja2": 1 + "Full Stack Web Development: Python, Flask, Bootstrap, RESTful APIs with MongoDB Integration": 1 + "Web Development with Python: Comprehensive Study of Flask, Bootstrap, RESTful APIs and AJAX Implementation.": 1 + "Exploring Computer Science through Digital Art: Creating Textures and Patterns with Inkscape, GIMP, and Python Language": 1 + "Advancing Computer Science: Crafting Detailed Textures and Patterns using Inkscape, GIMP, and Vector Graphics": 1 + "Exploring Computer Science: Developing Intricate Textures and Patterns with Inkscape, GIMP, and Adobe Illustrator": 1 + "Practical Computer Science: Creating Unique Textures and Patterns with Inkscape, GIMP, and CSS Grid Layout": 1 + "In-depth Computer Science: Generating Geometric Textures and Patterns using Inkscape, GIMP, and WebGL": 1 + "Advanced Computer Science: Building Sophisticated Textures and Patterns with Inkscape, GIMP, and HTML5 Canvas": 1 + "Discovering Computer Science: Designing Digital Art Textures and Patterns with Inkscape, GIMP, and Blender 3D": 1 + "Exploring Computer Science: Creating Dynamic Textures and Patterns with Inkscape, GIMP, and JavaScript": 1 + "Mastering Computer Science: Crafting Digital Art Textures and Patterns using Inkscape, GIMP, and Shader Programming": 1 + "Unraveling Computer Science: Creating Complex Textures and Patterns with Inkscape, GIMP, and SVG Animation.": 1 + "Organic Chemistry: Detailed Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Kinetics Introduction with PyMOL": 1 + "Advanced Organic Chemistry: A Deep Dive into Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and NMR Spectroscopy ": 1 + "Organic Chemistry: Comprehensive Analysis of Molecules utilizing ChemDraw, VMD, AutoDock Tools, and Mass Spectrometry ": 1 + "Organic Chemistry and Bioinformatics: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Python Programming ": 1 + "Organic Chemistry: Molecule Analysis and Molecular Docking using ChemDraw, VMD, AutoDock Tools, and YASARA ": 1 + "Organic Chemistry: Molecule Analysis and Structure Visualization using ChemDraw, VMD, AutoDock Tools, and Jmol": 1 + "Organic Chemistry: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and In-depth Study of Reaction Mechanisms ": 1 + "Organic Chemistry and Biophysics: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Molecular Dynamics Simulations": 1 + "Organic Chemistry: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Study of Thermodynamics ": 1 + "Organic Chemistry: Molecule Analysis using ChemDraw, VMD, AutoDock Tools, and Introduction to Quantum Mechanics": 1 + "Economics 101: Exploring Supply and Demand with Game Theory and Nash Equilibrium ": 1 + "Economics 101: Understanding Supply and Demand Through Game Theory and Monte Carlo Simulations ": 1 + "Economics 101: Decoding Supply and Demand using Game Theory and Cournot Competition": 1 + "Economics 101: Delving into Supply and Demand with Game Theory and Bertrand Competition ": 1 + "Economics 101: Analyzing Supply and Demand Using Game Theory and Stochastic Models ": 1 + "Economics 101: Evaluating Supply and Demand Through Game Theory and Dynamic Programming ": 1 + "Economics 101: Investigating Supply and Demand with Game Theory and the Shapley Value ": 1 + "Economics 101: Interpreting Supply and Demand using Game Theory and Cooperative Games ": 1 + "Economics 101: Probing into Supply and Demand using Game Theory and Evolutionarily Stable Strategies ": 1 + "Economics 101: Unraveling Supply and Demand Through Game Theory and the Concept of Dominance": 1 + "Chemistry: Exploring Atoms and Molecules through Nuclear Magnetic Resonance and Fourier Transform Infrared Spectroscopy": 1 + "Chemistry: Analyzing Atoms and Molecules with Nuclear Magnetic Resonance and Mass Spectrometry ": 1 + "Chemistry: Unveiling Atomic Structures through Nuclear Magnetic Resonance and X-Ray Crystallography ": 1 + "Chemistry: Understanding Atoms and Molecules with Nuclear Magnetic Resonance and Scanning Electron Microscopy": 1 + "Chemistry: Delineating Molecular Structures through Nuclear Magnetic Resonance and Proton NMR": 1 + "Chemistry: Decoding Atoms and Molecules through Nuclear Magnetic Resonance and Cryo-electron Microscopy ": 1 + "Chemistry: Probing Atoms and Molecules via Nuclear Magnetic Resonance and Ultrafast Laser Spectroscopy ": 1 + "Chemistry: Dissecting Atomic Structures through Nuclear Magnetic Resonance and Quantum Mechanics": 1 + "Chemistry: Investigating Atoms and Molecules through Nuclear Magnetic Resonance and Atomic Force Microscopy": 1 + "Chemistry: Understanding Atoms and Molecules through Nuclear Magnetic Resonance and Computational Modeling Techniques": 1 + "Chemistry for Kids: An Introduction to Elements and Compounds through Microscope": 1 + "Chemistry for Kids: Utilizing Lab Experiments to Explore Elements and Compounds": 1 + "Chemistry for Kids: Learning Elements and Compounds with Chemical Reactions": 1 + "Chemistry for Kids: Exploring Elements and Compounds with pH Meters": 1 + "Chemistry for Kids: Introduction to Elements and Compounds using Molecular Models": 1 + "Chemistry for Kids: Understanding Elements and Compounds through Electrolysis": 1 + "Chemistry for Kids: Interactive Learning of Elements and Compounds with Virtual Reality": 1 + "Chemistry for Kids: Discovering Elements and Compounds with Spectroscopy": 1 + "Chemistry for Kids: Investigating Elements and Compounds using Chromatography": 1 + "Chemistry for Kids: Grasping Elements and Compounds with Atomic Theory": 1 + "Computer Science: Digital Art and Graphic Design Techniques with InDesign: Mastering Vector Graphics": 1 + "Computer Science: Advanced Layering Techniques in Digital Art using InDesign": 1 + "Computer Science: Interactive PDF Creation with InDesign for Graphic Design": 1 + "Computer Science: eBook Design and Publication using InDesign": 1 + "Computer Science: Digital Art and Graphic Design Techniques with InDesign: Understanding Typography": 1 + "Computer Science: Utilizing InDesign for Print Production and Digital Publishing": 1 + "Computer Science: Exploring Color Theory in Digital Art with InDesign": 1 + "Computer Science: Digital Art and Graphic Design Techniques with InDesign: Grid System Layouts": 1 + "Computer Science: InDesign for Advanced Photo Editing in Graphic Design": 1 + "Computer Science: Mastering Brochure Design using InDesign in Graphic Arts.": 1 + "Art of the Mind: Exploring Brain Structures Through Pencil Drawing": 1 + "The Brain in Detail: Understanding Neuroanatomy with Digital Illustration Tools": 1 + "Graphite and Grey Matter: Drawing Brain Structures with Graphite Pencils": 1 + "Artistic Neuroscience: Understanding Brain Structures via 3D Printing Technology": 1 + "The Science of Sketching: Drawing Brain Structures Using Graphical Tablets": 1 + "Neuroanatomy in Charcoal: Drawing and Understanding Brain Structures": 1 + "Rendering Reality: 3D Modeling of Brain Structures for Artists": 1 + "From Sketch to Synapse: Drawing Brain Structures Using Digital Pens": 1 + "Brain Artistry: Understanding Neuroscience through Watercolor Techniques": 1 + "The Interactive Brain: Developing VR Models of Brain Structures for Artists.": 1 + "An Introduction to Java Programming: Utilizing JUnit and Eclipse IDE for Effective Testing": 1 + "Deep Dive into Java Programming: Using JUnit and Jenkins for Continuous Integration Testing": 1 + "Mastering Java Programming: Leveraging JUnit and Mockito for Unit Testing": 1 + "Advanced Java Programming: Embracing JUnit and Selenium for Automated Testing": 1 + "Essential Java Programming: Employing JUnit and Maven for Build Automation and Testing": 1 + "Java Programming Essentials: Capitalizing on JUnit and Git for Version Control and Testing": 1 + "In-Depth Java Programming: Incorporating JUnit and Spring Boot for Microservice Testing": 1 + "Comprehensive Java Programming: Harnessing JUnit and Docker for Containerized Testing": 1 + "Java Programming Mastery: Merging JUnit and SonarQube for Code Quality Testing": 1 + "Java Programming Advanced Course: Utilizing JUnit and IntelliJ IDEA for Effective Application Testing": 1 + "Introduction to Computer Science: Utilizing Scratch Programming for 2D Vector Graphics": 1 + "Mastering Computer Science: Scratch Programming for 2D Bitmap Graphics": 1 + "Introduction to Computer Science: Scratch Programming for 2D Game Graphics": 1 + "Advanced Computer Science: Scratch Programming for 2D Animation Graphics": 1 + "Introduction to Computer Science: Scratch Programming for 2D Graphics with Python Integration": 1 + "Applied Computer Science: Scratch Programming for 2D Graphics Development": 1 + "Computer Science Essentials: Scratch Programming for 2D Interactive Graphics": 1 + "Computer Science Toolkit: Scratch Programming for 2D Graphics with Sprite Usage": 1 + "Exploring Computer Science: Scratch Programming for 2D Graphics and Asset Creation": 1 + "Computer Science Mastery: Scratch Programming for 2D Graphics and User Interface Design": 1 + "Music Appreciation: The Evolution of Electronic Music Genres - The Rise of Sampling Techniques through MIDI Controllers": 1 + "Music Appreciation: Understanding the Genres - The Role of Akai MPC in the Emergence of Digital Sampling": 1 + "The Evolution of Genres and the Birth of Sampling Techniques: An Exploration of Ableton Live": 1 + "Music Appreciation: Genres' Evolution - The Influence of Serato Sample on Digital Sampling Techniques": 1 + "The Rise of Sampling Techniques: How FL Studio Transformed Digital Sampling": 1 + "Music Appreciation: The Evolution of Genres - The Emergence of Digital Sampling through Native Instruments Maschine": 1 + "The Role of Record Producers in the Evolution of Genres and Rise of Sampling Techniques: A Case Study of Propellerhead Reason": 1 + "Music Appreciation: The Evolution of Genres - The Impact of Logic Pro on the Rise of Sampling Techniques": 1 + "The Emergence of Digital Sampling: A Comprehensive Study of the Pioneer DJ Toraiz SP-16": 1 + "Music Appreciation: The Evolution of Genres - Tracing the Rise of Sampling Techniques with the Roland SP-404.": 1 + "Mathematics: Understanding Number Theory with Abacus and Geometric Shapes using Pythagoras Theorem with Algebraic Solutions": 1 + "Mathematics: Diving into Fractions using Abacus and Geometry with Pythagoras Theorem and Calculators": 1 + "Mathematics: Exploring Base 10 Numbers with Abacus, Geometric Shapes and Pythagoras Theorem using Slide Rules": 1 + "Mathematics: Deciphering Decimals and Fractions with Abacus, Geometric Shapes using Pythagoras Theorem and Graphing Calculators": 1 + "Mathematics: Unraveling Binary Numbers with Abacus, Geometric Shapes & Pythagoras Theorem using Binary Code Concepts": 1 + "Mathematics: Investigating Prime Numbers with Abacus, Geometric Shapes using Pythagoras Theorem and Prime Number Theory": 1 + "Mathematics: Simplifying Square Roots with Abacus, Geometric Shapes, and Pythagoras Theorem using Root Extraction Method": 1 + "Mathematics: Exploring Rational Numbers with Abacus and Geometric Shapes using Pythagoras Theorem and Rational Number Theory": 1 + "Mathematics: Mastering the Multiples with Abacus, Geometric Shapes using Pythagoras Theorem and Multiplication Tables": 1 + "Mathematics: Exploring Numbers with Abacus, Geometric Shapes and Pythagoras Theorem: An Introduction to Logarithms.": 1 + "Elementary Mathematics: Using Ruler Measurements in Event Planning": 1 + "Elementary Mathematics: Understanding Space Allocation with CAD in Event Planning": 1 + "Elementary Mathematics: Applying Pythagorean Theorem in Event Planning Layouts": 1 + "Elementary Mathematics: Utilizing Spreadsheets for Budget Calculations in Event Planning": 1 + "Elementary Mathematics: Implementing Digital Calipers for Precise Measurements in Event Planning": 1 + "Elementary Mathematics: The Role of Geometry in Event Space Planning": 1 + "Elementary Mathematics: Using Floor Plan Software in Event Planning": 1 + "Elementary Mathematics: Event Planning with 3D Modeling Tools for Spatial Analysis": 1 + "Elementary Mathematics: Area and Perimeter Calculations in Event Planning": 1 + "Elementary Mathematics: Using Scale Models for Event Space Planning": 1 + "Mathematics: Understanding Baseball Analytics using Python and Matplotlib": 1 + "Mathematics: Fundamentals of Football Statistics with Python and Pandas Library": 1 + "Python for Sports: In-depth Basketball Statistics with Numpy": 1 + "Advanced Sports Statistics: Exploring Tennis Data with Python and Seaborn": 1 + "Soccer Data Analysis: Mathematics and Python with Scikit-Learn": 1 + "Sports Statistics with Python: Mastering Cricket Analytics using Jupyter Notebooks": 1 + "Mathematics: Python and PyTorch for Advanced Hockey Analytics": 1 + "Python for Athletes: Understanding Golf Statistics with TensorFlow": 1 + "Mathematics: Sports Analytics using Python and Keras: A focus on Volleyball": 1 + "Python for Sports: Exploring E-sports Statistics with Pygame.": 1 + "Music Composition with Sibelius Software: Exploring the Harmony of Rhymes in Children's Poetry Through MIDI Controllers": 1 + "Digital Editing in Music Composition: Using Sibelius Software and Auto-Tune for Children's Poetry Adaptations": 1 + "Music Production Techniques: Utilizing Sibelius Software and Pro Tools in Adapting Children's Poetry": 1 + "Advanced Music Composition: Harmonizing Children's Poetry with Sibelius Software and Logic Pro X": 1 + "The Art of Music Composition: Integrating Children's Poetry with Sibelius Software and the Ableton Live DAW": 1 + "Harmony in Music Composition: A Deep Dive into Children's Poetry and Sibelius Software with Focus on Cubase": 1 + "Music Composition Mastery: Using Sibelius Software and FL Studio in Transforming Children's Poetry": 1 + "Innovative Music Composition: A Study of Children's Poetry Harmonization Using Sibelius Software and Reason DAW": 1 + "Exploring Music Composition: The Role of Sibelius Software and the Reaper DAW in Children's Poetry Adaptation": 1 + "Music Composition and Technology: Applying Sibelius Software and Bitwig Studio to Create Harmonies in Children's Poetry": 1 + "Economics 101: Understanding the Concept of Equilibrium in Supply and Demand through Graphical Analysis": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: A Deep Dive into Price Elasticity": 1 + "Economics 101: Exploring the Concept of Equilibrium in Supply and Demand using Econometric Modeling": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: An Introduction to the Marshallian Cross Model": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: Understanding the Implications through Game Theory": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: Applying the Cobb-Douglas Production Function": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: A Study with Quantitative Analysis": 1 + "Economics 101: Analyzing the Concept of Equilibrium in Supply and Demand using Microeconomic Theory": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: A Focus on Marginal Utility": 1 + "Economics 101: The Concept of Equilibrium in Supply and Demand: Insights from Behavioral Economics.": 1 + "English: Exploring Metaphors and Similes through Shakespeare's Works - A Preliminary Study": 1 + "English: Metaphors and Similes in Modern Literature - A Deep Dive using Text Analysis Tools": 1 + "English: Metaphors and Similes - A Preliminary Study using Natural Language Processing": 1 + "English: Understanding Metaphors and Similes using Semantic Analysis Tools - A Preliminary Study": 1 + "English: Metaphors and Similes - An Initial Exploration using Machine Learning Algorithms": 1 + "English: The Role of Metaphors and Similes in Poetry - A Preliminary Study using AI Techniques": 1 + "English: A Preliminary Study of Metaphors and Similes in Classic Novels using Text Mining": 1 + "English: Comparative Analysis of Metaphors and Similes - A Preliminary Study using Corpus Linguistics": 1 + "English: Metaphors and Similes - A Preliminary Study using Sentiment Analysis Tools": 1 + "English: Analyzing Metaphors and Similes in Drama using Digital Humanities Techniques - A Preliminary Study": 1 + "Physics: The Role of Infrared Spectroscopy in Studying Gravity and Galaxies": 1 + "Physics: The Use of Doppler Shift in Spectroscopic Study of Gravity and Galaxies": 1 + "Physics: Application of Fourier Transform Infrared (FTIR) Spectroscopy in Gravity and Galaxy Studies": 1 + "Physics: Decoding Gravity and Galaxies using Raman Spectroscopy": 1 + "Physics: Understanding Gravity and Galaxies using Nuclear Magnetic Resonance (NMR) Spectroscopy": 1 + "Physics: The role of Ultraviolet (UV) Spectroscopy in Studying Gravity and Galaxies": 1 + "Physics: Gravitational Waves and Galaxies - A Spectroscopic Perspective": 1 + "Physics: The Impact of X-Ray Spectroscopy on our Understanding of Gravity and Galaxies": 1 + "Physics: Exploring Gravity and Galaxies through Mass Spectroscopy": 1 + "Physics: The Contribution of Time-Resolved Spectroscopy to the Study of Gravity and Galaxies.": 1 + "Art and Science: Creating Digital Art with Adobe Illustrator": 1 + "Art and Science: Exploring Digital Art through Photoshop": 1 + "Art and Science: The Role of 3D Modeling in Digital Art": 1 + "Art and Science: Digital Art Creation using Graphic Tablets": 1 + "Art and Science: Digital Art and Animation with Maya": 1 + "Art and Science: Understanding Digital Art through Vector Graphics": 1 + "Art and Science: Digital Art Exploration with Procreate": 1 + "Art and Science: Incorporating Augmented Reality in Digital Art": 1 + "Art and Science: Digital Art and the Power of Lightroom Editing": 1 + "Art and Science: Creating Digital Art using 3D Printing Technology": 1 + "Elementary Computing 110: Introduction to Arrays in Java": 1 + "Elementary Computing 110: Understanding Linked Lists in Python": 1 + "Elementary Computing 110: Exploring Hash Tables in C++": 1 + "Elementary Computing 110: Stacks in JavaScript: A Comprehensive Guide": 1 + "Elementary Computing 110: An Overview of Binary Trees in Ruby": 1 + "Elementary Computing 110: Introduction to Queue Data Structures in C#": 1 + "Elementary Computing 110: A Deep Dive into Graphs in Swift": 1 + "Elementary Computing 110: Understanding Heaps in Go Language": 1 + "Elementary Computing 110: Introduction to Tuples in PHP": 1 + "Elementary Computing 110: Learning Matrices in Kotlin": 1 + "Art 203: Mastering Pointillism with Aerosol Cans: A Comprehensive Study of Spray Paint Techniques": 1 + "Art 203: Exploring Pointillism through Airbrush: A Detailed Examination of Spray Paint Techniques": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques using Stencils": 1 + "Art 203: Pointillism Mastery with Spray Guns: An In-depth Study of Spray Paint Techniques": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques and Masking": 1 + "Art 203: Spray Paint Pointillism: Mastering the Technique with Compressed Air Tools": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques with Layering": 1 + "Art 203: The Art of Pointillism: A Comprehensive Study of Spray Paint Techniques using Acrylic Paints": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques and Texture Effects": 1 + "Art 203: Mastering Pointillism with HVLP (High Volume Low Pressure) Sprayers: A Comprehensive Study of Spray Paint Techniques": 1 + "Understanding WordPress: The Role of CMS in Streamlining International Business Communication": 1 + "Harnessing Drupal: A Deep Dive into Content Management Systems in Global Business Operations": 1 + "Joomla and Its Impact: Exploring CMS in International Business Communications": 1 + "Squarespace and Global Business: The Relevance of CMS in Cross-Border Communication": 1 + "Magento in Focus: The Influence of CMS on International Business Communication": 1 + "Exploring Wix: The Importance of CMS in Global Business Interaction": 1 + "Unpacking HubSpot: The Significance of CMS in International Trade Communication": 1 + "Weebly and Its Role: The Value of CMS in International Business Discourse": 1 + "Shopify Uncovered: The Effect of CMS on Global Business Correspondence": 1 + "Diving into Ghost: The Power of CMS in International Business Communication.": 1 + "The Impact of Uranium Enrichment on Nuclear Technology: A Physics Perspective": 1 + "The Revolutionary Role of Fusion Reactors in Modern Society: A Physics Perspective": 1 + "Quantum Physics and Its Influence on Nuclear Technology Development": 1 + "The Role of Radioactive Decay in Shaping Modern Nuclear Technology: A Physics Perspective": 1 + "The Contribution of Fission Energy to the Evolution of Nuclear Technology": 1 + "The Use of Neutron Scattering in Modern Nuclear Technology: A Physics Perspective": 1 + "Harnessing the Power of Nuclear Chain Reactions: A Physics Perspective": 1 + "The Influence of Quantum Tunneling on Modern Nuclear Technology": 1 + "The Impact of Control Rods in Nuclear Reactors: A Physics Perspective": 1 + "The Revolutionary Role of Neutron Generators in Nuclear Technology: A Physics Perspective": 1 + "English: Sports Journalism Basics with Microsoft Word": 1 + "English: Sports Journalism Basics - Adobe InDesign Essentials": 1 + "English: Introduction to Twitter for Sports Journalism": 1 + "English: Sports Journalism Basics: Mastering WordPress": 1 + "English: Sports Journalism Basics and Adobe Photoshop Techniques": 1 + "English: Podcasting Basics for Sports Journalism": 1 + "English: Sports Journalism Basics with SEO Techniques": 1 + "English: Sports Journalism Basics: Utilizing Google Analytics": 1 + "English: Sports Journalism Basics - Video Editing with Adobe Premiere": 1 + "English: Leveraging Social Media in Sports Journalism Basics": 1 + "Mathematics and Data Analysis: Using Excel's Power Query and Python to Understand World Hunger: Evaluating 10 Different Aquaponics Solutions.": 1 + "Applying Excel's Power Query and Tableau Dashboard in Mathematics: Detailed Analysis of World Hunger and Aquaponics Benefits.": 1 + "Excel's Power Query in Mathematics: Understanding World Hunger Through GIS Mapping and Aquaponics Benefits.": 1 + "In-depth Study of World Hunger: Mathematics, Excel's Power Query and SPSS in Evaluating Aquaponics Benefits.": 1 + "Mathematical Analysis of World Hunger: Application of Excel's Power Query and R Programming to Evaluate Aquaponics.": 1 + "Understanding World Hunger: Application of Excel's Power Query and SQL to Evaluate the Benefits of 10 Aquaponics Solutions.": 1 + "Utilizing Excel's Power Query and Google Analytics in Mathematics to Understand World Hunger: Evaluating the Impact of Aquaponics.": 1 + "Mathematical Approach to World Hunger: Using Excel's Power Query and Machine Learning to Evaluate Aquaponics.": 1 + "Understanding World Hunger: Excel's Power Query, Big Data Analysis and the Potential of Aquaponics.": 1 + "Mathematics and Excel's Power Query in the Age of AI: Understanding World Hunger and Evaluating Aquaponics Solutions.": 1 + "Physics: Introduction to Light Waves and the Use of Spectrometers": 1 + "Physics: Exploring Light Waves with Polarization Techniques": 1 + "Physics: Understanding Light Waves using Interferometers": 1 + "Physics: Light Waves and the Science behind Diffraction Gratings": 1 + "Physics: The Impact of Light Waves on Photomultiplier Tubes": 1 + "Physics: Interaction of Light Waves with Photonic Crystals": 1 + "Physics: The Role of Light Waves in Fiber Optic Communications": 1 + "Physics: Introduction to Light Waves and Laser Technology": 1 + "Physics: Light Waves and their Measurement through Photodetectors": 1 + "Physics: Light Waves and the Principle of Superposition": 1 + "Physics: Light Waves: A Deep Dive into Wave-Particle Duality": 1 + "Practical Machine Learning Algorithms in Python with Matplotlib Visualization Using Decision Trees": 1 + "Exploring Support Vector Machines in Python: A Practical Machine Learning Course with Matplotlib Visualization": 1 + "Practical Machine Learning in Python Using Neural Networks and Matplotlib Visualization": 1 + "Hands-On Machine Learning Algorithms in Python with Matplotlib Visualization and TensorFlow Integration": 1 + "Practical Machine Learning Algorithms in Python with Matplotlib Visualization: A Deep Dive into K-Nearest Neighbors": 1 + "Advanced Python course: Practical Machine Learning Algorithms with Matplotlib Visualization and Clustering Techniques": 1 + "Practical Machine Learning Algorithms in Python with Matplotlib Visualization: A Focus on Random Forests": 1 + "Practical Application of Gradient Boosting Algorithms in Python: A Machine Learning Course with Matplotlib Visualization": 1 + "Practical Machine Learning Algorithms in Python with Matplotlib Visualization: Understanding Naive Bayes Classifiers": 1 + "Using Logistic Regression in Python: A Practical Machine Learning Course with Matplotlib Visualization.": 1 + "Point Neurons in Computational Neuroscience: A Deep Dive into Neural Networks using Python": 1 + "Exploring Neural Networks with MATLAB in Point Neurons within Computational Neuroscience": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: Utilizing Machine Learning": 1 + "A Closer Look at Neural Networks: An In-depth Study of Point Neurons in Computational Neuroscience using TensorFlow": 1 + "Point Neurons in Computational Neuroscience: Neural Networks Analysis with R Programming": 1 + "Application of Artificial Intelligence in Point Neurons and Neural Networks within Computational Neuroscience": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: A Practical Approach with PyTorch": 1 + "Understanding Point Neurons in Computational Neuroscience: Neural Networks Exploration using CUDA": 1 + "Point Neurons in Computational Neuroscience: An Examination of Neural Networks through Deep Learning": 1 + "Point Neurons in Computational Neuroscience: Neural Networks Dissection with Data Mining Techniques": 1 + "Elementary: Exploring Plate Tectonics and Basic Geography using ArcGIS Interactive Mapping Tool": 1 + "Elementary: Studying Plate Tectonics and Basic Geography with QGIS Software for Interactive Mapping": 1 + "Elementary: Understanding Plate Tectonics and Basic Geography through Google Earth Pro's Interactive Mapping": 1 + "Elementary: Learning Plate Tectonics and Basic Geography with Esri's Story Maps: An Interactive GIS Tool": 1 + "Elementary: A Study of Plate Tectonics and Basic Geography using Python Programming for GIS Mapping": 1 + "Elementary: A Deep Dive into Plate Tectonics and Basic Geography with the aid of Mapbox for Interactive GIS Mapping": 1 + "Elementary: Exploring Plate Tectonics and Basic Geography with JavaScript API for GIS Mapping": 1 + "Elementary: Mastering Plate Tectonics and Basic Geography using OpenStreetMap for Interactive GIS Mapping": 1 + "Elementary: Introduction to Plate Tectonics and Basic Geography with AutoCAD Map 3D for Interactive GIS Mapping": 1 + "Elementary: Studying Plate Tectonics and Basic Geography using GeoDa Software for Interactive GIS Mapping": 1 + "Mathematics: Understanding Number Theory with Abacus and Geometric Shapes using Pythagoras Theorem and Newton-Raphson Method for Algebraic Solutions": 1 + "Mathematics: Exploring Number Theory with Abacus and Geometric Shapes using Pythagoras Theorem and Quadratic Formula for Algebraic Solutions": 1 + "Mathematics: Mastering Number Theory with Abacus, Geometric Shapes and Calculus using Pythagoras Theorem for Algebraic Solutions": 1 + "Mathematics: Interpreting Number Theory with Abacus, Geometric Shapes using Pythagoras Theorem and Fractional Exponents for Algebraic Solutions": 1 + "Mathematics: Analyzing Number Theory with Abacus, Geometric Shapes and Graphing Calculator using Pythagoras Theorem for Algebraic Solutions": 1 + "Mathematics: Unraveling Number Theory with Abacus, Geometric Shapes using Pythagoras Theorem and Linear Equations for Algebraic Solutions": 1 + "Mathematics: Decoding Number Theory with Abacus, Geometric Shapes using Pythagoras Theorem and Polynomial Factorisation for Algebraic Solutions": 1 + "Mathematics: Comprehending Number Theory with Abacus, Geometric Shapes using Pythagoras Theorem and Gaussian Elimination for Algebraic Solutions": 1 + "Mathematics: Grasping Number Theory with Abacus, Geographic Shapes using Pythagoras Theorem and Geometric Series for Algebraic Solutions": 1 + "Mathematics: Understanding Number Theory with Abacus, Geometric Shapes using Pythagoras Theorem and Matrix Algebra for Algebraic Solutions": 1 + "Music: Mastering the Art of Live Performance with Pro Tools": 1 + "Music: Utilizing Ableton Live for Optimizing Musical Arrangements": 1 + "Music: Harnessing Logic Pro X for Live Performance Arrangements": 1 + "Music: Understanding Musical Arrangements for Live Performance through MIDI Technology": 1 + "Music: Exploring Microphone Techniques for Live Performance Arrangements": 1 + "Music: Improving Live Performance through EQ and Mixing Concepts": 1 + "Music: Using Digital Audio Workstations (DAWs) for Live Performance Arrangements": 1 + "Music: Understanding the Role of Reverb and Delay in Live Performance Arrangements": 1 + "Music: Integrating Stage Lighting with Musical Arrangements for Live Performances": 1 + "Music: Applying Acoustic Concepts for Optimized Live Performance Arrangements.": 1 + "Social Studies: Analyzing Historical Events using Archival Research Techniques": 1 + "Social Studies: Decoding Historical Events with Cryptographic Tools": 1 + "Social Studies: Evaluating Historical Events through Geographic Information Systems": 1 + "Social Studies: Interpreting Historical Events using Text Analysis Software": 1 + "Social Studies: Examining Historical Events with Oral History Techniques": 1 + "Social Studies: Understanding Historical Events through Comparative Analysis Methods": 1 + "Social Studies: Investigating Historical Events using Digital Humanities Tools": 1 + "Social Studies: Exploring Historical Events with Anthropological Fieldwork Techniques": 1 + "Social Studies: Unraveling Historical Events with Forensic Science Tools": 1 + "Social Studies: Scrutinizing Historical Events using Big Data Analytics": 1 + "Social Studies: Dissecting Historical Events through the Lens of Cultural Materialism.": 1 + "Elementary Education 305: Utilizing Google Expeditions in Augmented Reality for Cooperative Games": 1 + "Elementary Education 305: Integrating ARCore in Augmented Reality for Cooperative Learning Games": 1 + "Elementary Education 305: Incorporating HoloLens in Augmented Reality for Cooperative Educational Games": 1 + "Elementary Education 305: Exploring Augmented Reality Apps in Cooperative Games Using Unity Engine": 1 + "Elementary Education 305: Applying ARKit in Augmented Reality Apps for Cooperative Classroom Games": 1 + "Elementary Education 305: Implementing Vuforia in Augmented Reality for Cooperative Learning Games": 1 + "Elementary Education 305: Exploring Augmented Reality Apps in Cooperative Games Using Unreal Engine": 1 + "Elementary Education 305: Using Blender for Augmented Reality in Cooperative Education Games": 1 + "Elementary Education 305: Exploring Augmented Reality in Cooperative Games Through 3D Modeling": 1 + "Elementary Education 305: Utilizing A-Frame in Augmented Reality for Cooperative Learning Games": 1 + "Elementary Mathematics: Analyzing Variables in Algebra Using MatLab and Python's Numpy Library": 1 + "Elementary Mathematics: Exploring Variables in Algebra Using MatLab and the Quadratic Formula": 1 + "Elementary Mathematics: Deep Dive into Variables in Algebra Using MatLab and Graph Theory": 1 + "Elementary Mathematics: Understanding Variables in Algebra Using MatLab with the Gauss-Jordan Method": 1 + "Elementary Mathematics: Analyzing Variables in Algebra Using MatLab and Linear Regression Techniques": 1 + "Elementary Mathematics: Mastering Variables in Algebra Using MatLab and Factorization": 1 + "Elementary Mathematics: Simplifying Variables in Algebra Using MatLab and the Euclidean Algorithm": 1 + "Elementary Mathematics: Deciphering Variables in Algebra Using MatLab and Matrix Multiplication": 1 + "Elementary Mathematics: Analyzing Variables in Algebra Using MatLab and the Concept of Absolute Value": 1 + "Elementary Mathematics: Solving Variables in Algebra Using MatLab and the Binomial Theorem.": 1 + "Brain Wonders: Exploring Neuroscience with EEG for Young Minds": 1 + "Brain Wonders: An Introduction to Neuroplasticity for Young Minds": 1 + "Brain Wonders: The Role of Neurotransmitters in Neuroscience for Young Minds": 1 + "Brain Wonders: Understanding the Brain through MRI - A Course for Young Minds": 1 + "Brain Wonders: The Impact of Neuropsychology on Young Minds": 1 + "Brain Wonders: Delving into Cognitive Neuroscience for Young Minds": 1 + "Brain Wonders: A Young Mind's Guide to the Neural Network": 1 + "Brain Wonders: The Application of Transcranial Magnetic Stimulation in Neuroscience for Young Minds": 1 + "Brain Wonders: Exploring the Neuroscience of Memory for Young Minds": 1 + "Brain Wonders: Understanding Neurogenesis in Young Minds": 1 + "Geography: Exploring Our Global Community through GIS Technology": 1 + "Geography: Navigating Our Global Community with Satellite Imaging": 1 + "Geography: Understanding Our Global Community through Population Density Studies": 1 + "Geography: Exploring Our Global Community with Topographical Maps": 1 + "Geography: Navigating Our Global Community using GPS Technology": 1 + "Geography: Surveying Our Global Community with Drone Technology": 1 + "Geography: Exploring Our Global Community through Climate Change Analysis": 1 + "Geography: Navigating Our Global Community with Digital Mapping Tools": 1 + "Geography: Understanding Our Global Community through Geopolitical Structures": 1 + "Geography: Surveying Our Global Community with Remote Sensing Technology": 1 + "Art: Understanding Modern Art: A Comprehensive Study on Collage Techniques using Scissors": 1 + "Art: Understanding Modern Art: Exploring Collage Techniques with Glue Sticks": 1 + "Art: Understanding Modern Art: The Role of Decoupage in Collage Techniques": 1 + "Art: Understanding Modern Art: A Deep Dive into Digital Collage Techniques using Photoshop": 1 + "Art: Understanding Modern Art: Mastering Collage Techniques with Magazine Cut-outs": 1 + "Art: Understanding Modern Art: A Study on Collage Techniques using Mixed Media": 1 + "Art: Understanding Modern Art: A Focus on Collage Techniques using Torn Paper": 1 + "Art: Understanding Modern Art: The Influence of Dadaism on Collage Techniques": 1 + "Art: Understanding Modern Art: A Study on Collage Techniques using Fabric Scraps": 1 + "Art: Understanding Modern Art: The Art of Collage Making using Found Objects.": 1 + "Geography: Surveying Our Global Community with Lidar Remote Sensing Technology": 1 + "Geography: Utilizing Satellite Imagery in Surveying our Global Community": 1 + "Geography: Understanding Our Global Community with GIS and Remote Sensing Technology ": 1 + "Geography: Monitoring Climate Change: A Remote Sensing Approach ": 1 + "Geography: Radar Technology and Its Role in Surveying Our Global Community": 1 + "Geography: Using Drone Technology in Remote Sensing to Survey Our Global Community": 1 + "Geography: Understanding Land Use through Remote Sensing Technology": 1 + "Geography: A Deep Dive into Thermal Imaging Technology in Surveying Our Global Community": 1 + "Geography: Surveying Our Global Community with Remote Sensing and Photogrammetry Technology": 1 + "Geography: Using Multispectral Imaging in Remote Sensing to Understand Our Global Community.": 1 + "Solar System Sleuths: Analyzing Cosmic Phenomena with Chandra X-ray Observatory, Spectroscopy, and Hubble Space Telescope": 1 + "Solar System Sleuths: Mars Exploration using Chandra X-ray Observatory and Spectroscopy ": 1 + "Solar System Sleuths: Probing Jupiter's Atmosphere with Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Analyzing Cosmic Phenomena with Chandra X-ray Observatory, Spectroscopy, and Radio Telescopes": 1 + "Solar System Sleuths: Exploring Venus with Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Saturn's Rings Analysis using Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Analyzing Cosmic Phenomena with Chandra X-ray Observatory, Spectroscopy, and Infrared Imaging ": 1 + "Solar System Sleuths: Probing Neptune's Moons with Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Examining Asteroid Belts using Chandra X-ray Observatory and Spectroscopy": 1 + "Solar System Sleuths: Studying Comet Composition with Chandra X-ray Observatory, Spectroscopy, and Ice Penetrating Radar.": 1 + "Language Arts: Exploring Storytelling through Song using Ableton Live Software": 1 + "Language Arts: Utilizing GarageBand for Storytelling through Audio Song Composition": 1 + "Language Arts: Insights into Storytelling through Song using Pro Tools Audio Production": 1 + "Language Arts: Storytelling through Song: A Deep Dive into Audacity Audio Software": 1 + "Language Arts: Storytelling through Song using FL Studio Audio Workstations: An Exploration": 1 + "Language Arts: Storytelling through Song using Logic Pro X Digital Audio Workstations": 1 + "Language Arts: Understanding Storytelling through Song using Cubase Audio Workstations": 1 + "Language Arts: Exploration of Storytelling through Song using Reaper Audio Production Software": 1 + "Language Arts: Storytelling through Song using Soundtrap: A Digital Audio Workstation Journey": 1 + "Language Arts: The Art of Storytelling through Song using Studio One Audio Software": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel, SQL, and Python": 1 + "Advanced Logic: Implementing Truth Tables in Excel and SQL with Visual Basic": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel, SQL, and R Programming": 1 + "Advanced Logic: Exploring Elementary Logic with Truth Tables using Excel, SQL, and Big Data Analysis": 1 + "Advanced Logic: Implementing Truth Tables in Excel and SQL using Cloud Computing": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel, SQL, and Data Visualization Tools": 1 + "Advanced Logic: Analyzing Elementary Logic with Truth Tables using Excel, SQL, and Java Script": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel, SQL, and Machine Learning Algorithms": 1 + "Advanced Logic: Applying Truth Tables in Excel and SQL with Cyber Security Measures": 1 + "Advanced Logic: Mastering Elementary Logic with Truth Tables using Excel, SQL, and Blockchain Technology": 1 + "Logic: Introduction to Formal Logic with Propositional Calculus": 1 + "Logic: Introduction to Formal Logic using Truth Tables": 1 + "Logic: Introduction to Formal Logic and Set Theory": 1 + "Logic: Exploring Formal Logic through Predicate Logic": 1 + "Logic: Introduction to Formal Logic with Boolean Algebra": 1 + "Logic: Introduction to Formal Logic: A Deep Dive into Symbolic Logic": 1 + "Logic: Introduction to Formal Logic and its Application in Computer Science": 1 + "Logic: Introduction to Formal Logic using Logic Gates": 1 + "Logic: Introduction to Formal Logic: Understanding Quantifiers": 1 + "Logic: Introduction to Formal Logic with a Focus on Syllogisms": 1 + "Logic: Introduction to Formal Logic: An Analysis of Logical Fallacies": 1 + "Solar System Sleuths: Unveiling Galactic Mysteries with Chandra X-ray Observatory and Hubble Telescope": 1 + "Planetary Explorers: Analyzing Cosmic Phenomena using Chandra X-ray Observatory and Doppler Spectroscopy": 1 + "Celestial Detectives: Harnessing the Power of Chandra X-ray Observatory and Radio Telescopes for Cosmic Analysis": 1 + "Cosmic Investigators: Mining Stellar Secrets with Chandra X-ray Observatory and Gravitational Lensing": 1 + "Star Stalkers: Deciphering Cosmic Phenomena with Chandra X-ray Observatory and Spectral Analysis": 1 + "Universe Undercover: Examining Cosmic Phenomena with Chandra X-ray Observatory and Redshift Measurement": 1 + "Galaxy Gumshoes: Unlocking Cosmic Insights with Chandra X-ray Observatory and Black Hole Theory": 1 + "Space Sleuths: Probing Stellar Mysteries with Chandra X-ray Observatory and Quantum Physics": 1 + "Nebula Navigators: Dissecting Cosmic Phenomena with Chandra X-ray Observatory and Dark Matter Exploration": 1 + "Astral Analysts: Investigating Cosmic Phenomena with Chandra X-ray Observatory and Exoplanet Detection Techniques": 1 + "Music: Unraveling Natural Rhythms in Timpani through Digital Sampling Techniques in Reason using Propellerhead's ReCycle Software": 1 + "Music: Exploring Timpani Rhythms through Digital Sampling and Time-Stretching Techniques in Reason": 1 + "Music: Mastery of Natural Timpani Rhythms through Advanced Digital Sampling in Reason and Pro Tools": 1 + "Music: Harnessing Natural Timpani Rhythms through Digital Sampling Techniques and MIDI Control in Reason": 1 + "Music: Practical Exploration of Natural Timpani Rhythms using Digital Sampling Techniques in Reason and Ableton Live": 1 + "Music: Unraveling Natural Timpani Rhythms through Digital Sampling Techniques in Reason using Spectral Analysis": 1 + "Music: Integration of Natural Timpani Rhythms through Digital Sampling Techniques in Reason and Cubase": 1 + "Music: Capturing Natural Timpani Rhythms through Advanced Digital Sampling Techniques in Reason using Sound Forge": 1 + "Music: Decoding Natural Timpani Rhythms with FFT (Fast Fourier Transform) and Digital Sampling Techniques in Reason": 1 + "Music: Unraveling Natural Timpani Rhythms through Digital Sampling Techniques in Reason with the use of Melodyne Editor.": 1 + "Physical Education: The Role of Aerobic Exercise in Enhancing Neuroplasticity ": 1 + "Physical Education: The Impact of Resistance Training on Cognitive Functions": 1 + "Physical Education: Yoga's Influence on Brain Health and Mental Well-being": 1 + "Physical Education: Exploring the Relation between Tai Chi and Brain Health": 1 + "Physical Education: The Benefits of Pilates for Cognitive Improvement": 1 + "Physical Education: Utilizing Virtual Reality in Exercise for Boosting Brain Health": 1 + "Physical Education: The Effect of High-Intensity Interval Training (HIIT) on Brain Health": 1 + "Physical Education: Assessing the Impact of Exercise Bikes on Cognitive Performance": 1 + "Physical Education: The Use of Fitness Trackers in Monitoring Exercise's Impact on Brain Health": 1 + "Physical Education: Swimming as a Tool for Enhancing Brain Health": 1 + "Physical Education: The Role of Treadmill Workouts in Promoting Brain Health": 1 + "Computer Science: Advanced 3D Modeling for Game Design using Unity, Blender and Python scripting": 1 + "Computer Science: Creating Realistic Environments in Game Design using Unity, Blender, and HDR Lightmaps": 1 + "Computer Science: Character Design in 3D Modeling for Game Design using Unity, Blender, and ZBrush": 1 + "Computer Science: Procedural Texture Mapping in 3D Modeling for Game Design using Unity, Blender, and Substance Designer": 1 + "Computer Science: Physics-based Rendering in 3D Modeling for Game Design using Unity, Blender, and NVIDIA PhysX": 1 + "Computer Science: Real-time Animation in 3D Modeling for Game Design using Unity, Blender, and Mecanim": 1 + "Computer Science: 3D Modeling for Virtual Reality Game Design using Unity, Blender, and Oculus SDK": 1 + "Computer Science: Advanced Physics in 3D Modeling for Game Design using Unity, Blender, and Havok Physics": 1 + "Computer Science: 3D Modeling for Multiplayer Game Design using Unity, Blender, and Photon Networking": 1 + "Computer Science: Adaptive Audio in 3D Modeling for Game Design using Unity, Blender, and FMOD Studio": 1 + "Computer Science: Asset Pipeline in 3D Modeling for Game Design using Unity, Blender, and Git version control": 1 + "Analyzing Narrative Arcs in Sports Literature using Propp's Morphology": 1 + "Storytelling in Sports Literature: A Study of Plot Structures using Freytag's Pyramid": 1 + "Manipulating Tension in Sports Literature: A Study of Plot Structures using Suspense": 1 + "Character Development in Sports Literature: A Study of Plot Structures using Archetypes": 1 + "Storytelling in Sports Literature: A Study of Plot Structures using the Hero's Journey": 1 + "Plot Evolution in Sports Literature: A Study using Todorov's Narrative Theory": 1 + "Exploring Conflict in Sports Literature: A Plot Analysis using Binary Oppositions": 1 + "Storytelling in Sports Literature: A Study of Plot Structures using Dramatic Irony": 1 + "The Role of Foreshadowing in Sports Literature: A Study of Plot Structures": 1 + "Storytelling in Sports Literature: A Study of Plot Structures using Flashbacks and Flashforwards.": 1 + "Exploring Mitochondrial Structures with Electron Microscopy: A Comprehensive Biology Course": 1 + "Biology: Cellular Structures and Mitochondria - A Detailed Study using Fluorescence Microscopy": 1 + "Deep Dive into Mitochondrial Structures: A Focus on Bioinformatics in Biology": 1 + "Biology: Understanding Mitochondrial Structures through the Lens of Cryo-Electron Microscopy": 1 + "Cell Biology: A Detailed View of Mitochondria using Confocal Microscopy": 1 + "Biology: Mitochondrial Structures Analyzed through Atomic Force Microscopy": 1 + "Investigating Mitochondrial Structures: A Biology Course using the Concept of Genetic Engineering": 1 + "Biology: Understanding Mitochondria through the Scope of Epigenetics and Cellular Structures": 1 + "Mitochondrial Dynamics: A Biology Course Focusing on Cellular Structures and the Role of Flow Cytometry": 1 + "Unraveling Mitochondrial Structures: A Study of Cellular Biology through Two-Photon Excitation Microscopy.": 1 + "Sports Economics: Applying Monte Carlo Simulation for Risk Assessment in Revenue Management": 1 + "Sports Economics: Utilizing Net Present Value Method for Financial Evaluation of Revenue Management": 1 + "Sports Economics: Exploring Revenue Management through the Lens of Game Theory": 1 + "Sports Economics: The Role of Statistical Modelling Tools in Revenue Management Risk Assessment": 1 + "Sports Economics: A Deep Dive into the Black-Scholes Model for Financial Evaluation": 1 + "Sports Economics: Investigating Revenue Management Using Capital Asset Pricing Model": 1 + "Sports Economics: A Study of Revenue Management Using Decision Tree Analysis for Risk Assessment": 1 + "Sports Economics: Applying Risk-Adjusted Return on Capital in Revenue Management": 1 + "Sports Economics: Harnessing Value at Risk (VaR) Methodology in Revenue Management": 1 + "Sports Economics: The Impact of Real Options Analysis on Revenue Management Risk Assessment.": 1 + "Computer Science: Introduction to Graphic Design - Exploring Color Theory with Adobe Color and Photoshop": 1 + "Computer Science: Advanced Techniques in Graphic Design - Exploring Color Theory with Adobe Illustrator": 1 + "Computer Science: Graphic Design Essentials - An In-depth Study of Color Theory with Adobe Color and InDesign": 1 + "Computer Science: Graphic Design Mastery - Understanding Color Theory with Adobe Color and Lightroom": 1 + "Computer Science: Comprehensive Guide to Graphic Design - Analyzing Color Theory with Adobe Color and Acrobat Pro": 1 + "Computer Science: Graphic Design for Beginners - Exploring Color Theory with Adobe Color and Premiere Pro": 1 + "Computer Science: Professional Graphic Design - Mastering Color Theory with Adobe Color and Dreamweaver": 1 + "Computer Science: Fundamental Concepts of Graphic Design - Exploring Color Theory with Adobe Color and After Effects": 1 + "Computer Science: Graphic Design - A Practical Approach to Color Theory with Adobe Color and XD": 1 + "Computer Science: Innovative Graphic Design - Applying Color Theory with Adobe Color and Spark.": 1 + "Organic Chemistry: Understanding Molecular Structures through NMR Spectroscopy": 1 + "Organic Chemistry: Decoding Molecular Structures with X-ray Crystallography": 1 + "Organic Chemistry: Analysis of Molecular Structures using Mass Spectrometry": 1 + "Organic Chemistry: Insight into Molecular Structures through Infrared Spectroscopy": 1 + "Organic Chemistry: Understanding Molecular Structures via Computational Chemistry": 1 + "Organic Chemistry: Exploring Molecular Structures with Electron Microscopy": 1 + "Organic Chemistry: Unveiling Molecular Structures using the Valence Shell Electron Pair Repulsion (VSEPR) Theory": 1 + "Organic Chemistry: Interpreting Molecular Structures through Nuclear Quadrupole Resonance": 1 + "Organic Chemistry: Study of Molecular Structures with the aid of Gas Chromatography ": 1 + "Organic Chemistry: Understanding Molecular Structures via Quantum Mechanics": 1 + "The Revolutionary Role of Sodium Citrate in Blood Transfusion During World Wars: A Historical and Emotional Narrative": 1 + "The Evolution of Blood Donation and the Effect of Refrigeration Technology During the World Wars: Emotional Narratives": 1 + "The Impact of Blood Type Discovery on Blood Transfusion During World Wars: Emotional and Historical Perspectives": 1 + "Blood Transfusion Advances During World Wars: The Emotional Narratives of Vacuum Extraction Technology": 1 + "The Impact of Blood Transfusion Advances During World Wars: The Emotional Narratives Focused on Anticoagulants": 1 + "History: The Role of Serum Therapy in Blood Transfusion During World Wars - Emotional Narratives": 1 + "The Emotional and Historical Impact of Blood Plasma Preservation on Blood Transfusion During World Wars": 1 + "The Influence of Sterilization Techniques on Blood Transfusion During the World Wars: Emotional Narratives": 1 + "Emotional and Historical Reflections: The Impact of Intravenous Therapy on Blood Transfusion During World Wars": 1 + "The Emotional Narratives of Blood Transfusion: The Historical Impact of the Syringe and Needle During World Wars.": 1 + "Sustainable Manufacturing of Soccer Cleats: Utilising CAD/CAM Software in CNC Machining and Injection Moulding of PLA Biodegradable Plastics": 1 + "Incorporating 3D Printing in the Sustainable Manufacturing of Soccer Cleats: CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Using Finite Element Analysis in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Integrating Green Chemistry Principles in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Exploring IoT Applications in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Employing Life Cycle Assessment in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Energy Efficiency in Sustainable Manufacturing of Soccer Cleats: CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Using Artificial Intelligence for Optimal CNC Machining and Injection Moulding of Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Incorporating Lean Manufacturing Principles in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Sustainable Manufacturing of Soccer Cleats: Exploring the Role of Robotics in CNC Machining and Injection Moulding Techniques with Biodegradable Plastics": 1 + "Cognitive Logic and Essential Concepts: Exploring Logical Fallacies with Brain Teasers using Syllogistic Logic": 1 + "Cognitive Logic: Unraveling Essential Concepts and Logical Fallacies with Brain Teasers and Digital Mind Maps": 1 + "Cognitive Logic: Using the Truth Table to Dissect Essential Concepts and Logical Fallacies with Brain Teasers": 1 + "Cognitive Logic and Essential Concepts: A Deep Dive into Logical Fallacies with Brain Teasers using Semantic Paradoxes": 1 + "Cognitive Logic: Essential Concepts and Logical Fallacies Explored through Brain Teasers and Propositional Calculus": 1 + "Cognitive Logic: Applying Formal Logic to Uncover Essential Concepts and Logical Fallacies with Brain Teasers": 1 + "Cognitive Logic: Essential Concepts and Logical Fallacies - A Journey with Brain Teasers and the Predicate Logic": 1 + "Cognitive Logic: Exploring Essential Concepts and Logical Fallacies with Brain Teasers and the Modus Ponens Tool": 1 + "Cognitive Logic: Dissecting Essential Concepts and Logical Fallacies through Brain Teasers using the Reductio ad Absurdum Approach": 1 + "Cognitive Logic: Essential Concepts and Logical Fallacies - Unveiling Truths with Brain Teasers and the Deductive Reasoning Technique.": 1 + "English: Advanced Spelling and Vocabulary Enhancement with Grammarly": 1 + "English: Vocabulary Expansion and Spelling Accuracy through Quizlet": 1 + "English: Spelling Precision and Lexical Enhancement using Google Docs Spell Checker": 1 + "English: Vocabulary Boosting and Spelling Correction with Microsoft Word Tools": 1 + "English: Spelling Mastery and Vocabulary Enrichment through Duolingo": 1 + "English: Enhancing Vocabulary and Spelling Precision with Anki Flashcards": 1 + "English: Spelling Improvement and Vocabulary Growth via Kindle's Word Wise Feature": 1 + "English: Spelling and Vocabulary Augmentation through Evernote's Text Editor": 1 + "English: Vocabulary Enlargement and Spelling Refinement using Rosetta Stone": 1 + "English: Spelling and Vocabulary Development with the Use of GrammarCheck Tools": 1 + "Introductory Computer Science: Integrating SQLite with Python and Flask for Web Development": 1 + "Web Development Basics: Using PostgreSQL in Python and Flask for Data Driven Applications": 1 + "Python and Flask Web Development: Implementing SQL with MySQL Database": 1 + "Intermediate Python and Flask: Incorporating SQL with Django ORM for Web Development": 1 + "Python Web Development: Using SQL Alchemy with Flask for Database Handling": 1 + "Understanding Web Development: Incorporating SQL with Python, Flask and Jinja2 Template Engine": 1 + "Python and Flask Web Development: SQL Integration with PyMySQL Connector": 1 + "SQL in Web Development: Python, Flask and MongoDB Integration": 1 + "Advanced Computer Science: SQL, Python, Flask, and Bootstrap Integration for Web Development": 1 + "Python, Flask and SQL: Web Development with W3.CSS Framework Integration.": 1 + "Fun with Formulas: Exploring Chemical Reactions for Kids Using a Microscope": 1 + "Unleashing Science: Fun with pH Scale and Chemistry for Children": 1 + "Young Einstein: An Exploration of Chemical Bonds for Kids": 1 + "Microscopic Marvels: Chemistry Experiments for Kids with Microscopes": 1 + "Kids in Lab Coats: Fun with Chemistry and Bunsen Burners": 1 + "Mad About Molecules: A Kid's Chemistry Course on Atomic Structure": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids": 1 + "Playing with Polymers: Chemistry Adventures for Kids": 1 + "Periodic Table Pioneers: Chemistry Explorations for Kids": 1 + "Lab Rascals: Exploring Chemistry for Kids Using Test Tubes and Beakers": 1 + "Philosophy: Exploring Ethical Concepts Through Socratic Dialogues": 1 + "Philosophy: Introduction to Ethical Concepts Using Kantian Ethics": 1 + "Philosophy: Analyzing Ethical Concepts with Utilitarianism": 1 + "Philosophy: Introduction to Ethical Concepts and Virtue Ethics": 1 + "Philosophy: Deconstructing Ethical Concepts with Postmodernism": 1 + "Philosophy: Introduction to Ethical Concepts - A deep dive into Egoism": 1 + "Philosophy: Unpacking Ethical Concepts with Existentialism": 1 + "Philosophy: Introduction to Ethical Concepts Through the lens of Deontology": 1 + "Philosophy: Exploring Ethical Concepts Using Social Contract Theory": 1 + "Philosophy: Introduction to Ethical Concepts and the Trolley Problem": 1 + "Physical Education: Utilizing Vicon Motion Capture Technology in Astronaut Training Techniques ": 1 + "Astronaut Training Techniques: Enhancing Physical Education through 3D Motion Capture and Haptic Feedback Systems": 1 + "Physical Education: A Detailed Study on Astronaut Training with 3D Motion Capture and Virtual Reality ": 1 + "Integrating 3D Motion Capture and Inertial Sensors in Physical Education: Astronaut Training Techniques": 1 + "The Role of Kinect Sensor in Astronaut Training Techniques: A Physical Education Perspective on 3D Motion Capture": 1 + "Physical Education: Exploiting 3D Motion Capture and Electroencephalography in Astronaut Training Techniques": 1 + "Astronaut Training Techniques: Emphasizing Physical Education with 3D Motion Capture and Force Platforms": 1 + "Physical Education: Astronaut Training Techniques Leveraging 3D Motion Capture and EMG Analysis": 1 + "In-Depth Use of 3D Motion Capture and Wearable Technology in Physical Education: Astronaut Training Techniques": 1 + "Physical Education: Astronaut Training Techniques with 3D Motion Capture and Biofeedback Systems.": 1 + "Industrial Revolution: The Power Loom, Railways, English Trade Language, and the Impact of Steam Engines": 1 + "The Power Loom and Cotton Gin: Key Technologies in the Industrial Revolution and English Trade Language": 1 + "Industrial Revolution: Exploring the Power Loom, Railways, English Trade Language, and the Introduction of Telegraph": 1 + "Railways and the Power Loom: Unpacking the Industrial Revolution and the Role of Coal Mining": 1 + "English Trade Language in the Industrial Revolution: A Deep Dive into the Power Loom, Railways, and Spinning Jenny": 1 + "The Power Loom, Railways, and the Rise of Factories: Industrial Revolution and English Trade Language Explored": 1 + "Industrial Revolution: The Power Loom, Railways, English Trade Language, and the Evolution of Waterwheel Technology": 1 + "Understanding the Power Loom, Railways, and the Use of Iron in the Industrial Revolution and English Trade Language": 1 + "Industrial Revolution: The Power Loom, Railways, English Trade Language, and the Influence of the Flying Shuttle": 1 + "The Power Loom, Railways, and English Trade Language: The Industrial Revolution and the Emergence of Mechanized Textile Production.": 1 + "Junior Neuroscience: Examining Neuroplasticity with MRI, fMRI and EEG Technology": 1 + "Understanding the Brain: A Deep Dive into Neuroplasticity with MRI, fMRI and PET Scans": 1 + "Neuroimaging in Junior Neuroscience: fMRI, MRI and DTI in the Study of Neuroplasticity": 1 + "Junior Neuroscience: Exploring the Brain's Functionality using MRI, fMRI, Neuroplasticity and Diffusion Tensor Imaging": 1 + "Junior Neuroscience: Unfolding Brain Dynamics using MRI, fMRI, Neuroplasticity, and Resting-State Networks": 1 + "Advanced Junior Neuroscience: MRI, fMRI, Neuroplasticity and the Role of Synaptic Plasticity": 1 + "Junior Neuroscience: Understanding Brain Processes using MRI, fMRI, Neuroplasticity and the Principle of Long-term Potentiation": 1 + "Junior Neuroscience: Utilizing MRI, fMRI and the Principle of Neuroplasticity to Understand Neuron Firing": 1 + "Junior Neuroscience: MRI, fMRI Explorations in Neuroplasticity and the Role of Neurotransmitters": 1 + "Junior Neuroscience: Brain Mapping with MRI, fMRI, Neuroplasticity and Transcranial Magnetic Stimulation.": 1 + "Elementary Computer Science: Learning Python for Artificial Intelligence Through TensorFlow": 1 + "Mastering Python for Artificial Intelligence: A Deep Dive into Neural Networks": 1 + "Elementary Computer Science: Exploring Artificial Intelligence with Python and PyTorch": 1 + "Python for AI: An Introduction to Machine Learning Algorithms with Scikit-Learn": 1 + "Elementary Computer Science: Python for Artificial Intelligence and Data Visualization with Matplotlib": 1 + "Python and Artificial Intelligence: Understanding Deep Learning Frameworks with Keras": 1 + "Elementary Computer Science: Python Programming for AI and Natural Language Processing": 1 + "Python for Artificial Intelligence: A Practical Approach to Computer Vision with OpenCV": 1 + "Elementary Computer Science: Enhancing AI Skills with Python and Reinforcement Learning": 1 + "Python for AI: Exploring Genetic Algorithms for Machine Learning in Elementary Computer Science.": 1 + "Art: Blending Visual Art and Music utilizing Adobe Illustrator in Graphic Design": 1 + "Art: The Fusion of Visual Art and Music through Photoshop in Graphic Design": 1 + "Art: The Integration of Visual Art and Music with InDesign in Graphic Design": 1 + "Art: Combining Visual Art and Music using CorelDraw in Graphic Design": 1 + "Art: The Synthesis of Visual Art and Music with Sketch in Graphic Design": 1 + "Art: The Interplay of Visual Art and Music through the use of GIMP in Graphic Design": 1 + "Art: The Convergence of Visual Art and Music utilizing the power of Canva in Graphic Design": 1 + "Art: Marrying Visual Art and Music through Affinity Designer in Graphic Design": 1 + "Art: The Union of Visual Art and Music with the aid of Gravit Designer in Graphic Design": 1 + "Art: The Harmony of Visual Art and Music through the use of Adobe XD in Graphic Design": 1 + "Junior Biology: Detailed Analysis of Plant Genetics using Microarrays and Polymerase Chain Reaction": 1 + "Focused Study: Animal Genetics in Junior Biology using Microarrays and DNA Sequencing": 1 + "Junior Biology: Understanding Plant Genetics through Microarrays and Karyotyping Techniques": 1 + "Animal Genetics: An In-depth Study using Microarrays and Genomic Library Construction in Junior Biology": 1 + "Junior Biology: Exploring Plant and Animal Genetics with Microarrays and Restriction Fragment Length Polymorphism": 1 + "Advanced Study: Junior Biology using Microarrays and Comparative Genomic Hybridization for Animal Genetics": 1 + "Junior Biology - Decoding Plant Genetics using Microarrays and Fluorescent In Situ Hybridization": 1 + "In-depth Study of Animal Genetics in Junior Biology using Microarrays and Vector Cloning Techniques": 1 + "Junior Biology: Profound Analysis of Plant Genetics with Microarrays and Southern Blotting Method": 1 + "Junior Biology: A Comprehensive Study of Animal Genetics using Microarrays and Next Generation Sequencing Techniques.": 1 + "Geography: Deciphering Earth's Landscape with Lidar Technology and Topographic Maps": 1 + "Geography: Mapping Earth's Terrain Using GPS Technology and Topographic Maps": 1 + "Geography: Unfolding Earth's Surface with GIS and Topographic Maps": 1 + "Geography: Understanding Earth's Landscape through Aerial Photography and Topographic Maps": 1 + "Geography: Exploring Earth's Topography Using Satellite Imagery and Topographic Maps": 1 + "Geography: Decoding Earth's Landscape with Digital Elevation Models and Topographic Maps": 1 + "Geography: Interpreting Earth's Landscape Using Remote Sensing and Topographic Maps": 1 + "Geography: Analyzing Earth's Landscape with 3D Visualization and Topographic Maps": 1 + "Geography: Deciphering Earth's Landscape with Photogrammetry and Topographic Maps": 1 + "Geography: Investigating Earth's Surface with Drone Mapping and Topographic Maps": 1 + "Science: Unveiling the Physics of GPS Technology through Doppler Effect": 1 + "Science: An In-depth Study of GPS Technology using Satellite Triangulation": 1 + "Science: Understanding the Physics of GPS Technology through Atomic Clocks": 1 + "Science: Grasping the Physics of GPS with Pseudoranging Technique": 1 + "Science: Decoding the Physics of GPS Technology through Binary Coding": 1 + "Science: Understanding GPS Technology: The Role of Radio Waves in Physics": 1 + "Science: The Physics of GPS Technology: Exploring the Power of Signal Propagation": 1 + "Science: Navigating the Physics of GPS Technology with the Help of Ephemeris Data": 1 + "Science: Understanding the Physics of GPS and Its Dependency on Orbital Mechanics": 1 + "Science: Mastering the Physics of GPS Technology through the Lens of Geolocation Algorithms": 1 + "Artistic Expression: Exploring Light and Shadow in Impressionism through Oil Paints": 1 + "Artistic Expression: The Role of Palette Knives in Light and Shadow in Impressionism": 1 + "Artistic Expression: A Study of Light and Shadow in Impressionism Using Brush Techniques": 1 + "Artistic Expression: The Impact of Canvas Texture on Light and Shadow in Impressionism": 1 + "Artistic Expression: A Study of Light and Shadow in Impressionism: The Power of Color Mixing": 1 + "Artistic Expression: Unpacking Light and Shadow in Impressionism through Layering Techniques": 1 + "Artistic Expression: A Study of Impasto Technique in Light and Shadow of Impressionism": 1 + "Artistic Expression: The Influence of Underpainting in Light and Shadow in Impressionism": 1 + "Artistic Expression: Scrutinizing Light and Shadow in Impressionism with Glazing Technique": 1 + "Artistic Expression: A Study of Light and Shadow in Impressionism: The Dry Brush Method": 1 + "Artistic Perspectives: The Impact of Oculus Rift on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: The Role of Unity Software in VR Technology on Digital Mediums": 1 + "Artistic Perspectives: The Influence of Google Tilt Brush on VR Technology in Modern Art": 1 + "Artistic Perspectives: The Effect of Unreal Engine 4 on VR Technology in Modern Digital Art": 1 + "Artistic Perspectives: Exploring the Impact of HTC Vive on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: The Impact of VR Technology and 360-Degree Cameras on Modern Digital Art": 1 + "Artistic Perspectives: The Impact of PlayStation VR on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: The Role of VR Motion Controllers in Modern Digital Art Mediums": 1 + "Artistic Perspectives: The Impact of VR Technology and Photogrammetry on Digital Mediums in Modern Art": 1 + "Artistic Perspectives: The Influence of VR Technology and 3D Modelling on Modern Digital Art Mediums": 1 + "Algebra Unveiled: Exploring Business Applications through Rational Expressions with Excel": 1 + "Quadratics in Action: Business Analysis through Rational Expressions in Algebra": 1 + "Spreadsheet Algebra: A Study of Business Applications through Rational Expressions using Google Sheets": 1 + "Algebra Unveiled: Business Insights through Rational Expressions and MATLAB": 1 + "Data-Driven Algebra: Rational Expressions in Business Applications using Python": 1 + "Harnessing Algebra: Business Applications through Rational Expressions using SQL": 1 + "Business Algebra: A Study of Rational Expressions and Their Application in Tableau": 1 + "Unveiling Business Algebra: Rational Expressions and Applications in R": 1 + "Decoding Algebra: Exploring Business Applications through Rational Expressions with SPSS": 1 + "Algebra and Business: Studying Rational Expressions through SAS Applications.": 1 + "Junior Chemists: Experimenting with Mixtures and Reactions using Bunsen Burners": 1 + "Junior Chemists: Acid-Base Reactions in Mixtures": 1 + "Junior Chemists: Experimenting with Mixtures and Redox Reactions": 1 + "Junior Chemists: Exploring Chemical Reactions with Litmus Paper": 1 + "Junior Chemists: Mixtures and Reactions - A Study with Microscopes": 1 + "Junior Chemists: The Art of Titration - Experimenting with Mixtures and Reactions": 1 + "Junior Chemists: Experimenting with Mixtures and Reactions - An Introduction to Chromatography ": 1 + "Junior Chemists: Experimenting with Mixtures, Reactions, and Spectrophotometry ": 1 + "Junior Chemists: Experimenting with Mixtures and Reactions - A Dip into Electrochemistry": 1 + "Junior Chemists: Experimenting with Mixtures and Reactions - Using pH Meters.": 1 + "Geography: Mapping the Sports and Games of the World with GIS": 1 + "Geography: Utilizing Satellite Imagery to Study World Sports and Games": 1 + "Geography: Application of GPS in Tracking Sports and Games of the World": 1 + "Geography: Sports and Games of the World: A Study through Remote Sensing": 1 + "Geography: Analyzing Global Sports and Games through Geographical Information Systems": 1 + "Geography: The Role of Drones in Mapping Sports and Games of the World": 1 + "Geography: Sports and Games of the World: A Geographic Data Science Approach": 1 + "Geography: Understanding World's Sports and Games through Cartographic Visualization": 1 + "Geography: The Digital Mapping of Sports and Games of the World": 1 + "Geography: Sports and Games of the World: A Spatial Analysis using GIS Technology": 1 + "English: Text Mapping in English using IBM Watson Text Analytics: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping with Python NLTK: Critical Thinking and Textual Analysis": 1 + "English: Textual Analysis and Critical Thinking using TextRazor Analytics in Text Mapping": 1 + "Using SAS Text Miner for Text Mapping and Analysis: English, Critical Thinking, and Textual Analysis": 1 + "English: Text Mapping with RapidMiner for Critical Thinking and Textual Analysis": 1 + "Exploring Text Mapping in English using Google Cloud Natural Language API: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping and Analysis with Microsoft Azure Text Analytics: Fostering Critical Thinking": 1 + "English: Text Mapping using KNIME Text Processing: Critical Thinking and Textual Analysis": 1 + "English: Critical Thinking and Textual Analysis using Alteryx Designer for Text Mapping": 1 + "English: Text Mapping and Textual Analysis with Amazon Comprehend: Enhancing Critical Thinking Skills.": 1 + "Art: Mastering Sports Portraiture in Acrylic Using Palette Knives and Mixed Mediums: Easel Craftsmanship Techniques": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Utilizing Easel Craftsmanship and the Use of Grisaille Technique with Charcoal": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Advanced Easel Craftsmanship and the Use of Grisaille Technique with a Focus on Lighting": 1 + "Art: In-depth Study of Sports Portraiture in Acrylic and Mixed Mediums: Exploring Easel Craftsmanship and the Use of Grisaille Technique": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Easel Craftsmanship and the Use of Grisaille Technique via Oil Pastels ": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: The Role of Easel Craftsmanship and the Use of Grisaille Technique with Stippling Brushes": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Easel Craftsmanship and the Use of Grisaille Technique: A Deep Dive into Underpainting": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Enhancing Easel Craftsmanship and the Use of Grisaille Technique through Airbrushing": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Techniques of Easel Craftsmanship and the Use of Grisaille Technique with Glazing": 1 + "Art: Sports Portraiture in Acrylic and Mixed Mediums: Easel Craftsmanship and the Use of Grisaille Technique: An Exploration of Dry Brushing": 1 + "Chemistry: The Role of Elements in Life and the Use of Spectroscopy": 1 + "Chemistry: The Role of Elements in Life - An Examination through Mass Spectrometry": 1 + "Chemistry: Understanding Life with Elements and Nuclear Magnetic Resonance": 1 + "Chemistry: The Role of Elements in Life - A Study with X-ray Crystallography": 1 + "Chemistry: The Role of Elements in Life - Exploring with Scanning Electron Microscopy": 1 + "Chemistry: The Role of Elements in Life - A Deep Dive using Gas Chromatography": 1 + "Chemistry: The Role of Elements in Life - An Investigation via Atomic Force Microscopy": 1 + "Chemistry: The Role of Elements in Life - A Perspective through Electron Spin Resonance": 1 + "Chemistry: The Role of Elements in Life - Analysing with Liquid Chromatography": 1 + "Chemistry: The Role of Elements in Life - A Closer Look with Infrared Spectroscopy": 1 + "Art: Integrating Visual Art and Music through Layering Techniques in Affinity Designer for Graphic Design": 1 + "Art: Fusing Visual Art and Music with Vector Brushes in Affinity Designer for Graphic Design": 1 + "Art: Uniting Visual Art and Music using Gradient Tool in Affinity Designer for Graphic Design": 1 + "Art: Converging Visual Art and Music through Masking in Affinity Designer for Graphic Design": 1 + "Art: Blending Visual Art and Music using Pixel Persona in Affinity Designer for Graphic Design": 1 + "Art: Merging Visual Art and Music with the Pen Tool in Affinity Designer for Graphic Design": 1 + "Art: Combining Visual Art and Music through Shape Builder Tool in Affinity Designer for Graphic Design": 1 + "Art: Linking Visual Art and Music using the Magic Wand Tool in Affinity Designer for Graphic Design": 1 + "Art: Associating Visual Art and Music through Transparency Tool in Affinity Designer for Graphic Design": 1 + "Art: Bridging Visual Art and Music using Raster Brushes in Affinity Designer for Graphic Design": 1 + "Economics: The Cost of Air Pollution on Public Health – An Analysis using the Hedonic Pricing Method": 1 + "The Role of Carbon Pricing in Mitigating the Health Impacts of Pollution: An Economic Approach": 1 + "Economics: Evaluating the Impact of Water Pollution on Public Health using Cost-Benefit Analysis": 1 + "The Economic Impact of Noise Pollution on Public Health: A Study Using Environmental Valuation Techniques": 1 + "Economics: Using Pollution Permits to Control the Impact of Industrial Emissions on Public Health": 1 + "Economics: The Impact of Plastic Pollution on Public Health and Possible Solutions through Recycling Programs": 1 + "Economics: Cost-effectiveness of Green Technologies in Reducing Pollution’s Impact on Public Health": 1 + "Economics: The Role of Renewable Energy in Mitigating the Health Impact of Fossil Fuel Pollution": 1 + "Economics: Using Market Incentives for Pollution Control to Improve Public Health": 1 + "Economics: The Impact of Soil Pollution on Public Health and the Potential of Bioremediation as a Solution.": 1 + "Advanced Excel for Computer Science: Analyzing Athletic Performance through PivotTable Data Analysis": 1 + "Excel Power Query for Computer Science: Unpacking Athletic Performance Metrics ": 1 + "Advanced Excel and VBA for Computer Science: Diving into Athletic Performance Data Analysis ": 1 + "Excel Data Model for Computer Science: A Deep Dive into Athletic Performance Analysis ": 1 + "Advanced Excel for Computer Science: Unpacking Athletic Performance through Regression Analysis": 1 + "Excel Solver for Computer Science: Optimizing Athletic Performance through Data Analysis": 1 + "Advanced Excel for Computer Science: Decoding Athletic Performance through Statistical Data Analysis": 1 + "Excel PowerPivot for Computer Science: Enhancing Athletic Performance Analysis": 1 + "Advanced Excel and SQL for Computer Science: Unpacking Athletic Performance through Database Analysis": 1 + "Excel Macros for Computer Science: Streamlining Athletic Performance Data Analysis": 1 + "Logic: Utilizing SWOT Analysis for Sustainable Energy Solutions ": 1 + "Logic: Using Systems Thinking for Sustainable Water Management Strategies": 1 + "Logic: Applying Artificial Intelligence in Building Sustainable Agriculture Solutions": 1 + "Logic: Critical Thinking and Blockchain Technology for Sustainable Financial Solutions ": 1 + "Logic: Leveraging Big Data for Sustainable Urban Planning Solutions": 1 + "Logic: Implementing IoT for Sustainable Waste Management Solutions": 1 + "Logic: Using Machine Learning for Sustainable Traffic Management Solutions": 1 + "Logic: Critical Thinking and GIS for Sustainable Land-Use Solutions": 1 + "Logic: Applying Cybersecurity for Sustainable Digital Infrastructure Solutions": 1 + "Logic: Utilizing Virtual Reality for Sustainable Educational Solutions": 1 + "Music: The Power of Rhythm and Melody through the Lens of Piano": 1 + "Exploring Rhythm and Melody: The Role of the Guitar in Music": 1 + "The Power of Rhythm and Melody: A Focus on Electronic Music Production": 1 + "Music: The Power of Rhythm and Melody in Digital Audio Workstations": 1 + "Fingerstyle Techniques: The Power of Rhythm and Melody in Acoustic Guitar ": 1 + "Music: Rhythm, Melody, and the Art of Beatmaking": 1 + "The Power of Rhythm and Melody: An Introduction to MIDI Sequencing in Music Production": 1 + "Music: The Power of Rhythm and Melody through Music Sampling ": 1 + "A Capella Singing: The Power of Rhythm and Melody without Instruments ": 1 + "Music: Rhythm and Melody through the Eyes of Synthesizer Technology": 1 + "Advanced Biology: Understanding Cellular Structures through Fluorescence Microscopy using Zeiss LSM 880": 1 + "Biology Insights: Exploring Cellular Structures with Fluorescence Microscopy and ImageJ Analysis": 1 + "Cellular Biology: Deciphering Intracellular Structures through Fluorescence Microscopy and Confocal Techniques": 1 + "In-Depth Biology: Unveiling Cellular Structures with Fluorescence Microscopy and FRET": 1 + "Biology and Technology: A Study on Cellular Structures through Fluorescence Microscopy using Leica SP8": 1 + "Special Topics in Biology: Understanding Cellular Structures with Fluorescence Microscopy and Single Molecule Techniques": 1 + "Biology Explained: Cellular Structures Decoded through Fluorescence Microscopy and Deconvolution": 1 + "Biology: Unraveling the Mysteries of Cellular Structures through Super-Resolution Fluorescence Microscopy": 1 + "Biology: Understanding Cellular Structures through Fluorescence Microscopy using Nikon A1R": 1 + "Advanced Cellular Biology: Deciphering Structures through Fluorescence Microscopy and TIRF Techniques.": 1 + "Physics: Analyzing Light Spectrums: Detailed Analysis of Color Perception using Laser Beam Technology and Prism Dispersion": 1 + "Physics: Advanced Study on Light Spectrum Analysis: Color Grasping through Laser Beam Technology and Interference Filters": 1 + "Physics: Spectroscopy: Understanding Color Perception using Laser Beam Technology and Spectrometers": 1 + "Physics: Light Spectrum Analysis: Exploring the Role of Laser Beam Technology and Photodetectors in Color Perception": 1 + "Physics: Advanced Analysis of Light Spectrums: Color Grasping using Laser Beam Technology and Spectral Imaging": 1 + "Physics: Light Spectrum Analytics: Grasping Color with Laser Beam Technology and Optical Filters": 1 + "Physics: Detailed Study on Light Spectrums: Grasping Color through Laser Beam Technology and Monochromators": 1 + "Physics: Analyzing Light Spectrums: Understanding Color Perception using Laser Beam Technology and Diffraction Grating": 1 + "Physics: Understanding Light Spectrums: Color Grasping through Laser Beam Technology and Polarization Filters": 1 + "Physics: Advanced Light Spectrum Analysis: Grasping Color using Laser Beam Technology and Fourier Transform Infrared Spectroscopy": 1 + "Language Arts: Enhancing Rhyme Schemes in Poetry Inspired by Birdsong using Audacity with Nature Sound Libraries": 1 + "Language Arts: Application of GarageBand in Crafting Nature-Inspired Rhyme Schemes in Poetry with Nature Sound Libraries": 1 + "Language Arts: Utilizing Adobe Audition in Enriching Rhyme Schemes in Nature-Inspired Poetry with Nature Sound Libraries": 1 + "Language Arts: Expanding Rhyme Schemes in Nature-Inspired Poetry Using ProTools and Nature Sound Libraries": 1 + "Language Arts: Employing Logic Pro X for Rhyme Schemes Enhancement in Poetry Inspired by Nature Sounds with Sound Libraries ": 1 + "Language Arts: Use of FL Studio in Developing Rhyme Schemes in Poetry Inspired by the Sounds of Nature with Nature Sound Libraries": 1 + "Language Arts: Introduction to Cubase for Improving Rhyme Schemes in Poetry Inspired by Nature Sounds with Nature Sound Libraries": 1 + "Language Arts: Exploring Rhyme Schemes in Poetry Through Nature Sounds Using Ableton Live with Nature Sound Libraries": 1 + "Language Arts: Enhancing Rhyme Schemes in Poetry Inspired by the Sounds of Forests Using Reaper with Nature Sound Libraries": 1 + "Language Arts: Mastering Rhyme Schemes in Poetry Inspired by Ocean Sounds using Studio One and Nature Sound Libraries": 1 + "Mathematics: Problem Solving with Algebra using Graphing Calculators": 1 + "Mathematics: Employing Linear Equations in Algebra Problem Solving": 1 + "Mathematics: Quadratic Equations and Algebraic Problem Solving": 1 + "Mathematics: Leveraging Algebra Tiles in Problem Solving": 1 + "Mathematics: Algebraic Problem Solving through Geometric Sequences": 1 + "Solving Algebraic Problems with The Aid of Polynomials": 1 + "Mathematics: Exploring the Binomial Theorem in Algebra Problem Solving": 1 + "Algebraic Problem Solving: A Deep Dive into Rational Functions": 1 + "Mathematics: Problem Solving in Algebra with Synthetic Division": 1 + "Mathematics: Factoring Techniques for Problem Solving in Algebra.": 1 + "Money Matters: Understanding the Impact of Blockchain Technology on Supply and Demand in Economics": 1 + "Money Matters: A Detailed Study of Forex Trading in Supply and Demand Economics": 1 + "Money Matters: Analyzing the Role of AI in Predicting Supply and Demand Trends in Economics": 1 + "Money Matters: A Comprehensive Guide to Quantitative Easing in Supply and Demand Economics": 1 + "Money Matters: Exploring the Influence of Internet of Things (IoT) on Supply and Demand in Economics": 1 + "Money Matters: The Application of Big Data Analytics in Supply and Demand Forecasting in Economics": 1 + "Money Matters: A Deep Dive into Fiscal Policy's Effects on Supply and Demand in Economics": 1 + "Money Matters: Unraveling the Role of Cryptocurrencies in Supply and Demand Economics": 1 + "Money Matters: Understanding the Impact of E-commerce on Supply and Demand in Economics": 1 + "Money Matters: An In-depth Analysis of the Elasticity Concept in Supply and Demand Economics.": 1 + "Biology: The Study of Life - Exploring Biodiversity through Bioacoustics Using Sonar Technology": 1 + "Biology: Diving into Biodiversity - A Bioacoustic Study Using Hydrophones": 1 + "Exploring Biodiversity with Bioacoustics: A Focus on Spectrogram Analysis": 1 + "Biology: Bioacoustic Exploration of Biodiversity using Machine Learning Techniques": 1 + "Deciphering Nature's Symphony: Using Oscillographs in Bioacoustic Biodiversity Studies": 1 + "Biology: Unveiling Biodiversity Through Bioacoustics and Fourier Transforms": 1 + "From Sound to Life: Exploring Biodiversity Using Bioacoustics and Parabolic Microphones": 1 + "Biology: Biodiversity Discovery Through Audio Spectral Analysis and Bioacoustics": 1 + "Bioacoustic Biodiversity: Exploring Life with Time Expansion Recorders": 1 + "Biology: The Bioacoustic Lens - Unraveling Biodiversity with Sound Frequency Filters": 1 + "Mathematics: Exploring Algebra and Geometry with MATLAB and Linear Equations": 1 + "Mathematics: Understanding Algebra and Geometry through MATLAB and Quadratic Equations": 1 + "Mathematics: Navigating Algebra and Geometry with MATLAB and Vector Spaces": 1 + "Mathematics: A Deep Dive into Algebra and Geometry with MATLAB and Polynomial Functions": 1 + "Mathematics: Mastering Algebra and Geometry with MATLAB and Matrix Theory": 1 + "Mathematics: Comprehensive Study of Algebra and Geometry using MATLAB and Eigenvalues": 1 + "Mathematics: Progressing through Algebra and Geometry with MATLAB and Integral Calculus": 1 + "Mathematics: Advancing in Algebra and Geometry with MATLAB and Differential Equations": 1 + "Mathematics: An In-depth Exploration of Algebra and Geometry using MATLAB and Trigonometric Functions": 1 + "Mathematics: Unraveling Algebra and Geometry with MATLAB and Complex Numbers.": 1 + "Chemistry 140: Organic Reactions and Mechanisms with Spectroscopic Analysis": 1 + "Chemistry 140: Study of Organic Reactions and Mechanisms using NMR Spectroscopy": 1 + "Chemistry 140: Organic Reactions and Mechanisms: Focus on Mass Spectrometry": 1 + "Chemistry 140: Organic Reactions and Mechanisms: An Exploration through Computational Chemistry": 1 + "Chemistry 140: Organic Reactions and Mechanisms: A Deep-Dive into Crystallography": 1 + "Chemistry 140: Organic Reactions and Mechanisms with Infrared Spectroscopy": 1 + "Chemistry 140: Organic Reactions and Mechanisms: Application of Gas Chromatography": 1 + "Chemistry 140: Organic Reactions and Mechanisms: Understanding through Quantum Mechanics": 1 + "Chemistry 140: Organic Reactions and Mechanisms: An Insight with HPLC Techniques": 1 + "Chemistry 140: Organic Reactions and Mechanisms: A Study via Electron Microscopy": 1 + "Advanced Mathematics: Precision Agriculture Weather Prediction Using Python, Deep Learning, and TensorFlow": 1 + "Advanced Mathematics: Weather Prediction for Crop Yield with Python, Deep Learning, and the Scikit-Learn Library": 1 + "Advanced Mathematics: Climate Forecasting in Agriculture Using Python, Deep Learning, and Neural Networks": 1 + "Advanced Mathematics: Weather Prediction for Precision Farming with Python, Deep Learning, and the Keras Framework": 1 + "Advanced Mathematics: Weather Prediction for Sustainable Agriculture Using Python, Deep Learning, and the PyTorch Library": 1 + "Advanced Mathematics: Crop Weather Forecasting with Python, Deep Learning, and Convolutional Neural Networks": 1 + "Advanced Mathematics: Weather Pattern Analysis for Agriculture Using Python, Deep Learning, and Time Series Forecasting": 1 + "Advanced Mathematics: Predicting Weather Impact on Agriculture with Python, Deep Learning, and the TensorFlow Lite": 1 + "Advanced Mathematics: Agricultural Weather Forecasting Using Python, Deep Learning, and Linear Regression Models": 1 + "Advanced Mathematics: Weather Prediction for Smart Farming with Python, Deep Learning, and the Pandas Library.": 1 + "Chemistry for Kids: Understanding Elements through Ball-and-Stick Molecular Models": 1 + "Chemistry for Kids: Exploring Elements with 3D Printed Molecular Models": 1 + "Chemistry for Kids: Making Sense of Elements with VR Molecular Models": 1 + "Chemistry for Kids: Grasping Elements with Augmented Reality Molecular Models": 1 + "Chemistry for Kids: Decoding Elements with Space-Filling Molecular Models": 1 + "Chemistry for Kids: Discovering Elements with Interactive Molecular Models": 1 + "Chemistry for Kids: Learning Elements with Computer Simulated Molecular Models": 1 + "Chemistry for Kids: Explaining Elements with Magnetic Molecular Models": 1 + "Chemistry for Kids: Engaging with Elements through Origami Molecular Models": 1 + "Chemistry for Kids: Visualizing Elements with LED-Lit Molecular Models": 1 + "Logical Thinking 101: Mastering Deductive Reasoning with Venn Diagrams": 1 + "Logical Thinking 101: Harnessing the Power of Syllogisms with Euler Circles": 1 + "Logical Thinking 101: Advanced Syllogistic Reasoning with Digital Tools": 1 + "Logical Thinking 101: Applying Syllogisms in Modern Context Using AI Technology": 1 + "Logical Thinking 101: Enhancing Reasoning Skills with Truth Tables": 1 + "Logical Thinking 101: Elevating Logical Thought with Propositional Calculus": 1 + "Logical Thinking 101: The Power of Syllogisms in Python Programming": 1 + "Logical Thinking 101: Decoding Syllogisms with Logic Gates": 1 + "Logical Thinking 101: Exploring Syllogistic Reasoning with Semantic Networks": 1 + "Logical Thinking 101: The Art of Syllogisms in Critical Thinking Using Logic Puzzles": 1 + "Kids Chemistry: pH Scale Exploration and Neutralization Reactions with a Digital pH Meter using Red Cabbage Indicator": 1 + "Kids Chemistry: Understanding Acid-Base Neutralization Reactions through pH Scale using Red Cabbage and Universal Indicators": 1 + "Kids Chemistry: A Detailed Study of pH Scale and Neutralization Reactions using Red Cabbage Indicator and Litmus Paper": 1 + "Kids Chemistry: Experimenting with pH Scale and Neutralization Reactions using Red Cabbage Indicator and Microscope": 1 + "Kids Chemistry: Measuring pH Scale and Observing Neutralization Reactions using Red Cabbage Indicator and pH Probe": 1 + "Kids Chemistry: Hands-On Learning of pH Scale and Neutralization Reactions with Burette and Red Cabbage Indicator": 1 + "Kids Chemistry: pH Scale Mastery and Neutralization Reactions using Red Cabbage Indicator and Colorimeter": 1 + "Kids Chemistry: Interactive Learning of pH Scale and Neutralization Reactions using Red Cabbage Indicator and pH Test Strips": 1 + "Kids Chemistry: pH Scale and Neutralization Reactions: A Comprehensive Study using Red Cabbage Indicator and Spectrophotometer": 1 + "Kids Chemistry: Exploring pH Scale and Neutralization Reactions using Red Cabbage Indicator and Digital Color Wheel.": 1 + "Elementary Education 305: Utilizing Smartboard in Introduction to Cooperative Games": 1 + "Elementary Education 305: Cooperative Games with Digital Whiteboards featuring Google Classroom": 1 + "Elementary Education 305: Introduction to Cooperative Games with Interactive Whiteboards and Zoom": 1 + "Elementary Education 305: Incorporating Virtual Reality in Cooperative Games with Digital Whiteboards": 1 + "Elementary Education 305: Exploring Augmented Reality in Cooperative Games with Digital Whiteboards": 1 + "Elementary Education 305: Introduction to Cooperative Games with Digital Whiteboards and Microsoft Teams": 1 + "Elementary Education 305: Cooperative Games using Digital Whiteboards and Kahoot": 1 + "Elementary Education 305: Introduction to Cooperative Games with Digital Whiteboards and Adobe Connect": 1 + "Elementary Education 305: Interactive Cooperative Games with Digital Whiteboards using Slack": 1 + "Elementary Education 305: Collaborative Learning Through Cooperative Games with Digital Whiteboards and Trello": 1 + "Language Arts: Examining Courage in Distinct War Novels with Freudian Psychoanalysis and Comparative Literature using Python Programming for Text Analysis": 1 + "Exploring Courage in War Novels through Freudian Psychoanalysis and Comparative Literature: Utilizing Digital Humanities Tools like Tableau for Visual Representation": 1 + "Interpreting Courage in War Novels: A Deep Dive into Freudian Psychoanalysis and Comparative Literature with the Assistance of Sentiment Analysis Techniques": 1 + "Language Arts: Analyzing Courage in War Novels using Freudian Psychoanalysis and Comparative Literature with the Help of Machine Learning Algorithms": 1 + "War Novels and Courage: An In-depth Study using Freudian Psychoanalysis, Comparative Literature, and Natural Language Processing Techniques": 1 + "Courage in War Novels: A Freudian Psychoanalytical and Comparative Literature Approach Employing Data Mining Techniques": 1 + "Language Arts: Exploring Courage in War Novels through Freudian Psychoanalysis, Comparative Literature, and Big Data Analytics": 1 + "Uncovering Courage in War Novels: A Freudian Psychoanalytical and Comparative Literature Study using GIS Mapping Tools": 1 + "Language Arts: Studying Courage in War Narratives through Freudian Psychoanalysis and Comparative Literature using IBM's Watson Analytics": 1 + "Freudian Psychoanalysis and Comparative Literature in War Novels: An Exploration of Courage using Artificial Intelligence for Textual Analysis.": 1 + "Computer Science: Exploring Oscillators in Synthesizers for Music Technology - Designing Amplifier Modulation Beats": 1 + "Computer Science: Using MIDI Interface in Synthesizer Technology for Amplifier Modulation Beats Design": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Designing Amplifier Modulation Beats with Ableton Live": 1 + "Computer Science: The Role of Envelope Generators in Synthesizers - Amplifier Modulation Beats Design": 1 + "Computer Science: Synthesizers and the Implementation of VST Plugins in Music Technology - Amplifier Modulation Beats": 1 + "Computer Science: Harnessing the Power of Filters in Synthesizers for Amplifier Modulation Beats Design": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Designing Amplifier Modulation Beats with Logic Pro X": 1 + "Computer Science: The Impact of Frequency Modulation in Synthesizers on Amplifier Beats Design": 1 + "Computer Science: The Application of Wavetable Synthesis in Music Technology - Designing Amplifier Modulation Beats": 1 + "Computer Science: Understanding Synthesizers in Music Technology - Designing Amplifier Modulation Beats with FL Studio": 1 + "Computer Science: Utilizing Docker in Kubernetes and Firebase for Real-Time Fitness Apps Development for Athletes": 1 + "Advanced Computer Science: Building Real-Time Fitness Apps for Athletes using Kubernetes, Firebase and Jenkins CI/CD": 1 + "Computer Science Specialization: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes with Python": 1 + "Computer Science: Implementing REST APIs in Kubernetes and Firebase for Real-Time Fitness Apps for Athletes": 1 + "Advanced Topics in Computer Science: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes using Microservices": 1 + "Computer Science: Using Kubernetes and Firebase for Real-Time Fitness Apps for Athletes: An Exploration of NoSQL Databases": 1 + "Computer Science: Building Real-Time Fitness Apps for Athletes using Kubernetes, Firebase and React Native.": 1 + "Computer Science Course: Kubernetes and Firebase: Building Real-Time Fitness Apps for Athletes with Test-Driven Development": 1 + "Computer Science: Kubernetes and Firebase: Integrating Machine Learning in Real-Time Fitness Apps for Athletes": 1 + "Computer Science: DevOps Practices in Kubernetes and Firebase for Building Real-Time Fitness Apps for Athletes.": 1 + "Mathematics: Analyzing Immigration Patterns Using Regression Analysis": 1 + "Mathematics: Statistical Analysis of Immigration Patterns with SPSS": 1 + "Mathematics: Predictive Modeling of Immigration Patterns": 1 + "Mathematics: Immigration Patterns Analysis through Time Series Analysis": 1 + "Mathematics: Using Linear Programming for Immigration Pattern Analysis": 1 + "Mathematics: Statistical Analysis of Immigration Patterns with R software": 1 + "Mathematics: Big Data Analysis of Immigration Patterns": 1 + "Mathematics: Markov Chain Analysis of Immigration Patterns": 1 + "Mathematics: Bayesian Statistics for Immigration Patterns Analysis": 1 + "Mathematics: Logistic Regression Analysis of Immigration Patterns": 1 + "Leveraging Eclipse IDE in Java Programming: An Introduction to JUnit for Effective Testing": 1 + "An Introduction to Java Programming: Utilizing JUnit and Mockito for Effective Unit Testing": 1 + "Deep Dive into Java Programming: Using JUnit and Selenium for Comprehensive Web Testing": 1 + "Mastering Java Programming: Implementing JUnit and JaCoCo for Code Coverage Analysis": 1 + "An Introduction to Java Programming: JUnit Testing with Maven Integration": 1 + "Effective Java Programming: Harnessing the Power of JUnit and Jenkins for Continuous Integration": 1 + "Java Programming Essentials: JUnit Testing in a Spring Boot Environment": 1 + "Advanced Java Programming: Applying JUnit and Hamcrest for Precise Testing": 1 + "An Introduction to Java Programming: Employing JUnit with Gradle Build Tool for Streamlined Testing": 1 + "Java Programming Uncovered: Exploiting JUnit and SonarQube for Quality Assurance.": 1 + "Computer Science 101: Introduction to Python Programming using Data Structures with NumPy": 1 + "Computer Science 101: Python Programming using Data Structures in Jupyter Notebooks": 1 + "Computer Science 101: Data Structures and Python Programming through Pandas": 1 + "Computer Science 101: Python Programming and Data Structures using PyCharm IDE": 1 + "Computer Science 101: Python Programming with Data Structures and Matplotlib Visualization": 1 + "Computer Science 101: Exploring Python Programming and Data Structures with the SciPy Library": 1 + "Computer Science 101: Mastering Python Programming and Data Structures using TensorFlow for AI Development": 1 + "Computer Science 101: Introduction to Python Programming and Data Structures with Django for Web Development": 1 + "Computer Science 101: Python Programming and Data Structures using the Flask Framework": 1 + "Computer Science 101: Python Programming using Data Structures and SQLite for Database Management.": 1 + "Utilizing EEGs in Philosophy: The Power of Sound in Cognitive Processes - Neurofeedback and the Influence of the Berard AIT on Neuroplasticity": 1 + "Philosophy and The Quantitative EEG: The Power of Sound in Cognitive Processes - Neurofeedback and the Influence of the Berard AIT on Neuroplasticity": 1 + "Philosophy: The Power of Sound in Cognitive Processes - Neurofeedback, the Berard AIT and the Role of Spectral Analysis in Neuroplasticity": 1 + "Philosophy: The Power of Sound in Cognitive Processes - Neurofeedback, the Berard AIT and the Implication of Biofeedback in Neuroplasticity": 1 + "The Effect of Sound on Neuroplasticity: Neurofeedback, the Berard AIT and the Role of Machine Learning in Philosophical Studies": 1 + "Philosophy: Cognitive Processes and the Power of Sound - Neurofeedback, the Berard AIT and the Influence of Deep Learning Algorithms on Neuroplasticity": 1 + "Philosophy and Neural Networks: The Power of Sound in Cognitive Processes - Neurofeedback, the Berard AIT and their Impact on Neuroplasticity": 1 + "Philosophy: The Power of Sound and the Influence of the Berard AIT on Neuroplasticity - Neurofeedback and the Role of Artificial Intelligence in Cognitive Processes": 1 + "Philosophy: The Power of Sound in Cognitive Processes - Neurofeedback, the Berard AIT and the Use of fMRI in Studying Neuroplasticity": 1 + "Philosophy: The Power of Sound, Neurofeedback and the Berard AIT - Exploring Neuroplasticity through the Lens of Computational Neuroscience.": 1 + "Basic English: Mastering Creative Writing and Storytelling with Metaphors": 1 + "Basic English: The Art of Storytelling and Creative Writing using Dialogue": 1 + "Basic English: Creative Writing and Storytelling - Focusing on Character Development": 1 + "Basic English: The Power of Imagery in Creative Writing and Storytelling": 1 + "Basic English: Creative Writing and Storytelling: An In-depth Study of Plot Construction": 1 + "Basic English: Utilizing Foreshadowing in Creative Writing and Storytelling": 1 + "Basic English: The Art of Storytelling: Creative Writing with Symbolism": 1 + "Basic English: Creative Writing and Storytelling: Exploring Conflict and Resolution": 1 + "Basic English: Creative Writing and Storytelling: The Role of Setting ": 1 + "Basic English: Creative Writing and Storytelling: Crafting Compelling Themes.": 1 + "Geography: Mapping Ancient Trans-Saharan Trade Routes Using QGIS, Remote Sensing, and LiDAR Technology": 1 + "Using GIS and Python Scripting to Map Ancient Trans-Saharan Trade Routes": 1 + "Geography: Utilizing Drone Mapping for Ancient Trans-Saharan Trade Routes with QGIS": 1 + "Advanced Geo-mapping of Ancient Trans-Saharan Trade Routes Using QGIS, Remote Sensing, and 3D Modelling": 1 + "Geography: Satellite Imagery Analysis of Ancient Trans-Saharan Trade Routes Using QGIS": 1 + "Mapping Ancient Trans-Saharan Trade Routes: A Comparative Study Using QGIS, Remote Sensing, and GPS Technology": 1 + "Geography: Mapping Ancient Trans-Saharan Trade Routes Using QGIS, Remote Sensing, and Cloud-Based GIS Platforms": 1 + "Understanding Ancient Trans-Saharan Trade Routes through QGIS, Remote Sensing, and Geospatial Data Analysis": 1 + "Using QGIS and Multi-Spectral Imaging to Map Ancient Trans-Saharan Trade Routes": 1 + "Geography: Mapping Ancient Trans-Saharan Trade Routes Using QGIS, Remote Sensing, and Satellite Radar Systems.": 1 + "Python for Web: An Introduction to Development with Python, Flask, jQuery, HTML5, Firebase, and Django": 1 + "Python for Web: An Introduction to Web Scraping using BeautifulSoup with Python, Flask, jQuery, HTML5, and Firebase": 1 + "Python for Web: Exploring REST APIs using Python, Flask, jQuery, HTML5, Firebase, and Postman": 1 + "Python for Web: An Introduction to Python, Flask, jQuery, HTML5, Firebase, and SQLite Database Management": 1 + "Python for Web: Frontend Development with Python, Flask, jQuery, HTML5, Firebase, and Bootstrap": 1 + "Python for Web: An Introduction to Machine Learning Integration with Python, Flask, jQuery, HTML5, and Firebase": 1 + "Python for Web: An Introduction to Development with Python, Flask, jQuery, HTML5, Firebase, and Selenium for Web testing": 1 + "Python for Web: Secure Development using Python, Flask, jQuery, HTML5, Firebase, and OAuth2.0": 1 + "Python for Web: An Introduction to Development with Python, Flask, jQuery, HTML5, Firebase, and Asynchronous Programming with asyncio": 1 + "Python for Web: An Introduction to Development with Python, Flask, jQuery, HTML5, Firebase, and Microservices Architecture.": 1 + "Language Arts: Evaluating Unemployment Rhetoric and Economic Policies with AI - A Deep Learning Approach Using TensorFlow": 1 + "Language Arts: AI and Machine Learning Analysis of Unemployment Rhetoric and Economic Policies - A Case Study Using Python": 1 + "Language Arts: Exploring Unemployment Rhetoric and Economic Policies Through AI - A Detailed Study Using Natural Language Processing": 1 + "Language Arts: A GPT-3 Based Study of AI in Unemployment Rhetoric and Economic Policies": 1 + "Language Arts: Unmasking Unemployment Rhetoric and Economic Policies with AI - An Empirical Analysis Using Text Mining": 1 + "Language Arts: AI Interpretation of Unemployment Rhetoric and Economic Policies - A Bayesian Network Approach": 1 + "Language Arts: Deciphering Unemployment Rhetoric and Economic Policies with AI - A Convolutional Neural Network Study": 1 + "Language Arts: A Data Science Perspective on AI in Unemployment Rhetoric and Economic Policies - A Study Using Big Data Analytics": 1 + "Language Arts: AI's Role in Unemployment Rhetoric and Economic Policies - A Linear Regression Study Using Excel": 1 + "Language Arts: AI-Driven Analysis of Unemployment Rhetoric and Economic Policies - A Study Using IBM's Watson AI": 1 + "The Impact of Quantum Entanglement in Quantum Physics and Its Practical Applications": 1 + "Quantum Mechanics: The Role of Quantum Computing in Quantum Physics ": 1 + "Quantum Tunneling: A Deep Dive into Quantum Mechanics and Its Applications ": 1 + "Quantum Mechanics: The Importance of Quantum Encryption in Quantum Physics": 1 + "Quantum Physics and Its Applications: The Role of Quantum Teleportation in Quantum Mechanics": 1 + "Quantum Mechanics and Quantum Computing: A Study on Quantum Cryptography ": 1 + "Quantum Interference in Quantum Mechanics and Its Role in Quantum Field Theory": 1 + "Quantum Mechanics: The Role of Quantum State in Quantum Physics and Its Applications": 1 + "Quantum Physics and Its Applications: A Focus on Quantum Superposition in Quantum Mechanics": 1 + "The Role of Quantum Oscillations in Quantum Physics and Its Practical Implementations": 1 + "Social Studies: Cultural Diversity and Human Interaction through Anthropological Lens": 1 + "The Role of Internet in Cultural Diversity and Human Interaction: A Social Studies Perspective": 1 + "Social Studies: Understanding Cultural Diversity and Human Interaction through Ethnographic Studies": 1 + "Social Studies: Exploring Cultural Diversity and Human Interaction with GIS Technology": 1 + "Cultural Diversity and Human Interaction: A Social Studies Approach using Statistical Analysis": 1 + "Social Studies: Cultural Diversity and Human Interaction - A Study through Oral History Methodology": 1 + "Social Studies: Cultural Diversity and Human Interaction Analyzed through Sociolinguistics": 1 + "Social Studies: Cultural Diversity and Human Interaction in the Age of Social Media": 1 + "Exploring Cultural Diversity and Human Interaction through Virtual Reality: A Social Studies Approach ": 1 + "Social Studies: Cultural Diversity and Human Interaction - A Comparative Study using Cross-Cultural Framework.": 1 + "Neuroscience and Music: The Cognitive Connection through fMRI Scanning": 1 + "Exploring the Cognitive Connection: EEG in Neuroscience and Music": 1 + "Neuroscience and Music: Unraveling the Cognitive Connection with PET Scans": 1 + "Cognitive Connection in Neuroscience and Music: A Deep Dive into MEG Technology": 1 + "Brain Plasticity: The Cognitive Connection between Neuroscience and Music": 1 + "Exploring Synesthesia: Neuroscience and Music's Cognitive Connection": 1 + "The Role of Dopamine in the Cognitive Connection of Neuroscience and Music": 1 + "Neurotransmitters and the Cognitive Connection: A Study of Neuroscience and Music": 1 + "Nootropics and their Impact on the Cognitive Connection between Neuroscience and Music": 1 + "Neuroscience and Music: The Cognitive Connection Analyzed through Neuroimaging.": 1 + "Optimizing Poly Lactic Acid Utilization in Laser Sintering Injection Moulding for Tennis Rackets using Bio-Nano Composite Technology": 1 + "Enhancing Performance of Sports Helmets through Laser Sintering Injection Moulding of Poly Lactic Acid using Finite Element Analysis": 1 + "Implementation of 3D Printing Technology in Fabrication of Sports Equipment using Biodegradable Polymers: Focus on Poly Lactic Acid": 1 + "Design of Eco-Friendly Soccer Balls using Poly Lactic Acid and Laser Sintering Injection Moulding: A Computational Fluid Dynamics Approach": 1 + "Advanced CAD Techniques for Laser Sintering Injection Moulding of Poly Lactic Acid in Basketball Backboards ": 1 + "Tennis Strings Manufacturing: Harnessing Poly Lactic Acid through Laser Sintering Injection Moulding using Genetic Algorithm Optimization": 1 + "Application of Machine Learning in Optimizing Laser Sintering Injection Moulding of Poly Lactic Acid for Cricket Bats": 1 + "Golf Club Heads Fabrication using Poly Lactic Acid and Laser Sintering Injection Moulding: A Topology Optimization Approach": 1 + "Biodegradable Polymers in Sports Gear: Harnessing Poly Lactic Acid in Laser Sintering Injection Moulding using AI-driven Design Process": 1 + "Utilizing Computational Material Science for Poly Lactic Acid in Laser Sintering Injection Moulding of Snowboarding Equipment.": 1 + "Physics: Analyzing Light Refraction Through Laser Holography and Photonic Crystals using the Michelson Interferometer": 1 + "Physics: Exploiting Wave-Particle Duality in Laser Holography and Photonic Crystals with Photon Detectors": 1 + "Physics: Understanding Color Spectrum via Laser Holography and Photonic Crystals with Spectrometers": 1 + "Physics: Detailing the Science of Birefringence in Laser Holography and Photonic Crystals using Polarization Microscopy": 1 + "Physics: Probing Quantum Mechanics through Laser Holography and Photonic Crystals using Quantum Dot Technology": 1 + "Physics: Exploring Polarized Light with Laser Holography and Photonic Crystals using Liquid Crystal Display (LCD) Technology": 1 + "Physics: Delving into Diffraction Patterns through Laser Holography and Photonic Crystals using X-ray Crystallography": 1 + "Physics: Investigating the Physics of Rainbow with Laser Holography and Photonic Crystals using Prism Spectroscopy": 1 + "Physics: Exploring the Science of Light and Color through Laser Holography and Photonic Crystals using the Fresnel Equations": 1 + "Physics: Unveiling Electromagnetic Spectrum through Laser Holography and Photonic Crystals using Infrared Cameras": 1 + "Advanced Data-Driven Athletic Assessment: A Computer Science Approach using Tableau, Python, and K-Means Cluster Analysis": 1 + "Performance Analytics in Sports: Utilizing Tableau, SQL, and Hierarchical Cluster Analysis in a Data-Driven Approach": 1 + "Sports Data Analytics: Leveraging Machine Learning, Tableau, and DBSCAN Cluster Analysis": 1 + "Implementing R in Data-Driven Athletic Assessment: A Study in Tableau and Spectral Cluster Analysis": 1 + "A Deep Dive into Data-Driven Athletic Evaluation: Applying Tableau, Hadoop, and Mean-Shift Cluster Analysis": 1 + "Data Science in Sports: Incorporating SAS, Tableau, and Affinity Propagation Cluster Analysis": 1 + "Advanced Sports Analytics: Using Tableau, Excel, and Agglomerative Cluster Analysis for Data-Driven Assessment": 1 + "The Role of SPSS in Data-Driven Athletic Assessment: A Computer Science Approach using Tableau and Two-Step Cluster Analysis": 1 + "Athletic Performance Analysis: Exploring Tableau, MATLAB, and Gaussian Mixture Models for Cluster Analysis": 1 + "Comprehensive Sports Analytics: A Data-Driven Approach using Tableau, Apache Spark, and Density-Based Cluster Analysis.": 1 + "Exploring the Quantize Tool in FL Studio's Piano Roll: A Deep Dive into its Influence on Digital Audio Workstations": 1 + "Music and Tech: Dissecting the MIDI Controller Integration in FL Studio's Piano Roll ": 1 + "Understanding the Scale Highlighting Feature in FL Studio's Piano Roll and its Contribution to Digital Music Production": 1 + "Mastering the Velocity Editor in FL Studio's Piano Roll: A Key to Advanced Digital Sound Engineering": 1 + "FL Studio's Piano Roll Chord Builder: Transforming the Landscape of Digital Audio Workstations": 1 + "The Impact of FL Studio's Piano Roll's Ghost Notes on Modern Digital Music Production": 1 + "Unraveling the Magic of FL Studio's Piano Roll's Snap to Grid Feature: A Game Changer for Digital Audio Workstations": 1 + "Music and Tech: Delving into FL Studio's Piano Roll's Note Properties and Their Influence on Digital Music": 1 + "The Role of FL Studio's Piano Roll's Note Length Control in Shaping Digital Audio Workstations": 1 + "Harnessing the Power of FL Studio's Piano Roll's Note Panning in Digital Sound Production": 1 + "Advanced Music: Developing Harmony and Composition Using MIDI Technology": 1 + "Advanced Music: Developing Harmony and Composition with Digital Audio Workstation ": 1 + "Advanced Music: Exploring Harmony and Composition through Logic Pro X ": 1 + "Advanced Music: Developing Harmony with the Use of Ableton Live in Composition ": 1 + "Advanced Music: Fostering Harmony and Composition through Pro Tools ": 1 + "Advanced Music: Mastering Harmony and Composition with Sibelius Software ": 1 + "Advanced Music: Developing Harmony and Composition Applying FL Studio ": 1 + "Advanced Music: Enhancing Harmony and Composition using GarageBand ": 1 + "Advanced Music: Harmony and Composition Development through Cubase ": 1 + "Advanced Music: Advancing Harmony and Composition with Audacity ": 1 + "Advanced Music: Developing Harmony and Composition using Music Notation Software.": 1 + "Physical Education: Implementing Plyometric Training in Dance for Enhanced Coordination and Rhythm ": 1 + "Physical Education: Utilizing Motion Capture Technology in Dance for Improved Coordination and Rhythm": 1 + "Physical Education: The Role of Kinesthetic Feedback in Dance for Better Coordination and Rhythm": 1 + "Physical Education: Coordination and Rhythm in Dance - A Focus on Biomechanics ": 1 + "Physical Education: Integration of Virtual Reality in Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Exploring the Use of Metronomes in Dance for Rhythm and Coordination": 1 + "Physical Education: Coordination and Rhythm in Dance - A Study of Proprioceptive Training": 1 + "Physical Education: Enhancing Dance Coordination and Rhythm through Wearable Technology": 1 + "Physical Education: The Impact of Mirror Training on Dance Coordination and Rhythm ": 1 + "Physical Education: Expanding Dance Coordination and Rhythm through Video Analysis Tools.": 1 + "The Impact of Pro Tools on American Pop: A Case Study of Auto-Tune and Sequencer Tools": 1 + "Auto-Tune and the MIDI Sequencer: A Deep Dive into Logic Pro's Role in American Pop": 1 + "Ableton Live and Its Mark on American Pop: The Evolution Via Auto-Tune and Sequencer Tools": 1 + "Changing Tune: The Influence of GarageBand on Auto-Tune and Sequencer Tools in American Pop": 1 + "A Reverb on Pop: Studying Auto-Tune and Sequencer Tools in FL Studio": 1 + "Shaping Sound: Cubase's Contribution to Auto-Tune and Sequencer Tools in American Pop": 1 + "From Analog to Digital: The Role of Reason Software in American Pop's Auto-Tune and Sequencer Evolution": 1 + "The Sound of Pop: An Examination of Pro Tools HD and Its Effect on Auto-Tune and Sequencer Tools": 1 + "Beats and Bytes: The Influence of Digital Audio Workstations on Auto-Tune and Sequencer Tools": 1 + "Audacity's Impact: A Detailed Study of Auto-Tune and Sequencer Tools in American Pop Music": 1 + "Physics: Utilizing Doppler Radar to Understand the Laws of Motion in Baseball": 1 + "Physics: The Application of Motion Capture Technology in Sports Science": 1 + "Physics: The Role of Force Platforms in the Laws of Motion in Sports Science": 1 + "Physics: The Impact of Tensiometers on the Laws of Motion in Sports Biomechanics": 1 + "Physics: The Laws of Motion in Sports Science through the Lens of Infrared Cameras": 1 + "Physics: Biomechanical Analysis Tools in Understanding the Laws of Motion in Sports": 1 + "Physics: The Use of Accelerometers in Studying the Laws of Motion in Sports Science": 1 + "Physics: The Laws of Motion in Golf Analyzed through High-Speed Video Cameras": 1 + "Physics: The Influence of Force Plate Technology on the Laws of Motion in Track and Field": 1 + "Physics: Understanding the Laws of Motion in Tennis through 3D Motion Analysis Technology": 1 + "Utilizing PCR Technology in Human Adaptation to Climate Change: A Comprehensive Study on CRISPR-Cas9 and Gel Electrophoresis ": 1 + "Exploring the Role of DNA Sequencing in Human Adaptation to Environmental Changes: In-depth Analysis of CRISPR-Cas9 and Gel Electrophoresis ": 1 + "Assessing Genomic Data: Human Adaptation to Environmental Changes through CRISPR-Cas9 and Gel Electrophoresis ": 1 + "Human Genomic Engineering: Environmental Adaptation through CRISPR-Cas9, Gel Electrophoresis and DNA Microarrays ": 1 + "Gene Editing and the Environment: A Specific Look at CRISPR-Cas9, Gel Electrophoresis and Next Generation Sequencing ": 1 + "Integrating Bioinformatics in Studying Human Adaptation to Environmental Changes: A Focus on CRISPR-Cas9 and Gel Electrophoresis ": 1 + "A Detailed Examination of RNA Interference in Human Adaptation to Environmental Changes: with CRISPR-Cas9 and Gel Electrophoresis ": 1 + "Environmental Impacts on Human Genomes: A Study of CRISPR-Cas9, Gel Electrophoresis and Flow Cytometry ": 1 + "Genomic Responses to Environmental Stressors: A Deep Dive into CRISPR-Cas9, Gel Electrophoresis and Mass Spectrometry ": 1 + "Application of Genomic Library in Human Adaptation to Environmental Changes: A Detailed Study on CRISPR-Cas9 and Gel Electrophoresis": 1 + "Physics: Exploring Newton's Laws of Motion with Pendulum Experiments": 1 + "Physics: Understanding Kinematics through Projectile Motion Experiments Using Slingshots": 1 + "Physics: Investigating Gravitational Forces with Incline Plane Experiments": 1 + "Physics: Learning About Friction Through Drag Coefficient Experiments Using Air Tables": 1 + "Physics: Discovering Centripetal Force using Spinning Bucket Experiments": 1 + "Physics: Examining Momentum and Impulse Through Egg Drop Experiments": 1 + "Physics: Exploring Torque and Equilibrium Using Lever Arm Experiments": 1 + "Physics: Unveiling the Secrets of Harmonic Motion Using Mass-Spring Systems": 1 + "Physics: Understanding the Concept of Force Through Pulley System Experiments": 1 + "Physics: Learning about Fluid Dynamics through Bernoulli's Principle Experiments Using Venturi Tubes": 1 + "Elementary Science: Examining Global Weather Patterns with Infrared LiDAR Technology and Doppler Radar": 1 + "Elementary Science: Studying Microclimate Variations using Infrared LiDAR Technology and Thermographic Cameras": 1 + "Elementary Science: Unraveling Storm Systems through Infrared LiDAR Technology and Anemometers": 1 + "Elementary Science: Understanding Weather Forecasting through Infrared LiDAR Technology and Barometers": 1 + "Elementary Science: Analyzing Precipitation Patterns using Infrared LiDAR Technology and Rain Gauges": 1 + "Elementary Science: Deciphering Atmospheric Pressure with Infrared LiDAR Technology and Altimeters": 1 + "Elementary Science: Investigation of Cloud Formations through Infrared LiDAR Technology and Ceilometers": 1 + "Elementary Science: Exploring Wind Speed and Direction with Infrared LiDAR Technology and Wind Vanes": 1 + "Elementary Science: Studying Temperature Variations using Infrared LiDAR Technology and Thermometers": 1 + "Elementary Science: Observing Humidity Levels through Infrared LiDAR Technology and Hygrometers": 1 + "Mastering Cubase: A Comprehensive Guide to Virtual Studio Technology in Modern Music Production": 1 + "Exploring Cubase's Chord Pads: A Deep Dive into Modern Music Production Techniques": 1 + "Harnessing MIDI in Cubase: A Complete Guide to Modern Music Production": 1 + "Using Cubase's MixConsole: A Detailed Manual for Modern Music Production": 1 + "The Power of Cubase’s Groove Agent SE in Modern Music Production: A Comprehensive Guide": 1 + "The Cubase Sampler Track: A Thorough Guide to Modern Music Production": 1 + "Arrangement Window in Cubase: A Comprehensive Guide to Modern Music Production": 1 + "Advanced Audio Editing in Cubase: A Comprehensive Guide to Modern Music Production": 1 + "Cubase and the Power of Audio Inserts: A Comprehensive Guide to Modern Music Production": 1 + "The Art of Mixing in Cubase: A Comprehensive Guide to EQing in Modern Music Production.": 1 + "Physical Education: Rhythmic Movements and Dance Using Ballet Shoes": 1 + "Physical Education: Incorporating Fitness Trackers in Rhythmic Movements and Dance": 1 + "Physical Education: Rhythmic Movements and Dance - A Focus on Choreography Software ": 1 + "Physical Education: Utilizing Video Analysis in Rhythmic Movements and Dance": 1 + "Physical Education: Rhythmic Movements and Dance with Heart Rate Monitors": 1 + "Physical Education: The Impact of VR Technology on Rhythmic Movements and Dance": 1 + "Physical Education: Rhythmic Movements, Dance, and the Use of Pedometers": 1 + "Physical Education: Rhythmic Movements and Dance - Exploring Motion Capture Technology ": 1 + "Physical Education: Rhythmic Movements and Dance - A Study on Bluetooth Speakers ": 1 + "Physical Education: Using Dance Mats in Rhythmic Movements and Dance Classes": 1 + "Fundamentals of Neuroscience: Exploring Brain Basics with fMRI Technology": 1 + "Neuroanatomy Essentials: Understanding Brain Structure through PET Scans and EEGs": 1 + "Cognitive Neuroscience: Brain Basics and PET Scans with a Focus on Neuroplasticity": 1 + "Introduction to Neuroscience: Using PET Scans to Understand Neurotransmission": 1 + "Fundamentals of Neuroscience: Decoding Brain Basics through PET Scans and TMS": 1 + "Neuroscience 101: A Deep Dive into Brain Basics and PET Scans with a Lens on Neurogenesis": 1 + "Neurobiology for Beginners: Exploring Brain Basics and PET Scans with Microscopy": 1 + "Neuroscience Basics: Understanding the Brain through PET Scans and Diffusion Tensor Imaging": 1 + "The Science of the Brain: Fundamentals of Neuroscience with PET Scans and Spectroscopy": 1 + "Fundamentals of Neuroscience: A Comprehensive Look at Brain Basics, PET Scans, and Neural Networks.": 1 + "Science: Detailed Study of Botany Using Microscopy: The Plant Life Cycle": 1 + "Introduction to Botany: Understanding Photosynthesis Through Chlorophyll Fluorescence Imaging": 1 + "Science: Botany Exploration with 3D Printing: The Life Cycle of Plants": 1 + "Advanced Botany: Exploring Plant Life Cycle and Photosynthesis Using DNA Barcoding": 1 + "Botany: Detailed Examination of Plant Life Cycle Using Scanning Electron Microscopy": 1 + "Science: Introduction to Botany: Plant Life Cycle and Photosynthesis Using Spectrophotometry": 1 + "In-depth Study of Botany: Plant Life Cycle and Photosynthesis Through Infrared Thermography": 1 + "Botany: Plant Life Cycle and Photosynthesis Explored Through Remote Sensing Technology": 1 + "Science: Exploring Botany Using Grafting Techniques: Plant Life Cycle and Photosynthesis": 1 + "Introduction to Botany: Understanding Plant Life Cycle and Photosynthesis Using Plant Tissue Culture Techniques": 1 + "Sports Economics: Analyzing Revenue Management Using Quantitative Financial Forecasting Techniques and Excel": 1 + "Sports Economics: A Deep Dive into Revenue Management Using Monte Carlo Simulation in Financial Forecasting Techniques": 1 + "Sports Economics: An Application of Python in Revenue Management and Financial Forecasting Techniques": 1 + "Sports Economics: Leveraging Big Data Analytics in Revenue Management Using Financial Forecasting Techniques": 1 + "Sports Economics: Incorporating Blockchain Technology in Revenue Management Using Financial Forecasting Techniques": 1 + "Sports Economics: Understanding Revenue Management Through Financial Forecasting Techniques and Machine Learning": 1 + "Sports Economics: An Insight into Revenue Management Using Financial Forecasting Techniques and SWOT Analysis": 1 + "Sports Economics: A Study on Revenue Management Using Financial Forecasting Techniques and Risk Assessment Tools": 1 + "Sports Economics: Exploring Revenue Management Using Financial Forecasting Techniques and Predictive Modelling": 1 + "Sports Economics: Capitalizing on Artificial Intelligence in Revenue Management Using Financial Forecasting Techniques": 1 + "Neuroscience: Utilizing Siemens MAGNETOM Terra in Conjunction with Near-Infrared Spectroscopy for Brain Function Discovery": 1 + "Neuroscience: Implementing Magnetic Particle Imaging and fNIRS with MATLAB Analysis in Brain Function Discovery": 1 + "Neuroscience: Advancing Brain Function Discovery using Magnetic Particle Imaging and Near-Infrared Spectroscopy with the Concept of Neuroplasticity": 1 + "Neuroscience: Neuroimaging Analysis using Magnetic Particle Imaging, Near-Infrared Spectroscopy and Python Programming in Brain Function Discovery": 1 + "Neuroscience: Exploring Brain Function Discovery through Magnetic Particle Imaging, Near-Infrared Spectroscopy and Multimodal Imaging Techniques": 1 + "Neuroscience: Enhancing Brain Function Discovery using Magnetic Particle Imaging, Near-Infrared Spectroscopy and Deep Learning Algorithms": 1 + "Neuroscience: Role of Magnetic Particle Imaging and Near-Infrared Spectroscopy in Brain Function Discovery: An Analysis using fMRI Technology": 1 + "Neuroscience: Brain Function Discovery through Magnetic Particle Imaging and Near-Infrared Spectroscopy using the Principle of Optogenetics": 1 + "Neuroscience: Unraveling Brain Function Discovery using Magnetic Particle Imaging, Near-Infrared Spectroscopy and High-Density Electroencephalography": 1 + "Neuroscience: A Comprehensive Study on Brain Function Discovery using Magnetic Particle Imaging, Near-Infrared Spectroscopy and Diffusion Tensor Imaging.": 1 + "Science of Cooking: Exploring Food Chemistry through Molecular Gastronomy and Sous Vide Techniques ": 1 + "The Chemistry of Food: Unveiling Molecular Gastronomy via Spectrophotometry ": 1 + "Culinary Science: An Introduction to Food Chemistry and Molecular Gastronomy using Emulsion Techniques ": 1 + "The Art of Cooking: Exploring Food Chemistry & Molecular Gastronomy with pH Meters ": 1 + "Unraveling Culinary Mysteries: Food Chemistry & Molecular Gastronomy with Thermal Immersion Circulators ": 1 + "Food Chemistry and Molecular Gastronomy: Investigating with Spectroscopy ": 1 + "The Essence of Cooking: Mastering Food Chemistry & Molecular Gastronomy through High Pressure Cooking ": 1 + "Gastronomic Science: Delving into Food Chemistry with Molecular Gastronomy and Cryogenic Freezing ": 1 + "Kitchen Chemistry: A Deep Dive into Molecular Gastronomy with Centrifuge Techniques ": 1 + "Culinary Adventures: Exploring Food Chemistry & Molecular Gastronomy with Modernist Techniques.": 1 + "Leveraging Numpy in Python for Sports Analytics: A Comprehensive Study of Athlete Performance using Big Data": 1 + "Harnessing Pandas in Python for Athletic Performance Analysis: Big Data Analytics in Action": 1 + "Advanced Machine Learning with Python for Sports Performance: A Deep Dive into Big Data Analytics": 1 + "Utilizing TensorFlow in Python for Sports Performance Analysis: Exploiting Big Data Analytics": 1 + "Utilizing Scikit-Learn in Python for Athlete Performance Analysis: A Detailed Examination of Big Data Analytics": 1 + "Python and Matplotlib for Visualizing Athletic Performance: A Deep Exploration of Big Data Analytics": 1 + "Boosting Athletic Performance with Python and Jupyter Notebook: Big Data Analytics Techniques": 1 + "PyTorch in Python for Sports Science: A Detailed Study of Athlete Performance using Big Data Analytics": 1 + "Deep Learning Techniques with Keras in Python: Enhancing Athletic Performance through Big Data Analytics": 1 + "Applying Data Science with Seaborn in Python: A Deep Dive into Athlete Performance using Big Data Analytics": 1 + "Logic: The Role of Symbolism and Representation in Art through Oil Painting": 1 + "Logic: Exploring Symbolism and Representation in Art using Digital Technology": 1 + "Logic: The Application of Watercolor in Symbolism and Representation in Art": 1 + "Logic: Symbolism and Representation in Art - A Focus on Mixed Media Techniques": 1 + "Logic: The Impact of Acrylic Paint in Symbolism and Representation in Art": 1 + "Logic: Symbolism and Representation in Art - Understanding through 3D Printing Technology": 1 + "Logic: Charcoal Drawing and its Role in Symbolism and Representation in Art": 1 + "Logic: Symbolism and Representation in Art - A Study of Fresco Techniques": 1 + "Logic: The Influence of Photography in Symbolism and Representation in Art": 1 + "Logic: Symbolism and Representation in Art - A Perspective through Sculpting Techniques": 1 + "Introduction to Neuroscience for Kids: Understanding Our Brain with MRI Technology": 1 + "Exploring Our Brain: A Kid's Guide to Neuroscience and EEG": 1 + "Kids & Neuroscience: Understanding Our Brain Through Computer Simulation": 1 + "A Kid's Journey into Neuroscience: Understanding Our Brain with Neuroimaging": 1 + "Kids in Neuroscience: Understanding Our Brain Using Neurofeedback": 1 + "Neuroscience for Kids: Understanding Our Brain Through the Lens of fMRI": 1 + "An In-depth Study of Neuroscience for Kids: Exploring Our Brain with PET Scans": 1 + "Neuroscience for Young Minds: Understanding Our Brain Using Electrophysiology": 1 + "Brainy Kids: Understanding Our Brain Through the Science of Neuroplasticity": 1 + "Neuroscience for Kids: Decoding Our Brain with Genetic Algorithms.": 1 + "Philosophy and IoT: Exploring Blockchain's Ethical Dilemmas in the Digital Age and Ten Possible Solutions": 1 + "Philosophy and IoT: Ethical Challenges of Artificial Intelligence in the Digital World and Ten Possible Resolutions": 1 + "Philosophy and IoT: Ethical Quandaries in Cybersecurity in the Digital Era and Ten Potential Strategies": 1 + "Philosophy and IoT: Navigating Data Privacy Dilemmas in the Contemporary Digital Landscape and Ten Possible Remedies": 1 + "Philosophy and IoT: Ethical Implications of Machine Learning in the Digital Age and Ten Prospective Solutions": 1 + "Philosophy and IoT: Tackling Ethical Issues of Cloud Computing in the Digital Age and Ten Possible Solutions": 1 + "Philosophy and IoT: Understanding Ethical Dilemmas of Facial Recognition Technology in the Digital Age and Ten Possible Solutions": 1 + "Philosophy and IoT: Ethical Conundrums of Quantum Computing in the Digital Age and Ten Possible Solutions": 1 + "Philosophy and IoT: Ethical Challenges of Virtual Reality in the Digital Age and Ten Possible Solutions": 1 + "Philosophy and IoT: Unraveling Ethical Dilemmas of Augmented Reality in the Digital Age and Ten Possible Solutions": 1 + "Philosophy: Introduction to Ethical Thinking with Kantian Ethics": 1 + "Philosophy: Introduction to Ethical Thinking using the Trolley Problem": 1 + "Philosophy: Introduction to Ethical Thinking and the Concept of Utilitarianism": 1 + "Philosophy: Introduction to Ethical Thinking through Virtue Ethics": 1 + "Philosophy: Introduction to Ethical Thinking and the Debate on Moral Relativism": 1 + "Philosophy: Introduction to Ethical Thinking using the Prisoner's Dilemma": 1 + "Philosophy: Introduction to Ethical Thinking and the Exploration of Deontology": 1 + "Philosophy: Introduction to Ethical Thinking with an Examination of Consequentialism": 1 + "Philosophy: Introduction to Ethical Thinking using the Veil of Ignorance Concept": 1 + "Philosophy: Introduction to Ethical Thinking and the Analysis of Egoism.": 1 + "Computer Science: Creating Beats with Python - An Introduction to Music Technology using Logic Pro X and MIDI Controllers": 1 + "Computer Science: Introduction to Sound Synthesis with Python in Logic Pro X": 1 + "Python and Logic Pro X: Creating Beats with Digital Audio Workstation (DAW)": 1 + "Computer Science: An Introduction to Music Technology - Beats Creation with Python, Logic Pro X and Ableton Live ": 1 + "Python Programming: Creating Rhythms with Logic Pro X and Beat Sequencing Techniques": 1 + "Computer Science: Exploring Digital Signal Processing in Music with Python and Logic Pro X": 1 + "Python for Music Technology: Beats Creation using Logic Pro X and the Fourier Transform ": 1 + "Computer Science: Creating Beats with Python - Music Production Techniques in Logic Pro X": 1 + "Computer Science: An Introduction to Music Technology - Beats Creation using Python, Logic Pro X and Audio Plugins": 1 + "Python and Logic Pro X: An Intro to Music Technology with Beat Matching Techniques.": 1 + "Soil Fertility Management: Utilizing GIS Technology in Satellite Imaging for Environmental Studies": 1 + "Expanding Soil Fertility: The Role of Drone Technology in Satellite Imaging for Environmental Studies": 1 + "Enhancing Soil Fertility Management: Evaluating the Use of Lidar Technology in Satellite Imaging": 1 + "Soil Fertility Management: Applying Artificial Intelligence in Satellite Imaging for Environmental Studies": 1 + "Soil Fertility Management: Exploring the Use of Satellite Imaging and Infrared Technology in Environmental Studies": 1 + "The Impact of Spectral Analysis on Soil Fertility Management: A Look at Satellite Imaging in Environmental Studies": 1 + "Soil Fertility Management: Integrating Cloud Computing in Satellite Imaging for Environmental Studies": 1 + "Soil Fertility Management: The Role of Remote Sensing in Satellite Imaging for Environmental Studies": 1 + "Soil Fertility Management: Incorporating Machine Learning in Satellite Imaging for Environmental Studies": 1 + "Soil Fertility Management: The Use of Satellite Imaging and Big Data in Environmental Studies.": 1 + "Language Arts: Creative Writing and Storytelling with Microsoft Word": 1 + "Language Arts: Enhancing Storytelling through Google Docs": 1 + "Language Arts: Creative Writing using Scrivener": 1 + "Language Arts: Storytelling with Digital Storyboard Tools": 1 + "Language Arts: Creative Writing and Storytelling through Blogging Platforms": 1 + "Language Arts: Exploring Storytelling with Podcasting Technology": 1 + "Language Arts: Creative Writing with Grammarly Assistance": 1 + "Language Arts: Storytelling using Virtual Reality Concepts": 1 + "Language Arts: Creative Writing using Trello Project Management": 1 + "Language Arts: Storytelling with PowerPoint Presentation Tools": 1 + "Chemistry for Kids: Understanding Elements and Compounds with Chemical Reactions Using Periodic Table": 1 + "Chemistry for Kids: Interactive Learning of Elements and Compounds with Chemical Reactions Using VR Technology": 1 + "Chemistry for Kids: Exploring Elements and Compounds through Chemical Reactions Using Microscope": 1 + "Chemistry for Kids: Discovering Elements and Compounds with Chemical Reactions Using Laboratory Equipment": 1 + "Chemistry for Kids: Mastery of Elements and Compounds with Chemical Reactions Using Chemistry Software": 1 + "Chemistry for Kids: Learning Elements and Compounds with Chemical Reactions Using Atomic Models": 1 + "Chemistry for Kids: Practical Understanding of Elements and Compounds using Chemical Reactions and Chemistry Kits": 1 + "Chemistry for Kids: In-depth Study of Elements and Compounds with Chemical Reactions Using Balancing Chemical Equations": 1 + "Chemistry for Kids: Exploring Elements and Compounds with Chemical Reactions Using 3D Models": 1 + "Chemistry for Kids: Engaging with Elements and Compounds through Chemical Reactions Using Digital Simulations.": 1 + "Mathematics: The Influence of Euclidean Geometry and Pythagorean Theorem on Architectural Structures Worldwide": 1 + "The Global Impact of Euclidean Geometry and Cartesian Coordinates on Modern Architecture": 1 + "The Role of Euclidean Geometry and Constructive Solid Geometry (CSG) in Worldwide Architecture": 1 + "Mathematics: Analyzing the Influence of Euclidean Geometry and Geodesic Designs in Global Architecture": 1 + "The Impact of Euclidean Geometry and CAD Tools on International Architectural Designs": 1 + "Worldwide Architecture: A Study of Euclidean Geometry and the Golden Ratio": 1 + "The Influence of Euclidean Geometry and Algorithms in Architectural Design Across the Globe": 1 + "Mathematics: The Impact of Euclidean Geometry and Fractal Geometry on Architectural Structures Worldwide": 1 + "The Integration of Euclidean Geometry and 3D Modeling in Global Architectural Design": 1 + "Mathematics: The Impact of Euclidean Geometry and Trigonometry on Architecture Worldwide.": 1 + "Advanced Physics with Lego Structures: Fourier Transform Analysis for Sound Wave Phase Shifts": 1 + "Lego Structures for Sound Wave Study: Utilizing Oscilloscope for Detailed Phase Shift Analysis in Physics": 1 + "The Role of Resonance in Sound Wave Phase Shifts: A Detailed Study Using Lego Structures in Physics": 1 + "Lego Structures & Physics: Laser Interferometry for Sound Wave Phase Shift Analysis": 1 + "Spectroscopy and Phase Shift Analysis: A Deep Dive into Sound Waves using Lego Structures": 1 + "Sound Wave Phase Shifts: Understanding Doppler Effect with Lego Structures in Physics": 1 + "Lego Structures in Physics: Studying Sound Wave Phase Shifts through Waveform Generators": 1 + "Lego Structures and Physics: The Application of Bode Plots in Sound Wave Phase Shift Analysis": 1 + "Exploring Sound Wave Phase Shifts: An In-depth Study Using Lego Structures and Acoustic Impedance in Physics": 1 + "Lego Structures & Spectral Analysis: A Detailed Study of Sound Wave Phase Shifts in Physics.": 1 + "Applying Skew-T Log-P Diagrams in Meteorological Data Analysis for Football Tactics: The Impact of Climate on Game Strategies": 1 + "Understanding Climate Influence on Football Tactics using Radiosonde Data: A Thermodynamic Perspective": 1 + "The Role of Climate in Football Strategies: A Comprehensive Analysis using SYNOP Reports and Thermodynamic Diagrams": 1 + "Utilizing Thermodynamic Diagrams in Meteorological Data Analysis with Meteograms: Deciphering the Impact of Climate on Football Tactics": 1 + "Leveraging Radiosonde Observations in Thermodynamic Diagrams for Meteorological Analysis: The Role of Climate in Football Tactics": 1 + "Decoding the Role of Climate in Football Tactics: An Analysis Using Thermodynamic Diagrams and Weather Radar Technology": 1 + "The Role of Climate in Football Tactics: A Detailed Examination Using Thermodynamic Diagrams and Weather Balloon Data": 1 + "The Influence of Climate on Football Tactics: Analysis with Thermodynamic Diagrams and Automated Weather Stations": 1 + "Using Thermodynamic Diagrams and Doppler Radar for Meteorological Data Analysis: The Role of Climate in Football Tactics": 1 + "Climate Impact on Football Tactics: An Evaluation Using Thermodynamic Diagrams and Satellite Imagery.": 1 + "Neuroscience: An Introduction to Brain Structure Using MRI Scanning": 1 + "Neuroscience: Unraveling Brain Structure with Electroencephalogram": 1 + "Neuroscience: An Overview of Brain Structure Through PET Scan": 1 + "Neuroscience: Exploring Brain Structure with Diffusion Tensor Imaging": 1 + "Neuroscience: Brain Structure Analysis with Functional MRI": 1 + "Neuroscience: Understanding Brain Structure Through Neuroimaging Techniques": 1 + "Neuroscience: A Deep Dive into Brain Structure with Spectroscopy": 1 + "Neuroscience: An Insight into Brain Structure Using Transcranial Magnetic Stimulation": 1 + "Neuroscience: Decoding Brain Structure with Positron Emission Tomography": 1 + "Neuroscience: A Comprehensive Study of Brain Structure via Neuron Tracing Techniques": 1 + "Capturing the Cosmos: A Deep Dive into Astronomical Photography using Telescopes": 1 + "Stars Through the Screen: A Course on Astronomical Photography using Digital Cameras": 1 + "Galaxies at a Glance: Exploring Astronomical Photography with Wide-field Imaging": 1 + "Light Years Away: A Course on Astronomical Photography using Long Exposure Techniques": 1 + "Spectral Visions: A Course on Astronomical Photography using Spectroscopy": 1 + "Astro-Imaging: A Course on Astronomical Photography using Image Stacking Techniques": 1 + "Cosmic Clicks: A Course on Astronomical Photography using DSLR Cameras": 1 + "The Universe in High-Def: A Course on Astronomical Photography using High-Resolution Imaging": 1 + "Starlight Captures: A Course on Astronomical Photography using Infrared Imaging": 1 + "Celestial Snapshots: A Course on Astronomical Photography using CCD Cameras": 1 + "Soil Fertility Management: Utilizing IoT Sensors and Drone Technology for Environmental Studies and Nutritional Value Enhancement": 1 + "Leveraging IoT Sensors and AI Analytics for Advanced Soil Fertility Management: Enhancing Environmental Studies and Nutritional Value": 1 + "Soil Fertility Management: IoT Sensors and Satellite Imaging for In-depth Environmental Studies and Nutritional Value Enhancement": 1 + "Soil Fertility Management: Using IoT Sensors and GIS Mapping for Comprehensive Environmental Studies and Nutritional Value Improvement": 1 + "Advanced Soil Fertility Management: The Role of IoT Sensors and Machine Learning in Environmental Studies and Nutritional Value Enhancement": 1 + "Soil Fertility Management: IoT Sensors Integrated with Remote Sensing for Improved Environmental Studies and Nutritional Value": 1 + "Soil Fertility Management: IoT Sensors and Big Data Analysis for Environmental Studies and Nutritional Value Enhancement": 1 + "Soil Fertility Management: Harnessing IoT Sensors and Predictive Analytics for Environmental Studies and Nutritional Value Enhancement": 1 + "Soil Fertility Management: IoT Sensors and Cloud Computing for Optimized Environmental Studies and Nutritional Value Enhancement": 1 + "Soil Fertility Management: IoT Sensors and Blockchain Technology for Secure Environmental Studies and Nutritional Value Enhancement.": 1 + "Environmental Studies: Analyzing Ecosystems with Virtual Reality using Geographic Information Systems (GIS)": 1 + "Environmental Studies: Virtual Reality Exploration of Ecosystems with Drone Technology": 1 + "Environmental Studies: Understanding Ecosystems through Virtual Reality and LiDAR Technology": 1 + "Environmental Studies: Studying Ecosystems with Virtual Reality and Digital Soil Mapping Techniques": 1 + "Environmental Studies: Virtual Reality in Ecosystem Studies using Remote Sensing Technology": 1 + "Environmental Studies: Application of Virtual Reality and 3D Modeling in Ecosystem Analysis": 1 + "Environmental Studies: Ecosystem Research with Augmented Reality and Virtual Reality Tools": 1 + "Environmental Studies: Virtual Reality and Machine Learning in Ecosystem Studies": 1 + "Environmental Studies: Studying Ecosystem Dynamics with Virtual Reality and Satellite Imagery": 1 + "Environmental Studies: Virtual Reality and Big Data Analytics in Ecosystem Research": 1 + "History of Music: The Impact of The Electric Guitar on Rock and Roll Evolution": 1 + "Evolution of Jazz: The Role of Electric Amplification in Saxophone Sound": 1 + "The Electric Piano: Its Influence on Modern Pop Music Evolution": 1 + "The History of Synthesizers: Electric Amplification's Effect on Electronic Music Evolution": 1 + "The Impact of Electric Amplification on Blues: A Focus on Electric Harmonica": 1 + "Electric Drum Kit: Its Role in the Evolution of Percussion in Music History": 1 + "The Role of Electric Amplification on Hip Hop: The Story of Turntables and Mixers": 1 + "The Impact of MIDI Technology and Electric Amplification on Music Genre Evolution": 1 + "Electric Amplification and the Evolution of the Microphone: Its Impact on Vocal Music": 1 + "The Influence of Electric Amplification on Country Music: The Story of the Pedal Steel Guitar.": 1 + "Analyzing Lipid Metabolism: Using Mass Spectrometry and Nuclear Magnetic Resonance Imaging to Explore Fats in Human Body Functions": 1 + "Chemistry in Everyday Life: A Detailed Study on Role of Fats in Body Function using Mass Spectrometry and Gas Chromatography": 1 + "Investigating Fats: Utilizing Mass Spectrometry and Fourier Transform Infrared Spectroscopy in Body Function Studies": 1 + "The Role of Fats in Body Function: A Comprehensive Study using Mass Spectrometry and Liquid Chromatography": 1 + "Decoding Fats: Employing Mass Spectrometry and Electron Spin Resonance in Body Function Analysis": 1 + "A Study of Lipids: Using Mass Spectrometry and X-ray Crystallography to Understand Body Functions": 1 + "The Impact of Fats on Body Function: An Exploration using Mass Spectrometry and Ultraviolet-visible Spectroscopy": 1 + "Examining Fats in the Body: A Detailed Analysis using Mass Spectrometry and Time-of-Flight Secondary Ion Mass Spectrometry": 1 + "Understanding Fats: Employing Mass Spectrometry and Surface Plasmon Resonance in Body Function Studies": 1 + "Chemistry in Everyday Life: A Deep Dive into the Role of Fats in Body Function using Mass Spectrometry and Neutron Activation Analysis": 1 + "Leveraging Ethereum in Blockchain Technology for AI-Based Irrigation Systems: A Study on Transparency in Agricultural Society.": 1 + "Exploring the Role of Hyperledger in Blockchain Technology for AI-Based Irrigation Systems: Transparency Enhancements in Agricultural Society.": 1 + "Impact of Smart Contracts in Blockchain Technology on AI-Based Irrigation Systems: Increasing Transparency in Agricultural Society.": 1 + "Application of Drones in Blockchain-Enabled AI-Based Irrigation Systems: A New Horizon for Transparency in Agricultural Society.": 1 + "Utilizing IoT Devices in Blockchain Technology for AI-Based Irrigation Systems: A Comprehensive Study on Agricultural Transparency": 1 + "Cryptographic Hashing in Blockchain Technology for AI-Based Irrigation Systems: A Revolutionary Approach to Transparency in Agriculture.": 1 + "The Application of Machine Learning in Blockchain Technology for AI-Based Irrigation Systems: Unveiling Transparency in Agricultural Society.": 1 + "Big Data Analytics in Blockchain Technology for AI-Based Irrigation Systems: A Transparency Revolution in Agricultural Society.": 1 + "Role of Consensus Algorithms in Blockchain Technology for AI-Based Irrigation Systems: A Deep Dive into Agricultural Transparency.": 1 + "The Impact of Private Blockchain Networks in AI-Based Irrigation Systems: A Study on Improving Transparency in Agricultural Society.": 1 + "Social Studies: Enhancing Cultural Diversity in Event Management Using LinkedIn's SlideShare and Zoom: Ten Strategies for Success": 1 + "Social Studies: Leveraging LinkedIn's SlideShare and Trello for Cultural Diversity in Event Management: Ten Innovative Approaches": 1 + "Social Studies: Using LinkedIn's SlideShare Tool and Google Analytics to Improve Cultural Diversity in Event Management: Ten Solutions": 1 + "Social Studies: Maximizing Cultural Diversity in Event Management Through LinkedIn's SlideShare and Slack: Ten Practical Techniques": 1 + "Social Studies: Enhancing Cultural Diversity in Event Management with LinkedIn's SlideShare and MailChimp: Ten Effective Strategies": 1 + "Social Studies: Enhancing Cultural Diversity in Event Management via LinkedIn's SlideShare and Canva: Ten Creative Solutions ": 1 + "Social Studies: Utilizing LinkedIn's SlideShare and Microsoft Teams for Cultural Diversity in Event Management: Ten Comprehensive Methods": 1 + "Social Studies: LinkedIn's SlideShare and SurveyMonkey for Cultural Diversity in Event Management: Ten Data-Driven Techniques ": 1 + "Social Studies: Advancing Cultural Diversity in Event Management Using LinkedIn's SlideShare and Asana: Ten Organizational Strategies": 1 + "Social Studies: Promoting Cultural Diversity in Event Management Using LinkedIn's SlideShare and HubSpot: Ten Marketing Techniques": 1 + "Chemistry 180: The Chemistry of Sports Nutrition and Metabolism": 1 + "Chemistry 180: Exploring Biochemical Energy Systems in Sports Nutrition": 1 + "Chemistry 180: Sports Nutrition and the Role of Spectrophotometry": 1 + "Chemistry 180: Understanding Enzymes in Sports Nutrition": 1 + "Chemistry 180: The Impact of Nanotechnology on Sports Nutrition": 1 + "Chemistry 180: Molecular Gastronomy in Sports Nutrition": 1 + "Chemistry 180: Sports Nutrition and the Chemistry of Hydration": 1 + "Chemistry 180: Sports Nutrition: Isotonic and Hypotonic Solutions": 1 + "Chemistry 180: The Role of Chromatography in Sports Nutrition": 1 + "Chemistry 180: Sports Nutrition: Amino Acids and Protein Synthesis": 1 + "Chemistry 180: The Chemistry of Sports Nutrition: Vitamins and Trace Elements": 1 + "Analyzing the Rhetoric of Economic Policies and Unemployment: A Close Linguistic Study using Python for Predictive Modeling and Data Mining Techniques": 1 + "The Role of Rhetoric in Economic Policies and Unemployment: A Linguistic Analysis using SAS for Predictive Modeling with Data Mining Techniques": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study with Predictive Modeling using SQL and Data Mining Techniques": 1 + "Economic Policies and Unemployment Rhetoric: A Linguistic Study using Machine Learning for Predictive Modeling and Data Mining Techniques": 1 + "The Rhetoric of Economic Policies: A Linguistic Analysis and Unemployment Prediction using Java and Data Mining Tools": 1 + "A Linguistic Analysis of Economic Policies and Unemployment Rhetoric: Using the R Programming Language for Predictive Models and Data Mining": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study and Predictive Modeling using Tableau and Data Mining Techniques": 1 + "The Rhetoric of Economic Policies and Unemployment: A Comprehensive Linguistic Study using TensorFlow for Predictive Modeling and Data Mining": 1 + "Unraveling the Rhetoric of Economic Policies and Unemployment: A Linguistic Study using Predictive Modeling with MATLAB and Data Mining Techniques": 1 + "The Rhetoric of Economic Policies and Unemployment: A Linguistic Study using Excel for Predictive Modeling and Data Mining Techniques.": 1 + "English Literature 101: Exploring Classics through Digital Annotations in Shakespearean Plays": 1 + "English Literature 101: Unveiling Classics through Historical Context in Shakespearean Plays": 1 + "English Literature 101: Navigating Classics through Dramatic Structure in Shakespearean Plays": 1 + "English Literature 101: Deciphering Classics through Textual Analysis Software in Shakespearean Plays": 1 + "English Literature 101: Interpreting Classics through Character Arcs in Shakespearean Plays": 1 + "English Literature 101: Investigating Classics through Metaphorical Language in Shakespearean Plays": 1 + "English Literature 101: Exploring Classics through iambic pentameter in Shakespearean Plays": 1 + "English Literature 101: Unraveling Classics through Symbolism in Shakespearean Plays": 1 + "English Literature 101: Delving into Classics through Thematic Analysis in Shakespearean Plays": 1 + "English Literature 101: Exploring Classics through E-Reader Technology in Shakespearean Plays": 1 + "English Literature 101: Scrutinizing Classics through Literary Theory in Shakespearean Plays": 1 + "Practical Application of XGBoost Algorithm in Python: An In-Depth Machine Learning Course with Matplotlib Visualization ": 1 + "Implementing LightGBM: A Python-Based Machine Learning Course on Gradient Boosting Algorithms with Matplotlib ": 1 + "Scikit-Learn and Gradient Boosting Algorithms: A Practical Machine Learning Course with Matplotlib Visualization ": 1 + "Jupyter Notebook for Gradient Boosting: A Practical Python Machine Learning Course with Matplotlib Visualization ": 1 + "Advanced Gradient Boosting with CatBoost in Python: A Machine Learning Course Featuring Matplotlib Visualization ": 1 + "NumPy and Gradient Boosting: The Python Machine Learning Course with Practical Matplotlib Visualization ": 1 + "Practical Application of Gradient Boosting Algorithms in Python Using Pandas: A Machine Learning Course with Matplotlib ": 1 + "Anaconda for Gradient Boosting: A Python Machine Learning Course with In-Depth Matplotlib Visualization ": 1 + "Practical Application of Gradient Boosting Algorithms with TensorFlow in Python: A Machine Learning Course with Matplotlib ": 1 + "Gradient Boosting Algorithms and PyTorch: A Hands-on Python Machine Learning Course with Matplotlib Visualization": 1 + "Physics 101: Classical Mechanics - An Examination of Newton's Laws of Motion": 1 + "Physics 101: Classical Mechanics and the Concept of Momentum - A Dive into Kinetic Energy": 1 + "Physics 101: Classical Mechanics - Delving into Potential Energy": 1 + "Physics 101: Classical Mechanics and the Concept of Momentum - Investigating Frictional Forces": 1 + "Physics 101: Classical Mechanics - Understanding the Conservation of Momentum": 1 + "Physics 101: Classical Mechanics - Applying the Law of Gravitation": 1 + "Physics 101: Classical Mechanics and the Concept of Momentum - Exploring Inertia": 1 + "Physics 101: Classical Mechanics - A Study on the Principle of Equilibrium": 1 + "Physics 101: Classical Mechanics and the Concept of Momentum - The Power of Levers and Pulleys": 1 + "Physics 101: Classical Mechanics - The Role of Torque.": 1 + "Mathematics: Football Statistics Analysis and Data Visualization with Tableau using Python": 1 + "Mathematics: Advanced Football Statistics and Geospatial Data Visualization with Tableau": 1 + "Mathematics: Football Statistics and Data Visualization with Tableau & R Programming": 1 + "Mathematics: Football Statistics and Interactive Data Visualization with Tableau and D3.js": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop": 1 + "Mathematics: Football Statistics and Data Visualization with Tableau & SQL Queries": 1 + "Mathematics: Football Statistics and Machine Learning Data Visualization with Tableau": 1 + "Mathematics: Football Statistics and Real-time Data Visualization with Tableau using Streamlit": 1 + "Mathematics: Football Statistics and Data Visualization with Tableau & TensorFlow for Predictive Analysis": 1 + "Mathematics: Football Statistics and Data Visualization with Tableau using Apache Spark.": 1 + "Mastering MIDI Mapping in Cubase: A Comprehensive Guide to Modern Music Production": 1 + "Utilizing VST Plugins in Cubase for MIDI Control: A Full Course on Modern Music Production": 1 + "Harnessing MIDI in Cubase with Beat Designer: A Complete Guide to Modern Music Production": 1 + "Groove Agent in Cubase: Exploiting MIDI for Advanced Music Production": 1 + "MIDI Sequencing in Cubase: In-Depth Guide to Modern Music Production": 1 + "Harnessing MIDI in Cubase using Quantization: A Comprehensive Guide to Modern Music Production": 1 + "MIDI Recording Techniques in Cubase: A Complete Guide to Modern Music Production": 1 + "Harnessing MIDI in Cubase with Chord Pads: A Detailed Guide to Modern Music Production": 1 + "Cubase MIDI Editing: Exploiting Key Editor for Modern Music Production": 1 + "Harnessing MIDI in Cubase: A Complete Guide to Modern Music Production using Drum Editor.": 1 + "The Story of the Printing Press: A Technological History Perspective": 1 + "The Evolution of the Internet: A Detailed History of Technology": 1 + "The Journey of Artificial Intelligence: A History Perspective": 1 + "The Story of Telecommunication: A Historical Perspective on Technology": 1 + "The Rise of the Steam Engine: A Technological History Perspective": 1 + "The Impact of the Light Bulb: A Historical Perspective on Technology": 1 + "The Revolution of the Automobile: A Detailed History of Technology": 1 + "The Development of Nuclear Power: A History Perspective": 1 + "The Emergence of the Microprocessor: A Technological History Perspective": 1 + "The Evolution of Robotics: A Detailed History of Technology": 1 + "Microsoft Excel: Data Analysis Techniques using Pivot Tables": 1 + "Microsoft Excel: Data Analysis Techniques with VLOOKUP Function": 1 + "Microsoft Excel: Data Analysis Techniques using Conditional Formatting": 1 + "Microsoft Excel: Data Analysis Techniques with Macros": 1 + "Microsoft Excel: Data Analysis Techniques using Power Query": 1 + "Microsoft Excel: Advanced Data Analysis Techniques with Solver": 1 + "Microsoft Excel: Data Analysis Techniques using Charts and Graphs": 1 + "Microsoft Excel: Data Analysis Techniques with Formula Functions": 1 + "Microsoft Excel: Data Analysis Techniques using Data Validation Tools": 1 + "Microsoft Excel: Data Analysis Techniques with Power Pivot": 1 + "English Literature and the Environment: A Study of Ecocriticism Through the Lens of Geographical Information Systems (GIS)": 1 + "Using Machine Learning in Ecocriticism: An Advanced Study of English Literature and the Environment": 1 + "The Role of Data Analysis in Ecocriticism: An In-depth Study of English Literature and the Environment": 1 + "English Literature and the Environment: A Study of Ecocriticism Using Text Mining Techniques": 1 + "Application of Big Data in Ecocriticism: A Detailed Analysis of English Literature and the Environment": 1 + "English Literature and the Environment: A Study of Ecocriticism Through Social Network Analysis": 1 + "Exploring English Literature and the Environment: A Study of Ecocriticism and the Use of Hypertext Technology": 1 + "The Impact of Digital Humanities Tools on Ecocriticism: An Exploration of English Literature and the Environment": 1 + "English Literature and the Environment: A Study of Ecocriticism with the Aid of Sentiment Analysis Tools": 1 + "Using Predictive Modeling in the Study of Ecocriticism: A Deep Dive into English Literature and the Environment.": 1 + "Decoding Genomic Data Using Machine Learning, Numpy and PyCharm in Bioinformatics with Python: A focus on Pandas Library": 1 + "Bioinformatics with Python: Unraveling Genomic Data through Supervised Machine Learning, Numpy, and PyCharm": 1 + "Decoding Genomic Data with Python: A Deep Dive into Bioinformatics using Numpy, PyCharm, and Keras": 1 + "Bioinformatics with Python: A Comprehensive Course on Genomic Data Analysis using Machine Learning, Numpy, PyCharm, and TensorFlow": 1 + "Advanced Bioinformatics with Python: Decoding Genomic Data Using Machine Learning, Numpy, PyCharm, and Jupyter Notebooks": 1 + "Python for Bioinformatics: Using Machine Learning, Numpy, and PyCharm to Decode Genomic Data with Matplotlib": 1 + "Bioinformatics with Python: A Practical Approach to Decoding Genomic Data using Machine Learning, Numpy, PyCharm, and Scikit-learn": 1 + "Bioinformatics with Python: Harnessing the Power of Machine Learning, Numpy, PyCharm, and Seaborn for Genomic Data Analysis": 1 + "Bioinformatics with Python: Decoding Genomic Data Through Machine Learning, Numpy, PyCharm, and the SciPy Stack": 1 + "Python in Bioinformatics: Decoding Genomic Data with Machine Learning, Numpy, PyCharm, and the Django Web Framework.": 1 + "Physics: Exploring Light Dispersion with Optical Fiber Technology - The Role of Wavelength Division Multiplexers and Optical Power Meters": 1 + "Physics: Unveiling Chromatic Aberration through Optical Fiber Technology - Wavelength Division Multiplexers and Optical Spectrum Analyzers": 1 + "Physics: Understanding Color Perception through Optical Fiber Technology - Incorporating Wavelength Division Multiplexers and Optical Time Domain Reflectometers": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology - The Impact of Wavelength Division Multiplexers and Optical Attenuators": 1 + "Physics: Exploring Light and Color with Optical Fiber Technology - The Role of Wavelength Division Multiplexers and Fiber Optic Testers": 1 + "Physics: Diving into Light Propagation with Optical Fiber Technology - Wavelength Division Multiplexers and Optical Oscilloscopes": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology - The Influence of Wavelength Division Multiplexers and Optical Networking Devices": 1 + "Physics: Interpreting Light and Color with Optical Fiber Technology - Wavelength Division Multiplexers and Optical Modulators": 1 + "Physics: Decoding Light and Color with Optical Fiber Technology - Wavelength Division Multiplexers and Polarization Controllers": 1 + "Physics: Dissecting Light and Color with Optical Fiber Technology - The Integration of Wavelength Division Multiplexers and Fiber Bragg Gratings": 1 + "Geography: Digital Terrain Modeling of Regional Landforms using ArcGIS and their Cultural Influence": 1 + "Geography: Incorporating Remote Sensing in Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Lidar Technology in Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Digital Terrain Modeling of Regional Landforms using 3D Visualization Tools and their Cultural Influence": 1 + "Geography: GIS and Digital Elevation Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Application of Drone Technology in Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Digital Terrain Analysis of Regional Landforms using Satellite Imagery and their Cultural Influence": 1 + "Geography: Utilizing AutoCAD for Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Geography: Digital Terrain Modeling of Continental Landforms using Python Programming and their Cultural Influence": 1 + "Geography: Integration of GPS Data in Digital Terrain Modeling of Regional Landforms and their Cultural Influence": 1 + "Playful Philosophy: An Elementary Introduction to Socratic Dialogues": 1 + "Playful Philosophy: An Elementary Introduction to Kant's Categorical Imperative": 1 + "Playful Philosophy: An Elementary Introduction to Plato's Allegory of the Cave": 1 + "Playful Philosophy: An Elementary Introduction to Aristotle's Ethics": 1 + "Playful Philosophy: An Elementary Introduction to Descartes' Method of Doubt": 1 + "Playful Philosophy: An Elementary Introduction to Nietzsche's Will to Power": 1 + "Playful Philosophy: An Elementary Introduction to Hume's Empiricism": 1 + "Playful Philosophy: An Elementary Introduction to Hegel's Dialectic": 1 + "Playful Philosophy: An Elementary Introduction to Locke's Theory of Knowledge": 1 + "Playful Philosophy: An Elementary Introduction to Sartre's Existentialism": 1 + "Social Studies: Exploring the Impact of Arturia MatrixBrute Synthesizer in Traditional Music for Pacific Islander Festivals": 1 + "Social Studies: The Influence of Arturia DrumBrute Creation in Pacific Islander Festival Music": 1 + "Musicology: The Role of Arturia MicroFreak Synthesizer in Contemporary Pacific Islander Festivals": 1 + "Social Studies: Understanding the Use of Arturia KeyStep Controller in Music for Pacific Islander Festivals": 1 + "Social Studies: An In-depth Study of Arturia MiniLab MkII in Pacific Islander Festival Music": 1 + "Social Studies: The Function of Arturia BeatStep Pro in Pacific Islander Festival Music Composition": 1 + "Social Studies: The Application of Arturia PolyBrute Synthesizer in Music for Pacific Islander Festivals": 1 + "Social Studies: The Integration of Arturia SparkLE Drum Machine in Pacific Islander Festivals' Music": 1 + "Musicology: The Contribution of Arturia AudioFuse Studio in Pacific Islander Festival Music Production": 1 + "Social Studies: The Adaptation of Arturia MiniBrute 2S in Traditional Music for Pacific Islander Festivals": 1 + "Physical Education: The Role of Calorie Counting Apps in Diet and Fitness ": 1 + "Physical Education: Understanding Body Mass Index (BMI) in Physical Fitness ": 1 + "Physical Education: The Impact of Smart Watches on Diet Monitoring for Fitness ": 1 + "Physical Education: The Role of Macronutrient Tracking in Physical Fitness ": 1 + "Physical Education: The Influence of MyFitnessPal in Diet and Physical Fitness ": 1 + "Physical Education: Utilizing Wearable Fitness Trackers in Diet Control ": 1 + "Physical Education: The Role of Hydration Monitors in Diet and Physical Fitness ": 1 + "Physical Education: Understanding the Impact of Protein Powders in Physical Fitness ": 1 + "Physical Education: The Role of Fitness Apps in Diet and Exercise Routines ": 1 + "Physical Education: The Importance of Meal Prep Technologies in Physical Fitness.": 1 + "History: The Influence of Vinyl Records on Global Music Cultures": 1 + "History: The Impact of Radio Technology on Music in Various Cultures": 1 + "History: The Role of the Gramophone in Shaping World Music Cultures": 1 + "History: The Influence of Music Notation on World Cultures": 1 + "History: The Effects of the Piano on Musical Development in Global Cultures": 1 + "History: The Influence of Music Streaming Platforms on World Cultures": 1 + "History: The Impact of Digital Audio Workstations on Global Music Cultures": 1 + "History: The Role of the Electric Guitar in World Music Cultures": 1 + "History: The Influence of Synthesizers on Global Music Cultures": 1 + "History: The Effects of Auto-Tune Technology on Music in Various Cultures": 1 + "Exploring Ableton Live's Groove Pool: The Impact of MIDI Mapping on Digital Audio Workstations": 1 + "Harnessing the Power of Ableton Live's Groove Pool: The Role of Automation in Modern DAWs": 1 + "Unveiling Ableton Live's Groove Pool: The Significance of Warping in Digital Audio Workstations": 1 + "The Power of Ableton Live's Groove Pool: The Art of Beat Matching in DAWs": 1 + "Ableton Live's Groove Pool: The Influence of Sidechain Compression on Digital Audio Workstations": 1 + "Mastering Ableton Live's Groove Pool: The Impact of Quantizing on DAWs": 1 + "Understanding Ableton Live's Groove Pool: The Use of Audio to MIDI in Digital Audio Workstations": 1 + "The Strength of Ableton Live's Groove Pool: The Effects of Plug-ins in Modern DAWs": 1 + "The Wonders of Ableton Live's Groove Pool: The Impact of Sample Manipulation in Digital Audio Workstations": 1 + "Diving into Ableton Live's Groove Pool: The Role of Looping in Digital Audio Workstations": 1 + "Elementary Astronomy: Exploring the Solar System with Telescopes": 1 + "Elementary Astronomy: Exploring the Solar System through Satellite Imagery": 1 + "Elementary Astronomy: A Focus on the Solar System's Planetary Orbits": 1 + "Elementary Astronomy: Exploring the Solar System using Stellar Spectroscopy": 1 + "Elementary Astronomy: The Role of Gravitational Forces in the Solar System": 1 + "Elementary Astronomy: Exploring the Solar System with Astrophotography": 1 + "Elementary Astronomy: Solar System Exploration and the Hubble Space Telescope": 1 + "Elementary Astronomy: Analyzing the Solar System through Radio Astronomy": 1 + "Elementary Astronomy: Exploring the Solar System using Space Probes": 1 + "Elementary Astronomy: A Study of Solar System's Celestial Mechanics": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics using DNA Sequencing": 1 + "Analyzing Ecosystems and Evolution: A Comprehensive Study Through Genomics and Bioinformatics ": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics and Phylogenetics": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics using CRISPR Technology": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics and Next-Generation Sequencing ": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics using Metagenomics Techniques ": 1 + "Analyzing Ecosystems and Evolution: Genomic Perspectives with Microarray Technology": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics and Comparative Genomics ": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics using Genome Mapping": 1 + "Analyzing Ecosystems and Evolution: A Worldwide View Through Genomics and the Concept of Genetic Drift": 1 + "Art: Capturing the Dynamism of Sports Portraiture with Acrylic Painting - Exploring the Use of Light, Shadow, and Glazing Techniques": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Mastering the Use of Light and Shadow with Palette Knife Techniques": 1 + "Art: Sports Portraiture in Acrylic - A Detailed Study of Light, Shadow, and Color Mixing Techniques": 1 + "Art: The Art of Sports Portraiture with Acrylics - Incorporating Light and Shadow through Wet-on-Wet Techniques": 1 + "Art: Exploring Sports Portraiture in Acrylic - The Interplay of Light and Shadow with Underpainting Techniques": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Understanding Light and Shadow with the Use of Toning Ground Techniques": 1 + "Art: Sports Portraiture in Acrylic - Navigating Light, Shadow, and Detail with Dry Brushing Techniques": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Enhancing Light and Shadow Use with Layering Techniques": 1 + "Art: Sports Portraiture in Acrylic - Exploring Light and Shadow with the Use of Glazing Mediums": 1 + "Art: The World of Sports Portraiture through Acrylic Painting - Mastering Light and Shadow with the Use of Textural Techniques.": 1 + "Google Slides in Classroom: Enhancing Learning through Interactive Presentations with Youtube Integration": 1 + "Utilizing Google Forms in Google Slides for Effective Classroom Assessments": 1 + "Google Slides in Classroom: Enhancing Learning with Voice Typing Feature": 1 + "Advanced Google Slides: Using Animation and Transition Features for Interactive Classroom Presentations": 1 + "Google Slides and Google Sheets: Integrating Data Analysis into Classroom Presentations": 1 + "Google Slides in Classroom: Enhancing Learning with Collaborative Editing Tools": 1 + "Effective Classroom Learning: Incorporating Google Slides Q&A Feature into Interactive Presentations": 1 + "Google Slides in Classroom: Enhancing Presentations with Google Drawings and Diagrams": 1 + "Google Slides in Classroom: Using Google Slides Explore Tool for Research-Driven Learning": 1 + "Enhancing Classroom Interaction: Google Slides and Google Meet for Distance Learning.": 1 + "Elementary Philosophy 101: Utilizing Kant's Categorical Imperative in Ethical Egoism": 1 + "Elementary Philosophy 101: Exploring Ethical Egoism through Utilitarian Approach": 1 + "Elementary Philosophy 101: Dialectical Analysis of Ethical Egoism": 1 + "Elementary Philosophy 101: Ethical Egoism and the Application of Game Theory": 1 + "Elementary Philosophy 101: Ethical Egoism in the Light of Socratic Dialogue": 1 + "Elementary Philosophy 101: Evaluating Ethical Egoism with Deontological Ethics": 1 + "Elementary Philosophy 101: Ethical Egoism: a Deep Dive using the Socratic Method": 1 + "Elementary Philosophy 101: Ethical Egoism Dissected with Critical Thinking Tools": 1 + "Elementary Philosophy 101: Ethical Egoism Explored through the Lens of Social Contract Theory": 1 + "Elementary Philosophy 101: Navigating Ethical Egoism using the Theory of Relativism": 1 + "Art: Exploring Modern Art through the Lens of Abstract Expressionism using Monochromatic Color Schemes": 1 + "Art: Decoding Modern Art through the Lens of Abstract Expressionism with Acrylic Pouring Technique": 1 + "Art: Interpreting Modern Art through the Lens of Abstract Expressionism using Digital Media": 1 + "Art: Unpacking Modern Art through the Lens of Abstract Expressionism with Collage Techniques": 1 + "Art: Comprehending Modern Art through the Lens of Abstract Expressionism using Mixed Media": 1 + "Art: Navigating Modern Art through the Lens of Abstract Expressionism with Gestural Brushwork": 1 + "Art: Appreciating Modern Art through the Lens of Abstract Expressionism using Photomontage": 1 + "Art: Analysing Modern Art through the Lens of Abstract Expressionism with Cubism": 1 + "Art: Discovering Modern Art through the Lens of Abstract Expressionism using Action Painting": 1 + "Art: Understanding Modern Art through the Lens of Abstract Expressionism with Drip Technique.": 1 + "Art 203: Mastering Pointillism with Aerosol Cans: A Comprehensive Study of Spray Paint Techniques": 1 + "Art 203: Expanding Techniques in Pointillism: A Comprehensive Study of Airbrush Spray Paint": 1 + "Art 203: Pointillism Perfected: A Comprehensive Study of Spray Paint Techniques Using Stencils": 1 + "Art 203: The Science of Dots: A Comprehensive Study of Spray Paint Techniques and Color Theory in Pointillism": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques with Masking Tools": 1 + "Art 203: Dot Mastery: A Comprehensive Study of Spray Paint Techniques in Pointillism Using Acrylics": 1 + "Art 203: The Art of Spots: A Comprehensive Study of Spray Paint Techniques and Layering in Pointillism": 1 + "Art 203: Pointillism in Practice: A Comprehensive Study of Spray Paint Techniques Using Pressure Control": 1 + "Art 203: The Pointillist Approach: A Comprehensive Study of Spray Paint Techniques with Texturing Tools": 1 + "Art 203: Mastering Pointillism: A Comprehensive Study of Spray Paint Techniques and Gradient Creation.": 1 + "Utilizing LIDAR Technology in Drones for Detailed Plant-Animal Interaction Studies: An Introductory Biology Course": 1 + "The Application of Thermal Imaging in Drones for Studying Nocturnal Plant-Animal Interactions: An Introductory Biology Course": 1 + "Exploring Radio Telemetry in Drones for Tracking Animal Movements in Plant-Animal Interactions: An Introductory Biology Course": 1 + "The Use of Multispectral Imaging in Drones for Evaluating Plant Health in Plant-Animal Interactions: An Introductory Biology Course": 1 + "Understanding Remote Sensing Technology in Drones for Mapping Plant-Animal Interactions: An Introductory Biology Course": 1 + "The Role of GPS-Enabled Drones in Monitoring Migratory Plant-Animal Interactions: An Introductory Biology Course": 1 + "Harnessing Photogrammetry in Drones for 3D Modelling of Plant-Animal Interactions: An Introductory Biology Course": 1 + "The Impact of Drone Surveillance on Studying Invasive Species in Plant-Animal Interactions: An Introductory Biology Course": 1 + "Utilizing Machine Learning Algorithms in Drones for Automated Study of Plant-Animal Interactions: An Introductory Biology Course": 1 + "The Integration of Drone Acoustic Monitoring for Studying Sound-Based Plant-Animal Interactions: An Introductory Biology Course": 1 + "Philosophy: Exploring the Ethics of Sustainable Living through Rainwater Harvesting Techniques: A Deep Dive into Permaculture Design": 1 + "The Ethics of Sustainable Living: Implementing Renewable Energy in Permaculture Design: A Philosophical Perspective": 1 + "Philosophy: The Ethics of Sustainable Living: Exploring Composting Methods in Permaculture Design": 1 + "A Deep Dive into Permaculture Design: The Philosophical Ethics of Sustainable Living with Aquaponics": 1 + "Philosophy: The Ethics of Sustainable Living: Utilizing Green Roofs in Permaculture Design": 1 + "Philosophical Analysis of Greywater Systems' Role in Sustainable Living and Permaculture Design": 1 + "Philosophy: The Ethics of Sustainable Living: A Deep Dive into Permaculture Design with Crop Rotation": 1 + "Exploring the Ethics of Sustainable Living: A Philosophical Approach to Natural Building in Permaculture Design": 1 + "Philosophy: The Ethics of Sustainable Living: A Deep Dive into Permaculture Design with Agroforestry": 1 + "Philosophy: The Ethics of Sustainable Living: Promoting Soil Health in Permaculture Design.": 1 + "Creative Writing: Crafting Tales using English Slang and Imagery through Quip with Character Development Techniques": 1 + "Creative Writing: Harnessing the Power of Imagery and Slang with Quip and Plot Structuring": 1 + "Creative Writing: Using Quip to Combine English Slang and Visual Imagery with Dialogue Writing Techniques": 1 + "Creative Writing: Enhancing Imagery and Slang in Quip with the Art of Symbolism": 1 + "Creative Writing: Integrating English Slang and Imagery in Quip with Conflict Resolution Strategies": 1 + "Creative Writing: Utilizing Quip for Tales Using English Slang and Imagery with Foreshadowing Techniques": 1 + "Creative Writing: Creating Narratives in Quip with English Slang, Powerful Imagery, and Metaphor Usage": 1 + "Creative Writing: English Slang and Imagery Composition in Quip with the Use of Flashback Techniques": 1 + "Creative Writing: Crafting Tales with English Slang, Imagery, and Point of View Techniques in Quip": 1 + "Creative Writing: Constructing Stories in Quip Using English Slang, Imagery, and Genre-Specific Writing Techniques.": 1 + "Language Arts: Exploring Dance-themed Literature through Feminist Lens": 1 + "Language Arts: Analyzing Dance-themed Literature using Psychoanalytic Theory ": 1 + "Language Arts: Deconstructive Approach to Dance-themed Literature": 1 + "Language Arts: Dance-themed Literature Analysis through Post-Structuralism": 1 + "Language Arts: Critical Race Theory in Dance-themed Literature": 1 + "Language Arts: Application of Semiotics in Dance-themed Literature ": 1 + "Language Arts: Dance-themed Literature Explored through Marxism": 1 + "Language Arts: Dance-themed Literature - A New Historicism Perspective ": 1 + "Language Arts: Dance-themed Literature Analysis using Queer Theory": 1 + "Language Arts: Eco-critical Reading of Dance-themed Literature": 1 + "Logical Thinkers: Utilizing Tarski's World in Elementary Logic with Truth Tables": 1 + "Elementary Logic Insight: Exploring Truth Tables with Python Programming": 1 + "Practical Logic: Decoding Truth Tables with Propositional Logic": 1 + "Analytical Minds: Applying Boolean Algebra in Elementary Logic with Truth Tables": 1 + "Lucid Logicians: Harnessing MATLAB for Truth Table Analysis": 1 + "Thinkers' Playbook: Truth Tables and Logic Gates in Elementary Logic": 1 + "Logical Thinkers: A Deep Dive into Truth Tables using Java": 1 + "Logic Unveiled: Exploring Truth Tables with Binary Code": 1 + "Reasoning with Logic: Truth Tables and Excel Spreadsheet Analysis": 1 + "Logical Thinkers: Exploring Elementary Logic with Truth Tables using JavaScript": 1 + "Organic Chemistry: Unraveling Molecular Structures through Infrared Spectroscopy and Fourier Transform Infrared (FTIR) Spectrometer": 1 + "Organic Chemistry: A Deep Dive into Molecular Structures Using Infrared Spectroscopy and Raman Scattering": 1 + "Exploring Molecular Structures in Organic Chemistry through Infrared Spectroscopy and Mass Spectrometry": 1 + "Organic Chemistry: An In-depth Study of Molecular Structures through Infrared Spectroscopy and Nuclear Magnetic Resonance": 1 + "Organic Chemistry: Understanding Molecular Structures through Infrared Spectroscopy and Gas Chromatography": 1 + "Organic Chemistry: Insight into Molecular Structures through Infrared Spectroscopy and X-ray Crystallography": 1 + "Organic Chemistry: Probing Molecular Structures using Infrared Spectroscopy and High-Resolution Electron Microscopy": 1 + "Organic Chemistry: A Comprehensive Study of Molecular Structures through Infrared Spectroscopy and Ultraviolet-Visible Spectroscopy": 1 + "Organic Chemistry: Unveiling Molecular Structures with Infrared Spectroscopy and Liquid Chromatography": 1 + "Organic Chemistry: Deciphering Molecular Structures through Infrared Spectroscopy and Time-Resolved Spectroscopy.": 1 + "World History: The Role of Fire in Dining Traditions Across Cultures": 1 + "Global Gastronomy: The Impact of the Millstone and Iron Cooking Utensils": 1 + "World History: The Influence of the Millstone and Spice Trade on Dining Traditions": 1 + "Culinary Chronicles: The Millstone's Impact and the Evolution of Cutlery Across Cultures": 1 + "Gastronomic Journeys: Millstones to Microwaves - Dining Traditions Across Cultures": 1 + "Global Dining: The Impact of the Millstone and the Advent of Fermentation Techniques": 1 + "International Gastronomy: Millstone Influence and the Introduction of Distillation": 1 + "Cultural Cuisine: The Millstone's Role and the Influence of the Agricultural Revolution": 1 + "World History: From Millstones to Modern Ovens - The Evolution of Dining Traditions": 1 + "Global Gastronomy: The Millstone's Impact and the Rise of Refrigeration Technology.": 1 + "Mastering Deductive Reasoning with Transistor-Based Binary Logic Gates: A Comprehensive Course": 1 + "Binary Logic Gates and Deductive Puzzles: A Masterclass using Python Programming": 1 + "Masterclass: Implementing Binary Logic Gates for Deductive Reasoning using Arduino Technology": 1 + "An In-Depth Course on Binary Logic Gates for Puzzles: Utilizing Breadboard Circuits": 1 + "Implementing Binary Logic Gates for Deductive Reasoning with VHDL: A Masterclass": 1 + "Binary Logic Gates and Deductive Puzzles: An Exploration through Java Programming": 1 + "A Masterclass on Binary Logic Gates for Deductive Reasoning using Raspberry Pi": 1 + "Implementing Binary Logic Gates in C++ for Enhanced Deductive Reasoning: A Comprehensive Course": 1 + "Binary Logic Gates for Puzzles and Deductive Reasoning: A Masterclass in FPGA Programming": 1 + "Deductive Reasoning through Binary Logic Gates: A Masterclass using LogicWorks Software.": 1 + "The Science of Art: Studying Bronze Alloys in Roman Sculpture through X-Ray Diffraction, Auger Electron Spectroscopy, and Neutron Activation Analysis": 1 + "The Application of Synchrotron Radiation in Analyzing Metal Alloys in Roman Sculpture: A Study in Science of Art": 1 + "The Science of Art: Analyzing Copper Alloys in Roman Sculpture using X-Ray Diffraction, Auger Electron Spectroscopy, and Energy Dispersive Spectroscopy": 1 + "The Role of Inductively Coupled Plasma Mass Spectrometry in Analyzing Metal Alloys in Roman Sculpture: A Perspective in Science of Art": 1 + "The Science of Art: Delving into Roman Sculpture's Lead Alloys through X-Ray Diffraction, Auger Electron Spectroscopy, and Fourier Transform Infrared Spectroscopy": 1 + "Utilizing Raman Spectroscopy in the Analysis of Metal Alloys in Roman Sculpture: An Intersection of Science and Art": 1 + "The Science of Art: Unraveling the Secrets of Roman Iron Alloys using X-Ray Diffraction, Auger Electron Spectroscopy, and Proton Induced X-ray Emission": 1 + "The Contribution of Atomic Absorption Spectroscopy in the Analysis of Metal Alloys in Roman Sculpture: A Journey through Science and Art": 1 + "The Science of Art: Exploring Roman Sculpture's Silver Alloys using X-Ray Diffraction, Auger Electron Spectroscopy, and Electron Backscatter Diffraction": 1 + "Integrating Scanning Electron Microscopy in the Study of Metal Alloys in Roman Sculpture: A New Dimension in Science of Art": 1 + "Advanced Brush Techniques: Exploring the Union of AI, Autodesk SketchBook, and the Stylus Pen in Digital Art": 1 + "The Future of Digital Portraiture: AI, Autodesk SketchBook, and the Role of Layering Techniques ": 1 + "The Power of Color: AI, Autodesk SketchBook, and the Impact of Color Theory in Digital Art": 1 + "Transforming Landscapes: AI, Autodesk SketchBook, and the Influence of Perspective Drawing": 1 + "AI and Autodesk SketchBook: The Revolutionary Impact of 3D Modeling on Digital Art": 1 + "Surrealism Reimagined: AI, Autodesk SketchBook, and the Use of Filters in Digital Art": 1 + "AI, Autodesk SketchBook, and the Application of Texture Effects in Digital Art": 1 + "The Age of AI: Autodesk SketchBook, Vector Graphics, and their Role in Modern Digital Art": 1 + "AI, Autodesk SketchBook and the Revolution of Digital Animation Techniques": 1 + "Beyond the Canvas: AI, Autodesk SketchBook, and the Expansion of Digital Art through Augmented Reality.": 1 + "Music: Classical Compositions - A Detailed Study on the Cello's Role in Baroque Period with Focus on Stradivarius Cellos": 1 + "Music: Classical Compositions - The Impact of Cello in Romantic Era Music with Special Emphasis on Bowing Techniques": 1 + "Music: Classical Compositions - The Role of Cello in Beethoven's Works: An Analysis using Sibelius Music Notation Software": 1 + "Music: Classical Compositions - A Deep Dive into the Cello's Role in Chamber Music: Insight into Gut Strings vs. Steel Strings": 1 + "Music: Classical Compositions - The Evolution of Cello's Role in Classical Orchestra: A Study with Focus on Vibrato Techniques": 1 + "Music: Classical Compositions - An In-depth Study on the Cello’s Role in the Works of Bach with Reference to Baroque Bows": 1 + "Music: Classical Compositions - The Cello’s Role in Classical Compositions: An Exploration using Garageband Software": 1 + "Music: Classical Compositions - The Cello and Early Classical Symphonies: A Study with Special Focus on Endpin Techniques": 1 + "Music: Classical Compositions - The Cello's Role in Opera: A Study using Digital Audio Workstations (DAWs)": 1 + "Music: Classical Compositions - Pizzicato in Classical Music: A Detailed Study on the Cello's Role.": 1 + "Elementary Science: Analyzing Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Satellite Imagery": 1 + "Elementary Science: A Detailed Look at Global Weather Patterns Using Infrared LiDAR Technology, Doppler Radar and Weather Balloons": 1 + "Elementary Science: Leveraging GIS Technology to Understand Global Weather Patterns with Infrared LiDAR and Doppler Radar": 1 + "Elementary Science: Studying Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Thermodynamic Diagrams": 1 + "Elementary Science: Exploring Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Cloud Classification Techniques": 1 + "Elementary Science: Utilizing Infrared LiDAR Technology and Doppler Radar to Investigate Global Weather Patterns with Wind Profilers": 1 + "Elementary Science: Probing Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Atmospheric Pressure Monitoring": 1 + "Elementary Science: Uncovering Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Ocean Current Analysis": 1 + "Elementary Science: Decoding Global Weather Patterns Using Infrared LiDAR Technology, Doppler Radar and Solar Radiation Measurements": 1 + "Elementary Science: Observing Global Weather Patterns with Infrared LiDAR Technology, Doppler Radar and Air Mass Tracking Tools": 1 + "Cognitive Neuroscience: Exploring Brain Functions using TMS and fMRI": 1 + "Cognitive Neuroscience: Unraveling Brain Functions using TMS and EEG Technology": 1 + "Cognitive Neuroscience: Understanding Neural Pathways using TMS and Diffusion Tensor Imaging": 1 + "Cognitive Neuroscience: Decoding Brain Functions using TMS and Positron Emission Tomography": 1 + "Cognitive Neuroscience: Investigating Brain Functions using TMS and Neuroimaging Techniques": 1 + "Cognitive Neuroscience: Examining Brain Functions using TMS and Magnetoencephalography": 1 + "Cognitive Neuroscience: Unraveling Brain Functions using TMS and Functional Near-Infrared Spectroscopy": 1 + "Cognitive Neuroscience: Analyzing Brain Functions using TMS and Neurofeedback": 1 + "Cognitive Neuroscience: Unraveling Brain Functions using TMS and Electrocorticography": 1 + "Cognitive Neuroscience: Dissecting Brain Functions using TMS and Brain Mapping Techniques": 1 + "Utilizing Python for a Detailed Examination of Metaphors and Similes in Classic English Literature: A Text Mining Approach": 1 + "Exploring Metaphors and Similes in Classic Novels using Text Mining and R Programming": 1 + "A Comprehensive Study of Metaphors and Similes in Classic English Novels using NLP and Text Mining": 1 + "Advanced Text Mining Techniques in NLTK for Analyzing Metaphors and Similes in Classic English Literature": 1 + "A Data-Driven Study of Metaphors and Similes in Classic Novels using Text Mining and Machine Learning": 1 + "Application of Big Data Analytics in Studying Metaphors and Similes in Classic English Novels": 1 + "TensorFlow and Text Mining: A Deep Dive into Metaphors and Similes in Classic English Literature": 1 + "Using IBM Watson to Analyze Metaphors and Similes in Classic Novels: A Text Mining Approach": 1 + "SAS Text Miner: A Tool for Studying Metaphors and Similes in Classic English Literature": 1 + "Leveraging Apache Hadoop in Text Mining for Analyzing Metaphors and Similes in Classic English Novels": 1 + "Elementary Geology: Using Minecraft Earth and AR Technology to Explore Plate Tectonics with Google Earth Tools": 1 + "Geographic Mastery: Understanding Plate Tectonics through Minecraft Earth, AR Technology and GIS Mapping": 1 + "Interactive Learning: Studying Plate Tectonics and Basic Geography through Minecraft Earth, AR Technology and 3D Printing Models": 1 + "Technological Earth Science: Plate Tectonics and Basic Geography through Minecraft Earth, AR Technology and Virtual Reality Simulation": 1 + "Augmented Reality in Education: Understanding Plate Tectonics and Basic Geography through Minecraft Earth and AR Technology with Drone Mapping ": 1 + "Elementary Plate Tectonics: A Deep Dive into Geological Concepts using Minecraft Earth, AR Technology and Lidar Imaging": 1 + "Understanding Earth: Plate Tectonics and Geography through Minecraft Earth and AR Technology with Satellite Imagery": 1 + "Minecraft Exploration: Learning Plate Tectonics and Geography using AR Technology and Photogrammetry Techniques": 1 + "Geology Unearthed: Studying Plate Tectonics and Geography with Minecraft Earth, AR Technology and Seismic Wave Analysis": 1 + "Earth's Journey: Plate Tectonics and Basic Geography through Minecraft Earth, AR Technology and GPS Tracking": 1 + "Periodic Table Pioneers: An Interactive Journey with 3D Printing for Kids": 1 + "Periodic Table Pioneers: Virtual Reality Explorations in Chemistry for Kids": 1 + "Periodic Table Pioneers: Discovering Elements with Microscopes for Kids": 1 + "Periodic Table Pioneers: Chemistry Adventures with Scientific Calculator for Kids": 1 + "Periodic Table Pioneers: Understanding Atomic Structures with Simulation Software for Kids": 1 + "Periodic Table Pioneers: Exploring Chemical Reactions with Lab Kits for Kids": 1 + "Periodic Table Pioneers: The Role of Spectrophotometer in Chemistry for Kids": 1 + "Periodic Table Pioneers: Hands-On Experiments with Chemistry Lab Equipment for Kids": 1 + "Periodic Table Pioneers: Learning Molecular Structures with Modeling Kits for Kids": 1 + "Periodic Table Pioneers: Chemistry Analysis with Mass Spectrometry for Kids": 1 + "Philosophy: Exploring Ethical Implications of Performance Enhancing Drugs in Competitive Sports": 1 + "Philosophy: The Role of Video Replay Technology in Upholding Ethics in Competitive Sports": 1 + "Philosophy: Unpacking the Ethical Dilemmas of Concussion Protocols in Competitive Sports": 1 + "Philosophy: A Deep Dive into the Ethics of Salary Caps in Competitive Sports": 1 + "Philosophy: Analyzing the Ethics of Genetic Engineering in Competitive Sports": 1 + "Philosophy: The Ethical Implications of Virtual Reality Training in Competitive Sports": 1 + "Philosophy: The Ethics of AI Refereeing Tools in Competitive Sports": 1 + "Philosophy: An Examination of the Ethics of Team Relocation in Competitive Sports": 1 + "Philosophy: Understanding the Ethics of Player Drafting Strategies in Competitive Sports": 1 + "Philosophy: The Ethics of Data Analytics in Player Recruitment and Selection for Competitive Sports.": 1 + "Art: The Visual Representation of Melody through Watercolor Painting": 1 + "Art: Exploring Melody Visualization with Digital Graphic Design": 1 + "Art: The Use of Sculpture in the Visual Representation of Melody": 1 + "Art: Melody Depiction through Mixed Media Art Techniques": 1 + "Art: The Visual Representation of Melody through Oil Painting": 1 + "Art: The Visual Expression of Melody using 3D Printing Technology": 1 + "Art: Melody Visualization with Adobe Illustrator": 1 + "Art: The Exploration of Melody through Ceramic Art": 1 + "Art: The Visual Representation of Melody via Virtual Reality": 1 + "Art: Melody Depiction through the Lens of Film Photography": 1 + "Language Arts: Exploring Creative Writing and Storytelling Using Microsoft Word's Layout Tools": 1 + "Creative Writing and Storytelling in Microsoft Word: A Deep Dive into Templates": 1 + "Language Arts: Mastering Creative Writing and Storytelling with Microsoft Word and Track Changes Feature": 1 + "Language Arts: Creative Writing and Storytelling with Microsoft Word's SmartArt Graphics": 1 + "Language Arts: Creative Writing and Storytelling with Microsoft Word's Advanced Spell Check": 1 + "Language Arts: Enhancing Creative Writing and Storytelling Using Microsoft Word's Table of Contents Feature": 1 + "Language Arts: Creative Writing and Storytelling Optimized with Microsoft Word's Grammar Check": 1 + "Language Arts: Creative Writing and Storytelling Using Microsoft Word's AutoCorrect Feature": 1 + "Language Arts: Creative Writing and Storytelling with Microsoft Word's Page Layout Tools": 1 + "Language Arts: Creative Writing and Storytelling with Microsoft Word's Reference Tools.": 1 + "Implementing Raft Consensus Algorithm in Blockchain Technology for AI-Based Drip Irrigation Systems: A Comprehensive Study on Agricultural Transparency": 1 + "The Impact of Practical Byzantine Fault Tolerance Algorithm in Blockchain Enabled AI-Driven Sprinkler Irrigation Systems: Enhancing Agricultural Transparency": 1 + "The Role of Paxos Algorithm in Blockchain Technology for AI-Based Surface Irrigation Systems: A Detailed Analysis on Agricultural Transparency": 1 + "Utilizing Stellar Consensus Protocol in Blockchain Framework for AI-Optimized Subsurface Drip Irrigation Systems: An Intensive Review on Agricultural Transparency": 1 + "The Influence of Delegated Proof of Stake Algorithm in Blockchain Technology for AI-Powered Furrow Irrigation Systems: An Extensive Probe into Agricultural Transparency": 1 + "Deploying Ripple Protocol Consensus Algorithm in Blockchain for AI-Integrated Center Pivot Irrigation Systems: A Thorough Investigation on Agricultural Transparency": 1 + "Leveraging Proof of Elapsed Time Algorithm in Blockchain for AI-Enhanced Flood Irrigation Systems: An In-depth Exploration into Agricultural Transparency": 1 + "The Application of Tendermint Consensus Algorithm in Blockchain Technology for AI-Adaptive Basin Irrigation Systems: A Profound Insight on Agricultural Transparency": 1 + "The Significance of HotStuff Consensus Algorithm in Blockchain Technology for AI-Enabled Terrace Irrigation Systems: A Detailed Examination on Agricultural Transparency": 1 + "The Adoption of Avalanche Consensus Algorithm in Blockchain for AI-Driven Rotational Irrigation Systems: A Comprehensive Understanding of Agricultural Transparency.": 1 + "Computer Science: Basics of Programming with Python & Data Structures": 1 + "Computer Science: Introduction to Python Programming and Object-Oriented Concepts": 1 + "Computer Science: Python Programming and Machine Learning Basics": 1 + "Computer Science: Foundations of Python Programming with Django Framework": 1 + "Computer Science: Python Programming Essentials with NumPy": 1 + "Computer Science: Python Programming and Data Analysis with Pandas": 1 + "Computer Science: Python Programming for Web Development using Flask": 1 + "Computer Science: Python Programming and Artificial Intelligence Basics": 1 + "Computer Science: Basics of Programming with Python and SQLite": 1 + "Computer Science: Python Programming and Introduction to API Development": 1 + "Utilizing PCA and Python Libraries in Jupyter Notebooks for Neuroscientific Machine Learning": 1 + "Exploring Neuroscientific Computation with PCA and Jupyter Notebooks using TensorFlow": 1 + "Applying PCA Techniques with Jupyter Notebooks in Machine Learning for Neuroscientific Computation using Neural Networks": 1 + "Utilizing Principal Component Analysis and Scikit-Learn in Jupyter Notebooks for Neuroscientific Computation": 1 + "Applying PCA Techniques with Jupyter Notebooks using PyTorch for Neuroscientific Machine Learning": 1 + "Incorporating Keras in PCA Techniques with Jupyter Notebooks for Neuroscientific Computation": 1 + "Boosting Neuroscientific Machine Learning with PCA Techniques and Pandas in Jupyter Notebooks": 1 + "Deploying PCA Techniques with Jupyter Notebooks using Matplotlib for Visualized Neuroscientific Computation": 1 + "Applying PCA Techniques with Jupyter Notebooks using Deep Learning for Neuroscientific Computation": 1 + "Enhancing Neuroscientific Computation with PCA, Jupyter Notebooks and Numpy in Machine Learning": 1 + "Creative Writing: Integrating English Slang and Metaphorical Imagery in Quip with Conflict Resolution Strategies using Mediation Techniques": 1 + "Creative Writing: Employing Quip for English Slang and Imagery Integration with Conflict Resolution using Problem-Solving Approach": 1 + "Creative Writing: Using Mind Mapping in Integrating English Slang and Imagery in Quip with Conflict Resolution Strategies": 1 + "Creative Writing: Application of Pareto Analysis in Integrating Slang and Imagery with Conflict Resolution in Quip": 1 + "Creative Writing: The Role of Brainstorming in Integrating English Slang and Imagery in Quip with Conflict Resolution Strategies": 1 + "Creative Writing: Utilizing the SWOT Analysis Tool in Quip for Integrating English Slang, Imagery and Conflict Resolution": 1 + "Creative Writing: Integration of English Slang and Imagery in Quip with Conflict Resolution Strategies through Active Listening Techniques": 1 + "Creative Writing: Incorporating English Slang and Imagery in Quip using Flowcharts for Conflict Resolution": 1 + "Creative Writing: Using the 5 Whys Technique for Integrating English Slang, Imagery and Conflict Resolution in Quip": 1 + "Creative Writing: Leveraging the Fishbone Diagram in Quip for English Slang and Imagery Integration with Conflict Resolution Strategies.": 1 + "Python Machine Learning with Jupyter Notebook: A Comprehensive Guide to Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN": 1 + "Python Machine Learning using TensorFlow: In-depth Analysis of Clustering Algorithms with SciPy, Gaussian Mixture Models, and DBSCAN": 1 + "Advanced Guide to Clustering Algorithms: Python Machine Learning with SciPy Using Gaussian Mixture Models and DBSCAN in PyCharm": 1 + "Python Machine Learning in Anaconda: Clustering Algorithms with SciPy, Gaussian Mixture Models, and DBSCAN Explained": 1 + "NumPy in Python Machine Learning: Unraveling Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN": 1 + "Python Machine Learning: A Comprehensive Course on Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN in Spyder": 1 + "Python Machine Learning: Pandas for Data Manipulation in Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN": 1 + "Python Machine Learning Using Matplotlib: Visualizing Clustering Algorithms with SciPy, Gaussian Mixture Models, and DBSCAN": 1 + "Python Machine Learning: An In-depth Guide to Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN in Visual Studio Code": 1 + "Python Machine Learning with Seaborn: A Comprehensive Guide to Clustering Algorithms with SciPy Using Gaussian Mixture Models and DBSCAN.": 1 + "Mathematics: Exploring Geometry with the Power of Trigonometry through Pythagorean Theorem": 1 + "Mathematics: Geometry, Trigonometry, and the Application of Coordinate Systems": 1 + "Geometry and Trigonometry: Implementing Mathematical Software for Advanced Calculations": 1 + "Mathematics: Geometry and Trigonometry with a Focus on Euclidean Proofs": 1 + "Mathematics: Geometry and Trigonometry - Understanding Sine, Cosine, and Tangent": 1 + "Mathematics: The Role of Trigonometry and Geometry in Visualizing Fractal Dimensions": 1 + "Mathematics: Geometry and Trigonometry - Leveraging Graphing Calculators for Problem Solving": 1 + "Mathematics: Trigonometry in Geometry - An Exploration through Autocad": 1 + "Mathematics: The Power of Trigonometry and Geometry in 3D Modeling": 1 + "Mathematics: Geometry and Trigonometry - Applying the Law of Sines and Cosines.": 1 + "Exploring Python Programming and Anaconda: Integration with Jupyter Notebook, Data Visualization with Matplotlib and Pandas Data Manipulation": 1 + "Mastering Python Programming and Anaconda: Jupyter Notebook Integration and Data Visualization with Matplotlib and Seaborn": 1 + "Advanced Python Programming and Anaconda: Utilizing Jupyter Notebook and Data Visualization with Matplotlib and Numpy Techniques": 1 + "Python Programming and Anaconda Deep Dive: Implementing Jupyter Notebook and Data Visualization with Matplotlib and SQLite Database Interaction": 1 + "Python Programming and Anaconda Explored: Jupyter Notebook Integration, Data Visualization with Matplotlib and Statistical Analysis with SciPy": 1 + "Python Programming and Anaconda Essentials: Jupyter Notebook, Data Visualization with Matplotlib and Machine Learning with Scikit-Learn": 1 + "Python Programming and Anaconda in Detail: Jupyter Notebook and Data Visualization with Matplotlib, Text Processing with NLTK": 1 + "Python Programming and Anaconda Comprehensive Guide: Jupyter Notebook Integration, Data Visualization with Matplotlib and Data Scraping with Beautiful Soup": 1 + "In-depth Python Programming and Anaconda: Jupyter Notebook, Data Visualization with Matplotlib and Web Development with Django": 1 + "Python Programming and Anaconda Mastery: Jupyter Notebook, Data Visualization with Matplotlib, and Data Analysis with TensorFlow": 1 + "Neurobiology: Exploring Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and fMRI Technology": 1 + "Neurobiology: A Deep Dive into Brain Functions using Neuropsychological Testing, PET Scans, Neurotransmitter Study, and EEG Monitoring": 1 + "Neurobiology: Understanding Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Functional Connectivity Analysis": 1 + "Neurobiology: Comprehending Brain Functions via Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Diffusion Tensor Imaging (DTI)": 1 + "Neurobiology: Probing Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Transcranial Magnetic Stimulation": 1 + "Neurobiology: Insight into Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Optogenetics": 1 + "Neurobiology: Deciphering Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Positron Emission Tomography (PET) Radiotracers": 1 + "Neurobiology: Unearthing Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Magnetic Resonance Spectroscopy (MRS)": 1 + "Neurobiology: A Detailed Study of Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Brain-Computer Interfaces": 1 + "Neurobiology: Unraveling Brain Functions through Neuropsychological Testing, PET Scans, Neurotransmitter Study, and Event-Related Potential Technology.": 1 + "Social Studies: Exploring World Cultures through Google Earth": 1 + "Social Studies: An Analysis of Global Cultures using Ethnographic Surveys": 1 + "Social Studies: A Journey through World Cultures with Virtual Reality": 1 + "Social Studies: Understanding World Cultures through Cultural Anthropology": 1 + "Social Studies: A Trip Around the World's Cultures using Interactive Maps": 1 + "Social Studies: A Deep Dive into World Cultures through Data Visualization": 1 + "Social Studies: Exploring Cultural Differences using Comparative Analysis": 1 + "Social Studies: Unveiling World Cultures through Archival Study": 1 + "Social Studies: A Study of World Cultures Using the Sociocultural Perspective": 1 + "Social Studies: Decoding World Cultures through Linguistic Analysis": 1 + "Essential Web Development: Python, Flask, jQuery, HTML5, MongoDB Database Management, and Django Framework": 1 + "Essential Web Development: Mastering Python, Flask, jQuery, HTML5, MongoDB, and CSS3": 1 + "Web Development Mastery: Python, Flask, jQuery, HTML5, MongoDB, and Bootstrap Integration": 1 + "Practical Web Development: Python, Flask, jQuery, HTML5, MongoDB, and AJAX Implementation": 1 + "Comprehensive Web Development: Python, Flask, jQuery, HTML5, MongoDB, and JavaScript ES6": 1 + "Essential Web Development: Python, Flask, jQuery, HTML5, MongoDB, and Introduction to PHP": 1 + "Mastering Web Development: Python, Flask, jQuery, HTML5, MongoDB, and Responsive Design": 1 + "Web Development Essentials: Python, Flask, jQuery, HTML5, MongoDB, and AngularJS": 1 + "Professional Web Development: Python, Flask, jQuery, HTML5, MongoDB, and Node.js": 1 + "Advanced Web Development: Python, Flask, jQuery, HTML5, MongoDB, and Vue.js Framework": 1 + "Social Studies: Evaluating Societal Changes due to Electronic Waste Management Technologies: A Study on the Impact of Pyrolysis": 1 + "Analyzing the Role of Bioremediation in Societal Changes due to Electronic Waste Management": 1 + "Social Repercussions of Electronic Waste Management: The Case of Hydrometallurgical Processes": 1 + "The Influence of E-Waste Shredding and Separation Technology on Societal Changes": 1 + "Societal Changes and Electronic Waste Management: The Impact of Eco-design": 1 + "The Role of Advanced Thermal Treatments in Electronic Waste Management and Societal Changes": 1 + "Evaluating Societal Changes due to Electronic Waste Management: A Focus on Manual Dismantling": 1 + "Social Studies: The Effect of Leaching on Societal Changes due to Electronic Waste Management": 1 + "Assessing the Impact of Plasma Arc Recycling on Societal Changes in the Context of Electronic Waste Management": 1 + "Societal Changes in Response to Electronic Waste Management: A Study on the Impact of Hydrometallurgical Leaching.": 1 + "Biology: Mitosis Uncovered - A Detailed Exploration of Centrioles through Electron Microscopy and 3D Reconstruction Techniques": 1 + "Biology: The Secrets of Mitosis - A Deep Dive into Kinetochore Function with Atomic Force Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Unveiled - A Comprehensive Study of Chromatids with Scanning Electron Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Decoded - An In-depth Analysis of Spindle Apparatus using Transmission Electron Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Exposed - A Close Look at Cell Division Cycles using Cryo-Electron Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Understanding Mitosis - A Focused Study on Cytokinesis with Light Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Demystified - A Profound Investigation of Telophase with Fluorescence Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Elucidated - A Specific Study of Metaphase Plate using Confocal Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis in Focus - A Deep Study into Prophase with Super-Resolution Microscopy and 3D Reconstruction Techniques": 1 + "Biology: Mitosis Deciphered - An Extensive Survey of Anaphase using X-ray Microscopy and 3D Reconstruction Techniques": 1 + "Art: Exploring Baroque Art through Oil Painting Techniques": 1 + "Art: The Influence of Chiaroscuro in Baroque Art": 1 + "Art: Baroque Art and the Use of Perspective": 1 + "Art: The Role of Sculpture in Baroque Art": 1 + "Art: Baroque Art: A Deep Dive into Fresco Painting": 1 + "Art: The Application of Gold Leaf in Baroque Art": 1 + "Art: Understanding Baroque Architecture: The Rise of Columns and Domes": 1 + "Art: The Impact of Printing Technology on Baroque Art": 1 + "Art: Baroque Art and the Development of Etching ": 1 + "Art: The Use of Mirrors and Reflection in Baroque Art": 1 + "Chemistry: The Science of Food Preservation Techniques using High Pressure Processing": 1 + "Chemistry: The Science of Food Preservation Techniques with Canning Methods": 1 + "Chemistry: The Science of Food Preservation Techniques and Vacuum Packaging Technology": 1 + "Chemistry: The Science of Food Preservation Techniques - Focus on Fermentation": 1 + "Chemistry: The Science of Food Preservation Techniques in Freeze Drying": 1 + "Chemistry: The Science of Food Preservation Techniques: An Exploration of Pasteurization": 1 + "Chemistry: The Science of Food Preservation Techniques - The Role of Dehydration": 1 + "Chemistry: The Science of Food Preservation Techniques: The Power of Irradiation": 1 + "Chemistry: The Science of Food Preservation Techniques using Salting and Smoking": 1 + "Chemistry: The Science of Food Preservation Techniques: A Comprehensive Study on Pickling": 1 + "Utilizing BIM Technology: How Stadium Architecture Influences Social Interaction with Ten Innovative Design Concepts": 1 + "Exploring CAD in Stadium Architecture: Ten Design Concepts to Enhance Community Engagement": 1 + "Stadium Acoustics and Social Interaction: Ten Sound Engineering Concepts for Community Engagement": 1 + "Green Stadiums: How Sustainable Architecture Encourages Social Interaction with Ten Environmental Design Concepts": 1 + "Computational Design in Stadium Architecture: Ten Concepts for Boosting Social Interaction and Community Engagement": 1 + "The Impact of Augmented Reality on Stadium Architecture: Ten Design Concepts for Enhanced Social Interaction": 1 + "Stadium Lighting and Its Influence on Social Interaction: Ten Illumination Concepts for Community Engagement": 1 + "Harnessing IoT in Stadium Architecture: Ten Technological Design Concepts to Foster Social Interaction": 1 + "Using VR in Stadium Design: Ten Innovative Concepts to Boost Social Interaction and Community Engagement": 1 + "Stadium Architecture and 3D Printing: Ten Futuristic Design Concepts to Enhance Social Interaction.": 1 + "Language Arts: Analyzing World War II Narratives and Poems of Valor with Freudian Psychoanalysis": 1 + "Language Arts: Interpreting Stories of Courage from the Vietnam War using Jungian Psychoanalysis and Dream Analysis": 1 + "Language Arts: Using Cognitive Theory to Analyze War Literature - Stories and Poems of Heroism": 1 + "Language Arts: Exploring War Literature: A Lacanian Psychoanalysis of Stories and Poems of Grit": 1 + "Language Arts: War Literature - Deconstructing Narratives of Courage with Adlerian Psychoanalysis": 1 + "Language Arts: Analyzing War Literature: Poems and Stories of Courage through the Lens of Gestalt Therapy": 1 + "Language Arts: War Literature - Analyzing Stories and Poems of Bravery using Existential Psychoanalysis": 1 + "Language Arts: Unraveling War Literature: A Psychoanalytic Study of Heroic Narratives utilizing Transactional Analysis": 1 + "Language Arts: War Literature - Dissecting Stories and Poems of Courage with the aid of Logotherapy": 1 + "Language Arts: Analyzing Stories and Poems of Fearlessness from War Literature using Object Relations Theory.": 1 + "Basic Biology: Exploring Plant Life through Microscopy and DNA Sequencing": 1 + "Basic Biology: An Insight into Plant Life using Electron Microscopy": 1 + "Advanced Study in Biology: Dissecting Plant Life through Microscopy and Spectrophotometry": 1 + "Basic Biology: Unraveling Plant Life with Microscopy and Chromatography": 1 + "Exploring Plant Life: An Introduction to Microscopy and Gel Electrophoresis": 1 + "Basic Biology: A Study of Plant Life through Microscopy and Cell Fractionation": 1 + "Digging Deeper into Basic Biology: Exploring Plant Life through Microscopy and PCR Techniques": 1 + "Biology Basics: Exploring Plant Life through Microscopy and Fluorescence Imaging": 1 + "In-depth Biology: Understanding Plant Life through Microscopy and Centrifugation": 1 + "Basic Biology: A Journey into Plant Life through Microscopy and Microarray Technology.": 1 + "Physics: In-depth Analysis of Gravity and Galaxies using Doppler Effect": 1 + "Physics: Exploring Cosmic Microwave Background Radiation with Fourier Transform": 1 + "Physics: The Role of Spectroscopy in Understanding Gravity and Galaxies": 1 + "Physics: Probing Cosmic Microwave Background Radiation using Planck's Law": 1 + "Physics: Gravity and Galaxies - An Exploration through Quantum Mechanics": 1 + "Physics: Applying General Relativity to Cosmic Microwave Background Radiation": 1 + "Physics: Gravity and Galaxies - Decoding Cosmic Microwave Background Radiation with Statistical Mechanics": 1 + "Physics: The Impact of Hubble's Law on Understanding Gravity and Galaxies": 1 + "Physics: Gravitational Lensing - A Tool to Explore Cosmic Microwave Background Radiation": 1 + "Physics: The Application of Dark Matter Theory in Gravity and Galaxies Study.": 1 + "Geography: Mapping Ancient Silk Road Trade Routes Using ArcGIS Technology": 1 + "Geography: Utilizing Drone Imagery to Map Ancient Maritime Trade Routes with GIS": 1 + "Geography: Application of LiDAR in Mapping Ancient Trade Routes Using GIS Technology": 1 + "Geography: Using Python in GIS for Mapping Ancient Spice Trade Routes": 1 + "Geography: Mapping Ancient Incense Trade Routes Using 3D GIS Visualization": 1 + "Geography: Application of Satellite Imagery in GIS for Mapping Ancient Silk Routes": 1 + "Geography: Mapping Ancient Roman Trade Routes Using GIS and GPS Technology": 1 + "Geography: Using Machine Learning in GIS to Map Ancient Trans-Saharan Trade Routes": 1 + "Geography: Mapping Ancient Amber Road Trade Routes Using GIS and Remote Sensing": 1 + "Geography: Utilizing Big Data and GIS to Map Ancient East-West Trade Routes.": 1 + "English: Text Mapping in English using Python's NLTK for Text Analytics: Critical Thinking and Textual Analysis": 1 + "Utilizing IBM Watson for Text Mapping in English and Text Analytics: Enhancing Critical Thinking and Textual Analysis": 1 + "English: Leveraging Text Mining in R for Text Mapping and Analytics: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping and Analysis using Power BI: Critical Thinking and Textual Analysis": 1 + "Text Mapping in English utilizing Tableau for Text Analytics: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using SAS Text Miner for Text Analytics: Critical Thinking and Textual Analysis": 1 + "Leveraging Google Cloud's Natural Language API for Text Mapping in English: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using Alteryx for Text Analytics: Enhancing Critical Thinking and Textual Analysis": 1 + "English: Text Mapping in English using Microsoft Azure Text Analytics: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME for Text Analytics: Critical Thinking and Textual Analysis.": 1 + "Music Appreciation: The Evolution of Jazz and the Impact of the Radio on its Spread": 1 + "Music Appreciation: The Role of the Phonograph in the Emergence of Blues": 1 + "Music Appreciation: The Evolution of Rock 'n' Roll and the Influence of FM Radio": 1 + "Music Appreciation: Vinyl Records and their Impact on the Proliferation of Pop Music": 1 + "Music Appreciation: The Rise of Hip-Hop and the Role of the Boombox": 1 + "Music Appreciation: The Evolution of Electronic Dance Music and the Influence of the Synthesizer": 1 + "Music Appreciation: The Emergence of Heavy Metal and the Impact of the Electric Guitar": 1 + "Music Appreciation: The Growth of Punk Music and the Role of the Drum Machine": 1 + "Music Appreciation: The Rise of Reggae and the Impact of the Turntable": 1 + "Music Appreciation: The Evolution of Country Music and the Influence of the Autoharp.": 1 + "Introduction to Logic: Puzzles and Problem Solving with Python Programming": 1 + "Introduction to Logic: Using AI for Puzzles and Problem Solving": 1 + "Introduction to Logic: Problem Solving and Puzzles through Algorithm Concepts": 1 + "Introduction to Logic: Implementing MATLAB in Puzzles and Problem Solving": 1 + "Introduction to Logic: Puzzles and Problem Solving with Object-Oriented Programming": 1 + "Introduction to Logic: Puzzles and Problem Solving Utilizing Blockchain Technology": 1 + "Introduction to Logic: Puzzles and Problem Solving with Data Analysis Tools": 1 + "Introduction to Logic: Problem Solving and Puzzles through Cryptography Concepts": 1 + "Introduction to Logic: Puzzles and Problem Solving with Machine Learning Techniques": 1 + "Introduction to Logic: Puzzles and Problem Solving using Quantum Computing Concepts": 1 + "The Evolution of Auditory Systems: A Biological Perspective on the Role of Electrocochleography and Auditory Brainstem Response (ABR) Technology ": 1 + "The Use of otoacoustic emission (OAE) in the Evolution of Auditory Systems: A Biological and Electrocochleographic Study": 1 + "A Comprehensive Investigation into the Role of Cochlear Implants in Understanding the Evolution of Auditory Systems": 1 + "The Role of Electrocochleography and Auditory Evoked Potential in the Evolution of Auditory Systems: A Biological Analysis": 1 + "The Evolution of Auditory Systems: A Biological Perspective and the Role of Electrocochleography in Auditory Neuropathy Spectrum Disorder": 1 + "Decoding the Evolution of Auditory Systems: Electrocochleography and the Application of Pure-Tone Audiometry": 1 + "The Evolution of Auditory Systems: An In-depth Understanding Through Electrocochleography and Bone Anchored Hearing Aids": 1 + "A Biological Perspective on the Evolution of Auditory Systems: The Role of Electrocochleography and Tympanometry": 1 + "The Evolution of Auditory Systems: A Biological Perspective and the Role of Electrocochleography in the Age of Digital Hearing Aids": 1 + "The Role of Speech Audiometry in the Evolution of Auditory Systems: A Biological Analysis with Electrocochleography.": 1 + "Exploring Business Opportunities: Applying Logarithmic Algebra Functions with Microsoft Power BI and SQL.": 1 + "Advanced Analysis: Logarithmic Algebra Functions in Power BI using DAX formulas.": 1 + "Business Intelligence: Harnessing Logarithmic Algebra Functions with Power BI and Python.": 1 + "Data Analysis: Logarithmic Algebra Functions and Visualisation with Power BI and Tableau.": 1 + "Advanced Business Opportunities: Exploring Logarithmic Algebra Functions with Microsoft Power BI and Excel.": 1 + "Business Solutions: Logarithmic Algebra Functions with Power BI and Machine Learning.": 1 + "Decision Making: Logarithmic Algebra Functions with Microsoft Power BI and Predictive Analytics.": 1 + "Business Strategy: Logarithmic Algebra Functions Analysis with Power BI and Big Data.": 1 + "Practical Business Analysis: Using Logarithmic Algebra Functions with Microsoft Power BI and R.": 1 + "Exploring Business Opportunities: Logarithmic Algebra Functions with Power BI and Cloud Computing.": 1 + "Physical Education: Utilizing Charcoal for Outdoor Survival Water Filtration Techniques": 1 + "Physical Education: Outdoor Survival Skills using Stone-Based Water Filtration Techniques": 1 + "Physical Education: Implementing Solar Still Technology in Natural Water Filtration for Survival": 1 + "Physical Education: Outdoor Survival using Nature-Driven Water Filtration Techniques with Sand": 1 + "Physical Education: Branching into Tree Bark for Natural Water Filtration in Outdoor Survival": 1 + "Physical Education: Outdoor Survival Skills with Gravitational Siphoning Water Filtration Techniques": 1 + "Physical Education: Employing Moss in Nature-Driven Outdoor Survival Water Filtration Techniques": 1 + "Physical Education: Using Plant Xylem for Natural Water Filtration in Outdoor Survival Techniques": 1 + "Physical Education: Outdoor Survival Skills using Rainwater Harvesting and Natural Filtration Techniques": 1 + "Physical Education: Distillation: A Key Technique in Nature-Driven Water Filtration for Outdoor Survival.": 1 + "Computer Science: Harnessing the Power of Swift Coding with Xcode": 1 + "Computer Science: Mastering Swift Coding for iOS Development": 1 + "Computer Science: Exploring Swift Coding through Artificial Intelligence": 1 + "Computer Science: Unraveling Swift Coding for Machine Learning": 1 + "Computer Science: Diving Deep into Swift Coding with ARKit": 1 + "Computer Science: Unlocking the Power of Swift Coding with SwiftUI": 1 + "Computer Science: Swift Coding for Cybersecurity Fundamentals": 1 + "Computer Science: Integrated Swift Coding with CloudKit": 1 + "Computer Science: Swift Coding for Data Structures and Algorithms": 1 + "Computer Science: Swift Coding with Core Data for App Development": 1 + "Computer Science: Developing Fitness Apps for Athletes using Firebase Cloud Functions, Java and Retrofit Library with SQLite Database Integration": 1 + "Computer Science: Utilizing Firebase Cloud Functions, Java, Retrofit Library and Android Studio for Fitness Apps Development for Athletes": 1 + "Computer Science: Incorporating Firebase Cloud Functions, Java, Retrofit Library and Google Maps API in Fitness Apps for Athletes": 1 + "Computer Science: Mastering Firebase Cloud Functions, Java, Retrofit Library and RecyclerView for Fitness Apps Development for Athletes": 1 + "Computer Science: Firebase Cloud Functions, Java, Retrofit Library and REST API for Fitness Apps Development for Athletes": 1 + "Computer Science: Applying Firebase Cloud Functions, Java, Retrofit Library and JSON Parsing in Fitness Apps for Athletes": 1 + "Computer Science: Exploring Firebase Cloud Functions, Java, Retrofit Library and Material Design in Fitness Apps Development for Athletes": 1 + "Computer Science: Firebase Cloud Functions, Java, Retrofit Library and MVVM Architecture for Fitness Apps Development for Athletes": 1 + "Computer Science: Leveraging Firebase Cloud Functions, Java, Retrofit Library and Push Notifications in Fitness Apps for Athletes": 1 + "Computer Science: Firebase Cloud Functions, Java, Retrofit Library and Data Binding in Fitness Apps Development for Athletes.": 1 + "Art: Understanding Modern Art: The Influence of Dadaism on Collage Techniques through the Lens of Photomontage": 1 + "Art: The Role of Scissors in Dadaism and Modern Collage Techniques": 1 + "Art: Deciphering Modern Art: The Impact of Dadaism on Collage Techniques Using Mixed Media": 1 + "Art: Understanding Modern Art: Exploring Dadaism's Influence on Collage Techniques with Glue": 1 + "Art: Unraveling Modern Art: The Impact of Dadaism on Digital Collage Techniques": 1 + "Art: A Deep Dive into Modern Art: The Influence of Dadaism on Collage Techniques through the Use of Found Objects": 1 + "Art: Dissecting Modern Art: Dadaism's Influence on Collage Techniques & The Role of Layering": 1 + "Art: Comprehending Modern Art: The Influence of Dadaism on Collage Techniques and the Use of Texture": 1 + "Art: Navigating Modern Art: Dadaism's Influence on Collage Techniques with Paper Manipulation": 1 + "Art: Understanding Modern Art: The Influence of Dadaism on Collage Techniques & Incorporation of Print Media.": 1 + "English: Leveraging Text Mining with Tensorflow and Python in Text Mapping: Implementing Word2Vec for Enhanced Critical Thinking and Textual Analysis": 1 + "Advanced English: Text Mining using Tensorflow, Python and NLTK for Efficient Text Mapping and Critical Analysis": 1 + "English: Text Mapping & Analysis: Using Tensorflow, Python and BERT for Optimized Text Mining": 1 + "English: Leveraging Text Mining with Tensorflow, Python and Jupyter Notebook in Text Mapping: Critical Thinking and Textual Analysis": 1 + "English: Text Mining and Mapping: Applying Tensorflow, Python and Bag of Words in Critical Textual Analysis": 1 + "English: Text Mining and Mapping using Tensorflow, Python and Gensim for Comprehensive Textual Analysis": 1 + "English: Enhancing Text Mapping and Analysis: Leveraging Tensorflow, Python and Latent Dirichlet Allocation in Text Mining": 1 + "English: Advanced Text Mapping with Tensorflow, Python and TF-IDF in Text Mining: Improving Critical Analysis": 1 + "English: Critical Thinking in Textual Analysis: Leveraging Text Mining with Tensorflow, Python and Keras": 1 + "English: Text Mapping and Analysis: Using Tensorflow, Python and LSTM for Effective Text Mining.": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Apache Spark, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Hadoop Ecosystem, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Machine Learning Concepts, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Python Libraries, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Tensorflow, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Cloud Computing Concepts, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using GPU Programming, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Bioconductor Tools, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using Deep Learning Concepts, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Scala for Genomic Data Analysis: A Computational Biology Course using MATLAB, Parallel Algorithms, R Programming, High Performance Computing Techniques and Big Data Analytics": 1 + "Elementary Mathematics: Counting Beats with a Japanese Soroban Abacus": 1 + "Elementary Mathematics: Integrating a Digital Abacus in Counting Beats": 1 + "Elementary Mathematics: Counting Beats using a Chinese Suanpan Abacus": 1 + "Elementary Mathematics: Counting Beats through a Binary Abacus Technique": 1 + "Elementary Mathematics: Counting Beats with Abacus and Number Line Concepts": 1 + "Elementary Mathematics: Counting Beats using a Russian Schoty Abacus": 1 + "Elementary Mathematics: The Art of Counting Beats with an Abacus and Slide Rule": 1 + "Elementary Mathematics: Counting Beats using Abacus and the Place Value System": 1 + "Elementary Mathematics: Counting Beats with Abacus: A Focus on Roman Hand Abacus": 1 + "Elementary Mathematics: Exploring Counting Beats with an Abacus and the Base-10 System.": 1 + "Examining Humidity's Role in Weather Changes using Infrared Doppler Radar and GIS Mapping": 1 + "Investigating Humidity's Influence on Climate Alterations with Infrared Doppler Radar and Balloon Radiosondes": 1 + "Probing Humidity and Weather Transitions through Infrared Doppler Radar and Pyranometer Readings": 1 + "A Detailed Study of Humidity and Weather Shifts using Infrared Doppler Radar and LIDAR Technology": 1 + "The Impact of Humidity on Weather Patterns: An In-depth Analysis using Infrared Doppler Radar and Weather Satellites": 1 + "The Role of Humidity in Weather Alterations: A Study using Infrared Doppler Radar and Thermographic Cameras": 1 + "Infrared Doppler Radar and Satellite Imagery: Unraveling Humidity's Impact on Weather Transitions": 1 + "Understanding Humidity's Contribution to Weather Change with Infrared Doppler Radar and Atmospheric Pressure Sensors": 1 + "Exploring Humidity's Effect on Weather Shifts: A Comprehensive Study using Infrared Doppler Radar and Hygrometers": 1 + "An In-depth Analysis of Humidity's Impact on Weather Shifts using Infrared Doppler Radar and Anemometers.": 1 + "English Literature: Analyzing the Classics Through Psychoanalytic Theory": 1 + "English Literature: Exploring the Classics with Digital Humanities Tools": 1 + "English Literature: Delving into the Classics Using Critical Discourse Analysis": 1 + "English Literature: Studying the Classics through the Lens of Gender Studies": 1 + "English Literature: Assessing the Classics Using Post-Colonial Theory": 1 + "English Literature: Investigating the Classics with Textual Analysis Software": 1 + "English Literature: Understanding the Classics through Structuralism": 1 + "English Literature: Exploring the Classics Using Comparative Literature Methodologies": 1 + "English Literature: Interpreting the Classics with New Historicism ": 1 + "English Literature: Examining the Classics through Narratology Techniques": 1 + "English: Utilizing Metaphors in Creative Writing to Express Environmental Concerns in the Era of Climate Change": 1 + "English: Incorporating Symbolism and Imagery in Creative Writing to Address Deforestation Issues": 1 + "English: Using Foreshadowing Technique in Creative Writing to Highlight Water Pollution Concerns": 1 + "English: Employing Allegories in Creative Writing to Convey Perspectives on Carbon Footprint Reduction": 1 + "English: Implementing Satire in Creative Writing to Voice Concerns about Endangered Species": 1 + "English: Harnessing Irony in Creative Writing to Communicate Environmental Sustainability": 1 + "English: Application of Hyperbole in Creative Writing to Stress Air Quality Issues": 1 + "English: Using Similes in Creative Writing to Express Concerns about Ocean Acidification": 1 + "English: Infusing Personification in Creative Writing to Advocate for Biodiversity Conservation": 1 + "English: Utilizing Alliteration in Creative Writing to Raise Awareness about Global Warming.": 1 + "Language Arts: Exploring the Vocabulary of Economics Through Supply and Demand": 1 + "Language Arts: Understanding Economic Terminology with GDP Analysis": 1 + "Language Arts: The Vocabulary of Economics and the Concept of Inflation": 1 + "Language Arts: Decoding Economic Jargon Through Market Equilibrium": 1 + "Language Arts: The Vocabulary of Economics: A Deep Dive into Fiscal Policy": 1 + "Language Arts: Economic Vocabulary: A Study of Quantitative Easing": 1 + "Language Arts: Economic Terminology and the Power of Interest Rates": 1 + "Language Arts: Navigating Through Economic Terminology: The Role of Investments": 1 + "Language Arts: The Vocabulary of Economics: Unraveling the Mystery of Trade Balance": 1 + "Language Arts: Demystifying Economic Vocabulary with the Theory of Production": 1 + "Language Arts: The Vocabulary of Economics: Deciphering Through the Lens of Monetary Policy": 1 + "Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus with ggplot2": 1 + "Utilizing Shiny App for Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus": 1 + "Advanced R Programming: Data Visualization in Lattice for Venn Diagrams in Propositional Calculus using Plotly": 1 + "Matrix Operations in Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus": 1 + "Advanced Data Visualization in R using Lattice and Leaflet for Venn Diagrams in Propositional Calculus": 1 + "Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus: A focus on dplyr for Data Manipulation": 1 + "Advanced Data Visualization in R using Lattice and Highcharter for Venn Diagrams in Propositional Calculus": 1 + "Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus: Incorporating ggvis for Interactive Graphics": 1 + "Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus with a focus on dygraphs for Time Series Visualization": 1 + "Understanding and Implementing lubridate in Advanced Data Visualization in R using Lattice for Venn Diagrams in Propositional Calculus.": 1 + "Music: The Influence of Pop Art on Vinyl Album Covers in the 1960s": 1 + "Music: The Role of Digital Design Tools in Creating Modern Album Covers": 1 + "Music: The Impact of Photography on Rock Album Covers": 1 + "Music: Exploring the Influence of Surrealism on Progressive Rock Album Covers": 1 + "Music: The Use of Adobe Illustrator in Designing Hip Hop Album Covers": 1 + "Music: The Role of Color Theory in Jazz Album Covers": 1 + "Music: Understanding the Impact of Cubism on Classical Music Album Covers": 1 + "Music: The Effect of Collage Art on Punk Rock Album Covers": 1 + "Music: The Application of 3D Modeling in Electronic Music Album Covers": 1 + "Music: The Impact of Graffiti Art on Rap Album Covers Using Photoshop.": 1 + "History: Evolution of the Internet in the Digital Revolution": 1 + "History: Rise of Personal Computers during the Digital Revolution": 1 + "History: The Role of Silicon Valley in the Digital Revolution": 1 + "History: Dawn of the Digital Revolution: The Birth of Social Media": 1 + "History: Dawn of the Digital Revolution: The Emergence of E-commerce": 1 + "History: Dawn of the Digital Revolution: Unpacking the Dotcom Boom": 1 + "History: Impact of Mobile Technology during the Digital Revolution": 1 + "History: Dawn of the Digital Revolution: The Influence of Open Source Software": 1 + "History: Dawn of the Digital Revolution: The Rise of Digital Marketing": 1 + "History: The Role of Artificial Intelligence in the Digital Revolution": 1 + "History: The Impact of Digital Encryption on the Digital Revolution": 1 + "Neuroscience: Exploring Neural Networks through MATLAB-based Interactive Models using Machine Learning": 1 + "Neuroscience: Studying Brain Functions using Python with Interactive Machine Learning Models": 1 + "Neuroscience: Analysis of Brain Activities through TensorFlow Interactive Models using Machine Learning": 1 + "Neuroscience: Understanding Cognitive Processes through Deep Learning and Interactive Models on Jupyter Notebooks": 1 + "Neuroscience: A Deep Dive into Brain Functions using R Programming and Machine Learning Models": 1 + "Neuroscience: Investigating Neurological Disorders through Interactive Models using Machine Learning and Data Visualization Tools": 1 + "Neuroscience: Delving into Brain Functions through Interactive Models using Machine Learning and Neuroimaging Techniques": 1 + "Neuroscience: A Comprehensive Study of Brain Functions using Interactive Models and Machine Learning in Google Colab": 1 + "Neuroscience: Examining Brain Functions with Interactive Models using Machine Learning and IBM Watson": 1 + "Neuroscience: Brain Function Research through Interactive Models using Machine Learning and Apache Spark.": 1 + "Physics: Exploring Thermodynamics Through the Lens of Statistical Mechanics Using Quantum Theory": 1 + "Physics: Delving into Thermodynamics: A Statistical Mechanics Approach with Spectroscopy": 1 + "Physics: A Detailed Study of Thermodynamics Through Statistical Mechanics Utilising Computational Modelling": 1 + "Physics: Examining Thermodynamics via Statistical Mechanics: An Emphasis on Thermographic Imaging": 1 + "Physics: Thermodynamics Explored Through Statistical Mechanics and the Boltzmann Distribution": 1 + "Physics: Investigating Thermodynamics with Statistical Mechanics and Kinetic Theory": 1 + "Physics: Thermodynamics in Focus: A Statistical Mechanics Perspective with Molecular Dynamics Simulation": 1 + "Physics: Understanding Thermodynamics Through Statistical Mechanics and the Law of Large Numbers": 1 + "Physics: Thermodynamics and Statistical Mechanics: An Exploration via Heat Engines": 1 + "Physics: A Deep Dive into Thermodynamics with Statistical Mechanics and Entropy.": 1 + "Art: Utilizing Oil Paintings and Sfumato Technique with Palette Knives to Visualize Sabar Dance in Senegal": 1 + "Art: Rendering Senegal's Sabar Dance through Oil Paintings and Sfumato Technique with Acrylic Medium": 1 + "Art: Leveraging Oil Paintings and Sfumato Technique with Easel in Visualizing Senegal's Sabar Dance": 1 + "Art: Employing Oil Paintings and Sfumato Technique through Digital Art Software to Visualize Senegal's Sabar Dance": 1 + "Art: Using Oil Paintings and Sfumato Technique with Glazing to Visualize Senegal's Sabar Dance": 1 + "Art: Applying Oil Paintings and Sfumato Technique with Grisaille to Capture Senegal's Sabar Dance": 1 + "Art: Interpreting Senegal's Sabar Dance through Oil Paintings and Sfumato Technique with Underpainting": 1 + "Art: Incorporating Oil Paintings and Sfumato Technique with Tonal Values to Visualize Senegal's Sabar Dance": 1 + "Art: Demonstrating Senegal's Sabar Dance through Oil Paintings and Sfumato Technique with Alla Prima": 1 + "Art: Visualizing Senegal's Sabar Dance through Oil Paintings and Sfumato Technique with Chiaroscuro Concept.": 1 + "Economics: A Detailed Analysis of Supply, Demand, and Elasticity Using Game Theory": 1 + "Applying Econometrics to Supply, Demand, and Elasticity: A Comprehensive Course": 1 + "Advanced Economics: Investigating Supply, Demand, and Elasticity through Regression Analysis": 1 + "Economic Distributions: A Deep Dive into Supply, Demand, and Elasticity": 1 + "Economics: A Detailed Analysis of Supply, Demand, and Elasticity using STATA Software": 1 + "The Power of Python in Analyzing Supply, Demand, and Elasticity: An Economic Perspective": 1 + "The Role of Cost-Benefit Analysis in Understanding Supply, Demand, and Elasticity": 1 + "Economics: Supply, Demand, and Elasticity Explored through the Lens of Microeconomic Theory": 1 + "The Impact of Quantitative Methods on the Analysis of Supply, Demand, and Elasticity in Economics": 1 + "Economics: A Detailed Analysis of Supply, Demand, and Elasticity with a Focus on Market Equilibrium.": 1 + "Brain Basics: A Detailed Overview of Dopamine Neurotransmitters using EEG and fMRI Technology": 1 + "Brain Basics: An In-Depth Study of Serotonin Neurotransmitters using EEG Technology and Positron Emission Tomography (PET)": 1 + "Brain Basics: Exploring GABA Neurotransmitters with EEG Technology and the Concept of Synaptic Transmission": 1 + "Brain Basics: A Comprehensive Analysis of Acetylcholine using EEG Technology and the Application of Neuronal Plasticity": 1 + "Brain Basics: An Insight into Glutamate Neurotransmitters using EEG Technology and the Theory of Long-term Potentiation": 1 + "Brain Basics: Understanding Epinephrine Neurotransmitters using EEG Technology and the Use of Patch-clamp Technique": 1 + "Brain Basics: A Thorough Study of Norepinephrine Neurotransmitters using EEG and Diffusion Tensor Imaging (DTI)": 1 + "Brain Basics: A Closer Look at Histamine Neurotransmitters through EEG Technology and Brain Mapping Techniques": 1 + "Brain Basics: A Comprehensive Study of Oxytocin Neurotransmitters Using EEG Technology and the Principles of Neuroplasticity": 1 + "Brain Basics: An Extensive Research on Endorphin Neurotransmitters using EEG Technology and the Concept of Synaptic Pruning.": 1 + "Junior Neuroscience: An In-depth Study of the Brain using Magnetic Resonance Imaging, Arterial Spin Labeling and Diffusion Tensor Imaging": 1 + "Exploring Cerebral Hemodynamics: A Junior Neuroscience Course Featuring Magnetic Resonance Imaging, Arterial Spin Labeling, and Positron Emission Tomography": 1 + "Junior Neuroscience: Brain Mapping with Magnetic Resonance Imaging, Arterial Spin Labeling and Functional Connectivity Analysis ": 1 + "Advanced Junior Neuroscience: From Magnetic Resonance Imaging to Arterial Spin Labeling and Electroencephalography": 1 + "Junior Neuroscience: A Comprehensive Approach to Brain Studies using Magnetic Resonance Imaging, Arterial Spin Labeling and Transcranial Magnetic Stimulation": 1 + "Junior Neuroscience: Understanding Brain Function through Magnetic Resonance Imaging, Arterial Spin Labeling, and Neural Network Algorithms": 1 + "Junior Neuroscience: Probing the Brain with Magnetic Resonance Imaging, Arterial Spin Labeling and Resting State fMRI": 1 + "Junior Neuroscience: Investigating Brain Plasticity using Magnetic Resonance Imaging, Arterial Spin Labeling, and Voxel-based Morphometry": 1 + "Junior Neuroscience: Unraveling the Brain's Mysteries through Magnetic Resonance Imaging, Arterial Spin Labeling, and Diffusion Weighted Imaging": 1 + "Junior Neuroscience: Insights Into the Brain with Magnetic Resonance Imaging, Arterial Spin Labeling and Spectroscopy Techniques": 1 + "Elementary Education 305: Utilizing iPads and Google Classroom in Cooperative Games": 1 + "Elementary Education 305: Integrating iPads and Augmented Reality in Cooperative Games": 1 + "Elementary Education 305: Employing iPads and Digital Storytelling Tools in Cooperative Games": 1 + "Elementary Education 305: Infusing iPads and Interactive Whiteboards in Cooperative Games": 1 + "Elementary Education 305: Incorporating iPads and Multimedia Presentation Tools in Cooperative Games": 1 + "Elementary Education 305: Applying iPads and Game-Based Learning Platforms in Cooperative Games": 1 + "Elementary Education 305: Using iPads and Online Collaboration Tools in Cooperative Games": 1 + "Elementary Education 305: Embedding iPads and Virtual Reality in Cooperative Games": 1 + "Elementary Education 305: Adapting iPads and Digital Assessment Tools in Cooperative Games": 1 + "Elementary Education 305: Merging iPads and E-Learning Platforms in Cooperative Games": 1 + "Implementing Hudl's Timeline Tool for Advanced Video Analysis in Physical Education: A Comprehensive Study of Team Sports and Volleyball Techniques": 1 + "Employing Hudl's Video Editor for Deeper Analysis in Physical Education: A Detailed Scrutiny of Team Sports and Volleyball Techniques": 1 + "Utilizing Hudl Replay for Enhanced Video Analysis in Physical Education: Focusing on Team Sports and Volleyball Techniques": 1 + "Harnessing Hudl's Video Exchange Feature for Intensive Video Analysis in Physical Education: A Deep Dive into Team Sports and Volleyball Techniques": 1 + "Incorporating Hudl's Heatmap Technology for Optimal Video Analysis in Physical Education: Exploring Team Sports and Volleyball Techniques": 1 + "Utilizing Hudl's Performance Analysis Tools in Physical Education: A Detailed Examination of Team Sports and Volleyball Techniques": 1 + "Implementing Hudl Technique Slow-Motion Analysis in Physical Education: A Deep Dive into Team Sports and Volleyball Techniques": 1 + "Utilizing Hudl's Data Analytics for Enhanced Video Analysis in Physical Education: A Profound Exploration of Team Sports and Volleyball Techniques": 1 + "Employing Hudl's Commenting Feature for Detailed Video Analysis in Physical Education: A Deep Dive into Team Sports and Volleyball Techniques": 1 + "Harnessing Hudl's Tagging System in Video Analysis for Physical Education: A Comprehensive Look at Team Sports and Volleyball Techniques": 1 + "Computer Programming: Exploring Basics to Database Applications using SQL and Python": 1 + "Fundamentals of Computer Programming: From Basics to Database Applications using SQL and Java": 1 + "Computer Programming: A Deep Dive into Basics, Database Applications using SQL and C#": 1 + "Computer Programming: Mastering Basics to Database Applications using SQL and Ruby": 1 + "Advanced Computer Programming: From Basics to Database Applications using SQL and PHP": 1 + "Computer Programming: Integrating Basics to Database Applications using SQL and Oracle": 1 + "Comprehensive Computer Programming: Basics to Database Applications using SQL and MongoDB": 1 + "Computer Programming: From Basics to Advanced Database Applications using SQL and JavaScript": 1 + "Practical Computer Programming: Basics to Database Applications using SQL and .NET Framework": 1 + "Essential Computer Programming: From Basics to Database Applications using SQL and Node.js": 1 + "Health Education: Utilizing Smart Watches to Enhance Physical Activity": 1 + "Health Education: The Impact of Step-Counter Apps on Physical Activity": 1 + "Health Education: Encouraging Physical Activity through Virtual Reality Games": 1 + "Health Education: The Role of Fitness Trackers in Promoting Physical Activity": 1 + "Health Education: Boosting Physical Activity with Online Workout Platforms": 1 + "Health Education: The Effect of Pedometers on Daily Physical Activity": 1 + "Health Education: Incorporating AI Personal Trainers in Physical Activity Routines": 1 + "Health Education: The Influence of Social Media Challenges on Physical Activity": 1 + "Health Education: Using GPS Technology to Enhance Outdoor Physical Activity ": 1 + "Health Education: The Use of Augmented Reality in Motivating Physical Activity": 1 + "Decoding Genomic Data: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Scikit-learn": 1 + "Exploring Neural Networks in Biology: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Keras": 1 + "Machine Learning in Genomics: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and PyTorch": 1 + "Predictive Models in Biology: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and XGBoost": 1 + "Deep Learning Techniques for Biological Data: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Convolutional Neural Networks": 1 + "Visualizing Biological Data: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Matplotlib": 1 + "Biology and Machine Learning: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Support Vector Machines": 1 + "Advanced Computational Biology: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Pandas": 1 + "Bioinformatics and Data Science: Python, TensorFlow, Seaborn Visualization, and Jupyter Notebooks": 1 + "Deciphering Biological Patterns: Bioinformatics with Python, TensorFlow, Seaborn Visualization, and Decision Trees.": 1 + "Neurobiology: Understanding the Functional Anatomy of the Brain through Magnetic Resonance Imaging": 1 + "Neurobiology: A Deep Dive into the Functional Anatomy of the Brain using Electroencephalography": 1 + "Neurobiology: Exploring Brain Functionality with Positron Emission Tomography": 1 + "Neurobiology: Understanding the Functional Anatomy of the Brain through the Lens of Functional MRI": 1 + "Neurobiology and the Functional Anatomy of the Brain: An In-depth Study with Diffusion Tensor Imaging": 1 + "Neurobiology: A Comprehensive Study of Brain Anatomy using Transcranial Magnetic Stimulation": 1 + "Neurobiology: Unraveling the Functional Anatomy of the Brain through Neuroimaging": 1 + "Neurobiology: Understanding Brain Function through the Application of Optogenetics": 1 + "Neurobiology: A Detailed Study of the Functional Anatomy of the Brain using Single-Photon Emission Computerized Tomography": 1 + "Neurobiology: Delving into the Functional Anatomy of the Brain with Neurofeedback Techniques": 1 + "English Literacy: Enhancing Reading and Writing Skills Using iMovie, Powerpoint, and Adobe Photoshop for Visual Storytelling": 1 + "English Literacy: Understanding Narrative Structures through iMovie, Powerpoint, and Google Docs for Visual Storytelling": 1 + "English Literacy: Developing Language Proficiency using iMovie, Powerpoint and Zoom for Interactive Visual Storytelling": 1 + "English Literacy: Using iMovie, Powerpoint and Prezi for Effective Visual Storytelling": 1 + "English Literacy: Exploring Reading and Writing through iMovie, Powerpoint, and Canva for Engaging Visual Storytelling": 1 + "English Literacy: Utilizing iMovie, Powerpoint, and Microsoft Word for Holistic Visual Storytelling": 1 + "English Literacy: Integrating iMovie, Powerpoint, and Google Slides for Innovative Visual Storytelling": 1 + "English Literacy: Improving Communication Skills through iMovie, Powerpoint, and Grammarly for Accurate Visual Storytelling": 1 + "English Literacy: Applying iMovie, Powerpoint, and Audacity for Audio-Visual Storytelling": 1 + "English Literacy: Mastering Reading and Writing through iMovie, Powerpoint, and Trello for Collaborative Visual Storytelling": 1 + "Exploiting Oracle SQL for Advanced Sports Mathematics: Unraveling Sports Statistics and Performance Analysis ": 1 + "Analyzing Performance Metrics in Sports Mathematics Through MySQL: A Deep Dive Into SQL": 1 + "Leveraging SQL Server in Sports Mathematics: A Look at Baseball Statistics and Analysis": 1 + "PostgreSQL and Sports Mathematics: Exploring Soccer Performance Analytics Through SQL": 1 + "SQL and R for Sports Mathematics: A Comprehensive Guide to Basketball Statistics and Performance Analysis": 1 + "SQLite in Action: Delving Into Sports Mathematics and Cricket Performance Analysis": 1 + "The Role of SQL and Python in Sports Mathematics: Unveiling Football Performance Statistics": 1 + "The Power of SQL and Excel in Sports Mathematics: A Detailed Study on Tennis Performance Analysis": 1 + "Harnessing SQL and Access in Sports Mathematics: Decoding Golf Statistics and Performance Metrics": 1 + "SQL and SPSS in Sports Mathematics: Understanding Rugby Performance Analysis and Statistics.": 1 + "Neuroscience 110: Exploring the Impact of Classical Music on the Brain via fMRI and EEG - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Dissecting the Influence of Jazz Music on the Brain through fMRI and Spectroscopy - An Interdisciplinary Study ": 1 + "Neuroscience 110: Unveiling the Effects of Rock Music on the Brain using fMRI and Diffusion Tensor Imaging - An Interdisciplinary Strategy ": 1 + "Neuroscience 110: Investigating the Brain's Response to Country Music through fMRI and Neuron Tracing - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Revealing the Brain's Reaction to Hip-Hop Music via fMRI and Optogenetics - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Understanding the Impact of Pop Music on the Brain utilizing fMRI and Magnetic Particle Imaging - An Interdisciplinary Study ": 1 + "Neuroscience 110: Decoding the Influence of Reggae Music on the Brain through fMRI and PET Scans - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Assessing the Effects of Blues Music on the Brain using fMRI and Brain Mapping - An Interdisciplinary Strategy ": 1 + "Neuroscience 110: Evaluating the Brain's Response to Electronic Music through fMRI and Connectomics - An Interdisciplinary Approach ": 1 + "Neuroscience 110: Probing the Impact of Latin Music on the Brain via fMRI and Quantum Dot Technology - An Interdisciplinary Approach": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Python Scripting": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Machine Learning Concepts": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Bioconductor Packages": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Hadoop Big Data Technology": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Biopython Tools": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Integrated Genomics Viewer (IGV)": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and High-Performance Computing (HPC)": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and DNA Sequencing Technologies": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Cloud Computing Platforms": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, Data Mining Techniques and Statistical Hypothesis Testing.": 1 + "The Impact of Sony Morpheus VR Gloves on Swimming Movements: A Closer Look at Haptic Feedback Technology": 1 + "In-Depth Analysis of the Sony Morpheus VR Gloves & Proprioception in Swimming Movements": 1 + "Virtual Reality and Swimming: Assessing the Role of Sony Morpheus VR Gloves and Inertial Measurement Units": 1 + "Evaluating the Impact of Sony Morpheus VR Gloves on Swimming Movements using Motion Capture Technology": 1 + "The Influence of Sony Morpheus VR Gloves on Swimming: A Study on Immersive Virtual Environments": 1 + "Sony Morpheus VR Gloves and Swimming Movements: A Comparative Study with Electroencephalography (EEG)": 1 + "Exploring the Effect of Sony Morpheus VR Gloves on Swimming Movements through Computer Simulation Tools": 1 + "Sony Morpheus VR Gloves vs. Traditional Methods: Assessing Perception of Swimming Movements using Biomechanical Analysis": 1 + "Sony Morpheus VR Gloves and Swimming: A Detailed Study on Augmented Reality Interfaces": 1 + "The Role of Sony Morpheus VR Gloves in Improving Swimming Movements: An Examination with 3D Modelling Techniques": 1 + "The Organ and its Technological Evolution in Classical Music Compositions: A Study on the Use of Pipe Technology": 1 + "The Impact of Tracker Action Technology on The Organ and its Evolution in Classical Music": 1 + "The Organ: Understanding the Technological Evolution through the Lens of Electric Action": 1 + "Exploring the Role of Pneumatic Action in The Technological Evolution of the Organ in Classical Music": 1 + "The Organ and its Technological Evolution: A Deep Dive into Console Technology in Classical Music": 1 + "The Influence of Electronic Organs on Classical Music Compositions: A Technological Evolution": 1 + "The Technological Evolution of the Organ in Classical Music: The Unseen Impact of Wind System Technology": 1 + "The Organ's Technological Evolution in Classical Music: The Revolutionary Impact of Digital Sampling": 1 + "The Role of MIDI Technology in The Organ's Evolution in Classical Music Compositions": 1 + "The Organ and its Technological Evolution: The Transition from Mechanical to Electro-Pneumatic Systems in Classical Music.": 1 + "Language Arts: Exploring Character Development Through Creative Writing Using Microsoft Word's SmartArt Graphics": 1 + "Language Arts: Plot Structuring in Creative Writing with Microsoft Word's SmartArt and Mind Mapping Tools": 1 + "Language Arts: Harnessing Microsoft Word's SmartArt Graphics for Visual Storytelling in Fiction Writing": 1 + "Language Arts: Developing Engaging Dialogues in Creative Writing Using Microsoft Word's SmartArt Graphics": 1 + "Language Arts: Exploring Narrative Styles with Microsoft Word's SmartArt Graphics in Creative Writing": 1 + "Language Arts: Creative Writing and Storytelling Through Scene Setting with Microsoft Word's SmartArt Graphics": 1 + "Language Arts: Microsoft Word's SmartArt Graphics for Creative Writing and the Art of Descriptive Storytelling": 1 + "Language Arts: Using Microsoft Word's SmartArt Graphics in Creative Writing for Building Engaging Story Arcs": 1 + "Language Arts: Developing Strong Protagonists in Creative Writing Using Microsoft Word's SmartArt Graphics": 1 + "Language Arts: Exploring Thematic Elements in Creative Writing Through Microsoft Word's SmartArt Graphics.": 1 + "Language Arts: Utilizing Alliteration in Environmental Conservation Narratives through Digital Storytelling": 1 + "Language Arts: The Role of Alliteration in Environmental Conservation Narratives - A Focus on Podcasting": 1 + "Language Arts: The Power of Alliteration in Environmental Conservation Narratives Using Virtual Reality": 1 + "Language Arts: Enhancing Environmental Conservation Narratives with Alliteration through E-books": 1 + "Language Arts: Impact of Alliteration in Environmental Conservation Narratives - A Study on Social Media Influence": 1 + "Language Arts: Exploring Alliteration in Environmental Conservation Narratives Using Multimedia Presentations": 1 + "Language Arts: The Influence of Alliteration in Environmental Conservation Narratives - A Perspective on Blogging": 1 + "Language Arts: Alliteration in Environmental Conservation Narratives - An Approach Using Animation Software": 1 + "Language Arts: The Dynamics of Alliteration in Environmental Conservation Narratives through Infographics": 1 + "Language Arts: Promoting Environmental Conservation Narratives with Alliteration through Video Production.": 1 + "Exploring the Impact of AI-Generated Music on Emotional Wellness using IBM's Watson Beat and Python: An In-depth Analysis of Ten Different Biofeedback Techniques.": 1 + "The Therapeutic Potential of AI Music Generation Using IBM's Watson Beat and Machine Learning: Investigating Ten Different Cognitive Behavioral Therapy Approaches.": 1 + "Emotional Wellness and AI Music: A Detailed Study on the Use of IBM's Watson Beat and Neural Networks in Ten Different Music Therapy Interventions.": 1 + "The Role of AI in Music Therapy: A Comprehensive Study on the Use of IBM's Watson Beat and Data Analysis in Ten Different Holistic Healing Techniques.": 1 + "Emotional Wellness and AI Music: A Detailed Examination of the Use of IBM's Watson Beat and Sentiment Analysis in Ten Different Mindfulness-Based Interventions.": 1 + "AI and Emotional Health: An Evaluation of IBM's Watson Beat and Blockchain Technology in Ten Different Positive Psychology Interventions.": 1 + "The Therapeutic Role of AI Music Generation Using IBM's Watson Beat and Deep Learning: A Comprehensive Study of Ten Different Expressive Therapy Techniques.": 1 + "Evaluating the Potential of AI Music Generation with IBM's Watson Beat and Natural Language Processing: A Comprehensive Study of Ten Different Interpersonal Therapy Techniques.": 1 + "The Impact of AI Music Generation on Emotional Wellness: A Detailed Study of IBM's Watson Beat and Cloud Computing in Ten Different Art Therapy Interventions.": 1 + "AI Music and Emotional Wellness: A Comprehensive Evaluation of IBM's Watson Beat and Predictive Modeling in Ten Different Solution-Focused Therapy Techniques.": 1 + "Mathematics: Football Statistics Analysis and Big Data Visualization with Tableau using Hadoop and Python ": 1 + "Mathematics: Football Statistics Processing with Big Data Visualization in Tableau using Hadoop and R Programming": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Cloudera ": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Hive": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Spark": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and ElasticSearch ": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Machine Learning Concepts": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and NoSQL": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Apache Kafka": 1 + "Mathematics: Football Statistics and Big Data Visualization with Tableau using Hadoop and Kubernetes.": 1 + "Advanced Mathematics: Predictive Sports Analytics using Python, Keras and Pandas: A Deep Dive into Volleyball Tactics": 1 + "Mathematics: Sports Analytics using Python, Keras and Tensorflow: Enhancing Volleyball Performance": 1 + "Python Programming: Volleyball Sports Analytics using Keras and SciKit-Learn: A Mathematical Approach": 1 + "Advanced Sports Analytics: Utilizing Python, Keras and Matplotlib for Volleyball Strategic Insights": 1 + "Volleyball Sports Analytics: In-depth Analysis using Python, Keras and Seaborn for Visualization": 1 + "Mathematics and Machine Learning: Python, Keras and Jupyter Notebooks for Volleyball Sports Analytics": 1 + "Python and Keras: Leveraging NumPy for Sports Analytics in Volleyball": 1 + "Python Programming: Volleyball Sports Analytics using Keras and PyTorch: A Computational Mathematics Perspective": 1 + "Volleyball Analytics: Applying Python, Keras and MySQL for Data-Driven Sports Strategies": 1 + "Volleyball Strategic Analysis: Advanced Mathematics using Python, Keras and Plotly for Insights.": 1 + "The Influence of Morse Code on Dadaism: A Study of Radio Broadcast Propaganda in World War I": 1 + "The Role of Shortwave Radio in Abstract Expressionism: Propaganda's Effect during World War II": 1 + "The Propagation of Futurism through AM Radio Broadcasts: Propaganda during the World Wars": 1 + "The Impact of Vacuum Tube Technology in Radio Broadcast Propaganda on Surrealism during the World Wars": 1 + "The Effect of Transistor Radios on Pop Art: The Role of Broadcast Propaganda in World War II": 1 + "Broadcasting WWI Propaganda via Crystal Radio Sets: Its Influence on Cubism": 1 + "The Influence of Longwave Radio on Bauhaus: An Examination of Propaganda during the World Wars": 1 + "How FM Radio Propaganda Shaped Op Art during the Second World War": 1 + "The Impact of Radio Receivers on Art Deco: A Study on Broadcast Propaganda in the World Wars": 1 + "Radio Antennas and Propaganda: Their Role in the Evolution of Modernist Art during the World Wars.": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis using ArcGIS and Remote Sensing Techniques": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis with Python Programming in GIS Technology": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis using Quantum GIS and Watershed Delineation": 1 + "Earth Science: The Symphony of Nature - Analyzing Hydrological Cycle with ESRI's ArcGIS Pro and Spatial Analysis": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis using GIS and Soil Moisture Index": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis with MapInfo and Surface Runoff Calculation": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis utilizing GIS and Evapotranspiration Modelling": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis with AutoCAD Map 3D and Groundwater Flow Simulation": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis using GIS and Precipitation Data Interpretation": 1 + "Earth Science: The Symphony of Nature - Hydrological Cycle Analysis with GRASS GIS and Hydrograph Studies.": 1 + "Environmental Science: Exploring the Role of Fused Deposition Modeling in the Sustainable Production of Tennis Rackets using Biodegradable Polylactic Acid": 1 + "Environmental Science: The Impact of Stereolithography in the Sustainable Production of Soccer Balls using Biodegradable Rubber": 1 + "Environmental Science: The Role of Selective Laser Sintering in Sustainable Production of Golf Clubs using Biodegradable Metal Alloys": 1 + "Environmental Science: The Application of Digital Light Processing in the Sustainable Production of Baseball Bats using Biodegradable Wood Composites": 1 + "Environmental Science: The Use of Binder Jetting in the Sustainable Production of Hockey Sticks using Biodegradable Plastics": 1 + "Environmental Science: The Function of Multijet Printing in Sustainable Production of Football Helmets using Biodegradable Foam": 1 + "Environmental Science: The Influence of Electron Beam Melting on Sustainable Production of Boxing Gloves using Biodegradable Leather": 1 + "Environmental Science: The Role of Sheet Lamination in the Sustainable Production of Bicycle Helmets using Biodegradable Polymers": 1 + "Environmental Science: The Impact of Direct Metal Laser Sintering in Sustainable Production of Ski Boots using Biodegradable Thermoplastics": 1 + "Environmental Science: The Application of Continuous Liquid Interface Production in the Sustainable Production of Surfboards using Biodegradable Resins.": 1 + "Language Arts: Harnessing Imagery in Nature-Inspired Poetry Using Oculus Rift Virtual Reality Technology": 1 + "Language Arts: Crafting Poetry with Imagery and Nature Sounds Using HTC Vive Pro Virtual Reality Tech ": 1 + "Language Arts: Incorporating Imagery in Poetry Inspired by Auditory Nature Elements Using Samsung Gear VR": 1 + "Language Arts: Utilizing Imagery and Nature Sounds in Poetry with PlayStation VR Technology": 1 + "Language Arts: Exploring Imagery in Poetry with Nature Sounds Through Google Cardboard VR Technology": 1 + "Language Arts: The Art of Imagery in Poetry Driven by Natural Sounds Using Microsoft HoloLens VR ": 1 + "Language Arts: Mastering Imagery in Poetry with Sounds of Nature Using Unity 3D for Virtual Reality ": 1 + "Language Arts: Enhancing Imagery in Poetry Using Nature Sounds and GoPro Fusion 360 VR Camera ": 1 + "Language Arts: The Power of Imagery in Poetry Inspired by Nature Sounds Using Unreal Engine 4 VR Technology ": 1 + "Language Arts: Developing Imagery in Poetry Utilizing Nature Sounds with the Help of HP Reverb VR Headset": 1 + "Investigating Zinc's Impact on Immune Function Utilizing Near-Field Scanning Optical Microscopy and Fourier Transform Infrared Spectroscopy": 1 + "Utilizing Atomic Force Microscopy to Probe the Role of Zinc in Immune Function": 1 + "The Role of Zinc in Immune Function: Understanding through Near-Field Scanning Optical Microscopy and Flow Cytometry": 1 + "Elucidating the Impact of Zinc on Immune Function using Near-Field Scanning Optical Microscopy and High Performance Liquid Chromatography": 1 + "Probing Zinc's Role in Immune Function with Near-Field Scanning Optical Microscopy and ELISA Assays": 1 + "Implications of Zinc for Immune Response: An Exploration using Near-Field Scanning Optical Microscopy and Mass Spectrometry": 1 + "Unveiling the Role of Zinc in Immune Function through Near-Field Scanning Optical Microscopy and Confocal Microscopy": 1 + "Utilizing Gas Chromatography-Mass Spectrometry (GC-MS) to Probe the Role of Zinc in Immune Function": 1 + "Probing the Role of Zinc in Immune Function: Understanding through Near-Field Scanning Optical Microscopy and Fluorescence Spectroscopy": 1 + "Understanding the Impact of Zinc on Immune Response through Near-Field Scanning Optical Microscopy and Western Blotting Techniques.": 1 + "Philosophy Uncovered: Understanding Epistemology through Phenomenology Using Descartes' Method of Doubt": 1 + "Philosophy Made Simple: Exploring Basic Epistemology Concepts through Husserl's Phenomenology ": 1 + "Philosophy Unveiled: A Study of Epistemology Using Heidegger's Phenomenology as a Tool": 1 + "Philosophy Dissected: Applying Merleau-Ponty's Phenomenology to Comprehend Basic Concepts in Epistemology": 1 + "Understanding Philosophy: Basic Epistemology Concepts through the Lens of Sartre's Phenomenology": 1 + "Philosophy Demystified: Learning Epistemology Using Levinas' Phenomenology as a Guide": 1 + "Philosophy Exposed: An Examination of Basic Epistemology Concepts through the Prism of Derrida's Phenomenology": 1 + "Philosophy Simplified: Decoding Epistemology Using Phenomenology and Foucault's Power/Knowledge Concept": 1 + "Philosophy Decoded: Exploring Epistemology through Phenomenology Using Heidegger's Being and Time": 1 + "Philosophy Explored: Unraveling Epistemology Concepts through Phenomenology and Nietzsche's Will to Power": 1 + "Utilizing Blockchain for IoT and Big Data in the Music Economy: 10 Strategies for Industry Transformation ": 1 + "Leveraging AI and Machine Learning in IoT, Big Data, and the Music Economy: 10 Sound Industry Transformation Techniques ": 1 + "IoT, Big Data, and the Impact on Music Economy: 10 Strategies for Transformation through Cloud Computing ": 1 + "IoT, Big Data, and their Effects on the Music Economy: 10 Strategies for Transformation Using Cybersecurity ": 1 + "Exploring Data Analytics in IoT, Big Data and the Music Economy: 10 Techniques for Industry Transformation ": 1 + "IoT, Big Data, and the Music Economy: 10 Strategies for Transformation Through Data Visualization ": 1 + "Applying Predictive Analysis to IoT, Big Data and the Music Economy: 10 Strategies for Industry Revitalization ": 1 + "IoT, Big Data, and the Music Economy: 10 Strategies for Transformation Through Virtual Reality ": 1 + "IoT, Big Data, and the Music Economy: 10 Strategies for Industry Transformation Using Augmented Reality ": 1 + "IoT, Big Data, and the Music Economy: 10 Strategies for Transformation Through Quantum Computing.": 1 + "Mathematics: Exploring Patterns and Progressions with Fibonacci Sequences: A Global Overview": 1 + "Mathematics: Patterns and Progressions: A Global Overview using Python": 1 + "Mathematics: Analyzing Patterns and Progressions through Fractal Geometry: A Global Overview": 1 + "Mathematics: Patterns, Progressions, and Polynomial Equations: A Global Overview": 1 + "Mathematics: Patterns and Progressions: A Global Overview with Matlab": 1 + "Mathematics: Unraveling Patterns and Progressions with Chaos Theory: A Global Overview": 1 + "Mathematics: Patterns and Progressions in Coding Theory: A Global Overview": 1 + "Mathematics: Patterns and Progressions: A Global Perspective through Calculus": 1 + "Mathematics: Patterns and Progressions: A Deep Dive into Algebraic Structures": 1 + "Mathematics: Patterns and Progressions: Understanding Probability Distributions Globally.": 1 + "English: Literature and Environmental Activism - An In-depth Study on Eco-criticism Using the Lens of Post-Colonial Theory": 1 + "English: Literature and Environmental Activism - Exploring Eco-criticism Through the Lens of Deconstruction ": 1 + "English: Literature and Environmental Activism - A Deep Dive into Eco-criticism and its Relation with Feminist Theory": 1 + "English: Literature and Environmental Activism - A Comparative Analysis of Eco-criticism and Queer Theory": 1 + "English: Literature and Environmental Activism - A Deep Dive into Eco-criticism Using Psychoanalytic Approach": 1 + "English: Literature and Environmental Activism - A Study of Eco-criticism Through the Tools of Structuralist Theory": 1 + "English: Literature and Environmental Activism - An Examination of Eco-criticism with a Focus on Marxist Theory": 1 + "English: Literature and Environmental Activism - A Deep Dive into Eco-criticism Using New Historicism": 1 + "English: Literature and Environmental Activism - The Interplay of Eco-criticism and Post-structuralist Theory": 1 + "English: Literature and Environmental Activism - A Deep Dive into Eco-criticism: A Study with Phenomenology Approach": 1 + "Music: Exploring the Mathematics of Musical Scales using Python, MIDI Tools, and Frequency Modulation with the Harmonic Series": 1 + "Music: Employing Fast Fourier Transform Algorithms to Understand Musical Scales using Python and MIDI Tools": 1 + "Music: Deconstructing Musical Scales: A Detailed Study using Python, MIDI Tools, and Frequency Modulation in Jupyter Notebooks": 1 + "Music: PyDub and the Mathematics of Musical Scales: An In-depth Analysis with Python and MIDI Tools": 1 + "Music: Sound Analysis of Musical Scales using Python, MIDI Tools, Frequency Modulation, and Spectrogram": 1 + "Music: Understanding Resonance and Beat Frequencies in Musical Scales using Python, MIDI Tools, and Frequency Modulation": 1 + "Music: A Comprehensive Study of Musical Scales using Python, MIDI Tools, Frequency Modulation, and Audacity Software": 1 + "Music: Investigating the Mathematics of Musical Scales using Python, MIDI Tools, Frequency Modulation, and the Nyquist-Shannon Sampling Theorem": 1 + "Music: Exploring the Mathematics of Musical Scales with Python, MIDI Tools, Frequency Modulation, and Psychoacoustics": 1 + "Music: Applying Fourier Series to Analyze Musical Scales using Python, MIDI Tools, and Frequency Modulation.": 1 + "Unveiling Ancient Trade Routes: Exploring Historical Significance through Satellite Imagery and Remote Sensing": 1 + "Geographic Information Systems (GIS) in Trade Route Analysis: A Historical Perspective": 1 + "Lidar Technology and Archaeology: Unraveling Trade Routes and Their Historical Significance": 1 + "Unmasking Trade Routes: A Deep Dive into their Historical Significance using Geospatial Analysis": 1 + "Understanding the Past: Trade Route Discovery and Analysis using Drone Technology": 1 + "Radar Applications in Geography: Trade Routes and Their Historical Significance Explored": 1 + "Unearthing History: Trade Routes Analysis Using Ground Penetrating Radar and Remote Sensing": 1 + "Decoding Trade Routes: A Study of Historical Significance Using Aerial Photography and Remote Sensing": 1 + "Sonar Technology in Geography: Exploring Underwater Trade Routes and their Historical Importance": 1 + "Digital Elevation Models (DEM) and Trade Routes: Remote Sensing Analysis of Historical Pathways.": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms and R Programming with High-End Bioconductor Tools": 1 + "Genomic Data Analysis using Parallel Algorithms in Computational Biology: A Deep Dive into Big Data Analytics with Hadoop": 1 + "Advanced Computational Biology: Deep Learning Techniques in Genomic Data Analysis using TensorFlow and R Programming": 1 + "High Performance Computing in Advanced Computational Biology: Genomic Data Analysis using R and CUDA Programming": 1 + "Advanced Computational Biology: Genomic Data Analysis using Apache Spark and Parallel Algorithms": 1 + "Genomic Data Analysis with Python and R Programming: Advanced Computational Biology using High Performance Computing": 1 + "Advanced Computational Biology: A Practical Approach to Genomic Data Analysis using R Programming and RNA-Seq Tools": 1 + "Advanced Computational Biology: Genomic Data Analysis using R Programming, Parallel Algorithms, and Amazon Web Services (AWS)": 1 + "Big Data Analytics in Computational Biology: Genomic Data Analysis using R Programming, Parallel Algorithms, and NoSQL Databases": 1 + "Advanced Computational Biology: Leveraging Genomic Data Analysis using R Programming, Parallel Algorithms, and Google Cloud Platform.": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with Spark in Python": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with MATLAB": 1 + "Advanced Computational Biology: Genomic Data Analysis utilizing Hadoop and Spark for Big Data Analytics": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with Spark and SQL": 1 + "Advanced Computational Biology: Genomic Data Analysis using CUDA for Parallel Algorithms, R Programming, and Big Data Analytics with Spark": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Computing with OpenMP, R Programming, and Big Data Analytics with Spark": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming and Big Data Analytics with Spark and NoSQL": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with Spark and Machine Learning": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with Spark and TensorFlow ": 1 + "Advanced Computational Biology: Genomic Data Analysis using Parallel Algorithms, R Programming, and Big Data Analytics with Spark and Deep Learning Techniques.": 1 + "Sound Wave Propagation: Investigating Acoustics using Decibel Meters, Subtractive Synthesis Techniques and Fourier Transform Algorithms": 1 + "Analysis of Sound Wave Propagation: A Detailed Study on Acoustics using Decibel Meters, Subtractive Synthesis Techniques and Pro Tools Software": 1 + "Advanced Acoustics: Exploring Sound Wave Propagation using Decibel Meters, Subtractive Synthesis Techniques and the Doppler Effect": 1 + "Exploring the Science of Sound: Sound Wave Propagation using Decibel Meters, Subtractive Synthesis Techniques and Oscilloscopes": 1 + "Deep Dive into Acoustics: Sound Wave Propagation with Decibel Meters, Subtractive Synthesis Techniques, and the Concept of Wave Interference": 1 + "Advanced Acoustics: Studying Sound Wave Propagation with Decibel Meters, Subtractive Synthesis Techniques, and Logic Pro X": 1 + "Sound Wave Propagation: A Comprehensive Study using Decibel Meters, Subtractive Synthesis Techniques, and the Principle of Superposition": 1 + "Understanding Acoustics: Sound Wave Propagation using Decibel Meters, Subtractive Synthesis Techniques, and Resonance Phenomena": 1 + "Sound Wave Propagation: Analyzing Acoustics using Decibel Meters, Subtractive Synthesis Techniques and FL Studio Software": 1 + "Acoustics in Detail: Investigating Sound Wave Propagation using Decibel Meters, Subtractive Synthesis Techniques and the Concept of Phase Cancellation": 1 + "Social Studies: Exploring Global Connectivity Through Facebook": 1 + "Social Studies: Twitter's Impact on Global Connectivity": 1 + "Social Studies: Instagram's Role in Social Media and Global Connectivity": 1 + "Social Studies: Analysing Global Connectivity Through LinkedIn": 1 + "Social Studies: The Influence of Snapchat on Social Media and Global Connectivity": 1 + "Social Studies: YouTube's Contribution to Social Media and Global Connectivity": 1 + "Social Studies: WhatsApp and its Impact on Global Connectivity": 1 + "Social Studies: The Role of TikTok in Social Media and Global Connectivity": 1 + "Social Studies: Understanding Global Connectivity Through Pinterest": 1 + "Social Studies: Global Connectivity and the Power of Reddit.": 1 + "Social Studies: Delving into American History through the Lens of Supply and Demand Economics": 1 + "Social Studies: Analyzing American History with the Keynesian Economic Theory": 1 + "Social Studies: Investigating American History using the Marxian Economic Framework": 1 + "Social Studies: Discovering American History through the Neoclassical Economic Perspective": 1 + "Social Studies: Interpreting American History through the Prism of the Austrian School of Economics": 1 + "Social Studies: Navigating American History via the Chicago School of Economics": 1 + "Social Studies: Unfolding American History through the Lenses of Monetarism and Financial Policy": 1 + "Social Studies: Exploring American History using Game Theory in Economics": 1 + "Social Studies: Understanding American History through the Application of Behavioral Economics": 1 + "Social Studies: Tracing American History using Econometrics and Statistical Analysis.": 1 + "Astrochemistry and Spectroscopy: Unraveling the Mysteries of the Solar System": 1 + "Probing the Solar System's Secrets with Astrochemistry and Telescopes": 1 + "The Role of Astrochemistry and Spectral Imaging in Understanding the Solar System": 1 + "Astrochemistry and Satellite Technology: Decoding Mysteries of the Solar System": 1 + "Astrochemistry and Radio Telescopes: Unveiling Mysteries of the Solar System": 1 + "Unlocking Solar System Mysteries through Astrochemistry and Infrared Spectroscopy": 1 + "Astrochemistry and Space Probes: Investigating the Secrets of our Solar System": 1 + "Astrochemistry and the Hubble Telescope: Exploring the Mysteries of the Solar System": 1 + "The Impact of Astrochemistry and Space Rovers on Our Understanding of the Solar System": 1 + "Astrochemistry and Computational Modelling: Demystifying the Solar System's Secrets": 1 + "Comprehensive Study of Athlete Performance using Python, Tableau, Cluster Analysis, Data Visualization, and Linear Regression Techniques": 1 + "Advanced Course on Data-Driven Athletic Assessment using Python, Tableau, K-Means Clustering, and Data Visualization Techniques": 1 + "Python Programming for Athletic Assessment: Tableau Integration, Cluster Analysis, Data Visualization, and Machine Learning Applications": 1 + "Data-Driven Athletic Assessment: Leveraging Python, Tableau, Cluster Analysis, Data Visualization, and Artificial Neural Networks": 1 + "Detailed Analysis of Sports Performance through Python, Tableau, Cluster Analysis, Data Visualization, and Predictive Modelling": 1 + "Specialized Course on Sports Analytics: Python, Tableau, Cluster Analysis, Data Visualization, and Decision Tree Learning": 1 + "Athletic Performance Evaluation with Python, Tableau, Cluster Analysis, Data Visualization, and Support Vector Machines": 1 + "Python Programming for Sports Analytics: In-depth Study of Tableau, Cluster Analysis, Data Visualization, and Principle Component Analysis": 1 + "Advanced Data-Driven Athletic Assessment: Python, Tableau, Cluster Analysis, Data Visualization, and the use of Naive Bayes Algorithm": 1 + "Comprehensive Python Programming for Athletic Assessment: Tableau, Cluster Analysis, Data Visualization, and Deep Learning Techniques.": 1 + "Elementary Robotics: An Introduction to Python Programming and Data Structures": 1 + "Exploring Elementary Robotics: Hands-on with Microcontrollers and Data Structures": 1 + "Elementary Robotics: Introduction to Programming with Lego Mindstorms and Data Structures": 1 + "Elementary Robotics: Understanding Programming and Data Structures using Raspberry Pi": 1 + "Elementary Robotics: Introduction to C++ Programming and Data Structures": 1 + "Elementary Robotics: An Insight into Arduino Programming and Data Structures": 1 + "Elementary Robotics: Introduction to Programming using Swift and Data Structures": 1 + "Elementary Robotics: Introduction to Java Programming and Data Structures in Robotics": 1 + "Elementary Robotics: Understanding Programming and Data Structures using VEX Robotics": 1 + "Elementary Robotics: Introduction to Programming and Data Structures using MATLAB.": 1 + "Probability & Statistics: Utilizing the Central Limit Theorem for Hypothesis Testing in SAS": 1 + "Probability & Statistics: Applying Regression Analysis in Hypothesis Testing Using SAS": 1 + "Probability & Statistics: Exploring Binomial Distribution in Hypothesis Testing with SAS": 1 + "Probability & Statistics: A Deep Dive into Chi-Square Tests in SAS for Hypothesis Testing": 1 + "Probability & Statistics: Examining T-tests with Random Variables in SAS: An Introduction to Hypothesis Testing": 1 + "Probability & Statistics: Using ANOVA in SAS for Advanced Hypothesis Testing": 1 + "Probability & Statistics: Linear Regression for Hypothesis Testing in SAS: A Comprehensive Study": 1 + "Probability & Statistics: Employing Factor Analysis in SAS for Hypothesis Testing": 1 + "Probability & Statistics: A Practical Approach to Hypothesis Testing with Z-tests in SAS": 1 + "Probability & Statistics: Understanding Poisson Distribution in Hypothesis Testing Using SAS.": 1 + "Biology 100: DNA Sequencing in Fundamentals of Genetics": 1 + "Biology 100: Polymerase Chain Reaction and Genetic Fundamentals": 1 + "Biology 100: CRISPR-Cas9 Technology in Basic Genetics": 1 + "Biology 100: Fundamentals of Genetics: Understanding Genomic Imprinting": 1 + "Biology 100: Genetic Linkage and Mapping in Genetics Fundamentals": 1 + "Biology 100: Use of Microarrays in Basic Genetics": 1 + "Biology 100: Fundamentals of Genetics: An Insight into Gene Therapy": 1 + "Biology 100: Basics of Genetics with Focus on Genetic Engineering": 1 + "Biology 100: Gene Cloning in Fundamentals of Genetics": 1 + "Biology 100: Use of Bioinformatics in Basic Genetics": 1 + "English Literature: Analyzing Metaphor and Symbolism through Shakespeare's Works": 1 + "Exploring Metaphor and Symbolism in English Literature using Textual Analysis Software": 1 + "English Literature: A Deep Dive into Metaphor and Symbolism in Romantic Poetry": 1 + "Metaphor and Symbolism in English Literature: A Focus on Postmodern Novels": 1 + "English Literature: Exploring Metaphor and Symbolism through Semantic Mapping": 1 + "Analyzing Metaphor and Symbolism in English Literature with Digital Humanities Tools": 1 + "English Literature: Deconstructing Metaphor and Symbolism in Victorian Prose": 1 + "English Literature: Metaphor and Symbolism Explored through Critical Discourse Analysis": 1 + "The Role of Metaphor and Symbolism in English Literature: A Thematic Analysis Approach": 1 + "English Literature: An Examination of Metaphor and Symbolism using Linguistic Anthropology Methods.": 1 + "World History: The Age of Exploration - The Compass, Quadrants, and The Impact of Astrolabes": 1 + "Navigational Tools in World History: The Age of Exploration - Compass, Quadrants, and The Sextant": 1 + "World History: The Age of Exploration - The Compass, Quadrants, and The Introduction of Cartography": 1 + "The Age of Exploration: The Compass, Quadrants, and The Revolutionary Telescopes": 1 + "World History: The Age of Exploration - The Compass, Quadrants, and The Advancement of Celestial Navigation": 1 + "World History: The Role of Compass, Quadrants, and The Printing Press in the Age of Exploration": 1 + "The Age of Exploration: The Compass, Quadrants, and The Development of Lateen Sails": 1 + "World History: The Age of Exploration - Understanding The Compass, Quadrants, and Chronometers": 1 + "The Age of Exploration: Unveiling The Compass, Quadrants, and The Influence of Gunpowder": 1 + "World History: The Age of Exploration - The Compass, Quadrants, and The Dawn of Maritime Insurance.": 1 + "Physics Fundamentals: An In-depth Study of Quantum Mechanics Using Matrix Mechanics": 1 + "Quantum Field Theory: Schrödinger's Equation and its Role in Quantum Electrodynamics": 1 + "Quantum Mechanics: The Implications of Schrödinger's Equation for Quantum Tunneling": 1 + "Advanced Physics: Quantum Mechanics and the Role of Schrödinger's Equation in Particle Physics": 1 + "Quantum Mechanics and the Role of Schrödinger's Equation in Quantum Entanglement": 1 + "Quantum Computing: The Application of Schrödinger's Equation in Quantum Algorithms": 1 + "Quantum Mechanics: Understanding Wave-Particle Duality through Schrödinger's Equation": 1 + "Quantum Physics: Schrödinger's Equation and its Role in the Principle of Superposition": 1 + "Quantum Mechanics: Schrödinger's Equation and the Probability Distribution of Particles": 1 + "Theoretical Physics: Quantum Mechanics and the Role of Schrödinger's Equation in the Uncertainty Principle.": 1 + "Economics: An In-depth Study of Perfect Competition Market Structures Using Game Theory": 1 + "Economics: Analyzing Consumer Behavior in Monopolistic Markets Through Behavioral Economics": 1 + "The Impact of Artificial Intelligence on Economic Policies: An Examination with Machine Learning": 1 + "Economics: Understanding Oligopoly Market Structures Using Nash Equilibrium": 1 + "Consumer Behavior: A Detailed Analysis Using Neuroeconomic Techniques": 1 + "Economics: Exploring the Impact of Artificial Intelligence on Labor Market Using Macroeconomic Models": 1 + "Economics: Evaluating Market Structures through the Lens of Supply and Demand Analysis": 1 + "Artificial Intelligence and Economics: A Study of Economic Forecasting Through Predictive Analytics": 1 + "Economics: An Analysis of Consumer Behavior Using the Concept of Utility Maximization": 1 + "Artificial Intelligence in Economics: Understanding its Impact on Market Structures Using Big Data Analytics.": 1 + "Exploring Quantum Dots: The Role of Semiconductor Physics in Computer Science": 1 + "The Role of Semiconductor Physics in Computer Science: A Focus on Nanotechnology": 1 + "The Impact of Silicon-Based Semiconductors in Computer Science": 1 + "Understanding Transistors: The Role of Semiconductor Physics in Computer Science": 1 + "Semiconductor Physics and Its Role in the Development of Microprocessors in Computer Science": 1 + "The Role of Semiconductor Physics in Computer Science: An In-depth Study of Integrated Circuits": 1 + "Semiconductor Physics in the Age of Quantum Computing": 1 + "The Role of Semiconductor Physics in Computer Science: The Development of Flash Memory": 1 + "The Influence of Semiconductor Physics on the Evolution of Computer Graphics Cards": 1 + "Semiconductor Physics and its Importance in the Advancement of Artificial Intelligence Technology": 1 + "The Influence of Amazon Web Services on Cloud Computing's Role in Globalization and Modern Trade: A Historical Perspective": 1 + "Historical Analysis of the Impact of Kubernetes on Cloud Computing and its Implications for Globalization and Modern Trade": 1 + "The Historical Perspective on The Impact of Docker in Cloud Computing on Globalization and Modern Trade": 1 + "The Historical Influence of Serverless Architectures on Cloud Computing in Globalization and Modern Trade": 1 + "The Role of Virtualization in Cloud Computing: A Historical Perspective on its Impact on Globalization and Modern Trade": 1 + "The Historical Perspective on The Impact of Machine Learning in Cloud Computing on Globalization and Modern Trade": 1 + "The Historical Impact of OpenStack in Cloud Computing on Globalization and Modern Trade": 1 + "The Historical Perspective on The Impact of Hadoop in Cloud Computing on Globalization and Modern Trade": 1 + "A Historical Analysis of the Impact of Microservices on Cloud Computing and its Role in Globalization and Modern Trade": 1 + "The Historical Perspective on The Impact of Blockchain Technology in Cloud Computing on Globalization and Modern Trade": 1 + "Utilizing the SM57 Microphone: A Comprehensive Study on Piano Sound Placement Techniques": 1 + "Exploring Piano Sound: An In-Depth Study of Microphone Placement Using the AKG C414": 1 + "The Sound of Music: Detailed Study of Piano Acoustics through Condenser Microphone Placement": 1 + "Probing Piano Sound: A Study of Microphone Placement Techniques Using a Digital Audio Workstation (DAW)": 1 + "Advanced Study of Piano Sound: Exploring Microphone Placement Techniques with the Neumann U87": 1 + "The Art of Piano Sound: Using Microphone Placement Techniques and Audio Interface Technology": 1 + "Sound Engineering: A Detailed Study of Piano Sound Using Dynamic Microphone Placement Techniques": 1 + "Decoding Piano Sound: A Detailed Study of Microphone Placement Using Audio Spectrum Analysis": 1 + "The Science of Sound: A Detailed Study of Piano Acoustics Using Microphone Placement and Soundproofing Techniques": 1 + "Unearthing Piano Tones: A Detailed Study Using Microphone Placement Techniques and Sound Equalization.": 1 + "Physical Education: Understanding the Impact of Weather Conditions on Outdoor Sports Using Weather Forecasting Tools": 1 + "Physical Education: Utilizing GPS Technology in Outdoor Sports under Different Weather Conditions": 1 + "Physical Education: Enhancing Outdoor Sports Performance through Weather Predictive Algorithms": 1 + "Physical Education: Incorporating Smart Wearables in Outdoor Sports amid Varied Weather Conditions": 1 + "Physical Education: The Role of Weather Applications in Outdoor Sports Planning and Execution": 1 + "Physical Education: The Influence of Climate Changes on Outdoor Sports: A Study Using Weather Stations": 1 + "Physical Education: Outdoor Sports and Weather Conditions: A Focus on Hydration Technology": 1 + "Physical Education: Leveraging Meteorology in Outdoor Sports Training and Competitions": 1 + "Physical Education: Understanding the Effects of Weather Conditions on Outdoor Sports Using Thermoregulation Concepts": 1 + "Physical Education: Using Weather Mapping Tools to Optimize Performance in Outdoor Sports.": 1 + "Topography and Music: Utilizing GIS Technology to Trace the Origins of Ten Distinct World Music Styles": 1 + "Mapping Soundscapes: Leveraging ArcGIS to Investigate the Geographical Roots of Ten Unique Music Genres": 1 + "Melodies and Mountains: Applying QGIS in the Study of Ten Global Music Traditions' Origins": 1 + "Geospatial Harmonies: Using Remote Sensing to Discover the Origins of Ten World Music Genres": 1 + "Rhythms of the Earth: Employing Geospatial Analysis in Uncovering the Birthplaces of Ten International Music Styles": 1 + "From Peaks to Playlists: Integrating GPS Tracking in Researching the Geographical Beginnings of Ten Music Styles": 1 + "Sounds from the Soil: Applying Georeferencing Tools to Explore the Origins of Ten Diverse Music Genres": 1 + "Musical Landscapes: Utilizing Spatial Statistics in Studying the Geographical Roots of Ten Varying Music Styles": 1 + "Harmonies and Highlands: Using Digital Elevation Models to Trace the Origins of Ten Global Music Traditions": 1 + "Acoustic Altitudes: Implementing Geocoding in the Investigation of Ten Unique Music Genre Origins": 1 + "The Role of Schrödinger Equation in Quantum Tunneling Applications in Quantum Physics": 1 + "Quantum Tunneling Explored: The Impact of Matrix Mechanics ": 1 + "Quantum Tunneling and its Application in Quantum Physics: A Deep Dive into Wave-Particle Duality": 1 + "Quantum Tunneling in Quantum Physics: A Study on the Influence of Heisenberg's Uncertainty Principle": 1 + "Quantum Tunneling in Quantum Physics: An Examination of Wave Function": 1 + "Quantum Tunneling in Quantum Physics: A Review on the Use of Quantum Harmonic Oscillator": 1 + "Quantum Tunneling in Quantum Physics: The Role of Quantum Entanglement": 1 + "An Analysis of Quantum Tunneling in Quantum Physics: The Application of Quantum Field Theory": 1 + "Quantum Tunneling in Quantum Physics: A Detailed Study on Quantum Superposition": 1 + "Quantum Tunneling in Quantum Physics: Exploring the Impact of Eigenstates.": 1 + "Music and Fractal Mathematics: Exploring Patterns with Mandelbrot Set using Python": 1 + "The Application of MATLAB in Music and Fractal Mathematics: A Deep Dive into the Mandelbrot Set": 1 + "An Exploration of the Mandelbrot Set: Using Mathematica in Music and Fractal Mathematics ": 1 + "Music and Fractal Mathematics: Patterns in the Mandelbrot Set through the Lens of Wolfram Alpha": 1 + "The Harmony of Chaos: A Study of Music and Fractal Mathematics using the Mandelbrot Set and AutoCAD": 1 + "Exploring the Mandelbrot Set with R: An Intersection of Music and Fractal Mathematics ": 1 + "Music and Fractal Mathematics: Discovering Patterns in the Mandelbrot Set Using Excel": 1 + "Music and Fractal Mathematics: An Investigation into the Mandelbrot Set with Arduino ": 1 + "The Mandelbrot Set: Unveiling Patterns with Octave in Music and Fractal Mathematics": 1 + "Using the Mandelbrot Set in Music and Fractal Mathematics: A Closer Look with Tableau Software": 1 + "Physical Education: The Impact of Tempo in Music on Athletic Performance Using Heart Rate Monitors": 1 + "Physical Education: Analyzing the Effect of Beats Per Minute in Music on Sprinting Speed with Wearable Tech": 1 + "Physical Education: Exploring the Influence of Musical Genres on Physical Endurance Using Fitness Trackers": 1 + "Physical Education: The Role of Rhythm in Music on Athletic Performance and its Measurement through Biometric Devices": 1 + "Physical Education: Assessing the Impact of Melody on Athlete's Stamina through Smart Watches": 1 + "Physical Education: Investigating the Influence of Music Tempo on Athlete's Performance using GPS Sports Watches": 1 + "Physical Education: The Impact of Music Volume on Athletic Performance Measured with Activity Trackers": 1 + "Physical Education: The Impact of Song Duration on Workout Intensity Using Heart Rate Variability Monitors": 1 + "Physical Education: Evaluating the Effect of Music's Tempo on Endurance Athletes Using Pulse Oximeters": 1 + "Physical Education: The Influence of Music Frequency on Athlete's Performance Monitored with Accelerometers": 1 + "Physical Education: Utilizing Smart Metronomes in Dance for Enhanced Rhythm and Coordination": 1 + "Exploring the Use of Digital Metronomes and Accelerometers in Dance for Improved Coordination": 1 + "Physical Education: Application of Metronomes and Motion Capture Technology in Dance": 1 + "Dance Coordination and Rhythm: An In-Depth Study of Metronomes and Music Tempo Software": 1 + "Physical Education: Implementing Metronomes and Haptic Feedback Devices in Dance": 1 + "Rhythm Mastery: Exploring the Use of Metronomes and Sound Wave Analysis in Dance": 1 + "Physical Education: Metronomes, Beat Detectors and the Art of Dance Coordination": 1 + "Dance Rhythm and Coordination: A Study on the Use of Metronomes and Virtual Reality": 1 + "Physical Education: The Impact of Metronomes and Biofeedback on Dance Coordination": 1 + "Physical Education: Exploring Metronomes and Wearable Tech in Dance for Enhanced Rhythm.": 1 + "Mathematics 110: Utilizing Parametric Equations for Sports Trajectories Analysis Through Mathematical Modelling and MATLAB": 1 + "Mathematics 110: Exploring Sports Trajectories Calculus Using Mathematical Modelling, MATLAB, and Python Programming": 1 + "Mathematics 110: Sports Trajectories Calculus: Modelling with MATLAB and Vector Calculus": 1 + "Mathematics 110: Advanced Mathematical Modelling of Sports Trajectories with Differential Equations and MATLAB": 1 + "Mathematics 110: Exploring Sports Trajectories with Calculus, Mathematical Modelling, and MATLAB Using Linear Algebra": 1 + "Mathematics 110: Application of Integration in Calculus for Sports Trajectories Analysis through Mathematical Modelling and MATLAB": 1 + "Mathematics 110: Exploring Sports Trajectories with Calculus, Mathematical Modelling, MATLAB, and R Programming": 1 + "Mathematics 110: Sports Trajectories and Calculus: A Mathematical Modelling Approach with MATLAB and Tensor Calculus": 1 + "Mathematics 110: Analyzing Sports Trajectories with Mathematical Modelling, MATLAB, and Finite Element Analysis": 1 + "Mathematics 110: Using Partial Differential Equations for Sports Trajectories Calculus Through Mathematical Modelling and MATLAB": 1 + "Exploring Electromagnetism through Faraday's Law: Concentrated Study on Magnetic Field Simulation Tools": 1 + "Motion and Energy Uncovered: Detailed Analysis of Electromagnetism with the Aid of PhET Interactive Simulations": 1 + "A Deep Dive into Electromagnetism: Understanding Faraday's Law through Maxwell's Equations": 1 + "Unraveling Electromagnetism with Faraday's Law: A Focus on Lorentz Force": 1 + "Comprehensive Study on Electromagnetism: Faraday's Law and the Role of Gauss's Law": 1 + "Delving into Motion and Energy: Understanding Electromagnetism with Faraday's Law and Ampere's Circuital Law": 1 + "A Detailed Study on Electromagnetism through Faraday's Law Using Vector Fields": 1 + "Mastering Electromagnetism: An In-depth Analysis of Faraday's Law with the Use of Electromagnetic Inductance ": 1 + "Comprehensive Guide on Electromagnetism: Faraday's Law and the Application of Biot-Savart Law": 1 + "Motion, Energy, and Electromagnetism: In-depth Study through Faraday's Law and the Use of Magnetic Flux.": 1 + "English Grammar Enhancement: Utilizing Story Cubes, Kahoot, and Google Classroom for Interactive Sentence Building": 1 + "English Grammar Mastery: Incorporating Story Cubes, Kahoot, and Padlet in Sentence Construction": 1 + "Advanced English Grammar: Applying Story Cubes, Kahoot, and Quizlet for Engaging Sentence Building Activities": 1 + "Comprehensive English Grammar: Leveraging Story Cubes, Kahoot and Nearpod for Interactive Sentence Creation": 1 + "English Grammar Intensive: Integrating Story Cubes, Kahoot, and Flipgrid for Collaborative Sentence Building": 1 + "Effective English Grammar: Using Story Cubes, Kahoot, and Edmodo for Interactive Sentence Formulation": 1 + "Practical English Grammar: Incorporating Story Cubes, Kahoot, and Pear Deck for Dynamic Sentence Building": 1 + "English Grammar Proficiency: Combining Story Cubes, Kahoot, and Socrative for Interactive Sentence Structuring": 1 + "Interactive English Grammar: Merging Story Cubes, Kahoot, and Seesaw for Collaborative Sentence Construction": 1 + "Innovative English Grammar: Incorporating Story Cubes, Kahoot, and Microsoft Teams for Interactive Sentence Building Activities": 1 + "Physical Education: Utilizing Microsoft Kinect as Motion Capture Tech for Dance Coordination Enhancement with Metronomes": 1 + "Dance Rhythm Improvement: Incorporating Leap Motion Controller in Physical Education for Metronome Training": 1 + "Physical Education: Enhancing Dance Coordination with Metronomes using GoPro Cameras for Motion Analysis": 1 + "Use of Inertial Measurement Units (IMUs) in Physical Education to Optimize Dance Coordination with Metronome Techniques": 1 + "High-Speed Cameras in Physical Education: A New Approach to Dance Rhythm and Coordination Improvement with Metronomes": 1 + "Physical Education: Dance Coordination and Rhythm Improvement through Metronomes and Optical Motion Capture Systems": 1 + "Incorporating DJI Drones in Physical Education for Dance Coordination and Rhythm Enhancement with Metronomes": 1 + "Physical Education: Applying Pressure Sensors and Metronomes for Dance Rhythm and Coordination Improvement": 1 + "Dance Coordination and Rhythm Enhancement: Using Virtual Reality Headsets and Metronomes in Physical Education": 1 + "Physical Education: Enhancing Dance Coordination with Metronomes using Thermal Imaging Cameras for Motion Capture.": 1 + "History: Exploring the Financial Aspects of the Renaissance with Double-entry Bookkeeping": 1 + "Unraveling the Renaissance Economy: A Deep Dive into the Use of Bills of Exchange": 1 + "Understanding the Financial Revolution of the Renaissance: The Impact of Banking Systems ": 1 + "Tracing Economic Changes: The Role of the Medici Bank in the Renaissance": 1 + "Renaissance Finances: The Influence of the Ledger System on Economic Growth": 1 + "The Financial Face of the Renaissance: The Rise and Fall of Public Debt Instruments": 1 + "History: The Impact of Maritime Trade on Renaissance Finances ": 1 + "The Role of the Florin: A Study of the Renaissance Economy": 1 + "Renaissance Finance: Decoding Economic Aspects through the Lens of Joint-Stock Companies": 1 + "History: The Advent of Insurance and its Influence on Renaissance Finances.": 1 + "History: Evolution of Environmental Policies and the Role of Solar Energy Technology ": 1 + "History: Impact and Evolution of Carbon Offsetting on Environmental Policies ": 1 + "History: The Influence of Hydroelectric Power on Environmental Policies ": 1 + "History: Evolution of Environmental Policies Through the Lens of Nuclear Energy ": 1 + "History: Environmental Policies and the Emergence of Wind Power ": 1 + "History: Geoengineering and its Impact on Environmental Policies ": 1 + "History: Environmental Policies in the Age of Electric Vehicles ": 1 + "History: Evolution of Environmental Policies: A Study on Recycling Practices ": 1 + "History: The Impact of Sustainable Agriculture on Environmental Policies ": 1 + "History: Evolution of Environmental Policies and the Role of Carbon Capture Technology": 1 + "Elementary Mathematics: Introduction to Algebra with the Abacus using Python": 1 + "Elementary Mathematics: Introduction to Algebra with the Abacus and the Slide Rule": 1 + "Elementary Mathematics: Exploring Algebraic Equations with the Abacus": 1 + "Elementary Mathematics: Understanding Algebraic Variables with the Abacus": 1 + "Elementary Mathematics: Introduction to Algebra with the Abacus using TI-84 Calculator": 1 + "Elementary Mathematics: Solving Linear Equations with the Abacus ": 1 + "Elementary Mathematics: Introduction to Algebra using Abacus and Graphing Calculators ": 1 + "Elementary Mathematics: Decoding Algebraic Expressions with the Abacus": 1 + "Elementary Mathematics: Introduction to Algebra with the Abacus using GeoGebra": 1 + "Elementary Mathematics: Exploring Quadratic Equations with the Abacus": 1 + "Computer Science: Manipulating Sound Waves in Python with Numpy - A Deep Dive into Music Technology": 1 + "Advanced Course on Manipulating Sound Waves in Python using Fast Fourier Transform (FFT) - A Deep Dive into Music Technology": 1 + "Computer Science: Exploring Waveform Generators in Python - A Deep Dive into Music Technology": 1 + "Python and Pydub: Manipulating Sound Waves for Music Technology - An In-depth Course": 1 + "Computer Science: Utilizing Spectrogram in Python for Sound Wave Manipulation - A Deep Dive into Music Technology": 1 + "Computer Science: Understanding Discrete Fourier Transform in Python - A Deep Dive into Music Technology": 1 + "Python and Librosa: Exploring Music Technology through Sound Wave Manipulation": 1 + "Computer Science: Analyzing Sound Waves in Python using Wavelet Transform - A Deep Dive into Music Technology": 1 + "Computer Science: Sound Wave Manipulation in Python using Signal Processing - A Deep Dive into Music Technology": 1 + "Python and Scipy: An Intensive Course on Sound Wave Manipulation in Music Technology": 1 + "Language Arts: Utilizing Microsoft Word's SmartArt Graphics and Text Effects for Creative Writing and Descriptive Storytelling": 1 + "Incorporating Microsoft Word's SmartArt Graphics and 3D Models for Enhanced Creative Writing and Descriptive Storytelling": 1 + "Language Arts: Microsoft Word's SmartArt Graphics and WordArt for Advanced Creative Writing Techniques": 1 + "Creative Writing Mastery: Using Microsoft Word's SmartArt Graphics and Spelling & Grammar Check": 1 + "Language Arts: Microsoft Word's SmartArt Graphics Paired with Tables for Effective Storytelling": 1 + "Transforming Narratives: Microsoft Word's SmartArt Graphics and Co-authoring Tool for Collaborative Storytelling": 1 + "Language Arts: Leveraging Microsoft Word's SmartArt Graphics and Accessibility Checker for Inclusive Creative Writing": 1 + "Harnessing Microsoft Word's SmartArt Graphics and Track Changes for Dynamic Creative Writing and Storytelling": 1 + "Language Arts: Microsoft Word's SmartArt Graphics and References for Cited Creative Writing and Descriptive Storytelling": 1 + "Language Arts: Microsoft Word's SmartArt Graphics and Translation for Multilingual Creative Writing and Storytelling": 1 + "World History: The Age of Exploration, the Compass, the Astrolabe, and the Development of the Caravel": 1 + "World History: The Age of Exploration, the Sextant, and the Development of the Caravel": 1 + "World History: The Age of Exploration, Cartography, and the Development of the Caravel": 1 + "World History: The Age of Exploration, The Compass, the Printing Press, and the Development of the Caravel": 1 + "World History: The Age of Exploration, the Compass, and the Development of the Caravel - Focus on the Chronometer": 1 + "World History: The Age of Exploration, Gunpowder, the Compass, and the Development of the Caravel": 1 + "World History: The Age of Exploration, the Compass, the Development of the Caravel, and the Impact of the Telescope": 1 + "World History: The Age of Exploration, the Compass, the Cross Staff, and the Development of the Caravel ": 1 + "World History: The Age of Exploration, the Compass, the Development of the Caravel, and the Introduction of the Quadrant": 1 + "World History: The Age of Exploration, the Compass, the Development of the Caravel, and the Use of the Backstaff.": 1 + "Science: The Impact of Galileo's Telescope during the Scientific Revolution and the Renaissance Era": 1 + "The Technological Leap: The Role of the Astrolabe in Navigational Advances during the Scientific Revolution": 1 + "The Renaissance Era: Unveiling the Significance of Water Pump and the Compass in the Age of Discovery": 1 + "Science: The Scientific Revolution and the Introduction of the Printing Press - The Renaissance Era Reimagined": 1 + "Science and Innovation: The Crucial Role of the Water Pump and the Microscope in the Scientific Revolution": 1 + "Unearthing the Past: The Significance of the Water Pump and Gunpowder during the Scientific Revolution in the Renaissance Era": 1 + "Renaissance Science: The Impact of the Water Pump and the Mechanical Clock on Society during the Scientific Revolution": 1 + "A New Era: The Role of the Water Pump and the Sextant during the Renaissance and the Scientific Revolution": 1 + "The Scientific Revolution: The Water Pump, the Paper Mill and their Influence on the Renaissance Era": 1 + "The Renaissance Age: The Evolution of the Water Pump and the Significance of the Quadrant in the Scientific Revolution.": 1 + "Physical Education: Enhancing Defensive Skills in Basketball through Plyometric Training: A Study on 10 Conditioning Techniques": 1 + "Physical Education: Exploring Zone Defense in Basketball: The Impact of Resistance Band Exercises": 1 + "Physical Education: Man-to-Man Defense in Basketball: The Role of Strength Conditioning with Kettlebell Workouts": 1 + "Physical Education: The Relevance of Strength Conditioning in Basketball's Defensive Footwork: A Focus on TRX Suspension Training": 1 + "Physical Education: Understanding Basketball's Full-Court Press Strategy: A Deep Dive into High-Intensity Interval Training": 1 + "Physical Education: Basketball Defense Strategies: Exploring the Influence of Strength Conditioning using Stability Ball Drills": 1 + "Physical Education: Defense in Basketball: Strength Conditioning with Body Weight Exercises and its Impact on Blocking Strategies": 1 + "Physical Education: The Role of Plyometric Boxes in Strength Conditioning for Basketball's Defensive Strategies": 1 + "Physical Education: The Impact of Medicine Ball Training on Basketball Defense Techniques": 1 + "Physical Education: Basketball's Half-Court Trap Defense: The Role of Strength Conditioning with Battle Ropes.": 1 + "The Banjo's Tale: Exploring the Influence of the Scythe in Appalachian Folk Music": 1 + "The Harvester’s Lament: The Intertwining of Fiddle Music and the Scythe in Rural Communities": 1 + "Cutting Through History: The Transition from Sickle to Scythe in Folk Music": 1 + "Steel Strings, Iron Blades: The Sickle and its Impact on Banjo Folk Music": 1 + "Melodies of the Field: Sickle, Scythe and the Evolution of Bluegrass Music": 1 + "The Harvester's Song: The Role of the Flail in the Development of Folk Music": 1 + "Rhythm of the Harvest: The Influence of Scythe Technology on Traditional Folk Ballads": 1 + "Harvest Tunes: The Impact of Threshing Tools on Folk Music Composition": 1 + "Folk Harmony: The Historical Interplay of the Sickle and the Dulcimer in Music": 1 + "Songs from the Sheaves: The Sickle's Influence on the Harmonica in Folk Music.": 1 + "Harnessing Photoshop: Exploring Basketball through Digital Art": 1 + "Introduction to Illustrator: Artistic Interpretation of Basketball Sports ": 1 + "Artistic Side of Sports: Exploring Basketball through 3D Modeling": 1 + "Using Adobe Lightroom: A Digital Artistic Study on Basketball": 1 + "Digital Art and Basketball: Exploring Motion Graphics": 1 + "Understanding Vector Art: An Exploration of Basketball through Digital Mediums": 1 + "Embracing After Effects: Basketball in the World of Digital Animation": 1 + "Creating Digital Masterpieces: Basketball Explored through Corel Painter": 1 + "Artistic Side of Sports: Exploring Basketball through Graphic Design": 1 + "Basketball and Digital Art: A Journey with Procreate": 1 + "Advanced Techniques in Polymerase Chain Reaction Using RT-PCR: A Deep Dive into Innovative Approaches in Cell Biology": 1 + "Cell Biology and Microarray Technology: A Comprehensive Study of DNA Sequencing with Next-Generation Sequencing Tools": 1 + "Expanding Cell Biology: Innovations in Polymerase Chain Reaction Techniques Through the Lens of Gel Electrophoresis": 1 + "Innovative Techniques in Cell Biology: An In-depth Study of Polymerase Chain Reaction Using Capillary Electrophoresis": 1 + "DNA Sequencing and Microarray Technology: Exploring Cell Biology Innovations Through RNA Interference": 1 + "Cell Biology Innovations: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing with CRISPR-Cas9": 1 + "Innovative Approaches in Cell Biology: Exploring Advanced Techniques in PCR and DNA Sequencing using Nanopore Technology": 1 + "Advanced Techniques in Polymerase Chain Reaction & DNA Sequencing: A Focus on Microarray Technology and In-situ Hybridization": 1 + "Exploring Cell Biology: Advanced Techniques in Polymerase Chain Reaction and DNA Sequencing Using Microarray and Southern Blotting": 1 + "Innovative Approaches in Cell Biology: Advanced Techniques in PCR and DNA Sequencing Using Microarray Technology and Flow Cytometry.": 1 + "Music Harmony: Exploring Classical Composers through Bach's Fugues": 1 + "Music Harmony: A Deep Dive into Mozart's Symphonies using Music Theory": 1 + "Music Harmony: Analyzing Beethoven's Sonatas with Score Reading": 1 + "Music Harmony: Understanding Wagner's Operas through Leitmotif Analysis": 1 + "Music Harmony: Examining Chopin's Nocturnes with the Aid of Piano Roll Technology": 1 + "Music Harmony: Discovering Debussy's Preludes through Impressionism": 1 + "Music Harmony: Exploring Classical Composers with Schubert's Lieder and Harmonic Progressions": 1 + "Music Harmony: A Study of Liszt's Transcendental Etudes using Digital Sheet Music": 1 + "Music Harmony: Breaking Down Tchaikovsky's Ballets with Melodic Analysis": 1 + "Music Harmony: A Journey through Handel's Oratorios using Baroque Counterpoint Techniques": 1 + "Social Studies: The Role of Social Media in Language Evolution in the Digital Age": 1 + "Social Studies: The Impact of Texting on Language Development in the Digital Era": 1 + "Social Studies: The Influence of Blogging on Language Transformation in the Information Age": 1 + "Social Studies: The Effect of Artificial Intelligence on Language Evolution in the Digital Age": 1 + "Social Studies: The Impact of Emoji Usage on Language Change in the Digital Era": 1 + "Social Studies: The Role of Podcasting in Language Transformation in the Digital Age": 1 + "Social Studies: The Influence of E-books on Language Evolution in the Information Age": 1 + "Social Studies: The Effect of Video Streaming on Language Development in the Digital Era": 1 + "Social Studies: The Role of Machine Translation in Language Change in the Digital Age": 1 + "Social Studies: The Impact of Virtual Reality on Language Transformation in the Information Age": 1 + "Elementary Geography: Understanding World Maps through Google Earth Satellite Imagery": 1 + "Elementary Geography: Navigating World Maps through GIS (Geographic Information System) Technology": 1 + "Elementary Geography: Analyzing World Maps through Satellite Imagery and Drone Technology": 1 + "Elementary Geography: Understanding World Maps through Satellite Imagery Using ArcGIS": 1 + "Elementary Geography: Deciphering World Maps through Satellite Imagery and Topography Concepts": 1 + "Elementary Geography: Interpreting World Maps through Satellite Imagery and the Mercator Projection": 1 + "Elementary Geography: Comprehending World Maps through Satellite Imagery and Cartography": 1 + "Elementary Geography: Understanding World Maps via Satellite Imagery and GPS technology": 1 + "Elementary Geography: Decoding World Maps through Satellite Imagery and Geospatial Analysis": 1 + "Elementary Geography: Exploring World Maps through Satellite Imagery and Remote Sensing Technology": 1 + "Philosophy and Practicality: Ethical Rainwater Harvesting with Rain Gardens using Permeable Pavers": 1 + "Integrating Gutter Systems: Ethical Rainwater Harvesting with Rain Gardens": 1 + "Rain Barrels and Rain Gardens: A Practical Approach to Ethical Rainwater Harvesting": 1 + "The Use of Swales in Ethical Rainwater Harvesting: Philosophy and Practicality": 1 + "Philosophy and Practicality: Ethical Rainwater Harvesting with Rain Gardens and Catchment Systems": 1 + "Ethical Rainwater Harvesting: Using Rain Chains and Rain Gardens for Sustainability": 1 + "Philosophy and Practicality: Ethical Rainwater Harvesting using Soakaway Crates with Rain Gardens": 1 + "Incorporating Green Roofs: Ethical Rainwater Harvesting with Rain Gardens": 1 + "Philosophy and Practicality: Ethical Rainwater Harvesting with Rain Gardens and Greywater Systems": 1 + "Using Rainwater Tanks in Ethical Rainwater Harvesting: Philosophy and Practicality in Rain Gardens.": 1 + "Elementary Science: Exploring Dew Point Calculation with Infrared LiDAR Technology, Hygrometers, and Psychrometers.": 1 + "Experimental Science: Observing Humidity Levels through Infrared LiDAR Technology, Hygrometers, and Capacitive Sensors.": 1 + "Elementary Science: Studying Atmospheric Moisture with Infrared LiDAR Technology, Hygrometers, and Sling Psychrometers.": 1 + "Practical Science: Humidity Detection with Infrared LiDAR Technology, Hygrometers, and Hair Tension Hygrometers.": 1 + "Advanced Science: Understanding Humidity Levels with Infrared LiDAR Technology, Hygrometers, and Dew Point Hygrometers.": 1 + "Detailed Science: Observing Humidity Levels Using Infrared LiDAR Technology, Hygrometers, and Chilled Mirror Hygrometers.": 1 + "Elementary Science: Humidity Measurement with Infrared LiDAR Technology, Hygrometers, and Mechanic Hygrometers.": 1 + "In-Depth Science: Humidity Evaluation through Infrared LiDAR Technology, Hygrometers, and Electronic Hygrometers.": 1 + "Basic Science: Understanding Humidity with Infrared LiDAR Technology, Hygrometers, and Gravimetric Hygrometers.": 1 + "Applied Science: Observing Humidity Levels through Infrared LiDAR Technology, Hygrometers, and Impedance Hygrometers.": 1 + "Elementary: Studying Earth's Topography through Google Earth Satellite Imagery and 3D Printed Globe Models using Plate Tectonics Concept.": 1 + "Understanding Earth's Landscape: Application of GIS Technology in Analyzing Satellite Imagery and 3D Globe Models Using Plate Tectonics Theory.": 1 + "Earth's Topography Unveiled: Utilizing Infrared Sensors in Satellite Imagery and 3D Globe Models with Plate Tectonics Concept.": 1 + "Exploring Earth's Topography: Harnessing Radar Technology in Satellite Imagery and 3D Globe Models Based on Plate Tectonics Concept.": 1 + "Earth's Surface in Detail: Using LIDAR Technology for Satellite Imagery Analysis and 3D Globe Modelling via Plate Tectonics Theory.": 1 + "Elementary: Analyzing Earth's Topography through Thermal Imaging and 3D Globe Models using the Concept of Plate Tectonics.": 1 + "Understanding Earth's Topography: Employing Remote Sensing Technology in Satellite Imagery and 3D Globe Models Using Plate Tectonics Concept.": 1 + "Decoding Earth's Surface: Integration of Photogrammetry in Satellite Imagery and 3D Globe Models Using Plate Tectonics Theory.": 1 + "An In-Depth Look at Earth's Topography: Using Drone Technology for Satellite Imagery Analysis and 3D Globe Models Based on Plate Tectonics.": 1 + "Elementary: Comprehensive Study of Earth's Topography through Spectral Analysis in Satellite Imagery and 3D Globe Models Using Plate Tectonics Concept.": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Photovoltaic Cells": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Concentrated Solar Power": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Quantum Dots": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Thin Film Technology": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Perovskite Cells": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Multijunction Cells": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Organic Photovoltaics": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Grid-Tied Electrical Systems": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Solar Tracking Systems": 1 + "Physics: Harnessing Solar Energy - The Physics Behind Solar Panels and Bifacial Solar Cells": 1 + "Language Arts: Storytelling with Adobe Spark in Digital Storyboard Tools": 1 + "Language Arts: Storytelling using Canva as a Digital Storyboard Tool": 1 + "Language Arts: Utilizing Powtoon for Digital Storytelling": 1 + "Language Arts: Storytelling with Storyboard That in Digital Settings": 1 + "Language Arts: Enhancing Storytelling through Prezi in Digital Storyboard Tools": 1 + "Language Arts: Storytelling with Pixton as a Digital Storyboard Tool": 1 + "Language Arts: Implementing Google Slides in Digital Storyboard Storytelling": 1 + "Language Arts: Digital Storytelling with Microsoft PowerPoint as a Storyboard Tool": 1 + "Language Arts: Using Plotagon for Interactive Digital Storyboarding": 1 + "Language Arts: Digital Storytelling and Narrative Creation with Storybird": 1 + "History: Evolution of Music through Different Civilizations and the Role of String Instruments": 1 + "History: Impact of Percussion Tools on Music Evolution in Different Civilizations": 1 + "Exploring the Evolution of Music through Civilizations: Focus on Wind Instruments": 1 + "History: The Influence of Piano on the Musical Evolution of Different Civilizations": 1 + "Evolution of Music in Civilizations: The Role of Electronic Synthesizers": 1 + "Musicology: The Effect of the Phonograph on Music Evolution across Civilizations": 1 + "The Literature of Music: Evolution through Civilizations and the Impact of the Harpsichord": 1 + "Music in Time: The Evolution of Civilizations and the Contribution of the Guitar": 1 + "Sound of the Ages: Music, Civilizations and the Influence of the Violin": 1 + "Harmony and History: The Impact of the Flute on the Evolution of Music in Civilizations": 1 + "Logic: The Use of Perspective in Art - A Detailed Study of Fresco Techniques with the Aid of Graphite Pencils": 1 + "Logic: Exploring Symbolism and Representation in Art through Fresco Techniques and Acrylic Paints": 1 + "Logic: Symbolism and Representation in Art - An Insight into Fresco Techniques using The Golden Ratio": 1 + "Interpreting Art: Symbolism, Representation, and Fresco Techniques with a Focus on Charcoal Drawing Tools": 1 + "Logic: A Comprehensive Study of Fresco Techniques - Symbolism and Representation in Art using Stencils": 1 + "Beyond Aesthetics: Logic, Symbolism and Representation in Art - A Study of Fresco Techniques using Camera Lucida": 1 + "Logic: Symbolism and Representation in Art - A Study of Fresco Techniques with the Application of 3D Printing Technology": 1 + "Logic: Symbolism and Representation in Art - A Study of Fresco Techniques and the Use of Proportion Dividers": 1 + "The Art of Logic: Exploring Symbolism and Representation through Fresco Techniques and Digital Art Software": 1 + "Logic: Symbolism and Representation in Art - A Study of Fresco Techniques using the Concept of Light and Shadow.": 1 + "Mathematics 110: Utilizing Quadratic Equations and Python Programming to Analyze Football Kick Trajectories with OBS Studio": 1 + "Mathematics 110: Leveraging Quadratic Equations to Evaluate Football Kick Trajectories through Motion Tracker Video Analysis Software": 1 + "Mathematics 110: Application of Quadratic Equations and MATLAB in Analyzing Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Using Quadratic Equations and Excel Spreadsheets to Investigate Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Implementation of Quadratic Equations and Projectile Motion Concepts to Study Football Kick Trajectories with Kinovea Video Analysis Software": 1 + "Mathematics 110: Leveraging Quadratic Equations and GoPro Cameras to Analyze Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Applying Quadratic Equations and R Programming to Analyze Football Kick Trajectories with Dartfish Video Analysis Software": 1 + "Mathematics 110: Leveraging Quadratic Equations and the Law of Gravity to Analyze Football Kick Trajectories with Hudl Video Analysis Software": 1 + "Mathematics 110: Using Quadratic Equations and Data Science Concepts to Analyze Football Kick Trajectories with Video Analysis Software": 1 + "Mathematics 110: Quadratic Equations and Deep Learning Techniques in Analyzing Football Kick Trajectories with V1 Pro Video Analysis Software": 1 + "Physics: The Science of Sound and Vibration - Studying Waves with Fourier Transforms using MATLAB": 1 + "Physics: Exploring Sound and Vibration through Wave Analysis and Fourier Transforms via Python": 1 + "Physics: Sound and Vibration Studies - Understanding Waves using Fourier Transforms and Audacity": 1 + "Physics: Examining Sound and Vibration - Wave Studies with Fourier Transforms and MATLAB Simulink": 1 + "Physics: The Science of Sound and Vibration - Wave Analysis with Fourier Transforms using Prisms SoundSoap": 1 + "Physics: Sound and Vibration - Exploring Waves with Fourier Transforms utilizing Logic Pro X": 1 + "Physics: An In-Depth Study of Sound and Vibration - Fourier Transforms and Wave Analysis using Adobe Audition": 1 + "Physics: The Science of Sound and Vibration - Understanding Waves through Fourier Transforms with iZotope RX": 1 + "Physics: Sound and Vibration Analysis - Fourier Transforms and Wave Studies using Ableton Live": 1 + "Physics: The Science of Sound and Vibration - Fourier Transforms and Wave Analysis with Steinberg WaveLab.": 1 + "Language Arts: Enhancing Communication Skills using Gmail Email Etiquette in a Digital Age": 1 + "Language Arts: Improving Communication Skills with Outlook Email Etiquette in a Modern World": 1 + "Language Arts: Boosting Communication Skills through Yahoo Mail Etiquette in a Digital Era": 1 + "Language Arts: Advancing Communication Skills employing ProtonMail Email Etiquette in the Internet Age": 1 + "Language Arts: Enriching Communication Skills with Apple Mail Etiquette in a Digital Age": 1 + "Language Arts: Polishing Communication Skills using Thunderbird Email Etiquette in the Cyber Age": 1 + "Language Arts: Augmenting Communication Skills through Zoho Mail Etiquette in a Digital Generation": 1 + "Language Arts: Elevating Communication Skills using AOL Email Etiquette in a Digital Revolution": 1 + "Language Arts: Refining Communication Skills with GMX Mail Etiquette in the Digital Time": 1 + "Language Arts: Strengthening Communication Skills employing Fastmail Email Etiquette in the Information Age": 1 + "Economics for Everyone: Understanding Inflation through the Game of Monopoly": 1 + "Deciphering Supply and Demand: Use Monopoly to Understand Economics": 1 + "Economics for Beginners: Exploring Fiscal Policy through Monopoly": 1 + "Monopoly as a Tool: Grasping the Concept of Market Equilibrium": 1 + "The Game of Monopoly: A Practical Approach to Understanding Economic Indicators": 1 + "Using Monopoly to Understand Macroeconomic Concepts": 1 + "Monopoly and Money: Learning about GDP with Board Games": 1 + "Monopoly Money: A Fun Way to Understand the Federal Reserve System": 1 + "Economic Principles through Monopoly: Understanding the Stock Market": 1 + "The Monopoly Method: A Unique Approach to Understanding Trade Balance.": 1 + "Performance Analytics in Sports: Leveraging Python and Tableau for Predictive Modeling in Athlete Evaluation": 1 + "Advanced Sports Analytics: Utilizing Tableau and Machine Learning for Athlete Evaluation ": 1 + "Sports Performance Analysis: Applying Tableau and R Programming in Predictive Modeling for Athlete Assessment": 1 + "Sports Analytics Course: Using Tableau and Neural Networks for Predictive Modeling in Athlete Evaluation ": 1 + "Athlete Evaluation Techniques: Integrating Tableau and SQL for Performance Analytics ": 1 + "Sports Performance Analytics: Incorporating Tableau and Big Data for Predictive Modeling in Athlete Evaluation": 1 + "Performance Analytics in Sports: Combining Tableau and Regression Analysis for Athlete Evaluation ": 1 + "Athlete Performance Analytics: Using Tableau and Hadoop for Predictive Modeling": 1 + "Sports Analytics: Deploying Tableau and Data Mining Techniques for Athlete Performance Evaluation ": 1 + "Athlete Evaluation and Sports Analytics: Employing Tableau and Artificial Intelligence in Predictive Modeling.": 1 + "Elementary Mathematics: Basics of Graphing with Line Charts Using SPSS": 1 + "Elementary Mathematics: Introduction to Histograms and Data Representation in SPSS": 1 + "Elementary Mathematics: Scatter Plots and Data Analysis Using SPSS": 1 + "Elementary Mathematics: Understanding Bar Charts and Data Representation in SPSS": 1 + "Elementary Mathematics: Pie Charts and Data Representation Techniques in SPSS": 1 + "Elementary Mathematics: Data Representation with Box Plots in SPSS": 1 + "Elementary Mathematics: Basics of Graphing and Data Representation Using SPSS and Excel": 1 + "Elementary Mathematics: Basics of Graphing with Frequency Polygons Using SPSS": 1 + "Elementary Mathematics: Basics of Graphing and Data Representation with Dot Plots in SPSS": 1 + "Elementary Mathematics: Basics of Graphing and Data Representation Using SPSS and Python": 1 + "Innovative Approaches in Cell Biology: Advanced Techniques in PCR, DNA Sequencing and CRISPR Cas9 Gene Editing Using Microarray Technology and Flow Cytometry.": 1 + "Unraveling the Mysteries of Cell Biology: Introducing Next-Generation Sequencing Techniques in PCR and DNA Sequencing with Microarray Technology and Flow Cytometry.": 1 + "A Deep Dive Into Cell Biology: Advanced Techniques in PCR, DNA Sequencing and Fluorescent in situ Hybridization using Microarray Technology and Flow Cytometry.": 1 + "Exploring Cell Biology Through Advanced Techniques: PCR, DNA Sequencing, and RNA Interference Using Microarray Technology and Flow Cytometry.": 1 + "Advanced Studies in Cell Biology: Incorporating PCR, DNA Sequencing and Pyrosequencing Techniques Using Microarray Technology and Flow Cytometry.": 1 + "Cell Biology and Its Intricacies: Advanced Techniques in PCR, DNA Sequencing, and Gel Electrophoresis Using Microarray Technology and Flow Cytometry.": 1 + "Cell Biology Unleashed: Advanced Techniques in PCR, DNA Sequencing and Chromatin Immunoprecipitation Using Microarray Technology and Flow Cytometry.": 1 + "The Future of Cell Biology: Applying Advanced Techniques in PCR, DNA Sequencing and Transfection Using Microarray Technology and Flow Cytometry.": 1 + "In-depth Cell Biology: Advanced Techniques in PCR, DNA Sequencing and Mass Spectrometry Using Microarray Technology and Flow Cytometry.": 1 + "Cell Biology: A New Horizon - Advanced Techniques in PCR, DNA Sequencing, and Genome Mapping Using Microarray Technology and Flow Cytometry.": 1 + "The Art of Theatrical Production: A Comprehensive Analysis of Costume Design with Adobe Photoshop and Illustrator Tools": 1 + "The Art of Theatrical Production: Exploring Costume Design with Adobe Photoshop and 3D Rendering Techniques": 1 + "The Art of Theatrical Production: A Detailed Study of Costume Design Using Adobe Photoshop and Vector Graphics": 1 + "The Art of Theatrical Production: Advanced Costume Design with Adobe Photoshop and Layer Masking Techniques": 1 + "The Art of Theatrical Production: A Comprehensive Analysis of Costume Design with Adobe Photoshop and Color Theory": 1 + "The Art of Theatrical Production: Mastering Costume Design with Adobe Photoshop and Wacom Tablets": 1 + "The Art of Theatrical Production: A Deep Dive into Costume Design with Adobe Photoshop and the Use of Textures": 1 + "The Art of Theatrical Production: A Comprehensive Analysis of Costume Design with Adobe Photoshop and Digital Painting Techniques": 1 + "The Art of Theatrical Production: Unleashing Creativity in Costume Design with Adobe Photoshop and Lightroom": 1 + "The Art of Theatrical Production: A Comprehensive Analysis of Costume Design with Adobe Photoshop and InDesign Integration": 1 + "Philosophy: Exploring Ethical Concepts Through Socratic Dialogues Using Role-Play Techniques": 1 + "Philosophy: Analyzing Ethical Concepts Through Socratic Dialogues with AR/VR Technology": 1 + "Philosophy: Expanding Ethical Concepts Through Socratic Dialogues and Critical Thinking Exercises": 1 + "Philosophy: Interpreting Ethical Concepts Through Socratic Dialogues Utilizing AI Chatbots": 1 + "Philosophy: Dissecting Ethical Concepts Through Socratic Dialogues Using the Euthyphro Dilemma": 1 + "Philosophy: Investigating Ethical Concepts Through Socratic Dialogues and Semantic Analysis Tools": 1 + "Philosophy: Understanding Ethical Concepts Through Socratic Dialogues with the Aid of Concept Mapping": 1 + "Philosophy: Unpacking Ethical Concepts Through Socratic Dialogues Using the Socratic Method and Plato's Cave Allegory": 1 + "Philosophy: Decoding Ethical Concepts Through Socratic Dialogues Integrating Virtual Reality Simulations": 1 + "Philosophy: Delving into Ethical Concepts Through Socratic Dialogues Using the Tool of Logical Fallacies.": 1 + "The Art of Impasto: Exploring the Techniques and History of Textured Painting with Palette Knives": 1 + "Mastering Impasto: An In-depth Study of Textured Painting Using Acrylic Mediums": 1 + "The Art of Impasto: Techniques and History of Textured Painting using the Trowel Tool": 1 + "Unraveling the Art of Impasto: Delving into Textured Painting through Layering Techniques": 1 + "The Craft of Impasto: Exploring Textured Painting Techniques with Oil Paints": 1 + "The Art of Impasto: An Exploration of Textured Painting Techniques Using a Painting Knife": 1 + "Impasto Mastery: The Techniques and History of Textured Painting with Glazing Techniques": 1 + "The Art of Impasto: Understanding Textured Painting through the Lens of Gesso Priming": 1 + "The Art of Impasto: Techniques and History of Textured Painting Using a Mixture of Oil and Wax": 1 + "The Art of Impasto: A Comprehensive Study of Textured Painting with Silicone Molds.": 1 + "Blockchain Technology & Smart Contracts: A Strategy to Counterbalance E-commerce Impact on Gym Club Finances - Approach 1": 1 + "Utilizing Blockchain & Decentralized Finance (DeFi) to Secure Gym Club Finances against E-commerce Threats - Approach 2": 1 + "Blockchain, Cryptocurrency & Gym Club Finances: Resisting E-commerce Platforms - Approach 3": 1 + "Implementing Blockchain & Distributed Ledger Technology (DLT) for Financial Stability of Gym Clubs in E-commerce Era - Approach 4": 1 + "Blockchain-Powered Transparency: An Innovative Solution for E-commerce Impacts on Gym Club Finances - Approach 5": 1 + "Mitigating E-commerce Risks on Gym Club Finances: A Blockchain & Peer-to-Peer Transaction Approach - Approach 6": 1 + "Leveraging Blockchain & Internet of Things (IoT) for Innovative Gym Club Financial Solutions - Approach 7": 1 + "Blockchain, Big Data & AI: A Triad Approach to Shield Gym Club Finances from E-commerce Platforms - Approach 8": 1 + "Blockchain & Cybersecurity: Safeguarding Gym Club Finances from E-commerce Vulnerabilities - Approach 9": 1 + "Blockchain & Payment Gateway Integration: An Innovative Approach for Gym Club Financial Sustainability - Approach 10": 1 + "Advanced Probability & Statistics: Unraveling Chance with Random Variables in SAS using Machine Learning Algorithms and Python": 1 + "In-depth Study on Probability & Statistics: Using Random Variables in SAS and RStudio with Machine Learning Algorithms": 1 + "Probability & Statistics: Understanding Chance with Random Variables in SAS using Machine Learning Algorithms and Decision Trees": 1 + "Probability & Statistics: Exploring Chance with Random Variables in SAS using Machine Learning Algorithms and TensorFlow": 1 + "Probability & Statistics: Demystifying Chance with Random Variables in SAS using Machine Learning Algorithms and Neural Networks": 1 + "Probability & Statistics: Decoding Chance with Random Variables in SAS using Machine Learning Algorithms and Support Vector Machines": 1 + "Advanced Probability & Statistics: Analysis of Chance with Random Variables in SAS using Machine Learning Algorithms and Deep Learning": 1 + "Probability & Statistics: Unveiling Chance with Random Variables in SAS using Machine Learning Algorithms and the Monte Carlo Method": 1 + "Probability & Statistics: Unraveling Chance with Random Variables in SAS using Machine Learning Algorithms and Logistic Regression": 1 + "Probability & Statistics: Unlocking Chance with Random Variables in SAS using Machine Learning Algorithms and Bayesian Networks": 1 + "Exploring Athletics: An In-depth Analysis of 100m Dash Statistics Using Excel, SAS, Python and Power BI": 1 + "In-depth Analysis of Long Jump Statistics using Excel, SAS, Python, and Tableau in Exploring Athletics": 1 + "The Use of Excel, SAS, Python, and R Programming in Analyzing Hurdle Race Statistics: An Athletics Exploration": 1 + "Exploring Athletics: An Advanced Study of Javelin Throw Statistics Using Excel, SAS, Python, and SPSS": 1 + "Discus Throw Statistics: A Comprehensive Analysis Using Excel, SAS, Python, and Machine Learning": 1 + "Exploring Athletics: An In-depth Analysis of Pole Vault Statistics Using Excel, SAS, Python, and Data Mining Techniques": 1 + "Shot Put Statistics: A Detailed Examination Using Excel, SAS, Python, and Big Data Analytics": 1 + "Exploring Athletics: An In-depth Analysis of High Jump Statistics Using Excel, SAS, Python, and Predictive Modeling": 1 + "Triple Jump Statistics: A Thorough Review Using Excel, SAS, Python, and Cloud Computing": 1 + "An Investigation of Hammer Throw Statistics: Utilizing Excel, SAS, Python, and Neural Networks in Athletics Exploration": 1 + "Exploring Underglaze Techniques in Pottery and Ceramics using Stencils and Slip Trailing Tools ": 1 + "Mastering Underglaze Techniques: A Deep Dive into Stencils and Wax Resist in Pottery and Ceramics ": 1 + "Advanced Underglaze Techniques: Stencils, Sgraffito, and More in Pottery and Ceramics ": 1 + "Underglaze Techniques in Pottery and Ceramics: An In-depth Study on Stencils and Sponging ": 1 + "Pottery and Ceramics: Mastering Underglaze Techniques with Stencils and Brushwork ": 1 + "Understanding Underglaze Techniques: Stencils, Throwing Wheel, and More in Pottery and Ceramics ": 1 + "Artistic Pottery and Ceramics: Unleashing Creativity with Underglaze Techniques, Stencils, and Slip Casting ": 1 + "Expanding Underglaze Techniques: A Course on Stencils, Banding Wheel, and More in Pottery and Ceramics ": 1 + "Pottery and Ceramics: An Examination of Underglaze Techniques using Stencils and Airbrushes ": 1 + "The Art of Underglaze Techniques: Exploring Stencils and Coiling in Pottery and Ceramics": 1 + "Science: The Role of Litmus Paper in Measuring pH for Cooking and Baking Chemistry": 1 + "Science: Utilizing pH Meters in Cooking and Baking Chemistry": 1 + "Science: The Impact of pH on the Maillard Reaction in Cooking and Baking Chemistry": 1 + "Science: The Importance of pH and Alkalinity in Dough Rise for Baking Chemistry": 1 + "Science: The Concept of Buffer Solutions in Cooking and Baking Chemistry": 1 + "Science: pH and Its Impact on Caramelization in Baking Chemistry": 1 + "Science: Understanding Acid-Base Reactions in Cooking and Baking Chemistry through pH": 1 + "Science: The Role of pH in Enzyme Activity during Cooking and Baking Chemistry": 1 + "Science: The Importance of pH in Fermentation Processes in Cooking and Baking Chemistry": 1 + "Science: Exploring the Role of pH in Protein Denaturation in Cooking and Baking Chemistry": 1 + "Acoustic Resonance: A Comprehensive Study of Sound Waves using Decibel Meters and Oscilloscopes": 1 + "Acoustic Resonance: Advancing Sound Wave Analysis through Decibel Meters and Fourier Transforms": 1 + "Acoustic Resonance: Investigating Sound Waves with Decibel Meters and Spectral Analysis": 1 + "Acoustic Resonance: Exploring Sound Waves using Decibel Meters and Interference Patterns": 1 + "Acoustic Resonance: In-depth Examination of Sound Waves via Decibel Meters and Waveform Monitors": 1 + "Acoustic Resonance: A Detailed Study of Sound Waves using Decibel Meters and Resonance Chambers": 1 + "Acoustic Resonance: Understanding Sound Waves through Decibel Meters and Signal Generators": 1 + "Acoustic Resonance: An Extensive Course on Sound Waves using Decibel Meters and Frequency Modulators": 1 + "Acoustic Resonance: Mastering Sound Wave Science using Decibel Meters and Sound Level Calibrators": 1 + "Acoustic Resonance: A Thorough Exploration of Sound Waves with Decibel Meters and Waveform Generators": 1 + "Art Creation: Exploring Impressionism with Acrylics & Palette Knife Tinting Techniques": 1 + "Mastering Impressionism: Acrylics, Tinting & The Art of Using Painting Knives": 1 + "Creative Journey: Impressionism with Acrylics & Tinting Techniques using a Fan Brush": 1 + "Artistic Exploration: Impressionism with Acrylics & Tinting Techniques using a Filbert Brush": 1 + "Impressionism Unleashed: Acrylics, Tinting & Understanding the Munsell Color System": 1 + "Journey into Impressionism: Acrylics, Tinting Techniques & Exploring the Use of Mediums": 1 + "Art Creation: Embracing Impressionism with Acrylics, Tinting Techniques & Flat Brushes": 1 + "Discovering Impressionism: Acrylics, Tinting & The Magic of Round Brushes": 1 + "Impressionism & Beyond: Acrylics, Tinting Techniques & the Role of Underpainting ": 1 + "Artistic Journey: Impressionism with Acrylics, Tinting Techniques & Exploring Glazing Techniques": 1 + "Language Arts: A Study of Courage in War Literature - Utilizing Textual Analysis and Metaphor Recognition Techniques": 1 + "Language Arts: War Literature and Poems - Contextualizing Courage through Textual Analysis and Historical Frameworks": 1 + "Language Arts: Examination of Courage in War Stories - Textual Analysis using Semantic Networks": 1 + "Language Arts: Insight into Courage through War Literature - Applying Textual Analysis and Critical Theory": 1 + "Language Arts: War Literature - Exploration of Courage in War Stories and Poems using Textual Analysis and Discourse Analysis": 1 + "Language Arts: War Literature - Courage Deciphered in War Stories and Poems through Textual Analysis and Narratology": 1 + "Language Arts: War Literature - Courage Examination in Stories and Poems using Textual Analysis and Computational Linguistics": 1 + "Language Arts: War Literature - The Essence of Courage in War Stories and Poems Unveiled through Textual Analysis and Stylistics": 1 + "Language Arts: War Literature - Discovery of Courage in War Stories and Poems using Textual Analysis and Corpus Linguistics": 1 + "Language Arts: War Literature - Unfolding the Notions of Courage in War Stories and Poems via Textual Analysis and Cognitive Poetics.": 1 + "Utilizing Dartfish Video Analysis Tool in Enhancing Team Sports and Volleyball Techniques: A Comprehensive Study of 10 Different Implementation Strategies": 1 + "Examining the Efficiency of Siliconcoach and Sportscode Gamebreaker Software in Volleyball Training: The Role of Kinovea in Technique Improvement": 1 + "Impacting Team Sports and Volleyball Techniques: A Critical Analysis of Siliconcoach, Sportscode Gamebreaker, and Nacsport Software": 1 + "Maximizing Volleyball Performance: An Investigation into Siliconcoach, Sportscode Gamebreaker and LongoMatch Pro Video Analysis Software": 1 + "Enhancing Volleyball Techniques with Siliconcoach and Sportscode Gamebreaker Software: Integrating Coach Paint for Effective Strategy Analysis": 1 + "A Detailed Study on Siliconcoach and Sportscode Gamebreaker Software: The Impact of KlipDraw Animate on Volleyball Techniques": 1 + "Exploring the Fusion of Siliconcoach, Sportscode Gamebreaker and Focus X2 Software in Volleyball: 10 Innovative Approaches": 1 + "The Role of Siliconcoach, Sportscode Gamebreaker, and Catapult Video Analysis Software in Volleyball Performance Enhancement": 1 + "Improving Volleyball Performance: Understanding the Synergy between Siliconcoach, Sportscode Gamebreaker, and InStat Scout Video Analysis Tools": 1 + "A Comprehensive Analysis of Siliconcoach, Sportscode Gamebreaker and Wyscout Software for Effective Volleyball Techniques: 10 Unique Approaches": 1 + "Computer Science: Utilizing Hadoop and Python in Big Data Analysis to Study Soil Pollution Dynamics": 1 + "Advanced Data Analysis: Using Hadoop and Hive for Large-Scale Soil Pollution Studies ": 1 + "Soil Pollution Research: Leveraging Hadoop and Spark in Big Data Analysis": 1 + "Big Data Techniques: Using Hadoop and MapReduce for Soil Pollution Impact Analysis": 1 + "Soil Pollution and Data Science: Using Hadoop and Pig in Big Data Analysis": 1 + "Environmental Science and Big Data: Hadoop and NoSQL Application in Soil Pollution Studies": 1 + "Data Science in Geology: Hadoop and Java for Soil Pollution Analysis": 1 + "Computer Science: Hadoop and R Programming in Big Data Analysis for Soil Pollution": 1 + "Big Data in Environmental Studies: Using Hadoop and Sqoop for Soil Pollution Analysis": 1 + "Advanced Soil Pollution Analysis: Using Hadoop and HBase in Big Data Techniques.": 1 + "Physics: Exploring Thermodynamics through Statistical Mechanics: A Focus on Thermographic Imaging using Infrared Cameras": 1 + "Physics: Analysis of Thermodynamics via Statistical Mechanics: An Emphasis on Thermographic Imaging with FLIR Systems": 1 + "Physics: Thermodynamics Study using Statistical Mechanics: A Detailed Look at Thermographic Imaging with Thermal Drones": 1 + "Physics: Thermodynamics Examination via Statistical Mechanics: A Concentration on Thermographic Imaging with Seek Thermal Cameras": 1 + "Physics: Delving into Thermodynamics using Statistical Mechanics: A Spotlight on Thermographic Imaging with Microbolometer Technology": 1 + "Physics: Thermodynamics Inspection through Statistical Mechanics: The Role of Thermographic Imaging with Infrared Thermometers": 1 + "Physics: Thermodynamics Investigation via Statistical Mechanics: An Emphasis on Thermographic Imaging with Pyrometric Cone Techniques": 1 + "Physics: Thermodynamics Scrutiny through Statistical Mechanics: An Emphasis on Thermographic Imaging with Thermocouple Probes": 1 + "Physics: Comprehending Thermodynamics using Statistical Mechanics: An Overview of Thermographic Imaging with Heat Vision Technology": 1 + "Physics: Understanding Thermodynamics through Statistical Mechanics: An Emphasis on Thermographic Imaging using Radiometric Thermal Cameras.": 1 + "Advanced Music: Harmony Exploration with Logic Pro X and MIDI Controllers": 1 + "Advanced Composition using Logic Pro X and Auto-Tune Technology": 1 + "Mastering Harmony with Logic Pro X and Melodyne": 1 + "Exploring Music Composition through Logic Pro X and Sibelius Notation ": 1 + "Advanced Techniques in Music Composition: Logic Pro X and Ableton Live": 1 + "Understanding Harmony with Logic Pro X and Virtual Instruments ": 1 + "Advanced Music: Composition Analysis using Logic Pro X and Pro Tools": 1 + "Music Creation: Exploring Harmony with Logic Pro X and Izotope Ozone": 1 + "Advanced Music: Exploring Harmony and Composition through Logic Pro X and Spectrasonics Omnisphere": 1 + "Logic Pro X Masterclass: Advanced Music Composition using Serum Synthesizer.": 1 + "Python Machine Learning: A Deep Dive into Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and Pandas": 1 + "Python Machine Learning: Practical Approach to Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and Matplotlib": 1 + "Python Machine Learning: Applying Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and NumPy": 1 + "Python Machine Learning: Hands-On with Hierarchical Clustering Algorithms using SciPy, Jupyter Notebooks, and TensorFlow": 1 + "Python Machine Learning: Exploring Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks and Seaborn": 1 + "Python Machine Learning: Advanced Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and Keras": 1 + "Python Machine Learning: Practical Approach to Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and Scikit-Learn": 1 + "Python Machine Learning: Understanding Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and PyTorch": 1 + "Python Machine Learning: Implementing Hierarchical Clustering Algorithms with SciPy, Jupyter Notebooks, and Django": 1 + "Python Machine Learning: In-depth Analysis of Hierarchical Clustering Algorithms using SciPy, Jupyter Notebooks, and Flask": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and Pandas for Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Utilizing Python, Numpy and Matplotlib for Visualizing Multivariate Models": 1 + "Advanced Statistical Analysis in Environmental Research: Incorporating Python, Numpy and Jupyter Notebook for Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and SciPy for Optimal Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and Seaborn for Interactive Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and TensorFlow for Predictive Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and Scikit-learn for Machine Learning Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and Anaconda for Efficient Multivariate Modeling": 1 + "Practical Statistical Analysis in Environmental Research: Python, Numpy and PyCharm for Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy and PIP for Customizing Multivariate Modeling": 1 + "Applying SPSS in Evaluating Structural-Functionalism's Impact on Baseball's Cultural Importance: A Social Studies Perspective": 1 + "Utilizing Qualitative Analysis to Assess Structural-Functionalism's Influence on Soccer's Cultural Significance: A Social Studies Angle": 1 + "Evaluation of Structural-Functionalism's Effect on Traditional American Football using ANOVA: A Social Studies Viewpoint": 1 + "Using Ethnography to Analyze Structural-Functionalism's Influence on Rugby's Cultural Importance: A Social Studies Perspective": 1 + "Application of Factor Analysis in Evaluating Structural-Functionalism's Impact on Cricket's Cultural Significance: A Social Studies Insight": 1 + "Utilizing Grounded Theory to Assess Structural-Functionalism's Influence on Basketball's Cultural Importance: A Social Studies Standpoint": 1 + "Evaluation of Structural-Functionalism's Effect on Traditional Golf using Correlation Analysis: A Social Studies Perspective": 1 + "Using NVivo in Analyzing Structural-Functionalism's Influence on Tennis' Cultural Importance: A Social Studies View": 1 + "Application of Principal Component Analysis in Evaluating Structural-Functionalism's Impact on Volleyball's Cultural Significance: A Social Studies Perspective": 1 + "Utilizing Discourse Analysis to Assess Structural-Functionalism's Influence on Traditional Ice Hockey's Cultural Importance: A Social Studies Reflection.": 1 + "Philosophy: Analyzing the Impact of Pythagoras Theorem on Algorithmic Complexity in Modern Computing": 1 + "Philosophy: Understanding the Influence of Pythagoras Theorem on Cryptographic Techniques in Cybersecurity": 1 + "Philosophy: Tracing the Footprints of Pythagoras Theorem in Quantum Computing Models": 1 + "Philosophy: Deciphering the Role of Pythagoras Theorem in 3D Modeling and Computer Graphics Design": 1 + "Philosophy: Evaluating the Contribution of Pythagoras Theorem to GPS and Satellite Navigation": 1 + "Philosophy: Exploring the Pythagoras Theorem's Influence on Machine Learning Algorithms": 1 + "Philosophy: The Influence of Pythagoras Theorem on Digital Signal Processing Techniques": 1 + "Philosophy: Impact of Pythagoras Theorem on Modern Data Compression Algorithms": 1 + "Philosophy: Pythagoras Theorem and its Significant Role in Image Processing Technologies": 1 + "Philosophy: The Application of Pythagoras Theorem in the Development of Computer Aided Design (CAD) Tools.": 1 + "FL Studio and its Role in Digital Audio Workstations: An In-depth Look at Mixer Tracks": 1 + "Harnessing the Power of Piano Roll in FL Studio: A Comprehensive Guide": 1 + "The Role of Automation Clips in FL Studio: Mastering Digital Audio Workstations": 1 + "Exploring FL Studio's Playlist Window: The Core of Digital Audio Workstations": 1 + "Mastering the Fruity Loops' Sampler: FL Studio's Key in Digital Audio Workstations": 1 + "The Channel Rack in FL Studio: A Revolutionary Tool in Digital Audio Workstations": 1 + "FL Studio and its Role in Digital Audio Workstations: Understanding the Plug-In Picker": 1 + "The Power of FL Studio's Browser: Navigating Digital Audio Workstations": 1 + "Decoding FL Studio's Step Sequencer: A Vital Tool in Digital Audio Workstations": 1 + "FL Studio and its Role in Digital Audio Workstations: A Deep Dive into the Vocoder.": 1 + "Neuroscience: The Impact of Nature on Cognitive Function Through Functional Magnetic Resonance Imaging (fMRI)": 1 + "Neuroscience: Evaluating Nature's Role in Cognitive Function Using Electroencephalography (EEG)": 1 + "Neuroscience: Positron Emission Tomography (PET) and the Nature-Cognition Connection ": 1 + "Neuroscience: Nature's Influence on Cognitive Function - A Transcranial Magnetic Stimulation (TMS) Perspective ": 1 + "Neuroscience: The Role of Nature in Cognitive Function - Insights from Neuroimaging ": 1 + "Neuroscience: Cognitive Function and Nature - An Exploration Through Neural Networks ": 1 + "Neuroscience: Decoding Nature's Impact on Cognitive Function with Artificial Intelligence ": 1 + "Neuroscience: Using Deep Learning to Understand the Impact of Nature on Cognitive Function ": 1 + "Neuroscience: The Impact of Nature on Cognitive Function - A Study Using Computational Neuroscience ": 1 + "Neuroscience: Nature and Cognitive Function - Unraveling the Connection Through Brain-Computer Interfaces": 1 + "Mathematics: Implementing Financial Ratios for Profit and Expense Analysis in Business Using Excel": 1 + "Mathematics: Utilizing QuickBooks for Financial Ratios in Profit and Expense Analysis": 1 + "Mathematics: Application of Python in Business for Profit and Expense Analysis Through Financial Ratios": 1 + "Mathematics: Profit and Expense Analysis with Financial Ratios: A Deep Dive into SAP": 1 + "Mathematics: Implementing Financial Ratios for Profit and Expense Analysis in Business Using Tableau ": 1 + "Mathematics: Leveraging Microsoft Power BI for Financial Ratios Analysis in Profit and Expense ": 1 + "Mathematics: Google Sheets in Financial Ratios for Profit and Expense Analysis": 1 + "Mathematics: Profit and Expense Analysis in Business Using Financial Ratios and Oracle Business Intelligence": 1 + "Mathematics: Business Profit and Expense Analysis with R: A Financial Ratios Approach": 1 + "Mathematics: Implementing Financial Ratios for Profit and Expense Analysis in Business with MATLAB.": 1 + "Music: Sound Design in Multimedia using Pro Tools": 1 + "Music: Sound Design in Multimedia - A Focus on Adobe Audition": 1 + "Music: Sound Design in Multimedia with Ableton Live": 1 + "Music: Sound Design in Multimedia - Exploring Logic Pro X": 1 + "Music: Sound Design in Multimedia - Utilizing Dolby Atmos": 1 + "Music: Sound Design in Multimedia - Introduction to MIDI": 1 + "Music: Sound Design in Multimedia - Mastering FL Studio": 1 + "Music: Sound Design in Multimedia - A Study on Digital Audio Workstations": 1 + "Music: Sound Design in Multimedia - Learning Cubase": 1 + "Music: Sound Design in Multimedia - Understanding Synthesis with Serum": 1 + "Microbiology 101: Harnessing Polymerase Chain Reaction in Genetic Engineering and CRISPR-Cas9 with DNA Sequencing": 1 + "Microbiology 101: Unveiling the Role of Bioinformatics in Genetic Engineering and CRISPR-Cas9 with DNA Sequencing": 1 + "Microbiology 101: A Deep Dive into Gel Electrophoresis in Genetic Engineering and DNA Sequencing with CRISPR-Cas9": 1 + "Microbiology 101: Exploring Genetic Engineering and CRISPR-Cas9 with Next-Generation DNA Sequencing": 1 + "Microbiology 101: Understanding the Use of Restriction Enzymes in Genetic Engineering with CRISPR-Cas9 and DNA Sequencing": 1 + "Microbiology 101: A Study on the Use of Cloning Vectors in Genetic Engineering and DNA Sequencing with CRISPR-Cas9": 1 + "Microbiology 101: Exploring Genetic Engineering and CRISPR-Cas9 with DNA Microarrays in Sequencing": 1 + "Microbiology 101: The Role of Plasmids in Genetic Engineering and CRISPR-Cas9 with DNA Sequencing": 1 + "Microbiology 101: Integrating the Ligase Chain Reaction in Genetic Engineering and CRISPR-Cas9 with DNA Sequencing": 1 + "Microbiology 101: Exploring Genetic Engineering and CRISPR-Cas9 with Pyrosequencing in DNA Analysis": 1 + "History 201: The Impact of the Printing Press on Scientific Discoveries": 1 + "History 201: The Influence of the Microscope on Scientific Breakthroughs": 1 + "History 201: The Role of the Telescope in the Evolution of Science": 1 + "History 201: The Impact of Atomic Theory on Scientific Progress": 1 + "History 201: The Contribution of DNA Sequencing to Scientific Discoveries": 1 + "History 201: The Impact of Quantum Mechanics on Scientific Understanding": 1 + "History 201: The Influence of the Steam Engine on Scientific Developments": 1 + "History 201: The Role of Vaccination in Shaping Scientific Discoveries": 1 + "History 201: The Impact of the Periodic Table on Scientific Innovations": 1 + "History 201: The Influence of Computer Science on Scientific Discoveries": 1 + "Elementary Physics: The Magic of Gravity and Newton's Laws": 1 + "Elementary Physics: Exploring Gravity with Pendulum Experiments": 1 + "Elementary Physics: Understanding Gravity Through Free Fall Experiments": 1 + "Elementary Physics: The Magic of Gravity and Mass Measurement": 1 + "Elementary Physics: The Magic of Gravity - A Look into Gravitational Fields": 1 + "Elementary Physics: The Magic of Gravity - An Introduction to the Force of Attraction": 1 + "Elementary Physics: The Magic of Gravity - Understanding Geodesic Motion": 1 + "Elementary Physics: The Magic of Gravity - Unraveling the Mysteries of Tidal Forces": 1 + "Elementary Physics: The Magic of Gravity - A Study of Orbital Mechanics": 1 + "Elementary Physics: The Magic of Gravity - Dissecting the Theory of General Relativity": 1 + "Elementary Physics: The Magic of Gravity - A Deep Dive into Gravitational Waves": 1 + "Exploring the Influence of Blue Light Emission on Human Sleep Patterns": 1 + "The Impact of LED Lighting on Human Sleep Cycles: A Comprehensive Study": 1 + "Health: The Role of Smart Lighting in Regulating Human Sleep Patterns": 1 + "Digital Screens and Their Impact on Human Sleep: A Deep Dive into Light Spectrum": 1 + "Analyzing the Influence of Light Therapy on Human Circadian Rhythms": 1 + "The Effect of Night Shift Mode on Smart Devices on Human Sleep Patterns": 1 + "Health: Utilizing Polarized Sunglasses for Mitigating Light-Induced Sleep Disruptions": 1 + "The Impact of Light Pollution on Human Sleep Patterns: An In-depth Study": 1 + "Exploring the Role of Melatonin in Light-Induced Sleep Disorders": 1 + "The Application of Virtual Reality in Studying Light's Impact on Sleep": 1 + "Analysis of Brushwork in Gouache Art with Flat Brushes: Exploring Shapes, Lines, and Colors": 1 + "In-Depth Study of Brushwork in Gouache Art Using Palette Knives: Understanding Shapes, Lines, and Colors": 1 + "Exploring Gouache Art: An In-Depth Analysis of Brushwork through Wet-on-Dry Technique": 1 + "Exploring Shapes, Lines, and Colors: In-Depth Analysis of Gouache Art Using Layering Technique": 1 + "In-Depth Analysis of Brushwork in Gouache Art: An Exploration of Shapes, Lines, and Colors with Fan Brushes": 1 + "Gouache Art Explored: In-Depth Analysis of Brushwork Using Wash Technique and its Effect on Shapes, Lines, and Colors": 1 + "In-Depth Analysis of Brushwork in Gouache Art with Round Brushes: A Detailed Study of Shapes, Lines, and Colors": 1 + "Exploring Gouache Art: An Analysis of Brushwork Using the Dry Brush Technique for Shapes, Lines, and Colors": 1 + "In-Depth Analysis of Gouache Art Using Pointillism: Exploring Brushwork, Shapes, Lines, and Colors": 1 + "Gouache Art and the Filbert Brush: An In-Depth Analysis of Brushstroke, Shapes, Lines, and Colors.": 1 + "Computer Science: Exploring Game Development with Scratch, Java, Unity3D and Python for AI Integration": 1 + "Computer Science: Utilizing HTML5 in Game Development with Scratch, Java, and Unity3D": 1 + "Computer Science: Game Development with Scratch, Java, Unity3D and Unreal Engine 4": 1 + "Computer Science: Exploring Game Development with Scratch, Java, Unity3D and C# for Microsoft's XNA": 1 + "Computer Science: Integrating Physics Engines in Game Development with Scratch, Java, and Unity3D": 1 + "Computer Science: Game Development with Scratch, Java, Unity3D and Blockchain Technology": 1 + "Computer Science: Exploring Game Development with Scratch, Java, Unity3D and Augmented Reality": 1 + "Computer Science: Vertex Shaders in Game Development with Scratch, Java, and Unity3D": 1 + "Computer Science: Game Development with Scratch, Java, Unity3D and WebGL for Browser-Based Games": 1 + "Computer Science: Exploring Game Development with Scratch, Java, Unity3D and DirectX for Windows Gaming.": 1 + "Exploring Mathematics: Understanding Geometry through Sports Using Pythagorean Theorem": 1 + "The Role of Vector Calculations in Sports: A Geometry Exploration": 1 + "Geometry in Motion: Understanding Sports Trajectories using Quadratic Equations": 1 + "Exploring Mathematics: The Influence of Parabolic Motion in Sports": 1 + "Understanding Geometry through Sports: Applications of Trigonometry": 1 + "Geometry in Sports: An Exploration Using Computer Simulations": 1 + "Comprehending Sports Geometry through the Lens of Euclidean Space": 1 + "Exploring Mathematics: Understanding Sports Strategy Through Geometry and Graph Theory": 1 + "The Intersection of Sports and Geometry: A Study Using Autocad": 1 + "Geometry and Sports: Utilizing 3D Modeling Tools for Better Understanding.": 1 + "Elementary Robotics: Understanding Python Programming and Data Structures using Raspberry Pi and Arduino": 1 + "Raspberry Pi Programming: Exploring Data Structures in Elementary Robotics with Java": 1 + "Elementary Robotics: Mastering C++ Programming and Data Structures using Raspberry Pi and LEGO Mindstorms": 1 + "Understanding Data Structures: Elementary Robotics Programming using Raspberry Pi and Blockly": 1 + "Elementary Robotics: The study of Programming and Data Structures using Raspberry Pi and Scratch": 1 + "Raspberry Pi and Makeblock: An Introduction to Data Structures and Elementary Robotics Programming": 1 + "Elementary Robotics: Digging Deeper into JavaScript Programming and Data Structures using Raspberry Pi": 1 + "Raspberry Pi and VEX Robotics: An Elementary Guide to Understanding Programming and Data Structures": 1 + "Programming and Data Structures for Elementary Robotics: A Comprehensive Guide using Raspberry Pi and Node-RED": 1 + "Elementary Robotics: Developing Skills in Swift Programming and Data Structures using Raspberry Pi.": 1 + "Advanced Chemical Bonding Analysis using Quantum ESPRESSO and ADF Software in Chemistry: Basic Principles": 1 + "Crystallographic Analysis using X-ray Crystallography and Schrodinger Suite in Basic Chemistry Principles": 1 + "Basic Principles of Chemistry: An In-depth Study of Chemical Bonding using ADF Software and Quantum Mechanics": 1 + "Chemistry: Understanding Chemical Bonding through ADF Software and X-ray Crystallography with a Focus on the Pauli Exclusion Principle": 1 + "Computational Chemistry: Basic Principles and Analysis of Chemical Bonding using ADF Software, X-ray Crystallography, and Gaussian Software": 1 + "Chemistry: Basic Principles, Chemical Bonding Analysis using ADF Software, X-ray Crystallography, and Molecular Orbital Theory": 1 + "Understanding Chemistry through Basic Principles: Chemical Bonding Analysis using ADF Software, X-ray Crystallography, and Density Functional Theory": 1 + "Basic Principles of Chemistry: A Comprehensive Study using ADF Software, X-ray Crystallography, and NMR Spectroscopy": 1 + "Chemistry: Basic Principles and Advanced Chemical Bonding Analysis using ADF Software, X-ray Crystallography, and VASP": 1 + "In-depth Study of Chemical Bonding in Chemistry using ADF Software, X-ray Crystallography, and the Concept of Hybridization.": 1 + "Physical Education: Pommel Horse Mastery with Hand Grips in Gymnastics and Body Control": 1 + "Physical Education: Balance Beam Techniques and Pommel Horse Mastery in Gymnastics": 1 + "Physical Education: Pommel Horse Mastery with In-depth Study of Gymnastic Leotards and Body Control": 1 + "Physical Education: Use of Springboard in Pommel Horse Mastery and Gymnastics": 1 + "Physical Education: Pommel Horse Mastery in Gymnastics with Focus on Spotting Techniques": 1 + "Physical Education: Pommel Horse Mastery and Body Control using Gymnastic Mats": 1 + "Physical Education: Pommel Horse Mastery with Introduction to Chalk in Gymnastics and Body Control": 1 + "Physical Education: Pommel Horse Mastery in Gymnastics with Special Emphasis on Vaulting Techniques": 1 + "Physical Education: Pommel Horse Mastery in Gymnastics and Body Control using Foam Pit Training": 1 + "Physical Education: Pommel Horse Mastery in Gymnastics and Body Control with Gymnastic Rings Techniques": 1 + "Excel in Logic: Mastering Elementary Logic through Truth Tables, Venn Diagrams, Macros and Logical Connectives": 1 + "Truth Tables Unveiled: Enhancing Logical Understanding through Macros and Boolean Algebra ": 1 + "Excel in Logic: A Deep Dive into Propositional Logic with Truth Tables, Macros, and Logical Connectives": 1 + "Logical Mastery: Exploring Elementary Logic through Truth Tables, Macros, Python Programming, and Logical Connectives": 1 + "The Art of Logic: Detailed Study of Elementary Logic through Truth Tables, Macros, Logical Gates, and Connectives": 1 + "Unlocking Logic: A Comprehensive Guide to Elementary Logic, Truth Tables, Macros, SQL, and Logical Connectives": 1 + "Decoding Logic: Understanding Elementary Logic through Truth Tables, Macros, Quantum Logic, and Logical Connectives": 1 + "Excel in Logic: An In-depth Study of Elementary Logic through Truth Tables, Macros, MATLAB, and Logical Connectives ": 1 + "Practical Logic: Exploring Elementary Logic with Truth Tables, Macros, Logic Puzzles, and Logical Connectives ": 1 + "Logic in Action: Mastering Elementary Logic through Truth Tables, Macros, Predicate Logic, and Logical Connectives.": 1 + "Elementary Computing 110: Understanding Heaps in Go Language using Visual Studio Code": 1 + "Elementary Computing 110: Implementing Binary Heaps in Go Language": 1 + "Elementary Computing 110: Understanding Heaps in Go Language with JetBrains GoLand": 1 + "Elementary Computing 110: Memory Management - Heaps in Go Language": 1 + "Elementary Computing 110: Understanding Heaps in Go Language using Docker": 1 + "Elementary Computing 110: A Deep Dive into Heap Data Structures in Go Language": 1 + "Elementary Computing 110: Understanding Heaps in Go Language through GitHub Collaboration": 1 + "Elementary Computing 110: Heap Algorithms in Go Language using Git Version Control": 1 + "Elementary Computing 110: Understanding and Visualizing Heaps in Go Language with Golang Playground": 1 + "Elementary Computing 110: Understanding Priority Queues and Heaps in Go Language.": 1 + "Biology of Hearing: A Comprehensive Study on the Evolution of Auditory Systems with Audiometry and the Role of Cochlear Implants": 1 + "Exploring the Evolution of Auditory Systems: A Detailed Analysis Using Audiometry and Auditory Brainstem Response": 1 + "Biology of Hearing: A Study on the Evolution of Auditory Systems with Audiometry and Otoscopy": 1 + "Evolution of Auditory Systems: A Deep Dive Using Audiometry and the Concept of Psychoacoustics": 1 + "Biology of Hearing: An In-depth Study on Auditory System Evolution with Audiometry and the Use of Otoacoustic Emissions": 1 + "Biology of Hearing: Analyzing the Evolution of Auditory Systems with Audiometry and Pure Tone Testing": 1 + "Evolution of Auditory Systems: A Comprehensive Study Using Audiometry and Real Ear Measurement": 1 + "Biology of Hearing: The Evolution of Auditory Systems Explored with Audiometry and Speech Audiometry": 1 + "An In-depth Analysis of the Evolution of Auditory Systems: The Role of Audiometry and Tympanometry": 1 + "Biology of Hearing: A Focus on the Evolution of Auditory Systems Using Audiometry and Speech Perception Testing": 1 + "English Literacy: Enhancing Visual Storytelling through iMovie, Powerpoint, Microsoft Word, and Adobe Photoshop": 1 + "English Literacy: Using iMovie, Powerpoint, Microsoft Word, and Interactive PDFs for Visual Storytelling": 1 + "English Literacy: Incorporating iMovie, Powerpoint, Microsoft Word, and Google Slides in Visual Storytelling": 1 + "English Literacy: Visual Storytelling with iMovie, Powerpoint, Microsoft Word, and Digital Animation Techniques": 1 + "English Literacy: Utilizing iMovie, Powerpoint, Microsoft Word, and Canva for Holistic Visual Storytelling": 1 + "English Literacy: iMovie, Powerpoint, Microsoft Word, and Social Media as Tools for Visual Storytelling": 1 + "English Literacy: Visual Storytelling with iMovie, Powerpoint, Microsoft Word, and 3D Modeling Software": 1 + "English Literacy: Leveraging iMovie, Powerpoint, Microsoft Word, and Augmented Reality for Visual Storytelling": 1 + "English Literacy: Visual Storytelling with iMovie, Powerpoint, Microsoft Word, and Virtual Reality Technology": 1 + "English Literacy: Exploring Visual Storytelling through iMovie, Powerpoint, Microsoft Word, and Graphic Design Principles.": 1 + "From Charcoal to Biofuel: The Evolution of Organic Waste Recycling over the Centuries with Emphasis on Anaerobic Digestion ": 1 + "A Detailed Study of Organic Waste Recycling Evolution: The Impact of Composting Over the Centuries ": 1 + "Charcoal to Biofuel: Revealing the Role of Pyrolysis in Organic Waste Recycling Evolution": 1 + "Organic Waste Recycling through the Ages: The Centuries-long Impact of Landfill Gas Recovery ": 1 + "From Charcoal to Biofuel: Unveiling the Role of Thermal Conversion in the Evolution of Organic Waste Recycling ": 1 + "The Journey from Charcoal to Biofuel: A Deep Dive into the Evolution of Vermiculture in Organic Waste Recycling": 1 + "Organic Waste Recycling Evolution: The Centuries-long Journey with a Focus on Incineration ": 1 + "Charcoal to Biofuel: The Evolution of Organic Waste Recycling and the Influence of Gasification ": 1 + "From Charcoal to Biofuel: The Evolution of Organic Waste Recycling Highlighting the Role of Mechanical Biological Treatment ": 1 + "Organic Waste Recycling through the Centuries: The Impact and Evolution of In-Vessel Composting Technology.": 1 + "Science: The Chemistry of Cooking with Sous Vide Technology": 1 + "Science: The Chemistry of Cooking and the Role of Induction Cooktops": 1 + "Science: The Chemistry of Cooking: Understanding Molecular Gastronomy ": 1 + "Science: The Chemistry of Cooking with Pressure Cookers": 1 + "Science: The Chemistry of Cooking: The Science of Temperature Control": 1 + "Science: The Chemistry of Cooking: Exploring Fermentation Techniques": 1 + "Science: The Chemistry of Cooking: Emulsification and the Art of Mayonnaise": 1 + "Science: The Chemistry of Cooking: The Magic of Baking Soda": 1 + "Science: The Chemistry of Cooking: The Science Behind Vacuum Sealing": 1 + "Science: The Chemistry of Cooking: The Role of pH in Food Preparation": 1 + "Art: Exploring Basic Shapes and Colors through Watercolor Painting": 1 + "Art: Understanding Basic Shapes and Colors using Digital Design Software": 1 + "Art: An Exploration of Basic Shapes and Colors with Pastels": 1 + "Art: Discovering Basic Shapes and Colors through Acrylics": 1 + "Art: Studying Basic Shapes and Colors using Charcoal Sketching": 1 + "Art: Delving into Basic Shapes and Colors with Oil Paints": 1 + "Art: Mastering Basic Shapes and Colors using Collage Techniques": 1 + "Art: Interpreting Basic Shapes and Colors through Sculpture": 1 + "Art: Unveiling Basic Shapes and Colors with Mixed Media Art": 1 + "Art: Excavating Basic Shapes and Colors through Printmaking Techniques": 1 + "Brain Function Enhancement: Utilizing Electroencephalography in Transcranial Magnetic Stimulation with OpenVibe through BioSemi ActiveTwo System": 1 + "Advanced OpenVibe Techniques: Implementing EEG in TMS Studies using LabVIEW for Data Acquisition": 1 + "Neuroimaging Approaches: Integrating Electroencephalography and Transcranial Magnetic Stimulation with OpenVibe via MATLAB Analysis": 1 + "Exploring Brain Activity: Employing Electroencephalography in TMS Research with OpenVibe and Python Programming": 1 + "Detailed Brain Study: Implementing EEG in TMS using OpenVibe and the BrainVision Analyzer": 1 + "Cognitive Neuroscience: Applying EEG in TMS Experiments with OpenVibe through Brain Products' BrainAmp": 1 + "Neurophysiological Investigation: Implementing EEG in TMS using OpenVibe and Emotiv EPOC": 1 + "Brain Function Mapping: Utilizing EEG in TMS Research with OpenVibe and the BioSemi Data Management System": 1 + "Advanced Neurology Study: Incorporating EEG in TMS using OpenVibe and the g.tec g.USBamp": 1 + "Functional Brain Analysis: Implementing Electroencephalography in Transcranial Magnetic Stimulation with OpenVibe via E-Prime Stimulus Presentation Software.": 1 + "Elementary: Analyzing American Human Geography through Environmental Studies using Google Earth Satellite Imagery and Interactive Globe Models with Census Population Data Overlay.": 1 + "Elementary: Unraveling Asian Human Geography using GIS Technology in Environmental Studies with Satellite Imagery and Interactive Globe Models.": 1 + "Elementary: Exploring Human Geography through Environmental Impact Studies using Satellite Imagery, Interactive Globe Models, and ArcGIS Population Data Overlay.": 1 + "Elementary: Understanding African Human Geography through Environmental Studies using Nearmap Satellite Imagery and 3D Globe Models with Population Data Overlay.": 1 + "Elementary: Investigating European Human Geography using Drone Technology in Environmental Studies with Satellite Imagery and Interactive Globe Models.": 1 + "Elementary: Deconstructing South American Human Geography through Environmental Studies using Satellite Imagery, Google Maps, and Interactive Globe Models with Population Data.": 1 + "Elementary: Decoding Oceanian Human Geography using Remote Sensing in Environmental Studies with Satellite Imagery and Interactive Globe Models.": 1 + "Elementary: Interpreting Middle Eastern Human Geography through Environmental Studies using Satellite Imagery, Interactive Globe Models, and Tableau for Population Data Visualization.": 1 + "Elementary: Revealing North American Human Geography using LiDAR Technology in Environmental Studies with Satellite Imagery and Interactive Globe Models.": 1 + "Elementary: Unmasking Antarctic Human Geography through Environmental Studies using Satellite Imagery, Interactive Globe Models, and Python Programming for Population Data Analysis.": 1 + "Advanced GIS Tools: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "ArcGIS Applications: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "QGIS Software: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Remote Sensing Technology: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Lidar Technology: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Satellite Imagery: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Drone Mapping: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "GPS Technology: Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Python Programming for Digital Mapping of Biomes using Georeferencing Techniques": 1 + "Digital Elevation Model (DEM): Digital Mapping of Biomes using Georeferencing Techniques.": 1 + "The Art of Impasto: Mastering Textured Painting with Palette Knives and Gesso Priming": 1 + "Exploring Textured Painting: A Deep Dive into the Impasto Technique with Oil Paints and Gesso Priming": 1 + "Acrylics and Gesso: The Art of Textured Impasto Painting": 1 + "Brushwork in Impasto: Understanding Textured Painting through Gesso Priming ": 1 + "The Science of Impasto: Exploring Textured Painting with Gesso Priming and Infrared Imaging": 1 + "The Art of Impasto: Utilizing Digital Tools for Textured Painting with Gesso Priming": 1 + "Impasto Painting with Gesso Priming: A Case Study in Mixed Media Artistry": 1 + "Textured Painting in the Age of Technology: Understanding Impasto through Gesso Priming and Digital Rendering": 1 + "The Art of Impasto: Understanding Textured Painting through Gesso Priming and Canvas Preparation": 1 + "The Art of Impasto: Textured Painting and Gesso Priming with a Focus on Color Theory.": 1 + "Exploring Microscopy and DNA Sequencing: A Detailed Course on Cellular Life Cycle": 1 + "Bioinformatics Tools in Cellular Biology: A Comprehensive Course on Life Cycle and DNA Sequencing": 1 + "Decoding Life: A Course on Cellular Biology, DNA Sequencing and CRISPR Technology": 1 + "Life Under the Lens: Microscopy, Cellular Biology and DNA Sequencing": 1 + "PCR Technology and the Cellular Life Cycle: A Comprehensive Course on DNA Sequencing": 1 + "DNA Sequencing and Flow Cytometry: A Detailed Course on the Cellular Life Cycle": 1 + "Genomic Data Analysis: A Deep Dive into Cellular Biology and DNA Sequencing": 1 + "Next-Generation Sequencing: An In-Depth Course on Cellular Biology and Life Cycle": 1 + "Gel Electrophoresis and Its Role in DNA Sequencing: A Course on Cellular Biology": 1 + "Exploring the Cellular Life Cycle: A Course on DNA Sequencing and Spectrophotometry Technology.": 1 + "Logic: Mastering Problem Solving with Algorithmic Thinking and Python": 1 + "Unraveling Logic: Problem Solving with Algorithmic Thinking and Data Structures": 1 + "Logic Unpacked: The Art of Problem Solving with Algorithmic Thinking and Java": 1 + "The Science of Logic: Problem Solving with Algorithmic Thinking and C++": 1 + "Logic Demystified: The Art of Problem Solving with Algorithmic Thinking and Binary Trees": 1 + "Logic: The Art of Problem Solving with Algorithmic Thinking and SQL": 1 + "Navigating Logic: Problem Solving with Algorithmic Thinking and JavaScript": 1 + "Logic: The Art of Problem Solving with Algorithmic Thinking and Machine Learning": 1 + "Logic: Unleashing Problem Solving with Algorithmic Thinking and Blockchain Technology": 1 + "Logic: The Art of Problem Solving with Algorithmic Thinking and Quantum Computing.": 1 + "Advanced Logic: Solving Color-based Puzzles using Pen Tool in Adobe Illustrator": 1 + "Colorful Logic: Analyzing Puzzles with Gradients in Adobe Illustrator": 1 + "Logic in Depth: Using Layers for Color-based Puzzle Analysis in Adobe Illustrator": 1 + "Dynamic Logic: Exploring Blend Modes in Color-based Puzzle Analysis with Adobe Illustrator": 1 + "Logic Uncovered: Applying Transparency for Color-based Puzzles in Adobe Illustrator": 1 + "Logic Exploration: Using Clipping Masks for Color-based Puzzle Analysis in Adobe Illustrator": 1 + "Illustrator Logic: Harnessing the Power of Pathfinders in Color-based Puzzle Analysis": 1 + "Logic and Effects: Applying Textures in Color-based Puzzle Analysis with Adobe Illustrator": 1 + "Mastering Logic: Color-based Puzzle Analysis with Adobe Illustrator using Brushes": 1 + "Logic Unraveled: Color-based Puzzle Analysis with Adobe Illustrator using Shape Builder Tool": 1 + "Science: Understanding GPS Technology: The Role of Radio Waves in Physics and the Use of Satellite Constellations": 1 + "Science: Exploring the Integration of Atomic Clocks in GPS Technology: A Study of Radio Waves in Physics": 1 + "Science: GPS Technology Unveiled: The Influence of Radio Waves in Physics and the Significance of Pseudoranges": 1 + "Science: Decoding GPS Technology: The Role of Radio Waves in Physics and the Application of Doppler Effect": 1 + "Science: GPS Technology: Understanding the Radio Wave Physics and the Involvement of Ground Control Stations": 1 + "Science: The Role of Radio Waves in GPS Technology: An In-depth Study of Signal Frequencies and Physics": 1 + "Science: Navigating GPS Technology: The Impact of Radio Waves in Physics and the Concept of Trilateration": 1 + "Science: GPS Technology: The Radio Wave Physics and the Introduction to Global Navigation Satellite Systems": 1 + "Science: The Role of Radio Waves in GPS Technology: Understanding the Physics Behind Space Segment": 1 + "Science: Breaking Down GPS Technology: Radio Waves in Physics and the Role of Ephemeris Data.": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics with 3D Motion Tracking using Microsoft Kinect": 1 + "Physical Education: Harnessing Inertial Sensors for Rhythmic Gymnastics Analysis in 3D Motion Tracking ": 1 + "Physical Education: Incorporating Biomechanics in Analyzing Rhythmic Gymnastics with 3D Motion Tracking ": 1 + "Physical Education: Gymnastics and Body Control: Rhythmic Gymnastics Analysis with 3D Motion Tracking and Virtual Reality ": 1 + "Physical Education: The Impact of Machine Learning on Rhythmic Gymnastics Analysis in 3D Motion Tracking ": 1 + "Physical Education: Gymnastics and Body Control: Utilizing Computer Vision for Rhythmic Gymnastics Analysis in 3D Motion Tracking ": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics with 3D Motion Tracking and Artificial Intelligence": 1 + "Physical Education: The Role of Accelerometers in Rhythmic Gymnastics Analysis via 3D Motion Tracking ": 1 + "Physical Education: Gymnastics and Body Control: Rhythmic Gymnastics Analysis with 3D Motion Tracking and Force Plate Technology ": 1 + "Physical Education: Gymnastics and Body Control: Analyzing Rhythmic Gymnastics with 3D Motion Tracking using Wearable Sensors.": 1 + "Introduction to Theatre: Exploring the Power of LED Lighting in Performance": 1 + "Introduction to Theatre: The Power of Gobo Projectors in Lighting Design": 1 + "Introduction to Theatre: Harnessing the Potential of Moving Lights in Performance": 1 + "Introduction to Theatre: The Power of Lighting Design in Performance with Color Mixing": 1 + "Introduction to Theatre: The Impact of Follow Spotlights in Lighting Design": 1 + "Introduction to Theatre: The Power of Dimming Technology in Performance Lighting Design": 1 + "Introduction to Theatre: Utilizing Automated Lighting in Performance Design": 1 + "Introduction to Theatre: The Power of Lighting Design with 3D Projection in Performance": 1 + "Introduction to Theatre: The Influence of Scenic Projectors in Lighting Design": 1 + "Introduction to Theatre: The Power of DMX Control in Performance Lighting Design": 1 + "Introduction to Theatre: The Power of Haze Machines in Enhancing Lighting Design.": 1 + "Physical Education: Analyzing Heart Rate Variability using Polar H10 Heart Rate Monitors and Garmin Connect App": 1 + "Physical Education: Understanding Lactate Thresholds with Polar H10 Heart Rate Monitors and VO2 Max Concept": 1 + "Physical Education: Studying Heart Rate Variability with Polar H10 Heart Rate Monitors and Biofeedback Techniques": 1 + "Physical Education: Exploring Lactate Thresholds with Polar H10 Heart Rate Monitors and Anaerobic Capacity": 1 + "Physical Education: Investigating Heart Rate Variability using Polar H10 Heart Rate Monitors and Wearable Fitness Technology": 1 + "Physical Education: Evaluating Lactate Thresholds with Polar H10 Heart Rate Monitors and Maximum Heart Rate ": 1 + "Physical Education: Assessing Heart Rate Variability with Polar H10 Heart Rate Monitors and EKG Analysis": 1 + "Physical Education: Unpacking Lactate Thresholds with Polar H10 Heart Rate Monitors and Lactate Analyzer": 1 + "Physical Education: Probing Heart Rate Variability with Polar H10 Heart Rate Monitors and Heart Rate Zone Training": 1 + "Physical Education: Deciphering Lactate Thresholds with Polar H10 Heart Rate Monitors and Metabolic Stress Indicators": 1 + "Logical Thinkers: A Comprehensive Study of Elementary Logic using Deductive Proof Techniques in Python": 1 + "Logical Thinkers: Applying Propositional Logic in Java: A Comprehensive Study": 1 + "Logical Thinkers: A Deep Dive into Predicate Logic and Formal Proofs using MATLAB": 1 + "Logical Thinkers: Analyzing Elementary Logic through Formal Proofs in the Realm of Artificial Intelligence": 1 + "Logical Thinkers: Exploring Elementary Logic with Discrete Mathematics and Formal Proofs": 1 + "Logical Thinkers: A Comprehensive Study of Elementary Logic using Formal Proofs in Cybersecurity": 1 + "Logical Thinkers: A Detailed Study of Elementary Logic & Boolean Algebra using Formal Proofs": 1 + "Logical Thinkers: Learning Elementary Logic through Formal Proofs & Algorithmic Problem Solving": 1 + "Logical Thinkers: An In-depth Study of Elementary Logic using Formal Proofs and Quantum Computing Concepts": 1 + "Logical Thinkers: Understanding Elementary Logic through Formal Proofs & its Application in Data Structures.": 1 + "Creative Writing: Using Quip to Compose Tales with British Slang and Vivid Imagery Enhanced by Foreshadowing Techniques": 1 + "Advanced Creative Writing: Mastering Foreshadowing Techniques in Quip for Stories Using American Slang and Imagery": 1 + "Creative Writing with Quip: Exploring Imagery and Foreshadowing Techniques in Urban Slang Tales": 1 + "Storytelling Mastery: Leveraging Quip for Creative Writing with English Slang, Visual Imagery, and Foreshadowing Techniques": 1 + "Creative Writing in Quip: Crafting Tales with Australian Slang, Imagery, and Foreshadowing Techniques": 1 + "Quip for Creative Writing: Building Narrative Tension through English Slang, Imagery, and Foreshadowing Techniques": 1 + "Narrative Crafting: Using Quip for English Slang Tales with Imagery and Foreshadowing Techniques": 1 + "Quip Creative Writing: Harnessing Slang and Imagery in Storytelling with Foreshadowing Techniques": 1 + "Writing with Quip: Creating Engaging Tales Using English Slang, Imagery, and Foreshadowing Techniques": 1 + "English Slang and Imagery in Creative Writing: A Deep Dive into Foreshadowing Techniques Using Quip.": 1 + "World History: The Renaissance Era and the Effects of the Printing Press": 1 + "World History: The Invention of the Compass during The Renaissance Era": 1 + "World History: The Renaissance Era and the Development of Linear Perspective in Art": 1 + "World History: The Renaissance Era and the Evolution of Musical Notation": 1 + "World History: The Renaissance Era and the Impact of Gunpowder ": 1 + "World History: The Renaissance Era and the Rise of the Vernacular Language": 1 + "World History: The Renaissance Era - The Birth of Modern Astronomy": 1 + "World History: The Renaissance Era and the Influence of the Mechanical Clock": 1 + "World History: The Renaissance Era - The Advent of Double-entry Bookkeeping": 1 + "World History: The Renaissance Era and the Evolution of the Telescope": 1 + "Art: Discovering the World of Impressionism through Oil Paintings": 1 + "Art: Exploring Impressionism with Palette Knife Techniques": 1 + "Art: The Role of Plein Air in Impressionism": 1 + "Art: The Impact of Photography on the World of Impressionism": 1 + "Art: Understanding Impressionism through Brushwork": 1 + "Art: The Influence of Light and Color in Impressionism": 1 + "Art: Impressionism and the Emergence of Modernism": 1 + "Art: Discovering the World of Impressionism through Watercolor": 1 + "Art: The Role of Sketching in Impressionism": 1 + "Art: Unveiling Impressionism through Pastel Art": 1 + "Art: The World of Impressionism - A Deep Dive into the Use of Perspective": 1 + "Physical Education: Exploring Body Chemistry through Lactate Threshold Monitoring using Garmin Heart Rate Monitors": 1 + "Advanced Physical Education: Incorporating Fitbit Technology in Lactate Threshold Monitoring for Enhanced Body Chemistry Understanding": 1 + "Wearable Tech in Physical Education: Lactate Threshold Analysis using Apple Watch and its Impact on Body Chemistry": 1 + "Physical Education: Body Chemistry Insights through Lactate Threshold Monitoring using Polar H10 Heart Rate Sensor Technology": 1 + "In-depth Physical Education: Studying Body Chemistry and Lactate Threshold using Suunto Smart Sensor Wearables": 1 + "Physical Education: Body Chemistry and Lactate Threshold Monitoring using Biostrap Wearable Technology": 1 + "Advanced Course in Physical Education: Body Chemistry and Lactate Threshold Monitoring using Wahoo Fitness TICKR X Heart Rate Monitor": 1 + "Physical Education: Body Chemistry Analysis and Lactate Threshold Monitoring using the Concept of VO2 Max with Garmin Forerunner 945": 1 + "Specialized Physical Education: Body Chemistry and Lactate Threshold Monitoring with the Use of Under Armour's HOVR Connected Shoes": 1 + "Physical Education: An In-depth Study of Body Chemistry and Lactate Threshold Monitoring using Myzone MZ-3 Physical Activity Belt.": 1 + "Social Studies: The Role of the Chariot in Promoting Cultural Exchange in Ancient Egyptian Trade Networks": 1 + "Social Studies: The Influence of the Potter's Wheel on Cultural Exchange in Ancient Mesopotamian Trade Routes": 1 + "Social Studies: The Impact of Wheel-Operated Water Mill on Cultural Exchange in Ancient Roman Trade Networks": 1 + "Social Studies: The Contribution of the Wheelbarrow in Facilitating Cultural Exchange in Ancient Chinese Trade Networks": 1 + "Social Studies: The Effect of the Spoked Wheel in Cultural Exchange across Ancient Indus Valley Trade Routes": 1 + "Social Studies: The Impact of the Cartwheel in Cultural Exchange in Ancient Greek Trade Networks": 1 + "Social Studies: The Significance of the Ox-Cart in Cultural Exchange in Ancient Indian Trade Networks": 1 + "Social Studies: The Role of the Spinning Wheel in Cultural Exchange in Ancient Silk Road Trade Networks": 1 + "Social Studies: The Influence of the Wheeled Seige Tower on Cultural Exchange in Ancient Persian Trade Networks": 1 + "Social Studies: The Contribution of the Wheeled Plow in Cultural Exchange in Ancient Sumerian Trade Networks": 1 + "Social Studies: The Role of the Sholes Typewriter Patent Laws in Labor Movements during the Industrial Revolution": 1 + "The Impact of Typewriter Patent Laws on the Use of the Mimeograph in Labor Movements during the Industrial Revolution": 1 + "Social Studies: Industrial Revolution Labor Movements and the QWERTY Keyboard Typewriter Patent Laws ": 1 + "The Influence of Typewriter Patent Laws on the Telegraph Communication in Industrial Revolution Labor Movements": 1 + "Social Studies: The Impact of Typewriter Patent Laws on Labor Unions and the Introduction of the Linotype Machine during the Industrial Revolution": 1 + "The Role of Typewriter Patent Laws in the Spread of Punch Card Technology during Labor Movements of the Industrial Revolution": 1 + "The Impact of Typewriter Patent Laws and the Steam Engine on Labor Movements during the Industrial Revolution": 1 + "The Effects of Typewriter Patent Laws on the Adoption of the Rotary Press in Labor Movements during the Industrial Revolution": 1 + "Social Studies: The Impact of the Sholes Typewriter Patent Laws on Labor Movements and the Rise of the Telephone during the Industrial Revolution": 1 + "The Influence of Typewriter Patent Laws on the Development of the Electric Telegraph in Industrial Revolution Labor Movements.": 1 + "Social Studies: The Influence of Quakerism in Early American History: Utilizing Primary Documents": 1 + "Analyzing the Impact of Puritanism in Colonial America through Archival Research": 1 + "Unraveling the Role of Catholicism in Early American History using Geographic Information Systems (GIS)": 1 + "Social Studies: The Impact of Calvinism on the Development of American Political Institutions": 1 + "The Influence of Anglicanism in Southern Colonies: A Study through Oral Histories": 1 + "Social Studies: Religion and the Witch Trials in Early America: An Anthropological Perspective": 1 + "The Role of Judaism in Early American Trade: A Case Study using Economic Models": 1 + "Social Studies: Exploring Native American Spirituality in Early American History through Archaeological Excavation": 1 + "Early American History: An In-Depth Study of Moravian Influence using Material Culture Analysis": 1 + "The Influence of Religious Texts on Early American Legal System: A Study through Historical Legal Analysis.": 1 + "Social Studies: The Influence of Arturia DrumBrute Creation and Analog Synthesis in Pacific Islander Festival Music.": 1 + "Social Studies: The Role of Midi-Controllers in Arturia DrumBrute Creation for Pacific Islander Festival Music.": 1 + "Using Digital Audio Workstations in Arturia DrumBrute Creation for Pacific Islander Festival Music: A Social Study.": 1 + "The Impact of Arturia DrumBrute Creation and Drum Sequencing in Pacific Islander Festival Music.": 1 + "Social Studies: The Interplay of Arturia DrumBrute Creation and Sound Design in Pacific Islander Festival Music.": 1 + "Arturia DrumBrute Creation and Beat Making Techniques in Pacific Islander Festival Music: A Detailed Study.": 1 + "The Influence of Arturia DrumBrute Creation and Sampling in Pacific Islander Festival Music: A Social Perspective.": 1 + "Social Studies: Exploring the Use of Loop Stations in Arturia DrumBrute Creation for Pacific Islander Festival Music.": 1 + "The Role of Arturia DrumBrute Creation and Audio Mixing in Pacific Islander Festival Music: A Social Examination.": 1 + "Social Studies: The Impact of Arturia DrumBrute Creation and Music Production Software on Pacific Islander Festival Music.": 1 + "Physics: Exploring Classical Mechanics with Newton's Laws of Motion": 1 + "Physics: Classical Mechanics and the Concept of Energy - A Deep Dive into Potential Energy": 1 + "Physics: Classical Mechanics and Energy Conservation - An Examination of the Work-Energy Theorem": 1 + "Physics: Utilizing Calculus in Classical Mechanics and Energy Concepts": 1 + "Physics: Classical Mechanics - A Comprehensive Study on Kinetic Energy": 1 + "Physics: Classical Mechanics and Energy - Exploring the Law of Conservation of Energy": 1 + "Physics: Classical Mechanics and Energy - Understanding through Simulation Software": 1 + "Physics: Classical Mechanics and Energy - The Role of Friction Forces": 1 + "Physics: Classical Mechanics - The Concept of Energy and the Implication of Heat": 1 + "Physics: Classical Mechanics and Energy - A Detailed Study on Elastic and Inelastic Collisions.": 1 + "Sustainable Sports Equipment Production: The Integration of Injection Moulding Techniques with Bio-PET Materials using CAD Software: An Exploration of Ten Solutions": 1 + "Sustainable Sports Equipment Production: Implementing 3D Printing Technology in the Production of Bio-PET Based Equipment: Ten Innovative Approaches ": 1 + "Fusing Bio-PET Materials with Injection Moulding Techniques in Sports Equipment Production: A Study of Ten Approaches using Finite Element Analysis": 1 + "Sustainable Sports Equipment Production: The Role of Computer Simulation in Optimizing Bio-PET Injection Moulding Process: Ten Case Studies": 1 + "Bio-PET Injection Moulding in Sports Equipment Production: Ten Solutions Utilizing Advanced Robotics Technology": 1 + "Sustainable Sports Equipment Production: The Integration of Injection Moulding Techniques with Bio-PET Materials - Ten Applications of Rapid Prototyping": 1 + "Exploring Ten Solutions for the Integration of CNC Machining in the Production of Bio-PET-Based Sustainable Sports Equipment": 1 + "Ten Strategies for Employing Laser Cutting in the Production of Bio-PET-Based Sustainable Sports Equipment: An In-depth Study": 1 + "Sustainable Production of Sports Equipment: Ten Solutions for Integrating Bio-PET Materials with Injection Moulding Techniques through Artificial Intelligence ": 1 + "Sustainable Sports Equipment Production: The Integration of Bio-PET Materials and Injection Moulding Techniques using Nanotechnology: Ten Possible Outcomes.": 1 + "Ethics in Artificial Intelligence Technology: A Social Perspective": 1 + "Evaluating Privacy Implications in Modern Facial Recognition Technology: A Social Perspective": 1 + "Ethical Considerations in Blockchain Technology Usage: A Social Perspective": 1 + "Ethics in Drone Technology: A Social Perspective and Solutions": 1 + "Ethical Implications of Data Mining Techniques: A Social Perspective": 1 + "Ethics in Genetic Engineering: A Social Perspective": 1 + "Ethics in Autonomous Vehicles Technology: A Social Perspective": 1 + "Cybersecurity Ethics: Modern Encryption Technology and Social Perspectives": 1 + "Ethics in Modern Virtual Reality Technology: A Social Perspective": 1 + "Ethical Issues in Modern Nanotechnology: A Social Perspective.": 1 + "Physics: The Role of Kelvin in Thermodynamics and the Principles of Thermal Conductivity - A Deep Dive into Heat Transfer": 1 + "Physics: Exploring Kelvin's Relevance in Thermodynamics with Fourier's Law ": 1 + "Physics: Thermodynamics and Thermal Conductivity - A Study on Kelvin Scale and its Application in Thermocouples": 1 + "Physics: Kelvin and Thermodynamics - Understanding Thermal Conductivity through the Lens of Stefan-Boltzmann Law": 1 + "Physics: Investigating Kelvin's Impact on Thermodynamics and Thermal Conductivity Using Infrared Thermography ": 1 + "Physics: Kelvin's Contribution to Thermodynamics - A Comprehensive Analysis of Thermal Conductivity using Heat Flux Sensors": 1 + "Physics: The Role of Kelvin in Thermodynamics - Exploring Thermal Conductivity using Thermographic Cameras": 1 + "Physics: Kelvin, Thermodynamics, and Thermal Conductivity - An Examination Through The Use Of Thermal Conductivity Meters": 1 + "Physics: Kelvin's Influence on Thermodynamics and Principles of Thermal Conductivity - A Focus on Heat Conduction Microscopy": 1 + "Physics: Thermodynamics & Thermal Conductivity - Understanding Kelvin's Contribution through Thermistor Technology.": 1 + "Neuroscience: Exploring Brain Functions with DTI Imaging, SPECT and fMRI through Interactive 3D Models": 1 + "Advanced Neuroscience: Delving into Neural Pathways with DTI, SPECT and PET Scans": 1 + "Neuroscience: Understanding Brain Activities using Diffusion Tensor Imaging, Single-Photon Emission Computed Tomography, and Electroencephalogram": 1 + "Neuroscience: Examining Brain Functions with DTI, SPECT, and Optogenetics through Interactive Models": 1 + "Advanced Techniques in Neuroscience: Utilizing DTI Imaging, SPECT, and Transcranial Magnetic Stimulation for Brain Function Analysis": 1 + "Neuroscience: Investigating Brain Structures using DTI Imaging, Single-Photon Emission Computed Tomography, and Neuroimaging Software": 1 + "Neuroscience: Unveiling Brain Connectivity with DTI Imaging, SPECT, and Tractography": 1 + "Innovative Techniques in Neuroscience: Examining Brain Functions with DTI Imaging, SPECT, and Functional Near-Infrared Spectroscopy": 1 + "Neuroscience: Exploring the Human Brain with DTI Imaging, SPECT, and Machine Learning Algorithms": 1 + "Neuroscience: DTI Imaging, SPECT, and Event-Related Potentials in Brain Function Analysis.": 1 + "Physics Fundamentals: Understanding Gravity with Lego Structures and Pulleys using Newton's Laws of Motion": 1 + "Physics Fundamentals: Exploring Gravity Concepts through Lego Structures and Pulleys with the aid of Vector Analysis": 1 + "Physics Fundamentals: Applying the Principles of Gravity using Lego Structures, Pulleys and the Force Meter": 1 + "Physics Fundamentals: Deciphering Gravity with Lego Structures, Pulleys and the use of Gravitational Constant ": 1 + "Physics Fundamentals: Investigating Gravity using Lego Structures, Pulleys, and the Physics Simulation Software": 1 + "Physics Fundamentals: Uncovering Gravity using Lego Structures, Pulleys and the Study of Mass and Weight ": 1 + "Physics Fundamentals: Examining Gravity through Lego Structures, Pulleys and the Application of Friction Coefficient": 1 + "Physics Fundamentals: Interpreting Gravity using Lego Structures, Pulleys and the Concept of Inertia ": 1 + "Physics Fundamentals: Teaching Gravity Concepts with Lego Structures, Pulleys and the Law of Universal Gravitation ": 1 + "Physics Fundamentals: Delving into Gravity using Lego Structures, Pulleys and the Pendulum Experiment.": 1 + "Advanced Neuroscience: Analyzing Brain Functions with DTI Imaging, PET Scans and fMRI Technology": 1 + "In-Depth Neuroscience: Exploring Brain Functions with DTI Imaging, PET Scans and Electroencephalography (EEG)": 1 + "Neuroscience Unveiled: Understanding Brain Functions through DTI Imaging, PET Scans, and the Concept of Neuroplasticity": 1 + "Comprehensive Neuroscience: Exploring Brain Functions with DTI Imaging, PET Scans, and the Application of Machine Learning": 1 + "Neuroscience: Exploring Brain Functions with DTI Imaging, PET Scans and Neurofeedback Techniques": 1 + "Neuroscience in Practice: Exploring Brain Functions with DTI Imaging, PET Scans and the Use of Virtual Reality Simulations": 1 + "Neurological Exploration: Investigating Brain Functions with DTI Imaging, PET Scans, and the Principle of Synaptic Transmission": 1 + "Cutting-edge Neuroscience: Probing Brain Functions with DTI Imaging, PET Scans and the Integration of AI Diagnostics": 1 + "Neuroscience: Exploring Brain Functions with DTI Imaging, PET Scans, and Deep Learning Algorithms": 1 + "Neuroscience Deep Dive: Examining Brain Functions using DTI Imaging, PET Scans and the Concept of Neural Networks.": 1 + "Physics Fundamentals: Investigating Gravity with Lego Structures, Pulleys, and the Unity3D Physics Simulation Software": 1 + "Physics Fundamentals: Exploring Gravity using Lego Structures, Pulleys, and the MATLAB Simulation Software": 1 + "Physics Fundamentals: Probing Gravity through Lego Structures, Pulleys, and the Python-based Physics Simulation Software": 1 + "Physics Fundamentals: Studying Gravity with Lego Structures, Pulleys, and the Use of Virtual Reality Simulation Software": 1 + "Physics Fundamentals: Understanding Gravity using Lego Structures, Pulleys, and the Application of Force Vectors in Physics Simulation Software": 1 + "Physics Fundamentals: Analyzing Gravity through Lego Structures, Pulleys, and the Application of Newton's Laws in Physics Simulation Software": 1 + "Physics Fundamentals: Investigating Gravity with Lego Structures, Pulleys, and the Use of Particle Physics in Simulation Software": 1 + "Physics Fundamentals: Exploring Gravity using Lego Structures, Pulleys, and the Integration of Quantum Mechanics in Physics Simulation Software": 1 + "Physics Fundamentals: Probing Gravity through Lego Structures, Pulleys, and the Use of the Physics Processing Unit in Simulation Software": 1 + "Physics Fundamentals: Understanding Gravity with Lego Structures, Pulleys, and the Incorporation of Einstein's Theory of Relativity in Physics Simulation Software": 1 + "Advanced Soil Fertility Management: The Role of IoT Sensors and AI in Environmental Studies and Nutritional Value Enhancement Using Drones": 1 + "Implementing Machine Learning and Satellite Imaging in Advanced Soil Fertility Management: A Study on Environmental Impact": 1 + "Integration of IoT Sensors, Machine Learning, and GIS Technology in Advanced Soil Fertility Management": 1 + "Advanced Soil Fertility Management: Utilizing IoT Sensors, Machine Learning, and Spectral Analysis for Nutritional Value Enhancement": 1 + "The Role of IoT Sensors, Machine Learning, and Remote Sensing in Advanced Soil Fertility Management": 1 + "Advanced Soil Fertility Management: Exploring the Potential of IoT Sensors, Machine Learning, and Artificial Neural Networks": 1 + "Enhancing Nutritional Value through Advanced Soil Fertility Management: The Role of IoT Sensors, Machine Learning, and Predictive Analytics": 1 + "Advanced Soil Fertility Management: Implementing IoT Sensors, Machine Learning, and Big Data for Environmental Studies": 1 + "The Impact of IoT Sensors, Machine Learning, and Cloud Computing on Advanced Soil Fertility Management": 1 + "Advanced Soil Fertility Management: The Application of IoT Sensors, Machine Learning, and Blockchain Technology in Environmental Studies.": 1 + "Evaluating the Impact of Virtual Reality Music Therapy on Emotional Well-being: A Health Education Study": 1 + "Exploring the Effects of AI-generated Music on Emotional Well-being: A Comprehensive Health Education Study": 1 + "The Role of Biofeedback Music Technology in Enhancing Emotional Well-being: A Health Education Study": 1 + "The Impact of Interactive Music Apps on Emotional Well-being: A Detailed Health Education Study": 1 + "The Influence of Music Streaming Services on Emotional Health: A Comprehensive Health Education Study": 1 + "Investigating the Effect of Wearable Music Technology on Emotional Well-being: An In-depth Health Education Study": 1 + "The Impact of Interactive Sheet Music Software on Emotional Well-being: A Health Education Study": 1 + "Assessing the Role of MIDI Controllers in Emotional Well-being: A Detailed Health Education Study": 1 + "The Effect of Digital Audio Workstations on Emotional Well-being: A Comprehensive Health Education Study": 1 + "The Impact of Interactive Music Synthesizers on Emotional Well-being: An Advanced Health Education Study.": 1 + "Mathematics: The Evolution of Economic Models through Calculus": 1 + "Quantum Computing and the Evolution of Mathematical Economic Models": 1 + "Mathematics: The Evolution of Economic Models via Linear Algebra": 1 + "Mathematics: Understanding the Evolution of Economic Models through Game Theory": 1 + "Mathematics: The Evolution of Economic Models and the Role of Probability": 1 + "The Influence of Matrix Operations on the Evolution of Mathematical Economic Models": 1 + "The Role of Differential Equations in the Evolution of Mathematical Economic Models": 1 + "Mathematics: The Evolution of Economic Models with a Focus on Optimization Techniques": 1 + "The Impact of Computational Mathematics on the Evolution of Economic Models": 1 + "Mathematics: The Evolution of Economic Models Leveraging Graph Theory.": 1 + "The Art of Communication: Mastering SEO Writing for Web Content": 1 + "Crafting Digital Narratives: The Art of Writing and Speaking for Social Media": 1 + "Effective Communication: Utilizing WordPress for Web Writing and Speaking": 1 + "The Art of Communication: Exploring HTML in Web Writing and Speaking": 1 + "Harnessing Google Analytics: The Art of Web Writing and Speaking": 1 + "The Art of Communication: Leveraging CSS in Web Writing and Speech": 1 + "Optimizing Web Presence: The Art of Writing and Speaking with JavaScript": 1 + "The Art of Communication: Web Writing and Speaking through the Lens of UX Design": 1 + "Decoding Communication: The Art of Web Writing and Speaking with Python": 1 + "The Art of Communication: Implementing Adobe Dreamweaver in Web Writing and Speaking": 1 + "Neuroscience: Exploring the Human Brain with MRI Technology, Functional Connectivity Analysis and Diffusion Tensor Imaging": 1 + "Neuroscience: A Comprehensive Study of the Human Brain Using Transcranial Magnetic Stimulation, MRI Technology and Functional Connectivity Analysis": 1 + "Neuroscience: Understanding the Human Brain through Electroencephalography, MRI Technology and Functional Connectivity Analysis": 1 + "Neuroscience: Unraveling the Mysteries of the Human Brain with MRI Technology, Functional Connectivity Analysis and the Default Mode Network": 1 + "Neuroscience: A Detailed Investigation of the Human Brain Using Positron Emission Tomography, MRI Technology and Functional Connectivity Analysis": 1 + "Neuroscience: A Deep Dive into the Human Brain with MRI Technology, Functional Connectivity Analysis and the Concept of Neuroplasticity": 1 + "Neuroscience: Decoding the Human Brain Using MRI Technology, Functional Connectivity Analysis and Event-Related Potential (ERP) Technique": 1 + "Neuroscience: A Comprehensive Inquiry into the Human Brain with MRI Technology, Functional Connectivity Analysis and the Theory of Mind": 1 + "Neuroscience: Probing the Human Brain Using Functional Magnetic Resonance Imaging (fMRI), MRI Technology and Functional Connectivity Analysis": 1 + "Neuroscience: A Thorough Inspection of the Human Brain with MRI Technology, Functional Connectivity Analysis and the Principles of Neural Coding.": 1 + "Enhancing Brain Health with Omega-3 Fatty Acids: A Comprehensive Study on Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "The Power of Blueberries: Brain Nutrition Explored using MRI Imaging, Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Understanding The Role of Green Tea in Brain Health: Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "The Impact of Dark Chocolate on Brain Nutrition: A Detailed Study with the aid of Biofeedback, Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Exploring the Benefits of Meditation for Brain Health: Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Boosting Brain Health with Regular Exercise: In-depth Analysis using Electroencephalography (EEG), Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Unraveling the Influence of Turmeric on Brain Nutrition: Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "The Potential of Red Wine in Enhancing Brain Health: A Comprehensive Study using Cognitive Behavioral Therapy (CBT), Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Brain Health and the Power of Sleep: Elementary Health via Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Examining the Effects of Coffee on Brain Nutrition: A Detailed Analysis using fMRI scans, Neurofeedback Technology and Positron Emission Tomography (PET)": 1 + "Utilizing Kinect Motion Capture and Inertial Sensors in Physical Education: Enhancing Astronaut Training Techniques with Virtual Reality": 1 + "Advanced Astronaut Training Techniques: Usage of 3D Motion Capture and Inertial Sensors with EMG Technology in Physical Education": 1 + "Integration of 3D Motion Capture, Inertial Sensors, and Biomechanical Analysis in Astronaut Training Techniques: A Comprehensive Physical Education Approach": 1 + "Physical Education Innovations: The Role of 3D Motion Capture, Inertial Sensors and Haptic Feedback in Astronaut Training Techniques": 1 + "In-depth Exploration of 3D Motion Capture and Inertial Sensors in Physical Education: Astronaut Training Techniques Using Wearable Tech": 1 + "Integrating 3D Motion Capture and Inertial Sensors with Force Plate Analysis in Physical Education: Advanced Astronaut Training Techniques": 1 + "Utilizing 3D Motion Capture, Inertial Sensors and Machine Learning Algorithms in Physical Education: A New Dimension in Astronaut Training Techniques": 1 + "A Revolutionary Approach to Astronaut Training Techniques: Integration of 3D Motion Capture, Inertial Sensors and EEG in Physical Education": 1 + "Pioneering Astronaut Training Techniques: Adding Value with 3D Motion Capture, Inertial Sensors, and Augmented Reality in Physical Education ": 1 + "Exploring the Future of Astronaut Training Techniques: The Use of 3D Motion Capture, Inertial Sensors and Drone Technology in Physical Education.": 1 + "Decoding the Past: The Role of Caesar's Cipher and Cryptanalysis in the Evolution of Language": 1 + "Decoding the Past: The Impact of Caesar's Cipher and Morse Code on Language Evolution": 1 + "Decoding the Past: Understanding the Interaction of Caesar's Cipher and Telegraphy in Language Development": 1 + "Decoding the Past: Caesar's Cipher, the Enigma Machine, and their Role in Language Evolution": 1 + "Decoding the Past: The Influence of Caesar's Cipher and the Typewriter on the Evolution of Language": 1 + "Decoding the Past: How Caesar's Cipher and the Printing Press Shaped Language Evolution": 1 + "Decoding the Past: Caesar's Cipher, Binary Code and their Impact on Language Evolution ": 1 + "Decoding the Past: The Role of Caesar's Cipher and the Internet in the Evolution of Language": 1 + "Decoding the Past: Caesar's Cipher and the Phonograph: Tools for Language Evolution": 1 + "Decoding the Past: Caesar's Cipher, the Telegraph and the Transformation of Language.": 1 + "Neuroscience: Exploring the Brain's Function through MRI using Diffusion Tensor Imaging": 1 + "Neuroscience: Understanding the Brain's Function through MRI and Positron Emission Tomography": 1 + "Neuroscience: Investigating the Brain's Function by Functional MRI and Blood Oxygen Level Dependent Contrast": 1 + "Neuroscience: Decoding the Brain's Function through MRI and the Application of Voxels": 1 + "Neuroscience: Unveiling the Brain's Function through MRI with Resting State Functional Connectivity": 1 + "Neuroscience: Interpreting the Brain's Function through MRI and the Use of Magnetic Field Gradients": 1 + "Neuroscience: Analysing the Brain's Function through MRI and the Principle of Nuclear Magnetic Resonance": 1 + "Neuroscience: Evaluating the Brain's Function through MRI and Echo Planar Imaging": 1 + "Neuroscience: Comprehending the Brain's Function through MRI and the Role of Radiofrequency Pulses": 1 + "Neuroscience: Investigating the Brain's Function through MRI and the Use of Contrast Agents": 1 + "Exploring Negative Space in Gouache Techniques with Palette Knives: A Detailed Study of Shapes, Lines, and Colors Through Stippling Techniques": 1 + "Negative Space in Gouache Techniques: Mastering Shapes, Lines, and Colors with a Rigger Brush Using Stippling Techniques": 1 + "Negative Space in Gouache Techniques: Grasping the Concept of Values through Stippling Techniques": 1 + "Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors with a Mop Brush Applying Stippling Techniques": 1 + "Understanding the Role of Negative Space in Gouache Techniques Using Fan Brushes: A Comprehensive Study of Shapes, Lines, and Colors with Stippling Techniques": 1 + "Negative Space in Gouache Techniques: Exploring Shapes, Lines, and Colors with a Round Brush Applying Stippling Techniques": 1 + "The Art of Negative Space in Gouache Techniques Using Filbert Brushes: An In-depth Study of Shapes, Lines, and Colors through Stippling Techniques": 1 + "Negative Space in Gouache Techniques: A Study of Shapes, Lines, and Colors with a Flat Brush Applying Stippling Techniques": 1 + "Negative Space in Gouache Techniques: Learning to Utilize a Liner Brush in the Study of Shapes, Lines, and Colors Through Stippling Techniques": 1 + "Negative Space in Gouache Techniques: The Impact of an Angular Brush on Shapes, Lines, and Colors Applying Stippling Techniques": 1 + "Physical Education: Utilizing Smart Kitchen Appliances in Meal Preparations for Fitness": 1 + "Physical Education: An In-depth Look at Nutrient Trackers in Meal Prep for Physical Fitness": 1 + "Physical Education: The Role of Fitness Apps in Meal Planning and Physical Health": 1 + "Physical Education: The Impact of Digital Weighing Scales in Meal Prep for Physical Fitness": 1 + "Physical Education: The Benefits of AI-based Meal Prep Apps in Physical Fitness": 1 + "Physical Education: The Use of 3D Food Printers in Meal Preparation for Fitness": 1 + "Physical Education: The Influence of Smart Refrigerators in Meal Prep for Physical Fitness": 1 + "Physical Education: Exploring the Use of Instant Pots in Meal Planning for Physical Fitness": 1 + "Physical Education: The Importance of Bluetooth Thermometers in Meal Prep for Physical Fitness": 1 + "Physical Education: The Role of Food Processors in Meal Preparation for Physical Fitness": 1 + "Art: Exploring Sculpting Techniques with Wire Mesh using Pliers": 1 + "Art: An In-Depth Study of Wire Mesh Sculpting with Welding Techniques": 1 + "Art: Advanced Wire Mesh Sculpting Techniques with the Use of Tin Snips": 1 + "Art: Exploring 3D Wire Mesh Sculpting Techniques with Virtual Reality": 1 + "Art: Wire Mesh Sculpting Techniques: An Exploration with Metal Shears": 1 + "Art: The Art of Wire Mesh Sculpting: Techniques and Tools, focusing on Needle-Nose Pliers": 1 + "Art: Wire Mesh Sculpting Techniques: A Study in Using Wire Cutters": 1 + "Art: Wire Mesh Sculpting: Exploring Techniques with the Use of a Soldering Iron": 1 + "Art: Mastering Wire Mesh Sculpting Techniques with the Use of a Bench Grinder": 1 + "Art: Wire Mesh Sculpting Techniques: A Comprehensive Guide using a Milling Machine.": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Using The Pythagorean Theorem": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Incorporating Euclidian Postulates": 1 + "Mathematics: Geometry Mastery with Geometric Proofs and The Use of Geogebra Software": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Focused on Triangle Congruence": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Using AutoCAD for Diagrams": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Exploring Circle Theorems": 1 + "Mathematics: Geometry Mastery with Geographic Proofs and The Use of Mathway Solver": 1 + "Mathematics: Geometry Mastery with Geometric Proofs: A Deep Dive into Quadrilaterals": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Leveraging Desmos Graphing Calculator": 1 + "Mathematics: Geometry Mastery with Geometric Proofs Applying Coordinate Geometry.": 1 + "Internet Science: Deciphering HTTP and HTTPS Using Wireshark: A Comprehensive Guide": 1 + "Internet Science: A Deep Dive into HTTP and HTTPS Through Tcpdump Analysis": 1 + "Exploring HTTP and HTTPS: A Detailed Approach Using Fiddler as a Packet Sniffing Tool": 1 + "Understanding Internet Protocols: Deciphering HTTP and HTTPS with Packet Sniffing Tool - EtherApe": 1 + "Internet Science: HTTP and HTTPS Decoding using the Power of Cain & Abel": 1 + "Mastering Internet Protocols: A Detailed Analysis of HTTP and HTTPS with Tcpdump": 1 + "Internet Science: Unraveling HTTP and HTTPS Protocols Using Network Miner": 1 + "HTTPS and HTTP Protocols Demystified: An In-depth Study Using the Darkstat Packet Sniffing Tool": 1 + "Internet Science: Dissecting HTTP and HTTPS with Packet Sniffing Tool - SmartSniff": 1 + "Interpreting Internet Protocols: A Study of HTTP and HTTPS using Ettercap as a Packet Sniffing Tool.": 1 + "Advanced Statistical Analysis in Environmental Research: Utilizing Python, Numpy, SciPy and Pandas for Optimal Multivariate Modeling": 1 + "Practical Guide to Statistical Analysis in Environmental Research: Applying Python, Numpy, SciPy and Matplotlib for Efficient Multivariate Modeling": 1 + "Comprehensive Study on Statistical Analysis in Environmental Research: Python, Numpy, SciPy and TensorFlow for Advanced Multivariate Modeling": 1 + "Python Driven Statistical Analysis in Environmental Research: Numpy, SciPy, and Seaborn for Effective Multivariate Modeling": 1 + "Harnessing Statistical Analysis in Environmental Research: Python, Numpy, SciPy and PyTorch for Progressive Multivariate Modeling": 1 + "Environmental Research Statistical Analysis: Python, Numpy, SciPy and Jupyter Notebook for Dynamic Multivariate Modeling": 1 + "In-depth Exploration of Statistical Analysis in Environmental Research: Python, Numpy, SciPy and Keras for Multivariate Modeling": 1 + "Statistical Analysis in Environmental Research: Python, Numpy, SciPy and Anaconda for Optimal Multivariate Modeling": 1 + "Mastering Statistical Analysis in Environmental Research: Python, Numpy, SciPy and PyCharm for Multivariate Modeling": 1 + "Effective Techniques in Statistical Analysis for Environmental Research: Python, Numpy, SciPy and Scikit-Learn for Multivariate Modeling.": 1 + "Language Arts: Applying Eco-criticism in Environmental Conservation Literature Using Metaphor Analysis": 1 + "Language Arts: Eco-criticism and its Application in Environmental Conservation Literature Through Symbolism": 1 + "Language Arts: The Role of Narratology in Eco-criticism and Environmental Conservation Literature": 1 + "Language Arts: Using Discourse Analysis to Unpack Eco-criticism in Environmental Conservation Literature": 1 + "Language Arts: The Use of Semiotics in Eco-criticism and Environmental Conservation Literature": 1 + "Language Arts: Eco-criticism and its Application in Environmental Conservation Literature: An Examination of Alliteration": 1 + "Language Arts: The Impact of Eco-criticism in Environmental Conservation Literature Through Rhetorical Devices": 1 + "Language Arts: Eco-criticism and its Application in Environmental Conservation Literature: A Study on Allegory": 1 + "Language Arts: The Role of Intertextuality in Eco-criticism and Environmental Conservation Literature": 1 + "Language Arts: Eco-criticism and its Application in Environmental Conservation Literature: Exploring the Influence of Hyperbole": 1 + "Advanced Probability & Statistics: Applying Bayesian Theorem with Random Variables in SAS and Machine Learning Algorithms": 1 + "Unraveling Chance with Random Variables using Python in Probability & Statistics: A Deep Dive into Logistic Regression": 1 + "Probability & Statistics: Harnessing Random Variables with R Programming and Machine Learning Algorithms": 1 + "Probability & Statistics Exploration: Leveraging Random Variables in SAS with the Gradient Boosting Machine Learning Algorithm": 1 + "Deep Learning and Probability & Statistics: Decoding Chance with Random Variables in SAS using SVM": 1 + "Probability & Statistics: Deciphering Chance with Random Variables in SAS using Tensorflow and Logistic Regression": 1 + "Unveiling Probability & Statistics: Mastering Random Variables in SAS using Neural Networks and Logistic Regression": 1 + "Probability & Statistics Breakdown: Utilizing Random Variables in SAS with Keras and Machine Learning Algorithms": 1 + "Advanced Probability & Statistics: Working with Random Variables in SAS using Apache Spark and Logistic Regression": 1 + "Probability & Statistics: Unraveling Chance with Random Variables in SAS using Decision Trees and Logistic Regression.": 1 + "Practical Probability: Implementing Excel's Data Analysis ToolPak and Chi-Square Test for Random Variables Analysis": 1 + "Advanced Probability: Utilizing Excel's Data Analysis ToolPak and Pivot Tables for Chance Analysis": 1 + "Probability in Practice: Leveraging Excel's Data Analysis ToolPak and Regression Analysis for Random Variables": 1 + "Practical Probability: Excel's Data Analysis ToolPak and Histograms for Random Variables and Chance Analysis": 1 + "Mastering Probability: Using Excel's Data Analysis ToolPak with Correlation Coefficients for Chance Analysis": 1 + "Probability Techniques: Excel's Data Analysis ToolPak and T-Test for Analyzing Random Variables": 1 + "Applied Probability: Excel's Data Analysis ToolPak and Z-Test for Chance Analysis": 1 + "Probability and Statistics: Excel's Data Analysis ToolPak and ANOVA for Random Variable Analysis": 1 + "Practical Probability: Exploring Random Variables with Excel's Data Analysis ToolPak and Scatter Plots": 1 + "Advanced Probability: Analyzing Chance with Excel's Data Analysis ToolPak and Fourier Analysis": 1 + "Python Programming for Machine Learning: Optimizing Athletic Performance with Big Data Exploration": 1 + "Computer Science and Machine Learning: Enhancing Sports Performance with TensorFlow and Big Data": 1 + "Neural Networks in Machine Learning: Optimizing Athletic Performance with Big Data Exploration": 1 + "Computer Science and Deep Learning: Optimizing Athletic Performance Using Big Data and Keras": 1 + "Computer Science and Machine Learning: Optimizing Athletic Performance with Big Data and Hadoop": 1 + "Computer Science and Machine Learning: Enhancing Athletic Performance with Big Data Exploration and R Programming": 1 + "Computer Science and Machine Learning: Improving Athletic Performance with Big Data and Apache Spark": 1 + "Computer Science and Regression Analysis: Optimizing Athletic Performance with Big Data Exploration": 1 + "Computer Science and Machine Learning: Leveraging Tableau for Athletic Performance Optimization through Big Data": 1 + "Computer Science and Machine Learning: Optimizing Athletic Performance using Big Data and SQL Databases.": 1 + "Visual Arts: Identifying Patterns in Renaissance Art through Color Theory": 1 + "Visual Arts: Analyzing Cubist Structures with Geometric Shape Tools": 1 + "Visual Arts: Exploring Artistic Styles in Pointillism using Digital Imaging": 1 + "Visual Arts: Discovering Patterns in Abstract Expressionism through Texture Analysis": 1 + "Visual Arts: Studying Patterns in Surrealism using Photoshop Tools": 1 + "Visual Arts: Decoding Symbolism in Gothic Art with AI Technology": 1 + "Visual Arts: Unraveling Patterns in Art Nouveau using Design Software": 1 + "Visual Arts: Investigating Patterns in Pop Art through Line Contrast Techniques": 1 + "Visual Arts: Uncovering Patterns in Impressionist Art using Color Wheel Concepts": 1 + "Visual Arts: Analyzing Patterns in Fauvism using Digital Color Grading Tools.": 1 + "Elementary Mathematics: Utilizing SPSS for Regression Analysis in Statistics": 1 + "The Role of SPSS in Quantitative Data Interpretation and Analysis: An Elementary Mathematics Perspective": 1 + "Elementary Mathematics: The Impact of SPSS in Descriptive Statistics Analysis": 1 + "SPSS and Its Role in Elementary Mathematics: A Focus on ANOVA Analysis": 1 + "The Impact of SPSS on Chi-Square Test Analysis in Elementary Mathematics": 1 + "Elementary Mathematics: The Role of SPSS in T-test Statistical Analysis": 1 + "Utilizing SPSS in Correlation Analysis: An Elementary Mathematics Course": 1 + "Elementary Mathematics: Exploring the Role of SPSS in Hypothesis Testing": 1 + "The Impact of SPSS on Factor Analysis in Elementary Mathematics": 1 + "Elementary Mathematics: SPSS and its Application in Non-parametric Statistics.": 1 + "Elementary Education 305: Introduction to Cooperative Games – Utilizing Zoom for Online Collaboration": 1 + "Elementary Education 305: Implementing Google Classroom in Cooperative Games for Online Collaboration": 1 + "Elementary Education 305: Introduction to Cooperative Games – Exploiting Microsoft Teams for Online Collaboration": 1 + "Elementary Education 305: Utilizing Slack in Introduction to Cooperative Games for Online Collaboration": 1 + "Elementary Education 305: Introduction to Cooperative Games – Using Trello for Online Collaboration": 1 + "Elementary Education 305: Introduction to Cooperative Games – Harnessing Asana for Online Collaboration": 1 + "Elementary Education 305: Utilizing Discord for Online Collaboration in Cooperative Games": 1 + "Elementary Education 305: Introduction to Cooperative Games – Exploiting Webex for Online Collaboration": 1 + "Elementary Education 305: Introduction to Cooperative Games – Using Jira for Online Collaboration": 1 + "Elementary Education 305: Implementing Basecamp in Cooperative Games for Online Collaboration": 1 + "The Power of Melody: Analyzing Beethoven's Quartets with Audacity and the Utilization of the String Quartet.": 1 + "Decoding Mozart's Symphony: A Deep-Dive into Classical Compositions with the Use of String Quartet and Audacity Software.": 1 + "Exploring the Power of Melody: A Detailed Study of Schubert's Quartets using String Quartet and WavePad Sound Editor.": 1 + "The Power of Melody: Unraveling the Mysteries of Haydn's Symphonies with a String Quartet and Adobe Audition.": 1 + "Decoding Classical Compositions: A Comprehensive Study of Bach's Concertos with the Use of String Quartet and Audacity.": 1 + "Melodic Power: An In-depth Analysis of Paganini's Quartets using String Quartet and FL Studio.": 1 + "The Power of Melody: Dissecting Vivaldi's Four Seasons with the Use of String Quartet and GarageBand.": 1 + "Decoding Classical Compositions: A Practical Study of Chopin's Quartets using String Quartet and Ableton Live.": 1 + "Exploring the Power of Melody: An Interpretation of Handel's Quartets with the Use of String Quartet and Soundtrap.": 1 + "The Power of Melody: Unlocking the Secrets of Tchaikovsky's Quartets with the Help of a String Quartet and Logic Pro X.": 1 + "Language Arts: Evaluating the Impact of Alliteration in Environmental Conservation Narratives through Twitter Analytics - A Comprehensive Study on Social Media Influence": 1 + "Language Arts: Use of Natural Language Processing in Assessing Alliteration's Effect in Environmental Narratives - A Social Media Study": 1 + "Language Arts: Impact of Alliteration in Environmental Conservation Narratives - A Sentiment Analysis Study on Facebook Discussions": 1 + "Language Arts: Alliteration in Environmental Narratives: A Study on Social Media Influence using Big Data Analytics": 1 + "Language Arts: Alliteration in Environmental Conservation - An Instagram-based Study using Image Recognition Technology": 1 + "Language Arts: Influence of Alliteration on Environmental Conservation Narratives - A Machine Learning Approach to Social Media Analysis": 1 + "Language Arts: Alliteration's Impact on Environmental Narratives - A Study Using Deep Learning Techniques on Twitter Data": 1 + "Language Arts: Alliteration in Environmental Conservation Narratives: A Text Mining Study on Social Media Reach": 1 + "Language Arts: Harnessing AI to Study Alliteration's Impact in Environmental Narratives on Social Media Platforms": 1 + "Language Arts: A Study on Alliteration's Impact in Environmental Conservation through Data Visualization of Social Media Trends.": 1 + "Advanced Soccer Assessment with Tableau, Python, SQL and R: A Deep Dive into Performance Analytics": 1 + "Data-Driven Soccer Performance Analysis Using Tableau, Python, SQL and Machine Learning": 1 + "Soccer Performance Analysis: Utilizing Tableau, Python, SQL and Google Analytics for Enhanced Athletic Assessment": 1 + "Exploring Soccer Performance with Tableau, Python, SQL and Power BI: A Comprehensive Guide to Data-Driven Athletic Assessment": 1 + "Data-Driven Athletic Assessment: Incorporating Tableau, Python, SQL and Big Data Concepts in Soccer Performance Analysis": 1 + "Soccer Performance Analysis: Leveraging Tableau, Python, SQL and Cloud Computing for Optimized Athletic Assessment": 1 + "Advanced Data Analytics for Soccer: Using Tableau, Python, SQL and Keras for Athletic Performance Assessment": 1 + "Data-Driven Soccer Performance Evaluation: Integrating Tableau, Python, SQL and Apache Hadoop": 1 + "Soccer Performance Analysis and Prediction: A Data-Driven Approach using Tableau, Python, SQL and Artificial Intelligence": 1 + "Soccer Player Analytics: Using Tableau, Python, SQL and IBM SPSS for Enhanced Data-Driven Assessment.": 1 + "Computer Science Foundations: Exploring Data Structures in Python and Scratch - A Deep Dive into Machine Learning using TensorFlow": 1 + "Advanced Course on Data Structures in Python and Scratch: Leveraging Machine Learning with Keras": 1 + "Practical Guide to Data Structures in Python and Scratch - Applying Machine Learning Concepts with PyTorch": 1 + "Python and Scratch for Data Structures: In-Depth Machine Learning Study using Scikit-learn": 1 + "An Extensive Course on Data Structures in Python and Scratch: Machine Learning with the use of Apache MXNet": 1 + "In-depth Analysis of Data Structures in Python and Scratch: Harnessing Machine Learning Using Caffe": 1 + "Comprehensive Understanding of Data Structures: Machine Learning Study in Python and Scratch using Theano": 1 + "Mastering Data Structures in Python and Scratch: Exploring Machine learning with Microsoft Cognitive Toolkit": 1 + "Python and Scratch Based Data Structures: A Complete Guide to Machine Learning Using IBM's Watson": 1 + "Advanced Data Structures in Python and Scratch: Navigating Machine Learning with Google Cloud ML Engine.": 1 + "Social Studies: Interpreting World Cultures through Linguistic Analysis Using Python's NLTK (Natural Language Processing Toolkit)": 1 + "Social Studies: Deciphering Global Cultures with Gensim: A Python Library for NLP": 1 + "Social Studies: Understanding World Cultures Using NLP and Machine Learning Algorithms": 1 + "Social Studies: Exploring Global Societies through Text Analytics with Stanford's CoreNLP": 1 + "Social Studies: Interpreting Worldwide Cultures Utilizing Sentiment Analysis in NLP": 1 + "Social Studies: NLP-Based Cultural Analysis Using Google's BERT (Bidirectional Encoder Representations from Transformers)": 1 + "Social Studies: Cultural Interpretation through Linguistic Analysis Using Spacy, a Python Library for NLP": 1 + "Social Studies: World Cultures Deciphered through NLP and Deep Learning Concepts": 1 + "Social Studies: Utilizing Text Mining in NLP for Interpreting Global Cultures": 1 + "Social Studies: Understanding World Cultures with NLP and TensorFlow's Word2Vec.": 1 + "Science of Movement: Utilizing Biomechanics in Sports": 1 + "Physics in Sports: An In-depth Study of Motion Capture Technology": 1 + "The Role of Accelerometers in Understanding Sports Physics": 1 + "Science of Movement: Exploring Kinematics in Sports Physics": 1 + "The Application of Force Plates in Sports Physics": 1 + "Physics in Sports: The Impact of Inertial Measurement Units": 1 + "The Science of Movement: A Study of Sports Biomechanics Using Gait Analysis": 1 + "Physics in Sports: Understanding Kinetics Through Wearable Sensors": 1 + "Science of Movement: The Use of 3D Motion Analysis in Sports Physics": 1 + "Sports Science: Exploring the Impact of GPS Tracking on Movement Analysis.": 1 + "Exploring Cochlear Mechanics: The Use of Otoacoustic Emissions in Auditory Neuroscience for Beginners": 1 + "Auditory System Neuroscience: The Role of Otoacoustic Emissions and EEG Technology for Novices": 1 + "Introductory Neuroscience: Analyzing the Impact of Otoacoustic Emissions Using MRI Scans": 1 + "Neuroscience 101: The Auditory System, Otoacoustic Emissions, and the Application of fMRI Technology": 1 + "Basics in Neuroscience: Understanding the Auditory System and Otoacoustic Emissions with PET Scans": 1 + "Neuroscience for Beginners: Exploring the Auditory System through Otoacoustic Emissions and Diffusion Tensor Imaging": 1 + "The Auditory System in Neuroscience: Introduction to Otoacoustic Emissions and Transcranial Magnetic Stimulation": 1 + "Beginners Guide to Neuroscience: The Auditory System, Otoacoustic Emissions, and the Use of Spectral Analysis": 1 + "Neuroscience Foundations: The Auditory System, Otoacoustic Emissions, and the Impact of Biofeedback Techniques": 1 + "Exploring Neuroscience: The Auditory System, Otoacoustic Emissions, and the Application of Evoked Potential Measurements.": 1 + "English Text Mapping and Analysis: Utilizing Tensorflow, Python, LSTM and BERT for Advanced Text Mining Techniques ": 1 + "English: Text Mapping and Analysis: Using Tensorflow, Python, LSTM and Word2Vec for Effective Text Mining ": 1 + "English: Text Mapping and Analysis: Incorporating Naive Bayes with Tensorflow, Python and LSTM for Text Mining ": 1 + "English: Text Mapping and Analysis: Using Tensorflow, Python, LSTM and Gensim for Effective Text Mining ": 1 + "English: Text Mapping and Analysis: Utilizing Tensorflow, Python, LSTM and Keras for Deep Learning in Text Mining ": 1 + "English: Text Mapping and Analysis: Using Tensorflow, Python, LSTM and the Bag-of-Words Model for Text Mining ": 1 + "English: Text Mapping and Analysis: Implementing Tensorflow, Python, LSTM and Apache Lucene for Text Mining ": 1 + "English: Text Mapping and Analysis: Applying Tensorflow, Python, LSTM and Scikit-Learn for Machine Learning in Text Mining ": 1 + "English: Text Mapping and Analysis: Using Tensorflow, Python, LSTM and NLTK for Natural Language Processing in Text Mining ": 1 + "English: Text Mapping and Analysis: Combining Tensorflow, Python, LSTM and TF-IDF for Effective Text Mining.": 1 + "Advanced English Literacy: Mastering Story Creation with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Grammarly for Comprehensive Error Checking": 1 + "Advanced English Literacy: Boosting Writing Skills with Amazon Storywriter, Microsoft Word, Hemingway Editor, and the Oxford English Dictionary for Enhanced Vocabulary": 1 + "Advanced English Literacy: Enhancing Readability with Amazon Storywriter, Microsoft Word, Hemingway Editor, and ProWritingAid for Intensive Text Review": 1 + "Advanced English Literacy: Improving Text Quality with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Evernote for Organized Note-taking": 1 + "Advanced English Literacy: Strengthening Composition Skills with Amazon Storywriter, Microsoft Word, Hemingway Editor, and AutoCrit for Detailed Manuscript Analysis": 1 + "Advanced English Literacy: Optimizing Writing Process with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Scribus for Professional Page Layout": 1 + "Advanced English Literacy: Refining Text Clarity with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Google Docs for Collaborative Writing": 1 + "Advanced English Literacy: Enhancing Writing Style with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Zotero for Efficient Research Management": 1 + "Advanced English Literacy: Improving Sentence Structure with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Scrivener for Comprehensive Writing Project Management": 1 + "Advanced English Literacy: Elevating Narrative Skills with Amazon Storywriter, Microsoft Word, Hemingway Editor, and Kindle Create for eBook Formatting.": 1 + "An In-Depth Study of The Impact of Coffee on Brain Nutrition Using fMRI Scans, Neurofeedback Technology, Positron Emission Tomography (PET), and Multivariate Pattern Analysis (MVPA): Investigating the Role of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "Detailed Analysis of Coffee's Effects on Brain Nutrition Through fMRI Scans, PET, Neurofeedback Technology and Electroencephalogram (EEG): A Comprehensive Study on Caffeine, Vitamins B2, B3, B5, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, and Manganese": 1 + "Explicating Coffee’s Nutritional Effects on the Brain using fMRI Scans, PET, Neurofeedback Technology, and Diffusion Tensor Imaging (DTI): A Study on Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5, Caffeine and Manganese": 1 + "Coffee and Brain Nutrition: An Advanced Analysis using fMRI Scans, Neurofeedback Technology, PET, and Voxel-Based Morphometry (VBM): Exploring the Potential Impact of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "Exploring the Neural Impact of Coffee Consumption using fMRI Scans, PET, Neurofeedback Technology, and Functional Near-Infrared Spectroscopy (fNIRS): A Comprehensive Analysis on the Role of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "Comprehensive Analysis of Coffee's Effect on Brain Nutrition Using fMRI Scans, Neurofeedback Technology, PET, and Transcranial Magnetic Stimulation (TMS): Investigating the Role of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "An In-depth Study of Coffee's Impact on Brain Nutrition using fMRI Scans, Neurofeedback Technology, PET, and Magnetic Resonance Spectroscopy (MRS): Evaluating the Role of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "Detailed Examination of Coffee's Influence on Brain Nutrition via fMRI Scans, Neurofeedback Technology, PET, and Optical Coherence Tomography (OCT): A Study on Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5, and Manganese": 1 + "Understanding Coffee's Impact on Brain Nutrition using fMRI Scans, Neurofeedback Technology, PET, and Magnetic Resonance Angiography (MRA): A Comprehensive Study on Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese": 1 + "Coffee and Brain Nutrition: A Detailed Analysis using fMRI Scans, Neurofeedback Technology, PET, and Stereotactic Ablative Radiotherapy (SABR): Assessing the Effects of Caffeine, Antioxidants, Polyphenols, Hydrocinnamic Acids, Trigonelline, Kahweol, Cafestol, Vitamins B2, B3, B5 and Manganese.": 1 + "Elementary Education: Enhancing Reading Comprehension with Interactive Whiteboards": 1 + "Elementary Education: Improving Reading Comprehension Using E-Books ": 1 + "Elementary Education: Boosting Reading Comprehension through Phonics Strategies": 1 + "Elementary Education: The Impact of Text-to-Speech Software on Reading Comprehension": 1 + "Elementary Education: Utilizing Graphic Organizers to Improve Reading Comprehension": 1 + "Elementary Education: The Role of Audiobooks in Reading Comprehension": 1 + "Elementary Education: Incorporating Augmented Reality in Reading Comprehension": 1 + "Elementary Education: Strengthening Reading Comprehension with Guided Reading Sessions": 1 + "Elementary Education: Leveraging Digital Storytelling for Reading Comprehension": 1 + "Elementary Education: Increasing Reading Comprehension through Vocabulary Enrichment Software": 1 + "Basic English: Exploring Similes and Metaphors in Creative Writing and Storytelling": 1 + "Basic English: The Role of Symbolism in Creative Writing and Storytelling": 1 + "Basic English: Utilizing Foreshadowing in Creative Writing and Storytelling": 1 + "Basic English: The Power of Imagery and Tone in Creative Writing and Storytelling": 1 + "Basic English: Harnessing the Power of Adobe Story for Creative Writing and Storytelling": 1 + "Basic English: The Art of Personification in Creative Writing and Storytelling": 1 + "Basic English: The Power of Imagery and Microsoft Word Tools in Creative Writing and Storytelling": 1 + "Basic English: Integrating Conflict in Creative Writing and Storytelling": 1 + "Basic English: Exploring Plot Structure in Creative Writing and Storytelling": 1 + "Basic English: Using Scrivener for Effective Imagery in Creative Writing and Storytelling.": 1 + "Investigating Sound Wave Propagation with Oscilloscopes: A Study on Acoustics Using Decibel Meters and MATLAB for Digital Signal Processing": 1 + "Exploring Acoustics and Sound Wave Propagation Using Decibel Meters, Spectrograms and Python-based Digital Signal Processing": 1 + "An In-depth Study of Sound Wave Propagation: Utilizing Decibel Meters and Fourier Transform in Digital Signal Processing": 1 + "Advanced Acoustics: A Comprehensive Study of Sound Wave Propagation using Decibel Meters, Audacity Software and Digital Signal Processing": 1 + "Understanding Sound Wave Propagation: Acoustics Analysis Using Decibel Meters, Waveform Generators and Digital Signal Processing Techniques": 1 + "Acoustics and Sound Wave Propagation: A Detailed Study with Decibel Meters, Fast Fourier Transforms and Digital Signal Processing": 1 + "Unveiling the Mysteries of Sound Wave Propagation: An Acoustics Study with Decibel Meters and LabVIEW for Digital Signal Processing": 1 + "Acoustics Explored: A Deep Dive into Sound Wave Propagation Using Decibel Meters and DSP Filters in Digital Signal Processing": 1 + "In-depth Exploration of Acoustics: Sound Wave Propagation Using Decibel Meters, Spectral Analysis and Digital Signal Processing": 1 + "Comprehensive Study of Sound Wave Propagation: Harnessing Acoustics with Decibel Meters, Time-Frequency Analysis, and Digital Signal Processing": 1 + "Mathematics: Understanding Fibonacci Patterns through Geometric Sequences Using Python: A Global Perspective": 1 + "Mathematics and Technology: Exploring Progressions in Geometric Sequences with MATLAB: A Global View": 1 + "Geometric Sequences in Mathematics: A Global Overview of Patterns and Progressions Using R Programming": 1 + "Mathematics: Patterns and Progressions in Geometric Sequences: A Global Overview with the Aid of Excel Spreadsheets": 1 + "A Global Overview of Geometric Sequences: Unraveling Mathematical Patterns and Progressions Using GeoGebra": 1 + "Mathematics: A Global Perspective on Patterns and Progressions Using Geometric Sequences and Mathematica": 1 + "Mathematics: Decoding Patterns and Progressions in Geometric Sequences with SPSS: A Global Insight": 1 + "Mathematics: Patterns and Progressions in Geometric Sequences: A Global Overview Using SAS Technology": 1 + "The World of Mathematics: Understanding Patterns and Progressions in Geometric Sequences Using Tableau": 1 + "Mathematics: A Global Examination of Patterns and Progressions in Geometric Sequences Using the Wolfram Language.": 1 + "Literature and the Green Revolution: The Role of Tesla's Solar Inverters in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: Utilizing Wind Turbines in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: Implementing Geothermal Energy in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: The Impact of Hydroelectric Power in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: The Application of Bioenergy in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: Harnessing Tidal Power in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: The Contribution of Nuclear Energy in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: Exploring Carbon Capture and Storage in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: The Potential of Energy Efficiency in 10 Climate Change Narratives": 1 + "Literature and the Green Revolution: The Influence of Smart Grid Technology in 10 Climate Change Narratives.": 1 + "Mastering EQ Tools in Logic Pro: An In-depth Study of the Channel EQ Plugin in Digital Audio Workstations": 1 + "Utilizing Space Designer in Logic Pro: Mastering Audio with Advanced Reverb Tools": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and Compressor Plugin in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: Exploring the Power of the Alchemy Synth in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Comprehensive Guide to Using Flex Time for EQ Tools in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and the Ultrabeat Drum Synth in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Comprehensive Study of EQ Tools and the EXS24 Sampler in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and Advanced MIDI Processing in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and the AutoFilter Plugin in Digital Audio Workstations": 1 + "Mastering Audio in Logic Pro: A Detailed Study of EQ Tools and the Multipressor Plugin in Digital Audio Workstations.": 1 + "Computer Science: Crafting Synthesizer Beats using Oscillators in Logic Pro X's Retro Synth": 1 + "Computer Science: Utilizing Filters in Synthesizer Beat Creation with Logic Pro X's Retro Synth": 1 + "Computer Science: Creating Dynamic Synthesizer Beats with Envelope Generators in Logic Pro X's Retro Synth": 1 + "Computer Science: Mastering LFOs in Synthesizer Beat Production with Logic Pro X's Retro Synth": 1 + "Computer Science: Crafting Synthesizer Beats using MIDI Controllers in Logic Pro X's Retro Synth": 1 + "Computer Science: Exploring Waveform Techniques in Synthesizer Beat Creation with Logic Pro X's Retro Synth": 1 + "Computer Science: Using VCA in Crafting Synthesizer Beats with Logic Pro X's Retro Synth": 1 + "Computer Science: Implementing Modulation Techniques in Synthesizer Beats with Logic Pro X's Retro Synth": 1 + "Computer Science: Crafting Synthesizer Beats with Logic Pro X's Retro Synth Using Sampler Instruments": 1 + "Computer Science: Frequency Modulation in Crafting Synthesizer Beats with Logic Pro X's Retro Synth": 1 + "Biology: The Evolution of Sound and Species Using DNA Sequencing": 1 + "Biology: The Evolution of Sound and Species Explored through Bioinformatics": 1 + "Biology: Phylogenetic Analysis in Understanding The Evolution of Sound and Species": 1 + "Biology: Using Paleontology to Trace The Evolution of Sound and Species": 1 + "Biology: The Evolution of Sound and Species: An Archaeological Perspective": 1 + "Biology: The Evolution of Sound and Species: A Study through Molecular Clocks": 1 + "Biology: The Role of Carbon Dating in The Evolution of Sound and Species": 1 + "Biology: The Evolution of Sound and Species: Insights from Comparative Anatomy": 1 + "Biology: The Evolution of Sound and Species: A Deep Dive into Fossil Records": 1 + "Biology: The Evolution of Sound and Species: A Genomic Approach": 1 + "Biology: The Evolution of Sound and Species: A Glimpse through Radiometric Dating": 1 + "Exploring Stamen Structure: A Deep Dive into Pollination and DNA Sequencing using Scanning Electron Microscopy ": 1 + "Advanced Plant Biology: Pollen Transfer Analysis through DNA Sequencing and Gel Electrophoresis": 1 + "Investigating Flower Fertility: A Study on Pollination using DNA Sequencing and Microscopic Pollen Analysis": 1 + "From Petal to Pistil: A Detailed Study on Pollination using DNA Sequencing and Flow Cytometry": 1 + "Plant Life Unraveled: A Comprehensive Study on Pollination using NGS DNA Sequencing": 1 + "The Biology of Blossoms: A Detailed Study on Pollination using DNA Sequencing and Fluorescent Tagging": 1 + "Pollen Pathways: A Deep Dive into Plant Reproduction using DNA Sequencing and PCR Amplification": 1 + "DNA and Daisies: A Detailed Study on Pollination using Next-Generation Sequencing and Bioinformatics": 1 + "Plant Reproduction Revealed: Detailed Pollination Study using DNA Sequencing and Cryo-electron Microscopy ": 1 + "Blossom Biotechnology: A Detailed Study on Pollination using DNA Sequencing and CRISPR-Cas9.": 1 + "Computer Science: Creating Digital Art with Adobe Photoshop and Wacom Tablets": 1 + "Computer Science: Digital Art Creation using Adobe Photoshop's Layering Technique": 1 + "Computer Science: Graphic Design with Adobe Photoshop: Mastering the Pen Tool": 1 + "Computer Science: Adobe Photoshop: Understanding Vector Graphics in Digital Art": 1 + "Computer Science: Exploring Raster Images in Graphic Design with Adobe Photoshop": 1 + "Computer Science: Graphic Design and Digital Art: An In-depth Study of Adobe Photoshop Filters": 1 + "Computer Science: Adobe Photoshop in Digital Art: The Power of the Brush Tool": 1 + "Computer Science: Digital Art with Adobe Photoshop & 3D Design Tools": 1 + "Computer Science: Utilizing Adobe Photoshop for Texturing in Digital Art": 1 + "Computer Science: Advanced Graphic Design: Adobe Photoshop and Color Theory.": 1 + "Language Arts: Exploring Literary Food Narratives Across Cultures through Metaphors": 1 + "Language Arts: Analyzing Cross-Cultural Culinary Narratives using Structuralism": 1 + "Language Arts: A Comparative Study on Food Narratives in Literature using Post-Colonial Theory": 1 + "Language Arts: Understanding Food Narratives in Literature through Symbolism": 1 + "Language Arts: The Role of Food in Literary Narratives Across Cultures: A Semiotic Approach": 1 + "Language Arts: Using Discourse Analysis in Interpreting Food Narratives Across Cultures": 1 + "Language Arts: Evaluating Food Narratives in World Literature through Gender Studies Lens": 1 + "Language Arts: The Influence of Food Narratives on Cultural Identity in Literature: A Psychoanalytic Perspective ": 1 + "Language Arts: Deconstructing Food Narratives Across Cultures in Literature": 1 + "Language Arts: A New Historicism Approach to Food Narratives in Cross-Cultural Literature": 1 + "Language Arts: Food Narratives Across Cultures: A Study through the Lens of Eco-Criticism": 1 + "Elementary Education 305: Implementing Kahoot Quizzes via Google Classroom's Assignment Feature for Cooperative Games": 1 + "Elementary Education 305: Utilizing Google Forms in Cooperative Games through Google Classroom's Assignment Tool": 1 + "Elementary Education 305: Incorporating Flipgrid Discussions for Cooperative Games Using Google Classroom's Assignment Feature": 1 + "Elementary Education 305: Streamlining Cooperative Games with Google Classroom's Assignment Feature and Google Slides": 1 + "Elementary Education 305: Enhancing Cooperative Games using Quizlet Live and Google Classroom's Assignment Tool": 1 + "Elementary Education 305: Integrating Padlet for Collaborative Activities in Google Classroom's Assignments": 1 + "Elementary Education 305: Using Google Docs for Team Projects in Cooperative Games via Google Classroom's Assignment Feature": 1 + "Elementary Education 305: Streamlining Cooperative Games with Google Classroom's Assignment Feature and Nearpod Lessons": 1 + "Elementary Education 305: Applying EdPuzzle for Interactive Learning in Cooperative Games through Google Classroom's Assignment Tool": 1 + "Elementary Education 305: Incorporating Pear Deck for Interactive Presentations in Cooperative Games Using Google Classroom's Assignment Feature.": 1 + "Introduction to Computer Science: Exploring Algorithms with Python": 1 + "Introduction to Computer Science: Exploring Algorithms using Java": 1 + "Introduction to Computer Science: Exploring Algorithms and Data Structures": 1 + "Introduction to Computer Science: Hands-on with Algorithms in C++": 1 + "Introduction to Computer Science: Unfolding Algorithms with MATLAB": 1 + "Introduction to Computer Science: The Art of Algorithms in JavaScript": 1 + "Introduction to Computer Science: Diving into Algorithms using Swift": 1 + "Introduction to Computer Science: Algorithmic Thinking with Ruby": 1 + "Introduction to Computer Science: Exploring Algorithms and Big O Notation": 1 + "Introduction to Computer Science: Algorithms Analysis using R": 1 + "Economics of Music: Unraveling Sound Industry with Spotify's AI and Machine Learning through Python Programming": 1 + "Exploring Music Economics: A Deep Dive into Spotify's AI Using Tensorflow": 1 + "Music Market Analysis: Decoding Spotify's AI and Machine Learning with Big Data Analytics": 1 + "Rhythm of Profit: Understanding Music Economics via Spotify's AI and Blockchain Technology": 1 + "Economic Harmonies: Leveraging Spotify's AI and Machine Learning with Neural Networks": 1 + "The Beat of Economics: Unpacking Spotify's AI and Machine Learning using Predictive Modelling": 1 + "Sound Investments: Evaluating Music Industry Economics through Spotify's AI and Data Visualization Tools": 1 + "Music and Money: Delving into Spotify's AI and Machine Learning with Quantitative Methods": 1 + "Harmonizing Economics and Music: A Study on Spotify's AI and Machine Learning through Data Mining Techniques": 1 + "Exploring Economics of Tunes: An Insight into Spotify's AI and Machine Learning with Cloud Computing": 1 + "World History: The Impact of the Printing Press on Paper Money and Trade Development in Ancient Civilizations": 1 + "The Consequences of Paper Money on Maritime Trade and Advancement of Civilizations: A Focus on the Compass": 1 + "World History: The Influence of the Abacus on Accounting for Paper Money and Trade Expansion": 1 + "The Impact of Paper Money on Trade and Advancement of Civilizations: Exploring the Role of the Wheel in Transport": 1 + "World History: The Effect of Paper Money on Trade and Civilizations Advancement with the Use of the Telegraph for Communication": 1 + "Investigating the Role of the Sundial in the Trade and Advancement of Civilizations using Paper Money": 1 + "The Impact of Paper Money on Trade and Advancement: The Crucial Role of the Water Wheel in Industrialization": 1 + "World History: The Consequences of Paper Money and the Introduction of the Spinning Wheel on Trade and Civilizations": 1 + "The Role of the Plough in Agricultural Trade and Advancement of Civilizations using Paper Money": 1 + "World History: The Influence of Paper Money on Trade and Civilizations Advancement: A Study on the Use of the Telescope in Navigation.": 1 + "Exploring Deep Learning Algorithms with TensorFlow in Neural Networks and Decision Making": 1 + "The Use of PyTorch in Deep Learning Algorithms for Understanding Neural Networks": 1 + "Understanding Neural Networks and Decision Making: The Role of Keras in Deep Learning": 1 + "The Application of Deep Learning Algorithms with Python in Neural Networks Analysis": 1 + "The Use of Deep Learning Algorithms in Neural Networks and Decision Making: A Focus on R Programming": 1 + "The Application of Convolutional Neural Networks in Decision Making: A Deep Learning Approach": 1 + "Applying Deep Learning Algorithms through Jupyter Notebook for Neural Networks": 1 + "The Role of Support Vector Machines in Deep Learning Algorithms for Neural Networks": 1 + "Understanding Neural Networks through Decision Trees: A Deep Learning Perspective": 1 + "The Application of Deep Learning Algorithms in Understanding Recurrent Neural Networks and Decision Making.": 1 + "Geography: Analyzing Earth's Topography with DJI Phantom 4 Pro Drone Technology": 1 + "Geography: Aerial Inspection of Earth's Landscape using LiDAR Drone Technology": 1 + "Geography: Investigating Earth's Terrain using Thermal Imaging Drones": 1 + "Geography: Surveying Earth's Landscape with GPS Enabled Drone Technology": 1 + "Geography: Exploring Earth’s Terrain with Drone Photogrammetry Techniques": 1 + "Geography: Mapping Earth's Landscape using 3D Modeling Drones": 1 + "Geography: Examination of Earth's Surface using Multispectral Sensor Drones": 1 + "Geography: Assessing Earth's Landscape with RTK Drone Technology": 1 + "Geography: Study of Earth's Landscape using Drone Remote Sensing Technology": 1 + "Geography: Reviewing Earth's Terrain with Drone-based Radar Systems.": 1 + "The Use of Oil Paint in Art and Environment: Depicting Nature in Visual Arts": 1 + "Art and Environment: The Role of Digital Technology in Nature Representation": 1 + "Art and Environment: Exploring Pastels in the Portrayal of Nature": 1 + "The Impact of Charcoal in Art and Environment: Nature's Portrayal": 1 + "Art and Environment: The Influence of Photography on Nature Representation": 1 + "Abstract Art and Environment: The Representation of Nature through Cubism": 1 + "Art and Environment: The Significance of Sculpture in Nature's Depiction": 1 + "The Power of Watercolors in Art and Environment: Visualizing Nature": 1 + "Art and Environment: Illustrating Nature through Collage Techniques": 1 + "The Role of Printmaking in Art and Environment: Nature's Visual Representation": 1 + "Art: The Influence of Natural Environment on Impressionist Artistic Styles and the Role of Oil Paints": 1 + "Art: The Impact of Natural Scenery on Impressionist Styles - A Study on Plein Air Technique": 1 + "Art: Exploring the Influence of Natural Environment on Impressionist Artistic Styles through Brushwork": 1 + "Art: The Influence of Natural Environment on Impressionist Styles - An Analysis of Color Theory": 1 + "Art: The Role of Palette Knife in the Natural Environment's Influence on Impressionist Art": 1 + "Art: A Deep Dive into the Relationship between Impressionism and the Natural Environment - The Case of Dry Brush Technique": 1 + "Art: The Influence of Natural Environment on Impressionist Artistic Styles - A Study on the Use of Gouache": 1 + "Art: The Role of Natural Lighting in the Impressionist Artistic Styles": 1 + "Art: The Influence of Natural Environment on Impressionist Styles - The Contribution of Underpainting": 1 + "Art: The Effect of Natural Environment on Impressionist Artistic Styles and the Use of Tonalism.": 1 + "Computer Science: Utilizing Kubernetes and Docker in Action: Building Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Python in Action: Creating Fitness Apps for Athletes based on Cloud": 1 + "Computer Science: Kubernetes and TensorFlow in Action: Building AI-Powered Fitness Apps for Athletes on Cloud": 1 + "Computer Science: Kubernetes and Node.js in Action: Building Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes, React Native and Cloud Computing: Building Mobile Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and CI/CD Practices: Developing Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and AWS in Action: Constructing Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes, REST APIs and Cloud Services: Building Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes and Microservices in Action: Building Cloud-Based Fitness Apps for Athletes": 1 + "Computer Science: Kubernetes, Machine Learning and Cloud Technology: Building Personalized Fitness Apps for Athletes": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to Deep Learning": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to Convolutional Neural Networks": 1 + "Principles of Neurocomputing: Exploring Backpropagation in an Interdisciplinary Approach ": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to Genetic Algorithms": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to Recurrent Neural Networks": 1 + "Principles of Neurocomputing: Focusing on Supervised Learning in an Interdisciplinary Approach ": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to Reinforcement Learning ": 1 + "Principles of Neurocomputing: Addressing Overfitting in an Interdisciplinary Approach ": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to TensorFlow ": 1 + "Principles of Neurocomputing: An Interdisciplinary Approach to PyTorch.": 1 + "Microeconomic Analysis of Consumer Behavior Using the Concept of Utility Maximization and Quantitative Tools": 1 + "Consumer Behavior Analysis in Economics: Utility Maximization and the Role of Game Theory": 1 + "Econometric Approach to Consumer Behavior: Utility Maximization and Regression Analysis ": 1 + "Behavioral Economics: Analysis of Consumer Behavior Using Utility Maximization and Big Data Analytics": 1 + "Consumer Behavior in Economics: An In-depth Study on Utility Maximization Using Machine Learning ": 1 + "Economics of Consumer Behavior: Utility Maximization and Decision-Making Using Artificial Intelligence": 1 + "Advanced Economics: Consumer Behavior Analysis Using the Concept of Utility Maximization and Bayesian Probability": 1 + "Consumer Behavior under the Lens of Economics: Utility Maximization and Predictive Modeling Techniques": 1 + "Economics and Consumer Behavior: Studying Utility Maximization using Statistical Analysis Software (SAS)": 1 + "Economics: A Comprehensive Analysis of Consumer Behavior through Utility Maximization and Data Visualization Tools.": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Use of fMRI": 1 + "Neuroscience Foundations: The Role of EEG in Brain Basics and DTI Technology": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and PET Scans": 1 + "Exploring Brain Basics and DTI Technology with Neurotransmitter Analysis in Neuroscience Foundations": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Application of TMS": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Significance of Synaptic Plasticity": 1 + "Neuroscience Foundations: Impact of Neurogenesis in Brain Basics and DTI Technology": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Integration of Optogenetics": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Exploration of Neural Networks": 1 + "Neuroscience Foundations: Brain Basics, DTI Technology, and the Implication of Neuropharmacology.": 1 + "Music and Tech: Utilizing FL Studio's Mixer and Parametric EQ2 for Superior Digital Audio Workstation Capabilities": 1 + "The Impact of FL Studio's Mixer and Fruity Reverb 2 on Digital Audio Workstation Performance": 1 + "Exploring FL Studio's Mixer and VST Plugins: A Deep Dive into Digital Audio Workstation Enhancement": 1 + "Music and Tech: How FL Studio's Mixer and Fruity Limiter Enhance Digital Audio Workstation Capabilities": 1 + "FL Studio's Mixer and the Power of Automation Clips in Improving Digital Audio Workstation Functions": 1 + "Harnessing FL Studio's Mixer and MIDI Out for Robust Digital Audio Workstation Capabilities": 1 + "Music and Tech: The Role of FL Studio's Mixer and Wave Candy in Amplifying Digital Audio Workstation Potential": 1 + "Introducing FL Studio's Mixer and Edison: Next-Level Digital Audio Workstation Capabilities": 1 + "The Synergy of FL Studio's Mixer and Stereo Shaper: Enhancing Digital Audio Workstation Capabilities": 1 + "Music and Tech: Raising the Bar with FL Studio's Mixer and Fruity Convolver in Digital Audio Workstations": 1 + "Advanced Techniques for Sampling Timpani Rhythms in Reason Using Audio Interfaces: A Comprehensive Guide to Propellerhead Reason's Sampling Tools ": 1 + "Mastering Music Production: Sampling Timpani Rhythms in Reason with Focusrite Scarlett 2i2 Audio Interface": 1 + "Music Production Mastery: Sampling Timpani Rhythms in Reason Using Pro Tools and Steinberg UR22 Audio interface": 1 + "Advanced Sampling Techniques: Using Ableton Live and Focusrite Clarett 2Pre for Timpani Rhythms in Music Production": 1 + "Music Production: Advanced Techniques for Sampling Timpani Rhythms in Reason Using MIDI Controllers and Universal Audio Apollo Twin Interface": 1 + "Essential Music Production: Sampling Timpani Rhythms in Reason with Akai Professional MPK Mini MKII and Audient iD14 Audio Interface": 1 + "Advanced Music Production: Timpani Rhythms Sampling in Reason Using Roland A-800PRO and PreSonus AudioBox Interface": 1 + "Expert Techniques in Music Production: Sampling Timpani Rhythms in Reason Using M-Audio Code 49 and MOTU M2 Audio Interface": 1 + "Music Production: Enhancing Timpani Rhythms Sampling in Reason Using Novation Launchkey 49 and Native Instruments Komplete Audio 6 Interface": 1 + "Music Production Techniques: Advanced Sampling of Timpani Rhythms in Reason Using Arturia KeyLab Essential 49 and Behringer U-Phoria UMC204HD Audio Interface.": 1 + "Music: Introduction to Reading and Writing Sheet Music using Sibelius Software": 1 + "Music: Mastering the Art of Sheet Music Composition with Finale Software": 1 + "Music: Introduction to Reading and Writing Sheet Music: A Focus on MIDI Technology ": 1 + "Music: Exploring Sheet Music through the Lens of Digital Audio Workstations": 1 + "Music: Decoding Sheet Music with Music Transcription Software": 1 + "Music: Introduction to Reading and Writing Sheet Music using MuseScore": 1 + "Music: Interpreting Sheet Music: A Deep Dive into Music Notation Software": 1 + "Music: The Role of Sequencing Software in Reading and Writing Sheet Music": 1 + "Music: Introduction to Reading and Writing Sheet Music: Understanding Music XML": 1 + "Music: Advanced Sheet Music Reading and Writing with Logic Pro X": 1 + "Utilizing The Magnetic Layout Tool in Advanced Mixing Techniques in Sibelius Software for Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Employing The Sibelius Inspector for Advanced Mixing Techniques: Exploring the Harmony of Rhymes in Children's Poetry": 1 + "Harnessing The Note Input Method in Sibelius for Advanced Music Mixing Techniques: The Harmony of Rhymes in Children's Poetry": 1 + "Exploring Advanced Music Mixing Techniques in Sibelius Software Using The Panorama Feature: The Harmony of Rhymes in Children's Poetry": 1 + "The Power of The Timeline Window: Advanced Mixing Techniques in Sibelius Software for Music Composition and The Harmony of Rhymes in Children's Poetry": 1 + "Leveraging The Ideas Hub in Advanced Music Mixing Techniques in Sibelius Software: The Harmony of Rhymes in Children's Poetry": 1 + "Advanced Mixing Techniques in Sibelius Software Using The Dynamic Parts Feature: The Harmony of Rhymes in Children's Poetry": 1 + "Employing The Sibelius Flexi-time Input for Advanced Music Mixing Techniques: The Harmony of Rhymes in Children's Poetry": 1 + "The Transformative Power of The Sibelius ReWire Support: Advanced Mixing Techniques in Music Composition and The Harmony of Rhymes in Children's Poetry": 1 + "Exploring The Live Tempo in Advanced Mixing Techniques in Sibelius Software for Music Composition: The Harmony of Rhymes in Children's Poetry": 1 + "Sonification of Planetary Orbits Using Kepler's Laws: A Unique Approach to Music and Astrophysics": 1 + "Integrating MIDI Technology in Sonification of Planetary Orbits: A Course in Music and Astrophysics": 1 + "Planetary Orbits Sonification Using Python Programming: A Course in Music and Astrophysics": 1 + "Sonification of Planetary Orbits with Oscillators: A Course in Music and Astrophysics": 1 + "Sonification of Planetary Orbits: Utilizing NASA's Data and Music Theory for Astrophysics": 1 + "Exploring Planetary Orbits through Sonification and Spectrogram Analysis: A Course in Music and Astrophysics": 1 + "Sonification of Planetary Orbits: A Practical Approach using Max MSP in Music and Astrophysics": 1 + "Planetary Orbits Sonification with Audacity: A Course in Music and Astrophysics": 1 + "Sonification of Planetary Orbits: Using Gravitational Waves in Music and Astrophysics": 1 + "Employing Fourier Transform in Sonification of Planetary Orbits: A Course in Music and Astrophysics.": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: A Practical Approach with PyTorch and Convolutional Neural Networks": 1 + "Integrating Recurrent Neural Networks in Point Neurons and Neural Networks: A Practical Approach with PyTorch": 1 + "Applying Genetic Algorithms in Point Neurons and Neural Networks: A Practical Approach with PyTorch": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: Deep Learning with PyTorch": 1 + "Point Neurons and Neural Networks: An Advanced Guide to Computational Neuroscience using PyTorch and TensorFlow": 1 + "Exploring SVMs in Point Neurons and Neural Networks in Computational Neuroscience: A Practical Approach with PyTorch": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: A Practical Approach with PyTorch and Keras": 1 + "Understanding Backpropagation in Point Neurons and Neural Networks: A Practical Approach with PyTorch": 1 + "Point Neurons and Neural Networks in Computational Neuroscience: A Practical Approach with PyTorch and Autoencoders": 1 + "Point Neurons and Neural Networks: A Practical Approach to Computational Neuroscience with PyTorch and GANs": 1 + "Health Education: The Influence of Climate on Health and Disease - Using GIS Mapping to Track Epidemics": 1 + "Health Education: The Impact of Climate on Cardiovascular Diseases - A Deep Dive into Predictive Modeling": 1 + "Health Education: Climate Change and Respiratory Illnesses - Exploring Solutions Through Air Purification Technology": 1 + "Health Education: Climate Influence on Infectious Diseases - An Investigation Using High Throughput Sequencing": 1 + "Health Education: Climate's Role in Mental Health Disorders - Leveraging Teletherapy for Remote Interventions": 1 + "Health Education: Exploring Climate Impact on Health - Using AI for Predictive Analysis and Solutions": 1 + "Health Education: Climate Change and Its Impact on Zoonotic Diseases - The Role of Drone Technology in Surveillance": 1 + "Health Education: Climate Change Effects on Nutrition and Health - The Promise of Hydroponic Farming": 1 + "Health Education: The Effect of Climate on Tropical Diseases - Role of Machine Learning in Creating Predictive Models": 1 + "Health Education: Climate-Induced Health Risks - Tackling Challenges with Wearable Health Tech Devices.": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, Tableau and Python for Spotify Analysis": 1 + "Data Visualization in Music: Streaming Revenue Insights in the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Data Visualization in Music: Applying Machine Learning to Economic Insights into the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, Tableau and SQL for Predictive Analytics": 1 + "Data Visualization in Music: Economic Trends and Consumer Behavior in the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, Tableau and Hadoop for Real-Time Analysis": 1 + "Data Visualization in Music: Exploring Market Segmentation in the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, Tableau and Power BI for Comparative Study": 1 + "Data Visualization in Music: Understanding Artist Royalties in the Sound Industry using Big Data, R Programming, and Tableau": 1 + "Data Visualization in Music: Economic Insights into the Sound Industry using Big Data, R Programming, Tableau and Google Analytics for Web Traffic Analysis": 1 + "Nature's Numbers: Exploring Algebraic Concepts through the Lens of Graph Theory": 1 + "Nature's Numbers: An Introduction to Mathematics with Emphasis on Algebraic Concepts and Matrix Operations": 1 + "Nature's Numbers: Unfolding Algebraic Concepts through the Application of Calculators": 1 + "Nature's Numbers: Delving into Mathematics with Algebraic Concepts and Polynomial Equations": 1 + "Nature's Numbers: A Mathematical Journey through Algebraic Concepts and Linear Algebra": 1 + "Nature's Numbers: Understanding Mathematics through Algebraic Concepts and Quadratic Equations": 1 + "Nature's Numbers: An Insight into Mathematics with Algebraic Concepts using Geometric Progressions": 1 + "Nature's Numbers: Mastering Mathematics with Algebraic Concepts through the Use of Python Programming": 1 + "Nature's Numbers: A Comprehensive Guide to Mathematics with Algebraic Concepts and Fractional Exponents": 1 + "Nature's Numbers: Decoding Mathematics with Algebraic Concepts using Mathematical Modeling.": 1 + "Science Wonders: Understanding the Solar System through Telescopes": 1 + "Science Wonders: The Role of Satellites in Exploring the Solar System": 1 + "Science Wonders: The Hubble Space Telescope and the Solar System": 1 + "Science Wonders: Exploring the Solar System through Spectroscopy": 1 + "Science Wonders: The Mars Rover and the Exploration of the Solar System": 1 + "Science Wonders: Unveiling the Solar System with Space Probes": 1 + "Science Wonders: The Influence of Gravity on the Solar System": 1 + "Science Wonders: Exploring the Solar System with Radio Astronomy": 1 + "Science Wonders: The Solar System and the Principles of Astrophysics": 1 + "Science Wonders: The Solar System through the Lens of Infrared Astronomy": 1 + "Social Studies: The Impact of Snapchat's Geofilter Technology on Global Connectivity": 1 + "Social Studies: Snapchat's Role in Influencing Social Media Algorithms": 1 + "Social Studies: The Influence of Snapchat's Bitmoji on Global Social Media Interaction": 1 + "Social Studies: The Influence of Snapchat's Discover Feature on Global Media Consumption": 1 + "Social Studies: Snapchat's AR Lenses: Their Impact on Social Media and Global Connectivity": 1 + "Social Studies: Exploring Snapchat's Streaks Feature as a Catalyst for Social Interaction": 1 + "Social Studies: The Influence of Snapchat's Memories Feature on Social Media Archiving Practices": 1 + "Social Studies: The Role of Snapchat's Story Feature in Shaping Global Social Media Trends": 1 + "Social Studies: Snapchat's Snap Map Feature and its Impact on Global Connectivity": 1 + "Social Studies: The Influence of Snapchat's Snapcash on Social Media Financial Transactions.": 1 + "Mastering Audio in Logic Pro: An In-Depth Study of EQ Tools, Compressor Plugin, and Flex Pitch Technology in Digital Audio Workstations": 1 + "Harnessing the Power of Automation in Logic Pro: EQ Tools and Compressor Plugin Comprehensive Study": 1 + "Mastering Audio in Logic Pro: Exploring EQ Tools, Compressor Plugin, and Space Designer Reverb in Digital Audio Workstations": 1 + "Advanced Audio Techniques: A Detailed Look at EQ Tools, Compressor Plugin, and Ultrabeat Drum Synthesizer in Logic Pro": 1 + "Mastering Audio in Logic Pro: The Science of EQ Tools, Compressor Plugin, and Alchemy Synth in Digital Audio Workstations": 1 + "Sound Design in Logic Pro: A Complete Guide to EQ Tools, Compressor Plugin, and EXS24 Sampler": 1 + "Mastering Audio in Logic Pro: A Comprehensive Study of EQ Tools, Compressor Plugin, and the Vintage Opto Compressor": 1 + "Audio Production in Logic Pro: Exploring EQ Tools, Compressor Plugin, and MIDI Sequencing Techniques": 1 + "The Art of Audio: EQ Tools, Compressor Plugin, and Channel EQ in Logic Pro Explained": 1 + "Mastering Audio in Logic Pro: A Deep Dive into EQ Tools, Compressor Plugin, and Surround Sound Panning.": 1 + "Creating Beats with Python, Audacity, Oscillators and Fourier Transformations: An Introduction to Time Domain Processing": 1 + "Utilizing Python and Audacity for Beat Creation: An Introduction to Time Domain Processing with Waveforms ": 1 + "Exploring Time Domain Processing with Python, Audacity, Oscillators and MIDI Controllers: A Course in Beat Creation": 1 + "Mastering Beat Creation with Python, Audacity, Oscillators and Digital Signal Processing: An Introduction to Time Domain Processing": 1 + "Python, Audacity, Oscillators and Ableton Live: An Introduction to Time Domain Processing for Beat Creation": 1 + "An Introduction to Time Domain Processing: Creating Beats using Python, Audacity, Oscillators and Logic Pro Tools": 1 + "Beat Creation with Python, Audacity, Oscillators and Spectral Analysis: A Deep-Dive into Time Domain Processing": 1 + "Python, Audacity, Oscillators and Cubase: An Advanced Approach to Time Domain Processing for Beat Creation": 1 + "Building Beats using Python, Audacity, Oscillators and Reason: A Comprehensive Guide to Time Domain Processing": 1 + "Time Domain Processing in Beat Creation: Using Python, Audacity, Oscillators and FL Studio Techniques.": 1 + "Mathematics: Advanced Sports Analytics with SPSS and Python Programming ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and R Programming ": 1 + "Mathematics: Advanced Sports Analytics using SPSS and Linear Regression ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and Machine Learning ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and SQL Databases ": 1 + "Mathematics: Advanced Sports Analytics using SPSS and Big Data Algorithms ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and Tableau Visualization ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and Data Mining Techniques ": 1 + "Mathematics: Advanced Sports Analytics with SPSS and Predictive Modelling ": 1 + "Mathematics: Advanced Sports Analytics using SPSS and Monte Carlo Simulations": 1 + "Computer Science: Python Coding Basics with Clay Animation": 1 + "Computer Science: Introduction to Java and Clay Animation": 1 + "Computer Science: Exploring HTML through Clay Animation": 1 + "Computer Science: Understanding CSS with Clay Animation Basics": 1 + "Computer Science: C++ Coding Fundamentals and Clay Animation": 1 + "Computer Science: Basics of JavaScript with Clay Animation": 1 + "Computer Science: Visualizing SQL Queries through Clay Animation": 1 + "Computer Science: Ruby Programming and Clay Animation for Beginners": 1 + "Computer Science: Swift Coding Essentials with Clay Animation": 1 + "Computer Science: Learning PHP through Clay Animation Techniques": 1 + "Elementary Mathematics: Exploring Regression Analysis in Statistics and Probability using SPSS": 1 + "Understanding Excel Tools in Regression Analysis for Elementary Mathematics": 1 + "Elementary Mathematics: A Deep Dive into Regression Analysis using R programming": 1 + "Elementary Mathematics: Regression Analysis in Statistics and Probability with Python": 1 + "Exploring Regression Analysis through Linear Models in Elementary Mathematics": 1 + "Elementary Mathematics: Understanding Regression Analysis using Statistical Software Stata": 1 + "Regression Analysis in Statistics and Probability using SAS: A Course in Elementary Mathematics": 1 + "Elementary Mathematics: Leveraging MATLAB for Regression Analysis in Statistics and Probability": 1 + "Understanding Regression Analysis with Machine Learning Techniques in Elementary Mathematics": 1 + "Elementary Mathematics: Implementing Regression Analysis in Statistics and Probability with Tableau.": 1 + "Elementary Education 305: Utilizing SMART Boards in Cooperative Games": 1 + "Elementary Education 305: Enhancing Cooperative Games with Kahoot Quizzes": 1 + "Elementary Education 305: Leveraging Google Classroom for Cooperative Games": 1 + "Elementary Education 305: Interactive Whiteboards for Cooperative Games in Elementary Education": 1 + "Elementary Education 305: The Integration of Kahoot and Zoom in Cooperative Games": 1 + "Elementary Education 305: Using iPad Apps in Cooperative Games": 1 + "Elementary Education 305: Cooperative Games using Digital Whiteboards and Seesaw": 1 + "Elementary Education 305: Cooperative Games with Microsoft Teams and Digital Whiteboards": 1 + "Elementary Education 305: Exploring Cooperative Games with Digital Whiteboards and Pear Deck": 1 + "Elementary Education 305: Implementing Flipgrid in Cooperative Games with Digital Whiteboards": 1 + "Philosophy and IoT: Dissecting Blockchain's Ethical Dilemmas in the Digital Age Using AI and Ten Unique solutions": 1 + "Blockchain and Ethics: A Deep Dive into IoT Dilemmas in the Digital Age with Crowdsourcing and Ten Innovative Solutions": 1 + "Philosophy of IoT: The Blockchain Dilemma Explored Through Quantum Computing and Ten Potential Resolutions": 1 + "IoT and Philosophy: Unraveling Blockchain's Ethical Challenges in the Digital Age Via Machine Learning and Ten Practical Answers": 1 + "Blockchain Ethics in IoT: Investigating Digital Age Conflicts Through Cloud Computing and Ten Possible Remedies": 1 + "Exploring Blockchain's Ethical Quagmires in IoT: A Digital Age Investigation Using Big Data and Ten Probable Solutions": 1 + "Philosophy and IoT: Delving into Blockchain's Ethical Impasses with Cybersecurity and Ten Plausible Fixes": 1 + "Blockchain's Ethical Paradoxes: A Philosophical Study in IoT Using Neural Networks and Ten Realistic Solutions": 1 + "Ethical Dilemmas in Blockchain: An IoT Exploration Through Augmented Reality and Ten Unique Solutions": 1 + "The Philosophy of Blockchain in IoT: Deciphering Ethical Dilemmas in the Digital Age Through Virtual Reality and Ten Possible Solutions": 1 + "Analytical Logic: Comprehensive Understanding of Propositional Logic using Truth Tables and Venn Diagrams": 1 + "Logical Fallacies Dissected: A Deep Dive into Straw Man Fallacy with Venn Diagrams and Modal Logic": 1 + "Analytical Logic: Exploring Essential Concepts through Predicate Logic and Venn Diagrams": 1 + "Analytical Logic: Using Python to Dissect Logical Fallacies with Venn Diagrams ": 1 + "Analytical Logic: Applying Formal Logic Symbols in Essential Concepts and Logical Fallacies": 1 + "Analytical Logic: Decoding Essential Concepts using Karnaugh Maps and Logical Fallacies": 1 + "Logical Fallacies Deciphered: Exploring Red Herring Fallacy with Venn Diagrams and Modal Logic": 1 + "Analytical Logic: Essential Concepts and Logical Fallacies Dissected with Venn Diagrams and Boolean Algebra": 1 + "Analytical Logic: Essential Concepts and Logical Fallacies Analyzed using Syllogistic Logic and Venn Diagrams": 1 + "Analytical Logic: Understanding Ad Hominem Fallacy with Venn Diagrams and Modal Logic": 1 + "Periodic Table Pioneers: Exploring Chemistry with a TI-84 Graphing Calculator for Kids": 1 + "Atomic Adventures: Learning Chemistry with a Molecular Model Kit for Children": 1 + "Periodic Table Pioneers: Discovering Chemistry through Virtual Reality Technology for Kids": 1 + "Chemical Conquest: Understanding Chemistry with the pH Scale for Young Learners": 1 + "Periodic Table Explorers: Unveiling Chemistry with Advanced Microscopes for Kids": 1 + "Atomic Architects: Grasping Chemistry with 3D Printing Technology for Children ": 1 + "Periodic Table Heroes: Learning Chemistry with Spectrophotometers for Young Minds": 1 + "Chemistry Quest: Periodic Table and Atoms with Augmented Reality for Kids": 1 + "Periodic Table Pioneers: Experiments in Chemistry with Distillation Kits for Kids": 1 + "Elemental Explorers: Understanding Chemistry with Electron Microscopes for Kids.": 1 + "Elementary Mathematics: Exploring Algebra Basics with Microsoft Excel and VLOOKUP Function": 1 + "Elementary Mathematics: Understanding Algebra Basics with Microsoft Excel and Pivot Tables": 1 + "Elementary Mathematics: Mastering Algebra Basics with Microsoft Excel and Conditional Formatting": 1 + "Elementary Mathematics: Algebra Basics Made Easy with Microsoft Excel and Macros": 1 + "Elementary Mathematics: Algebra Basics Unleashed with Microsoft Excel and Solver Tool": 1 + "Elementary Mathematics: Simplifying Algebra Basics with Microsoft Excel and Data Validation": 1 + "Elementary Mathematics: Algebra Basics and Data Analysis with Microsoft Excel and Chart Tools": 1 + "Elementary Mathematics: Interactive Algebra Basics with Microsoft Excel and Slicers": 1 + "Elementary Mathematics: Decoding Algebra Basics with Microsoft Excel and Array Formulas": 1 + "Elementary Mathematics: Algebra Basics in Depth with Microsoft Excel and Power Query.": 1 + "English Literature: A Deep Dive into Shakespeare's Tragedies Through Textual Analysis": 1 + "English Literature: Exploring Shakespeare's Comedies through Dramatic Irony": 1 + "English Literature: Understanding Shakespeare's Sonnets with Metaphorical Interpretation": 1 + "English Literature: A Study of Shakespeare's Histories Through Contextual Analysis": 1 + "English Literature: An Introduction to Shakespeare's Plays through Stagecraft Techniques": 1 + "English Literature: Appreciating Shakespeare's Poetry through Rhythmic Breakdown": 1 + "English Literature: Decoding Shakespeare's Language with Digital Text Analysis ": 1 + "English Literature: Interpreting Shakespeare's Work through Feminist Theory": 1 + "English Literature: An Exploration of Shakespeare's Characters using Psychoanalytic Theory": 1 + "English Literature: Unraveling Metaphors in Shakespeare's Plays through Symbolic Analysis": 1 + "English Literature: A Journey through Shakespeare's World with Historical Contextualization.": 1 + "Exploring DNA Methylation: Advanced Techniques in PCR, DNA Sequencing and Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Bisulfite Sequencing": 1 + "Unraveling Genomic Mysteries: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Next Generation Sequencing": 1 + "Cell Biology Unleashed: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and CRISPR-Cas9": 1 + "Mastering Genomics: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Pyrosequencing": 1 + "Cell Biology Unleashed: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and RNA-Seq": 1 + "Bridging the Gap: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Comparative Genomic Hybridization ": 1 + "Advanced Cell Biology: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Single Cell Genomics": 1 + "Genomic Revolution: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Whole Genome Sequencing": 1 + "Demystifying Cell Biology: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and SNP Genotyping": 1 + "Cell Biology Unleashed: Advanced Techniques in PCR, DNA Sequencing, Chromatin Immunoprecipitation Using Microarray Technology, Flow Cytometry and Quantitative Trait Loci Analysis": 1 + "Advanced Use of Optical Spectrum Analyzer in Optical Fibre Technology: A Detailed Study on Fibre Optic Cables": 1 + "In-depth Analysis of Optical Power Meter in Optical Fibre Technology: Unveiling the Potential of Fibre Optic Cables": 1 + "Optical Fibre Technology: Role of Optical Attenuator in Enhancing the Performance of Fibre Optic Cables": 1 + "Optical Time-Domain Reflectometer and its Interface with Fusion Splicer in Optical Fibre Technology": 1 + "Optical Fibre Technology: Exploring Fibre Optic Cables through the Lens of Optical Termination Unit": 1 + "Optical Fibre Connector's Impact on Optical Time-Domain Reflectometer in Computing Science": 1 + "Optical Fibre Technology: A Comprehensive Study on Fibre Optic Cables and the Application of Fibre Optic Tester": 1 + "Understanding the Role of Optical Fibre Identifier in Optical Time-Domain Reflectometer within Computing Science": 1 + "Optical Fibre Technology: The Contribution of Optical Fibre Splice Closure to Fibre Optic Cables' Efficiency": 1 + "Optical Fibre Technology: The Integration of Optical Test Equipment in the Study of Fibre Optic Cables and Optical Time-Domain Reflectometer.": 1 + "Physics: Analyzing Vibrations and Sound using Oscilloscopes - A Deep Dive into Wave Interference": 1 + "Wave Theory: Understanding Vibrations and Sound through Fourier Transform - A Detailed Study of Wave Interference": 1 + "Advanced Physics: A Deep Dive into Wave Interference using Waveform Generators in Vibrations and Sound": 1 + "Physics and Technology: Exploring Vibrations and Sound through Digital Signal Processing - An In-depth Study of Wave Interference": 1 + "Physics: Vibrations, Sound and Wave Interference - A Comprehensive Study using Spectrum Analyzers": 1 + "Acoustic Physics: Exploring Sound Vibrations and Wave Interference through Acoustic Modeling Software": 1 + "Physics: A Deep Dive into Wave Interference - Investigating Vibrations and Sound using Resonance Tubes": 1 + "Applied Physics: Studying Vibrations and Sound using Helmholtz Resonators - A Detailed Analysis of Wave Interference": 1 + "Physics: A Deep Dive into Wave Interference - Examining Vibrations and Sound using Laser Doppler Vibrometers": 1 + "Wave Physics: Investigating Vibrations and Sound through Spectral Analysis - A Comprehensive View of Wave Interference.": 1 + "Utilizing Google's Tilt Brush for Virtual Reality Exploration in Chinese Culture: A Historical Comparative Analysis in Social Studies": 1 + "Harnessing Tilt Brush for 3D Immersion in African Traditions: A Comparative Study in Social Sciences": 1 + "Leveraging Tilt Brush and Oculus Rift for an Immersive Experience in European History: A Comparative Analysis in Social Studies": 1 + "Exploiting Tilt Brush and Haptic Feedback for Immersive Learning in Indigenous Cultures: A Historical Comparative Analysis": 1 + "Implementing Tilt Brush and Augmented Reality for a Deep Dive into Latin American Cultures: A Comparative Study in Social Studies": 1 + "Enhancing Cultural Education with Tilt Brush and VR Goggles: An In-Depth Analysis of Middle Eastern Traditions": 1 + "Using Tilt Brush and Room-Scale Tracking for Immersive Experiences in Ancient Civilizations: A Historical Comparative Study": 1 + "Incorporating Tilt Brush and Digital Sculpting for Immersive Learning in Global Cultures: A Detailed Comparative Analysis": 1 + "Exploring Native American Heritage through Tilt Brush and Virtual Reality: A Comparative Analysis in Social Studies": 1 + "Leveraging Tilt Brush and Interactive VR for Immersive Experience in South Asian Cultures: A Historical Comparative Analysis in Social Studies": 1 + "The Art of Motion: Evaluating the Effects of Sony Morpheus VR Gloves and Oculus Rift Technology on the Perception of Swimming Movements": 1 + "The Art of Motion: A Comparative Study on the Impact of Sony Morpheus VR Gloves and Haptic Feedback in Swimming Simulations": 1 + "The Art of Motion: Exploring the Role of Sony Morpheus VR Gloves and EEG Neurofeedback in Perceiving Swimming Movements": 1 + "The Art of Motion: Unveiling the Influence of Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations": 1 + "The Art of Motion: The Impact of Sony Morpheus VR Gloves and Augmented Reality on the Perception of Swimming Movements": 1 + "The Art of Motion: Assessing the Effects of Sony Morpheus VR Gloves and Microsoft HoloLens on Swimming Movement Perception": 1 + "The Art of Motion: The Influence of Sony Morpheus VR Gloves and Machine Learning Algorithms on the Perception of Swimming": 1 + "The Art of Motion: Sony Morpheus VR Gloves and the Role of Real-Time Motion Capture in Swimming Simulations": 1 + "The Art of Motion: Examining the Impact of Sony Morpheus VR Gloves and AI Predictive Modelling on the Perception of Swimming Movements": 1 + "The Art of Motion: Sony Morpheus VR Gloves and the Use of Biometric Sensors in Enhancing Swimming Movement Perception": 1 + "Social Studies: Urbanization and the Role of Immigrants - A Deep Dive into GIS Technology": 1 + "Census Data Analysis: Understanding Immigrant Influence in Urbanization": 1 + "Urbanization and Immigrants: A Study on Infrastructure Development": 1 + "Social Studies: The Impact of Industrial Revolution on Urbanization and Immigrant Life": 1 + "The Role of Immigrants in Urbanization: A Focus on Economic Contribution": 1 + "The Influence of Immigrants on Urban Architecture: A Social Studies Perspective": 1 + "Urbanization and Immigrants: Exploring the Role of Public Transportation Systems": 1 + "Social Studies: Urbanization, Immigrants and the Evolution of Healthcare Systems": 1 + "The Impact of IT Revolution on Urbanization and Immigrant Integration": 1 + "Urbanization and Immigrants: An Examination of Educational System Changes.": 1 + "Physics: Exploration of Newton's Laws via Free Body Diagrams and Motion Sensors Utilizing Vernier Technology": 1 + "Physics: In-depth Study of Momentum Conservation through Force Table Experiments and Photogate Timers": 1 + "Physics: Analysis of Laws of Motion using Free Body Diagrams and Spring Scales": 1 + "Physics: Detailed Examination of Momentum Conservation using Force Table Experiments and Collisions Kit": 1 + "Physics: Comprehensive Study of Laws of Motion with Free Body Diagrams and Acceleration Sensors": 1 + "Physics: Understanding of Laws of Motion through Force Table Experiments and Projectile Launchers": 1 + "Physics: Practical Application of Laws of Motion with Free Body Diagrams and Inclined Plane Systems": 1 + "Physics: Investigation of Momentum Conservation through Force Table Experiments and Motion Encoder Systems": 1 + "Physics: Detailed Study of Laws of Motion using Free Body Diagrams and Friction Blocks": 1 + "Physics: Examination of Momentum Conservation through Force Table Experiments and Dynamics Tracks.": 1 + "Algebra and Problem Solving: The Mathematics of the Mind Using Matrices": 1 + "Exploring the Mind's Mathematics: Algebra and Problem Solving with Quadratic Equations": 1 + "The Mathematics of the Mind: Algebra and Problem Solving through Graph Theory": 1 + "Understanding Algebra and Problem Solving: The Mathematics of the Mind and Polynomial Equations": 1 + "Algebra and Problem Solving: The Mathematics of the Mind with Application of Functions": 1 + "The Mind's Mathematics: Algebra and Problem Solving with the Power of Logarithms": 1 + "Unfolding the Mathematics of the Mind: Algebra and Problem Solving with Complex Numbers": 1 + "Algebra and Problem Solving: The Mathematics of the Mind using Vector Spaces": 1 + "The Mathematics of the Mind: A Deep Dive into Algebra and Problem Solving with Linear Programming": 1 + "Algebra and Problem Solving: The Mathematics of the Mind Explored through Differential Equations": 1 + "Social Studies: Labour Movements and Social Change through the Lens of Marxism": 1 + "Social Studies: The Impact of Digital Technology on Labour Movements and Social Change": 1 + "Social Studies: The Role of Collective Bargaining in Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change: A Study of Unionization": 1 + "Social Studies: The Influence of Social Media on Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change in the Context of Globalization": 1 + "Social Studies: Labour Movements and Social Change: An Analysis through Feminist Theory": 1 + "Social Studies: The Effect of Automation on Labour Movements and Social Change": 1 + "Social Studies: Labour Movements and Social Change: A Critical Perspective on Capitalism": 1 + "Social Studies: The Role of Policy Making in Labour Movements and Social Change": 1 + "Physics Fundamentals: Exploring Gravity with Lego Structures, Pulleys, the MATLAB Simulation Software, and Newton's Laws of Motion": 1 + "Physics Basics: Investigating Gravity through Lego Towers, Pulleys, MATLAB Software, and the Concept of Free Fall": 1 + "Advanced Physics: Understanding Gravity using Lego Models, Pulleys, MATLAB Simulations, and the Principle of Equivalence": 1 + "Physics Essentials: Studying Gravity with Lego Buildings, Pulley Systems, MATLAB Software, and the Theory of Relativity": 1 + "Physics Principles: Delving into Gravity with Lego Constructions, Pulleys, MATLAB Programming, and the Gravitational Constant": 1 + "Physics Insights: Exploring Gravity through Lego Designs, Pulley Mechanics, MATLAB Simulation, and Centripetal Force": 1 + "Physics Exploration: Unraveling Gravity with Lego Kits, Pulleys, MATLAB Software, and the Concept of Gravitational Waves": 1 + "Physics Experiments: Investigating Gravity with Lego Architectures, Pulleys, MATLAB Simulation, and the Concept of Gravitational Field": 1 + "Physics Foundations: Understanding Gravity using Lego Creations, Pulleys, MATLAB Software, and the Principle of Inertia": 1 + "Physics Mastery: Studying Gravity with Lego Experiments, Pulley Systems, MATLAB Simulations, and the Law of Universal Gravitation.": 1 + "Neuroscience 110: Analyzing Auditory Cortex with Transcranial Magnetic Stimulation and EEG in Brain and Music Studies": 1 + "Neuroscience 110: Exploring the Impact of Music on Brain Plasticity Using Transcranial Magnetic Stimulation and fMRI": 1 + "Neuroscience 110: Brain and Music - An Interdisciplinary Approach with Transcranial Magnetic Stimulation and Dopamine Measurements": 1 + "Neuroscience 110: Studying Music-Induced Emotion in the Brain Using Transcranial Magnetic Stimulation and PET Scans": 1 + "Neuroscience 110: Understanding Neurological Responses in Music Appreciation via Transcranial Magnetic Stimulation and MRI": 1 + "Neuroscience 110: Brain and Music - Exploring Rhythmic Perception Through Transcranial Magnetic Stimulation and Neural Oscillations": 1 + "Neuroscience 110: The Role of the Amygdala in Music Perception: A Study Using Transcranial Magnetic Stimulation and Spectroscopy": 1 + "Neuroscience 110: Assessing the Impact of Harmonics on Brain Activity Using Transcranial Magnetic Stimulation and QEEG": 1 + "Neuroscience 110: Exploring Music's Effect on Memory and Learning through Transcranial Magnetic Stimulation and Synaptic Plasticity": 1 + "Neuroscience 110: An Interdisciplinary Approach to Pitch Perception in the Brain Using Transcranial Magnetic Stimulation and Tonotopic Mapping.": 1 + "Language Arts: Storytelling with Salvaged Materials: An Exploration of Virtual Reality Using Oculus Rift": 1 + "Language Arts: Storytelling with Reclaimed Objects in Virtual Reality: A Unity Engine Approach": 1 + "Language Arts: Using Blender in Storytelling with Salvaged Materials: An In-depth Look into Virtual Reality": 1 + "Language Arts: An Exploration of Virtual Reality Storytelling with Salvaged Materials: A Focus on Unreal Engine": 1 + "Language Arts: Storytelling with Salvaged Materials in Virtual Reality: The Role of 3D Modeling with SketchUp": 1 + "Language Arts: The Art of Storytelling with Salvaged Materials in Virtual Reality: A Deep Dive into VRChat": 1 + "Language Arts: The Use of Maya 3D for Storytelling with Salvaged Materials in Virtual Reality": 1 + "Language Arts: Storytelling with Salvaged Materials: Exploring Virtual Reality Through Google Cardboard": 1 + "Language Arts: Crafting Narratives with Salvaged Materials: A Virtual Reality Journey with Microsoft's HoloLens": 1 + "Language Arts: Unveiling Virtual Reality Storytelling with Salvaged Materials Using HTC Vive's Capabilities.": 1 + "Exploring Aesthetics in Sound and Visual Arts: An Introduction to Logic Pro X and MIDI Sequencing": 1 + "A Detailed Study on Audio Mixing in Visual Arts via Logic Pro X": 1 + "Advanced Sound Designing: Integrating Logic Pro X and Synthesizers in Visual Arts": 1 + "Aesthetics in Sound and Visual Arts: Deep Dive into Sound Engineering with Logic Pro X": 1 + "Sound Aesthetics in Visual Arts: An Introduction to Logic Pro X and Audio Mastering": 1 + "Unraveling Aesthetics: An In-depth Study of Logic Pro X and Digital Audio Workstations": 1 + "The Art of Sound: Exploring Logic Pro X and Audio Sampling in Visual Arts": 1 + "A Study of Aesthetics in Sound and Visual Arts: An Introduction to Logic Pro X and Beat Making": 1 + "Aesthetics in Sound and Visual Arts: A Comprehensive Guide to Logic Pro X and Audio Plug-ins": 1 + "Understanding Aesthetics in Visual Arts: A Study on Logic Pro X and Looping Techniques.": 1 + "Physical Education: International Sports and Cultural Exchange: Exploring World Soccer through Biomechanics": 1 + "Physical Education: International Sports and Cultural Exchange: Utilizing VR Technology in the Study of World Soccer": 1 + "Physical Education: International Sports and Cultural Exchange: Analyzing the World of Soccer through Nutrition Science ": 1 + "Physical Education: International Sports and Cultural Exchange: Exploring Soccer Worldwide through Sports Psychology": 1 + "Physical Education: International Sports and Cultural Exchange: Using Video Analysis to Study Global Soccer Techniques": 1 + "Physical Education: International Sports and Cultural Exchange: The Impact of Sports Equipment Technology on World Soccer": 1 + "Physical Education: International Sports and Cultural Exchange: Examination of Soccer through the Lens of Sports Medicine": 1 + "Physical Education: International Sports and Cultural Exchange: Exploring World Soccer through Sports Analytics": 1 + "Physical Education: International Sports and Cultural Exchange: The Study of Soccer Tactics through Advanced Software Applications": 1 + "Physical Education: International Sports and Cultural Exchange: Understanding Global Soccer through the Use of Wearable Fitness Technology.": 1 + "Physical Education: Enhancing Basketball Performance through Vert Jump Wearable Tech & Plyometric Training ": 1 + "Utilizing Vert Jump Wearable Tech and Resistance Bands for Superior Basketball Performance ": 1 + "Physical Education: Combination of Vert Jump Wearable Tech and Periodization Training for Basketball Performance Enhancement": 1 + "Vert Jump Wearable Tech and High-Intensity Interval Training: A New Approach to Basketball Performance": 1 + "Physical Education: Improving Basketball Skills with Vert Jump Wearable Tech and Biomechanics Analysis ": 1 + "Basketball Performance Enhancement: Vert Jump Wearable Tech Integrated with Functional Training ": 1 + "Physical Education: Vert Jump Wearable Tech and Sports Nutrition for Optimizing Basketball Performance ": 1 + "Utilizing Vert Jump Wearable Tech with Sport Psychology Techniques for Basketball Performance Enhancement": 1 + "Vert Jump Wearable Tech and Strength Training: A Detailed Analysis in Basketball Performance Enhancement ": 1 + "Physical Education: Basketball Performance Enhancement through Vert Jump Wearable Tech and Sleep Recovery Techniques.": 1 + "World Cultures: Art and Traditions Through DJI Phantom 4 Pro Drone Photography ": 1 + "The Art of Drone Photography: Exploring World Cultures and Traditions with Adobe Photoshop ": 1 + "Drone Photography in World Cultures: Art and Traditions Using Lightroom Editing ": 1 + "Unveiling Art and Traditions: World Cultures Through GoPro Karma Drone Photography ": 1 + "An Exploration of World Cultures: Art and Traditions with Drone Photography and 360-Degree Panoramic Technology ": 1 + "World Cultures: Art and Traditions - A Deep Dive into Drone Photography with Parrot Anafi ": 1 + "Drone Photography and World Cultures: Artistic Exploration with Thermal Imaging Technology ": 1 + "Immersive Drone Photography: Decoding Art and Traditions in World Cultures with Augmented Reality ": 1 + "World Cultures Through Lens: Art, Traditions and Drone Photography with Yuneec Typhoon H Pro ": 1 + "Art and Traditions of World Cultures: Drone Photography Exploration Using Artificial Intelligence.": 1 + "Language Arts: The Influence of Metaphors in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Exploring Imagery in Poetry and Classical Music Lyrics through Symbolism": 1 + "Analyzing Imagery in Poetry and Lyrics of Classical Music using Text Mining Techniques": 1 + "Language Arts: The Role of Alliteration in Poetry and Classical Music Lyrics": 1 + "Language Arts: Unraveling the Power of Similes in Poetry and Classical Music Lyrics": 1 + "Language Arts: The Impact of Personification in Poetry and Classical Music Lyrics": 1 + "Language Arts: The Use of Hyperbole in Poetry and Classical Music Lyrics": 1 + "Language Arts: The Effect of Onomatopoeia in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Imagery in Poetry and Classical Music Lyrics - A Study using Natural Language Processing": 1 + "Language Arts: The Influence of Oxymoron in Poetry and Lyrics of Classical Music": 1 + "Language Arts: Analyzing Shakespeare's Dramas with Librivox Free Audiobooks and Google Classroom": 1 + "Exploring Shakespeare's Dramas: A Deep Dive Using Librivox Audiobooks and Annotation Tools": 1 + "Shakespeare's Dramas Study Guide: Using Librivox Audiobooks and Zoom Discussions": 1 + "Interpreting Shakespeare's Dramas: Librivox Audiobooks and Online Quizzes": 1 + "Language Arts: Understanding Shakespeare's Dramas with Librivox Audiobooks and Podcasts": 1 + "Shakespeare's Dramas: A Comprehensive Study with Librivox Audiobooks and YouTube Tutorials": 1 + "Examining Shakespeare's Dramas: Librivox Audiobooks and Interactive Whiteboard Lessons": 1 + "Shakespeare's Dramas: A Virtual Classroom Experience using Librivox Audiobooks and Slack": 1 + "Language Arts: Exploring Shakespeare's Dramas with Librivox Audiobooks and Online Discussion Forums": 1 + "Shakespeare's Dramas: A Learning Journey with Librivox Audiobooks and Digital Flashcards.": 1 + "Advanced SEO Strategies: Mastering Google Analytics with Keyword Analysis": 1 + "Mastering Google Analytics: Advanced SEO Strategies with Backlink Monitoring ": 1 + "Advanced SEO Strategies: Utilizing Google Analytics and Conversion Rate Optimization": 1 + "Mastering Google Analytics: Enhancing SEO Strategies with PageSpeed Insights ": 1 + "Advanced SEO and Google Analytics: Understanding User Behavior with Heatmaps": 1 + "Google Analytics Mastery: Advanced SEO Strategies with Meta Tag Optimization": 1 + "Advanced SEO Strategies: Leveraging Google Analytics and SERP Analysis": 1 + "Mastering Google Analytics in SEO: The Power of Social Media Tracking": 1 + "Advanced SEO Strategies: Mastering Google Analytics and On-Page Optimization": 1 + "Google Analytics Mastery: Advanced SEO Strategies with XML Sitemap Optimization": 1 + "Physics: Light and Lasers - Analyzing Laser Diodes and Quantum Dots in Modern Technology": 1 + "Physics: Light and Lasers - A Deep Dive into Laser Diodes and Optical Amplifiers in Modern Technology": 1 + "Physics: Light and Lasers - Understanding Laser Diodes through Photonic Crystals in Modern Technology": 1 + "Physics: Light and Lasers - A Comprehensive Study of Laser Diodes and Fiber Bragg Gratings in Modern Technology": 1 + "Physics: Light and Lasers - An Exploration of Laser Diodes and Optical Waveguides in Modern Technology": 1 + "Physics: Light and Lasers - Investigating Laser Diodes and GaN Technology in Modern Applications": 1 + "Physics: Light and Lasers - Laser Diodes and Photodetectors: A Modern Technology Perspective": 1 + "Physics: Light and Lasers - The Role of Laser Diodes and Optical Splitters in Modern Technology": 1 + "Physics: Light and Lasers - Laser Diodes and Optical Switches: A Detailed Study in Modern Technology": 1 + "Physics: Light and Lasers - Examining Laser Diodes and Optical Isolators in Modern Technology.": 1 + "Philosophy: The Impact of Sophist Rhetoric in Modern Political Discourse: A Study on Aristotle's Syllogism": 1 + "Exploring the Role of Sophist Rhetoric in Modern Political Discourse: The Influence of Socratic Irony": 1 + "Philosophy: The Power of Sophist Rhetoric in Modern Political Discourse: Understanding through Ethos, Pathos, Logos": 1 + "The Sophist's Rhetoric in Modern Political Discourse: A Detailed Examination of Propaganda Techniques": 1 + "Sophist Rhetoric and Its Impact on Modern Political Discourse: An Analysis of Ad Hominem Fallacies": 1 + "Philosophy: Sophist Rhetoric in Modern Political Discourse: The Usage and Impact of Red Herring Fallacies": 1 + "The Influence of Sophist Rhetoric on Modern Political Discourse: A Deep Dive into the Bandwagon Fallacy": 1 + "Philosophy: Exploiting Sophist Rhetoric in Modern Political Discourse: A Study on Straw Man Arguments": 1 + "The Role of Sophist Rhetoric in Modern Political Discourse: The Effectiveness of Slippery Slope Arguments": 1 + "Philosophy: Sophist Rhetoric in Modern Political Discourse: An Analysis of Circular Reasoning.": 1 + "Advanced Methods in Neuroscience: Exploring Brain Functions using DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and EEG Technology": 1 + "Cutting-Edge Neuroscience Techniques: A Deep Dive into Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Optogenetics": 1 + "Innovative Techniques in Neuroscience: Deciphering Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Transcranial Magnetic Stimulation": 1 + "Modern Techniques in Neuroscience: Unraveling Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Patch-clamp Techniques": 1 + "Neuroscience Breakthroughs: Analyzing Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and PET Scans": 1 + "Progressive Techniques in Neuroscience: Examining Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and fMRI Technology": 1 + "Neuroscience in the 21st Century: Investigating Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Calcium Imaging": 1 + "Advanced Neuroscience: Understanding Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Neuron Tracing": 1 + "Leading Edge Techniques in Neuroscience: Decoding Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Two-photon Excitation Microscopy": 1 + "Neuroscience in Focus: Probing Brain Functions with DTI Imaging, SPECT, Functional Near-Infrared Spectroscopy, and Stereotactic Techniques.": 1 + "Language Arts: Mastering Metaphors in Descriptive Writing": 1 + "The Art of Descriptive Writing: Harnessing Imagery in Language Arts": 1 + "Language Arts: Crafting Sensory Detail in Descriptive Writing": 1 + "The Art of Descriptive Writing: Exploring Figurative Language in Language Arts": 1 + "Language Arts: The Power of Analogies in Descriptive Writing": 1 + "The Art of Descriptive Writing: Utilizing Hyperbole in Language Arts": 1 + "Language Arts: Enhancing Narratives with Symbolism in Descriptive Writing": 1 + "The Art of Descriptive Writing: The Role of Alliteration in Language Arts": 1 + "Language Arts: Employing Personification in Descriptive Writing": 1 + "The Art of Descriptive Writing: The Impact of Onomatopoeia in Language Arts": 1 + "Physical Education: Integration of Oculus Rift in Virtual Reality Dance for Enhanced Coordination and Rhythm": 1 + "Physical Education: Utilizing Kinect in Virtual Reality Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Biofeedback Mechanisms in Virtual Reality Dance for Improved Coordination and Rhythm": 1 + "Physical Education: Application of HTC Vive in Virtual Reality Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Integration of Haptic Feedback in Virtual Reality Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Use of PlayStation VR in Virtual Reality Dance for Enhanced Coordination and Rhythm": 1 + "Physical Education: Role of Machine Learning in Virtual Reality Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Integration of Motion Capture in Virtual Reality Dance for Improved Coordination and Rhythm": 1 + "Physical Education: Using Google Cardboard in Virtual Reality Dance for Optimal Coordination and Rhythm": 1 + "Physical Education: Influence of Augmented Reality in Virtual Reality Dance for Improved Coordination and Rhythm": 1 + "Elementary Astronomy: Observing the Night Sky with Dobsonian Telescopes and Stellarium Software": 1 + "Advanced Guide to Constellation Identification using Dobsonian Telescopes and Star Charts": 1 + "Elementary Astronomy: An In-Depth Study of Nebulae through Dobsonian Telescopes and CCD Cameras": 1 + "Exploring the Night Sky: A Comprehensive Study using Dobsonian Telescopes and Spectroscopy": 1 + "Elementary Astronomy: Tracking Celestial Objects with Dobsonian Telescopes and Motor Drives": 1 + "Exploring the Universe: Studying Exoplanets with Dobsonian Telescopes and Transit Photometry": 1 + "Elementary Astronomy: Understanding Galactic Structures with Dobsonian Telescopes and Radio Astronomy": 1 + "Astrophotography for Beginners: Capturing the Night Sky with Dobsonian Telescopes and DSLR Cameras": 1 + "Elementary Astronomy: Mapping the Night Sky with Dobsonian Telescopes and Astrocartography ": 1 + "Discovering the Cosmos: Observing Variable Stars with Dobsonian Telescopes and Light Curve Analysis.": 1 + "English Essentials: Enhancing Reading Skills through Kindle E-Books": 1 + "English Essentials: Boosting Reading Proficiency using Epub Files": 1 + "English Essentials: Leveraging Adobe Digital Editions to Improve Reading Skills": 1 + "English Essentials: Facilitating Reading Skills through Google Books": 1 + "English Essentials: Augmenting Reading Abilities with Nook E-Books": 1 + "English Essentials: Using Apple iBooks for Reading Skill Enhancement": 1 + "English Essentials: Optimizing Reading Skills through Project Gutenberg E-Books": 1 + "English Essentials: Utilizing OverDrive for Advanced Reading Skills": 1 + "English Essentials: Empowering Reading Skills via Kobo E-Books": 1 + "English Essentials: Enhancing Reading Skills with Scribd Digital Library.": 1 + "English 190.1: Analyzing Personification in Musical Language using iambic pentameter": 1 + "English 190.2: Poetry and Lyrics: Scrutinizing Personification in Music through Metrical Analysis with the aid of Prosody Tools": 1 + "English 190.3: Unraveling Personification in Musical Lyrics: An In-depth Study through Metrical Scansion": 1 + "English 190.4: Insights into Personification in Musical Language: A Focus on Rhyme Schemes and Meter Analysis": 1 + "English 190.5: Utilizing Syllable Counting in Examining Personification in Poetry and Lyrics": 1 + "English 190.6: Poetry and Lyrics: Exploring Personification in Musical Language through the Lens of Syllable Stress Analysis ": 1 + "English 190.7: English 190: A Deep-Dive into Musical Personification through Metrical Feet Analysis": 1 + "English 190.8: Poetry and Lyrics: Dissecting Personification in Music using Quantitative Metrical Analysis": 1 + "English 190.9: Studying Personification in Musical Language: An Approach through Line Length and Metrical Pattern Analysis": 1 + "English 190.10: English 190: Insights into Personification in Poetry and Lyrics via Rhythm and Meter Analysis using Phonological Tools.": 1 + "Traditional Songs of Maritime Trade and the Evolution of the Ship's Wheel: A Focus on the Sextant": 1 + "Maritime Music and Nautical Navigation: The Impact of the Compass on Ship's Wheel Development": 1 + "The Influence of Ancient Anchors on Traditional Maritime Trade Songs and Ship's Wheel Evolution": 1 + "Sails in Songs: The Role of Sail Rigging in Maritime Trade Music and the Transformation of the Ship's Wheel": 1 + "The Chronometer and its Influence on Maritime Trade Songs and Ship's Wheel Evolution": 1 + "Maritime Music and Maps: The Effect of Cartography on Traditional Trade Songs and the Evolution of the Ship's Wheel": 1 + "The Telescope's Role in Maritime Trade Songs and the Development of the Ship's Wheel": 1 + "Ropes and Rigging: Their Impact on Traditional Maritime Trade Songs and the Evolution of the Ship's Wheel": 1 + "The Influence of the Astrolabe on Traditional Maritime Trade Music and the Evolution of the Ship's Wheel": 1 + "Longitudinal Lines: The Effect of Latitude and Longitude Concepts on Maritime Trade Songs and Ship's Wheel Development.": 1 + "Exploring the Impact of Haptic Feedback in Sony Morpheus VR Gloves for Enhanced Swimming Simulations": 1 + "The Art of Motion: A Detailed Study on the Influence of Sony Morpheus VR Gloves and Leap Motion Controller in Aquatic VR Environments": 1 + "Influence of Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: A Focus on Fluid Dynamics": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: The Role of Real-Time Motion Capture Technology": 1 + "The Art of Motion: Evaluating the Role of Spatial Audio in Swimming Simulations using Sony Morpheus VR Gloves and Leap Motion Controller": 1 + "Studying the Impact of Sony Morpheus VR Gloves and Leap Motion Controller on User Experience in VR Swimming Simulations": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller: Unveiling Their Role in Swimming Simulations with a Focus on Immersive Visuals": 1 + "The Art of Motion: How Sony Morpheus VR Gloves and Leap Motion Controller Enhance Swimming Simulations through Motion Tracking": 1 + "The Influence of Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: A Deep Dive into Haptic Technology": 1 + "Exploring the Use of Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: A Perspective on Virtual Reality Rendering.": 1 + "The Science of Art: Examining Roman Iron Alloys with X-Ray Diffraction and Neutron Diffraction Techniques": 1 + "Deciphering the Secrets of Roman Iron Alloys Using Auger Electron Spectroscopy and Scanning Electron Microscopy": 1 + "Unraveling the Mysteries of Roman Artifacts: An In-depth Study with Proton Induced X-ray Emission and Energy Dispersive X-Ray Spectroscopy": 1 + "The Art of Metallurgy: Understanding Roman Iron Alloys Through X-Ray Diffraction and Fourier Transform Infrared Spectroscopy": 1 + "The Science of Art: The Role of Auger Electron Spectroscopy and Atomic Absorption Spectroscopy in Unveiling Roman Iron Alloys": 1 + "Roman Iron Alloys: A Comprehensive Study Using Proton Induced X-ray Emission and Raman Spectroscopy": 1 + "The Science of Art: A Detailed Investigation of Roman Iron Alloys using X-Ray Diffraction and Transmission Electron Microscopy": 1 + "The Secrets of Roman Iron Alloys: A Study Using Auger Electron Spectroscopy and X-ray Photoelectron Spectroscopy": 1 + "Unraveling Roman Iron Alloys: A Study Using Proton Induced X-ray Emission and Laser Induced Breakdown Spectroscopy": 1 + "The Science of Art: Revealing the Secrets of Roman Iron Alloys through X-Ray Diffraction and Matrix-Assisted Laser Desorption/Ionization.": 1 + "Enhancing English Literacy: Using iMovie, Powerpoint and Adobe Photoshop for Advanced Visual Storytelling Techniques": 1 + "English Literacy Focus: Exploring Reading and Writing through iMovie, Powerpoint and Podcasting for Interactive Visual Storytelling": 1 + "English Literacy Development: Incorporating iMovie, Powerpoint and Virtual Reality in Visual Storytelling": 1 + "English Literacy: Expanding Reading and Writing Skills through iMovie, Powerpoint and Digital Animation for Visual Narration": 1 + "English Literacy: Utilizing iMovie, Powerpoint and Google Slides for Dynamic Visual Storytelling": 1 + "English Literacy: Integrating iMovie, Powerpoint and Prezi for Enhanced Visual Storytelling": 1 + "Advanced English Literacy: Utilizing iMovie, Powerpoint and Canva for Graphic Visual Storytelling": 1 + "English Literacy: Exploring Reading and Writing through iMovie, Powerpoint and 3D Modeling for Visual Storytelling": 1 + "In-depth English Literacy: Applying iMovie, Powerpoint and Video Editing Tools for Engaging Visual Storytelling": 1 + "English Literacy: Harnessing iMovie, Powerpoint and Interactive Whiteboards for Collaborative Visual Storytelling.": 1 + "Music: Exploring Sound Aesthetics and Event Performances through Pro Tools Audio Mixing": 1 + "Understanding Sound Aesthetics in Live Events: A Comprehensive Guide to Mixer Console Operations": 1 + "Audio Mixing and Sound Aesthetics: A Deep Dive into Equalization Techniques": 1 + "Sound Aesthetics and Audio Mixing: An in-depth Study of Digital Audio Workstations": 1 + "Music Production: Mastering Sound Aesthetics and Performance Dynamics through Logic Pro X": 1 + "Decoding Sound Aesthetics: A Course on Audio Mixing with FL Studio": 1 + "Music: Enhancing Sound Aesthetics and Event Performances through Advanced Reaper Techniques": 1 + "Audio Mixing Methods for Event Performances: A Focus on Ableton Live": 1 + "Sound Aesthetics in Music: Understanding through Cubase Audio Mixing Techniques": 1 + "Mastering Event Performances: A Course on Sound Aesthetics and Audio Mixing with Reason.": 1 + "Solar System Sleuths: Exploring Space with Hubble Telescope": 1 + "Solar System Sleuths: Uncovering Mysteries with Radio Telescopes": 1 + "Solar System Sleuths: Space Exploration using Infrared Imaging": 1 + "Solar System Sleuths: Probing the Cosmos with Spectroscopy": 1 + "Solar System Sleuths: Discovering the Universe with Optical Telescopes": 1 + "Solar System Sleuths: Journeying Space using Satellite Technology": 1 + "Solar System Sleuths: Navigating the Cosmos with Astrometry": 1 + "Solar System Sleuths: Decoding Space with Ultraviolet Observations": 1 + "Solar System Sleuths: The Science of Space through X-Ray Astronomy": 1 + "Solar System Sleuths: Investigating Space using Gamma-Ray Technology": 1 + "Logical Minds: Enhancing Children's Logical Intelligence with Swift Playgrounds, Game Design, and Python Programming": 1 + "Logical Minds: Building Children's Logical Intelligence through Swift Playgrounds, Game Design, and Robotics": 1 + "Logical Minds: Boosting Children's Logical Intelligence using Swift Playgrounds, Game Design, and Scratch Coding": 1 + "Logical Minds: Developing Children's Logical Intelligence with Swift Playgrounds, Game Design, and Arduino Projects": 1 + "Logical Minds: Expanding Children's Logical Intelligence by Swift Playgrounds, Game Design, and Minecraft Education Edition": 1 + "Logical Minds: Strengthening Children's Logical Intelligence using Swift Playgrounds, Game Design, and Blockly Games": 1 + "Logical Minds: Nurturing Children's Logical Intelligence with Swift Playgrounds, Game Design, and Raspberry Pi Computing": 1 + "Logical Minds: Cultivating Children's Logical Intelligence through Swift Playgrounds, Game Design, and 3D Printing Design": 1 + "Logical Minds: Advancing Children's Logical Intelligence using Swift Playgrounds, Game Design, and Lego Mindstorms": 1 + "Logical Minds: Improving Children's Logical Intelligence with Swift Playgrounds, Game Design, and SQL Database Management": 1 + "Elementary Mathematics: Utilizing R Programming in Statistical Analysis through Probability Theory.": 1 + "Exploring the Impact of Numbers on Statistical Analysis with Python and Probability Theory in Elementary Mathematics.": 1 + "Elementary Mathematics: Applying Excel in Probability Theory for Enhanced Statistical Analysis.": 1 + "Elementary Mathematics: Harnessing SPSS in Understanding the Impact of Numbers on Statistical Analysis.": 1 + "The Role of Matlab in Probability Theory: A Focus on Statistical Analysis in Elementary Mathematics.": 1 + "Elementary Mathematics: The Impact of Numbers on Statistical Analysis using SAS Software and Probability Theory.": 1 + "Statistical Analysis in Elementary Mathematics: An Overview of Probability Theory with the Assistance of Stata.": 1 + "Elementary Mathematics: Leveraging GraphPad Prism for Statistical Analysis using Probability Theory.": 1 + "The Influence of Numbers on Statistical Analysis: A Closer Look through the Lens of Minitab and Probability Theory in Elementary Mathematics.": 1 + "Elementary Mathematics: Applying the Power of Tableau in Probability Theory for Detailed Statistical Analysis.": 1 + "History 101: The Steam Hammer and Railways: Driving Forces of the Industrial Revolution": 1 + "History 101: The Steam Hammer & Spinning Jenny: Key to the Industrial Revolution": 1 + "History 101: The Steam Hammer and Cotton Gin: Unseen Heroes of the Industrial Revolution": 1 + "History 101: The Steam Hammer vs. Power Loom: Technological Advances of the Industrial Revolution": 1 + "History 101: The Steam Hammer and Telegraph: Communication in the Industrial Revolution": 1 + "History 101: The Steam Hammer and Steam Engine: Twin Pillars of the Industrial Revolution": 1 + "History 101: The Steam Hammer and Bessemer Process: The Industrial Revolution's Innovative Technologies": 1 + "History 101: The Steam Hammer and the Threshing Machine: Agricultural Progress in the Industrial Revolution": 1 + "History 101: The Steam Hammer and the Sewing Machine: Textile Innovations in the Industrial Revolution": 1 + "History 101: The Steam Hammer and the Water Frame: Pioneering Tools of the Industrial Revolution.": 1 + "History: Understanding the Role of the Scythe, Plough and Fertilization Techniques in the Evolution of Wheat Cultivation": 1 + "History: Unveiling the Impact of the Scythe, Crop Rotation and Fertilization Techniques in the Evolution of Plant Cultivation": 1 + "History: Decoding the Influence of the Scythe, Irrigation and Fertilization Techniques in the Evolution of Rice Cultivation": 1 + "History: Exploring the Scythe, Greenhouse Technology and Fertilization Techniques in the Evolution of Vegetable Cultivation": 1 + "History: Insight into the Scythe, Hydroponics and Fertilization Techniques in the Evolution of Plant Cultivation": 1 + "History: Learning about the Scythe, Grazing and Fertilization Techniques in the Evolution of Grass Cultivation": 1 + "History: The Scythe, Organic Composting and Fertilization Techniques in the Evolution of Plant Cultivation": 1 + "History: The Scythe, Genetic Modification and Fertilization Techniques in the Evolution of Crop Cultivation": 1 + "History: The Scythe, Drones and Fertilization Techniques in the Evolution of Large-Scale Plant Cultivation": 1 + "History: The Scythe, Vertical Farming and Fertilization Techniques in the Evolution of Urban Plant Cultivation": 1 + "Mathematics: Market Analysis Statistics with Excel Using Pivot Tables": 1 + "Mathematics: Advanced Market Analysis Statistics with Excel and Python": 1 + "Mathematics: Market Analysis Statistics with Excel and Power BI": 1 + "Mathematics: Market Analysis Statistics with Excel using Monte Carlo Simulation": 1 + "Mathematics: Market Analysis Statistics with Excel and VBA Programming": 1 + "Mathematics: Predictive Market Analysis Statistics with Excel and Linear Regression": 1 + "Mathematics: Market Analysis Statistics with Excel Using Solver Add-In": 1 + "Mathematics: Market Analysis Statistics with Excel and SQL Integration": 1 + "Mathematics: Market Analysis Statistics with Excel using Data Visualization Tools": 1 + "Mathematics: Market Analysis Statistics with Excel and Machine Learning Techniques.": 1 + "Computer Science 101: Python Programming with Data Structures and SQLite for Database Management using Pandas Library": 1 + "Computer Science 101: Python Programming and Data Structures Implementation using SQLite and Django for Database Management": 1 + "Computer Science 101: Python Programming using NumPy in Data Structures and SQLite for Database Management": 1 + "Computer Science 101: Python Programming, Data Structures and SQLite Database Management via Flask Web Framework": 1 + "Computer Science 101: Python Programming with Matplotlib for Data Visualization in SQLite and Data Structures": 1 + "Computer Science 101: Python Programming using Data Structures with SQLite and Machine Learning Algorithms for Database Management": 1 + "Computer Science 101: Python Programming, Data Structures and SQLite for Database Management using Jupyter Notebook": 1 + "Computer Science 101: Python Programming using Data Structures and SQLite for Database Management with TensorFlow Integration": 1 + "Computer Science 101: Python Programming with Data Structures using SQLite for Database Management and PySpark for Big Data Processing": 1 + "Computer Science 101: Python Programming, Data Structures and SQLite for Database Management utilizing Scikit-Learn for Data Analysis.": 1 + "Language Arts: Utilizing the Digital Audio Workstation Reaper to Sculpt Rhyme Schemes in Forest-Inspired Poetry with Nature Sound Libraries": 1 + "Language Arts: Exploring Rhyme Schemes in Poetry Through the Sounds of Forests Using Reaper DAW and Audacity for Audio Editing": 1 + "Language Arts: Amplifying Rhyme Schemes in Poetry with Forest Sounds Using Reaper and MIDI Keyboard Integration": 1 + "Language Arts: Enhancing Rhyme Schemes in Nature Poetry Using Reaper, Nature Sound Libraries and Audio Interface Technology": 1 + "Language Arts: Exploring Rhyme Schemes in Poetry with Forest Sounds Using Reaper Software and Foley Techniques": 1 + "Language Arts: Crafting Rhyme Schemes in Forest-Inspired Poetry Using Reaper, Nature Sound Libraries and Sound Design Basics": 1 + "Language Arts: Developing Rhyme Schemes in Poetry with Forest Sounds Using Reaper DAW and VST Plugins": 1 + "Language Arts: Mastering Rhyme Schemes in Poetry Using Forest Sounds, Reaper, and Digital EQ Techniques": 1 + "Language Arts: Improving Rhyme Schemes in Poetry with Forest Sounds Using Reaper and Waveform Visualization Tools": 1 + "Language Arts: Experimenting with Rhyme Schemes in Poetry Using Forest Sounds, Reaper DAW, and Field Recording Methods.": 1 + "Physics: Exploring Sound Waves using Oscilloscopes in Laser Technology ": 1 + "Physics: Understanding Light Waves through Photodiodes in Laser Technology ": 1 + "Physics: Introduction to Sound Waves through Laser Technology using Fourier Transform ": 1 + "Physics: Diving into Light Waves with Spectrometers in Laser Technology ": 1 + "Physics: Unraveling Sound Waves using Bode Plots in Laser Technology": 1 + "Physics: Decoding Light Waves through Laser Technology using Optical Spectrum Analyzers": 1 + "Physics: Mastering Sound Waves through Laser Technology with Signal Generators": 1 + "Physics: Insight into Light Waves through Laser Technology using Beam Profilers": 1 + "Physics: Analyzing Sound Waves using Vibration Meters in Laser Technology": 1 + "Physics: Comprehending Light Waves through Laser Technology using Waveplates.": 1 + "Art: Deciphering Symbolism in Renaissance Masterpieces": 1 + "Art: The Role of Chiaroscuro in Renaissance Masterpieces": 1 + "Art: Perspective Drawing in Renaissance Masterpieces": 1 + "Art: Oil Painting Techniques in Renaissance Masterpieces": 1 + "Art: The Impact of Geometry in Renaissance Artwork": 1 + "Art: Fresco Painting in Renaissance Masterpieces": 1 + "Art: The Influence of Humanism in Renaissance Art": 1 + "Art: The Use of Gold Leaf in Renaissance Masterpieces": 1 + "Art: Mural Painting Techniques of the Renaissance": 1 + "Art: Realism and Detail in Renaissance Masterpieces": 1 + "Geography: Utilizing ArcGIS Pro and Geodatabase Management in Mapping WWII - The Global Impact and Strategic Use of Enigma Machine": 1 + "Geography: Integrating ArcGIS and PostgreSQL Geodatabase Management in Mapping WWII - Global Tactics and Implications": 1 + "Geography: Incorporating ArcGIS and R programming in Geodatabase Management for WWII Mapping - A Global Perspective": 1 + "Geography: Leveraging ArcGIS and Python in Geodatabase Management for Cartographic Representation of WWII - Strategic Approach": 1 + "Geography: Application of ArcGIS and SQL in Geodatabase Management for WWII Mapping - Global Impact and Strategy": 1 + "Geography: Incorporating ArcGIS, Geodatabase Management and Drone Mapping in the Study of WWII - Global Tactics and Results": 1 + "Geography: ArcGIS and Spatial Data Infrastructure in Geodatabase Management for WWII Mapping - A Global View ": 1 + "Geography: ArcGIS, Geodatabase Management and GIS Cloud Technology in Mapping WWII - Global Strategy and Consequences": 1 + "Geography: ArcGIS and Oracle Spatial in Geodatabase Management for WWII Mapping - Global Impact and Strategic Insights": 1 + "Geography: Incorporating ArcGIS, Geodatabase Management and LiDAR Technology in Mapping WWII - Understanding Global Strategies.": 1 + "English 190: Poetry and Lyrics: Personification in Musical Language - A Study of Alliteration and Metaphors": 1 + "English 190: Analyzing Rhyme Schemes in Personification and Alliteration within Poetry and Lyrics": 1 + "English 190: Using Digital Tools for Studying Personification in Alliteration: Poetry and Lyrics": 1 + "English 190: A Study of Alliteration and Hyperbole in Poetry and Musical Lyrics": 1 + "English 190: Poetry and Lyrics: Exploring Personification and Alliteration through Textual Analysis Software": 1 + "English 190: A Comparative Study of Simile and Alliteration in Poetry and Musical Language": 1 + "English 190: Poetry and Lyrics: An In-Depth Analysis of Alliteration and Imagery in Musical Language": 1 + "English 190: Using Corpus Linguistics to Study Personification in Alliteration within Poetry and Lyrics": 1 + "English 190: A Study of Alliteration and Symbolism in Poetry and Lyrics: The Influence of Musical Language": 1 + "English 190: Poetry and Lyrics: Personification and Alliteration in Musical Language - Exploring Metonymy.": 1 + "Exploring Propositional Calculus Mathematics: Applying Euler Diagram Tool in Venn Diagrams using Mathematica and Python": 1 + "Advanced Propositional Calculus: Euler Diagram Tool and Truth Tables in Venn Diagrams with Mathematica": 1 + "Propositional Calculus Mathematics: Using Euler Diagram Tool in Venn Diagrams and Binary Trees with Mathematica": 1 + "In-depth Analysis of Propositional Calculus Mathematics: Euler Diagram Tool, Venn Diagrams and Set Theory using Mathematica": 1 + "Mastering Propositional Calculus: Euler Diagram Tool in Venn Diagrams with Mathematica and MATLAB": 1 + "Propositional Calculus Mathematics: Exploring Euler Diagram Tool in Venn Diagrams using Mathematica and R Studio": 1 + "Exploring Propositional Calculus Mathematics: Application of Euler Diagram Tool in Venn Diagrams and Logic Gates with Mathematica": 1 + "Comprehensive Study of Propositional Calculus: Euler Diagram Tool in Venn Diagrams and Boolean Algebra using Mathematica": 1 + "Propositional Calculus Mathematics: Using Euler Diagram Tool in Venn Diagrams with Mathematica and Jupyter Notebook": 1 + "Advanced Propositional Calculus Mathematics: Euler Diagram Tool, Venn Diagrams and Graph Theory using Mathematica": 1 + "Music & Media: The Role of Photoshop in Shaping Iconic Rock Album Covers": 1 + "Sonic Aesthetics: The Impact of Digital Imaging on Rock Album Artwork": 1 + "Rock and Roll Imagery: The Influence of DSLR Photography on Album Covers": 1 + "Music Narratives: The Effect of Black and White Photography on Rock Album Covers": 1 + "Behind the Lens: The Impact of 35mm Photography on Rock Album Design": 1 + "Picturing Music: The Role of Film Photography in Crafting Rock Album Covers": 1 + "Sonic Frames: The Influence of Panoramic Photography on Rock Album Art": 1 + "Album Artistry: The Impact of Infrared Photography on Rock Album Covers ": 1 + "Music and Visual Culture: The Role of HDR Photography in Rock Album Art": 1 + "Rock Icons: The Influence of Macro Photography on Album Cover Design": 1 + "Comprehensive Brain Decoding in Schizophrenia Research: Incorporating Magnetic Particle Imaging with Specific Focus on Positron Emission Tomography": 1 + "Advanced Neurofeedback Techniques: A Comprehensive Study in Schizophrenia Research Using Diffusion Tensor Imaging": 1 + "Decoding Schizophrenia: In-depth Analysis of fMRI and Near Infrared Spectroscopy with the Integration of Electroencephalography": 1 + "Comprehensive Brain Decoding: Application of Transcranial Magnetic Stimulation in Schizophrenia Research": 1 + "Brain Decoding in Schizophrenia: Enhancing fMRI Studies with the Use of Optogenetics": 1 + "Near Infrared Spectroscopy and its Role in Schizophrenia Research: A Comprehensive Study Incorporating Real-Time Functional Ultrasound Imaging": 1 + "Comprehensive Brain Decoding: Incorporating Magnetic Particle Imaging, fMRI, Neurofeedback with Specific Focus on Voxel-based Morphometry in Schizophrenia Research": 1 + "Understanding Schizophrenia: Deep Dive into Neurofeedback Techniques with the Integration of Multimodal Imaging": 1 + "Brain Decoding in Schizophrenia: An In-depth Study Incorporating Magnetic Particle Imaging and Advanced Connectomics": 1 + "Comprehensive Brain Decoding: Using fMRI and Near Infrared Spectroscopy with the Integration of Machine Learning Algorithms in Schizophrenia Research": 1 + "Computer Programming: Exploring Java and JDBC with Eclipse IDE": 1 + "Java Programming: A Deep Dive into JDBC and SQL Databases": 1 + "Advanced Computer Programming: JDBC in Java with NetBeans IDE": 1 + "Mastering JDBC: Java Programming Using MySQL Database": 1 + "Computer Programming: Enhancing Java Skills through JDBC and Oracle Database": 1 + "Java and JDBC: Integrating PostgreSQL in your Java Applications": 1 + "JDBC in Depth: A Comprehensive Study of Java and SQLite ": 1 + "Java Programming: JDBC Connectivity with Microsoft SQL Server": 1 + "Java and JDBC: Building Robust Applications with MariaDB": 1 + "JDBC Explored: An In-depth Study of Java and DB2.": 1 + "Exploring Polymers with Slime: A Fun Chemistry Course for Kids": 1 + "Beakers and Bouncy Balls: A Polymer Chemistry Adventure for Children": 1 + "Polymer Puzzles: Learning Chemistry with a Microscope for Kids": 1 + "Stretching Science: An Adventure in Elastic Polymers for Children": 1 + "Gooey Games: Playing with Non-Newtonian Fluids in Kid's Chemistry": 1 + "Chemistry for Children: Exploring Polymers with Spectrophotometry": 1 + "Kitchen Chemistry: Adventures in Food-Based Polymers for Kids": 1 + "Sticky Science: Learning About Adhesive Polymers for Children": 1 + "Bubbling Fun: Exploring Polymers with Chemical Reactions for Kids": 1 + "Colorful Chemistry: Playing with Polymers and pH Indicators for Kids": 1 + "Advanced Physics: Exploring Quantum Entanglement with the Use of a Synchrotron and Linear Collider": 1 + "Advanced Physics: Probing the Universe's Laws with Synchrotron Radiation and Quantum Teleportation": 1 + "Advanced Physics: Unraveling Spacetime Curvature with Synchrotron and Quantum Superposition": 1 + "Advanced Physics: Deciphering Quantum Mechanics with a Synchrotron and Bell's Theorem": 1 + "Advanced Physics: Dissecting the Universe's Laws with a Synchrotron and Quantum Decoherence": 1 + "Advanced Physics: Investigating Quantum Fields with the Help of a Synchrotron and Particle Accelerator": 1 + "Advanced Physics: Analyzing Quantum Gravity with a Synchrotron and String Theory": 1 + "Advanced Physics: Unmasking the Higgs Boson with Synchrotron and Quantum Tunneling": 1 + "Advanced Physics: Decoding Dark Matter with a Synchrotron and Wave-Particle Duality": 1 + "Advanced Physics: Probing Quantum Chromodynamics with a Synchrotron and Quantum Loop Theory": 1 + "The Sound of Music: Comprehensive Analysis of Piano Acoustics through Condenser Microphone Placement Using Spectrogram Analysis": 1 + "The Sound of Music: Detailed Examination of Piano Acoustics with Neumann U87 Condenser Microphone": 1 + "The Sound of Music: A Study of Piano Acoustics through Condenser Microphone Placement Using Audio Interface Technology": 1 + "The Sound of Music: Exploring Piano Acoustics through Condenser Microphone Placement and Fourier Transform Methods": 1 + "The Sound of Music: Investigating Piano Acoustics via Condenser Microphone Placement and Acoustic Diffuser Usage": 1 + "The Sound of Music: Detailed Study of Piano Acoustics through AKG C414 Condenser Microphone Placement": 1 + "The Sound of Music: In-depth Analysis of Piano Acoustics through Condenser Microphone Placement with Pro Tools Software": 1 + "The Sound of Music: A Detailed Study of Piano Acoustics through Condenser Microphone Placement and Audio Equalization Techniques": 1 + "The Sound of Music: Comprehensive Research of Piano Acoustics through Condenser Microphone Placement Using the Harmonic Spectra Method": 1 + "The Sound of Music: Detailed Study of Piano Acoustics through Condenser Microphone Placement Using the Impulse Response Technique": 1 + "Elementary Science: Exploring the Solar System with Telescopes and Celestial Mechanics": 1 + "Elementary Science: Understanding the Solar System through Celestial Mechanics and Satellite Imagery": 1 + "Elementary Science: Gravitational Forces and Celestial Mechanics in the Solar System": 1 + "Elementary Science: The Use of Space Probes in Understanding Celestial Mechanics within the Solar System": 1 + "Stellar Spectroscopy and Celestial Mechanics: An Elementary Science Course on the Solar System": 1 + "Elementary Science: Mapping the Solar System with Astrocartography and Celestial Mechanics": 1 + "Elementary Science: Understanding the Solar System through Celestial Mechanics and Astrophotography": 1 + "Elementary Science: Celestial Mechanics and the Role of Robotic Spacecraft in Solar System Exploration": 1 + "Elementary Science: Deciphering the Solar System through Celestial Mechanics and Radio Astronomy": 1 + "Elementary Science: Harnessing Computer Simulations to Understand Celestial Mechanics of the Solar System.": 1 + "Elementary Computing 110: Learning Matrices in Kotlin Using IntelliJ IDEA": 1 + "Elementary Computing 110: Understanding Matrices in Kotlin through Eclipse IDE": 1 + "Elementary Computing 110: Mastering Matrices in Kotlin with Android Studio": 1 + "Elementary Computing 110: Implementing Matrices in Kotlin Using NetBeans IDE": 1 + "Elementary Computing 110: Exploring Matrices in Kotlin with Jupyter Notebook": 1 + "Elementary Computing 110: Learning Matrices in Kotlin Through the Application of Visual Studio Code": 1 + "Elementary Computing 110: Navigating Matrices in Kotlin Using PyCharm IDE": 1 + "Elementary Computing 110: Applying Matrices in Kotlin with the Help of BlueJ": 1 + "Elementary Computing 110: Understanding Matrices in Kotlin via JetBrains MPS": 1 + "Elementary Computing 110: Kotlin Matrix Operations Using the Greenfoot IDE": 1 + "Mathematics: Exploring the Art of Geometry through Fibonacci Sequence using Python": 1 + "The Art of Geometry: A Deep Dive into the Fibonacci Sequence with MATLAB": 1 + "A Mathematician's Approach: Understanding Geometry and Fibonacci Sequence through Graph Theory": 1 + "Geometry and Number Theory: An Intensive Study of Fibonacci Sequence using Scientific Calculators": 1 + "The Art of Geometry: A Comprehensive Study of Fibonacci Sequence using AutoCAD": 1 + "The Geometry of Fibonacci: A Detailed Study using Geogebra": 1 + "Fibonacci Series in Geometry: A Mathematical Exploration using Wolfram Alpha": 1 + "Deep Learning the Fibonacci Sequence: A Mathematical and Geometric Approach using R Programming ": 1 + "Exploring Fibonacci Sequence in Geometry with Desmos: A Mathematical Investigation": 1 + "The Art of Geometry: Unraveling Fibonacci Sequence with Computational Mathematics using Mathematica.": 1 + "Mastering Dialogue with Character Development: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue through Story Arcs: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue with Foreshadowing Techniques: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue: Basic English Introduction to Creative Writing With Conflict Resolution": 1 + "Mastering Dialogue Using Subtext: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue through Setting Description: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue with Symbolism: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue: Basic English Introduction to Creative Writing Using Flashback Techniques": 1 + "Mastering Dialogue through Metaphors: Basic English Introduction to Creative Writing": 1 + "Mastering Dialogue with Point of View Shifts: Basic English Introduction to Creative Writing": 1 + "Artistic Adventures: The Influence of DJ Turntablism on Hip-Hop Dance in Urban Culture and the Music Industry": 1 + "Breakin' Beats: The Role of Beatboxing in Hip-Hop Dance and Its Impact on Urban Culture": 1 + "Street Style: Graffiti Art's Influence on Hip-Hop Dance and Its Ripple Effect on the Music Industry": 1 + "Artistic Adventures: The Impact of Sampling Techniques on Hip-Hop Dance and Urban Culture": 1 + "Mixing Magic: The Effect of Mixtapes on Hip-Hop Dance and Urban Culture's Influence on the Music Industry": 1 + "Digital Dance: The Application of Music Production Software in Hip-Hop Dance and Its Impact on the Music Industry": 1 + "Artistic Adventures: Exploring the Influence of Scratching Techniques on Hip-Hop Dance in Urban Culture": 1 + "Rhythmic Rhymes: The Integration of Rap in Hip-Hop Dance and Its Effect on Urban Culture and the Music Industry": 1 + "Artistic Adventures: The Impact of Vinyl Culture on Hip-Hop Dance and Its Influence on the Urban Music Industry": 1 + "Urban Echoes: The Role of Sound Systems in Hip-Hop Dance and Its Resonance in Urban Culture and the Music Industry.": 1 + "Logical Thinkers: An Exploration of Elementary Logic through Digital Circuits Using Boolean Algebra": 1 + "Logical Thinkers: Understanding Elementary Logic with Digital Circuits and NAND Gates": 1 + "Logical Thinkers: A Deep Dive into Elementary Logic through Digital Circuits with Truth Tables": 1 + "Logical Thinkers: Elementary Logic in Digital Circuits Dissected Using Logic Gates": 1 + "Logical Thinkers: Elementary Logic through Digital Circuits and the Application of Karnaugh Maps": 1 + "Logical Thinkers: Harnessing Elementary Logic in Digital Circuits with Flip Flops": 1 + "Logical Thinkers: Mastering Elementary Logic through Digital Circuits with Binary Number Systems": 1 + "Logical Thinkers: A Journey into Elementary Logic through Digital Circuits using VHDL": 1 + "Logical Thinkers: Elementary Logic in Digital Circuits Explored Through Seven Segment Displays": 1 + "Logical Thinkers: Elementary Logic Unveiled through Digital Circuits Using Integrated Circuits.": 1 + "Organic Chemistry: The Science of Carbon Compounds and Spectroscopy Techniques": 1 + "Organic Chemistry: Exploring Carbon Compounds with Nuclear Magnetic Resonance ": 1 + "Organic Chemistry: The Science of Carbon Compounds through Molecular Modelling": 1 + "Organic Chemistry: The Science of Carbon Compounds and Mass Spectrometry": 1 + "Organic Chemistry: Understanding Carbon Compounds via Infrared Spectroscopy": 1 + "Organic Chemistry: The Role of Carbon Compounds in Chromatography": 1 + "Organic Chemistry: Investigating Carbon Compounds with X-ray Crystallography ": 1 + "Organic Chemistry: The Science of Carbon Compounds and Computational Chemistry Tools": 1 + "Organic Chemistry: Studying Carbon Compounds with Gas Chromatography-Mass Spectrometry ": 1 + "Organic Chemistry: The Science of Carbon Compounds and Ultraviolet-Visible Spectroscopy": 1 + "Creative Writing: Leveraging Quip for Crafting Tales Using English Slang and Personification Imagery with Foreshadowing Techniques in Google Docs": 1 + "Creative Writing: Advanced Use of Quip for Constructing Tales with English Slang and Symbolic Imagery, Incorporating Foreshadowing Techniques in Evernote": 1 + "Creative Writing: A Deep Dive into Quip for Creating Tales with English Slang, Imagery and Foreshadowing Techniques using Scrivener": 1 + "Creative Writing: Mastering Quip for Spinning Tales with English Slang and Visual Imagery, Enhanced with Foreshadowing Techniques in Microsoft Word": 1 + "Creative Writing: Exploiting Quip for Developing Tales Using English Slang and Sensory Imagery with Foreshadowing Techniques on Google Drive": 1 + "Creative Writing: Unleashing the Power of Quip for Fabricating Tales with English Slang and Metaphoric Imagery using Foreshadowing Techniques in OpenOffice Writer": 1 + "Creative Writing: Comprehensive Guide to Quip for Weaving Tales Using English Slang, Imagery and Foreshadowing Techniques in Adobe Story": 1 + "Creative Writing: Harnessing Quip for Composing Tales with English Slang, Imagery and Foreshadowing Techniques using Celtx": 1 + "Creative Writing: Expert Use of Quip for Moulding Tales Using English Slang and Vivid Imagery with Foreshadowing Techniques in Pages": 1 + "Creative Writing: Optimizing Quip for Building Tales Using English Slang, Imagery and Foreshadowing Techniques in Trelby.": 1 + "Advanced Biochemistry: Detailed pH Scale Analysis using Atomic Force Microscopy and Electrochemical Impedance Spectroscopy": 1 + "Expanding Biochemistry: In-depth pH Scale Analysis via Atomic Force Microscopy with the Utilization of Nanopipettes": 1 + "Detailed pH Scale Analysis in Biochemistry: Incorporating Atomic Force Microscopy and Quartz Crystal Microbalance Techniques": 1 + "Specialized Biochemistry: pH Scale Analysis using Atomic Force Microscopy and Fourier Transform Infrared Spectroscopy": 1 + "Expanding Biochemistry: pH Scale Analysis via Atomic Force Microscopy and Surface Plasmon Resonance": 1 + "Advanced Biochemistry: Detailed pH Scale Analysis via Atomic Force Microscopy and Spectrophotometric Titration": 1 + "Comprehensive Biochemistry: pH Analysis through Atomic Force Microscopy and Fluorescence Spectroscopy": 1 + "Expanding Biochemistry: Detailed pH Scale Analysis via Atomic Force Microscopy and the Use of Ion-Selective Electrodes": 1 + "Biochemical Explorations: pH Scale Analysis via Atomic Force Microscopy and Gravimetric Analysis": 1 + "Detailed Biochemistry: pH Scale Analysis through Atomic Force Microscopy and the Application of Microscale Titration.": 1 + "Art: Exploring Impressionism through Oil Paintings with Palette Knives": 1 + "Art: Unveiling Impressionism: A Journey through Oil Paintings using Turpentine": 1 + "Art: Decoding Impressionism through Oil Paintings with Glazing Techniques": 1 + "Art: Journey into the World of Impressionism through Oil Paintings using Underpainting": 1 + "Art: Discovering Impressionism through Oil Paintings with Easel Technology": 1 + "Art: Mastering Impressionism using Sgraffito Technique in Oil Paintings": 1 + "Art: Exploring Impressionism through Oil Paintings using Scumbling Technique": 1 + "Art: Understanding Impressionism through Oil Paintings with Canvas Prepping": 1 + "Art: Impressionism Uncovered: A Deep Dive into Oil Paintings using Mastic Varnish": 1 + "Art: Revealing the Secrets of Impressionism through Oil Paintings with Linseed Oil Techniques": 1 + "Unveiling Timpani Rhythms: Advanced Digital Sampling Techniques in Reason Using Audacity's Spectral Analysis and Adobe Audition": 1 + "Exploring Timpani Rhythms: Digital Sampling Techniques with MIDI Controller in Reason Using Audacity": 1 + "Unveiling Timpani Rhythms: The Use of VST Plugins in Digital Sampling Techniques Using Audacity's Spectral Analysis": 1 + "Mastering Timpani Rhythms: Digital Sampling Techniques in Reason using Audacity's Spectral Analysis and Pro Tools": 1 + "Unveiling Timpani Rhythms: Digital Sampling Techniques in Reason with Logic Pro X Using Audacity's Spectral Analysis": 1 + "Unveiling Timpani Rhythms: Digital Sampling Techniques Using Ableton Live and Audacity's Spectral Analysis in Reason": 1 + "Practical Timpani Rhythms: Digital Sampling Techniques in Reason Using Audacity's Spectral Analysis and Sound Forge": 1 + "Unveiling Timpani Rhythms: Digital Sampling Techniques Using Quantization in Reason with Audacity's Spectral Analysis": 1 + "Unveiling Timpani Rhythms: Digital Sampling Techniques Using Audacity's Spectral Analysis and FL Studio in Reason": 1 + "Understanding Timpani Rhythms: Digital Sampling Techniques in Reason Using Audacity's Spectral Analysis and Cubase Techniques.": 1 + "Organic Chemistry: Unraveling Molecules using Quantum Mechanics and Nuclear Magnetic Resonance (NMR) Spectroscopy": 1 + "Organic Chemistry: Decoding Molecules with Quantum Mechanics and Mass Spectrometry": 1 + "Organic Chemistry: Analysis of Molecules through Quantum Mechanics and Ultraviolet Spectroscopy": 1 + "Organic Chemistry: Examining Molecules using Quantum Mechanics and X-ray Crystallography": 1 + "Organic Chemistry: Unraveling Molecules with Quantum Mechanics and Infrared Spectroscopy": 1 + "Organic Chemistry: Investigating Molecules using Quantum Mechanics and Gas Chromatography": 1 + "Organic Chemistry: Unraveling Molecules using Quantum Mechanics and Fourier Transform Infrared (FTIR) Spectroscopy": 1 + "Organic Chemistry: Utilizing Quantum Mechanics and Liquid Chromatography-Mass Spectrometry in Molecule Analysis": 1 + "Organic Chemistry: Quantum Mechanics and Electron Spin Resonance in Molecule Investigation": 1 + "Organic Chemistry: Quantum Mechanics and High Performance Liquid Chromatography in Molecular Studies": 1 + "Wilderness Survival: Mastering Water Purification with Halogen Tablets and Solar Stills": 1 + "Wilderness Survival: Advanced Techniques for Water Purification using Halogen Tablets and Distillation": 1 + "Wilderness Survival: Water Purification using Halogen Tablets and Charcoal Filtration Methods": 1 + "Wilderness Survival: Comprehensive Guide to Water Purification using Halogen Tablets and UV Light": 1 + "Wilderness Survival: Innovative Water Purification Techniques using Halogen Tablets and Ceramic Filters": 1 + "Wilderness Survival: Using Halogen Tablets and Iodine for Effective Water Purification": 1 + "Wilderness Survival: Water Purification Techniques using Halogen Tablets and Reverse Osmosis Systems": 1 + "Wilderness Survival: The Science of Water Purification using Halogen Tablets and Coagulation-Flocculation": 1 + "Wilderness Survival: Practical Water Purification Methods using Halogen Tablets and Sand Filtration": 1 + "Wilderness Survival: Water Purification using Halogen Tablets and the LifeStraw Personal Water Filter.": 1 + "Music: The Impact of the Saxophone on the Evolution of Jazz in 20th Century America": 1 + "Reverb and Echo: Tech Innovations Shaping Jazz in 20th Century America": 1 + "From Acoustic to Electric: The Role of Amplification in Jazz's Evolution in 20th Century America": 1 + "The Vinyl Revolution: How Recordings Shaped Jazz in 20th Century America": 1 + "Music: Exploring the Role of Radio Broadcasting in the Advancement of Jazz in 20th Century America": 1 + "Syncopation & Rhythm: Key Concepts in the Evolution of 20th Century American Jazz": 1 + "Music: The Influence of Microphone Technology on Jazz Singing Styles in 20th Century America": 1 + "Music: The Impact of Piano Improvisation on the Evolution of Jazz in 20th Century America": 1 + "The Evolution of Jazz in 20th Century America: The Role of Sheet Music Publishing ": 1 + "Music: The Evolution of Jazz in 20th Century America through the Lens of the Electric Guitar.": 1 + "Machine Learning with Python: Exploring Neural Networks using TensorFlow": 1 + "Machine Learning in Python: A Deep Dive into Convolutional Neural Networks": 1 + "Python and Machine Learning: Unpacking Recurrent Neural Networks with Keras": 1 + "Machine Learning with Python: Utilizing PyTorch in Neural Network Development": 1 + "Python-Based Machine Learning: Harnessing the Power of Deep Learning with Neural Networks": 1 + "Machine Learning with Python: Building Robust Neural Networks with Scikit-learn": 1 + "Advanced Machine Learning: Exploring Neural Networks with Python and Numpy": 1 + "Python and Machine Learning: Neural Network Implementation using Theano": 1 + "Machine Learning with Python: A Comprehensive Guide to Neural Networks using Pandas": 1 + "Python for Machine Learning: Neural Networks and Deep Learning with Matplotlib.": 1 + "Unraveling Fallacies: Analyzing Logical Errors using Venn Diagrams, Syllogistic Logic & Euler's Circles": 1 + "Logic Decoded: Utilizing Truth Tables to Analyze Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Fallacy Detective: Using Propositional Calculus in Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Logic Simplified: Analyzing Logical Fallacies with Venn Diagrams, Syllogistic Logic, and De Morgan's Laws": 1 + "Understanding Logic: Integrating Karnaugh Maps for Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Logic Masterclass: Applying Deductive Reasoning in Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Dissecting Logic: Using Predicate Logic in Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Logical Investigations: Incorporating Set Theory in Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic": 1 + "Logic Uncovered: Analyzing Logical Fallacies using Venn Diagrams, Syllogistic Logic & the Square of Opposition": 1 + "The Logician's Toolkit: Implementing Boolean Algebra in Analyzing Logical Fallacies with Venn Diagrams and Syllogistic Logic.": 1 + "Neuroscience: Exploring the Human Brain with fMRI": 1 + "Neuroscience: Understanding the Human Brain through EEG Technology": 1 + "Neuroscience: The Role of Neuroplasticity in the Human Brain": 1 + "Neuroscience: Unraveling the Human Brain with PET Scans ": 1 + "Neuroscience: Decoding the Human Brain: The Impact of Neurotransmitters": 1 + "Neuroscience: Unveiling the Human Brain with DTI Technology": 1 + "Neuroscience: Understanding the Human Brain: The Influence of Genetics": 1 + "Neuroscience: Exploring the Human Brain using Neural Networks": 1 + "Neuroscience: Understanding the Human Brain through Neuroimaging Techniques": 1 + "Neuroscience: The Power of Synaptic Plasticity in the Human Brain": 1 + "Logic 101: Exploring Formal Logic with Venn Diagrams and Euler Circles": 1 + "Logic 101: A Deep Dive into Formal Logic using Venn Diagrams and Truth Tables": 1 + "Logic 101: Understanding Formal Logic through Venn Diagrams and Propositional Calculus": 1 + "Logic 101: Formal Logic Analysis using Venn Diagrams and Deductive Reasoning": 1 + "Logic 101: A Comprehensive Study of Formal Logic with Venn Diagrams and Boolean Algebra": 1 + "Logic 101: Formal Logic and Venn Diagrams: The Role of Inductive Reasoning": 1 + "Logic 101: Decoding Formal Logic: Venn Diagrams Meets Syllogistic Logic": 1 + "Logic 101: A Study on Formal Logic using Venn Diagrams and Set Theory Concepts": 1 + "Logic 101: Exploring Formal Logic: A Fusion of Venn Diagrams and Logical Connectives": 1 + "Logic 101: Advancing Formal Logic: Venn Diagrams Integrated with Predicate Logic.": 1 + "Language Arts: The Rhetoric of Economic Discourse: Exploring the Impact of Blockchain Technology on the Functionality of Smart Contracts in Cryptocurrency": 1 + "Language Arts: Ethereum's Smart Contracts: A Detailed Study of Economic Discourse in Cryptocurrency": 1 + "The Rhetoric of Economic Discourse: The Functionality of Smart Contracts in Bitcoin and the Role of Cryptography": 1 + "Language Arts: Exploring the Functionality of Smart Contracts in Cryptocurrency through the Lens of Decentralized Finance (DeFi)": 1 + "Language Arts: The Rhetoric of Economic Discourse: An Analysis of Smart Contracts in Cryptocurrency using Solidity Programming": 1 + "Language Arts: Deciphering the Economic Discourse: The Role of Smart Contracts in Cryptocurrency and the Impact of Distributed Ledger Technology": 1 + "Language Arts: The Rhetoric of Economic Discourse: The Functionality of Smart Contracts in Cryptocurrency and the Influence of Peer-to-Peer Networks": 1 + "Language Arts: Economic Discourse and the Functionality of Smart Contracts in Cryptocurrency: A Case Study on Ethereum Blockchain": 1 + "The Rhetoric of Economic Discourse: The Functionality of Smart Contracts in Ripple Cryptocurrency and the Application of Consensus Algorithms": 1 + "Language Arts: Assessing the Functionality of Smart Contracts in Cryptocurrency: The Role of Crypto Wallets in Economic Discourse.": 1 + "Utilizing Haptic Feedback in Sony Morpheus VR Gloves and Leap Motion Controller for Precision Swimming Simulations": 1 + "Enhancing Swimming Simulations: The Role of Real-Time Motion Capture Technology with Sony Morpheus VR Gloves and Leap Motion Controller": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: A study on the Implementation of Inertia Measurement Units": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller Combined with Accelerometers in Swimming Simulations": 1 + "The Impact of Integrated Biofeedback in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations": 1 + "Sony Morpheus VR Gloves, Leap Motion Controller and Kinect: Real-Time Motion Capture Technology in Swimming Simulation": 1 + "The Role of Real-Time Motion Capture Technology in Swimming Simulations: An Analysis of Sony Morpheus VR Gloves and Leap Motion Controller with 3D Positional Tracking": 1 + "Using Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: The Enhancement of Performance with Electromyography": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller in Swimming Simulations: Incorporating Vibration Feedback for Realistic Experience": 1 + "The Integration of Force Sensing Resistors in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations.": 1 + "Elementary Robotics: An Introduction to Python Programming and Raspberry Pi Utilization": 1 + "Elementary Robotics: Exploring Data Structures with Python and Arduino": 1 + "Elementary Robotics: Python Programming and Data Structures using LEGO Mindstorms": 1 + "Elementary Robotics: A Deep Dive into Python Programming, Data Structures, and Turtle Graphics": 1 + "Elementary Robotics: Python Programming, Data Structures, and Micro:bit Exploration": 1 + "Elementary Robotics: Python Programming and Data Structures with an Emphasis on Recursion": 1 + "Elementary Robotics: Python Programming, Data Structures, and Introduction to Machine Learning": 1 + "Elementary Robotics: Python Programming, Data Structures, and IoT Applications": 1 + "Elementary Robotics: Python Programming, Data Structures, and Robotics Operating System (ROS)": 1 + "Elementary Robotics: Python Programming, Data Structures, and Computer Vision Integration.": 1 + "The Influence of Caricature: The Role of Political Cartoons and Lithography in Shaping Modern Art during World War I": 1 + "The Power of Satire: Use of Political Cartoons and Printing Press in Propagating Propaganda during World War II": 1 + "The Impact of Political Cartoons and Photolithography on Modern Art during the World Wars: A Focus on Propaganda": 1 + "The Role of Political Cartoons and Offset Printing as a Propaganda Medium during the World Wars: A Perspective on Modern Art": 1 + "Using Political Cartoons and Woodcut Technique: How Propaganda Shaped Modern Art during the World Wars": 1 + "The Role of Political Cartoons and Engraving in the Propaganda Machine: Shaping Modern Art during the World Wars": 1 + "The Impact of Political Cartoons and Etching Technique on Modern Art: Highlight on Propaganda during the World Wars": 1 + "Political Cartoons and the Silk Screen Printing: The Propaganda Tool Shaping Modern Art during the World Wars": 1 + "The Role of Political Cartoons and Digital Printing in Propaganda: The Influence on Modern Art during the World Wars": 1 + "Shaping Modern Art through Political Cartoons and the Lithographic Technique: The Role of Propaganda during the World Wars": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids Using Bunsen Burners": 1 + "Little Lab Rats: Exploring Chemical Equations with Microscopes for Kids": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Introduction to pH Scale ": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Understanding Litmus Tests": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Using Beakers and Test Tubes": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Exploring the Periodic Table": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Experimenting with Catalysts": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Interactive Learning with Virtual Reality ": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Balancing Equations with Chemistry Software": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Discovering Endothermic and Exothermic Reactions": 1 + "Little Lab Rats: Fun with Chemical Equations for Kids - Experimenting with Chemical Bonds.": 1 + "Social Studies: Analyzing American History through the Lens of the Cotton Gin": 1 + "Social Studies: Understanding American History with GIS Technology": 1 + "Social Studies: Exploring American History through the Perspective of the Electric Grid ": 1 + "Social Studies: Decoding American History with Cryptographic Techniques": 1 + "Social Studies: Observing American History through the Evolution of Transportation ": 1 + "Social Studies: Mapping American History with the Advent of Cartography ": 1 + "Social Studies: Dissecting American History through the Invention of the Telegraph": 1 + "Social Studies: Deciphering American History with the Printing Press": 1 + "Social Studies: Studying American History through the Impact of the Internet": 1 + "Social Studies: Picturing American History with the Development of Photography ": 1 + "Social Studies: Tracing American History with the Steam Engine": 1 + "Exploring the Role of Oculus Rift in Enhancing Volleyball Motion Aesthetics through VRChat and PlayStation VR: Ten Possible Approaches": 1 + "Deciphering the Impact of VRChat and PlayStation VR on Volleyball Motion Aesthetics Using Microsoft Kinect: Ten Potential Solutions": 1 + "A Thorough Analysis of Motion Capture Technology in VRChat and PlayStation VR for Improving Volleyball Movement Aesthetics: Ten Innovative Strategies": 1 + "The Influence of VRChat and PlayStation VR on Volleyball Motion Aesthetics: A Detailed Study Using Unreal Engine and Ten Possible Solutions": 1 + "Haptic Feedback's Role in VRChat and PlayStation VR for Volleyball Motion Aesthetics: Ten Potential Remedies": 1 + "Unity 3D's Impact on Volleyball Motion Aesthetics in VRChat and PlayStation VR: Ten Possible Solutions": 1 + "Understanding the Influence of VRChat and PlayStation VR on Volleyball Motion Aesthetics through Biofeedback: Ten Potential Strategies": 1 + "The Use of AI Learning Algorithms for Enhancing Volleyball Motion Aesthetics in VRChat and PlayStation VR: Ten Possible Solutions": 1 + "A Comprehensive Study on the Role of HTC Vive in VRChat and PlayStation VR for Volleyball Motion Aesthetics: Ten Potential Strategies": 1 + "Leveraging Leap Motion Controllers to Improve Volleyball Motion Aesthetics in VRChat and PlayStation VR: Ten Possible Solutions.": 1 + "Patterns and Emotion in Fractal Geometry: A Detailed Study using the Mandelbrot Set with Mathematica": 1 + "Exploring the Julia Set: Patterns and Emotion in Fractal Geometry with Mathematica": 1 + "Patterns and Emotion in Fractal Geometry: An Insightful Journey with Mathematica and Python": 1 + "Patterns and Emotion in Fractal Geometry: Deep Dive into Cantor Sets with Mathematica": 1 + "Fractals and Emotions: Exploring the Sierpinski Triangle with Mathematica": 1 + "The Koch Snowflake: Patterns and Emotion in Fractal Geometry with Mathematica": 1 + "Patterns and Emotion in Fractal Geometry: An Insightful Journey with MATLAB and Mathematica": 1 + "The Dragon Curve: Patterns and Emotion in Fractal Geometry with Mathematica": 1 + "Exploring the Lorenz System: Patterns and Emotion in Fractal Geometry with Mathematica": 1 + "Patterns and Emotion in Fractal Geometry: A Detailed Analysis of the Hilbert Curve with Mathematica": 1 + "Intermediate Mathematics: Exploring Geometric Shapes with Pythagorean Theorem": 1 + "Intermediate Mathematics: Investigating Polygons using Geometer's Sketchpad": 1 + "Intermediate Mathematics: An In-depth Study of Circles with Compass and Straightedge": 1 + "Intermediate Mathematics: Understanding 3D Shapes through SolidWorks Software": 1 + "Intermediate Mathematics: Exploring Geometric Shapes using Tessellations": 1 + "Intermediate Mathematics: Exploring Geometric Transformations with GeoGebra": 1 + "Intermediate Mathematics: Mastering Triangles using Trigonometric Ratios": 1 + "Intermediate Mathematics: A Survey of Quadrilaterals with Autocad Technology": 1 + "Intermediate Mathematics: Unfolding the World of Fractals and their Geometric Patterns": 1 + "Intermediate Mathematics: Exploring Geometric Shapes through the Lens of Symmetry": 1 + "Analyzing the Economic Impact of Noise Pollution on Public Health using Contingent Valuation Method: A Study of Ten Noise Reduction Techniques": 1 + "Hedonic Pricing Model to Evaluate the Economic Impact of Noise Pollution on Public Health: Proposing Ten Possible Solutions": 1 + "The Economic Impact of Noise Pollution on Public Health: A Study Using Cost-Benefit Analysis and Proposing Ten Noise Mitigation Techniques ": 1 + "The Economic Impact of Noise Pollution on Public Health: A Detailed Analysis using the Travel Cost Method and Ten Potential Resolutions": 1 + "Using the Defensive Expenditure Method for Assessing the Economic Impact of Noise Pollution on Public Health: Ten Possible Remedies": 1 + "The Economic Impact of Noise Pollution on Public Health: A Study Using the Damage Function Approach and Suggesting Ten Noise Control Measures": 1 + "Evaluating the Economic Impact of Noise Pollution on Public Health through Benefit Transfer Method: Ten Proposed Solutions": 1 + "Applying Willingness to Pay Technique to Study the Economic Impact of Noise Pollution on Public Health: Ten Possible Strategies": 1 + "The Economic Impact of Noise Pollution on Public Health: A Market Price Analysis and Ten Potential Remedial Actions": 1 + "The Economic Impact of Noise Pollution on Public Health: A Study Using the Production Function Approach and Ten Suggested Countermeasures.": 1 + "Organic Chemistry: Analyzing Molecular Structures with Infrared Spectroscopy, Scanning Electron Microscopy, and Nuclear Magnetic Resonance ": 1 + "Organic Chemistry: Unveiling Molecules with Fourier Transform Infrared Spectroscopy and Transmission Electron Microscopy ": 1 + "Organic Chemistry: Decoding Molecules with Infrared Spectroscopy, Field Emission Scanning Electron Microscopy, and Mass Spectrometry": 1 + "Organic Chemistry: Exploring Structures with Infrared Spectroscopy, Cryogenic Electron Microscopy, and X-ray Crystallography": 1 + "Organic Chemistry: Investigating Molecular Constructs with Infrared Spectroscopy, Environmental Scanning Electron Microscopy, and Gas Chromatography": 1 + "Organic Chemistry: Unraveling Molecules with Infrared Spectroscopy, Confocal Laser Scanning Microscopy, and High-Performance Liquid Chromatography ": 1 + "Organic Chemistry: Interpreting Molecules with Attenuated Total Reflection-Infrared Spectroscopy, Dual Beam Electron Microscopy, and Ultraviolet-visible Spectroscopy": 1 + "Organic Chemistry: Deciphering Molecular Structures with Infrared Spectroscopy, Transmission Electron Microscopy, and Proton Nuclear Magnetic Resonance": 1 + "Organic Chemistry: Understanding Molecular Elements with Infrared Spectroscopy, Scanning Tunneling Microscopy, and Pyrolysis Gas Chromatography": 1 + "Organic Chemistry: Dissecting Molecules with Infrared Spectroscopy, Electron Backscatter Diffraction Microscopy, and Time-of-Flight Mass Spectrometry.": 1 + "Geography: Tracing the Silk Road Using ArcGIS Technology": 1 + "Geography: Decoding Maya Trade Routes with LiDAR and GIS Technology": 1 + "Geography: Unraveling Ancient Roman Trade Networks Using QGIS Software": 1 + "Geography: Mapping Ancient Egyptian Trade Routes Utilizing Google Earth Pro": 1 + "Geography: Discovering Pre-Columbian Trade Paths with Drone Imaging and GIS Technology": 1 + "Geography: Deciphering Ancient Indus Valley Trade Routes Using GeoMapper Software": 1 + "Geography: Exploring Phoenician Trade Routes Using Satellite Imagery and GIS Tools": 1 + "Geography: Unearthing Ancient Greek Trade Connections Using GPS Tracking and GIS Technology": 1 + "Geography: Revealing Ancient Chinese Trade Routes with Remote Sensing and GIS Analysis": 1 + "Geography: Charting Ancient African Trade Routes Using Topographic Mapping and GIS Technology": 1 + "Interactive Elementary Geography: Understanding Topography through Environmental Studies using Google Earth and ArcGIS": 1 + "Elementary Level: Learning Global Climate Patterns through Environmental Studies with Google Earth and Climate Data from NOAA": 1 + "Geographical Learning for Kids: Studying Biomes with Google Earth and Interactive Ecosystem Models": 1 + "Elementary Education: Exploring the Earth's Water Cycle through Environmental Studies using Google Earth and Virtual Reality": 1 + "Hands-on Elementary Geography: Learning about Plate Tectonics through Environmental Studies using Google Earth and Seismic Activity Simulators": 1 + "Beginner's Geography: Exploring Population Density through Environmental Studies using Google Earth and Census Data Tools": 1 + "Fun with Geography: Understanding Weather Patterns through Environmental Studies using Google Earth and Meteorological Software": 1 + "Basic Geography for Kids: Learning about Earth's Resources through Environmental Studies using Google Earth and Resource Mapping Tools": 1 + "Interactive Learning: Understanding Landforms through Environmental Studies using Google Earth and 3D Printing Technology": 1 + "Elementary Geography: Studying Biodiversity through Environmental Studies using Google Earth and Interactive Species Database.": 1 + "Blockchain Technology: Enhancing E-commerce via IoT and Its Sociocultural Impact Globally": 1 + "Artificial Intelligence and IoT: Revolutionizing E-commerce and their Global Cultural Implications": 1 + "Big Data Analysis in IoT: Its Effect on E-commerce and Global Sociocultural Paradigms": 1 + "Cybersecurity in IoT: Safeguarding E-commerce and its Global Sociocultural Implications": 1 + "Cloud Computing and IoT: Transforming E-commerce and its Global Sociocultural Consequences": 1 + "Machine Learning: IoT's Role in E-commerce and its Global Sociocultural Impacts": 1 + "5G Technology: IoT's Influence on E-commerce and its Global Sociocultural Implications": 1 + "Augmented Reality and IoT: Redefining E-commerce and its Global Sociocultural Effects": 1 + "Quantum Computing: IoT's Potential in E-commerce and its Global Sociocultural Implications": 1 + "Edge Computing in IoT: Shaping E-commerce and its Global Sociocultural Outcomes": 1 + "An Introduction to Boolean Algebra for Beginners: Applying De Morgan's Laws in Formal Logic Using Python": 1 + "Mastering De Morgan's Laws in Formal Logic through Boolean Algebra: A Comprehensive Guide to Using Truth Tables": 1 + "Boolean Algebra for Beginners: Exploring De Morgan's Laws in Formal Logic with Logic Gates": 1 + "A Practical Approach to Boolean Algebra: Applying De Morgan's Laws in Formal Logic Using Venn Diagrams": 1 + "Understanding Boolean Algebra: Implementing De Morgan's Laws in Formal Logic with MATLAB": 1 + "Boolean Algebra for the Modern Mathematician: Applying De Morgan's Laws in Formal Logic Using Propositional Calculus": 1 + "Boolean Algebra Essentials: Using De Morgan's Laws in Formal Logic with Circuit Design": 1 + "Boolean Algebra for Beginners: Harnessing De Morgan's Laws in Formal Logic Using Karnaugh Maps": 1 + "An Insight into Boolean Algebra: Applying De Morgan's Laws in Formal Logic with Logic Simulator": 1 + "Boolean Algebra Unveiled: Making use of De Morgan's Laws in Formal Logic with Binary Decision Diagrams.": 1 + "English: Text Mapping using KNIME Text Processing and Python: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping with Deep Learning Techniques in KNIME Text Processing: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Natural Language Processing: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and IBM Watson: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Machine Learning: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Sentiment Analysis: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Artificial Intelligence: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and TensorFlow: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Data Visualization: Critical Thinking and Textual Analysis": 1 + "English: Text Mapping using KNIME Text Processing and Text Mining: Critical Thinking and Textual Analysis": 1 + "Physics: Energy Storage - A Comprehensive Study of Lithium-ion Batteries through Spectroscopy": 1 + "Physics: Energy Storage - Investigating Lithium-ion Batteries using X-ray Diffraction": 1 + "Physics: Energy Storage - An In-depth Analysis of Lithium-ion Batteries with Electron Microscopy": 1 + "Physics: Energy Storage - Exploring the Physics of Lithium-ion Batteries using NMR Spectroscopy": 1 + "Physics: Energy Storage - Studying Lithium-ion Batteries through the Lens of Thermodynamics": 1 + "Physics: Energy Storage - The Impact of Quantum Mechanics on the Efficiency of Lithium-ion Batteries": 1 + "Physics: Energy Storage - Understanding Lithium-ion Batteries through the Use of Density Functional Theory": 1 + "Physics: Energy Storage - Examining the Physics of Lithium-ion Batteries with Computational Modeling": 1 + "Physics: Energy Storage - Decoding Lithium-ion Batteries using Solid State Physics": 1 + "Physics: Energy Storage - The Role of Electrochemistry in Optimizing Lithium-ion Batteries.": 1 + "Utilizing Tensorflow in Machine Learning: Customizing YouTube Music's Classic Rock Playlist for Event Planning ": 1 + "Leveraging SVM Algorithms in Machine Learning: Refining YouTube Music's Personalized Playlist for Classic Rock in Event Planning ": 1 + "Advanced K-Nearest Neighbors in Machine Learning: Enhancing YouTube Music's Personalized Classic Rock Playlist for Event Planning ": 1 + "Application of Deep Learning in Personalizing YouTube Music's Classic Rock Playlist for Event Planning ": 1 + "Using Python Libraries for Machine Learning: Tailoring YouTube Music's Classic Rock Playlist for Event Planning ": 1 + "Role of Decision Trees in Machine Learning: Optimizing YouTube Music's Personalized Classic Rock Playlist for Event Planning ": 1 + "Ensemble Learning Techniques in Machine Learning: Tailoring YouTube Music's Classic Rock Playlist for Event Planning ": 1 + "Reinforcement Learning Strategies for Machine Learning: Personalizing YouTube Music's Classic Rock Playlist for Event Planning ": 1 + "Application of Neural Networks in Machine Learning: Enhancing YouTube Music's Personalized Classic Rock Playlist for Event Planning ": 1 + "Bayesian Networks in Machine Learning: Tailoring YouTube Music's Classic Rock Playlist for Event Planning": 1 + "Language Arts: Boosting Creative Writing with Hyperlinks in Microsoft Word's Table of Contents Feature": 1 + "Advanced Storytelling: Using Microsoft Word's Table of Contents and Page Breaks for Organized Narratives": 1 + "Language Arts: Enhancing Creative Writing Using Microsoft Word's Table of Contents and Quick Parts Tool": 1 + "Advanced Creative Writing: Implementing Microsoft Word's Table of Contents and Styles Feature": 1 + "Language Arts: Streamlining Storytelling with Microsoft Word's Table of Contents and Navigation Pane": 1 + "Creative Writing and Storytelling: Using Microsoft Word's Table of Contents and Track Changes for Effective Editing": 1 + "Language Arts: Enhancing Narrative Flow Using Microsoft Word's Table of Contents and Cross-referencing Tool": 1 + "Advanced Storytelling: Using Microsoft Word's Table of Contents and SmartArt for Visual Narratives": 1 + "Language Arts: Creative Writing Enhancement with Microsoft Word's Table of Contents and Find and Replace Feature": 1 + "Storytelling Mastery: Utilizing Microsoft Word's Table of Contents and Spelling & Grammar Check for Polished Narratives": 1 + "Social Studies: The Impact of Blockchain Technology on Society": 1 + "Social Studies: The Role of Artificial Intelligence in Modern Society": 1 + "Social Studies: The Influence of Virtual Reality on Social Interactions": 1 + "Social Studies: The Effects of Genetic Engineering on Society": 1 + "Social Studies: The Impact of Renewable Energy Technologies on Society": 1 + "Social Studies: The Social Implications of Nanotechnology": 1 + "Social Studies: The Impact of Cybersecurity on Society": 1 + "Social Studies: The Influence of Mobile Technology on Social Behavior": 1 + "Social Studies: The Role of Internet of Things in Society": 1 + "Social Studies: The Effects of 3D Printing on Industrial Society": 1 + "Macroeconomics: Using Econometric Models and Regression Analysis for Decision Making": 1 + "Macroeconomics: Decision Making with Econometric Models and Monte Carlo Simulations": 1 + "Macroeconomics: Time-Series Analysis and Econometric Models for Decision Making": 1 + "Macroeconomics: Decision Making through Econometric Models and Panel Data Analysis": 1 + "Macroeconomics: Using Econometric Models and Stochastic Processes for Decision Making": 1 + "Macroeconomics: Econometric Models, Bayesian Inference and Decision Making": 1 + "Macroeconomics: Decision Making with Econometric Models and Machine Learning Algorithms": 1 + "Macroeconomics: Using Econometric Models and Predictive Analytics for Decision Making": 1 + "Macroeconomics: Econometric Models, Big Data Analysis and Decision Making ": 1 + "Macroeconomics: Decision Making through Econometric Models and Quantitative Risk Assessment.": 1 + "The Acoustics and Physics of Music: A Deep Dive into Frequency Analysis Using Fourier Transforms": 1 + "Understanding Music through Science: A Study on Acoustics, Physics and Frequency Analysis with Oscilloscopes": 1 + "The Science of Sound: Exploring Acoustics and Physics in Music, with Frequency Analysis via Digital Signal Processing": 1 + "Unveiling Music: An Exploration of Acoustics, Physics, and Frequency Analysis using Spectrograms": 1 + "The Physics of Acoustics in Music: A Frequency Analysis Journey with MATLAB": 1 + "Musical Frequencies: A Scientific Exploration of Acoustics and Physics using Fast Fourier Transform Algorithms": 1 + "Acoustics and Physics in Music: A Detailed Study of Frequency Analysis Utilizing Waveform Generators": 1 + "The Science Behind Music: An Insight into Acoustics, Physics, and Frequency Analysis through Audacity Software": 1 + "Exploring Music: A Detailed Study on Acoustics and Physics Using Frequency Analysis in Python": 1 + "Decoding Music: A Comprehensive Course on Acoustics, Physics, and Frequency Analysis through the Lens of Time-Series Analysis.": 1 + "Social Studies: The Impact of Internet Streaming on Cultural Music: A Deep Dive into the MP3 Revolution": 1 + "Social Studies: The Influence of YouTube on the MP3 Revolution: Cultural Music Evolution": 1 + "Social Studies: The Role of Spotify in the MP3 Revolution: A Study of Cultural Music Transformation": 1 + "Social Studies: iTunes' Effect on Cultural Music: An Insightful Study of the MP3 Revolution": 1 + "Social Studies: The Transition from Vinyl to MP3: A Cultural Music Perspective Using the Phonograph as a Tool": 1 + "Social Studies: Cultural Influence on Music: The MP3 Revolution through the Lens of SoundCloud": 1 + "Social Studies: The Impact of Digitalization on Cultural Music: A Comprehensive Study of the MP3 Revolution": 1 + "Social Studies: The Influence of Peer-to-Peer Sharing on the MP3 Revolution: Napster's Role in Cultural Music": 1 + "Social Studies: Cultural Influence on Music: An Examination of the MP3 Revolution through the Prism of Sound Engineering": 1 + "Social Studies: The Role of Auto-Tune in the MP3 Revolution: A Cultural Music Exploration.": 1 + "Evolution of Recycling: A Deep Dive into the Development of Plastic Recycling Techniques Using Pyrolysis": 1 + "Innovations in Plastic Recycling: The Role of Near-Infrared (NIR) Technology in the Evolution of Recycling": 1 + "Exploring the Evolution of Plastic Recycling: The Impact of Thermal Decomposition ": 1 + "Evolution of Recycling: A Focus on Plastic Recycling Techniques and the Integration of AI Sorting Technology": 1 + "The Evolution of Recycling: An Examination of Plastic Recycling Techniques and the Application of Biodegradable Plastics": 1 + "Advanced Plastic Recycling Techniques: A Study on the Evolution of Plastic Recycling and the Emergence of Chemical Recycling": 1 + "Evolution of Recycling: An Overview of Plastic Recycling Techniques and the Introduction of Blockchain Technology": 1 + "Evolution of Plastic Recycling Techniques: An In-depth Analysis of the Role of Robotics in Recycling": 1 + "Mechanized Evolution of Recycling: The Impact of Plastic Granulators on Plastic Recycling Techniques": 1 + "The Evolution of Recycling: A Comprehensive Study on Plastic Recycling Techniques and the Use of Life Cycle Assessment.": 1 + "Advanced Chemistry: Basic Principles and Chemical Bonding Analysis using ADF Software and Gaussian 09 for Lewis Structures": 1 + "Practical Chemistry: Utilizing ADF Software and Crystal Field Theory for Lewis Structures with inclusion of Valence Bond Theory": 1 + "Chemistry Exploration: Comprehensive Analysis of Chemical Bonding using ADF Software and Quantum Mechanics ": 1 + "Chemistry with a Twist: Focusing on Lewis Structures using ADF Software, Crystal Field Theory and Molecular Orbital Theory": 1 + "Chemistry Decoded: Understanding Basic Principles and Chemical Bonding using ADF Software, Crystal Field Theory and VSEPR Model": 1 + "Chemistry Unraveled: Comprehensive use of ADF Software and Crystal Field Theory in studying Lewis Structures and Hybridization": 1 + "Modern Chemistry: In-depth Analysis of Chemical Bonding using ADF Software, Crystal Field Theory and the Octet Rule": 1 + "Chemistry in Detail: Mastering Lewis Structures with ADF Software and Crystal Field Theory incorporating the Pauli Exclusion Principle": 1 + "Chemistry Insights: Advanced use of ADF Software and Crystal Field Theory with focus on Lewis Structures and Electron Configuration": 1 + "Chemistry Uncovered: Expanding Chemical Bonding Analysis using ADF Software, Crystal Field Theory and the Aufbau Principle.": 1 + "Exploring Plant-Animal Interactions Through Molecular Biology: An Introductory Course Using PCR And Gel Electrophoresis Techniques": 1 + "Molecular Approach to Plant-Animal Interactions: An Introduction to Biology Using PCR Techniques and DNA Sequencing": 1 + "Understanding Plant-Animal Interactions: A Molecular Biology Course Incorporating PCR and Microscopy Techniques": 1 + "Diving Deep into Plant-Animal Interactions: An Introductory Biology Course Featuring PCR Techniques and Flow Cytometry": 1 + "Plant-Animal Interactions: A Molecular Perspective Through PCR Techniques and Fluorescent Probes": 1 + "Introduction to Molecular Biology: Unraveling Plant-Animal Interactions Using PCR Techniques and Bioinformatics Tools": 1 + "Molecular Approach to Plant-Animal Interactions: An Introductory Course Using PCR Techniques and Molecular Cloning": 1 + "Exploring Plant-Animal Interactions: A Molecular Biology Introductory Course Using PCR Techniques and RNA Interference": 1 + "An In-depth Study of Plant-Animal Interactions: A Molecular Biology Course Incorporating PCR Techniques and CRISPR-Cas9 Systems": 1 + "Dissecting Plant-Animal Interactions: An Introductory Biology Course Using PCR Techniques and Next-Generation Sequencing.": 1 + "Physics: Exploring Light Waves with Spectrometers and Photodetectors in Laser Technology": 1 + "Physics: An In-depth Study of Light Waves using Spectrometers and Fiber Optics in Laser Technology": 1 + "Physics: Understanding Light Waves through the Use of Spectrometers and Polarizing Filters in Laser Technology": 1 + "Physics: Analysis of Light Waves using Spectrometers and Optical Oscillators in Laser Technology": 1 + "Physics: The Role of Spectrometers and Wave Plates in Unraveling Light Waves in Laser Technology": 1 + "Physics: Harnessing Light Waves with Spectrometers and Beam Splitters in Laser Technology": 1 + "Physics: Decoding Light Waves using Spectrometers and Photomultiplier Tubes in Laser Technology": 1 + "Physics: Probing Light Waves with Spectrometers and Interferometers in Laser Technology": 1 + "Physics: Investigating Light Waves Using Spectrometers and Quantum Dots in Laser Technology": 1 + "Physics: Demystifying Light Waves with Spectrometers and Photon Counters in Laser Technology": 1 + "Mastering Gouache Techniques with Palette Knives and Brushes: An In-depth Study on Shapes, Lines, and Colors": 1 + "Advanced Gouache Techniques: Exploring Shapes, Lines, and Colors with Palette Knives and Acrylic Paper": 1 + "The Art of Gouache: Understanding Shapes, Lines, and Colors Using Palette Knives and Mixed Media": 1 + "Developing Your Skills: Gouache Techniques with Palette Knives on Canvas - Understanding Shapes, Lines, and Colors": 1 + "Gouache Techniques: Exploring Shapes, Lines, and Colors with Palette Knives and Easel": 1 + "The Comprehensive Guide to Gouache Techniques: Utilizing Palette Knives, Watercolor Paper, and the Concept of Color Theory": 1 + "Exploring Gouache Techniques with Palette Knives and Color Mixing: An Analysis of Shapes, Lines, and Hues": 1 + "Gouache Techniques: Mastering Shapes, Lines, and Colors with Palette Knives and Acrylic Mediums": 1 + "Professional Gouache Techniques: Exploring Shapes, Lines, and Colors with Palette Knives and Gesso": 1 + "Gouache Techniques Unleashed: Understanding Shapes, Lines, and Colors using Palette Knives and Oil Pastels.": 1 + "Physical Education: Influence of Oculus Rift on the Economics of Sports Artistry": 1 + "Physical Education: Exploring the Impact of Virtual Reality Treadmills on Sports Artistry Economics": 1 + "Physical Education: The Intersection of Kinect Motion Sensing and Sports Artistry Economics": 1 + "Physical Education: The Role of VR Gloves in Transforming the Economics of Sports Artistry": 1 + "Physical Education: The Effect of HTC Vive Pro on the Economics of Sports Artistry": 1 + "Physical Education: The HoloLens' Impact on the Economics of Sports Artistry": 1 + "Physical Education: Utilizing Google Cardboard for Economic Advancements in Sports Artistry": 1 + "Physical Education: The Sony PlayStation VR's Contribution to the Economics of Sports Artistry": 1 + "Physical Education: The Impact of Virtual Reality Motion Controllers on the Economics of Sports Artistry": 1 + "Physical Education: The Economic Implications of Augmented Reality in Sports Artistry Using Magic Leap One": 1 + "Basic Physics: Exploring Newton's Laws of Motion with Use of Torsion Pendulum and Free Body Diagrams": 1 + "Basic Physics: Analyzing Projectile Motion through the Lens of Gravitational Pull using Tracker Software": 1 + "Basic Physics: Understanding Laws of Motion via Gravitational Pull with Use of Force Table and Free Body Diagrams": 1 + "Basic Physics: Examining Laws of Motion through Gravitational Pull using Newton's Cradle": 1 + "Basic Physics: Assessing Effects of Gravity on Motion using Incline Plane and Free Body Diagrams": 1 + "Basic Physics: Investigating Laws of Motion with the Aid of a Vacuum Chamber": 1 + "Basic Physics: Evaluating Laws of Motion using Ballistic Pendulum and Gravitational Pull Concepts": 1 + "Basic Physics: Studying Laws of Motion through Gravitational Pull with the Use of Mass Spring System": 1 + "Basic Physics: Exploring Laws of Motion using Atwood's Machine in a Gravitational Environment": 1 + "Basic Physics: Understanding Laws of Motion through Gravitational Pull and Air Track Experiments.": 1 + "Biology: Mastering Cell Analysis and Microscopy with Two-Photon Excitation using Confocal Microscopy": 1 + "Biology: Utilizing Flow Cytometry in Mastering Cell Analysis with Two-Photon Excitation": 1 + "Biology: Mastering Cell Analysis and Microscopy with Two-Photon Excitation and Quantum Dots": 1 + "Biology: Application of Nanotechnology in Cell Analysis and Microscopy with Two-Photon Excitation": 1 + "Biology: Mastering Cell Analysis using Two-Photon Excitation and Fluorescent Probes": 1 + "Biology: Implementing Scanning Electron Microscopy in Cell Analysis with Two-Photon Excitation ": 1 + "Biology: Mastering Cell Analysis and Microscopy with Two-Photon Excitation using Transmission Electron Microscopy ": 1 + "Biology: Cell Analysis with Two-Photon Excitation and Microscopy: A Focus on Atomic Force Microscopy": 1 + "Biology: Exploring Cell Analysis with Two-Photon Excitation through the Lens of Light Microscopy": 1 + "Biology: Mastering Cell Analysis and Microscopy with Two-Photon Excitation: The Role of Magnetic Resonance Imaging": 1 + "Python and Logic Pro X: An Introduction to MIDI Programming in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: Exploring Digital Signal Processing in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: A Deep Dive into Synthesis in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: Unveiling Audio Sampling in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: An In-depth Study of Sound Design in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: A Comprehensive Guide to Audio Mixing in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: Understanding Sound Engineering in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: Demystifying Audio Mastering in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: Breaking Down Acoustics in Music Technology with Beat Matching Techniques.": 1 + "Python and Logic Pro X: An Overview of Multitrack Recording in Music Technology with Beat Matching Techniques.": 1 + "Advanced Algorithmic Concepts: Utilizing Java, JUnit, Data Structures, and Eclipse IDE for Math and Computational Problem-Solving Applications": 1 + "In-depth Study of Algorithmic Concepts: Using Java, JUnit, Data Structures, and NetBeans for Mathematical and Analytical Problem-Solving": 1 + "Advanced Algorithmic Concepts: Employing Java, JUnit, Data Structures, and IntelliJ IDEA for Math and Problem-Solving Applications ": 1 + "Mastering Algorithmic Concepts: Using Java, JUnit, Data Structures, and MySQL for Mathematical and Database Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Leveraging Java, JUnit, Data Structures, and Apache Maven for Math and Development Cycle Problem-Solving ": 1 + "Advanced Algorithmic Concepts: Exploiting Java, JUnit, Data Structures, and AWS Cloud Services for Scalable Math and Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Using Java, JUnit, Data Structures, and Git for Version-Controlled Math and Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Implementing Java, JUnit, Data Structures, and Jenkins for Continuous Integration in Math and Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Using Java, JUnit, Data Structures, and Docker for Containerized Math and Problem-Solving Applications": 1 + "Advanced Algorithmic Concepts: Incorporating Java, JUnit, Data Structures, and Apache Hadoop for Big Data Math and Problem-Solving Applications": 1 + "Fundamentals of Theatrical Production: A Deep Dive into Set Design and Stage Management Using AutoCAD": 1 + "The Art of Theatrical Production: Exploring Set Design and Stage Management through Vectorworks Spotlight": 1 + "Basics of Theatrical Production: A Focus on Set Design and Stage Management with SketchUp": 1 + "Theatrical Production Essentials: Understanding Set Design and Stage Management Through Lightwright": 1 + "An Introduction to Theatrical Production: Set Design and Stage Management with QLab": 1 + "Theatrical Production Fundamentals: Emphasizing Set Design and Stage Management Using Adobe Photoshop": 1 + "Principles of Theatrical Production: Set Design and Stage Management with AutoCAD LT": 1 + "Exploring Theatrical Production: Set Design and Stage Management Through the Lens of Maya 3D": 1 + "Decoding Theatrical Production: A Focus on Set Design and Stage Management Using Rhino 3D": 1 + "The Science of Theatrical Production: Set Design and Stage Management Explored Through 3Ds Max.": 1 + "Exploring Negative Space in Gouache Techniques Using Fan Brushes and Palette Knives: A Detailed Study of Shapes, Lines and Colors with Stippling Techniques": 1 + "Advanced Study on Negative Space in Gouache Techniques: Emphasis on Fan Brushes, Wet-on-Dry Technique and Stippling Tactics": 1 + "Understanding the Role of Negative Space in Gouache Techniques: A Practical Approach with Fan Brushes and Blending Techniques": 1 + "Decoding Negative Space in Gouache Techniques Using Fan Brushes: An In-depth Examination of Shapes, Lines, Colors and Layering Techniques": 1 + "A Comprehensive Study on Negative Space in Gouache Techniques: Using Fan Brushes, Sponge Techniques and Stippling Techniques": 1 + "Mastering Negative Space in Gouache Techniques: Focusing on Fan Brushes, Grisaille Technique and Stippling": 1 + "The Art of Negative Space in Gouache Techniques: A Detailed Exploration Using Fan Brushes, Glazing Techniques and Stippling": 1 + "The Impact of Negative Space in Gouache Techniques: A Comprehensive Study Using Fan Brushes, Scumbling Techniques and Stippling": 1 + "Unveiling the Secrets of Negative Space in Gouache Techniques: A Detailed Study Using Fan Brushes, Dry Brush Technique and Stippling": 1 + "Exploring the Influence of Negative Space in Gouache Techniques: In-depth Analysis Using Fan Brushes, Impasto Technique and Stippling Techniques.": 1 + "The Impact of Integrated Biofeedback in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: An Empirical Analysis on Unity 3D Game Engine.": 1 + "The Application of Haptic Feedback in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: A Deep Dive into Unreal Engine 4.": 1 + "Exploring the Role of Machine Learning Algorithms in Swimming Simulations: A Study on Sony Morpheus VR Gloves and Leap Motion Controller. ": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: A Comprehensive Study on the Impact of Python Programming.": 1 + "The Impact of Integrated Biofeedback in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: An Investigation Using OpenSim Software.": 1 + "The Interplay of Virtual Reality and Augmented Reality in Swimming Simulations: An Investigation Using Sony Morpheus VR Gloves and Leap Motion Controller.": 1 + "The Influence of Artificial Intelligence on Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: A Focus on TensorFlow Framework.": 1 + "Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: A Study on the Impact of Integrated Biofeedback Using CryEngine.": 1 + "Assessing the Impact of Data Visualization Techniques in Swimming Simulations: A Study Using Sony Morpheus VR Gloves and Leap Motion Controller.": 1 + "The Role of Blockchain Technology in Sony Morpheus VR Gloves and Leap Motion Controller for Swimming Simulations: A Comprehensive Study on Integrated Biofeedback.": 1 + "Economics: Exploring the Market of Digital Art Through Blockchain Technology": 1 + "Economics: The Rise of NFTs in the Digital Art Market": 1 + "Economics: The Impact of Cryptocurrency on the Digital Art Market ": 1 + "Economics: Digital Art Market Analysis using Big Data": 1 + "Economics: The Role of AI in Shaping the Digital Art Market": 1 + "Economics: The Market of Digital Art - A Deep Dive into Virtual Reality": 1 + "Economics: Understanding the Market of Digital Art through Social Media Analytics": 1 + "Economics: The Market of Digital Art - An Exploration of 3D Printing": 1 + "Economics: Digital Art Market Trends - A Focus on Mobile App Technology": 1 + "Economics: The Influence of Cloud Computing on the Digital Art Market.": 1 + "Introduction to Logic: Solving Puzzles with Python Programming and NumPy Techniques": 1 + "Mastering Logic Puzzles: Problem Solving with Python and Pandas Library": 1 + "Introduction to Logic: Problem Solving with Python and Matplotlib Visualization": 1 + "Decoding Logic Puzzles: Python Programming and Data Structures": 1 + "Logic Puzzles and Problem Solving: An Overview of Python Programming and Machine Learning": 1 + "Introduction to Logic: Python Programming and Graph Theory for Puzzle Solving": 1 + "Comprehensive Guide to Logic: Puzzles and Problem Solving with Python and Django Framework": 1 + "Advanced Logic: Solving Puzzles with Python Programming and Recursive Functions": 1 + "Introduction to Logic: Python Programming and Cryptography for Puzzle Solving": 1 + "Logic and Puzzles: Problem Solving with Python Programming and SQLite Database Management": 1 + "An Introduction to Theatrical Production: Set Design with CAD Software and Stage Management with QLab": 1 + "Mastering Theatrical Production: Set Design using Vectorworks and Stage Management with QLab": 1 + "Exploring Theatrical Production: Set Designing with SketchUp and Stage Management using QLab": 1 + "Theatrical Production Essentials: Set Design with 3D Modeling and Stage Management via QLab": 1 + "Deep Dive into Theatrical Production: Set Design with AutoCAD and Stage Management using QLab": 1 + "Theatrical Production Mastery: Set Design Concepts with DraftSight and Stage Management with QLab": 1 + "Advanced Theatrical Production: Set Design Techniques using Revit and Stage Management with QLab": 1 + "Comprehensive Guide to Theatrical Production: Set Design using FreeCAD and Stage Management with QLab": 1 + "Theatrical Production for Beginners: Set Design with BIM Software and Stage Management using QLab": 1 + "Practical Theatrical Production: Set Design with TinkerCAD and Stage Management with QLab.": 1 + "AI, Autodesk SketchBook, and the Use of 3D Modeling in the Revolution of Digital Animation Techniques": 1 + "The Impact of AI and Autodesk SketchBook on Digital Animation Techniques: Exploring Character Rigging ": 1 + "Autodesk SketchBook and AI: Revolutionizing Digital Animation Techniques through Texture Mapping ": 1 + "AI, Autodesk SketchBook, and the Role of Motion Capture in the Digital Animation Techniques Revolution": 1 + "Exploring Light Rendering in AI and Autodesk SketchBook's Digital Animation Techniques Revolution": 1 + "The Role of AI and Autodesk SketchBook in Revolutionizing Digital Animation Techniques through Virtual Reality": 1 + "Autodesk SketchBook, AI, and their Role in Transforming Digital Animation Techniques with Augmented Reality": 1 + "AI, Autodesk SketchBook, and the Revolution of Digital Animation Techniques: A Focus on Shader Programming ": 1 + "Autodesk SketchBook and AI: Enhancing Digital Animation Techniques through Particle Systems": 1 + "AI, Autodesk SketchBook and the Transformation of Digital Animation Techniques using Layering Concepts.": 1 + "Mastering Java Hashmaps: A Comprehensive Course on Data Structures, Algorithms, and Eclipse IDE": 1 + "A Practical Approach to Data Structures and Algorithms: Understanding Java Hashmaps using IntelliJ IDE": 1 + "Java Hashmaps Demystified: A Deep Dive into Data Structures, Algorithms and JUnit Testing": 1 + "The Java Hashmap Handbook: Exploring Data Structures, Algorithms and Debugging with NetBeans": 1 + "Understanding Data Structures and Algorithms in Computer Science: A Deep Dive into Java Hashmaps with Apache Maven": 1 + "Comprehensive Course on Java Hashmaps: Implementing Data Structures and Algorithms using Gradle": 1 + "Advanced Guide to Data Structures and Algorithms: Unraveling Java Hashmaps with the Help of Git": 1 + "Java Hashmaps Unleashed: An Insightful Study on Data Structures and Algorithms Using Jenkins": 1 + "Navigating Through Java Hashmaps: A Detailed Study on Data Structures, Algorithms, and Docker": 1 + "Data Structures and Algorithms Simplified: Unpacking Java Hashmaps with Spring Boot.": 1 + "Advanced Course in Computer Science: Building Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and Raspberry Pi": 1 + "Advanced Course in Computer Science: Developing Service Robots Utilizing Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and CAD Design": 1 + "Advanced Course in Computer Science: Constructing Service Robots Using Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and ROS (Robot Operating System)": 1 + "Comprehensive Course in Computer Science: Creating Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and Lidar Technology": 1 + "Advanced Course in Computer Science: Building Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and Neural Networks": 1 + "Advanced Course in Computer Science: Designing Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and IoT (Internet of Things)": 1 + "Advanced Course in Computer Science: Constructing Service Robots Using Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and FPGA (Field Programmable Gate Array)": 1 + "Advanced Course in Computer Science: Developing Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and AI (Artificial Intelligence)": 1 + "Advanced Course in Computer Science: Building Service Robots with Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and Deep Learning Algorithms": 1 + "Advanced Course in Computer Science: Constructing Service Robots Using Scratch, Arduino, 3D Printing, Python Programming, Machine Vision, and PLC (Programmable Logic Controller)": 1 + "Elementary Mathematics: Analyzing Musical Patterns with Python Programming": 1 + "Introduction to Matlab in Analyzing Musical Patterns in Elementary Mathematics": 1 + "Elementary Mathematics: Musical Pattern Analysis Using Excel Spreadsheets": 1 + "Elementary Mathematics: Exploring Music Patterns with Audacity Software": 1 + "Musical Patterns in Elementary Mathematics: A Deep Dive into R Programming": 1 + "Elementary Mathematics: Understanding Musical Patterns with Finale Notation Software": 1 + "Analyzing Musical Patterns in Elementary Mathematics: An Introduction to Mathematica": 1 + "Elementary Mathematics and Music: A Pattern Analysis with Logic Pro X Software": 1 + "Elementary Mathematics: A Music Pattern Study Using Abelton Live Software": 1 + "Music Patterns in Elementary Mathematics: A Comprehensive Guide to Using GarageBand.": 1 + "Precision Analysis of Team Sports and Volleyball Techniques: Utilizing Siliconcoach Video Analysis Software, Dartfish Video Technology, and Hawkeye Tracking System": 1 + "In-depth Study of Volleyball Techniques: Leveraging Siliconcoach Video Analysis Software, Dartfish Video Technology, and Biomechanical Data Collection": 1 + "Team Sports Performance Evaluation: Utilizing Siliconcoach Video Analysis Software, Dartfish Video Technology, and Polar Heart Rate Monitors": 1 + "Advanced Volleyball Techniques Analysis: Incorporating Siliconcoach Video Analysis Software, Dartfish Video Technology, and 3D Motion Capture Systems": 1 + "Comprehensive Sports Analysis: Using Siliconcoach Video Analysis Software, Dartfish Video Technology, and Cloud-based Sports Analytics": 1 + "Precision Analysis of Volleyball Techniques: Implementing Siliconcoach Video Analysis Software, Dartfish Video Technology, and Kinovea Motion Analysis Software": 1 + "Team Sports and Volleyball Techniques Evaluation: Utilizing Siliconcoach Video Analysis Software, Dartfish Video Technology, and GPS Player Tracking": 1 + "Analysis of Team Sports: Leveraging Siliconcoach Video Analysis Software, Dartfish Video Technology, and SportsCode Gamebreaker Plus": 1 + "Precision Analysis of Volleyball Techniques: Exploiting Siliconcoach Video Analysis Software, Dartfish Video Technology, and Zepp Swing Analytics": 1 + "Advanced Team Sports Techniques Analysis: Utilizing Siliconcoach Video Analysis Software, Dartfish Video Technology, and Catapult Athlete Monitoring System.": 1 + "Computer Science: Mastering Swift Coding and Algorithm Design using Xcode": 1 + "Computer Science: Swift Coding and Algorithm Design with iOS App Development": 1 + "Computer Science: Learning Swift Coding and Algorithm Design with SwiftUI": 1 + "Computer Science: Understanding Swift Coding and Algorithm Design through Machine Learning": 1 + "Computer Science: Developing Swift Coding and Algorithm Design Skills with ARKit": 1 + "Computer Science: Exploring Swift Coding and Algorithm Design using Core Data": 1 + "Computer Science: Swift Coding and Algorithm Design in CloudKit Environment": 1 + "Computer Science: Swift Coding and Algorithm Design with Advanced Neural Networks": 1 + "Computer Science: Swift Coding and Algorithm Design using SpriteKit for Game Development": 1 + "Computer Science: Integrating Swift Coding and Algorithm Design with Firebase.": 1 + "Physics: An Advanced Study of Vibrations and Sound using Fast Fourier Transform with Tektronix Oscilloscopes": 1 + "Physics: A Detailed Analysis of Vibrations and Sound using Fast Fourier Transform with Oscilloscopes and Spectrum Analyzers": 1 + "Physics: Exploring Sound Waves through Fast Fourier Transform and Oscilloscopes with MATLAB Simulations": 1 + "Physics: Vibrations and Sound Analysis using Fast Fourier Transform with Digital Oscilloscopes and Signal Generators": 1 + "Physics: Practical Approach to Vibrations and Sound using Fast Fourier Transform with Oscilloscopes and Laser Interferometers": 1 + "Physics: A Comprehensive Study on Vibrations and Sound using Fast Fourier Transform with Oscilloscopes and Waveform Generators": 1 + "Physics: In-depth Understanding of Vibrations and Sound using Fast Fourier Transform with Oscilloscopes and Acoustic Transducers": 1 + "Physics: Vibrations and Sound Examination using Fast Fourier Transform with Oscilloscopes and Sonometers": 1 + "Physics: Sound and Vibration Studies using Fast Fourier Transform with Oscilloscopes and Resonance Frequency Techniques": 1 + "Physics: An Extensive Exploration of Vibrations and Sound using Fast Fourier Transform with Oscilloscopes and Python Data Analysis.": 1 + "Physical Education: Advanced Baseball Strategy and Team Dynamics Utilizing Sabermetrics": 1 + "Physical Education: Incorporating Video Analysis in Baseball Strategy and Team Dynamics": 1 + "Physical Education: Baseball Strategy and Team Dynamics: A Focus on Pitching Metrics": 1 + "Physical Education: Baseball Strategy and Team Dynamics: An Understanding through Game Theory": 1 + "Physical Education: The Use of Sports Psychology in Baseball Strategy and Team Dynamics": 1 + "Physical Education: Implementing Wearable Technology for Improved Baseball Strategy and Team Dynamics": 1 + "Physical Education: Baseball Strategy and Team Dynamics: A Study on Defensive Shift Tactics": 1 + "Physical Education: The Role of Biomechanics in Baseball Strategy and Team Dynamics": 1 + "Physical Education: Baseball Strategy and Team Dynamics: Applying Probability and Statistics": 1 + "Physical Education: Baseball Strategy and Team Dynamics: Exploring the Impact of Nutrition and Conditioning": 1 + "Logical Thinking: Using Puzzles to Teach Basics of Logic for Children": 1 + "Logical Thinking: Incorporating Chess to Teach Basics of Logic for Children": 1 + "Logical Thinking: Basics of Logic for Children through Sudoku": 1 + "Logical Thinking: Basics of Logic for Children Explained Through Coding": 1 + "Logical Thinking: Exploring Basics of Logic for Children through Robotics": 1 + "Logical Thinking: Basics of Logic for Children with Lego Building": 1 + "Logical Thinking: Basics of Logic for Children using Minecraft": 1 + "Logical Thinking: Basics of Logic for Children via Board Games": 1 + "Logical Thinking: Basics of Logic for Children through Algorithm Design": 1 + "Logical Thinking: Learning Basics of Logic for Children with Rubik's Cube": 1 + "Basic English: Exploring the Role of Symbolism in Creative Writing through Metaphors": 1 + "The Power of Symbolism in Creative Writing: A Deep Dive into Allegories": 1 + "Unraveling Symbolism in Storytelling: The Art of Using Irony": 1 + "Mastering Symbolism in Creative Writing: The Impact of Satire": 1 + "Basic English: Harnessing Symbolism in Storytelling through Imagery": 1 + "The Role of Symbolism in Creative Writing: An Insight into the Use of Foreshadowing": 1 + "Decoding Symbolism in Storytelling: The Essence of Hyperbole": 1 + "Basic English: Symbolism in Creative Writing and its Connection with Allusion": 1 + "Crafting Stories with Symbolism: Understanding the Power of Personification": 1 + "Symbolism in Storytelling: The Art and Science of Using Paradoxes.": 1 + "Mathematics: Proving Geometric Theorems using Desmos and Pythagorean Theorem": 1 + "Mathematics: Exploring Geometric Theorems through Desmos and Euclidean Geometry": 1 + "Mathematics: Applying Desmos in Proving Geometric Theorems with Coordinate Geometry": 1 + "Mathematics: Leveraging Desmos for Proving Geometric Theorems using the Concept of Similarity": 1 + "Mathematics: Proving Geometric Theorems using Desmos and Transformational Geometry": 1 + "Mathematics: Proving Geometric Theorems in Desmos with the Use of Trigonometric Ratios": 1 + "Mathematics: Proving Geometric Theorems using Desmos and Circle Theorems": 1 + "Mathematics: Understanding Geometric Theorems through Desmos using the Laws of Sines and Cosines": 1 + "Mathematics: Proving Geometric Theorems in Desmos with the Use of Quadrilateral Properties": 1 + "Mathematics: Proving Geometric Theorems using Desmos and the Concept of Symmetry": 1 + "Artistic Side of Sports: Capturing Football Moments through Canon Lens Filters": 1 + "Artistic Side of Sports: Capturing Football Moments through Nikon Lens Filters": 1 + "Artistic Side of Sports: Capturing Football Moments with Polarizing Lens Filters": 1 + "Artistic Side of Sports: Capturing Football Moments using Gradient Lens Filters": 1 + "Artistic Side of Sports: Capturing Football Moments through the Lens of DSLR Cameras": 1 + "Artistic Side of Sports: Capturing Football Moments using HDR Photography Techniques ": 1 + "Artistic Side of Sports: Capturing Football Moments through the Lens of Mirrorless Cameras ": 1 + "Artistic Side of Sports: Capturing Football Moments using Panoramic Photography Techniques ": 1 + "Artistic Side of Sports: Capturing Football Moments through Infrared Lens Filters": 1 + "Artistic Side of Sports: Capturing Football Moments using Macro Photography Techniques": 1 + "Astronomy: Exploring Galaxy Formation with Hubble Space Telescope and Radio Astronomy": 1 + "Astronomy: The Journey of Star Gazing with Hubble Space Telescope and Spectroscopy": 1 + "Astronomy: Stellar Evolution Study with Hubble Space Telescope and Infrared Imaging": 1 + "Astronomy: Exoplanet Discovery with Hubble Space Telescope and Transit Photometry": 1 + "Astronomy: Nebula Investigation with Hubble Space Telescope and Ultraviolet Imaging": 1 + "Astronomy: The Journey of Star Gazing with Hubble Space Telescope and Adaptive Optics": 1 + "Astronomy: Gravitational Lensing Analysis with Hubble Space Telescope and Computational Astrophysics": 1 + "Astronomy: Black Hole Research with Hubble Space Telescope and X-ray Astronomy": 1 + "Astronomy: Cosmic Microwave Background Exploration with Hubble Space Telescope and Polarimetry": 1 + "Astronomy: The Journey of Star Gazing with Hubble Space Telescope and Doppler Spectroscopy.": 1 + "Advanced Biology Insights: Exploring Cellular Structures with Zeiss LSM Fluorescence Microscopy and ImageJ Analysis": 1 + "Cellular Biology: A Deep Dive into Mitochondrial Structures using Fluorescence Microscopy and ImageJ Analysis": 1 + "Probing Cellular Structures: Leveraging Confocal Fluorescence Microscopy and ImageJ Analysis in Biology": 1 + "Fluorescence Microscopy in Biology: A Closer Look at Cytoskeleton Structures using ImageJ Analysis": 1 + "Biology Insights: Understanding Nucleus Structures through Fluorescence Microscopy and ImageJ Analysis": 1 + "Advanced Cellular Imaging: Utilizing Two-Photon Fluorescence Microscopy and ImageJ Analysis in Biology": 1 + "Exploring Cellular Structures: A Focus on Cell Membrane using Fluorescence Microscopy and ImageJ Analysis": 1 + "Biology Insights: Exploring Cellular Structures with Fluorescence Microscopy and ImageJ Analysis using MATLAB": 1 + "Cellular Biology: A Detailed Study of Endoplasmic Reticulum using Fluorescence Microscopy and ImageJ Analysis": 1 + "Exploring Cellular Structures: An In-depth Analysis of Golgi Apparatus with Fluorescence Microscopy and ImageJ Analysis.": 1 + "Understanding Friction in Newton's Second Law and Laws of Motion through Experiments": 1 + "Analyzing Newton's Second Law and Laws of Motion using Computer Simulations": 1 + "Applying Vector Analysis in Newton's Second Law and Laws of Motion Study": 1 + "Newton's Second Law and Laws of Motion: A Comprehensive Study using Graphical Analysis": 1 + "Experimental Validation of Newton's Second Law and Laws of Motion using Motion Detectors ": 1 + "Newton's Second Law and Laws of Motion: An In-Depth Study using Matlab": 1 + "Investigating Newton's Second Law and Laws of Motion using Force Sensors": 1 + "Newton's Second Law and Laws of Motion: A Detailed Analysis with LabVIEW": 1 + "Newton's Second Law and Laws of Motion: Practical Insights with Python Programming": 1 + "Exploring Newton's Second Law and Laws of Motion with Arduino Microcontrollers": 1 + "Advanced Health: The Impact of Vitamins and Minerals on Brain Function through MRI Scans": 1 + "Advanced Health: Utilizing Nutrigenomics to Explore the Role of Vitamins and Minerals in Brain Function": 1 + "Advanced Health: Vitamin B12 and its Critical Role in Brain Function - A Neuroimaging Perspective": 1 + "Advanced Health: The Role of Vitamins and Minerals in Brain Function: A Deep Dive into Antioxidants": 1 + "Advanced Health: Unveiling Brain Function: The Role of Vitamins and Minerals through EEG Technology": 1 + "Advanced Health: The Role of Vitamins and Minerals in Brain Function - A Focus on Neurotransmitters": 1 + "Advanced Health: The Role of Vitamins and Minerals in Brain Function and Cognitive Enhancement: A Nootropic Approach": 1 + "Advanced Health: Exploring Brain Function with Nutritional Neuroscience: The Role of Vitamins and Minerals": 1 + "Advanced Health: Leveraging Neuroplasticity: The Role of Vitamins and Minerals in Brain Function": 1 + "Advanced Health: The Role of Vitamins and Minerals in Brain Function: Insights from Positron Emission Tomography (PET) Scans.": 1 + "The Influence of 1940s Television Broadcasting Techniques on Propaganda-Driven Modern Art during World War II": 1 + "The Role of Analog Television Technology in Shaping Propaganda-Driven Modern Art during World War II": 1 + "The Impact of Television Broadcasting on Dadaism in Propaganda-Driven Modern Art during World War II": 1 + "Television Broadcasting and its Influence on Cubist Propaganda Art during World War II": 1 + "The Role of Early Television Broadcasting in Surrealist Propaganda Art during World War II": 1 + "The Influence of Television Broadcasting on Abstract Expressionist Propaganda Art during World War II": 1 + "The Impact of Television Broadcasting on Futurist Propaganda Art during World War II": 1 + "The Role of Television Broadcasting in Propaganda-Driven Modern Art: A Case Study of World War II Pop Art": 1 + "The Impact of Black and White Television Broadcasting on Propaganda-Driven Modern Art during World War II": 1 + "The Influence of Television Broadcasting on the Use of Satire in Propaganda-Driven Modern Art during World War II": 1 + "Biology 101: Detailed Analysis of Cellular Structures Using Confocal Microscopy and Flow Cytometry": 1 + "Biology 101: A Comprehensive Study of Cellular Structures Using Confocal Microscopy and Atomic Force Microscopy": 1 + "Biology 101: A Detailed Insight into Cellular Structures Using Confocal Microscopy and Fluorescent Staining": 1 + "Biology 101: Advanced Study of Cellular Structures Using Confocal Microscopy and Fluorescence Recovery After Photobleaching (FRAP)": 1 + "Biology 101: A Study of Cellular Structures Through Confocal Microscopy and Live Cell Imaging": 1 + "Biology 101: Exploring Cellular Structures Using Confocal Microscopy and Super-Resolution Microscopy": 1 + "Biology 101: A Deeper Look at Cellular Structures Using Confocal Microscopy and Electron Microscopy": 1 + "Biology 101: Cellular Structures Explored Through Confocal Microscopy and Cryo-Electron Microscopy": 1 + "Biology 101: A Study of Cellular Structures Using Confocal Microscopy and Immunochemistry Techniques": 1 + "Biology 101: Understanding Cellular Structures Using Confocal Microscopy and Microspectroscopy": 1 + "Language Arts: Analyzing Shakespeare's Dramas using Audible Audio Books and Voice Recognition Software": 1 + "Language Arts: Exploring Shakespeare's Dramas with Audible Audio Books and Interactive Mind Mapping Tools": 1 + "Language Arts: Studying Shakespeare's Dramas through Audible Audio Books and Digital Annotation Platforms": 1 + "Language Arts: Understanding Shakespeare's Dramas with Audible Audio Books and Text-to-Speech Software": 1 + "Language Arts: Interpreting Shakespeare's Dramas with Audible Audio Books and Virtual Reality Technology": 1 + "Language Arts: Examining Shakespeare's Dramas through Audible Audio Books and AI-Driven Analysis Tools": 1 + "Language Arts: Delving into Shakespeare's Dramas using Audible Audio Books and E-Reading Devices": 1 + "Language Arts: Digesting Shakespeare's Dramas with Audible Audio Books and Speech-to-Text Transcription Services": 1 + "Language Arts: Comprehending Shakespeare's Dramas via Audible Audio Books and Cloud-Based Note-Taking Apps": 1 + "Language Arts: Deciphering Shakespeare's Dramas with Audible Audio Books and Digital Flashcards Applications.": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, K-means Clustering Techniques & TensorFlow Implementation": 1 + "Advanced Python and Scikit-Learn Course: Practical Machine Learning Algorithms with Matplotlib and Seaborn Visualization Techniques": 1 + "Advanced Python Course: Practical Ensemble Machine Learning Algorithms with Matplotlib Visualization and Hierarchical Clustering Techniques": 1 + "Advanced Python Course: Deep Learning Algorithms with Matplotlib Visualization, Clustering Techniques and Keras Application": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, Clustering Techniques and Numpy Data Handling": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, Clustering Techniques and Pandas Data Analysis": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, DBSCAN Clustering Techniques & PyTorch Integration": 1 + "Advanced Python Course: Practical Supervised Machine Learning Algorithms with Matplotlib Visualization and Spectral Clustering Techniques": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, Clustering Techniques and Jupyter Notebook Workflow": 1 + "Advanced Python Course: Practical Machine Learning Algorithms with Matplotlib Visualization, Clustering Techniques and Introduction to Neural Networks.": 1 + "Utilizing Cochlear Implants in the Biology of Hearing: Investigating Auditory Perception through Otoacoustic Emissions": 1 + "Exploring Auditory Perception through Otoacoustic Emissions: A Deep Dive into Microphone Technology": 1 + "Auditory Perception and Otoacoustic Emissions: An Insight using Audiology Software": 1 + "Using Evoked Potential Audiometry in the Study of Auditory Perception and Otoacoustic Emissions": 1 + "Biologic's Navigator Pro System: A Tool for Investigating Auditory Perception through Otoacoustic Emissions": 1 + "The Role of Tympanometry in the Biology of Hearing: Investigating Auditory Perception through Otoacoustic Emissions": 1 + "Application of Frequency Modulation Systems in the Study of Auditory Perception and Otoacoustic Emissions": 1 + "The Use of Hearing Aids in Understanding the Biology of Hearing: A Study of Otoacoustic Emissions": 1 + "Investigating Auditory Perception through Otoacoustic Emissions: Role of Spectral Analysis in Audiology": 1 + "Bone Conduction Devices in the Study of Auditory Perception: A Biology of Hearing through Otoacoustic Emissions.": 1 + "Macroeconomics: Theories and Applications using Fiscal Policy Analysis": 1 + "Macroeconomics: Supply and Demand Theories and Applications": 1 + "Macroeconomics: Theories and Applications through the Lens of Quantitative Easing": 1 + "Macroeconomics: Exploring GDP Calculation and its Applications": 1 + "Macroeconomics: Theories and Applications Utilizing Monetary Policy Tools": 1 + "Macroeconomics: The Keynesian Model and its Applications": 1 + "Macroeconomics: Theories and Applications via Inflation and Deflation Analysis": 1 + "Macroeconomics: An Exploration of Unemployment Theories and Applications": 1 + "Macroeconomics: Theories and Applications using IS-LM Model": 1 + "Macroeconomics: Theories and Applications with a Focus on Trade Balances.": 1 + "Utilizing Alexa Voice Control: Mastering Amazon Music HD for Optimal Jazz Selection in Event Planning": 1 + "Mastering Amazon Music HD with Echo Devices for Optimal Pop Genre Selection in Event Planning": 1 + "Advanced Playlist Creation: Mastering Amazon Music HD for Optimal Classical Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD with Fire TV for Optimal Rock Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD: Optimizing Bluetooth Connectivity for Country Genre Selection in Event Planning": 1 + "Utilizing Multi-Room Music Feature: Mastering Amazon Music HD for Optimal Indie Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD with Amazon Auto for Optimal Hip-Hop Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD: Harnessing Dolby Atmos for Optimal R&B Genre Selection in Event Planning": 1 + "Advanced Search Techniques: Mastering Amazon Music HD for Optimal Electronic Genre Selection in Event Planning": 1 + "Mastering Amazon Music HD with Amazon Echo Buds for Optimal Reggae Genre Selection in Event Planning": 1 + "Music Narratives: The Influence of Black and White Photography on Rock Album Covers through Adobe Photoshop": 1 + "Impact of Monochrome Photography on Rock Album Art: A Study on Lightroom Effects": 1 + "Music Narratives: Exploring Film Grain Effect on Rock Album Covers in Black and White Photography": 1 + "The Role of Black and White Photography in Rock Album Covers: A Case Study Using Medium Format Cameras": 1 + "Music Narratives: Analysing the Impact of Black and White Photography on Rock Album Covers Using Digital SLR Cameras": 1 + "Exploring the Impact of Black and White Darkroom Techniques on Rock Album Covers": 1 + "Music Narratives: The Role of Dodging and Burning in Black and White Photography on Rock Album Covers": 1 + "The Impact of Black and White Photography on Rock Album Covers: An Investigation into the Use of Tintype Process": 1 + "Music Narratives: The Effect of Silver Gelatin Process in Black and White Photography on Rock Album Covers": 1 + "The Influence of Black and White Photography on Rock Album Covers: A Study Using Polaroid Cameras.": 1 + "Music: The Role of Protest Songs in History and the Influence of the Harmonica": 1 + "The Impact of Protest Songs in History: A Focus on Acoustic Guitar": 1 + "Protest Songs and Their Role in History: The Power of Amplification Technology": 1 + "Vinyl Records and Protest Songs: Their Symbiotic Relationship in History": 1 + "The Role of Piano in Shaping Protest Songs and Their Influence in History": 1 + "Music: Protest Songs in History and the Integral Role of Microphone Technology": 1 + "The Role of Protest Songs in History: An Examination of the Use of Digital Sampling": 1 + "Music and Social Change: The Role of Protest Songs and Synthesizers in History": 1 + "The Role of Protest Songs in Cultural Revolution: Exploring the Impact of the Drum Kit": 1 + "Music: The Impact of Protest Songs and Electric Guitar on Historical Movements": 1 + "History 101: The Role of the Steam Engine in the Bessemer Process and Railroads during the Industrial Revolution": 1 + "History 101: The Impact of the Telegraph on the Bessemer Process and the Rise of Railroads in the Industrial Revolution": 1 + "History 101: Analyzing the Interplay of the Bessemer Process, Iron Forging and the Emergence of Railroads in the Industrial Revolution": 1 + "History 101: The Use of Coal in the Bessemer Process and the Development of Railroads in the Industrial Revolution": 1 + "History 101: The Bessemer Process, the Advent of Railroads and the Invention of the Spinning Jenny in the Industrial Revolution": 1 + "History 101: The Influence of the Power Loom on the Bessemer Process and the Expansion of Railroads in the Industrial Revolution": 1 + "History 101: The Cotton Gin's Effect on the Bessemer Process and the Growth of Railroads during the Industrial Revolution": 1 + "History 101: The Contribution of the Watt Steam Engine to the Bessemer Process and the Rise of Railroads in the Industrial Revolution": 1 + "History 101: The Correlation between the Bessemer Process, the Advent of Railroads and the Introduction of the Assembly Line in the Industrial Revolution": 1 + "History 101: The Bessemer Process, the Advent of Railroads and the Impact of the Threshing Machine during the Industrial Revolution": 1 + "Science: The Physics of Sound and the Role of Oscilloscopes": 1 + "Understanding Doppler Effect: A Subdivision of The Physics of Sound ": 1 + "Sound Frequency Analysis: A Deep Dive into The Physics of Sound": 1 + "Science: The Physics of Sound Waves with Spectrograms": 1 + "Science: The Physics of Sound - Exploring Echoes and Reverberations": 1 + "Science: The Impact of Material Density on Sound Propagation": 1 + "The Physics of Sound: Understanding Acoustic Impedance": 1 + "Science: The Physics of Sound - A Study on Decibel Levels": 1 + "The Physics of Sound: The Application of Fourier Transforms": 1 + "Science: The Physics of Sound - An Introduction to Harmonics": 1 +"Physics: Exploring Electromagnetic Waves using Oscilloscopes and Spectrum Analyzers": 1 +"Sustainable Architecture: Incorporating Green Building Materials and 3D Printing Technology in Urban Development": 1 +"R Programming for Healthcare Data Analysis: Detailed Exploration of ggplot2, Predictive Modelling, Data Manipulation, and Multivariate Analysis": 1 +"Film Studies: Decoding Heroism in Dystopian Cinema through Semiotic Analysis and Comparative Filmmaking: A Machine Learning Approach": 1 +"Geography: Deciphering Climate Patterns in Prehistoric Cave Paintings using Palynology": 1 +"Performing Arts: Unravelling the Nuances of Contemporary Dance through the Practice of Contact Improvisation": 1 +"Psychoimmunology: Investigating the Mind-Body Connection using Functional Magnetic Resonance Imaging": 1 +"Global History: Exploring Ancient Civilizations - An Immersive Experience through Virtual Reality": 1 +"Marine Biology and Paleontology: An Integrated Perspective Using Radiometric Dating Techniques": 1 +"Visual Arts: Creating Sculptures Inspired by Folklore using Sustainable Materials": 1 +"Applied Mathematics 101: Cryptography and Data Encryption Techniques": 1 +"Psychology: Stress Management - The Power of Mindfulness and Remote Counselling": 1 +"Advanced Chemistry: Exploring Atomic Structures through Quantum Mechanics": 1 +"Creative Arts: Scriptwriting and the Dynamics of Film Narration": 1 +"Intermediate Course: Exploring Algebraic Equations Through Graph Theory": 1 +"Critical Thinking: Utilizing Probability Theory in Decision Making": 1 +"Media Studies: The Influence of Social Media on Personal Branding and Self-Identity": 1 +"Astrophysics: Investigating Black Holes through Radio Astronomy and Spectroscopy": 1 +"World Affairs: The Evolution of Sustainable Farming Methods in the Face of Climate Change": 1 +"Environmental Science: Examining Coral Reefs through Underwater Photography and Spectrophotometry": 1 +"Harnessing Satellite Imagery for Agricultural Studies: A Geospatial Approach": 1 +"Physics in Action: Understanding Projectile Motion in Basketball Using Trigonometry and Force Vector Analysis": 1 +"English Literature: Narrative Techniques in Modern Fiction - A Study of Stream of Consciousness and Magical Realism": 1 +"Exploring Relief Sculpture: A Deep Dive into the Techniques of Wood Carving and Stone Sculpting": 1 +"Decoding Cryptography: An Introduction to Hash Functions and Digital Signatures Using Python": 1 +"Chemistry Unveiled: Understanding Chemical Reactions through Mass Spectrometry": 1 +"Mastering Haiku: The Art of Condensed Expression Using Kigo and Kireji in Contemporary Japanese Poetry": 1 +"Abstract Algebra: Applying Group Theory in Cryptographic Algorithms": 1 +"Political Science: Analyzing Voting Patterns with Regression Analysis Using SPSS": 1 +"Environmental Modeling: Leveraging ArcGIS and R for Spatial Analysis in Forest Conservation": 1 +"Discovering FL Studio: The Integration of VST Plugins in Music Production": 1 +"Advanced Physics: Climate Forecasting in Sustainable Agriculture using MATLAB, Artificial Intelligence, and TensorFlow": 1 +"Cultural Anthropology: The Impact of Social Media on Global Cultural Dynamics": 1 +"The Influence of AI Technology on the Dynamics of Film Production": 1 +"Design: The Significance of Texture in Virtual Reality Environments": 1 +"Music Theory: Deconstructing the Physics of Sound Waves using Java, Audio Tools, and the Harmonic Series": 1 +"Fundamentals of Bioengineering: A Multidisciplinary Approach to Tissue Engineering ": 1 +"English Literature: Incorporating Virtual Reality and Interactive Whiteboards in Storytelling": 1 +"Statistics: Basketball Performance Analysis and Data Interpretation with Power BI using R Programming": 1 +"Art: Perspective in Architecture: Implementing Pythagorean Principles with Drafting Tools and Software": 1 +"Physics: Quantum Mechanics and Schrödinger's Equation - Applications in Modern Technology": 1 +"Art: Exploring Digital Illustration Techniques with Adobe Illustrator for Enhanced Visual Communication": 1 +"Advanced Economics: The Role of Fintech and Blockchain in Modern Monetary Policy": 1 +"Music: An Introduction to MIDI Controllers and Digital Audio Workstations in Electronic Music Production": 1 +"Language Arts: Postmodern Literature Analysis - A Computational Linguistics Approach Using NLTK and Python": 1 +"Pharmacology: Understanding Drug Discovery and Molecular Docking through Bioinformatics": 1 +"Environmental Science: Climate Change Modelling Using MATLAB and R Programming": 1 +"Mathematics: Exploring Graph Theory with Python - Applications in Social Network Analysis": 1 +"Computer Science 220: Advanced Java Script & Web Development - Utilizing React.js in Firebase Database Management": 1 +"Historical Studies: The Influence of Ancient Greek Philosophy on Contemporary Ethical Theories.": 1 +"Sociology 101: Exploring the Influence of Social Media on Political Engagement": 1 +"Physics: Quantum Mechanics in Everyday Life - Modeling with MATLAB": 1 +"Anthropology: Understanding Human Evolution Through Paleoanthropology and Comparative Genomics": 1 +"Communication: The Shift from Sign Language to Augmented Reality Assisted Communication Systems": 1 +"Health Science: Increasing Mental Health Awareness through Yoga and Mindful Eating": 1 +"Digital Illustration: Understanding Architecture through Virtual Reality Art Using SketchUp": 1 +"Literature: Deciphering Irony and Sarcasm in Modern Literature using Text Mining Techniques": 1 +"Geography: The Role of Geographic Information Systems (GIS) in Climate Change Prediction": 1 +"Computer Science: Game Development and Interactive Storytelling with Unity and Blender": 1 +"Language Arts: Deconstructing Fear in Horror Literature Through the Lens of Psychoanalysis and Machine Learning Techniques": 1 +"Astronomy: Stellar Evolution and Cosmic Radiation - A Deep Dive into Space Physics": 1 +"History: The Evolution of Political Thought - The Influence of Communication Technology on Policy Making": 1 +"Chemistry 102: The Magic of Organic Chemistry: Unraveling the Mystery of Alkanes and Alkenes": 1 +"Navigating Hadoop Ecosystem: The Significance of Distributed Computing in the Era of Information Overload": 1 +"Design and Innovation: Perfecting 3D Animation with Autodesk Maya": 1 +"Biology in Sports: Leveraging Genetic Engineering for Enhanced Athletic Performance": 1 +"Quantum Mechanics: Uncovering the Quantum Realm through Scanning Tunneling Microscopy": 1 +"The Practical Application of Python in Chemistry: Molecular Structure Analysis and Reaction Prediction": 1 +"Statistics 210: Predictive Modelling using R and Tableau: A Deep Dive into Regression Analysis": 1 +"Psychology: Unraveling the Mystery of Dreams - An In-depth Study of Sleep Patterns and Lucid Dreaming": 1 +"Chemical Reactions: The Influence of Dynamite, the Periodic Table, and Radiation Therapy on Modern Society": 1 +"Playing with Pixels: Learning Computer Graphics through Minecraft and Adobe Photoshop": 1 +"Marine Biology and Global Warming: The Role of Ocean Thermal Energy Conversion in Eco-analysis": 1 +"Astrophysics: Black Holes and the Cosmos - An Odyssey in Space-Time Continuum": 1 +"Digital Literacy: Mastering Multimedia Content Creation using Adobe Premiere Pro, Prezi, Google Docs, and UX/UI Design Basics": 1 +"Chemistry: Quantum Mechanics and Molecular Structures: An Experimental Approach with Nuclear Magnetic Resonance": 1 +"Investigating The Role of Atmospheric Pressure in Climate Patterns: An In-depth Study using Barometric Altimeters and Weather Balloons": 1 +"Data Privacy: Decoding Cyber Threats through Blockchain Technology": 1 +"Digging into the Past: Archaeological Excavations Utilizing LIDAR and Satellite Imaging": 1 +"Economics: Evaluating the Influence of Robotics in Precision Farming on Rural Economies": 1 +"Biological Wonders: Understanding DNA Sequencing Techniques with CRISPR": 1 +"The Matrix of Mathematics: Complex Numbers and Quantum Mechanics": 1 +"Psychology of Perception: Decoding Visual Illusions with fMRI Scans": 1 +"Discovering the Science of Harmonics with Tuning Forks and Digital Oscilloscopes": 1 +"Astronomy: The Role of Spectrographs in the Discovery of Exoplanets": 1 +"The Impact of Binary Code on Modern Art: Analyzing the Influence of Digital Culture in the Postmodern Era": 1 +"Cultural Perspectives: The Effect of Spotify on Global Music Trends and Personal Identity": 1 +"Analytical Reasoning: A Deep Dive into Predicate Logic": 1 +"Enhancing Cognitive Performance with Mindful Meditation: A Study Conducted Using Functional Magnetic Resonance Imaging (fMRI) and Transcranial Magnetic Stimulation (TMS)": 1 +"Creativity in Literature: Evoking Emotion in Short Stories through the Use of Virtual Reality Technology": 1 +"Art Appreciation: Unraveling the Symbolism in Surrealist Paintings Using VR Technology": 1 +"Physics and Astronomy: Probing the Dark Matter Mystery through Quantum Mechanics and Telescopic Observations": 1 +"Business Management: The Impact of Blockchain Technology on Supply Chain Efficiency": 1 +"Cultural Anthropology: The Effects of Social Media on Global Cultural Exchange: Instagram's Role in Food Trends": 1 +"Advanced Techniques in Performing Arts: Ballet and Body Expression: Pointe Work and the Pas de Deux": 1 +"Photoshop and AI: Transforming Graphic Design Techniques with Generative Adversarial Networks": 1 +"Geology for Kids: Exploring Plate Tectonics with Baking Soda and Vinegar Experiments": 1 +"Finance: The Impact of Robotic Process Automation on Financial Forecasting using Python": 1 +"Environmental Science: Employing GIS and Remote Sensing in Monitoring Air Quality in Urban Areas": 1 +"Health Education: Improving Posture and Flexibility through Pilates Instruction": 1 +"Data Analytics: Building Health Informatics Systems using Hadoop and Java": 1 +"Environmental Economics: Utilizing GIS and Remote Sensing in Climate Change Prediction and Management": 1 +"Astrophysics and Supercomputing: An Examination of Stellar Evolution Modeling": 1 +"Gastronomic Journeys: Sourdough's Rise and the Evolution of Breadmaking Techniques Across Civilizations": 1 +"The Influence of the Harpsichord in Renaissance Musicology": 1 +"Technological Transformation: The Impact of Vinyl Records and Podcasts on the Journey from Folk to Modern Music": 1 +"Augmented Reality and Art: A Comprehensive Exploration of Worldwide Art Movements with Unreal Engine": 1 +"Musicology: Understanding the Romantic Era through Symphonic Bands": 1 +"Astrophysics: The Role of Dark Matter in the Universe's Expansion": 1 +"The Cotton Gin: Agricultural Revolution and its Influence on American Vernacular Language": 1 +"Biological Systems: Exploring the Complexities of Human Anatomy through Microscopic Investigations": 1 +"Digital Media: Mastering Cinematic Visual Effects Using Adobe After Effects": 1 +"Advanced Algebra 101: Exploring the World of Polynomials and Their Applications": 1 +"French Literature: Exploring Identity and Culture through the Verses of Baudelaire": 1 +"Environmental Science: Understanding Climate Change and Its Impact on Biodiversity": 1 +"The Art of Persuasion: Rhetoric and Argumentation in Contemporary Speech Writing": 1 +"Astrophysics: Decoding the Secrets of the Cosmos through Stellar Parallax and Redshift": 1 +"Fintech: Cryptocurrency's Role in the Digital Economy and Its Impact on Global Finance": 1 +"Artificial Intelligence: Leveraging Neural Networks for Image Recognition and Processing": 1 +"Critical Thinking: Advanced Deductive Reasoning and Cognitive Biases in Everyday Decisions": 1 +"Advanced Physics: Unraveling Quantum Mechanics through the Study of Quantum Entanglement": 1 +"Ecology: Analyzing Oceanic Biodiversity through Coral Reef Bioinformatics": 1 +"Global History: Unearth Ancient Civilizations through Numismatic Evidence": 1 +"Digital Fitness: Exploring Physical Wellness through AI-Powered Fitness Trackers": 1 +"Literature: Conveying Social Injustice through Haiku and Allegorical Imagery": 1 +"Critical Thinking: Mastering the Art of Argumentation through Aristotle's Syllogistic Logic": 1 +"Biochemistry: Decoding the Secrets of Life through Protein Folding and Molecular Structures": 1 +"Music Theory: Interpreting Emotional Resonance in Jazz Music through Improvisation": 1 +"Linguistics: Exploring the Power of Irony in Political Speeches and Satirical Cartoons": 1 +"Harnessing Nature's Energy: Wind Turbines in Eco-Futurist Fiction": 1 +"Physical Health: The Influence of Smartwatches on Personal Fitness and Wellbeing": 1 +"Artificial Intelligence: Employing Machine Learning for Efficient Traffic Control Systems": 1 +"Bio-Musicology: The Impact of Climate Change on Woodwind Instrument Manufacturing": 1 +"Advanced Algebra: Applying Linear Equations to Stock Market Analysis": 1 +"Geometry: Exploring Shapes and Angles through Augmented Reality Pedagogy": 1 +"Cognitive Psychology: Unraveling Human Behavior through Data Analysis with SPSS": 1 +"The Evolutionary Role of Kubernetes in DevOps and its Effect on Modern Business Practices": 1 +"JavaScript for Game Development: Mastering Phaser.js, HTML5, and Node.js for Interactive Gaming": 1 +"Quantum Computing: A Comprehensive Course on Qubits and Superposition for Beginners": 1 +"Global Studies: The Silk Road and the Significance of Spices in Intercontinental Trade": 1 +"Physics: The Science Behind Roller Coasters: A Deep Dive into Mechanics": 1 +"Developing Creativity: Enhancing Children's Artistic Skills through Augmented Reality and 3D Printing": 1 +"Advanced Algebra: Solving Complex Equations using MATLAB": 1 +"Music: The Evolution of Folklore Music: An Analysis of Lyric Poetry": 1 +"Basic Biology: The Anatomy of Insects – An Entomological Approach": 1 +"Business Studies: Applying Data Analytics to Organizational Behavior and Employee Performance": 1 +"Cognitive Psychology: Using fMRI Scans to Study Decision-Making Processes": 1 +"Innovative Photoshop Techniques in Graphic Design: Creating Surreal Landscapes and Portraits": 1 +"Mastering Computational Logic: Decoding Algorithms and Data Structures with Python and PyCharm": 1 +"World History: Investigating the Impact and Aftermath of World War II in Global Politics": 1 +"Advanced Geology: Unearthing Earth's History Through Plate Tectonics": 1 +"Art: Painting Techniques: The Subtleties of Watercolor Landscape": 1 +"The Rhythm of the Seas: The Role of the Harp in Maritime Folklore": 1 +"Advanced Physics: Decoding Quantum Mechanics with MATLAB Programming": 1 +"Anatomy of Emotion: A Comprehensive Study using Positron Emission Tomography (PET) Scans in Psychotherapy ": 1 +"Chemistry 101: Discovering Molecular Structures Through Spectroscopy": 1 +"Sociology 101: Understanding Social Stratification Through Sociograms": 1 +"Art History: Decoding Symbolism in Baroque Art": 1 +"Language Learning: Mastering Basic Mandarin Phrases with Rosetta Stone using Interactive Modules": 1 +"Exploring the Balance of Light and Shadow in Charcoal Drawing: A Detailed Study Using Chiaroscuro, Cross-Hatching and Contouring.": 1 +"Exploiting PyTorch in Deep Learning: Enhancing Spotify's Jazz Algorithm for Restaurant Ambiance": 1 +"Fine Arts: Mastering the Technique of Woodblock Printing with Blades, Baren, and Ink": 1 +"Latest Developments in Genome Sequencing: Leveraging Next-Generation Sequencing, Bioinformatics, and Crispr Technology": 1 +"Digital Arts: Merging Motion Graphics and Sound Design in Adobe After Effects for Film Production": 1 +"Environmental Engineering: Water Conservation Strategies Implementing Green Infrastructure in Urban Planning": 1 +"Melodies from the Ocean: Utilizing Sonar Mapping to Investigate the Acoustic Origins of Five Marine Species": 1 +"Baroque Sculpture: The Impact of Chiaroscuro on Three-Dimensional Forms": 1 +"Physical Chemistry: Grasping Thermodynamic Equilibria through Nuclear Magnetic Resonance and Calorimetry": 1 +"In-depth Study of Heart Physiology: Incorporating Echocardiography in Cardiac Stress Testing with EKG": 1 +"Secondary Education 410: Integrating Kahoot in Collaborative Learning with Interactive Projectors": 1 +"Deep Dive into Vector Graphics: Harnessing the Power of Blend Modes in Adobe Illustrator": 1 +"History and Culinary Arts: Virtual Reality Tour of World Food Cultures with HTC Vive": 1 +"Microbiology 101: Exploring Cellular Processes with Electron Microscopy": 1 +"Literature Studies: Eco-feminism and its Influence in Contemporary Women's Literature Through Allegory": 1 +"Data Science in Genetics: A Comprehensive Approach Using Python and Deep Learning Algorithms": 1 +"Literature Studies: Eco-analytical Interpretation of Ballet-centric Novels": 1 +"Astrophysics: An Introductory Guide to Cosmic Rays and the Use of Particle Detectors": 1 +"Business Communications: Enhancing Professionalism with LinkedIn Messaging Etiquette in the Information Age": 1 +"Physical Education: Global Sports and Social Integration: The Influence of Sportswear Innovation on International Basketball": 1 +"Holistic Health: Understanding Epigenetics: The Impact of Herbs and Spices on Gene Expression": 1 +"Investigating the Influence of Digital Marketing in the Fashion Industry: Strategies for Optimizing Customer Engagement": 1 +"Psychology: Understanding Human Emotion through fMRI, PET Scans and Multidimensional Scaling Techniques": 1 +"The Telegraph's Influence on French Commercial Language in the Victorian Era: Steam Engine's Role in Global Communication": 1 +"Secondary Education 210: An Introduction to Collaborative Learning - Harnessing the Potential of Microsoft Teams": 1 +"Introduction to Information Technology: Decoding Genetic Sequences with Java": 1 +"Health Education: The Fundamentals of Yoga for Stress Management": 1 +"Ecological Data Interpretation Using R, ggplot2 Package, and RStudio Platforms": 1 +"In-depth Study of Financial Trends through R, Power BI, Hierarchical Clustering, Data Interpretation, and Forecasting Models": 1 +"Assessing Environmental Impacts of Plastic Waste Management: Emphasis on Automated Sorting Techniques": 1 +"Fine Arts: Renaissance Art - Power and Influence in Paintings and Sculptures: A Study through the Lens of Cultural Materialism": 1 +"Advanced Geography: Analyzing Global Weather Patterns through Satellite Imaging and Climate Models": 1 +"Statistic Analysis: Mastering Data Patterns and Predictive Modeling using Python": 1 +"Understanding Symbols in Modern Literature: The Interplay of Irony and Satire in Political Satire": 1 +"World Architecture: The Aesthetics of Construction and the Influence of 3D Printing": 1 +"Elementary Meteorology: Discovering Weather Phenomena: An Introduction to Climatology": 1 +"Biology: Revealing the Secrets of Cellular Function with CRISPR-Cas9 in Gene Editing": 1 +"Higher-Level French Literacy: Enhancing Narrative Precision with Grammarly, Pages, Scrivener, and Open Office for Collaborative Writing": 1 +"Nutritional Science: Comprehending the Role of Superfoods in Sports Performance": 1 +"Advanced Geometry: Grasping Volume Computation with 3D Modeling in Interior Design": 1 +"Performing Arts: Expressive Dance Choreography using Adobe Animate as a Motion Sequence Tool": 1 +"The Influence of Silent Film on the Evolution of Modern Dance in the Roaring Twenties": 1 +"Chemistry Concepts: Nuclear Reactions - An In-depth Look at Fission and Fusion": 1 +"Fundamentals of Sociology: A Detailed Analysis of Social Stratification": 1 +"Music Production Techniques: Exploring the Dynamics of Ableton Live's Warp Mode in Electronic Music": 1 +"Applied Statistics: Forecasting Financial Market Trends with R Programming, Machine Learning, and TensorFlow": 1 +"Health Education: The Impact of Yoga Practice on Mental Wellness": 1 +"Fine Arts: Abstract Landscape Painting - Oil, Collage Methods, and Palette Knife Skills with Varnishing Techniques": 1 +"Information Technology: Web Development - Understanding CSS Flexbox and Grid": 1 +"Microsoft Teams in Corporate Training: Boosting Engagement through Collaborative Workspaces": 1 +"The Role of Perspective in the Evolution of Architectural Design during the Baroque Period": 1 +"Sociology: Dissecting Class Stratification through the Lens of Bourdieu's Cultural Capital": 1 +"Archaeology: Unearthing Ancient Civilizations with Ground Penetrating Radar Technology": 1 +"The Renaissance and Baroque: Transition and Transformation in Artistic Styles - A Comparative Study": 1 +"Ethics: Navigating the Moral Landscape of Genetic Modification: An Investigation into CRISPR-Cas9": 1 +"Advanced Computer Science: Building Intelligent Systems with Machine Learning, TensorFlow, and Neural Networks": 1 +"Rhetoric: Enhancing Argumentation Skills through Aristotle's Modes of Persuasion": 1 +"New Horizons in Physics: A Study of Quantum Entanglement, String Theory, and the Multiverse": 1 +"Ruby on Rails and Vue.js: Creating Dynamic Web Applications with Materialize CSS": 1 +"Environmental Studies: The Principles of Green Architecture: A Comprehensive Study on Passive Solar Design": 1 +"Psychology: Unraveling the Human Mind: A Study on Cognitive Behavior Using fMRI Technology": 1 +"Artificial Intelligence 101: Building Intelligent Chatbots with Python and TensorFlow": 1 +"Physics Uncovered: Unraveling Quantum Mechanics with Feynman Diagrams and MATLAB": 1 +"Advanced Sociology: Decoding Social Behavior Patterns through Big Data Analytics": 1 +"Integrated Chemistry: Understanding Molecular Structures with ChemDraw and Python": 1 +"Innovative Mathematics: Exploring Fractal Geometry with Mandelbrot Sets in Python": 1 +"Gerontology 201: Investigating Aging Processes using Bioinformatics and Genomic Data": 1 +"Physical Education: Enhancing Athletic Performance through Biomechanical Analysis using Dartfish": 1 +"Modern Astronomy: Mapping the Cosmos with Stellarium and Python": 1 +"Interactive Literature: Enhancing Comprehension Skills with Interactive Fiction Apps": 1 +"Environmental Studies: Decoding Climate Change Impact with GIS and Remote Sensing Data Analysis in QGIS.": 1 +"Unveiling Football Strategies: An In-Depth Analysis using Python and SQL": 1 +"Advanced Animal Physiology: Understanding Internal Mechanisms through MRI and CT Scan": 1 +"The Evolution and Significance of Music: A Focus on the Development of Digital Audio Technology": 1 +"Spanish: Expressing Social Inequalities through Sonnet Writing: An Exploration of Metaphorical Language": 1 +"Physics: Investigating the Influence of Light Waves on Human Perception using Wavelet Transforms": 1 +"Fine Arts: Mastering Digital Illustration and Animation with Autodesk Maya": 1 +"Fun with Python: Encouraging Algorithmic Thinking for Future Innovators": 1 +"Implementing Sustainable Practices in Fashion Design: A Multi-Dimensional Strategy": 1 +"Physics for Adolescents: Force and Motion – The Dynamics of Objects in Motion": 1 +"IBM Watson Analytics: Utilizing AI for Analyzing Irony and Sarcasm in Modern American Literature": 1 +"Physics: The Role of Quantum Computing in Cryptography": 1 +"Mathematics in Nature: The Beauty and Complexity of Fractal Patterns ": 1 +"Art History: Exploring Cubism: A Detailed Study of Picasso's Use of Geometric Shapes": 1 +"Botany Uncovered: The Intricate World of Mycorrhizal Networks: Nature's Internet": 1 +"Technology in PE: Utilizing Fitness Trackers for Monitoring Heart Rate and Calorie Burn": 1 +"Digital Art: The Use of Algorithms in Generative Art Creation": 1 +"Geological Engineering: Exploring Seismic Activities through Virtual Reality and Augmented Reality Simulations": 1 +"Economic History: The Impact of the Printing Press on Trade and Commerce during the Renaissance": 1 +"Chemistry in the Kitchen: Understanding Maillard Reaction through Bread Baking": 1 +"Advanced Study of Human Genomes: Unraveling Genetic Disorders using Next-Generation Sequencing and Bioinformatics": 1 +"Physics of Cinema: Understanding Cinematic Motion through the Lens of General Relativity": 1 +"The Impact of Robotics on Healthcare: An Analysis of Surgical Innovations and Patient Care Improvements ": 1 +"Eco-Engineering: Harnessing Biosphere 2 and Biodegradable Materials for Sustainable Urban Planning": 1 +"Geography 101: Exploring the Impact of Satellite Imagery on Disaster Management and Emergency Response": 1 +"Digital Literature: Enhancing Reading Comprehension and Narrative Construction with VR Technology": 1 +"Philosophy of Music: An Examination of Emotional Response in Jazz through the Theory of Syncopation": 1 +"Global Studies: The Role of Internet Freedom in Democratization and Social Justice Movements": 1 +"Advanced Algebra: Utilizing MATLAB for Predicting Patterns in Financial Market Movements": 1 +"Mastering Rhetoric: A Study of Persuasive Techniques with TED Talks, Speechwriting, and Debates": 1 +"Understanding Sonics: A Comprehensive Guide to the Physics of Music using Digital Signal Processing": 1 +"Spanish Poetry: Unveiling Significance through Symbolism and AI Text Analysis": 1 +"Advanced Calculus: Applying R Software for Weather Pattern Predictions": 1 +"Mastering Adobe Illustrator's Pen Tool: An In-depth Study of Vector Graphics and Gradient Mesh in Graphic Design": 1 +"French: Literature and the Digital Revolution - An Analytical Journey through Cyberpunk and Virtual Reality": 1 +"Physics: Quantum Computing Applications in Cryptography": 1 +"Financial Markets: An Intensive Study of Stock Market Trends, Index Funds, and Diversification": 1 +"Art Techniques: Mastering Charcoal Drawing with the Cross-Hatching Method": 1 +"Advanced Photo Editing in Lightroom: A Thorough Course in Digital Photography and Graphic Design": 1 +"Beginning Computer Science: Mobile App Development with Java, Android Studio, and Material Design": 1 +"Art: Creating Landscapes of the Wild using Oil Pastels and Impasto Techniques": 1 +"Fundamentals of Coding: Introduction to JavaScript and HTML5 for Web Design": 1 +"World History: Exploring Cultural Evolution through Anthropological Studies": 1 +"Photography 101: Understanding Lighting and Composition with Adobe Photoshop": 1 +"Biology: A Closer Look at Cellular Metabolism using Microscopic Techniques": 1 +"Physics: Quantum Mechanics and General Relativity - The Pillars of Modern Physics": 1 +"Finance: Mastering Stock Market Trends with Statistical Analysis and Algorithms": 1 +"Nutrition Science: The Role of Probiotics in Digestive Health and Disease Prevention": 1 +"Geography: The Impact of Climate Change on Global Ecosystems": 1 +"Art History: Analyzing Renaissance Art through the Lens of Social and Political Change": 1 +"Introduction to Robotics: Building Autonomous Systems with Arduino and Raspberry Pi": 1 +"Architectural Design: An Extensive Analysis of Gothic Masonry in Medieval Cathedrals": 1 +"The Influence of Natural Light on Plant Photosynthesis: A Detailed Investigation": 1 +"Geopolitics and Digital Media: Assessing the Impact of Social Networks on Global Political Movements": 1 +"Advanced Algebra: The Role of Vectors in Space Exploration using Python": 1 +"Cutting-Edge Techniques in Cardiology: Utilizing Echocardiography and Cardiac MRI for Heart Disease Diagnosis": 1 +"Astrochemistry Basics: Decoding the Mysteries of Space with Spectroscopy": 1 +"Acoustic Engineering in Film: The Intricacies of Dialogue Mixing in Animated Features": 1 +"The Silk Road: Utilizing Satellite Imagery and Radio Frequency Identification in the Study of Ancient Land Trade Routes": 1 +"Incorporating Machine Learning in Eco-friendly Automobile Manufacturing: The Potential of Hydrogen Fuel Cells": 1 +"The Influence of Microsoft Hololens in Enhancing Surgical Procedures: A Study with Augmented Reality Techniques": 1 +"Chemistry Essentials: Exploring Organic Reactions with MATLAB and Machine Learning Techniques": 1 +"Health Education: Stress Management through Horticultural Practices: The Therapeutic Use of Pruning Shears": 1 +"Stellar Spectroscopy Using Java Programming: An Interdisciplinary Course in Sound Engineering and Astronomy": 1 +"Civics and Society: Leveraging Facebook's Workplace and Zoom for Community Engagement in Public Policy: A Decade of Strategies": 1 +"World Literature: Sentiment Analysis with TensorFlow in NLP for Comparative Literature Studies": 1 +"Fine Arts: Utilizing Procreate for Promoting Social Justice through Digital Art": 1 +"Business Studies 201: Understanding Market Structures in Macroeconomics through Tableau": 1 +"Advanced Spanish: Storytelling and Narrative Techniques through the Exploration of Magical Realism using MindNode": 1 +"Bioinformatics: Genomic Data Analysis Using R and Machine Learning Models": 1 +"Engineering Basics: Exploring Tensile Strength using K'NEX Structures, Levers and the Study of Force and Pressure": 1 +"Chemistry for All: Exploring Molecular Structures with Python Programming": 1 +"Dissecting Jazz Music: The Impact of Electronic Synthesizers on the Evolution of Jazz": 1 +"Advanced Meteorology: Leveraging Satellite Technology for Climate Studies": 1 +"Spanish Poetry: Unveiling the Works of Garcia Lorca Through Textual Analysis Software": 1 +"Cricket Analytics: Utilizing Power BI for Predictive Modeling and Game Strategy": 1 +"Theatre in Augmented Reality: Assessing the Impact of HoloLens on Stage Performance": 1 +"The Age of Enlightenment: The Printing Press, Scientific Revolution, French Philosophies, and the Impact of the Encyclopédie": 1 +"The Significance of Imagery in Children's Literature: A Semiotics Approach": 1 +"Philosophical Investigations: Unraveling Paradoxes with Predicate Logic, Venn Diagrams, and the Principle of Identity": 1 +"Music Production with Ableton Live: Merging Ambient Sounds into Melodies using MIDI Controllers.": 1 +"Quantum Mechanics Explored: The Interaction of Quantum Fields and Wave-Particle Duality": 1 +"The Cinema of Poetry: Evolution through Eras and the Influence of Italian Neorealism": 1 +"Biotechnology Fundamentals: Using CRISPR for Advanced Gene Editing Techniques": 1 +"Algebra & Geometry: An In-depth Analysis of Euclidean Geometry using Variables in MATLAB": 1 +"Global Traditions: Food, Folklore, and Cultural Preservation through Digital Archiving - The Role of Data Warehouses": 1 +"Information Technology: Navigating Blockchain for Cybersecurity - Coding Secure Transactions": 1 +"Climate Change Advocacy in Visual Arts: Interpreting Paintings to Understand Renewable Energy Technologies": 1 +"American Literature: An Extensive Examination of Hemingway's Novels Through Contextual Analysis": 1 +"Pharmaceutical Economics: Leveraging Python for Drug Pricing Analytics": 1 +"World Literature and Ocean Conservation: An Eco-critical Analysis of Sustainable Fishing Practices": 1 +"Exploring Rhythm: The Impact of Percussion Instruments on Jazz Music": 1 +"Computer Geniuses: Introduction to Python Programming for Young Minds": 1 +"Moral Dilemmas in Genetic Engineering: A Societal Outlook": 1 +"Health and Fitness: The Role of Nutritional Psychology in Weight Management and Lifestyle Choices": 1 +"Language Arts: Understanding Legal Jargon through Case Studies": 1 +"Scientific Terminology: An In-depth Study of Botanical Names and Plant Taxonomy": 1 +"Literature Study: Using Sentiment Analysis to Understand Character Development in English Novels ": 1 +"Astrophysics for Advanced Learners: Unraveling Cosmic Mysteries with Neutrino Detection and Quantum Tunneling": 1 +"Critical Thinking 101: Utilizing Syllogistic Logic in Ethical Debates ": 1 +"The Impact of Biotechnology on Traditional Farming Practices in Global Agriculture": 1 +"Political Science: The Influence of Social Media on Voter Turnout in Recent Elections": 1 +"Marine Biology: The Role of Plankton in Mitigating Climate Change": 1 +"Innovations in Education: Understanding Mathematics through Augmented Reality for Teens": 1 +"Geology and GPS: Tracking the Movement of Tectonic Plates and Predicting Earthquakes": 1 +"Literature: The Influence of Trade Routes on the Evolution of Folk Tales in Silk Road Cultures": 1 +"The Resonance of Rhythm: Detailed Analysis of Drum Patterns Using Spectral Analysis Techniques": 1 +"Exploring Deep Space Through Haptic Feedback Suits: The Advancement of Virtual Reality in Astronomy": 1 +"Physical Education: Enhancing Soccer Performance with GPS Tracking Systems": 1 +"The Impact of the Printing Press during the Renaissance: The Overlooked Importance of the Astrolabe": 1 +"Art History: The Significance of Color Theory in Post-Impressionism": 1 +"Mathematics: Unraveling the Mysteries of Fractal Geometry with Python": 1 +"Exploring the Human Mind: An Introduction to Neuroimaging Techniques and the Application of Functional MRI": 1 +"Chemistry: The Science of Molecular Structures: An Insight into Crystallization": 1 +"Digital Artistry: Utilizing Photoshop, Illustrator and 3D Modeling Tools for Graphic Storytelling": 1 +"The Evolution of Music: The Role of Ableton Live and MIDI Controllers in Contemporary Electronic Music": 1 +"The Ethics of Artificial Intelligence: Addressing Moral Conflicts in Machine Learning through Augmented Reality and Ten Possible Solutions": 1 +"Cultural Anthropology: Appreciating Global Traditions through Lexical Semantics ": 1 +"English Language Studies: Evaluating Modern Poetry in the Digital Era using E-books": 1 +"Linguistics: Analyzing Speech Patterns with Machine Learning Using Java": 1 +"Computer Science: Fundamentals of Python Programming": 1 +"Physics: Quantum Mechanics - The Role of Schrödinger's Cat in Understanding Superposition and Wave Function Collapse": 1 +"Literature: The Metaphorical Journeys in Gabriel Garcia Marquez's Magical Realism: A Study of Love in the Time of Cholera": 1 +"Art History: Exploring Byzantine Iconography - Mosaic Techniques and the Symbolism of Gold in Religious Art": 1 +"Acoustical Engineering: The Science of Sound Waves - Examining Resonance and Frequency through String Instruments": 1 +"Geography: The Age of Discovery - The Impact of Cartography and the Astrolabe on Maritime Navigation": 1 +"Python for Linear Programming: An Insight into Optimization Problems and Decision Making": 1 +"Exploring Abstract Expressionism: Watercolors, Color Field & The Technique of Dripping Paint": 1 +"Advanced Geometry: Understanding the Fourth Dimension - Tesseract Visualization in Hypercubes using Linear Algebra": 1 +"Pediatric Psychology: Investigating Cognitive Development through fMRI and Functional Connectivity Analysis": 1 +"Environmental Science: Wilderness Navigation and Conservation: Emphasis on Flint and Steel Fire Starting and Desalination Techniques for Survival": 1 +"Chemistry: Molecular Architecture - Examining Chemical Bonding with Crystallography and Quantum Mechanics": 1 +"Virtual Reality: The Influence of Augmented Reality on Contemporary Theatre and Performance Art": 1 +"Botany: Deciphering Photosynthesis - An In-depth Analysis of Chloroplasts with Fluorescence Microscopy and Biochemical Assays": 1 +"Middle School: Understanding Geopolitics through Comparative Government Studies, World Maps, and International Relations Theory": 1 +"Geometry: Investigating Fractals in Nature using Geogebra and Computer Simulations": 1 +"Astrophysics: Probing Cosmic Phenomena through Spectroscopy, Gravitational Lensing, and Dark Matter Theories": 1 +"Philosophical Reasoning: Navigating Deductive Arguments using Formal Logic and Syllogistic Structures": 1 +"Radio Frequency and Propagation: An In-depth Exploration of Antenna Theory": 1 +"Ancient Cultures: The Role of Fire in Early Human Societies and the Development of Culture": 1 +"Neuropsychology: Mapping Cognitive Processes using EEG and PET Scans": 1 +"Decoding Architecture: An Insight into Structural Engineering, Mathematics, and Earthquake-Proof Designs": 1 +"Investing Essentials: A Comprehensive Guide to Real Estate Market for Teens": 1 +"Ancient Civilizations: The Bronze Age - The Impact of the Wheel and its Innovations": 1 +"Mastering Pandora's Station Creation Feature for Efficient Mood Curation in Hospitality Industry": 1 +"World Literature: Understanding the Russian Revolution through the Writings of Tolstoy": 1 +"Digital Storytelling: Enhancing Narrative Skills with Adobe Spark and Microsoft Sway": 1 +"Art and Technology: Exploring Digital Art Trends Globally with AR and Interactive Exhibitions": 1 +"Java and Spring Boot: An Intensive Study of Microservices Architecture": 1 +"Contemporary Physics: Exploring Quantum Mechanics using MATLAB and Python": 1 +"Political Science for Teens: Grasping Democracy and Civil Rights through Martin Luther King Jr.'s Activism": 1 +"Advanced Botany: Understanding Plant Physiology through Biochemical Analysis and Genomic Sequencing": 1 +"Innovative Therapies: The Role of Biomedical Engineering in Prosthetic Development and Rehabilitation": 1 +"Ancient Civilizations: Deciphering Hieroglyphics through the Lens of Computational Linguistics": 1 +"Artificial Intelligence: The Integration of Machine Learning and Robotics in Modern Industry": 1 +"Physics of Space: Exploring the Cosmos through Gravitational Waves and Quantum Field Theory": 1 +"Culinary Science: The Chemistry of Molecular Gastronomy and the Art of Plating": 1 +"Sustainable Energy: Harnessing Wind and Solar Power through Advanced Material Science and Grid Technology": 1 +"Metropolitan Planning: The Influence of Urban Design and GIS in Smart City Development": 1 +"Advanced Econometrics: Forecasting Financial Markets using Time Series Analysis and Stochastic Calculus": 1 +"Innovations in Pediatrics: Understanding Child Development through Behavioral Neuroscience and Genomic Research": 1 +"Unraveling Quantum Mechanics: A Comprehensive Analysis of Quantum Entanglement, Superposition, and Wave-Particle Duality": 1 +"Software Engineering: Using Python, TensorFlow, and Scikit-Learn for Machine Learning in E-commerce": 1 +"Cybersecurity Breakdown: A Deep Dive into Cryptography, Firewall configuration and Intrusion Detection Systems": 1 +"Art in Physics: Visualizing Quantum Phenomena through Oil Painting": 1 +"Unveiling the Golden Ratio: A Mathematical and Fractal Analysis using Python Programming": 1 +"The Sextant and Compass: Navigational Innovations during the Age of Discovery": 1 +"Harmonic Vibrations: Investigating Light Waves using Spectrometers and Diffraction Gratings": 1 +"Cultural Anthropology: The Impact of Social Media on Global Food Trends: An Analysis of the Instagram Foodie Movement": 1 +"Primary: Grasping Weather Patterns with Satellite Data and Basic Meteorology using Virtual Reality": 1 +"Graphic Arts: 3D Modeling and Innovation using Blender and Unity": 1 +"Physics: Quantum Mechanics & Computational Analysis using MATLAB": 1 +"Anthropology 120: Cultural Evolution & Comparative Society Studies using Ethnographic Methods": 1 +"Artistry in Photoshop: Advanced Techniques in Digital Painting and Graphic Design": 1 +"Sports Science: Enhancing Performance through Biomechanical Analysis": 1 +"Philosophy 200: Unveiling Ethical Perspectives with Meta-Ethical Reasoning": 1 +"Engineering Soundscapes: Comprehensive Guide to Amplifiers and Microphone Placement": 1 +"Cybersecurity: Demystifying the Intricacies of VPN and Firewalls": 1 +"Computer Graphics: 3D Modelling and Animation - Character Design using Blender and Unity": 1 +"Geometry: Exploring the Golden Ratio in Nature through Fractal Analysis": 1 +"Cognitive Psychology of Dance: Understanding Perception and Motor Coordination through EEG": 1 +"Anatomy: Understanding Human Musculature through Advanced 3D Imaging Techniques": 1 +"Physics 101: Quantum Mechanics - Uncertainty Principle and Particle-Wave Duality": 1 +"Artistic Perspective in Oil Painting: The Influence of a Palette Knife on Texture, Form, and Depth Using Layering Techniques": 1 +"Biology: Fundamentals and DNA Sequencing Analysis using CRISPR-Cas9 and Bioinformatics": 1 +"Astronomy: Exoplanet Detection and Analysis through Gravitational Microlensing and Radial Velocity": 1 +"Ruby on Rails Web Development: API Design and Implementation with Active Record and PostgreSQL": 1 +"TensorFlow in Python for Financial Forecasting: An In-depth Exploration of Stock Market Trends using Machine Learning": 1 +"Advanced Spanish Linguistics: An Intensive Study of Composition and Grammar using Rosetta Stone and Babbel": 1 +"Global Politics: The Cold War Era - Nuclear Deterrence, Espionage, and the Rise of Diplomacy": 1 +"Excel in Rhetoric: Mastering Argumentation and Persuasion with Syllogisms and Fallacies.": 1 +"Biology: The Function of Microscopes in Understanding Cell Division and Gene Expression": 1 +"Finance 101: Applying Artificial Intelligence in Stock Market Predictions": 1 +"Ethics: The Impact of Existentialism on Contemporary Moral Philosophy": 1 +"Engineering: The Physics of Bridge Building - Utilizing Tension and Compression Forces": 1 +"Literature: Postmodern Fiction - Analyzing Metafiction and Irony through Deconstruction": 1 +"Statistics: Data Analysis for Political Polling using SPSS": 1 +"Astrology: The Application of Telescopes in Understanding the Universe": 1 +"Psychology for High school: Understanding Human Behaviour through EEG, fMRI and Transcranial Magnetic Stimulation ": 1 +"The Role of Thermodynamics in the Evolution of Mechanical Engineering": 1 +"Chemistry Basics: Compounds and Reactions with pH Strips.": 1 +"Philosophy: The Influence of Artificial Intelligence on Moral Reasoning and Ethical Decisions": 1 +"Advanced Physics: Quantum Computing and the Paradigm Shift in Information Processing and Technology": 1 +"Health Science: The Role of Yoga and Mindfulness in Mental Health and Stress Management": 1 +"Fundamentals of Finance: The Impact of Cryptocurrency on the Global Economy": 1 +"Art: Enhancing Visual Aesthetics through Digital Sculpting and 3D Modeling Techniques": 1 +"Ancient Civilizations: The Wheel and the Fire: Catalysts for Societal Progress and Cultural Development": 1 +"Advanced Algebra: Grasping Complex Numbers through Virtual Simulations": 1 +"Advanced Python Programming: Utilizing PyTest and Jenkins for Continuous Integration and Code Verification": 1 +"Environmental Science: The Effect of Climate Change on Animal Migration Patterns": 1 +"Language Evolution: Hieroglyphics and the Phaistos Disc: Deciphering Ancient Communication Techniques": 1 +"Advanced Studies: The Plant Kingdom, Photosynthesis, and Crop Yield: Perspectives from Drone Technology": 1 +"Detailed Examination of Photonics: Light Wave Propagation with Spectrometers, Wave-particle Duality, and the Phenomenon of Diffraction": 1 +"Introductory Geology: Understanding Plate Tectonics and their Effects on the Earth's Landscape": 1 +"Cultural Anthropology: Implementing Ethnographic Approach in Studying Global Culinary Traditions.": 1 +"Information Technology: Utilizing AWS Lambda, Python, and XML for E-commerce Applications Development": 1 +"Information Technology: Virtual Reality Development using JavaScript, Unreal Engine 4 and Cryptocurrency Integration": 1 +"Fiscal Regulations and Inflation: A Sociological Perspective Through the Framework of Cryptocurrency Technology": 1 +"Statistics: Forecasting Techniques using SPSS software.": 1 +"Primary School Arithmetic: Mastering Multiplication and Division with Educational Software": 1 +"Chemistry: Venturing into Molecular Analysis and Spectroscopy with Infrared Spectrometers": 1 +"Chemistry: Advanced Exploration of Protein Structure: Understanding Molecular Dynamics Through X-ray Crystallography": 1 +"The Visual Cortex and Art: Using Functional MRI to Study the Neuroscience of Color Perception": 1 +"Using Drone Technology: Analyzing the Influence of Aerial Photography on Urban Planning in Varied Environments": 1 +"The Physics of Light: An Optical Analysis using Wave-Particle Duality": 1 +"Machine Learning in Genomics: R Programming and Neural Network Applications": 1 +"Political Science: Examining the Political Impact of Social Media Technology": 1 +"History: Unearthing World Wars through Personal Diaries and Letters": 1 +"Creative Writing: Building Worlds with English Idioms and Similes": 1 +"Computer Science: Implementing Haptic Feedback in Virtual Reality Technology for Immersive Gaming": 1 +"Mathematics: Deciphering the Complexity of Fractal Geometry with MATLAB, Iteration Tools, and Mandelbrot Set Analysis": 1 +"Physics: Exploring Quantum Field Theory Using Feynman Diagrams ": 1 +"Art: The Significance of Color Theory in Renaissance Paintings ": 1 +"Cybersecurity: Understanding Blockchains through Advanced Cryptography Techniques": 1 +"Sociology 101: Analyzing Social Structures through the Lens of Structural Functionalism ": 1 +"Creative Writing: Utilizing Haikus to Advocate Social Justice Issues ": 1 +"History 102: The Influence of the Telegraph in the Development of Global Communication during the Victorian Era": 1 +"The Aesthetic Dimensions of Gymnastics: Capturing Athletes' Grace with Slow Motion Videography ": 1 +"Graphic Design: The Role of Adobe Photoshop in Creating Atmospheric Video Game Art": 1 +"Geography: Utilizing QGIS and PostgreSQL in Disaster Management Mapping - Analyzing Patterns and Predicting Outcomes": 1 +"Music and Agriculture: The Influence of the Tractor on Country Music Genres": 1 +"Quantum Mechanics: Unveiling the Mysteries of Quantum Tunneling and Superposition with Schrodinger's Cat": 1 +"Linguistics: Deciphering the Syntax Tree - The Magic of Sentence Diagramming": 1 +"Coding for Kids: Mastering the Basics of JavaScript and HTML through Interactive Gaming": 1 +"Architecture and Culture: Exploring the Influence of Religion on Byzantine and Gothic Architecture": 1 +"Neuroscience of Sleep: Understanding Circadian Rhythms and Sleep Disorders through Polysomnography": 1 +"Data Science with R: Exploring Predictive Modeling, ggplot2, and Shiny for Business Intelligence": 1 +"Our Living Planet: Understanding Ecosystems and Biodiversity through Geo-Caching and Virtual Reality": 1 +"Physics: Unveiling the Secrets of Light, Refraction, and Rainbows: A Comprehensive Study on Spectrometers": 1 +"Advanced Nutrition: Evaluating Metabolic Rates and Energy Consumption using Dual-Energy X-Ray Absorptiometry": 1 +"The Mandelbrot Set: Exploring the Intersection of Chaos and Order in Fractal Geometry with Matlab": 1 +"Unlocking the Universe: Harnessing the Power of the Hubble Space Telescope": 1 +"Sound and Silence: Exploring the Musicality of Nature through Digital Synthesis": 1 +"Reasoning Right: A Deep Dive into Predicate Logic": 1 +"Unraveling Artificial Intelligence: Optimizing Spotify's Recommendation System for Jazz Lovers": 1 +"Mastering Modular Synthesis in Pure Data: An Examination of the Osc~ Object": 1 +"The Science of Flavors: An Exploration of Food Science through Infrared Spectrometry": 1 +"Artificial Intelligence in Agriculture: The Impact of Machine Learning on Sustainable Farming": 1 +"Microeconomics: Predictive Modeling using Neural Networks and Econometric Analysis": 1 +"Digital Literacy: Enhancing Professional Communication through Effective LinkedIn Messaging": 1 +"The Therapeutic Power of Virtual Reality Games: A Study on Mental Health Improvement.": 1 +"Astrophysics: Tracing the Evolution of 10 Unique Stellar Phenomena with Astrocartography": 1 +"Advanced Chemistry: Decoding the Intricacies of Nanoparticles with Electron Microscopy and X-Ray Diffraction": 1 +"A Novice's Introduction to Sociology: Grasping Societal Dynamics through Social Stratification": 1 +"Virtual Reality and Ballet: Evaluating the Influence of Oculus Rift on Dance Choreography": 1 +"Kinesiology: Understanding the Interplay of Motor Neurons in Human Locomotion": 1 +"Musicology: An In-depth Exploration of Violin Resonance Using Sound Wave Analysis": 1 +"Fine Arts: Ceramic 3D Printing: Unraveling Techniques with the Use of a Kiln": 1 +"Business Studies: Impact of E-commerce on Retail Industry's Economic Paradigms": 1 +"Basketball Analytics: Extensive Research using Python, R, and Tableau": 1 +"Advanced Neurology: Employing Diffusion Tensor Imaging to Investigate Neurodegenerative Diseases and Cognitive Function": 1 +"Environmental Studies: The Impact of Deforestation on Biodiversity using Satellite Imagery and GIS Technology": 1 +"Advanced Physics: The Role of Quantum Mechanics in Nanotechnology and the Future of Computing": 1 +"Physical Education: Martial Arts Tactics: Understanding the Science of Judo and Brazilian Jiu-Jitsu": 1 +"Ruby on Rails: An In-depth Guide to Web Development and RESTful API Design": 1 +"Blockchain, AI, and Their Influence on Healthcare: A Comprehensive Guide to Technological Innovation in Medicine": 1 +"Inorganic Chemistry: A Detailed Study of Crystal Structures using X-Ray Diffraction and Nuclear Magnetic Resonance": 1 +"Psychology: Exploring Human Behavior through Functional MRI and Cognitive Behavioral Therapy": 1 +"Visualizing Scientific Phenomena through 3D Animation and Virtual Reality": 1 +"Investigating Patterns in Architectural Design: An Introduction to AutoCAD and 3D Printing ": 1 +"Middle School: A Detailed Study of European History through Virtual Tours and Augmented Reality Technologies": 1 +"Sculpture: The Evolution of Clay Modeling Techniques in Contemporary Art": 1 +"Computer Engineering: Exploring Neural Networks and Machine Learning with Python": 1 +"Algebra: Understanding Complex Numbers and Linear Equations through MATLAB": 1 +"Art History: Analyzing the Impact of Oil Paints on the Renaissance Movement": 1 +"Geology: Interpretation of Seismic Data Using ArcGIS - Earthquake Patterns and Their Global Impact": 1 +"Applying Linear Algebra in Python for Network Analysis Using Graph Theory": 1 +"English Literature: Enhancing Comprehension Skills through E-books and Digital Annotation Tools": 1 +"Biology for Beginners: Exploring Plant Cells through Microscopic Observations": 1 +"Astronomy: The Cosmic Microwave Background and the Big Bang Theory - Insights from Redshift Measurements": 1 +"Cryptography in the Digital Age: The Role of the RSA Algorithm in Secure Communications": 1 +"Physics: Advanced Quantum Mechanics with the Application of Schrödinger Equation in Nanotechnology": 1 +"Sustainable Architecture: Energy Efficiency and Carbon Reduction Techniques in Green Building Design": 1 +"Computer Science: Predictive Analysis in Healthcare Using Machine Learning and Python": 1 +"Understanding Light: An In-depth Study of Optics and Refraction through Lens and Photonic Crystals": 1 +"Advanced Chemistry: Climate Change and Carbon Sequestration with the use of Biochar and Artificial Photosynthesis": 1 +"Neuropsychology: Unraveling the Mind through Functional MRI and Cognitive Behavioral Therapy": 1 +"Blockchain and AI: Enhancing Cybersecurity in Financial Transactions: Comparative Analysis of 15 Innovative Solutions": 1 +"Economics: Evaluating the Socio-Economic Impact of Climate Change: A Behavioral Economics Approach": 1 +"Mathematics: Exploring Fractals and Chaos Theory with Python and the Matplotlib Library": 1 +"Investigating Force and Gravity: Comprehensive Study of Gravitational Waves with LIGO and Einstein's Theory of Relativity": 1 +"Psychology in Perspective: Decoding Human Behavior through Jungian Archetypes and Dream Analysis": 1 +"Advanced Pro Tools: The Future of Audio Mixing in Contemporary Film Scoring": 1 +"Ancient History: The Impact of Hieroglyphics on Modern Cryptography": 1 +"Cellular Biology: Unraveling Human Genetics using CRISPR-Cas9 Techniques": 1 +"Junior Newton: An Introduction to Gravity and Orbits for Young Learners": 1 +"Information Technology: Harnessing the Power of Python for Data Analysis": 1 +"Environmental Science: Analyzing Global Warming Effects with GIS and Remote Sensing": 1 +"Sports Science: A Study on Fluid Dynamics in Swimming using Bernoulli's Principle": 1 +"Advanced Calculus: Exploring Fourier Series with MATLAB for Engineering Applications": 1 +"Crypto-Economy: Understanding Blockchain Algorithms and Bitcoin Mining Strategies using C++": 1 +"Interdisciplinary Perspectives: The Internet and the Globalization of Communication": 1 +"Evolutionary Biology: A Comprehensive View of Genetic Diversity through Next-Generation Sequencing": 1 +"The Interplay of Physics and Ballet: Understanding Movement Through Biomechanics": 1 +"Anthropology: The Impact of Agriculture on Early Human Societies: A Look at Pottery Techniques": 1 +"Physical Education: The Science Behind Swimming: Mastering the Butterfly Stroke with Hydrodynamic Principles": 1 +"Advanced Calculus: Solving Differential Equations Using Mathematica and R": 1 +"Investigating Biochemical Pathways: An Integrated Approach to NMR Spectroscopy, Enzyme Kinetics, and Proteomics": 1 +"Cognitive Development: Enhancing Children's Problem-Solving Skills with Minecraft Education and LEGO Mindstorms": 1 +"Literature: The Transformation of Storytelling Styles Across Cultures and the Impact of Digital Media": 1 +"Ethnolinguistics: Studying Language Diversity Globally Through Phonetics and Phonology Analysis": 1 +"Physics and Art: Understanding the Impact of Light Waves on Painting Techniques": 1 +"The Human Mind: Exploring the Role of Dopamine in Behavior Using fMRI Technology": 1 +"Environmental Biology: Assessing Ecosystem Health through DNA Barcoding and Drone Surveillance": 1 +"Cybersecurity: The Role of Quantum Computing in Protecting Digital Assets": 1 +"Artificial Intelligence: The Application of Genetic Algorithms in Autonomous Vehicle Navigation": 1 +"Visual Art and Technology: Understanding the Influence of Digital Media on Contemporary Sculpture": 1 +"Understanding Economics: The Role of Blockchain Technology in Enhancing Financial Security": 1 +"Advanced Statistics: The Use of R Programming in Predictive Analytics": 1 +"Geology: Exploring Plate Tectonics through Satellite Imagery and Seismographs": 1 +"Chemistry for Young Learners: Discovering Polymers through Slime Experiments": 1 +"Astropsychology: Unraveling the Cosmic Mind through Telescopic Observations and Spectrum Analysis": 1 +"Unveiling the Secrets of Human Genome Sequencing Using Python and Machine Learning Algorithms": 1 +"Marine Biology: Coral Reef Biodiversity and Ecosystems, A Deep Dive Using Drones and Underwater Imaging": 1 +"Chemistry in Action: Molecular Structures and Chemical Reactions Decoded Through Computational Chemistry": 1 +"Mastering 3D Printing: A Study of Additive Manufacturing Techniques Using AutoCAD and SolidWorks": 1 +"Uncovering History: Deciphering Ancient Civilizations Through Archaeological Excavations and Radiocarbon Dating": 1 +"Business Intelligence: Leveraging Predictive Analytics and Data Mining in Market Research": 1 +"Environment Studies: Climate Change Impact Analysis Using Satellite Imagery and Climate Models": 1 +"Linguistics: Tracing Human Communication through Phonetics and Speech Synthesis Technology": 1 +"Visual Arts: Enhancing Creativity through Digital Painting and Graphic Design Tools": 1 +"Quantum Physics: Exploring Photonic Crystals and Their Application in Solar Cells": 1 +"Mathematics in Music: Understanding Rhythm and Pitch through Fourier Series": 1 +"Sustainable Agriculture: The Impact of Climate Change on Crop Yield Optimization": 1 +"Astronomy Basics: An In-depth Study of Exoplanets and Their Potential for Life": 1 +"Using SQL, Tableau, R, and MATLAB in Predictive Modeling: A Financial Market Analysis": 1 +"Literature and Society: Decoding Symbolism in Post-war Fiction": 1 +"The Science of Coffee Brewing: Understanding Extraction, Flavor Profiles, and Beyond": 1 +"The Art of Cinematography: Creating Visual Narratives with Adobe Premiere Pro ": 1 +"Human Anatomy: A Comprehensive Study of the Musculoskeletal System and Its Disorders": 1 +"Exploring the Intricacies of Language: Morphology, Phonetics, and Semiotics in Linguistic Anthropology": 1 +"Biology 101: The Role of CRISPR in Modern Genetic Engineering": 1 +"Political Science: Exploring the Dynamics of Globalisation through the Framework of International Relations": 1 +"Archaeology: Unearthing the Secrets of Ancient Civilizations using LiDAR Technology": 1 +"French Literature: Examining Postmodernism through the Works of Michel Foucault": 1 +"Digital Logic Design: Mastering Circuit Analysis with VHDL and Field Programmable Gate Arrays": 1 +"Psychology: Unraveling Cognitive Processes through Functional MRI in Neuropsychology ": 1 +"Statistics: Predictive Analysis using R for Stock Market Forecasting": 1 +"Environmental Science: Exploring the Impact of Climate Change on Polar Ecosystems using Satellite Imagery": 1 +"Quantum Physics: The Principles of Superposition and their Application in Quantum Computing": 1 +"Neurolinguistics: The Role of fMRI in Understanding Language Processing in the Brain": 1 +"Advanced Botany: Understanding Plant Metabolism through X-ray Crystallography and Spectroscopy": 1 +"Software Engineering Essentials: Programming Fundamentals with Python - Introduction to Java": 1 +"Intermediate Meteorology: Understanding Weather Patterns and Climate Zones": 1 +"Cultural Anthropology: The Influence of Textiles in Clothing Traditions Across Various Societies": 1 +"Introductory Physics: Exploring Gravitational Pull with Radio Telescopes and Accelerometers": 1 +"Intermediate Algebra: Learning to Solve Equations with a Graphing Calculator and Logarithmic Tables": 1 +"The Impact of Serotonin on the Interplay between Psychiatry and Visual Art": 1 +"Digital Media: Animation and Storytelling using Virtual Reality Devices": 1 +"Significance of Barometers in Gathering Climatic Information for Tennis Sports Studies": 1 +"Intermediate Algebra: Solving Equations using the Octal System with Mathematica.": 1 +"Chemistry: Advanced Organic Synthesis Techniques Utilizing NMR and Infrared Spectroscopy": 1 +"Mathematical Models: Stock Market Analysis Using Python and MATLAB": 1 +"Geopolitics 101: The Berlin Wall – The Catalyst for the Cold War": 1 +"Astrophysics Basics: Understanding Black Holes through 3D Modelling and Virtual Reality": 1 +"Economic Transitions: The Influence of the Rothschild Family during the Victorian Era": 1 +"Expressionism Explored: Oil Painting, Glazing & Grasping the Pantone Color System": 1 +"Secondary Education: Applying Gamification Techniques for Improving Math Skills": 1 +"The Impact of Epigenetics on Human Evolution: An In-depth Examination of DNA Methylation and Chromatin Remodeling": 1 +"Molecular Biology: Exploring the World of Viruses with Cryo-Electron Microscopy": 1 +"Advanced English Literacy: Enhancing Reading and Writing Skills using Microsoft 365, Duolingo, and Grammarly": 1 +"Introduction to Cinematography: Utilizing RGB LED Lights for Dynamic Scene Lighting": 1 +"Mastering C++: Assertive Debugging with Google Test and CMake Implementation": 1 +"Advanced R Programming & Pandas: Leveraging Big Data for Healthcare Analytics": 1 +"Beyond the Visible: Infrared Landscape Photography for Environmental Studies": 1 +"Chemistry: Understanding Molecular Structures using Nuclear Magnetic Resonance with MestReNova Software ": 1 +"Political Science: Comprehending Climate Change Policies through Sentiment Analysis: Using SAS for Predictive Modelling": 1 +"Zoology: Understanding Animal Behavior: Field Studies with Infrared Motion Detection Cameras": 1 +"Marine Biology: Exploring Ocean Life: An Insight into Plankton Analysis using Fluorescence Microscopy": 1 +"Music History: The Influence of Electric Guitar Technology on Rock Music during the 20th Century": 1 +"Geography: Climate Patterns and Agricultural Practices: A GIS-based Approach": 1 +"Physics: Quantum Mechanics and Particle Physics: Exploring the Standard Model ": 1 +"Advanced Physics: Astrophysics, Cosmology and the Application of Telescopic Technology ": 1 +"Art Education: Sculpture and 3D Design: Exploring Space and Form through CAD Software ": 1 +"Computer Science: Advanced 3D Animation with Maya and Blender": 1 +"Anthropology: Tracing Human Migration through the Study of Mitochondrial DNA": 1 +"Inorganic Chemistry: Understanding Crystal Structures through X-ray Crystallography and Solid State NMR": 1 +"Computer Science 201: Advanced Java Programming & Data Mining: Using TensorFlow in Big Data Analytics": 1 +"Literature: Postmodern Literature - Deconstructing Authorial Intent through Structuralism and Post-Structuralism": 1 +"Economics: Exploring Labour Market Dynamics: A Comprehensive Study of Labour Economics through Panel Data Analysis in SAS": 1 +"Physical Education: Enhancing Endurance through Aquatic Training: Utilizing Swim Fins and Resistance Bands": 1 +"Philosophy: Navigating the Intricacies of Epistemology through Inductive Reasoning": 1 +"Physics: A Comprehensive Examination of Light Particle Behaviors using Interferometers": 1 +"Fine Arts: Urban Landscape Sketching: Harnessing Perspective and Shadow": 1 +"Data Science: Evaluating Environmental Factors with Predictive Analytics": 1 +"Global Studies: Politics and Pop Culture in the Digital Era - The Power of Viral Trends": 1 +"Decoding the Digital Surge: The Role of VPN Technology in Shaping Cybersecurity Systems": 1 +"The Integration of Python in Astrophysics and Chaos Theory: An In-depth Look at the Lorenz System": 1 +"Biology for Teens: Decoding DNA with Gel Electrophoresis and Microscopic Examination": 1 +"Literature: Exploring the Narrative Techniques in Anthropological Fiction: Cross-cultural Perspectives in Literature using Thematic Analysis": 1 +"Geology: Leveraging LiDAR Technology and Topographic Data in Unearthing the Secrets of the Grand Canyon": 1 +"Advanced Botany: Exploring the Impact of Climate Change on Alpine Flora Using Biogeography and GIS": 1 +"Machine Learning in Astronomy: Classifying Galaxy Types with TensorFlow and Google Colab": 1 +"Political Science: The Influence of Populist Rhetoric on Immigration Policies in Contemporary Europe": 1 +"Mastering C# Programming: Building Robust Applications with NUnit for Efficient Debugging": 1 +"Inorganic Chemistry: The Art of Crystal Making - An Examination of X-Ray Crystallography and Powder Diffraction": 1 +"Artificial Intelligence and Robotics: Their Role in Changing Landscape of Healthcare in Google Fit": 1 +"Cognitive Psychology: Understanding Human Memory through EEG, MEG and Neuroimaging Techniques": 1 +"World History: An In-depth Analysis of the Industrial Revolution and Its Global Impact": 1 +"Astrophysics: Dark Matter and Energy - Exploring the Invisible Universe with Hubble Space Telescope": 1 +"Decoding Metaphors in Narrative Literature: A Comparative Study using Text Mining Techniques": 1 +"Astrophysics: The Role of Gravitational Waves in the Universe: A Computational Physics Approach": 1 +"Advanced Biochemistry: Protein Structure and Enzyme Kinetics Through X-ray Crystallography": 1 +"Geology: Understanding Plate Tectonics through Seismic Wave Analysis": 1 +"Visual Arts: Exploring Perception and Illusion Through Virtual Reality Technology": 1 +"Microbiology: An In-depth Study of Viruses through Cryo-Electron Microscopy": 1 +"Computer Science: Text Mining and Sentiment Analysis using Natural Language Processing": 1 +"Music Theory: Harmonics and Overtones - A Study through Digital Audio Workstation": 1 +"Drama Studies: The Impact of Augmented Reality in Stage Design and Audience Engagement": 1 +"Advanced Electronics: Arduino Programming, Sensor Integration, and Machine Learning Applications": 1 +"Critical Thinking in Philosophy: Analyzing Fallacies through Cognitive Science Research": 1 +"Decoding the Universe: The Role of Spectroscopy in Astrophysics": 1 +"The Physics of Light: Understanding Refraction, Reflection, and Diffraction through Lab Experiments": 1 +"The Role of Literature in Shaping Sociopolitical Ideologies during the Cold War": 1 +"Advanced Organic Chemistry: Understanding Stereochemistry through Molecular Models and Jmol Visualizations": 1 +"Business Studies 102: Exploring Market Structures and Monopolistic Competition through Behavioral Economics": 1 +"The Neuroscience of Taste Perception: Utilizing Electrogustometry and Psychophysics in Sensory Evaluation": 1 +"The Power of Data Structures in Software Engineering: Emphasizing on Graph Theory using C++": 1 +"Designing Interactive UI with JavaScript & Sketch: A Computational Approach to Web Design": 1 +"Spanish Literature: Semantic Analysis using GATE and Java: Reading Comprehension and Literary Critique": 1 +"Special Education 410: Utilizing Virtual Reality and Assistive Technology in Individualized Education Programs": 1 +"Advanced Geometry 202: Investigating Architectural Structures using Trigonometry and CAD Software": 1 +"Introductory Astronomy: Exploring the Cosmos through Telescope Observations and Stellar Spectroscopy": 1 +"Chemistry 101: Mastering Organic Compounds with Chromatography and Infrared Spectroscopy": 1 +"Zoology: Unraveling Animal Behavior and Adaptation using Genomics and Biotelemetry": 1 +"Economics: Evaluating the Influence of Cryptocurrency on Global Monetary Systems": 1 +"Intermediate Coding: Developing Algorithms with Java and Raspberry Pi": 1 +"Forensic Science: Crime Scene Investigation using DNA Profiling and Fingerprint Analysis": 1 +"Information Technology: Mastering Cybersecurity Measures with Ethical Hacking Tools": 1 +"Environmental Studies: Assessing Climate Change through Paleoclimatology and Geospatial Analysis": 1 +"Acoustics: Examining the Physics of Music through Harmonic Vibrations and Spectral Analysis using Wavelet Transforms": 1 +"Chemistry Chronicles: Unraveling the Mystery of Organic Compounds with Molecular Kits": 1 +"Cognitive Enhancement: Mastering Problem Solving and Critical Thinking using Python": 1 +"Art: Discovering the Intricacies of Watercolor Portraiture with the Aid of Digital Media": 1 +"Advanced Statistics: Unlocking Predictive Analytics using R Programming": 1 +"Art: Merging Literature and Visual Art - Creating compelling narratives through Illustration": 1 +"Art: Mastering Texture in Pottery - The Art of Glazing and Firing": 1 +"Geography: Exploring the Earth's Landscape through Drone Technology": 1 +"Innovative Teaching: Introducing Inductive Reasoning to Young Learners": 1 +"Green Architecture: The Role of Renewable Energy in Building Sustainable Urban Landscapes": 1 +"Applied Mathematics: Applying Probability and Statistics in Predicting Weather Patterns": 1 +"Mapping Mindsets: A Comprehensive Study of Cognitive Biases and Chess Strategies using Neural Networks and MATLAB": 1 +"Exploring the Impact of Amazon Echo on Linguistic Evolution in Football Commentary": 1 +"Employing Virtual Reality in Yamaha Synth Track Development for African Diaspora Festival Music: A Cultural Insight": 1 +"Biology Education: Enhancing Cell Structure Study through Microscopic Imaging, 3D Modelling, and BioDigital Human ": 1 +"Technology and Literature: E-book Creation with Adobe InDesign": 1 +"Music: The Auditory Illustration of Emotion through Augmented Reality": 1 +"Artificial Intelligence and Quantum Computing: Navigating Moral Dilemmas in the Technological Era - Top Ten Approaches": 1 +"Global Literature: The Written Expression - Interpreting Through Poetic Forms": 1 +"Galaxies Revealed: Investigating Stellar Phenomena with Hubble Space Telescope and Spectrum Analysis": 1 +"Statistics: Understanding Data with Pictographs, Algebraic Expressions and Probability Theory": 1 +"Decoding Sounds: An Examination of Baroque Music through the Sonatas of Scarlatti": 1 +"Ethics 300: Deconstructing Moral Philosophy with Emphasis on Virtue Ethics": 1 +"The Integration of Artificial Intelligence in Cardiovascular Research: A Deep Dive into Support Vector Machines": 1 +"Cultural Anthropology: Exploring Tribal Tattoos of the Amazon Rainforest through Infrared Photography": 1 +"Advanced Physics: The Influence of Quantum Mechanics in Predicting Atomic Interactions": 1 +"Visual Arts: Interpreting Surrealist Art through the Perspective of Salvador Dali's Paranoiac-Critical Method": 1 +"The Evolution of the Internet: An Analysis from the Lens of Digital Communication": 1 +"Economic Studies: The Revolution of the Stock Market through Algorithmic Trading": 1 +"Sociology: Applying Geospatial Mapping to Analyze Racial Disparity in Urban Education": 1 +"Marine Biology: Exploring Cetacean Communication using Hydrophone Technology, Sonar Imaging, and Bioacoustics Analysis": 1 +"Advanced Nutrition: The Impact of Probiotics and Fermented Foods on Gut Health": 1 +"The Language of Financial Markets: Unraveling Time-Series Analysis and Predictive Modeling with LSTM Networks": 1 +"Physical Education: The Evolution of Martial Arts in Ancient China": 1 +"Chemistry 202: Understanding Molecular Structure - Exploring Chemical Bonds and Reaction Mechanisms": 1 +"The Influence of Python in Predictive Sports Analytics: A Data Science Approach using Tensorflow and K-Means Clustering": 1 +"Music Theory: Integrating Ambient Sounds into Electronic Music using Synth Programming": 1 +"Astrophysics: The Journey of Cosmic Discovery with Gravitational Lensing": 1 +"English: Semantic Analysis using Natural Language Processing and Deep Learning: Enhancing Comprehension and Interpretation ": 1 +"Advanced Python Programming and Data Visualization with Matplotlib for Climate Change Studies.": 1 +"The History of Medicine: The Emergence and Significance of the X-Ray Machine": 1 +"Mathematics in Nature: Exploring Fractals and Fibonacci Sequences in Botanical Structures": 1 +"Oceanic Marvels: Understanding the Role of Tides and Currents in Marine Ecosystems using Physical Oceanography": 1 +"History of Architecture: The Impact of Sunlight and Shadows in Ancient Construction": 1 +"Introduction to Robotics: Mastering Machine Learning and Artificial Intelligence using Python": 1 +"Physics of Sound: The Role of Resonance in Acoustic Guitar Design": 1 +"Digital Animation: Creating Life-like Characters using ZBrush and Maya": 1 +"The Power of Python: Understanding Data Structures and Algorithms in Cybersecurity": 1 +"Creative Writing: Crafting Immersive Worlds with Virtual Reality Storytelling Platforms": 1 +"Introduction to Behavioral Economics: Using Game Theory to Understand Consumer Decision Making": 1 +"Biotechnology Breakthroughs: Human Genome Editing and Ethical Considerations using CRISPR Technology": 1 +"Chemical Culinary: The Science Behind Molecular Gastronomy and its Impact on Global Food Culture": 1 +"Deep Dive into Machine Learning: Harnessing Python and Tensorflow for Predictive Modelling in Climate Change Studies": 1 +"Digital Media: The Role and Revenue Prospects of Digital Rights Management in the Film Industry": 1 +"Exploring Architectural Engineering: 3D Modeling with AutoCAD and Project Management using MS Project": 1 +"Spanish: The Power of Immersion: Understanding the Influence of Oculus Rift in Language Learning": 1 +"MRI and Neurofeedback: Innovative Strategies for Studying Brain Activity and the Effects of Psychopathologies": 1 +"Middle School: Decoding Arctic Human Geography through Climate Studies: Utilizing Drone Technology, Geospatial Information Systems, and R Programming for Wildlife Population Data Analysis": 1 +"Literature: Deciphering Allegory in Renaissance Drama": 1 +"Financial Forecasting: The Role of Artificial Intelligence in Predicting Stock Market Trends and Economic Health": 1 +"Performance Metrics in eSports: Applying Power BI, MySQL, and K-Means Clustering for a Competitive Edge.": 1 +"Sociology: The Impact of Artificial Intelligence on Social Interactions - An Examination of Machine Ethics": 1 +"Environmental Studies: Zero Energy Building Design - Sustainable Approaches in Urban Planning": 1 +"Advanced Guide to Geometric Progression: An Exploration Using Fourier Transformations and Nonlinear Dynamics": 1 +"Fine Arts: The Role of Nanotechnology in Contemporary Sculpture": 1 +"Leveraging the Power of Virtual Reality in Ableton Live 10 for Experimental Music Composition": 1 +"Data Science Basics: Navigating Algorithms in R and Java - A Detailed Look at Predictive Analysis Using Apache Spark": 1 +"Mathematics 220: Geometry in Architectural Design: Employing Euclidean Space": 1 +"Literary Studies: The Influence of Metaphors in Political Speeches and Writings of Climate Change Activists": 1 +"A Journey Through Time: An Advanced History Course with Enlightenment Period Philosophical Review, Copyscape Anti-Plagiarism Methods": 1 +"Basic Physics 101: Fundamentals of Light and Sound - Emphasis on Wave-Particle Duality": 1 +"Physics: Quantum Computing and Big Data Analysis: Building Cryptography Systems for Secure Communication": 1 +"The Role of Chromatography in Environmental Conservation and its Biological Implications": 1 +"Data-Driven Basketball Strategy Development Using PowerBI, R, Postgres and Decision Trees": 1 +"Design and Technology: The Impact of Virtual Reality in Architectural Visualization": 1 +"Advanced Algebra: Unraveling Fractal Geometry with Mathematica": 1 +"Political Science: The Influence of Artificial Intelligence on Political Campaigning and Ten Potential Strategies": 1 +"Philosophy: Mastering Critical Thought with Abstract Reasoning and Cognitive Science": 1 +"Anthropology: Deciphering Ancient Civilizations through Archaeological Data Interpretation using Machine Learning Techniques": 1 +"The Influence of Selenium on Metabolic Processes: An Investigation using High-Resolution Liquid Chromatography and Nuclear Magnetic Resonance Spectroscopy": 1 +"Ethics 101: The Art of Moral Discernment Through Categorical Imperatives": 1 +"Chemistry: Environmental Impact through Carbon Capture and Storage Techniques": 1 +"Mathematics in Finance: Predictive Analysis of Stock Market Trends using Machine Learning": 1 +"Biology: Exploring Marine Life Biodiversity through the Lens of Satellite Imaging": 1 +"Art History: Tracing Societal Changes through the Evolution of Renaissance Art using Machine Learning": 1 +"Advanced Game Development: Unity, C#, JavaScript, MySQL, and API Usage": 1 +"Early Childhood Development: Enhancing Cognitive Skills through Interactive Digital Games": 1 +"Data Science: Mastering Data Visualization from Basics to Advanced Techniques": 1 +"Athletic Injury Prevention: Biomechanical Analysis using Wearable Sensors and Data Visualization": 1 +"Astronomy: Unveiling Cosmic Mysteries through the Laws of Thermodynamics": 1 +"Eco-friendly Manufacturing of Apparel: Bamboo Fiber and 3D Printing for Biodegradable Clothing.": 1 +"Advanced Algebra: Understanding Fractals through MATLAB and Python": 1 +"Physical Education: Enhancing Football Tactics through Game Theory and Simulation": 1 +"Introduction to Robotics: Using ROS for Autonomous Vehicle Navigation": 1 +"Computational Biology: Predicting Protein Structures with AlphaFold and Machine Learning": 1 +"The Art of Gastronomy: Decoding the Science of Fermentation and Food Pairing": 1 +"Elementary Education: Enhancing Numeracy Skills through Interactive Gaming": 1 +"Mastering Java: Efficient Error Handling with JUnit and Maven Workflow": 1 +"History 202: Examination of the Gutenberg Press and its Impact on the Renaissance Era": 1 +"In-Depth Analysis of Green Tea's Effects on Cardiovascular Health using Echocardiograms, Holter Monitors, EKGs, and CT Scans: A Study on Catechins, Theanine, Vitamin K, and Magnesium": 1 +"Meteorological Science: Predicting Climate Patterns using Advanced Numerical Weather Prediction (NWP) Models and Supercomputing.": 1 +"Unlocking Quantum Mechanics: A Deep Dive into Particle Physics using MATLAB.": 1 +"Special Education 401: Enhancing Classroom Engagement with Microsoft Teams and Interactive Whiteboard Activities.": 1 +"Tactical Strategy: Mastering Chess Endgames through Augmented Reality Learning.": 1 +"Global Politics: The Influence of the Printing Press during the Renaissance and the Rise of Democracy.": 1 +"Language Acquisition: Synonyms and Antonyms with Quizlet Study Sets.": 1 +"Applying Thermodynamics in the Design and Manufacturing of High Performance Racing Bicycles.": 1 +"Information Technology: Java Script and Basics of Web Designing Tools.": 1 +"Diving into Information Technology: Building Drones with Raspberry Pi and Introduction to Machine Learning.": 1 +"Mastering the Layer Mask and Clipping Mask Techniques in Adobe Photoshop: An In-depth Course in Digital Design and Graphics.": 1 +"Information Technology: Exploring Mobile App Development with Swift, C#, Xamarin and Virtual Reality.": 1 +"The History of Hydroelectric Power: A Comprehensive Analysis of Water Turbine Technology and the Use of Environmental Impact Assessment": 1 +"Psychology 120: A Multidisciplinary Study of Emotion and Art - The Serotonin Connection": 1 +"The Influence of Early Radio Regulations on the Use of the Fax Machine in Business Communications during the Technological Boom": 1 +"Athletic Recovery Mechanisms: A Cross-Disciplinary Review using Python and Wearable Technology": 1 +"Physics: Quantum Mechanics and Particle Acceleration Insights using Transmission Electron Microscopy": 1 +"Investigating the Influence of Light Spectrum on Oil Painting Techniques Using Palette Knives and Canvas: An In-depth Study on Abstract Forms and Aerial Perspective": 1 +"The Impact of Meditative Yoga on Mental Health: A Wellness Education Research": 1 +"Maximizing Corporate Growth with Quadratic Equations in Calculus using SPSS": 1 +"Creative Horizons: Traditional Crafts in Contemporary Design - A Detailed Exploration into Laser Cutting": 1 +"MRI Techniques in Cardiology: In-depth Analysis of the Human Heart": 1 +"Political Science: The Influence of Social Media on Global Politics": 1 +"Advanced Physics: Exploring Quantum Computing Through Superposition and Entanglement": 1 +"Primary Mathematics: Discovering the World of Geometry through Shapes and Patterns": 1 +"Inorganic Chemistry: Insights into Crystal Structures and Bonding Through X-ray Diffraction": 1 +"The Magic of Calculus: Unraveling Real-world Problems through Differential Equations and Integrals": 1 +"Art: Investigating the Impact of Digital Technologies on Modern Art and Design": 1 +"Mastering Spanish: Utilizing Duolingo and Google Translate for Conversational Proficiency and Cultural Understanding": 1 +"Psychology 101: The Psychology of Sport: The Impact of Mental Conditioning on Athletic Performance": 1 +"Fun with Physics: Exploring the Universe with Interactive Simulations for Children": 1 +"Technology: Unveiling the Secrets of Cryptography in Internet Security: A Comprehensive Study of Encryption Algorithms": 1 +"Physics Fundamentals: A Deep Dive into Quantum Mechanics and String Theory": 1 +"Philosophy and Reasoning: Understanding Existentialism through the Lens of Sartre's Nausea": 1 +"Data Science: Exploring Predictive Modeling with Python and TensorFlow": 1 +"Microbiology: Unveiling the Secrets of Cellular Processes through Biochemical Assays and Electron Microscopy": 1 +"Literature Analysis: Exploring Dystopian Themes in George Orwell's 1984 and their Relevance Today": 1 +"Geology 101: Uncovering Earth's History through Plate Tectonics and Fossil Records": 1 +"Digital Media: Enhancing Visual Storytelling with Adobe Premiere Pro and Digital Animation Techniques": 1 +"Chemistry: Exploring the Impact of Green Chemistry on Climate Change and Sustainability": 1 +"Collaborative Learning: Enhancing Group Discussions with Slack Channels and Trello Boards": 1 +"Algebraic Mathematics: Solving Complex Equations using Wolfram Alpha and Algebraic Proofs": 1 +"Mathematics: Exploring Fractal Geometry through Computer Algorithms": 1 +"History: The Effect of Gutenberg's Printing Press on the Reformation Movements": 1 +"Physics: The Role of Quantum Mechanics in the Development of Computer Technology": 1 +"Vocabulary: Enhancing Language Acquisition with Duolingo through Adaptive Learning": 1 +"An Advanced Course on Cryptography: Decoding Ciphers Using Python Programming": 1 +"Exploring Saxophone Harmonies: Sound Processing Techniques with Logic Pro and ProTools' Frequency Analysis": 1 +"Project Enigma: The Role of Cryptanalysis in Cold War Espionage": 1 +"Visual Arts: Deconstructing Surrealism through Digital Rendering using Color and Texture": 1 +"The Impact of Machine Learning on Augmented Reality's Influence on Digital Forensics: Legal and Theoretical Consequences & 10 Revolutionary Approaches": 1 +"Depicting Sociopolitical Movements through Graffiti Art: A Study of Urban Culture and Expression.": 1 +"Physics: Exploring Quantum Computing and its Impact on Cryptography": 1 +"Advanced Mathematics: Implementing Statistical Machine Learning Algorithms with Python": 1 +"Senior Chemistry: Unveiling the Complexities of Organic Compounds through Molecular Simulation": 1 +"Deciphering the Mayans: Utilizing LiDAR Technology to Uncover Hidden Pyramids and Cities": 1 +"Philosophy: Understanding Existentialism through the Lens of Nietzsche's Thought Experiments": 1 +"Tech Science: Introduction to Artificial Intelligence and Machine Learning Basics": 1 +"Critical Minds: An In-depth Study of Deductive Reasoning and Propositional Logic using Python": 1 +"Crafting Narrative Threads: An Intermediate Course on Character Development in Fiction Writing": 1 +"Sustainability Studies: The Role of Biomimicry in Urban Planning for Climate Change Mitigation": 1 +"Digital Design: Exploring Fractal Geometry and its Utilization in 3D Printing Technology": 1 +"The Evolution of Podcasts: Understanding the Impact of Audio Streaming Technology on Radio Broadcasting": 1 +"Exploring Financial Predictive Modeling: A Comprehensive Examination of Neural Networks, Machine Learning, Google Cloud, and IoT Technology": 1 +"Language and Literature: Exploring Trauma in Post-Apocalyptic Novels through Trauma Theory and Queer Theory": 1 +"The Basics of Film: The Power of Cinematography in Creating Emotional Impact": 1 +"Anthropology: Analyzing Cultural Representations in Video Game Design through the Lens of Augmented Reality ": 1 +"Fine Arts: Fusion of Dance and Sculpture through 3D Modeling in Contemporary Art": 1 +"Physics in the Modern World: The Role of Quantum Mechanics in Understanding the Nature of Light": 1 +"Biology: The Essentials of Molecular Biology and the Use of Microscopy in Gene Analysis": 1 +"Sociology: The Influence of Social Media on Global Fashion Trends and Cultural Identities": 1 +"Statistics: Utilizing Regression Analysis in Predicting Climate Change and Its Impact on Global Population Dynamics": 1 +"Physics 101: Exploring Quantum Mechanics through Schrodinger's Cat": 1 +"Art History: The Influence of Cubism on Modern Architecture": 1 +"Literature: Analyzing Human Nature in Dystopian Novels - A Study of George Orwell's 1984": 1 +"Computer Science: Understanding Algorithms - The Role of Heuristics in Artificial Intelligence": 1 +"Environmental Science: Climate Change Impact on Coral Reef Ecosystems": 1 +"Sociology: The Influence of Social Media on Modern Political Movements": 1 +"Advanced Medical Imaging: 3D Ultrasound Techniques in Obstetrics and Gynecology": 1 +"Music Technology: Harnessing Logic Pro X for Sound Design in Film Scoring": 1 +"Human Anatomy: Understanding the Neurological Aspects of Human Behaviour - A Study on the Central Nervous System ": 1 +"Calculus: Mastering Derivatives through Real-world Applications and Problem Solving.": 1 +"Advanced Robotics: Incorporating AI in Industrial Automation for Global Advancements": 1 +"Cultural Anthropology: The Impact of Virtual Reality on Global Societal Norms": 1 +"Intermediate Writing: Enhancing Children's Creativity through Digital Storytelling": 1 +"The Human Body: Exploring the Mysteries of DNA through Genomic Sequencing - A Course for Budding Biologists": 1 +"Music Theory: Harnessing Pro Tools and Yamaha HS8 for Harp Melodies in Audio Engineering": 1 +"Fundamentals of Data Analytics: A Comprehensive Guide to R Programming with RStudio": 1 +"Understanding Symbolism in Folk Music: The Fusion of Proverbs and Alliteration in Youthful Lyrics": 1 +"Astrobiology and Spectroscopy: Exploring the Possibilities of Extraterrestrial Life": 1 +"Software Development: Creating Your First Mobile App with React Native": 1 +"Chemistry: The Science of Color, Pigments, and Light Absorption": 1 +"Chemistry: The Role of Catalysis in Modern Industry - An Exploration of Haber-Bosch Process": 1 +"Advanced Astronomy: Stellar Cartography - Navigating the Cosmos through Radio Telescopes and Spectroscopy": 1 +"From Wax Cylinders to Spotify: The Impact of Technology on the Distribution and Consumption of Music": 1 +"Neuroscience and Art: Exploring the Effect of Abstract Art on Neural Connectivity Using fMRI Technology": 1 +"Accounting: Leveraging Excel for Efficient Financial Forecasting in Small Businesses": 1 +"Linguistics: Semantic Analysis using Deep Learning Techniques in Natural Language Processing": 1 +"Physics in Action: The Dynamics of Pendulum Motion - A Comprehensive Review": 1 +"Augmented Reality in Physical Therapy: Evaluating the Efficacy of Microsoft HoloLens and Motion Tracking Sensors": 1 +"Advanced Algebra: Understanding Vector Spaces - A Deep Dive into Matrix Algebra": 1 +"Sports Science: Implementing Biomechanical Analysis in Improving Shot Put Techniques in Athletics": 1 +"Mathematical Concepts: An Examination of Game Theory and its Applications in Economics": 1 +"Harmonic Structures: A Comprehensive Study of Beethoven's Sonatas Using Digital Audio Workstations": 1 +"World Literature: Interactive Storytelling in Video Games - A Cultural Analysis": 1 +"Psychology of Art: The Influence of Visual Stimuli on Emotional Responses": 1 +"Advanced Environmental Science: Climate Modelling Using Machine Learning and Big Data Analytics": 1 +"Engineering: Exploring Electromagnetic Waves in Wireless Communication with Oscilloscopes": 1 +"Business Studies: The Impact of Cryptocurrency on International Trade and Market Dynamics": 1 +"Chemistry Principles: Organic Chemistry and the Development of Biofuels": 1 +"Educational Psychology: Fostering Creativity in Children through Augmented Reality Learning Tools": 1 +"Software Engineering: Advanced 3D Modelling - Utilizing Blender and Unity for Game Development": 1 +"Deep Learning in Python: Using TensorFlow and Keras for Predictive Analytics in Finance": 1 +"Advanced Physics: Harnessing Quantum Mechanics through the Lens of Schrödinger's Wave Equation": 1 +"Molecular Biology: Exploring Gene Transcription and Translation with CRISPR-Cas9 Technology": 1 +"Geometric Art: Exploring Patterns and Symmetry through Origami and Paper Folding Techniques": 1 +"Human Physiology: Applying Fitbit and Apple Watch in Tracking Sleep Patterns and Heart Rate Variability": 1 +"Advanced Mathematics: Applying Laplace Transformations in Solving Differential Equations": 1 +"Computer Science: Exploring Cybersecurity through Encryption Algorithms and Quantum Computing": 1 +"The Evolution of Civil Engineering: Incorporating BIM and AutoCAD in Sustainable Infrastructure Design": 1 +"Nutrition Science: Integrating MyPlate App in Dietary Analysis and Meal Planning": 1 +"Mastering Character Development: Intermediate English Introduction to Narrative Writing": 1 +"Advanced Python: Machine Learning, Data Visualization, and the Application of PyTest Framework": 1 +"History: The Influence of the Harpsichord in Baroque Period on Culture ": 1 +"Literature: The Art of Poetry and Prose: The Influence of Artificial Intelligence in Gaming ": 1 +"Statistical Analysis: Conducting Predictive Modelling using Chi-Square Test in SPSS": 1 +"Botany: The Role of Spectrophotometer in Elucidating Photosynthesis and Genetic Variation": 1 +"Physics: Deciphering the Secrets of Quantum Computing with Quantum Bits": 1 +"Geometry: Harnessing GeoGebra to Establish Trigonometric Identities using the Law of Sines": 1 +"Secondary Education 410: Overview of Problem-Based Learning - Implementing Virtual Reality Tools": 1 +"Software Engineering: Basic Principles of Programming with Ruby and Linked Lists": 1 +"The Science of Flow: Enhancing Yoga Postures through Biomechanics using Fitbit Flex and Kinect Motion Capture": 1 +"Physics: Unveiling the Quantum Realm: An In-depth Study of Subatomic Particles": 1 +"Geography: The Role of Plate Tectonics in the Formation of Modern Landscapes": 1 +"Advanced Calculus: Applying Fourier Transforms in Signal Processing and Complex Variables": 1 +"Information Technology: Utilization of Python Programming in Machine Learning Algorithms": 1 +"Sociology: Unpacking the Impact of Virtual Reality on Interpersonal Relationships": 1 +"Analyzing the Effect of Solar Radiation on Weather Patterns for Improved Cricket Tactics: Understanding the Game under Different Climates": 1 +"Ethics: Exploring Virtue Ethics in Artificial Intelligence through Kantian Philosophy and Sentiment Analysis": 1 +"History of Science: The Microscope: Instrumental Breakthrough of the Biological Revolution": 1 +"Applying Autodesk Sketchbook in Analyzing the Impact of Color Theory on Digital Art Techniques: A Study on Textures and Patterns": 1 +"Investigating the Role of Influencer Marketing in the Evolution of Fashion Trends through Instagram": 1 +"Biophysics: Decoding Cellular Mechanisms Through Atomic Force Microscopy and Deep Learning Models ": 1 +"Health and Wellness: Wilderness First Aid and Environmental Stewardship through Solar Distillation Water Treatment Methods": 1 +"Biology: Microbial Biotechnology in Waste Management: The Magic of Anaerobic Digestion": 1 +"Philosophy 101: Implementing Syllogistic Logic to Understand Propositional Calculus": 1 +"Literature: Postcolonial Narratives and Global Warming - An Interpretive Journey through Ecofeminism and Renewable Energy Innovations": 1 +"Unraveling Mathematics: Prime Numbers, Paradoxes, and Rubik's Cube Puzzles using Graph Theory": 1 +"Sports Science: Harnessing Fitbit Sleep Trackers and Geolocation Tools for Performance Analysis with Runkeeper": 1 +"The Healing Power of Artbreeder AI Art Generation Software: A Twelve-Step Art Therapy Exploration": 1 +"Graphic Design Demystified: Leveraging Opacity for Texture-based Designs in Adobe Photoshop ": 1 +"Historical Studies: Deconstructing Cold War Era Speeches and Ballads of Resistance with Jungian Archetypal Criticism": 1 +"Chemistry: The Role of Spectroscopy in the Analysis of Organic Compounds": 1 +"Physical Education: Enhancing Strength Training with Fitbit and MyFitnessPal Analytics": 1 +"Astronomy: Stellar Spectroscopy and the Composition of Distant Stars": 1 +"Advanced Mathematics: Exploring Fractal Geometry through Computer Algorithms": 1 +"Psychology: The Impact of Social Media on Mental Health and Human Behavior": 1 +"Geography: Satellite Imagery and GIS in Environmental Conservation": 1 +"Basic Electricity: Understanding Circuits through Breadboard Experiments": 1 +"Introduction to Programming: Image Processing with Python and OpenCV": 1 +"Philosophical Thinkers: An Introduction to Critical Thinking using Syllogistic Logic": 1 +"Applying Google Sheets and Power BI in Business: A Detailed Study of Market Trends and Consumer Behavior.": 1 +"Chemistry: Unraveling Organic Compound Synthesis with Java and ChemDraw": 1 +"Aesthetic Appreciation of Modern Art: An In-depth Study of Picasso's Cubist Period": 1 +"Statistics: Predictive Analytics in Sports Using R, Probability and Neural Networks": 1 +"Sustainable Agriculture: Analyzing Soil Health with GIS and Remote Sensing": 1 +"Impacts of Social Media on Communication Studies: Understanding Semiotics and Discourse": 1 +"Biology: Decoding Human Genome with Next Generation Sequencing and Bioinformatics": 1 +"Astrophysics: Exploring Black Holes with Quantum Mechanics and General Relativity": 1 +"Advanced Web Development: Building Responsive Websites with Node.js and React": 1 +"Investigating Deep Learning Networks with TensorFlow: A Comprehensive Data Science Course with Seaborn Visualization": 1 +"Mastering R Programming and Docker Essentials: Shiny App Development, Data Manipulation with dplyr and Predictive Modelling with Caret": 1 +"Sociology 101: The Impact of Social Media on Modern Society": 1 +"Digital Art: Creating Immersive Environments with Unity, Unreal Engine, and Virtual Reality": 1 +"Utilizing Python and PyTorch in Spotify's Discover Weekly for Accurate Mood Determination": 1 +"Biology: The Science of Life - Understanding Genetic Coding through CRISPR-Cas9": 1 +"Finance: A Deep Dive into the Implications of Cryptocurrency in Global Economy via Data Analysis": 1 +"Anatomy Basics: Exploring the Human Body through MRI and 4D Ultrasound Imaging": 1 +"Unlocking the Power of Metaphors in Literature: A Study on Irony": 1 +"Sports Science: Evaluating the Role of Rhythm in Athlete's Performance using Fitbit Data": 1 +"Quantum Physics: String Theory and Multiverse - A Study on Quantum Entanglement": 1 +"Exploring Consciousness: An Advanced Course on Functional Magnetic Resonance Imaging (fMRI) and Transcranial Magnetic Stimulation Techniques": 1 +"Quantum Computing: Understanding Qubits through IBM Quantum Experience": 1 +"Exploring the Scenic Art: An In-depth Review of Watercolor Techniques in Landscape Painting": 1 +"Unraveling the Mysteries of Space-Time: An Intensive Study on Black Holes and Gravitational Waves": 1 +"The Evolution of Digital Marketing: The Influences and Impact of Social Media Algorithms": 1 +"The Art of Persuasion: Rhetorical Devices and Techniques in Speech Writing": 1 +"Advanced Biological Systems: Understanding Genetics through CRISPR-Cas9 and Genome Sequencing": 1 +"The Power of Data: Insights into Big Data Analysis using Hadoop and Apache Spark": 1 +"The Renaissance Era: Examining Artistic Techniques and Social Influence through the Lens of Da Vinci's Masterpieces": 1 +"Mastering Python: An In-depth Study on Data Structures and Algorithms for Machine Learning": 1 +"The World of Microbes: Investigating Bacterial Resistance through Antibiotic Susceptibility Testing": 1 +"Meteorology: Understanding Weather Patterns through Doppler Radar Technology": 1 +"Physics: Investigating the Effects of Magnetism on the Speed of Light": 1 +"The Role of Analytics in Sports: Evaluating Player Performance using Data Science": 1 +"Geology: Deciphering Earth's History through Stratigraphic Analysis": 1 +"Culinary Science: The Role of Enzymes in Food Fermentation and Preservation": 1 +"The Application of Machine Learning in Oncology: Unveiling Neural Networks in Tumor Detection": 1 +"Epistemology 101: Unraveling the Nature of Knowledge through Plato's Allegory of the Cave and Descartes' Skepticism": 1 +"Mastering 3D Modeling in Blender: An In-depth Computer Science and Digital Art Exploration": 1 +"Exploring Quantum Mechanics through Schrödinger's Cat and the Superposition Principle": 1 +"Innovative Platforms in Education: Engaging Students with Virtual Reality in the Classroom": 1 +"Chemistry: Understanding the Role of Organic Compounds in the Creation of Novel Pharmaceuticals": 1 +"Psychology: Decoding Human Behavior through the Lens of Social and Cognitive Processes": 1 +"History of Physics: Exploring the Impact of Quantum Mechanics on Modern Electronics": 1 +"Mathematics: The Beauty of Chaos Theory and Its Application in Weather Forecasting Models": 1 +"The Role of the Suffragette Movement in Shaping Modern Feminist Literature: A Deep Dive into Gender Politics on Radio Broadcasting": 1 +"Environmental Science: The Impact of Urbanization on Bird Song: Utilizing Sonogram Software in Vocalization Studies": 1 +"Philosophy: The Influence of Silence on Contemplation - The Evolution of Meditation Techniques in Modern Times.": 1 +"Mechanical Engineering: Exploring Energy Conversion through Thermodynamic Cycles, Heat Engines, and Carnot's Theorem": 1 +"Artificial Intelligence: Predicting Human Emotions using Deep Learning Models in MATLAB": 1 +"The Impact of Zeno's Paradoxes on Quantum Superposition in Schrödinger's Wave-Particle Duality Theory": 1 +"Advancements in Biotechnology: Genetic Engineering and CRISPR Applications in Modern Agriculture": 1 +"Sustainable Engineering: Harnessing Wind Energy for Zero-Emission Transportation in Maritime Industries": 1 +"Primary Physics: Understanding Gravity and Lunar Phases through Telescopic Observations": 1 +"The Art of Sound Design: Exploring Synthesizer Programming in Logic Pro X for Electronic Dance Music": 1 +"Cinematic Production Fundamentals: Mastering Cinematography and Film Editing with DaVinci Resolve": 1 +"Utilizing Python Programming in Assessing the Impact of Social Media Marketing on Restaurant Chains' Revenue: An Examination of 10 Cost Management Strategies": 1 +"Theoretical Psychology: Deciphering the Principles of Cognitive Behavioural Therapy in Contemporary Practitioners": 1 +"The Industrial Revolution: The Spinning Jenny, the Power Loom and their Impact on the Victorian Period": 1 +"Implementing the Concept of Biomechanics in Sports Science: Analyzing Basketball and Soccer Tactics through SportsCode Software": 1 +"Exploration in Data Science: Deciphering Machine Learning with Regression Algorithms": 1 +"Mathematics: Deep Dive into Set Theory: A Study in Combinatorial Logic": 1 +"Health Sciences: Examining the Effects of Yoga on Mental Health: A Quantitative Analysis": 1 +"Geography: The Role of Urban Parks in Local Climate Regulation: A GIS Analysis Using Satellite Imagery ": 1 +"Literature: Unfolding Societies through Fables and Folktales: A Linguistic Approach": 1 +"Anthropology: Decoding Civilizations through Pottery and Textiles: A Study in Archaeological Ethnography": 1 +"Physics: Exploring Quantum Mechanics: An Introduction to Wave-Particle Duality": 1 +"Inorganic Chemistry: Understanding Crystal Structures through X-Ray Diffraction and Spectroscopy": 1 +"Data Science 101: Harnessing the Power of R for Predictive Modelling": 1 +"Advanced Basketball Analytics with Power BI, Java, Oracle and MATLAB: A Comprehensive Guide to Player Evaluation": 1 +"Cultural Studies: Influence of Traditional Music on Social Dynamics: A Comparative Study using Ethnomusicology": 1 +"Physics: Using Quantum Mechanics to Understand the Properties of Nanomaterials": 1 +"Information Technology: Advanced Web Development using Django and React": 1 +"Critical Thinking: Deconstructing Propaganda with Cognitive Biases and Logical Fallacies": 1 +"Impact of the Telegraph on French Diplomacy in the Victorian Era: The Underwater Cable as an Information Superhighway": 1 +"Health Education: Yoga and Mindfulness: Examining Ashtanga Yoga through Biofeedback and Neural Imaging": 1 +"Biology 101: Genetic Engineering and its Societal Implications – Bioethics": 1 +"Machine Learning: Python’s Scikit-Learn for Predictive Modeling and Data Analysis": 1 +"Sociology: Transformation of Marriage Institutions and the Backlash against Singlehood in Modern Society": 1 +"Advanced Algebra: Venturing into Vector Spaces with Linear Transformations": 1 +"Scriptwriting: Utilizing Trello for Crafting Complex Plots with Symbolism, Metaphor and Flashbacks using Final Draft.": 1 +"Astronomy Basics: Interactive Study of the Solar System using Space Telescopes": 1 +"Engineering Fundamentals: Fluid Dynamics Explored through Water Bottle Rockets": 1 +"Anthropology 101: Influence of Social Media on Modern Linguistics: An In-depth Analysis of Emoji Language": 1 +"Genetics: Intro to Gene Editing - Understanding CRISPR-Cas9": 1 +"Intermediate Accounting: Financial Statements Analysis using QuickBooks": 1 +"Exploring Geology: Uncovering Earth's Layers with Virtual Reality for Teens": 1 +"Anatomy 101: Exploring the Human Body - A Deep Dive with 3D Imaging": 1 +"Nutrition 150: The Science of Vegan Diets: Proteins and Essential Nutrients": 1 +"Classical Mechanics: Study of Projectile Motion using Catapult Experiments": 1 +"Advanced Mathematics: Understanding Complex Numbers using Scientific Calculators": 1 +"Physics: Advanced Quantum Mechanics using MATLAB and Feynman Diagrams": 1 +"Geography: The Impact of Satellite Imagery in Climate Change Studies and its Application in Sustainable Agriculture": 1 +"Advanced Study in Genetics: Gel Electrophoresis and DNA Sequencing with Bioinformatics Applications": 1 +"Calculus: Exploring Derivatives and Their Financial Implications through Exponential Functions": 1 +"Mastering the Cello: Advanced Acoustic Modelling Techniques in Ableton Live Using FL Studio's Waveform Visualization and Pro Tools": 1 +"The Secret Language of Shapes: Exploring Geometric Concepts through the Lens of Topology": 1 +"Art History: A Deep Dive into Van Gogh's Portraits and the Role of Impressionism in Cultural Context": 1 +"Elementary Science: Interactive Solar System Exploration in 3D using Augmented Reality Technology": 1 +"Music: The Harmony of the Universe - The Role of Digital Audio Workstations": 1 +"Critical Thinking with Minecraft: Building Spatial Reasoning Skills for Young Minds": 1 +"Literature Analysis: Tracing Environmental Ethics in Postmodern Poetry": 1 +"Geology: Decoding Planetary Surface Features using Synthetic Aperture Radar Imaging": 1 +"Acoustic Phenomena in Quantum Mechanics: Resonance and Superposition Investigations": 1 +"Python Programming in Data Science: Predictive Modelling in Sports Injuries Prevention": 1 +"The Sociopolitical Consequences of Quantum Computing on Cybersecurity and International Relations": 1 +"The Influence of Emission Trading System in Reducing the Adverse Effects of Climate Change: A Sustainable Development Perspective": 1 +"Unraveling Genetics: Advanced Approaches in Gene Editing and RNA Interference Using CRISPR and RNAi": 1 +"Advanced Calculus: The Role of Mathematica in Solving Differential Equations": 1 +"A Comprehensive Study: Impact of E-commerce on Sustainable Aquaponic Agriculture and the Application of Machine Learning Algorithms": 1 +"Utilization of Machine Learning Techniques in Comprehending Brain Plasticity and Cognitive Processes": 1 +"Chemistry: Exploring Water Purification through the Lens of Ionic Compounds and Covalent Bonds": 1 +"Gourmet Explorations: Unraveling the Secrets of Sous Vide Cooking and its Impact on Flavor Profiles": 1 +"Neurobiology 101: The Influence of Classical Music on Cognitive Functions: An Analysis through EEG and PET Scans": 1 +"Anthropology: The Progression of Animal Domestication: Investigating the Impact of Veterinary Medicine": 1 +"Philosophy: The Influence of Ink Painting on Zen Meditation and Eastern Philosophical Thought": 1 +"Industrial History 102: The Spinning Jenny and the Effect of the Steam Engine on Textile Manufacturing during the Victorian Era": 1 +"Art History: The Progression of Ceramic Techniques: The Impact of the Potter's Wheel on Ancient Civilizations": 1 +"Critical Thinking and Predicate Logic: Enhancing Analytical Skills": 1 +"Art Appreciation: The Renaissance Era: Exploring the Use of Perspective and Shadow": 1 +"Physiology: The Cardiovascular System, Athletic Performance, and the Role of Wearable Fitness Trackers: HRM and the Application of Biomechanical Analysis": 1 +"Imaginative Storytelling: Sculpting Narratives with Spanish Idioms through Character Development": 1 +"Light and Color: Exploring Optics with Spectrometers": 1 +"Economic Theory: Decoding the Language of Financial Economics with Time Series Analysis in R using Generalized Method of Moments": 1 +"Innovative Robotic Programming: An Introduction to Tech Automation using Python": 1 +"Anthropology: The Development of Currency over Centuries: An In-depth Exploration": 1 +"Game Design & AR: Utilizing Oculus Rift in Assessing Strategic Movements in Basketball": 1 +"Demystifying the Secrets of Electromagnetic Wave Transmission: A Study in Radio Frequency with Spectrum Analyzers and MATLAB for Digital Communication": 1 +"Podcasting for Artists: Social Media Promotion on Audio Platforms": 1 +"Biology: The Science of Brewing: The Role of Yeast in Fermentation": 1 +"Political Science: The Technique of Political Dialogue: Interpreting Public Policy through Regression Analysis in SPSS using Confidence Intervals and Large Scale Data Processing": 1 +"Exploring Quantum Mechanics: The Application of Scanning Tunneling Microscopy in Nanotechnology": 1 +"Advanced Graphic Design: Mastering Animation Techniques in Adobe After Effects": 1 +"Marine Biology: Investigating Ocean Life through Genetic Barcoding Techniques": 1 +"Cognitive Science: A Comprehensive Study of Human Behavior and Decision Making using Artificial Intelligence": 1 +"Cybersecurity Fundamentals: Intrusion Detection through Wireshark and Network Analysis": 1 +"Geology in Focus: Understanding Plate Boundaries and Seismic Activities using Google Earth Engine": 1 +"Health and Wellness: The Role of Biometric Devices in Personal Fitness Tracking": 1 +"Integrated Marketing Strategies: Utilizing Instagram Influencer Marketing for Fashion Brands": 1 +"Advances in Crop Production: The Use of Drone Technology for Precision Agriculture ": 1 +"Financial Modeling for Investment Analysis: A Comprehensive Guide on Using Python in Algorithmic Trading.": 1 +"Physics: The Role of Quantum Mechanics in Lighting Technologies: A Detailed Study of LED and OLED": 1 +"Environmental Science: Evaluating the Influence of Soil Composition on Plant Biodiversity Using GIS: Implications for Agricultural Practices": 1 +"Graphic Design: The Art of Digital Illustration: An In-depth Approach to Vector Graphics Using Adobe Illustrator": 1 +"Advanced Astrophysics: Galaxies and Their Interactions: Investigating Dark Matter with Gravitational Lensing": 1 +"Acrylic Painting Techniques: Mastering Texture and Light: A Study on Palette Knife and Glazing Techniques": 1 +"Genomics and Molecular Biology: Sequencing and Bioinformatics: Unraveling the Human Genome with Next-Generation Sequencing Techniques": 1 +"Educational Technology: Interactive Learning with Virtual Reality: A New Approach to Teaching History": 1 +"Data Science with R: Unveiling Hidden Patterns with Decision Trees and Random Forests: A Deep Dive into Ensemble Learning": 1 +"Software Engineering Basics: Introduction to Blockchain Technology and Cryptography with Python": 1 +"Cultural Anthropology: Exploring Racial and Ethnic Identity through Social Media Platforms: A Case Study using Instagram and TikTok.": 1 +"Digital Media: Storytelling Through Animation using Adobe Animate": 1 +"Elementary: Tracing Evolutionary Biology through Paleontological Studies using Fossil Analysis and Python Programming for Genetic Data Interpretation": 1 +"Health & Wellness: Tracking Wellness Goals with the Headspace App for Mindful Meditation": 1 +"Artistic Expression: Minimalism in Modern Architecture": 1 +"The Significance of Symbolism in Historical Fiction: A Humanities Course": 1 +"Art: Decoding Surrealism in Contemporary Art through Dream Analysis": 1 +"Geography: Exploring Volcanic Activity with Infrared Satellite Data": 1 +"Elementary: Discovering the Universe through Astronomy using Stellarium Software and Interactive Star Maps": 1 +"Biochemistry: Exploring the Role of Enzyme Kinetics in Metabolic Biochemistry for Understanding Disease Pathways": 1 +"Art: The Influence of Fractal Geometry in Islamic Artwork": 1 +"Astrophysics: Unveiling the Secrets of Black Holes - A Deep Dive into Space-Time Distortion": 1 +"Biology: Decoding the Human Genome - Exploring Genetic Variations Using Bioinformatics Tools": 1 +"Elementary Astrophysics: The Wonders of the Cosmos - Understanding Stars, Galaxies, and Planets": 1 +"Advanced Machine Learning: Using TensorFlow and Keras for Deep Learning in Predictive Analytics": 1 +"Environmental Science: The Impact of Plastic Pollution on Marine Ecosystems - A Statistical Analysis": 1 +"Language Arts: Enhancing Creative Writing Skills - Mastering Metaphors in Modern Literature": 1 +"Computer Science: Advanced Algorithm Analysis - Optimizing Search Algorithms in Python": 1 +"Chemistry: The Art and Science of Making Perfume - An Introduction to Aromatic Compounds and Essential Oils": 1 +"Economics: Mastering Personal Finance - Building Wealth with Investment Strategies and Portfolio Management": 1 +"War Literature: Analyzing Patriotism and Propaganda - Using Text Mining Techniques for Comparative Analysis.": 1 +"The Renaissance Era: The Introduction of the Printing Press and its Impact on Literature": 1 +"Advanced Calculus: The Influence of Calculus on Statistical Models and the Application of Python": 1 +"Instructional Strategies 301: Boosting Student Participation with Google Classroom and Virtual Reality Tools": 1 +"Art History: The Role of the Lithography Press in Shaping Artistic Styles Across Centuries": 1 +"The Effects of Meditation Apps on Mental Health: A Comprehensive Review in Psychology with Multiple Approaches": 1 +"Ethics 102: Decoding Morality through Platonic Dialogues, Logical Reasoning, and Mill's Utilitarianism": 1 +"Advanced Statistics: Decoding Regression Models Using R and Hypothesis Testing": 1 +"Creative Writing: Narrative Crafting using Adobe Spark as a Digital Storytelling Platform": 1 +"The Importance of Data Structures in Software Engineering: An Examination of Queues and Stacks": 1 +"High-Intensity Interval Training and Fitness Trackers: An In-depth Study in Improving Running Performance": 1 +"Astrophysics: Applying Newton's Laws and Kepler's Laws in Space Exploration - Understanding Orbits and Trajectories": 1 +"The Science of Gastronomy: Bridging Chemistry and Culinary Arts through Molecular Gastronomy Techniques": 1 +"Mathematics: Exploring Fractal Geometry through Mandelbrot and Julia Sets in MATLAB": 1 +"Environmental Science: Implementing GIS and Remote Sensing in Climate Change Tracking": 1 +"Biomedical Engineering: Exploring Biomechanics of Human Movement using Arduino and Raspberry Pi": 1 +"History: Leveraging Virtual Reality in the Study of Ancient Civilizations - The Oculus Rift Experience": 1 +"Introduction to Web Development: Using HTML, CSS, and JavaScript to Create Responsive Websites": 1 +"Philosophy and Critical Thinking: Deconstructing Arguments with the Application of Formal Logic and Fallacies": 1 +"Film Studies: The Role of Adobe Premiere Pro in Cinematography and Film Editing - A Comprehensive Guide": 1 +"Language Studies: Using Duolingo to Master Foreign Languages for Global Communication.": 1 +"Mathematics: The Role of Fibonacci Sequences in Modern Cryptography Systems": 1 +"Music Theory: Understanding the Influence of Jazz Improvisation on Modern Pop Composition": 1 +"Biology: Exploring the Genetic Implications of CRISPR-Cas9 in Human Evolution": 1 +"Chemistry: The Impact of Green Chemistry Principles on Sustainable Industrial Practices": 1 +"Secondary Education: Utilizing Virtual Reality to Enhance Learning in STEM Subjects": 1 +"Unveiling the Secrets of Watercolor: An In-depth Exploration of Wet-on-Wet Techniques": 1 +"Deciphering Climate Clues: Ice Core Sampling and Paleoclimatology in Environmental Science": 1 +"Economics: The Role of Cryptocurrencies in Shaping the Future of Global Trade - A Focus on Bitcoin": 1 +"Art: Creating Dynamic Landscapes with Charcoal and Graphite": 1 +"Exploring the Stars: The Use of Kepler Space Telescope in Identifying Exoplanets": 1 +"Astrophysics: Utilizing Computational Simulations to Understand Black Holes and Stellar Evolution": 1 +"Nuclear Chemistry: Analyzing Radioactive Decay and Nuclear Fission using Spectrometry": 1 +"Environmental Science: Exploring the Impact of Microplastics on Marine Life Using GIS and Remote Sensing": 1 +"The Intersection of Architecture and Climate Change: Sustainable Designs and Materials in Green Building": 1 +"Biology: Investigating Genetic Mutations Through CRISPR and Whole Genome Sequencing": 1 +"Innovations in Mathematics: Understanding Cryptography through Prime Numbers and Python Programming": 1 +"Physics: The Science of Sound: An Acoustic Study of Music and Resonance": 1 +"Geology: Decoding Earth's History through Plate Tectonics and Fossil Records": 1 +"The Impact of Social Media on Modern Politics: An Analytical Approach Using Big Data": 1 +"Artificial Intelligence: Exploring Machine Learning Through Neural Networks and Python": 1 +"Physics of Art: Analyzing the Use of Kinetic Sculptures through MATLAB": 1 +"Biology 101: Understanding the Role of Microbiomes in Interior Design: A Focus on Biophilic Architecture": 1 +"Computer Science: Maximizing Python's Data Structures and Algorithms for Efficient Coding": 1 +"Qualitative Analysis: Deploying Thematic Analysis using Nvivo in Sociological Research": 1 +"American History: An Insight into Civil War Era through GIS Mapping Tools": 1 +"Spoken Traditions: The Influence of Globalization on Indigenous Languages": 1 +"Discrete Mathematics: Utilizing Number Theory in Secure Communication Systems": 1 +"Physics for Teens: Demystifying Quantum Mechanics with Schrödinger's Cat Thought Experiment": 1 +"Ventures into Artificial Intelligence: Decoding Neural Networks with Convolutional Models": 1 +"Beat and Rhythm: The Role of Digital Synths in the Evolution of Electronic Dance Music in the 21st Century.": 1 +"Physics of Space Travel: Quantum Fields and the Role of Dark Matter in Interstellar Expeditions": 1 +"Biotechnology Advancements: Gene Editing, CRISPR-Cas9, and The Future of Personalized Medicine": 1 +"Sociology: Social Media Networks and Their Effect on Modern Day Interpersonal Relationships": 1 +"Cognitive Psychology: Understanding Consciousness through Functional Magnetic Resonance Imaging": 1 +"Music Theory: The Influence of Digital Audio Workstations on Modern Composition Techniques": 1 +"Advanced Geometry: The Mathematics of Sound Waves in Acoustic Design": 1 +"Environmental Science: Climate Analysis Using Doppler Radar and Weather Balloons": 1 +"Computer Engineering: C++ Language and Introduction to Artificial Intelligence": 1 +"Advanced Ethics: An Exploration of Morality in the Context of Utilitarianism": 1 +"Analytical Philosophy: Deciphering Cognitive Biases Using Truth Tables and Predicate Logic": 1 +"Chemistry Essentials: Probing the Mysteries of Organic Compounds through Spectroscopic Techniques": 1 +"Advanced Java Programming & Distributed Systems: Employing Spring Boot in Big Data Processing": 1 +"Exploring Harmony and Composition with Logic Pro X and EastWest Hollywood Choirs: An Insight into Songwriting for Film Scoring": 1 +"Mathematics: The Intricacies of Calculus in Machine Learning Algorithms": 1 +"Visual Arts: The Fusion of Geometry in Architectural Design": 1 +"Language Studies: Deciphering the Syntax of Computational Linguistics through Natural Language Processing in Python": 1 +"Insights into Human Psychology: The Nuances of Emotional Intelligence Through Behavioral Analysis": 1 +"Sociology: The Intricacies of Social Structures and Power Dynamics - A Case Study Approach": 1 +"Graphic Design: Visual Storytelling and Branding - Mastering Layouts with InDesign": 1 +"Physics: Quantum Mechanics and Its Application in Nanotechnology - A Computational Approach.": 1 +"Physics: Exploring Quantum Mechanics - A Deep Dive into Wave-Particle Duality with Double-slit Experiment": 1 +"Literature: Crafting Prose - The Art of Metaphor and Simile in Short Story Writing": 1 +"Exploring the Influence of Pro Tools' MIDI Sequencer in Contemporary Sound Design": 1 +"Geography: Understanding Our Planet - Comprehending Climate Patterns through Satellite Imagery ": 1 +"Health Education: Wilderness First Aid and Plant Identification for Natural Medicine": 1 +"Biochemistry: The Mystery of DNA - The Role of Crispr-Cas9 in Gene Editing": 1 +"Sculpture: Mastering Wood Whittling Techniques with Chisel and Mallet": 1 +"Critical Thinking: Utilizing Boolean Algebra in Evaluating and Constructing Logical Arguments": 1 +"Microbiology: The World of Bacteria - An In-depth Analysis of Gram Staining with Phase-Contrast Microscopy": 1 +"Sustainable Design: The Impact of Passive Solar Techniques in Minimizing Energy Consumption in Residential Architecture": 1 +"Unlocking the Aesthetics of Pastel: Mastering Forms and Textures with Light Boxes": 1 +"World Literature: Examining the Role of the Akai MPC in African Tribal Music": 1 +"Cyber Defense Fundamentals: Preventing Phishing Attacks with Kali Linux in Virtual Warriors": 1 +"An Overview of Digital Education Platforms: The Role of AI in Modern Learning": 1 +"Computer Science for Beginners: Understanding Data Visualization Using Tableau": 1 +"History: The Industrial Revolution and the Emergence of Steam Power in the Victorian Era": 1 +"Intro to Film Production: An In-Depth Look at Cinematography and Film Editing using Adobe Premiere Pro": 1 +"Literature Studies: Deciphering Tragedy in Classic Playwrights Through Freudian Interpretation: A Data-Driven Literary Analysis": 1 +"Health and Fitness 101: Exploring the Impact of Yoga on Mental Health Across Different Societies": 1 +"Essential Audio Engineering: Basics of Sound Synthesis using VST Plugins and Logic Pro": 1 +"AI in Healthcare: Leveraging Machine Learning in Disease Diagnosis and Treatment": 1 +"Sociology: The Impact of Social Media on Interpersonal Relationships in Modern Society": 1 +"Cybersecurity: Decoding Malware with Reverse Engineering Tools - OllyDbg": 1 +"Biotechnology: Exploring Gene Editing through CRISPR-Cas9": 1 +"Transportation Evolution: The Steam Engine, the Automobile, and the Rise of Modern Infrastructure": 1 +"Chemistry: An Overview of Chemical Reactions and the Use of Spectrophotometers": 1 +"Psychology: The Role of Color Psychology in Advertising and Branding": 1 +"Inspiring Future Engineers: Problem Solving with Minecraft and Lego Technic": 1 +"Music Theory: Understanding Time Signatures and their Application in Jazz Music": 1 +"Graphic Design: Unfolding the Golden Ratio Concept in Modern Architecture Design": 1 +"Biology: The Art of Dissection - Exploring Anatomy through Hands-On Lab Work": 1 +"Middle Eastern History: The Intricate Mosaic of Cultural and Religious Interactions with Focus on Islamic Art": 1 +"Physics: Exploring the Universe - Astronomy with Telescope and Stellarium": 1 +"Digital Design: Building Websites from Scratch with HTML and CSS": 1 +"Culinary Arts: A Journey through French Cuisine - Techniques and Recipes": 1 +"Computer Science: Python Programming for Data Science and Machine Learning": 1 +"Chemistry: Experimenting with Organic Compounds - A Practical Approach with Lab Training": 1 +"Sociology: Unmasking Society - A Study of Social Behaviors and Structures through Film Analysis": 1 +"Environmental Science: Exploring Biodiversity and Conservation with Geographic Information Systems": 1 +"Literature: Magical Realism in Latin American Literature - An Analysis with Gabriel García Márquez's Works": 1 +"Chemistry: The Potential of Nanotechnology in the Field of Medicine and its Ethical Implications": 1 +"Music: The Role of AI in Composing Symphonies - A Study on Algorithmic Creativity": 1 +"Astronomy: Investigating Dark Matter through Advanced Telescope Technology and Cosmic Microwave Background": 1 +"The Power of Graph Theory: Unveiling the Complexity of Social Networks and Their Impact on Modern Marketing": 1 +"Sociology: The Impact of Digital Media on Societal Norms and Culture: A Cross-Cultural Analysis": 1 +"Advanced Mathematics: Exploring Fractal Geometry and its Applications in Computer Graphics": 1 +"Psychology: The Influence of Virtual Reality on Human Perception and Behavior: A Neuroscientific Approach": 1 +"The Role of Blockchain Technology in Transforming Financial Systems: An Insight into Cryptocurrency and Decentralization": 1 +"Environmental Science: The Effect of Climate Change on Biodiversity: Case Studies from Rainforests": 1 +"Programming Pioneers: Machine Learning and Artificial Intelligence in Predictive Analytics": 1 +"Chemistry in Cuisine: Understanding Molecular Gastronomy with Interactive Experiments": 1 +"Mathematics: Maximizing Business Profits Using Game Theory and Optimization Techniques": 1 +"Astronomy Adventures: Tracing Cosmic Evolution with the Hubble's Law and Doppler Effect": 1 +"Psychology: Cognitive Biases and Heuristics Unveiled with Experimental Techniques and Statistical Analysis": 1 +"Geography: Analyzing Climate Change Impacts on Global Food Security: A GIS Approach": 1 +"Biotechnology: The Role of Monoclonal Antibodies in Cancer Immunotherapy: A Comprehensive Overview of Hybridoma Technology and Flow Cytometry": 1 +"Digital Theatre: Exploring Sound Design Techniques in Stage Performances and Their Influence on Audience Engagement": 1 +"Art History: Interpreting Surrealism in 20th Century Artworks": 1 +"Chemistry: Harnessing Solar Power - An In-depth Study of Photovoltaic Cells from a Quantum Perspective": 1 +"Anthropology: Decoding Economic Systems in Ancient Civilizations through Archaeological Evidence and Machine Learning Analysis": 1 +"Biology: Decoding Genetic Information - A Deeper Look into DNA Replication and Transcription": 1 +"Astronomy: Interpreting Stellar Evolution through the Hertzsprung-Russell Diagram": 1 +"The Impact of Blockchain Technology on Financial Markets and its Effect on Global Economy": 1 +"Psychology: Understanding Human Behavior through fMRI Brain Imaging": 1 +"Data Science: Predictive Modeling Techniques with Python and NoSQL Databases": 1 +"Geography: Using Geospatial Analysis in Evaluating Climate Change Effects": 1 +"Early Childhood Development 401: Incorporating Virtual Reality in Sensory Learning": 1 +"Application of Fourier Series in Solving Complex Mechanical Vibration Problems": 1 +"Music Theory: The Application of Sound Synthesis in Electronic Dance Music": 1 +"Business Communication: Interpreting Stock Market Trends with Power BI and the VLOOKUP Function": 1 +"Physics: The Quantum Mechanics of Particle Entanglement: A Study of Einstein's Spooky Action at a Distance": 1 +"Virology: Understanding Pathogen Evolution through Genomic Sequencing Technology": 1 +"The Intersection of Art and Mathematics: The Golden Ratio in Modern Architecture": 1 +"Chemistry: The Intricacies of Nuclear Chemistry and its Role in Renewable Energy": 1 +"Behavioral Economics: The Psychological Impact of Market Trends and Consumer Behavior": 1 +"The Science of Sound: Acoustics and Resonance in Classical Music Composition": 1 +"Literature: Decoding Metaphorical Language in Modernist Novels": 1 +"The Influence of Byzantine Architecture on Modern Urban Planning: An Analysis of Space and Form": 1 +"Advanced Agriculture: The Implications of Vertical Farming for Sustainable Food Production": 1 +"Philosophy and the Arts: The Aesthetic Theory in Postmodern Cinema": 1 +"Quantum Computing: Harnessing Machine Learning for Cryptography Using Python, Tensorflow, and Data Structures": 1 +"Bioengineering: Exploring Cellular Mechanisms through Microscopic Imaging and Nanotechnology": 1 +"Digital Artistry: Embracing Adobe Creative Suite for an Introductory Course in Graphic Design and Visual Communication": 1 +"Culinary Arts: Exploring Baking Techniques Through the Chemistry of Fermentation": 1 +"Advanced Mathematics: Understanding Fractal Geometry through Computer Simulations": 1 +"Psychology: The Impact of Social Media on Adolescent Mental Health: A Comprehensive Study": 1 +"Spanish Literature: Exploring Social Issues through Magical Realism: A Focus on Gabriel Garcia Marquez": 1 +"Eco-Warriors: A Botanical Study of Plants in Environmental Conservation Using Genome Editing ": 1 +"Media Literacy: Analyzing Fake News and Propaganda through Snapchat, TikTok, and YouTube for Effective Media Consumption": 1 +"Philosophy 101: Applying Ontological Arguments in the Discourse of Existentialism": 1 +"Cosmic Discoveries: Tracing the Dark Matter with the Hubble Space Telescope": 1 +"Baseball Analytics: Unveiling Predictive Model Using R Programming and Power BI": 1 +"French: Semantic Analysis using Python's NLTK for Discourse Studies: A Dive into French Literature": 1 +"Performing Arts: Merging Dance and Poetry using Virtual Reality in Adobe After Effects for Choreography": 1 +"The Craft of Cinematic Magic: An In-depth Examination of Set Design Using AutoCAD and 3D Modeling": 1 +"Nanotechnology and the Splendor of Atomic Structures: An In-depth Study using Scanning Electron Microscopy": 1 +"High School World History: The Civilizations of Ancient Greece and the Use of Astrolabe": 1 +"Advanced Psychology: Understanding Cognitive Behavioral Therapy with Functional Near Infrared Spectroscopy": 1 +"Artistic Expression: Exploring Cubism with Oil Pastels using Layering Techniques": 1 +"Ethics 202: Deciphering Morality through Kant's Categorical Imperative and the Use of Deductive Reasoning": 1 +"Virtual Reality in Veterinary Medicine: Assessing Effectiveness of Oculus Quest and Haptic Feedback Devices": 1 +"Physics: Game Theory in Basketball: An Analysis using Python": 1 +"Deciphering Ancient Scripts: An Exploration of their Cultural Impact through Linguistic Anthropology": 1 +"Literature: Enhancing Narrative Structure using Interactive Footnotes in Adobe Acrobat's Linking Feature": 1 +"Technological Revolution in Fine Art: The Printing Press's Influence on Renaissance Paintings": 1 +"Machine Learning in Environmental Science: Climate Change Predictions using Neural Networks, Python, Predictive Modeling and Apache Spark": 1 +"Electrical Engineering: Designing Oscillator Circuits for Sound Wave Manipulation in Audio Devices using Logic Pro": 1 +"Statistics: An Exploration of Probability Theory: Insights into Bayesian Inference": 1 +"Archaeology: Unraveling History through Coins and Seals: An Investigation in Numismatic Archaeology": 1 +"Rhythmic Evolution: The Impact of Music Production Software on Jazz from Bebop to Fusion": 1 +"History of Jazz: The Impact of Improvisation and Bebop on Contemporary Music": 1 +"Computer Science: Data Interpretation through Machine Learning and R Programming": 1 +"Social Studies: The Influence of Post-War Propaganda in Shaping National Narratives - An Analysis through Media Studies": 1 +"Journalism: Harnessing the Power of Instagram for Fashion Reporting": 1 +"Fine Arts: Sculpting Techniques and Aesthetics: An Examination of Traditional Japanese Ikebana": 1 +"Music Production: Understanding Electronic Dance Music (EDM) through Ableton Live and FL Studio": 1 +"Harnessing Virtual Reality for Immersive Storytelling in Digital Journalism": 1 +"Fine Arts: The Art and Science of Watercolor: Techniques and History Explored": 1 +"Data Science: Utilizing Python for Sentiment Analysis in Social Media Texts: An Insight into Consumer Behavior": 1 +"Geography: Exploring South American Geology using Geographic Information Systems (GIS) and 3D Terrain Models.": 1 +"Physics: Understanding Quantum Mechanics with Particle Accelerators and Feynman Diagrams": 1 +"Exploring Web Design: Mastering User Interface and User Experience with Prototyping Tools": 1 +"Art: Unleashing Creativity through the Study of Renaissance Sculptures and Oil Painting Techniques": 1 +"History: A Deep Dive into the Ottoman Empire through Manuscript Analysis and Archaeological Discoveries": 1 +"Advanced Anatomy: Dissecting the Human Body with Virtual Reality and 3D Printing": 1 +"Digital Publishing: Leveraging Augmented Reality to Enhance Storytelling in E-books": 1 +"Dietetics 101: The Biochemistry of Ketogenic Diets: Fats and Metabolic Pathways": 1 +"Mastering Ruby: Advanced Programming Concepts and Algorithms": 1 +"Neurolinguistics: Decoding Language Processing in the Brain using fMRI and Electroencephalography": 1 +"Contemporary Drama: Deconstructing the Narrative Techniques in Postmodern Plays using Reader-Response Theory.": 1 +"Quantum Mechanics in Cryptography: An Intensive Analysis of Quantum Key Distribution Algorithms": 1 +"Mastering French Linguistics: A Comprehensive Approach to Understanding Verb Conjugation Using Language Learning Apps": 1 +"Chemistry: The Intricacies of Fluorescence in Light Reflecting Minerals": 1 +"Conceptual Mathematics: Exploring Set Theory and Paradoxes through Puzzles and Abstract Algebra": 1 +"Ableton Live and Interactive Art: An In-Depth Study of Interactive Installation Design": 1 +"Behavioral Science in Marketing: Predictive Analysis of Consumer Behavior Using Machine Learning and Python": 1 +"Digital Animation and Gymnastics: A Study of Human Motion Capture": 1 +"Secondary Education: Exploring World History through Virtual Reality: Examining Major War Tactics and Digital Battlefield Simulations": 1 +"Secondary Biology: Investigating Marine Life using Underwater Drones": 1 +"An Applied Overview of Network Theory: Understanding Graphs and Trees using Python in PyCharm IDE": 1 +"Visual Arts: Exploring Modernism through the Lens of Bauhaus Design Principles": 1 +"Advanced Biology: The Role of Epigenetics in Evolution and Adaptation": 1 +"Chemistry: The Fundamental Processes of Carbon Dating and Isotope Analysis": 1 +"Calculus: Unraveling the Mysteries of Infinite Series and Complex Number Systems": 1 +"World Literature: The Influence of Magical Realism in Latin American Novels": 1 +"Political Science: The Impact of Social Media in Modern Election Campaigns": 1 +"Health and Fitness: Maximizing Athletic Performance using Biofeedback and Wearable Technology": 1 +"Psychology: Understanding Human Behavior through the Study of Cognitive Biases": 1 +"Digital Design: Mastering UI/UX Design through Adobe XD": 1 +"History: The Role of Industrialization in Shaping Modern Economic Systems": 1 +"Advanced Chemistry: Exploring Organic Compounds with NMR Spectroscopy and Stereochemistry": 1 +"Java and Ableton Live: An In-depth Introduction to Sound Design in Music Production with Time Warping Techniques": 1 +"Senior Psychology: Unveiling the Mysteries of Human Behavior through Functional Magnetic Resonance Imaging (fMRI) and Positron Emission Tomography (PET)": 1 +"Secondary Education 410: Integrating PlayStation VR in Interactive Learning Scenarios": 1 +"High School Astronomy: Unraveling the Universe through Astrophysics and Spectroscopy": 1 +"The French Revolution and the Rise of Romanticism: An Artistic Exploration": 1 +"Biology: Understanding Cellular Processes through Fluorescence Microscopy and Confocal Imaging in Cell Mapping Techniques": 1 +"Essentials of Engineering: Building Automated Systems with Blockly, Micro:bit, CNC Machining, and BeagleBone Black": 1 +"Art History: The Transformation of Styles - A Focus on Digital Art": 1 +"Data Privacy Issues: The Impact of Quantum Cryptography and Societal Views": 1 +"Advanced Ethnography: Understanding Cultural Diversity through the Lens of Art and Anthropology": 1 +"Nanotechnology, Quantum Computing and the Future of Finance: A Deep Dive into Algorithmic Trading": 1 +"Chemistry: An In-depth Look at Organic Chemistry: The Role of Enzymes in the Human Body": 1 +"Psychology: The Intersection of Behavioral Psychology and Social Media: An Insight into Digital Addiction": 1 +"Decoding the Human Genome: A Comprehensive Study of Genetic Disorders through Bioinformatics": 1 +"Information Technology: Introduction to Cybersecurity - Encryption Algorithms and Java Scripting": 1 +"The Impact of Climate Change on Oceanic Ecosystems: A Comprehensive Study on Coral Reefs and Marine Biodiversity": 1 +"Implementing TensorFlow in Predictive Modelling for Better Understanding of Artificial Intelligence": 1 +"Engineering: The Role of Quantum Mechanics and SolidWorks in the Innovation of Nanostructured Materials": 1 +"R Programming for Data Science: Exploring Decision Trees and Random Forests in Predictive Analytics": 1 +"Astrophysics Unearthed: The Impact of Gravitational Waves on Urban Planning": 1 +"Trigonometry in Action: Analyzing Roller Coaster Designs using Sinusoidal Functions": 1 +"Young Biologists: Discovering Ecosystems with Aquaponics and Hydroponics": 1 +"Global Politics: The Influence of Cryptocurrency and Augmented Reality on International Relations": 1 +"Critical Thinking 102: Mastering Decision Making with Informal Fallacies": 1 +"Web Development: Unraveling the Intricacies of CSS and JavaScript behind VPNs": 1 +"Language Arts: Interpreting Poetry through Podcasts, Prezi, and Microsoft Word for Auditory Narration": 1 +"Health and Fitness: Soccer Training: Boosting Dribbling Skills with Adidas Tango Rosario": 1 +"Calculus Uncovered: Economic Forecasts through Differential Equations and Mathematica": 1 +"Fine Arts: The Significance of Color Theory in Crafting Mountain Landscapes": 1 +"Physics: Exploring Quantum Mechanics with Schrödinger's Equation using HP Prime Graphing Calculators": 1 +"Computer Engineering: Programming Microcontrollers using Python for Smart Home Systems": 1 +"Anthropology: The Role of Language in Cultural Identity and Social Evolution: A Comparative Ethnographic Study ": 1 +"Climate Science: Investigating the Impact of Global Warming on Polar Ice Caps": 1 +"Mastering UX/UI Design: Creating Intuitive Interfaces with HTML and CSS": 1 +"Marine Biology: Assessing the Influence of Artificial Reefs on Biodiversity using Underwater ROVs ": 1 +"Electrical Engineering: Understanding Power Systems through Transformer Principles and Circuit Analysis ": 1 +"Physiology: Cardiovascular Health and Exercise: The Role of VO2 Max in Endurance Training ": 1 +"Inorganic Chemistry: Exploring Crystal Structures with X-ray Diffraction and Nuclear Magnetic Resonance": 1 +"Statistics: Mastering Regression Analysis and Probability Distributions using R and Python": 1 +"Physics: The Quantum Computing Revolution: Application of Qubits and Quantum Gates": 1 +"The Art of Persuasion: Utilizing Rhetoric and Ethos in Political Speech Analysis": 1 +"Biology: Unraveling the Secrets of Photosynthesis: The Role of Chloroplasts in Plant Ecosystems": 1 +"Computer Science: The Power of Python: Harnessing Machine Learning for Predictive Analysis": 1 +"Chemistry: The Wonders of Biochemistry: Understanding Enzyme Mechanisms in Cellular Metabolism": 1 +"Literature: The Magic of Metaphors: Exploring Symbolism Techniques in Modern Poetry ": 1 +"Mathematics: The Beauty of Chaos Theory: Exploring the Butterfly Effect through Lorenz Attractors": 1 +"History: The Wheel: Its Revolutionary Impact on Ancient Trade and Transportation": 1 +"Engineering: The Art of Acoustics: The Science Behind Soundproofing in Modern Architecture": 1 +"Geography: Utilizing Drone Technology in Geospatial Analysis for Urban Planning": 1 +"Chemistry: An Introduction to Organic Chemistry through the Study of Pharmaceuticals and Drug Design": 1 +"Art: Exploring the Influence of Renaissance Architecture on Modern Design Principles": 1 +"Statistics 200: Advanced Analysis of Data Sets and Predictive Models using SPSS": 1 +"Environmental Science: The Impact of Climate Change on Biodiversity: A GIS Approach": 1 +"Complex Human Anatomy: Exploring the Nervous System through Neuroimaging and Electrophysiology": 1 +"Engineering: The Principles of Hydroelectric Power - Understanding Turbines and Hydropower Systems": 1 +"Creative Writing 101: Mastering Metaphors and Symbolism in Poetry and Prose": 1 +"Calculus in Action: Applying Mathematical Models to Predict Stock Market Trends using MATLAB": 1 +"Cultural History: The Evolution of Fashion and its Sociopolitical Implications in the 20th Century": 1 +"Maritime History: The Age of Imperialism, Sea Navigation, and the Innovation of the Steamship": 1 +"Exploring the Universe: Astrophysics and Black Hole Theories": 1 +"Sociology: Unraveling Social Structures through the Lens of Digital Media": 1 +"Computer Science: Using Deep Learning for Efficient Disease Diagnosis Systems": 1 +"Advanced Game Development: C++, Unity, JavaScript, Unreal Engine, and MySQL Database Management": 1 +"Health Sciences: The Impact of Nutrition on Athletic Performance in Competitive Sports": 1 +"Chemistry: Understanding Chemical Reactions with Nanotechnology and Quantum Dots": 1 +"Astronomy: The Influence of Spectroscopy on Stellar Evolution and Exoplanets": 1 +"Biotechnology in Agriculture: An Integrated Approach using R and Machine Learning Algorithms": 1 +"Philosophy: Fundamental Concepts and Philosophical Paradoxes: An Exploration of Deontological Ethics": 1 +"Civil Engineering: Interpreting Structural Dynamics through Finite Element Analysis Software": 1 +"Physics Fundamentals: Understanding Quantum Mechanics through the Application of Quantum Computers": 1 +"Biology: Investigating Genetic Structures with the Help of CRISPR Technology": 1 +"Introductory Programming: Harnessing Java for Android App Development": 1 +"Gastronomy Science: Perfecting Pastry Baking with Precision Ovens": 1 +"Building Rhythms with JavaScript, Ableton Live and Oscillators: An Introductory Course": 1 +"Investigating Team Dynamics and Soccer Strategy Using SportsCode Gamebreaker Analysis Software": 1 +"Cultural Anthropology: The Influence of Augmented Reality on Social Interactions in the Digital Era": 1 +"Marketing Techniques: Leveraging TikTok for Brand Awareness and Engagement": 1 +"Unveiling 3D Modeling and Texture Mapping in Blender: An Integrated Computer Science and Digital Art Course": 1 +"The Impact of Sound Engineers in the Progression of Music Styles and the Advent of Auto-Tune: A Study of Pro Tools Software": 1 +"Chemistry: Mastering Chemical Reactions and Compound Formation through Molecular Modelling Software": 1 +"Creative Drawing: Designing Visual Stories with Adobe Illustrator": 1 +"Relativity Theory: Einstein's Equations and their Impact on Time Dilation": 1 +"The Role of Expressionist Painting in Shaping Contemporary Theater in the Post-War Era": 1 +"Asian Art: Tradition and Transformation - An Exploration of Woodblock Printing": 1 +"Astronomy: Decoding the Universe with the James Webb Space Telescope: A Revolutionary Perspective": 1 +"Practical Introduction to Machine Learning: Understanding Neural Networks and Decision Trees using R in RStudio IDE": 1 +"Chemistry: Exploring the Laws of Thermodynamics with Emphasis on Gibbs Free Energy": 1 +"Cybersecurity: Evaluation of Cryptography, Firewall, and VPN Concepts using Wireshark, OpenVPN, and Nmap for Secure Communications.": 1 +"Chemistry: Exploring the World of Polymers - Studying Elastomers and Plastics in Everyday Use": 1 +"Astronomy: Exploring the Cosmos with Radio Telescopes and Spectral Analysis": 1 +"Advanced Python Programming for Data Science: Predicting Stock Market Trends using Machine Learning": 1 +"Biology: Understanding Genetic Engineering Techniques and CRISPR Technology": 1 +"Quantum Mechanics: A Deep Dive into Wave-Particle Duality and the Double-Slit Experiment": 1 +"Applied Algebra: Solving Complex Problems using Matrices and Vector Spaces": 1 +"Fine Arts: The Art of Sculpting in Marble and Bronze: Renaissance Techniques for the Modern Artist": 1 +"A Comprehensive Study of Light: Implementing Prisms for Spectrum Analysis in Optics": 1 +"World History: The Impact of Agricultural Innovations and Radiocarbon Dating in Early Civilizations": 1 +"Maximizing Online Collaboration through Microsoft Teams for Distance Learning": 1 +"Engineering: Solar Panels and the Future of Sustainable Energy Solutions": 1 +"Advanced Geometry: Mapping the Cosmos using Stellar Cartography and Astrophysics": 1 +"Contemporary Politics: The Influence of Social Media on Electoral Outcomes": 1 +"Basic Quantum Physics: Applying Schrodinger's Equation in Nano-Technological Innovations": 1 +"The Evolution of Medicine: Breakthroughs in Biotechnology and Genetic Engineering": 1 +"Advanced Java and Machine Learning: A Detailed Study of Neural Networks and Deep Learning using Tensorflow": 1 +"The Impact of Blockchain Technology on Global Financial Systems: A Detailed Study using Ethereum and Smart Contracts": 1 +"Anthropology 101: The Influence of Agriculture on Early Human Societies and their Culture": 1 +"The Mathematics of Cryptography: Exploring RSA and Diffie-Hellman using MATLAB": 1 +"Art 305: Renaissance Art Techniques and their Influence on Modern Digital Art": 1 +"The Symphony of Renewable Energy: Harnessing the Power of Solar and Wind Energy in Sustainable Architecture.": 1 +"Mastering The Art of Cinematography: Lighting Techniques and Storytelling through Camera Angles": 1 +"Dynamic Mathematics: Understanding the Complexity of Fractals and Chaos Theory through Computer Simulations": 1 +"Fashion 101: Understanding Fabric Textures, Color Theory, and Sustainable Design Practices": 1 +"The Evolution of Communication: From Smoke Signals to Social Media": 1 +"Music in Mathematics: Exploring Patterns and Symmetry in Beethoven's Sonatas": 1 +"Politics and Literature: Analyzing Political Rhetoric in Modern Poetry": 1 +"Data Analysis in Environmental Studies: Utilizing Phyton and Matlab in Climate Change Research": 1 +"Dissecting the Human Psyche: A Deep Dive into Freudian Psychoanalysis and Dream Interpretation": 1 +"Exploring Food Culture: The Role of Fermentation in Traditional Cuisine across the World": 1 +"Intensive Study in Sports Medicine: Injury Prevention and Rehabilitation using Kinesiology, Biomechanics, and Therapeutic Modalities.": 1 +"Physics: Quantum Computing and Its Implications in Cryptography": 1 +"Literature: The Role of Transnationalism in Modernist Literature: A Study of James Joyce": 1 +"Art: Exploring Abstract Expressionism through Digital Media: A Focus on Procreate for iPad": 1 +"Statistics: Predictive Modeling in Sports Analytics: A Case Study on Baseball": 1 +"Anthropology: The Impact of Globalization on Indigenous Cultures: A Deep Dive into Virtual Ethnography": 1 +"World History: The Intersection of Religion and Politics in the Byzantine Empire: A Blockchain Study": 1 +"Chemistry: The Role of Mass Spectrometry in Forensic Science": 1 +"Decoding Dante's Inferno through Natural Language Processing Algorithms": 1 +"Geography: Climate Change and Migration Patterns: A Geospatial Analysis": 1 +"Genetics: Genome Sequencing and Personalized Medicine: The Future of Healthcare Technology": 1 +"Chemistry in Art: Understanding Pigment Composition through Spectrometry and Oil Painting Techniques": 1 +"Military History: Analyzing Cold War Strategies through Chess Theory and Game Simulation Software": 1 +"Quantum Physics: Exploring Heisenberg's Uncertainty Principle through Probability Theory and Quantum Simulations": 1 +"Computer Science: Building Virtual Reality Environments using Python and 3D Modelling Software": 1 +"Mathematics 210: Application of Pythagorean Theorem in Architectural Design using CAD Software": 1 +"Health Education: The Physiology of Ballet: An Analysis of Pointe Shoes and Muscle Coordination": 1 +"Cultural Studies: Decoding Symbolism in Asian Folklore through Virtual Reality and Ethnographic Research Methods": 1 +"Health Education: Comparative Study of Martial Arts: The Cultural Significance and Physical Techniques of Capoeira and Karate": 1 +"English Literature: Interpreting Irony in Oscar Wilde's Works through Sociocultural Context and Textual Analysis": 1 +"Advanced Mathematics: Understanding the Dynamics of Financial Markets through Calculus and Algorithmic Trading Software": 1 +"Chemistry in Cuisine: Understanding Molecular Gastronomy and its Techniques": 1 +"Psychology: The Influence of Color on Human Emotion - An In-depth Study": 1 +"Advanced Game Design: Exploring Procedural Generation using Unity and C#": 1 +"Mathematics and AI: Predictive Modelling with R, Python and Matplotlib Visualization": 1 +"Cinema in the Digital Era: The Role of CGI (Computer-Generated Imagery) in Modern Film-making": 1 +"Data Science in Environmental Studies: Geospatial Analysis with Python, Matplotlib, and Geopandas": 1 +"Artificial Intelligence in Journalism: Employing BERT for Advanced News Article Generation": 1 +"Astronomy: The Science of Light and Spectrum - Analyzing Star Composition with Spectrographs": 1 +"Microbiology: Detailed Examination of Bacterial Cell Walls through Electron Microscopy": 1 +"The Influence of AR (Augmented Reality) on Dance Choreography: An Extensive Study on the use of Motion Tracking Technology": 1 +"English Literature: The Renaissance Era and the Birth of Sonnets": 1 +"Physics: Quantum Mechanics and the Fascinating World of Photons": 1 +"In-depth Calculus: Grasping the Concept of Derivatives and Integrals": 1 +"Marine Biology: Coral Reefs and Their Ecological Significance": 1 +"Art and Technology: The Impact of Augmented Reality in Contemporary Art": 1 +"The Physics of Semiconductors: An Insight into the World of Nanotechnology": 1 +"R and MATLAB in Biostatistics: Interpreting Genetic Data and Disease Spread Patterns": 1 +"Mathematics: Big Data Analysis using R and PowerBI Visualization": 1 +"Introduction to Cybersecurity: Network Security with Python and Kali Linux": 1 +"Chemical Marvels: Understanding Molecular Structures through Crystallography": 1 +"Advanced Calculus: Exploring Fractal Geometry through Python and Matplotlib": 1 +"Chemistry 101: Understanding Molecular Dynamics via Computational Simulations": 1 +"Understanding Societal Structures: Unpacking the Sociology of Food through the Lens of Fast Food Chains": 1 +"Philosophy for Young Minds: Decoding Ethics and Morality through Famous Philosophers' Theories": 1 +"Art History: The Influence of 20th Century Surrealism on Modern CGI and Visual Effects": 1 +"Cognitive Development in Children: Enhancing Problem-Solving Skills through Strategic Board Games and Logic Puzzles": 1 +"Introduction to Robotics: Building Autonomous Systems with Raspberry Pi and Python": 1 +"Biostatistics in Sports Medicine: Using R and Machine Learning for Injury Risk Assessment": 1 +"Astronomy for Kids: Grasping the Basics of Planetary Science through Interactive Simulations": 1 +"Literature 102: Analyzing Narrative Structures and Reader Empathy: A Study in Gothic Literature": 1 +"Physics: Understanding the Universe: An Introduction to Astrophysics and Quantum Gravity": 1 +"Advanced Psychology: The Cognitive Process, Perception, and the Role of EEG in Brain Mapping": 1 +"Genetics: Decoding Human Evolution through Genome Sequencing and Bioinformatics": 1 +"Cybersecurity: A Comprehensive Look into Cryptography and Network Security using VPNs and Firewalls": 1 +"Young Astronomers: Exploring Space and Celestial Bodies through Telescopes and Satellite Imaging": 1 +"Advanced Zoology: The Science of Animal Behavior - A Study on Ethology using Behavioral Experiments and Statistical Analysis": 1 +"Neurology: Unveiling the Mysteries of the Brain: A Comprehensive Study on MRI and CT Scan Techniques": 1 +"Engineers and Innovators: Learning Physics with Arduino and CAD Software": 1 +"Data Science: Advanced Machine Learning Techniques: Supervised Learning, Unsupervised Learning, and Deep Learning with Python and Scikit-Learn": 1 +"Environmental Science: The Earth's Climate: An In-depth Analysis of Global Warming and Climate Change through Ice Core Sampling and Carbon Dating": 1 +"Literature Analysis: The Influence of Industrial Revolution on Victorian Age Writings": 1 +"Information Technology: Discovering the Power of Machine Learning and Big Data using Scala": 1 +"Cultural Anthropology 101: The Role of Cuisine in Cultural Identity": 1 +"Critical Thinking: Harnessing the Power of Deductive Reasoning for Problem Solving in Computational Mathematics": 1 +"Investigating the Integration of Quantum Computing in Cryptography: Security Upgrades in Cyber Infrastructure": 1 +"Musicology: The Fusion of Western and Eastern Influences in Contemporary Pop Music - A Study through Digital Platforms": 1 +"Art: Mastering Oil Painting: The Nuances of Portraiture Techniques": 1 +"History Unfolded: Warfare through the Centuries - The Evolution of Strategic Planning": 1 +"Understanding Cinema: The Art of Storytelling through Cinematography and Visual Effects": 1 +"Environmental Science: Exploring Sustainable Energy Sources through Biofuel Production Technology": 1 +"Advanced Chemistry: Exploring the Thermodynamics of Chemical Reactions with Quantum Mechanics and Computational Chemistry Tools": 1 +"Music Theory: Harmonics and Overtones in Jazz Improvisation using Ableton Live and Logic Pro X": 1 +"Mathematics: Proofs in Set Theory with Advanced Mathematical Logic and Symbolic Computation in Maple": 1 +"Literary Analysis: Exploring Metaphor and Symbolism in Modernist Poetry": 1 +"The Influence of Karate's Kata on Japanese Cultural Practices: A Physical Education Perspective": 1 +"The Confluence of Quantum Physics and Eastern Mysticism: Using the Copenhagen Interpretation to Understand Zen Buddhism": 1 +"Physical Education: The Role of Epigenetics in Personalized Exercise Prescription and Wellness": 1 +"Microbial Metabolism: Unraveling Anaerobic Respiration with Metagenomics and Bioinformatics": 1 +"The Socioeconomic Impact of Light Pollution on Urban Ecosystems: A Study Using the Environmental Kuznets Curve and Proposing Effective Light Management Strategies": 1 +"Mastering Differential Equations: Laplace Transform Method in Time-Invariant Systems with Python and MATLAB": 1 +"Geography: Climate Change Impact on Arctic Wildlife: A Detailed Study using Geospatial Analysis": 1 +"Sociology: The Influence of Social Media on Modern Politics: An Analytical Approach": 1 +"Digital Art: Exploring the Evolution of Virtual Reality in Modern Artistic Expression": 1 +"Advanced Physics: Understanding Quantum Mechanics through the Lens of Double-Slit Experiment": 1 +"Business Studies: Decoding the Mystery of Stock Markets: An Introduction to Fundamental Analysis": 1 +"Marine Biology: Exploring Coral Reef Ecosystems: A Study using Remote Sensing Technology": 1 +"Nutritional Science: The Role of Probiotics in Gut Health: An Investigation using Metagenomics": 1 +"Psychology: The Impact of Mindfulness on Stress Reduction: A Meta-Analysis": 1 +"Calculus 201: Applying Differential Equations in Modeling Population Growth": 1 +"Physical Education: The Influence of High-Intensity Interval Training on Cardiovascular Health: A Longitudinal Study": 1 +"Optimizing Online Education: Integrating Kahoot Interactive Quizzes into Virtual Classrooms": 1 +"Fine Arts: Unleashing Creativity with Cubism using Oil Pastels and Canvas Painting": 1 +"Physics: Unraveling Nuclear Energy - A Detailed Exploration of Fission and Fusion from an Atomic Level": 1 +"Advanced Genetics: The Role of RNA Interference and Next-Generation Sequencing in Gene Expression and Regulation": 1 +"Physical Education: Enhancing Soccer Techniques Using GPS and Performance Analysis Software": 1 +"Psychology Foundations: An In-depth Approach to Cognitive Behavioral Therapy with Virtual Reality and Eye-Tracking Technology": 1 +"The Evolution of Communication: The Telegraph's Role in the Rise of Global Connectivity": 1 +"Biochemistry Basics: Unraveling Proteomics and Enzymology through Mass Spectrometry and X-ray Crystallography ": 1 +"Philosophy: Key Concepts and Paradoxes: An Investigation into Deontological Ethics": 1 +"The Impact of Light Theory on Watercolor Methods through RGB Color Model: An Extensive Analysis of Abstract Forms and Textured Strokes using Chromaticity Diagram.": 1 +"Physics: Exploring Quantum Mechanics through the Perspective of Holographic Principles": 1 +"Culinary Art: Understanding Gastronomy by Incorporating Molecular Cooking Techniques": 1 +"Machine Learning and Healthcare: The Influence of TensorFlow in Predictive Disease Modeling": 1 +"Craftsmanship: Mastering the Use of Lathe Tools in Woodturning Projects": 1 +"Astrobiology and Its Complexities: Investigating Life Possibilities beyond Earth using Spectroscopy and Bioinformatics": 1 +"Statistics in Action: Utilizing R Programming for Predictive Analysis and Data Visualization": 1 +"Music: Analysis of Melodic Structures in Classical Compositions Using Digital Audio Workstations": 1 +"Ethics: A Deep Dive into Utilitarianism in Modern Corporate Governance": 1 +"Immersive Experience: The Impact of Oculus Rift in Virtual Reality Gaming": 1 +"The Application of Recursive Functions in Mathematics and Programming": 1 +"Climate Change: Impact of Deforestation on Carbon Sequestration and Biodiversity": 1 +"Cosmology Decoded: The Influence of Dark Matter on Galactic Formation": 1 +"Advanced Website Development with JavaScript, React Framework and Jest Testing": 1 +"Crafts: Textile Arts and Weaving Techniques: An Exploration of Tapestry": 1 +"Physics: Understanding Quantum Mechanics with Virtual Reality Simulations": 1 +"Molecular Genetics: Discovering DNA Replication Mechanisms with CRISPR-Cas9 Technology": 1 +"Dance: Mastering Choreography and Rhythm Interpretation using Motion Capture Technology": 1 +"Statistics: Predictive Analysis and Data Visualization using R Programming and ggplot2": 1 +"Immersive Media and Sensory Experiences: Introducing Augmented Reality using Unity and Vuforia": 1 +"Classical Wisdom for Contemporary Governance: The Application of Confucian Principles in Public Policy Development": 1 +"Unraveling Sociopolitical Rhetoric: A Study of Regression Analysis and Correlation Coefficient in Political Science": 1 +"Cryptocurrency: The Influence of Digital Asset Management on Retail Industry's Revenue Generation through 10 Strategic Methods": 1 +"Pharmacology Uncovered: Exploring Human Metabolism with PET Scans, MRI, Mass Spectrometry, and Chromatographic Techniques": 1 +"Microsoft Teams and OneNote: Optimizing Collaboration and Project Management in Workplace": 1 +"Chemistry: Thermodynamics and Entropy - A Detailed Study of the Laws of Thermodynamics": 1 +"Business 200: Leveraging Influencer Marketing in Online Retail for the Fashion Industry": 1 +"Advanced Astrophysics: Stellar Evolution Analysis using Quantum Algorithms, Python Programming, Machine Learning Techniques and Supercomputing": 1 +"Music: Exploring Harmonics through Geometric Shapes using Abstract Algebra Concepts": 1 +"Advanced Programming 210: Mastering Arrays in Swift Using Xcode IDE": 1 +"History: The Evolution of Warfare: The Gunpowder Revolution": 1 +"The Impact of Hydroponics and Vertical Farming on Urban Sustainability": 1 +"Biology: The Role of Enzymes in Fermentation and Brewing Process": 1 +"A Paradigm Shift in Sports Medicine: The Incorporation of Virtual Reality, Biomechanics and Neurofeedback in Rehabilitation": 1 +"Spectrophotometry Unveiled: A Comprehensive Study on Light Absorption, Colorimetry, and the Beer-Lambert Law": 1 +"Statistics: Predictive Analysis in Weather Forecasting using Python Programming": 1 +"Anthropology: The Significance of Food in Traditional Ceremonies - A Study on Gastronomy": 1 +"Python for Financial Data Analysis: A Quantitative Finance Course Using Pandas, Machine Learning Algorithms, Julia Programming, Cloud Computing Techniques and Data Visualization": 1 +"Advanced Computing 205: Building Interactive Games in Swift Using Xcode Development Environment": 1 +"Introduction to Data Science: Investigating Economic Trends using Data Mining Techniques": 1 +"Psychology Simplified: A Novice's Guide to Human Behavior and Cognitive Processes": 1 +"Astronomy: Unraveling Dark Matter and Energy - An Investigation through Quantum Field Theory and Cosmic Microwave Background Radiation": 1 +"Artistic Transformations: The Role of Virtual Reality in Shaping Contemporary Sculptural Practices": 1 +"Advanced Programming: Utilizing Java, Unity and Differential Equations in Simulation Design": 1 +"The Impact of Jacquard Loom in Computer Programming: Evolution of Binary Language in Digital Era": 1 +"Political Science: The Influence of Social Media on Public Opinion Dynamics and Democratic Processes": 1 +"Mathematics: Calculus and Topology - Navigating through Mathematica and Riemann Surfaces": 1 +"Sociolinguistics and Behavioral Economics: Deciphering Consumer Behavior through Semantic Networks in R with Kendall's Tau-b": 1 +"The Evolution of Medicine: The Revolutionary Role of the Stethoscope ": 1 +"Biology: Plant Physiology in Extreme Environments - Photosynthesis and Survival Strategies": 1 +"High-Altitude Mountaineering and Wearable Tech: A Comprehensive Study on Enhancing Climbing Efficiency": 1 +"Physics: The Role of Quantum Mechanics in the Development of Solid State Drives": 1 +"Biology 201: Investigating the Effects of Yoga on Cardiovascular Health Using MRI Scans: A Multidisciplinary Approach": 1 +"Art History: The Impact of Geometric Shapes in Cubist Art - A Detailed Analysis of Spatial Relationships": 1 +"The Incorporation of Haptic Feedback in Oculus Rift Controllers for Surgical Training: A Research Using Unity3D Engine": 1 +"Economics: Evaluating Cryptocurrency's Influence on Global Financial Systems": 1 +"Philosophy 101: Understanding the Dichotomy Paradox in Zeno's Arguments through Mathematical Logic": 1 +"Anthropology: Exploring Indigenous Cultures and Their Sustainable Practices from a Global Perspective": 1 +"Software Engineering: Designing Intelligent Traffic Management Systems using Machine Learning, IoT Devices and Docker": 1 +"Musicology: Interpreting the Psychological Response to Music through Virtual Reality Experiences": 1 +"Data Science: Implementing Advanced Regression Models using R, Random Forest Algorithms, PCA for Dimensionality Reduction, and ggplot2 for Data Visualization": 1 +"Advanced Calculus: Exploring the World of Fractals using Python Programming": 1 +"Music Theory: Comprehensive Analysis of Orchestration Techniques with Digital Audio Workstations": 1 +"Introduction to Quantum Physics: Understanding Particle-Wave Duality through Quantum Field Theory": 1 +"Digital Literacy: Enhancing Writing Skills through Google Docs": 1 +"Culinary Science: Decoding Fermentation Techniques and Their Impact on Food Flavors": 1 +"Environmental Studies: A Detailed Study on Composting Techniques using Organic Waste and Vermiculture": 1 +"Sports Physiology: A Comprehensive Study of Hydration and Nutrition in Athletes": 1 +"Cybersecurity: Mastering Cryptography with Real-World Applications": 1 +"Gastronomy: Investigating the Science of Molecular Gastronomy and its Effect on Taste Perception": 1 +"Philosophy: An In-depth Analysis of Ethical Dilemmas and Moral Reasoning.": 1 +"Sociology: The Influence of Virtual Reality on Modern Social Interactions": 1 +"Ancient Philosophy: The Impact of the Concept of Democracy on the Development of Ancient Greek City-States": 1 +"Archaeology: Decoding the Cultural Significance of Egyptian Pyramids through Advanced Imaging Techniques": 1 +"Health Education: The Science of Yoga: Utilizing Biomechanics for Optimal Performance": 1 +"Data Science: Unveiling Climate Change Patterns with Python and Machine Learning": 1 +"Art History: The Role of Photography in the French Impressionist Movement": 1 +"Ethnomusicology: Impact of the Internet on the Evolution of K-Pop - A Study through Auto-Tune Technology": 1 +"Business Studies: The Effect of Cryptocurrency on International Trade Economics": 1 +"Cultural Studies: The Use of Virtual Reality in Preserving Indigenous Australian Rituals and Festivals": 1 +"Applied Music Theory: Mastering Jazz Improvisation with Logic Pro X, Finale, and MIDI Keyboards": 1 +"Marine Biology: Tracing the Migratory Patterns of Whales Using Satellite Tracking Technology": 1 +"Astrophysics: A Detailed Study of Quasars and Nebulae Through Radio Telescopes and Spectroscopy": 1 +"Sustainable Architecture: The Integration of Recycled Materials in Modern Building Design": 1 +"Understanding Baroque Art: An In-depth Study of Rembrandt's Use of Light and Shadow": 1 +"Sociology: An Analysis of Social Inequality Through the Lens of Post-colonial Literature": 1 +"The Confluence of Cinema and Photography: An Interpretative Study of Cinematography in Film Noir": 1 +"Harnessing Wind and Words: Wind Energy Representations in Environmental Literature": 1 +"Psychology: Exploring Human Behavior Through Cognitive Behavioral Therapy and Neuro-Linguistic Programming": 1 +"Fundamentals of Biotechnology: DNA Sequencing and Gene Editing with CRISPR-Cas9": 1 +"Computer Science: Advanced Python Programming and Machine Learning Algorithms": 1 +"Immersive Experiences: Understanding the Impact of AR in Military Training and Simulation": 1 +"Literature Studies: Reading between the Lines - Unmasking Cold War Politics through Hemingway's Prose": 1 +"Health and Fitness: A Comprehensive Study on Capoeira's Influence on Brazilian History and its Documentation in VR": 1 +"Ancient Civilizations: The Wheel and the Papyrus - How Innovations Shaped Ancient Egypt and Mesopotamia": 1 +"Information Technology: Mastering Mobile App Development with Swift and Firebase - An Introduction to Real-Time Databases": 1 +"Leveraging Deep Learning in Forecasting Stock Prices: A Neural Network and Time-Series Analysis Method": 1 +"Chemistry in Art: The Role of Gas Chromatography Mass Spectrometry in Uncovering Forgeries in Renaissance Paintings": 1 +"Video Game Development: Crafting Immersive Worlds with Unreal Engine": 1 +"Journalism and Narrative: Crafting Compelling Narratives with Podcasting and Transmedia Storytelling Techniques": 1 +"Seismographs and Earthquake Waves: A Deep Dive into Geophysics and the Science of Seismic Activity": 1 +"Advanced Robotics: Understanding Kinematics through the Use of D-H Parameters and Robot Operating System": 1 +"Music 210: The Evolution of Classical Music and the Use of the Piano in Sonata Allegro Form": 1 +"Anatomy & Physiology: Leveraging MRI Technology in the Study of Musculoskeletal System": 1 +"Data Science: Application of Machine Learning Algorithms in Predictive Analysis and Data Visualization": 1 +"Biochemistry 204: Chromatography and Mass Spectrometry in Proteomics": 1 +"Astronomy: Decoding the Universe through the Hubble's Law and Redshift": 1 +"Mathematics: Deciphering Calculus through Riemann Sums and the Fundamental Theorem of Calculus": 1 +"Neurolinguistic Programming: The Trigger for Advancements in Cognitive Behavioral Therapy": 1 +"Zoology 101: Role of DNA Barcoding in Species Identification": 1 +"Historical Studies: The Sociopolitical Impact of Printing Press on the Renaissance Era": 1 +"Advanced Astrophysics: Dark Matter and Dark Energy - A Quantum Mechanics Approach": 1 +"Introduction to Behavioral Psychology: Utilizing SPSS in Mental Health Research and Data Analysis": 1 +"Emerging Trends in Biotechnology: A Genomic and Proteomic Perspective": 1 +"Creative Writing: Exploring the Role of Symbolism in Postmodern Literature through Discourse Analysis": 1 +"Physics 101: Quantum Theory and Particle Physics - Nuclear Fusion and Energy Production": 1 +"Advanced Analytics in Healthcare: Using R and PowerBI for Predictive Analysis in Patient Outcomes": 1 +"Ethics: The Role of Deontology in Evaluating Modern Societal Dilemmas": 1 +"Augmented Reality in Digital Forensics: Investigating Cyber Threats and Data Breaches with Innovative Countermeasures": 1 +"Geography 101: Understanding Climate Change through the Lens of Geomorphology": 1 +"Philosophy 101: The Influence of Existentialism on Modern Thought and Culture": 1 +"Advanced Chemistry: Probing Molecular Interactions with Nuclear Magnetic Resonance Spectroscopy": 1 +"Investigate Fluid Dynamics: Understanding Turbulence and Flow Patterns using Wind Tunnels": 1 +"Film Studies: Exploring the Influence of Digital Cinematography on Narrative Storytelling and Audience Perception": 1 +"Tracing the Impact of the Telegraph on Military Strategy during the American Civil War": 1 +"Big Data in Sports: Analyzing Player Performance and Game Tactics using Python and Power BI ": 1 +"Environmental Ethics: The Global Reaction to Deforestation and Sustainable Forestry Practices": 1 +"Genomics 101: Understanding Genome Sequencing and Bioinformatics in Disease Research": 1 +"Psychology: Understanding Human Behavior and Cognitive Processes Through Functional Magnetic Resonance Imaging (fMRI)": 1 +"Plant Sciences: Investigating Photosynthesis and Plant Physiology with Spectrophotometry and Image Analysis": 1 +"Exploring the Significance of Social Media in Shaping Political Discourse and National Identity": 1 +"Physics: Exploring Quantum Mechanics through the Paradigm of String Theory using MATLAB": 1 +"In-depth Exploration of Genetic Algorithms in Java: A Focus on the Implementation of Crossover and Mutation": 1 +"Melodies of the Wind: Utilizing Geographic Information Systems to Track the Evolution of Fifteen Indigenous Flute Music Styles": 1 +"Ruby on Rails for E-commerce: A Comprehensive Guide to Building Online Stores with Ruby, Sinatra, Bootstrap, HTML5, PostgreSQL, and Concurrent Programming with Celluloid": 1 +"Statistics: The Fibonacci Sequence in Stock Market: A Quantitative Assessment": 1 +"Anthropology: Leveraging Digital Storytelling in the Preservation of Cultural Heritage Using Instagram's IGTV and Discord: Five Methodologies for Engagement": 1 +"Decoding Binary Trees: An Entry-Level Course on Data Structures and Algorithmic Thinking": 1 +"Primer to Political Science: Evaluating Voter Turnout and its Consequences": 1 +"Health and Wellness: Global Health Initiatives and Wellness Promotion: Understanding the Impact of Yoga through Biostatistics": 1 +"A Comprehensive Examination of Cardiac Function: The Application of Python Programming in ECG and Echocardiography": 1 +"Art History: The Rise of Abstract Expressionism and the Role of the Paintbrush": 1 +"The Impact of AI and Blockchain on Financial Markets: 10 Strategies for the Future of Fintech": 1 +"Ruby for Data Analysts: Machine Learning Algorithms in RubyMine and IRB": 1 +"History: The Agricultural Revolution and the Significance of the Plow in Ancient Civilizations": 1 +"Art Appreciation: Styles' Transformation - The Impact of Adobe Illustrator on Digital Art Techniques": 1 +"Quantum Computing: In-depth Examination of Quantum Bits and Quantum Gates in Information Technology": 1 +"Assessing the Societal Impact of Water Scarcity on Community Development using Participatory Rural Appraisal: A Review of Ten Water Conservation Methods": 1 +"Chemistry: Understanding Molecular Structures using Nuclear Magnetic Resonance and Mass Spectrometry": 1 +"Exploring Cultural Diversity through Symbolic Representation in Literature: The Power of Allusion": 1 +"The Golden Ratio and its Influence on Architectural Design: An Investigation of Symmetry and Proportion Using Digital Modeling and CAD": 1 +"Physics 101: The Quantum Leap and Schrodinger's Cat: Paradigms of Quantum Physics": 1 +"Interactive Spanish Vocabulary: Utilizing Duolingo, Memrise and Quizlet for Accelerated Word Mastery": 1 +"International Relations: The Post-Cold War Era - The Rise of Globalization, Terrorism, and Cyber Warfare": 1 +"Design: Crafting Futuristic Cityscapes using Vector Graphics and 3D Modeling Tools": 1 +"The Impact of Transistor Innovation on Computer Language Development During the Digital Revolution": 1 +"Mathematics in Computer Science: The Role of Machine Learning in Cryptography and Data Security": 1 +"Geographical Information Systems: Predictive Modeling of Climate Change using Satellite Imagery": 1 +"Literature: The Influence of Cervantes' Don Quixote on the Evolution of the Novel": 1 +"Music: Understanding Jazz Improvisation through the Study of Modal Jazz Techniques": 1 +"The Fibonacci Sequence: Tracing its Impact from Ancient Mathematics to Modern Architecture": 1 +"Physics: Quantum Mechanics - Understanding Particle-Wave Duality with the Double Slit Experiment": 1 +"Advanced Microbiology: Exploring Immunological Responses using Flow Cytometry in Disease Diagnosis and Treatment": 1 +"Literature: The Role of Gothic Elements in Victorian Literature: An Existential Analysis": 1 +"Computer Science: Applying Artificial Intelligence in Autonomous Vehicles - A Case Study with Python and TensorFlow": 1 +"Geometry: Unfolding the Mysteries of Tessellations and Symmetry": 1 +"Cultural Studies: Virtual Reality and Its Influence on Modern Artistic Expression": 1 +"Advanced Statistics: Predictive Modeling in Finance using Regression Analysis with R": 1 +"Sociology: The Role of Social Media in Shaping Public Opinion on Climate Change": 1 +"Geography: Application of Remote Sensing and GIS in Understanding Urban Sprawl and its Environmental Impact": 1 +"Psychology: Exploring Consciousness and Perception through Transcranial Magnetic Stimulation": 1 +"Physics: Quantum Mechanics and the Role of Superconductivity in Modern Technology": 1 +"Art History: The Influence of Virtual Reality on Contemporary Art Interpretation": 1 +"Biology: Using CRISPR-Cas9 Genome Editing Techniques to Understand Human Genetic Disorders": 1 +"Computer Science: Utilizing JavaScript and CSS in Responsive Web Design": 1 +"Environmental Science: Analyzing Climate Change Impact on Arctic Wildlife Through Satellite Imagery": 1 +"Business Management: Leveraging Big Data and Machine Learning in Predictive Marketing": 1 +"Sociology: Exploring the Impact of Social Media on Youth Culture and Identity Formation": 1 +"Physical Education: The Role of Wearable Technology in Optimizing Basketball Performance": 1 +"Chemistry: Application of Nanotechnology in Drug Delivery: A Detailed Study using Scanning Electron Microscopy": 1 +"Literature: The Impact of Digital Storytelling in Preserving Indigenous Oral Narratives.": 1 +"Astrophysics: Understanding Black Holes with General Relativity and Quantum Mechanics": 1 +"Chemistry of Cooking: An Exploration of Molecular Gastronomy using Thermodynamics and pH Balance": 1 +"Exploring the Digital Age: The Impact of Machine Learning and Big Data on the Evolution of Marketing Strategies": 1 +"Artificial Intelligence: Practical Application of Neural Networks and Python Programming": 1 +"Marine Biology: Comprehensive Study of Coral Reefs through Remote Sensing and GIS Technologies": 1 +"Unraveling the Human Mind: Investigating Cognitive Processes through EEG and fMRI Scans": 1 +"Advanced Physics: Quantum Entanglement and its Implications on Teleportation Theory": 1 +"Deciphering the Universe: Analyzing Cosmic Microwave Background Radiation with Planck's Law and Quantum Field Theory": 1 +"Linguistics: The Influence of Emoji and Internet Slang on Modern Communication": 1 +"Environmental Science: Climate Change Analysis with Geospatial Data and Machine Learning Algorithms": 1 +"Critical Thinking: Dissecting Complex Problems with Boolean Algebra and Decision Trees": 1 +"Algebra: Conquering Quadratic Equations, Geometric Series and Matrix Operations": 1 +"Psychology: Decoding Human Behavior through Advanced Psychoanalytical Techniques and MRI Scans": 1 +"Machine Learning: Understanding Artificial Intelligence through Neural Networks and Reinforcement Learning": 1 +"Economic History: The Influence of the Gold Standard on Global Trade during the Victorian Era": 1 +"Advanced Audio Engineering: Electronic Music Production in FL Studio using Modal Harmony": 1 +"Chemistry: The Role of MATLAB in Understanding Chemical Kinetics through Reaction Rate Laws": 1 +"Anthropology: The Impact of Social Media on Cultural Evolution in the 21st Century": 1 +"Cognitive Science: The Significance of Music in Learning Processes - Mozart Effect and its Impact on Neurogenesis": 1 +"Physiology: The Role of the Respiratory System during High-Intensity Exercises - The Application of Spirometry Technology": 1 +"Music Education: Enhancing Aural Skills through Virtual Reality Technology": 1 +"Neuroscience: Exploring Neural Networks through EEG Analysis and Machine Learning": 1 +"Sociology: Tracing the Evolution of Social Norms through Big Data Analysis": 1 +"Marketing 350: Optimizing Customer Lifetime Value in the E-commerce Industry": 1 +"History of Printmaking: The Influence of Lithography on the Evolution of Graphic Design": 1 +"Decoding Binary Logic: An In-depth Analysis of Flip-Flop Circuits using Python and VHDL": 1 +"Junior Botanists: Discovering Plant Biology through Hydroponic Gardening": 1 +"Astronomy: Detailed Study of Nebulae using Radio Telescopes and Astrophotography": 1 +"The Implementation of Elliptic Curve Cryptography in Secure Cloud Storage: A Comprehensive Investigation into Digital Privacy": 1 +"Audio Engineering in Ableton Live: An Intensive Study of Granular Synthesis": 1 +"Advanced Course in Astronomical Data Processing using Python and Deep Learning Algorithms ": 1 +"Organic Chemistry: The Intricacies of ATP Synthesis and Energy Transfer": 1 +"Art and Environmental Restoration: Interpreting Solar Energy through 10 Contemporary Paintings": 1 +"Psychology: Understanding Human Behavior and Environment through Social Cognitive Theory": 1 +"Film Studies: Analyzing Cinematic Techniques in Virtual Reality Storytelling ": 1 +"Software Engineering: Developing with Swift in Xcode for iOS Applications": 1 +"Creative Writing: Crafting Suspense in Short Stories Inspired by Virtual Reality Horror Experiences ": 1 +"High School Physics: Decoding Quantum Mechanics and Particle Physics with the Large Hadron Collider": 1 +"Statistics: Predicting Stock Market Trends using R, Linear Regression, and Machine Learning for Portfolio Management": 1 +"Business 101: Understanding Market Structure and Competition through Game Theory": 1 +"Psychology: Understanding Human Emotions using fMRI and Eye Tracking Technology: A Comprehensive Study on Emotional Intelligence": 1 +"Art: Sculpting and Modelling: The Craft of Creating Hyperrealistic Human Figures using Polymer Clay": 1 +"Advanced Statistical Analysis in Python using Seaborn for Heatmaps: Incorporating Bokeh for Interactive Data Visualizations": 1 +"Exploring the Medicinal Benefits of Green Tea through Genomic Analysis and Metabolomics: A Study on Catechins, Flavonoids, and Theanine": 1 +"Vocal Techniques in Theatre: The Art of Breathing and Projection for Dramatic Monologues": 1 +"Art: Fresco Painting Techniques in Renaissance Art: An Exploration of the Sistine Chapel's Ceiling": 1 +"Biology: Molecular Genetics and Genomics - An Introduction to DNA Sequencing Techniques": 1 +"Innovative Teaching 401: Enhancing Student Engagement with Augmented Reality and Gamification": 1 +"Astrophysics 201: Quantum Mechanics and the Principle of Superposition - Unraveling the Mysteries of Quantum Entanglement": 1 +"Applying Federated Learning in Healthcare Analytics for Predictive Modelling: An In-Depth Study on Privacy-Preserving Machine Learning": 1 +"Physics: The Role of the Telescope in Unraveling the Universe's Mysteries": 1 +"Advanced Course on Positive Space in Watercolor Techniques: Emphasis on Flat Brushes, Dry-on-Wet Method and Scumbling Techniques": 1 +"Algebra Explored: Unveiling the Intricacies of Quadratic Equations and Linear Functions": 1 +"Human Anatomy Uncovered: Understanding the Circulatory System through Doppler Ultrasonography": 1 +"Art: Depicting the Flamenco of Spain through Pastel Drawings and Glazing Technique with Toned Ground": 1 +"Mathematics: The Symphony of Formulas - An In-Depth Exploration of Differential Equations": 1 +"Science: Navigating the World of Statistics through Experiments in Genome Mapping": 1 +"Middle School Topic: Demystifying the Internet - Inside Browsers and Search Engines": 1 +"Middle School: Unveiling the Secrets of Earth's Geology through Virtual Reality and Interactive Earthquake Simulations": 1 +"Chemistry 220: Inorganic Compounds and Processes: A Comprehensive Study of Spectroscopy": 1 +"The Role of Seismographs in Understanding Earthquake Patterns for Construction Engineering": 1 +"Digital Illustration in Graphic Design: Utilizing Adobe Illustrator for Children's Book Creations": 1 +"The Intersection of Neuroscience and Ancient Yoga Practices: Using the Mirror Neuron Theory to Understand Pranayama": 1 +"Film Studies: The Impact of Sound Mixing Techniques in Enhancing the Horror Genre": 1 +"Cultural Studies: The Symbolism of Metaphors in Folk Tales and Traditional Music of African Tribes": 1 +"Physics: Newton's Laws and Their Applications: A Comprehensive Study in MATLAB": 1 +"Art: Basic Techniques of Watercolor Painting - An Emphasis on Light and Shadow": 1 +"Mathematics: Trigonometry in Architecture: Interpreting Ionic Columns with a Protractor and Trigonometric Functions": 1 +"Advanced Computer Programming 201: Data Structures in Python: An In-depth Exploration": 1 +"Art: The Evolution of Sculpture in Indigenous Societies": 1 +"The Application of Adobe Illustrator in Graphic Design: Exploring Vector Graphics and Digital Art Techniques": 1 +"Maritime Navigation and French Trade Language in the Age of Exploration: The Influence of Sextants on Global Communication": 1 +"Reading Mastery: Integrating the Kindle App with Audio-Visual Techniques for Spanish Novels": 1 +"Physics for Teens: Exploring the Universe with Telescopes and Stellar Spectroscopy": 1 +"Investigation Delta: The Significance of Signals Intelligence in World War II Espionage": 1 +"The Spinning Jenny and the Cotton Industry: Revolutionary Inventions Affecting French Trade Language": 1 +"Art: Capturing Brazil's Capoeira Dance through Acrylic Artworks and Impasto Technique with Tenebrism Concept": 1 +"The Connection between Science and Sculpture: 3D Printing Technology and its Influence on Form and Texture in Sculptures": 1 +"Physical Education: The Harmony of Martial Arts and Meditation - A Focus on Tai Chi with Smart Watch Stress Trackers": 1 +"Comprehensive Study: Employing Wireshark in Network Analysis during Data Transmission": 1 +"Advanced Pharmacology: Exploring Drug Interactions with Gas Chromatography and Mass Spectrometry": 1 +"Astronomy: Tracking Galactic Movements with Spectroscopic Analysis and Radio Telescopes": 1 +"Anthropology: Tracing Human Evolution through DNA Sequencing and Fossil Record Analysis": 1 +"Biomechanics: Understanding Human Motion with 3D Motion Capture and Force Plate Analysis": 1 +"Climate Science: Predicting Weather Patterns with Satellite Imaging and Numerical Weather Prediction Models": 1 +"Education: Enhancing Learning Outcomes through Instructional Design and Blended Learning Techniques": 1 +"Electrical Engineering: Power System Stability and Control using Power System Stabilizer and Facts Devices": 1 +"Public Health: Analysis of Epidemics using Predictive Modelling and GIS in Disease Surveillance": 1 +"Sociology: The Impact of Social Media on Youth Culture: A Qualitative Study Using Content Analysis ": 1 +"Chemistry: Characterizing Material Properties with X-ray Diffraction and Spectroscopy Analysis": 1 +"Physics: Unraveling the Mystery of Black Holes and Relativity in the Cosmos": 1 +"Chemistry 101: An In-Depth Exploration of Chemical Reactions in Everyday Life": 1 +"Python Programming: Harnessing the Power of Machine Learning and Artificial Intelligence": 1 +"Philosophy: Unveiling the Intricacies of Existentialism through Nietzsche's Writings": 1 +"Music Theory: Experimenting with Harmonic Progressions in Jazz Using MIDI Controllers and DAWs": 1 +"Human Anatomy: A Comprehensive Guide to Musculoskeletal System for Aspiring Physicians": 1 +"Digital Marketing: Leveraging Social Media Platforms for Effective B2B Strategies": 1 +"Advanced Calculus: Exploring the World of Differential Equations and their Applications": 1 +"Fine Arts: Abstract Expressionism in Watercolor - Mastering Fluid Dynamics and Color Theory": 1 +"Sustainability in Architecture: The Impact of Green Building Designs on Urban Development": 1 +"The Impact of The French Revolution on Modern Democracy: A Political Analysis": 1 +"Physics 201: The Role of Gravity in the Movement of Planetary Orbits": 1 +"Architecture and Dance: Exploring the Influence of Ballet on Modern Building Designs": 1 +"Emerging Trends in Bioengineering: Application of Neural Networks in the Development of Prosthetic Limbs": 1 +"Advanced Spanish 220: The Art of Subtext in Hispanic Literature": 1 +"Decoding the Digital Age: Network Protocols, DNS Attacks and Firewall Protection using Wireshark": 1 +"Geology Unearthed: The Fascinating World of Plate Tectonics: Earth's Living Skin": 1 +"Creative Illustration 102: Enhancing Children's Drawing Skills with Adobe Illustrator": 1 +"Musicology: The Transformation of Jazz Music: A Study of Syncopation and Improvisation": 1 +"Innovative Problem Solving: Applying Python, PyTest and Recursion in Complex Algorithm Development": 1 +"Physics: Exploring Quantum Mechanics Through Double Slit Experiment and Wave-Particle Duality": 1 +"Graphic Design: Advanced Techniques in Logo Design Using Adobe Illustrator": 1 +"Sociology: Examining Racial Disparities in Criminal Justice Through Quantitative Data Analysis": 1 +"Art: Mastering the Art of Digital Painting Through Photoshop and Procreate": 1 +"Astronomy: Unveiling the Secrets of Dark Matter through Computational Astrophysics": 1 +"Computational Biology: Genomic Data Analysis Using Python and BioPython": 1 +"Media Studies: Dissecting the Impact of Social Media on Politics Using Facebook's Ad Library": 1 +"Environmental Science: Understanding Biodiversity Loss Through GIS and Remote Sensing": 1 +"Organic Chemistry: Exploring Carbon Bonding Through Spectroscopy and Molecular Orbital Theory": 1 +"Microeconomics: Price Elasticity, Demand Forecasting and Strategic Business Decisions": 1 +"Astrophysics Essentials: Gravitational Waves and Their Significance in Black Hole Studies": 1 +"Environmental Engineering: Harnessing Wind Energy for Sustainable Urban Planning ": 1 +"Applied Mathematics: Optimizing Warehouse Operations using Linear Programming": 1 +"The Crucial Role of Fermentation in Biological Studies": 1 +"Exploring the Influence of Spatial Design in Architectural Rendering: A Comprehensive Look at Perspective Drawing and Shading Techniques": 1 +"Astrophysics Essentials: Dark Matter and the Mystery of Galaxy Formation": 1 +"Accounting 101: Exploring Risk and Return Factors using the Capital Asset Pricing Model": 1 +"Computer Science 170: Advanced Java Scripting & Cloud Computing with AWS: Diving into Serverless Architecture": 1 +"Advanced Zoology: Examining the Role of Sensory Enrichment in Captive Animal Behavior Using Ethograms": 1 +"Political Science: Evaluating the Impact of Machine Learning Algorithms in Predictive Policing and Civil Rights Protection": 1 +"Chemistry: Organic Synthesis - Understanding the Mechanisms of Grignard Reactions": 1 +"Computer Science: Machine Learning and Predictive Analytics using R Programming": 1 +"Economics: Evaluating Market Trends through Econometric Analysis: A Global Insight": 1 +"Mathematics: Calculus and Differential Equations - Understanding Rate of Change and Slopes": 1 +"Biology: Genome Sequencing - Deciphering the Human DNA through Next Generation Sequencing ": 1 +"Technology: The Role of Artificial Intelligence in Predictive Maintenance in the Industrial Sector": 1 +"History: Using Augmented Reality to Explore Medieval European Castles": 1 +"Environmental Science: Understanding Climate Change Impacts through Earth System Models": 1 +"English Linguistics: Semantic Analysis - Understanding Language Structures through Corpus Linguistics": 1 +"Astronomy: Stellar Evolution - Investigating the Life Cycle of Stars using Spectroscopy.": 1 +"Physics: Quantum Mechanics and its Role in Advancing Computer Technology": 1 +"High School: Investigating Tropical Rainforest Ecosystems through Satellite Imaging: Leveraging GIS and Python for Biodiversity Research": 1 +"Music: Foundations of Rhythm and Harmony - Grasping the Complexities of Musical Composition": 1 +"Aristotle's Theory of Causality: A Comprehensive Analysis Between Ontology and Quantum Field Theory": 1 +"Ethics: Examining the Moral Implications of Genetic Engineering in Human Embryos": 1 +"Data Science: Understanding the Impact of Time Series Analysis on Financial Forecasting": 1 +"Psychology: Unraveling the Secrets of Human Behavior through Functional Magnetic Resonance Imaging": 1 +"Optimizing Basketball Strategies: Evaluating the Effectiveness of Catapult Wearable Technology and Synergy Sports Tech": 1 +"Literature: The Significance of Metaphors in the Novels and Operas of the Romantic Era": 1 +"Geography: Investigating the Societal Structures of Prehistoric Tribes through the Study of Cave Paintings": 1 +"Political Science: A Comparative Study of Democratic Systems in Post-War Nations": 1 +"Biochemistry: Enzyme Kinetics - Decoding the Michaelis-Menten Equations": 1 +"Agricultural Science: Drone Technology and Satellite Imaging in Precision Farming and Crop Yield Prediction": 1 +"Philosophy: The Role of Quantum Physics in Understanding Consciousness and Free Will": 1 +"Astronomy 101: Dark Matter and Dark Energy: Unraveling the Mysteries of the Universe": 1 +"Optics: The Science Behind Holography: Understanding Light Fields and Laser Interference": 1 +"Cartography: Use of Geospatial Information Systems in Urban Planning and Disaster Management": 1 +"Environmental Science: Impact of Climate Change on Marine Ecosystems: A Deep Dive into Coral Reef Degradation": 1 +"Genetic Engineering: Advanced Gene Editing Techniques: CRISPR-Cas9 and Beyond": 1 +"Data Science: Predictive Modeling in Healthcare: Using Machine Learning for Disease Detection and Prevention": 1 +"Understanding Quantum Computing: The Role of Qubits in Modern Encryption": 1 +"Anthropology: Using DNA Sequencing and Machine Learning to Trace Human Migration Patterns": 1 +"Introduction to Python for Financial Modelling and Risk Management": 1 +"Environmental Science: Analyzing Climate Change through Geochemical Indicators and Ice Core Data": 1 +"Exploring Genetics: Unraveling the Mysteries of Mitochondrial DNA and Human Evolution": 1 +"Advanced Study of Cardiovascular Systems using Echocardiography, Computed Tomography and Intravascular Ultrasound": 1 +"The Role of Calculus in Predicting Stock Market Trends and Financial Modelling": 1 +"Stargazing and Cosmology: Observing Nebulae and Supernovae through Radio Telescopes and Spectral Analysis": 1 +"Ethics in AI: Navigating Privacy Concerns in Facial Recognition Technology and Ten Possible Strategies": 1 +"Chemistry of Cuisine: The Science of Fermentation and Molecular Gastronomy.": 1 +"Advanced Genetics: Mapping the Human Genome through CRISPR and Genetic Sequencing Techniques": 1 +"Practical Physics: Quantum Mechanics and the Double-Slit Experiment": 1 +"Mathematics in Nature: Understanding Fractals and the Fibonacci Sequence": 1 +"Robotics for Kids: Building and Programming with LEGO Mindstorms and Raspberry Pi": 1 +"Deep Dive into Astronomy: Black Holes, Quasars, and the Hubble Telescope": 1 +"Cognitive Psychology: Understanding Memory and Learning Through fMRI Studies": 1 +"Simple Science for Children: Learning about Photosynthesis and Plant Life Cycle Using Interactive Models": 1 +"Ethics in Modern Society: A Discourse on Kantian Ethics and Utilitarianism": 1 +"Strategic Thinking: Mastering Chess Strategies and Algorithms with Artificial Intelligence": 1 +"Advanced Game Design: Exploring World Building and Narrative Design in Unreal Engine": 1 +"Physics: Understanding the Impact of Gravitational Waves through LIGO Data Analysis": 1 +"Biology: Comparative Study of Plant Cell Structures using Cryo-Electron Microscopy": 1 +"Digital Photography: Exploring Landscape Techniques using Lightroom and HDR Processing": 1 +"Sociology: Analyzing Social Media's Influence on Society through Big Data and Python": 1 +"Linguistics: Unraveling Language Evolution through Corpus Analysis and Machine Learning": 1 +"Environmental Science: Investigating Climate Change Impact on Coral Reefs using Remote Sensing Techniques": 1 +"Literature: Deconstructing Postmodern Narratives using Structuralist Approaches and Textual Analysis": 1 +"Chemistry: An In-depth Study on Organic Reaction Mechanisms with Quantum Chemistry Simulations": 1 +"Art History: Interpreting Renaissance Art through the Lens of Socio-Political Changes using AI Image Recognition": 1 +"Education: Implementing Virtual Reality Tools for Enhancing Classroom Learning in STEM Subjects": 1 +"Biology: Exploring Genetic Sequencing through Computational Algorithms": 1 +"Music 305: Understanding Polyphony through Digital Synthesis: An In-depth Analysis of Electronic Music Production": 1 +"Calculus and Abstract Thinking: The Mathematical Principles of Fractals Explored through Nonlinear Equations": 1 +"The Athletic Aesthetics: Learning Football through Sculpture Design": 1 +"Advanced Astrophysics: Delving into Galactic Dynamics and Stellar Evolution": 1 +"Wellness Education: Utilizing Oculus Rift in Virtual Reality Yoga for Improved Balance and Flexibility": 1 +"Visual Arts: Cubism in Acrylics - Exploring the Interplay of Shape and Color": 1 +"Chemistry: The Impact of Chromatography and Centrifugation in Analyzing Biochemical Compounds": 1 +"Humanities: The Role of Conflict in Drama and Novels Explored through Online Critique Platforms": 1 +"Information Technology: Mastering Java for Big Data Processing and Visualization": 1 +"Advanced Mathematics: Exploring Quantum Mechanics with Linear Algebra and Probability Theory": 1 +"The Evolution and Influence of Art: Renaissance Techniques and their Impact on Modern Art": 1 +"Business Studies 101: Mastering Market Strategies Through Behavioral Economics and Predictive Analysis": 1 +"Film Studies: Revolutionizing Cinema through CGI and VR Technology in the Film Industry": 1 +"Computer Engineering: Harnessing the Potential of Deep Learning with TensorFlow and Python": 1 +"Cosmic Mysteries: Unraveling the Universe with the Hubble Space Telescope and Einstein's Theory of Relativity": 1 +"Creative Illustration: Designing Digital Art with Procreate and Adobe Illustrator Techniques": 1 +"Mastering Spanish: Enhancing Communication Skills with Duolingo and Rosetta Stone": 1 +"Physics 101: Quantum Mechanics and Wave-Particle Duality - Understanding Photons through Double Slit Experiment": 1 +"Sociology: Deep Dive into Social Justice Movements and Critical Theory": 1 +"Chemistry: Understanding Molecular Structures through Crystallography": 1 +"Physics: The Role of Quantum Physics in Superconducting Materials": 1 +"Physical Education: Kinematic Analysis of Swimming Techniques using Motion Capture Technology": 1 +"Art: The Impact of Digital Technology on Contemporary Sculpture": 1 +"Geology: Investigating Plate Tectonics through Seismic Data Analysis": 1 +"Mathematics: Exploring the Universe with Non-Euclidean Geometry": 1 +"Art: Deconstructing Postmodernism: The Influence of Pop Art": 1 +"Understanding Sociology: The Impact of Social Media on Public Opinion Formation": 1 +"In-depth Study of Computer Science: Cybersecurity Threat Analytics using Machine Learning": 1 +"Music: The Art of Sound Engineering in Modern Electronic Music Production": 1 +"Exploring Nutrition and Fitness: An In-depth Look into Intermittent Fasting and Garmin Wearables": 1 +"Technological Advancements in the Victorian Period: Steam Engines and Its Impact on British Industrial Language": 1 +"Sound Design Basics: Understanding Synthesizers and MIDI Controllers in Ableton Live": 1 +"Artistic Interpretations of Climate Change: Crafting Mother Earth's Portraits with Mixed Media Techniques": 1 +"Enhancing Writing Skills: Expanding Vocabulary and Sentence Structures with Quizlet Flashcards": 1 +"Foundations of Philosophy 101: Dissecting Fallacies and Syllogistic Reasoning": 1 +"Primary Education: Understanding Basic Astronomy through Sky Observations with Portable Planetariums ": 1 +"Decoding Ancient Civilizations: Hieroglyphic Interpretation and Comparative Semiotics": 1 +"Applied Mathematics: Predictive Modelling Techniques for Stock Market Analysis using R Programming": 1 +"Mastering Sound Engineering: Reverb Effects, Limiter Plugin, and Parametric EQ in Pro Tools Unveiled": 1 +"Chemistry: Organic Compounds and their Role in Pharmaceutical Development: An Insight into Drug Designing": 1 +"Artificial Intelligence: Machine Learning and its Impact on Financial Markets: Unleashing Predictive Analytics through Python": 1 +"Electronics: Understanding Ohm's Law & Circuit Analysis using Multisim": 1 +"Sculpture Appreciation: The Rise of 3D Printing and its Influence on Modern Sculpture Techniques": 1 +"Creative Writing: Exploring the Art of Storytelling in Digital Media using Interactive Narratives": 1 +"Environmental Science: The Role of Remote Sensing in Wildlife Conservation: A Deep Dive into Satellite Imagery Analysis": 1 +"Computer Programming with Python: Developing Interactive Games using Pygame Module": 1 +"Unleashing the Power of Virtual Reality in Medical Training": 1 +"Sound and Acoustics: An Exploration of Audio Engineering with Oscilloscopes": 1 +"Advanced Algebra: Quadratic Functions and Their Applications in Engineering using MATLAB": 1 +"Physics in Architecture: The Implication of Quantum Mechanics in Modern Building Designs": 1 +"Art: Exploring Botanical Illustrations with Watercolor and Ink": 1 +"Music Theory: Dissecting Jazz Improvisations: An In-depth Study of Miles Davis' Solos": 1 +"Art: Promoting Conservation through Wildlife Sketching Techniques": 1 +"Sport Psychology: Understanding Performance Anxiety through Quantitative Research and Cognitive-Behavioral Strategies": 1 +"Linguistics: The Power of Political Communication: Analyzing the Rhetoric of Presidential Speeches": 1 +"Exploring Global Energy Consumption: Using Python and R for Analyzing the Impact of Renewable Energy Sources": 1 +"The Impact of the Ducat: An Examination of Medieval European Trade Systems": 1 +"Geology: Tracing the Path of Continental Drift Using Satellite Imaging and Geospatial Analysis": 1 +"Environmental Engineering: The Role of Quantum Computing in Developing Eco-friendly Transportation Systems": 1 +"Physics for Teens: Grasping the Concepts of Force and Motion through Interactive Experiments": 1 +"Health Education: The Influence of Dietary Habits on Athlete Performance and Team Efficiency": 1 +"Cinema Studies: Exploring the Role of Sound Design in Augmented Reality Films": 1 +"Evolution of Art: The Impact of Digital Painting on Contemporary Art Styles": 1 +"Economics: Predictive Analysis of Global Currency Trends using the Monte Carlo Simulation": 1 +"Advanced Arithmetic: Budget Optimization for Personal Finance using Excel": 1 +"Information Technology: Python Programming and 3D Modeling for Novices": 1 +"Digital Design: Creating Immersive Environments using Augmented Reality Tools": 1 +"Understanding the Role of Hydroponics in Urban Farming using IoT Sensors": 1 +"Sound Engineering: The Harmony of Technology - The Revolutionary Role of Ableton in Music Production": 1 +"Astrophysics 101: Exploring the Mysteries of Black Holes and Neutron Stars": 1 +"Mastering Logic Pro X: An In-Depth Look into Digital Audio Workstations for Film Scoring": 1 +"Macroeconomics: Understanding the Dynamics of Inflation and Deflation in the Global Market": 1 +"Understanding the Chemistry behind Food Fermentation: Using pH Meters and Microbial Cultures": 1 +"World History: The Role of Maritime Trade Routes in the Spread of Cultures and Civilizations": 1 +"Advanced Geometry: Unveiling the Secrets of Fractals and Their Applications in Nature": 1 +"Sports Science: Enhancing Athletic Performance through VO2 Max Testing and Cardiovascular Training": 1 +"Synths and Samplers: The Influence of Electronic Sounds in the Evolution of Pop Music": 1 +"Literature 150: Exploring Symbolism and Irony in Contemporary Fiction - A Comparative Analysis": 1 +"Medical Innovations: The Impact of Nanotechnology on Drug Delivery and Disease Treatment": 1 +"Physics: Quantum Computing Principles with IBM Qiskit, TensorFlow Quantum and C++ Programming": 1 +"Understanding Cryptography: An In-depth Analysis of Hashing Algorithms in Cybersecurity": 1 +"The Steam Engine and the Iron Industry: Technological Advancements of the Industrial Revolution and its Influence on German Trade Language": 1 +"Advanced Spanish: Enhancing Vocabulary through Gamification using Duolingo and Anki": 1 +"Environmental Science: Wildfire Predictions with GIS, Remote Sensing, and Deep Learning Algorithms": 1 +"Secondary School Physics: Unraveling Gravitational Waves with Radio Telescopes and Spectrometers": 1 +"Directing for Film: Exploring the Emotional Impact of Sound Design with Pro Tools and Ableton Live": 1 +"Fashion and Globalization: Assessing the Socio-Economic Impacts of Fast Fashion through Supply Chain Analysis": 1 +"Data Visualization for Epidemiology: Tracking Disease Spread with Tableau, Python and Statistical Modelling": 1 +"Introduction to Programming 101: Understanding Graph Algorithms in R with RStudio": 1 +"Engineering Essentials: Understanding the Innovations Behind the Hyperloop Technology": 1 +"Literary Landscapes: Analyzing Narrative Structures in Postmodern Literature using Roland Barthes' S/Z": 1 +"Delving into JavaScript: The Influence of React.js on Modern Web Development": 1 +"Architectural Insights: The Effect of 3D Printing and Augmented Reality on Contemporary Building Design": 1 +"Physics in Focus: Advanced Quantum Mechanics: Unraveling the Mysteries of Quantum Entanglement with MATLAB": 1 +"Culinary Arts: Reimagining Thai Cuisine through Molecular Gastronomy and Sous-vide Techniques": 1 +"Applying Satellite Imagery in Meteorology for Comprehensive Climate Change Studies: An Introductory Geography Course": 1 +"Exploring Genetic Modification in Agriculture: A Study Using Genomic Selection and Marker-Assisted Selection": 1 +"Applying Satellite Imagery in Meteorology for Comprehensive Climate Change Studies: An Introductory Geography Course": 1 +"Physical Education: Parkour as a Discipline: Mastering the Art of Free Running.": 1 +"Advanced Mathematics: Exploring Calculus through the Perspective of Differential Equations": 1 +"Making the Most of Decision Trees in Data Science: Optimizing Netflix's Recommendation System for Indie Films": 1 +"Social Studies: Promoting Collaborative Learning using Trello and Slack": 1 +"Electron Microscopy: Its Role in the Evolution of Biological Research and Distinguishing Cellular Structures": 1 +"Ruby on Rails: Mastering Web Development Essentials": 1 +"Artificial Intelligence in Film: Uncovering Hollywood Budgeting Tactics through Machine Learning": 1 +"Physical Education: Soccer Tactics: Studying the Impact of Agility Training using Cone Drills": 1 +"Environmental Science: Grasping Ecology and Climate Change through Planet Earth's Biomes": 1 +"Literature: Refining Punctuation and Paragraph Formation with Innovative Software": 1 +"Physical Education: The Interplay of Balance and Motion: An Examination of Gymnastics": 1 +"Physics: The Evolution of the Quantum Mechanics: Insights from Quantum Computing": 1 +"Learning with Java: Nurturing Problem Solving Skills for Tech Enthusiasts": 1 +"The Impact of Global Warming on Marine Life: A Deep Dive into Coral Reefs and Possible Conservation Strategies": 1 +"Literature: Deciphering Economic Trends through a Study of Twentieth-Century Novels": 1 +"Sociology: An In-depth Look at Race, Class, and Gender in Popular Video Games": 1 +"Middle School Biology: Exploring the Human Digestive System through Virtual Reality and Immersive Technology": 1 +"Fine Arts: Abstract Landscape Painting in Oil and Watercolor: Palette Knife Techniques and the Use of Tonal Value": 1 +"Developing English Proficiency: Utilizing Podcasts, TED Talks, and Augmented Reality in Oral Comprehension": 1 +"Philosophy: The Role of Stoicism in Managing Anxiety: A Comparative Study": 1 +"Mastering Photoshop: Creative Design of Football Sports Imagery.": 1 +"Advanced Biology: The Role of DNA Sequencing in Understanding Genetic Disorders": 1 +"Cultural Anthropology: Exploring Global Cultures through Virtual Reality": 1 +"Advanced Calculus: Exploring Fractal Dimensions using Computer Graphics": 1 +"History: Analyzing the Impact of Climate Change on Civilizations Using Geospatial Technology": 1 +"Middle School Physics: Understanding the Principles of Electricity with Circuit Building Kits": 1 +"Acoustics: Investigating Piano Harmonics through Fourier Analysis": 1 +"Environmental Science: Monitoring Climate Change and Predicting Weather Patterns with Satellite Imagery": 1 +"Creative Writing: Crafting Engaging Narratives with Scrivener and Google Docs": 1 +"Physical Education: Exploring Body Movement through Yoga and Pilates": 1 +"Astrobiology: Uncovering Life Possibilities Beyond Earth using Spectroscopy and Planetary Geology": 1 +"Anthropology 102: Investigating the Role of Fire in Early Human Societies ": 1 +"Advanced: Decoding Global Climate Patterns through Meteorological Data Analysis using GIS Mapping and Satellite Imagery": 1 +"Literature 200: Exploration of Allegory in Classical Literature through Syntax and Semantics using Linguistic Approaches": 1 +"Political Science: Comprehending Diplomacy in the Digital Age with Case Studies on Cybersecurity Threats and Countermeasures": 1 +"Sound Engineering: Mastering Audio Mixing and Sound Design with Ableton Live Software": 1 +"Creative Design 101: Graphic Design for Beginners via Adobe Illustrator ": 1 +"Sociology: Examining the Influence of Television on Family Dynamics and Society ": 1 +"Neurobiology Essentials: MRI Imaging, 4D Visualization, and Neuronal Connectivity Analysis ": 1 +"Ecology: The Effect of Urbanization on Biodiversity - A Research Using GIS and Remote Sensing": 1 +"Quantum Physics: Unraveling the Universe with Particle Accelerators and Quantum Field Theory": 1 +"Exploring the Universe: Astrophysics and Stellar Evolution with 3D Models Using Blender": 1 +"Fundamentals of Cryptography: Mastering Encryption Algorithms with Python": 1 +"Rational Minds: Understanding Set Theory and Mathematical Induction Using R": 1 +"Psychology: Unraveling the Influence of Social Media on Human Behavior through Data Analysis": 1 +"Introduction to Hydrology: Understanding River Systems and Flood Predictions with GIS and ArcGIS": 1 +"Literature and Society: Analysis of Social Issues in Modern Novels Using Sociological Perspectives": 1 +"Creative Kids: Enhancing Creativity and Storytelling in Children through Animation with Adobe Animate": 1 +"Cybersecurity: Ethical Hacking and Network Security Essentials with Python and Wireshark": 1 +"Advancements in Agriculture: Innovations in Biofertilizers and Sustainable Farming": 1 +"Economics: Analyzing Global Trade Patterns with Currency Exchange Rates using Excel": 1 +"Deconstructing History: Morse Code, The Telegraph and their Impact on Global Communication": 1 +"Cryptocurrency and Morality: A Comprehensive Study of Privacy Challenges in the Digital World with Open Source and Ten Groundbreaking Strategies": 1 +"Physics: Delving into the Role of Newton's Laws in Space Exploration": 1 +"Health Science: The Influence of Yoga on Mental Wellbeing ": 1 +"Algebra: Understanding Variables and Equations with Algebra Tiles, Congruent Figures using Euclidean Geometry and Scientific Calculators": 1 +"The Spectrum of Sound: Its Effects on Acoustic Guitar Playing Techniques, An Examination of Chords and Scales Using the Fingerstyle Method and the Harmonics Principle": 1 +"Primary Science: The Significance of Plant Biology in Sustainable Agriculture": 1 +"Design and Innovation: User Experience with Sketch and InVision": 1 +"The Art of Engineering: A Perspective on Renewable Energy Technology": 1 +"Information Technology: Game Development and Narrative Design with Unity and Blender": 1 +"Modern Microscopy: The Role of Scanning Tunneling Microscopes in Nanotechnology and Material Science": 1 +"Computer Science: Enhancing Cybersecurity with Quantum Key Distribution and Post-Quantum Cryptography": 1 +"Theoretical Physics: Investigating String Theory through Superstring and M-Theory": 1 +"Digital Marketing 101: The Impact of Artificial Intelligence on Consumer Behavior and Market Trends": 1 +"Sociology: Understanding Social Dynamics through the Prism of Marx's Conflict Theory": 1 +"Astrophysics and Space Exploration: The Role of Spacetime Topology in the Evolution of the Universe": 1 +"The Transformation of Theatre: The Influence of Virtual Reality on Stage Design and Performance": 1 +"Metaphysics: Interpreting Reality through the Framework of Kant's Transcendental Idealism": 1 +"The Evolution of Film Editing: The Impact of Non-Linear Editing Systems on Cinematic Storytelling Techniques": 1 +"Fine Arts: The Intersection of Sculpture and Architecture in the Digital Age": 1 +"Advanced Physics: Application of Quantum Mechanics in Real-world Scenarios": 1 +"Social Science: Utilizing Statistics in Understanding Global Population Trends": 1 +"Literature Fundamentals: Deciphering Symbolism and Allegory in Gothic Fiction": 1 +"Java and GarageBand for Sound Engineering: Delving into Sound Waves and Audio Sampling for Sound Design": 1 +"Introduction to Web Development through Digital Marketing: Creating Engaging Web Pages using WordPress": 1 +"Piano Techniques Unveiled: Jazz Improvisation Mastery using Cubase and Melodyne": 1 +"Chemistry in Athletics: The Role of Nutrition in Enhancing Muscular Performance, A Study using Metabolism Testing": 1 +"Basic Geology: Understanding Plate Tectonics and its Impact on Earth's Landscape": 1 +"Language Studies: Comparative Analysis of Proverbs and Idioms in European Languages": 1 +"English 210.2: Exploring Metaphors in Dramatic Literature using Pentameter Analysis": 1 +"Chemistry: The Utilization of Spectrophotometry in Analyzing Chemical Reactions": 1 +"Advanced Musicology: The Influence of Digital Signal Processing in Contemporary Electronic Music": 1 +"Sociology: Understanding Social Stratification Through the Lens of Postmodern Urban Graffiti": 1 +"Economics: The Gold Standard and its Effects on International Trade During the 19th Century": 1 +"Dance: The Role of Choreography in Contemporary Ballet and Its Relation to Audience Perception": 1 +"Mathematics: The Relevance of Linear Algebra in Cryptography and Code-Breaking": 1 +"Historical Geography: The Impact of the Trans-Siberian Railway on Eurasian Trade Routes": 1 +"Virtual Reality & Sports Science: The Use of HTC Vive in Analyzing Biomechanics in Gymnastics": 1 +"The Golden Ratio in Landscape Photography: An Aesthetic Approach Using Rule of Thirds and Symmetry": 1 +"The Effect of Haptic Feedback in Microsoft HoloLens for Surgical Training Simulations": 1 +"Chemistry Basics: Exploring Organic Compounds and Molecular Structures through the Scope of Spectroscopy": 1 +"Advanced Robotics: Harnessing the Power of Artificial Intelligence, Deep Learning, and Neuromorphic Engineering in Autonomous Vehicles": 1 +"Applied Calculus: Solving Real-World Problems with Differential Equations and Optimization Techniques": 1 +"Introduction to Astronomy: Navigating the Cosmos through Stellar Spectroscopy and Superluminal Motion": 1 +"Evolution of Literature: Tracing the Influence of Socio-Cultural Changes on Novel Genres in the Digital Era": 1 +"Microbiology 101: Decoding the World of Microorganisms through the Lens of Metagenomics and Pathogenomics": 1 +"Political Science: The Impact of Social Media on Democracy and Political Campaigns: A Case Study of the 21st Century": 1 +"Sports Science: Mastering the Art of Swimming: Efficient Breathing Techniques and Hydrodynamic Principles": 1 +"Decoding Baseball's Aerodynamics through Computational Fluid Dynamics Analysis": 1 +"Quantum Mechanics: Understanding Quantum Entanglement and Superposition with the Use of Interferometry and Particle Duality": 1 +"The Influence of Quantum Physics in Fiber Optic Communication: An Overview": 1 +"Advanced Biology: The Evolution of Gene Editing Techniques and Their Role in Modern Medicine": 1 +"Digital Literacy: The Effect of Virtual Reality on Modern Education": 1 +"Understanding the Role of Endorphins in Sports Psychology: An Introduction": 1 +"Global Politics: The Impact of Cybersecurity on International Relations and Global Economy": 1 +"Music Education: The Integration of MIDI Controllers in Teaching Music Theory and Composition": 1 +"Artificial Intelligence: The Influence of Machine Learning on Climate Change Predictions": 1 +"High School Geometry: Implementing Golden Ratio in Architectural Design": 1 +"Aerospace Engineering: The Role of AI in Satellite Navigation and Communication": 1 +"Anthropology: Utilizing Python in Analyzing Ethnic Diversity and Social Dynamics.": 1 +"Marine Life Examination: Studying Oceanic Ecosystems using GIS and Satellite Imaging": 1 +"Fundamentals of Physics: Exploring Quantum Mechanics with the Aid of Quantum Computing": 1 +"Mastering Digital Art: Utilizing Adobe Illustrator and Photoshop for Comic Book Creation": 1 +"Deciphering Musicality: The Role of Music Theory and Digital Audio Workstations in Film Scoring": 1 +"Archaeology Unearthed: Exploring Ancient Civilizations Through Ground Penetrating Radar and 3D Printing": 1 +"Landscape Architecture: Mastering SketchUp for Designing Urban Green Spaces and their Social Impact": 1 +"Culinary Physics: Molecular Gastronomy and the Impact of Sous-Vide Cooking on Food Quality - An Investigation with Thermal Imaging": 1 +"Inorganic Chemistry: The Role of X-Ray Crystallography in Material Analysis": 1 +"Introductory Genetics: An Exploration of Human Evolution through Genomic Sequencing": 1 +"Advanced Cybersecurity 301: Ethical Hacking Techniques and Network Forensics with Kali Linux: A Comprehensive Study": 1 +"Physics: Understanding Quantum Mechanics through the Application of Schroedinger's Equation": 1 +"Environmental Science: Analysis of Climate Change Impact on Biodiversity using GIS and Remote Sensing": 1 +"Organic Chemistry: The Application of NMR Spectroscopy and Gas Chromatography in Perfume Formulation": 1 +"Business Analytics: Predictive Modeling and Big Data Analysis in E-commerce Customer Retention Strategy": 1 +"Kinematics: The Physics of Dance - Motion Analysis using Vector Algebra": 1 +"Literature: Gothic Fiction - Exploring Elements of Fear and the Supernatural through Psychoanalysis and Morphology": 1 +"Digital Art and Animation: The Art of Storytelling through 3D Rendering and Virtual Reality": 1 +"Ethics: The Influence of Artificial Intelligence on Moral Decision making in Modern Warfare": 1 +"Sociology: The Impact of Virtual Communities on Social Behavior and Interpersonal Relationships": 1 +"The Fusion of Calligraphy and Digital Design: A Study on Cultural Preservation in the Age of Technology": 1 +"Macroeconomics: The Impact of Globalization on Financial Markets through Quantitative Analysis": 1 +"Physics: The Interplay of Quantum Mechanics and Music Theory in Sound Wave Oscillations": 1 +"Environmental Science: The Influence of Solar Energy on Climate Change Mitigation": 1 +"Sports Psychology: Evaluating the Effects of Mindfulness Training on Athlete Performance": 1 +"Philosophy: A Comprehensive Examination of Ethical Dilemmas through the Lens of Artificial Intelligence": 1 +"Advanced Botany: Exploring Fungal Diversity through Metagenomic Analysis": 1 +"World History: The Impact of the Printing Press on the Renaissance and Cultural Exchange": 1 +"Literature: Cyberpunk: Deconstructing Technological Themes in Science Fiction": 1 +"Architecture: The Role of Geometric Patterns in Islamic Art: A Study using AutoCAD and 3D Modeling": 1 +"Culinary Science: The Chemistry of Fermentation in Traditional Cuisines": 1 +"Philosophy 205: The Role of Causality in the Advancement of Quantum Physics and Deterministic Thought": 1 +"Biology: The Evolution of Antibiotic Resistance: Case Studies and Implications for Modern Medicine": 1 +"Computer Science 305: Machine Learning Algorithms and their Application in Predictive Analytics using Apache Spark": 1 +"Pro Tools Mastery: An In-depth Analysis of Signal Processing and Advanced Automation Techniques in Modern Music Production": 1 +"Political Science: The Rhetoric of Climate Change: Environmental Policy and the Force of Carbon Pricing Models": 1 +"Green Technology: The Influence of Renewable Energy Systems on Global Carbon Emissions Reduction": 1 +"Business: Navigating Price Elasticity with Advanced Forecasting Models and Econometric Analysis Tools": 1 +"Anthropology: The Influence of Iron in the Development of Early Societies and Cultural Exchange": 1 +"Quantum Mechanics: Investigating the Dual Nature of Particles with Quantum Field Theory and the Uncertainty Principle": 1 +"Organic Chemistry: Deciphering Complex Carbon Structures through Infrared Spectroscopy and Mass Spectrometry.": 1 +"Quantum Mechanics: An In-depth Analysis of Particle-Wave Duality: Understanding Reality through the Double Slit Experiment": 1 +"Marine Ecosystems: A Comprehensive Look into Coral Reefs using Remote Sensing and GIS Technologies": 1 +"Graphic Design: The Fusion of Typography and Photography using Modern Editing Tools": 1 +"The Art of Narrative in Video Games: Examining Nonlinear Storytelling through Player Choices and Multiple Endings": 1 +"The Influence of Social Media on Contemporary Fashion Trends: An Analysis from the 2000s to the Present": 1 +"World Politics: Nuclear Energy and its Impact on International Relations and Security": 1 +"Chemistry: The Chemistry of Cooking - A Gourmet's Guide to Molecular Gastronomy": 1 +"Spotify's Algorithm: An Insight into Personalized Music Recommendation Systems for Digital Marketing": 1 +"Philosophy: Implementing the Socratic Method for Enhanced Critical Thinking and Communication": 1 +"Astronomy: The Study of Cosmic Phenomena - An Emphasis on Black Holes and Gravitational Waves": 1 +"Astrophysics: Unraveling Cosmic Mysteries through the Lens of Quantum Mechanics": 1 +"Surrealistic Painting: Embracing Ambiguity and Symbolism in Visual Narrative Development": 1 +"Musicology: The Evolution of Jazz and its Influence on Modern Pop Culture": 1 +"Advanced Genetics: Exploring Epigenetic Changes Through Single-Cell RNA Sequencing Techniques": 1 +"The Impact of Augmented Reality in Healthcare: Innovative Approaches for Improved Patient Care": 1 +"Natural Language Processing in Digital Marketing: Leveraging GPT-3 for Personalized Ad Campaigns": 1 +"Sports Medicine: Utilizing Biomechanical Analysis and Wearable Technology for Injury Prevention": 1 +"Geology: Exploring Plate Tectonics and Earthquake Predictions through Real-Time VR Simulations": 1 +"Secondary Education 401: Incorporating Google Cardboard in Virtual Reality for Interactive STEM Learning ": 1 +"Microbiology Essentials: Decoding the Microbial World – An In-Depth Study with Fluorescence Microscopy.": 1 +"The Art of Light: Harnessing Photographic Filters for Landscape Photography": 1 +"Decoding Cellular Processes: An In-depth Study of Mitochondrial Respiration and Biochemical Pathways": 1 +"The Language of Dance: Understanding Ballet Movements through the Lens of Physics": 1 +"Breaking Codes: The Impact of the Enigma Machine and Quantum Computing on Modern Cryptography": 1 +"Digital Citizenship: The Influence of Artificial Intelligence on Data Privacy and Security Measures": 1 +"Biology: The Significant Role of Symbiotic Relationships in Ecosystems": 1 +"Excel in Education: Maximizing Student Engagement through Interactive Dashboards": 1 +"Color and Perception: Exploring Vision Science through Spectral Sensitivity": 1 +"Physics in the Park: The Science Behind Roller Coaster Design - A Study of Centripetal Forces": 1 +"Beyond the Compass: The Impact of Earth's Magnetic Fields on Bird Navigation.": 1 +"Mathematics in Motion: Understanding Kinematics through the Lens of Calculus": 1 +"The Evolution of Gaming: A Study on the Influence of Virtual Reality and Augmented Reality in Game Design": 1 +"Chemistry of Modern Cuisine: Molecular Gastronomy and its Impact on the Culinary Arts": 1 +"Dance in Culture: Analyzing Traditional Rhythms Through the Perspective of Anthropology": 1 +"Deciphering the Human Mind: The Role of Neuroscience in Understanding Consciousness": 1 +"Decoding Climate Change: The Impact of Machine Learning on Environmental Studies": 1 +"Exploring the World of Entrepreneurship: The Influence of Social Media on Startup Success": 1 +"Quantum Computing and Cybersecurity: Shaping the Future of Information Technology": 1 +"Artificial Intelligence in Healthcare: The Potential of Deep Learning in Disease Diagnosis": 1 +"Exploring the Universe: The Role of the James Webb Space Telescope in Astronomy": 1 +"Advanced Astronomy: Utilizing Spectroscopy in the Identification of Exoplanets": 1 +"French Literature: Exploring Symbolism and Allegory in 19th Century Romantic Poetry": 1 +"Quantum Physics: Unraveling the Mysteries of Quantum Entanglement using Bell's Theorem": 1 +"The Impact of the Printing Press on Religious Reformation Movements during the Renaissance": 1 +"High School Accounting: Understanding Financial Statements through QuickBooks Software": 1 +"Aesthetics 205: Applying Golden Ratio in the Analysis of Modern Architecture": 1 +"Marine Biology and Acoustics: Evaluating the Impact of Sonar Technology on Cetacean Behavior": 1 +"Advanced Geometry: Applying Non-Euclidean Concepts in Virtual Reality Design": 1 +"Cybersecurity Strategies: Neutralizing DDoS Attacks using Intrusion Detection Systems in Virtual Networks": 1 +"Artificial Intelligence: Exploring the Role of Machine Learning Algorithms in Predictive Analytics.": 1 +"Understanding Neuropsychology: An Exploration of the Human Brain and Behavior": 1 +"Art History 101: Decoding Symbolism in Renaissance Paintings": 1 +"Advanced C++ Programming: Harnessing the Power of Boost Libraries for Efficient Coding": 1 +"Holistic Health: The Symbiosis of Yoga and Ayurveda - Tracking Well-being with Fitness Trackers": 1 +"Machine Learning with Python: A Comprehensive Guide to Building Neural Networks": 1 +"Complexities in Cryptography: A Closer Look at Asymmetric Encryption and RSA Algorithm": 1 +"Innovative Uses of Tesla Autopilot: Enhancing Autonomous Vehicles through Lidar Technology: An Analysis of 10 Case Studies": 1 +"Creative Writing: Employing Digital Platforms for Poetry and Prose Composition": 1 +"IoT and Cybersecurity: The Influence of Internet of Things and Cybersecurity Measures on Data Privacy": 1 +"Marine Biodiversity: Investigating Underwater Ecosystems with ROV Technology: 10 Case Studies": 1 +"The Clinical Implications of Biofeedback and Virtual Reality in Physical Therapy: A Comprehensive Health Technique Review": 1 +"Finance: The Influence of Cryptocurrency on Global Economy and Sustainable Development ": 1 +"The Role of Relativity Theory in Astrophysics and Its Applications": 1 +"Practical Application of Linear Regression in R with Predictive Modeling using Neural Networks": 1 +"Sociology: Impact of Emotional Intelligence on Interpersonal Relationships in Contemporary Literature": 1 +"Finance: The Economic Consequences of E-commerce Industry Through Predictive Analytics and Big Data": 1 +"Art History: Discovering Surrealism: An In-depth Study of Dali's Use of Symbolism": 1 +"The Information Age: The Influence of Artificial Intelligence on E-Commerce and Global Business": 1 +"Neuroscience 210: Language and Brain - A Cross-disciplinary Approach with Cognitive Mapping and Neuro-linguistic Programming Techniques": 1 +"High School: Grasping Environmental Science through Comparative Ecosystem Studies, Geographical Data, and Climate Change Theory": 1 +"Digital Art: Using Adobe Illustrator for Animation in Gaming Industries": 1 +"Geological Studies: Application of LiDAR Technology in Seismic Risk Assessment": 1 +"Literary Analysis: The Role of Intertextuality in Postmodern Novels: A Literature Course": 1 +"Data Science: Leveraging Big Data and Machine Learning for Predictive Health Analytics in Hospitals": 1 +"Cognitive Science: Mapping Emotions using the Human Connectome Project": 1 +"Information Security: Protecting Digital Banking with Blockchain Technology: A Study of its Economic and Sociopolitical Impact": 1 +"Environmental Science: Assessing the Role of AI in Climate Change Modeling in Coastal Ecosystems": 1 +"Chemistry: Understanding the Impact of Nanotechnology in Drug Delivery Systems - A Study on Liposomes": 1 +"Economic Evaluation of Water Scarcity on Food Security: A Case Study Approach with Policy Recommendations": 1 +"Psychology of Creativity: Exploring the Intersection of Music and Cognitive Neuroscience with fMRI Studies.": 1 +"Advanced Botany: Unraveling Plant Genetics through DNA Sequencing and Chromosome Analysis": 1 +"Physics: Understanding Quantum Mechanics through the Double Slit Experiment": 1 +"Elementary Education 410: Enhancing Reading Comprehension with Augmented Reality and Interactive E-books": 1 +"Cognitive Psychology: Exploring Human Perception and Memory through fMRI Studies": 1 +"Advanced Calculus: Understanding Fractal Geometry through Mandelbrot Sets and Chaos Theory": 1 +"Social Media Marketing: Utilizing TikTok for Brand Awareness and Engagement Strategies": 1 +"Computer Programming 101: Understanding Algorithm Design with Java, Eclipse, and Logic Gates": 1 +"Astrophysics: Uncovering Galactic Secrets through Gravitational Lensing and Dark Matter Studies": 1 +"Elementary Health Education: Understanding Nutrition and Food Groups through Interactive Games and Meal Planning": 1 +"Geology: Interpreting Earth's History through Fossil Records and Stratigraphic Analysis": 1 +"Advanced Astrobiology: Understanding Life in the Universe through Exoplanet Research": 1 +"Chemistry: The Role of Catalysts in Industrial Applications: A Focus on Haber Process": 1 +"World Literature: The Impact of the Renaissance on Modern Poetry: A Comparative Study": 1 +"Artificial Intelligence: Exploring Machine Learning and Neural Networks in Predictive Analysis": 1 +"Physics: The Science of Waves: An In-depth Study of Seismology and Earthquakes": 1 +"Global Fashion: Analyzing the Influence of Victorian Era on Contemporary Design": 1 +"Advanced Biomechanics: The Role of Kinematics in Human Motion Analysis": 1 +"Environmental Science: Climate Change and its Impact on Biodiversity: A GIS Approach": 1 +"Advanced Philosophy: Exploring Existentialism through the Works of Jean-Paul Sartre": 1 +"Economics: The Influence of Behavioral Economics on Market Trends and Consumer Behavior": 1 +"Biology: Understanding Human Genome through Bioinformatics and Machine Learning": 1 +"Computer Science: The Impact of Quantum Computing in Cybersecurity and Encryption": 1 +"History: The Influence of the Silk Road on Trade and Cultural Exchange in Ancient Civilizations": 1 +"Chemistry: Exploring the Chemistry of Taste and Smell through Molecular Gastronomy": 1 +"Digital Marketing: Utilizing Instagram Reels for Brand Promotion and User Engagement": 1 +"Secret Communications: The Historical Impact of Morse Code and Enigma Machine on World War II": 1 +"Geography: Analysing World Climate Patterns through Satellite Data and Computational Modeling": 1 +"Health Science: The Impact of Mediterranean Diet on Heart Health: A Genetic Approach": 1 +"Engineering: Mastering Structural Design with Finite Element Analysis using SolidWorks": 1 +"Fine Arts: The Transformation of Sculpture in Different Epochs: From Stone Age to Modern Art.": 1 +"Advanced Mathematics: Utilizing Fourier Analysis in Audio Signal Processing": 1 +"Python for Finance: An Introduction to Algorithmic Trading using Python, Pandas, Quantopian, and Machine Learning Techniques": 1 +"Cinema Studies: Exploring Lighting Techniques in Film Production and Cinematography ": 1 +"Proteomics Data Analysis with Python and MATLAB: Advanced Bioinformatics using Cloud Computing": 1 +"Mastering Japanese: Enhancing Language Proficiency through Interactive Storytelling using Rosetta Stone and Memrise": 1 +"Astronomy and the Environment: The Influence of Solar Activity on Meteorological Phenomena and Climate Change": 1 +"Introduction to Sports Analytics: Evaluating Player Performance using Machine Learning and Data Visualization": 1 +"Ethics for Young Minds: Exploring Moral Decision-Making using Aristotle's Virtue Ethics": 1 +"Cognitive Psychology: The Visual System, Optical Illusions, and the Role of Perception in Decision-Making": 1 +"The Impact of Social Media Platforms on Mental Wellbeing: An In-depth Psychology and Sociology Study": 1 +"Incredible Insects: An Entomological Journey into the World of Bees and Ants": 1 +"Artificial Intelligence and Sports Science: Optimizing Training Regimes using Neural Networks and Python": 1 +"Chemistry Unveiled: Decoding Chemical Bonds with Spectroscopy and Quantum Mechanics": 1 +"Mastering C++: Streamlining Software Development with Exception Handling and Agile Methodology": 1 +"Young Astronomers: Exploring the Mysteries of Space through Telescope Building": 1 +"Secondary Education 410: Engaging Students in Critical Thinking with Interactive Smartboards and Quizlet": 1 +"Advanced Quantitative Finance: Risk Modeling and Portfolio Optimization using Stochastic Calculus and Python": 1 +"Emergency Medical Skills: Advanced Life Saving Techniques using Automated External Defibrillators and CPR": 1 +"Marine Biology: Understanding Coral Reef Ecosystems through Scuba Diving and Drone Mapping": 1 +"Linguistics and Technology: Analyzing the Impact of Speech Recognition Software on Modern Communication.": 1 +"Advanced Biology: Exploring the Effects of Classical Music on Plant Growth through Pulsed Electromagnetic Field Studies": 1 +"Computer Science Fundamentals: Enhancing Programming Skills with Python on Raspberry Pi": 1 +"Artistic Geometry: The Use of Fractals in Digital Art Creation": 1 +"Financial Analysis in Professional Sports: A Comprehensive Look at Statistical Modeling and Predictive Analytics": 1 +"Health Advocacy: The Role of Mobile Apps in Promoting Mental Health Awareness": 1 +"Organic Chemistry: The Application of Mass Spectrometry in the Analysis of Essential Oils": 1 +"Astrophysics: Examining the Influence of Magnetic Fields on Star Formation using Radio Astronomy": 1 +"Mathematical Biology: Investigating Genetic Algorithms, Population Dynamics, and the Theory of Evolution": 1 +"Audio Engineering: Creating Immersive Soundscapes with Digital Audio Workstations and Virtual Reality Technology": 1 +"Civil Engineering: Utilizing CAD and Finite Element Analysis in the Design of Eco-Friendly Buildings.": 1 +"The Intersection of Environmental Policy and Blockchain: A Exploration of Global Warming Through Cryptocurrencies": 1 +"Advanced Literacy Techniques: Utilizing Adobe Illustrator, Prezi and Google Slides for Effective Graphic Novels": 1 +"Data Science: Predictive Algorithms in Healthcare using R and TensorFlow": 1 +"Theatre Arts: The Impact of Lighting Designs in Stage Performances for Live Audiences": 1 +"Sociology: The Use of Monte Carlo Simulations in the Analysis of Social Networks with Regression Models in SAS": 1 +"Digital Geography: Understanding Earth's Climate Changes through Data Visualization": 1 +"Chemistry: The Science of Taste and Flavor: An Investigation of Food Chemistry with Molecular Gastronomy": 1 +"Philosophy: The Evolution of Ethical Thought through the Study of Morality Development": 1 +"Econometrics: Predicting Economic Cycles Using R and SPSS": 1 +"Physical Education 210: Swimming and Aquatic Fitness Incorporating Hydrotherapy Concepts": 1 +"Artificial Intelligence: Predictive Algorithms and Machine Learning using Python and TensorFlow": 1 +"Sociology: The Impact of Social Media Algorithms on Global Politics and Society": 1 +"World Literature: Deconstructing Narrative Structures in Novels using Atlas.ti Qualitative Data Analysis Software": 1 +"Sports Science: Enhancing Athletic Performance: Studying Kinematics and Kinetics through 3D Motion Capture Systems": 1 +"Advanced Study of Cardiac Function using Echocardiography, Electrocardiogram, and Cardiac Catheterization Procedures": 1 +"Creating Cinematic Scores: Utilizing Orchestral Harmonies in Ableton Live with Apollo Twin Audio Interface": 1 +"Quantum Chemistry: In-depth Study of Molecular Orbital Theory and Quantum Mechanics using Gaussian Computational Chemistry Software": 1 +"Microsoft Power BI and Excel: Transforming Financial Data Analysis into Engaging Business Visualizations": 1 +"Astrophysics: Detailed Exploration of Stellar Spectroscopy: Analyzing Starlight using Telescopic Imaging and Spectral Classification ": 1 +"Biology: Understanding Genetic Coding through Bioinformatics using Machine Learning and R Programming": 1 +"Global Politics: The Impact of Cryptocurrency on International Relations and Sovereignty": 1 +"Chemistry of Art: Understanding the Interaction of Pigments and Binders through Infrared Spectroscopy": 1 +"The Influence of Geometry in Modern Architecture: A Study of Symmetry and Golden Ratio in Building Design": 1 +"Business 101: Navigating the World of E-commerce, Dropshipping, and Online Retail": 1 +"Physical Therapy: Utilizing Biofeedback and Virtual Reality in Stroke Rehabilitation": 1 +"Computer Science: Unraveling the Mysteries of Quantum Computing and Cryptography using Haskell": 1 +"Applied Calculus: Modeling the Spread of Epidemics using Differential Equations and R": 1 +"Biology: The Role of Photosynthesis in Biofuel Production": 1 +"The Impact of Steam Engine on French Economic Language: The Rise of Railways during the Victorian Era": 1 +"Primary School Geography: The Changing Landscape of Renewable Energy Sources and Their Global Impact": 1 +"Physics Mysteries: Exploring Quantum Mechanics through Particle Collision Experiments and Feynman Diagrams": 1 +"Sports Nutrition Fundamentals: Enhancing Performance with Dietary Analysis using NutriSurvey and Macronutrient Timing": 1 +"Classical Music Appreciation: Interpretation of Orchestral Scores using Music Software and Beethoven Symphonies": 1 +"Biology: The Role of Genetics in Ecosystem Conservation and Biodiversity": 1 +"Outdoor Education: Understanding Topography for Strategic Camping and Hiking using Geographic Information Systems": 1 +"Vocabulary Enhancement: Acquiring Advanced French Words using Memrise and Semantic Web": 1 +"Writing Skills Development: Utilizing Google Docs, Quizlet, and Padlet for Dynamic Paragraph Construction": 1 +"History: Deciphering Ancient Civilizations through Archaeological Finds and the Code of Hammurabi": 1 +"Secret Communications: The Progression of Diplomatic Codes from the Caesar Cipher to Modern Day Cryptography": 1 +"Statistics Foundations: Exploring Correlation and Regression Analysis using RStudio and the Central Limit Theorem": 1 +"Advanced French: Improving Oral Proficiency with Role-Play Techniques using Linguistica App": 1 +"Physics: Exploring Quantum Mechanics and Relativity Theory with Wolfram Alpha and Coursera's Simulation Tools": 1 +"Exploring Basketball Analytics with R, MATLAB, and Excel: A Comprehensive Guide to Data-Driven Sports Strategy": 1 +"Mastering Character Development: Advanced English Course on Novel Writing Using Scrivener and ProWritingAid": 1 +"Artificial Intelligence in Healthcare: Patient Data Analysis and Prediction Using TensorFlow and Scikit-Learn": 1 +"Environmental Science: Understanding Global Warming through Climate Modeling using Python and ArcGIS": 1 +"Music Theory: Exploring the Relationship between Emotional Responses and Chord Progressions using Ableton Live": 1 +"Psychology: Analyzing Human Behavior through Social Experiments and Predictive Modeling using SPSS and RapidMiner": 1 +"Advanced Chinese: Enhancing Business Negotiation Skills through Cultural Studies using Rosetta Stone": 1 +"Structural Engineering: Understanding Bridge Design with Finite Element Analysis Using AutoCAD and MATLAB.": 1 +"Physics: The Role of Quantum Mechanics in Developing Advanced Microprocessors": 1 +"Business Management: Using Big Data to Optimize Supply Chain Management": 1 +"Social Anthropology: Examining the Effect of Pop Culture on Global Societal Attitudes": 1 +"Software Development: Enhancing AI Capabilities with Swift and Prolog": 1 +"Immersive Technologies: Augmented Reality in Medical Training: An Overview of Microsoft HoloLens ": 1 +"Creative Thinking: Enhancing Spatial Intelligence with 3D Puzzle Games for Early Learners": 1 +"Sports Science: Soccer and Biomechanics: A Look at Motion Capture Technology in Performance Analysis": 1 +"Circuit Theory: Exploring Analog Systems with PSpice ": 1 +"Geometry: Understanding Shapes and Spatial Relations through Geometric Transformations": 1 +"Global Studies: Satellite Imagery and its Role in Understanding Climate Change Impacts: International Policies and Sustainable Solutions": 1 +"Global Politics: The Cold War and the Emergence of Bipolar World Order": 1 +"Financial Literacy: A Comprehensive Guide to Cryptocurrencies for Young Adults": 1 +"Applied Science: Predicting Seismic Activities Using MATLAB, Machine Learning, and Neural Networks": 1 +"Psychology: Understanding Human Behavior through Social Cognition and Neuropsychological Tests": 1 +"Intermediate Coding: Java for Machine Learning using Scikit-Learn": 1 +"Visual Arts: Journey into Surrealism: A Comprehensive Analysis of Dali's Use of Symbolism": 1 +"Spanish: Culture and Sustainability - An Examination of Green Practices in Hispanic Literature": 1 +"Engaging with Statistics: Predicting Game Outcomes in Basketball Using Regression Analysis": 1 +"Chemistry: Unraveling Molecular Dynamics through Simulation and Quantum Mechanics using Matlab": 1 +"The Healing Power of Virtual Reality Therapy: A Ten-Step Mental Health Education Program": 1 +"Cybersecurity: Effective Strategies for Protecting Personal Information on the Internet": 1 +"Visual Arts: Mastering the Techniques of Abstract Expressionism in Watercolor": 1 +"Advanced Genetics: Exploring Gene Therapy and CRISPR-Cas9 Techniques for Personalized Medicine": 1 +"Mathematical Physics: Solving Complex Problems in Quantum Mechanics using Linear Algebra": 1 +"Biology: An In-depth Examination of Evolutionary Biology Using Genomic Data and Bioinformatics": 1 +"Sustainable Engineering: Designing Eco-friendly Infrastructure Using Recycled Materials": 1 +"Astrophysics: Understanding the Universe - The Science Behind Black Holes and Gravitational Waves": 1 +"Philosophy of Science: Critical Analysis of Scientific Methodologies using Epistemological Principles": 1 +"Global Health: Studying the Impact of Climate Change on Public Health using Geographic Information Systems": 1 +"Artificial Intelligence: Exploring Deep Learning Algorithms Through Convolutional Neural Networks in Computer Science": 1 +"Quantum Physics: Understanding Wave Particle Duality through the Double Slit Experiment": 1 +"The Role of Boltzmann's Constant in Statistical Thermodynamics: A Study through Entropy and Microstates": 1 +"Computer Engineering: Enhancing User Experience with Gesture Recognition in Augmented Reality Systems": 1 +"Cognitive Science Perspectives: Understanding Human Perception through EEG, Eye Tracking, and fMRI": 1 +"Data Analysis in Sports Science: Utilizing R, SQL and Hierarchical Clustering for Performance Improvement": 1 +"Organic Chemistry: Comprehensive Study of Reaction Mechanisms through Q-Chem Software, Resonance Theory and the Markovnikov's Rule": 1 +"Childhood Cognitive Development: Decoding Brain Plasticity through EEG, NIRS and the Use of Neurofeedback": 1 +"Machine Learning in Health Care: A Deep Dive into Predictive Analytics using PyTorch": 1 +"Culinary Physics: Exploring Sous-vide Cooking and its Impact on Texture and Flavor": 1 +"Astrophysics Insights: Gravitational Waves and the Secrets of the Universe through the LIGO Observatory": 1 +"Biological Science: Marine Biology and Inter-species Communication: An Introduction to Dolphin Linguistics": 1 +"Advanced Yoga Techniques: Enhancing Mind-body Coordination with Wearable Biofeedback Devices": 1 +"Political Science 101: Understanding the Role of Media in Shaping Public Opinion through Data Analysis": 1 +"Environmental Science: Analyzing the Impact of Climate Change on Agriculture using Geospatial Technology": 1 +"Architectural Studies: Application of Fractal Geometry in Modern Architecture: A Practical Approach with 3D Printing": 1 +"Psychology: Decoding Human Behavior through fMRI Studies and Eye-tracking Techniques": 1 +"Physics 220: Quantum Mechanics and Particle Interactions: A Journey through Quantum Field Theory": 1 +"Wildlife Conservation: Practical Training in Animal Tracking and Emergency First-aid in Wilderness": 1 +"Advanced Pro Tools Techniques: An In-depth Study of Mixing Techniques and Virtual Instruments in Music Production": 1 +"Computational Logic: Mastering Boolean Algebra with Microprocessor Architecture and XOR Gates": 1 +"Archaeology: The Impact of Agricultural Innovations on the Societal Structures of Prehistoric Cultures": 1 +"Advanced Genetics: Navigating the Intricacies of CRISPR-Cas9 and its Implications for Human Gene Editing": 1 +"Advanced Athletics: Understanding the Biomechanics of Pole Vaulting and Maximising Performance through Kinetic Analysis": 1 +"Cosmology for Kids: Grasping the Universe with Hubble's Law and Galaxy Clustering": 1 +"Computer Programming and Visual Design: Exploring the Synergy of Python and Adobe Illustrator": 1 +"Musicology: The Role of the Harp in Irish Folklore and Traditional Musical Narratives": 1 +"Psychology 205: Evaluating the Impact of Rock Music on Emotional Processing using EEG and Functional Connectivity Analysis": 1 +"Understanding the Correlation between Ballet Choreography and Rhythmic Accuracy in Violin Performance": 1 +"Sound Engineering: Utilizing Logic Pro X for Composing Complex Rhythms in Jazz Drumming": 1 +"Virtual Reality and Oculus Rift: Reimagining the Kinesthetics of Basketball Shot Mechanics": 1 +"Digital Ethnography: Applying VR to Explore Cultural Practices in Virtual Communities": 1 +"Maritime Studies: Utilizing LiDAR Technology in Mapping Underwater Archaeological Sites": 1 +"Secondary Education 410: Integrating Virtual Reality and Podcasting Tools in Collaborative Learning": 1 +"Classical Literature: Decoding Allegories in Dante's Divine Comedy through Contextual Analysis": 1 +"Fiscal Dynamics: Evaluating the Use of Blockchain in Streamlining Financial Transactions": 1 +"Agricultural Science: Applying AI in Predicting the Yield of Genetically Modified Crops": 1 +"Mastering Java: An In-depth Guide to Android Development, Web Automation with Selenium, and Data Analysis with Apache Spark": 1 +"Oral Health: Implementing AI in Early Detection of Oral Cancer": 1 +"Military History: The Impact of Submarine Warfare in World War II": 1 +"Astrophysics: Black Holes and Their Role in Galactic Evolution": 1 +"Quantum Physics: Understanding the Basics of Quantum Entanglement and Superposition": 1 +"World History: The Impact of the Silk Road on the Development of Global Trade Networks": 1 +"The Power of Metaphor in Poetry: An Examination of Visual Imagery in Modernist Literature": 1 +"Biomedical Engineering: Innovative Solutions in Prosthetics with 3D Printing Technology": 1 +"Astronomy: Investigating Cosmic Phenomena through the Lens of Radio Telescopes": 1 +"Advanced Environmental Science: Climate Change Modeling Using Machine Learning and GIS": 1 +"Mastering Animation in Blender: A Comprehensive Guide to Rigging and Character Modeling": 1 +"Philosophy: Understanding Existentialism - A Deep Dive into Nietzsche's Concept of Eternal Recurrence": 1 +"The Chemistry of Everyday Life: Identifying Organic Compounds in Household Products using Gas Chromatography-Mass Spectrometry": 1 +"Geopolitics: The Influence of Oil and Gas Reserves on International Relations and Conflict Resolution": 1 +"Young Astronomers: Exploring the Universe through Telescope Construction and Observation": 1 +"Music Theory: Discovering the Science of Sound Waves in Acoustic Instruments": 1 +"Literature: Unraveling the Mystery: Analyzing Foreshadowing Techniques in Crime Fiction": 1 +"Foreign Languages: Decoding Hieroglyphics - Understanding Ancient Civilizations through Scripts": 1 +"Physical Education: Exploring Cardiovascular Health through Heart Rate Monitors and Exercise": 1 +"Mathematics: Probability in Game Theory - The Role of the Monty Hall Problem": 1 +"Finance 101: Grasping Personal Financial Management through the Time Value of Money and Budgeting": 1 +"Philosophy: Understanding Human Nature through Plato's Allegory of the Cave": 1 +"Visual Arts: Decoding Renaissance Art through the Study of Linear Perspective": 1 +"English Grammar: Enhancing English Comprehension through the Study of Sentence Diagramming.": 1 +"Chemistry: Exploring Chemical Thermodynamics through the Lens of Metallurgy": 1 +"Harnessing Artificial Intelligence in Predictive Modeling for Weather Forecasting: A Deep Learning Approach": 1 +"Physics: Deciphering the Phenomena of Light Refraction using Spectroscopy": 1 +"Quantum Computing and its Impacts: A Deep Dive into Quantum Algorithms and Cryptography": 1 +"Sociology: Examining Cultural Metaphors in Music and Visual Arts in Contemporary Society": 1 +"Applied Mathematics: Predictive Modeling with Ordinary Differential Equations in Python: A Deep Dive into Time Series Analysis": 1 +"The Influence of Augmented Reality in Revitalizing Traditional Board Games: An In-Depth Look at Scrabble": 1 +"Impact of Silicon Photonics on High-Speed Data Transfer in Computer Engineering": 1 +"Exploring Graphic Design through Programming: An Intermediate Course on Illustrator's Blend Modes and Shape Builder Tools": 1 +"World Literature: Understanding Political Climate through Satirical Commentary in Modern Plays": 1 +"Physics: Principles of Light and Shadow in 3D Modeling": 1 +"Literature: The Role of Allegory in Environmentalist Novels and Essays": 1 +"Mozart's Works: An Examination of Musical Techniques Using the Piano Sonata and Audacity Software": 1 +"Business Communication: Strengthening Interpersonal Relationships through LinkedIn Messaging in the Modern World": 1 +"Advanced Botany: Investigating Animal Behavior using Scanning Electron Microscopy and Genomic Analysis": 1 +"Kinematics and the Cardiovascular System: The Impact of EKG and Biofeedback on Human Performance": 1 +"Music Theory: Mastering Harmony and Cadence with Ableton Live DAW Software": 1 +"Microbiology: Discovering the Universe of Bacteria and Viruses through Genetic Engineering": 1 +"Enhancing Business Analytics: A Comprehensive Study of Recursive Algorithms, Cloud Computing, Google Cloud Platform, and Convolutional Neural Networks": 1 +"Utilizing Google's Natural Language Processing for Comparative Analysis of Irony in Contemporary Poetry: A Computational Linguistics Approach": 1 +"Advanced Quantum Mechanics: A Deep Dive into the Schrödinger Equation and its Applications in MATLAB": 1 +"Art: The Impact of Urban Landscapes on Modern Graffiti Styles: A Study through Spray Paint Techniques": 1 +"Data Science in Agriculture: Predicting Crop Yield using Machine Learning and IoT Sensors": 1 +"Literature Review: The Role of Industrial Revolution in Charles Dickens' Novels": 1 +"Neuropsychology: Utilizing Functional MRI and Positron Emission Tomography in Understanding the Human Mind": 1 +"Archaeology: The Stone Hammer in Perspective: The Influence of Early Metallurgy on the Development of Weaponry": 1 +"Applied Genomics: Exploring Phylogenetic Analysis using Markov Chain Monte Carlo and Bioinformatics Tools": 1 +"Art: Capturing the Movements of Ballet through Charcoal Drawing and Pastel Shading": 1 +"Computer Programming: Introduction to Object-Oriented Programming using Python and Turtle Graphics": 1 +"Exploring Global Migration Patterns and Social Integration through Augmented Reality: An Anthropology Perspective": 1 +"Mathematics: Modeling Epidemics using Differential Equations and Python": 1 +"Cosmology: A Quantum Approach to Understanding Black Holes and Dark Matter": 1 +"Chemistry: Analyzing Atmospheric Composition and Climate Change through Mass Spectrometry": 1 +"Decoding Neural Networks: Machine Learning with Python, PyTorch, Matplotlib Visualization, and Numpy": 1 +"Marine Biology: Understanding Coral Reefs Ecosystems through Isotopic Analysis": 1 +"English 202: An In-depth Study of Metaphor and Hyperbole in Modern Drama and Film Scripts": 1 +"Songs of Revolution: The Influence of Broadcasting Technology on Political Movements": 1 +"Physics of Flight: Exploring Aerodynamics through Wind Tunnel Experiments": 1 +"Astronomy: Unraveling the Mysteries of Exoplanets using Kepler's Laws of Planetary Motion": 1 +"Philosophy: An Introduction to Epistemology using Syllogistic Logic": 1 +"Chemistry: Unlocking the Mysteries of Organic Compounds through Nuclear Magnetic Resonance": 1 +"Physics: Quantum Mechanics and its Role in Modern Telecommunication Systems": 1 +"Cultural Anthropology: The Influence of K-pop on Global Youth Culture and its Spread through Social Media": 1 +"Astronomy: The Search for Exoplanets using Radial Velocity and Transit Photometry Techniques": 1 +"Digital Art: The Use of Procreate in Creating Immersive Virtual Reality Environments": 1 +"Cognitive Science: Unraveling the Secrets of Visual Perception through Functional Magnetic Resonance Imaging (fMRI)": 1 +"Agriculture: The Role of Precision Farming in Sustainable Agriculture and its Implementation using GIS and Remote Sensing": 1 +"Statistics: Advanced Predictive Analytics Using Machine Learning and R Language": 1 +"Global Finance: Understanding the Dynamics of Cryptocurrency and Blockchain through Hash Functions and Digital Signatures": 1 +"Elementary Science: Introducing the Principles of Magnetism through Hands-on Experiments and Interactive Learning Tools.": 1 +"Biology: Understanding Genetic Structure through CRISPR Technology": 1 +"Astronomy: Discovering the Universe's Mysteries Using Radio Telescopes": 1 +"Geology: Uncovering Earth's History with Carbon Dating Techniques": 1 +"Physical Education: The Role of Smart Clothing in Tracking and Improving Athletic Performance": 1 +"Physical Education: Enhancing Soccer Skills with AI and Motion Capture Technology": 1 +"Dietetics and Health Science: Exploring the Keto Diet and its Monitoring through Biosensing Devices": 1 +"The Influence of Virtual Reality on the Progression of Video Gaming: An In-depth Analysis of Second Life": 1 +"Physical Education 210: Enhancing Performance with Martial Arts Training Techniques": 1 +"Media Studies: The Effect of Streaming Platforms on Film Consumption and Global Cinema Culture": 1 +"Organic Chemistry: Understanding Molecular Structure and Reaction Mechanisms Using Gaussian Software": 1 +"Journey in Mathematics: Mastering Calculus for Cryptography": 1 +"Chemistry Demystified: Comprehending the Periodic Table through Spectroscopy Techniques": 1 +"Fintech & Information Security: Protecting Banking Transactions from Online Threats - Approach 7": 1 +"Biology: Deciphering Genetics and Heredity through DNA Sequencing and CRISPR Technology": 1 +"Advanced Econometrics in R: Predictive Modeling, Regression Analysis, and Neural Networks": 1 +"Astronomy: Mapping Constellations and Nebulae using Telescope Observations and Stellar Cartography": 1 +"Art: Creating Digital Masterpieces with Adobe Photoshop": 1 +"Sociology for Teens: Understanding Social Structure, Culture and the Concept of Socialization": 1 +"Leveraging Data Mining for Marketing Strategies: A Business Analytics Approach using Power BI and Big Data Analysis": 1 +"Wireless Communication Technology: A Study on Satellite and Ground Station Interaction in Computer Science": 1 +"Advanced Quantum Physics: Utilizing Tensorflow for Quantum Computation and Simulation": 1 +"Exploration of Big Data in Astrophysics Using R Programming and Hadoop": 1 +"The Socio-economic Impact of Genetic Engineering: A Study of CRISPR-Cas9 in Crop Yield Optimization": 1 +"Computational Linguistics: Understanding Natural Language Processing with Python and NLTK": 1 +"The Role of Python in the Development of Predictive Models for Climate Change Mitigation": 1 +"Cognitive Psychology: An Investigation of Brain-Computer Interface Technologies in Enhancing Cognitive Abilities": 1 +"Geoengineering: An In-depth Study of Carbon Capture and Storage Technologies Using MATLAB": 1 +"Advanced Course in Civil Engineering: Designing Sustainable Urban Infrastructure with AutoCAD, 3D Printing and Finite Element Analysis": 1 +"Sociology: A Comprehensive Study of Social Network Analysis using Graph Theory and Gephi": 1 +"In-depth Analysis of the Blockchain Technology: Understanding Cryptocurrency Transactions and Smart Contracts using Ethereum and Solidity Programming": 1 +"Physics Fundamentals: Exploring Quantum Mechanics through Virtual Reality Simulations": 1 +"Mathematics Mastery: Boosting Problem-solving Skills with Python Programming": 1 +"Marine Biology: Unveiling Ocean Biodiversity through Underwater Robotics and DNA Barcoding": 1 +"Psychology: Grasping Human Behavior and Emotions through Role-Play and Facial Recognition Software": 1 +"Advanced French: Enhancing Comprehension and Conversation using Duolingo and Rosetta Stone": 1 +"Environmental Studies: Climate Change Perspectives through Drone Mapping and GIS Analysis": 1 +"Practical Statistics in Sports Management: A Comprehensive Approach using R Programming": 1 +"Financial Literacy for Teens: Understanding Savings and Investments through Virtual Stock Exchange Games": 1 +"Music Theory: Exploring Melody Creation with GarageBand's Virtual Instruments": 1 +"Digital Literacy: Enhancing Research and Presentation Skills using Google Scholar and Prezi": 1 +"Astrophysics: Exploring Dark Matter through Neutrino Oscillations and Gravitational Lensing Techniques": 1 +"Sound Waves: The Role of Fourier Transform in Audio Compression and its Impact on the Telecommunication Industry": 1 +"Advanced Coding: Problem Solving with Data Structures and Java": 1 +"Physics: Decoding Quantum Mechanics with Linear Algebra and Tensor Calculus": 1 +"Statistics: Understanding Probability Theory through Bayes' Theorem and Stochastic Processes": 1 +"Agriculture: The Use of Vertical Farming in Urban Agriculture: A Study on Aeroponics and Hydroponics": 1 +"Chemistry: The Impact of NMR Spectroscopy in Drug Discovery and Organic Synthesis": 1 +"Geology: Field Studies on the Plate Tectonic Theory and Earthquake Prediction": 1 +"Physical Therapy: Enhancing Mobility through Musculoskeletal Analysis and Rehabilitation Techniques": 1 +"Historical Philosophies and Contemporary Law: The Impact of Kant's Deontological Ethics on Privacy Policies and Cybersecurity.": 1 +"Physics Fundamentals: Understanding Aerodynamics and Its Role in Formula 1 Racing": 1 +"World History: The Rise and Fall of Empires: An Examination Through Archaeological Discoveries": 1 +"Digital Arts: Animation Principles with Autodesk Maya": 1 +"Advanced Statistics: Unraveling Patterns Using Probability Theory and Regression Analysis ": 1 +"Marine Biology: Exploring Coral Reefs and Climate Change using Underwater Robotics and 3D Mapping": 1 +"Cognitive Psychology: Memory and Learning, fMRI Technology and the Application of Transcranial Magnetic Stimulation ": 1 +"Intro to Logic and Reasoning: Enhancing Problem-Solving Skills through the Study of Logical Fallacies": 1 +"Sociology: Leveraging Social Media Analytics for Understanding Modern Youth Subcultures": 1 +"Oral History: Decoding World War II Narratives through Survivor Testimonies": 1 +"Microeconomics: Studying Market Dynamics Utilizing Supply and Demand Curves and Econometric Models": 1 +"Chemistry: Exploring Molecular Structures with Crystallography and Spectroscopy Techniques": 1 +"Sociology: Understanding Social Inequality through the Lens of Structural Functionalism": 1 +"Artistic Vision: A Study of Cinematography Techniques in Contemporary Film Making": 1 +"Biology: Navigating through Human Genetics using Crispr-Cas9 and Gene Editing": 1 +"Digital Storytelling: Enhancing Narrative Techniques with Virtual Reality in Interactive Media": 1 +"Innovation and Sustainability: Exploring the Impact of Wind Energy in Contemporary Architecture": 1 +"Advanced Mathematics 401: Utilizing Wolfram Alpha for Solving Complex Equations in Calculus": 1 +"Graphic Design: Mastering Logo Creation using Adobe Illustrator in Branding Arts": 1 +"Music Theory: Utilizing Cubase's Retrologue Synthesizer and MIDI Technology in Electronic Music Production": 1 +"Engineering: Understanding Structural Dynamics through Finite Element Analysis": 1 +"Chemistry: Unveiling Chemical Reactions through Spectroscopy and Molecular Modeling": 1 +"Anatomy: Exploring Human Physiology through MRI and CT Scan Imaging Techniques": 1 +"Environmental Science: Climate Change and its Impact Analyzed through Remote Sensing and GIS": 1 +"Theoretical Physics: Quantum Mechanics and its Application in Nanotechnology": 1 +"Computer Engineering: Understanding Circuit Design with VHDL and FPGA": 1 +"Psychology: The Influence of Social Media on Human Behavior: A Comprehensive Study using Data Analytics": 1 +"Astronomy: Exploring the Universe with Radio Telescopes and Spectral Imaging": 1 +"Political Science: The Impact of Globalization on National Security: An Analysis through Foreign Policy and International Trade": 1 +"Microbiology: Bacterial Pathogens and their Resistance to Antimicrobials explored with Genomic Sequencing": 1 +"Mechanical Engineering: Thermofluid Dynamics and its Applications in Renewable Energy Technologies": 1 +"Digital Artistry: Using Graphic Tablets and Software to Create Vector Portraits": 1 +"Early Childhood Development 410: Incorporating Virtual Reality in Play-Based Learning for Cognitive Growth": 1 +"Sustainable Agriculture: Understanding the Impact of Drone Technology on Crop Yield and Nutrient Density": 1 +"Statistical Analysis: Utilizing Python Libraries for Predictive Modeling and Regression Analysis": 1 +"History: The Telegraph and Its Role in Global Communication during the Industrial Revolution": 1 +"Utilizing Augmented Reality and Sensory Stimulation for In-depth Study of Ancient Egyptian Civilization: A Socio-Cultural Perspective": 1 +"Creative Writing: Crafting Haikus with Alliteration and Simile in Nature-Inspired Verse": 1 +"Eco-friendly Architectural Design: Investigating the Role of Selective Laser Sintering (SLS) in 3D Printing with Recycled Plastic": 1 +"Psychology 220: Exploring the Effects of Dance on Emotional Well-being through EEG - A Cross-Disciplinary Study": 1 +"Linguistics: The Craft of Haiku Composition using Onomatopoeia and Metonymy in Gastronomic Poetry": 1 +"The Harmony of Geometry and Perspective in Cubist Art": 1 +"Machine Learning: Supervised Learning Algorithms using Python, Decision Trees, SVM for Classification, and Matplotlib for Data Visualization": 1 +"Biology: Essentials of Immunology and Genomics - An Insight into Stem Cell Therapy": 1 +"Climate Change: Global Response to Coral Reef Bleaching and Ocean Conservation Strategies": 1 +"Information Technology: Python Programming Basics with 3D Modelling": 1 +"Astrophysics: The Mystery of Black Holes - Understanding Gravitational Waves": 1 +"The Impact of Digital Effects on Timing in Ballet": 1 +"Health Education: The Influence of Submarine Warfare on 1960s Naval Training": 1 +"Cartography and Film: Utilizing Geo-Location to Trace the Evolution of Five Global Cinema Styles": 1 +"Digital Marketing: Maximizing Instagram Influencer Campaigns": 1 +"Immersive Virtual Reality: The Impact on Modern Architecture Design": 1 +"Genetic Modification in Agriculture: Using Bioinformatics and Genomic Sequencing for Crop Improvement": 1 +"Kinematics in Sports: The Physics of Baseball Pitching": 1 +"Understanding Cardiac Disorders: Insights from ECG and Cardiac MRI": 1 +"Advanced Data Manipulation: A Comprehensive Guide to R, Web Scraping with rvest, and Data Visualization with ggplot2": 1 +"Software Engineering 101: Java Programming with Apache Hadoop & Distributed Systems using MQTT": 1 +"Organic Synthesis: The Role of Grignard Reagents in Pharmaceutical Industry": 1 +"The Eco Rhythm: Harnessing Wave Energy in Coastal Festivals": 1 +"Artificial Intelligence in Medicine: Machine Learning and its Application using TensorFlow Library": 1 +"World Music: The Cultural Importance of the Balalaika in Russian Folk Dance Music": 1 +"Art: The Evolution of Landscape Painting in Watercolor": 1 +"Art: The Art of Sketching Wildlife with Charcoal and Pastel": 1 +"Physics Essentials: Exploring Quantum Mechanics with Double-Slit Experiments": 1 +"Biology: Unraveling the Mysteries of Photosynthesis with Advanced Microscopy Techniques": 1 +"Detailed Examination of the Influence of Viking Longships on Nautical Engineering": 1 +"Young Geologists: Unearthing the Secrets of Earth's Crust through Rock and Mineral Analysis": 1 +"Junior Botanists: The World of Plant Cell - A Closer Look with Electron Microscopes": 1 +"Junior Cardiology: Understanding Heart Functions with Echocardiography and Electrocardiograms": 1 +"Computer Science: Mastering Machine Learning with TensorFlow, Keras, and Python Programming": 1 +"Advanced Geometry: Comprehending Topological Spaces - An Intensive Study of Knot Theory": 1 +"Mathematical Structures: Expanding Knowledge with Algorithms and Data Structures through Python": 1 +"Climate Change: Understanding Its Impact on Urban Planning Through the Lens of Sustainable Architecture": 1 +"Human Anatomy: Comprehensive Study of Musculoskeletal System via Virtual Reality": 1 +"Microbiology: Exploring the World of Bacteria and Viruses through Advanced Microscopy Techniques": 1 +"Quantum Physics: Unraveling the Mysteries of the Universe using Quantum Computing": 1 +"Environmental Science: Evaluating the Effects of Global Warming on Coral Reef Ecosystems": 1 +"Artificial Intelligence: Harnessing Machine Learning for Predictive Analysis in Business": 1 +"Astronomy: Analyzing Cosmic Phenomena through Telescope Observations and Hubble Space Telescope Images": 1 +"Economic Theory: Investigating the Role of Fiscal Policy in Developing Economies using Econometric Models": 1 +"Digital Photography: Mastering Light and Shadow with Adobe Lightroom and Photoshop.": 1 +"Mathematics of Encryption: Analyzing the Impact of Quantum Computing on Current Cryptographic Systems": 1 +"Health and Wellness: The Role of Yoga and Breathing Techniques in Stress Management and Mental Health": 1 +"Cognitive Psychology: Unmasking the Human Mind using Positron Emission Tomography (PET) and Transcranial Magnetic Stimulation": 1 +"Acoustical Physics Explored: The Relationship Between Sonar Systems and Underwater Acoustics": 1 +"Investigating Reptilian Sensory Systems through Infrared Thermal Imaging and Electroreception Studies Using Electromyography": 1 +"Exploring the Influence of Renewable Energy Concepts in French Poetry: A Focus on Sustainability and Environmental Preservation": 1 +"Epistemology and Reality: The Ethics of Genetic Engineering with a Focus on Gene-Editing Tools": 1 +"Anthropology: The Impact of Virtual Reality on Cultural Exchange - A Study on Digital Ethics": 1 +"Art: The Fundamentals of Color Theory: Mastering Tones and Shades with Adobe Photoshop": 1 +"Classic Literature: Unraveling Metaphor and Irony in Victorian Era Novels": 1 +"Exploring the Human Genome: Advanced Techniques in Genetic Sequencing and Bioinformatics": 1 +"Secondary Education 202: Implementation of Haptic Feedback in VR for Vocational Training": 1 +"Language Evolution: The Impact of Emoji Language on Modern Communication Systems": 1 +"Assessment of Blockchain Technology in Enhancing Sustainable Agricultural Practices: An In-depth Analysis of 10 Solutions": 1 +"Visual Arts: Boosting Creativity with Adobe Creative Cloud in Digital Illustration Methods": 1 +"Astrophysical Marvels: The James Webb Space Telescope and the Exploration of Exoplanets": 1 +"Physical Education: The Science of Soccer: Enhancing Kicking Power with Plyometric Exercises": 1 +"Mathematics: Exploring the Fibonacci Sequence in Nature through Fractal Geometry": 1 +"Applied Chemistry: Understanding Chemical Reactions using Le Chatelier's Principle - A Detailed Study of Equilibrium Shifts": 1 +"AI and Big Data in Film Industry: 10 Innovative Approices for Optimizing Film Distribution": 1 +"Advanced Mathematics: Unraveling Complex Equations Through Wolfram Alpha and MATLAB": 1 +"Health and Fitness: The Science of Nutrition and Fitness with MyFitnessPal and FitBit": 1 +"Physics: Decoding Quantum Field Theory with Feynman Diagrams and Lattice Calculations": 1 +"Sustainable Architecture: Exploring Eco-Friendly Design with Solar Panels and Green Roofs": 1 +"Chemistry: Understanding Molecular Structures with X-ray Crystallography and NMR Spectroscopy": 1 +"Art History: Tracing the Evolution of Abstract Expressionism Through Pollock, de Kooning, and Rothko": 1 +"Computer Programming: Mastering Cybersecurity with Python, Kali Linux and Wireshark": 1 +"Geography: Studying Climate Change Impact on Continents with GIS and Remote Sensing": 1 +"Biomedical Engineering: Exploring the Human Body with Bio-robotics and Nanotechnology": 1 +"Anthropology: Examining Cultural Evolution through Linguistic Anthropology and Ethnography.": 1 +"Chemistry: Understanding Molecular Structure and Bonding Techniques with X-ray Crystallography": 1 +"Behavioral Psychology: Exploring Decision-Making through the Prism of Cognitive Biases using Neuroimaging Techniques": 1 +"Graphic Design: Mastering the Art of Typography with Adobe Illustrator and Indesign": 1 +"Advanced Mathematics: Fractal Geometry and its Application in Computer Generated Imagery": 1 +"Environmental Science: Investigating Climate Change Impact using Geospatial Analysis and Remote Sensing Techniques": 1 +"Microeconomics: Price Elasticity of Demand and Supply Analysis through Game Theory": 1 +"Data Science: Decoding Outliers and Trends with Time Series Analysis using R and Python": 1 +"Cell Biology: Unfolding the Secrets of Mitochondria using Fluorescence Microscopy and Biochemical Assays": 1 +"Ethics: Understanding the Application of Deontological Theory in Modern Corporate Governance": 1 +"Geology: Exploring Plate Tectonics and Earthquake Prediction using Seismic Waves and GPS Data": 1 +"Introduction to Cryptography: Understanding Encryption Algorithms and Key Management Systems": 1 +"Climate Change Perspectives: A Comprehensive Study of Oceanic Acidification and Coral Bleaching": 1 +"Advanced Mathematics: Differential Equations and their Application in Engineering Mechanics": 1 +"Food Science: Nutritional Analysis and Dietary Planning using Python and NumPy": 1 +"Unraveling the Mysteries of Space: An Insight into Stellar Evolution and Galaxy Formation": 1 +"Education Technology: Enhancing Teaching Efficiency with Virtual Reality and Interactive Whiteboards": 1 +"Mastering the Art of Negotiation: Utilizing Game Theory in Business Decision Making": 1 +"Chemistry of Fragrances: Using Gas Chromatography to Understand Scent Composition and Stability": 1 +"Economics: The Role of Cryptocurrencies in Shaping the Future of Global Trade": 1 +"Creative Writing: The Influence of Metaphors in Social Justice Poetry": 1 +"Chemistry: The Role of Nanotechnology in Drug Delivery: A Comprehensive Analysis": 1 +"Exploring the Mechanics of Quantum Computing: An In-Depth Study": 1 +"Junior Psychology: Understanding Human Emotion through Facial Recognition Technology": 1 +"Psychiatry: Investigating the Impact of Virtual Reality Therapy on PTSD Patients": 1 +"Physical Education: Implementing Fitbit Trackers and Smart Scales for Body Composition Analysis in Athletes": 1 +"Harmonic Progression: The Impact of Synthesizers on Electronic Dance Music Genres": 1 +"The Science of Enology: Unraveling the Mystery of Wine Aging and Sensory Evaluation": 1 +"Literature and Philosophy: The Existentialist Perspective in Contemporary Novels": 1 +"Physical Education: The Art of Balance in Aerial Silk and Body Coordination": 1 +"Geography: Exploring Land Use Patterns in South American Communities through Satellite Imagery and Geospatial Information Systems": 1 +"Data Science: Harnessing the Power of R and Python for Predictive Analytics in E-commerce": 1 +"Chemistry: Unmasking the Secrets of Organic Compounds through Gas Chromatography-Mass Spectrometry": 1 +"Theatre: The Art of Improvisation - Transforming Spontaneous Ideas into Dramatic Performances": 1 +"Planet Watchers: Exploring Mars' Geological Features Using Mars Orbiter Laser Altimeter and Infrared Spectroscopy": 1 +"Computer Science and Ecology: Predicting Climate Patterns with Machine Learning and TensorFlow": 1 +"Advanced Studies in Cardiology: Implementing Echocardiography, Angiography, and Electrocardiogram for Heart Health Assessment": 1 +"History: The Influence of Ancient Architecture on the Political Development of the Roman Empire": 1 +"Business Strategy: Leveraging Blockchain Technology in Supply Chain Management for Competitive Advantage": 1 +"Environmental Science: The Interplay of Climate Change and Biodiversity: A Study through Carbon Dating": 1 +"Education: The Impact of Augmented Reality in Reinforcing Inclusive Education in STEM Subjects": 1 +"Physics Unleashed: A Comprehensive Study of Quantum Mechanics and its Impact on Technology": 1 +"Data Science for Social Good: Utilizing SQL and Machine Learning to Address Societal Challenges": 1 +"Mastering French Pronunciation: Using Linguistic Phonetics and Duolingo for Perfect Accent": 1 +"Advanced Geometry: Exploring Fractals and their Applications in Computer Graphics using MATLAB": 1 +"The Science of Nutrition: Understanding Metabolism and Dietary Requirements using Biochemistry": 1 +"Ethics in Artificial Intelligence: The Role of Neural Networks and Deep Learning in Decision Making": 1 +"Advanced Sociology: Deconstructing Cultural Norms through Statistical Analysis and SPSS": 1 +"Creative Writing Enhanced: Utilizing AI-Driven Tools for Intriguing Storyline Development": 1 +"The World of Astronomy: Exploring the Cosmos through Astrophysics and Telescope Technology": 1 +"Sustainable Engineering: Understanding Carbon Footprint and Green Energy Solutions through MATLAB and Simulink": 1 +"Advanced C++ Programming: Utilizing GoogleTest and GCov for Software Testing and Quality Assurance": 1 +"French Language Proficiency: Narrative Exploration using Adobe Spark, Google Slides, Microsoft Publisher, and 2D Animation Tools": 1 +"Geography: Understanding Cultural Diffusion through the Study of Human Migration Patterns": 1 +"Information Technology: Mastering Sampler and Sequencer in FL Studio for Creating Dynamic Soundscapes in Virtual Instruments": 1 +"Holistic Wellness: Yoga Poses and Meditation Techniques with the Use of Aromatherapy": 1 +"The Harmony of Nature: Using Geographic Information System (GIS) to Analyze River Courses": 1 +"Deep Learning Methods in Artificial Intelligence: Optimizing Spotify's Jazz Playlist for Mood-Based Listening": 1 +"The Impact of Geographical Terrain on Basketball Strategy: A Comprehensive Analysis Using Topographic Maps and Satellite Images": 1 +"Intermediate Coding: Mastering JavaScript & Node.js with Visual Studio Code and Introduction to Express.js": 1 +"Advanced Chemistry: Exploring Chemical Reactions through Thermite Reaction and Gas Chromatography Experiments.": 1 +"Machine Learning: Predictive Modelling using Python and TensorFlow": 1 +"Literature: The Impact of Symbolism in Addressing Social Injustice in Contemporary Novels": 1 +"Mental Health: Coping Mechanisms through Art Therapy: The Healing Power of Abstract Painting": 1 +"The Science Behind Dance: Exploring Ballet Precision through Biomechanics ": 1 +"Mastering Mobile App Development: Dart, Flutter, React Native, Swift and Firebase Integration": 1 +"Decoding the Legacy of Flamenco in Spanish History through Immersive Augmented Reality": 1 +"Chemistry: Exploring Nanostructures in the Realm of Quantum Physics": 1 +"Innovations in Green Architecture: Emphasizing on Passive Solar Design, Recyclable Materials, and 3D Printing": 1 +"Data Security: Mastering Hash Functions through Advanced Algorithms and Data Structures": 1 +"The Emergence of Renewable Energy: An In-depth Analysis of Solar Power Advancements and Impact": 1 +"Advancements in Marine Biology: Understanding the Role of Acoustic Telemetry in Shark Conservation": 1 +"Fundamentals of Geology: Investigating Plate Tectonics through Seismic Wave Analysis and Earthquake Prediction Models": 1 +"The Influence of Architecture in Ancient Societies: A Study of Structural Design and Cultural Significance": 1 +"Film Studies: The Transformation of Cinema in the Digital Age and its Impact on Filmmaking Process": 1 +"Java Programming for Data Science: Implementing Decision Trees and Random Forests Using Weka and Apache Spark": 1 +"Astrophysics: Unraveling the Mystery of Dark Matter - The Role of Gravitational Lensing in Space Exploration": 1 +"French Literature: Enhancing Comprehension and Vocabulary Skills through E-Learning Platforms": 1 +"Sonification of Climate Change Data Using JavaScript: An Interdisciplinary Course in Environmental Science and Music": 1 +"Statistics: Using Multiple Regression Analysis in SPSS to Understand the Correlation between Education and Poverty ": 1 +"Art and Commerce: Dissecting the Role of Digital Platforms in Art Monetization and Audience Engagement": 1 +"Literature: Decoding the Symbolism in Victorian Gothic Novels Using Textual Analysis Tools": 1 +"Exploring the Impact of Superconductivity in Quantum Computing: A Deep Dive into Quantum Bits": 1 +"Social Studies: Unravelling Global Immigration Patterns with the Power of GIS Mapping": 1 +"Astronomy: Decoding the Mysteries of Black Holes - A Comprehensive Study of Spacetime Singularities": 1 +"Organic Chemistry: Exploring the Intricacies of Organic Synthesis Through Nuclear Magnetic Resonance Spectroscopy": 1 +"Business Studies 101: Understanding Market Dynamics and Consumer Behavior through Data Visualization": 1 +"Advanced Calculus: Utilizing Matlab for Solving Complex Differential Equations": 1 +"Mastering Python and Machine Learning: TensorFlow for Deep Learning, Data Wrangling with Pandas and Predictive Analysis with Scikit-learn": 1 +"Psychology: Dissecting Human Behavior Through EEG Readings and Functional MRI Scans": 1 +"Microbiology: Understanding the Microbial World Through Genomics and Metagenomics": 1 +"Chemistry: The Significance of Molecular Structures in Pharmaceutical Drug Design": 1 +"Advanced Spanish: Enhancing Fluency through the Use of Interactive Virtual Reality Platforms": 1 +"Economics: Investigating the Impact of Inflation on Stock Market Trends with Statistical Models": 1 +"Astrobiology: Unlocking the Possibilities of Extraterrestrial Life through Exoplanet Atmosphere Analysis": 1 +"Machine Learning: Leveraging Neural Networks for Facial Recognition in Security Systems: A Deep Dive into AI Technology": 1 +"Psychology: Interpreting Human Behavior through the Lens of Evolutionary Psychology": 1 +"Coding for Kids: Understanding the Basics of JavaScript through Interactive Game Development": 1 +"Art History: The Influence of the Fibonacci Sequence on the Patterns in Islamic Art": 1 +"Information Technology: Deploying Microservices Architecture for Efficient E-commerce Platforms: A Detailed Look at Serverless Computing": 1 +"Exploring Cryptography: The Role of Hash Functions in Maintaining Data Integrity in Cybersecurity": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Schrödinger's Cat Experiment": 1 +"Economics: Utilizing Blockchain Technology for Sustainable Development in Emerging Economies": 1 +"Art: The Geometry and Physics Behind Renaissance Works - An Interactive Course with Augmented Reality": 1 +"The Impact of Virtual Reality on Real Estate: How VR is Changing Architecture and Design": 1 +"Rhetoric and Communication: Crafting Persuasive Speeches Using Advanced Speech Recognition Software": 1 +"Understanding Cryptography: A Detailed Study of Encryption Algorithms using Python Programming": 1 +"Paleontology and Digital Imaging: The Use of 3D Scanning in the Study of Dinosaur Fossils": 1 +"Sociology: The Influence of Virtual Reality on Social Interaction and Its Ethical Implications": 1 +"Adventures in Literature: A Middle School English Course Exploring Mythology through Augmented Reality": 1 +"From Silent Films to Netflix: The Role of Digital Media in the Evolution of Cinema": 1 +"Advanced Culinary Science: Understanding the Maillard Reaction through Experimental Cooking": 1 +"Bioinformatics 101: Application of Python in Genomic Data Analysis": 1 +"The Power of Language: Linguistic Patterns and Emotional Intelligence in Social Media Interactions": 1 +"Astrophysics Unveiled: Exploring Black Holes and Quasars with Numerical Simulations": 1 +"The World of Microbes: An In-depth Study of Bacterial Resistance Using CRISPR-Cas9 Technology": 1 +"Innovative Architectural Design: Exploring Sustainable Materials in 3D Printing for Construction": 1 +"The Prowess of ProTools: Mastering Sound Design for Cinema in the Digital Age": 1 +"Environmental Economics: Exploring the Impact of Carbon Pricing on Sustainable Agriculture": 1 +"Immersive Storytelling: The Impact of Virtual Reality on Narrative Structure in Video Games": 1 +"Analyzing Network Traffic: The Role of Wireshark in Cybersecurity Investigations": 1 +"Advanced Astrophysics: Unveiling the Mysteries of Black Holes through Theoretical Models and Simulation Software": 1 +"Sociology 101: Understanding Social Constructionism in the Digital Age using Python and Scikit-Learn": 1 +"Music Theory: Deconstructing Beethoven's Symphonies through the Application of Fourier Analysis": 1 +"Bioinformatics: Harnessing Machine Learning and AI in Predictive Genomics and DNA Data Analysis": 1 +"Engineering: Mechanics of Materials - Comprehensive Study of Stress Analysis and Finite Element Methods": 1 +"Historical Perspectives: The Impact of Telegraph Communication on Warfare Strategies during the Civil War": 1 +"Creative Writing: Incorporating Augmented Reality into Narrative Storytelling for Immersive Experiences": 1 +"Food Science: The Art of Fermentation - Exploring Microbiology in Winemaking and Craft Beer Brewing": 1 +"Physics: Unraveling Particle Physics and String Theory using MATLAB and CERN’s Open Data Portal": 1 +"Environmental Science: Leveraging Aquaponics Systems in Urban Farming for Sustainable Food Production": 1 +"Advanced Physics: Exploring Quantum Mechanics through String Theory": 1 +"Data Analysis: Predictive Modeling in Sports Analytics with Python, Machine Learning, and PyTorch": 1 +"Software Engineering: Java Programming and Mobile App Development with Android Studio": 1 +"Advanced Macroeconomics: Analyzing Global Economies using Econometric Models and Game Theory": 1 +"Impact of Digital Marketing on Modern Business: Understanding Consumer Behavior and Data-Driven Strategies": 1 +"Calculus: The Role of Differential Equations in Biological Systems: A Focus on Population Dynamics": 1 +"Contemporary Art: The Evolution of Digital Art and the Impact of Virtual Reality": 1 +"Nuclear Reactions: A Revolutionary Epoch in Physical Science": 1 +"Biostatistics: Epidemiological Analysis using Chi-Square Tests in SPSS": 1 +"Philosophy: Exploring the Ethical Dilemmas of Artificial Intelligence in Modern Society": 1 +"Physics: Understanding Quantum Mechanics through the Lens of String Theory and Particle Physics": 1 +"Exploring the Impact of Microeconomic Policies on Economic Development: A Comprehensive Approach in Economics and Public Policy": 1 +"Social Studies: Unpacking Cultural Anthropology: The Impact of Migration on Cultural Evolution and Identity": 1 +"Advanced Techniques in Python for Machine Learning: Navigating Neural Networks and Regression Analysis": 1 +"The Power of Storyboard That: Integrating Storyboard with Google Docs for Plot Development in Screenwriting": 1 +"Mastering 3D Modelling for Video Game Design: A Comprehensive Course in Unity and Unreal Engine": 1 +"Psychology 201: The Mind-Body Connection: Exploring Psychosomatic Disorders and the Role of Cognitive Behavioral Therapy": 1 +"Inorganic Chemistry: Structural Analysis with CrystalMaker, PyMOL and Gaussian: Exploring X-ray Crystallography": 1 +"Computer Science: Navigating Software Development Tools - Understanding Git and GitHub for Collaborative Programming": 1 +"The Harmonization of Light Frequencies with Photodetectors: An Integrated Course in Optics and Quantum Physics": 1 +"Global Politics: The Impact of Nuclear Power in the Cold War Era": 1 +"Quantum Mechanics: Decoding the Mysteries of the Universe through String Theory and Quantum Entanglement": 1 +"Archaeology: Uncovering Ancient Civilizations through the Analysis of Pottery Shards": 1 +"Literature Studies: The Role of Symbolism in Gothic Novels": 1 +"Introduction to Ethics: Delving into Moral Dilemmas through the Framework of Utilitarianism": 1 +"Microbiology: Exploring Genetic Mutation through the Application of CRISPR-Cas9 Techniques": 1 +"Cultural Studies: The Evolution of Fashion Influenced by Social Media Platforms": 1 +"Film Studies: The Art of Storytelling in Sci-Fi Cinema through the Use of Special Effects": 1 +"Applied Mathematics: Understanding Financial Markets using Algorithms, Charts, and Python Programming": 1 +"Interactive Software Development: JavaScript, Node.js, React, CSS3, and Microservices Architecture": 1 +"Political Science: The Influence of Political Ideologies on Global Diplomacy": 1 +"Molecular Genetics: Advanced Study of CRISPR-Cas9 and Gene Editing Techniques using Bioinformatics": 1 +"Fitness Technology in Sports Science: Heart Rate Variability Analysis using Fitbit and its Effects on Athletic Performance": 1 +"Algebra: Solving Polynomial Equations using Graphing Calculators and the Fundamental Theorem of Algebra": 1 +"Information Technology 101: Basics of Java Programming & Database Management with SQL": 1 +"Outdoor Survival Skills: Fire Starting Methods using Flint and Steel in Wilderness Scenarios": 1 +"Health Education: Understanding the Role of Probiotics in Digestive Health through Scientific Research": 1 +"Logic and Reasoning 102: Exploring Gödel's Incompleteness Theorem through Philosophical Lens": 1 +"Green Engineering: Pioneering Waste Management with Biodegradable Materials and Composting Techniques": 1 +"Quantum Mechanics: Study of Photons using Wave-Particle Duality & the Double Slit Experiment": 1 +"Mathematics in Video Game Design: Understanding Probability and Algorithms through Unity and Unreal Engine": 1 +"Biology: The Influence of Genetic Sequencing and Gene Editing in Modern Healthcare using CRISPR-Cas9 ": 1 +"Physical Education: Improving Soccer Skills through VR Training and Biomechanics Analysis": 1 +"Chemistry: Investigating Chemical Reactions and Molecular Structures Using Virtual Reality Simulations": 1 +"Creative Writing: Crafting Interactive Adventure Stories with Dialogue Trees and Character Development using Storyboard Pro": 1 +"JavaScript and Ableton Live: Exploring Digital Signal Processing in Audio Production with Auto-Tuning Techniques": 1 +"Language Arts: Exploring Political Discourse and Propaganda Techniques Using Text Mining - A Focus on R Programming ": 1 +"Social Studies: Examining Global Migration Patterns through the Perspective of Human Rights": 1 +"English: The Role of Classic Novels in Shaping Modern Feminism and Gender Equality Movements": 1 +"Java Programming for Data Science: Analysing Neural Networks and Deep Learning in AI Development": 1 +"Chemistry: Deciphering Quantum Chemistry and Molecule Simulation with MATLAB and Khan Academy's Tools": 1 +"The Impact of Hormones on Human Emotion: An Endocrinology Insight": 1 +"Exploring Financial Models: Utilising Exponential Functions with Google Sheets and Oracle Database": 1 +"AI, Blockchain, and the Art Market: 10 Ways of Revolutionising Through Quantum Computing": 1 +"Spotify's Machine Learning Strategy: A Comprehensive Overview on the Music Industry and Text Analysis using LSTM in Natural Language Processing": 1 +"Astrophysics: Exploring Galaxies using Artificial Intelligence in Virtual Reality Models": 1 +"Software Engineering Excellence: Building Autonomous Vehicles with C++, Raspberry Pi, CAD Designing, and Deep Learning Concepts": 1 +"Expert Course on Algorithm Design in JavaScript and Ruby: Enhancing Machine Learning with TensorFlow": 1 +"Genomics: Decoding the Human Genome: The Role of Epigenetics": 1 +"Spanish Language Processing: Sentiment Analysis with Python and NLTK": 1 +"Mastering Melodies: Using the MIDI Keyboard and Loop Function in Ableton Live for Songwriting": 1 +"Astrophysics Explained: The Evolution of Stars and Galaxies: Influences on Cosmic Development and Progress": 1 +"Fine Arts: Crafting Hyperrealistic Landscapes with Charcoal and Chalk": 1 +"Radiology Fundamentals: X-ray Imaging, 3D Reconstruction, and Comprehensive Tissue Analysis": 1 +"Exploring the Universe: Stellar Cartography and Astronomy through Star Trek Bridge Crew VR and AR Technology": 1 +"Cracking the Code: Investigating Algorithms using Python Debugging Tools": 1 +"Nutrition and Fitness: Integration of Fitbit Activity Trackers and AR Technology in Health Education: A Modern Approach": 1 +"Climate Change Studies: Tracing the Impact of Global Warming on Endangered Species through Drone Photography": 1 +"Physics in Everyday Life: Understanding the Mechanism of Microwave Ovens": 1 +"The Art of Digital Painting: Illustrating Wildlife Using Graphics Tablets": 1 +"Astronomy: Unraveling the Mysteries of Dark Matter Using Quantum Mechanics": 1 +"Art: Incorporating Augmented Reality in Visual Art for Immersive Exhibitions": 1 +"Using Blockchain and Cryptocurrencies in Finance: Tracing the Evolution of Global Economy": 1 +"Leveraging Spotify's Playlist Features for Optimal Symphony Composition in Music Production": 1 +"Ceramics: Perfecting Glazing Techniques with Kiln and Brush": 1 +"Applying Java in Robotics: A Comprehensive Look at Autonomous Vehicles using Machine Learning": 1 +"Advanced Sociology: Decoding Social Norms Using the Conflict Theory and the Law of Social Change": 1 +"Literature: Mining Shakespeare's Texts: Using NLTK and SciKit-Learn for Narrative Structure and Character Analysis": 1 +"Military Science: The Role of Cryptography During the Cold War: Declassified Stories": 1 +"Linguistics: Unveiling the Syntax of Neurolinguistics with EEG Data Analysis in MATLAB": 1 +"Spanish for Intermediates: Understanding Literature and Culture through Film Analysis": 1 +"The Artistry of Dance: Historical Progression and the Influence of Ballet": 1 +"Utilizing Machine Learning Algorithms to Evaluate the Effects of Climate Change on Coral Reefs: A Comparative Study of 12 Techniques": 1 +"Advanced Predictive Modeling in Python using Pandas and Seaborn for Bayesian Networks in Game Theory": 1 +"Linear Algebra & Calculus: Exploring Vector Spaces and Multivariable Functions in MATLAB: A Dive into Fourier Transform": 1 +"Mastering the Java Universe: An In-depth Examination of Object-Oriented Programming with JavaFX": 1 +"Computer Graphics: Advanced Real-Time Rendering using Unity and Unreal Engine": 1 +"Psychology 101: Cognitive Behavioral Therapy and the Use of fMRI in Stress-Relief Studies": 1 +"French: Exploring Culture and Tradition: A Study of Video Games Using Virtual Reality Technology": 1 +"An In-depth Analysis of Twitch and the Utilization of Gesture Recognition Technology in Esports Performance Evaluation": 1 +"Introduction to Sculpture: Exploring the Art of Metal Casting with 3D Printing Technology": 1 +"The Influence of Computerized Axial Tomography (CAT) on Joint Replacements in Orthopedic Medicine": 1 +"Physics Essentials: Nuclear Physics and the Principle of Radioactive Decay": 1 +"Physics: The Interplay of Radio Waves with Architectural Structures": 1 +"Physics: The Science of Fluid Dynamics - Understanding Wave Propagation with CFD Simulations": 1 +"Geographical Education for Children: Exploring Continents with Virtual Reality and Interactive Terrain Models": 1 +"Elementary Astrophysics: An Investigation of Galaxy Formation and Cosmic Evolution": 1 +"Chemistry: The Science of Food Components - The Role of Fermentation in Food Preservation": 1 +"Mathematics: The Integration of Algebraic Topology, Computational Tools, and Geometry in Modern Architecture with the Use of AutoCAD": 1 +"Elementary: Grasping Basic History through Archaeological Studies with Interactive Timeline Models and Artifact Analysis": 1 +"Environmental Engineering: Advanced Water Treatment Techniques and Applications of Nanofiltration": 1 +"Fintech Revolution: Unraveling the Impact of Digital Currencies on Global Economy": 1 +"R Programming for Bioinformatics: Gene Sequencing and Data Analysis Using Bioconductor and Shiny": 1 +"Artificial Intelligence in Healthcare: A Comprehensive Study on Machine Learning Applications in Disease Prediction": 1 +"Cybersecurity: Exploring Network Security with Firewalls and Intrusion Detection Systems": 1 +"Sports Psychology: The Influence of Mental Health on Athletic Performance - An In-Depth Analysis": 1 +"Astrobiology: A Guided Introduction to the Search for Extraterrestrial Life and Planetary Habitability": 1 +"The Science of Nutrition: Understanding the Impact of Diet on Human Metabolism and Health": 1 +"Advanced Mathematics: Exploring Chaos Theory and Fractal Geometry with MATLAB": 1 +"Virtual Reality in Education: A Detailed Study on Immersive Technologies for Effective Learning": 1 +"Biotechnology: Role of CRISPR-Cas9 in Revolutionizing Genetic Engineering": 1 +"Physics: Quantum Entanglement and its Implications in Modern Telecommunications": 1 +"Historical Linguistics: Tracing the Evolution of Latin into the Romance Languages": 1 +"Economics: Analyzing the Influence of Behavioral Economics on Market Trends Using Quantitative Data": 1 +"Photography: Exploring High-speed Photography Techniques in Capturing Motion and Time-lapses": 1 +"Examining the Role of Magnesium in Photosynthesis with Chlorophyll Fluorescence Spectroscopy": 1 +"Music Production: Harnessing the Power of MIDI Controllers in Electronic Dance Music Creation Using Ableton Live": 1 +"Cognitive Science: Applying fMRI in Studying the Neurological Basis of Decision Making": 1 +"Architectural Studies: The Impact of Brutalist Architecture on Urban Landscapes": 1 +"Digital Media: The Effect of Augmented Reality on Contemporary Advertising Techniques": 1 +"Advanced Analysis of Regression Models: R Programming for Financial Data using GLM and Polynomial Regression in RStudio": 1 +"Astronomy: The Influence of the Sextant on Sea Shanties and Nautical Folklore": 1 +"Health and Wellness: Achieving Balance Through Traditional Farming Practices: The Impact of Plowing": 1 +"Unraveling the Complexity of Quantum Computing: The Power of Quantum Bits": 1 +"Philosophy: The Intersection of Postmodernist Thought and Climate Advocacy - A Detailed Examination through the Framework of Deconstructionism": 1 +"Advanced Algebra: Conquering Linear Algebra with Matrix Operations using MATLAB, SQL, and Julia": 1 +"The Implication of Solar Power in Global Warming: A Climate-based Analysis in Philosophy Literature": 1 +"Creative Writing: Capturing Emotion in Haiku and Tanka Poetry Using Augmented Reality Technology": 1 +"Business 101: The Business Tactics of Art Galleries and Auctions - An Investigation into Free Art Exhibitions": 1 +"Fine Arts: Sculpture and Stone Carving Techniques: Perfecting the Chiseling Process.": 1 +"Mathematics: Applying Machine Learning Techniques in Number Theory using PyTorch": 1 +"The Practicality of Quantum Entanglement in Telecommunication Systems": 1 +"Songwriting Techniques with Pro Tools: The Melodic Structure of Folklore Music using MIDI Controllers": 1 +"Information Technology: Utilizing Hadoop and NoSQL in Environmental Monitoring to Study Global Warming Effects": 1 +"Theoretical Physics: Probing Dark Matter with Accelerators and Quantum Mechanics": 1 +"Anthropology: Interpreting the Social Dynamics of Ancient Mayan Society through Satellite Imagery": 1 +"Chemistry: The Influence of Geometry in the Development of Crystallography during the Industrial Revolution": 1 +"Microbiology: Traversing the World of Bacterial Genomes with Next-Generation Sequencing and Gene Therapy": 1 +"Interactive Storytelling: Boosting Engagement with Unity and Unreal Engine": 1 +"Elaborate Examination of Brush Strokes in Watercolor Art: Discovering Textures, Dimensions, and Tones": 1 +"Chemistry: The Influence of Molecular Structure on the Properties of Substances": 1 +"Astrophysics: Gravitational Waves and Black Hole Mergers: An Introduction to Einstein's Relativity": 1 +"Engineering 201: The Dynamics of Bridge Construction - An Exploration of Newton's Laws of Motion": 1 +"Mathematics 220: Applying the Fibonacci Sequence and Fractals in Predicting Stock Market Trends": 1 +"Behavioral Psychology: Assessing Human Behavior through Eye-Tracking and Functional MRI": 1 +"Utilizing R and ggplot2 for Comprehensive Climate Change Data Visualization": 1 +"Environmental Data Interpretation Using R and Seaborn for Effective Conservation Strategies": 1 +"Philosophy: The Impact of Virtual Reality on Human Perception and Experience": 1 +"The Impact of Cinema on the Evolution of Feminist Movements in the 20th Century": 1 +"Neuroscience 205: The Effect of Meditation on Brain Activity: A Study using fMRI and MEG Techniques": 1 +"Environmental Science: Hydrology and Wetland Conservation: Investigating Community Impact Through GIS": 1 +"Finance: Advancing Microfinance Strategies using Cryptocurrency in Developing Economies": 1 +"Neuroscience Explored: The Influence of Genomics on Neural Networks and Cognitive Psychology": 1 +"Software Engineering: Docker and React Native: Designing Efficient Healthcare Applications": 1 +"Sports Science: Implementing Virtual Reality for Improved Techniques in Gymnastics": 1 +"International Relations: Cybersecurity and Its Influence on Global Politics: Evaluating Strategies for Secure Diplomacy": 1 +"Public Health: Emerging Epidemics - Addressing Threats with Biometric Monitoring Devices": 1 +"Data Science 101: Advanced R programming & Machine Learning with TensorFlow: Implementing Random Forests in Big Data Analytics ": 1 +"Zoology: Echolocation and Marine Life: An Overview of Bioacoustics": 1 +"Middle School Physics: Exploring Tidal Phenomena Using Seismic Wave Technology": 1 +"Chemistry: The Applications of Nanotechnology in Sustainable Energy Production": 1 +"Data Science: Machine Learning Algorithms and Predictive Modelling Using Python": 1 +"Visual Communication: The Integration of Adobe Illustrator in Contemporary Graphic Design": 1 +"Psychology: The Impact of Virtual Reality Therapy in Treating Phobias: A Comprehensive Study": 1 +"Information Technology: Game Development with Unity - An Insight into 3D Graphics": 1 +"Military History: The Effects of Aerial Bombardment Strategies on WWII Tactics": 1 +"Astrophysics: Understanding Galaxy Formation through Computational Simulations and Stellar Dynamics": 1 +"Sports Science: The Role of Oculus Rift in Enhancing Sports Training and Performance": 1 +"Algebra: The Importance of Number Theory in Cryptography: A Worldwide Perspective": 1 +"Environmental Science: Advanced GIS & Remote Sensing Techniques for Biodiversity Conservation Analysis": 1 +"Advanced French: Mastering Linguistics through Narrative Construction using Evernote's Organization Tools": 1 +"Chemistry Foundations: Exploring Chemical Reactions through Quantum Mechanical Model": 1 +"Digital Marketing: Utilizing YouTube Analytics for Video Content Strategy": 1 +"Marine Biology: Deep Dive into Coral Reefs with Underwater ROV Technology": 1 +"Visual Calculus: Understanding Fractals in Nature and their Replication using CAD Software": 1 +"Astrophysics: Gravitational Waves and their Role in the Study of Black Holes": 1 +"Green Energy Systems: Harnessing Wind Power through Turbine Design and Energy Storage": 1 +"Public Health: Utilizing SAS for Survival Analysis in Epidemiological Studies": 1 +"Statistics: Predictive Modelling in Basketball Performance using R Programming": 1 +"Marketing 101: Impact of Social Media Influencers on Fashion Industry Trends": 1 +"Biology: Decoding the Human Genome: Advances in CRISPR-Cas9 Technology": 1 +"Mathematics: The Application of Non-Euclidean Geometry in Modern Physics": 1 +"Advanced Python Programming: Utilizing TensorFlow and PyTorch for Deep Learning": 1 +"Information Technology: Implementing Apache Hadoop for Big Data Processing": 1 +"Art History: The Role of Symbolism in the Byzantine Iconography": 1 +"Astrophysics: Understanding Dark Matter Through the Lens of String Theory": 1 +"Classic Literature: Exploring Existential Themes in Dostoevsky's Novels": 1 +"Music Theory: The Impact of Jazz Improvisation Techniques on Contemporary Music Composition": 1 +"Understanding Cybersecurity: An In-depth Study of Cryptography and Network Security": 1 +"Neuroscience: Investigating Brain Plasticity: The Influence of Music Therapy on Stroke Recovery": 1 +"Harnessing the Power of Vectors in Illustrator: A Detailed Course in Computer Science and Graphic Design": 1 +"Venturing into Probability: Fundamental Theories, Common Misconceptions, and Cryptogram Puzzles Solved with Probability Trees": 1 +"Chemistry: The Influence of Thermodynamics in the Process of Metal Casting": 1 +"Geometry in Action: Grasping Trigonometry through the Perspective of Architecture": 1 +"Advanced Sociology 201: Scrutinizing Social Contract Theory with Cultural Relativism": 1 +"Genomic Data Interpretation Using R, dplyr Package, and SparkR for Large Scale Data Analysis": 1 +"Performing Arts: The Role of Satire in Drama and Lyrics of Broadway Musicals": 1 +"Advanced: Remote Sensing Techniques in Environmental Science: Exploiting Satellite Imagery and Digital Elevation Models": 1 +"History: Technological Breakthroughs in Medieval Societies and Their Influences ": 1 +"Physical Education: Global Dance Styles and Cultural Appreciation: Discovering the World through Ballet": 1 +"Physics: Quantum Mechanics - The Role of Superposition in Quantum Computing": 1 +"Data Analysis: Leveraging Python and Power BI for Effective Financial Forecasting": 1 +"Botany: The Role of Genomic Sequencing in Understanding Plant Evolution": 1 +"Music Technology: The Influence of Digital Signal Processing on Modern Music Production": 1 +"Psychology: Investigating Mental Health Disorders through the Lens of Artificial Intelligence and Deep Learning": 1 +"Environmental Science: Exploring the Impact of Climate Change on Coral Reefs using GIS and Remote Sensing": 1 +"Biochemistry: Exploring Proteomics - The Use of Mass Spectrometry in Protein Analysis": 1 +"Mathematics: The Application of Graph Theory in Social Network Analysis": 1 +"Cognitive Science: The Role of MRI in Understanding the Neural Mechanisms of Memory": 1 +"Computer Science: The Integration of Machine Learning and Cloud Computing in Cybersecurity": 1 +"History 101: The Impact of the Printing Press on the Renaissance": 1 +"Biology and Music: The Influence of Biorhythms on Musical Composition": 1 +"Physics 220: Studying Aerodynamics through Drone Flight and Bernoulli's Principle": 1 +"Chemistry in the Kitchen: A Molecular Approach to Gastronomy": 1 +"Children's Philosophy: Exploring Morality through Aesop's Fables": 1 +"Environmental Engineering: Exploring Renewable Energy in Automobiles Using Solar Power": 1 +"World History: The Intersection of Religion and Politics - A Study of the Protestant Reformation": 1 +"Artistic Expression: Discovering the Renaissance Through Watercolor and the Color Wheel": 1 +"Communication Studies: Understanding Societal Shifts through Instagram’s Influence": 1 +"Music Business: Dissecting Revenue Streams in the Digital Era with SoundCloud Analytics.": 1 +"Advanced Drawing Techniques: Exploring Architecture Design with AutoCAD and SketchUp": 1 +"Physics in Motion: Understanding Kinematics through Projectile Motion and Free Fall": 1 +"Computer Science: The Role of Python in Data Analysis and Visualization with Pandas and Matplotlib": 1 +"Economics: The Impact of Globalization on International Trade and Commerce": 1 +"The Influence of Technology on Urban Development: A Study on Smart Cities": 1 +"Philosophy: Understanding the Power of Critical Thinking through Argument Analysis": 1 +"Advanced Algebra: Exploring Quadratic and Polynomial Functions Through Polynomial Decomposition": 1 +"Exploring Electromagnetic Waves: A Deep Dive into The Physics of Light and Color": 1 +"Art History: The Influence of Impressionism on Modern Artistic Techniques": 1 +"Using Linear Algebra in Computer Graphics: The Role of Matrix Transformations in 3D Modelling.": 1 +"Advanced Chemistry 101: Organic Synthesis using Mass Spectrometry and Quantum Chemical Calculations": 1 +"Artificial Intelligence in Healthcare: Predictive Models using TensorFlow and Keras": 1 +"Wildlife Photography: Techniques for Capturing Animals in Motion with High-Speed Cameras and Telephoto Lenses": 1 +"Psychology 101: Understanding Human Behaviour using Social Cognition and Behavioral Neuroscience": 1 +"Introduction to Microbiology: Studying Bacteria and Viruses using Microscopy and Genetic Sequencing": 1 +"Investigative Psychology: Profiling Criminal Behavior using Data Analysis and Behavioral Science": 1 +"Junior Environmentalists: Learning about Climate Change through Renewable Energy and Sustainable Practices": 1 +"JavaScript Programming: Developing Interactive Websites from Scratch": 1 +"Nutritional Science: Exploring Digestive Processes with Food Tracking and Metabolic Rate Calculation": 1 +"Quantum Physics: Understanding Entanglement and Superposition using Python and Qiskit": 1 +"Advanced Physics: Exploring Quantum Mechanics with Particle Acceleration": 1 +"Literature 210: Utilizing Discourse Analysis in Shakespearean Tragedy Interpretation": 1 +"Environmental Science: Investigating Climate Change through Satellite Imaging and Data Analysis": 1 +"Business Economics: Harnessing Artificial Intelligence in Financial Market Prediction for Profit Maximization": 1 +"Psychology: The Intricacies of Human Behavior: A Deep Dive into Cognitive Bias": 1 +"Innovating Remote Work: The Impact of Project Management Software on Virtual Team Efficiency": 1 +"Art History: The Influence of Byzantine Iconography on Russian Orthodox Frescoes": 1 +"Advanced Political Science: Unraveling Political Dynamics Using Game Theory and the Principle of Power Balance": 1 +"Medical Science: Investigating Cellular Processes with Fluorescence Microscopy in Interactive Models": 1 +"The Intersection of Science and Art: Unveiling Hidden Features of Renaissance Paintings Using Infrared Reflectography and Hyperspectral Imaging": 1 +"Sociology 101: Influence of Social Media on Modern Day Activism": 1 +"Music Theory: Exploring the Impact of the Piano on Baroque Era Compositions": 1 +"Particle Physics: An Introduction to the Higgs Boson and the Standard Model": 1 +"Astrophysics: The Evolution of Galaxies: From Spiral to Elliptical": 1 +"Cognitive Science: Exploring Consciousness Through Electroencephalography and Transcranial Magnetic Stimulation": 1 +"Advanced Computing: Mastering Algorithms in Python using JetBrains PyCharm": 1 +"Wildlife Biology: Understanding the Dynamics of Savannah Ecosystems through Field Research and Satellite Imaging": 1 +"Neuropathology: Exploring Neurodegenerative Diseases Through Positron Emission Tomography": 1 +"Advanced Computing: Deep Dive into Kotlin for Android Development": 1 +"Fine Arts: Abstract Expressionism: Experimenting with Oil and Palette Knife Techniques": 1 +"Advanced Web Design: Crafting Websites with JavaScript & React": 1 +"History: Exploring the Impact of Social Media on Political Movements": 1 +"Data Science: Mining Patterns in Climate Change Data using R": 1 +"Chemistry: Exploring Chemical Reactions through Kitchen Experiments": 1 +"Economic Analysis: Harnessing Python for Studying Unemployment Trends": 1 +"Sound Engineering with MATLAB: An Informatics Perspective on Acoustic Design": 1 +"Mastering Narratives: An Advanced Course on Screenwriting using Final Draft": 1 +"Mind Matters: An Introduction to Behavioral Psychology through Case Studies": 1 +"High School Biochemistry: Understanding DNA Sequencing and Genetic Engineering": 1 +"Little Astronomers: Understanding Solar System through Virtual Reality Technology": 1 +"Physics: Exploring Quantum Mechanics through the Study of Light and Particle Duality": 1 +"Mathematics: Applying Linear Algebra in Cryptography and Network Security": 1 +"Chemistry: Unraveling the Mysteries of Organic Compounds through NMR Spectroscopy": 1 +"Sociology: Examining Social Inequality and Structural Change through the Lens of Intersectionality": 1 +"Business Studies: Navigating the Global Economy: A Deep Dive into International Trade and Finance": 1 +"Astronomy: Decoding the Universe: Stellar Evolution and Cosmology through Computational Models": 1 +"Political Science: Analyzing the Impact of Media in Shaping Political Landscapes": 1 +"History: Exploring Colonialism and Its Impact through the Study of Postcolonial Literature": 1 +"Neuroscience: Unveiling the Brain: Understanding Neural Networks through EEG and fMRI": 1 +"Arts and Design: Architectural Acoustics: Understanding Sound Behavior in Built Spaces": 1 +"Microsoft Word: Mastering Mail Merge for Efficient Business Correspondence": 1 +"Art and Technology: Exploring the Impact of Digital Media on Traditional Art Forms": 1 +"English 205: Dramatic Literature: The Evolution of Tragedy in Classic Plays": 1 +"Utilizing TensorFlow in Machine Learning for Historical Studies: An Exploration through Analytical Reasoning": 1 +"Biology for Beginners: A Comprehensive Overview of Cells and DNA with Practical Experiments": 1 +"Astronomy: Unraveling the Secrets of the Universe with Telescopic Observations": 1 +"English: Exploring Postmodern Literature: The Role of Irony and Parody in Challenging Conventional Narratives": 1 +"Philosophy 101: Introduction to Ethical Theories: Utilitarianism and Its Application in Modern World": 1 +"Google Docs and Google Forms: Streamlining Feedback and Assessment in Educational Settings": 1 +"Mathematics: Mastering Trigonometry with Real-World Problem Solving": 1 +"Architectural Acoustics: The Impact of Sound Design in Modern Buildings": 1 +"Marine Biology: Using Sonar Technology for Whale Communication Studies": 1 +"Cybersecurity: Implementation of Quantum Cryptography in Protecting Sensitive Information": 1 +"Behavioral Economics: Influence of Consumer Psychology on Market Trends": 1 +"Early Childhood Development: The Impact of Interactive Storytelling on Cognitive Skills": 1 +"Unleashing Surrealism: Understanding the Use of Collage and Decoupage in Abstract Art": 1 +"Literature Appreciation: The Use of Metaphor in Shaping Narrative Voice in Contemporary Novels": 1 +"Engineering Marvels: Understanding Suspension Bridges through Stress Analysis": 1 +"Traditional Music: The Evolution of Bluegrass and its Influence on Modern Country Sound": 1 +"Molecular Biology: In-depth Examination of Ribosomes using Cryo-electron Microscopy and X-ray Crystallography": 1 +"Advanced Genetics: Unraveling the DNA Mystery with PCR and Gel Electrophoresis": 1 +"Quantum Physics: Understanding Quantum Entanglement through Optical Tweezers": 1 +"Critical Thinking for Kids: Developing Skills through Chess Strategies": 1 +"Visual Arts: Mastery of Shading Techniques in Charcoal Drawing": 1 +"Astrophysics: Exploring Black Holes through Gravitational Lensing and Simulation Software": 1 +"Neurobiology: Uncovering Memory Mechanisms with EEG and fMRI in Cognitive Models": 1 +"The Baroque Period: The Influence of Chiaroscuro on Dramatic Art": 1 +"Chemistry: The Science Behind Fermentation in Bread Baking": 1 +"Health and Wellness: Improving Posture through Pilates and Stretch Bands": 1 +"World History: The Advancement of Medicine: The Role of Robotics and AI": 1 +"Chemistry: Understanding Molecular Structures and Reactions: The Role of PyMol in Visualization and Analysis": 1 +"Climate Science: Applying Machine Learning to Weather Prediction: A Case Study of Hurricane Modeling": 1 +"Electrical Engineering: Utilizing Raspberry Pi and Python in Creating Smart Home Systems": 1 +"Biology: DNA Sequencing and Genetic Engineering - A Comprehensive Study in Biotechnology": 1 +"Health & Fitness: Advancing Personal Training with Biometrics and AI Algorithms ": 1 +"Astronomy: Investigating Stellar Spectroscopy and Cosmic Microwave Background Radiation through Radio Telescopes": 1 +"Sociology: Analyzing Social Phenomena through Big Data and Network Analysis Techniques": 1 +"Geography: The Era of Climate Change - The Impact of Solar Panels and Wind Turbines on Renewable Energy": 1 +"Computational Mathematics: Fundamentals of Cryptography: A Practical Approach to Cipher Algorithms using C++ for Beginners": 1 +"Photography: The Art of Storytelling Through Cinematic Videography": 1 +"Advanced Physics: Unveiling Quantum Particles through Particle Accelerators": 1 +"Fundamental Astronomy: Investigating Celestial Body Movements via Stellar Spectroscopy": 1 +"Intermediate Calculus: Navigating through Differential Equations using MATLAB": 1 +"Introduction to Cybersecurity: Ethical Hacking and Firewall: A Primer on Network Protection": 1 +"The Influence of Literature on Emotional Intelligence: An Analysis using Psychometric Testing": 1 +"Cinema: The Impact of Minimalist Aesthetics in Independent Film Posters": 1 +"Craftsmanship: Woodworking Techniques for Creating Lifelike Animal Figurines using Mahogany": 1 +"Decoding Cryptography: A Novice's Guide to Understanding Asymmetric Encryption": 1 +"Critical Thinking 201: Deciphering Fallacies through Inductive Reasoning": 1 +"Meteorology and Satellite Tech: Forecasting Weather Patterns and Climate Change Predictions": 1 +"The Influence of Political Cartoons in Understanding Cold War Politics": 1 +"Mastering French: Unraveling the Art of Storytelling and Prose Composition with Ulysses": 1 +"Biomechanics in Ballet: A Comprehensive Study of Spine Kinematics and Injury Prevention": 1 +"Software Engineering: Diving Deep into Python and Django for Machine Learning: A Journey into AI Application Development": 1 +"Advanced Astronomy: Unveiling the Mysteries of Dark Matter using Hubble Space Telescope and Spectroscopy": 1 +"Basic Programming: Mobile App Development with Java and Android Studio": 1 +"Insights into Bioinformatics with Python for Sequence Alignment and Phylogenetic Analysis": 1 +"In-Depth Physics 201: Exploring Particle Physics using the Large Hadron Collider and Feynman Diagrams ": 1 +"Junior Geniuses: Exciting Physics Experiments for Children - Playing with Magnetic Fields": 1 +"Geography: Remote Sensing and Geospatial Analysis in Climate Change Studies": 1 +"Chemistry: Understanding Molecular Structures through Quantum Mechanics: Application of Schrödinger’s Equation": 1 +"Advanced Spanish: Engaging in Debates and Argumentative Discourse: A Cultural and Linguistic Approach": 1 +"Astrophysics: Exploring the Universe with Radio Astronomy using Fourier Transforms": 1 +"Music Technology: Exploring Sound Design and Audio Manipulation with Ableton Live": 1 +"Sociology: Analyzing Social Behavior through Big Data: An Introduction to R Programming": 1 +"Linguistics: Understanding Metaphor in Political Discourse: A Critical Discourse Analysis Approach": 1 +"Machine Learning in Finance: Risk Assessment and Portfolio Management using Python and PyTorch": 1 +"Calculus: Investigating the Concept of Infinity and its Applications using Set Theory and MATLAB": 1 +"The Role of Algorithm Complexity in Cybersecurity: An Insight into Cryptography using Python": 1 +"Medical Science: Examining the Neurological Effects of Music Therapy Using Functional Magnetic Resonance Imaging (fMRI)": 1 +"Artistic Evolution: Impressionism and the Pioneering Painters of the 19th Century": 1 +"Mastering Plot Twists: Intermediate English Course on Drama Writing Using Final Draft and Grammarly": 1 +"Biodiversity and Climate Change: The Role of Drone Technology in Wildlife Conservation and Ecological Research": 1 +"The Influence of Machine Learning on Artificial Intelligence: A Comprehensive Analysis of its Impact on Automation and Future Workforce": 1 +"Digital Storytelling: Adobe Creative Cloud's Animation Tools and Collaborative Features for Interactive Media Creation": 1 +"Sports Science: Utilizing Kinesiology for Enhanced Performance in Swimming": 1 +"Architectural Wonders & Mathematics: Utilizing Virtual Reality for Structural Integrity Analysis": 1 +"Advanced: Deciphering Asian Political Systems through Comparative Politics using Data Analytics, 3D Mapping, and PowerBI for Election Result Visualization": 1 +"Microbiology for Teens: Exploring the World of Bacteria through the Microscope": 1 +"Civic Engagement: Analyzing the Community Impact of Renewable Energy Policies": 1 +"Environmental Science: Using GIS to Understand the Impact of Global Warming on Polar Ice Caps": 1 +"Chemistry: Investigating Nuclear Fission and Fusion with Advanced Spectroscopy Techniques": 1 +"Mastering Java Development and IntelliJ: Seamless Integration with Apache Maven and Data Manipulation with Apache POI": 1 +"Business Analytics: Implementing Monte Carlo Simulation in Financial Forecasting": 1 +"Biology: An In-depth Understanding of Photosynthesis using Chlorophyll Fluorescence Imaging": 1 +"Virtual Reality in Gaming: Harnessing the Power of Oculus Rift and Haptic Feedback for Enhanced User Experience": 1 +"History: Exploring Ancient Civilizations through the Lens of Anthropological Studies": 1 +"Geometry: Understanding Fractal Dimensions with Mandelbrot and Julia Sets": 1 +"Fine Arts: Discovering Cubism through Mixed Media and Collage Techniques": 1 +"Genetics: Decoding the Human Genome using Next-Generation Sequencing and Bioinformatics Tools.": 1 +"Advanced Mathematics: Exploring the Universe through the Lens of String Theory": 1 +"Literature: Understanding Modernism Through Virginia Woolf's Novels and Stream-of-Consciousness Narrative": 1 +"Health Education: Enhancing Well-being through Meditation and Mindfulness Techniques": 1 +"Gourmet Baking: The Science Behind Perfect Pastries and the Use of Digital Temperature Controls": 1 +"Existentialism 202: Navigating Life's Absurdities Through Kierkegaard's Leap of Faith": 1 +"Applied Ethics: Navigating the Grey Areas of Bioethics Using Utilitarian Principles": 1 +"World History: The Impact of the Printing Press on Reformation: A Deep Dive into Gutenberg's Invention": 1 +"Secondary Education: Understanding Weather Patterns through Meteorological Studies: Incorporating Weather Balloons, Satellite Images, and Climate Models": 1 +"Astrophysics: An Introduction to Dark Matter and Its Detection Techniques": 1 +"Inorganic Chemistry: Crystallography and the Use of X-Ray Diffraction for Analyzing Crystal Structures": 1 +"Understanding Meteorological Patterns: Implications for Agriculture and Crop Yield Management": 1 +"Mastering Excel: Leveraging Pivot Tables and Macros for Financial Analysis": 1 +"Introduction to Python for Data Visualization: A Comprehensive Guide for Beginners": 1 +"Children's Physics: Understanding Gravity and Air Resistance with DIY Parachute Experiments": 1 +"Anthropology: Unraveling the Mysteries of Ancient Civilizations through Archaeological Evidence and Linguistic Studies": 1 +"Philosophy and Critical Thinking: Understanding Fallacies and Paradoxes through Socratic Dialogue": 1 +"Technological Progress in Agriculture: The Impact of the Industrial Revolution on Farming Techniques": 1 +"Rhythm and Resonance: An In-depth Study of Drum Acoustics Using Frequency Spectrum Analysis": 1 +"Nutrition Science: The Effect of Meal Timing on Metabolic Health and Weight Management": 1 +"Exploring Quantum Mechanics: Understanding Wave-Particle Duality through Double Slit Experiment": 1 +"Advanced Calculus: Applying the Riemann Hypothesis in Number Theory": 1 +"Molecular Biology: Deciphering Genetic Codes through DNA Sequencing and Genomic Analysis": 1 +"Cybersecurity: An In-depth Review of Firewall Architectures and Intrusion Detection Systems": 1 +"The Art of Rhythm: The Influence of Meter in Shakespearean Sonnets": 1 +"Cognitive Psychology: Understanding Human Behavior through Neuropsychological Testing": 1 +"Exploring the Impact of Ocean Currents on Global Climate: An Extensive Study using Hydrographic Surveying and Satellite Data": 1 +"Astrophysics: Unraveling the Universe with the Theory of General Relativity": 1 +"Virtual Reality in Education: Advancing Learning Environments with Augmented and Mixed Reality Technologies": 1 +"Sustainable Architecture: Implementing Green Building Practices for Energy Efficiency in Urban Planning": 1 +"Photonics: The Science Behind Fiber Optics: Grasping Waveguides and Optical Signals": 1 +"Fine Arts: Leveraging Virtual Reality to Enhance Understanding of Renaissance Masterpieces": 1 +"Physics and Dance: Using Principles of Motion to Improve Dance Techniques": 1 +"Advanced Data Science: A Comprehensive Guide to Neural Networks and Data Visualization in R": 1 +"Anthropology: Investigating African Societies through the Lens of Satellite Imagery": 1 +"Information Technology: Mastering Java and Game Design Using Unity3D": 1 +"Biology: A Comprehensive Study of Cellular Respiration and Metabolism using Mass Spectrometry": 1 +"Psychology in Football: Building Team Dynamics and Strategies Using Behavioral Science Principles": 1 +"Innovative Finance: The Impact of Smart Contracts in Blockchain on International Banking": 1 +"Mathematics: Exploring Cryptography and Problem Solving through Quantum Mathematics": 1 +"Visual Arts: Understanding the Influence of Geometric Shapes in Modern Architecture": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Particle-Wave Duality": 1 +"Art History: Decoding Renaissance Symbolism using Virtual Reality and 3D Modelling": 1 +"Engineering: Exploring the Influence of Biomechanics on Prosthetic Design and Function": 1 +"Environmental Science: Climate Change Impact on Wildlife Migration Patterns: A Detailed Study": 1 +"Music Theory: Examining the Evolution of Baroque to Classical Period through Harmonic Analysis": 1 +"Sociology: A Critical Examination of Social Norms and Gender Roles through Discourse Analysis": 1 +"Computer Science: The Impact of AI Algorithms on Predictive Analytics in Digital Marketing": 1 +"Biochemistry: Understanding the Role of Proteins in Cell Metabolism through Chromatography and Electrophoresis": 1 +"Political Science: Analyzing Middle Eastern Politics through the Framework of Realism and Constructivism": 1 +"Visual Arts: The Interplay of Light and Shadow in Still Life Photography: Techniques and Interpretations": 1 +"Psychology of Dance: Understanding the Emotional Impact of Ballet across Cultures": 1 +"Space and Literature: Metaphoric Depictions of Black Holes in Science Fiction": 1 +"Quantum Physics in Music: Exploring String Theory through the Composition of Symphonies": 1 +"Introductory Java: Mastering Object-Oriented Programming": 1 +"Photographing Nature: A Detailed Study of Bird Photography with Canon Zoom Lenses": 1 +"Conflict and Resolution in Crime Novels: An Analysis of Tension and Release": 1 +"Sustainability in Fashion: Weaving Techniques and Fabric Science for Eco-friendly Clothing Production": 1 +"Junior Geologists: An Introduction to Earth Science through Volcanic Rock Studies": 1 +"Historical Studies: The Influence of Steam Engine Technology on Economic Patterns in the Victorian Era": 1 +"Advanced Computer Science: Game Development with Unity and Procedural Generation": 1 +"Unlocking the Secrets of Argumentation: A Deep Dive into Critical Thinking and Theory of Knowledge": 1 +"Spanish Fluency: Strengthening Communication Skills through Duolingo App": 1 +"Galactic Detectives: Studying Star Formation using Radio Astronomy": 1 +"Architectural Progression: The Influence of 3D Printing and Virtual Reality on the Evolution from Classic to Modern Design": 1 +"Introduction to R in Evaluating Statistical Trends in High School Physics": 1 +"Environmental Conservation: Analyzing the Effects of Deforestation on Biodiversity using Remote Sensing Technology": 1 +"Capitalizing on SPSS for Neural Networks: A Comprehensive Guide to Cognitive Computing": 1 +"Navigating Sports Analytics with Java: A Machine Learning Approach using Power BI and Predictive Modeling": 1 +"Computer Science: The Role of Algorithms in Cybersecurity Risk Assessment": 1 +"Primary French 101: Mastering the Art of Narration in Storytelling": 1 +"The Science of Persuasion: Mastering the Application of Rhetoric in Public Speaking and Writing": 1 +"Advanced Material Science: Exploring Carbon Fiber in Aerospace Engineering with Finite Element Analysis and CAD/CAM Technology": 1 +"Audio Engineering: A Comprehensive Study of Sound Waves using Logic Pro's Frequency Analyzer": 1 +"Literature and Culture: Unraveling Cultural Identity in Travel Writing through Critical Discourse Analysis": 1 +"The Impact of Iconography in Religious Art and its Influence on Renaissance Painters during the Middle Ages": 1 +"Urban Planning and Community Involvement: Ten Innovative Approaches for Sustainable Development": 1 +"Astrophysics: Understanding Black Holes through Space-Time Diagrams, Gravitational Lensing, and Redshift": 1 +"Data Science with R: Analyzing Financial Data with Predictive Modeling, ggplot2, and Shiny": 1 +"Exercise Physiology: Applying Biomechanics for Improved Performance in Basketball": 1 +"Decoding Neurological Disorders: Insights from EEG and Functional MRI": 1 +"The Digital Renaissance: How the Internet, E-commerce, and GPS Transformed Global Business and Culture": 1 +"Biomedical Engineering Essentials: Neural Networks in Prosthetics, Robotics in Surgery and Introduction to Bioinformatics": 1 +"Astronomy and Literature: Utilizing Star Mapping in Exploring Themes in Classic Science Fiction": 1 +"Individual Athletic Performance Analysis: Using MyJump2, Smartabase Athlete Management, and Garmin Fitness Trackers": 1 +"C++ Development: Transitioning from Fundamentals to Applications with the Assistance of Kubernetes": 1 +"Art: Exploration of Precision in Origami Folding through Digital Modeling in AutoCAD": 1 +"The Impact of Encryption Techniques: Understanding the Role of Cryptography in Internet Security and Global Communications": 1 +"Physics 101: Exploring Quantum Mechanics through Virtual Reality Simulations": 1 +"Cognitive Psychology: Insights from Electroencephalography (EEG) and Transcranial Magnetic Stimulation (TMS)": 1 +"R, FL Studio, and Ableton Live: Sound Design and Audio Mixing - A Dive into Computational Audio Processing": 1 +"Physics: Understanding the Universe through Quantum Mechanics and String Theory": 1 +"Biology: Exploring the Intricacies of DNA Replication and Genetic Inheritance": 1 +"Computer Science: Developing Your Skills in Python and Machine Learning for Artificial Intelligence": 1 +"Geography: Analyzing Climate Change Impacts through GIS Applications and Remote Sensing": 1 +"Contemporary Literature: The Impact of Postmodernism on Narrative Style and Structure": 1 +"History: Deciphering the Dead Sea Scrolls: Qumran Community’s Influence on Biblical Texts": 1 +"Creative Writing: Crafting Compelling Characters through Dialogues and Backstories": 1 +"Advanced Calculus: Mastering Integration Techniques to Solve Differential Equations": 1 +"Astrophysics: Probing Black Holes using Kepler Space Telescope and Spectral Analysis": 1 +"Cognitive Psychology: Decoding Memory Processes through fMRI Scans and Data Analysis": 1 +"The Role of Quantum Computing in Cybersecurity: A Comprehensive Study": 1 +"Advanced Calculus: Understanding Fractals and Chaos Theory with MATLAB": 1 +"Ethics in Artificial Intelligence: Balancing Efficiency and Fairness in Algorithmic Bias": 1 +"Decoding Cryptography: Mastering Cryptanalysis, Hash Functions, and RSA Encryption with Python": 1 +"Mastering Watercolor Techniques with Round Brushes: Exploring Texture, Depth, and Light Effects": 1 +"Chemistry: Grasping Thermodynamics through Calorimetry Experiments and Molecular Modeling": 1 +"Spanish Poetry: Expressing Emotions and Connecting Cultures through YouTube Vlogs": 1 +"Global Gastronomy: Exploring Fermentation Techniques - The Role of Microbiology in Sourdough Bread Making": 1 +"High Performance Training: Optimizing Recovery with Sleep Analysis using Actigraphy and Chronobiology": 1 +"Intermediate Course in Data Science: Predictive Analysis in Weather Forecasting Using R Programming, Machine Learning, and Satellite Imagery": 1 +"Advanced Mathematics 210: Integrating Slack for Virtual Team Problem Solving": 1 +"Biology: Unraveling Genetic Code through CRISPR and Sequencing Technologies": 1 +"The Magic of Rhythm: A Study of Beethoven's Symphonies using Percussion Ensemble and GarageBand": 1 +"Artificial Intelligence and Deep Learning: A Comprehensive Guide to Machine Learning using Keras and Scikit-Learn": 1 +"Perfecting Adobe Audition: A Detailed Examination of Sound Editing Software for Podcast Production": 1 +"The Impact of Telegraph and Railways on Diplomacy and Warfare during the 19th Century": 1 +"The Baroque Period: Analyzing Musical Forms and Cultural Impact through the Works of Bach": 1 +"Physics 101 for Teens: Understanding Gravity with Pendulum Experiments and Data Analysis": 1 +"Basketball Analytics with MATLAB: Understanding Player Performance using Data Visualization": 1 +"Microeconomics: Market Analysis using Game Theory Models and Probability Theory": 1 +"Biological Sciences: Investigating Human Anatomy through the Lens of Contemporary Dance": 1 +"Mental Health and Exercise: The Role of Yoga in Stress Reduction and Neuroplasticity": 1 +"The Revolutionary Impact of Photovoltaic Cells in Environmental Science": 1 +"Dissecting Computer Science: The Integral Role of Quantum Computing in Cryptography": 1 +"Advanced Geology: Unearthing Earth's History through Paleomagnetic Studies": 1 +"Cultural Insights: The Evolution of Storytelling - From Oral Tradition to Digital Media": 1 +"Mastering the Integration of 3D Modeling and Texture Mapping in Game Design: A Study of 10 AAA Titles": 1 +"The Philosophy of Logic: Kant's Influence on Modern Propositional Calculus": 1 +"Mechanical Engineering Concepts: Exploring the Strength of Materials through Bridge Construction using Popsicle Sticks": 1 +"Organic Farming: Understanding Soil Health through Rhizosphere Microbiome Analysis, Nitrogen Fixation, and Composting Techniques": 1 +"Humanities 101: Exploring the Evolution of Literature with Project Gutenberg's Digital Collection": 1 +"Art Therapy: Understanding the Impact of Color on Mood and Mental Health": 1 +"Communication Skills: Mastering Professional Presentations with PowerPoint's Slide Master and Design Ideas": 1 +"Understanding Ancient Architecture: The Role of Geometry in the Construction of Greek Temples": 1 +"Young Biologists: Unraveling the Secrets of DNA and Genetics in Basic Biology": 1 +"Information Technology: Application of Adobe Audition in Creating Sound Effects in Gaming": 1 +"IT Essentials: Implementing Terraform and Ansible in Practice: Developing Secure Banking Applications": 1 +"Programming Fundamentals: JavaScript for Interactive Web Design using jQuery": 1 +"Algebra: Predictive Modeling in Finance with R and NoSQL Databases": 1 +"Statistics: Machine Learning for Weather Forecasting with TensorFlow and Pandas": 1 +"Physics and Computation: Particle Analysis using MATLAB, Mathematica, and C++ Programming": 1 +"Nighttime Narratives: The Role of Lunar Imagery in Post-Apocalyptic Fiction": 1 +"Advanced Arithmetic: Mastering Complex Calculations with the TI-84 Plus CE Graphing Calculator": 1 +"Cultural Anthropology: Understanding Societal Structures through the Study of Folklore and Mythology": 1 +"The Impact of Gutenberg's Press on Latin Terminology in the Era of Renaissance Trade ": 1 +"Harnessing Tableau in Environmental Studies: An Extensive Analysis of Climate Change Data": 1 +"Epicurean Expeditions: Discovering Food Science and Nutritional Biochemistry with Modern Dietary Practices": 1 +"Software Engineering: Implementing Augmented Reality in Educational App Development for Children": 1 +"Film Production & Cinematography: The Impact of Visual Composition in Narrative Storytelling": 1 +"Biology: Investigating Cellular Processes with Advanced Imaging Techniques": 1 +"History: Unearthing Ancient Civilizations through Geographic Information Systems (GIS)": 1 +"Advanced Physics: Quantum Computing and the Development of Cryptographic Algorithms": 1 +"Music Theory: Harmonic Analysis in Baroque Music: A Detailed Study with MuseScore": 1 +"Literature: Narratology and the Power of Metaphor in Modern Fiction": 1 +"Mathematics 220: Chaos Theory and its Application in Weather Forecast Modelling ": 1 +"Art: Exploring Texture in Abstract Expressionism with Palette Knife Techniques": 1 +"Cognitive Skills 101: Harnessing the Power of Deductive Reasoning in Problem Solving": 1 +"Advanced Ecology: Biodiversity and Ecosystem Functioning in Tropical Rainforests": 1 +"Physics: Understanding Atomic Structure and Quantum Field Theory using Feynman Diagrams": 1 +"Neuroscience: An Introduction to Neural Networks and Deep Learning using PyTorch": 1 +"Microbiology: Applying Next-Generation Sequencing in the Study of Bacterial Pathogens": 1 +"Music Theory: The Evolution of Western Harmony and its Impact on Contemporary Pop Music": 1 +"Ancient Philosophy: A Closer Look at Socratic Methods in the Context of Modern Psychology": 1 +"Economic Development: Tracing the Growth of Financial Institutions in the Post-War Era": 1 +"Environmental Science: Leveraging Remote Sensing for Climate Change Research and Adaptation ": 1 +"The Beauty of Physics: Exploring the Influence of Quantum Mechanics in Digital Art Creation": 1 +"Fundamentals of Linguistics: Enhancing Communication Skills through Digital Language Learning Platforms": 1 +"Advanced Botany: Investigating Ecological Diversity through Genome-wide Association Studies": 1 +"World War II: The Impact of the Enigma Machine on Cryptography and Modern Computing": 1 +"Biochemistry: Unraveling Protein Structures through X-ray Crystallography and Computational Modeling": 1 +"Astrophysics: Understanding Black Holes through Event Horizon Telescope and Gravitational Lensing": 1 +"Watercolor Techniques: The Interplay of Salt, Ink, and Texture in Landscape Painting": 1 +"Advanced Rhythm Construction: Exploring Groove and Syncopation with MIDI, Ableton Live, and Quantization": 1 +"Macroeconomics: Deciphering Business Cycles through Keynesian Models and Monetary Policy": 1 +"Cardiology: An In-depth Analysis of Heart Function Using EKGs and Echocardiograms": 1 +"Material Science: Examining the Properties of Nanomaterials through Scanning Electron Microscopy and Atomic Force Microscopy": 1 +"Computational Biology: Machine Learning Approaches in Predicting Protein Structures": 1 +"Environmental Law & Ethics: Implementing Green Innovations for Urban Sustainability": 1 +"The Influence of Street Art in Shaping Contemporary Visual Culture during the Digital Age": 1 +"Sociology of Media: The Impact of YouTube on Television: An Examination of Broadcast Disruption.": 1 +"Physics 101: Exploring Quantum Mechanics through the Lens of String Theory": 1 +"Cultural Studies: The Impact of Native American Flute Music in Healing and Spiritual Ceremonies": 1 +"Mathematics: Understanding the Role of Game Theory in Global Financial Markets": 1 +"The Art of Calligraphy: An Examination of Stroke, Balance, and Composition": 1 +"Web Development: Mastering Document Object Model (DOM) Manipulation with JavaScript": 1 +"Deep Dive into Artificial Intelligence: Implementing Reinforcement Learning with TensorFlow": 1 +"Java Programming Essentials: Understanding Spring Boot, Apache Maven, and Hibernate ORM Basics": 1 +"Fine Arts: The Art of Storytelling through Puppetry: Techniques and Styles": 1 +"Science 301: Unearthing the Secrets of Genetic Engineering: CRISPR and Beyond": 1 +"Explorers and Conquerors: Utilizing Satellite Imaging to Uncover Lost Civilizations.": 1 +"Advanced Robotics: Grappling with Ethical Challenges in the Age of Automation - A Comprehensive Review": 1 +"Physical Education: Body Composition Evaluation with Dual-energy X-ray Absorptiometry": 1 +"Astrophysics Marvels: The Hubble Telescope and the Study of Cosmic Phenomena": 1 +"The Ultimate Guide to Inductive Reasoning and Intricate Puzzles: Deciphering Application Specific Integrated Circuits with Cadence Virtuoso and Boolean Algebra": 1 +"Chemistry: The pH Scale: Sørensen's Contribution and the Role of Spectrophotometry": 1 +"Middle Grade Literature: Digital Storytelling and Adventure Books for Preteens": 1 +"Engineering: The Structural Dynamics of Bridges and their Simulation in AutoCAD": 1 +"Relativity Theory: Exploring the Enigma of Time Dilation and Space-time Curvature with Einstein's Train Thought Experiment": 1 +"Fine Arts: Urban Landscapes: An Acrylic Painting Technique": 1 +"Kinesiology: Analyzing Human Movement with Electromyography and Gait Analysis": 1 +"Utilizing MATLAB in the Analysis of Climate Change Patterns": 1 +"Psychophysics: Harnessing EEG to Decipher Visual Perception Mechanisms": 1 +"Sports Science: Improving Basketball Performance through Biomechanics and Wearable Technology": 1 +"Understanding the Intricacies of Data Transfer: An In-depth Study of Optical Fibers and Spectrum Analysis": 1 +"Baseball Analytics: Employing R Programming, SQL, and Big Data for Enhanced Player Evaluation": 1 +"Exploring the Effect of Vertical Farming on Crop Yield Using Machine Learning Techniques": 1 +"Music Theory: The Influence of Mathematical Ratios in Baroque Era Compositions - A Comprehensive Examination of Harmonic Structures": 1 +"Unraveling the Significance of Color Spectrum in Photography: An Intense Exploration of Light Technologies in Visual Art": 1 +"History: The Evolution of Democracy and Human Rights in Greek Civilization": 1 +"Programming with Python: Developing Logical Thinking Skills for Tech Novices": 1 +"Chemistry: Unraveling the Mysteries of Atomic Structure through Quantum Mechanics using Python": 1 +"Advanced: Climate Change Modeling and Predictions: Harnessing the Power of Geospatial Data and Machine Learning": 1 +"Basic Geology: Deciphering Earth's History through Stratigraphy and Fossil Analysis": 1 +"Cultural Anthropology: Exploring Human Diversity and Social Dynamics using Data Science": 1 +"High School: A Comprehensive Understanding of American Civil War through Interactive Simulations and VR Technology": 1 +"Finance and Quantum Computing: Implications of Quantum Algorithms on Stock Market Predictions": 1 +"Young Inventors: The Role of Robotics in Modern Science for the Next Generation": 1 +"Script and Stories: Intermediate Spanish Course with Emphasis on Narrative Deconstruction and Rosetta Stone Integration": 1 +"Music: Symphony of the Ages: Mastering the Art of Composition and Orchestration through Digital Tools": 1 +"World Literature: Unveiling Cultural Perspectives through Comparative Analysis enabled by AI Translation": 1 +"Advanced Psychology: Exploring Human Emotion through Facial Recognition Software and Behavioral Analysis": 1 +"Marine Biology: Understanding Coral Reef Ecosystems through Satellite Imagery and Machine Learning": 1 +"Music Technology: Manipulating Acoustic Spaces in Digital Music Production using Logic Pro X": 1 +"Literature: The Use of Syntactic Parsing in Discourse Analysis: A Deep Dive into Russian Novels": 1 +"Data Science: Predicting Stock Market Trends with Time Series Analysis and Deep Learning Algorithms": 1 +"Grammar: Perfecting English Syntax through Interactive Grammar Exercises using Duolingo": 1 +"Neuro-nutrition: The Impact of Dietary Fats on Cognitive Function and Neural Connectivity": 1 +"Art: Exploring Color Theory with Digital Art Techniques using Adobe Illustrator": 1 +"Advanced Cellular Biology: Decoding Mitochondrial Functions using RNA Sequencing and Nanopore Technology": 1 +"Interactive Geography: Understanding Weather Patterns and Climate Zones through Virtual Reality and Climate Change Simulations": 1 +"Exploring Astrophysics: Advanced Celestial Navigation Techniques using Stellarium": 1 +"Chemistry for Kids: Understanding Chemical Reactions with pH Indicators": 1 +"Graphic Design Mastery: Developing Professional Logos with Adobe Illustrator's Advanced Tools": 1 +"Baseball Analytics: Decoding Player Performance with R Statistical Software and Tableau": 1 +"Art History 205: Delving into Cubism: A Detailed Analysis of Collage Techniques and Texture": 1 +"Fundamentals of Robotics: Programming Autonomous Robots using C++ and ROS": 1 +"Middle School History: Deciphering Ancient Scripts using Transliteration ": 1 +"Advanced Programming Principles: Mastering Machine Learning Algorithms in Python and TensorFlow with Pandas": 1 +"Social Sciences and Statistics: Regression Analysis in SPSS using Time Series Data": 1 +"Clinical Nutrition: Metabolic Pathways and Nutrient Interactions Unveiled": 1 +"The Interplay of Light and Shadow: An In-depth Study on Chiaroscuro in Baroque Art": 1 +"Musicology: The Evolution and Impact of the Piano Forte in the Romantic Music Period": 1 +"Mechanical Marvels: An Exploration of Robotic Prosthetics in Modern Medicine": 1 +"Eco-technology: Drone Surveillance for Sustainable Agriculture and Biodiversity Conservation": 1 +"Digital Sociology: The Influence of TikTok on Global Youth Culture and Social Activism": 1 +"Advanced Cartography: Understanding the Digital Terrain Modelling with ArcGIS": 1 +"Bioinformatics Essentials: Next-Generation Sequencing and Genomic Data Analysis with Python": 1 +"Literary Techniques: The Use of Irony and Satire in Contemporary American Literature": 1 +"Chemistry Unfolded: An Exploration of Nuclear Magnetic Resonance in Molecular Structure Determination": 1 +"Cognitive Neuroscience: Decoding Human Emotions with Functional Magnetic Resonance Imaging": 1 +"Microfinance: Exploring Grameen Bank's Model and its Impact on Poverty Reduction": 1 +"Cultural Anthropology: The Role of Internet Memes in Shaping Global Culture and Identity": 1 +"Quantum Physics: Unlocking the Enigma of Quantum Entanglement through Photon Polarization Experiments": 1 +"Music Theory: Understanding the Math Behind Rhythm and Melody through MIDI Sequencing": 1 +"Design Thinking: The Intersection of Augmented Reality and Urban Planning": 1 +"Software Engineering: Game Development with Unity - An Introductory Course on Interactive Media": 1 +"Mastering Machine Learning with Random Forests: An Insight into Predictive Modeling": 1 +"Implementing Convolutional Neural Networks using PyTorch for Image Classification and Recognition": 1 +"French Literature: Examining the Sociopolitical Context of the French Revolution through the Lens of Romanticism": 1 +"Screenwriting: Utilizing Final Draft for Crafting Suspenseful Screenplays with Dramatic Irony and Symbolism Techniques using Storyboard That": 1 +"Biological Wonders: Unveiling the Secrets of DNA through CRISPR and Genetic Engineering": 1 +"Artificial Intelligence: Using Python to Predict Stock Market Trends and Economic Shifts": 1 +"Creative Writing 210: The Art of Allegory: Symbolism and Metaphor in Children's Literature": 1 +"Astrobiology Basics: Discovering Life Beyond Earth through the Lens of Exoplanetary Science": 1 +"Cybersecurity Essentials: Leveraging Python and Pytest for Ethical Hacking and Data Protection": 1 +"Harmonics of Business: Assessing the Impact of Social Media Marketing on Consumer Behavior and the Retail Industry": 1 +"Art History 101: The Evolution of Style - The Influence of Impressionism on Modern Abstract Art": 1 +"Environmental Studies: The Effects of Deforestation on Climate Change using Geographic Information System (GIS) Analysis": 1 +"Data Mining with Python: Predictive Analysis of Disease Spread and Public Health Interventions": 1 +"Advanced Programming 220: Navigating Neural Networks with Python": 1 +"Behavioral Economics: Predicting Consumer Behavior through Machine Learning and Big Data Analysis": 1 +"Philosophy of Language: Decoding Semiotics and Linguistics with Python Programming": 1 +"The Emergence of Cryptocurrency in Global Finance: Legal and Regulatory Challenges with 10 Approaches": 1 +"Physics: Exploring the Universe with Astrophysics using Stellar Spectroscopy and Python": 1 +"History: Investigating the Cold War Era - Political Strategies and Impact Analyzed through Data Visualization": 1 +"Unraveling the Secrets of the Human Genome: A Comprehensive Study using CRISPR, Genomic Sequencing, and Bioinformatics": 1 +"Ecological Dynamics: Advanced Environmental Science Focusing on Predator-Prey Interactions": 1 +"Meteorology Unearthed: Predicting Climate Patterns and Extreme Weather Events using Satellite Imagery and GIS": 1 +"Artificial Intelligence: The Role of Turing Machines in Modern Machine Learning Algorithms": 1 +"Creative Problem Solving: Utilizing Board Games to Teach Strategic Thinking for Teens": 1 +"Advanced Geology: Understanding Plate Tectonics through 3D Modeling and Simulation": 1 +"Rethinking Education: The Impact of Virtual Learning Environments on Student Engagement and Performance": 1 +"Exploring the Multiverse: Quantum Mechanics, String Theory, and the Theory of Everything": 1 +"Sustainable Architecture: Incorporating Bio-Design and Green Energy Solutions in Modern Urban Planning": 1 +"The Evolution of Cybersecurity: Responding to Threats with Machine Learning and Artificial Intelligence": 1 +"The Power of Storytelling: Using Film Analysis and Screenplay Writing to Understand Narrative Structure": 1 +"The Science of Nutrition: Analyzing the Role of Dietary Fiber in Gut Health using Biostatistics": 1 +"Understanding the Blockchain: Decentralization, Cryptocurrencies and Smart Contracts in the Digital Economy": 1 +"Immersive Experiences: The Role of Virtual Reality in Changing the Landscape of Interactive Media": 1 +"The Art of Diplomacy: Exploring International Relations through Case Studies and Conflict Resolution Techniques": 1 +"Advanced Robotics: Enhancing Children's Problem-Solving Skills with Python Programming": 1 +"Oceanography: Evaluating Sea Level Rise through Historical Climatology and Satellite Data Analysis": 1 +"Exploring the Influence of Augmented Reality on Ballet Choreography and Performance": 1 +"Molecular Biology: Investigating Genetic Structures through Transmission Electron Microscopy and Cryo-Electron Microscopy Techniques": 1 +"Philosophy and Reasoning: Understanding Metaphysical Arguments through Predicate Logic and Set Theory": 1 +"Business Studies: The Impact of CRM Software on Managing a Restaurant Chain": 1 +"Visual Arts: Creating Oil Portraits Reflecting Indigenous Folklore": 1 +"Sports Science: Application of Weight Training in High Jump Technique and Athletics": 1 +"Secondary Mathematics: Utilizing MATLAB in Linear Algebra for Complex Number System Analysis": 1 +"Adult Psychiatry: Deciphering the Intricacies of Mental Disorders through Electroencephalography (EEG) and Neurofeedback Therapy": 1 +"Advanced Robotics: Understanding AI and Machine Learning through Python, TensorFlow, and ROS": 1 +"Art History: Impressionism and the Evolution of Visual Perception through Monet's Masterpieces": 1 +"Basic French: Interactive Learning through Drama and Role-Play Techniques": 1 +"Business 210: Exploring the Impact of Globalization on Local Small Businesses": 1 +"Advanced Genetics: Decoding Human Genome Using Bioinformatics, Python, and Genomic Data Visualization": 1 +"Practical Mathematics: Integrating Augmented Reality (AR) in Geometry Learning for Enhanced Understanding": 1 +"Data Science: Predictive Analytics with Python: Building Customer Segmentation Models in Retail Industry": 1 +"Computer Engineering: Deep Learning with TensorFlow: Developing Autonomous Driving Systems": 1 +"Physics in the Real World: Using Gravitational Lensing to Understand Dark Matter": 1 +"Environmental Science: Utilizing Remote Sensing to Analyze the Effects of Climate Change on Coral Reefs": 1 +"Physics: The Impact of Quantum Mechanics on Modern Technology and the Role of the Transistor": 1 +"Cultural Studies: The Effects of Pop Culture on Political Discourse and Potential Countermeasures": 1 +"Software Development: Docker and Serverless Architecture Explored: Creating Health Tracker Apps for Wellness Enthusiasts": 1 +"Biology: Cellular Biology and Fluorescence Microscopy Uncovered through Protein Crystallization": 1 +"Robotics and Algorithm Analysis for Advanced Drone Systems: A Comprehensive Study using Arduino and ROS": 1 +"Environmental Literature: A Study of Wind Energy Portrayal in Contemporary Fiction": 1 +"Cognitive Psychology: Understanding Human Behaviour through fMRI Scans and Psychogenomics via Augmented Reality": 1 +"YouTube for Musicians: Navigating Video Marketing on Digital Platforms": 1 +"Web Development: Mastering Web Applications through Javascript and MongoDB": 1 +"Statistics: Epidemic Modeling and Projections using R, D3.js, Charts, Julia, and Bayesian Networks": 1 +"Physics 101: Understanding Quantum Mechanics through the Double Slit Experiment": 1 +"Psychology in Action: The Influence of Silent Movies on Emotion Perception - A Cognitive Approach": 1 +"A Deep Dive into Plant Life: From Photosynthesis to Genomic Analysis": 1 +"Digital Forensics: Unmasking Cyber Criminals through Advanced IP Tracing": 1 +"Computer Science 202: Developing 3D Models using Unity and C#": 1 +"Analyzing Economic Trends: A Comprehensive Guide to Using Microsoft Power BI": 1 +"Sculpture in the Digital Era: Exploring 3D Printing and Virtual Reality": 1 +"Linguistics 101: The Role of Hieroglyphics in Ancient Egyptian Communication": 1 +"Chemistry: Unveiling the Mystery of Organic Compounds through Spectroscopy": 1 +"Marine Biology: Investigating Coral Reef Biodiversity through Metagenomics": 1 +"Physics for Kids: Exploring the Universe through Telescopic Observations": 1 +"Sociology of Digital Culture: The Impact of Video Game Trends on Youth Behavior": 1 +"The Effect of Silent Cinema on Contemporary Film Noir: A Cinematic Study": 1 +"Python for Bioinformatics: Utilizing Machine Learning and AI for Genomic Sequencing and Data Analysis": 1 +"Cultural Anthropology: The Impact of the Women's Suffrage Movement on Modern Fashion Trends": 1 +"Cognitive Robotics: Understanding Artificial Intelligence through the Principles of Human Cognition": 1 +"Art History: Exploring Surrealism through the Medium of Digital Art": 1 +"The Power of Digital Marketing in Film Industry: A Study of Social Media Campaigns": 1 +"Archaeology: Examining Technological Advancements of Prehistoric Societies through Artifact Analysis": 1 +"Statistics in Environmental Science: Using R Programming to Analyze Climate Change Data": 1 +"Oceanic Ecosystems: An In-depth Study of Coral Reefs through Microscopic Observation": 1 +"Mathematics: Unraveling the Mysteries of Quantum Computing through Linear Algebra": 1 +"Chemistry: Exploring Organic Compound Synthesis via Spectrophotometry": 1 +"Psychology: Understanding Human Behavior through the Lens of Cognitive Neuroscience": 1 +"Global Cuisine: A Gastronomic Tour of the World through Molecular Gastronomy ": 1 +"Artificial Intelligence in Healthcare: Predictive Analysis of Disease Spread using Python, TensorFlow, and Cloud Computing": 1 +"Wonders of the Human Genome: An Introductory Course to Genomics for Budding Biologists": 1 +"The Influence of Folk Tales in Shaping Contemporary Literature: A Comparative Analysis": 1 +"Semiotics in Advertising: A Comprehensive Study Employing Machine Learning for Visual Analysis": 1 +"Astrobiology: The Search for Extraterrestrial Life through the Study of Exoplanets": 1 +"Geology: The Role of Tectonic Movements in Shaping Mountain Landscapes": 1 +"Art of the Renaissance: The Influence of Linear Perspective on Portraiture": 1 +"Chemistry: Understanding Molecular Bonding through Quantum Mechanics": 1 +"Urban Planning: Evaluating the Effects of Green Spaces on City Life": 1 +"The Classical Era: The Impact of Naturalism on Greek Sculpture": 1 +"Mathematics 101: Grasping Set Theory through Cantor's Diagonal Argument ": 1 +"Leveraging Virtual Reality: Assessing the Impact of VR on Immersive Storytelling in Video Games": 1 +"The Science of Sound: An Exploration of Acoustic Physics in Concert Halls": 1 +"Psychiatry and Psychotherapy: Exploring Mental Health through the Lens of Cognitive Behavioral Therapy ": 1 +"Music Technology: Examining the Impact of Auto-Tune on Pop Music Production": 1 +"Physics: The Role of Quantum Mechanics in Understanding the Multiverse Theory": 1 +"Chemistry: Advanced Techniques in Nanotechnology for Drug Delivery Systems": 1 +"Anthropology: Exploring The Cultural Impact of Colonization in Latin America": 1 +"Geography: Mapping Climate Change Impact using Geospatial Information Systems": 1 +"Literature: The Influence of Social Media on Modern Poetry: A Comparative Analysis": 1 +"Agricultural Science: The Integration of Aquaponics and Solar Energy for Sustainable Farming": 1 +"Finance: Predictive Modelling in Stock Market Forecasting using Neural Networks ": 1 +"Creativity and Engineering: Developing Spatial Intelligence through 3D Printing Technology": 1 +"Sports Psychology: The Role of Cognitive Behavioral Therapy in Enhancing Athletic Performance": 1 +"Advanced Medical Imaging: The Use of Positron Emission Tomography (PET) in Cancer Detection": 1 +"Physics of Gaming: Exploring Video Game Physics with Unity": 1 +"Botanical Biology: Understanding Plant Structure and Function Using Microscopy": 1 +"World Literature: Storyboarding and Animation with Adobe After Effects": 1 +"Innovative Mathematics: Utilizing MATLAB for Complex Calculations and Problem Solving": 1 +"Sports Science: Evaluating Athletic Performance through Biomechanics and Wearable Tech": 1 +"Cybersecurity: Protecting Digital Assets with Advanced Encryption Techniques": 1 +"Neuroscience: Deconstructing Brain Function with EEG and MRI Technologies": 1 +"Astronomical Photography: Capturing the Night Sky with DSLR Cameras and Telescope Adapters": 1 +"Culinary Arts: Molecular Gastronomy and Sous-Vide Techniques for Modern Cooking": 1 +"Digital Journalism: Rise of Social Media Platforms and Citizen Journalism.": 1 +"Geography: Decoding Earth's Mysteries: Application of Satellite Imagery in Studying Glacial Movements": 1 +"Dance and Physiology: Understanding the Role of Biomechanics in Ballet": 1 +"Ancient Civilizations: The Pyramids, the Papyrus, and the Evolution of Ancient Egyptian Culture": 1 +"Fine Arts: The Fusion of Modern Technology in Traditional Sculpture": 1 +"Bioengineering: The Role of Spider Silk in the Development of High-Strength, Lightweight Materials": 1 +"French: Virtual Reality in Education: Exploring the Impact of Augmented Reality in Language Acquisition": 1 +"Finance: Analyzing Stock Market Trends to Gauge the Economic Effects of Pandemics": 1 +"Sustainable Energy: Solar Power and Climate Change - The Potential of Photovoltaic Technology": 1 +"Physics: Exploring the Universe: The Role of Gamma-Ray Bursts in Astrophysics": 1 +"Political Science: The Influence of Quantum Computing in Cryptography and National Security": 1 +"Advanced Python: Machine Learning Algorithms, Data Visualization, and Django Framework Applications": 1 +"Historical Analysis: The Role of Architecture in the Cold War and Its Influence on Contemporary Urban Design": 1 +"The Effect of Quantum Computing on Cryptography and Data Security": 1 +"Critical Thinking through Philosophical Debates: Enhancing Cognitive Abilities": 1 +"Engineering: The Convergence of Fluid Dynamics and CAD Technology in Sustainable Energy Systems": 1 +"Earth Sciences: Evaluating the Role of Coral Reefs on Marine Biodiversity and Ecosystem Health": 1 +"Young Coders: An In-depth Course on JavaScript for Web Development": 1 +"Chemistry: Molecular Structures and the Science behind Spectroscopic Techniques": 1 +"Cognitive Development: Enhancing Children's Problem-Solving Skills using Minecraft and Number Systems": 1 +"Econometrics: A Detailed Study of Economic Variables and Predictive Modelling in STATA and R": 1 +"Physics: Quantum Mechanics Exploration using Schrödinger's Equation and Heisenberg's Uncertainty Principle": 1 +"Literature: Decrypting Symbolism - A Journey through Metaphors in Poetry": 1 +"Architecture: Exploring the Impact of Natural Elements in Sustainable Building Design": 1 +"Biology: Using CRISPR-Cas9 in Genetic Engineering: A Deep Dive into DNA Manipulation": 1 +"Applied Mathematics: Exploring Chaos Theory through Lorenz Attractors and Butterfly Effect": 1 +"Physical Education: Understanding the Use of Technology in Enhancing Athletic Performance": 1 +"Visual Arts: Exploring Abstract Expressionism: The Use of Palette Knife Technique in Oil Painting": 1 +"Philosophy 101: Deconstructing Arguments using Formal Logic and Syllogistic Reasoning": 1 +"Crafts: Mastering the Raku Firing Process in Contemporary Ceramic Art": 1 +"Social Science: Harnessing the Power of Social Media for Activism: A Decade of Digital Protest Movements": 1 +"Physics: Understanding Quantum Mechanics through Computer Simulations": 1 +"Creative Minds: Advanced Creative Writing Techniques using Digital Storytelling Tools": 1 +"Drone Photography: Capturing Architectural Wonders through Aerial Perspectives": 1 +"The Human Marvel: The Study of Human Anatomy through Augmented Reality": 1 +"Artistic Expressions: Exploring Modern Art through VR and Mixed Reality": 1 +"Historical Voyages: The Viking Age and Its Influence on Modern Scandinavian Design": 1 +"Cybersecurity: Penetration Testing and Vulnerability Assessment using Kali Linux and Metasploit": 1 +"Physical Education: Strength Training Techniques in Industrial Labor using Pneumatic Tools and Exoskeletons": 1 +"Genetics: Advanced Gene Editing Techniques using CRISPR and Flow Cytometry": 1 +"Computer Science: Machine Learning Applications in Predictive Maintenance and Fault Detection": 1 +"Advanced Calculus: Solving Real World Problems Using MATLAB and Linear Algebra": 1 +"Biology: The Role of Darwin's Theory of Evolution in the Modern Understanding of Genetic Heredity": 1 +"Astrophysics: Comprehending Black Holes through Hawking's Radiation Theory": 1 +"Business Management: Impact of Artificial Intelligence on Organizational Behavior using IBM's Watson": 1 +"Culinary Art: Understanding the Science of Molecular Gastronomy in Modern Cuisine": 1 +"Information Technology: Java Programming and Data Mining with Apache Hadoop": 1 +"Ethical Implications of Genetic Engineering: A Societal Viewpoint": 1 +"Sports Medicine: Biomechanics & Injury Prevention - A Study on Running Mechanics": 1 +"Leveraging Deep Learning for Sustainable Aquaculture: An Investigation of 10 Innovative Strategies": 1 +"Analyzing Basketball Strategy with R, Excel, MYSQL and QlikView: A Comprehensive Approach to Data-Driven Game Planning": 1 +"Mathematics: Exploring the World of Geometry with Augmented Reality Platforms": 1 +"Chemistry: Deciphering the Chemical Properties of Alloys through Scanning Electron Microscopy": 1 +"Photography: The Evolution of Landscape Photography in the Digital Age: From DSLRs to Drones": 1 +"Digital Music Production: Understanding Synthesis and Sound Design using Ableton and Serum": 1 +"History: Tracing the Impact of the Gutenberg Printing Press on the European Renaissance": 1 +"Computer Science: Decoding the Complexities of Artificial Intelligence with Python and TensorFlow": 1 +"Marketing Trends in the Film Industry: Harnessing Social Media Analytics and Audience Insights": 1 +"Unraveling the Influence of Windmill Mechanics on Dutch Maritime Expansion": 1 +"French Literature: The Art of Storytelling in the Age of AI and Virtual Reality": 1 +"Financial Analytics: Understanding Probability and Statistics through R Programming and Data Visualization": 1 +"Chemistry: Exploring the Effects of Acid Rain on Aquatic Ecosystems Through pH Analysis": 1 +"Artificial Intelligence: The Role of Neural Networks in Predictive Analytics: A Deep Learning Approach": 1 +"Cybersecurity in Smart Homes: Dissecting Privacy Issues in IoT Devices Through Ethical Hacking": 1 +"Advanced Algebra: Employing MATLAB for Real World Application of Quadratic Equations": 1 +"Physics: Deriving Laws of Thermodynamics using Wolfram Alpha": 1 +"Galactic Astrophysics: Unraveling the Mysteries of Black Holes through Radio Astronomy": 1 +"Endocrinology: An In-depth Analysis of Diabetes Mellitus and the Role of Insulin": 1 +"The Power of Imagery in War Poetry: An English Composition Study": 1 +"Microbiology: Decoding the Human Gut Microbiome through Next Generation Sequencing": 1 +"Detailed Exploration of Protein Structures Using Nuclear Magnetic Resonance, X-Ray Diffraction and Mass Spectrometry": 1 +"The Chemistry of Color in Art: Exploring Pigments through Spectroscopy using RStudio": 1 +"Mental Health and Technology: Virtual Reality Therapy for PTSD - A Comprehensive Approach": 1 +"Sustainable Engineering: Bamboo as a Renewable Resource in Contemporary Architecture": 1 +"Computer Science 102: Developing Advanced AI Models using Tensorflow and Keras": 1 +"Unraveling the Evolution of Hip-Hop: An Examination of Breakbeats and Scratching Techniques": 1 +"Business Analytics: Utilizing Machine Learning in Predictive Modeling for SME Growth Strategies": 1 +"Understanding Sleep Patterns: The Role of Melatonin and Circadian Rhythms in Sleep Disorders using EEG": 1 +"Advanced Ethics 201: Deconstructing Moral Subjectivism through the Lens of Virtue Ethics": 1 +"Statistics in Basketball: Leveraging Machine Learning for Player Performance Analysis using Power BI": 1 +"The Industrial Revolution and its Impact on American Vernacular: Cotton Gin and its Influence on Southern Dialects": 1 +"Advanced Mathematics: Exploring Fractals and Chaos Theory through Computer Modelling": 1 +"The Basics of Environmental Science: Climate Change and the Role of Greenhouse Gases": 1 +"Essential Music Theory: Understanding Harmonics through the Use of Digital Audio Workstations": 1 +"Cellular Biology: Exploring Cell Division and Mitosis with Fluorescence Microscopy": 1 +"Astrophysics 101: Gravitational Waves and Black Holes - A Journey through Space-Time": 1 +"Junior Geologists: Rock and Mineral Identification for Young Explorers": 1 +"Literature 205: Gothic Fiction and the Power of Metaphor - An Exploration of Symbolism": 1 +"Botanical Studies: The Role of Biotechnology in Sustainable Agriculture": 1 +"Physics for Kids: Exploring Electricity and Magnetism through Hands-On Experiments": 1 +"Advanced Organic Chemistry: Understanding Acid-Base Reactions using Titration Techniques": 1 +"Ecology: Analyzing Rainforest Deforestation Rates with GIS and Remote Sensing Techniques": 1 +"Maritime Warfare: The Influence of the Viking Longships on Modern Naval Architecture": 1 +"Mathematics: Exploring the Golden Ratio in Renaissance Paintings using Advanced Image Analysis": 1 +"Neuropharmacology: Understanding the Impact of Opioids on Neural Plasticity through Functional MRI Studies": 1 +"Data Science: Implementing Gaussian Mixture Models in R for Market Segmentation Analysis": 1 +"Inorganic Chemistry: Deciphering Material Composition with X-ray Diffraction and Scanning Electron Microscopy": 1 +"Cultural Beats: The Role of Flamenco in Spanish Society and its Influence on the Global Music Scene": 1 +"Physics of Sports: Analyzing the Biomechanics of a Golf Swing - The Role of Torque and Angular Momentum": 1 +"Geography and Cuisine: Utilizing Geospatial Analysis to Trace the Origins of Five Iconic Dishes": 1 +"World History: The Influence of Calligraphy on Communication Styles in Various Civilizations": 1 +"Artificial Intelligence in Healthcare: Exploring Predictive Modeling in Medical Diagnostics": 1 +"Advanced Python: Data Mining Applications in Pandas and Jupyter Notebooks": 1 +"Social Sciences: Deconstructing Sociological Theory through Factor Analysis using SPSS": 1 +"Neural Networks in Neuroscience: Applying TensorFlow in Python to Brain Mapping": 1 +"The Secret World of Quantum Computing: Understanding Quantum Algorithms and Cryptography": 1 +"Financial Fitness: Exploring Macroeconomics through Stock Market Predictions": 1 +"Mastering Spanish: Enhancing Vocabulary through the Power of Memrise's Immersive Techniques ": 1 +"Climate Change: Investigating the Ocean-Atmosphere Interactions through Mathematical Modelling ": 1 +"Business Studies: The Disruption of Traditional Retail - A Deep Dive into E-commerce": 1 +"Python Pioneers: Mastering Web Scraping with Beautiful Soup and Selenium.": 1 +"Advanced Robotics: Implementing AI for Optimal Movement in Prosthetic Limbs: A Comprehensive Study on Biomechanics": 1 +"Poetic Devices: Dissecting Metaphor Usage in Contemporary Poetry through Contextual Analysis": 1 +"Physics: Quantum Mechanics Explored with MATLAB, Multivariate Calculus, and Python for Quantum Computing": 1 +"The Impact of Penicillin in Pandemic Control: A Historical Overview with Medical and Social Perspectives": 1 +"The Complexities of Cybersecurity: Understanding Cryptography with RSA Algorithms and Firewall Technologies": 1 +"Primary Biology: Decoding the Human Body through Cellular Biology and Genetics": 1 +"Analytical Minds: The Role of Boolean Algebra in Computer Programming Unveiled Using Binary Codes": 1 +"Philosophy: Understanding the Theory of Knowledge Through Epistemology and Logical Positivism": 1 +"The Art of Brewing: Exploring the Science of Beer Making and Distillation Techniques": 1 +"Linguistic Structures: An In-depth Study of Semantics and Pragmatics through Language Games and Microsoft Word": 1 +"Biology: Genetic Engineering and Crop Improvement Using CRISPR-Cas9 Technology": 1 +"Economics: Portfolio Management with the Use of Python and Quantlib": 1 +"Software Engineering: Docker and React.js in Action: Developing Secure E-commerce Platforms": 1 +"Advanced Chemistry: Understanding Chemical Kinetics with Maple Programming": 1 +"Critical Thinking: Introducing Fallacies and Biases to Children": 1 +"Advanced Analytics in Basketball: Using Synergy Sports Technology, ShotTracker, and STATS SportVU": 1 +"Information Technology: Exploring Cybersecurity with Blockchain Technology": 1 +"Spanish: Exploration of Magical Realism in Latin American Literature": 1 +"High School Ethics 101: A Journey into the Debate of Utilitarianism vs. Deontology": 1 +"Advanced Cosmology: Understanding Dark Matter and Dark Energy with Gravitational Lensing": 1 +"Physics: Understanding the Principles of Quantum Computing": 1 +"Art: The Influence of Augmented Reality in Contemporary Painting Techniques": 1 +"Advanced Python: A Comprehensive Study of Data Science and Machine Learning": 1 +"History: Evaluating the Role of Propaganda in Shaping World War II Narratives": 1 +"Music: The Evolution of Electronic Dance Music in the Age of Digital Production": 1 +"Business Studies 200: The Impact of Social Media Marketing on Consumer Buying Behavior": 1 +"English Literature: A Detailed Study of Symbolism and Irony in Modernist Poetry": 1 +"Biology 101: The Human Genome and Genetic Engineering - A Dive into CRISPR Technology": 1 +"Political Science: Investigating the Effect of Globalization on National Policies using Data Analytics": 1 +"Engineering: The Role of Fluid Dynamics in the Design of High-Speed Trains": 1 +"Modern History: The Impact of Quantum Computing on Cybersecurity Policies": 1 +"Enhancing Mathematical Proficiency: Solving Complex Equations with the Wolfram Alpha App": 1 +"From Radio Waves to Fiber Optics: The Progress of Telecommunication and the Impact of Quantum Cryptography": 1 +"Literary Analysis: The Semiotics of Political Narratives: Insights into Political Science": 1 +"Revolutionizing Crop Irrigation: The Use of AI in Predicting Soil Moisture Levels for Sustainable Farming": 1 +"Art History 407: Impressionism and the Breakthrough of Plein Air Painting Techniques": 1 +"Understanding Physics: Gravitational Waves Explained through Python Programming": 1 +"Music Composition: Contemporary Jazz and its Roots: A Comprehensive Analysis with Ableton Live": 1 +"Secondary Education 401: Incorporating Virtual Reality and Edmodo for Interactive Physics Lessons": 1 +"The Technological Progression of the Piano in Jazz Music: The Underappreciated Role of Electric Keyboards": 1 +"Unveiling the Strength Within: Physical Education, Yoga and Balance on the Pilates Reformer": 1 +"Computer Science: Applying the TensorFlow Library for Deep Learning Methods in Python": 1 +"Decoding the Influence of Big Data and Machine Learning on the Progression of Art Styles on DeviantArt": 1 +"Chemistry: Organic Structures and the Concept of Bond Energy": 1 +"Miner’s Melody: The Symbiosis of Harmonica Music and the Pickaxe in Mining Communities": 1 +"Psychology and Film: Deciphering the Emotional Impact with fMRI Studies": 1 +"Art and Geometry: Symmetry in Design and the Utilization of Golden Ratio": 1 +"Computer Science: Advanced JavaScript and React in Game Design: Navigating the Realms of AR Game Development": 1 +"Sustainable Soccer Ball Manufacture: The Application of Compression Moulding Techniques and Recycling with Eco-friendly Materials": 1 +"Statistical Analysis: Exponential Functions and Visualisation with Python and R Programming": 1 +"Digital Media: Unraveling the Intricacies of Cryptography and Blockchain Technology in Cybersecurity": 1 +"Advanced Calculus: Mastering Partial Differential Equations in Physics using MATLAB": 1 +"History: Uncovering the Tactics and Strategies of the Cold War with Interactive Maps and AI": 1 +"Modern Oncology: A Comprehensive Study of Genomic Sequencing and Molecular Imaging in Cancer Diagnosis": 1 +"Designing Sustainable Urban Spaces: An Exploration of Golden Ratio in City Planning with SketchUp": 1 +"Contemporary Art: An Insight into Surrealism and Metaphysical Themes in Kafka's Works": 1 +"Augmented Reality in Gaming: Creating Lifelike Experiences with Unity Engine": 1 +"Biotechnology: Decoding Genetic Structures and Protein Synthesis Using Bioinformatics": 1 +"Neuroimaging Techniques: A Novel Approach to Understanding Brain Plasticity and Cognitive Development": 1 +"Environmental Engineering: Predicting Climate Change Effects Using Python, Big Data, and Machine Learning": 1 +"Biology: Decoding Human DNA with Genomic Sequencing and Bioinformatics": 1 +"Java Programming for Data Science: Enhancing Predictive Analytics with Big Data": 1 +"Astrophysics: Exploring Dark Matter through Neutrino Detectors and Gamma Ray Spectroscopy ": 1 +"Advanced Arithmetic: Exploring Rhythms with Fourier Series and Digital Signal Processing": 1 +"The Role of the Harpsichord in Baroque Music: An Analysis of Basso Continuo Technique": 1 +"Journey into Software Engineering: Enhancing Cybersecurity with Encryption Algorithms": 1 +"Unraveling the Naval Tactics of the American Civil War: The Influence of the Ironclad Warships": 1 +"Utilizing Drone Technology for Environmental Conservation: A Remote Sensing Approach": 1 +"Art: Exploring Emotions through Abstract Expressionism and Color Theory": 1 +"Macroeconomics 202: Demystifying Inflation and Unemployment through Keynesian Models": 1 +"History: Unraveling the Impact of Ancient Maritime Navigation on Modern Cartography": 1 +"Culinary Arts: Mastering the Art of Sushi Making with Bamboo Mat, Nori, and Rice": 1 +"The Psychology of Music: How Emotional Wellness Influences Musical Composition - A Comprehensive Review": 1 +"Understanding Societal Trends in East Asian Metropolises through Drone Photography and Predictive Data Analytics": 1 +"Physics for Beginners: Experiments with Magnets and Electromagnetic Fields": 1 +"Basic Immunology: Unraveling Immunity through the Study of T-Cells and B-Cells": 1 +"Biology: The Wonders of Cell Division and Genetic Sequencing Through Advanced Microscopy": 1 +"Complex Calculus: Navigating Through Fractals and Nonlinear Dynamics Using Mathematical Modelling": 1 +"Art and Architecture: Depicting Urban Landscapes through Mosaic Techniques": 1 +"Quantum Physics: A Beginner's Guide to Quantum Entanglement and the Use of Quantum Computers": 1 +"Physics and AI: Quantum Computing with TensorFlow for Nanotechnology": 1 +"Dance: The Impact of Classical Ballet on Balance and Coordination for Martial Arts": 1 +"Philosophy: The Rise of Artificial Intelligence - Focusing on Neural Networks": 1 +"Graphic Design: Mastering 3D Modeling with Blender": 1 +"The Science of Frequency Division Multiplexing: A Comprehensive Study of LTE/4G using Huawei Modems and OSPF Protocol": 1 +"Essential Coding 101: Beginning with JavaScript Programming": 1 +"An Exploration of Piano Acoustics: Grasping Harmonics through Spectral Analysis": 1 +"Art Appreciation: Decoding Abstract Art through Picasso's Cubism": 1 +"Spiking Neurons and Neural Dynamics in Theoretical Neurobiology: A Hands-on Approach with MATLAB": 1 +"Highly Advanced Machine Learning: Crafting AI Models in PyTorch using GPT-3": 1 +"Advanced Sociology: Utilizing Social Network Analysis for Understanding Modern Society Dynamics": 1 +"Japanese Literature: The Influence of Haiku on Modern Poetry - A Study of Matsuo Basho's Work": 1 +"Astronomy: The Significance of Spectroscopes in the Study of Stellar Spectra and Cosmology": 1 +"Journey through Ancient Technologies: Understanding the Evolution of Waterwheels and their Impact on Agriculture": 1 +"Mastering the Violin: An In-depth Study of Bowing Techniques using Vibrational Frequency Analysis": 1 +"Advanced Geometry: Using MATLAB for Exploring Fractal Dimensions and their Mathematical Properties": 1 +"The Science of Fresco: Techniques and History of Secco Painting Using Natural Pigments": 1 +"Integrating Native Instruments Komplete Kontrol with Pro Tools for Sound Design in Interactive Media": 1 +"Biochemistry: Structure Analysis of Proteins with PyMOL and Molecular Dynamics Simulations Using GROMACS": 1 +"Physics: The Wonders of Superconductivity: An Exploration into the World of Quantum Levitation": 1 +"Dissecting the Role of Oceanography in Latin Literature: An Examination of Marine Conservation Narratives": 1 +"Mathematical Reasoning: Utilizing Sudoku Puzzles to Comprehend Fundamentals of Algebra for Adolescents": 1 +"American History: The Intersection of Indigenous Rights Movements and Ecofeminism - A Critical Examination through Postcolonial Theory": 1 +"Physical Education: Evaluating the Effectiveness of Virtual Fitness Programs on Health and Wellness": 1 +"Physics: Understanding the Role of Quantum Mechanics in the Development of Semiconductor Devices": 1 +"Meteorology: Predicting Weather Patterns through Advanced Algorithmic Modeling": 1 +"Robotics Engineering: Exploring the Impact of Machine Learning in Autonomous Vehicle Design and Control": 1 +"Discovering the Secrets of the Gastrointestinal Tract: An In-depth Study on Gastrointestinal Endoscopy and Microbiome Analysis": 1 +"Cognitive Psychology: Exploring Human Perception through Eye Tracking and EEG": 1 +"Astrophysics: Decoding the Universe - A Study of Gravitational Waves and Neutron Star Collisions": 1 +"Artificial Intelligence: Understanding Human Emotion through Facial Recognition Technology and Machine Learning": 1 +"Theatre: Employing Augmented Reality Technology for Immersive Stage Design and Event Production": 1 +"Mathematics: Graph Theory and Complex Network Analysis: Utilizing Monte Carlo Simulations and Python for Data Analysis": 1 +"Social Sciences: The Morse Code - Its Development and the Influence of Modern Communication Technology": 1 +"Architecture and Ecology: The Role of Green Buildings in Climate Change Mitigation": 1 +"A Course on Evolution: From Fossil Records to DNA Sequencing": 1 +"Data Science in Healthcare: Predictive Modeling of Patient Outcomes using Machine Learning, SAS Programming, and Apache Spark": 1 +"Senior Chemistry: In-depth Study of Molecular Structures using X-ray Crystallography and NMR Spectroscopy": 1 +"Understanding International Finance: The Role of Cryptocurrencies in Global Monetary Systems": 1 +"Astronomy: Probing the Universe through Stellar Spectroscopy: A Focus on Spectral Imaging using Telescopic Observations": 1 +"The Sierpinski Triangle: Exploring Chaos Theory and Aesthetic Patterns with Python": 1 +"Decoding the Impact of Classical Greek Philosophy in Contemporary Ethical Debates: The Echo of Aristotelian Virtue Ethics": 1 +"Physics: Unraveling the Mystery of Black Holes and Quantum Gravity with String Theory": 1 +"Machine Learning: Deep Learning Algorithms and Tensorflow for Image Recognition": 1 +"The Physics of Music: A Comprehensive Study of Harmonics and Timbre using Fourier Analysis": 1 +"Biology: Decoding Genetic Patterns and Biodiversity through Phylogenetics": 1 +"Literature: An In-depth Analysis of Gothic Novel Tropes in Postmodern Literature with the Use of Digital Text Analysis": 1 +"Navigating Neurological Pathways: An Exploration of Visual Perception via Electroretinograms": 1 +"Applied Statistics: Predictive Modeling for Financial Market Analysis using R and the ARIMA model": 1 +"Number Wizardry: Vedic Mathematics and MATLAB for Rapid Calculations": 1 +"Mathematics: Advanced Multi-variable Calculus for Engineers using MATLAB": 1 +"The Science of Sound: Understanding Acoustics through the Lens of Music Production": 1 +"Exploring the Universe: Using Virtual Reality to Understand Astrophysics and Cosmology": 1 +"Data Visualization Techniques: Harnessing the Power of Tableau for Healthcare Analytics": 1 +"Biology: Genetic Engineering Principles and Application in CRISPR-Cas9 Techniques": 1 +"The Art of Storytelling: Narrative Structures and Character Development in Contemporary Cinema": 1 +"Psychology: Cognitive Behavioral Therapy - Methods, Applications, and Outcomes using SPSS Analysis": 1 +"Sustainable Fashion Design: Incorporating Eco-friendly Materials and Techniques in Modern Apparel Creation": 1 +"Cybersecurity: Exploring Cryptography and Network Security through Python Programming": 1 +"Ethics in Journalism: Navigating Fake News and Media Bias in Digital Age": 1 +"Physics 102: Exploring Quantum Mechanics using Mathematical Models and Simulations": 1 +"Advanced Analytics: Implementing Predictive Modelling in R and Python with Data Privacy Measures": 1 +"Spanish: Understanding Travel Journalism and Adobe Illustrator for Web Design": 1 +"The Importance of Machine Learning in Data Science: Focusing on Neural Networks through Python": 1 +"Advanced Physics: The Role of Quantum Mechanics in Predicting Particle Behavior": 1 +"The Piano and Its Technological Progress in Jazz: A Focus on Electronic Synth Technology": 1 +"The Transformation of Film: From Silent Movies to CGI Blockbusters": 1 +"Sociology: Sentiment Analysis Using Machine Learning Approaches in Social Media Data": 1 +"Deciphering History: How Morse Code and the Telegraph Revolutionized Global Communication": 1 +"Art History: The Impact of Cubism Techniques on Modern Architectural Design": 1 +"Chemistry of Art: An Exploration of Color Theory and Pigmentation through Organic Compounds": 1 +"Theoretical Physics: Delving into Quantum Mechanics through the use of Schrödinger's Equation": 1 +"Software Engineering Deep Dive: Developing Applications using Flutter and Dart Language": 1 +"The Art of Digital Photography: Understanding Light, Color, and Composition using Adobe Lightroom": 1 +"Modern Medicine: Investigating the Impact of Telemedicine on Patient Care": 1 +"Cognitive Psychology: Using Virtual Reality to Understand Perception and Memory": 1 +"Exploring Sociology: Understanding Social Structures through Conflict Theory": 1 +"Data Science: Predictive Analytics using Python and TensorFlow": 1 +"World History: Examining Cultural Shifts using Google's Book Ngram Viewer and Text Mining": 1 +"Environmental Biology: Climate Change and its Impact on Biodiversity: A Bioinformatics Approach.": 1 +"Quantum Physics: Understanding Entanglement and Superposition through Quantum Computing": 1 +"Culinary Science: Decoding the Process of Fermentation in Wine Making": 1 +"Artistic Expression: Exploring the Influence of The Industrial Revolution on Modern Design Using AI": 1 +"Young Chemists: Discovering the Intricacies of Organic Chemistry Using Augmented Reality": 1 +"Philosophy: Delving Into Fallacies and Paradoxes in Ethical Theories": 1 +"Revolutionizing Business Analytics: Leveraging Neural Networks, Cloud Computing, and Predictive Analytics": 1 +"Fundamentals of Astronomy: Grasping Star Composition through Spectral Analysis": 1 +"Abstract Art and Acrylic Pouring: The Emphasis of Texture and Form Using Palette Knife Techniques": 1 +"Anthropology: Utilizing Satellite Imaging in Unearthing Buried Civilizations": 1 +"Smart Spending: Educating Teenagers on Credit Management and Investment Strategies": 1 +"Astrophysics: Unraveling Stellar Evolution through Radio Astronomy and Spectral Analysis": 1 +"Biochemistry: Detailed Study on Enzyme Kinetics using Spectrophotometry and Isothermal Titration Calorimetry": 1 +"Advanced Statistics: Application of R Programming in Probabilistic Forecasting and Bayesian Inference": 1 +"In-depth Understanding of Ribosome Structure: Combining Atomic Force Microscopy and Nuclear Magnetic Resonance Spectroscopy": 1 +"Botany: Plant Cell Morphology and Photosynthetic Processes Explored through Confocal Microscopy": 1 +"Mental Health Education: The Role of Biofeedback in Art Based Therapy for Anxiety Disorders": 1 +"Musicology: Assessing the Influence of Synthesizers and Electronic Dance Music on Contemporary Culture": 1 +"Probing the Influence of Tai Chi on Neural Plasticity using fMRI: An Exhaustive Study": 1 +"High School Algebra: The Role of MATLAB in Solving Quadratic Equations and Linear Programming": 1 +"Mastering Advanced Calculus: A Comprehensive Approach using Mathematica and Integral Calculus": 1 +"Advanced Anthropology: Investigating the Impact of Global Migration Patterns using GIS and Spatial Analysis": 1 +"Intermediate Python Programming: Enhancing Skills in Machine Learning and AI with Raspberry Pi": 1 +"Secondary Education 501: Leveraging Augmented Reality in Interactive Learning Environments": 1 +"The Science of Mindfulness: An In-depth Study on EEG Neurofeedback and Biofeedback Techniques": 1 +"Advanced Literature: Deciphering Symbolism in Modern Poetry through Thematic Analysis": 1 +"Physics: Quantum Mechanics and Superposition - An Intensive Examination of Schrödinger's Cat Experiment": 1 +"Health and Fitness: The Role of Kinematics in Optimizing Performance in High-Intensity Interval Training": 1 +"Mastering Cybersecurity: Dive into Firewall Configurations, Intrusion Detection Systems, and VPN Protocols using Wireshark and OpenVPN": 1 +"Sustainable Urban Planning: Evaluating the Effectiveness of Green Roofs and Rain Gardens in Stormwater Management": 1 +"Mastering UX Design with HTML & CSS: An Algorithmic Approach to Responsive Web Design": 1 +"Exploring Vocabulary Expansion: Utilizing Duolingo App and Etymological Approaches for Foreign Languages": 1 +"Fundamentals of Trigonometry: An In-depth Examination of the Golden Ratio using Mathematical Software": 1 +"Astronomy: Quantum Cosmology - Interpreting Cosmic Microwave Background (CMB) Data for a Better Understanding of the Universe's Origin": 1 +"Detailed Analysis of Genetic Sequencing Techniques using Next Generation Sequencing and Bioinformatics Tools": 1 +"Literature: Mystery Novels - Decoding Suspense and Fear in Gothic Literature through Structuralism and Semiotics": 1 +"Art: The Influence of Postmodern Art Movements on Multimedia Installations in the Context of Augmented Reality": 1 +"Mastering Raster Graphics: Exploiting the Advantages of Layer Styles in Adobe Photoshop": 1 +"Assessment of Symbolic Interactionism's Influence on Modern Baseball using Chi-Square Test: A Cultural Anthropology Perspective": 1 +"Biomedical Science: The Impact of Meditation and Aromatherapy on Sleep Quality and Anxiety Reduction": 1 +"Environmental Science: Evaluating Soil Erosion and Sediment Transport using Geographical Information System (GIS)": 1 +"Exploring Quantum Mechanics: An Introduction to Wave-Particle Duality and Heisenberg's Uncertainty Principle": 1 +"Biomechanics: Understanding Human Motion through Kinematic Analysis and Electromyography": 1 +"Artificial Intelligence: Implementing Convolutional Neural Networks in Image Recognition using TensorFlow": 1 +"Astronomy: Deciphering the Universe - Stellar Spectroscopy and the Hertzsprung-Russell Diagram": 1 +"Advanced Cryptography: The Science of Information Security - RSA Algorithm and Digital Signatures": 1 +"Ecology: The Role of Keystone Species in Ecosystem Balance and Biodiversity Conservation": 1 +"Medieval Literature: Deconstructing Chivalry and Courtly Love in Arthurian Legends": 1 +"Particle Physics: Unraveling the Standard Model - Quarks, Leptons, and the Higgs Boson": 1 +"Advanced Robotics: Exploring Path Planning and Manipulator Kinematics in Industrial Automation": 1 +"Metaphysics: Dissecting the Concept of Free Will - Determinism, Compatibilism, and Libertarianism": 1 +"Astrophysics: The Interplay of Dark Matter and Galaxy Formation - A Comprehensive Study with Celestia Software": 1 +"Psychology: Unraveling Human Behavior - An Advanced Approach to Social Cognitive Theory and the Use of fMRI": 1 +"Chemistry: Organic Synthesis - Exploring Reaction Mechanisms with Gaussian09 and Quantum Chemistry": 1 +"Geography: Understanding Urban Planning through GIS - Using ArcGIS for Interactive City Mapping and Population Density Study": 1 +"Digital Media: Film Production Essentials - Cinematic Storytelling with Final Cut Pro": 1 +"Computer Science: Machine Learning for Artists - A Primer on Neural Style Transfer and Digital Art Creation": 1 +"Music: The Science of Acoustics - Exploring Sound Waves with Audacity": 1 +"Mathematics: Advanced Topics in Calculus: Understanding Fourier Series with Mathematica": 1 +"Biology: A Comprehensive Study on Cellular Respiration - Insights through Microscopy and Bioinformatics": 1 +"Engineering: Refrigeration and HVAC Systems - Thermo-fluids Analysis using ANSYS and the Principles of Thermodynamics": 1 +"Chemistry: The Art of Balancing Chemical Equations in Everyday Life": 1 +"Language and Literature: Unraveling the Mysteries of Syntax and Semantics in Poetry": 1 +"The Science of Color: Understanding Chromatography and Refraction in Rainbows and Art": 1 +"Advanced Mathematics: Deciphering the Beauty of Geometry through Origami": 1 +"Digital Renaissance: The Impact of Photoshop and CGI on Modern Visual Art": 1 +"Genomic Data Analysis: A Detailed Study of Genotype and Phenotype Correlations in Evolutionary Biology": 1 +"Classical Mechanics: Investigating Rotational Dynamics using Gyroscopes in Aerospace Engineering": 1 +"Quantum Physics: Examining Wave-Particle Duality through Double Slit Experiments": 1 +"Chemistry: The Role of Gibbs Free Energy in Spontaneous Reactions and Industrial Processes": 1 +"Sonic Innovation: Music Production with Ableton Live for Immersive Soundscapes": 1 +"Physics: Navigating Quantum Mechanics through the Lens of Schrödinger's Cat and Heisenberg's Uncertainty Principle": 1 +"Environmental Studies: Understanding Climate Change Impacts on Marine Life using Satellite Imagery and Species Distribution Modeling": 1 +"Exploring the Intersection of Virtual Reality and Interior Design: An Innovative Approach to Creating Immersive Spaces with 3D Modeling Software": 1 +"Culinary Arts: The Influence of Molecular Gastronomy on Modern Cuisine through the Use of Sous-vide and Spherification Techniques": 1 +"Harnessing Machine Learning to Predict Financial Market Trends: A Comprehensive Guide to Time Series Analysis and Algorithmic Trading": 1 +"The Impact of Green Tea on Cardiovascular Health: A Thorough Examination using Echocardiography, Blood Pressure Monitoring and Oximetry": 1 +"Software Engineering: Mastering GraphQL, TypeScript, and React Native in the Development of E-commerce Apps for Small Businesses": 1 +"Advanced Robotics: Designing Autonomous Underwater Vehicles Using Raspberry Pi, CAD Modeling, C++ Programming and Sonar Sensors": 1 +"Philosophy: The Role of Cognitive Science in Understanding Human Consciousness and Decision Making": 1 +"Chemistry: Exploring the Therapeutic Potential of Essential Oils through Gas Chromatography and Mass Spectrometry.": 1 +"Advanced Robotics: Exploring Autonomous Navigation and Object Recognition via ROS and TensorFlow": 1 +"Integrative Medicine: A Comprehensive Study on Human Microbiome Using Genomic Sequencing and Bioinformatics": 1 +"Future of Cryptography: Enhancing Security Through Quantum Encryption via Quantum Development Kit": 1 +"Introduction to Environmental Ethics: A Critical Perspective on Climate Change and Sustainability": 1 +"Analytical Biochemistry: Understanding Protein Structures and their Interactions through Chromatography and Mass Spectrometry": 1 +"Python for Financial Analysis: Predicting Stock Market Trends Using Machine Learning and Big Data": 1 +"Astronomy: Unraveling the Secrets of Black Holes using Interferometry and Photometric Redshift": 1 +"Comparative Literature: A Discourse Analysis of Translation Techniques in Multicultural Contexts": 1 +"R in Healthcare: A Data Science Approach to Diagnosing Diseases Using Predictive Analytics and Big Data": 1 +"A Comprehensive Study on Urban Agriculture: The Evolution and Impact of Vertical Farming in Sustainable City Development": 1 +"Advanced Mathematics 401: Unraveling the Mysteries of Fractals - Using MATLAB to Model Natural Phenomena": 1 +"Digital Storytelling: Crafting Compelling Narratives through the Use of Augmented Reality and Adobe Creative Cloud": 1 +"The World of Fungi: An In-depth Analysis of Mycology and Bioinformatics": 1 +"Sculpting Words: Utilizing Metaphors and Symbolism in Fiction Writing through the Lens of Psychological Archetypes": 1 +"Analyzing the Influence of Rhyme Patterns in Political Speeches: A Deep Learning Approach": 1 +"Understanding the Human Brain: Leveraging fMRI Technology to Study Cognitive Neuroscience": 1 +"Engineering Insights: Examining Quantum Dots in Solar Energy Solutions": 1 +"World History: Evaluating Cultural Shifts through Epigraphy and Archaeological Artifact Interpretation": 1 +"Business Studies: Exploring the Impact of Artificial Intelligence on Global Trade Dynamics: E-commerce, Data Mining, and Predictive Analytics": 1 +"Sustainable Architecture: The Role of 3D Printing in Reducing Construction Waste and Enhancing Energy Efficiency": 1 +"Sociology: The Impact of Social Media on Modern Politics: A Critical Inquiry Using Data Analytics": 1 +"Organic Chemistry: The Evolution and Applications of NMR Spectroscopy": 1 +"Biology: The Role of DNA Sequencing in Modern Medicine: A Historical and Ethical Perspective": 1 +"Computer Science 359: Monte Carlo Simulations - Applications in Financial Modeling with Python": 1 +"Education for Young Innovators: Introduction to Robotics and Programming with LEGO Mindstorms": 1 +"Ethnomusicology: The Role of the Koto in Traditional Japanese Music and its Modern Reinterpretation": 1 +"Astrophysics: Decoding the Secrets of Dark Matter and Quantum Gravity": 1 +"Literature: Narrative Technique and Reader Engagement: A Study of Suspense in Gothic Literature": 1 +"Mathematics: Applications of Probability Theory in Gambling: A Study Using R": 1 +"Creative Writing 201: Metaphor and Allegory: Capturing the Human Condition in Poetry and Prose.": 1 +"Biochemistry: Investigation into Protein Synthesis with Ribosomes and mRNA": 1 +"Advanced Robotics: Understanding Autonomous Systems through ROS, SLAM, and Machine Vision": 1 +"Geology 101: Unveiling Earth's History through Stratigraphy and Radiometric Dating Techniques": 1 +"Environmental Statistics: Predictive Modeling for Climate Change Using Big Data": 1 +"Chemistry: Advanced Study of Organic Compounds through NMR Spectroscopy and Mass Spectrometry": 1 +"Artificial Intelligence: Deep Dive into Neural Networks and Reinforcement Learning": 1 +"Exploring Biophysics: Techniques in Optical Tweezers, Atomic Force Microscopy and Patch-clamping": 1 +"Green Architecture: Sustainable Design Principles with Passive Solar Heating and Rainwater Harvesting": 1 +"Advanced JavaScript: Building Dynamic Web Applications with Node.js and Express": 1 +"The Science of Cryptography: Understanding Encryption and Hash Functions Using RSA and SHA-256 Algorithms.": 1 +"Physics and Athletics: Understanding Projectile Motion in Sports through High-Speed Videography": 1 +"Data Analysis: Advanced Statistical Modeling in R for Behavioral Science": 1 +"Elementary Physics: Discovering Newton's Laws through Interactive Experiments": 1 +"Advanced Botany: Exploring the World of Plant Taxonomy through DNA Barcoding Techniques": 1 +"Graphic Design: Exploring the Impact of Color Theory in Advertising through Adobe Creative Suite": 1 +"Marine Biology: Studying the Effects of Ocean Acidification on Shellfish using pH Sensors": 1 +"The Role of Infrared Spectroscopy in Forensic Science: An Introductory Chemistry Course": 1 +"Neuroscience: Evaluating the Impact of Stress on Brain Function Using Positron Emission Tomography (PET)": 1 +"Psychoacoustics: Understanding Sound Localization and Echo Perception in Human Auditory System": 1 +"Advanced Algebra: Navigating the World of Polynomial Functions Using Mathematica and the Cubic Formula": 1 +"Chemistry Concepts: Applying Quantum Mechanics in Nanotechnology Using Python": 1 +"Biology Basics: Exploring Evolution through DNA Sequencing and Genetic Algorithms": 1 +"Sociology 101: Examining Social Structures with Network Analysis and Social Media Data ": 1 +"Astronomy Advanced: Discovering Exoplanets using Radial Velocity Method and Machine Learning": 1 +"Physical Education: Historical Analysis of Olympic Games and their Impact on International Relations": 1 +"Physics Innovations: Exploring Quantum Entanglement with Bell's Theorem and Quantum Computing": 1 +"Art: The Convergence of Digital Photography and Machine Learning: A Study of DeepArt": 1 +"Music Theory: Harmonic Analysis and Composition using Ableton Live's MIDI Tools": 1 +"Mathematical Concepts: Unraveling Chaos Theory with Fractal Geometry and MATLAB": 1 +"Physics 101: Grasping General Relativity through Time Dilation Experiments and GPS Data": 1 +"Advanced Chemistry: Novel Approaches to Organic Synthesis using Green Chemistry Principles": 1 +"Physical Education: The Science of Human Biomechanics in Olympic Swimming": 1 +"History: The Influence of Cryptography on World Wars and Modern Cybersecurity": 1 +"Mastering Mobile Application Development: Kotlin, React Native, Swift, Mobile Backend Services & Google Cloud Firestore Integration": 1 +"Botany 102: Understanding Photosynthesis through Chlorophyll Fluorescence and Spectrophotometry Techniques": 1 +"Geometry: Exploring the Interplay between Fractals and Differential Equations in Topology": 1 +"Forensic Science: Deciphering Crime Scenes using Chromatographic Techniques and Molecular Biology": 1 +"Physical Education: The Physiology of High Altitude Training and its Impact on Endurance Sports": 1 +"Data Science with R: Unraveling Complex Networks using Graph Theory and Community Detection ": 1 +"Algebra: Mastering Quadratic Equations, Linear Systems, and Eigenvalues using MATLAB and Wolfram Mathematica": 1 +"Advanced Astrophysics: Decoding the Mysteries of Black Holes with Python and Matplotlib": 1 +"Cultural Analysis: Uncovering Social Dynamics in French Cinema through Film Studies and Critical Theory": 1 +"Music: Exploring African Rhythms in Jazz Improvisation using Ableton Live": 1 +"World History: How Industrialization Shaped the Political Landscape of the 19th Century": 1 +"Practical Arithmetic: Budgeting and Financial Planning for Small Businesses using Excel": 1 +"The Craft of Cinematography: Mastering Lighting Techniques in Film Production with DaVinci Resolve": 1 +"Software Engineering: Developing Efficient Data Structures and Algorithms in Java": 1 +"Intermediate Horticulture: Enhancing Crop Yield in Vertical Gardens using Aquaponic Systems": 1 +"Physical Chemistry: Applying Quantum Mechanics to Understand Chemical Bonding": 1 +"3D Design: Creating Realistic Environments for Virtual Reality Games using Unity and Blender": 1 +"Sociology: The Influence of Social Media on Global Political Movements": 1 +"Applied Mathematics: The Use of Markov Chains in Predictive Analytics - An In-depth Review of Probabilistic Models": 1 +"The Transformative Effects of Virtual Reality Gaming: A Comprehensive Review in Cognitive Behavioral Therapy": 1 +"Advanced Physics: Exploring Quantum Mechanics through Particle Acceleration and Wave Function": 1 +"Media Studies: The Art of Documentary Filmmaking with Digital Animation Techniques": 1 +"Data Science: Text Mining Techniques with Python and the NLTK Library": 1 +"Health Sciences: Cardiovascular System and Exercise: Perspectives from High-Intensity Interval Training": 1 +"Analytical Chemistry: Unraveling Compound Structures with Nuclear Magnetic Resonance and Mass Spectrometry": 1 +"Elementary Education: The Impact of Augmented Reality on Early Reading Skills Development": 1 +"The Mathematics of Rhythmic Structure: Analyzing Syncopation and Polyrhythm through Algebraic Topology": 1 +"Advanced Physics: Quantum Computing for Problem Solving Algorithms": 1 +"Bioinformatics: Microbiome Data Analysis using Machine Learning and Neural Networks": 1 +"JavaScript, Pro Tools, Synthesizers and FL Studio: A Comprehensive Guide to Frequency Domain Processing for Music Production": 1 +"Business Management: Impact of Cryptocurrencies on Small Business Operations": 1 +"R and ggplot2 for Visualizing Climatic Changes: In-depth Understanding of Environmental Data Analytics": 1 +"Secondary Education 410: Implementing Minecraft Education Edition in Virtual Reality for Interactive Learning": 1 +"Advanced Literature: Examining Surrealism through the Novels of Gabriel Garcia Marquez": 1 +"High School Coding: Introduction to C++ Programming and Algorithms in Game Development": 1 +"High School Earth Science: Unveiling the Mysteries of the Ocean using Deep Sea Exploration": 1 +"High School Algebra: Application of Hexadecimal System in Calculating Music Tempos using Digital Metronomes.": 1 +"Advanced Astrophysics: Exploring Quantum Mechanics through the Lens of Stellar Evolution": 1 +"Physics: Delving into Thermodynamics and Spectroscopy with Solar Energy Applications": 1 +"The Human Genome Project: A Comprehensive Course on DNA Sequencing and Genomic Medicine": 1 +"Artificial Intelligence: Applying Augmented Reality in the Development of Smart Cities": 1 +"Environmental Science: Investigating Climate Change Impacts through Paleoecology and Bioinformatics": 1 +"Deep Learning with Ruby: Practical Natural Language Processing Techniques through Sentiment Analysis": 1 +"The Art and Science of Cryptography: An Exploration of Encryption Algorithms with Haskell Programming": 1 +"Information Technology: Mastering JavaScript through the Application of 3D Modelling": 1 +"Kinematics in Dance: A Comprehensive Study of Motion Tracking Systems in Choreography": 1 +"C++ and FL Studio: An Extensive Course on Audio Processing and Sound Engineering with Pitch Correction Algorithms": 1 +"Astrophysics: Probing Star Formation with Telescope Observations and Spectral Analysis": 1 +"Biomechanics: A Comprehensive Study of Human Gait Using Motion Capture and MATLAB": 1 +"Coding for Kids: Developing Games with Python and the Pygame Library": 1 +"Ecology 101: Understanding Biodiversity through Field Studies and GIS Mapping": 1 +"Modern Philosophy: Analyzing Existentialism through Nietzsche and Dostoevsky with Critical Textual Analysis": 1 +"Fundamentals of Music: Exploring Sound Waves and Harmonics with Acoustics and Audio Software": 1 +"Business Analytics: Predictive Modelling in Market Trends Using Machine Learning and R": 1 +"Psychology of Art: Studying Visual Perception and Emotion using EEG and fMRI Scans": 1 +"Elementary Robotics: Building Functional Bots with Raspberry Pi and Python": 1 +"Virtual Reality in Architecture: Designing Interactive Buildings with SketchUp and Unity Engine": 1 +"Artificial Intelligence: The Impact of Deep Learning on Predictive Analytics in Healthcare": 1 +"Anthropology: The Influence of Globalization on Traditional Cuisine and Dietary Habits": 1 +"Physics: Exploring Quantum Mechanics and its Application in Nanotechnology ": 1 +"Marketing Strategy: The Role of Virtual Reality in the Retail Industry Transformation": 1 +"Art: Abstract Expressionism and the Influence of VR in Modern Sculpture Techniques": 1 +"Blockchain Technology: Application in the Healthcare Industry for Patient Data Security and Transparency": 1 +"International Relations: The Role of Social Media in Shaping Public Opinion: A Study on Political Campaign Strategies": 1 +"Data Science in Sports: Predictive Modeling of Player Performance using Python and Machine Learning Techniques": 1 +"Exploring Music and Technology: The Impact of AI on the Creation and Consumption of Music": 1 +"Sustainable Agriculture: The Application of Robotics and AI in Precision Farming: A Study on Crop Yield Optimization.": 1 +"Artistic Exploration: Creating Digital Paintings Using Procreate iPad Software": 1 +"Diving into Classic Literature: Analyzing Victorian Era Novels through Virtual Classrooms": 1 +"Fitness and Technology: Utilizing Fitbit for Data-Driven Personal Training and Performance Improvement": 1 +"Web Design Fundamentals: Building Your First Website with HTML and CSS": 1 +"The Impact of Autonomous Vehicles on Urban Traffic Patterns": 1 +"Decoding Baseball: An In-Depth Study of Batting Average Statistics Using R, SQL, and Machine Learning": 1 +"Advanced Genetics: Exploring CRISPR-Cas9 and Its Role in Genomic Engineering": 1 +"Anthropology: Unveiling Ancient Civilizations through 3D Imaging and Virtual Reality": 1 +"Physics: Deciphering Quantum Theory and its Implications on Modern Telecommunications": 1 +"Language Arts: Exploring Poetry and Prose through Virtual Reality Literature Experiences": 1 +"Geographical Information System: Analyzing Spatial Data with ArcGIS for Environmental Studies": 1 +"Psychology: The Role of Cognitive Behavioral Therapy in Managing Social Anxiety Disorders": 1 +"Advanced Mathematics: Chaos Theory and Fractals - A Deep Dive into Nonlinear Dynamics": 1 +"Digital Humanities: Literature and Linguistics in the Digital Age - The Effect of Blogging Platforms": 1 +"History: The Rise and Fall of the Roman Empire - Emphasizing the Influence of Military Tactics": 1 +"Biochemistry: The Use of Mass Spectrometry in the Analysis of Proteins and Peptides": 1 +"Python and Ableton for Music Production: Unraveling Harmonics and Frequency Modulation for Electronic Music": 1 +"The Magic of Neuroplasticity: An In-depth Study of the Brain's Ability to Change and Adapt": 1 +"Astronomy: The Mysteries of Dark Matter and the Role of Gravitational Lensing": 1 +"From Papyrus to E-books: The Evolution of Written Communication and the Impact of Digitalization": 1 +"Psychology: Enhancing Cognitive Development through Music and Art Therapy": 1 +"Business 200: The Impact of Cryptocurrency on Global Trade and Market Values": 1 +"Literature: Understanding the World of Publishing: The Role of Literary Agents and Copyright Laws": 1 +"Computer Science: Fundamentals of Web Development - Exploring HTML5 and CSS3 with Visual Studio Code": 1 +"Chemistry: The Essence of Aromas: Understanding the Science behind Perfumery with Gas Chromatography": 1 +"Statistics: Sports Analytics: Utilizing R Programming and Predictive Models in Basketball Performance Evaluation": 1 +"Computer Engineering 102: Java Programming with Object-Oriented Concepts using MySQL for Database Design and Hadoop for Distributed Processing": 1 +"Anatomy: Decoding Human Physiology through Magnetic Resonance Imaging (MRI)": 1 +"Design: The Fusion of Fashion and Architecture: Exploring 3D Design using Rhino and Grasshopper": 1 +"An In-depth Course on Cryptography: Exploring Encryption Algorithms with MATLAB and OpenSSL.": 1 +"Anthropology: Understanding Ancient Civilizations through Satellite Imagery Techniques": 1 +"Physics: Exploring Quantum Mechanics using Interactive Simulations and AI Learning": 1 +"Molecular Biology: Decoding Epigenetic Modifications using Next-Generation Sequencing": 1 +"The Impact of Rock and Roll on Post-War Society: A Study of Vinyl Record Production": 1 +"Data Science: Using Python to Analyze and Predict Stock Market Trends": 1 +"Green Architecture: The Integration of Solar Energy Systems and Recyclable Materials in Modern Construction": 1 +"Advanced Microbiology: The Role of Petri Dishes in Studying Antibiotic Resistance": 1 +"The Influence of Satirical Illustrations on the French Revolution: The Power of Printmaking": 1 +"The Contribution of Social Media Advertising to the Fashion Industry: A Marketing Studies Course": 1 +"Linguistics: The Influence of AI Translation on Global Communication and its Impact on Language Evolution": 1 +"Physics: The Implications of Quantum Mechanics in Modern Technology": 1 +"Analyzing Climate Change Through Palynology: An Examination of Fossil Pollen and Spores": 1 +"Deciphering Ancient History: Understanding the Rosetta Stone and Hieroglyphics Translation Techniques": 1 +"Computer Science: Exploring Cybersecurity through Cryptography and Advanced Programming Concepts": 1 +"Advanced Geometry: Understanding Fractal Patterns in Nature and Their Mathematical Models": 1 +"Political Science: Unmasking Propaganda through Critical Thinking and Media Literacy ": 1 +"Astronomy: The Impact of Exoplanets on the Search for Extraterrestrial Life": 1 +"Psychology: Comprehending Human Behavior through Experimental Design and Statistical Analysis": 1 +"Music: The Influence of Classical Composers on Modern Film Scoring Techniques": 1 +"Environmental Science: The Role of Photosynthesis in Global Carbon Cycling.": 1 +"Understanding the Universe: Practical Applications of Astrobiology and Radiotelescope Analysis in Stellar Evolution": 1 +"Biology 101: Essentials of Genetics - Exploring DNA Sequencing Techniques with Gel Electrophoresis": 1 +"Boolean Algebra and Cryptographic Ciphers: An Insight into C++ Programming": 1 +"Computer Science 205: Data Analysis using R Programming with ggplot2 & Distributed Computing using Hadoop": 1 +"Force, Momentum, and Quantum Mechanics: Comprehensive Examination of Heisenberg's Uncertainty Principle and Wave-particle Duality ": 1 +"Mastering Digital Piano: MIDI Mapping Techniques in Ableton using Logic's Frequency Modulation and FL Studio": 1 +"Progressive Mathematics: Climate Change Modeling Using MATLAB, Neural Networks, and Polynomial Regression Analysis": 1 +"In-depth Analysis of Texture Impact in Oil Painting Techniques through Palette Knife and Acrylic Mediums: Evaluating Geometric Forms and Perspective": 1 +"Intermediate French: Decoding the Art of Storytelling through Similes and Proverbs": 1 +"Principles of Computer Engineering: Designing Drones with Blockly, Micro:bit, CAD Design, and Raspberry Pi": 1 +"Environmental Science: The Impact of Plastic Waste on Marine Life": 1 +"Chemistry: The Role of Catalysts in Industrial Processes": 1 +"Augmented Reality: Exploring the Potential of AR in Modern Healthcare": 1 +"Ethics: Understanding the Implications of AI in Decision Making: A Critical Review": 1 +"Molecular Gastronomy: The Science Behind Spherification and Emulsification": 1 +"Data Analysis with Python: Diving into Climate Change Statistics and Predictive Models": 1 +"The Power of Encryption: The Evolution of Cryptography in Digital Security": 1 +"Mobile App Development: A Comprehensive Course on Kotlin for Android Applications": 1 +"Neuropsychology of Art: Exploring the Brain's Reaction to Visual Stimuli": 1 +"Astrophysics: Decoding the Mysteries of Black Holes using Gravitational Wave Observatories.": 1 +"Advanced Excel and Tableau in Corporate Sector: An In-depth Analysis of Employee Productivity and Performance Metrics ": 1 +"Psychology: Influence of Color on Mood - The Progress in Chromotherapy Techniques": 1 +"Biostatistics: A Thorough Examination of Regression Analysis with Categorical Variables in R and Python": 1 +"Global History: The Influence of Agricultural Innovations on Traditional Cooking Methods": 1 +"Astrophysics: Comprehensive Study of Gravitational Waves using Laser Interferometer and Black Hole Simulations": 1 +"Financial Studies: Investigating the Impact of Quantum Computing on Securities Trading and International Commerce": 1 +"Linguistics: Sentiment Analysis using Natural Language Processing and Deep Learning: Cognitive Science and Discourse Interpretation": 1 +"Environmental Science: Geospatial Analysis in Worldwide Tracking of Endangered Species and their Habitats": 1 +"Leveraging Apache Spark: The Significance of Data Science in Climate Change and its Effect on Sustainable Agriculture": 1 +"Software Engineering: Integrating AWS Lambda and Python with MVC Architecture for E-commerce Apps Development for Small Businesses": 1 +"Unraveling the Intricacies of Dark Matter: A Detailed Exploration of Astrophysics": 1 +"Decoding Environmental Impacts: Advanced Geo-Spatial Analysis through R and Hadoop for Sustainable Urban Planning": 1 +"Marine Science: The Intricate World of Coral Reefs - An In-depth Study using Underwater Drones": 1 +"Literature: Mastering the Art of Foreshadowing in Mystery Novels - A Study of Intrigue and Suspense": 1 +"Probing Genetic Disorders: An Extensive Examination using Genome Sequencing and Bioinformatics": 1 +"Fundamentals of Cognitive Computing: Tackling Bias in Machine Learning with an Interdisciplinary Approach": 1 +"Economics: Deciphering the Impact of Cryptocurrency on Global Markets through Blockchain Analysis": 1 +"Sports Science: Enhancing Sports Performance through Biomechanics - A Focus on Golf Swing Techniques": 1 +"The Evolution of Augmented Reality in Modern Advertising: A Comprehensive Analysis of Snapchat Filters": 1 +"Fine Arts: The Impact of Perspective in Impressionist Paintings": 1 +"Advanced Programming: Leveraging Machine Learning in MATLAB to Optimize Business Processes": 1 +"Ecological Statistics: Using R and GIS in the Study of Climate Change Patterns": 1 +"Exploring Themes in Classic Cinema: A Narrative Analysis using Semiotics": 1 +"Economics: Decoding the Stock Market - An Investigation using Python and Data Mining Techniques": 1 +"Advanced Robotics: Arduino, Raspberry Pi, and the Integration of AI in Autonomous Vehicles Design": 1 +"Leveraging 3D Printing in Biodegradable Material Production for Sustainable Fashion": 1 +"Neuroscience & Gut Health: The Impact of Vagus Nerve Stimulation on Digestive Disorders": 1 +"Comprehensive Study of Quantum Computing: Decrypting Qubits and Quantum Algorithms using IBM Qiskit": 1 +"Music: Rhythm Interpretation through the Medium of Dance Choreography": 1 +"Cosmology: Unveiling the Mystery of Black Holes using Gravitational Waves and LIGO Data Analysis": 1 +"The Art of Digital Animation: Understanding Keyframes and Motion Tweens Using Adobe Animate": 1 +"Quantum Physics Decoded: The Role of Quantum Entanglement in Teleportation": 1 +"Computer Science: Understanding Cybersecurity with Firewall, Antivirus, and Virtual Private Networks": 1 +"The Impact of Big Data on Healthcare: Prediction Models and Patient Outcomes": 1 +"Language Arts: Philosophical Literature - Unraveling Existentialism in Novels and Essays with Structural Analysis": 1 +"Inorganic Chemistry: Mastering Crystal Structures with Crystallography and Computational Chemistry using CASTEP": 1 +"Sustainable Architecture: Incorporating Solar Panels in Urban Design: Ten Eco-Friendly Strategies": 1 +"Mathematics: Diving into Calculus and Trigonometry with Wolfram Mathematica and Differential Equations": 1 +"World History: The Renaissance Era - The Printing Press, Humanism, and the Impact of the Reformation": 1 +"Exploring the Depths: Marine Biology and The Mysteries of the Deep Sea": 1 +"Physics of Vision: Unveiling Optical Perception through Infrared Systems": 1 +"Dialects and Dialogues: A Primary Spanish Course with Poetry Interpretation and Linguistic Software Integration": 1 +"Primary Electronics: A Primer on Circuit Building with Raspberry Pi and Logic Gates": 1 +"The Function of Artificial Intelligence in Predictive Analysis: A Comprehensive Look at Machine Learning Algorithms": 1 +"Sustainable Development: Evaluating the Impact of Renewable Energy on Climate Change": 1 +"Creative Writing: Story Construction and Character Development - Incorporating Plot Diagramming": 1 +"Artistic Techniques: Discovering Texture and Color with Digital Painting Tools": 1 +"Molecular Chemistry: Unveiling Atomic Interactions through Spectroscopic Methods and Quantum Mechanics": 1 +"Information Technology: Harnessing Maya's 3D Modeling and Animation Principles in Game Design": 1 +"World Literature: Analyzing Non-Western Narratives Using Feminist Theory": 1 +"Advanced Algebra: Exploring Fractal Geometry through Mandelbrot and Julia Sets": 1 +"Unleashing the Potential of Ableton Live's Drum Rack in Electronic Music Production": 1 +"Chemistry: The Science of Matter: A Primer on Quantum Mechanics": 1 +"Advanced Computing 210: Mastering Data Analysis with R and ggplot2 for Statistical Inference": 1 +"Astronomical Discoveries: Utilizing Radio Telescopes for Deep Space Exploration": 1 +"Exploring Graphic Design through Virtual Reality: Using Unity Engine": 1 +"World History: Tracing Human Migration with DNA Sequencing and Ancestry Databases": 1 +"Literary Exploration: Experimenting with Metaphors in Sci-Fi Literature Using Scrivener and Digital Archives": 1 +"Mastering Movement: Choreographic Expression and Analysis with Motion Capture Technology": 1 +"Intermediate Earth Science: Investigating Climate Change and Weather Patterns with ArcGIS for Geospatial Analysis": 1 +"The Art of Molecular Gastronomy: Deconstructing Flavors and Aroma Compound Chemistry": 1 +"Biomedical Engineering: Exploring Biomechanics through Gait Analysis and Prosthetic Innovation": 1 +"Harnessing Instagram for Fashion Branding: An Examination in Cultural Studies": 1 +"Art 304: The Evolution of Miniature Art and Brushwork Techniques Using Watercolors": 1 +"Mathematics 201: Analyzing Group Theory through Permutation Cycles": 1 +"Computer Science: Understanding Algorithm Complexity and Data Structures in Software Development - Creating Efficient Code": 1 +"Physics: Unraveling General Relativity through Tensor Calculations and Geodesic Equations": 1 +"Computer Science: Excelling in Python Programming for Data Science": 1 +"Advanced Biofeedback Techniques: An In-depth Study in Autism Research Using Functional Magnetic Resonance Imaging": 1 +"Neuroscience 201: Neuroplasticity and its Implications in Cognitive Behavioral Therapy.": 1 +"Astronomy: The Power of Telescopes in Understanding Cosmic Phenomena": 1 +"The Evolution of Music: The Radical Changes Brought by the Electric Guitar": 1 +"Information Technology: Mastering Virtual Reality with Unity and Unreal Engine": 1 +"The Digital Palette: Skills and Evolution of Graphic Design": 1 +"The Role of Robotics in Understanding Human-Animal Relationships: A Comprehensive Zoology Course": 1 +"Advanced Calculus: The Influence of Algorithms on Predictive Modeling and the Use of MATLAB": 1 +"Mastering Communication: Enhancing Theatrical Expression using Augmented Reality": 1 +"Science for Beginners: Exploring the Universe with Telescopes and Star Charts": 1 +"Mechanics 101: Understanding Fluid Dynamics - The Magic of Hydraulics and Pneumatics": 1 +"Introduction to Acoustics: Basics of Echoes and Reverberations - Focus on Waveform Analysis": 1 +"Geometric Principles in Architecture: An In-depth Study of Angles, Shapes, and Space Utilization": 1 +"Decoding the Human Mind: Introduction to Neuroscience and the Use of fMRI Technology": 1 +"The Evolution of Language: Exploring Linguistic Changes in the Age of Globalization": 1 +"Quantum Mechanics: Exploring the Unseen World with Particle Accelerators and Scintillation Counters": 1 +"Environmental Science: Understanding Ecosystem Dynamics through Satellite Imagery and GIS Technology": 1 +"Physical Education: Enhancing Endurance through High-Intensity Interval Training and Recovery Techniques": 1 +"Genetic Engineering and DNA Splicing: A Detailed Course on Recombinant DNA Technology": 1 +"Understanding Exposure Time: The Art of Night Sky Photography and Long Exposure Techniques": 1 +"Music and Culture: Exploring Identity through Rhythm, Melodies, and Harmonies": 1 +"History of Printmaking: The Impact of Gutenberg's Press on the Renaissance and Beyond": 1 +"Advanced CT Scanning in Neurology: Detailed Exploration of the Human Brain": 1 +"Physics for Young Minds: Grasping the Basics of Quantum Mechanics through Playful Experiments": 1 +"Data Analytics with R for Sports Science: Deconstructing Nutrition and Fitness Indicators": 1 +"Cultural Anthropology: Assessing Instagram's Influence on Body Positivity Movements through Visual Representations": 1 +"Art: The Craft of Digital Painting for Animation in Virtual Reality": 1 +"Fiction: The Craft of Storytelling: The Role of Virtual Reality in Evoking Emotion": 1 +"Biology 101: Decoding the Mysteries of Photosynthesis: Chloroplasts and Beyond": 1 +"Java Deep Learning: Hands-on Guide to Neural Networks with TensorFlow and IntelliJ IDEA": 1 +"Statistics Uncovered: Exploring Predictive Modelling and Regression Analysis with Minitab and the Central Limit Theorem": 1 +"Economics: Grasping Global Trade Flows with Data Visualization Techniques": 1 +"Intro to Environmental Science: Monitoring Climate Change using Python for Data Visualization": 1 +"Political Science: Decoding Diplomacy in the Digital Age - The Impact of Cybersecurity": 1 +"Business Strategy: A Deep Dive into Market Segmentation using Predictive Analytics for Profit Maximization": 1 +"Chemistry: Unfolding the Enigma of Chemical Bonding through Quantum Mechanics": 1 +"Digital Humanities: Exploring Contemporary Literature through Computational Text Analysis": 1 +"Sociology: Deciphering Societal Trends through Big Data Analysis and Machine Learning Tools": 1 +"Nutritional Sciences: Omega-3 Fatty Acids and their Role in Cardiovascular Health - An Epidemiological Study": 1 +"Intro to Botany: Understanding Plant Growth and Photosynthesis using AI and Machine Learning": 1 +"Creative Writing: Exploring Narrative Structure through the Prism of Film Scriptwriting": 1 +"World History: Evaluating the Influence of Renewable Energy Policies on Global Economy": 1 +"Anthropology: Decoding Ancient Civilizations through GIS and Satellite Imagery": 1 +"Musicology: Exploring the Mathematics of Rhythm and Melody in Classical Compositions": 1 +"Advanced Robotics: Utilizing Python for Machine Learning and Autonomous Navigation ": 1 +"Environmental Science: Climate Modelling for Sustainability: Harnessing AI and Big Data": 1 +"Graphic Design: Unleashing Creativity through 3D Modeling and Augmented Reality": 1 +"Advanced Physics: Understanding Quantum Entanglement and Its Implications on Teleportation": 1 +"Neuroscience: Unlocking the Human Brain: Exploring Neuroplasticity through EEG and fMRI": 1 +"Sociology: The Impact of Social Media on Interpersonal Communication: A Qualitative Analysis": 1 +"Artificial Intelligence: Ethical Consideration of Machine Learning in Healthcare: An Exploration of Bias and Privacy": 1 +"Culinary Arts: The Science of Cooking: Mastering Molecular Gastronomy and Sensory Perception": 1 +"The Evolution of Urban Landscapes: An Analysis of Green Architecture and Sustainable Cities": 1 +"Mathematical Wonders: Enhancing Teenagers' Problem-Solving Skills through the Prism of Geometry and Algorithms": 1 +"French: Revolution and Climate Change - Understanding the Implications through Ecological Discourse": 1 +"Macroeconomics 102: The Dynamics of Fiscal Policy and Monetary Theory: A Closer Look at Inflation and Unemployment": 1 +"Computer Science 103: Harnessing the Power of R for Statistical Modelling and Predictive Analytics": 1 +"Computer Science 170: Coding with Java - Machine Learning Algorithms with Weka ": 1 +"Biology: The Significance of DNA Replication and Genomics in Genetic Engineering and Human Evolution": 1 +"VR, Adobe After Effects, and the Influence of Virtual Reality in the Revolution of Film Industry": 1 +"Astronomy: Exploring the Mysteries of Dark Matter and Gravitational Lensing with Gamma-Ray Telescopes": 1 +"Primary Education Science: Investigating the Metamorphosis of Butterflies under Controlled Environmental Conditions": 1 +"Biology: The Art of Genetics - Decoding DNA and the Human Genome": 1 +"Statistics: R Programming and Its Role in Financial Forecasting": 1 +"Geography: Understanding Weather Patterns through GIS and Spatial Analysis": 1 +"Physics: Exploring Quantum Mechanics through Schrödinger's Equations": 1 +"Computer Science: Mastering Cybersecurity with Python and Kali Linux": 1 +"Art History: Unpacking the Renaissance - Da Vinci's Techniques and Symbolism": 1 +"Psychology: The Power of Positive Thinking - Exploring Cognitive Behavioral Therapy": 1 +"Economics: The Impact of Global Trade on Developing Economies": 1 +"Mathematics: Using Calculus to Model The Stock Market Volatility": 1 +"Literature: Deep Dive into Shakespeare's Use of Metaphor in Macbeth": 1 +"The Impact of Media in Propagating Environmental Activism: A Case Study of the Green Movement": 1 +"Political Science: The Role of Propaganda in World War II - A Study through Discourse Analysis Techniques": 1 +"Art Studies: The Influence of Quantum Mechanics on Abstract Art: An Analytical Approach with Augmented Reality": 1 +"Deciphering Cybersecurity: An Exploration of Blockchain Technology and Cryptography": 1 +"Physics: The Golden Ratio in Nature's Patterns: A Study with Simulation and Modelling Tools": 1 +"Philosophy 101: Understanding Syllogisms in Critical Thinking through Symbolic Logic": 1 +"Geography: The Effect of Climate Change on Global Food Production - An Agricultural Investigation": 1 +"Decoding Medieval Architecture: The Application of Algebra in the Design of Gothic Cathedrals": 1 +"Basketball Analytics: Enhancing Performance Evaluation Using R Programming in SPSS and PowerBI": 1 +"Linguistics: Political Campaign Strategies and Persuasion Tactics - A Computational Linguistics Approach with Text Mining Techniques": 1 +"Astrophysics 101: Unraveling the Secrets of Dark Matter and Energy": 1 +"Advanced Computing: Mastering Machine Learning Algorithms": 1 +"Introduction to Neuroscience: Decoding Brain Signals Using EEG Technology": 1 +"Environmental Chemistry: Investigating Climate Change through Carbon Isotope Analysis": 1 +"Game Theory and its Applications: A Deep Dive into Strategic Decision Making": 1 +"Advanced Anatomy: Exploring Human Brain Functionality Using MRI Technology": 1 +"Fundamentals of Geology: Understanding Plate Tectonics and Earthquake Predictions": 1 +"Introduction to Genetics: CRISPR and Its Applications in Gene Editing": 1 +"The Rise and Fall of Ancient Societies: Detailed Study of Mayan Civilization": 1 +"Digital Music Production: Utilizing Ableton Live and Pro Tools for Movie Scoring": 1 +"Advanced Machine Learning with Python: Deep Dive into Convolutional Neural Networks": 1 +"Spanish Literature: Understanding the Symbolism in Gabriel Garcia Marquez's Works through Historical Context and Narrative Structure": 1 +"Ceramics: The Influence of Wedging in Refining Clay Modelling Techniques": 1 +"English 210: Prose and Satire: Metaphors and Hyperbole in Literary Discourse - Unraveling Euphemism": 1 +"Journalism: Covering Political Events using Adobe InDesign": 1 +"The Wonders of Geology: Discovering Earth's History through Plate Tectonics and Fossil Analysis": 1 +"Mastering Trigonometry with Compasses: Unfolding the Creative Aspects of Lines and Angles": 1 +"Exploration of Light Waves: Utilizing Spectrometers and Waveform Monitors": 1 +"Melody in Mozart's Symphonies: A Study Using Wind Quintet and Sibelius Software": 1 +"Chemistry: Understanding Chemical Reactions using Lewis Structures and Stoichiometric Calculations": 1 +"Physics in Everyday Life: Understanding the Principles of Motion through Skateboarding": 1 +"Astronomy for Beginners: Introduction to Stellar Evolution using Starry Night Software": 1 +"Decoding Psychology: Unraveling the Mysteries of Human Behavior through the Lens of Social Media": 1 +"Advanced Algebra: Mastering Quadratic Equations with the Aid of Desmos": 1 +"Mastering French: Enhancing Vocabulary Learning using Anki Flashcards": 1 +"Computer Science: Exploring Artificial Intelligence - Developing Neural Networks in Python": 1 +"Music Appreciation: The Science of Sound - Understanding Acoustics in Opera": 1 +"Advanced Statistics: Predictive Modeling in Business using R and Power BI": 1 +"Digital Photography: The Art of Visual Storytelling - Creating Impactful Images with Lightroom": 1 +"Biology Enthusiasts: Introduction to Genomic Sequencing using BLAST.": 1 +"Chemistry 101: The Role of Catalysts in Chemical Reactions": 1 +"Mathematics: Understanding the Complex World of Fractals": 1 +"The Geometry of Architecture: An Exploration of the Golden Ratio": 1 +"Technological Revolution: The Impact of Machine Learning on Data Analysis": 1 +"Desert Ecology: The Significance of Xerophytic Adaptations in Plant Survival": 1 +"Advanced Astronomy: The Impact of Dark Matter on the Expansion of the Universe": 1 +"Marine Biology: The Role of Coral Reefs in Oceanic Ecosystem Stability": 1 +"Global Gastronomy: Using GIS to Trace the Origins of Traditional Dishes": 1 +"Artificial Intelligence in Linguistics: The Future of Translation and Communication": 1 +"Quantum Computing: The Intricacies of Superposition and Entanglement": 1 +"Physics in Gaming: Exploring Realistic Physics Simulations with Unity3D and C#": 1 +"Economic Analysis: Understanding Market Trends through Data Visualization with R and Tableau": 1 +"Advanced Robotics: Implementing AI and Machine Learning in Autonomous Vehicles Using Python": 1 +"Computer Graphics: Creating 3D Animation with Blender and Unity": 1 +"Environmental Science: Tracking Wildlife Migration Patterns using GPS and GIS Technology": 1 +"Culinary Arts: The Science of Sous Vide Cooking and Food Safety Measures": 1 +"Advanced Photography: Mastering Lightroom and Photoshop for High Dynamic Range Imaging": 1 +"Introduction to Game Design: Building Interactive Worlds with Unreal Engine": 1 +"Music Theory: Composing and Arranging Music with GarageBand and Logic Pro X": 1 +"Psychology and Neurology: Exploring the Impact of Virtual Reality Therapy on PTSD Treatment": 1 +"Exploring the Influence of Climate Change on Wildlife Migration: A Comprehensive Study through Geographic Information Systems": 1 +"Spanish Literature: Enhancing Vocabulary through the Use of Telenovelas and Transcription Software": 1 +"Critical Thinking for Adolescents: A Guide to Logical Fallacies using Orwell's 1984": 1 +"History of Technology: The Impact of the Telegraph on Global Communication Structures": 1 +"Music Theory: Creating Unique Soundscapes through the Use of Loop Stations and Pedalboards": 1 +"The Intersection of Neuroscience and Music: Exploring the Mozart Effect and its Implications on Learning Disorders": 1 +"Art and Physics: A Study of Light Refraction in Baroque Era Paintings using Spectroscopic Analysis": 1 +"Decoding the Golden Age of Hollywood: A Study on the Influence of the Hays Code on Cinematography and Film Editing": 1 +"High School Algebra: Exploring Space Travel through the Lens of Quadratic Equations": 1 +"Biology: The Complex Relationship Between Echolocation and Bat Navigation - A Study in Bioacoustics.": 1 +"Astronomy for Beginners: Exploring the Cosmos through Telescope and Stellar Spectroscopy": 1 +"Chemistry in Cuisine: The Science of Gastronomy through Thermal Physics and Molecular Gastronomy": 1 +"Biological Engineering: Unraveling the Mysteries of Genetic Modification through CRISPR and Gene Therapy": 1 +"Ethics in Technology: An Examination of AI’s Impact on Society through Kant's Categorical Imperative": 1 +"Quantum Mechanics: The Influence of Schrödinger's Wave Equation on Nanotechnology and Quantum Computing": 1 +"Environmental Literature: Analyzing Climate Change Narratives in Contemporary Fiction through Eco-feminism": 1 +"Neural Computing: Understanding Deep Learning Through Artificial Neural Networks and Backpropagation ": 1 +"Anthropology 301: Evaluating the Influence of Hip Hop on Cultural Identity using Semiotics and Cultural Theory": 1 +"Applied Physics: Understanding the Principles of Superconductivity through BCS Theory and Cooper Pairs": 1 +"Merging Virtual and Physical Worlds: The Impact of Oculus and Google Glass on Architectural Design and Ten Innovative Concepts.": 1 +"Philosophy: The Art of Argument - An Exploration of Socratic Method and Logical Fallacies": 1 +"Geoengineering: Climate Analysis and Modelling using Satellite Imaging Systems": 1 +"Navigating the Stock Market: An Examination of the Efficient Market Hypothesis and the Role of Inflation": 1 +"Data Science: Mastering Predictive Analytics through Regression Analysis and Neural Networks": 1 +"Advanced Robotics: Leveraging Python, ROS, and Kinematics in Robotic Arm Design": 1 +"Introduction to Sociology: Dissecting Social Structures through the Lens of the Conflict Theory and the Symbolic Interactionism Model": 1 +"Physics 210: Investigating Baseball Pitch Mechanics with Newtonian Physics, Conservation of Momentum, and High-Speed Cameras": 1 +"Political Science 101: Unraveling Political Systems through Simulations & Game Theory": 1 +"Engineering: The Dynamics of Bridges - A Comprehensive Look at Truss Design": 1 +"Human Anatomy 101: The Cardiovascular System and Athletic Endurance: A Study of Hypertrophic Cardiomyopathy": 1 +"Physics 220: The Dynamics of Wind Turbines: An In-depth Analysis of Renewable Energy Efficiency": 1 +"Physical Education: Insights into Plyometric Training through Fitbit Activity Trackers and Oculus Rift Virtual Reality": 1 +"History: The Impact of Maritime Navigation Tools on Global Trade and Exploration": 1 +"Art 400: The Art of Light: An Extensive Exploration of Neon Art Techniques and Color Psychology in Illuminism": 1 +"Statistics: The Influence of Probability Theory in Predicting Stock Market Trends": 1 +"Geometry: Spherical Geometry, Hyperbolic Geometry and the Significance of Geometric Transformations": 1 +"Exploring Microbiology: Advancements in DNA Sequencing Techniques through the Perspective of Microarray Analysis": 1 +"Music: The Power of Sound: An Exploration of Digital Looping Techniques in Electronic Music Production": 1 +"Sociology: Utilizing NVivo in Assessing the Impact of Gender Roles on Workplace Dynamics: A Sociological Analysis": 1 +"Music: Investigating Violin Sound Amplification Techniques using Bow Pressure and Electric Violin Effects": 1 +"Exploring Digital Humanities: Utilizing AI for Linguistic Analysis in Online Forums": 1 +"Astrophysics: Unraveling the Mysteries of Dark Matter: Practical Applications of Telescopic Imaging": 1 +"Marine Biology: Tracing Biodiversity and Adaptation: Investigating Coral Reefs through Metagenomics": 1 +"Statistical Analysis: Understanding Predictive Modeling using R and Python for Financial Forecasting": 1 +"The Steam Engine and Telegraph: Pioneering Innovations in the Age of Invention and their Impact on Global Communication": 1 +"Advanced Algebra: Understanding Fractals through Chaos Theory": 1 +"Fine Arts: Sculpture Creation and Preservation: Emphasizing on Bronze Casting Techniques": 1 +"Information Technology: Developing Dynamic Soundscapes in Digital Audio Workstations using Logic Pro and AU Plugins": 1 +"Network Defense Tactics: Counteracting Phishing Threats with Artificial Intelligence in Cloud-Based Systems": 1 +"Advanced Italian Prose: Boosting Narrative Clarity with ProWritingAid, Google Docs, and MS Word for Group Projects": 1 +"Advanced Cryptography: Securing Data with Hash Functions and RSA Algorithm": 1 +"Environmental Science 102: Understanding Climate Change Through Satellite Data and GIS Applications": 1 +"Linguistics: Semantic Analysis with Python's Natural Language Toolkit: Language Processing and Interpretation": 1 +"Physics of Light: Exploring Spectroscopy and Polarization in Optics and Photography": 1 +"Secondary Education 401: Interactive Learning - Implementing Kahoot and Padlet for Collaborative Lessons in Microsoft Teams": 1 +"Sports Science: Performance Analysis in Soccer Using Catapult Sports, Wyscout, and Instat Football": 1 +"Critical Thinking 102: Enhancing Reasoning Skills through the Lipman Method of Inquiry": 1 +"Astrophysics: Galactic Formation Exploration with James Webb Space Telescope and Radio Astronomy": 1 +"Ballet: Perfecting Performance and Musicality with Advanced Biomechanics and Motion Analysis": 1 +"Classical Music: Delving into Mozart's Symphonies through Detailed Violin Technique": 1 +"Chemistry Essentials: Understanding Molecular Structures through X-ray Crystallography": 1 +"Mathematics: Advanced Calculus Explored through Environmental Conservation Models": 1 +"Creative Writing 101: Crafting Suspenseful Narratives using the Three-Act Structure": 1 +"Advanced Statistics with R: Predictive Modeling in Epidemiology and Public Health": 1 +"Fine Arts: Mastering Acrylic Painting Techniques with Palette Knives and Glazing": 1 +"Advanced Java Programming 301: Implementing Multi-threading for Efficient Coding": 1 +"Microbiology and the Unknown: Exploring Pathogenesis with Electron Microscopy": 1 +"Environmental Science: Assessing Water Quality with Chromatography Techniques": 1 +"Quantum Physics: Understanding Quantum Entanglement through Schrödinger's Cat Paradox": 1 +"Digital Literacy: Enhancing Learning through Gamification with Minecraft Education Edition.": 1 +"Ancient Rhetoric and Modern Politics: The Influence of Aristotelian Logic on Modern Political Debates.": 1 +"Application of Monte Carlo Simulation in Financial Risk Management: A Quantitative Approach to Predicting Stock Market Fluctuations.": 1 +"Health and Wellness: Assessing the Effectiveness of Yoga Practices in Stress Reduction.": 1 +"Music Technology: The Role of Ableton Live 10 Suite in Contemporary Electronic Dance Music Production.": 1 +"Incorporating Adobe Photoshop Techniques in Storytelling for Children's Comic Books.": 1 +"Physics for the Young Minds: Exploring Laws of Motion through Everyday Objects and Simple Experiments.": 1 +"The Baroque Period: The Influence of Caravaggio's Chiaroscuro Technique in Contemporary Photography.": 1 +"Advanced Microbiology: Decoding the Human Genome through Next-Generation Sequencing Technologies.": 1 +"Cultural Anthropology: Understanding Globalization through the Study of Fusion Cuisine.": 1 +"Economics: Evaluating the Impact of Artificial Intelligence on Labor Market Predictions using R Programming.": 1 +"Physics: Understanding Quantum Mechanics through Computer Simulations": 1 +"Media Studies: The Impact of Social Media in Political Campaigns": 1 +"Bioinformatics: Genomic Data Analysis using R and Bioconductor": 1 +"Music Theory: The Influence of Harmonics and Frequencies in Instrument Tuning": 1 +"Art: Incorporating Fractal Geometry in Digital Art through Adobe Illustrator": 1 +"E-Learning: Harnessing the Power of Kahoot for Interactive Classroom Quizzes": 1 +"Statistics: Introduction to Probability Theory through Card Games and Monte Carlo Simulations": 1 +"Creative Writing: Crafting Compelling Narratives with Scrivener and Grammarly": 1 +"Archaeology: Unearthing Prehistoric Cultures through GIS Mapping and Drone Photography": 1 +"Sports Science: Detailed Examination of Golf Swing Biomechanics using MATLAB and Motion Capture Technology": 1 +"Chemistry: The Impact of pH on Aquatic Ecosystems and its Monitoring through IoT Devices": 1 +"Physics: Quantum Mechanics in the Development of Efficient Solar Energy Panels Using Advanced Simulations": 1 +"Modern Literature: Harnessing Google Docs for Crafting Suspense Novels with Contemporary Idioms and Symbolic Imagery Using Foreshadowing Techniques": 1 +"Earth Science: Understanding Tectonic Movements through Seismic Wave Analysis": 1 +"Sociology: The Influence of Social Media in Modern Politics and Public Perception": 1 +"Dietetics: Incorporating Nutritionix Tracker in Nutrient Assessment and Diet Optimization": 1 +"Environmental Science: An Exploration of Ecosystem Dynamics through Satellite Imaging and Data Analysis": 1 +"Advanced Mathematics: Calculus and Differential Equations - Interpreting Natural Phenomena": 1 +"The Use of X-Ray Diffraction in Examining Ancient Ceramic Artifacts: A Study in Archaeology": 1 +"Artisan Skills: Ceramics - Crafting Realistic Human Portraits using Stoneware Clay": 1 +"Advanced Spanish Syntax: Mastering Language Construction through Duolingo, Memrise, and Anki Flashcards": 1 +"Gaming in Geometry: Discovering Shapes and Angles with Tetris, Minecraft, and Roblox": 1 +"Astrophysics: Delving into Cosmic Rays and Dark Matter in the Enigma of the Universe": 1 +"Mastering Digital Publication: Efficient Use of Adobe InDesign's Anchored Objects and Text Wrapping for Professional Layouts": 1 +"Music: Decoding Jazz Improvisation: The Impact of Bebop on Modern Solo Techniques & Integration of Electronic Instruments": 1 +"Unraveling Human Psychology: An In-depth Examination via Neuropsychology and Cognitive Science": 1 +"Quantum Computing: The Hidden Potentials of Quantum Entanglement in Modern Technology": 1 +"Telecommunication Titans: The Impact of Radio Waves on Global Communication Systems": 1 +"Philosophy 101: Understanding Human Existence Through Nietzsche's Will to Power": 1 +"Art: Abstract Landscape in Watercolor - Mastering Depth and Perspective with Wet-on-Wet Technique": 1 +"Exploring Cellular Communication: An Advanced Course on the Biochemistry of Signal Transduction": 1 +"Technological Evolution: An Examination of Cryptography's Historical Impact on Digital Communication": 1 +"Physical Geography: Understanding Earthquake Mechanisms through Seismic Wave Analysis": 1 +"Social History: Examining Feudalism through the Perspective of Medieval European Castles": 1 +"Fiscal Frontiers: Understanding Microeconomics through Game Theory and the Law of Supply and Demand": 1 +"Creative Pursuits: Exploring Surrealism through Charcoal Drawing and Shading Techniques": 1 +"Demystifying AI and Quantum Computing in Financial Markets: A Guide to Future Investment Strategies": 1 +"The Science Behind Time: A Deep Dive into the Theory of Relativity and its Application in GPS Technology": 1 +"Advanced Game Development: Mastering C++ Programming and Algorithmic Thinking using Unreal Engine": 1 +"Inorganic Chemistry: An Extensive Exploration of Crystal Structures through X-ray Diffraction and Electron Microscopy": 1 +"The Chess Strategy: Analyzing International Relations through Game Theory.": 1 +"Delving into Advanced Algorithms in Cryptocurrency Mining: A Computer Engineering Approach": 1 +"Art: Deconstructing Postmodern Art: The Impact of Surrealism on Digital Art Techniques & Integration of Augmented Reality.": 1 +"Investigating The Golden Ratio in Urban Planning: An In-depth Study with Revit": 1 +"The Business of Film: Analyzing Hollywood Economics using Predictive Analytics and Machine Learning.": 1 +"Finance 101: Decoding the Paradox of Value through Market Trend Analysis": 1 +"Sociology: Decoding Social Structures of Medieval Societies through Artifact Analysis and Historical Texts": 1 +"Marine Biology: The Relationship between Ocean Acidification and Marine Wildlife: An Investigation through Radioisotope Tracing": 1 +"History: The Rise of Constitutional Monarchies and Civil Liberties in European Societies": 1 +"Quantum Quirks: Light, Energy and Entanglement: Unraveling Mysteries with Double-Slit Experiments": 1 +"Computer Science: An In-depth Study of Cryptography and Blockchain Technologies": 1 +"Art: The Influence of Renaissance Architecture on Modern Urban Planning": 1 +"Oceanography: Examining the Role of Deep-Sea Creatures in Ecosystem Balance": 1 +"Advanced Chemistry: Decoding the Mystery of Chemical Bonding - A Journey through Molecular Orbital Theory": 1 +"Astrophysics Basics: Exploring the Enigma of Dark Matter using Hubble's Law": 1 +"Sociology: Migration Patterns and Cultural Assimilation - An Analytical Approach using Population Dynamics": 1 +"Quantitative Finance: A Comprehensive Study of Black-Scholes Model in Option Pricing using MATLAB": 1 +"Agricultural Science: Aquaponics and its Role in Sustainable Farming and Food Security": 1 +"Mastering Pro Tools: The Art of Mixing and Mastering in Digital Audio Workstations": 1 +"Psychology 101: Understanding Human Behavior through Freud's Psychoanalysis Model": 1 +"Advanced Biology: Understanding Genetic Algorithms through Python, Java, and MATLAB": 1 +"Innovative Architecture: Applying Calculus in Modern Structural Design ": 1 +"Environmental Studies: The Impact of Climate Change on Ecosystems using Statistical Analysis and Data Visualization": 1 +"Introductory Game Development: Basics of Physics Simulations using C++, Unreal Engine and Godot": 1 +"Digital Arts: Deep Dive into 3D Modeling and Animation using Blender and Maya": 1 +"Quantum Physics: Exploring Quantum Mechanics through Python and Tensorflow": 1 +"Modern Literature: Analysis of Postmodernist Themes in Graphic Novels using Comparative Literature Methods": 1 +"Health and Nutrition: The Role of AI in Personalized Meal Planning and Dietary Analysis": 1 +"Philosophy 102: Understanding Metaphysical Arguments: A Study of Predicate Logic and Diagrammatic Reasoning": 1 +"Global Politics: The Cold War, Nuclear Technology, and the Evolution of International Diplomacy": 1 +"Physics: Quantum Mechanics in Modern Digital Computing: A Deep Dive into Quantum Computing": 1 +"Advanced Sociology: Examining Group Dynamics through Social Network Analysis using Graph Theory": 1 +"Gaming and Computer Science: The Evolution of Game Physics using Unity and C# ": 1 +"Chemistry: Exploring Green Chemistry: The Role of Biocatalysis in Sustainable Industry": 1 +"Music and Physics: Sound Waves and Acoustics: The Science Behind Musical Instruments ": 1 +"Astronomy: The Hidden Universe: Understanding Dark Matter through Astrophysical Observations": 1 +"History: The Impact of Iron Age Blacksmithing on the Rise of Civilizations": 1 +"Advanced Mathematics: Exploring the Beauty of Fractals using Iterated Function Systems and Python Programming": 1 +"Language Studies: The Evolution of Language through Machine Learning and Natural Language Processing Techniques": 1 +"Environmental Science: The Role of Remote Sensing in Climate Change Studies: An Examination of Satellite Imagery Analysis": 1 +"Physics: Understanding Quantum Mechanics Through Schrödinger's Equation and Simulations": 1 +"Culinary Arts: The Role of Molecular Gastronomy in Modern Cuisine": 1 +"Archaeology: Unveiling Human Evolution Through Palaeolithic Artifacts and Carbon Dating": 1 +"Sociology: Examining Social Media Influence on Global Cultures with Data Analysis": 1 +"Diving Deep into Quantum Computing: Grasping Quantum Bits and Quantum Entanglement": 1 +"The Hidden World: Delving into Nanophysics with Atomic Force Microscopy": 1 +"Medical Breakthroughs: The Role of Biotechnology in Personalized Medicine and Genome Editing": 1 +"Advanced Mathematics: The Interplay of Probability and Statistics in Machine Learning": 1 +"Sound Engineering: Maximizing Impact with Dolby Atmos and Pro Tools in Audio Production": 1 +"Literature: Decoding Themes in Epic Poetry through Symbolic Analysis Software": 1 +"Physics: Quantum Mechanics and The Double Slit Experiment: An In-depth Analysis": 1 +"Literature: Expanding Horizons through Magical Realism in Latin American Literature": 1 +"Environmental Science: The Impact of Microplastics in Marine Ecosystems: A Detailed Study": 1 +"Digital Art: Using Procreate Software for Creating Hyperrealistic Portraits": 1 +"Advanced Agronomy: The Role of Aeroponics in Urban Farming: A Comparative Study": 1 +"Finance: The Influence of Cryptocurrencies on Traditional Banking Systems": 1 +"Trigonometry: Understanding Spherical Trigonometry through Celestial Navigation Techniques": 1 +"Microbiology: Exploring the World of Bacteria through Gram Staining and DNA Sequencing": 1 +"Ethics: A Comprehensive Study of Virtue Ethics in Modern Corporate Practices": 1 +"Computational Science: The Significance of Quantum Computing in Cryptography and Data Security": 1 +"Chemistry in Action: Understanding Thermodynamics through Bunsen Burners and Calorimeters": 1 +"Literature: Analyzing Symbolism and Irony in Modern Novels: A Focus on Mind Mapping Techniques": 1 +"Astrophysics Basics: Discovering Exoplanets through Spectroscopy and Transit Photometry": 1 +"Exploring Sculpture: Moulding Techniques, Abstract Conceptualization and Focus on Clay Modelling Tools": 1 +"Trigonometry in Architecture: Delving into Structural Design Principles using AutoCAD for 3D Visualization": 1 +"Textiles through Time: The Spinning Wheel, the Flying Shuttle, and the Evolution of the Textile Industry": 1 +"Anatomy 101: An In-Depth Analysis of Muscular Systems using MRI and Ultrasound Imaging Techniques": 1 +"Cultural Studies: Deploying Story Maps JS for Enhanced Digital Storytelling in Local Heritage": 1 +"Advanced Harmonic Analysis: Jazz Improvisation with Logic Pro X and MainStage 3": 1 +"Cybersecurity Essentials: Building Secure Networks with Python, Raspberry Pi, Cryptography, and Blockchain Technologies": 1 +"Advanced Mathematics: Quantum Computing and Cryptography - A Journey through Linear Algebra": 1 +"World History: The Silk Road, Maritime Trade, and the Emergence of Globalization": 1 +"English: Science Fiction and Technological Ethics - An Exploration of Cyberpunk Literature": 1 +"Art: The Influence of Fractal Geometry on Modern Architecture": 1 +"Physics Principles: Exploring the Properties of Light Waves through Holography": 1 +"Culinary Cartography: Discovering Regional Wine Varieties through Geospatial Analysis and GIS Technology": 1 +"Music: The Impact of Virtual Reality on Spatial Audio Composition": 1 +"World History: The Rise of Social Media - The Transformation of Global Communication": 1 +"Geography: Utilizing LiDAR and GIS in Mapping the Erosion of the Grand Canyon - A Study on Climate Change": 1 +"Geography: Reconstructing Ancient Roman Roads Using Satellite Imagery and Geospatial Data Analysis": 1 +"Artificial Intelligence in Physical Education: Using Machine Learning for Performance Assessment in Archery": 1 +"The Digital Renaissance: Exploring the Impact of Virtual Reality on Modern Art Galleries and Potential Market Adaptations": 1 +"Advanced Geography: Using Python Libraries for Climate Change Analysis in Geospatial Data Science": 1 +"Early Childhood Learning 410: Incorporating Kahoot for Engaging Lessons in MS Teams Remote Classroom": 1 +"Contemporary History: Assessing the Influence of Social Media on Global Politics": 1 +"The Role of Predictive Analytics in Enhancing Customer Retention in the Retail Industry: An In-depth Study of 10 Effective Strategies": 1 +"Cultural Studies: Unraveling the Social Implications of Veganism in Modern Society": 1 +"Applied Mathematics in Climate Studies: R Programming, TensorFlow and Keras for Advanced Climate Prediction Models": 1 +"Information Technology: Leveraging Elasticsearch and Ruby on Rails in Text Mining to Understand Online Consumer Behavior": 1 +"Fundamentals of Ethics 105: Critical Thinking through the Prism of Virtue Ethics": 1 +"Chemistry Basics: Exploring Molecular Structures and Chemical Reactions through 3D Modelling": 1 +"Advanced Java Programming for Cyber Security: Spotting Vulnerabilities in Network Security Systems": 1 +"Philosophy: The Metaphysics of Consciousness- A Deep Dive into Mind-Body Dualism": 1 +"Biology: Understanding Gene Sequencing and Genetic Mutations using CRISPR Technology": 1 +"Business Management: Utilizing Predictive Analysis in Assessing Market Trends for Strategic Planning": 1 +"Introduction to Literature: The Power of Narrative and Character Development in Contemporary Fiction": 1 +"Engineering: An In-depth Study of Fluid Mechanics and Viscosity through Practical Experiments": 1 +"Data Science: Leveraging Neural Networks in Image Recognition using TensorFlow": 1 +"Sociology: The Development of Social Norms and their Impact on Human Behaviour: A Focus on the Digital Age": 1 +"Artificial Intelligence: Building Intelligent Systems with Python using PyTorch": 1 +"Mathematics: Exploring the Fibonacci Sequence in Nature - An Insight into Mathematical Biology": 1 +"Art History: Decoding Symbolism in Renaissance Paintings - A Detailed Look at Botticelli's Primavera": 1 +"Sociology: The Impact of Virtual Reality on Human Behavior in the 21st Century": 1 +"Bioethics and Cloning: An In-Depth Examination from a Philosophical Standpoint": 1 +"Proficient Mobile App Development: Mastering Swift, React Native, and Firebase": 1 +"The Role of Cryptocurrency in Global Finance: A Comprehensive Study on Blockchain Technology": 1 +"Quantum Mechanics: A Detailed Exploration of the Double-Slit Experiment and Particle-Wave Duality": 1 +"Data Science: Predictive Analytics Using Machine Learning - A Dive into Algorithmic Forecasting": 1 +"The Art of Film Scoring: Creating Emotional Resonance through Sound - An Extensive Guide": 1 +"Astrophysics: The Fascinating Journey of Space Exploration and the Search for Extraterrestrial Life": 1 +"Physics: Quantum Computing and Its Application in Cryptography": 1 +"Macroeconomics Unpacked: Studying Inflation and Monetary Policies for Financial Stability": 1 +"The Magic of Geometry: Exploring Fractals and the Fibonacci Sequence in Nature": 1 +"Neural Networks: Unraveling the Impact of Machine Learning on Speech Recognition": 1 +"From Horse Carriages to Electric Cars: A Journey through the Evolution of Transportation Technology": 1 +"Exploring AI Technology in Online Chess Games: Strategies for Enhancing Player Experience in Lichess and Chess.com": 1 +"Modern Poetry: The Influence of Digital Age on Poetic Imagery and Metaphor": 1 +"Fine Arts: The Fusion of Traditional and Digital Techniques in Concept Art Character Design": 1 +"Advanced Programming 205: Introduction to Data Structures and Algorithms in Python": 1 +"Geospatial Analysis: Leveraging Drone Technology for Wildlife Conservation in Varied Landscapes": 1 +"Biology for Beginners: Understanding DNA Replication and Protein Synthesis through Interactive Models": 1 +"Astrophysics: Analyzing Star Spectra and Understanding Interstellar Medium through Telescopic Observations": 1 +"Physical Education: Enhancing Teamwork and Coordination through Volleyball's Blocking and Digging Drills": 1 +"Cognitive Psychology: Exploring Human Memory and Information Processing through Dual-Task Paradigms and Eye-tracking Techniques": 1 +"Art of the Baroque Period: The Impact of Chiaroscuro Lighting on Dramatic Storytelling": 1 +"Advanced Java Course: Implementing Multithreading and Concurrent Programming with JUnit Testing and Agile Methodologies": 1 +"Political Science: The Role of Satire in the Public Perception of Policy Debates and Election Campaigns": 1 +"Geology for Kids: Hands-on Exploration of Volcanoes and Earthquakes through Seismograph Readings and Lava Flow Simulations": 1 +"Understanding Jazz Music: The Impact of Syncopation on Swing Rhythms and Improvisational Techniques": 1 +"Mechanical Engineering Basics: Bridge Designs and Stress Analysis using Finite Element Method and SolidWorks Software": 1 +"Chemistry: Understanding Organic Reaction Mechanisms with the Aid of Computational Models": 1 +"Art History: The Renaissance in Italy: An Analytical Approach to Patron-Client Relationships": 1 +"Advanced Python Programming: Implementing Machine Learning Algorithms for Predictive Analysis": 1 +"Physics: Quantum Mechanics and Its Role in the Development of the Transistor": 1 +"Comparative Literature: The Influence of French Existentialism on Post-War American Fiction": 1 +"Music Theory: Harmonic Structure and Emotional Expression in Late Beethoven Quartets": 1 +"Mathematics: Solving Differential Equations with Fourier Series and Laplace Transforms": 1 +"Advanced American History: The Impact of the Gold Rush on Western Expansion": 1 +"Computer Science: Exploring Artificial Intelligence: Neural Networks and Deep Learning": 1 +"Environmental Science: Evaluating Climate Change through Paleoecology and Ice Core Data Analysis": 1 +"Physics of Space Travel: Understanding Gravity Assist and Orbital Injection using Kepler's Laws": 1 +"Advanced Mathematics: Abstract Algebra and Number Theory - An Analysis using MATLAB and Mathematica": 1 +"History: The Impact of Gutenberg's Press on Renaissance Thought and the Spread of Scientific Knowledge": 1 +"Environmental Science: Exploring Climate Change and Sustainable Practices through GIS Applications": 1 +"Biochemistry: Unraveling Protein Structures and Functions through X-ray Crystallography": 1 +"Digital Media: Principles of Animation Using Maya and After Effects - A Study on Character Rigging and 3D Modeling": 1 +"Neuroscience: The Role of Neuroplasticity in Rehabilitation - A Study using fMRI Scans": 1 +"Economics: Analysis of International Trade Policies and Currency Fluctuations using Python and R": 1 +"Mechanical Engineering: The Dynamics of Flight - Understanding Lift, Drag, and Thrust Forces": 1 +"Biology: Marine Life Biodiversity and Conservation - An Analysis using Ecological Modeling and GIS Mapping": 1 +"Unraveling Quantum Mechanics: An Introduction to Quantum Computing with Qubits and Entanglement": 1 +"Cultural Odyssey: Gastronomic Traditions and Wine Pairings Across the Mediterranean": 1 +"Mixed Media Mastery: Exploring Collage and Texture through Acrylics and Found Objects": 1 +"Decoding the Internet: A Practical Study of HTML, CSS and Website Design Using WordPress": 1 +"Neurobiology Unveiled: Navigating Through the Human Visual System and Optical Illusions with MRI Imaging": 1 +"Sustainability in Architectural Design: Harnessing Solar Energy in Modern Building Constructions": 1 +"Cosmic Exploration: Understanding Galaxy Formation and Cosmology through Virtual Reality and Holographic Projection": 1 +"The Dynamics of Watercolor: Experimenting with Gradients and Layering Techniques in Landscape Painting": 1 +"Middle Eastern Heritage: The Evolution and Influence of Calligraphy in Islamic Art": 1 +"Advanced Earth Science: Utilizing Drone Technology in Studying Volcanic Activity and Seismic Surveys.": 1 +"Chemistry: The Impact of Nanotechnology on Waste Management and Recycling Processes": 1 +"Mathematics: The Influence of String Theory on Modern Cryptography Techniques": 1 +"Linguistics: Language Evolution through Social Media and Machine Learning Algorithms": 1 +"History & Technology: The Impact of the Telegraph on the Expansion of the Railway System in the 19th Century": 1 +"Human Anatomy: Exploring the Integration of 3D Printing in Prosthetic Limb Development": 1 +"Geography: Utilizing Geographic Information Systems (GIS) in Urban Planning and Flood Risk Management": 1 +"The Influence of Cotton Gin Patents on the Progression of the Textile Industry during the Agricultural Revolution": 1 +"Astrophysics: Gravitational Waves and the Structure of Black Holes": 1 +"Computer Engineering: Cybersecurity and Network Protection using Quantum Cryptography": 1 +"Eco-Fashion: The Transition to Sustainable Textile Production using Organic Cotton and Hemp Fibers": 1 +"Chemical Reactions: Harnessing the Power of Electrochemistry in Fuel Cell Design and Renewable Energy Systems": 1 +"Jazz Improvisation: Advancing Musical Creativity through Max/MSP, Logic Pro X, and Auto-Tune": 1 +"Machine Learning in FinTech: An Extensive Analysis of Stock Market Prediction using LSTM and Time Series Forecasting": 1 +"Through the Viewfinder: The Influence of Anamorphic Lenses on Cinematic Visual Storytelling": 1 +"Literature of the Absurd: Intersecting Existentialism and Postmodern Analysis in Theatre and Performance": 1 +"Quantum Mechanics: Deciphering Particle-Wave Duality through Scanning Tunneling Microscopy and Quantum Field Theory": 1 +"Biological Science: Tracing the Evolutionary Pathways in Primate Behavior through Comparative Genomics": 1 +"Augmented Reality in Sports Training: Exploiting Biomechanics and Sensor Technology in Professional Football ": 1 +"Engineering Principles: Exploring the Impact of Pascal's Law in Hydraulic Systems using LEGO Robotics": 1 +"Philosophy: Cultivating Critical Thinking through Kant's Categorical Imperative and Modern Moral Dilemmas": 1 +"Psychology: Understanding Human Behavior and Mental Processes through Functional MRI": 1 +"Literature: Deep Reading and Interpretative Skills through the Lens of Modernist Poetry": 1 +"Cardiology: Assessing Cardiovascular Health through Echocardiography and Stress Testing": 1 +"Digital Humanities: Exploring Historical Landmarks through Augmented Reality": 1 +"Nutritional Science: The Biochemistry of Nutrigenomics and the Principles of Healthy Eating": 1 +"Astronomy: Dark Matter and Its Role in the Universe's Expansion": 1 +"Quantitative Methods: R's ggplot2 and Chi-square Test for Categorical Data Analysis": 1 +"Mastering Flask: Python Web Development with PostgreSQL Database": 1 +"Psychology: The Impact of Cognitive Behavioral Therapy on Mental Health": 1 +"Physics: Light Wave Polarization and Spectral Analysis using Spectrographs": 1 +"Advanced Physics: Exploring Quantum Mechanics using Wave-particle Duality and Uncertainty Principle": 1 +"Fundamentals: Discovering Basic Astronomy through Telescopic Observation and Satellite Data: A Focus on Star Formation and Galaxy Structures": 1 +"Senior Level Psychology: Cognitive Behavioral Therapy, Neurofeedback, and the Role of Emotional Regulation": 1 +"Materials Science: Exploring Nanotechnology and Crystallography in Energy Storage Systems": 1 +"Body Mechanics and Posture: A Detailed Analysis of Ergonomics and Motion Capture Technology": 1 +"Cardiology: Detailed Analysis of Human Heart Functions using Echocardiography, Cardiac MRI, and Stress Testing": 1 +"Agricultural Biotechnology: The Impact of Drought-Resistant Crops on Yield and Soil Health": 1 +"Historical Analysis: The Role of Printing Press Technology in the Renaissance and Enlightenment Periods": 1 +"Electromagnetic Waves and Radio Frequencies: An In-depth Study": 1 +"Culinary Physics: The Science Behind Sous-vide and Vacuum Sealing": 1 +"Advanced Algebra: Exploring The World of Matrices and Vector Spaces with MATLAB": 1 +"Sociology 101: Understanding Social Structures and Cultural Norms using SPSS and Qualitative Research Methods": 1 +"In-Depth Study of Artificial Intelligence: Building Neural Networks with TensorFlow and Keras": 1 +"Exploring the Universe: Astrophysics and the Wonders of Space using Stellarium and Universe Sandbox": 1 +"Mastering Business Analytics: Data Visualization with Tableau and Power BI": 1 +"History Uncovered: Analyzing Sociopolitical Changes through the Ages with Timeline JS and Google Earth Pro": 1 +"Language Mastery: Learning French with Rosetta Stone and Duolingo": 1 +"Ecology Essentials: Biodiversity and Conservation Studies using Species Distribution Modeling and GIS": 1 +"Digital Art 101: Creating Stunning Visuals with Adobe Illustrator and Procreate": 1 +"Dance Dynamics: Understanding the Art of Movement and Choreography through Labanotation.": 1 +"Mathematics: Delving into the Chaos Theory through Fractal Analysis": 1 +"Biology: Unraveling the Mysteries of DNA through CRISPR-Cas9 Gene Editing Techniques": 1 +"Philosophy: Deconstructing Existentialism and its Impact on Contemporary Thought Processes": 1 +"Machine Learning: Navigating the Ethical Quandaries in the Age of Artificial Intelligence - An In-depth Study": 1 +"The Science of Financial Markets: Applying Statistical Models to Predict Stock Market Movements using Time-Series Analysis": 1 +"Astrophysics Concepts: Leveraging Kepler's Third Law in Understanding Planetary Motion": 1 +"Immersive Coding: Mastering Programming Languages through the Creation of Virtual Reality Games": 1 +"Art: Decoding Symbolism in Surrealist Paintings through the Lens of Freudian Psychoanalysis": 1 +"Physical Education: Mastering the Intricacies of Capoeira through Augmented Reality": 1 +"English Language Arts: Integrating Sentiment Analysis in the Interpretation of Modern Poetry": 1 +"Neuroscience: Decoding the Language of Neurons Using fMRI in Cognitive Research": 1 +"Advanced Chemistry: Understanding Quantum Mechanics through the Study of Molecular Structures": 1 +"Exploring Urban Planning: Harnessing the Power of GIS for Sustainable City Development": 1 +"Advanced Physics: Unraveling Quantum Entanglement through Experimentation and Mathematical Models": 1 +"Botany: The Role of Genomics in Understanding Plant Biodiversity and Conservation": 1 +"Advanced Digital Design: Creating Seamless User Interfaces with Adobe XD and Sketch": 1 +"Geology: Assessing Soil Erosion and Landslides through Remote Sensing and GIS": 1 +"Data Science: Predicting Market Trends using Machine Learning, R, and Predictive Modelling": 1 +"Literature Analysis: Deconstructing Postmodern Narratives through Semiotics and Structuralism": 1 +"Environmental Science: Climate Modelling and Prediction using R and Python.": 1 +"Calculus: Mastering Differential Equations through Computer Algebra Systems": 1 +"Principles of Photography: A Focus on Light Field Technologies and Holography": 1 +"Environmental Science: Climate Change Modelling Using Machine Learning Algorithms": 1 +"Physical Education: Understanding Human Anatomy through Pilates and Yoga": 1 +"Chemistry 101: Exploring Organic Compounds with Nuclear Magnetic Resonance and Mass Spectrometry": 1 +"Physics 101: Quantum Mechanics and Its Application in Nanotechnology": 1 +"Music Theory: The Mathematics of Melody - A Study in Fourier Analysis": 1 +"Creative Writing Skills: Using Scrivener and Evernote for Thematic Development in Fiction": 1 +"Introduction to Cinematography: The Role of Drones in Aerial Filmmaking": 1 +"Global Studies: Comprehending International Relations through Political Geography.": 1 +"Geopolitical Studies: Evaluating the Role of Cyber Warfare in the 21st Century": 1 +"The Application of GIS Mapping in Forecasting Agricultural Trends for Sustainable Farming": 1 +"Intermediate Photoshop Techniques: Utilizing Layers and Masking for Digital Art Creation": 1 +"Virtual Reality in Medicine: Employing Augmented Reality for Complex Surgical Procedures": 1 +"Quantum Physics and Life Beyond Earth: Investigating Quantum Entanglement in the Search for Alien Life": 1 +"Marketing Strategies: Harnessing Consumer Behavior Analysis and Machine Learning for Targeted Advertisements": 1 +"Engineering Marvels: Exploring the International Space Station and its Life-Support Systems": 1 +"The Science of Sound: Understanding Acoustics in Architectural Design through Waveform Analysis": 1 +"Applied Mathematics: Optimizing Stock Market Predictions Using Monte Carlo Simulations and Python": 1 +"Fine Arts: Enhancing Stone Carving Skills through Advanced Tools and Techniques.": 1 +"Advanced Physics 305: Quantum Mechanics and the Nature of Reality: A Comprehensive Study of Quantum Entanglement": 1 +"The Influence of Virtual Reality on Spatial Awareness: An Educational Perspective": 1 +"Deep-Dive into Cardiovascular Health: The Impact of Stress and the Role of Echocardiography": 1 +"Sociology: Applying Data Mining Techniques to Unravel Patterns in Population Migration": 1 +"Chemistry: Unearthing the Secrets of Ancient Pottery through X-Ray Fluorescence": 1 +"Software Engineering 201: Fundamentals of Python and Data Structure Algorithms": 1 +"Neuroscience: Understanding Sleep Patterns Through Polysomnography and Brain Imaging Techniques": 1 +"The Adaptation of Visual Systems: An Ophthalmological Insight on the Role of Retinal Tomography in Age-Related Macular Degeneration": 1 +"Digital Media: The Interplay of Augmented Reality and Consumer Behavior: A Study on Virtual Shopping Experiences": 1 +"Environmental Science: Investigating Coral Reef Biodiversity through Remote Sensing and GIS Techniques": 1 +"Physics: Quantum Mechanics Explored Through Time-Dependent Schrödinger Equation": 1 +"Introduction to Robotics: Mastering Pathfinding Algorithms for Autonomous Vehicles Using ROS": 1 +"Neuroscience: Unraveling the Secrets of Memory Formation with fMRI": 1 +"Advanced Baking Techniques: Decoding the Science of Gluten Formation in Bread Making": 1 +"Geology: Probing Tectonic Movements with Satellite-based InSAR Technology": 1 +"Senior Chemistry: Unveiling the Complexities of Protein Folding Using X-ray Crystallography": 1 +"Digital Humanities: Illuminating Chaucer's World with GIS Mapping": 1 +"Exploring the Use of Watercolor in Impressionism: A Study of Monet's Techniques Using Adobe Fresco": 1 +"Sustainable Architecture: Incorporating Biophilic Design in Modern Urban Planning": 1 +"Music Theory: Dissecting Modal Jazz Improvisation in the Works of Miles Davis Using Pro Tools": 1 +"Geology: The Influence of Tectonic Movements in the Formation of Mountain Ranges": 1 +"Basic Mathematics: Learning Algebra through Interactive Game Coding with JavaScript": 1 +"Astronomy: Tracing Stellar Evolution: From Nebulae to Supernovae": 1 +"Fine Arts: Decoding Symbolism in Surrealist Paintings": 1 +"Music and Nature: The Influence of Natural Soundscapes on Classical Compositions": 1 +"Biomechanics in Sports Medicine: Utilizing Motion Sensors and Biomechanical Analysis for Injury Prevention in Gymnastics": 1 +"Problem Solving: Enhancing Cognitive Skills in Kids through Chess": 1 +"Astrobiology: Exploring the Possibility of Life on Exoplanets through Simulation Models and AI": 1 +"Computer Engineering: Implementing AI and Machine Learning in Robotic Process Automation with Python and TensorFlow": 1 +"Social Media Strategy for Authors: Leveraging Instagram for Book Promotion and Reader Engagement": 1 +"Biology: Exploring Human Genome Sequencing through High-Throughput Technologies": 1 +"Art: Exploring 3D Printing: Redefining Sculpture in the Digital Age": 1 +"Physical Education: Enhancing Skills through Augmented Reality: The Game-Changing Influence of AR Glasses in Sports Training": 1 +"Computer Science: The Intersection of Artificial Intelligence and Quantum Computing: Uncovering the Potential of Quantum Neural Networks": 1 +"Astronomy: Tracing Cosmic Evolution: Understanding Stellar Life Cycles through Spectroscopy": 1 +"Physics: The Dynamics of Fluid Motion: A Comprehensive Study Using Computational Fluid Dynamics Software": 1 +"Literature: Speculative Fiction in the Post-Apocalyptic Era: An Analysis of Dystopian Narratives": 1 +"Chemistry: Unraveling the Complexity of Biochemical Reactions through Molecular Modeling Software": 1 +"Social Studies: Navigating the World of Cryptocurrencies: The Socio-Economic Impact of Bitcoin on Global Economies": 1 +"Mathematics: The Art of Cryptography: Exploring Number Theory through the Lens of RSA Encryption": 1 +"Theoretical Physics: Unraveling the Mysteries of Quantum Entanglement using Mathematical Models": 1 +"Bioinformatics: Genomic Data Analysis and Visualization with R and Bioconductor": 1 +"Unveiling the Secrets of Deep Learning with TensorFlow and Keras in Python": 1 +"Russian Literature: An In-depth Interpretation of Foreshadowing and Metaphor in Dostoevsky's Works": 1 +"Professional Video Production: Mastering Cinematic Techniques in Adobe Premiere Pro": 1 +"R Programming for Statistical Analysis: Navigating Through Linear Regression Models with ggplot2": 1 +"Literary Theory: Deconstructing Post-colonial Narratives Through Critical Discourse Analysis": 1 +"Social Sciences 101: Tracing the Progression of Societal Structures with Digital Archives from JSTOR": 1 +"Physical Chemistry: Exploring Thermodynamics through Computational Simulations and Statistical Mechanics": 1 +"Revolutionizing Engineering: Implementing Differential Equations in Sustainable Energy Systems Design": 1 +"Physics: Advanced Quantum Mechanics - Investigating Subatomic Particles through Particle Accelerators": 1 +"Art History: The Influence of Cubism on Modern Sculpture: A Study of Form and Space with 3D Printing Techniques": 1 +"Geography: Understanding Climate Change through Satellite Imaging and Geographic Information Systems": 1 +"Data Science: Decoding Trends with Big Data: Using Hadoop and Linear Regression for Predictive Analysis": 1 +"Biomedical Sciences: Pharmacological Terminology and Drug Metabolism Studies with Liquid Chromatography": 1 +"Sociology: The Impact of Social Media on Interpersonal Communication: A Behavioural Analysis ": 1 +"Financial Mathematics: Mastering Exponential Growth through SPSS Regression Analysis": 1 +"Java Programming for Simulation of Economic Models using Monte Carlo Techniques": 1 +"Environmental Science: The Critical Role of Renewable Energy in Sustainable Development": 1 +"Literature: Post-Colonial Narratives - Interpreting Resistance in Novels and Essays through Postmodern Criticism": 1 +"Understanding Global Politics: Analyzing Political Trends with SPSS Software": 1 +"Neuroscience: Understanding Brain Activity through EEG and TMS Techniques": 1 +"Advanced Guide to Machine Learning with Python for Predictive Analytics and Logical Inference": 1 +"Proficiency in Hibernate: Java Programming Using PostgreSQL Database": 1 +"Microeconomics: Insights and Applications with a Focus on Inflation Dynamics": 1 +"Fundamentals of Cybersecurity: Network Defense with a Focus on Firewall Configuration": 1 +"Geography: Studying World Cultures through Satellite Imagery and GIS": 1 +"Proteomic Data Analysis Using R, dplyr Library, and Bioconductor": 1 +"Linguistics: The Evolution of Script: The Influence of Digital Media on Typographic Trends": 1 +"Physics: Grasping Quantum Mechanics through MATLAB, Calculus, and Computational Simulations": 1 +"Advanced Digital Marketing: Harnessing the Power of SEO, Google Analytics and Social Media Campaigns": 1 +"In-depth Study of Oil Painting Techniques: Exploring Palette Knife, Glazing and Grisaille Methods": 1 +"Emerging Trends in Renewable Energy: Solar Power Systems and Modelling in MATLAB": 1 +"Statistics for Beginners: Linear Regression and Data Interpretation Using Excel": 1 +"Deep Learning in R Programming: Exploring Neural Networks with ggplot2 Visualization": 1 +"Computer Graphics: 3D Modelling and Animation using Blender": 1 +"Creative Non-fiction: Delivering Truth through Narrative Techniques and Literary Devices": 1 +"Astrophysics 401: Black Holes and the Fabric of Space-Time: An Extensive Exploration of Event Horizons": 1 +"Cultural Studies: The Impact of Cinema on the Civil Rights Movement and Its Reflection in Modern Filmography": 1 +"Hackers Unmasked: An Introduction to Ethical Hacking and Network Security with Wireshark": 1 +"Unlocking the Universe: An In-depth Study on Black Holes and Their Impact on Space-Time Continuum": 1 +"Human Behavior: The Influence of Classical Music on Cognitive Development - A Neuroscientific Approach Using fMRI": 1 +"Advanced Concepts in Digital Geometry: Exploring Fractals in Nature Using Advanced Computer Graphics Techniques": 1 +"Photonic Computing: The Future of Quantum Computing and Its Implications for Cybersecurity": 1 +"Biology in Action: Understanding Genetic Engineering through the Lens of CRISPR-Cas9": 1 +"The Power of Probability: Predictive Modeling in Finance and Insurance using R and Python": 1 +"Exploring Spatial Design: Advanced Architectural Techniques with AutoCAD and Revit": 1 +"The World of Fermentation: The Science and Culture behind Sourdough Bread and Craft Beer": 1 +"Computer Science: Enhancing E-commerce UX with Machine Learning Algorithms on Google Cloud Platform": 1 +"Mastering Surface Design: An In-depth Look at Sgraffito and Slip Trailing in Ceramic Art": 1 +"Biology: Exploring Genetic Engineering with CRISPR-Cas9 - A Guided Approach to Modern Biotechnology": 1 +"Philosophy: The Intersection of Free Will and Quantum Mechanics - A Deep Dive into the Copenhagen Interpretation": 1 +"Advanced Physics: Astrophysics and the Study of Exoplanets using Kepler Data and Python": 1 +"Human Anatomy: The Impact of Yoga on Musculoskeletal Health - A Comprehensive Guide": 1 +"Cybersecurity Essentials: Protecting Data with Cryptography, Blockchain and Python": 1 +"Literature Studies: Unraveling Narrative Structures with Classic Novels and StoryGraph": 1 +"Environmental Science: Utilizing GIS and Remote Sensing for Forest Conservation and Management": 1 +"Machine Learning: Analyzing Sentiment in Social Media Data using Natural Language Processing": 1 +"The Application of Calculus in Economics: Understanding Market Dynamics through Differential Equations": 1 +"Physics: The Role of MATLAB in Understanding Quantum Mechanics through the Schrödinger Equation": 1 +"Geography 201: The Impact of Canal Systems on Trade and Civilization During the Age of Exploration": 1 +"Neuroscience: The Effect of Binaural Beats on Brainwave Patterns Through EEG Analysis": 1 +"History of Medicine: The Influence of the Microscope in Understanding Disease Pathology": 1 +"Applying Behavioral Economics to Understand Consumer Choices in E-Commerce": 1 +"Art History: The Role of Fresco Techniques in the Renaissance Period": 1 +"The Role of Drone Technology in Enhancing Crop Yield in Modern Rice Farming": 1 +"Climatology: Utilizing Satellite Imagery to Analyze Desertification Trends Due to Climate Change": 1 +"Data Analytics: Building Predictive Models with Python and R using Big Data": 1 +"Microbiology: Understanding Genetic Mutations through CRISPR-Cas9 and DNA Sequencing": 1 +"Music Technology: Exploring Sound Synthesis Using Ableton Live, VST Plugins, and Digital Signal Processing": 1 +"Chemistry and Audacity: A Comprehensive Guide to Sound Engineering in Modern Broadcasting with Frequency Modulation Techniques": 1 +"Political Science: The Role of Ethnomethodology in Decoding the Political Symbolism in Contemporary Dance": 1 +"Cutting-edge Discoveries: Human Genetics and Disease Control using Genome Editing and RNA Sequencing Methods": 1 +"Art: Understanding Color Theory and Modern Installations through Digital Painting in Adobe Photoshop": 1 +"Spanish Literature: Narrative Structures Using Interactive E-books and Virtual Reality Tools": 1 +"The Progress of Cryptography: Tracing the Evolution of Code and Cipher in the Digital Age": 1 +"Secondary Level: Exploring Advanced Physics through Space Science using VR Technology": 1 +"Marine Science: Ocean Acidification and its Effect on Marine Ecosystems: A Geoinformatics Perspective": 1 +"Psychology: Unveiling the Mysteries of Memory: The Role of Art Therapy in Alzheimer's Disease Management": 1 +"In-depth Colonial History: The Influence of the Spice Trade on East India Company's Expansion": 1 +"Mathematics and Architecture: The Role of Geometry in the Design of Modern Buildings": 1 +"Deep Dive into Cryptography Algorithms: Understanding RSA and Elliptic Curve Cryptography ": 1 +"Marine Biology and Conservation: Coral Reef Ecosystems and Climate Change ": 1 +"French Cinema: Discourse Analysis using Python and NLTK: Film Interpretation and Criticism": 1 +"Global Economics: The Impact of the Internet on International Trade and Market Expansion": 1 +"Introduction to Software Engineering: Web Application Development using Django": 1 +"Musicology: The Role of the Sitar in Traditional Indian Melodies": 1 +"Mind and Magic: Cognitive Psychology Through the Prism of Illusion and Magic Tricks": 1 +"Discovering Computer Science: Python Programming for 3D Animation and Modeling": 1 +"Physics: Harnessing Quantum Mechanics in the Advancement of Telecommunication and its Societal Challenges": 1 +"The Influence of Light on Plant Photosynthesis: A Detailed Study Using Spectrophotometers and Chlorophyll Fluorometers": 1 +"Deciphering Music: A Thorough Understanding of Acoustic Physics, Mathematical Scales and Soundproof Designs": 1 +"An In-depth Analysis of Brain Activity: The Utilization of Java Programming in EEG and fMRI Scans": 1 +"Applying K-Means Clustering in Python Data Science: Advanced Use of Pandas and Multivariate Normal Distribution with LDA for Data Dimensionality Reduction": 1 +"Ethics: Morality, Consumer Behavior, and the Role of Virtual Reality": 1 +"Investigating the Impact of Vitamins on Human Metabolism Using Mass Spectrometry and Nuclear Magnetic Resonance in Everyday Nutrition": 1 +"Semiotics: Emotion Detection Using Speech Recognition and Deep Learning: Cognitive Science and Conversation Analysis": 1 +"Probing into Abstract Painting: An In-depth Analysis of the Techniques of Acrylic Pouring and Palette Knife Painting": 1 +"Introduction to Ballet: Expressing Emotion through Movement and Gesture": 1 +"Advanced Astronomy: Decoding the Universe's Past through Cosmic Microwave Background Radiation.": 1 +"Physics: Quantum Mechanics and Particle Interactions: An Introduction to String Theory": 1 +"Art History: Decoding Symbolism in Baroque Art: A Study of Caravaggio's Works": 1 +"Geology: Volcanic Activity and Landscape Formation: Utilizing LIDAR Technology in Geomorphologic Studies": 1 +"Cardiology: Understanding the Cardiovascular System under Stress: Echocardiography in Extreme Sports": 1 +"Modern Dance: Enhancing Artistic Expression through the Integration of Sensor Technology and Motion Capture": 1 +"Ecology: Terrestrial Wildlife and Inter-Species Behavior: An Introduction to Primate Social Dynamics": 1 +"Plant Physiology: Unraveling Photosynthesis: Application of Spectrophotometry in Chlorophyll Analysis": 1 +"Exploring Archaeological Sites: Application of LiDAR and Stratigraphic Analysis in Historical Preservation": 1 +"The Role of Norton Antivirus in Internet of Things Security: Ethical Considerations and Proactive Solutions": 1 +"Computer Science: Mastering Javascript and Data Mining with Node.js and Puppeteer": 1 +"Chemistry: The Magic of Color Changes - An Exploration of pH Indicators ": 1 +"Sociology: Understanding the Impact of Social Media on Youth Culture - An Insight into Digital Sociology": 1 +"The Legacy of Buddhism in Southeast Asia: An Examination through Archaeological Artifacts": 1 +"Decoding the Mystery of Human Genome: A Voyage through DNA Sequencing using Next-Generation Sequencing": 1 +"The Art of Rhythm: Deciphering Tempo and Beat through the Scope of Dance Choreography": 1 +"Perfecting Synonyms and Antonyms in Language and Communication: A Detailed Study with Babbel": 1 +"Biology: The Secrets of Photosynthesis and the Role of Chlorophyll": 1 +"Interior Design: The Blend of Minimalism and Functionality using Advanced 3D Modeling Software": 1 +"HTTP and Beyond: Thorough Examination of Web Protocols and Data Transfer using Wireshark": 1 +"Computer Science: Creating Realistic Weather Effects in Unreal Engine for Virtual Reality Environments": 1 +"Environmental Biotechnology: Effect of Genetically Modified Organisms on Ecosystem Balance": 1 +"Advanced Cryptography: Securing Digital Communications with Quantum Computing": 1 +"Behavioral Economics: Insights from Game Theory and Behavioral Biases": 1 +"Astronomy in Art: Depicting Celestial Bodies through Watercolor Techniques": 1 +"Clinical Psychology: Exploring Mental Health Disorders through Neuroimaging Techniques": 1 +"Sustainable Urban Planning: Incorporating Green Infrastructure in Modern Cities": 1 +"Mathematical Wonders: Engaging Young Minds with Geometric Constructions": 1 +"High-Level CAD: Integrating Fractal Design in Structural Engineering": 1 +"Microbiome Revolution: Unfolding the Mysteries of Gut Health using Next Generation Sequencing": 1 +"Applied Logic in Database Design: Normalization and Relational Algebra using SQL": 1 +"Physics: Quantum Physics and Black Holes - A Journey into the Unknown": 1 +"Economics: Investigating the Socio-economic Implications of AI Automation on Global Economies": 1 +"Physical Education: Implementing Martial Arts to Improve Discipline and Fitness in Daily Routine": 1 +"Statistics: Baseball Analytics Explored Through R and Python": 1 +"Biology: The Life Within - Cellular Biology Demystified": 1 +"Philosophy 101: The Influence of Relativistic Physics on Modern Philosophical Thought": 1 +"Computer Engineering: Mastering Hardware Design with Arduino, Raspberry Pi, and FPGA for IoT Applications": 1 +"Advanced Bioinformatics: Proteomic Data Analysis Using Machine Learning, Python, and Cloud Computing Techniques with Bioconductor": 1 +"Global Politics: The Cold War Era - Understanding Nuclear Deterrence, Espionage, and Proxy Wars": 1 +"Astrophysics: Exploring the Cosmos with Telescopes, Spectrographs, and Astrophotography Software": 1 +"Advanced Algebra: Exploring Complex Numbers with MATLAB: A Deep Dive into Linear Algebra": 1 +"Computational Physics: The Role of Algorithms in Quantum Mechanics and the Implementation of Java": 1 +"Spanish: The Influence of Immigration - A Cultural Journey through Socio-linguistics and the Rise of Tapas Cuisine": 1 +"Geology for Enthusiasts: Unearthing Fossils through Field Excavations": 1 +"Genetics: Unraveling Heredity through the Study of DNA Sequencing Techniques": 1 +"Global Warming: The Effect of Industrialization on Glacial Melting and Sea Level Rise": 1 +"Sustainability and Innovation: Green Energy Production with Solar Panels and Wind Turbines": 1 +"Junior Chemists: The Excitement of Molecular Structure for Children - Using Models and Toys": 1 +"Health & Wellness: The Role of Fitbit in Calorie Tracking in Nutrition Studies": 1 +"Navigating Logic Pro: The Technique of Recording and Editing in Music Production Software": 1 +"Physics: Quantum Mechanics in Everyday Gadgets: A Study on the Role of Quantum Tunneling in Transistors": 1 +"Biology: Unveiling the Secrets of Bioluminescence: An In-depth Analysis of the Firefly's Glow": 1 +"Advanced German: Utilizing Memrise and Google Docs to Enhance Vocabulary Retention and Sentence Construction": 1 +"The Evolution of Digital Art: Pixel to Vector, a comprehensive study of Computer Graphics": 1 +"English Literature: The Power of Satire in Dystopian Fiction: A Look at George Orwell's 1984": 1 +"World History: The Impact of Steam Engine Technology on the Industrial Revolution": 1 +"The Echo of the Hammer: The Relationship between Blacksmithing and Metal Music": 1 +"Mastering the Art of Watercolor: The Influence of Texture, Value, Hue, and Watercolor Techniques": 1 +"Data Science & Machine Learning: Predictive Analytics for Optimizing Solar Power Generation": 1 +"Understanding Positive Space in Watercolor: An Intensive Study of Form, Stroke, and Hue using Flat Brushes and Sponge Techniques": 1 +"Mathematics Mastery: Unraveling Complex Numbers through Quantum Computing Applications": 1 +"Environmental Science: Understanding Climate Change through Paleoecology and Ice Core Analysis": 1 +"Health and Fitness: The Physiology of Yoga - Understanding Asanas through Kinesiology": 1 +"Biochemistry: The Path of Metabolism - Exploring Enzyme Kinetics and Thermodynamics": 1 +"Cosmology and Time Travel: The Influence of Quantum Gravity on Theoretical Wormholes": 1 +"Interactive Design: Oculus Rift and the Implementation of Haptic Feedback in Virtual Reality Gaming": 1 +"Cybersecurity and Global Politics: Evaluating the Role of Blockchain in International Data Privacy": 1 +"Quantum Physics: Entanglement and Teleportation - Analyzing Quantum States with Matrix Mechanics": 1 +"Innovative Architecture: Applying Fractal Geometry in Sustainable Urban Planning": 1 +"Literature and Technology: Immersive Storytelling with Augmented Reality: An Unreal Engine Perspective": 1 +"Quantum Mechanics Unveiled: An Introduction to Particle Physics and String Theory": 1 +"Astrophysical Concepts for Novices: Decoding the Universe through X-ray Astronomy": 1 +"Chemistry: Molecular Bonding and Structural Analysis using Spectroscopy": 1 +"Exploring the Influence of Keynesian Economics on Global Financial Crises: A Comprehensive Approach": 1 +"Beginner's Guide to Game Theory: The Mathematics of Strategic Decision Making": 1 +"Web Animation Basics: JavaScript, SVG, GreenSock, CSS3, and Adaptive Layouts": 1 +"Nurturing Young Innovators: Enhancing Children's Creative Thinking through Lego Robotics and Game Programming": 1 +"Artistic Exploration: Learning Through Adobe Creative Suite and Virtual Reality Tools for Children's Storytelling": 1 +"Climate Change: Understanding the Global Impact of Ocean Acidification and Coral Bleaching": 1 +"Musical Mathematics: Exploring the Intersection of Music Theory and Algebra using MIDI Sequencing and Ableton Live.": 1 +"Decoding Human Genome: An In-depth Study of Gene Editing and CRISPR-Cas9": 1 +"Basic Astronomy: Understanding the Universe through Telescope Observations and Cosmic Microwave Background": 1 +"Advanced Python for Data Science: Machine Learning and Predictive Analysis in Weather Forecasting": 1 +"Digital Design: Creating Immersive Landscapes in Augmented Reality using Unity and Unreal Engine": 1 +"Understanding the Impact of Gene Therapy in Cancer Treatment: An Extensive Research on Oncolytic Viruses": 1 +"Mastering Pro Tools: Mixing and Mastering in the Digital Age with Audio Plugins and Automation Techniques": 1 +"The Power of Virtual Reality in Physical Therapy: Exploring the Efficiency of Oculus Rift and Haptic Technology": 1 +"Mathematics in Everyday Life: Integrating Calculus, Boolean Algebra, and MATLAB Simulations": 1 +"Biochemistry Basics: Exploring Protein Structures and Enzyme Kinetics using Molecular Modelling Software": 1 +"Sociolinguistics: Exploring Global Language Variation through Syntax and Morphology Analysis": 1 +"Modern Architecture: Frank Lloyd Wright's Impact on Sustainable Design and Green Buildings": 1 +"Network Security Protocols: Defending Against Cyber Threats through Encryption and Firewall Techniques": 1 +"Literary Analysis and Global Economics: Interpreting Financial Crises Through Postmodern Fiction": 1 +"Neuroscience and Artificial Intelligence: Utilizing fMRI in Machine Learning and Neural Network Training": 1 +"Algebra in Action: Applying Linear Equations and Matrices in Cryptography using Mathematica": 1 +"Sociology 202: The Influence of the Printing Press on Cultural Evolution during the Renaissance": 1 +"Quantum Field Theory: The Role of Feynman Diagrams in Particle Physics and Quantum Electrodynamics": 1 +"Critical Thinking and Problem Solving: Advanced Study in Inductive Reasoning and Riddles": 1 +"Behavioral Economics: Prospect Theory, Cognitive Biases and Their Impact on Consumer Behavior": 1 +"Software Development 210: Mastering Java & Distributed Systems using Hadoop for Big Data Analysis": 1 +"The Influence of Television Broadcasts on Pop Art during the Cold War": 1 +"Advanced Physics: Exploring the Universe through Theoretical Astrophysics": 1 +"Crafts: Mastering Glass Blowing Techniques in Contemporary Art": 1 +"Decoding Metaphors in Hemingway's Novels Using Computational Linguistics Tools": 1 +"A Comprehensive Study of Charcoal Drawing: Exploring Shadows, Textures, and the Art of Smudging Techniques": 1 +"Statistics 201: An Investigation into Predictive Analytics Using R Programming": 1 +"Theatre Studies: An In-depth Examination of Beckett's Absurdist Plays": 1 +"Audio Engineering: Acoustic Design Principles for Optimizing Sound in Concert Halls": 1 +"Advanced Biology: Deciphering Evolutionary Patterns through the Lens of Genomics": 1 +"Information Technology: Leveraging Deep Learning for Predictive Maintenance in Industrial Systems": 1 +"Advanced Robotics: An In-depth Examination of Kinematics in Industrial Robots": 1 +"Modern Linguistics: Exploring Language Evolution through the Lens of Sociolinguistics": 1 +"Computational Neuroscience: Using Python and Nengo for Simulation of Neuronal Networks": 1 +"Advanced Geophysics: Tectonic Plate Movements and Earthquake Prediction - Using Seismic Data for Prognostication": 1 +"Sociology 101: The Impact of Social Media on Global Protest Movements - A Study of Twitter and the Arab Spring": 1 +"Harnessing Machine Learning in Predictive Analysis for Stock Market Forecasting: A Neural Network Approach": 1 +"Music: The Influence of Electronic Instruments on Contemporary Jazz Composition": 1 +"Environmental Science: Climate Change and the Impact on Coral Reef Ecosystems": 1 +"Chemistry: Understanding Isotope Geochemistry through Radiometric Dating and the Carbon Cycle": 1 +"Physics: Exploring Quantum Entanglement through Bell's Theorem and the EPR Paradox": 1 +"The Magic of Microbiology: Exploring Gut Health Through Fermentation Techniques and Probiotic Cultures": 1 +"Coding for Creatives: Using JavaScript and HTML Canvas for Interactive Digital Art": 1 +"Quantum Computing Explored: Applying Superposition and Entanglement Concepts in Cybersecurity": 1 +"Engineering Marvels: The Impact of Civil Engineering in Ancient Egyptian Structures": 1 +"Mathematical Artistry: Fractal Patterns and the Beauty of Chaos Theory": 1 +"The Evolution of Language: Tracing Linguistic Changes Through Machine Learning Algorithms": 1 +"Virtual Reality in Healthcare: Exploring the Use of Oculus Rift in Pain Management and Rehabilitation": 1 +"Cultural Anthropology & Technology: The Impact of Social Media on Tribal Societies": 1 +"Astrophysics Unveiled: The Role of Spectroscopy in Identifying Exoplanets": 1 +"The Intersection of Fashion & Technology: An In-Depth Study on Smart Fabrics and Wearable Tech in Sports Apparel.": 1 +"From Quill to Keyboard: The Evolution of Writing Instruments and Their Influence on Literature": 1 +"Eco Symphony: Decoding Nature's Patterns with Fractal Geometry": 1 +"Machine Learning: Building Intelligent Systems Using Python's TensorFlow Library": 1 +"Advanced Cybersecurity: Safeguarding Digital Assets through Encryption and Hash Functions": 1 +"Unconscious Pathways: Understanding Dream Patterns through EEG and REM Cycle Analysis": 1 +"Java for Gamers: Developing Real-time Strategy Games with Spring Framework": 1 +"Critical Thinkers: An Exploration of Ethical Dilemmas using the Trolley Problem": 1 +"Biology: Decoding the Language of DNA through CRISPR-Cas9 Gene Editing": 1 +"Quantum Mechanics: A Dive into the Uncertainty Principle and Wave-Particle Duality": 1 +"Financial Literacy: Understanding the Stock Market and Investment Portfolio for Teens": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Superstring Theory": 1 +"History and Technology: The Impact of Digital Tools in Archaeological Discoveries and Interpretation": 1 +"Calculus in Motion: Understanding Physical Phenomena through Differential Equations": 1 +"Art and Technology: The Fusion of 3D Printing and Sculpture - A Study in Texture, Form, and Space": 1 +"Zoology: Deciphering Behavioral Patterns - The Impact of Climate Change on Migratory Birds": 1 +"Clinical Psychology: An In-depth Study of Cognitive Behavioral Therapy in Treating Obsessive-Compulsive Disorder": 1 +"Molecular Biology: Unraveling the Mysteries of DNA Replication with Electron Microscopy": 1 +"Exploring the Aesthetics of Abstract Art through Pastel Mediums: A Focus on Geometric Shapes and Negative Space": 1 +"Genetics: The Role of CRISPR-Cas9 in Revolutionizing Gene Therapy": 1 +"Data Science: Leveraging Machine Learning and R Programming for Customer Segmentation and Pattern Recognition": 1 +"Psychology: The Effect of Social Media on Mental Health and Interpersonal Relationships": 1 +"Modern Architecture: Sustainability and Innovation - A Study of Biomimicry in Urban Design": 1 +"Advanced Biochemistry: Understanding DNA Replication Through The Lens of Enzyme Kinetics": 1 +"Journey in Civil Engineering: Structural Analysis and Design using Finite Element Method": 1 +"Chemistry and AI: Exploring the Application of Machine Learning in Drug Discovery": 1 +"Accounting 210: Forensic Accounting & Fraud Examination - Using Blockchain Technology in Financial Audits": 1 +"French: History and Modernity - A Review of Technological Advancements in Francophone Cinema": 1 +"Web Development: Building Your First Interactive Website with JavaScript": 1 +"Exploring Dance and Movement Therapy: The Role of Biomechanical Analysis Software in Injury Prevention": 1 +"Innovations in Basketball Coaching: The Implementation of Motion Tracking Technology and Data Analytics": 1 +"Chemistry: The Role of Catalysts in Industrial Processes and Their Environmental Impact": 1 +"Advanced Course on Machine Learning: Decision Trees, Neural Networks, and Predictive Modelling with R and Python": 1 +"Primary Education: Enhancing Mathematical Skills through Virtual Reality and Gamification Techniques: An Introduction to Number Systems": 1 +"Sociology: Deciphering Social Interactions and Behavior through AI and Machine Learning": 1 +"Breaking down Astronomical Data: Understanding The Universe Through Statistical Analysis, Python Programming, and Data Mining using Apache Spark": 1 +"Digital Defenders: Strengthening Internet Privacy with Encryption Techniques": 1 +"Biology: Innovative Uses of Bioluminescence in Medical Diagnostics": 1 +"Masterclass in Game Design: Harnessing Unreal Engine 4, Unity, and Blender for Immersive Experiences": 1 +"World Languages: Enhancing Language Acquisition through Podcasts and Interactive Apps": 1 +"Seismology and Satellite Imagery: Monitoring Volcanic Activity and Forecasting Eruptions": 1 +"Advanced Robotics: Principles of Kinematics and Dynamics Applied in Modern Robot Design Using ROS": 1 +"Chemistry: Exploring Biochemical Pathways with Computational Modelling: A Deep Dive into Metabolic Networks": 1 +"Theatre Arts: Deconstructing the Craft of Stage Direction: An Exploration of Blocking and Stagecraft Techniques": 1 +"Space Science: Astrophysical Phenomena: A Comprehensive Study of Pulsars and Quasars Using Radio Telescopes": 1 +"Linguistics: Exploring Language Evolution through Computational Linguistics and Morphological Analysis": 1 +"Health Science: The Role of Genomics in Personalized Medicine: An Examination of CRISPR-Cas9": 1 +"Culinary Arts: Molecular Gastronomy: A Scientific Approach to Cooking Techniques and Flavor Pairing": 1 +"Digital Art: The Application of Generative Adversarial Networks in Creating AI Art: A Deep Dive into DeepArt": 1 +"Environmental Science: Climate Change Modeling: A Comprehensive Study of Ice Core Data and Carbon Dating": 1 +"Mathematics: Understanding the Complexity of Fractal Geometry through Algorithmic Design and Iterative Functions": 1 +"Chemistry: The Role of Nanotechnology in Drug Delivery Systems": 1 +"Biology: The Impact of Aquatic Plants on Freshwater Ecosystems": 1 +"Art: The Influence of Digital Media on Modern Sculpture": 1 +"Physics: Quantum Mechanics and its Impact on Modern Telecommunication": 1 +"The Effects of Smart Cities on Energy Conservation": 1 +"Economics: The Role of Cryptocurrency in the Global Economy": 1 +"Language Arts: The Evolution of Pidgin and Creole Languages - A Linguistic Study": 1 +"Geography: Advanced Terrain Analysis using Satellite Imaging": 1 +"Nutrition: The Influence of Plant-based Diets on Chronic Disease Prevention": 1 +"Computer Science: Exploring Fractal Patterns through Algorithmic Art: Applications of Python in Generative Design": 1 +"Sociology: Understanding Social Structures through the Evolution of Ancient Trade Languages": 1 +"Melody in Motion: The Role of the Violin in the Development of Baroque Music": 1 +"Unraveling the Secrets of the Universe: An In-depth Study of Quantum Computing and Its Potential Applications": 1 +"Chemistry: Investigating the Impact of Electrochemical Reactions in Mitochondrial Bioenergetics": 1 +"Advanced Neurorobotics: The Use of EEG, fNIRS, and TMS in the Development of Brain-Machine Interfaces for Stroke Rehabilitation": 1 +"Microsoft HoloLens and Dance: A Comprehensive Review of Mixed Reality Platforms": 1 +"Computer Science: Image Recognition and Processing: Implementing Convolutional Neural Networks and OpenCV in Facial Recognition Systems": 1 +"Technological Milestones: The Effect of the Printing Press on the Dissemination of Knowledge in the Middle Ages": 1 +"Astrophysics: Investigating Black Hole Thermodynamics and Hawking Radiation through Quantum Field Theory": 1 +"Geospatial Analysis: 3D Terrain Visualization using LIDAR and Photogrammetry Techniques.": 1 +"Astronomy: The Role of Spectroscopy in Understanding Star Formation": 1 +"Mathematics: Exploring Game Theory and Strategic Decision-Making with Python": 1 +"Chemistry: Utilizing Molecular Dynamics Simulations for Drug Discovery": 1 +"Sociology: Analyzing the Impact of Social Media on Mental Health using Quantitative Data Analysis": 1 +"Advanced Biostatistics: Exploration of Genetic Algorithms for Disease Prediction in Genomic Medicine": 1 +"Political Science: The Art of Diplomacy in International Relations: A Study of UN Resolutions": 1 +"The Theory of Ethereum: Understanding Smart Contracts and Decentralization in Blockchain Technology": 1 +"Environmental Science: Impact of Climate Change on Sustainable Agriculture: A Case Study on Vertical Farming": 1 +"Engineering: In-Depth Analysis of Structural Vibration Control using Tuned Mass Dampers": 1 +"Leveraging Augmented Reality to Evaluate the Influence of Green Technology on Sustainable Urban Planning: An Extensive Study": 1 +"Advanced Predictive Modelling: Utilizing Regression Analysis for Enhancing Netflix's Personalized Sci-Fi Recommendations": 1 +"Building Virtual Worlds with Java, Unity, Vectors, and Ray Tracing: An Introduction to Spatial Domain Processing": 1 +"Physics in Everyday Life: Exploring the Role of Kinetics Using Particle Accelerators": 1 +"Art History: The Influence of Geometric Patterns in Renaissance Paintings": 1 +"Linguistics: Decoding Irony and Sarcasm using Natural Language Processing - An Initial Investigation": 1 +"Business Studies: Deciphering the Dynamics of E-commerce through Big Data": 1 +"Advanced Fluid Mechanics: Understanding Turbulence and Flow Patterns - Decoding Weather Systems": 1 +"Advanced Marine Biology: Coral Reef Ecology and Ecosystem Services in the Indian Ocean": 1 +"Mastering Ableton Live: A Detailed Guide to Digital Audio Workstations in Electronic Dance Music Production": 1 +"Mitochondria Examination: A Detailed Study with Confocal Microscopy, Atomic Force Microscopy, Gas Chromatography, and Nuclear Magnetic Resonance": 1 +"The Fibonacci Sequence in Architectural Design: Aesthetic Insights into Proportions and Symmetries": 1 +"Sociology 101: Examining the Intersection of Urban Culture and Graffiti Art - The Dopamine Link": 1 +"Wilderness Navigation: Enhancing Environmental Awareness through Celestial Navigation Techniques": 1 +"Political Science: Deciphering Global Politics through Comparative Government Studies": 1 +"Mastering ggplot2 for Effective Data Visualization in R: Constructing Flow Diagrams in Predicate Logic": 1 +"Linear Algebra & Calculus: Proficiency in Eigenvalue and Eigenvector Calculations in MATLAB and Mathematica": 1 +"Anatomy Fundamentals: The Musculoskeletal System and Dance Performance: A Study through Motion Capture Technology": 1 +"World Literature: The Renaissance Period, the Printing Press, Sonnet Form, and the Rise of the Novel": 1 +"Fine Arts: Abstract Sculpture in Clay and Glass: Kiln Mastery and the Use of Raku Firing Technique via Blowtorches": 1 +"Game Theory in Economics: Analyzing Stock Market Data with Julia and Matplotlib": 1 +"The Influence of Quantum Computing on Financial Market Analysis": 1 +"Music: The Art of Sound Engineering Using Digital Audio Workstation": 1 +"Cybersecurity: Understanding Intrusion Detection Systems through Snort, Nessus, and Metasploit": 1 +"Advanced Education 401: Interactive Learning Methods – Leveraging Zoom for Virtual Classroom Engagement": 1 +"Exploration of Genetic Modifications: An Emphasis on RNA Sequencing and Fluorescence Microscopy": 1 +"Astronomy Fundamentals: Understanding Black Holes through Mathematical Models and Simulation Software": 1 +"Art: The Role of Fresco Techniques in Byzantine Masterpieces": 1 +"Cinematography: Crafting a Narrative - Visual Storytelling Techniques with Adobe Premiere Pro": 1 +"English 315: Poetry and Sarcasm: Irony and Oxymorons in Contemporary Literature - Decoding Paradox": 1 +"Computer Science: Developing Augmented Reality Experiences in Unity with Blender for Immersive Education": 1 +"Advanced Physics: Quantum Mechanics and Theoretical Calculations in Nanotechnology using MATLAB": 1 +"The Science of Nutrition: Exploring Gut Microbiome Interactions with Food through Metagenomics": 1 +"Carbon Fiber and Laser Cutting Technology in Sustainable Automobile Manufacturing": 1 +"Sculptural Dynamics: Investigating Volume, Texture and Balance in Stone Carving": 1 +"Literature and Philosophy: The Role of Irony in Narrative Structure within Existential Novels": 1 +"Machine Learning in Finance: Harnessing Regression Analysis for Stock Market Predictions": 1 +"Information Technology: Using Adobe Audition's Multitrack Editor in Podcast Production for Creating Captivating Audio Experiences": 1 +"Psychiatry: The Influence of Functional Magnetic Resonance Imaging on CBT in Mental Health Diagnosis": 1 +"World History: Examining the Influence of Brazilian Capoeira in Global Dance Trends with Virtual Reality Technology": 1 +"Blockchain in Agriculture: Impact Assessment of Supply Chain Management using Python and TensorFlow": 1 +"Climate Change: The Kyoto Protocol, Renewable Energy, and the Future of Global Politics": 1 +"Neuroscience: Understanding Human Consciousness Through Functional MRI and Machine Learning": 1 +"Football Statistics: Utilizing Python, SQL, and Large Datasets for Optimal Team Strategy": 1 +"History 202: The Gutenberg Press and the Emergence of Mass Communication during the Renaissance": 1 +"The Impact of Gastroenterology on Nutrition: Unraveling the Mysteries of the Gut Microbiome": 1 +"Chemistry 202: Exploring Molecular Structures with Nuclear Magnetic Resonance Spectroscopy": 1 +"Literature: Deconstructing Postmodern Narrative Structures in Magic Realism: A Transnational Study using Semiotic Analysis": 1 +"Physics 120: Gravitational Waves in Space-Time Continuum: The Einstein Field Equations and Laser Interferometer Gravitational-Wave Observatory": 1 +"Unraveling Dark Matter: The Role of Quantum Field Theory and Gravitational Lensing": 1 +"Art History: The Influence of Impressionism on Modern Art Movements across Continents": 1 +"Advanced Meteorology: Predicting Climate Change using Atmospheric Data Analysis": 1 +"Marvelous Minds: An Introduction to Child Psychology for Beginners": 1 +"Understanding the Universe: Exploring Dark Matter and its Role in Cosmic Expansion": 1 +"Chemistry Uncovered: Exploring Biochemical Reactions with Chromatography": 1 +"Mathematics in Action: Using Probability Theory to Predict Stock Market Trends": 1 +"In-depth Exploration of Genetic Mapping using Next Generation Sequencing and Bioinformatics": 1 +"Cultural Significance of Mosaic Art in Byzantine Empire: A Study on Iconography": 1 +"Primary Physics: Understanding Magnetism and its Effect on Electromagnetic Fields": 1 +"Artistic Evolution: The Impact of Fresco Techniques on Renaissance Art": 1 +"Deciphering the Military Tactics of the Cold War: The Role of the Enigma Machine.": 1 +"Advanced Marine Biology: Exploring Oceanography with Remote Sensing Technology": 1 +"Quantum Physics: Unveiling Quantum Mechanics through Quantum Computing with Qubit": 1 +"The Art of Digital Marketing: Leveraging Social Media Analytics for Effective Branding": 1 +"Psychology: Unraveling Human Emotions using Facial Recognition AI": 1 +"Culinary Science: Understanding Food Chemistry through Molecular Gastronomy": 1 +"Blockchain Technology: Deciphering Cryptocurrency Transactions with Distributed Ledger Technology": 1 +"Environmental Studies: Climate Change Analysis using Geospatial Technology and Remote Sensing": 1 +"Creative Writing: Enhancing Narratives through Sentiment Analysis with Machine Learning": 1 +"Data Science for Business: Predictive Modeling for Strategic Decision Making using R": 1 +"Civil Engineering: Innovative Building Designs with 3D Printing and Computer-Aided Design Software": 1 +"Advanced Physics 320: Quantum Mechanics and its Applications in Modern Technology": 1 +"Ethical Philosophy 212: Understanding Social Contract Theory in the Context of Digital Privacy": 1 +"Neurolinguistics: Analyzing Language Acquisition through Brain Imaging Techniques": 1 +"Chemistry: The Role of Organic Reactions in Biochemical Pathways": 1 +"Digital Design: The Influence of Vector Illustrations in Modern Web Development": 1 +"Deep Dive into Binary Trees: Understanding Data Structures with C++ and Ruby": 1 +"Expedition in Data Science: Harnessing Python for Predictive Analytics": 1 +"The Chemistry of Color in Digital Art: Exploring the Impact of RGB and CMYK": 1 +"Motivating Future Architects: Creative Designing with AutoCAD and SketchUp": 1 +"Calculus Revealed: An Insight into Derivatives and Integrals in Economic Forecasting using Excel": 1 +"The Interplay of Climate Change and Agricultural Practices: A Geographical Information System (GIS) Study Using Python": 1 +"Astronomy for Beginners: Exploring the Constellations through the Lens of Hubble Telescope": 1 +"The Evolution of Fashion Trends: A Historical Analysis through the Framework of Cultural Sociology": 1 +"Cybersecurity Essentials: An Introduction to Network Vulnerabilities and Countermeasures Using Ethical Hacking Tools": 1 +"Psychology in Action: Unraveling the Human Mind with Cognitive Behavioral Therapy Techniques": 1 +"Environmental Economics: Assessing the Impact of Renewable Energy Policies on Global Markets with Econometric Models": 1 +"The World of 3D Printing: A Deep Dive into Material Science and Engineering with AutoCAD": 1 +"Historical Linguistics: Tracing Language Evolution Through Computational Phonetics Using Praat": 1 +"The Science of Nutrition: Analyzing Dietary Trends and Health Outcomes Using Biostatistics": 1 +"Cinematic Storytelling: The Art and Craft of Screenwriting in the Age of Streaming Platforms.": 1 +"Chemistry: Exploring Molecular Structures and Chemical Reactions Through Spectroscopy": 1 +"Sports Science: Utilizing Wearable Tech and Biometric Data for Optimizing Basketball Performance": 1 +"The Art of Storytelling: An Examination of Symbolism and Allegory in Modern Literature": 1 +"Network Security: Deploying Artificial Intelligence in Detecting and Preventing Cyber Threats": 1 +"Genetics: Unveiling the Secrets of DNA: A Closer Look at Genetic Sequencing Techniques": 1 +"Geology: Uncovering the Past: The Role of Radiometric Dating in Paleontology": 1 +"The Impact of Drone Technology in Wildlife Conservation and Ecosystem Studies": 1 +"Mathematics in Action: Understanding Chaos Theory and its Application in Weather Forecasting": 1 +"Total Wellness: Exploring the Role of Probiotics and Prebiotics in Gut Health": 1 +"Cosmology Revealed: Discovering the Universe through the Study of Dark Matter and Energy": 1 +"Biochemistry 101: Deciphering the Intricacies of Cellular Metabolism and Energy Production": 1 +"Advanced Photography: Exploring Black and White Techniques in High Dynamic Range Imaging": 1 +"Physics: Unraveling the Mysteries of Quantum Mechanics with Mathematical Applications": 1 +"Ancient Literature: The Influence of Greek Myths on Contemporary Storytelling": 1 +"Psychology 101: The Role of Cognitive Biases in Decision Making and Conflict Resolution": 1 +"The Role of Geometry in Architecture: From Ancient Civilizations to Modern Design": 1 +"Advanced Digital Marketing: Maximizing Conversion Rates Through A/B Testing and User Experience Design": 1 +"History 101: Understanding the Political Dynamics of the Cold War through Game Theory": 1 +"Biology: Decoding Genetic Information with CRISPR-Cas9 and Genomic Sequencing": 1 +"Mathematics: Exploring the Power of Asymptotic Analysis in Algorithmic Complexity": 1 +"Programming with Python: Developing Algorithmic Thinking for Future Coders": 1 +"Physics for Kids: Unpacking Newton's Three Laws through Simple Experiments": 1 +"Theater: Exploring Costume Design and Fabrication using Virtual Reality": 1 +"Chemistry: Investigating Material Properties with X-Ray Diffraction ": 1 +"Neuropsychology: Understanding Emotion Regulation through Functional MRI": 1 +"Evolution of Cinema: The Role of Digital Technology in Film Production": 1 +"Genetics: The Potential of Stem Cell Research in Regenerative Medicine": 1 +"Geology: Leveraging Seismic Waves in Understanding Earth's Interior Structure": 1 +"Cultural Studies: Deciphering Ancient Civilizations through Archaeological Excavations": 1 +"Neuroscience Basics: Unraveling Neural Networks with PET Scans and Multivariate Pattern Analysis": 1 +"Astrophysics: The Impact of Pulsar Stars on Space-Time Fabric: Quantum Gravity and General Relativity": 1 +"The Evolution of Human Rights: A Comparative Study between Universal Declaration and The Magna Carta": 1 +"Marine Biology: Exploring the Role of Bio-luminescence in Deep Ocean Ecosystems": 1 +"Chemistry 202: Organic Synthesis: The Art and Science of Creating Carbon-based Compounds": 1 +"History and Archaeology: Deciphering Ancient Scripts - The Role of Rosetta Stone in Understanding Egyptian Hieroglyphs": 1 +"Advanced Calculus: A Deep Dive into the World of Differential Equations and Their Applications": 1 +"Computer Engineering: Understanding the Role of Quantum Computing in Cybersecurity": 1 +"Psychology: The Use of Neuroimaging in Understanding the Neural Correlates of Emotion": 1 +"Environmental Studies: The Impact of Urbanization on Biodiversity: A Case Study of Rainforest Ecosystems": 1 +"Music Theory: Harmony and Melody: Exploring Counterpoint in Baroque Music.": 1 +"Physics: Quantum Mechanics for Beginners: Understanding the Abstract with VR Simulation": 1 +"Chemistry: Exploring the World of Nanoparticles through Scanning Electron Microscopy: An Introduction to Material Science": 1 +"Mathematics: Advanced Calculus with Python: Application of Machine Learning in Numerical Analysis": 1 +"Nutrition Science: Decoding Nutrigenomics: Personalized Diets based on Genetic Testing using Bioinformatics": 1 +"Ethics: Technological Singularity: An Investigation into Ethical Dilemmas in the Age of AI": 1 +"Fine Arts: Abstract Impressionism in Gouache and Watercolor: Exploring the Textural Influence of Palette Knives and Mop Brushes": 1 +"Pop Culture: The Influence of Cyberpunk Aesthetics on Modern Architecture: A Deep Dive using 3D Modeling Software": 1 +"History: Decoding the Indus Valley Civilization: An Archaeological Perspective through Ancient Seals and Scripts": 1 +"Economics: Behavioral Economics: Using Big Data and AI to Predict Consumer Behavior Patterns": 1 +"Literature: Postmodernism in Literature: A Study on the Use of Metafiction and Pastiche using Text Mining and Sentiment Analysis.": 1 +"Chemistry: Integrating ChemDraw, Data Visualization and Nanotechnology in the Study of Green Energy Solutions": 1 +"Music Theory: Exploring Rhythm and Harmony with Logic Pro X and Spectrasonics Omnisphere: Composing Ambient Soundtracks for Documentaries": 1 +"Culinary Sciences: Decoding Molecular Gastronomy with Artificial Intelligence and Machine Learning": 1 +"Astronomy: Unraveling Cosmic Mysteries: Nebulae, Supernovae and Black Holes using MATLAB and Machine Learning": 1 +"Language Arts and Multimedia Presentations: Enhancements through Adobe Spark, Google Keep, and Virtual Reality": 1 +"In-depth Analysis of Neural Networks: The Application of Java Programming in Brainwave Analysis and Neuroimaging": 1 +"Physical Education: Advanced Baseball Techniques: Grasping the Infield Shift Strategy": 1 +"Advanced Spanish: Perfecting Dialogue Construction in Screenwriting using the Hero's Journey Framework and Final Draft": 1 +"Innovative Machine Learning: Predictive Modeling using Decision Trees, Python Programming, and Bayesian Inference": 1 +"Sports Management Mastery: Investigating Wearable Technology in Athlete Performance Across Various Sports": 1 +"Artificial Intelligence in Healthcare: Using Machine Learning for Predictive Diagnosis and Treatment": 1 +"Psychology: Exploring Human Behavior and Cognitive Processes through Experimental Research": 1 +"Environmental Science: Understanding the Impact of Deforestation on Climate using Geographic Information Systems": 1 +"Marine Biology: Coral Reef Ecosystems and Conservation Strategies through Underwater Surveys and Remote Sensing": 1 +"From Vinyl to Streaming: The Impact of Spotify on the Evolution of Music Consumption": 1 +"Application of Satellite Imagery in Crop Monitoring: A Study on Precision Agriculture for Sustainable Farming": 1 +"Harnessing Wind: The Role of Wind Turbines in Power Generation and Its Impact on Energy Policy": 1 +"Art in the Digital Age: The Influence of Photoshop on Contemporary Graphic Design": 1 +"Chemistry in the Kitchen: Understanding Chemical Reactions through Cooking Techniques": 1 +"Fun with Quantum Physics: Exploring the Uncertainty Principle and Wave-Particle Duality through Experiments": 1 +"Biology: Unraveling the Human Genome - DNA Sequencing and Bioinformatics Applications": 1 +"Environmental Science: Sustainable Urban Planning - Incorporating Green Building Principles": 1 +"Computer Science: Advanced Algorithm Design - Dynamic Programming and Graph Theory": 1 +"History: The Influence of Music in the Civil Rights Movement - A Sonic Exploration": 1 +"Chemistry: Understanding the World at a Molecular Level - Quantum Chemistry and Spectroscopy": 1 +"Fine Arts: Exploring Impressionism in the Digital Age - AI and Digital Imaging Techniques": 1 +"Neural Networks in Artificial Intelligence: Applying Convolutional Neural Networks for Image Recognition": 1 +"Exploring Python: Efficient Data Analysis with Pandas and NumPy Libraries": 1 +"Marine Biology: Coral Reefs and Climate Change - Understanding the Impact of Ocean Acidification": 1 +"Philosophy 101: The Role of Deductive Reasoning in Ethical Theories.": 1 +"Neuroscience: Understanding Neural Networks through MATLAB and Python Programming": 1 +"Photography: Harnessing Shadows and Perspective in Noir Photography Techniques": 1 +"Astrophysics: The Use of Photometric System in Studying Exoplanets": 1 +"Leveraging Google's Natural Language Processing for Improved Business Communication and Decision Making": 1 +"Sustainable Architecture: An in-depth Study of Bio-Bricks Production using Mycelium and 3D Printing Technology": 1 +"Spanish Language Acquisition: Utilizing VR Technology and AI Chatbots for Immersive Learning ": 1 +"Optics: The Impact of Polarizers and Beam Splitters on Fiber Optic Communication Systems": 1 +"Inorganic Chemistry: A Comprehensive Analysis of Crystal Structures using X-ray Crystallography and Computational Software": 1 +"Economics: Enhancing Financial Literacy and Investment Strategies with Twitter's Data Visualization and Excel": 1 +"The Role of Silent Cinema in Shaping Early 20th Century Literature.": 1 +"Physics: Understanding Quantum Mechanics through the Lens of String Theory": 1 +"Culinary Arts: Molecular Gastronomy - An Exploration of Sous Vide Techniques": 1 +"Economics: The Impact of Cryptocurrency on Global Trade: Insights from Blockchain and Data Analytics": 1 +"Chemistry: Organic Synthesis and the Use of Nuclear Magnetic Resonance Spectroscopy": 1 +"Melody and Harmony: The Influence of MIDI Controllers in Hip Hop Music Production in the Modern Era": 1 +"Medicine: The Role of Magnetic Resonance Imaging in the Diagnosis of Neurological Disorders": 1 +"Literature: The Power of Imagery in Narrative Poetry": 1 +"Physical Education: Enhancing Agility Training with Virtual Reality Technology": 1 +"Philosophy 301: Deconstructing Ethical Dilemmas: Application of Kantian Ethics and Moral Decision-Making": 1 +"Art 305: The Evolution of Cubism: Experimentation with Collage and Mixed Media Techniques": 1 +"Physics in Sports: Understanding the Mechanics of Movement using Biomechanical Analysis and Simulation": 1 +"Art History: Decoding Renaissance Paintings with Infrared Imaging and Reflectography": 1 +"Linguistics: Unraveling the Influence of Syntax in Modern Novels and Playwrights": 1 +"Music and Technology: Creating Soundscapes with Logic Pro, Pro Tools, and FL Studio": 1 +"Advanced Zoology: Marine Life Adaptation Studies using Genetic Barcoding and Metagenomics": 1 +"Intro to R for Statistical Analysis: A Detailed Journey for Novices": 1 +"Learning Spanish: Enhancing Comprehension with Interactive Digital Platforms": 1 +"Business Studies: The Significance of Social Media Marketing in Global Branding": 1 +"Investigating the Influence of Plate Tectonics on Earthquake Occurrence using Seismic Wave Analysis and GPS Tracking": 1 +"The Application of Neural Networks in Predictive Analytics for Financial Modelling": 1 +"Physics of Space Exploration: Understanding Gravity and Orbital Mechanics Through Computer Simulations": 1 +"Advanced Storytelling: Transmedia Narratives Across Digital Platforms": 1 +"Sociology: Examining Social Inequalities through Case Studies: A Comparative Approach": 1 +"Data Management: Strategy Development with SQL using Tableau": 1 +"The Influence of McAfee Antivirus in Strengthening Cybersecurity in Internet of Things: Ethical Conflicts and 10 Practical Solutions": 1 +"Basic Programming 101: Fundamentals of Javascript and Node.js for Desktop Applications": 1 +"Exploring Depth in Watercolor Techniques: A Study of Form, Shadows, and Contrast with the Application of Layering Effects Using Brushes": 1 +"Primary Science: Botanical Classification Using Google Sheets": 1 +"Intermediate Java Course: Practical Unsupervised Machine Learning Algorithms with Tableau Visualization and Hierarchical Clustering Techniques": 1 +"Critical Thinking 101: Applying Truth Tables to Understand Propositions in Formal Logic": 1 +"Psychology: Understanding Human Behavior through Functional Neuroimaging Techniques": 1 +"Sustainable Architecture: Incorporating Green Building Strategies in Urban Housing": 1 +"Intermediate Astrophysics: Probing the Cosmos with Radio Telescopes": 1 +"Assessing the Impact of Aquaponic Systems on Sustainable Food Production": 1 +"Information Technology 102: Python and NoSQL: A Deep Dive into Big Data": 1 +"Harnessing the Wind: The Role of Wind Turbines in Sustainable Energy Narratives": 1 +"Environmental Studies: Tracking Climate Change with Doppler Radar and Weather Balloons": 1 +"Human-Environment Interactions: An Ecological Approach Using GIS and Remote Sensing": 1 +"Algebra: Cracking the Code of Abstract Structures with Group Theory": 1 +"The Art of Healthy Eating: Unveiling the Influence of Plant-based Diets on Cardiovascular Health with Epidemiology": 1 +"Physics of Sound: Acoustics and Wave Propagation Explored with Digital Audio Workstations": 1 +"Introduction to Sociology: Interpreting Social Behaviors through Ethnographic Studies": 1 +"Biochemistry 101: Understanding Protein Structures with X-ray Crystallography": 1 +"Advanced Calculus: Utilizing Derivatives and Integrals in Economic Forecasting with Excel": 1 +"Nutritional Science: Unraveling Digestion Mechanisms with pH Meters": 1 +"Elementary Mathematics: Learning Geometry through Interactive Mobile Apps": 1 +"The Renaissance Era: The Art of Fresco, Humanism, Italian Scholars, and the Influence of the Medici Family": 1 +"Epistemology 101: The Intricacies of Knowledge: A Comprehensive Study of Propositional Logic": 1 +"Data Analysis 101: Mastering Regression Analysis using Python": 1 +"Cognitive Science Basics: The Role of Synaptic Plasticity in Learning and Memory Processes with fMRI Imaging": 1 +"Biology: Decoding Genes: Understanding DNA Sequencing and Genetic Algorithms": 1 +"Cybersecurity: Exploring Ethical Hacking through Advanced Penetration Testing Techniques": 1 +"Macroeconomics: The Impact of Monetary Policy on Global Economies: Analyzing Inflation and Interest Rates": 1 +"Astronomy: Stellar Evolution: From Supernovae to Black Holes and the Hubble Space Telescope": 1 +"Engineering: Understanding Structural Integrity through Finite Element Analysis in SolidWorks": 1 +"Chemistry: The Role of Redox Reactions in Energy Production: A Focus on Fuel Cells": 1 +"Advanced Statistics 205: Utilizing Big Data in Predictive Modeling and Machine Learning": 1 +"Environmental Science: The Impact of Climate Change on Biodiversity: An Extensive Study on Endangered Species": 1 +"Computer Science: Development of Mobile Applications: From Java to Kotlin in Android Studio": 1 +"Economics: The Intersection of Nash Equilibria and Game Theory in Market Competition": 1 +"Quantum Mechanics: Unveiling the World of Subatomic Particles through Schrödinger's Cat Paradox": 1 +"Oceanography: Understanding the Impact of Plate Tectonics on Underwater Ecosystems": 1 +"Mental Health & Yoga: An In-Depth Study of Mindfulness Techniques for Stress Management": 1 +"Anthropology: The Role of Fire and the Emergence of Cooked Food in Human Evolution": 1 +"Genetics: Tracing Human Migration Patterns through the Study of Mitochondrial DNA": 1 +"The Printing Press and the Internet: Game-Changing Innovations in the Dissemination of Information": 1 +"Critical Thinking for Teens: Exploring Moral Dilemmas through Debate and Persuasive Writing": 1 +"Architecture & Mathematics: The Influence and Application of the Golden Ratio in Building Design": 1 +"Advanced Vocabulary: Utilizing Frequency Lists and Semantic Networks for Language Acquisition": 1 +"Astronomy: Exploring the Cosmos through Celestial Navigation, Star Maps, and Spectroscopy": 1 +"Chemistry: Unraveling the Intricacies of Molecular Structures with Spectroscopic Techniques": 1 +"Literature: Semantic Parsing using Python NLP: A Deep Dive into Literary Contexts and Interpretation": 1 +"Sociology: Dissecting Social Structures and Power Dynamics with Foucault's Discourse Theory": 1 +"Art History: The Digital Renaissance - Analyzing the Impact of Virtual Reality on Art Appreciation": 1 +"Mathematics: The Language of Probability: Understanding Stochastic Processes using Markov Chains and Monte Carlo Simulations": 1 +"Strategic Decision Making: Harnessing Predictive Analytics for Business Strategies using Machine Learning and Data Visualization": 1 +"Financial Literacy: A Teenager's Guide to Cryptocurrency Trading": 1 +"Culinary Cartography: Utilizing Geospatial Analysis in the Study of Food Culture with ArcGIS": 1 +"Archaeology: Investigating Ancient Civilizations and Cultural Exchange using Geoarchaeology and Digital Mapping": 1 +"The Influence of Digital Signal Processing in Understanding the Acoustics of Concert Halls: An Investigation Using MATLAB": 1 +"Biological Science 101: Cellular Respiration and its Role in Energy Production": 1 +"Physics: The Theoretical Application of Quantum Mechanics in Teleportation Techniques": 1 +"Archaeology: Deciphering Ancient Scripts using Machine Learning Algorithms": 1 +"Climatology: The Impact of El Niño and La Niña on Global Weather Patterns": 1 +"Sustainable Engineering: The Use of Bio-plastics in Automobile Manufacturing to Reduce Environmental Impact": 1 +"Philosophy: The Role of Dialectics in Socratic Dialogues and its Influence on Contemporary Debates": 1 +"Neuroscience: The Effects of Bilingualism on Cognitive Development and Brain Plasticity": 1 +"Biochemistry: The Role of Enzymes in DNA Replication and Repair: A Deep Dive using Cryo-Electron Microscopy": 1 +"Astrophysics: The Search for Exoplanets using Radial Velocity and Transit Photometry Techniques": 1 +"Economics: Game Theory and its Application in Political Decision Making Processes": 1 +"Introduction to Psychology: Exploring Cognitive Processes and Memory": 1 +"Algebra Basics: Diving Into Quadratic Equations and Their Applications": 1 +"Creative Writing: Exploring Narrative Techniques in Contemporary Fiction": 1 +"Art: The Influence of Light in Digital Photography and Landscape Composition": 1 +"Mastering Pro Tools Software for Sound Design: Creating Sonic Atmospheres in Animation": 1 +"Junior Biologists: An Introduction to DNA Extraction in Basic Biology": 1 +"Spanish Literacy: Enhancing Oral and Written Skills through Digital Storytelling and Virtual Collaboration": 1 +"Physical Education: Understanding Kinesiology for Enhanced Performance in Soccer": 1 +"History: The Industrial Revolution, Invention of the Steam Engine and its Impact on Transportation": 1 +"English 201.1: Examining Metaphors in Spoken Word Poetry using Trochaic Tetrameter": 1 +"Advanced Mathematics: Exploring Cryptography through Number Theory and Linear Algebra": 1 +"Literature Studies: Analyzing Metaphors in Shakespearean Tragedies and the Influence of Greek Mythology": 1 +"Biomechanics: Understanding the Influence of Exercise on Musculoskeletal System using Kinematic Analysis": 1 +"Fine Arts: Exploring Surrealism with Charcoal Techniques and Digital Art Integration": 1 +"Chemistry: Unraveling Organic Reactions using Spectroscopic Techniques and Quantum Chemical Computations": 1 +"Virtual Reality: The Role of Haptic Feedback in Immersive Training Simulations": 1 +"Nutritional Science: The Effect of Veganism on Digestive Health: A Microbiome Perspective": 1 +"Computer Science: Machine Learning Algorithms and Their Practical Applications in Python": 1 +"Anthropology: Investigating Indigenous Cultures through Linguistic Analysis and Archaeological Evidence": 1 +"Environmental Science: Monitoring Air Quality using Satellite Remote Sensing and Gas Chromatography.": 1 +"The Revolutionary Impact of The Gutenberg Press on European Literature: A Comprehensive Study": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Schrödinger's Cat Paradox": 1 +"Music: The Evolution of Electronic Dance Music: A Hands-On Approach With Ableton Live": 1 +"Art History: The Impact of Augmented Reality on Sculpture: A New Perspective on Traditional Art Forms": 1 +"Public Health: The Role of Fitness Apps in Promoting a Healthy Lifestyle: A Critical Analysis": 1 +"Data Structures: Java, Processing, and the Implementation of Interactive Graphics for Simulation Games": 1 +"Integrating LIDAR Technology in Autonomous Vehicles: An Introductory Course on Robotics and AI": 1 +"Computer Science: Crafting Ambient Sounds using Pure Data's Granular Synthesis Techniques": 1 +"Physical Education: Parkour and Body Mechanics: Understanding Movement Through Motion Capture Technology": 1 +"Philosophy: Logical Fallacies and Heuristics: Navigating Cognitive Traps in Argumentation and Decision Making": 1 +"Mathematics: Exploring Fractal Geometry Through Mandelbrot and Julia Sets Using Python": 1 +"Art History: The Impact of Cubism on the 20th Century Abstract Expressionism and its Reflection in Modern Art Movements": 1 +"Advanced Java Programming: Implementing Multithreading and Synchronization Techniques for High-Performance Computing": 1 +"Eco-friendly Architecture and Design: Incorporating Renewable Energy and Recycled Materials into Urban Planning": 1 +"Sociology: The Influence of Social Media on Cultural Norms and Individual Identity Formation in the 21st Century": 1 +"Genetics: Understanding the Genetic Basis of Evolution: The Power of CRISPR-Cas9 and Ethical Considerations": 1 +"Artificial Intelligence and Law: Navigating Legal Challenges of Autonomous Vehicles in the Modern World: A Comprehensive Review": 1 +"Introductory Astronomy: Stellar Evolution - Understanding Supernovae and the Formation of Neutron Stars": 1 +"Mastering Physics: The Intricacies of Quantum Mechanics - Uncertainty Principle and Wave-Particle Duality Explored": 1 +"Postmodern Literature: Assessing the Impact of Roland Barthes' Death of the Author on Contemporary Fiction Writing": 1 +"Chemistry: The Impact of Le Chatelier's Principle on Equilibrium in Everyday Phenomena": 1 +"Cartography and Virtual Reality: Navigating the Transformation of 10 Historic Cities": 1 +"The Revolution of Web Design: From Static to Interactive, an In-depth Examination of User Interface Development": 1 +"Decoding Eating Habits: The Impact of Ghrelin and Leptin on Obesity and Metabolic Disorders using MRI": 1 +"Unraveling Blockchain and Machine Learning in Supply Chain Management: A Blueprint for Future Logistics Solutions": 1 +"Mathematics: An Intensive Investigation of Cryptography using Number Theory and Java Programming": 1 +"Fashion Industry Economics: An Extensive Assessment of Cost Management using Pricing Strategies": 1 +"The Significance of Ancient Mythologies in Modern Film: A Comparative Study": 1 +"Psychology: The Influence of Nurture on Emotional Intelligence - Observations from Behavioral Studies": 1 +"Astronomy: The Rhythm of Stellar Pulsations Explored with Spectral Analysis": 1 +"Analyzing the Impact of Digital Learning Platforms on Student Engagement: A Multidimensional Study in Education": 1 +"High-Level Strategies in Financial Risk Management: Leveraging Machine Learning and Data Visualization": 1 +"The Role of Art in Social Cohesion: A Quantitative Study Using Geo-Demographic Data and GIS": 1 +"The Influence of Renewable Energy Technologies on Global Climate: An Environmental Physics Perspective": 1 +"Advanced Spanish: Enhancing Language Proficiency through Virtual Reality and Multimedia Tools": 1 +"Decoding Media Bias: An Examination of Predictive Analytics in Mass Communication Studies": 1 +"World History: Exploring Global Connections with Network Analysis and Geospatial Technology": 1 +"The Application of Nanotechnology in Medical Diagnostics: A Comprehensive Review": 1 +"Health and Wellness: Evaluating the Impact of Dance Rhythm on Cardiovascular Fitness using Biometric Devices": 1 +"Computer Science for Teens: Developing Problem-Solving Skills through Python and Game-Based Learning": 1 +"Explorations in Quantum Physics: An Examination of the Double Slit Experiment and its Philosophical Enigmas": 1 +"The Legacy of the Silk Road: A Comprehensive Study on the Impact of Trade Routes on Ancient Civilizations": 1 +"Sustainable Manufacturing: Leveraging 3D Printing Technology for Eco-friendly Apparel Production": 1 +"Musicology 301: Exploring the Influence of Classical Music on Cognitive Functions through Neuroimaging Techniques": 1 +"AI & Society: Confronting Ethical Dilemmas in the Era of Artificial Intelligence - An In-depth Analysis": 1 +"Principles of Astrophysics: Understanding Supernovae and their Influence on Galactic Evolution": 1 +"Art and Metallurgy: Investigating the Use of Bronze in Greek Statuary through Spectroscopic Analysis": 1 +"Spanish Literature: Utilizing Deep Learning in Sentiment Analysis of Modernist Texts": 1 +"Revolutionizing Architecture with Mathematics: An Extensive Study of AutoCAD, Revit, and Rhino 3D Modeling Tools": 1 +"Biology: Understanding Evolution and Speciation through Bioinformatics and Genomic Data Analysis": 1 +"Physics: Understanding Quantum Mechanics through Python: An Introduction to Particle Simulations": 1 +"Biology: Decoding DNA Sequencing and Genomic Data Analysis using BioPython": 1 +"Agriculture: Implementing Advanced Irrigation Techniques using Machine Learning and IoT": 1 +"Mathematics: Exploring Fractal Geometry in Nature through Python and Matplotlib": 1 +"Healthcare: A Deep Dive into Predictive Analytics: Leveraging Machine Learning for Patient Diagnosis": 1 +"Astrophysics: Probing the Cosmos - Big Data Analysis with Apache Spark and Python": 1 +"Culinary Arts: Molecular Gastronomy - A Scientific Approach to Cooking with Sous-vide Techniques": 1 +"Environmental Studies: Using GIS and Remote Sensing for Biodiversity Conservation in African Savannahs": 1 +"Artificial Intelligence: Generative Adversarial Networks for Realistic Face Generation: A TensorFlow Approach": 1 +"Musicology: The Science of Sound - Acoustic Analysis of World Music Genres using MATLAB": 1 +"Advanced Calculus: Theorems of Integration and Differential Equations": 1 +"In-depth Study of Genus Loci: Biodiversity Analysis using Bioinformatics, GIS Mapping and Scanning Electron Microscopy": 1 +"Spanish: Semantic Mapping in Spanish using Google Cloud Natural Language Processing: Problem Solving and Linguistic Analysis": 1 +"Introductory Drone Engineering: An Overview of Aero-Mechanics using Python and Algorithm Structures": 1 +"Spanish Literacy: Enhancing Reading and Writing skills using the Duolingo Language Learning App": 1 +"History: Evolution of Warfare across ages - Understanding the Transition to Cyber Warfare": 1 +"Design: Dissecting Graphic Design: Bauhaus's Impact on Minimalism & The Role of Geometric Shapes": 1 +"Advanced Film Studies: The Art of Storytelling with Adobe Premiere Pro and Final Cut Pro X ": 1 +"Creative Poetry: Shaping Verses with Spanish Idioms and Metaphor Formation ": 1 +"Leveraging Google Cloud Natural Language Processing for Semantic Mapping in Spanish: Boosting Problem Solving and Linguistic Analysis.": 1 +"Sociology: Exploring Gender Roles through open-source data and Python": 1 +"Quantum Mechanics: Probing Particle Duality with Heisenberg's Uncertainty Principle": 1 +"Observing the Role of Calcium in Bone Health with Dual-energy X-ray Absorptiometry and Mass Spectrometry": 1 +"Health Education: Applying Virtual Reality in the Study of Human Anatomy": 1 +"Analogue Electronics: Harnessing Vacuum Tubes in Contemporary Sound Synthesis": 1 +"Theology: Decoding Divine Parables with Hermeneutics": 1 +"Advanced Patterns in Architecture: Exploiting Revit and Dynamo for Parametric Design": 1 +"Data Science: Machine Learning Algorithms with Python and Scikit-learn": 1 +"Astrophysics: Exploring Cosmic Mysteries - An In-depth Study on Dark Matter ": 1 +"Art Theory: The Influence of Color Theory in Abstract Expressionism - A Comprehensive Study on Emotional Resonance": 1 +"Chemistry: In-Depth Exploration of Nanostructures: Quantum Dots Synthesis via Electron Beam Lithography": 1 +"Advanced Robotics: Navigating Autonomous Vehicles Using Genetic Algorithms in MATLAB": 1 +"Harnessing The Power of Logic Pro in Creating Atmospheric Sounds for Film Scoring: The Drama of Suspense in Psychological Thrillers": 1 +"Mathematics in Art: Revealing Fractal Patterns through Origami and 3D Modeling Simulation": 1 +"Geology: Understanding Earth's History through Plate Tectonics and Seismic Wave Analysis": 1 +"World History: Event Classification using Naive Bayes Classifier in Natural Language Processing Techniques": 1 +"Introduction to Web Development: Applying JavaScript in the Context of Blockchain and Cryptocurrency Transactions": 1 +"The Discourse of Global Warming and Climate Change: A Statistical Analysis with Time Series Forecasting in Python's Statsmodels Library": 1 +"Detailed Study of Heart Mechanics: Application of MATLAB in ECG Signal Processing for Pacemaker Design": 1 +"Performing Arts: Discovering Greek Tragedy through Virtual Reality Immersive Experience": 1 +"Chemistry: Unveiling Molecular Structures through Nuclear Magnetic Resonance Spectroscopy": 1 +"Data Analysis: Predictive Modeling Techniques Using SAS Programming": 1 +"Decoding the Human Genome: An Introduction to Molecular Genetics with Next-Generation Sequencing": 1 +"The Role of Omega-3 Fatty Acids in Cardiovascular Health: An In-depth Analysis Using Echocardiography and Pulse Wave Velocity": 1 +"Calculus: Understanding the Concepts of Derivatives and Integrals through Newton's Method": 1 +"Economics: Grasping the Principles of Inflation and Deflation through Keynesian Theory": 1 +"Deep Learning with R: Understanding Decision Trees and Random Forests using Keras": 1 +"Exploring the Art of Perspective in Watercolor: An Extensive Study Using Wet-on-Wet Techniques, Gradients and Layering": 1 +"Deciphering the Human Psyche: A Psychoanalytical Approach in the Philosophy of Self": 1 +"Mastering Astronomy: The Mysteries of Black Holes - Event Horizon and Singularity Explored": 1 +"Advanced Physics: Utilizing Quantum Mechanics to Predict Weather Patterns with MATLAB": 1 +"Statistical Fundamentals: Applying Bayesian Inference in Psychological Research Using R and Tableau": 1 +"Health Education: Integrating Garmin Health Monitors and Apple Fitness in Wellness Programs: A Holistic Strategy": 1 +"Music Theory: Investigating Harmonic Structures in Visual Arts with Adobe Creative Suite": 1 +"Statistics 101: Employing Linear Regression and JavaScript to Evaluate Basketball Shot Arcs with Sportscode": 1 +"Complex Data Interpretation with Python for Enhancing Diet Diversity in Healthcare Management": 1 +"High School Geography: Understanding Climate Patterns using Geospatial Analysis": 1 +"Cryptocurrency & E-commerce Integration: A New Strategy for Independent Bookstore Financial Stability - Approach 20": 1 +"Psychiatric Innovations: Implementing fMRI in Psychiatric Research to Decode the Human Mind": 1 +"Creative Problem-Solving with Minecraft: Enhancing Spatial Intelligence in Kids through Virtual Blocks": 1 +"From Papyrus to PDF: Charting the Evolution of Written Communication from Ancient to Modern Times": 1 +"Molecular Biology: Decoding Genomic Sequences through Next-Generation Sequencing": 1 +"The Mathematics of Light: An Exploration of Wave-Particle Duality and Interference Patterns": 1 +"Geology: The Study of Plate Tectonics - Investigating Seismic Activities with Seismographs and Simulations": 1 +"Physics 101: Understanding Quantum Mechanics - The Mystery of Entanglement and Quantum Teleportation": 1 +"R and ggplot2 for Financial Data Analysis: A Beginner's Approach": 1 +"Ethical Philosophy 305: Navigating Utilitarianism in the Age of Artificial Intelligence and Robotics": 1 +"Statistics: Leveraging Machine Learning in R for Predictive Analysis in Climate Change Management: The Impact of Renewable Energy Resources": 1 +"Unraveling the Mysteries of the Heart: An In-depth Study of Echocardiography and Cardiac Catheterization": 1 +"Art History: Renaissance Revealed: An Examination of Fresco Paintings using Infrared Reflectography": 1 +"Digital Design: Utilizing VR in Architectural Visualization and Prototyping": 1 +"Advanced Physics: Investigating Quantum Mechanics with Particle Accelerators": 1 +"Environmental Science: Utilizing Satellite Data for Climate Change Predictions": 1 +"Fundamental Robotics: Exploring AI Integration with Raspberry Pi and IoT Devices": 1 +"Junior Scientists: Exploring Solar System and Planets with Telescopes": 1 +"Geography: Understanding Desert Ecosystems with Satellite Imagery": 1 +"Advanced Bioinformatics: Decoding Human Genome using Machine Learning and Big Data Analytics with R Programming": 1 +"Literature Studies: Analyzing Shakespearean Tragedies with Natural Language Processing Techniques": 1 +"Middle School Mathematics: Introduction to Geometry and Pythagorean Theorem": 1 +"Contemporary Arts: Deciphering Postmodernism - The Role of Performance Art": 1 +"Advanced Microbiology: Unraveling Microbial Interactions, Biofilms, and Antibiotic Resistance": 1 +"Chemistry Beyond the Basics: Exploring Chemical Reactions, Gas Laws, and Thermodynamics with Virtual Labs": 1 +"Python in Environmental Data Analysis: A Comprehensive Course": 1 +"Young Astronomers: Exploring Space Through Telescopes and Satellite Images": 1 +"Machine Learning: Utilizing Random Forests and Decision Trees in Scikit-Learn": 1 +"The World of Watercolors: Mastering Techniques for Landscapes, Portraits, and Still Life": 1 +"Particle Physics: Discovering Higgs Boson and Quantum Field Theory through Large Hadron Collider Data": 1 +"History: The Industrial Revolution and the Impact of Steam Power on Worldwide Trade": 1 +"Spanish Proficiency: Enhancing Communication Skills through Duolingo and Netflix Language Learning": 1 +"Genetics and Genomics: Understanding DNA Sequencing and Genetic Engineering with CRISPR-Cas9.": 1 +"Physics 205: Quantum Mechanics: The Mystery of Subatomic Particles": 1 +"World History 104: The Impacts of Industrial Revolution on Global Economy": 1 +"Digital Photography: The Role of Social Media in Shaping Modern Photography Techniques": 1 +"Environmental Science: Sustainable Agriculture and the Future of Food Production": 1 +"Music: The Evolution of Jazz Music and its Influence on Modern Pop Culture": 1 +"Music: Comprehensive Study of String Instruments and their Acoustical Properties": 1 +"Computer Science: Utilizing Python for Data Analysis in Sports Statistics": 1 +"Physical Education: Advanced Training Strategies for Long-Distance Running": 1 +"Artificial Intelligence: Machine Learning and its Impact on Financial Market Predictions": 1 +"Art: The Art of Charcoal Drawing: Techniques and Textural Effects": 1 +"Advanced Bioinformatics: Understanding DNA Sequencing and Genomic Data Analysis using R and Python": 1 +"Spatial Patterns: Utilizing Satellite Remote Sensing to Explore Urban Heat Islands": 1 +"Intermediate Robotics: Exploring Artificial Intelligence and Machine Learning in Autonomous Vehicles": 1 +"Neuroscience of Music: Unveiling the Impact of Melodies on Cognitive Functions using fMRI and PET scans": 1 +"Microbiology Unleashed: Exploring Pathogens and Antibiotic Resistance through Laboratory Simulations": 1 +"Advanced Statistics: Econometric Modeling with SPSS, R, and SAS for Financial Forecasting": 1 +"Sociology of the Internet: Examining Online Identity Formation through Facebook and Twitter": 1 +"Primary Education: Engaging Young Minds through Interactive STEM activities and Augmented Reality": 1 +"Cybersecurity Fundamentals: Understanding Cryptography, Blockchain and Cyber Threats": 1 +"R-Based Econometric Analysis in Sustainable Agriculture: Understanding Crop Yield Predictions with Time Series and Linear Regression Models.": 1 +"Advanced Calculus: Understanding the Fourth Dimension with Riemann Manifolds and Tensor Calculus": 1 +"Psychology 101: The Intersection of Emotional Intelligence and Cognitive Behavioural Therapy": 1 +"Advanced Programming: Mastering Machine Learning Algorithms with Python and TensorFlow": 1 +"The Craft of Filmmaking: An Examination of Mise-en-Scène and Cinematic Language in Contemporary Cinema": 1 +"In-Depth Ableton Live: Exploring the Landscape of Ambient Sound Design in Electronic Music Production": 1 +"Watercolor Mastery: Exploring Texture, Value, and Composition using Wet-on-Wet Techniques and Mixed Media": 1 +"Cosmic Detective Work: Unraveling Cosmic Mysteries with Hubble Space Telescope Data": 1 +"Neural Engineering: An Introduction to Brain-Computer Interfaces, EEG Technology, and Neuroprosthetics": 1 +"Quantum Mechanics: An In-depth Analysis of Particle-Wave Duality and Quantum Superposition": 1 +"Physiology of Taste: Investigating Gustatory Perception using Electrogustometry and Psychophysical Methods": 1 +"Advanced Computing Principles: Utilizing C++, Unit Testing, Hash Tables, and Docker for Continuous Deployment in Engineering Solutions": 1 +"French Language Mastery: Leveraging Augmented Reality and AI Assistants for Engaging Education": 1 +"Digital Media: Cinematography and Storyboarding: The Impact of Blockchain on Video Streaming Platforms": 1 +"The Science of Sound: Combining Music and Physics with Acoustic Analysis": 1 +"Cosmology: Deciphering Cosmic Evolution with Quantum Mechanics": 1 +"Mathematical Literacy: Enhancing Calculation and Problem-Solving Skills with the Mathway App": 1 +"Philosophy: Exploring the Role of Ethics in Contemporary Film and Literature": 1 +"Neuroscience: Unveiling Brain Function through fMRI and EEG Analysis": 1 +"Advanced Tactics in R for Data Science: Mastering Decision Trees and Bayesian Networks": 1 +"Introductory Chemistry: Exploring Molecular Structures through Spectroscopy and Chromatography": 1 +"Advanced Physics: Quantum Mechanics in Everyday Life: Exploring the Double-Slit Experiment and Wave-Particle Duality": 1 +"Culinary Science: The Chemistry of Baking: An In-depth Study of Leavening Agents and Gluten Development": 1 +"Environmental Engineering: Water Management Strategies: Implementing Rainwater Harvesting and Greywater Recycling": 1 +"Music Theory: The Mathematics of Harmony: Understanding Scales and Chords through Fibonacci Sequence": 1 +"Psychology: The Science of Happiness: Exploring Positive Psychology through Mindfulness and Cognitive Behavioral Therapy": 1 +"Astronomy: Cosmic Evolution: A Deep Dive into the Big Bang Theory and Stellar Nucleosynthesis": 1 +"Digital Arts: Animation Techniques: Creating Dynamic Characters with Adobe Animate": 1 +"Advanced Calculus: Multivariable Mathematics: Mastering Partial Derivatives and Multiple Integrals with MATLAB": 1 +"Sociology: Unpacking Globalization: Studying the Impact of Social Media on Cultural Exchange": 1 +"Organic Chemistry: Exploring Enzyme Kinetics: Understanding the Michaelis-Menten Equation through Spectrophotometry.": 1 +"Mathematics: Navigating Complex Geometry through Graph Theory": 1 +"Astronomy: Extraterrestrial Life Exploration: Using Hubble Space Telescope Data": 1 +"Sociology: Evaluating Social Structures through Game Theory and Network Analysis": 1 +"Software Engineering: Mastering Django, PostgreSQL, and Docker for Secure E-commerce Development": 1 +"Virtual Reality in Education: Incorporating AR and Gesture Recognition in History and Archaeology Learning": 1 +"Environmental Studies: Rainforest Conservation through Sustainable Forestry: A Study of 10 Strategies": 1 +"Fundamentals of Sound Engineering: Understanding Acoustics and Sound Design with Ableton Live Software": 1 +"Linguistics: Semantic and Pragmatic Analysis using Google Cloud Natural Language API: Enhancing Communication Skills": 1 +"Genomics: A Comprehensive Analysis of Genetic Data using Python and Seaborn": 1 +"Art Appreciation: Unveiling Contemporary Art Value: A Tableau Visualization and Data Interpretation Study": 1 +"Philosophy: The Effect of Postmodernism on Modern Ethical Perspectives": 1 +"Biology and Sustainability: Examining the Role of Genetically Modified Organisms in Global Food Security Narratives": 1 +"Inorganic Chemistry: Understanding Crystal Structures through Neutron Diffraction": 1 +"Geology: Utilizing Google Earth Engine for Terrain Analysis and Disaster Management": 1 +"Utilizing the Binary Decision Diagrams in Graph Theory for Problem Solving in Discrete Mathematics": 1 +"Linguistics: Climate Change Discourse - A Computational Analysis Using Natural Language Processing": 1 +"Linear Algebra: Exploring Matrix Theory with Eigenvalues and Eigenvectors in MATLAB and Python": 1 +"History: The Impact of the Trans-Atlantic Slave Trade on Cultural Displacement and Exchange": 1 +"Illuminating Darkness: The Depiction of Nuclear Energy in Russian Literature": 1 +"Anthropology: Decoding Human Migration Patterns through the Lens of DNA Analysis": 1 +"Harnessing Neural Networks in R: A Deep Dive into Machine Learning Algorithms": 1 +"Sociology and Data Analysis: Unpacking Social Behavior through Python and TensorFlow": 1 +"Applying Linear Regression in SAS for Real Estate Price Prediction": 1 +"Decoding Light Spectrums: An Exploration of Astronomy through Spectroscopy": 1 +"Modern Mandarin Literacy: Proficiency in Reading and Writing with Duolingo, Rosetta Stone, and Google Translate": 1 +"The Mysteries of the Universe: Quantum Physics and Its Impact on Existential Philosophy": 1 +"The Synergy of Art and Geometry: Understanding the Principles of Perspective Drawing with Adobe Illustrator": 1 +"The Future of Wildlife Conservation: Using Satellite Imaging to Study Endangered Species": 1 +"The Evolution of Robotics: A Comprehensive Look at the Historical Development": 1 +"Interactive Science: Augmented Reality Experiences in Physics for Young Learners": 1 +"Music: The Influence of Digital Synthesis on Electronic Dance Music: A Deep Dive into Ableton Live": 1 +"Ethics: Evaluating the Morality of AI in Modern Warfare": 1 +"Visual Arts: Decoding Surrealism and Dadaism through the Art of Photo Collage": 1 +"Literature: Developing Narratives with Latin Proverbs and Symbolism using Google Docs": 1 +"The Technological Revolution: The Internet, Social Media and their Influence on the 21st Century": 1 +"Unraveling the Military Tactics of the Cold War: The Significance of the Enigma Machine": 1 +"Physics: The Importance of Electron Microscopes in Nanotechnology": 1 +"Sculpture: Wood Whittling Techniques: A Spotlight on Hand Tools": 1 +"Astronomy: Galaxy Formations and Preservation Methods using Telescopic Imagery and Spectroscopy": 1 +"Biochemistry: Comprehensive Protein Structure Study using PyMOL Software and Amino Acid Patterns.": 1 +"Physics: Unraveling Quantum Mechanics through Schrödinger's Equation and Feynman Diagrams": 1 +"Biology: Unleashing the Power of Genetics - The Role of DNA Sequencing and CRISPR-Cas9": 1 +"Data Science: Mastering Predictive Analytics with R, Python and TensorFlow": 1 +"Astronomy: Exploring the Universe with Radio Astronomy and Spectroscopy ": 1 +"Philosophy: An In-depth Analysis of Existentialism through The Works of Sartre and Kierkegaard ": 1 +"Cryptography: Deciphering Advanced Encryption Standards - RSA and Elliptic Curve Cryptography": 1 +"Environmental Science: Understanding Ecosystems through Biodiversity Studies and Conservation Biology": 1 +"Digital Art: The Fusion of Coding and Creativity - Interactive Art with Processing and p5.js": 1 +"Literature: The Journey of Modern Poetry - From Imagism to Confessionalism": 1 +"Biochemistry: Enzyme Kinetics and Metabolic Pathways - An Insight into Cellular Biochemistry.": 1 +"Advanced Chemistry: Green Synthesis and the Role of Nanocatalysts in Sustainable Chemistry": 1 +"The Ethics of Biotechnology: Exploring the Moral Landscape of Genetic Engineering and CRISPR Technology": 1 +"Digital Illustration: Developing Character Designs with Graphical Tablets and Vector Graphics": 1 +"Advanced Mathematics: Understanding Fractal Geometry through Computer Simulation": 1 +"Culinary Arts: Experimenting with Molecular Gastronomy and Sous Vide Techniques": 1 +"Innovative Architecture: The Integration of Renewable Energy Resources in Building Design and Construction": 1 +"Literature: Analyzing Postmodern Narratives through Metafiction and Intertextuality": 1 +"The Science of Sound: Acoustic Treatment Techniques in Studio Design with an Emphasis on Diffusion": 1 +"Economic Anthropology: Unpacking the Cultural Implications of Cryptocurrency with a Focus on Blockchain Technology": 1 +"The Art of Cinematography: Exploring Low-light Photography Techniques with DSLR Cameras and Mirrorless Systems.": 1 +"Chemistry: Understanding Molarity and Concentration through Real-life Applications and Problem Solving": 1 +"Human Geography: The Influence of Urban Parks on Neighborhood Dynamics: A GIS Investigation Using Network Analysis ": 1 +"Advanced Graphic Design: Creating Interactive Digital Art Using Adobe Illustrator and Photoshop": 1 +"Unraveling the Impact of Telegraphy on Victorian English Lexicon with a Focus on Trade Language": 1 +"Astronomy: The Enigma of Black Holes - The Role of Relativity in Understanding Cosmic Phenomena": 1 +"The Artistry of Sound: Analysis of Guitar Resonance through Multi-directional Microphone Positioning Using Waveform Analysis": 1 +"Economics: Monetizing Digital Art in the Age of NFTs and Blockchain Technology": 1 +"Microbiology: Exploring the Realm of Microorganisms Using Scanning Electron Microscopy": 1 +"Fine Arts: Exploring the Intricacies of Wildlife Illustration in Watercolor - Harnessing Light and Depth with Layering Techniques": 1 +"Computer Science: Exploring the Algorithms of Pathfinding in Video Games using Java and A* Search Algorithm": 1 +"Decoding Cryptocurrency: Exploring Ripple's Reaction to Virtual Security Breaches": 1 +"Historical Innovations: The Cross-Cultural Contributions of the Printing Press, Compass and Steam Engine to Global Interactions": 1 +"Applied Machine Learning: A Comprehensive Study of Support Vector Machines in PyTorch": 1 +"Exercise Physiology: Analyzing the Impact of Breathing Techniques on Endurance Using Garmin Wearable Tech": 1 +"Chemistry Charm: Thermodynamics in Everyday Life - A Comprehensive Review": 1 +"Geology: Utilizing Ground Penetrating Radar for Subsurface Exploration and Its Impact on Urban Development": 1 +"Advanced Genetics: Enhancing Knowledge on Gene Expression and Regulation through Polymerase Chain Reaction": 1 +"The Art of Persuasion in Contemporary Advertising: An Intensive Analysis of Neuromarketing Strategies": 1 +"Secondary Education: Boosting Numeracy Skills Through Game-Based Learning Platforms": 1 +"Advanced Algebra: Exploring Symmetry and Fractal Patterns with MATLAB Software": 1 +"Chemistry of Aromatherapy: Understanding Essential Oil Extraction through Distillation and Chromatography": 1 +"Biology 101: Exploring Genetics - The Impact of Genetically Modified Crops on Sustainable Agriculture": 1 +"Advanced Mathematics: Exploring Fractals and Chaos Theory through Computer Simulations": 1 +"Art History: Understanding Baroque Art through Sculpting Techniques": 1 +"Advanced Cybersecurity: Ethical Hacking, Cryptography, and the Use of Firewall Technologies for Network Protection": 1 +"Applying Quantum Computing to Optimize Traffic Flow: An In-depth Analysis of 10 Traffic Management Systems": 1 +"Physical Education: Understanding Aerobic Endurance in Swimming: The Effect of High-Intensity Interval Training": 1 +"Acoustics in Architecture: Analyzing Echo Patterns and Reverberation with Sound Level Meters": 1 +"Deciphering the Golden Ratio in Natural Landscapes: A Study with Geographic Information System (GIS) Software": 1 +"Chemistry: Comprehensive Study on Chemical Reactions: Understanding Catalysts through Microscopy and Spectrophotometry": 1 +"Advanced Algebra: Exploring Quadratic Equations with Scientific Calculators for Teens": 1 +"Digital Technology Foundation: Web Development with HTML, Python for Cybersecurity and Cloud Computing": 1 +"Astrophysics: Grasping Light Theory in Optics Using Laser Interferometers": 1 +"Data Analysis & Forecasting: Python's Pandas Library for Predictive Modeling and Risk Assessment": 1 +"Humanities and Econometrics: Structural Equation Modeling in SAS using Panel Data": 1 +"Microbiology: Virus Life Cycle - Phases Exploration with Electron Microscopy": 1 +"Spanish Language Mastery: Understanding Sentence Structure and Vocabulary with Duolingo, Grammarly, Microsoft Word and LanguageTool Software": 1 +"Primary Education in Botany: Investigating Photosynthesis Process in Plants with Hydroponic Systems": 1 +"Applied Calculus: Derivative and Integral Calculations using Wolfram Mathematica": 1 +"Advanced Psychopathology: Diagnostic Comparison of Mental Disorders using DSM-5, Psychoanalytic Theory, CBT and ICD-10 Analysis": 1 +"Physics and Music: Analysis of Sound Waves and Resonance in Musical Instruments": 1 +"The Influence of Symbolism and Allegory in French Literature: A Narrative Structure Examination": 1 +"The Application of Machine Learning in Studying Behavioral Economics and Decision Making Processes": 1 +"Graphic Design: Enhancing Visual Communication through Adobe Illustrator": 1 +"Biology: Decoding Genetic Information through DNA Sequencing and PCR Techniques": 1 +"Physics: Unraveling the Mysteries of Quantum Mechanics through the Double-Slit Experiment": 1 +"Mastering Data Structures in Software Engineering: Implementing Graph Algorithms in Python": 1 +"Physical Education: Understanding Human Kinetics through the Practice of Yoga and Pilates": 1 +"Applied Mathematics: Predicting Economic Trends using Game Theory and Nash Equilibrium": 1 +"Psychology: Exploring Memory Retrieval through Functional MRI and Neuropsychological Testing Techniques": 1 +"Spanish 201: Exploring the Use of Irony and Simile in Hispanic Ballads - An Analysis of Rhyme and Imagery": 1 +"World History: Understanding Global Conflicts through the Lens of Political Psychology": 1 +"Astronomy for Beginners: Discovering Exoplanets through Telescopic Observations": 1 +"MRI Techniques in Cardiology: Using Contrast Agents to Reveal the Mysteries of the Human Heart": 1 +"Advanced Statistics: Interpreting Probability Distributions using Graphing Calculators": 1 +"Digital Arts: Utilizing Adobe Illustrator's Vector Graphics for Immersive Non-fiction Storytelling": 1 +"Music Theory: Understanding the Function of DAWs in Transcribing and Notating Orchestral Scores": 1 +"Coding for Designers: Employing CSS and SVG for Dynamic Web Layouts": 1 +"Fluid Mechanics: An In-depth Study of Bernoulli's Principle with the Help of Flow Meters": 1 +"Data Science: Basketball Analytics and Predictive Modelling with Python using Jupyter Notebooks": 1 +"Chemistry: Probing the mysteries of Biochemical Reactions using Spectroscopy Techniques": 1 +"Art History: Analyzing the Influence of Impressionism on Modern Photography": 1 +"Sociology: The Effect of Streaming Platforms on Global Entertainment Consumption: A Netflix Case Study": 1 +"Geometry: Investigating the Role of Geometric Shapes in Modern Design using Adobe Illustrator": 1 +"Physical Education: Understanding Strength Training Principles using Resistance Bands": 1 +"Psychology: Application of Cognitive Behavioral Techniques in Stress Management": 1 +"Literature: Exploring the Evolution of Mystery Genre through Agatha Christie's Works": 1 +"Computer Science: Unveiling the Principles of Machine Learning Algorithms in Facial Recognition using Python": 1 +"Biology: Exploring Cellular Processes: A Deep Dive into Mitosis and Meiosis using Microscopic Imaging Techniques": 1 +"Economics: Mastering Investment Strategies for Stock Markets with Bloomberg Terminal": 1 +"Philosophy: The Role of Existentialism in Modern Literature and Film": 1 +"Biological Sciences: Exploring Marine Ecosystems through Scuba Diving and Underwater Photography": 1 +"Advanced Mathematics 401: Application of Fractal Geometry in Nature and Architecture": 1 +"Culinary Arts: The Science of Baking and the Role of Chemical Reactions": 1 +"Quantum Physics: Deciphering String Theory and its Implications on Multiverse Hypotheses": 1 +"Ethnomusicology: The Impact of Reggae on Global Music and Sociocultural Movements": 1 +"Astrophysics: Understanding Quasars and the Expansion of the Universe through Radio Astronomy": 1 +"Science in Art: Visualizing Quantum Physics through Abstract Painting": 1 +"Art of Programming: Exploring Aesthetics in Code with Python and JavaScript": 1 +"Advanced Physical Education: Incorporating Biomechanics in Improving Athletic Performance": 1 +"Cinematic Techniques: An Examination of Drone Videography in Adventure Documentary Filmmaking": 1 +"Physics in Motion: Understanding Quantum Mechanics through 3D Visualization and Simulation Tools": 1 +"Digital Artistry: The Influence of Adobe Illustrator in Vector Graphics and Digital Illustration Techniques": 1 +"Public Health: Integrating AI-Based Predictive Models in Disease Control Measures: A Comparative Study": 1 +"Computer Science: The Innovation and Impact of Python in Machine Learning and Data Analysis": 1 +"Food Science: The Art of Molecular Gastronomy - Exploring the Science of Culinary Techniques": 1 +"Geopolitics: Satellite Imagery in International Conflict Analysis: An Overview of GIS Applications": 1 +"Investigating Cryptography: The Role of Quantum Computing in Future Encryption Systems": 1 +"Evolving Fitness Trends: Analyzing the Impact of Wearable Technology on Personal Training Programs": 1 +"Behavioral Economics: Decoding Consumer Behavior in E-commerce Through Data Analytics and Machine Learning Techniques": 1 +"Chemistry Essentials: Exploring Organic Compounds with Spectroscopy": 1 +"Artificial Intelligence and Cybersecurity: Unveiling Threats in Modern Technology - Five Strategies": 1 +"Music: Tracing the Renaissance through Harpsichord Compositions": 1 +"Advanced Network Structures: A Comprehensive Study of IPv6 and OSPF Routing": 1 +"Environmental Science: Green Energy Solutions in Urban Planning: The Power of Solar Panels": 1 +"Sociomusicology: Investigating Social Impact through Music Genre Evolution": 1 +"Data Science: Forecasting Techniques with R and ggplot2": 1 +"In-depth Analysis of Cardiovascular Health: The Importance of Regular Exercise and Balanced Diet": 1 +"Art: Oil Painting Techniques of the 18th Century Romanticism": 1 +"Physics Insights: Quantum Mechanics and the Mystery of Dark Matter": 1 +"Environmental Economics: Understanding the Impact of Climate Change on Global Market Trends": 1 +"Advanced Molecular Biology: Investigating Protein Folding Mechanisms through X-ray Crystallography and Nuclear Magnetic Resonance": 1 +"The Evolution of Storytelling: From Oral Tradition to Digital Media and its Effects on Cultural Identity": 1 +"Astrophysics: Examining Cosmic Rays and their Influence on Galactic Formation using Gamma-ray Spectroscopy": 1 +"Deconstructing Jazz: A Comprehensive Study of Improvisation Techniques in the Works of Miles Davis": 1 +"Interior Design Basics: A Guide to Lighting, Color Psychology, and Green Building Principles": 1 +"Computer Engineering: Designing Efficient Algorithms for Quantum Computing using Python": 1 +"Fine Arts: Impressionist Landscape Painting - Techniques in Capturing Light and Atmosphere with Acrylics": 1 +"Cybersecurity: The Role of Blockchain Technology in Protecting User Data": 1 +"Artificial Intelligence: Applying Reinforcement Learning in Autonomous Vehicles: Insights from Python Programming.": 1 +"Advanced Programming: Exploring Machine Learning Algorithms in Artificial Intelligence": 1 +"Neuroscience: Understanding Neural Pathways and their Role in Memory Retention": 1 +"Astrophysics: The Interplay of Dark Matter and Gravity in the Formation of Galaxies": 1 +"Sociology: The Influence of Social Media on Youth Culture and Identity Formation": 1 +"Quantum Physics: The Mystery of Quantum Entanglement and its Implications": 1 +"Environmental Science: Analyzing the Impact of Pollution on Marine Ecosystems": 1 +"Graphic Design: Utilizing Adobe Illustrator for Creating Dynamic Digital Art": 1 +"Astronomy: The Fascinating World of Black Holes and Neutron Stars": 1 +"Cinematography: The Art and Science of Visual Storytelling in Film": 1 +"Biology: Exploring the Complexities of Cellular Respiration and Energy Production": 1 +"The Effects of Telegraphy and Postal Services on the Global Spread of Literature in the 20th Century": 1 +"Biochemistry: The Role of Proteomics in Understanding the Impact of Climate Change on Plant Physiology: A Study Using Mass Spectrometry": 1 +"Advanced Web Development: A Comprehensive Approach to JavaScript and Data Mining with Node.js": 1 +"Chemistry: Applying Differential Equations in Thermodynamics and Reaction Rate Concepts": 1 +"The Fibonacci Sequence and Its Impact on Graphic Design: An Exploration of Pattern and Scale Using Vector Illustration and Adobe Illustrator": 1 +"High School Algebra: Exploring Fractal Geometry with MATLAB Programming": 1 +"Psychology: Deciphering Cognitive Processes and Behavior Using Functional Magnetic Resonance Imaging (fMRI) and Magnetoencephalography (MEG)": 1 +"The Biomechanics of Sports: An Examination of Human Performance and Injury Prevention in Football": 1 +"Film Production: Mastering the Art of Foley Sound in Cinematic Storytelling Using Pro Tools": 1 +"Sociology: The Effect of Streaming Platforms on TV Show Consumption: A Quantitative Study": 1 +"Astrophysics: Black Holes and Gravitational Waves Exploration through Advanced Numerical Simulations": 1 +"Art History: Impressionism to Abstract Expressionism: A Comparative Study Using Color Theory and Visual Semiotics": 1 +"Sociology: The Role of Social Media in Modern Day Activism: An Analytical Approach": 1 +"Geometric Analysis in Sports: A Detailed Study on Biomechanics and Motion Tracking Technology in Football": 1 +"Epistemology: Understanding Consciousness through the Lens of Descartes' Dualism": 1 +"The Influence of Graphic Novels in the Evolution of Visual Storytelling in the Digital Age": 1 +"Advanced Songwriting Techniques: Exploring the Fusion of Lyrics and Melody with GarageBand and FL Studio": 1 +"Detailed Analysis of Climate Change: The Use of Geospatial Data and GIS in Assessing Deforestation Impacts": 1 +"Neuroscience: An In-depth Examination of Neural Plasticity through Magnetic Resonance Imaging and EEG Analysis": 1 +"Machine Learning Basics: An Introduction to Supervised Learning with TensorFlow and Keras.": 1 +"Physics and Music: The Role of Sound Waves in the Creation and Perception of Melody": 1 +"Exploring Python: Applying Graph Theory to Optimize Pathfinding Algorithms": 1 +"Economics: Using Game Theory to Analyze International Trade": 1 +"Design and Technology: Exploring Augmented Reality through Google's Project Tango": 1 +"The Intersection of Biomedical Engineering and Deep Brain Stimulation: An In-Depth Analysis": 1 +"Advanced Spanish: Enhancing Communication Skills through Subjunctive Mood and Conditional Sentences": 1 +"Anthropology: Examining the Socio-Cultural Implications of E-commerce": 1 +"Programming for Kids: Creating Interactive Stories in Alice": 1 +"Data Analysis Unveiled: Applying Bayesian Inference in R with TensorFlow and Predictive Modelling Techniques": 1 +"The Digital Revolution: The Internet's Impact on the Transformation of Print Media Technology": 1 +"Biology 101: Understanding Evolution and Genetic Variation through CRISPR and Bioinformatics": 1 +"Art and Psychology: Exploring the Impact of Color Theory on Human Perception using Adobe Color": 1 +"Cinematography: The Influence of Drone Photography on Modern Filmmaking - A Study on Aerial Composition": 1 +"Chemistry: Exploring Renewable Energy - The Chemistry of Wind Turbines and Hydrogen Fuel Cells": 1 +"Data Science: Mastering R Programming and Predictive Modeling for Business Analytics": 1 +"Music and Physics: Analyzing the Acoustics of Traditional Instruments using Fourier Transforms and MATLAB": 1 +"Geometry in Nature: Fractal Mathematics and its Application in Environmental Analysis": 1 +"Cryptocurrency & E-commerce: Revolutionizing Retail Business with Decentralized Digital Currencies - Approach 15": 1 +"Pedagogy: Incorporating Augmented Reality Tools for Improving Engagement in Language Learning": 1 +"Culinary Science: Exploring the Impact of Temperature and Pressure on Cooking Techniques": 1 +"Digital Forensics: A Comprehensive Investigation into Cybersecurity Threats and Data Encryption Techniques": 1 +"Quantum Computing: A Deep Dive into Quantum Mechanics and Its Application in Computer Science": 1 +"Environmental Science: Exploring the Impact of Climate Change on Global Biodiversity": 1 +"Cognitive Psychology: Understanding the Role of Memory in Learning and Behavior": 1 +"Artificial Intelligence: The Intersection of Machine Learning and Natural Language Processing": 1 +"Astrophysics: A Detailed Study of Black Holes and the Theory of Relativity": 1 +"Exploring the Renaissance: The Influence of Humanism on Art and Literature": 1 +"Mathematical Modelling: An Investigation into the Application of Differential Equations in Population Dynamics": 1 +"Nutrition Science: Unraveling the Impact of Diet on Human Health and Disease": 1 +"Musicology: Exploring the Evolution of Orchestration in Classical Compositions.": 1 +"Biochemistry: Understanding Enzymatic Reactions - A Guide to Kinetics and Spectrophotometry": 1 +"Geology: Utilizing GIS in Studying Tectonic Plate Movements Worldwide": 1 +"JavaScript Data Structures: An In-depth Course on Algorithmic Problem Solving and Abstract Thinking": 1 +"Arithmetic: Exploring Number Theory in Ancient Scripts": 1 +"Algebra: The Application of Quadratic Equations in Modern Architecture through Cartesian Coordinates": 1 +"Environmental Education for Kids: Discovering Ecosystems using Augmented Reality and Interactive Biome Simulations": 1 +"Spanish: Immersive Learning in Education: Analyzing the Role of Virtual Reality in Vocabulary Development": 1 +"Astrophysics: Delving into Black Holes using Gamma-Ray Telescopes and Particle Accelerators": 1 +"Fitness: Applying Signal Flags for Injury Prevention in Water Sports": 1 +"Artificial Intelligence in Java: Implementing K-Means Clustering Algorithms in Weka using Centroid Methods": 1 +"Psychology: Utilizing EEG Technology in Understanding Brainwave Patterns During Meditation": 1 +"Audio Engineering: An Intensive Examination of Amplifiers and Equalizers in Live Concert Settings": 1 +"Advanced Data Analysis in Python: Machine Learning, Predictive Models, and Deep Learning": 1 +"Sociology: The Impact of Virtual Reality in Fostering Empathy and Understanding Across Cultural Boundaries": 1 +"Literature: An Investigation into Augmented Reality Storytelling using Recycled Items: A Focus on Unity3D": 1 +"The Implications of RGB Theory on Digital Art: A Study of Vector Illustration with Gradient Meshes and Pointillism": 1 +"Biomedical Engineering: Exploring Heartbeat Patterns using Echocardiography": 1 +"The Influence of Amazon Alexa on Mental Wellness: A Comprehensive Health Education Research Highlighting 10 Potential Therapeutic Methods": 1 +"Molecular Biology: A Detailed Analysis of DNA Replication using Electrophoresis": 1 +"Chemistry: Hydrogen Fuel Cells - A Comprehensive Examination of Electrolysis": 1 +"Zoology: The Impact of Changing Climate on Penguin Migration Patterns": 1 +"Astrophysics: Gravitational Waves and their Role in Understanding Black Holes": 1 +"Culinary Science: Molecular Gastronomy and its Influence on Modern Cuisine": 1 +"Exploring Color: The Physics of Light Interaction with Pigments and Dyes": 1 +"Interpreting the Impact of Deep Learning on Film Editing Techniques in Adobe Premiere Pro": 1 +"Health Education: The Role of High-Intensity Interval Training in Cardiovascular Fitness": 1 +"The Fibonacci Sequence: Understanding Fractal Patterns in Nature using Python Programming": 1 +"Anthropology: Understanding Human Evolution through Fossil Record Analysis": 1 +"Environmental Modelling using Python, Matplotlib Library, and Jupyter Notebook Platforms": 1 +"Microeconomics 201: Price Elasticity and its Effects on Market Equilibrium using Econometric Analysis": 1 +"Physics in Sport: The Fluid Dynamics of Swimming": 1 +"Biology 310: Genetic Engineering: CRISPR and the Evolution of Bioinformatics": 1 +"Psychology 101: Unveiling the Consciousness: Dream Analysis Using Freudian and Jungian Perspectives": 1 +"Advanced French: Exploring the Art of Storytelling through Classic French Literature": 1 +"The Physics of Sound: An Acoustic Analysis of Classical Music and Instruments": 1 +"Cybersecurity: Blockchain Technology and its Role in Securing Digital Transactions": 1 +"Statistical Analysis in Python: Predictive Modeling Using Regression Algorithms": 1 +"Climate Change and Biodiversity: Global Impact Assessment Using Remote Sensing Techniques": 1 +"High School Curriculum: Decoding Cryptography - The World of Codes and Ciphers": 1 +"Design and Technology: The Impact of 3D Printing on Sustainable Fashion": 1 +"Advanced Astronomy: Exploring Cosmic Phenomena through the Hubble Space Telescope": 1 +"Fine Arts: Mastering the Techniques of Acrylic Pouring: An Exploration of Fluid Dynamics in Art": 1 +"Biology: Deciphering Genetic Mysteries through the Study of Epigenetics and DNA Methylation": 1 +"Innovative Use of VR Technology in Physical Therapy: A Focus on Post-Stroke Rehabilitation Techniques": 1 +"Unveiling Sound Design in Ableton Live: Deep Dive into Wavetable Synthesis": 1 +"Data Science with R: Applying Predictive Analytics to Financial Market Data using KNN, ggplot2, and RStudio": 1 +"Mastering Digital Illustration Techniques in Procreate: Exploring Color Theory with HSB Sliders and Brush Dynamics": 1 +"Neurobiology Basics: Understanding Neural Plasticity through the Study of Brain-Computer Interfaces": 1 +"Social Psychology: Understanding Human Behavior through the Study of Group Dynamics and Social Influence": 1 +"Advanced Astrophysics: Discovering the Mysteries of Black Holes through the Study of Gravitational Waves and Tensor Calculus": 1 +"Astounding Amphibians: A Herpetological Exploration of Frogs and Salamanders": 1 +"Art: Unraveling Color Theory in Cubism using Watercolor Techniques": 1 +"Geometry in Urban Planning: The Use of CAD and 3D Modelling in Sustainable City Design": 1 +"The Significance of Steam Engine Innovations on the Evolution of the Rail Transport during the Industrial Revolution": 1 +"Introduction to Ethics: Grasping Core Ideas and Ethical Dilemmas through Kantian and Utilitarian Perspectives": 1 +"Astrophysics and Multiverse Theory: The Role of String Theory in Hypothetical Parallel Universes": 1 +"Advanced Spanish Proficiency: Enhancing Conversation Skills with Rosetta Stone, Duolingo, and FluentU for Comprehensive Language Mastery": 1 +"Economics: The Progression of Trade Theories and the Impact of Game Theory": 1 +"Consumer Psychology in the Context of Marketing: Emotional Triggers and Neuromarketing Strategies": 1 +"The Integration of Machine Learning in Assessing the Market Influence of Airbnb's Business Model on Marriott Hotels: An Examination of 10 Revenue Optimization Techniques": 1 +"Advanced Physics: Exploring Quantum Mechanics through the Lens of Particle-Wave Duality and Superposition": 1 +"Algebraic Theory: The Application of Group Theory and Ring Theory in Cryptography": 1 +"Cyberpsychology: Analyzing the Impact of Social Media on Human Behavior and Mental Health": 1 +"Neuroscience 210: Exploring the Influence of Classical Literature on Cognitive Processes using EEG and PET Scans": 1 +"Advanced Architecture: Incorporating Biomimicry and Parametric Design in Modern Infrastructure": 1 +"Critical Thinking for Adolescents: Understanding Society through Political Philosophy and Social Theories": 1 +"Ecology & Conservation: The Role of Urban Green Spaces in Climate Change Mitigation": 1 +"Wireless Communication: Evaluating the Impact of Beamforming on 5G Network Performance": 1 +"Impressionism & Beyond: Watercolor Techniques & Understanding the Munsell Color System": 1 +"World Politics: The Cold War - Decrypting the Role of Nuclear Weapons and Espionage": 1 +"Physics 205: Unraveling Quantum Mechanics: A Detailed Study on Quantum Tunneling": 1 +"Business 101: Examining the Impact of Artificial Intelligence in Supply Chain and Retail Industry": 1 +"The Art of Noise: Understanding Sound Synthesis in Electronic Music Production": 1 +"Global Studies: The Renaissance Era, the Printing Press, and the Birth of Humanism": 1 +"The Influence of German Expressionism on Modern Horror Movies: A Film Analysis": 1 +"Statistics: Probability Theory and the Law of Large Numbers Explored with TI-84 Plus CE Graphing Calculators": 1 +"Chemistry: The Dance of Electrons - A Detailed Examination of Atomic Structures with Spectroscopy and Scanning Tunneling Microscopy": 1 +"Primary Education 315: Incorporating Augmented Reality and E-books in Interactive Teaching": 1 +"Engineer's Canvas: Investigating Hyperbolic Geometry in Architectural Design through Revit": 1 +"Mastering the Chiaroscuro: An Intensive Study on Oil Painting Techniques Using the Glazing Method": 1 +"The Influence of Printing Press and Navigation on Trade and Exploration during the Renaissance": 1 +"Harnessing GoPro for Advanced Movement Tracking in Dance Education: An In-depth Study of Ballet and Contemporary Dance": 1 +"Introduction to Algorithms through Iconography: Understanding Image Processing with GIMP": 1 +"The Transformation of Rock Music in 1970s Britain: The Influence of Independent Record Labels": 1 +"Language Arts: Comparative Literature in a Global Context: Perspectives from Computational Linguistics ": 1 +"Machine Learning in Genetics: Implementing PyTorch in R for Genome Sequencing": 1 +"Art: The Craft of Landscape Painting through the Lens of Environmental Conservation": 1 +"Psychology: The Effect of Urbanization on Mental Health - An Investigation Using Behavioral Economics": 1 +"Language Arts: The Significance of Mythology in Post-colonial and Diaspora Literature ": 1 +"Geography: Visualizing Population Migration Patterns using Remote Sensing Technology": 1 +"Physics 310: Quantum Mechanics and Its Implications on Space-Time Continuum": 1 +"Comprehensive Study of Neural Networks in Machine Learning: Utilizing TensorFlow, PyTorch, and Keras": 1 +"Modern Literature: The Influence of Social Media on Contemporary Poetry - A Study on Instagram Poets": 1 +"Cultural Anthropology: The Impact of Mobile Technology on Traditional Societal Norms": 1 +"Interactive Media: The Role of Augmented Reality Glasses in Enhancing Cognitive Learning": 1 +"Musicology: The Evolution of Jazz Music through the Impact of the Saxophone": 1 +"Biostatistics: Advanced Application of Logistic Regression in SPSS for Predictive Analysis": 1 +"Experimental Film Production: Cinematography Techniques using RED Camera and Post-Production with DaVinci Resolve": 1 +"The Essence of Monochromatic Harmony in Watercolor: An Exploration of Tones, Shapes, and Brushwork": 1 +"Marine Biology: Analyzing the Effect of Ocean Acidification on Coral Reef Ecosystems": 1 +"Climate Change: The Effects of Greenhouse Emissions, Solar Panels, and Electric Cars on Global Warming": 1 +"French Mastery: Enhancing Vocabulary and Grammar through Rosetta Stone Software ": 1 +"Physics: Quantum Mechanics and the Influence of Supercomputers, Cryptography, and Holography on Modern Science": 1 +"Artificial Intelligence and Pattern Recognition: A Deep Dive with Pytorch": 1 +"Advanced Calculus: An Investigation into Infinite Series and Complex Analysis": 1 +"Computer Programming: Learning Python through Game Development": 1 +"Ethics: Understanding Human Behavior and Social Norms through Behavioral Economics": 1 +"Creative Writing for Young Adults: Developing Characters and World Building through Role-Playing Games": 1 +"Art History: Reflecting Political Upheaval through Surrealism and Symbolist Art ": 1 +"Comprehensive Examination of Light Phenomena: Manipulating Optics with Polarizing Filters, Spectral Analysis, and Laser Technology": 1 +"Art History: Analyzing the Influence of Political Movements on Modern Graffiti Art": 1 +"Computational Chemistry: Advanced Molecular Modeling Using Python and Quantum Mechanics": 1 +"Delving into Mathematics: Understanding Quantum Cryptography through Number Theory": 1 +"Musicology: The Impact of Technological Advances on Electronic Music Production": 1 +"Culinary Physics: The Role of Thermal Dynamics in Sous-vide Cooking Techniques": 1 +"Film and Visual Arts: Exploring the Use of Augmented Reality in Set Design": 1 +"Anthropology: The Socioeconomic Consequences of AI Integration in Healthcare": 1 +"Optics in Astronomy: Understanding Cosmic Phenomena through Spectroscopic Techniques": 1 +"Machine Learning: Implementation of Recurrent Neural Networks in Natural Language Processing": 1 +"Philosophy and Computing: Deciphering the Ethics of AI Using Propositional Logic": 1 +"Advanced Biochemistry: The Role of Enzymes in Metabolic Pathways Explored through Microscopy and Spectroscopy": 1 +"Geometry: Fractal Analysis in Climate Change Modelling": 1 +"Molecular Biology: Investigating Mitochondrial Dynamics with Confocal Microscopy, Cryo-electron Microscopy, and Mass Spectrometry": 1 +"Chemistry: The Science of Light and Color - An Introduction to Spectrum Analysis": 1 +"Unraveling the Renaissance: An Examination of the Impact of Patronage on Art and Architecture": 1 +"Sociology: Deconstructing Postmodernism - A Critical Look at Foucault's Concept of Power-Knowledge": 1 +"Music Composition: Melody and Rhythm - A Study through Analogue Synthesizer": 1 +"In-depth Study of Differential Equations: Phase Space in Nonlinear Dynamics and Chaos Theory using MATLAB": 1 +"Advanced Astronomy: Understanding the Universe through the Lens of Relativity Theory": 1 +"Machine Learning: Implementing Deep Learning in Predictive Analytics: Lessons from R Programming.": 1 +"Biology: Understanding Gene Therapy and Its Application in Cancer Treatment": 1 +"Creative Writing: Developing Narrative Skills through Short Story Writing and Poetry Analysis": 1 +"Psychology: An In-depth Study of Cognitive Behavioral Therapy and Its Impact on Anxiety Disorders": 1 +"Data Analysis: Mastering Statistical Techniques using R Programming and Predictive Modeling": 1 +"Physical Education: The Role of Aerobic Exercise in Cardiovascular Health and Performance Enhancement": 1 +"Economics: Exploring Microeconomic Theory and Its Implications on Market Structures": 1 +"Astrophysics: Understanding the Role of Dark Matter in the Universe and Its Impact on Galactic Formations": 1 +"Food and Nutrition: The Effect of Fermented Foods on Gut Health and Immune System": 1 +"Digital Marketing: Mastering Search Engine Optimization and Pay Per Click Advertising ": 1 +"Engineering: An Introduction to Robotics and Artificial Intelligence Applications": 1 +"Advanced Human Anatomy: Investigating the Role of Autophagy in Cellular Health": 1 +"Computer Science: Utilizing Java and Sensor Technology in the Study of Autonomous Vehicles": 1 +"Fine Art: Abstract Expressionism: Experimenting with Texture and Acrylics": 1 +"Astrophysics: An Extensive Examination of Dark Matter using Spectroscopy and Stellar Dynamics": 1 +"Data Science: Employing Deep Learning in Python for Fraud Detection in Financial Transactions": 1 +"JavaScript Programming Fundamentals: A Comprehensive Guide to Node.js and Data Manipulation with D3.js": 1 +"Psychology 101: Assessing the Influence of Meditation on Stress Levels using EEG and Heart Rate Variability": 1 +"Biomedical Engineering: Interpreting Neurological Signals with EEG Technology and Machine Learning": 1 +"Environmental Science: Utilizing LIDAR and 3D Mapping for Understanding Forest Ecosystem Dynamics": 1 +"Algebra in Architecture: Conceptualizing Space with the Aid of Geometrical Transformations": 1 +"Physics: Quantum Mechanics in Everyday Life - Understanding Superposition and Entanglement": 1 +"Psychology: Social Media Addiction: The Impact on Mental Health and Ways to Counteract - A Quantitative Approach": 1 +"Engineering: Building Smart Homes using Internet of Things and Machine Learning Algorithms": 1 +"Computer Science: Creating Efficient Routing Systems for Logistic Companies using Genetic Algorithms": 1 +"Historical Studies: Ancient Civilizations: A Deep Dive into Mayan Culture with Archaeological Evidence and Comparative Linguistics": 1 +"Physics for Kids: Understanding Gravity with Household Items and Fun Experiments": 1 +"Digital Learning: Enhancing Children's Cognitive Skills with Interactive Augmented Reality Games": 1 +"Biochemistry: Decoding Protein Structures using Crystallography and Computational Biology": 1 +"Psychology 101: The Impact of Classical Music on Stress Levels - A Biopsychosocial Perspective": 1 +"Environmental Genomics: Deciphering Plant Response to Climate Change through Genomic Sequencing and Bioinformatics": 1 +"Unraveling Blockchain Technology: A Comprehensive Study on Cryptocurrencies and Decentralized Finance": 1 +"Sustainable Living: The Role of Solar Energy and Advanced Battery Systems in Modern Housing": 1 +"Cognitive Psychology: Exploring Human Memory and Learning Processes through Neuroimaging Techniques": 1 +"Music: Analyzing Cultural Influence on Musical Styles through Machine Learning": 1 +"Chemistry: Understanding Chemical Reactions at Nano-Level using Transmission Electron Microscopy": 1 +"Motor Learning and Control: A Course on Biofeedback and its Applications in Physical Rehabilitation": 1 +"Decoding the Critical Role of Iron in Blood Cell Function: A Study with Nuclear Magnetic Resonance Spectroscopy": 1 +"Advancing Business Intelligence: Digging Deep into Cloud Computing, Machine Learning, Microsoft Azure, and Quantum Encryption": 1 +"Literature Review: Examining Themes of Existentialism in Albert Camus' The Stranger and Their Contemporary Relevance": 1 +"Microsoft Teams in Distance Learning: Boosting Engagement through Virtual Breakout Rooms and Whiteboard Integration": 1 +"Deep Sea Exploration: The Application of Quantum Mechanics in Sonar Technology": 1 +"Economics 101: Analyzing Market Trends and Consumer Behavior with Artificial Intelligence": 1 +"Sculpture: Mastering Metalworking Techniques using Hammers, Anvils, and Welding Torches": 1 +"The Role of Nanotechnology in Modern Medicine: A Chemistry Approach": 1 +"Understanding the Impact of Sharding in Blockchain-based E-commerce Platforms: Advancing Digital Transaction Speed": 1 +"Geology: Investigating the Impact of Volcanic Eruption on Climate Change": 1 +"The Art of Holography: The Effect of Microsoft HoloLens on the Perception of Dance Choreography": 1 +"Critical Thinking with Neural Networks: Enhancing Problem-Solving Skills": 1 +"World History: Understanding European Renaissance through the Invention of the Printing Press": 1 +"Zoology: Understanding Bird Migration Patterns through Satellite Tracking Data Analysis": 1 +"Advanced Mathematics: Mastering the Art of Solving Differential Equations with MATLAB": 1 +"Chemistry Unveiled: Synthetic Pathways in Organic Chemistry - A Focus on Retro Synthetic Analysis": 1 +"Advanced Game Design: Building Interactive Virtual Reality Experiences with Unity and C#": 1 +"Psychology 101: Understanding Human Behavior through Cognitive Behavioral Therapy - An Empirical Approach": 1 +"Geography: Geospatial Analysis and Satellite Imagery Interpretation using ArcGIS": 1 +"Astronomy: Observing Stellar Evolution through Radio Telescopes - A Deep Dive into the Hubble Space Telescope": 1 +"Sociology 200: Examining Social Structures - A Critical Analysis of the Influence of Social Media on Human Interaction": 1 +"Engineering Principles: The Mechanics of Materials - Exploring Stress-Strain Analysis and Finite Element Method Using ANSYS": 1 +"Environmental Science: Climate Change and its Impact - An In-depth Study of Coral Reef Bleaching": 1 +"Advanced Neuroscience: Exploring the Mysteries of Sleep - A Study of the Circadian Rhythm and the Role of Melatonin": 1 +"Revealing the Underbelly of the Internet: The Evolution of Cybercrime through Dark Web Forensics": 1 +"Chemistry Unveiled: Organic and Inorganic Bonding Explored through Spectroscopy Analysis": 1 +"Psychology: Assessing the Impact of Behavioral Conditioning on Modern Education using Factor Analysis": 1 +"Sculpture: Bronze Casting Techniques using Lost Wax Process and Modern Replication Tools": 1 +"Cognitive Mastery: Exploring Psychology through Charcoal Drawing Techniques": 1 +"Computer Science: Building Intelligent Systems using Python, Deep Learning Algorithms, K-Means for Clustering, and Matplotlib for Data Representation": 1 +"Digital Literacy and Interactive Storytelling: Advancements through Adobe Premiere, Google Keep, and Augmented Reality": 1 +"Geology: Assessing the Impact of Volcanic Activity on Mountain Ecosystems": 1 +"Microbiology: Viral Replication - Observing the Life Cycle of Viruses through Cryo-electron Microscopy": 1 +"Astrophysics: Investigating Dark Matter and the Role of Einstein's Theory of Relativity in Space-Time Continuum": 1 +"Advanced Calculus: Unraveling the Mysteries of Fractal Geometry in Nature": 1 +"Marine Biology: Examining Coral Reef Biodiversity through Underwater Robotic Imaging": 1 +"Physics: Investigating Black Hole Properties through Astrophysical Computations": 1 +"The Printing Press and the Telegraph: Transformations in American Communication Language in the Industrial Era": 1 +"The Renaissance and Artistic Revolution: The Role of Perspective in Paintings": 1 +"Quantum Computing and Its Potential: The Impact of Quantum Entanglement on Data Encryption": 1 +"Data Science: Developing Predictive Algorithms using R and Tableau - A Deep Dive into Machine Learning": 1 +"Creative Writing: Mastering Haiku Composition using Kigo and Kireji in Evocative Imagery": 1 +"World Literature: The Impact of Russian Realism on Late 19th Century British Novels": 1 +"Biochemistry: Exploring Protein Folding through Bioinformatics and PyMOL": 1 +"Advanced Calculus: Fourier Transform and its Applications in Signal Processing": 1 +"Environmental Science: Utilizing GIS Mapping for Wildlife Conservation": 1 +"Quantum Physics: Understanding Particle-Wave Duality through Lab Experiments": 1 +"Modern Astrophysics: Gravitational Waves and the Expansion of the Universe": 1 +"Introduction to Artificial Intelligence: Using TensorFlow for Image Recognition": 1 +"Sound Design: Harnessing Ableton Live for Cinematic Audio Production": 1 +"Advanced R Programming: Predictive Modeling and Data Mining for Market Research": 1 +"Vocabulary Virtuoso: Enhancing Spanish Fluency through Duolingo and Flashcards": 1 +"Business Analytics: Leveraging PowerBI for Retail Sales Forecasting": 1 +"Philosophical Inquiry: Unraveling Socratic Method in Contemporary Debates": 1 +"Advanced Calculus: Mathematical Modeling and Simulation in Engineering": 1 +"Cultural Anthropology: The Influence of Digital Culture in Modern Society": 1 +"The Artistic Aspects of Ballet: Analyzing Performance through Kinematics": 1 +"World History: An Examination of the Industrial Revolution's Impact on Global Economy": 1 +"The Role of Cardiology in Health: Exploring the Intricacies of the Circulatory System": 1 +"Cognitive Psychology: In-depth Study of Memory Encoding, Retrieval Process, and Cognitive Behavioral Therapy": 1 +"Chemistry: The Science of Color: Experiments with Chromatography and Spectroscopy": 1 +"Mastering the Art of Oils: A Comprehensive Study of Texture, Tone, and Palette Knife Techniques": 1 +"Astrophysics: An Exploration of Dark Matter through Gravitational Lensing, Cosmic Rays, and Quantum Theory": 1 +"Sustainable Design: Investigating the Use of Bio-degradable Materials in Fashion Industry": 1 +"Chemistry 101: Exploring Analytical Techniques through Sports Nutrition and Metabolomics": 1 +"Advanced History: The Rise of Industrial Revolution and the Impact on Global Navigation": 1 +"Harnessing WordPress: Leveraging CMS for Effective Non-Profit Organizational Communication": 1 +"Neuroscience: Investigating Visual Perception through Functional Magnetic Resonance Imaging and Visual Evoked Potentials": 1 +"Linguistics: The Art of Persuasion: A Survey on Social Media Impact through Big Data Analysis": 1 +"Fine Arts: Sculpting the Human Form with Clay and Digital Tools": 1 +"Anthropology: Understanding Indigenous Societies using Ethnographic Fieldwork and Machine Learning-Based Text Mining": 1 +"Optimizing Algorithmic Problem Solving: Comprehensive Exploration of Binary Search Trees in Python": 1 +"The Crypto Frontier: Exploring Blockchain Technology in Fintech and Global Economy": 1 +"Engineering: Mastering Structural Dynamics through Finite Element Analysis using MATLAB": 1 +"The Evolution of Film: A Cinematic Journey from Silent Era to Digital Age": 1 +"Biology: An Advanced Study of Cellular Structures using Microscopy and Genetic Analysis": 1 +"Political Science: An In-depth Study of Global Politics, Diplomacy, and International Relations": 1 +"Mastering the Art of Digital Illustration: Brush Techniques using Adobe Illustrator and Procreate": 1 +"Advanced Web Development: Utilizing JavaScript and React for Responsive Design": 1 +"Culinary Arts: An Immersive Taste Test of Traditional Cuisines and their Historical Context": 1 +"World History: A Comprehensive Look into the Rise and Fall of Ancient Civilizations": 1 +"The Intersection of Algebra and Cryptography: Unveiling Secrets through Mathematical Puzzles": 1 +"The Engineering Behind Quantum Computers: The Future of Computational Science": 1 +"Geometry: Unlocking the Mysteries of Fractals and Tessellations using the Golden Ratio": 1 +"Agriculture: Understanding the Role of Soil Composition in Crop Yield Using Spectroscopy and GIS Technology": 1 +"Quantum Computing: The Intersection of Theoretical Physics and Machine Learning Algorithms": 1 +"Business Strategy: Applying Game Theory to Competitive Market Dynamics in the E-commerce Industry": 1 +"Blockchain: Deciphering its Transformative Impact on Supply Chain Management and Global Trade": 1 +"Biochemistry 102: Exploring Protein Synthesis Through Western Blotting and Polymerase Chain Reaction": 1 +"Physics for Young Minds: Understanding the Universe through Telescopes and Spectrographs": 1 +"Elementary Education 320: Enhancing Cognitive Development through Gamification and Interactive Technologies": 1 +"Organic Chemistry: Understanding Reaction Mechanisms and Kinetics using Spartan Software and Transition State Theory": 1 +"Art History: Exploring the Influence of Political Events in Neo-Classical Sculptures": 1 +"Nutrition Science: Deciphering the Influence of Vitamins on Immune System Function Using Mass Spectrometry and NMR Spectroscopy": 1 +"Advanced Python: Exploring Big Data Analytics, Advanced Algorithms, and Usage of Django Framework": 1 +"Ethics: The impact of Virtual Reality on Human Behavior and Moral Dilemmas": 1 +"Health Tech: Understanding Mental Health through AI-Powered Wellness Apps": 1 +"Leveraging Robotic Process Automation for Efficient Waste Management: A Deep Dive into 10 Innovative Strategies": 1 +"Unraveling Cybersecurity: Decoding Intrusion Detection with Neural Networks ": 1 +"Digital Sound Design: Crafting Ambient Soundscapes with Modulation Processors in Ableton Live's Wavetable": 1 +"Philosophy: A Deep Dive into Justice Theories Using Rawlsian Principles": 1 +"Practical Statistics: SPSS for Advanced Hypothesis Testing and Data Interpretation ": 1 +"Eco-friendly Interior Design: The Role of Renewable Resources in Contemporary Home Décor ": 1 +"Music Theory: Decoding the Complexity of Baroque Flute Compositions through Fourier Transformations in Pro Tools": 1 +"Astrophysics: Understanding Black Holes through Quantum Mechanics and Gravitational Lensing": 1 +"Advanced Calculus: The Role of Differential Equations in Predictive Modelling and Machine Learning": 1 +"Sociology: Examining Social Structures and Inequality through Big Data Analysis": 1 +"Cognitive Linguistics: Deciphering Language Processing using fMRI and Eye-Tracking Technology": 1 +"Molecular Gastronomy: Leveraging Chemistry and Physics in the Culinary Arts": 1 +"Blockchain Technology: Disrupting Traditional Banking Systems and its Global Implications": 1 +"Human Anatomy: Exploring Muscular System through 3D Printing and Virtual Reality": 1 +"Environmental Engineering: Applying Solar Energy in Sustainable Architectural Design": 1 +"Artificial Intelligence: Developing Intelligent Systems using Deep Learning and Convolutional Neural Networks": 1 +"Oceanography: Unveiling Marine Ecosystems with Autonomous Underwater Vehicles and Sonar Technology": 1 +"Chemistry: Advanced Catalyst Study: Enzyme Kinetics and Reaction Mechanisms using Spectrophotometry": 1 +"Cultural Anthropology: The Impact of Social Media on Global Politics and Cultural Evolution": 1 +"Statistics: Predictive Modelling for Climate Change: A Deep Dive into Regression Analysis": 1 +"Mastering Melody in Ableton Live: A Comprehensive Study of Synthesizers and Drum Machines in Electronic Music Production": 1 +"Environmental Science: Forest Ecosystem Dynamics: A Comprehensive Study on Tree Ring Analysis using Dendrochronology": 1 +"Philosophical Inquiry: Delving into Metaphysics and Epistemology: The Study of Existence and Knowledge": 1 +"Evolving Fitness: Incorporation of High-Intensity Interval Training in Modern Health Practices": 1 +"Advanced Procedures in Immunohistochemistry and Mass Spectrometry: An Insight into Proteomics in Neuroscience": 1 +"Advanced Astrophysics: An In-depth Study of Stellar Evolution and Cosmic Microwave Background Radiation": 1 +"Rhetoric and Composition: Refining Academic Writing Skills through the Use of Microsoft Word's Advanced Editing Tools in the 21st Century": 1 +"Quantum Physics: Understanding Particle Duality through Mathematical Models": 1 +"Naval Architecture: The Significance of Battleship Design in the Napoleonic Wars": 1 +"Culinary Arts: Mastering the Science of Sourdough Bread through Traditional Techniques": 1 +"Critical Thinking: Identifying Cognitive Biases and the Skill of Debating": 1 +"Computer Science and Sound Engineering: An Algorithmic Perspective on Synthesizing Electronic Music": 1 +"Cognitive Psychology: Exploring Consciousness Through the Lens of Neuroimaging": 1 +"Advanced Mathematics: Exploring Cryptography through Python, C++, and JavaScript": 1 +"Finance for Teenagers: Grasping Investments, Stock Markets and the Principle of Interest Rates": 1 +"Sports Analytics and Biomechanics: Effects on Basketball Shooting Efficiency": 1 +"Geospatial Analysis: Tracking the Evolution of Ancient Trade Routes": 1 +"Advanced Robotics: Utilizing AI in Autonomous Vehicles for Enhanced Navigation": 1 +"Historical Evolution: From Papyrus to Digital Media: The Transformation of Information Dissemination": 1 +"Machine Learning: Improving E-commerce Product Recommendations through Collaborative Filtering": 1 +"Mobile Application Development: An In-depth Study on Firebase and React Native for Fitness Enthusiasts": 1 +"Elementary Chemistry: Understanding the Behavior of Gases using Barometers and Spectroscopy": 1 +"Climate Studies: The Role of Carbon Sequestration in Mitigating Global Warming": 1 +"Getting Started with Python for Data Analysis: A Comprehensive Guide for Beginners": 1 +"The Science of Speed: Studying Cheetah Biomechanics Using High-Speed Videography": 1 +"Anthropology: Decoding Human Evolution through DNA Sequencing and Bioinformatics": 1 +"The Physics of Sound: Unraveling the Mysteries of Resonance and Harmonics": 1 +"Understanding Vector Graphics: A Comprehensive Guide to SVGs and Illustrator": 1 +"Spanish Poetry: Text Mining and Sentiment Analysis Using Python": 1 +"Advanced Physics: Exploring String Theory through Particle Interactions": 1 +"Cultural Anthropology: Decoding Human Behavior through Comparative Mythology and Symbol Analysis ": 1 +"Elementary Astronomy: Unravelling Celestial Bodies through Telescope Observations and Astrophysical Calculations": 1 +"Data Diving: Effective Data Mining and Pattern Recognition using SPSS and Tableau": 1 +"Sound Engineering: Harnessing Logic Pro X to Create Ambient Sounds in Electronic Music": 1 +"Environmental Science: The Role of GIS in Climate Change Analysis and Ecosystem Mapping": 1 +"Cognitive Psychology: Investigating Memory Patterns with Neuropsychological Testing": 1 +"Digital Ethics: Managing Cybersecurity Threats in Internet of Things (IoT) and Countermeasures": 1 +"Physics: Unraveling Quantum Mechanics Using Schrödinger's Cat Experiment": 1 +"Understanding the Influence of Social Media on Political Campaigns: Twitter Analytics": 1 +"Biology: Decoding the Secrets of Genetic Engineering through CRISPR Technology": 1 +"French: Employing Haiku to Express Socio-political Issues: A Focus on Syllable Structure and Economic Inequality": 1 +"Galaxies Galore: Delving into the Secrets of the Universe with the James Webb Space Telescope and Spectroscopy": 1 +"Psychology: Exploring the Mysteries of Human Behavior with EEG and Neurofeedback": 1 +"Philosophy 101: Decoding Existentialism through Sartre's Works": 1 +"Art: Crafting Sculptures Inspired by Historical Civilizations": 1 +"A Comprehensive Guide to Computer Networks, Binary Systems, and Encryption using Cisco Packet Tracer and Python.": 1 +"Oceanography and its Role in Climate Change Analysis: The Influence of Ocean Currents on Ice Hockey Rink Conditions.": 1 +"English: Exploring Narrative Structures in Classic Novels: A Detailed Study on Character Development": 1 +"Mathematics: Advanced Calculus Applications in Astrophysics: Understanding Black Holes": 1 +"Geography: Investigating Global Climate Patterns with GIS: A Comprehensive Study on Weather Forecasting ": 1 +"Computer Science: Machine Learning and its Role in Advancing Cybersecurity Measures ": 1 +"French: Contextual Learning in Language Acquisition: Evaluating the Impact of Augmented Reality on Grammar Mastery": 1 +"Biology: Decoding the Human Genome: An Introduction to Bioinformatics using R": 1 +"Environmental Science: Renewable Energy Systems and Data Analysis using MATLAB: A Deep Dive into Solar Power": 1 +"Advanced Electronics: Circuit Analysis and Design using VHDL with a Focus on Sequential Logic": 1 +"Unveiling Crystal Structures Using Electron Diffraction and Matrix Transformations": 1 +"Political Science: The Role of Media in Modern Elections: A Detailed Analysis of Social Media Campaign Strategies": 1 +"Chemistry: Understanding Molecular Dynamics through the Lens of Crystallography": 1 +"Linguistics: The Power of Metaphor in Political Speeches - A Computational Linguistics Approach": 1 +"Computer Engineering: The Role of Optical Networking in Global Communications Infrastructure": 1 +"Art History: Deciphering Symbolism in Renaissance Art using Machine Learning ": 1 +"Music Theory: Exploring the Use of Syncopation in Jazz and its Impact on Emotional Resonance": 1 +"Psychology: Navigating the Intricacies of Human Emotion through Facial Recognition Technology": 1 +"Anthropology: Unearthing Ancient Cultures: A Deep Dive into Pottery Analysis": 1 +"Environmental Science: Harnessing Solar Energy: A Study on Photovoltaic Cells": 1 +"Performing Arts: The Role of Improvisation in Theater: A Study on Stanislavski's System": 1 +"Mathematics: Understanding the Complexities of Fractal Geometry in Nature": 1 +"Chemistry 208: Exploring the Role of Nanoparticles in Drug Delivery Systems using AFM Techniques": 1 +"Geology: Unveiling the Secrets of Plate Tectonics with Seismic Wave Analysis using Python": 1 +"Calculus 101: Applying Differential Equations in Predicting Stock Market Trends with MATLAB": 1 +"Music Theory: Understanding the Influence of Harmonic Structures in Jazz Improvisation: A Deep Dive": 1 +"Biology: Decoding the Intricacies of Plant Photosynthesis Using High-Resolution Spectroscopy": 1 +"Early Childhood Education 310: Implementing Virtual Reality in Storytelling to Enhance Cognitive Learning": 1 +"Sociology: The Role of Artificial Intelligence in Shaping Societal Norms and Interactions": 1 +"Geography: The Use of Thermal Imaging in Predicting Volcanic Activities and its Application in Disaster Management": 1 +"Quantum Physics: Application of String Theory in the Development of High-Speed Quantum Computing": 1 +"Computational Linguistics: Semantic Analysis of Text Using Natural Language Processing with Python.": 1 +"Climate Change: Investigating the Effects of Deforestation on Amazon Rainforest Biodiversity": 1 +"Cognitive Science: Analyzing Human Perception and Decision Making Using EEG and Functional Near-Infrared Spectroscopy": 1 +"Art: Tracing the Development of Watercolor Techniques Across Asian Cultures ": 1 +"Art: Unveiling the Symbolism of Traditional Batik in the Visual Narratives of Indonesian History ": 1 +"Critical Thinking with Board Games: Strengthening Analytical Skills for Adolescents ": 1 +"English: The Influence of Science Fiction in Shaping Future Technological Advancements": 1 +"Mathematics: An Introduction to Cryptography and Information Security through Number Theory": 1 +"Artistic Evolution: The Impact of Stencil Graffiti in Contemporary Urban Art": 1 +"The Rhythm of Nature: An Examination of Birdsong Frequencies Using Spectrogram Analysis and Audio Signal Processing": 1 +"Maximizing Online Engagement: Mastering Content Creation and Audience Interaction with Python": 1 +"Chemistry: The Influence of Nanotechnology in Modern Healthcare Systems": 1 +"Advanced Mathematics: Practical Geometry Visualization Using Google SketchUp": 1 +"Biology: Genetic Mapping and Bioinformatics - An Exploration of DNA Sequencing": 1 +"Analyzing Class Strife in Detective Fiction: A Character Study via Marxist Criticism": 1 +"Astrophysics: Understanding Spacetime Curvature in General Relativity": 1 +"Visual Arts in Ballet: Examining Virtual Reality's Impact on Dance Choreography Dynamics": 1 +"Sociology: Cyber Communities and Societal Shifts: A Study through Postmodern Lens": 1 +"Essential Coding Skills: Mastering Python for Data Analysis and Visualization": 1 +"Microsoft PowerPoint: Persuasive Presentation Design using Animation and Transition Effects": 1 +"Engineering Marvels & Physics: Applying Augmented Reality in Stress-Strain Analysis": 1 +"Chemistry in Cuisine: Understanding Molecular Gastronomy through Spectrometry and Thermal Analysis": 1 +"Music Theory: The Influence of Jazz on American Culture and History": 1 +"Psychology: Employing AI in Understanding Human Behavior: A Deep Learning Approach": 1 +"Physical Education: Enhancing Athletic Performance through VO2 Max and Anaerobic Threshold Monitoring Using Wearable Fitness Trackers": 1 +"Mathematics: Unraveling the Complexities of Cryptographic Algorithms in Secure Financial Transactions": 1 +"Art History: Exploring the Impact of Renaissance Art on Italian Culture and Society through Digital Archives": 1 +"Biology 101: Understanding Evolution through Comparative Genomic Analysis": 1 +"Computer Science: Virtual Reality and Game Design - Immersion, Interaction, and Narrative Creation": 1 +"Physics of Renewable Energy: A Comprehensive Study of Solar Cells through Spectroscopy": 1 +"Language Arts: The Role and Impact of Metaphors in Modern Political Speeches": 1 +"Chemistry: Advanced Organic Synthesis Techniques for Medicinal Drug Development": 1 +"Artificial Intelligence: Mastering Python, TensorFlow, and Kubernetes for Autonomous Driving Systems": 1 +"Astronomy: Unveiling the Universe with Radio Telescopes and Spectroscopy": 1 +"Advanced Algebra: Exploring Abstract Algebra and Number Theory with Python": 1 +"Young Chemists: Understanding Chemical Reactions through Hands-on Experiments": 1 +"Physical Education: Effective Training Methods for Competitive Swimming": 1 +"Meteorology: Understanding Weather Patterns through Doppler Radar and Satellite Images": 1 +"Marine Biology: Exploration of Coral Reefs using Underwater Robotics and Sonar Technology": 1 +"Material Science: Investigating Properties of Smart Materials using Nanoindentation": 1 +"Engineering: Understanding Acoustics in Architectural Design using Finite Element Analysis": 1 +"Unraveling the Impact of Sound Waves on Sleep Quality: An Investigative Study": 1 +"Mastering Watercolor Techniques with Sponges and Spray Bottles: A Comprehensive Study on Texture, Gradients, and Hues": 1 +"French Discoveries: Advancing Vocabulary and Sentence Structure through Crossword Puzzles and Google Docs": 1 +"Biology in Action: Fermentation Process in Winemaking: The Science Behind Flavors": 1 +"Primary Education Technology: An Exploration of Fitbit in Physical Education Lesson Planning": 1 +"Sociology of Music: Decoding the Cultural Significance of Folk Music across Regions": 1 +"Advanced Chemistry: Nanotechnology in Drug Delivery Systems": 1 +"Sociology: Conflict Resolution - The Power of Empathy and Online Mediation": 1 +"Geography: The Era of Globalization and the Role of Satellites and Digital Maps": 1 +"Computational Logic in Practice: Leveraging Python, Pytest, and PyCharm IDE for Algorithm Design and Analysis": 1 +"Advanced Calculus: Exploring the World of Fractals and Chaos Theory": 1 +"Sociology: The Impact of Social Media on Global Political Movements: A Comprehensive Analysis": 1 +"Chemistry: Unraveling the Secrets of Organic Compounds Using Nuclear Magnetic Resonance": 1 +"Art History: The Influence of Cubism on Modern Architecture: An In-depth Study": 1 +"Advanced Genetics: Decoding Genomic Structures with Bioinformatics using Python": 1 +"Astronomy and Astrobiology: The Search for Extraterrestrial Life: An Introduction ": 1 +"Quantum Physics: The Enigma of Quantum Entanglement - A Study of Quantum Mechanics": 1 +"Digital Literacy 101: Utilizing Microsoft Teams for Virtual Learning": 1 +"The Impact of VR (Virtual Reality) on Film Production: An Extensive Study on the Use of 360-Degree Cameras": 1 +"Environmental Science: The Role of Solar Energy in Sustainable Development": 1 +"Sociology: Exploring the Influence of Social Media on Generation Z: A Deep Dive into Instagram and TikTok": 1 +"Physics: Quantum Field Theory: Understanding the Universe through the Lens of String Theory": 1 +"The Impact of Yoga Practices on Physical Health: A Comprehensive Examination in Sports Science with Various Methodologies": 1 +"Art: Landscape Painting in Watercolor: Brush Techniques and the Use of Glazing: An Intensive Study on Layering": 1 +"Language Arts: Character Development in Novel Writing Using Scrivener's Corkboard and Storyboard Features": 1 +"Language Arts: Expressing Emotions through Poetry using Simile and Hyperbole": 1 +"Neurology: Comprehensive Analysis of Spinal Cord Injuries Using Diffusion Tensor Imaging, Functional Electrical Stimulation, and Myoelectric Control Systems": 1 +"The Influence of the Steam Engine on Industrial Trade and Progress of Societies using Coins": 1 +"Economics: The Role of Inventory Management Software in Operating a Successful Restaurant": 1 +"Elementary Science: Unraveling the Evolution of Renewable Energy Sources through Experimental Data Analysis": 1 +"Chemistry: Using Molecular Gastronomy Techniques in Culinary Arts": 1 +"Human Anatomy 305: Exploring Virtual Simulation in Medical Training for Enhanced Surgical Precision": 1 +"Art History: Cubism and the Influence of Geometric Patterns in Modern Architecture": 1 +"Literature: The Impact of Greek Mythology on Contemporary Western Fiction": 1 +"Astronomy: Understanding Cosmic Rays through Gamma-Ray Technology": 1 +"Music Technology: The Impact of Synthesizers on Electronic Dance Music": 1 +"Baseball Analytics: Comprehensive Study of Predictive Modeling in R and Data Visualization in Power BI": 1 +"The Influence of Social Media on Contemporary Art Movements: A Case Study of Viral Pop Culture": 1 +"Infrared Spectroscopy, Thermodynamics, and the Greenhouse Effect: An Extensive Analysis with the Use of Spectral Radiometers.": 1 +"Physical Education: Yoga as Therapeutic Practice: A Deep Dive into Mindfulness and Stress Reduction": 1 +"Chemistry 101: The Role of Thermodynamics in Chemical Reaction Equilibria": 1 +"History: The Influence of Roman and Greek Architecture on Modern Urban Planning": 1 +"Film Studies: The Evolution of Sound Design in Modern Cinema through Pro Tools": 1 +"The Influence of Virtual Reality and Haptic Feedback in Enhancing Rehabilitation Exercises": 1 +"Foreign Language 101: Improving Spanish Vocabulary through Duolingo": 1 +"Engineering: The Application of Calculus in Structural Integrity of Bridges": 1 +"American Literature: Exploring Themes in Contemporary Fiction through Symbolism": 1 +"Introduction to Data Science: Predictive Modeling with R and caret package": 1 +"The Impact of MIDI Technology on the Development and Transformation of Electronic Music": 1 +"Astronomy: Analyzing Cosmic Rays and Space Weather using Python and Data Visualization Tools": 1 +"Biology: The Evolutionary Role of Mitochondria in Cellular Respiration": 1 +"Climate Science: An Investigation of Ice Cores and Their Impact on Understanding Past Climates": 1 +"Advanced Photography: Exploring the World through Macro Lenses and High-Speed Photography": 1 +"Computational Linguistics: Decoding Human Language Using Natural Language Processing and Machine Learning Algorithms": 1 +"Art History: Renaissance Art - Delving into Fresco Techniques and Symbolism": 1 +"Advanced Engineering: A Deep Dive into Thermodynamics and Kinetics in Propulsion Systems": 1 +"Psychology: The Influence of Color Perception on Emotion and Behavior": 1 +"Geology: Understanding Earth's History Through Stratigraphy and Fossil Records": 1 +"Environmental Policy: The Role of Carbon Trading in Climate Change Mitigation": 1 +"Quantum Computing: Introduction to Quantum Algorithms and Quantum Entanglement": 1 +"Advanced Computational Linguistics: An Exploration of Natural Language Processing with Deep Learning Algorithms": 1 +"Biology: The Impact of CRISPR and Genomic Editing on Understanding Human Genome": 1 +"Engineering Principles: Structural Dynamics and Earthquake Engineering with Finite Element Analysis": 1 +"Mathematics: Probing the Mysteries of Prime Numbers through Abstract Algebra and Number Theory": 1 +"Environmental Science: Climate Change Modelling and Impact Assessment using Remote Sensing and GIS": 1 +"Economics: Game Theory and Strategic Behavior - An analysis using Python and R": 1 +"Astronomy: Investigating the Cosmos through the Lens of Radio Astronomy and Spectral Analysis": 1 +"Sociology: Understanding Social Networks and Human Interaction through Graph Theory and Python": 1 +"Artificial Intelligence: Building Intelligent Systems using Machine Learning and TensorFlow": 1 +"Philosophy: Exploration of Consciousness through the Lens of Quantum Physics and Dualism": 1 +"Solar Energy: Harnessing Photovoltaic Cells and Quantum Dots for Enhanced Energy Production": 1 +"Sports Medicine: The Role of Biomechanics and Motion Capture Technologies in Injury Prevention": 1 +"Cryptocurrency: Utilizing Quantum Computing for Secure Financial Transactions: A New Era in FinTech": 1 +"Astronomy: Mapping the Universe with Radio Telescopes and Spectral Analysis": 1 +"Computational Linguistics: Applying Deep Learning and Neural Networks for Natural Language Processing": 1 +"Machine Learning: Developing Autonomous Systems with C++ using TensorFlow": 1 +"Implementing Augmented Reality (AR) in Urban Planning: A Novel Approach to Smart City Development": 1 +"Marine Biology: The Environmental Impact of Remote Sensing in Coral Reef Conservation": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Wave-Particle Duality using Quantum Field Theory": 1 +"Psychology: Exploring Mental Processes through EEG, fMRI, and Neuropsychological Testing": 1 +"Physics: Quantum Computing: A Dive into the World of Qubits and Superposition": 1 +"Anthropology: The Role of Social Media in Cultural Dissemination: A Case Study on Instagram": 1 +"Marine Biology: Coral Reef Conservation: Utilizing ROV Technology for In-Depth Oceanic Study": 1 +"Business: The Impact of Augmented Reality on Retail: Exploring Consumer Behaviour and Marketing Strategies": 1 +"Space Science: Understanding Cosmic Phenomena: A Detailed Study on Black Holes using X-Ray Spectroscopy": 1 +"Philosophy: The Foundations of Ethical Reasoning: Analyzing Moral Dilemmas Using Kant's Categorical Imperative": 1 +"Environmental Science: Climate Change and Sustainable Agriculture: Innovations in Hydroponics and Vertical Farming": 1 +"Mathematics: Cryptography and Security: Harnessing the Power of Elliptic Curve Cryptography": 1 +"Creative Writing: The Influence of Streaming Platforms on Scriptwriting: A Netflix Perspective": 1 +"Political Science: The Role of Blockchain Technology in Promoting Transparency in Elections": 1 +"Biological Science: A Deep Dive into the World of Marine Biodiversity": 1 +"Economics: Advanced Game Theory and its Implications for Global Trade ": 1 +"Artistry Fundamentals: The Role of Shadows in Charcoal Sketching Techniques": 1 +"Physics 220: Quantum Mechanics in Modern Telecommunications: Understanding the Principle of Superposition": 1 +"The Emergence of Cubism in the 20th Century and its Influence on Contemporary Art": 1 +"The Progress of Cybernetics: A Detailed Investigation of its Evolutionary Path": 1 +"Neuroscience: Understanding Mental Disorders through Positron Emission Tomography": 1 +"Neuroscience: Unveiling Cognitive Processes using Functional Magnetic Resonance Imaging and Transcranial Magnetic Stimulation in light of Cognitive Flexibility": 1 +"The Role of Chromatography in Pollution Analysis: 10 Innovative Approaches": 1 +"Chemistry: The Chemistry of Baking: The Maillard Reaction and Beyond.": 1 +"Biology: The Role of Mitochondria in Cellular Respiration": 1 +"Advanced Java: Integrated Machine Learning Algorithms and Network Programming with Spring Boot": 1 +"Literature: The Impact of Romanticism - Understanding the Context of William Wordsworth's Poetry": 1 +"Art History: The Evolution of Impressionism: Analysing Monet's Impact on Landscape Painting": 1 +"Advanced JavaScript: Efficient Application Development with Node.js and Express.js": 1 +"Astronomy: Understanding the Basics of Stellar Evolution and the Role of Spectroscopes in Star Classification": 1 +"Mastering Ruby and Data Mining: A Detailed Study of Algorithms using Nokogiri and Watir": 1 +"Interior Design: Tracing the Influence of Rococo Aesthetics on Contemporary Decor Styles": 1 +"Navigating Ethical Dilemmas in Biotechnology: Striking a Balance between Innovation and Bioethics": 1 +"Data Science: R Programming for Predictive Analysis and Data Visualization.": 1 +"Mathematics: Exploring Quantum Calculus with MATLAB for Predictive Modelling": 1 +"Secondary Education 410: Using Google Classroom for Interactive Learning in Virtual Literature Circles": 1 +"Outdoor Leadership: Wilderness Navigation using Topographical Maps and GPS Technology": 1 +"Language Mastery: Harnessing Rosetta Stone and Quizlet for Enhanced Vocabulary Acquisition": 1 +"Chemistry: Optimizing Spectroscopy and Molecular Analysis with Computational Algorithms": 1 +"Environmental Science: Understanding Rainforest Biodiversity through GIS Mapping": 1 +"Physics: A Comprehensive Guide to Quantum Mechanics Using Particle Accelerators": 1 +"Fine Arts: Mastering Texture and Perspective in Urban Landscape Drawings ": 1 +"Anthropology: A Statistical Approach to Cultural Diffusion and its Influence on Contemporary Music Genres": 1 +"Digital Marketing: Maximizing LinkedIn for B2B Lead Generation and Customer Retention": 1 +"Computational Linguistics: Using Python and Natural Language Processing (NLP) for Sentiment Analysis": 1 +"Diving Deep into Neuropsychology: Understanding Brain Functions through Electroencephalography (EEG)": 1 +"Advanced Chemistry: Exploring Organic Compounds and the Use of Nuclear Magnetic Resonance (NMR) Spectroscopy": 1 +"Programming for Data Analysis: Using R and Shiny to Create Interactive Dashboards for Business Intelligence": 1 +"Biology: Unmasking Cellular Mechanisms through Fluorescence Microscopy and Analysis of Cell Division": 1 +"Advanced Calculus: Understanding Differential Equations with the Help of Wolfram Mathematica": 1 +"Harnessing Quantum Computing for Encrypted Communication: An In-depth Study of Shor's Algorithm": 1 +"Literature: Enhancing Creative Writing Skills through ProWritingAid": 1 +"Astrophysics: Exploring the Big Bang Theory and the Expansion of the Universe through Cosmological Redshift": 1 +"Machine Learning: Implementing Decision Trees and Random Forests in Python for Predictive Modelling.": 1 +"Biology: Understanding Genetic Engineering and the Role of CRISPR Technology in Gene Editing": 1 +"Environmental Science: The Impact of Urbanization on Wildlife Habitats: A Detailed Analysis on Avian Populations and Biodiversity": 1 +"Astronomy: Exploring the Universe through the Hubble Telescope and Stellar Spectroscopy": 1 +"Spotify's Recommendation Algorithm Unveiled: A Deep Dive into Music Streaming Revenue and Machine Learning Techniques using LSTM in Natural Language Processing": 1 +"Sculpture: The Art of Bronze Casting: Advanced Techniques in Lost-Wax Process and Kiln Firing": 1 +"Physical Chemistry: Unraveling Reaction Mechanisms through Nuclear Magnetic Resonance": 1 +"Neuroscience: Using Neuropsychological Methods in the Study of Memory and Learning": 1 +"The Language of Symmetry: An Exploration of Mathematics through Group Theory and Fractal Geometry": 1 +"Theatre: Deconstructing Postmodern Drama through the Prism of Absurdism using Minimalist Stage Design": 1 +"Political Science: The Ethical Dimensions of Artificial Intelligence: An Investigation into Machine Ethics and Social Responsibility": 1 +"Advanced Robotics: Exploring Artificial Intelligence in Autonomous Systems and Machine Learning using Python and TensorFlow": 1 +"Astronomical Physics: Exploring Celestial Bodies and the Cosmos through Telescope Observations and Spectroscopy": 1 +"Green Architecture: Sustainable Building Designs with Renewable Energy Systems in Modern Construction": 1 +"Archaeology: Unveiling the Cultural Practices of the Bronze Age Civilizations through Excavation and Radiocarbon Dating": 1 +"Secure Coding: The Evolution of Cybersecurity Measures from Firewalls to Quantum Cryptography": 1 +"Quantum Mechanics 101: Applying Schrödinger's Equation to Quantum Tunneling: Understanding Wave Function and Probability Density": 1 +"Mastering Algorithms: An Extensive Review of Sorting and Searching Algorithms using Java and Big O Notation": 1 +"Linguistics: Deciphering the Progression of Written Scripts from Cuneiform to Modern Alphabet Systems": 1 +"Material Science: Investigating the Properties of Nanomaterials using Scanning Electron Microscopy and X-Ray Diffraction": 1 +"Chemistry 200: Exploring Biochemistry: Enzyme Activity and Metabolic Pathways in Cellular Respiration": 1 +"Advanced Mathematics in Quantum Physics: The Role of Tensor Calculus in Quantum Mechanics.": 1 +"Physics of Sound: Acoustic Principles in Musical Instrument Design.": 1 +"Life Science: The Impact of Climate Change on Biodiversity and Ecosystem Stability.": 1 +"Computer Science 101: Understanding Machine Learning and Neural Networks in Python.": 1 +"Literature: The Art of Storytelling in Modern Graphic Novels.": 1 +"Culinary Science: The Chemistry Behind Molecular Gastronomy and Food Pairing.": 1 +"Digital Marketing: The Impact of Social Media Algorithms on Consumer Engagement.": 1 +"Fine Arts: Exploring Abstract Expressionism in Acrylic Pour Painting.": 1 +"Photography: The Role of Depth of Field in Portrait Composition.": 1 +"Business Studies: The Influence of Globalization on Small Businesses and Local Economy.": 1 +"Art History: The Evolution of Impressionism and its Influence on Modernist Art Forms": 1 +"Calculus Concepts: An Introduction to Differential Equations and their Applications in Physics": 1 +"Environmental Science: Understanding the Impact of Climate Change on Coral Reefs using Remote Sensing Techniques": 1 +"Comparative Literature: The Influence of Classical Mythology in Postmodern Novels: A Deconstructivist Approach": 1 +"The Interplay of Vitamins and Hormones: A Deep Dive into Endocrinology through the Lens of Spectroscopic Analysis": 1 +"Sports Science: The Impact of High Altitude Training on Aerobic Capacity, An Investigation using VO2 Max Testing": 1 +"Digital Health: Exploring the Potential of Virtual Reality in Pain Management and Rehabilitation": 1 +"Navigating Fintech Risks in Small Business Financial Management: A Cybersecurity and Cryptocurrency Perspective": 1 +"Harnessing Topological Quantum Computing for Enhanced Cybersecurity: Assessing the Efficiency of Majorana Fermions": 1 +"Neurophilosophy: Exploring the Concept of Self through the Interplay of Cognitive Neuroscience and Existentialism": 1 +"Python and Ableton Live: A Comprehensive Guide to Digital Signal Processing and MIDI Programming": 1 +"Zoology 101: Essentials of Animal Behavior: A Deep Dive into Operant Conditioning": 1 +"Critical Thinking: Unraveling Key Ideas and Biases Using Decision Trees and the Principle of Parsimony ": 1 +"Chemistry: The Chemistry of Colors and Light: Understanding the Photoelectric Effect": 1 +"Cultural Studies: Art and National Identity: A Study of Photoshop's Influence on Graphic Design": 1 +"Urban Agriculture and Citizen Participation: Ten Revolutionary Strategies for Food Security": 1 +"Literature Studies: Unveiling the Discourse of Behavioral Economics with Hierarchical Linear Models in SPSS: A Glimpse at Regression Analysis": 1 +"Fun with Astronomy: A Journey into Gravitational Waves and Space-Time Continuum": 1 +"Decoding Medieval Heraldry: An Investigation of their Societal Significance through Cultural Anthropology": 1 +"Junior Physics Course: Grasping the Concept of Electric Circuits through Lemon Batteries, Multimeter Readings and Ohm's Law": 1 +"Mastering Spatial Data Analysis in QGIS: A Comprehensive Guide to Geospatial Intelligence": 1 +"Biology: Investigating Muscle Hypertrophy: An In-depth Study on Electromyography and Creatine Kinase ": 1 +"Building on Polkadot in Cryptocurrency Infrastructure for Smart Grids: A Deep Dive into Decentralization in Energy Sector": 1 +"History: The Impact of Radio Waves in the Progression of Global Communication": 1 +"Philosophy: The Influence of Color on Emotion - Decoding the Mystery of Alpha Waves": 1 +"Exploring dplyr: A Comprehensive Guide to Data Manipulation in R Programming for Set Theory": 1 +"Mathematics: Predictive Analytics in Weather Forecasting using Python Programming and Deep Learning": 1 +"Computer Science: Composing Symphony with Java - A Comprehensive Guide to Music Technology using Ableton Live and MIDI Keyboards": 1 +"Historical Studies: Medieval Europe: An In-depth Study of the Renaissance Period with Historical Artifacts and Paleography": 1 +"Art in Medicine: Understanding Physiology through Sculpture": 1 +"Quantum Mechanics: Decoding the Uncertainty Principle with Schrödinger's Cat Experiment": 1 +"Chemical Engineering: Application of Distillation Principles in Petroleum Refinery Operations": 1 +"Creative Writing: The Influence of Symbolism on Narrative Structures in Gothic Literature": 1 +"Environmental Science: Climate Change Impact Analysis using Geographic Information Systems (GIS)": 1 +"Modern Architecture: The Role of Parametric Design in Sustainable Urban Development": 1 +"Cognitive Psychology: Exploring Memory and Learning through Cognitive Behavioral Therapy (CBT)": 1 +"Data Science Foundations: Machine Learning and Predictive Analytics using Python and TensorFlow": 1 +"Arts and Design: Exploring 3D Modeling and Animation with Blender for Virtual Reality": 1 +"Mathematics: Chaos Theory and Fractal Geometry: A Deeper Understanding through the Mandelbrot Set": 1 +"Sociology: Social Network Analysis using UCINet for Understanding Community Structures.": 1 +"Mathematical Harmony: Exploring the Evolution of Math from Pythagoras to Quantum Mechanics": 1 +"Biology: Understanding Genetic Mutations Through Fluorescence In Situ Hybridization Techniques": 1 +"Climate Science: Examining Global Warming Impacts with Satellite and Ground-Based Measurements": 1 +"Quantum Physics: An In-depth Analysis of Quantum Entanglement with Bell's Theorem": 1 +"The Progress of Medicine: The Revolution of Antibiotics in the 20th Century": 1 +"Cosmology: Deciphering the Mysteries of Dark Matter - An Exploration of Cosmic Microwave Background": 1 +"Philosophy: The Power of Argumentation - Enhancing Persuasion with Rhetorical Strategies": 1 +"Biochemistry in Action: Investigating Cellular Respiration through Colorimetric Assay Techniques": 1 +"The Art of Inner Peace: Mindfulness Meditation, Tai Chi and Stability on the Balance Beam": 1 +"Business Basics: Understanding the Balance of Power in Monopolies: A Primer on the Cournot Model": 1 +"Ecology and Conservation: The Influence of Rainforests on Global Climate Patterns": 1 +"Culinary Cartography: Charting the Evolution of Modern Gastronomy with Data Analytics": 1 +"Molecular Mysteries: Unraveling Disease Mechanisms with CRISPR-Cas9": 1 +"Literature 205: Metaphor and Paradox: Unpacking Symbolism in Postmodern Fiction": 1 +"Creative Technology: The Impact of Blender 3D on Visualization in Contemporary Digital Design": 1 +"Mathematics 200: The Role of Probability in Predicting Financial Market Trends": 1 +"Remote Sensing in Urban Planning: 10 Innovative Techniques for Sustainable Infrastructure": 1 +"Science in Art: Decoding Fractal Geometry in Digital Design ": 1 +"Information Technology: Data Mining and Text Analysis with NLTK in Python": 1 +"Chemistry: The Properties of Slime and the Use of Rheology in Material Science": 1 +"Philosophical Puzzles: An Introduction to Critical Thinking and Argument Analysis": 1 +"Biology: Understanding the Human Body - A Detailed Examination of the Cardiovascular System": 1 +"The Role of Trigonometry in Unraveling the Mysteries of Space and Astronomy": 1 +"Computer Science: Developing Immersive Experiences with Virtual Reality": 1 +"Primary Education: Learning European History through Interactive 3D Printed Maps and Virtual Tours": 1 +"Art: The Impact of Photography on the Evolution of Modern Art Movements": 1 +"World Languages: The Art of Translation - The Impact of Machine Learning Technology": 1 +"Microcontroller Programming: Building Smart Devices with Arduino and Python": 1 +"Cultural Studies: The Impact of Social Media Platforms on Global Communication and Identity": 1 +"Advanced Python Programming: Leveraging the Strength of Flask and Docker for Web Development": 1 +"Biology: Deciphering Genetic Codes and Evolutionary Patterns with Bioinformatics": 1 +"Advanced Calculus: Exploring Multi-Variable Equations in Fluid Dynamics": 1 +"Paleontology: Unraveling Prehistoric Life with Fossil Analysis and Radiometric Dating": 1 +"Fine Arts 204: Deconstructing Cubism through the Palette of Oil Paints": 1 +"The Renaissance Era: Influences of the Printing Press on European Literature and Cultural Exchange": 1 +"Software Engineering: Building Interactive Applications with JavaScript and React": 1 +"The Science of Sound in Cinematography: Decoding the Role of Frequency and Decibels": 1 +"Revealing History: Exploring Ancient Civilizations through Satellite Imagery and Lidar Technology": 1 +"Machine Learning: Excelling in Deep Learning Algorithms using PyTorch and Keras": 1 +"Psychology: Exploring the Human Mind's Perception of Reality through Virtual Reality Simulations": 1 +"Chemistry and Cuisine: Understanding Molecular Gastronomy Techniques in Ten Global Kitchens": 1 +"Astronomy: Decoding the Universe - The Impact of Dark Energy on Galaxy Formation": 1 +"High School Physics: Electromagnetism and Circuitry - A study using Arduino": 1 +"Exploring Einstein's Theory of Relativity using Augmented Reality Simulations": 1 +"Physical Education: Soccer Formations and Defensive Tactics": 1 +"Mystery and Intrigue in Historical Fiction: An Examination of Foreshadowing and Suspense": 1 +"Advanced Calculus: Exploring Fractal Geometry with the Aid of MATLAB": 1 +"Anthropological Study of Virtual Worlds: An Exploration of Online Communities through Oculus Rift": 1 +"Adoption of Python Language and Jupyter Notebooks in Streamlining Supply Chain Processes": 1 +"Geology: Understanding Plate Tectonics through 3D Printing and CAD Software": 1 +"Marine Biology: Exploring Ocean Depths - Techniques for Deep Sea Diving and Underwater Photography": 1 +"Anthropology: Cultural Integration, Language Evolution and their Impact on Globalization and Human Rights": 1 +"Culinary Arts: The Science of Flavours - Molecular Gastronomy with Sous-Vide Techniques": 1 +"Unraveling History: The Influence of Vigenere's Cipher and Morse Code on Modern Communication Systems": 1 +"Computer Science: Mastering Algorithms with Binary Trees, Graph Theory, and Data Structures using Python": 1 +"Health and Wellness: Holistic Healing and Self-Care through Aromatherapy and Sound Therapy Techniques": 1 +"Quantum Physics: Deciphering Quantum Entanglement through Tensor Networks and Augmented Reality": 1 +"Early Childhood Education 210: Enhancing Spatial Learning and Creativity through Virtual Reality Tools": 1 +"Bio-Based Polymers and Sustainable Fashion: Understanding the Role of Polyhydroxyalkanoates in Textile Dyeing Process": 1 +"Architecture and Balance in Landscape Design: Exploring the Influence of Golden Ratio.": 1 +"Bioinformatics: Unraveling the Mystery of Proteomics and Genomics using Machine Learning Techniques": 1 +"Advanced Astrophysics: Uncovering the Secrets of Dark Matter and Dark Energy with the James Webb Space Telescope": 1 +"Green Architecture: Sustainable Design and Urban Planning for Resilient Cities": 1 +"The Impact of Virtual Reality and Haptic Feedback in the Therapeutic Process: A Study in Occupational Therapy": 1 +"High School Chemistry: Navigating the Intricacies of Organic Synthesis and Biochemistry with Molecular Modeling": 1 +"Human Genetics and Disease Susceptibility: Utilizing Genome-wide Association Studies and Next-Generation Sequencing for Precision Medicine": 1 +"Assessing Public Health Policies through Social Network Analysis: Applying Big Data Analytics to Epidemics and Vaccination Campaigns": 1 +"Exploring the Sonic Landscape of Electronic Music with Modular Synthesis: A Comprehensive Study on Waveform Manipulation": 1 +"Agricultural Innovation: The Role of Vertical Farming and Hydroponic Systems in Ensuring Global Food Security": 1 +"The Quantum Mind: Interpreting the Implications of Quantum Mechanics on Consciousness and Cognitive Psychology.": 1 +"Quantum Physics Unveiled: Exploring Subatomic Particles through Quantum Field Theory": 1 +"Innovative Programming: Harnessing Machine Learning for Predictive Data Analysis": 1 +"Drama and Theatre: Mastering Character Development through Method Acting Techniques": 1 +"Aesthetic Appreciation: Understanding Cubism through Sculpture and Spatial Concepts": 1 +"Sociology 220: The Impact of Social Media on Cultural Trends: A Comprehensive Examination": 1 +"Web Development: Maximizing User Experience through HTML5 and CSS3": 1 +"Music Production: Exploring Jazz Improvisation with Digital Audio Workstations and MIDI Controllers": 1 +"Physics 210: Application of Infrared Spectroscopy in Climate Science": 1 +"Genetics: Decoding Hereditary Traits Through Mendelian Inheritance": 1 +"Applied Calculus: Understanding Fluid Dynamics through Differential Equations": 1 +"Economic Theory: The Impact of Cryptocurrency on Global Trade: A Study Using Blockchain Analysis": 1 +"Geology Insights: Mapping Seismic Activities with AI: An In-depth Analysis Using Machine Learning": 1 +"Advanced Psychology: Unraveling the Human Mind: A Journey into Cognitive Behavioral Therapy": 1 +"Advanced Algebra: Applying MATLAB in Multivariate Data Interpretation": 1 +"Art: The Evolution of Digital Art: Understanding the Influence of Adobe Creative Cloud": 1 +"Fitness and Wellness: Harnessing Wearable Technology in Personal Health Management: Innovations and Possibilities": 1 +"Culinary Arts: Journey through Asian Cuisine: Tea Ceremonies and Spice Trails": 1 +"Chemistry: Navigating Chemical Kinetics: A Quantum Mechanics Perspective Using Mass Spectrometry": 1 +"Technology: Understanding the Use of Hashgraph in Building Decentralized Apps: Future of Cybersecurity": 1 +"Sociology: The Emergence of Social Media and Its Impact on Modern Society": 1 +"Understanding the Influence of Microprocessors in Modern Robotics and Machine Learning": 1 +"Fundamentals of Game Development: Crafting Augmented Reality Experiences with Unreal Engine and ARKit": 1 +"Comprehensive Analysis of Watercolor Techniques: Navigating Wet-on-Wet, Dry Brush and Salt Methods": 1 +"Global Politics: The Effect of Digital Revolution on the Socioeconomic Structure of the 21st Century": 1 +"Crafting Realism: Mastering Renaissance Art through Charcoal Portraiture ": 1 +"Cultural Studies: The Influence of the Internet on Social Justice Movements in the Information Age": 1 +"Communication Studies: The Power of Social Media Discourse: Examining the Impact of Artificial Intelligence on Data Security through Cloud Systems": 1 +"Songwriting with GarageBand: The Melody of Metaphors in Folk Music using MIDI Controllers": 1 +"Grammar Mastery: Developing Proficiency in English Sentence Structures through Interactive Quizzes and Educational Software": 1 +"Climate Studies: The Essential Role of Conservation in Biodiversity Preservation": 1 +"Physics: Exploring Quantum Mechanics with Optical Lattices and Ultracold Atoms ": 1 +"Advanced Mathematics: A Study of Topology with Knot Theory and the Möbius Strip ": 1 +"Sociology: The Societal Impact of Social Media - A Study Using Structural Functionalism ": 1 +"Modern History: An Analysis of the Cold War's Influence on Modern Democracy ": 1 +"Bioinformatics: Decoding Genomic Sequences with Python Programming and Computational Biology ": 1 +"Philosophy: Understanding Existentialism through the Works of Jean-Paul Sartre and Albert Camus ": 1 +"Digital Art: An Exploration of 3D Modeling and Animation in Contemporary Media ": 1 +"Political Science: A Comparative Study of Political Systems - Democracies vs Authoritarian Regimes ": 1 +"Environmental Science: Climate Change Impact on Biodiversity: A Study Using Ecological Footprint Analysis ": 1 +"Psycholinguistics: The Influence of Bilingualism on Cognitive Development in Children": 1 +"Physics in Action: Exploring Quantum Mechanics through the Double Slit Experiment": 1 +"Mastering Mathematics: Advanced Calculus through Problem Solving and Computer Simulations": 1 +"Introduction to Environmental Science: Understanding Climate Change with Hands-on Experiments": 1 +"Drawing Wildlife: Exploring Graphite Techniques in Capturing Animal Anatomy": 1 +"The Dynamics of Light and Shadow in Watercolor Painting: Utilizing Glazing Techniques in Building Depth and Volume": 1 +"Decoding the Screen: A Critical Examination of Cinematic Storytelling through Sergei Eisenstein's Montage Theory": 1 +"Exploring the Universe: Understanding Astrophysics through the Lens of General Relativity": 1 +"Sociology: Social Media and its Impact on Global Cultures and Interpersonal Relationships": 1 +"Nutritional Science: Exploring the Role of Diet in Cognitive Function and Mental Health": 1 +"Financial Literacy: An Introduction to Stock Market Analysis for Teens Using Online Trading Simulations": 1 +"Physics: Quantum Entanglement Explored with the Use of the IBM Quantum Experience": 1 +"Sustainable Architecture: Exploring Energy Efficiency and Green Building Design through the Lens of Biomimicry": 1 +"Sociology: Breaking Down Social Structures and Power Dynamics through the Study of Intersectionality": 1 +"Environmental Science: Evaluating the Impact of Deforestation on Biodiversity: A Remote Sensing Approach": 1 +"Advanced Lighting in Adobe Illustrator: Harnessing the Power of Gradient Mesh for Digital Art": 1 +"The Art of Typography: Mastering the Subtleties of Kerning, Leading, and Tracking in Graphic Design": 1 +"Astrophysics: The Enigma of Exoplanets - Exploring Stellar Spectroscopy and Radial Velocity": 1 +"Genomics: Unraveling the Secrets of the Human Genome with Next Generation Sequencing Techniques": 1 +"Advanced Mathematics: Exploring the Intricacies of Number Theory and Prime Distribution using MATLAB": 1 +"Art Therapy: The Therapeutic Effects of Mandala Creation on Stress Reduction and Mindfulness": 1 +"Physics 101: Quantum Mechanics in Modern Technology: An Examination of Semiconductors and Superconductors": 1 +"History of Art: The Influence of the Industrial Revolution on the Evolution of Impressionism": 1 +"Environmental Science: Understanding Climate Change through the Lens of Ice Core Data Analysis": 1 +"Political Science 201: The Role of Social Media in Modern Politics and Its Impact on Democracy": 1 +"Advanced Mathematics: Exploring the World of Fractals and Chaos Theory with Mathematica Software": 1 +"Pop Culture and Media: The Impact of Anime on Global Entertainment Industries": 1 +"Astrobiology: The Search for Extraterrestrial Life and the Use of Spectroscopy": 1 +"English 204: Exploring Modern Society through Dystopian Literature": 1 +"Bioinformatics: Decoding the Human Genome with Machine Learning and Big Data Analysis": 1 +"Virtual Reality: Revolutionizing Education through Immersive Learning Experiences": 1 +"Mathematics: Exploring Calculus Concepts through Origami and 3D Modelling": 1 +"Biology: Understanding DNA Replication and Protein Synthesis through Microscopic Studies": 1 +"Computer Engineering: Application of Quantum Computing in Data Encryption": 1 +"Chemistry: Grasping Chemical Reactions through Cooking Experiments": 1 +"Psychology: The Influence of Color on Human Emotion: A Deep Dive into Color Theory": 1 +"Advanced Analytics in Basketball: Utilizing R and PowerBI for Player Performance Analysis": 1 +"The Art of Suspense in Film Production: A Study of Hitchcock's Cinematic Techniques": 1 +"Music Theory: Exploring Syncopation in Jazz and Hip-Hop Lyrics": 1 +"A Practical Approach to Frequency Domain Processing: Making Electronic Music with MATLAB, Reaper, Synthesizers and Pro Tools": 1 +"The Impact of Texture in Acrylic Painting: Mastering the Use of Palette Knives, Brushwork, and Glazing Techniques": 1 +"Marine Biology: Exploring Coral Reefs - An In-Depth Study through Scuba Diving and Multispectral Imaging": 1 +"Economics: Harnessing Big Data to Study Global Trade Patterns and Market Dynamics": 1 +"Artificial Intelligence: Building Intelligent Systems through Deep Learning and TensorFlow": 1 +"Cosmology: Probing the Universe with Planck Satellite and Cosmic Microwave Background Radiation": 1 +"Statistics: Regression Analysis and Probability Theory - A Journey through R Programming and Stochastic Processes": 1 +"Spycraft of the Cold War: The Impact of the Enigma Machine on Global Espionage Tactics": 1 +"Comet Chasers: Decoding Cosmic Mysteries with Rosetta Spacecraft and Comet Composition Studies": 1 +"Advanced Acoustics: Understanding Room Sound - Exploring Absorption Coefficients with the Bruel & Kjaer 2250": 1 +"Quantum Mechanics: Unlocking the Mysteries of Quantum Entanglement - A Journey into Superposition and Teleportation": 1 +"Paleontology 101: Reading Earth's Past through Stratigraphy and Dinosaur Fossils": 1 +"Advanced Algebra: Harnessing Quantum Computing for Cryptography ": 1 +"Literature Study: Analyzing Symbolism in Classical Poetry Using Text Analysis Software": 1 +"Exploring Human Anatomy: Applying Virtual Reality and Magnetic Resonance Imaging to Study the Nervous System": 1 +"Oceanography 101: Discovering Marine Biodiversity through Sonar Imaging and DNA Barcoding": 1 +"Sound Design: Mastering Foley Artistry in Logic Pro X using MIDI Controllers and Scarlett 2i2 Audio Interface": 1 +"World History: The Impact of Social Media on Political Movements and Democracy": 1 +"The Role of Blockchain and Cryptocurrencies in Shaping Future Finance ": 1 +"Astronomy for Beginners: Examining Galaxy Formation through Radio Astronomy": 1 +"Applied Chemistry: Utilizing Mass Spectrometry and Infrared Spectroscopy in Drug Discovery": 1 +"Decoding Microprocessors: Understanding the Application of Quantum Physics in Information Technology.": 1 +"Advanced Biotechnology: Unraveling DNA Sequencing with CRISPR-Cas9 Technology": 1 +"Quantum Physics Unveiled: Understanding Quantum Entanglement with Bell's Theorem": 1 +"Eco-Friendly Architecture: Implementing Green Building Concepts with Energy-Efficient Design and Renewable Materials": 1 +"Junior Astrophysics: Exploring Galaxy Formation with Hubble's Law and Cosmic Microwave Background Radiation": 1 +"Agricultural Engineering: Utilizing Drones for Precision Farming and Crop Health Monitoring": 1 +"Navigating the Deep Web with Tor: Uncovering the Layers of Onion Routing": 1 +"Decoding the Enigma: The Role of Bletchley Park and Alan Turing in Breaking the German Code in WWII": 1 +"Functional MRI in Sports Medicine: Utilizing Blood Oxygen Level-Dependent Imaging to Assess Muscular Health and Performance": 1 +"Computer Science: Demystifying Artificial Intelligence with Python, R, and Keras": 1 +"Adobe Audition and FL Studio for Music Production: Mastering MIDI Sequencing and Digital Audio Workstations": 1 +"Physics in Sports: Understanding the Principles of Aerodynamics in Football": 1 +"The Art of Filmmaking: Storytelling with Adobe Premiere Pro and After Effects": 1 +"Junior Zoology: Exploring Animal Behavior through National Geographic Documentaries": 1 +"Mastering Digital Design: Creating Stunning Visuals with Blender 3D and Photoshop": 1 +"Grammar Mastery: Using Grammarly and Interactive Quizzes to Improve English Writing Skills": 1 +"The Science of Sound: Exploring the Physics of Acoustic Guitar with Audio-Technica AT2020 Microphone": 1 +"Interactive Media: Designing Engaging UI/UX with Sketch and Adobe XD": 1 +"Deep Dive into SQL: Exploring the Synergy between Python and PostgreSQL": 1 +"Computer Science: Docker and GitLab CI/CD: Developing and Deploying eCommerce Web Apps": 1 +"Anthropology: Tracing Human Evolution - From Stone Tools to Digital Technology": 1 +"Advanced Robotics: Programming Autonomous Systems with ROS, OpenCV, and Python": 1 +"Specialized Econometrics: Using R and Python for Financial Data Analysis and Forecasting": 1 +"Integrated Philosophy: The Intersection of Metaphysics, Quantum Physics, and Consciousness": 1 +"Artificial Intelligence: Implementing Natural Language Processing with NLTK and DeepLearning4j": 1 +"The Impact of Renaissance Literature on Modern Sociopolitical Narratives: A Study of Machiavelli and Shakespeare": 1 +"Physical Chemistry: Understanding Molecular Dynamics through Computational Simulation": 1 +"Advanced Human Physiology: Decoding the Immune System with Cellular Biology and Bioinformatics": 1 +"World Literature: Understanding Cultural Empathy through Magical Realism in Latin American Literature": 1 +"The Role of Drone Technology and GIS in Environmental Science: A Study of Climate Change and Ecosystem Dynamics": 1 +"Culinary Science: The Chemistry of Flavor and the Role of Fermentation in Global Cuisine": 1 +"Understanding Poetry: A Deep Dive into Metaphors and Symbolism in Contemporary Literature": 1 +"Advanced Physics: The Role of Quantum Entanglement in the Development of Quantum Computers": 1 +"Digital Marketing: Utilizing SEO and Social Media Algorithms for Effective Online Branding": 1 +"Marine Biology: Evaluating the Impact of Microplastics on Coral Reef Ecosystems": 1 +"World History: The Influence of the Silk Road on the Development of Early Modern Economies": 1 +"Data Science: Predictive Modelling using R Programming and Machine Learning Techniques": 1 +"Organic Chemistry: Investigating Molecular Structures through Spectroscopy": 1 +"Deciphering Ancient Languages: An In-depth Study of Hieroglyphics through Computational Linguistics": 1 +"Astronomy: Probing the Mysteries of Dark Matter using Gravitational Lensing": 1 +"Survival Skills in Arctic Environments: Utilizing Snow and Ice for Shelter and Hydration": 1 +"Physics for Engineers: Harnessing the Power of Renewable Energy through Solar Panel Technology": 1 +"Junior Astronomy: Decoding the Universe through the Hubble Space Telescope and Kepler's Laws": 1 +"Advanced Mathematics: Solving Complex Calculus Problems with Wolfram Alpha and Mathematica": 1 +"Business Management: The Role of Big Data in Strategic Decision Making using Tableau and Power BI": 1 +"Introduction to Robotics: Building and Programming Robots with Lego Mindstorms and Arduino": 1 +"Artificial Intelligence 101: Exploring Machine Learning Algorithms with Python and TensorFlow": 1 +"Advanced Chemistry: Elucidating Reaction Pathways using Spectroscopic Methods and Spartan '18": 1 +"Psychology of Music: Uncovering Emotional Responses with Audio-Visual Stimulation and fMRI Scans": 1 +"Environmental Engineering: Utilization of Green Technologies in Waste Water Treatment for Sustainable Development": 1 +"Physical Computing: Interactive Design and Fabrication with Arduino, Processing and 3D Printing": 1 +"Mathematics: An Insight into Fibonacci's Influence in Modern Architecture": 1 +"Art History: The Impact of Dadaism on Contemporary Graphic Design": 1 +"Sports Science: Enhancing Performance through Aquatic Resistance Training": 1 +"Cybersecurity: Evaluating the Impact of Quantum Computing on Cryptography": 1 +"Neuroscience and Language: Exploring the Influence of Bilingualism on Cognitive Development": 1 +"Technological Impact on Cinematography: The Transition from Celluloid to Digital Filmmaking": 1 +"Creative Writing Techniques: Harnessing the Power of AI Tools like Grammarly and Hemingway Editor": 1 +"Machine Learning for Health Assessment: Leveraging Decision Trees and Random Forests in Predictive Analytics": 1 +"Music Production: The Art of Mixing and Mastering with Ableton Live and FL Studio": 1 +"World History: Understanding the Influence of the Silk Road on Global Trade and Cultural Exchange": 1 +"Exploring Anthropology: A Study of Cultural Diversity through Linguistic Analysis": 1 +"Literature: The Power of Metaphor in Poetry - A Dive into Imagery and Symbolism": 1 +"Literature: Unraveling the Mystery of Agatha Christie's Novels with Audible Library": 1 +"Astrophysics: Grasping the Concept of Black Holes and Their Influence on the Universe": 1 +"Applying the Internet of Things (IoT) for Monitoring and Optimizing Urban Agriculture: An Examination of 10 Innovative Techniques": 1 +"Engineering: Introduction to Drone Technology: An Insight into Infrared Sensors": 1 +"Harmonic Oscillations: A Comprehensive Study of Light Waves using Spectrophotometers": 1 +"Mathematics 210: Utilizing Statistics in Predicting Stock Market Trends: Understanding Mean and Standard Deviation": 1 +"Creating Music with Ableton Live and GarageBand: The Rhythm of Haiku in Classical Sonatas using MIDI Libraries": 1 +"Art: Deciphering the Symbolism of Gothic Architecture in Spanish History through Painting": 1 +"Chemistry: Unveiling the Secrets of Organic Compounds through Spectroscopy": 1 +"Mechanical Engineering: Understanding Fluid Dynamics with Computational Fluid Dynamics Software": 1 +"The Influence of Plato's Theory of Forms on Contemporary Aesthetics and Philosophy ": 1 +"Artistic Expression: Mastering Surrealism with Oil Pastels through Layering Methods": 1 +"Geology: Tracking Plate Tectonic Movements Using GIS Technology": 1 +"Advanced Computer Science: App Development with Java, React Native, and Firebase": 1 +"Introduction to Drone Technology: Creating GPS Guided Systems with Quadcopters and Raspberry Pi": 1 +"Physiology: Understanding Human Metabolism through Clinical Biochemistry and Endocrinology": 1 +"MRI Technology in Cardiology: Deciphering the Heart's Function and Structure": 1 +"Exploring C++, Adobe Audition, and Synthesizers for Sound Design: An Intermediate Guide to Acoustics and Computer Science": 1 +"Physics: The Science of Sound: Acoustic Design and Soundproofing Techniques in Modern Architecture": 1 +"Mathematics: Decoding Cryptography: Understanding Encryption Algorithms through Number Theory": 1 +"Art History: Analyzing Postmodernism through Digital Media: An Exploration of Photoshop Techniques in Contemporary Art": 1 +"Environmental Science: Zero-Waste Lifestyle: Composting and Urban Farming for Sustainable Urban Living": 1 +"Astronomy: Stellar Evolution and Cosmology: Studying Star Formation and Galaxy Clusters through Radio Telescopes": 1 +"Business Management: Virtual Leadership: Navigating Team Dynamics in a Remote Work Environment": 1 +"Computer Science: Machine Learning and Predictive Analytics: Applying Python and R in Public Health Research": 1 +"Biology: The Science of Fermentation: Understanding Microbial Interactions in Cheese Making": 1 +"Sociology: The Impact of Social Media on Youth Culture: An Analysis Using Qualitative Data and Ethnographic Methods": 1 +"Music: Dynamics of Music Composition: Understanding Rhythm and Melody Through Digital Music Production Tools": 1 +"Advanced French Vocabulary: Utilizing Quizlet, Memrise, and Anki for Effective Language Acquisition": 1 +"Physics for Beginners: Understanding Gravity with Paper Airplane Experiments": 1 +"Art Appreciation: A Deep Dive into the Techniques in Impressionist Painting": 1 +"Environmental Science: The Influence of Renewable Energy Technologies on Modern Societies": 1 +"Applied Mathematics: Solving Complex Puzzles with Game Theory and Algorithms": 1 +"Introductory Biology: Exploring Cellular Structures through Microscopic Observation": 1 +"Physical Education: Boosting Agility and Stamina through Track and Field Activities": 1 +"Neuropsychology: Decoding Human Behavior through fMRI and EEG Studies ": 1 +"Evaluating the Role of Greenhouse Technology in Sustainable Horticulture": 1 +"Elementary Geology: Investigating Tectonic Plate Movements and the Earthquake Phenomenon": 1 +"Exploring Mayan Civilization: Utilizing LIDAR Technology in Uncovering Hidden Structures and Ancient Cityscapes": 1 +"Satellite Imagery in History: Deciphering Cold War Strategies and Implications": 1 +"Health and Fitness: Integrating Fitbit Sleep Tracking and Calorie Counting in Personal Wellness Management": 1 +"Genetic Programming: Revolutionizing Software Development through DNA Computing and Quantum Algorithms": 1 +"Music Production: Mastering Ableton Live's Operator FM Synth for Advanced Soundscaping in Electronic Dance Music": 1 +"Behavioural Economics: Unraveling Psychological Triggers in Consumer Spending and Market Trends": 1 +"Bacteriology Basics: Exploring Pathogen Identification through Gram Staining and Flow Cytometry": 1 +"Green Engineering: Harnessing Wind Turbines and Hydroelectric Dams in Sustainable Energy Production": 1 +"The Impact of AI Technology on Precision Agriculture and High-Throughput Phenotyping": 1 +"Artistry in Motion: Embracing Kinetic Sculpture with Metals and Mechanised Movement Techniques": 1 +"Physics Explained: Quantum Mechanics in Modern Technology - Using Quantum Dots in Solar Cells": 1 +"Mathematics: Advanced Calculus in Neural Networks: A Deep Dive into Backpropagation": 1 +"Psychological Anthropology: Exploring the Impact of Social Media on Collective Memory and Identity Formation": 1 +"Art History 201: Interpreting Religious Symbolism in Renaissance Paintings through Cultural Context and Artistic Techniques": 1 +"Computer Engineering: Understanding the Fundamentals of Microprocessor Architecture and Embedded Systems Design": 1 +"Ancient Civilizations: The Role of the Printing Press in the Spread of Information during the Renaissance": 1 +"French Literature: Deciphering Existential Themes in Albert Camus's Works through Philosophical Lens and Narrative Analysis": 1 +"Biology: Exploring Genetic Patterns in Evolutionary Biology through DNA Sequencing and Phylogenetic Trees": 1 +"Chemistry: Investigating the Role of Catalysts in Industrial Processes: Case Study on Haber-Bosch Process": 1 +"Economics: Analyzing Trends in Global Trade Agreements using Econometrics and Time Series Analysis": 1 +"Computational Physics: Quantum Mechanics and Wave Function Simulation with Python": 1 +"The Technicalities of Sculpture: Understanding Proportions through Geometry": 1 +"Sustainable Architecture: Implementing Green Building Practices in Urban Planning": 1 +"Statistics: Predictive Modeling in Basketball Analytics using R": 1 +"Neuropsychology: Studying the Effects of Meditation on Brain Activity through EEG": 1 +"Economics 301: Investigating Global Economic Inequality and Redistribution Policies": 1 +"Microbiology: Exploring the Role of Bacteriophages in Antibiotic Resistance": 1 +"History 305: The Influence of the Transcontinental Railroad on Industrial Expansion": 1 +"Physics: Understanding Quantum Field Theory through Feynman Diagrams with Mathematica": 1 +"Geology: Exploring Earth's Evolution through Plate Tectonics using GIS Software": 1 +"Merging Philosophy and Physics: An Interdisciplinary Approach to Understanding Quantum Mechanics": 1 +"The Role of Biochemistry in Brewing: An Exploration of Beer Making Processes": 1 +"Artificial Intelligence in Gaming: Exploring Procedural Generation and Machine Learning": 1 +"The Impact of Greek Mythology on Contemporary Literature and Film": 1 +"Cryptography: Unraveling the Complexity of RSA Algorithms and Quantum Computing": 1 +"The Evolution of Jazz: The Influence and Impact of the Saxophone ": 1 +"The Intersection of Astronomy and Religion: The Influence of Celestial Bodies on Ancient Civilizations": 1 +"The Impact of the Printing Press on Renaissance Art and the Dissemination of Knowledge": 1 +"The Influence of the Industrial Revolution on Victorian Literature": 1 +"Microbiology and Medicine: Understanding Antibiotic Resistance through Pathogen Genomics": 1 +"Advanced Chemistry: Discovering Biochemical Reactions with Augmented Reality and Molecular Modelling Tools": 1 +"Cryptography for Beginners: Enhancing Security with Quantum Computing and Blockchain Applications": 1 +"Environmental Science: The Impact of Green Roofs and Vertical Gardens on Urban Heat Island Effect": 1 +"Digital Arts for Kids: Animation Creation using Adobe Animate and Stop Motion Studio": 1 +"Sports Science: The Use of Wearable Technology and AI in Monitoring Athlete Performance and Recovery": 1 +"Political Science: Analyzing the Effects of Social Media Campaigns in Modern Elections using Data Visualization Tools": 1 +"Biology: Understanding Evolution through Virtual Reality and Gene Simulation Experiments": 1 +"World Literature: Exploring the Influence of Dante’s Inferno on Contemporary Horror Genre using Text-Mining Techniques": 1 +"Music Education: Enhancing Music Theory and Composition Skills using Digital Audio Workstations and MIDI Controllers": 1 +"Unearthing the Impact of Ancient Greek Mythology on Modern Cinema through Film Analysis and Semiotics.": 1 +"Chemistry: Exploring Organic Compounds - A Deep Dive into Green Chemistry Practices": 1 +"Physics: Quantum Mechanics and the Study of Particle-Wave Duality using Double-Slit Experiment": 1 +"Art History: Decoding Symbolism and Allegory in the Renaissance Artwork": 1 +"Linguistics: Deciphering Ancient Scripts - An Exploration of the Rosetta Stone": 1 +"Mathematics: Exploring the World of Topology through the Lens of Mobius Strips and Klein Bottles": 1 +"The Evolution of Augmented Reality in Healthcare: A Comprehensive Study on AR Assisted Surgeries": 1 +"Astrophysics: Black Hole Observations using X-ray Spectroscopy and Infrared Imaging": 1 +"The Impact of Artificial Intelligence on Music Production: An Insight into Algorithmic Composition": 1 +"Philosophy: The Ethical Implications of Transhumanism - A Discourse on Biohacking and Genetic Engineering": 1 +"Bio-engineering: Exploring the Potential of Hydrogels in Tissue Engineering and Regenerative Medicine": 1 +"Advanced Course in Mechanical Engineering: Constructing Efficient Aircraft Design using CFD, CAD, and Wind Tunnel Testing": 1 +"Quantum Computing: Solving Complex Problems using Superposition and Entanglement": 1 +"Environmental Health: Utilizing GIS Technology in Pollution Mapping and Risk Assessment": 1 +"Astrophysics Essentials: Exploring Black Holes, Dark Matter and Gravitational Waves": 1 +"Foundation of Software Engineering: Application Development with Java, Spring Boot, Angular, and Hibernate Framework": 1 +"Art History: An Introduction to Renaissance Painting Techniques and their Impact on Visual Perception": 1 +"Cybersecurity: Implementing Intrusion Detection Systems for Robust Financial Transactions: A Deep Dive into Blockchain Technology": 1 +"Health and Wellness: The Role of Fitbit's Wearable Technology in Personalized Fitness Programs": 1 +"Digital Signal Processing: The Importance of Fourier Transform in Image Processing": 1 +"Advanced Algebra: Solving Linear Equations using the Ancient Egyptian Method of False Position": 1 +"Digital Marketing: Exploiting YouTube and Google AdWords for Brand Awareness in the Fashion Industry: A Comprehensive Approach": 1 +"Advanced Course on Financial Analytics: R, Power BI, Regression Analysis, Data Mining, and Random Forest": 1 +"Internet Anatomy: Exploring IP Routing with Wireshark Packet Analyzer": 1 +"Sharp Thinkers: An In-depth Analysis of Inductive Reasoning and Syllogistic Logic using R": 1 +"Chemistry: Introduction to Organic Chemistry: Carbon Compounds - Using Spectrometry for Molecule Identification": 1 +"Global History: The Era of Industrial Revolution, the Steam Engine, and the Impact of Rail Transportation": 1 +"Environmental Science: Exploring Ecosystem Dynamics and Conservation using Remote Sensing": 1 +"Starting with Artificial Intelligence: Using TensorFlow for Predictive Data Analysis": 1 +"Music Technology: Mastering Digital Audio Workstations - Sound Design with Ableton Live ": 1 +"Advanced Mathematics: The Importance of Calculus and Linear Algebra in Cryptography Analysis": 1 +"Implications of Metaphors in Poetry: Understanding the Power of Imagery": 1 +"Data Science: Employing TensorFlow for Image Classification in Machine Learning": 1 +"Physics: Electromagnetic Waves: A Comprehensive Study of Radio Frequency Identification in Wireless Communication": 1 +"Craftsmanship: Essential Woodworking Techniques in Furniture Design and Construction": 1 +"Astronomical Algorithms: An In-depth Study of Kepler's Laws in Orbit Prediction": 1 +"Applied Chemistry: Mastering the Technique of Titration and Concentration Calculation in Acid-Base Reactions": 1 +"Computational Philosophy: Diving into Propositional Calculus with Python, Jupyter Notebooks, and Logical Operators": 1 +"Interpreting the Impact of Virtual Reality on Physical Training in Football": 1 +"Advanced Spanish: Decoding Linguistic Patterns with Duolingo, Google Translate and Grammarly": 1 +"Digital Logic Fundamentals: Deciphering XOR Gates in Digital Circuit Design using VHDL and FPGA": 1 +"Physics and Harmonic Oscillations: An Exploration of Pendulum Waves using Raspberry Pi": 1 +"A Comprehensive Review of Monetary Policies: Applying Machine Learning for Trend Analysis of Inflation": 1 +"Visual Arts: Creating Sculptures with Recycled Materials in Augmented Reality: The Importance of 3D Printing with AutoCAD": 1 +"A Detailed Examination of Genetic Algorithms: A Deep Dive into Binary Strings in Artificial Intelligence using PyTorch": 1 +"Geometry: Unraveling the Fibonacci Sequence in Gothic Architecture using Advanced 3D Modeling": 1 +"Environmental Themes in French Poetry: An Examination of Wind Energy Conversion Systems through Eco-linguistics": 1 +"Sound Design: Utilizing Logic Pro X to Integrate Ambient Sounds into Digital Synthesis": 1 +"Enzyme Kinetics: A Quantitative Approach Using Python and DNA Sequence Analysis with BioPython": 1 +"Software Development: Mastering Software Architecture with UML and Microservices": 1 +"Advanced Physical Education: Discovering Gymnastics Techniques through Modern Training Methods": 1 +"Mathematics: Unraveling the Complexity of Fractals through Computer Algorithms ": 1 +"Chemistry: Understanding Chemical Reactions - A Detailed Study of Catalysis and Spectroscopy": 1 +"Psychoanalysis: Tracing the Evolution of Freud's Dream Interpretation Theory ": 1 +"Advanced Astronomy: Interpreting Cosmic Phenomena through Gamma-Ray Burst Observations": 1 +"Neuroscience: Exploring Brain Plasticity - Correlation between Neural Networks and Learning ": 1 +"Artificial Intelligence: Reinforcement Learning and its Applications in Smart Grid Technology": 1 +"Exploring the Impact of Climate Change on Wildlife Migration using Data Analytics": 1 +"Mastering the Violin: A Comprehensive Guide to Bowing Techniques and Posture": 1 +"The Influence of Quantum Mechanics on Modern Telecommunications": 1 +"Architecture: The Art and Science of Building Eco-Friendly Skyscrapers": 1 +"Advancing Space Exploration: Application of Quantum Physics in Satellite Navigation and 3D Modeling of Stellar Constellations": 1 +"Sustainable Fashion Designing: Incorporating Biofabrication Techniques for Zero Waste Production": 1 +"Advanced Health Education: Utilizing Fitbit Activity Trackers, AI Technology and the Concept of Basal Metabolic Rate for Diet and Exercise Planning": 1 +"Information Technology: Maximizing Google Cloud Services for Efficient E-commerce Website Development": 1 +"World History: Understanding Political Turmoil through Epic Poetry and Symbolic Portrayal": 1 +"Microeconomics: Cross-Sectional Analysis and Game Theory for Strategic Planning": 1 +"Chemistry and Pharmacology: Delving into Drug Synthesis and Personalized Medicine through Genomic Data": 1 +"Introductory Programming: Creating Interactive Web Pages with JavaScript, HTML and CSS": 1 +"Applying Machine Learning Algorithms in the Study of Behavioral Economics and Decision Making Processes": 1 +"A Comprehensive Guide to Set Theory for Novices: Understanding Venn Diagrams and Cardinality in Discrete Mathematics": 1 +"Meteorology: The Role of Polar Vortex in Shaping Seasonal Climate Variations": 1 +"Philosophy 102: A Deeper Dive into Deductive Reasoning and Argument Analysis": 1 +"Accounting: Implementing Machine Learning for Efficient Financial Forecasting with QuickBooks": 1 +"Sports Psychology: Utilizing Virtual Reality for Performance Enhancement and Fear Conditioning": 1 +"Nutrition Science: Exploring the Impact of Dietary Interventions on Metabolic Health with MyFitnessPal": 1 +"Genetic Engineering: An In-depth Analysis of CRISPR-Cas9 Applications with Python and Big Data Analytics": 1 +"Literary Criticism: Deciphering Absurdism through Albert Camus's 'The Stranger'": 1 +"Neuroscience and Music: Analyzing the Effects of Melody on Neural Plasticity Using fMRI": 1 +"Fun with Quantum Mechanics: An Exploration of Quantum Entanglement and Wave-Particle Duality": 1 +"Art History: Unveiling the Influence of Digital Media on Postmodern Art Installations": 1 +"Critical Reasoning: Understanding Philosophical Arguments through Syllogistic Logic": 1 +"Alternative Energy: Understanding the Chemistry of Hydrogen Fuel Cells": 1 +"Mastering Spotify Premium: Curating Jazz Playlists for Event Management": 1 +"Visual Design: Creating Vector Illustrations using Adobe Illustrator": 1 +"Photography 101: Mastering Lightroom for Professional Image Editing": 1 +"Sound Engineering: Modulating Sound Waves in Electronic Music Production using Ableton Live 10 ": 1 +"Middle School Earth Science: Exploring Tectonic Movements Through Seismic Waves": 1 +"Advanced Agritech: Utilizing Drones, Artificial Intelligence, and Data Analytics in Precision Farming": 1 +"Higher Algebra: Understanding the Beauty of Symmetry and Group Theory through Mathematical Modelling": 1 +"Art and Symbolism: Exploring the Use of Metaphor in Literature - A Perspective through Narrative Techniques": 1 +"Technological Transformation: The Role of Robotic Process Automation in Waste Management": 1 +"Musicology: Expanding Harmonic Analysis and Orchestration Skills using Virtual Instruments and Sequencers": 1 +"Secondary Education: Exploring Global History through Interactive Time-Lines and 3D Printing Technology": 1 +"Physics: Grasping Electromagnetic Waves through Quantum Field Theory": 1 +"Cultural Expeditions: The Samurai Era and Its Impact on Contemporary Japanese Architecture ": 1 +"Creative Writing: The Power of Metaphor in Climate Change Narratives": 1 +"Utilization of Lidar Technology in Forest Conservation: A Review on High-Resolution Mapping for Biodiversity Protection": 1 +"Mathematics 220: The Influence of Gravity on Vector Calculus in Orbital Mechanics": 1 +"Artistic Expression: Perfecting Cubism with Oil Pastels using Grisaille Techniques": 1 +"Literature: Analyzing Prose through Blogging, PowerPoint, and Google Docs for Visual Storytelling": 1 +"Deep Learning and Neural Networks: Unleashing the Power of Convolutional Networks in Image Recognition": 1 +"Advanced Physics: Exploring Quantum Mechanics and String Theory with Python": 1 +"Music: Decoding the Art of Jazz Improvisation through MIDI Sequencing in Ableton Live with the use of Auto-Tune Pro": 1 +"Economics: Understanding Supply Chain Costing for Industrial Production Planning": 1 +"Accounting: The Science of Cash Flow Analysis with Xero": 1 +"Utilizing MongoDB in Social Media Analytics for Evaluating Local Bookstore's Market Position: A Deep Dive into 10 Strategic Management Tools": 1 +"Decoding Spotify's Algorithm: An In-depth Analysis of Music Streaming Business Models and Data Mining Techniques with TensorFlow in Natural Language Processing": 1 +"Bioscience: The Impact of Proteomics in Precision Oncology: A Detailed Study of CAR-T Cell Therapies": 1 +"Art: Mastering Oil Painting and Color Theory": 1 +"Geometry: The Golden Ratio in Contemporary Product Design: A Detailed Exploration with CAD Technology": 1 +"Unveiling the Wind: Investigating Wind Power's Role in Mitigating Global Warming": 1 +"Endangered Species and Ecology: A Deep Dive into the Impact of Deforestation on Biodiversity": 1 +"Biochemistry Explained: Unraveling the Secrets of DNA using Genome Sequencing Tools": 1 +"Cosmic Particles: Exploring Neutrinos using the IceCube Observatory and Particle Analysis": 1 +"Neuropsychology Basics: Analyzing Human Behavior through PET Scans": 1 +"Cracking the Code of Mathematics: Understanding Fractals through Computer Algorithms and Calculus": 1 +"The Confluence of Globalization and Music: Tracing the Evolution of Hip Hop through Digital Sampling Techniques": 1 +"Augmented Reality in Architecture: An Extensive Analysis on Advanced Technologies for Innovative Design": 1 +"Engineering 101 for Youth: Learning Fluid Dynamics through Water Tunnel Experiments and Computational Techniques": 1 +"Behavioral Neuroscience: Decoding Emotions using EEG and Functional Brain Imaging Techniques": 1 +"Immersive Technology: Enhancing Surgical Techniques with Augmented Reality": 1 +"In-Depth Spanish: Mastering Conversation and Grammar with Duolingo": 1 +"Physics: Navigating Time and Space with Quantum Mechanics": 1 +"Computer Science: Unlocking Cryptography with Quantum Computing": 1 +"Environmental Studies: The Impact of Solar Energy on Sustainable Living - The Future of Photovoltaic Cells": 1 +"Advanced Calculus: Understanding Chaos Theory through Nonlinear Dynamics in MATLAB": 1 +"Bioinformatics 101: Unlocking the Secrets of the Human Genome through Next-Generation Sequencing": 1 +"Water Resource Management: Utilizing Machine Learning in Hydrological Modelling for Conservation Efforts": 1 +"The Telegraph and the Rise of Morse Code: Understanding Communication Systems in the Victorian Era": 1 +"French Merchant Language in the Age of Enlightenment: The Role of Windmill Technology": 1 +"Human History: The Impact of Print Media and Social Networking on the Renaissance to Modern Era Transition": 1 +"Quantum Computing, IoT, and Their Effects on Environmental Management: An Extensive Look at Technological Progress in Conservation": 1 +"Advanced Physics: Understanding Relativity and Time Dilation through Simulation Software": 1 +"Photoshop's Layer Styles Deciphered: A Comprehensive Study into Information Technology and Graphic Design": 1 +"Biology: Utilizing Bioinformatics in DNA Sequencing to Address Climate Change: An In-depth Look into Conservation Genomics": 1 +"Ethics: Employing Statistical Evaluation to Enhance Corporate Social Responsibility in Business Leadership": 1 +"Programming Protectors: Venture into Data Privacy with Hash Functions": 1 +"Dance: Analyzing the Biomechanics of Ballet using Motion Capture Technology": 1 +"Programming for Preteens: Introduction to Machine Learning with Blockly": 1 +"Senior Genetics: Examining Gene's Functions with CRISPR, Microarrays and Next Generation Sequencing Technology": 1 +"Physics Mysteries: Unfolding Quantum Mechanics through Practical Laser Experiments and Nanotechnology": 1 +"Sport Psychology: Utilizing Cognitive Behavioral Techniques for Optimal Performance Enhancement": 1 +"Arts in Education: Enhancing Learning Experience through Augmented Reality and Holography Tools": 1 +"Ethics 101: Understanding Moral Dilemmas through Kantian Deontological Framework and Virtue Ethics": 1 +"Geology: Unearthing Ancient Volcanic Activities Using Seismic Data and Ground Penetrating Radar Technology": 1 +"Exploring Python in Artificial Intelligence: An In-depth Study of Neural Networks and Deep Learning": 1 +"The Healing Power of Mozart's Sonata: A Psychoacoustic Analysis in Music Therapy": 1 +"Historical Evolution of Physics: An Extensive Study on the Progression of Atomic Theory": 1 +"Aesthetics: The Influence of Surrealism in Salvador Dali's Interpretation of Art": 1 +"Advanced Mathematics: Fractals and Chaos Theory in Nature - An Exploration on Nonlinear Dynamics": 1 +"Astrophysics: Utilizing Radio Telescopes for Mapping the Universe": 1 +"The Art of Dance: Exploring Ballet Techniques with Contemporary Choreography and Motion Capture": 1 +"Modern Politics: The Role of Social Media in Shaping Public Opinion - Case of Cambridge Analytica": 1 +"Finance: Increasing Profitability through Cryptocurrency Trading and Blockchain Technology": 1 +"Advanced Robotics: Implementing Artificial Intelligence in Autonomous Vehicle Navigation": 1 +"Decoding Human Genome: Advanced Techniques in Genomic Medicine and DNA Microarray": 1 +"Physics of Vision: Understanding Light Perception through Retinal Imaging": 1 +"Data Science: Predictive Modeling using Python and Big Data Analytics": 1 +"Implementing Magnetic Resonance Imaging for Spinal Cord Studies: A Neurological Approach": 1 +"JavaScript & React: Building Interactive Web Applications from Scratch": 1 +"Mathematics: The Impact of Fractal Geometry in Modern Architecture and Design": 1 +"Audio Engineering: Exploring Spatial Audio in Virtual Reality for Immersive Experiences": 1 +"Fine Arts: The Integration of Augmented Reality in Contemporary Sculpture and Installation Art": 1 +"Data Security: Examining Blockchain Technology in the Protection of Personal Health Information": 1 +"Literature Studies: The Influence of Gothic Literature on Modern Psychological Thrillers and Film Noir": 1 +"Software Engineering: The Role of Python in Automated Trading and Financial Analysis": 1 +"Advanced Animation: Utilizing Motion Capture Technology in Character Development for CGI Movies": 1 +"Health & Fitness: Implementing Virtual Reality for Rehabilitation and Physical Therapy Programs": 1 +"Geology: Understanding Tectonic Plate Movements through Seismic Wave Analysis and Earthquake Predictive Models": 1 +"Literature Studies: Exploring Postmodernism in Graphic Novels and its Influence on Cultural Commentary": 1 +"Exploring Climate Change Patterns using GIS and RStudio: A Comprehensive Approach": 1 +"Game Theory in Cinema Production: Maximizing Profit through Strategic Planning and Decision Analysis": 1 +"Decoding the Human Genome: A Study in Bioinformatics using Python, Machine Learning, and Sequence Alignment Algorithms": 1 +"The Impact of Social Media on Global Politics: A Comprehensive Analysis of Twitter Diplomacy and Cyber Warfare": 1 +"Understanding the Influence of YouTube on the Evolution of Stand-up Comedy: An Economic Perspective": 1 +"The Science of Sleep: A Study on Sleep Stages and Circadian Rhythms using EEG and Machine Learning Algorithms": 1 +"The Digital Renaissance: The Impact of Virtual Reality on Art Appreciation and Museum Exhibitions": 1 +"Astronomy 101: Unraveling the Secrets of the Universe through Hubble Space Telescope Images and Stellar Spectroscopy": 1 +"Epidemiology and Data Science: Predictive Modeling of Disease Spread using Python, R, and Monte Carlo Simulation": 1 +"Behavioral Finance: Understanding Market Anomalies through the Prism of Cognitive Biases and Prospect Theory.": 1 +"Physics: Unveiling Quantum Mechanics through Particle Accelerators and Feynman Diagrams": 1 +"Advanced Sculpting: Evolution of 3D Design in Contemporary Art with CAD Software": 1 +"Computational Linguistics: Dissecting Language Patterns with Machine Learning and Natural Language Processing": 1 +"Geography: Exploring Climate Change with Satellite Imagery and GIS Mapping": 1 +"Music Theory: Understanding Harmonic Structures with Fourier Transform and Spectral Analysis": 1 +"Microbiology: Pathogenic Bacteria Identification Using Gram Stain and MALDI-TOF Mass Spectrometry": 1 +"Computer Science: Designing User Interfaces with Adobe XD for Enhanced User Experience": 1 +"Astrophysics: Unraveling Dark Matter Theories with Cosmic Microwave Background Radiation": 1 +"Environmental Science: Investigating Soil Erosion Patterns through Remote Sensing and GIS Technology": 1 +"Artificial Intelligence: Implementing Neural Networks in Facial Recognition with TensorFlow and Python": 1 +"Chemistry: Unveiling the Secrets of Photosynthesis - A Deep Dive into Chloroplasts": 1 +"Exploring Virtual Reality for Rehabilitation in Sports Medicine and Physical Therapy": 1 +"The Impact of Satirical Literature on Public Opinion during the French Revolution": 1 +"Geology: Utilizing Satellite Imaging in Tracking Plate Tectonics - Understanding Earthquakes and Volcanoes": 1 +"Psychology: Decoding Human Behavior through Freudian Analysis and Cognitive Mapping": 1 +"Music and Mathematics: Exploring Patterns and Symmetry in Classical Compositions with MATLAB": 1 +"The Interplay of Electromagnetic Waves in Information Technology: An Insight into Wireless Communication": 1 +"World History: Experiencing Ancient Rome through Augmented Reality ": 1 +"Astrophysics: Probing the Universe with X-Ray Telescopes - A Detailed Study of Black Holes": 1 +"Computational Neuroscience: Understanding Neural Networks through Artificial Intelligence Algorithms": 1 +"Physics 101: Understanding Quantum Mechanics Through the Lens of String Theory": 1 +"World History 300: Analyzing the Impact of the Silk Road on Global Trade and Cultural Exchange": 1 +"Drama Studies: The Role of Soliloquies in Shaping Character Development in Shakespearean Plays": 1 +"Computer Science 200: The Influence of Machine Learning and Data Mining in Predictive Analytics": 1 +"Environmental Studies 101: Evaluating the Effects of Plastic Pollution on Marine Ecosystems using GIS Technology": 1 +"Philosophy 120: The Intersection of Existentialism and Absurdism in Modern Literature": 1 +"Biochemistry 150: Protein Folding and Enzyme Kinetics: A Study in Molecular Dynamics": 1 +"Visual Arts 110: Deconstructing the Use of Light and Shadow in Baroque Painting": 1 +"Advanced Mathematics: Unraveling Chaos Theory with the Butterfly Effect and Fractal Geometry": 1 +"Critical Thinking 102: Applying Inductive Reasoning and Probability Theory in Decision Making.": 1 +"Physics: Exploring Quantum Entanglement with Superconducting Circuits and Quantum Computing": 1 +"Culinary Arts: Understanding Molecular Gastronomy with Sous-Vide and Liquid Nitrogen Techniques": 1 +"Sociology: Utilizing Social Media Analytics in the Study of Modern Political Movements": 1 +"Architecture: Integrating Augmented Reality and 3D Printing in Urban Planning": 1 +"Zoology: Leveraging DNA Barcoding and GIS Mapping in Biodiversity Conservation": 1 +"Computer Science: An In-depth Study of Cryptography and Quantum Algorithms in Cybersecurity": 1 +"Photography: Exploiting Drone Technology for Aerial Imagery in Wildlife Documentaries": 1 +"Meteorology: Implementing Machine Learning Algorithms in Climate Modelling and Weather Forecasting": 1 +"Art History: The Impact of Digital Art and Virtual Reality in Contemporary Aesthetics": 1 +"Statistics: Application of Bayesian Networks and Python Programming in Predictive Analytics": 1 +"Chemistry: Application of Spectroscopy in Environmental Analysis": 1 +"Anthropology: The Influence of Language on Cultural Identity": 1 +"Advanced Pottery Techniques: Exploration of Raku Firing and Glaze Development": 1 +"Physics: The Principles of Light - Exploring Color Perception with Spectrometers": 1 +"Mathematics: Investigating Game Theory with Python: Strategies, Predictions and Equilibriums": 1 +"Art History: The Impact of Surrealism on Modern Graphic Design": 1 +"Biology: The Role of Bacteria in Human Health - Unravelling Gut Microbiome with Metagenomics": 1 +"Cybersecurity: The Role of Cryptography in Safeguarding Online Transactions": 1 +"Advanced C++ Programming: Multithreading, Concurrency, and Efficient Memory Management": 1 +"Geography: The Impact of Climate Change on Global Migration Patterns": 1 +"Sociology 101: Investigating Gaming Culture: A Comprehensive Study on Video Game Addiction and Social Impact": 1 +"Advanced Statistical Analysis: Applying Probability Theory and Regression Models in R with Bayesian Networks": 1 +"International Relations 101: Evaluating the Influence of Climate Change on Global Politics: An Analysis through Realism and Liberalism": 1 +"Profound Understanding of Ambient Music: An Extensive Examination of Synthesizers and Looping Techniques in Ableton Live": 1 +"Literature Study: Gothic Novels and their Depiction of the Supernatural: An Exploration with Natural Language Processing": 1 +"Computational Linguistics: Decoding Political Rhetoric: Analyzing Sentiment and Bias using Text Mining in Python": 1 +"Innovative Storytelling: Merging Science Fiction Tropes and Symbolism in Virtual Reality using Interactive Narrative Design": 1 +"Comprehensive Web Design: HTML5, JavaScript, AngularJS, Responsive Design and Application of SVG Animations": 1 +"Evidence-Based Coaching: Utilizing PowerBI, R Programming, Machine Learning and Data Visualization in Basketball Performance Metrics": 1 +"Country Chronicles: Delving into Bluegrass Music and its Connection with Appalachian Coal Mining": 1 +"Chemistry: Mastering Organic Synthesis with the Use of Mass Spectrometry Techniques": 1 +"Advanced Mathematics: Harnessing the Power of Differential Equations in Engineering Applications": 1 +"Computer Engineering: Deep Learning and Neural Networks with Tensorflow and Keras": 1 +"Sustainable Energy: Insights into Wind Turbine Design and Renewable Energy Conversion": 1 +"Astronomy: Gravitational Waves and the LIGO Experiment: A New Era in Space Exploration": 1 +"Biotechnology: Exploring Genetic Engineering through CRISPR-Cas9 Technology": 1 +"Advanced Statistics for Epidemiological Studies: Utilizing R and Bioconductor for Genomic Data Analysis": 1 +"Data Visualization: Interactive Dashboard Creation using Tableau and PowerBI": 1 +"Biology: Understanding Cellular Respiration through Mitochondrial Electron Transport Chain Experiments": 1 +"Psychology: The Effect of Virtual Reality Therapy on Post-Traumatic Stress Disorder: A Comprehensive Study": 1 +"Chemistry: Understanding Chemical Reactions through the Lens of Fireworks and Pyrotechnics": 1 +"Advanced Mathematics: Exploring Fractal Geometry through the Mandelbrot and Julia Sets": 1 +"Botanical Studies: Unveiling Plant Adaptations with a Focus on Cacti and Succulents": 1 +"Computer Programming: Designing Virtual Worlds with Java - An Introduction to Game Development using Unity": 1 +"Decoding Symbolism: The Use of Nature Imagery in Romantic Poetry in English Literature": 1 +"Sports Science: Investigating the Biomechanics of Swimming with Motion Analysis and Efficiency Metrics": 1 +"World History: The Impact of Industrial Revolution - A Chronological Study of Economic Shifts and Cultural Transformations": 1 +"Virtual Reality, Adobe Illustrator, and the Future of 3D Modelling Techniques": 1 +"The Significance of Computational Fluid Dynamics in Designing Aerodynamic Vehicles for Green Transportation": 1 +"Microbiology: Delving into Bacterial Pathogenesis and Antibiotic Resistance using Genome Sequencing.": 1 +"Biology 102: Examining the Role of Microbes in the Brewing Industry": 1 +"Environmental Science: The Impact of Renewable Energy Technologies on Climate Change": 1 +"Cybersecurity: Protecting Financial Institutions with Advanced Encryption Algorithms": 1 +"Psychology of Art: Exploring the Influence of Picasso on Modern Abstract Expressionism": 1 +"Sociology: Application of Data Analytics in Understanding Urban Development Patterns": 1 +"Chemistry in Cuisine: Understanding Molecular Gastronomy with 3D Food Printing": 1 +"The Evolution of Film: The Role of CGI in Modern Cinematic Storytelling": 1 +"Gaming and Economics: Analysing the Virtual Economy in MMORPGs using Statistical Software": 1 +"Architectural Studies: Application of Augmented Reality in Modern Urban Planning": 1 +"The Science of Dance: Biomechanical Analysis of Ballet Techniques": 1 +"Physics: Quantum Mechanics Explored - An In-Depth Study of Quantum Entanglement and Superposition with MATLAB": 1 +"Mathematics: Advanced Calculus - Exploring Geometric Series and Polar Coordinates through 3D Graphing Tools": 1 +"Ecology: The Science of Biodiversity - An Analysis of Ecosystem Dynamics Using GIS and Statistical Modelling": 1 +"Chemistry: Molecular Structures and their Interactions - Unveiling the World of Atoms through Spectroscopy and Crystallography": 1 +"Ethics: A Deeper Understanding of Justice - Applying Rawls's Theory of Justice in Contemporary Dilemmas": 1 +"Genetics: Unraveling the Mystery of DNA Methylation - A Detailed Analysis using Next-Generation Sequencing and Bioinformatics": 1 +"Cognitive Science: Exploring Consciousness - An Advanced Study of Dream Patterns and Sleep Cycles Using EEG and fMRI": 1 +"JavaScript for Meteorological Data Analysis: A Deep Dive into Climate Models, MapReduce Algorithms, and Real-Time Weather Forecasting": 1 +"Business: The Impact of Social Media on Restaurant Economics - An Analysis with Tableau and Google Analytics": 1 +"Decoding Basketball Tactics: A Comprehensive Study Using R and Data Visualization Techniques": 1 +"Chemistry for Children: Exploring the Periodic Table through Interactive Experiments": 1 +"Mathematics Mastery: Understanding the Principles of Calculus through Real-World Applications": 1 +"Anatomy Basics: A Deep Dive into Human Physiology using Virtual Reality Technology": 1 +"Advanced Ecology: The Role of Coral Reefs in Maintaining Marine Biodiversity": 1 +"Ethics in AI: Exploring the Moral Implications of Machine Learning Systems": 1 +"Economics 101: Analyzing the Influence of Trade Policies on National Economies": 1 +"History Revisited: Decoding Ancient Civilizations through Archaeological Findings": 1 +"Art Appreciation: A Study of Renaissance Masterpieces using Virtual Museum Tours": 1 +"Robotics: Exploring Autonomous Navigation using Raspberry Pi and Python": 1 +"Geology Unearthed: Harnessing Satellite Imagery for Predicting Natural Disasters": 1 +"Advanced Photography: Unveiling the Power of Lightroom for Image Retouching in Fashion Industry": 1 +"Physical Therapy: Utilizing the Fitbit App for Evaluating Patient Movement and Recovery": 1 +"3D Modeling: Harnessing Blender Software for Character Design in Virtual Reality Platforms": 1 +"Understanding Rhythm: The Physics Behind Percussion Instruments in Jazz Music": 1 +"Artificial Intelligence Foundations: Diving into Neural Networks Using TensorFlow and Python": 1 +"FinTech Innovations: Mastering Mobile Payments with Blockchain and Distributed Ledger Technology": 1 +"Literature and Statistics: Analyzing Narrative Structures through Regression Analysis with Stata ": 1 +"Culinary Science: Exploring the Art of Molecular Gastronomy and Its Influence on Taste and Aroma ": 1 +"Climate Change Analysis using R programming, ggplot2 Library, and RStudio Interface ": 1 +"Psychology: Administering Cognitive Behavioral Therapy to Explore Emotional Regulation through Art Therapy": 1 +"Art History: Journey through Renaissance Painting: Understanding Symbolism and Perspective": 1 +"Astrophysics: Navigating the Universe: Exploring Black Holes and Quantum Mechanics using MATLAB": 1 +"Environmental Studies: Biodiversity Conservation Strategies and Advanced Geographic Information System (GIS) Applications": 1 +"Physical Education: Advanced Athletics: Developing Performance and Recovery Techniques with Sports Psychology": 1 +"Mathematics: Exploring the Realm of Calculus: Differentiation and Integration Unveiled": 1 +"High School: Comprehensive Guide to Magnetism and Electrical Circuits with Simulink for Dynamic System Modeling": 1 +"Big Data in Healthcare: The Impact on Patient Care and Health Policy Formulation": 1 +"Anthropology: Understanding Society Through the Lens of Comparative Religion": 1 +"Chemistry: Nanotechnology in Everyday Life: Synthesis and Applications": 1 +"Neural Engineering: Optimizing Brain-Computer Interfaces with Machine Learning and Electroencephalography (EEG) Techniques": 1 +"Charcoal and Cortex: Sketching Neural Networks with Charcoal Sticks": 1 +"Anthropology: Exploring the Influence of Industrial Revolution on Surrealism": 1 +"Language and Science: Virtual Learning about Climate Change and Renewable Energy": 1 +"Physics: Quantum Mechanics - Decoding the Mystery of Schrödinger's Cat": 1 +"Physics for Toddlers: Exploring the World of Light and Shadows Using Prisms": 1 +"Advanced Microbiology: Unraveling Pathogenicity through Genome Sequencing and Bioinformatics": 1 +"Art: The Intersection of Sculpture and Literature using Virtual Reality Technology": 1 +"Music: Harmonies of the World: Perfecting the Skill of Arranging and Conducting with AI Software": 1 +"Psychology: Decoding Human Behavior Through Psychoanalysis": 1 +"Machine Learning and Deep Learning: Revolutionizing Health Care": 1 +"The Evolution of Virtual Reality Gaming: Understanding the Impact of Unreal Engine and Advanced Rendering Techniques": 1 +"Organic Farming: The Role of Vermiculture and Biofertilizers in Sustainable Agriculture": 1 +"Exercise Physiology: Investigating Muscle Fatigue using Electromyography and the MyoWare Sensor": 1 +"Global Politics: The Impact of Social Media on Electoral Processes in the Digital Age": 1 +"Decoding the Brain's Response to Sugar: A Comprehensive Examination of Glucose, Dopamine, fMRI, and Positron Emission Tomography (PET)": 1 +"Design: Exploring the Intersection of Architecture and Sound Using Acoustic Simulation Software": 1 +"Mastering Digital Animation in Cinema 4D: A Cross-Disciplinary Approach to Computer Science and Film Production": 1 +"Historical Preservation: The Influence of Drones and 3D Imaging in Restoring Cultural Heritage Sites": 1 +"Business: Applying Machine Learning in Predictive Analytics for Retail Supply Chain Management": 1 +"String Theory in Modern Physics: An In-depth Analysis on Extra Dimensions and Brane-worlds.": 1 +"Advanced Analytics in Sports: Integrating Machine Learning with Sports Science for Tactical Decision Making": 1 +"Quantum Physics: An Exploration of Quantum Entanglement and Superposition with the aid of Quantum Computing": 1 +"Understanding the Influence of Virtual Reality on Human Psychology: A Comprehensive Study Proposing 10 Therapeutic Applications": 1 +"Mathematics: Incorporating Chaos Theory in Economic Modelling and its Effect on Predictive Analytics using Python": 1 +"An In-depth Look into Software Engineering: Developing Interactive Video Games with Unity and C#": 1 +"Political Science: Cryptocurrency, Data Privacy, and their Effect on International Relations and Democracy": 1 +"Geography: The Impact of Artificial Intelligence in Urban Planning and its Implications on Societal Structures": 1 +"Chemistry: Decoding Molecular Structures - An Extensive Review of Organic Reactions with Infrared Spectroscopy and Mass Spectrometry": 1 +"Language Arts: Postmodern Literature - Dissecting Themes and Characters using Deconstructive Criticism": 1 +"Business 101: The Role of Social Media Marketing in the Evolution of Fashion Industry": 1 +"Psychology: The Role of Cognitive Behavioral Therapy in Managing Anxiety Disorders": 1 +"Organic Chemistry: The Art of Alchemy - Unveiling the Mysteries of Hydrocarbon Reactions": 1 +"Textile History: Silk Road, Spinning Wheels, and the Evolution of Global Trade": 1 +"Ethics: Deconstructing the Utilitarian Approach in Contemporary Ethical Dilemmas: A Study on Kant's Categorical Imperative": 1 +"Computer Science: The Revolution of Machine Learning in Predictive Analytics": 1 +"Environmental Science: The Role of Climate Change in the Decline of Pollinators and the Emergence of Agroecology as a Countermeasure": 1 +"Astrophysics: The Understanding of Dark Matter through the Lens of Gravitational Lensing": 1 +"Astrobiology: The Search for Extraterrestrial Life through Spectroscopic Analysis": 1 +"Computational Chemistry: Gaussian in Simulating Molecule Structures and Reactivity Using Hartree-Fock Theory": 1 +"Programming 260: Mastering Java Programming & Web Development with Spring Boot: Advanced Data Visualization with D3.js": 1 +"Psychology 201: The Metaphor of Music: Understanding Human Emotion through Harmonic Analysis": 1 +"Astrophysics: Traversing the Universe: Stellar Spectroscopy through Radio Astronomy": 1 +"Geometry: Advanced Techniques in Triangulation for Nautical Navigation using Sextants": 1 +"Advanced Agricultural Studies: Statistical Modeling for Crop Yield Prediction using R": 1 +"Athletic Science: Peak Performance - Advanced Biomechanics and VO2 Max Analysis in Marathon Running": 1 +"Health and Dietetics: Exploring the Nutritional Benefits of the Mediterranean Diet: Fats, Fiber, and Phytonutrients": 1 +"Genetic Engineering: Manipulating Genetic Expression: Disease Treatment using RNA Interference": 1 +"Educational Technology: Virtual Reality Applications in Teaching Elementary Mathematics: An Interactive Approach": 1 +"In-Depth Examination of Neural Synapses: Visualization using Confocal Microscopy and Patch Clamp Techniques": 1 +"Art Theory: The Power of Perspective in Oil Painting: Depth, Shadow, and Light with the Use of Vanishing Points": 1 +"Art History: Decoding the Symbolism in Renaissance Paintings using Digital Imaging Techniques": 1 +"Cybersecurity: Ethical Hacking - A Comprehensive Guide to Penetration Testing": 1 +"Biology: The Intricate World of Mycology - Studying Fungi using Modern Microscopy Techniques": 1 +"Computer Science: Mastering Python - From Data Structures to Machine Learning": 1 +"Geography: Understanding Global Climate Patterns through Satellite Imaging Analysis": 1 +"Advanced Statistics: Predictive Analytics - Time Series Analysis using R": 1 +"Physics: Unveiling Quantum Mechanics through Mathematical Modelling": 1 +"Health and Wellness: Utilizing Wearable Technology in Sleep Studies": 1 +"Theatre: A Study of Stagecraft - Lighting Design in Broadway Productions using CAD Software": 1 +"Philosophy in Robotics: Navigating Autonomy and Responsibility in Automated Systems": 1 +"Cultural Anthropology: Examining Social Hierarchies in Primate Societies": 1 +"Advanced Programming: Understanding Data Structures and Algorithms in C++": 1 +"Kinesthetic Learning: Developing Spatial Awareness through Augmented Reality Games": 1 +"Visual Communication: The Role of Color Theory in Digital Media Design": 1 +"Gastronomy: The Science of Flavour Profiling and Food Pairings": 1 +"Quantitative Analysis in Social Psychology: Utilizing R for Predictive Modelling": 1 +"Fitness and Nutrition: Enhancing Strength and Flexibility through Yoga and Resistance Training": 1 +"Unraveling the Internet: An In-depth Look at IPv6 and Network Routing": 1 +"Exploring the Chemistry of Light and Colour with Spectrometry": 1 +"Young Botanists: Investigating Plant Growth and Photosynthesis through Timelapse Videography": 1 +"Advanced Calculus: Diving Deeper into Differential Equations": 1 +"Ethics in Animation: Exploring Morality through Pixar's Storytelling": 1 +"Astronomy for Beginners: Navigating the Cosmos through Telescope Observation and Stellar Cartography": 1 +"Economics: Unraveling Microeconomics through Game Theory and Nash Equilibrium": 1 +"Music Theory: Understanding Harmonics through Fourier Transforms and Spectrum Analysis": 1 +"Mastering Adobe Illustrator's Pen Tool: An In-depth Look at Vector Art in Graphic Design": 1 +"The Craft of Poetry: The Power of Metaphor in Expressive Literature": 1 +"Biology for Teens: Discovering Photosynthesis through Chlorophyll Spectrometry": 1 +"Psychology: Understanding Human Behavior through the Lens of Cognitive Bias ": 1 +"Practical Science: Exploring the Periodic Table through Exciting Experiments and Flame Tests": 1 +"Biology: Gene Editing Techniques - A Comprehensive Study of CRISPR-Cas9": 1 +"Chemistry: Advanced Material Science: Exploring Nanotechnology and Its Applications": 1 +"Health Education: The Influence of Digital Media on Adolescent Health Behaviors": 1 +"Digital Art: Virtual Reality in Contemporary Art - Practice and Theory with Oculus Rift": 1 +"Statistics: Practical Applications of Probability Theories in Stock Market Predictions": 1 +"World History: The Impact of Social Media on Modern Political Revolutions": 1 +"Psychology: Using Functional Magnetic Resonance Imaging (fMRI) to Study the Effects of Meditation on the Brain": 1 +"Biomechanics: Understanding Movement through Wearable Technology and Its Role in Injury Prevention": 1 +"Communication Studies: The Evolution of Podcasting - An Examination of Digital Storytelling Techniques": 1 +"Computational Linguistics: Analyzing Sentiment in Social Media Posts using Natural Language Processing in Java": 1 +"Applied Physics: Quantum Mechanics and Nanotechnology through the Prism of Schrödinger's Equation": 1 +"Art History: Deciphering the Symbolism in Medieval Iconography using Digital Image Processing": 1 +"Musicology: The Evolution of Jazz: A Deep Dive into Improvisation Techniques": 1 +"Sociolinguistics: Language Evolution and Cultural Identity: A Study using Corpus Linguistics Tools": 1 +"Bioengineering: Introduction to Biomechanics and its Applications in Prosthetic Design": 1 +"Exploring Cryptology: Unveiling the Secrets of Symmetric Key Cryptography ": 1 +"Applied Mathematics: Solving Complex Problems through Numerical Analysis with MATLAB": 1 +"Astronomy: Navigating the Cosmos: Stellar Evolution, Neutron Stars, and Pulsars": 1 +"Ecology: Assessing Climate Change Impacts on Coral Reefs: A Dive into Marine Biology Field Methods": 1 +"Computational Neuroscience: Understanding Neural Networks through Machine Learning Models using Python": 1 +"The Application of Machine Learning in Predictive Analytics: A Data Science Perspective": 1 +"World Literature: Deciphering Cultural Identities through Post-Colonial Texts and Literary Criticism": 1 +"Advanced Biotechnology: Genomic Sequencing and CRISPR Technology in Genetic Disease Treatment ": 1 +"Physics: Quantum Mechanics in Understanding the Universe and Space-Time Fabric": 1 +"Marketing Management: The Influence of Social Media Algorithms on Consumer Behavior": 1 +"Interpreting Weather Patterns through Atmospheric Physics: The Impact of Monsoons on Agricultural Yield": 1 +"Visualizing Financial Data: A Comprehensive Guide to Tableau for Market Analysis": 1 +"Culinary Chemistry: Understanding Fermentation - The Science Behind Sourdough Bread Making": 1 +"The Therapeutic Potential of Augmented Reality and Haptic Feedback in Occupational Therapy: An In-depth Medical Technique Review": 1 +"Software Development: Building Your First Mobile App with Swift": 1 +"Astronomy: The Use of Stellar Spectroscopy in Identifying Chemical Compositions of Stars": 1 +"Physics: Quantum Mechanics and its Application in Nanotechnology: A detailed look at Quantum Dots": 1 +"Computer Science: Machine Learning with Java: Predictive Policing in Urban Areas": 1 +"Environmental Science: Studying the Impact of Deforestation on Local Climate using GIS and Remote Sensing": 1 +"Theoretical Physics: Exploring Superconductivity through the BCS Theory": 1 +"The Intricacies of Byzantine Art: A Thorough Examination of Iconoclasm Movement": 1 +"Psychology: The Role of Music in Cognitive Development - An Examination of Mozart Effect": 1 +"Biochemistry: Understanding Metabolic Pathways through the use of 13C-NMR Spectroscopy": 1 +"Geology: Investigating Tectonic Activity: A Closer Look at Seismic Waves": 1 +"Anthropology: The Influence of Silk Road Trade on Cultural Exchange: An Archaeological Perspective.": 1 +"Advanced Physics: Quantum Mechanics and String Theory using Mathematical Modelling": 1 +"Biology in Practice: The Role of Proteins in Cell Function using Microscopy and Spectroscopy Techniques": 1 +"Physics: Unveiling The Universe - The Significance of Light Speed": 1 +"Advanced Bioinformatics: Proteomic Data Analysis using Machine Learning, Python Programming, Predictive Modeling and Mass Spectrometry": 1 +"Understanding the Beauty of Oil Painting: Mastering Textures, Tones, and Techniques with Palette Knives": 1 +"Literature: The Art of Narration: Narrative Structure and Character Development through the Lens of Semiotic Analysis": 1 +"Geography: Exploring Cultural Landscapes through Ethnographic Fieldwork Techniques": 1 +"Maximizing Sports Performance: Utilizing Machine Learning in Performance Analysis using Python and Quantitative Data Analysis": 1 +"Music: Harmonics and Melodies in Electronic Music: An In-Depth Study of Synthesizers": 1 +"Mathematics: Predictive Modelling for Financial Markets with R, Probability Theory, Time Series and Machine Learning Algorithms": 1 +"Physics: Quantum Mechanics and the Double-Slit Experiment: A Comprehensive Approach": 1 +"Biology: The Evolutionary Impact of Pandemics on Human Immunity: A Genome-Wide Analysis": 1 +"Sociology: The Impact of Social Media on Modern Society: An Analytical Perspective": 1 +"Advanced Calculus: Understanding the Fundamentals of Differential Equations through Real World Applications": 1 +"Consumer Behavior: Decoding Purchase Patterns with Big Data and Predictive Analytics": 1 +"Literature: The Evolution of Dystopian Fiction and its Reflections on Society": 1 +"Visual Arts: The Renaissance Era and the Influence of Linear Perspective in Painting": 1 +"Environmental Studies: Climate Change and Renewable Energy Solutions: A Detailed Study Using GIS Technology": 1 +"Chemistry: The Magic of Organic Reactions: Understanding Catalysis and Reaction Mechanisms": 1 +"Agriculture: Sustainable Farming Practices and The Future of Agroecology: A Case Study Approach": 1 +"Chemistry 101: Understanding Chemical Reactions through Molecular Modelling Techniques": 1 +"Exploring the Universe: Astrophysics and the Impact of Gravitational Waves": 1 +"Culinary Science: The Art of Molecular Gastronomy and Its Influence on Modern Cuisine ": 1 +"Sustainable Architecture: An Analysis of Eco-Friendly Building Materials and Techniques in Urban Planning": 1 +"Advanced Robotics: Incorporating Machine Learning Algorithms in Prosthetic Devices": 1 +"Music and the Brain: Exploring the Effects of Rhythm on Cognitive Processes ": 1 +"Digital Marketing Strategy: Utilising Social Media Analytics for Business Growth": 1 +"Cybersecurity Essentials: An Introduction to Cryptography and Network Security using Python ": 1 +"Biomechanics of Sport: An Examination of Kinesiology in Enhancing Athletic Performance": 1 +"Psycholinguistics 101: Decoding Language Processing and Cognition with Neurolinguistic Programming.": 1 +"Psychology: The Impact of Virtual Reality on Emotional Responses: A Study Utilizing Oculus Rift and Biofeedback Sensors": 1 +"Sociology: The Role of Anime in Youth Subcultures: A Global Analysis of Online Discourse": 1 +"Environmental Studies: The Impact of Climate Change on Coral Reefs: A Study Using Underwater Drones and 3D Mapping": 1 +"Computer Science: The Application of Quantum Computing in Cryptography: Exploring Qiskit and Post-Quantum Algorithms": 1 +"Biochemistry: Decoding Genetic Information with Bioinformatics: Using BLAST, Clustal Omega, and Phylogenetic Analysis": 1 +"Unraveling the Mysteries of Ancient Greek Architecture: Using Ground Penetrating Radar and 3D Reconstruction in Archaeology": 1 +"Physics: Quantum Mechanics in the Digital Age: Understanding Quantum Bits and Superposition with IBM Quantum Experience": 1 +"The Digital Renaissance: The Influence of Augmented Reality on Contemporary Art and Audience Engagement": 1 +"Forensic Anthropology: The Use of DNA Sequencing and Isotope Analysis in Identifying Unmarked Graves": 1 +"Astronomy: The Study of Exoplanets: Utilizing Kepler Data and Advanced Spectroscopy Techniques in Modern Astrophysics": 1 +"Sociology: Understanding Consumer Behaviour through Market Research Tools": 1 +"Data Science: Machine Learning and Data Visualization: A Comprehensive Guide to Big Data": 1 +"Political Science: The Influence of Propaganda in Contemporary Media: An Examination on Machiavelli's Theories": 1 +"Biochemistry: Exploring Protein Structure through Nuclear Magnetic Resonance and Cryo-Electron Microscopy": 1 +"Information Technology: Fundamentals of Java Programming and Data Mining Methods": 1 +"Astronomy: The Dynamics of Galaxy Formation Interpreted with Radio Telescopes": 1 +"Critical Thinking 101: An Introduction to Informal Logic with Fallacies and Argument Analysis": 1 +"Arguments and Deduction: The Art of Persuasion using Modal Logic in Debate": 1 +"Elementary Education Mathematics: Exploring the Growth Patterns of Plants under Different Light Conditions": 1 +"Nanophotonics in Quantum Physics: An In-depth Understanding of Laser Scanning Microscopy": 1 +"Advanced Java: Navigating Data Structures, Implementing Machine Learning Algorithms, and Application of Spring Boot Framework": 1 +"Physics of Light: A Detailed Examination of Spectrometers and the Phenomena of Diffraction": 1 +"Assessing the Role of Aerial Photography in Enhancing Virtual Reality Gaming Experiences": 1 +"Physical Chemistry: Exploring Crystallography using Open Babel, Jmol, and the Theory of Quantum Mechanics": 1 +"Stargazers: Decrypting Galactic Enigmas through Hubble Space Telescope and Radio Astronomy": 1 +"Art: Abstract Impressions: An Insight into Cubism and Fauvism Techniques": 1 +"Art: The Impact of Enlightenment Philosophy on Neoclassical Art": 1 +"Cosmology: An In-depth Exploration of Dark Matter using Particle Accelerators and Quantum Field Theory Simulations": 1 +"Biology: Understanding Photosynthesis and Cellular Respiration through Isotope Tracers": 1 +"Economics: The Economic Influence of E-commerce on Global Trade Patterns Through Predictive Modeling and Big Data Analysis": 1 +"Advanced Poetry: Unveiling Metaphysical Thought in Contemporary Sonnets through Deconstructionist Approaches": 1 +"Integrative Genomics: Examining DNA Methylation Patterns in Cancer Cells using Next-Generation Sequencing": 1 +"Senior Psychology: Unraveling Human Consciousness with Functional Magnetic Resonance Imaging": 1 +"Fine Arts: Harnessing the Power of Neo-Impressionism in Oil Pastel Drawings": 1 +"Athletics and Society: The Influence of Capoeira in Brazilian Social Movements through Biomechanical Analysis": 1 +"The Fibonacci Sequence: Mathematicians and Engineers Investigating Fractal Patterns with 3D Printing": 1 +"Philosophy and Literature: Understanding Nietzsche's Philosophy through Interactive Graphic Novels": 1 +"Digital Media: Utilizing Pro Tools for Sound Design in Film Production - Creating Atmospheres": 1 +"Physics: Decoding the Paradox of Quantum Tunneling through Wave Mechanics": 1 +"Cosmology: The Effect of Black Holes on the Universe: String Theory and Loop Quantum Gravity": 1 +"Advanced Geometry: Unraveling the Mystery of Fractals in Nature Using Python": 1 +"The Impact of Virtual Reality on Architectural Design: Understanding Spatial Perception with Oculus": 1 +"Introduction to Machine Learning: Predicting Financial Market Trends using Python and Pandas": 1 +"Psychology of Advertising: Decoding Consumer Behaviour through Neuromarketing Strategies": 1 +"Astrophysics 101: Understanding the Expansion of the Universe Through Dark Matter and Energy": 1 +"Application of Biomechanics in Dance: A Kinesiology Course on Movement Analysis": 1 +"Sociology of Social Media: Investigating Online Behaviours and Echo Chambers with Data Analytics": 1 +"Mobile App Development: Building Your First Android App with Kotlin": 1 +"Photography: Capturing the Majesty of Wildlife through Macro Techniques": 1 +"Organic Chemistry: Unveiling the Secrets of Enzyme Catalysis via Isotope Labeling Techniques": 1 +"Eco-Poetry: Interpreting Climate Change through Lyrical Narratives and Spoken Word Artistry": 1 +"Applied Quantum Mechanics: Understanding Subatomic Particles through the Lense of Particle Accelerator Technology": 1 +"Cinema Studies: The Representation of Samurai Culture in Japanese Animation: A Study in Manga and Anime": 1 +"Neurolinguistics: Unraveling Language Processing in the Brain through Functional Magnetic Resonance Imaging": 1 +"Sociological Exploration: The Impact of Video Gaming on Peer Interaction and Social Skills Development": 1 +"Cellular Biochemistry: Profound Examination of Mitochondrial Function using Spectrophotometry and Enzyme Assays": 1 +"Genomics: Discovering Genetic Variation and Evolution using Next Generation Sequencing Technologies": 1 +"Philosophy of Science: Evaluating Scientific Methods through the Prism of Epistemological Theories": 1 +"Music Theory: Exploring Harmonic Structures in Jazz using Schenkerian Analysis": 1 +"Cultural Documentation: Heritage, Artifacts, and Digital Preservation - Exploring the Potential of Blockchain Technology": 1 +"Biotechnology: Harnessing CRISPR-Cas9 for Genome Editing and Medical Breakthroughs": 1 +"Mathematics: Understanding the Beauty of Fractals through Recursive Algorithms and Chaos Theory": 1 +"World History: Evaluating the Implications of the Silk Road Trade Routes on Globalization and Cultural Exchange": 1 +"Decoding Urban Landscapes: Exploring Socio-Economic Patterns through Satellite Imagery and Predictive Modeling": 1 +"Creative Writing: Interactive Storytelling and World Building in Virtual Reality Environments": 1 +"Macroeconomics: Inflation Dynamics, Monetary Policies, and the Role of Central Banks in Economic Stabilization": 1 +"Critical Thinking: Deconstructing Propaganda Techniques using Semiotics, Cognitive Biases, and Discourse Analysis": 1 +"Marketing: Utilizing Big Data and Sentiment Analysis in Predicting Consumer Behavior - A Study with Python and Apache Hadoop": 1 +"Astrophysics: Probing Dark Matter and the Expansion of the Universe using Neutrino Detectors and the Theory of Relativity": 1 +"Innovative Perspectives on Thermodynamics: Exploring Entropy and Heat Engines through Molecular Dynamics Simulations.": 1 +"Chemistry: Unveiling the Mysteries of Organic Compounds through Spectroscopy and Mass Spectrometry": 1 +"Geography: Urbanization and its Impact on Surface Water Quality - A Remote Sensing Approach": 1 +"Mathematics: The Essence of Cryptography - Exploring the Intricacies of Prime Numbers and Encryption Algorithms": 1 +"Biology: The Role of Epigenetics in Evolution - A Detailed Study of DNA Methylation": 1 +"Artificial Intelligence: The Impact of Machine Learning in Medical Diagnosis - A Comprehensive Analysis using Neural Networks": 1 +"Physics: Unraveling the Properties of Light - A Deep Dive into Wave-Particle Duality": 1 +"Sociology: The Impact of Social Media on Teenage Self-Perception - A Quantitative Analysis": 1 +"Astronomy: Understanding Star Formation and Stellar Evolution through the Hertzsprung-Russell Diagram": 1 +"Economics: The Role of Fiscal Policy in Economic Stability: An Examination of Keynesian Economics": 1 +"Philosophy: The Stoic Approach to Emotional Resilience - A Study of Epictetus' Enchiridion.": 1 +"Astrophysics: Unveiling the Universe through Spectroscopy and Radio Astronomy": 1 +"Rhythms of the Earth: The Role of Percussion Instruments in Tribal Cultures": 1 +"Predictive Analytics in Sports: Game Strategy Planning Using Machine Learning, Python, and Logistic Regression": 1 +"Exploring Microbial Worlds: A Dive into the Use of Electron Microscopy in Microbiology": 1 +"Mastering Cybersecurity: A Comprehensive Guide to Network Defense with Wireshark and Intrusion Detection Systems": 1 +"Game Changers: The Adventure of Game Development with Virtual Reality": 1 +"The Art of Pixels: The Emergence and Techniques of Digital Painting": 1 +"Literary Perspectives: The Influence of Feminism on Modern Literature Through Narrative Techniques": 1 +"Environmental Science: Decoding Climate Change through Paleoclimatology and Ice Core Data": 1 +"Inclusive Education: Harnessing the Power of Assistive Technology for Special Needs Education": 1 +"Exploring Cosmic Riddles: An Examination of Dark Matter and Energy through Astrophysics": 1 +"Bioethics: A Detailed Study on the Ethical Implications of Stem Cell Research": 1 +"Computer Graphics: Transforming Realities with OpenGL Rendering Techniques": 1 +"Financial Mastery: The Intricacies of Derivatives and Options Trading in Modern Day Investment": 1 +"Interactive Learning: Educating Children on Environmental Conservation through Virtual Reality": 1 +"Advanced Game Design: Incorporating Unity, C#, and Physics Engines for an Immersive Gaming Experience": 1 +"Deciphering Cryptography: An Introduction to Cipher Suites and the Principles of Information Security": 1 +"The Art of Monochrome: A Deconstruction of Shadows and Tones in Charcoal Sketching Techniques": 1 +"Understanding Piano Harmonics: A Dissection of Overtones and Pitch Using Spectrum Analyzers": 1 +"Applying Linear Regression Models in R for Predictive Analytics in Behavioral Economics": 1 +"Astrophysics: Unfolding the Mysteries of Quantum Mechanics through String Theory": 1 +"Microbiology: The Role of Bacteriophages in Environmental Ecosystems: An Overview of Virology": 1 +"Optical Physics: Understanding Light Behavior through the Principles of Refraction and Diffraction": 1 +"Philosophy: The Influence of Quantum Physics on Existentialism - The Uncertainty Principle Perspective": 1 +"The Use of Matlab in Complex Numerical Calculations: An Advanced Physics Approach": 1 +"Introductory Chemistry: Decoding the Secrets of Matter with Spectroscopy and Crystallography": 1 +"Business Analytics: Navigating Market Trends Using Machine Learning for Strategic Planning": 1 +"High School Geography: Discovering Climate Change Through Atmospheric Pressure Patterns": 1 +"Mastering Cryptographic Algorithms and Security Protocols with Java Programming": 1 +"Advanced Calculus: The Power of Infinite Series in Fourier Analysis": 1 +"Quantum Mechanics: The Mystery of Dark Matter - A Deep Dive into Cosmic Puzzles": 1 +"Mathematics: Exploring the Beauty of Chaos Theory through Fractal Geometry": 1 +"Anthropology: Cultural Dynamics in the Age of Globalization: The Evolution of Cosmopolitanism": 1 +"Philosophy: A Comprehensive Study of Existentialism and Absurdism": 1 +"Digital Media 210: Introduction to Interactive Storytelling with Virtual Reality and Unity Engine": 1 +"Literature: Deconstructing the Linguistics of Political Discourse: Applying Pragmatics and Semiotics": 1 +"Business Management 202: The Impact of Behavioral Economics on Organizational Decision Making": 1 +"Medieval History: The Dark Ages - The Dawn of Gothic Architecture": 1 +"Sports Science: Improving Basketball Shooting Efficiency with Motion Tracking Devices using Biomechanical Analysis.": 1 +"Art: The Effect of Globalization on Contemporary Art Styles - Detailed Study of Graffiti.": 1 +"Astrophysics: Unveiling Stellar Evolution through Spectroscopy": 1 +"French Poetry: Exploring the Metaphors in Charles Baudelaire's Les Fleurs du Mal in the Light of Symbolism": 1 +"Linguistics: A Comprehensive Analysis of Noam Chomsky's Transformational-Generative Grammar Theory": 1 +"Neuroscience: Investigating the Effects of Deep Brain Stimulation on Parkinson's Disease: A Review of Twenty Clinical Trials": 1 +"Calculus: A Comprehensive Guide to Differential and Integral Calculus using the Wolfram Mathematica Software": 1 +"Inorganic Chemistry: Understanding Crystallography and X-ray Diffraction Techniques with Diamond Light Source": 1 +"Digital Art: Enhancing Visual Narratives with Adobe Creative Cloud Suite": 1 +"Mycology: Fungal Genomics and the Impact of Pathogenic Fungi on Human Health": 1 +"Artificial Intelligence and its Role in Shaping the Future of Cybersecurity: An Examination of AI's Ethical Dilemmas and Twenty Potential Solutions": 1 +"Gastronomy: The Science of Molecular Gastronomy and its Role in Modern Cuisine": 1 +"Molecular Biology: Protein Folding and Misfolding - Insights into Neurodegenerative Diseases": 1 +"Mathematics 210: Understanding Market Trends with Statistical Analysis and Probability Theory": 1 +"Creative Writing in Spanish: Storytelling through Magical Realism and the use of Final Draft Screenwriting Software": 1 +"Chemistry: The Chemistry of Coffee - From Roasting to Brewing": 1 +"Cultural Anthropology: A Multi-sensory Exploration of Food Traditions across Cultures": 1 +"Advanced Geometry: Applying Topology and Fractal Geometry using Matlab": 1 +"Primary Science: Learning about Weather Patterns using Simple Experiments and Observations": 1 +"Political Science: The Rise and Impact of Populism: A Study through Critical Discourse Analysis": 1 +"Remote Sensing: Monitoring Climate Change through Multispectral Imagery Analysis": 1 +"Art and Science: Using X-ray Radiography for Art Authentication and Restoration": 1 +"The Applications of Quantum Computing in Modern Cryptography": 1 +"Astronomy 101: The Power of Stars - An Exploration of Stellar Evolution": 1 +"Calculus Revealed: An Examination of Economic Theories through Differential Equations": 1 +"Sociology: Understanding Global Cultures through the Lens of Social Media": 1 +"Fine Arts: Abstract Expressionism: An Exploration in Oil Painting Techniques": 1 +"Advanced Botany: Deciphering Fungal Interactions through Scanning Electron Microscopy": 1 +"Biochemistry: The Wonders of Protein Folding through X-ray Crystallography": 1 +"International Relations: The Impact of Neo-realism on Middle East Foreign Policies in the 21st Century": 1 +"Theology 101: Grasping Existence through Zen Buddhism and the Paradox of Self": 1 +"Data Science: Mastering R Programming with Shiny App Development and SQL Integration": 1 +"Physics: The Role of Nanotechnology in Advancing Quantum Mechanics": 1 +"Environmental Science: Utilizing Geospatial Mapping for Biodiversity Conservation: A Deep Dive into GIS Technology": 1 +"Computer Science: Harnessing Deep Learning for Visual Recognition: Practical Applications and Future Implications": 1 +"Foreign Languages: Utilizing Rosetta Stone and Duolingo for Effective Language Acquisition": 1 +"Digital Forensics: Exploring Intrusion Detection Systems through Machine Learning Techniques": 1 +"History: Understanding the French Revolution through Digital Humanities and Data Analysis Tools": 1 +"Statistics: The Role of Probability and Regression Analysis in Predictive Analytics": 1 +"Fine Arts: The Essence of Sculpting Techniques Using Clay": 1 +"Advanced Geometry: Exploring Polygons through Geometric Proofs and Theorems": 1 +"Chemistry: The Art of Organic Synthesis in Pharmaceutical Drug Development": 1 +"Physics: Exploring Quantum Mechanics with the Double Slit Experiment": 1 +"Virtual Simulation in Healthcare: Incorporating VR and Haptic Feedback in Surgical Training": 1 +"Sociolinguistics: The Role of Language in Social Identity Formation: A Cross-Cultural Study": 1 +"The Rise of Social Media: Ethical Considerations and Privacy Concerns in the Digital Age": 1 +"Art History: The Renaissance and Its Impact: Investigating Da Vinci's Influence on Portraiture": 1 +"Introduction to Behavioral Economics: Understanding Decision Making through Prospect Theory": 1 +"Advanced Programming: Java, Unity, and the Implementation of Multiplayer Networking for Virtual Reality Games": 1 +"Biology: The Fascinating World of Genetics: Exploring DNA Sequencing and Genomic Editing": 1 +"Advanced Statistics: Machine Learning Approaches in R for Predictive Modelling": 1 +"Environmental Science: Climate Change and Its Impact: A Closer Look at Carbon Footprint and Renewable Energy Solutions.": 1 +"Decoding Digital Art: A Deep Dive into 3D Modeling and Virtual Reality": 1 +"Advanced Geometry: Exploring the Fourth Dimension and Non-Euclidean Spaces with Python": 1 +"Data Science in Weather Prediction: Practical Guide to Regression Analysis Using R": 1 +"The Science of Music: Comprehending the Acoustics and Psychoacoustics of Sound with Ableton Live": 1 +"Sociology: Deciphering European Cultural Diversity through Virtual Reality and 360-degree Videography": 1 +"Star Gazers: Unraveling the Secrets of the Universe with Kepler Spacecraft and Stellar Spectroscopy": 1 +"French: Expressing Political Ideologies through Haiku: A Study of Symbolic Language": 1 +"Chemistry for Curious Minds: Unfolding the Mysteries of Matter through Microscopy and Spectroscopy": 1 +"Archaeology: Ancient Architectural Wonders and the Evolution of Urban Planning": 1 +"Understanding Blockchain Technology in Fintech: Ethical and Security Implications with 10 Solutions": 1 +"Chemistry & Robotics: Exploring Material Science for Sustainable Energy Solutions": 1 +"Understanding the Art Market: Economic Trends and Investor Behavior through Data Analytics": 1 +"Environmental Studies: The Role of Satellite Imaging and GIS in Tracking Climate Change": 1 +"Astrophysics: Black Holes and Einstein's Theory of Relativity - Implications in Space Exploration": 1 +"Diving into Anthropology: Unraveling Cultural Patterns through Symbolic Interactionism": 1 +"Data Science: Using Machine Learning in Health Research - An In-depth Study of Predictive Analytics": 1 +"Biology for Kids: Exploring Cell Structures with Microscope Experiments at Home": 1 +"Introduction to Ethics: The Foundations of Moral Philosophy for Novices": 1 +"Accounting: Utilizing Cloud-Based Tools for Efficient Tax and Revenue Management": 1 +"Psychology and Finance: Understanding Behavioral Economics through Prospect Theory": 1 +"Advanced Pharmacology: Investigating Drug Interactions Through Liquid Chromatography-Mass Spectrometry (LC-MS)": 1 +"In-depth Study of Piano Acoustics: Understanding Timbre and Harmonics through Fourier Analysis": 1 +"Computer Engineering 201: Exploring Machine Learning through Neural Networks and Python": 1 +"Geology: Unveiling Earth's History through Plate Tectonics and Seismology ": 1 +"Advanced Genetics: Decoding the Human Genome with CRISPR-Cas9 Gene Editing Technique": 1 +"Engineering Physics: Investigating Material Properties through Scanning Electron Microscopy (SEM)": 1 +"Modern Literature: Interpreting Symbolism in Postmodernist Poetry": 1 +"Astrophysics: Understanding Stellar Evolution through Spectral Analysis": 1 +"Psychology 101: Applying Cognitive Behavioral Therapy in Managing Stress Disorders": 1 +"Environmental Science: Climate Change Prediction using Computerized Climate Modeling and Remote Sensing Techniques": 1 +"Chemistry: Understanding Molecular Dynamics through Nuclear Magnetic Resonance Spectroscopy ": 1 +"Advanced Robotics: Implementing Machine Learning Algorithms with ROS and Python": 1 +"Physics 201: Quantum Mechanics: Unraveling the Mystery of Quantum Entanglement": 1 +"Biological Processes: Decoding DNA Replication using Polymerase Chain Reactions": 1 +"Software Engineering: Building Scalable Applications with Node.js, Express.js, and MongoDB": 1 +"Art History: Exploring the Influence of Ukiyo-e Prints on Impressionist Paintings": 1 +"Environmental Science: Investigating Climate Change Impacts through Ice Core Analysis": 1 +"Advanced Fitness Training: Leveraging Biometric Data and Wearable Technology for Optimal Performance": 1 +"Social Studies: Tracing the Evolution of Democracy from Ancient Greece to Modern Times": 1 +"Astronomy 101: Deciphering the Secrets of the Cosmos through Radio Astronomy": 1 +"Chemistry: Analyzing Chemical Thermodynamics Through Python and Data Visualization Techniques": 1 +"History: The Influence of Street Photography on Social Movements in the 20th Century": 1 +"Animation: The Science of Stop-motion in the Digital Age: Utilizing Blender and After Effects": 1 +"Sports Science: The Role of Biomechanics in Basketball: In-depth Study using Motion Capture Technology": 1 +"Music Production: Producing Electronic Dance Music Using FL Studio and MIDI Controllers": 1 +"Astronomy: The Mysteries of Quantum Cosmology: Investigating Black Holes and Dark Matter": 1 +"Molecular Biology: Unraveling DNA Sequencing and Genomic Analysis using CRISPR-Cas9": 1 +"Psychology: Understanding Autism Spectrum Disorder: Behavioral Analysis through AI and Machine Learning": 1 +"Game Design: The Revolution of Augmented Reality in Interactive Entertainment": 1 +"Advanced Writing: Narrative Design in Interactive Fiction with Twine, Google Docs, and Unity 3D": 1 +"Programming for Teens: An Insight into Java and Data Structures": 1 +"Quantum Physics: Examination of Quantum Tunnelling through Lab Experiments": 1 +"Evolving Commerce: The Influence of Cryptocurrency, GPS, and Fiber Optic Communications on Global Business Trends": 1 +"Ruby and Rails Framework: Grasping the Concept of RESTful Architecture": 1 +"Astrophysics: The Journey of Space Exploration through Spectroscopy": 1 +"Fine Arts: Decoding Postmodern Art by Analyzing Cubism and Collage Techniques": 1 +"Basics of Cardiology: Heart Anatomy and Echocardiograms": 1 +"Sociology: Impact of Online Gaming Communities on Social Interaction: A Case Study on Fortnite": 1 +"Information Technology: Developing Health Tracking Apps with Amazon Web Services and Swift": 1 +"Health Education: Understanding Biomechanics for Improved Athletic Performance": 1 +"Physics: Understanding Quantum Mechanics through the Lens of the Double Slit Experiment": 1 +"Music Theory: The Mathematical Principles behind the Tuning of String Instruments": 1 +"Archaeology: Uncovering Ancient Civilizations through Ground-Penetrating Radar and LiDAR Technology": 1 +"Web Development: Harnessing the Power of JavaScript and Node.js in Real-Time Data Manipulation": 1 +"Computer Science: Advanced Data Structures and Algorithms using Java, and Visualizing with GraphViz": 1 +"Advanced Biochemistry: Exploring DNA Sequencing and Protein Synthesis through Fluorescence Microscopy": 1 +"Environmental Science: Analyzing the Impact of Vertical Farming on Urban Sustainability and Food Security": 1 +"History: The Enlightenment Era’s Philosophy Revolution: Immanuel Kant's Critique of Pure Reason and its Influence on Modern Thought": 1 +"Astronomy: Investigating Stellar Evolution through Spectroscopy and Photometry ": 1 +"Advanced Calculus: Solving Differential Equations using the Laplace Transform Method": 1 +"Physics: Unfolding Quantum Mechanics Through Simulation of the Double-Slit Experiment": 1 +"Literature: The Evolution of Surrealist Poetry - An Examination of Symbolism and Metaphoric Imagery": 1 +"Chemistry: Advanced Organic Synthesis with Palladium-Catalyzed Cross-Coupling Reactions": 1 +"English: Reimagining Classic Literature in the Digital Age: A Study of Hypertext Fiction": 1 +"English: Exploring the Dystopian Genre: A Comparative Analysis of Orwellian and Huxleyan Themes": 1 +"Investigating Neuroplasticity: An Examination of BDNF's Role in Learning and Memory using Optogenetics": 1 +"Physical Education: Enhancing Athletic Performance Through the Use of Biometric Wearables and Data Analysis": 1 +"Biology: Delving into Epigenetics: An Exploration of DNA Methylation and Histone Modification": 1 +"Marine Biology: Understanding Coral Reef Ecosystems through Remote Sensing and GIS technology": 1 +"Algebra: Mastering Quadratic Equations through Virtual Reality Learning Environments": 1 +"Chemistry: Understanding Molecular Structures and Reactions through Quantum Mechanics": 1 +"Philosophy 101: Unraveling the Depths of Existentialism Through Textual Analysis": 1 +"Digital Artistry: Utilizing Adobe Creative Suite for 3D Animation and Visual Storytelling": 1 +"Data Science: Using R for Predictive Modelling and Analysis of Consumer Behaviors": 1 +"Environmental Engineering: In-depth Investigation of Water Treatment Processes using Membrane Filtration": 1 +"Music Theory: Understanding the Mathematics and Algorithms Behind Harmonic Progressions": 1 +"Genetic Engineering: Navigating CRISPR-Cas9 Techniques for Genome Editing with BioPython": 1 +"Artificial Intelligence: Delving into Neural Networks and Deep Learning with TensorFlow": 1 +"Cybersecurity: Comprehensive Overview of Network Security and Cryptography using Ethical Hacking Tools": 1 +"Astronomy: Exploring the Universe Through the Lenses of Astrophysics and Computational Simulations": 1 +"Advanced Calculus: Exploring the Beauty of Fractals through Iterative Functions and Computer Modeling": 1 +"Environmental Science: Understanding Climate Change through Ice Core Sampling and Carbon Dating": 1 +"Literature: Deciphering Irony and Sarcasm in 19th Century Novels - A Deep Dive using NLP Techniques": 1 +"Psychology: Unmasking Human Emotions through Facial Recognition AI and Psychophysiological Measurements": 1 +"Chemistry: Unveiling the Secrets of Organic Reactions using NMR Spectroscopy and Computational Models": 1 +"Music Theory: Composing Symphonies in the Style of Classical Masters with AI and Logic Pro X": 1 +"History: Unearthing the Secrets of Mayan Civilization and Their Advanced Calendrical Systems": 1 +"Neurology: Exploring Memory Formation Through EEG and Connectome Mapping": 1 +"Philosophy 101: Unpacking Existentialism: A Detailed Study of Phenomenology and Absurdism": 1 +"Astronomy: Charting Cosmic Distances with Parallax Measurements and Python Programming": 1 +"Economics: Unraveling the Dynamics of Global Recession Through Economic Indicators": 1 +"Advanced Coding: Mastering Machine Learning Algorithms with R Programming": 1 +"Biology: Unveiling the Mysteries of Evolution Through Genomic Sequencing": 1 +"The Role of Yoga in Mental Health: An In-depth Study in Behavioral Psychology": 1 +"Art History: Deciphering Ancient Egyptian Iconography and its Influence on Modern Design": 1 +"Understanding the Role of Cybersecurity in E-commerce: An Extensive Analysis of Case Studies Across Ten Developing Countries ": 1 +"Astrophysics: Unmasking the Enigma of Black Holes and Dark Matter": 1 +"Introductory Organic Chemistry: Discovering the Magic of Synthetic Materials through Polymerization": 1 +"Neuroscience: The Intricate Dance of Neurons - A Deep Dive into Neural Networks and Cognitive Function": 1 +"The Impact of Wind Energy on Sustainable Development: An Environmental Ethics Review in Modern Literature": 1 +"Sculpture: Exploring the Impact of 3D Printing on Contemporary Art": 1 +"Literature: The Power of Metaphors: A Study of Poetic Devices in Modern Poetry": 1 +"Anthropology: Understanding Ancient Hieroglyphics - The Evolution of Written Language": 1 +"Introduction to Computer Science: Image Processing with Java and OpenCV": 1 +"Computer Science: Building Interactive Virtual Reality Experiences for Educational Apps using Unity and C#": 1 +"Advancement in Aviation: The Comprehensive Timeline of Aerospace Engineering": 1 +"Geology: Volcanoes and Climate Change - The Effects on Global Warming": 1 +"Computer Science: Introduction to Machine Learning with R and Prediction Modelling": 1 +"Music: The Science of Sound - Understanding the Physics behind Piano": 1 +"The World of Business: An Engaging Introduction to Stock Market for Teenagers": 1 +"The Application of Artificial Intelligence in Modern Agriculture: An Informatics Approach": 1 +"Music Theory: Mathematical Patterns and Symmetry in Classical Compositions": 1 +"Understanding Weather: Satellite Imaging and Data Interpretation in Meteorology": 1 +"The Impact of Digital Encryption on Privacy and Security in E-commerce: Technological and Legal Perspectives with 10 Case Studies": 1 +"Introduction to Cryptography: The Use of Prime Numbers and Modular Arithmetic in Modern Encryption Techniques": 1 +"Physics for Young Minds: Adventures with Gravity, Space, and Time": 1 +"Literature Studies: The Use of Metaphor in Social Justice Narratives: A Detailed Analysis of Symbolism": 1 +"Discovering the Importance of Color Theory and Texture in Interior Design": 1 +"Biology: The Human Genome, DNA Sequencing, and Genetic Engineering - A Bioinformatics Perspective": 1 +"Chemistry: Studying Chemical Reactions and Energy Transfer with Calorimetry Techniques": 1 +"Neuroscience: Enhancing Athletic Performance through Biofeedback Techniques: A Comparative Study of EEG and fMRI": 1 +"Music and Quantum Physics: Harmonics in String Theory Explored through Fourier Analysis": 1 +"Mathematics: Fractal Patterns in Nature: A Global Perspective on Fibonacci Sequences": 1 +"Creative Writing: Mastering Suspense and Plot Twists with Final Draft and ProWritingAid": 1 +"The Impact of Biotechnology on Traditional Farming Practices in Different Cultures": 1 +"Environmental Engineering: Water Pollution Mitigation through Sustainable Practices in Textile Manufacturing": 1 +"English 201.4: Deconstructing Irony in Political Speeches: A Comprehensive Study through Rhetorical Analysis": 1 +"Spanish for Beginners: Exploring Culture through Idiomatic Expressions": 1 +"Mathematics: Investigating Topological Concepts in Architecture through SketchUp": 1 +"Physics: Sound and Sonics - Investigating Acoustic Waves and Resonance in Musical Instruments": 1 +"Sonic Landscapes: Composing Soundtracks with Logic Pro X and Foley Techniques": 1 +"Astrophysics: Interpreting Cosmic Radiation through Spectroscopy and Data Visualization": 1 +"Virtual Reality and Architecture: Designing Functional Spaces with Unity and AutoCAD": 1 +"Literature Analysis: Unpacking Symbolism and Allegory with Atlas.ti and Text Analytics": 1 +"Mastering Puppetry: A Detailed Study of Movement and Expression through Stop Motion Animation": 1 +"Culinary Science: Exploring Molecular Gastronomy with Sous Vide and Liquid Nitrogen Techniques": 1 +"Bioinformatics: Decoding Genetic Variations through Python Programming and Machine Learning": 1 +"Advanced Calculus: Exploring Differential Equations and Vector Fields with MATLAB": 1 +"The Fibonacci Spiral: Unveiling Beauty and Symmetry in Nature with Geogebra": 1 +"The Art of Silhouettes: Exploring Depth and Perspective Through Charcoal Drawing and Light Manipulation": 1 +"Quantum Mechanics and Music: Harmonizing Particle Physics with Sound Waves using Quantum Fourier Transforms": 1 +"Logic 101: Mastering Inductive Reasoning through Analogical Arguments": 1 +"Chemistry Meets Sculpture: An In-depth Analysis of Ancient Egyptian Pigments using Infrared Spectroscopy": 1 +"Advanced Linguistics: Deep Dive into Speech Recognition using Neural Networks and PyTorch": 1 +"Exploring Garageband: An Exhaustive Study of Digital Audio Workstations in Contemporary Sound Design": 1 +"Human Physiology and Athletics: Exploring the Role of Myoglobin in Muscle Performance using Near-Infrared Spectroscopy": 1 +"Exploring Smart Drugs: The Influence of Modafinil on the Interplay between Sleep Science and Cognitive Performance": 1 +"Advanced Neurobiology: Unraveling Neural Networks through Optogenetics and Functional Magnetic Resonance Imaging": 1 +"Global Economies: The Interplay of Folklore, Traditions, and Cryptocurrency - The Influence of Ethereum": 1 +"Botany 202: Decoding Plant Respiration through Stomatal Conductance and Gas Exchange Analysis": 1 +"Digital Sociology: Exploring Social Networks and Online Behavior through Data Analysis": 1 +"Chemistry and Cuisine: Understanding Molecular Gastronomy and its Impact on Culinary Arts": 1 +"Music Therapy: The Impact of Rhythm and Melody on Cognitive Functioning and Emotional Health": 1 +"Artificial Intelligence: Building Intelligent Systems Using Deep Learning with Keras and Scikit-Learn": 1 +"Crafting Sculptures: The Art of Creating Lifelike Statues Using Clay and Polymer Resin Techniques": 1 +"Astronomy: Investigating Celestial Bodies and Phenomena with Telescope and Stellar Spectroscopy": 1 +"History: The Role of Propaganda in Shaping Public Opinion During the Cold War": 1 +"Biology: Understanding Human Physiology Through Lab Experiments and Microscopic Observations": 1 +"Art: Expressing Emotions through Abstract Oil Paintings: Techniques and Color Theory": 1 +"Psychology: Analyzing Human Behavior through Social Experiments and Statistical Data Interpretation": 1 +"Chemistry: A Detailed Exploration of Spectroscopy and Chromatography using Nuclear Magnetic Resonance": 1 +"Software Engineering Essentials: Python Programming for Data Science": 1 +"Fine Arts: Sculpting Techniques and Imagination Boost using Blender 3D": 1 +"Impact of the Telegraph on Morse Code: A Study on American Communication in the Technological Evolution": 1 +"Cultural Anthropology: The Effect of the Printing Press on Literary Trends in the Renaissance Period": 1 +"Aquatic Habitats: An Extensive Insight into Wetlands using Drone Mapping and LiDAR Technologies": 1 +"Proteomics Revolution: Advanced Methods in Mass Spectrometry, Protein Sequencing, and Affinity Chromatography Using High-Performance Liquid Chromatography": 1 +"Quantum Physics: Comprehending Quantum Mechanics through Quantum Entanglement in Quantum Computing": 1 +"Meteorology: The Significance of Radar Technology in Weather Forecasting: An Overview of Doppler Radar Analysis": 1 +"Philosophy: The Framework of Cybernetic Narratives - Exploiting Augmented Reality for Interactive Fiction": 1 +"Environmental Science: Oceanography and Marine Life Conservation Through Satellite Remote Sensing ": 1 +"Business Management: Enhancing Leadership Skills through LinkedIn Professional Networking in the Digital Era": 1 +"Sociology: The Influence of Stand-up Comedy on Society: A Comparative Analysis across Podcast Platforms": 1 +"The Role of Cinema in the Evolution of Abstract Expressionism in Postmodern Art During the Cold War": 1 +"Music Composition: Crafting Jazz Arrangements in the Vein of Legendary Musicians with AI and GarageBand": 1 +"Health Education: Wearable Tech's Role in Analyzing Posture and Flexibility in Physical Therapy": 1 +"Art: Sculpting Iconic Figures of the American Civil War using Clay": 1 +"Coaching Strategies: Advanced Football: An In-depth Analysis of Zone Defense": 1 +"Applied Mathematics: Exploring Stochastic Processes in MATLAB through Markov Chains": 1 +"Linguistics: Understanding the Semantics of Machine Translation through Deep Learning in R": 1 +"Advanced Calculus: Exploring Theoretical Mathematics through Integral Transforms and Fourier Series": 1 +"Cryptography and Cybersecurity: Leveraging Quantum Computing for Robust Encryption Techniques": 1 +"Astrobiology: Utilizing Spectroscopy in the Search for Extraterrestrial Life": 1 +"Forensic Science: DNA Profiling and Fingerprint Analysis in Crime Scene Investigations": 1 +"Advanced Machine Learning with R: Predictive Modeling and Time Series Analysis": 1 +"Climate Change: Modeling and Forecasting Global Warming using Satellite Data and GIS": 1 +"Economics: Insights into Behavioral Economics through Game Theory and Econometrics": 1 +"Virtual Reality and Neuroscience: The Impact of Immersive Technologies on Cognitive Function": 1 +"Biomimicry in Engineering: Exploring Nature-inspired Designs for Sustainable Solutions": 1 +"Music Therapy: The Role of Improvisational Music in Mental Health and Wellness": 1 +"Physics for Beginners: Understanding Energy and Laws of Motion": 1 +"Advanced Crop Genetics: The Role of CRISPR-Cas9, Bioinformatics, and Nanotechnology in Agriculture": 1 +"Mastering Vector Graphics in Illustrator with the Mesh Tool: A Comprehensive Course in Computer Design and Digital Art": 1 +"Music: The Evolution of Jazz - The Saxophone and Bebop Era: A Study with Special Focus on Embouchure Techniques": 1 +"Art: Exploring Still Life through Oil Pastels - The Use of Glazing and Scumbling Techniques": 1 +"Political Science: The Effects of Quantum Computing on Cyber Security Policies": 1 +"Financial Planning in Sports: Implementing Power BI in Ticket Pricing Strategy for Revenue Optimization": 1 +"Machine Learning and Predictive Analytics in R: A Detailed Study on Support Vector Machines (SVM)": 1 +"Cognitive Science Journey: Understanding Cognitive Bias through Implicit Association Test, Eyetracking, and Electroencephalography": 1 +"Abstract Art in Watercolor: Exploring Texture, Pattern and Contrast using Wet-in-Wet Techniques.": 1 +"Physics: Exploring Quantum Mechanics Through Schrodinger's Equation": 1 +"Biology 401: Understanding Genetic Variation using CRISPR and Genome Sequencing Techniques": 1 +"Business Management: Leveraging Big Data Analytics for Effective Decision Making using R Programming": 1 +"Theoretical Physics: Unraveling the Universe with Einstein's Theory of Relativity": 1 +"Environmental Science: Climate Change Analysis Through Carbon Footprint Measurement": 1 +"Artificial Intelligence: Deep Learning and its Impact on Modern Medicine using TensorFlow": 1 +"Linguistics: The Evolution of Human Communication from Hieroglyphs to Emojis": 1 +"Astronomy: Deciphering Cosmic Mysteries through Radio Astronomy and Spectral Analysis": 1 +"Sociology: The Impact of Social Media on Behavior and Interpersonal Relationships in the 21st Century": 1 +"Programming 101: Mastering Algorithms with Java Using Object-Oriented Concepts": 1 +"Chemistry 101: The Role of Catalysts in Industrial Processes": 1 +"Sculpting Soundscapes: An Introduction to Sound Design using Logic Pro, Max/MSP and MIDI Controllers": 1 +"The Miraculous Microbiome: Exploring Gut Health through Fluorescent Imaging, ELISA Testing and Metagenomic Sequencing": 1 +"Primary Colors: Exploring the Basics of Art Theory through Mixed Media: Utilizing Augmented Reality for Interactive Color Wheel Studies": 1 +"The Fortune in Figures: An Introduction to Statistics with a Focus on Predictive Analysis": 1 +"Literature 101: Unveiling Humanity in Dystopian Novels - Discourse Analysis using Corpus Linguistics": 1 +"Artificial Intelligence: Exploring Machine Learning Through Neural Networks and Deep Learning Algorithms": 1 +"Digital Illustration: Enhancing Character Design using Procreate in Concept Art": 1 +"Marine Biology: The Impact of Ocean Acidification on Coral Reef Ecosystems": 1 +"Astronomy: The Effect of Dark Matter on Galactic Rotation": 1 +"Physics: Quantum Mechanics and Particle Observation using CERN's Large Hadron Collider": 1 +"World History: The Sociopolitical Impact of the Printing Press During the Renaissance": 1 +"Digital Marketing: Maximizing Instagram's IGTV for International Product Launches": 1 +"Advanced Econometrics: Predictive Modelling of Stock Market Trends using Artificial Intelligence": 1 +"Music and Society: The Role of Protest Songs in Civil Movements": 1 +"Psychology Basics: Understanding Human Behavior and Mental Processes through Functional MRI": 1 +"Food Science: An In-depth Exploration of Nutritional Analysis using Mass Spectrometry": 1 +"Introduction to Data Science: Utilizing Python for Epidemiological Research": 1 +"Exploring Thermodynamics: Heat Transfer and Energy Conservation in Industrial Processes": 1 +"Critical Thinking 101: Applying Deductive Reasoning in Everyday Decision Making": 1 +"Pharmacology: Implementation of Nanotechnology in Drug Delivery: A Step Towards Personalized Medicine": 1 +"Psychology: Understanding the Influence of Social Media on Youth's Self-Perception: A Qualitative Study": 1 +"Literary Studies: Deciphering the Symbolism in Edgar Allan Poe's Gothic Narratives": 1 +"Astrophysics: Basics of Quantum Mechanics and its Implications in Black Hole Theory": 1 +"Sustainable Literature: Depictions of Renewable Energy Solutions in 21st Century Fiction": 1 +"Linguistics: The Impact of AI Translation on Intercultural Communication: A Case Study of Multilingual Social Media Platforms": 1 +"Geology: The Significance of Hydrological Cycle in Shaping the Earth's Surface Features": 1 +"Narrative Design: The Integration of Virtual Reality in Interactive Storytelling: A New Age of Digital Literature": 1 +"E-Commerce Strategies: The Role of Machine Learning in Predicting Customer Buying Patterns and Enhancing Sales": 1 +"Physical Training: Leveraging Wearable Tech for Performance Optimization in Competitive Athletics": 1 +"Quantum Physics: Deciphering the Mystery of Quantum Entanglement and Superposition": 1 +"Digital Painting in Photoshop: A Comprehensive Guide to Texture Brushes and Layer Blending Modes": 1 +"Data Science: Unlocking Predictive Modelling with Regression Analysis and Random Forest Algorithms": 1 +"Psychology: The Influence of Advertising on Consumer Behavior and the Human Decision-Making Process": 1 +"Mastering 3D Design in Blender: Exploring the Principles of Lighting, Texturing, and Rendering in CGI": 1 +"Genetics 101: A Journey into the World of Genomic Imprinting and Epigenetics": 1 +"Advanced Philosophy: The Paradox of Free Will and Determinism in Metaphysics": 1 +"Cybersecurity: Ethical Hacking using Python, Wireshark, and Kali Linux Tools": 1 +"Creative Writing: Crafting Haikus Inspired by the Silence of Space using Astronomical Imagery": 1 +"Advanced Python Programming: Leveraging Flask and Django for Web Development and API Design.": 1 +"Economics: The Role of Inflation in the Global Economy: A Study for Teenagers": 1 +"Human Anatomy: A Comprehensive Analysis of the Digestive System and its Impact on Nutrition": 1 +"Art: Mastering the Techniques of Watercolor: A Journey through the Landscapes of Provence": 1 +"Physics: The Intricacies of Quantum Mechanics and its Application in Modern Technology": 1 +"Chemistry: The Art of Brewing: A Comprehensive Study of Fermentation Process in Beer Making": 1 +"Music Theory: Understanding the Science of Harmonics through the Use of String Instruments": 1 +"Environmental Science: Decoding the Secrets of Coral Reefs: A Molecular Biology Approach": 1 +"Advanced Mathematics: Exploring the World of Fractals and their Role in Nature": 1 +"History: Deciphering Ancient Civilizations through Archaeological Artefacts and Radiocarbon Dating": 1 +"Psychology: The Intricate World of Dreams: An Exploration of the Subconscious Mind and its Influence on Behavior": 1 +"Physics of Time: Applying Quantum Mechanics to the Theory of Relativity": 1 +"The Anthropology of Cuisine: Studying Global Food Practices through Ethnographic Case Studies": 1 +"Engineering Marvels: The Impact of Artificial Intelligence on Automation and Robotics": 1 +"Psychology of Colors: Exploring Emotional Responses and Perception through Art Therapy": 1 +"Sociology in Action: The Role of Social Media in Modern Communication and Behavior": 1 +"Plant Genetics: The Impact of Global Warming on Crop Yield and Food Security": 1 +"Philosophy of Science: Analyzing the Ethical Implications of Genetic Engineering": 1 +"Software Development: Building Scalable Applications with Python and Django": 1 +"The Physics of Sports: Understanding Biomechanics and Kinesiology through Game Analysis": 1 +"Artificial Intelligence in Medicine: Using Machine Learning for Predictive Analysis in Clinical Diagnostics": 1 +"Chemistry: Unveiling the Secrets of Organic Compounds Using Gas Chromatography and Mass Spectrometry": 1 +"The Progressive Development of Renewable Energy: The Advent of Solar Power Infrastructure": 1 +"The Evolution of Cryptography: An Extensive Study on RSA Algorithm and the Importance of Cybersecurity": 1 +"Ethics: Exploring Moral Philosophy and Critical Thinking through the Lens of Consequentialism": 1 +"Perfecting Business Communication: Articulation, Persuasion, and the Utility of Microsoft Teams": 1 +"The Influence of Price Mechanism on Market Equilibrium: A Deep Dive into the Law of Supply and Demand": 1 +"Harnessing the Power of Graphic Design in Adobe Illustrator: The Aesthetics of Minimalism in Modern Advertising": 1 +"Mathematical Wonders: Calculus and Probability in Cracking Real-World Problems": 1 +"High School Biology: Investigating Cellular Structures through Electron Microscopy and DNA Sequencing": 1 +"Astrophysics and Radio Astronomy: Deciphering the Enigma of Black Holes and Pulsars.": 1 +"Unraveling the Universe: Applying Quantum Mechanics in Astrophysics Discoveries": 1 +"Modern Medicine: Advancing Health Outcomes with Telemedicine Technology": 1 +"Psychology of Color Perception: Exploring Synesthesia through Neuroimaging Techniques": 1 +"Artificial Intelligence in Weather Forecasting: Utilizing Machine Learning for Climate Change Analysis": 1 +"Advanced Robotics: Exploring the Role of Mechatronics in Prosthetic Limb Development": 1 +"The Fibonacci Sequence: Analyzing Patterns and Theories in Financial Market Forecasting with Python": 1 +"Using Truth Tables in Digital Logic Design for Error Detection and Correction in Computer Engineering": 1 +"The Steam Engine and the Railway System: Revolutionary Changes Impacting Victorian Era Literature": 1 +"Exploring Graphic Design with Augmented Reality: An Advanced Course on Unity3D and Vuforia SDK": 1 +"Culinary Art: Sous Vide Cooking Techniques: Mastering Precision Temperature Control in Gastronomy": 1 +"Mastering 3D Modeling in Blender: An In-depth Study of Shading and Rendering Techniques": 1 +"Programming for Budding Geniuses: Interactive Game Development Using Java": 1 +"Unraveling the Secrets of the Mind: An Exploration of Cognitive Behavioral Therapy in Neuroscience": 1 +"Predictive Analytics for Business Forecasting: Merging Excel, Regression Analysis, and Time-Series Modelling": 1 +"Engineering Marvels: Incorporating Quantum Mechanics and CAD in Futuristic Architecture": 1 +"A Semantic Approach to Social Media: Harnessing Big Data to Decode Political Sentiment and Revolutionary Trends": 1 +"Holistic Wellness and Fitness: Comprehensive Guide to Yoga Postures and Mindfulness Meditation": 1 +"Historical Analysis: Interpreting Medieval Societies through Manuscript Studies": 1 +"Surviving Extreme Environments: Comprehensive Techniques for Food Foraging and Shelter Building in the Wild": 1 +"Artificial Intelligence in PyTorch: Mastering Recurrent Networks through Genetic Algorithm Techniques": 1 +"Advanced Biology: Implementing Stem Cell Research in Regenerative Medicine: An In-depth Analysis of Organoid Cultures and Differentiation Techniques": 1 +"Critical Thinking: Applying Inductive Reasoning in Problem Solving using Heuristic Methods and Causal Models": 1 +"Biochemistry: Understanding Protein Structure and Function through X-ray Crystallography and Nuclear Magnetic Resonance": 1 +"Advanced Electromagnetism: Exploring Wave Propagation using MATLAB and Signal Processing Techniques": 1 +"Cultural Anthropology: Harnessing Machine Learning in Big Data Analysis for Deciphering Societal Patterns": 1 +"Paleontology 101: Unearthing the History of Life through Fossil Records and Radiometric Dating Methods": 1 +"World History: Charting the Renaissance Era through Cartography and Astrolabe": 1 +"Physics 309: Diving into Quantum Mechanics with Schrödinger's Equation, Quantum Tunneling and the Uncertainty Principle": 1 +"Unveiling Inductive Logic and Algorithmic Thinking: Deciphering Binary Code using Java, Computer Architecture and Data Structures.": 1 +"Psychology 315: Memory and Cognition - A Multidisciplinary Approach using Functional MRI and Cognitive Behavioral Therapy Techniques": 1 +"Biochemistry 101: Decoding DNA Replication through Advanced Electrophoresis Techniques": 1 +"Physics: Understanding Quantum Mechanics through the Lens of String Theory": 1 +"Cyber Tech Warriors: Advanced Ethical Hacking, Cross-Site Scripting and Threat Prevention using Firewalls": 1 +"History: The Influence of Ancient Greek Philosophy on Modern Democratic Principles": 1 +"Botany: Understanding Photosynthesis using Chlorophyll Fluorescence Imaging": 1 +"The Impact of Mythology on Modern Cinema: A Thematic Examination": 1 +"Java and MATLAB: A Comprehensive Course on Image Processing in Digital Media Technology": 1 +"Art: Mastering Oil Painting Techniques to Recreate Renaissance Masterpieces": 1 +"Music: Harmonizing Melodies using Loop Sequencing and Beat Matching Techniques in Ableton Live": 1 +"Software Engineering: Building Scalable eCommerce Platforms using Angular and AWS Lambda": 1 +"Exploring Space: Satellite Imagery Analysis in Geographic Information System Techniques": 1 +"The Impact of the Steam Engine on Spanish Maritime Language: The Role of Railways in the Industrial Revolution": 1 +"Advanced Physics: Harnessing Quantum Computing and Superconducting Technologies to Understand Black Hole Formation": 1 +"Comprehensive Course in Robotic Science: Constructing Autonomous Cars Using JavaScript, Raspberry Pi, 3D Printing, and IoT": 1 +"Recyclable Plastics, Solar Power, and Eco-Housing: Sustainable Measures for Modern City Planning": 1 +"Budding Oceanographers: Understanding Ocean Acidification through Coral Reefs and Marine Conservation Strategies": 1 +"The Telegraph and the Information Age: Groundbreaking Innovations Influencing German Business Language": 1 +"Utilizing Machine Learning for Efficient Traffic Control in Smart City Design": 1 +"Creative Exploration: Brutalism in Contemporary Urban Design": 1 +"Little Astronomers: Introduction to Solar System Exploration with Planetarium Kits": 1 +"Fundamental Physics: Studying Quantum Mechanics and Particle Interactions through Particle Accelerators": 1 +"Advanced Calculus: Application of Integral Equations in Engineering Problems using MATLAB": 1 +"Principles of Politics: Grasping Power Dynamics and Diplomacy through the Study of International Relations": 1 +"Eco-friendly Engineering: Innovation in Renewable Energy and Waste Management for Sustainable Communities": 1 +"Cognitive Psychology: Understanding Human Behavior and Decision Making through Functional Magnetic Resonance Imaging (fMRI)": 1 +"The Influence of Cryptocurrency on Global Finance: The Evolution of Decentralized Systems and Blockchain Technology": 1 +"Genomic Analysis: A Computational Approach using Python and DNA Sequencing Techniques": 1 +"Junior Biologists: Discovering Cellular Processes through Interactive Laboratory Investigations": 1 +"Health and Fitness: The Science of Nutrition and Exercise: Performance Analysis using Wearable Technology": 1 +"Evaluating the Social Impact of Internet Censorship on Freedom of Speech: A Comparative Study of Five Different Censorship Models": 1 +"Physics 210: Examining Orbital Mechanics through the Lens of Astrophysics and Python Programming": 1 +"Exploring Network Security: An In-depth Study of Cryptography with Firewalls and VPNs using NetFlow": 1 +"World History: The Influence of Flamenco Dance on Spanish Identity Movements": 1 +"Culinary Chemistry: The Science Behind Molecular Gastronomy and Spherification Techniques": 1 +"Sound Engineering Mastery: Harnessing the Power of Pro Tools' Elastic Audio in Film Scoring": 1 +"Data Structures and Probability: The Cornerstones of Artificial Intelligence": 1 +"Advanced Arithmetic: Implementing Soroban Techniques for Rapid Calculations using Ternary System": 1 +"Nanotechnology and Its Applications: The Next Step in Medical Diagnosis": 1 +"Philosophy 101: Fundamentals of Informal Logic with Fallacies and Euler Diagrams": 1 +"Kinesiology 201: The Physics of Body Mechanics - A Deep Dive into Posture Analysis": 1 +"Environmental Biotechnology: Utilizing Bioinformatics in the Study of Microbial Ecosystems and their Role in Climate Change": 1 +"Cognitive Psychology: An Insight into Emotional Intelligence through fMRI Studies and Data Visualization": 1 +"Engineering: Utilizing Fractal Geometry in Structural Engineering - A Comprehensive Approach with CAD Technology": 1 +"Digital Marketing: The Impact of Deep Learning on Consumer Behaviour Analysis and Revenue Generation": 1 +"Russian History: Understanding the Sociopolitical Dynamics of the Soviet Era through Marxist Theory and Historical Discourse Analysis": 1 +"Health and Wellness: Integrating Fitbit Trackers and MyFitnessPal App in Nutritional Education: A Modern Perspective": 1 +"Performance Analysis and Sports Science: Incorporating SportsCode and Machine Learning in Player Performance Prediction": 1 +"Chemistry: Unraveling the Mystery of Chiral Molecules in Pharmaceutical Drug Design": 1 +"Biology: Decoding the Language of Cells using Genomic Data Analysis and TensorFlow": 1 +"Data Science: An Introduction to Big Data Analysis using R Programming and Advanced Algorithms": 1 +"Physics and Music: Understanding Sound Waves through the Science of Acoustics": 1 +"Architectural Design: Advanced Building Simulation with Autodesk Revit": 1 +"Digital Media and Society: Creating Virtual Realities with Unity and Unreal Engine": 1 +"Ecology: Investigating Biodiversity through Satellite Remote Sensing": 1 +"International Relations: The Influence of Cyber Diplomacy in Modern Politics": 1 +"Cybersecurity and IoT: A Deep Dive into Blockchain Technology for Secure Transactions": 1 +"Digital Artistry: Incorporating Artificial Intelligence in Contemporary Graphic Design": 1 +"Primary Science: Learning about the Solar System through Interactive Models": 1 +"Predictive Analytics in Epidemiology: Utilizing Python and SciKit-Learn in Disease Outbreak Prediction": 1 +"Chemistry of Art: Exploring Ancient Ceramic Glazes through Scanning Electron Microscopy and Energy Dispersive Spectroscopy": 1 +"Unveiling Quantum Physics: A Comprehensive Exploration of Quantum Entanglement and Particle Duality": 1 +"Advanced Chemistry: Understanding Molecular Geometry and its Role in Chemical Reactions": 1 +"Music Theory: The Use of Ableton Live in Creating Harmonic Progressions in Electronica, Inspired by Urban Soundscapes": 1 +"High School Biology: Investigating Cellular Respiration with Spectrophotometers and Microbial Fuel Cells": 1 +"The Science of Movement: Analyzing the Effects of Oculus Rift and Kinematic Algorithms on Perception of Dance Movements": 1 +"Decoding Symbolism in Novels: A Study of the Influence of Allegory": 1 +"Sustainable Architecture: Examining the Use of Mycelium Blocks and 3D Printing in Construction": 1 +"Art History: The Evolution of Art Schools: The Impressionist Revolution": 1 +"Mastering Sound Design in Pro Tools: An Extensive Analysis of Reverb and Delay Effects in Audio Post Production": 1 +"Data Science with R: A Comprehensive Study of Decision Tree Algorithms using Rattle and Visualizations": 1 +"Historical Context: Utilizing Metadata in Manuscript Studies of Shakespearean Plays": 1 +"Physics: Understanding Quantum Mechanics through MATLAB and Simulation in Nanotechnology": 1 +"WordPress and Its Impact: The Importance of SEO in Global E-commerce Strategies": 1 +"Music and Mathematics: An Examination of Harmonic Series in Classical Compositions using Fourier Series Analysis": 1 +"Exploring Electromagnetic Waves: An In-depth Examination of Radio Frequencies with Java and FFT Algorithm": 1 +"Art: Oil Painting Techniques: Capturing Emotion in Portraits": 1 +"Linguistics: Decoding the Role of Morphology in Contemporary Poetry and Screenplays": 1 +"Advanced Topography: An In-depth Exploration of Terrain Analysis using GIS Technology": 1 +"Advanced Topography: Charting Global Topography using Satellite Imagery and Compass": 1 +"Physics Fun for Kids: Discovering Newton’s Laws with Simple Machines, Force Meters, and Momentum Experiments": 1 +"Data Visualization: Deciphering Trends and Patterns through Python and Tableau": 1 +"Philosophy: The Influence of Nietzsche's Thought in Contemporary Society": 1 +"Physics: Quantum Mechanics and its Applications in Modern Technology": 1 +"Artificial Intelligence: An In-depth Exploration of Neural Networks and Machine Learning": 1 +"Art History: The Rise of Impressionism and its Impact on Modern Art Styles": 1 +"Sociology: The Role of Social Media in Shaping Public Opinion and Political Movements": 1 +"Astronomy: Understanding the Cosmos through Stellar Spectroscopy and Photometric Observations": 1 +"Environmental Science: Climate Change and its Effects on Biodiversity using GIS and Remote Sensing": 1 +"Computer Programming: Mastering Java and Python for Software Development and Data Analysis": 1 +"Business Studies: The Impact of Digital Marketing Strategies on Consumer Behaviour and Brand Loyalty.": 1 +"Spanish Cinema: Exploring Surrealism through the Films of Luis Buñuel": 1 +"The Influence of The American Civil War on Contemporary Federalism: A Constitutional Overview": 1 +"Marine Biology: Evaluating the Impact of Coral Reef Degradation on Marine Ecosystems": 1 +"Ruby and Rails Framework: Getting Started with Web Application Development with JavaScript Integration": 1 +"Philosophy: An In-Depth Analysis of Metaphysics, Epistemology, and Ethics using Socratic Method": 1 +"Machine Learning and Data Mining: Their Implications in the Evolution of Financial Services in Fintech": 1 +"The Dynamics of International Relations: Unraveling Geostrategic Balance through Game Theory and Spatial Analysis in Gephi": 1 +"Physical Therapy: Yoga and Mobility: Investigating Therapeutic Yoga with Virtual Reality": 1 +"Advanced German Linguistics: Mastering Language Precision with Duolingo, Google Translate, Grammarly, and Babbel for Extensive Language Learning": 1 +"Special Education: Utilizing Virtual Reality for Sensory Integration Therapy in Autism Education": 1 +"Advanced Chemistry: Using ChemDraw for Molecular Visualization and Quantum Mechanics": 1 +"Physics: Implementing MATLAB in Quantum Optics and Photonic Crystals Research": 1 +"Virtual Reality in Clinical Psychology: Therapeutic Approaches for Phobias and Anxiety Disorders": 1 +"Data Science: Predictive Analytics with R and Tableau": 1 +"World History: Decoding Ancient Civilizations with Augmented Reality and 3D Scanning": 1 +"Early Childhood Education 210: Enhancing Learning through Smartboard Games and Activities": 1 +"The Art of Sound and Silence: Improving Piano Techniques through Biofeedback Devices in Music Therapy": 1 +"Computer Engineering 202: C++ and NoSQL: A Gateway to Big Data": 1 +"In-depth Study: Planetary Astronomy, The Goldilocks Zone, and Astrobiology: A Research using Spectrograph Technology": 1 +"Creative Writing: Immersive Storytelling in the Modern Era using Augmented Reality.": 1 +"Advanced Photoshop: Implementing Layering Techniques for Architectural Rendering": 1 +"Quantum Physics: Leveraging Superposition for Advancements in Telecommunication": 1 +"World History: Unraveling the Silk Road through Archaeological Artifacts and Historical Texts": 1 +"Mechanical Engineering: Applications of Robotics and AI in Modern Manufacturing ": 1 +"Environmental Science: Predictive Climate Modelling using Satellite Imaging and Big Data Analytics": 1 +"Chemistry: Exploring the Role of CRISPR in Gene Editing: Legal and Ethical Implications": 1 +"Calculus: Exploring Differential Equations through MATLAB and Fractal Theory": 1 +"Cosmology: The Multiverse Theory and its Implication on the Nature of Reality": 1 +"The Influence of Film Noir Cinematography on Contemporary Fashion Photography": 1 +"The Effect of the Telegraph System on Labor Movements during the Second Industrial Revolution": 1 +"Advanced Physics: Delving into Quantum Mechanics through the Double Slit Experiment": 1 +"Elementary Astronomy: Understanding Celestial Navigation using Stellar Constellations": 1 +"Clinical Nutrition: Investigating the Role of Probiotics in Gut Health and Mental Well-being": 1 +"Mathematics 210: The Geometry of Architecture: Applying the Fibonacci Sequence and Golden Ratio": 1 +"Critical Thinking: Recognizing and Debunking Conspiracy Theories through Logical Reasoning": 1 +"Oceanography: The Impact of Ocean Acidification: A Detailed Analysis of Coral Reefs and Marine Biodiversity": 1 +"Physiology: Enhancing Cardiovascular Health with High-Intensity Interval Training in Endurance Sports": 1 +"Cultural Anthropology: The Influence of the Printing Press on the Evolution of Literature and Society": 1 +"Organic Chemistry: Demystifying Aromatic Compounds through NMR Spectroscopy and Crystallography": 1 +"Cognitive Science: Unraveling Human Perception with Optical Illusions and Neuroimaging Techniques": 1 +"Advanced Robotics: The Influences of AI on Modern Prosthesis Design": 1 +"Microscopic Worlds: Exploring Microorganisms through Electron Microscopy and Cryo-EM": 1 +"Sustainable Architecture: Analyzing Green Roof Systems and Vertical Gardens": 1 +"Physics of Sports: Understanding Momentum and Energy Transfer in Competitive Athletics": 1 +"Child Psychology: The Impact of Digital Media on Early Childhood Development": 1 +"Cosmology: Understanding Dark Matter through Computational Models and Observational Data": 1 +"Genomics and Forensics: The Role of Next-Generation Sequencing in Crime Scene Investigation": 1 +"The Influence of the Internet Age on Journalism: The Shift from Print to Digital Media": 1 +"Geology and Art: The Use of Mineral Pigments in Ancient and Contemporary Artworks": 1 +"Nuclear Engineering: A Comprehensive Study on Fusion Reactors and Their Potential Energy Production": 1 +"Chemistry: Advanced Spectroscopy Techniques and Molecular Structure Analysis": 1 +"Advanced Java: From Basics to Web Development using Spring Boot and Hibernate": 1 +"Geometry: Intricate Patterns in Nature: Understanding Fractals with a Ruler and Compass": 1 +"Sound Engineering: Mastering the Art of Foley Sound Creation in Pro Tools Using MIDI Keyboards and Focusrite Scarlett Interface": 1 +"Astrophysics: Gravitational Waves and The Detection Methods Utilized": 1 +"Exploring Asymmetry with Rhino and Grasshopper Plugin: An In-depth Approach to Organic Architecture": 1 +"Fine Arts: Immortalizing Historical Events in Acrylic Landscape Paintings and Canvas Preparation": 1 +"Mechanical Engineering 101: Fluid Mechanics: Understanding the Principles of Laminar Flow": 1 +"Botany 101: Understanding Plant Classification through Phylogenetic Analysis": 1 +"French Maritime Language During the Age of Exploration: The Influence of Galleons on Global Navigation": 1 +"Geometry: Bridging the Gap Between Mathematical Theorems and Architectural Design": 1 +"Proteomics in Cellular Biology: Evaluating Protein Structures Using Mass Spectrometry and X-ray Crystallography": 1 +"Comprehensive Study of Animal Physiology: Application of MRI and Ultrasound Imaging Techniques": 1 +"Chemistry 101: Exploring the Realm of Thermodynamics - An Insight into Enthalpy and Entropy": 1 +"Exploring Photoshop's Potential in Visualizing the Interplay of Light and Shadow in Digital Painting: An In-depth Study of Gradients and Layering Techniques": 1 +"Fundamentals of Geology: Deciphering Earth's History through Stratigraphy and Radiometric Dating": 1 +"Music Theory: Incorporating Moog Subharmonicon in Afro-Caribbean Traditional Rhythms for Cultural Festivals": 1 +"Astrophysics Basics: Understanding the Universe through the Study of Black Holes and Gravitational Waves": 1 +"Fine Arts: The Art of Portraiture and its Role in Highlighting Societal Issues": 1 +"Network Forensics: The Importance of Snort in Assuring Network Safety and Preventing Cyber Threats": 1 +"Advanced Trigonometry: Analyzing Sound Waves with Fourier Series and MATLAB": 1 +"Vocal Training: Enhancing Vocal Resonance and Breath Control for Stage Performances": 1 +"Astrophysics in Action: Gravitational Lensing: A Thorough Investigation Through Quantum Mechanics": 1 +"In-depth Guide to Philosophy: Debating Ethics and Morality using Socratic Dialogues and Plato's Theory": 1 +"Mastering Ruby: A Comprehensive Introduction to Rails for Mobile App Development": 1 +"Anthropology and Cultural Studies: Tracing the Evolution of Hip Hop Music": 1 +"The Science of Political Communication: Amplifying Policy Analysis Using Regression Models in SPSS and R ": 1 +"Entrepreneurship: The Influence of Virtual Reality on Tourism: A Study on Customer Experience and Business Models": 1 +"Advanced Graphic Design: Creating Lifelike Illustrations and Designs Using Adobe Illustrator and Photoshop": 1 +"Discovering the Beauty in Oil Painting: The Role of Light and Shadow in Still Life: A Detailed Exploration of Brushwork and Colour Theory": 1 +"Political Science: The Evolution of Democracy in Latin America: A Comprehensive Review Through Archival Research": 1 +"Genetics and Genomics: Unraveling the Human Genome: An In-depth Course on Gene Mapping Techniques": 1 +"Environmental Science: Deciphering Coral Reef Biodiversity through Remote Sensing Techniques": 1 +"Astrophysics Decoded: A Foundation Course in Dark Matter and Quantum Foam": 1 +"Mathematical Aesthetics: Understanding Architecture through Fractal Geometry and Chaos Theory": 1 +"Information Technology: Designing Echo Cancellation Algorithms for Noise Reduction in Digital Signal Processing": 1 +"The Role of Neural Networks in Predictive Modeling: An Extensive Study of Deep Learning Techniques": 1 +"Literary Expression: Mastering Metaphor and Alliteration in Prose with the Power of Allegory": 1 +"Microbiology Unleashed: Examining Bacterial Colonies using Scanning Electron Microscopy and Image Processing Techniques": 1 +"Applying Game Theory in Decision Making: Strategic Interactions and Market Behavior": 1 +"Fundamentals of Physics: Exploring Quantum Mechanics through String Theory": 1 +"Interdisciplinary Perspectives on Astrobiology: Investigating Life in the Cosmos": 1 +"Advanced Techniques in Sentiment Analysis using Machine Learning for Social Media Data ": 1 +"Cutting-Edge Genomics: Understanding Human Evolution through DNA Sequencing and Bioinformatics": 1 +"History: The Influence of the Printing Press on Renaissance Thought and Literature": 1 +"Health and Wellness 101: The Potential of Stem Cell Research in Regenerative Medicine": 1 +"Advancements in Radiology: Using Digital Tomography to Uncover the Secrets of Human Anatomy ": 1 +"Intro to Chemistry: Discovering Chemical Reactions with Spectrophotometry and Gas Chromatography": 1 +"English Literature and Society: A Cultural Study of Cyberpunk Fiction in the Digital Age": 1 +"Music Technology: Exploring Audio Manipulation and Sound Design with Logic Pro X": 1 +"Global Politics: The Role of Social Media in Modern Diplomacy and Statecraft": 1 +"Astrophysics: Decoding the Cosmic Microwave Background Radiation using Quantum Field Theory": 1 +"Ecological Design: Understanding the Principles of Permaculture for Sustainable Urban Planning": 1 +"Data Science: Applying Machine Learning and Big Data Analytics in Predictive Healthcare Systems": 1 +"Cultural Studies: Deciphering Symbolism in Indigenous Art using Image Recognition Technology": 1 +"Critical Thinking: Nurturing Problem-Solving Skills in Youth through Chess Strategies": 1 +"Psychology 305: Investigating the Impact of Ambient Music on Concentration and Learning Efficiency using fMRI Studies": 1 +"History: The Influence of Telegraph Technology on Warfare Strategies during the Civil War": 1 +"Neuromarketing: Analyzing Consumer Behavior with Eye-Tracking and EEG Technology in Digital Advertising": 1 +"Quantum Computing: The Fundamentals of Quantum Algorithms - Exploring Shor's and Grover's algorithms.": 1 +"The Algorithmic Symphony: Exploring the Role of Machine Learning in Movie Recommendation Services and its Societal Implications": 1 +"The Quill in the Renaissance Era: A Comprehensive Study of Its Influence on European Literature": 1 +"Unmasking the Power of Yoga's Sun Salutation in Indian Societies: A Wellness Education Course": 1 +"Advanced Statistics: Introduction to Regression Analysis and Data Interpretation in MATLAB": 1 +"Environmental Science: Rainforest Conservation Efforts using Remote Sensing Technologies": 1 +"Navigating the Impact of Sustainable Living Practices in Spanish Literature: An Emphasis on Green Living and Biodiversity Conservation": 1 +"Philosophy and Communication: The Art of Political Discourse: Analyzing Propaganda Techniques Using Socio-political Data": 1 +"Dramatic Writing: Creating Immersive Sci-Fi Worlds with Multi-Path Narratives and World Building using Final Draft": 1 +"Inorganic Chemistry: Deciphering Crystal Structures - An Introduction to X-Ray Diffraction and Scanning Electron Microscopy": 1 +"Quantum Physics: Interpreting the Mysteries of Quantum Entanglement using String Theory": 1 +"Mathematics 101: Exploring the Beauty of Fractals through Algorithmic Art": 1 +"Understanding Languages: A Linguistic Analysis of Humor in French and Spanish Literature": 1 +"Building Blocks for Juniors: An Introduction to Civil Engineering using LEGO": 1 +"Philosophical Minds: A Deep Dive into Metaphysics through the Lens of Quantum Physics": 1 +"Physical Education 300: Evaluating the Influence of Yoga on Mental Health within Various Societies": 1 +"Digital Art and Ballet: A Study of Human Anatomy through Motion Graphics": 1 +"Geography: Interpreting Satellite Images to Analyze Climate Change Impact on Marine Life": 1 +"Physical Education: Dance and Spatial Awareness: Analysis of Ballet Techniques using Infrared Cameras": 1 +"Biology: Unraveling the Mysteries of Human Genetic Disorders with CRISPR": 1 +"Singing with Solar: The Influence of Solar Panels on Audio Engineering": 1 +"Chemical Engineering: Polymer Synthesis and Characterization using Spectroscopy and Chromatography Techniques": 1 +"The Harmony of Nature: Birdsong Analysis through Frequency Modulation and Spectral Analysis": 1 +"Mathematics: Tackling Numerical Methods and Differential Equations with MATLAB ": 1 +"Modern Literature: Enhancing Narrative Techniques with Scrivener Writing Software": 1 +"Film Scoring: Exploring Cinematic Soundscapes with Logic Pro X and Pro Tools": 1 +"Business Studies: The Impact of CRM Software on a Restaurant Chain's Operations": 1 +"Astrophysics for Young Minds: Unraveling the Universe with Spectroscopic Observations and Telescope Usage": 1 +"Green Architecture: The Role of 3D Printing in Creating Eco-friendly Buildings": 1 +"The Influence of Art on Cognitive Development: An Art Therapy Based Study": 1 +"Exploring Data Science: Utilizing Python and Apache Spark for Big Data Analysis in Health Sector": 1 +"Mathematics: Exploring Cryptography and Coding Theory with Algebraic Curves and Elliptic Curves": 1 +"Digital Artistry: The Effective Use of Adobe Illustrator for Creating Vector Graphics": 1 +"Chemistry: Understanding the Molecular Structure of Drugs through Nuclear Magnetic Resonance Spectroscopy": 1 +"Artificial Intelligence: Applying Machine Learning Techniques in Netflix's Recommendation System": 1 +"History: Deciphering World War II through the Lens of Keynesian Economics": 1 +"Astrophysics: The Principles of Black Holes, String Theory and the Application of Quantum Gravity": 1 +"Environmental Sustainability: The Impact of Geospatial Technology in Conservation Planning": 1 +"Advanced Bioinformatics: Harnessing DNA Sequencing Data Analysis with Python, Distributed Computing and Amazon Web Services": 1 +"Full Stack Development: Mastering Ruby on Rails and Big Data Processing with Apache Spark": 1 +"Optics: Investigating the Phenomena of Polarization and Interference with the Use of Spectrometers and Wave Plates": 1 +"Physics: Applying Quantum Mechanics in the Study of Atomic Structures": 1 +"Literary Studies: Exploring Magical Realism in Latin American Literature": 1 +"Innovative Percussion: Using MIDI Controllers to Create Dynamic Drum Patterns in GarageBand": 1 +"Cognitive Psychology: fMRI Techniques for Studying Emotion Regulation Mechanisms in the Brain": 1 +"Music Technology: Exploring the Impact of Pro Tools on Modern Electronic Music": 1 +"Geography: Evaluating the Implications of Drone Technology on Landscape Mapping": 1 +"Environmental Science: The Role of Nanotechnology in Solving Water Pollution Problems": 1 +"Mental Wellness: The Use of Augmented Reality in Exposure Therapy for Anxiety Disorders": 1 +"Visual Art: The Evolution of Color Grading Techniques in Digital Photography": 1 +"Software Development: Analyzing Python Through the Prism of Machine Learning Algorithms": 1 +"Advanced Agriculturist: Organic Farming Techniques and Management with Precision Agriculture Technology": 1 +"Chemical Engineering: The Role of Nanotechnology in Environmentally Friendly Plastics Synthesis": 1 +"Epicurean Workshop: Understanding the Science of Flavors and Textures with Modernist Cuisine Techniques": 1 +"Innovative Applications of Quantum Physics in Cryptography: The Future of Secure Communication": 1 +"Artistic Expression: Exploring Emotions through Abstract Painting in Modern Art Movements": 1 +"Cultural Analysis: Tracing the Influence of Greek Mythology in Contemporary Western Literature through Comparative Studies": 1 +"Clinical Psychology: The Integration of Cognitive Behavioral Therapy and Mindfulness in Treating Anxiety Disorders": 1 +"Revolutionizing Archaeology: Unearthing Ancient Civilizations through Ground Penetrating Radar and 3D Imaging Technology": 1 +"Environmental Science: Conservation Strategies for Endangered Species using Satellite Telemetry and GIS": 1 +"Intro to Software Engineering: Developing Augmented Reality Apps with Swift and ARKit SDK": 1 +"Modern Sculpture: Expressing Emotions through 3D Printing and Virtual Reality": 1 +"Applied Mathematics: Exploring Cryptography and Security Algorithms in the Digital Age": 1 +"Environmental Studies: Assessing the Effects of Plastic Pollution on Marine Biodiversity": 1 +"Robotics Engineering: The Role of Artificial Intelligence in Industrial Automation and Sustainability": 1 +"Health and Fitness: Exploring the Effects of Yoga and Meditation on Stress Levels using Fitbit Trackers": 1 +"Literature: The Role of Metaphors in Modern Novels and Pop Music Lyrics": 1 +"Quantum Physics: Understanding Quantum Entanglement through Computer Simulations and Mathematical Probability": 1 +"Cutting-Edge Neuroscience: The Use of fMRI and Neural Networks in Understanding Mental Disorders": 1 +"World History: The Victorian Era and the Impact of the Industrial Revolution on Global Trade": 1 +"Archaeology and Ancient Societies: The Innovation and Evolution of the Wheel in Early Civilizations": 1 +"Chemistry: Advanced Study of Chemical Reactions using Quantum Mechanics and MATLAB": 1 +"Therapeutic Benefits of Music Therapy: A Comprehensive Analysis of the Mozart Effect": 1 +"Nanotechnology in Medicine: Innovations and Applications of Nanobots in Targeted Drug Delivery": 1 +"Astrophysics Explored: Investigating Cosmic Radiations using Radio Telescopes": 1 +"Advanced Sports Anatomy: Understanding the Role of Kinesiology in Enhancing Athletic Performance": 1 +"English Literature: Enhancing Communication Skills through Podcasting and Blogging": 1 +"Big Data and Predictive Analytics: Understanding the Impact on Healthcare Industry": 1 +"Green Technology in Transportation: The Future of Electric and Hydrogen Fuel Cell Vehicles": 1 +"Neuroscience: Decoding the Human Brain through EEG Analysis and Neural Network Modelling": 1 +"Investment Strategies: An In-depth Analysis of Cryptocurrency and its Market Trends using Python": 1 +"Biological Psychology: Applying Neuroplastic Concepts in Cognitive Behavioral Therapy": 1 +"Culinary Science: The Evolution of Sous Vide and its Impact on Modern Cuisine": 1 +"Astrophysics: Interpreting Cosmic Phenomena through the Lens of Radio Astronomy": 1 +"Climate Studies: The Effect of Oceanic Thermohaline Circulation on Global Climate Patterns": 1 +"Software Engineering: Exploring Advanced Algorithms with Ruby on Rails and PostgreSQL": 1 +"Particle Physics Unveiled: The Mystery behind Quantum Entanglement": 1 +"Business Administration: Strategic Planning with Balanced Scorecard Approach in Operations": 1 +"Ableton, Logic Pro, and FL Studio: Mastering Synthesis for Electronic Music Production": 1 +"Digital Media 201: The Role of Algorithmic Curation in Social Media Consumption": 1 +"Art History: Analyzing the Intersection of Postmodernism and Graffiti in Urban Art": 1 +"Physics: Quantum Mechanics Mastery Through Schrödinger's Equation and Particle-Wave Duality": 1 +"World Cultures: The Diversity of Folklore: Insights from Anthropological Studies": 1 +"Spanish Linguistics: Mastering Verb Conjugations and the Use of Subjunctive Moods": 1 +"The Renaissance and the Art of Etching: The Shift in Aesthetic Perception during the Enlightenment": 1 +"Sound-Wave: Acoustic Optimization in Concert Halls for Symphony Orchestra Performances": 1 +"Introduction to Sociology: Exploring Social Norms and Group Behavior": 1 +"The Printing Press and the Journalism Industry: The Influence of Gutenberg's Invention on Modern European Languages": 1 +"Health Sciences: Aerobic Conditioning and Muscle Coordination through Electromyographic Biofeedback in Rehabilitation Programs": 1 +"Computational Biology: Genome Sequencing and Data Analysis using R and Bioconductor": 1 +"Statistical Modeling: SPSS's Regression Analysis and Chi-Square Test for Hypothesis Testing.": 1 +"Physics: Exploring Quantum Mechanics through the Lenses of the Double Slit Experiment": 1 +"Medical Imaging: Demystifying the Human Brain with Functional Magnetic Resonance Imaging (fMRI)": 1 +"Literature: Unveiling Victorian Era Narratives with Dickens and Advanced Textual Analysis Tools": 1 +"Theoretical Concepts: Decoding the Essentials of Metaphysics through Hume's Empiricism": 1 +"Archaeology: Understanding the Influence of Metallurgy on Ancient Civilizations through Bronze Artifact Studies": 1 +"Creative Writing: Mastering the Art of Metaphors in Climate Change Discussions using Multimedia Storytelling": 1 +"Advanced Algebra: Exploring Musical Scales with Logarithmic Functions": 1 +"Data Science: Decoding Genomic Sequences Using R and ggplot for Data Visualization": 1 +"Dance Theory: Enhancing Flamenco Rhythms through Motion Capture Technology and Predictive Algorithms": 1 +"Sculpture: Traditional Wood Carving Techniques with Gouges, Mallets and Sandpaper": 1 +"Artificial Intelligence: Mastering Machine Learning Algorithms with TensorFlow and Python": 1 +"Philosophy for the Curious Mind: An Introduction to Metaphysical Theories and Existentialism": 1 +"The Gutenberg Revolution: Analyzing the Impact of Printing Press on European Literature in the Renaissance Era": 1 +"Sociology: Evaluating the Influence of Social Media on Gen Z's Mental Health: A Quantitative Study using SPSS Statistical Analysis Software": 1 +"Physics: Exploring Quantum Mechanics through MATLAB Simulations": 1 +"Incorporating GoPro Camera Technology in Wildlife Research: A Detailed Evaluation of 10 Different Utilization Approaches": 1 +"The Green Transition: Evaluating the Role of Renewable Energy in Sustainable Economic Development": 1 +"Physical Education: Enhancing Cardiovascular Health through High-Intensity Interval Training (HIIT)": 1 +"Archaeology: Unraveling Ancient Civilizations through the Study of Artifacts": 1 +"Astrophysical Marvels: The James Webb Space Telescope and the Exploration of Exoplanets": 1 +"Art History: Deconstructing Surrealism: A Visual Analysis through Machine Learning and Image Recognition": 1 +"Philosophy 101: Comprehensive Understanding of Existentialism: A Closer Look at Sartre’s Concept of Freedom": 1 +"Audio Engineering: A Detailed Exploration of Sound Synthesis and Modulation in Electronic Music using VST Plugins": 1 +"Cracking Rhythms: An Intensive Course on the Synthesis of Drum Sounds, Waveform Analysis, and Beat Detection": 1 +"Creating Digital Art using JavaScript, Photoshop, SVG, and Three.js: A Complete Introduction to Pixel Manipulation": 1 +"Physics: Interconnection of Quantum Mechanics, 3D Modelling and VR Technology in Simulating the Universe": 1 +"Urban Innovation: The Impact of Deconstructivism in Modern City Planning": 1 +"Contemporary Prose: The Effect of Social Media on Narrative Structures and Character Development": 1 +"Mental Health Improvement through AI: A Comprehensive Review of Twenty Cutting-edge Techniques Employed in Psychotherapy": 1 +"Advanced Coding: Transitioning from Basics to Complex Applications with Django and Python": 1 +"Biology for Beginners: Unveiling Cell Structure through Microscopic Observation": 1 +"Astrophysics Insight: Understanding Black Holes and the Enigma of String Theory": 1 +"Art Appreciation: The Impact of Pointillism during the Post-Impressionist Era": 1 +"Finance Fundamentals: The Influence of Blockchain Technology on Financial Transactions using Ethereum": 1 +"Electromagnetic Theory: Exploring Radio Waves using Oscilloscopes, Modulation Techniques, and Fast Fourier Transforms": 1 +"Introduction to Programming through Gaming: Building Virtual Worlds with Unity": 1 +"Detailed Analysis of Photosynthesis in Biology using Molecular Modeling Software, Spectrophotometry, and the Chlorophyll a Fluorescence": 1 +"Statistics: Logistic Regression in R for Climate Change: A Case Study on Coral Reef Degradation": 1 +"Ethnomusicology: The Evolution of Reggae Music: A Study of Rhythmic Patterns and Lyricism": 1 +"Linguistics: Semantic Fieldwork and Analysis: Using R, Python, WordNet and SpaCy for Computational Linguistics in Text Processing": 1 +"Understanding the Science of Sound: A Deep Dive into the Acoustics of Musical Instruments": 1 +"Mobile Development: Building Your First Android Game using Unity": 1 +"Incorporating Virtual Reality and Haptic Feedback in Sports Training: Techniques from Flight Simulation": 1 +"Physics: Uncovering the Science of Fluid Dynamics through the Study of Whipped Cream": 1 +"Data Science: Utilizing Machine Learning for Predictive Analytics: Real-World Use Cases and Potential Developments": 1 +"Audio Engineering: Creating Unique Sonic Landscapes with Ableton Live and Modular Synthesis": 1 +"Digital Art: Blending Photorealism and Abstract Expressionism in Digital Painting": 1 +"Sociology: The Intersection of Social Constructs and Cognitive Science": 1 +"Biochemistry: The Advancement and Practical Use of Mass Spectrometry in Protein Analysis": 1 +"Geometry in Architecture: A Comprehensive Approach to Spatial Design": 1 +"Computer Science: Application of Quantum Computing in Cybersecurity": 1 +"Philosophy: The Influence of Existentialism on Modern Literature": 1 +"Astronomy: Exploring the Universe: A Detailed Study of Black Holes and Quasars": 1 +"Psychology: Cognitive Behavioral Therapy: A Comprehensive Approach to Treat Anxiety and Depression": 1 +"Sociology: The Impact of Social Media on Interpersonal Relationships in the Digital Age": 1 +"Music: The Evolution of Music Composition: A Journey from Classical to Electronic": 1 +"Physics: Unraveling Quantum Mechanics: An In-depth Study of Particle-Wave Duality": 1 +"Biology: Understanding Human Genetics: A Closer Look at DNA Sequencing and Genomic Medicine": 1 +"Environmental Science: Climate Change Impact on Biodiversity: Exploring Ecosystem Resilience ": 1 +"Mathematical Physics: String Theory: Understanding Multidimensional Space through Mathematical Models": 1 +"Physics: Quantum Computing - Unraveling the Puzzles of Superposition and Entanglement": 1 +"Biology: Microbial Warfare - Understanding Antibiotic Resistance through Genomic Sequencing": 1 +"Computer Science: The Intersection of Blockchain Technology and Cybersecurity in Financial Systems": 1 +"History: Deciphering Ancient Civilizations through Satellite Imagery and LiDAR Technology": 1 +"Mathematics: Solving Mysteries of the Universe with Multivariable Calculus and Tensor Analysis": 1 +"Music Education: The Influence of Digital Audio Workstations on Modern Composition and Arrangement": 1 +"Environmental Science: Climate Change - Exploring the Role of Carbon Sequestration Techniques": 1 +"Literature: The Influence of Feminism on 20th Century Novel Narratives": 1 +"Physics: The Impact of Nanotechnology on Renewable Energy Solutions": 1 +"Astronomy: Advanced Telemetry and Its Role in Interstellar Exploration": 1 +"Chemistry: A Practical Approach to Organic Synthesis using Molecular Modelling Software": 1 +"Artificial Intelligence: Examining the Role of Machine Learning in Predicting Stock Market Trends through Python": 1 +"Philosophy: An In-depth Study of Existentialism in the Age of Social Media": 1 +"Physical Education: Using Sports Science and Wearable Technology to Enhance Athletic Performance": 1 +"Film Studies: The Influence of Digital Animation Techniques on Modern Storytelling": 1 +"Astronomy: Understanding Cosmic Events through Simulation Software and Telescopic Observations": 1 +"History: Examining the Influence of Radio Broadcasts on the Civil Rights Movement in America": 1 +"Computer Science: Building Efficient Algorithms using C++ and Data Structures": 1 +"Linguistics: Exploring Language Evolution in the Internet Age using Computational Models": 1 +"Architectural Design: Utilizing CAD Software for Sustainable Urban Planning and Development.": 1 +"Visual Communication: Creating Compelling Storyboards with Adobe Illustrator and After Effects": 1 +"Decoding Genetics: Understanding CRISPR-Cas9 Gene Editing Through Live Cell Imaging": 1 +"Artistic Expression: Unveiling the Secrets of Acrylic Pouring Using the Swipe Method": 1 +"Music Production: Exploring Synthesis and Sequencing in Electronic Music with Ableton Live": 1 +"Quantum Mechanics: Decoding the Enigma of Quantum Entanglement with MATLAB": 1 +"Cryptology & Literature: Analyzing the Influence of Bitcoin on Modern Fiction": 1 +"Chess Psychology: Enhancing Strategic Thinking through Virtual Reality Simulations": 1 +"Sound Engineering: Utilizing Spotify and Pandora for Comprehensive Study of Audio Mixing Techniques in Podcast Production": 1 +"Music Composition: Mastering Melody Construction with MIDI Keyboards": 1 +"Young Biologists: Discovering the Intricacies of DNA Replication in Basic Biology": 1 +"Biology: Exploring Genetic Diversity through DNA Sequencing Techniques": 1 +"Social Media Marketing: Leveraging Twitter for Brand Engagement and Conversion": 1 +"Chemistry: The Role of Nanochemistry in the Development of Drug Delivery Systems": 1 +"Outdoor Survival: Mastering Fire-Making Techniques in Various Weather Conditions": 1 +"Linguistics: The Impact of Emoji on Digital Communication and its Cultural Significance": 1 +"Cuisine Science: The Art of Sushi Making and the Science Behind Umami": 1 +"The Technological Leap: The Societal Impact of the Internet and Digital Communication": 1 +"The Advances of Motion Graphics: From Stop-motion to CGI, an in-depth study of Animation Techniques": 1 +"Music Theory: Exploring Soundscapes and Ambience in Film Scoring": 1 +"French Proficiency: Enhancing Comprehension and Expression through Interactive Online Gaming": 1 +"Chemistry: Utilizing Quantum Theory to Decipher Nuclear Reactions in Cold Fusion": 1 +"Computer Science: Network Security Analysis using Python and Machine Learning Algorithms": 1 +"Senior Paleontology: Fossil Dating and Evolutionary Patterns through Radiometric Techniques": 1 +"Advanced Data Mining and Predictive Modelling in Python: A Comprehensive Study on SVM": 1 +"Essentials of Visual Arts: Assessing the Influence of Digital Media on Abstract Expressionism": 1 +"Language Arts: Exploring Metaphorical Devices in 19th Century Gothic Novels": 1 +"Mastering Vector Illustrations: Harnessing the Power of Pen Tool in Adobe Illustrator": 1 +"Astrophysics: Dark Matter and Quantum Gravity - Decoding the mysteries of the Universe through String Theory": 1 +"Biology: Gene Expression and Genetic Disorders Analyzed through Genome Sequencing and Bioinformatics": 1 +"Neuroscience: Implication of Positron Emission Tomography and Functional Ultrasound in Neurovascular Coupling: A Deep Dive into PET-CT Technology": 1 +"Astrophysics: Understanding Cosmic Sound Waves - The Harmony of Stars": 1 +"Cultural Studies: Analyzing Global Cinema through the Lens of Social Media Narratives": 1 +"Podcasting for Authors: Mastering Audio Content Distribution in the Digital Age": 1 +"Algebra: Exploring the Impact of Fibonacci Sequences on Modern Building Constructions": 1 +"Sociology: The Influence of Hip Hop Culture on Urban Development: A Study using Ethnographic Research Methods": 1 +"Satellite Technology and Its Contribution to Geospatial Information: The Influence of Oceanic Tides on Marine Navigation": 1 +"Conservation Studies: Monitoring Biodiversity Loss with Satellite Imaging and Drone Technology": 1 +"Implementing Deep Learning in Historical Analysis: A Comprehensive Study of Roman Architecture and Urban Planning": 1 +"Decoding Blockchain: Enhancing Netflix's Personalized Viewing Experience through Cryptography": 1 +"Proteomics and Cellular Biology: Protein Structure Analysis and Computational Modeling: Decoding the Secret Life of Cells with Cryo-electron Microscopy": 1 +"Chemistry: Unraveling Molecular Structure through Nuclear Magnetic Resonance and Quantum Mechanics": 1 +"Mental Health and Mindfulness: An In-Depth Look into Cognitive Behavioral Therapy and Zen Meditation Techniques": 1 +"Biodiversity: A Microscopic Examination of Soil Ecology using DNA Barcoding and Electron Microscopy": 1 +"Fine Arts: The Evolution of Impressionism in Landscape Painting: Incorporating Digital Art Techniques": 1 +"Music Theory: The Evolution of Jazz Harmony: A Closer Look at Miles Davis' Modal Jazz": 1 +"Nautical Archaeology: The Story of Ancient Maritime Trade told through Underwater Excavations and Artifact Preservation": 1 +"Climate Change: Understanding the Effects of Greenhouse Gas Emissions on Polar Ice Caps - A Geographical Perspective": 1 +"Political Science: Evaluating the Impact of Immigration Policies on National Economies using Econometric Analysis": 1 +"Probability and Statistics: Mastering the Art of Predictive Analysis through Machine Learning Algorithms": 1 +"Digital Age and Society: Exploring the Effects of Social Media on Interpersonal Communication: A Sociological Perspective": 1 +"Advanced Astrophysics: A Deep Dive into Stellar Evolution Using MATLAB and Simulink": 1 +"Psychology: The Impact of Virtual Reality Therapy on Anxiety and Depression Disorders": 1 +"Innovative Aquaculture Techniques: Leveraging AI for Sustainable Seafood Production: A Comparative Analysis": 1 +"Mastering Adobe Illustrator: Enhancing Graphic Design through Layering and Vector Manipulation": 1 +"Cybersecurity Strategies: Implementing Blockchain Technology for Secure Online Transactions": 1 +"Exploring Space Physics: Utilizing MATLAB in Analyzing Cosmic Rays and Solar Flares": 1 +"Interactive Storytelling: Using Twine and Unity to Develop Engaging Video Game Narratives": 1 +"Improving Healthcare: The Role of AI and IoT in Predicting and Preventing Chronic Diseases": 1 +"Mastering Italian: Language Acquisition through Babbel and Pimsleur": 1 +"Culinary Arts: The Science of Molecular Gastronomy: Experiments with Liquid Nitrogen and Hydrocolloids.": 1 +"Geography: Understanding Climate Change through the Study of Glacial Movements": 1 +"Advanced Chemistry: Investigating the Role of Catalysts in Industrial Chemical Reactions": 1 +"High School Physics: The Impact of Friction on Motion and Energy Conservation": 1 +"Art Appreciation: Impressionism Unveiled: A Closer Look at Monet's Use of Color and Light": 1 +"JavaScript for Computational Biology: Analyzing Genetic Sequences with Node.js, Express.js, and MongoDB": 1 +"Sociology: The Effect of Social Media on Modern Communication - A Study from Myspace to Instagram": 1 +"Finance 101: Understanding Stock Market Fluctuations through the Concept of Market Volatility": 1 +"Music of the World: The Journey of Percussion Instruments and their Influence on Modern Music": 1 +"Event Management: Leveraging Spotify and Tidal Playlists for Efficient Curation of Music for Different Event Themes": 1 +"Senior Zoology: Observing Aquatic Life Behavior through the Use of Underwater Cameras": 1 +"Biology: A Deep Dive into Human Genome Sequencing: Utilizing CRISPR-Cas9 and Next-Generation Sequencing Technologies": 1 +"Rethinking Ethics: Applying Deontological Theory in Decision Making Using Python-based Decision Trees": 1 +"Data Science: Harnessing the Power of R Programming and Machine Learning to Predict Stock Market Trends": 1 +"Art History: Analyzing the Impact of the Printing Press on the Renaissance Art Movement": 1 +"Astrophysics: The Role of Quantum Entanglement in the Theory of Black Holes": 1 +"Introduction to Game Development: Unity 3D Programming for Virtual Reality and Augmented Reality Applications": 1 +"Primary Education 101: Incorporating Google Classroom in Remote Learning - A Step towards Digital Literacy": 1 +"Advanced Calculus: Application of Differential Equations in Modeling Economic Behaviors using MATLAB": 1 +"Mastering Cubase Pro: The Art of Mixing and Mastering using the Yamaha DM2000 Digital Mixer": 1 +"Geography: Understanding Climate Change Impact on Urban Sprawl: A Remote Sensing Approach Using Google Earth Engine": 1 +"Physics: Understanding String Theory through 3D Visualizations and Mathematical Modelling": 1 +"Graphic Design: The Role of Photoshop in Creating Surreal Art in Contemporary Advertising": 1 +"Cinematography: The Revolution of VFX Techniques in Hollywood Blockbuster Films": 1 +"Unpacking Basketball Strategies: Utilizing Sportstec Player for In-Depth Game Analysis and Strategy Formation": 1 +"Data Science: Machine Learning in Healthcare with Python, Statistics and Deep Learning": 1 +"Music Theory: Examining Beethoven's Symphony No. 9 through the Lens of Classicism": 1 +"Cognitive Psychology: The Science of Decision-Making Processes Studied with EEG and Machine Learning": 1 +"Art Critique: The Influence of Lighting in Baroque Art - An Intensive Study of Caravaggio's Works": 1 +"Innovative Media Platforms: Leveraging Spotify's Algorithm for Tailored Podcast Curation in Digital Marketing": 1 +"Global Studies: A Thematic Study of World Expos and their Influence on Global Commerce and Diplomacy": 1 +"Computer Science: Understanding the Role of Quantum Computing in Decoding Genetic Sequences": 1 +"Outdoor Education: The Use of GIS Mapping in Wilderness Navigation and Survival Training": 1 +"Comparative Literature: Analyzing the Influence of Mythology on Modern Fantasy through Linguistic Anthropology": 1 +"Advanced Calculus: Investigating Economic Models through Differential Equations and Game Theory": 1 +"Environmental Science: Exploration of Climate Change Effects on Biodiversity Using GIS and Remote Sensing": 1 +"Bioinformatics: Genomic Data Analysis and Personalized Medicine using R Programming": 1 +"Art History: Deconstructing the Influence of Surrealism in Contemporary Digital Art using Machine Learning": 1 +"Cybersecurity: The Role of Homomorphic Encryption in Data Privacy for Cloud-Based Healthcare Systems": 1 +"Philosophy: Deconstructing the Paradoxes of Time Travel through Modal Logic and Metaphysics": 1 +"Molecular Biology: Dissecting Cellular Functions through the Lens of CRISPR-Cas9 Genetic Editing": 1 +"Geographical Information Systems: Analyzing Global Climate Change through Satellite Imagery and Topographic Maps": 1 +"Introduction to Quantum Mechanics: Exploring the Mysteries of Quantum Tunneling and Wave-Particle Duality": 1 +"Biology in Motion: Understanding the Biomechanics of Human Movement through Wearable Technology": 1 +"Creative Writing: Using Symbolism in Short Stories to Address Social Inequality": 1 +"Economics & Environmental Studies: Strategies for Renewable Energy Investment for Sustainable Economic Growth": 1 +"Applying Python in Financial Market Analysis: Investigating Retail Sector Trends through the Lens of Ten Data Science Tools": 1 +"Geometry Uncovered: Delving into the Complexities of Euclidean Space and Non-Euclidean Surfaces": 1 +"Music Education: Examining the Influence of Digital Audio Workstations on the Evolution of Music Production": 1 +"Sports Science: Analyzing Football Tactics through the Lens of GPS Tracking Technology": 1 +"Exploring the Cosmos: Unraveling the Mysteries of Black Holes with the James Webb Space Telescope": 1 +"Digital Storytelling: Exploring Shakespeare's Plays Through Virtual Reality": 1 +"Uncharted Depths: Deep Sea Exploration and Marine Biology with ROV Technology": 1 +"Psychology: Understanding Human Behavior through Neuroimaging and Data Analysis": 1 +"Advanced Astronomical Studies: Mapping the Milky Way with Radio Telescopes and Astrophysics Software": 1 +"Sustainable Development: Implementing Solar Energy Systems and IoT for Smart Cities": 1 +"Physics: Unraveling the Mysteries of Quantum Mechanics Using MATLAB Simulations": 1 +"Archaeology: Deciphering Ancient Scripts and Civilizations with Machine Learning": 1 +"Chemistry: The Art of Perfume Making - An Introduction to Organic Chemistry and Gas Chromatography": 1 +"Modern Warfare: The Evolution and Impact of Drone Technology in Military Strategy": 1 +"Puzzle Masters: Enhancing Problem Solving Skills through Rubik's Cube Algorithms and Python Programming": 1 +"Psychology: The Influence of Social Media on Teenage Self-Esteem: An Investigation into Instagram": 1 +"Health and Fitness: The Effects of Yoga on Mental Wellbeing": 1 +"Mastering French: Boosting Language Acquisition with Augmented Reality Applications": 1 +"World History: Industrial Revolution - The Evolution of Steam Power": 1 +"Environmental Science: The Paris Agreement, Green Technologies, and the Direction of Environmental Policies": 1 +"Smart Agriculture: Its Impact on Sustainable Water Management in Farming": 1 +"Light Reflection and Refraction: Exploring the Role of Laser Technology in Modern Medicine": 1 +"Literature: Utilizing Metaphors in Haikus for Expressive Writing about Urbanization ": 1 +"Understanding the Mathematics of AI: The Role of Machine Learning in Autonomous Vehicles ": 1 +"Zoology: Coral Reef Ecosystems and Marine Biodiversity: A Study through Underwater Photography": 1 +"Chemistry: Advanced Analysis of Organic Compounds using Gas Chromatography and Mass Spectrometry": 1 +"Political Science: Examining Policy Development and Public Opinion using Predictive Data Analytics Algorithms": 1 +"Pro Tools in Music Production: Harnessing Audio Plugins for Innovative Sound Design": 1 +"Genetic Science: Leveraging Whole Genome Sequencing to Investigate the Impact of Genetic Variations on Disease Susceptibility": 1 +"Metaphysics: Exploring Plato's Theory of Forms to Comprehend Reality and Knowledge": 1 +"High School Algebra: Mastering Quadratic Equations through Graphing Calculators": 1 +"Health and Wellness: Understanding the Impact of High-Intensity Interval Training using Fitbit Fitness Trackers": 1 +"Digital Media: Exploring the Confluence of Photography and Graphic Design using Adobe Photoshop": 1 +"The Practical Use of Brain.fm's Focus Sessions through Biofeedback Devices: A Comprehensive Mental Health Education Approach": 1 +"Marketing Strategy: Maximizing Brand Visibility through Instagram Influencer Marketing in the Social Media Age": 1 +"Physics in Motion: Exploring Kinematic Principles through VR Simulations": 1 +"Health and Wellness: Enhancing Physical Agility with Pilates and Fitbit Fitness Tracker": 1 +"The Influence of Folklore in the Development of Contemporary Literature during the Victorian Era": 1 +"Calculus: Implementing Fibonacci Sequences in Modern Bridge Building using AutoCAD": 1 +"Cinema Studies: Enhancing Film Directing Skills through Cinematic Color Grading and Sound Design": 1 +"The Impact of Robotics: How IoT is Revolutionizing Supply Chain Management and Retail Business": 1 +"Art History 107: The Renaissance Period and the Use of Oil Paint in Fresco Artwork": 1 +"Mastering Vocabulary: Combining Duolingo App and Imagery to Excel in Spanish Language Learning": 1 +"Marine Biology 401: Discovering Cetacean Behavior through Sonar Technology, Tagging, and Drone Videography": 1 +"Operation Eagle Eye: The Role of Cryptography in Cold War Espionage": 1 +"Chemistry 201: An Introduction to Organic Synthesis and Its Application in Drug Development": 1 +"Geometry Unveiled: Exploring the Impact of Euclidean Principles on Modern Architecture": 1 +"Unraveling the Mysteries of Fluid Dynamics in Aerospace Engineering": 1 +"The Intersection of Social Psychology and Marketing: Insights from Consumer Behavior Analysis": 1 +"Decoding the Middle Ages: The Impact of the Printing Press and the Compass on European Exploration ": 1 +"Advancements in Nuclear Magnetic Resonance Spectroscopy and Its Role in Structural Biology": 1 +"Introduction to Calculus: Applying Derivatives in Physics for Motion Analysis": 1 +"Understanding the Fundamentals of Trigonometry: Sine, Cosine, and Their Role in Wave Theory": 1 +"Gourmet Genome: Exploring the Science of Taste through Genetic Analysis": 1 +"Environmental Science: Exploring the Role of Green Technology in Climate Change Mitigation": 1 +"Mathematics: Decoding Fractals and Chaos Theory with Python Programming": 1 +"Physics: Exploring Quantum Mechanics through Simulations in MATLAB": 1 +"Psychology: Unraveling Human Behaviour Patterns with Data Mining Techniques": 1 +"Chemistry: Understanding Molecular Structures using X-Ray Crystallography": 1 +"Advanced Electronics: Circuit Design and Troubleshooting with Arduino": 1 +"Geography: Climate Change Studies using Geographic Information System (GIS) and Remote Sensing": 1 +"Advanced Physics: The Role of Nanotechnology in Quantum Computing": 1 +"Computer Science: Deep Dive into Neural Networks with TensorFlow ": 1 +"Sociology: Investigating Social Structures through Network Analysis using Gephi ": 1 +"Environmental Science: Biodiversity Assessment using Satellite Imagery and Machine Learning Algorithms": 1 +"Advanced Yoga Techniques: Enhancing Flexibility and Strength Using Biomechanics": 1 +"Physics 201: Thermodynamics - A Comprehensive Study of Heat Transfer and Energy Conservation": 1 +"Mastering 3D Modeling in Blender: An In-depth Course on Texturing and Rendering in Animation and Game Design": 1 +"Marketing 210: The Impact of Social Media on Branding in the Fashion Industry": 1 +"Anthropology: Analyzing Linguistic Patterns in Aboriginal Cultures using Phonetics": 1 +"Astrophysics: Expanding Horizons with the Theory of Black Holes and Wormholes": 1 +"Discovering the Mind-Body Connection: The Influence of Meditation on Emotional Well-being": 1 +"Cryptocurrency 101: Understanding the Influence of Bitcoin on Global Economy": 1 +"Literature 220: Exploring Allegory in Novels and Plays through Semantic and Pragmatic Analysis": 1 +"Organic Chemistry: Investigating The Biochemical Role of Enzymes using Mass Spectrometry": 1 +"Physics 101: Unraveling the Mysteries of Black Holes and the Theory of Relativity": 1 +"Digital Art: A Comprehensive Study of Photoshop and Graphic Design Techniques": 1 +"Biology: The Intricate World of Cellular Biology - An Examination through Microscopic Imaging": 1 +"Advanced Grammar: Delving into the Nuances of Punctuation and Syntax with Grammarly": 1 +"Sustainability Studies: The Impact of Wind Energy on Climate Change and Carbon Emissions": 1 +"Music Theory: The Evolution of Jazz - A Historical Analysis with Louis Armstrong's Contributions": 1 +"Nano-Engineering: Nanocad Used in the Structural Design of Nanomaterials and its Impact on Medicine": 1 +"Social Media Marketing: The Role of Instagram and Influencer Marketing in the Fashion Industry": 1 +"Philosophy 201: An Overview of Metaphysics through the Lens of Immanuel Kant": 1 +"Data Science: Machine Learning and AI - An Exploration with Python and TensorFlow": 1 +"Chemistry: The Role of Nanotechnology in Drug Delivery Systems": 1 +"Anthropology: Unearthing the Influence of Climate Change on Ancient Civilizations": 1 +"Film Studies: Examining the Role of Virtual Reality in Recreating Historical Events": 1 +"Mathematics: The Impact of Fractal Geometry on Modern Architecture Design": 1 +"Astronomy: Exploring the Mysteries of Dark Matter and Dark Energy": 1 +"Biomechanics: The Role of Wearable Technology in Injury Prevention and Rehabilitation": 1 +"Geology: Delving Deep into the World of Volcanology - A Study on Magma Dynamics": 1 +"Psychology: The Influence of Virtual Reality on Cognitive Behavioral Therapy": 1 +"Advanced Cybersecurity: Decoding the Complexity of Blockchain Technology": 1 +"Music and Technology: The Evolution of Sound Synthesis in Electronic Music Production": 1 +"Advanced Botany: Unpacking the Role of Epigenetics and Proteomics in Plant Pathology": 1 +"Physical Education: Volleyball Strategies and Team Cohesion - An Application of Sports Psychology": 1 +"Organic Chemistry Explored: Proficient use of Gaussian Software and Valence Bond Theory in Understanding Molecular Geometry": 1 +"Finance: The Influence of Blockchain Technology on Global Banking Transactions": 1 +"Anthropology: The Progress of Human Migration: The Impact of Satellite Technology on Global Connectivity": 1 +"Aquatic Wonders: Deciphering the Impact of Temperature and Salinity on Coral Reef Ecosystems using Chemical Oceanography": 1 +"Biotechnology 101: Employing CRISPR-Cas9 and Next Generation Sequencing in Gene Therapy": 1 +"Data Science in Neurobiology: Predicting Neuronal Behaviour using Deep Learning and Neural Networks": 1 +"Modern Physics: Diving into the Realm of Relativity through the Perspective of Loop Quantum Gravity": 1 +"Public Health: Utilizing Wearable Technology for Disease Monitoring and Prevention: An Evaluation of Emerging Trends.": 1 +"Physics Decoded: Quantum Computing and its Potential in Material Science": 1 +"Biology 101: Using Bioinformatics Tools for Genomic Analysis in Evolutionary Studies": 1 +"The Art of Storytelling: A Linguistic Approach to Screenwriting Using Narrative Analysis": 1 +"Chemistry in Everyday Life: Analyzing Chemical Reactions in Cooking Through Molecular Gastronomy": 1 +"Music Theory: Implementing Algorithmic Composition in Electronic Music Production": 1 +"Sociology: Understanding Social Dynamics through Network Analysis in Social Media Platforms": 1 +"The Influence of Augmented Reality on Healthcare: Revolutionizing Surgery and Medical Training": 1 +"Philosophy: The Role of Artificial Intelligence in Ethical Decision Making": 1 +"Environmental Science: Utilizing GIS for Landscape Analysis in Conservation Planning": 1 +"Psychology: Applying Neuromarketing Techniques for Consumer Behavior Insights": 1 +"Mathematics: Leveraging Algorithms to Predict Stock Market Fluctuations": 1 +"Chemistry: Exploring Pharmaceutical Drug Synthesis Using Organic Chemistry Principles": 1 +"Unraveling World Cuisine: A Data Analysis and Machine Learning Approach to Identifying Food Trends": 1 +"Primary Education: Implementing Virtual Reality in Classroom for Enhanced Learning Experience": 1 +"Linguistics: Deciphering Ancient Scripts with the aid of AI and Pattern Recognition ": 1 +"Astrophysics: Unveiling The Enigma of Black Holes and the Theory of Relativity": 1 +"Quantum Mechanics: Understanding Quantum Entanglement through Computer Simulations": 1 +"The Power of Virality: Analyzing the Influence of Memes on Internet Culture and Communication": 1 +"Sustainable Architecture: The Role of Solar Panels and Passive Cooling in Green Building Design": 1 +"Fine Arts: Mastering Portraiture with Oil Paints and Color Theory.": 1 +"Physics: Understanding Quantum Mechanics Through the Lens of the Double-slit Experiment": 1 +"Biology: Unveiling the Secrets of Cellular Respiration with Advanced Microscopy Techniques": 1 +"Art History: Analyzing the Impact of War on Expressionism in the 20th Century": 1 +"Global Economy: The Effects of Cryptocurrency on the Future of Financial Transactions": 1 +"Interactive Robotics: Utilizing Haptic Feedback in Physical Therapy for Stroke Patients": 1 +"Design Theory: Applying Golden Ratio in Modern Architecture using CAD Software": 1 +"Stellar Astrophysics: Decoding Stars' Life Cycle with Hubble Space Telescope and Spectroscopy": 1 +"Neurobiology: Investigating the Effects of Meditation on Brain Plasticity Through MRI Imaging": 1 +"Mathematics: Understanding Nature with Fibonacci Sequence, Fractal Patterns and Complex Numbers": 1 +"Advanced Java for Data Science: An In-depth Study of Machine Learning Algorithms": 1 +"Understanding Our Universe: Exploring the Complexities of Black Holes through Astrophysics": 1 +"Artificial Intelligence in Healthcare: An Insight into Machine Learning for Disease Prediction and Diagnosis": 1 +"World Literature: The Impact of Graphic Novels on Modern Storytelling": 1 +"Chemistry of Food: The Science Behind Fermentation and Its Nutritional Relevance": 1 +"Climate Change and Its Impact: An Environmental Science Perspective on Melting Glaciers": 1 +"Financial Literacy for Teens: Decoding Stock Market Basics through Real World Scenarios": 1 +"Cognitive Development in Children: A Psychological Examination of the Role of Interactive Play": 1 +"Advanced Robotics: Exploring the Applications of Autonomous Drones in Agriculture": 1 +"Digital Humanities: Understanding Cultural Heritage through 3D Modelling and Virtual Reality": 1 +"Sports Science: The Role of Wearable Technology in Enhancing Athletic Performance": 1 +"Math 210: Calculus Applications in Cryptography: Understanding RSA Algorithm": 1 +"Physics 303: Quantum Mechanics: Understanding Entanglement through Bell's Theorem": 1 +"Chemistry: Advanced Organic Synthesis: Exploring Reactions with NMR Spectroscopy": 1 +"World Languages: Mandarin Chinese: Implementing WeChat in Classroom for Interactive Learning": 1 +"Music 220: Baroque Music Composition and its Impact on Contemporary Film Scores": 1 +"Psychology: Understanding Human Behavior Through the Lens of Cognitive Load Theory and EEG Readings": 1 +"Economics: Analyzing Global Trade Patterns through the Lens of Game Theory": 1 +"Computer Science: Mastering Machine Learning: Application of Neural Networks in Image Recognition": 1 +"History: The Byzantine Empire: A Detailed Study of Mosaic Art and its Cultural Significance": 1 +"Environmental Science: Exploring Climate Change through the Integration of GIS and Remote Sensing Technologies": 1 +"Astronomy 101: Unveiling the Universe with Hubble Telescope and VR Technology": 1 +"Advanced Literature: Harnessing Metaphors and Allegory in Classic Novels - A Deep Dive into Symbolic Interpretation": 1 +"Ethnomusicology: The Role of Indigenous Instruments in Cultural Identity Preservation - Leveraging AI for Virtual Reproductions": 1 +"Archaeology: Unveiling Prehistoric Cultures through Paleobotanical Analysis": 1 +"Advanced Graphic Design: Exploring Symmetry with Adobe Illustrator - A Comprehensive Guide to Geometric Art": 1 +"Neuroscience: Delving into Neural Networks and Synaptic Plasticity through Interactive 3D Brain Models ": 1 +"Creative Writing: Mastering Haiku and Tanka with the Principles of Wabi-Sabi in Japanese Poetry": 1 +"Sound Design: Acoustics and Ambience - Creating Immersive Environments with Virtual Reality": 1 +"Artificial Intelligence: Developing Intelligent Agents with Python and TensorFlow": 1 +"Economics 101: Utilizing Game Theory in Analysing Economic Behaviour with R Programming": 1 +"Bioengineering: Genetic Engineering and CRISPR-Cas9: Revolutionizing Disease Treatment and Prevention": 1 +"Anthropology: Hunter-Gatherers to Settled Societies: The Evolution of Human Cultures and Agriculture": 1 +"Cybersecurity: Understanding the Impact of Quantum Computing on Modern Cryptography": 1 +"Microeconomics: Game Theory and Behavioral Economics in Strategic Decision Making": 1 +"Statistics and Machine Learning: Predictive Modeling Using Python and Scikit-Learn in Financial Analysis": 1 +"High School: Exploring American History through Interactive Simulations and Virtual Reality Experiences": 1 +"Fine Arts: Romantic Landscape Paintings: Developing Depth and Perspective with Oil Paint Techniques": 1 +"Electrical Engineering: Understanding Electromagnetic Waves and Signal Transmission with Satellite Communication Systems": 1 +"Application of Virtual Reality in Astronaut Training: A Study Using Unreal Engine": 1 +"Advanced Data Analytics: Deep Learning and Neural Networks using MATLAB and Keras": 1 +"Astronomy: The Influence of Dark Matter on Galaxy Formation": 1 +"Sociology: The Impact of Social Media on Modern Political Movements": 1 +"Advanced Calculus: Using Python to Solve Differential Equations": 1 +"Exploring the Renaissance: The Intersection of Art and Politics in 15th Century Italy": 1 +"Biomedical Engineering: The Role of Nanotechnology in Targeted Drug Delivery": 1 +"Cognitive Psychology: Using EEG in the Study of Memory and Learning": 1 +"Evolution of Cryptography: From Caesar Cipher to Quantum Key Distribution": 1 +"Deep Dive into the Human Genome: Exploring Genetic Variations using Bioinformatics": 1 +"Quantum Physics: The Role of Quantum Entanglement in Quantum Computing": 1 +"Predictive Analytics in Health Care: Using Machine Learning Algorithms in Disease Diagnosis": 1 +"Astrophysics: Unveiling the Mysteries of Dark Matter and Energy with Quantum Mechanics": 1 +"Programming with Java and Unity: An Introductory Guide to Video Game Development for Beginners": 1 +"Biology: The Power of Photosynthesis - A Deep Dive into Plant Life using Microscopic Imaging": 1 +"Advanced Nanotechnology: Exploring the Potential of Carbon Nanotubes in Material Science": 1 +"The Art of Screenplay: A Comprehensive Course on Storytelling, Character Development, and Cinematic Techniques": 1 +"Finance: The Influence of Machine Learning and Predictive Analytics on Stock Market Forecasting": 1 +"Philosophy: Analyzing Moral Dilemmas and Ethical Implications of Virtual Reality": 1 +"International Relations: Utilizing Network Analysis to Understand Global Diplomatic Interactions": 1 +"Environmental Science: Evaluating Climate Change Impacts through Satellite Remote Sensing and GIS": 1 +"Cognitive Science: Unraveling Human Perception and Consciousness with Electroencephalography (EEG)": 1 +"Advanced Nanotechnology: In-depth Exploration of Quantum Dots and Photovoltaics in Renewable Energy": 1 +"Active Listening: The Power of Podcasts in Modern Literature": 1 +"Utilizing Augmented Reality in Sustainable Architecture: A Study on Eco-friendly Design": 1 +"Advanced Econometrics: Predictive Modelling in R using the Time Series Analysis Algorithm": 1 +"Cinematic Studies: Representing Climate Change through Experimental Film": 1 +"Psychology 101: Understanding Cognitive Biases and their Role in Behavioral Economics": 1 +"Digital Marketing: The Impact of Viral Videos on Consumer Behavior in E-commerce": 1 +"Fractal Mathematics: An Extensive Study with Python": 1 +"Decoding Political Allegory in Science Fiction: An Analysis through Postcolonial Lens": 1 +"Computer Science: Developing Interactive Games using Unity": 1 +"Unlocking the Human Genome: Exploring the Impact of Genetic Engineering on Future Generations": 1 +"Excel Masterclass: Financial Modeling and Data Analysis using Pivot Tables": 1 +"Adobe Audition's Multi-Track Mixer: Revolutionizing the World of Audio Post Production": 1 +"Advanced Computing 202: Mastering Java Programming with Eclipse IDE": 1 +"Graphic Design: Deconstructing Minimalism: An Analytical Approach using Adobe Illustrator and Deep Learning": 1 +"Anthropology: The Progression of Human Societies - A Comprehensive Study of Social Networking Platforms": 1 +"Critical Thinking Unleashed: Demystifying Causal Reasoning using Flowcharts and Computational Thinking": 1 +"Exploring Cultural Heritage: Ancient Civilizations Through 360° Virtual Reality Filmmaking": 1 +"Decoding Quantum Computing: The Application of Quantum Superposition in Problem-Solving": 1 +"Chemistry Uncovered: Understanding Chemical Reactions and Molecular Structures through Spectroscopic Analysis": 1 +"Chemistry: Deciphering the Mystery of Acid-Base Reactions Using Titrations": 1 +"Ecology: The Role of Permaculture in Sustainable Agriculture Development": 1 +"Exploring HTML5: The Impact of Web Technologies on Global Communication": 1 +"History: The Influence of the Silk Road on Ancient Trade Economies": 1 +"Music Theory: The Science of Sound: An Acoustical Analysis": 1 +"Mastering Adobe Illustrator: The Impact of Graphic Design in Digital Marketing": 1 +"Psychology: The Power of Cognitive Behavioral Therapy in Mental Health Advancement": 1 +"Mechanical Engineering: Revolutionizing Transportation with Electric Vehicle Technologies": 1 +"Advanced Calculus: Unraveling the World of Differential Equations with MATLAB": 1 +"Health Education: Understanding Nutrition: A Closer Look at Macronutrients and Micronutrients.": 1 +"Advanced Botany: Understanding Photosynthesis through Electron Microscopy": 1 +"Stellar Astrophysics: Investigating Dark Matter through Radio Telescopes and Ultraviolet Technology": 1 +"Neuropsychology Essentials: Exploring Consciousness through EEG and PET Scans": 1 +"Green Interior Design: The Use of 3D Printing and Recycled Materials in Sustainable Furniture Creation": 1 +"Digital Renaissance: The Influence of Augmented Reality on Contemporary Literature": 1 +"Physics for Beginners: Exploring Quantum Mechanics through Thought Experiments": 1 +"Elementary Mathematics: Learning Calculus through Interactive Problem-Solving": 1 +"Sustainable Agriculture: The Impact of Vertical Farming on Global Food Security": 1 +"Data Science in Sports: Utilizing Python for Performance Analytics": 1 +"Understanding Cryptocurrency: The Role of Quantum Computing in Advancing Digital Currency Security": 1 +"Biomedical Engineering: A Comprehensive Guide to 3D Printing for Prosthetic Development": 1 +"Astrophysics 101: Understanding Dark Matter through Quantum Field Theory": 1 +"Sustainable Agriculture: Implementing Hydroponics and Vertical Farming for Urban Food Production": 1 +"Literature and Psychology: Exploring the Role of Ego in Dystopian Fiction": 1 +"Survival in Urban Environments: Mastering the Art of Edible Plants and Waste Recycling": 1 +"Innovations in Classroom Technology: The Role of Virtual Reality in Enhancing Learning Experience": 1 +"Programming Mastery: Enhancing Software Security through Python and Cryptography": 1 +"Music and Neurobiology: The Impact of Rhythm and Melody on Cognitive Function": 1 +"Environmental Science: Utilizing GIS and Remote Sensing in the Study of Deforestation": 1 +"Modern Warfare: The Impact of Cybersecurity Breaches on International Diplomacy.": 1 +"Advanced Anatomy: Exploring Human Physiology through 3D Imaging and MRI Techniques": 1 +"Exploring the Baroque Era: Bach's Influence on Modern Music Composition": 1 +"The Impact of Norton Security on Data Protection: A Comprehensive Analysis and 10 Potential Enhancements": 1 +"Green Architecture and Urban Planning: The Role of Recycled Concrete in Sustainable Construction": 1 +"The Principles of Superconductivity in Modern Physics": 1 +"Scientific Lexicon: Understanding Astrophysics Terminology and Stellar Spectroscopy": 1 +"Health and Wellness: Mastering Yoga Poses for Improved Flexibility and Balance": 1 +"Complex Calculations: Solving Advanced Algorithms Using R and Julia": 1 +"The Transformation of Theatre: Immersive Technology in Contemporary Performance Art": 1 +"Software Engineering: Mastering Java with Spring Boot and Test-Driven Development Techniques": 1 +"Advanced Genetics: Exploring Epigenetics in Mental Health Disorders using Next-Generation Sequencing": 1 +"Physics of Light: The Role of Photons in Quantum Computing: A Deep Dive into Quantum Bits": 1 +"Applied Mathematics: The Power of Graph Theory in Social Network Analysis with Python and NetworkX": 1 +"Elementary Chemistry: Investigating Thermodynamics with Calorimetry Experiments": 1 +"Environmental Science: The Role of GIS in Conservation Planning: A Case Study of Wetland Habitats": 1 +"Artificial Intelligence: Real-Time Object Detection in Self-Driving Cars with TensorFlow and Convolutional Neural Networks": 1 +"Cognitive Psychology: Understanding the Human Mind through EEG, PET Scans and Functional Connectivity Analysis": 1 +"Archaeology: The Influence of Iron Age Textiles on Ancient Economic Systems": 1 +"Software Development: Serverless Computing with AWS Lambda: Creating Scalable Web Applications": 1 +"Organic Chemistry: Decoding Chemical Reactions through Mass Spectrometry and Infrared Spectroscopy": 1 +"3D Modeling with Blender: Exploring Architectural Design and Virtual Reality Integration": 1 +"Coding 101: Building Interactive Websites with JavaScript and CSS": 1 +"The Science of Sound: An In-depth Study of Acoustic Physics and Sound Engineering using Digital Audio Workstations": 1 +"Environmental Studies: Analyzing the Impact of Urbanization on Biodiversity - The Potential of Vertical Gardening": 1 +"Critical Thinking Enhancement: Strengthening Teenagers' Problem-solving Skills through Chess and Cognitive Science ": 1 +"Psychology and Art: Exploring Color Theory and its Impact on Human Emotion through Adobe Photoshop": 1 +"Sports Analytics: A Deep Dive into the Use of Big Data for Player Performance Evaluation": 1 +"Music and Memory: Evaluating the Role of Rhythm in Cognitive Retention using EEG": 1 +"Physical Education: Volleyball Strategies and Offensive Techniques": 1 +"Mastering R Programming: Applied Statistics with ggplot2 Visualization, Regression Analysis and RStudio Integration": 1 +"Exploring the Universe: Gravitational Waves and Their Significance in Astrophysics": 1 +"Advanced Robotics: Understanding Artificial Intelligence through Machine Learning and Neural Networks": 1 +"Photography: Mastering Light and Shadow Using DSLR Cameras": 1 +"Young Biologists: Discovering Genetics through DNA Extraction and Gel Electrophoresis": 1 +"Music Theory: The Role of Classical Compositions in Modern Pop Culture": 1 +"Meteorology: In-depth Analysis of Climate Change Using Weather Radar and Satellite Data": 1 +"Archaeology: Unearthing Ancient Civilizations using Ground Penetrating Radar and LiDAR Technology": 1 +"Physics: Exploring the Quantum Realm through the Lens of String Theory": 1 +"Visual Arts: Understanding Composition and Perspective through Digital Design": 1 +"Biotechnology: Decoding the Human Genome through Next-Generation Sequencing and Bioinformatics": 1 +"Mathematics: Investigating Fractal Geometry Through the Lens of Nature's Designs": 1 +"Chemical Engineering: The Integration of Nanotechnology in Developing Sustainable Energy Solutions": 1 +"Physics: Understanding Quantum Mechanics through the Study of Light Particle Interactions": 1 +"World History: Utilizing Sentiment Analysis in AI for Uncovering Biases in Historical Narratives": 1 +"Advanced Spanish: Using Duolingo for Language Acquisition and Cultural Immersion ": 1 +"Astronomy: The Role of Gravitational Waves in Understanding the Universe": 1 +"Artificial Intelligence: Applying Machine Learning Techniques in Predictive Analytics for Business Intelligence": 1 +"Environmental Studies: Exploring Climate Change Narratives through the Analysis of Ice Core Data": 1 +"Music Theory: Utilizing Ableton Live for Composing Symphonic Electronic Music": 1 +"Nutrition Science: Understanding the Impact of Genetically Modified Food on the Human Metabolism": 1 +"Exploring Geographical Features: The Impact of Topography on Renaissance Landscape Painting Techniques": 1 +"Interpreting the Unseen: A Deep Dive into Telepathic Communication and Theories of Extrasensory Perception": 1 +"The Application of Chromatography in Forensic Science: Unraveling the Mystery of Crime Scenes ": 1 +"Unveiling Ocean Dynamics: The Effect of Sea Surface Temperature on Marine Ecosystems using Hydrographic Echo Sounders": 1 +"Advanced Calculus: Solving Complex Problems using Differential Equations and MATLAB": 1 +"Quantum Mechanics: Deciphering the Paradox of Schrödinger's Cat and Quantum Superposition with Photon Experiments": 1 +"Language Acquisition: Mastering Mandarin Chinese through Semantic Mapping and Linguistic Analysis": 1 +"Medical Imaging: Understanding Brain Function through PET Scans and Neurological Disorders": 1 +"Foundations of Cybersecurity: Python Programming for Network Security and Ethical Hacking": 1 +"Early Childhood Education 320: Fostering Creativity and Problem-Solving Skills through Lego Therapy and Montessori Methods.": 1 +"Physics: Quantum Computing - Safeguarding Information with Superposition and Entanglement": 1 +"Musicology: The History of Jazz - Analyzing the Influence of Improvisation on Modern Music Genres": 1 +"Biology: Mysteries of Life - Unveiling Cellular Processes through Fluorescent Microscopy": 1 +"Behavioral Psychology: The Power of Positive Reinforcement in Childhood Development ": 1 +"Comparative Literature: Tracing Gothic Elements in Victorian Novels through Psychoanalytic Lenses": 1 +"Environmental Chemistry: Understanding Climate Change through Ice Core Analysis and Radiocarbon Dating": 1 +"Advanced English: Using Virtual Reality Simulations for Vocabulary Enhancement": 1 +"Ceramic Sculpture Techniques: Exploring the Art of Raku Firing and Glaze Interaction": 1 +"Photography: The Beauty of Wildlife - Mastering Macro Lens Techniques for Insect Photography": 1 +"Anthropology: The Silk Road - An Examination of Cultural Diffusion in Medieval Eurasia": 1 +"Quantum Physics 101: Understanding Quantum Mechanisms using MATLAB and Quantum Programming": 1 +"Geospatial Analysis in Urban Planning: Leveraging GIS and Python for Optimal City Development": 1 +"Linguistic Studies: Delving into French Poetry: An Examination of Symbolism": 1 +"Calculus: The Role of Functional Analysis in Quantum Mechanics: A Global View": 1 +"Decoding Ancient Languages: The Influence of Hieroglyphics and Cuneiform on Early Civilizations": 1 +"Eco-friendly Architecture: Promoting Green Living Through Rainwater Harvesting Systems in Urban Buildings": 1 +"Audio Engineering in Ableton: Utilizing VST for Advanced Sound Design": 1 +"Mastering C++: High-Performance Game Development with Unreal Engine and Unity": 1 +"Inorganic Chemistry: Investigating Crystal Structures with CrystalMaker Software and Molecular Dynamics Using GROMACS": 1 +"Biostatistics: Unraveling Genetic Variations in Human Genome Data using SAS.": 1 +"Sustainable Living: Innovations in Rainwater Harvesting and Greywater Recycling Techniques": 1 +"The Impact of Classical Music on Modern Film Score Composition during the Golden Age of Hollywood": 1 +"Mastering the Wind: An Analysis of Wind Power in Renewable Energy Discourses": 1 +"Data Science: A Guide to Predictive Analytics using R, Tableau, and Machine Learning Algorithms": 1 +"Secondary Education 410: Utilizing Google Classroom for Interactive Online Science Labs": 1 +"Applied Algebra: Navigating Non-Linear Equations in Economics using SPSS": 1 +"Artificial Intelligence: Enhancing Healthcare Diagnostics with Deep Learning Algorithms": 1 +"Pure Mathematics: Exploring Fractal Patterns with the Help of Computer Graphics": 1 +"Chemistry: Unraveling the Mysteries of Chemical Bonding through Quantum Mechanics": 1 +"Financial Literacy: A Comprehensive Guide to Personal Budgeting for Teens": 1 +"Advanced Calculus: Understanding Fractal Geometry in Nature Through Mathematical Models": 1 +"The Use of R Programming in Sports Medicine: Statistical Analysis, Predictive Modeling, and Rehabilitation Techniques": 1 +"Advanced Game Design: Unity, C#, and Artificial Intelligence Implementation for Immersive Experiences": 1 +"Psychology: Investigating Human Behavior Through Eye-Tracking Technology and Facial Recognition Software": 1 +"Chemistry: The Role of Polymer Science in Advancing Biodegradable Materials and Sustainable Practices": 1 +"Cybersecurity: Implementing Python, Django, and Blockchain Technology for Secure Web Development": 1 +"Teaching Spanish: Utilizing Virtual Reality and Gamification for Effective Language Learning ": 1 +"Economics: Exploring the Influence of Artificial Intelligence on Job Markets and Wage Inequality": 1 +"Environmental Science and Geospatial Analysis: Assessing Climate Change Impact using Remote Sensing and GIS": 1 +"Virtual Reality in Digital Marketing: Reshaping Consumer Behavior and Business Strategies in the Global Market": 1 +"Psychology: The Impact of Virtual Reality on Cognitive Functioning and Emotional Well-being": 1 +"Marine Biology: Mapping Ocean Currents - Tracking Whale Migrations with Radio Telemetry": 1 +"Fundamental Physics: Utilizing Laser Technology in the Study of Quantum Mechanics": 1 +"Astrophysics: Decoding the Universe: Gravitational Waves and their Implications in Black Hole Studies": 1 +"Creative Arts: Discovering the Magic of Watercolor Landscapes with the Wet-in-Wet Technique": 1 +"Eco-friendly Automotive Design: Advancements in 3D Printing for the Production of Recyclable Vehicle Parts": 1 +"Food Science: Exploring Fermentation Processes in Culinary Applications through Microbiology": 1 +"Advanced Studies in DNA Replication and Repair using CRISPR-Cas9 and Next Generation Sequencing ": 1 +"Instructional Technology 101: Enhancing Literacy Skills through Interactive eBooks and Reading Apps": 1 +"Business Communication: Perfecting Corporate Negotiation Strategies with Emotional Intelligence and Non-verbal Cues": 1 +"Mathematics Magic: Understanding Complex Numbers through the Beauty of Fractals": 1 +"Engineering Essentials: Exploring Fluid Dynamics in Aerodynamic Design with Computational Fluid Dynamics": 1 +"Advanced Anatomy: Diving into the Human Brain's Mysteries through Functional Magnetic Resonance Imaging": 1 +"Computer Science: Unraveling Algorithms and Data Structures using Java and Eclipse IDE": 1 +"Performing Arts: Mastering the Art of Theatre Directing in Postmodern Drama": 1 +"Environmental Studies: Exploring Oceanography through Underwater Acoustics for Marine Conservation": 1 +"History: Decoding the Role of Cryptography in the Cold War - Espionage and Intelligence Gathering": 1 +"Biostatistics in Medical Research: Employing Python for Genomic Data Analysis and DNA Sequencing": 1 +"Film Studies: Crafting Narrative through the Lens of Documentary Filmmaking": 1 +"Organic Chemistry: Analyzing Metabolic Pathways with Nuclear Magnetic Resonance Spectroscopy": 1 +"Exploring Artificial Intelligence in Gaming: A Philosophical Approach to Procedural Generation and NPC Behavior ": 1 +"The Role of Quantum Physics in Cryptography: A Detailed Study on Quantum Key Distribution and Python Programming": 1 +"Applying Modern Technologies in Oil Painting: An In-depth Analysis of Augmented Reality, Shape, and Color": 1 +"Advanced Mobile App Development: Android, Kotlin, Firebase, XML, SQLite, and REST API Integration ": 1 +"Environmental Science: The Impact of Renewable Energy Sources on Modern Societies": 1 +"Biology 101: Analyzing Baseball Swing Mechanics with Biomechanics, Trigonometry, and Motion Analysis Software": 1 +"Music Theory: The Physics of Harmonics and its Implementation in Audio Synthesis": 1 +"Mastering Audacity: A Comprehensive Examination of Digital Audio Editing in Modern Podcast Production": 1 +"3D Modeling in Blender: A Detailed Exploration of Sculpting Tools and Material Nodes": 1 +"The Influence of Virtual Reality in Sports Training: A Kinesiology Perspective on Immersive Training Environments": 1 +"Chemistry: Unveiling the Mysteries of Organic Compounds using GCMS and Molecular Modelling Software": 1 +"Biology: Analysis of Genetic Variations in Population Using CRISPR and Bioinformatics": 1 +"Cultural Anthropology: Understanding Societal Beliefs through the Lens of Mythology and Symbolism": 1 +"Astrophysics: Decoding the Universe through the Study of Black Holes and Quantum Gravity": 1 +"Creative Writing: Mastering Metaphors in Modern Fiction with a Focus on Surrealism": 1 +"Artificial Intelligence: Reinventing Game Design with Unity Engine and Procedural Generation Techniques": 1 +"Advanced Calculus: Exploring the Concepts of Limits, Continuity, and Derivatives using Mathematica": 1 +"Environmental Science: Examining Climate Change Patterns with Geographic Information System (GIS) and Python": 1 +"Literature: Understanding Narratives in Cyberpunk Genre through World-Building and Character Arcs": 1 +"Quantum Physics: Interpreting Quantum Mechanics using the Copenhagen Interpretation and Schrödinger's Cat Experiment": 1 +"Advanced Mathematics 241: Complex Analysis & Linear Algebra: An Introduction to Quantum Computing": 1 +"Biological Science: DNA Sequencing and Genomic Analysis using CRISPR-Cas9 System": 1 +"Sound Engineering: Enhancing Acoustic Qualities with Pro Tools' Audio Processing Software": 1 +"Climate Change Studies: Assessing the Impact of Global Warming on Polar Ice Caps using Satellite Imagery": 1 +"Astrophysics: Galaxies Explored through Spectroscopy and Infrared Telescopes": 1 +"Language and Culture: Understanding Sociolinguistics through Duolingo's Interactive Platform": 1 +"Ceramic Engineering: Exploring Mechanical Properties and Processing Techniques in Pottery": 1 +"Fine Arts 310: Cubism and Abstraction: Detailed Analysis of Collage Making in Modern Art": 1 +"Dietetics and Health: Evaluating the Impact of Ketogenic Diet on Metabolic Health: A Hormonal Perspective": 1 +"Musicology: The Transformation of Musical Styles in the Era of Social Media Influence": 1 +"Physics in Motion: Understanding Mechanics through Interactive Computer Simulations": 1 +"Architectural History: The Influence of Renaissance Ideals on Modern Urban Planning": 1 +"Business Basics: Applying Game Theory in Strategic Decision Making": 1 +"Geology: The Use of Satellite Imaging in Identifying Natural Resources": 1 +"Mathematical Mastery: Excel in Numbers with Sudoku and Math Puzzles": 1 +"Microbiology for Minors: A Fun Journey through the Microscopic World": 1 +"Programming with Java: Building AI Models for Predictive Analysis": 1 +"History: Tracing Cultural Evolution through Language Shifts": 1 +"Chemistry: Analyzing Environmental Impacts through Isotope Studies": 1 +"Statistics: Using SAS Software for Predictive Modeling in Climate Change": 1 +"Biology: Examining Ecological Interactions in the Amazon Rainforest through Infographic Representations": 1 +"Music Theory: Decoding the Mathematics of Rhythm in African Drumming using Beat Analysis Software": 1 +"Chemistry: Unveiling the Structural Complexity of Proteins through 3D Molecular Modeling": 1 +"Advanced French: Enhancing Linguistic Proficiency through Collaborative Online Forums and Podcasts": 1 +"Astrophysics: Exploring Dark Matter through Computational Simulations": 1 +"History of Architecture: Analyzing Gothic Structures through Virtual Reality": 1 +"Unveiling the Secrets of Coding: Python Programming for Data Visualization in Social Science ": 1 +"Principles of Gaming: A Deep Dive into Strategy and Game Theory in Chess": 1 +"The Art of Photography: Visual Storytelling through the Lens of Street Photography": 1 +"Philosophy: Understanding Existentialism through the Analysis of Franz Kafka's Works in Virtual Discussion Groups": 1 +"JavaScript and React Native: An In-depth Exploration of Functional Programming": 1 +"Watercolor Mastery: Grasping Texture, Dimension, and Light using Brushes and Water Soluble Crayons": 1 +"Decoding Ancient Civilizations: Hieroglyphics Interpretation and Comparative Phonetic Systems": 1 +"Physics: Unveiling the Universe with Telescopes and Spectrographs": 1 +"Audio Engineering: Deconstructing Sound Waves in Metal Music Using Equalizers and Audio Interfaces": 1 +"Music Production: Mastering FL Studio for Creating Atmospheric Ambient Tracks": 1 +"Global Politics: The Cold War Era and the Role of Nuclear Deterrence": 1 +"Artificial Intelligence and Ethics: Moral Dilemmas in Autonomous Vehicles and Five Prospective Solutions": 1 +"Sports Science: Preparing for Extreme Altitude Climbing using Hypoxic Training": 1 +"Linguistics: Sentiment Analysis and Visualization using R, Java, and NLTK for Thorough Discourse Investigation": 1 +"Advanced Neuroscience: Exploring the Role of Serotonin in Decision-Making Processes": 1 +"Complex Number Theory: Unveiling Fractal Geometry through Python and Julia Language": 1 +"Health and Fitness: A Comparative Study on Wearable Fitness Trackers for Calorie Counting and Sleep Monitoring": 1 +"World Literature: Analysis of Plot Development in Multilingual E-novels using Text Mining Tools": 1 +"Sociology: The Role of Facebook in Modern Political Campaigns ": 1 +"Quantum Physics: An Extensive Investigation into the Theory of Relativity using Quantum Optics and Tensor Calculus": 1 +"Botany: The Use of DNA Barcoding in Identifying Endangered Plant Species": 1 +"Linguistics: The Influence and Integration of Emoji in Modern Written Communication": 1 +"Advanced Game Design: Exploring Unity and Unreal Engine for Virtual Reality World Building": 1 +"Earth Science: Understanding Climate Change through Satellite Imagery and Atmospheric Data Analysis": 1 +"Geography: Exploring Geospatial Data and Landform Dynamics using LiDAR Technology and GIS": 1 +"Programming: Fundamentals of Python for Data Science and Machine Learning": 1 +"Astrophysics: Unpacking Cosmic Mysteries with Neutrino Detectors and Quantum Mechanics": 1 +"Microsoft PowerPoint: Mastering Presentation Design through Advanced Animation Techniques": 1 +"Genetics: Exploring DNA Sequencing and Genetic Disorders through Next-Generation Sequencing and Bioinformatics": 1 +"Physical Education: The Intersection of eSports and Traditional Sports in the Digital Age": 1 +"Engineering Principles: Understanding Fluid Dynamics through Computational Simulations and Arduino Sensors": 1 +"The Influence of Precision Agriculture and Drone Technology on Crop Yield and Food Security": 1 +"In-Depth Study on Radioactive Decay: Exploring Nuclear Chemistry with Geiger Counters and Radiation Detectors ": 1 +"Fine Arts: Exploring Texture and Form in Sculpture: Techniques with Clay and Mixed Media": 1 +"Physics: Applications of Quantum Computing in Particle Physics": 1 +"Uncharted Depths: Exploring Marine Biology with Advanced Sonar Technology": 1 +"History: The Industrial Revolution: The Impact of Steam Engine on Global Trade": 1 +"Sustainable Architecture: Employing Circular Economy Principles in Urban Construction": 1 +"Biology: Fundamentals and Genetic Sequencing Analysis using CRISPR and NGS with a focus on DNA Structures": 1 +"Nuclear Phenomena: The Impact of Nuclear Power, the Atomic Model, and Radiation Detection on Contemporary Life": 1 +"Advanced Statistics: Predictive Analysis in Marketing using Machine Learning Models": 1 +"Artistic Visions: Discovering Impressionism through Watercolor Painting and Brushwork Techniques": 1 +"Rhythmic Structures in Advanced Mathematics: A Detailed Guide to Using Logic Pro X": 1 +"Linguistics: Semantic Networks using Python for Text Mining: Cognitive Linguistics and Semantic Analysis": 1 +"Artificial Intelligence: Innovations and Applications in Autonomous Vehicles using Python and TensorFlow": 1 +"Chemistry: Understanding Organic Compounds: Structural Analysis through Infrared Spectroscopy and Mass Spectrometry": 1 +"Mathematics: Exploring Abstract Algebra and Group Theory with Maple Software": 1 +"Engineering: Structural Analysis and Design: An Introduction to Finite Element Method using ANSYS": 1 +"Biology: Genetic Engineering and CRISPR: A Comprehensive Study of Gene Editing Technologies": 1 +"Computer Programming: Building Augmented Reality Experiences with C++ and Unreal Engine 4": 1 +"Advanced Accounting: The Role of Big Data and Machine Learning in Financial Forecasting": 1 +"Health Sciences: Using Wearable Tech and IoT for Personalized Fitness and Wellness Programs": 1 +"Linguistics: Decoding Ancient Scripts: A Computational Approach using Python and Natural Language Processing": 1 +"Astrophysics: Exploring the Cosmos: Black Holes and Cosmic Strings using the General Theory of Relativity": 1 +"Advanced Sociology: Diving Deeper into Social Network Analysis using UCINet": 1 +"Microbiology: Applications of Flow Cytometry in Immunology using BD FACSDiva Software": 1 +"Environmental Engineering: Understanding Water Treatment Processes using GIS and AutoCAD": 1 +"Exploring Econometrics: Time-Series Analysis and Forecasting using Stata": 1 +"Advanced Physics: Exploring the Mysteries of Quantum Mechanics using QuTiP": 1 +"Music Theory: The Art of Composition: Exploring Harmonic Structures using Sibelius": 1 +"Astronomy: Hunting for Exoplanets: The Role of Data Analysis using Kepler and TESS Data": 1 +"Computer Science: An Introduction to Machine Learning and AI using Python and TensorFlow": 1 +"Anthropology: Understanding Ancient Civilizations through the Study of Archaeological Artefacts using GIS ": 1 +"Graphic Design: Leveraging InDesign and Illustrator for Impactful Visual Communication in Advertising Industry": 1 +"Advanced Mathematics: Quantum Computing and its Applications in Cryptography": 1 +"Chemistry: The Role of Nanotechnology in Drug Delivery Systems - An Insight into Bioengineering": 1 +"Deep Learning: Neural Networks and Their Applications in Autonomous Vehicles": 1 +"Civil Engineering: The Use of Drones and Artificial Intelligence in Infrastructure Inspection": 1 +"Film Studies: The Art of Cinematography - Utilizing Drone Technology for Dynamic Shots": 1 +"Sports Science: Improving Game Strategies with AI Analysis - A New Approach to Soccer Coaching": 1 +"Genetics: Unraveling the Secrets of Aging through Telomere Research - A Course for Aspiring Geneticists": 1 +"Astrophysics: Black Holes and Wormholes: Unveiling the Mysteries of the Universe with Theoretical Physics": 1 +"Art of Videography: Mastering the Techniques of Aerial Drone Filming in 4K Resolution": 1 +"Engineering Physics: Exploring the Principles of Superconductivity through Quantum Mechanics and Cryogenic Experiments": 1 +"Physics: Advanced Kinematics and Quantum Mechanics with Python Programming": 1 +"Zoology: Unveiling Marine Life - Deep Sea Exploration using ROV Technology": 1 +"Critical Thinking with Deductive Reasoning Exercises: Enhancing Decision-Making Skills": 1 +"Advanced Course: Mastering Digital Art with Illustrator": 1 +"Science in Art: Understanding Atmospheric Phenomena through Watercolor Techniques": 1 +"Cinema Culture: The Influence of Hollywood on Global Fashion Trends and Its Societal Implications": 1 +"Anatomy: The Human Brain - A Comprehensive Study of Neurons using Magnetic Resonance Imaging and Neuroimaging Techniques": 1 +"Music 305: The Progression of Jazz Music and the Role of the Saxophone in Blues Scale": 1 +"Sociology: Analyzing the Role of Video Games in Shaping Youth Culture": 1 +"Advanced Geography: Unraveling Landscapes through Aerial Photography and Geographic Information System (GIS) Analysis": 1 +"Physics: Quantum Mechanics and its Role in the Development of Quantum Computing": 1 +"Biology: The Human Genome Project: An Exploration of DNA Sequencing Techniques": 1 +"Literature: The Sublime and the Gothic: A Study of Romantic Literature in the 19th Century": 1 +"Mathematics: The Beauty of Fractals: Delving into the Mandelbrot Set using Python": 1 +"Astrobiology: The Search for Extraterrestrial Life: Kepler's Exoplanets and the Drake Equation": 1 +"Physics: The Physics of Music: The Science Behind Harmonics and Resonance ": 1 +"The Renaissance Period: The Printing Press, Humanism, and the Dawn of Modern Europe": 1 +"Virology: The Evolution of Viruses: A Detailed Study on Reverse Transcription and Retroviruses": 1 +"Botany: Plant Metabolomics: The Role of Photosynthesis in Climate Change": 1 +"History of Technology: The Telegraph to the Internet: The Evolution of Communication Systems": 1 +"Programming Paradigms 101: Integrating Python with Raspberry Pi for IoT Solutions": 1 +"Culinary Arts: Understanding Molecular Gastronomy with Sous Vide and Liquid Nitrogen Techniques": 1 +"Advanced Machine Learning: Tensorflow and PyTorch for Predictive Analytics": 1 +"Endocrinology for Beginners: An In-depth Study of Insulin Pumps and Glucose Monitoring Systems": 1 +"Architecture and Augmented Reality: Exploring Urban Planning with Oculus Rift": 1 +"Digital Animation: Leveraging Blender for 3D Character Modeling and Rendering": 1 +"Grammar Excellence: Exploring Verb Tenses and Conjunctions with the Rosetta Stone Language Learning App": 1 +"Critical Thinking: Advanced Argumentation and Fallacy Identification with Use of Logic Models": 1 +"French: Investigating Photojournalism and Photoshop for Multimedia Storytelling": 1 +"Sound Design: Ambient Textures - Exploring the Impact of Ableton Live in Game Audio Production": 1 +"Chemistry: Unveiling the Secrets of Organic Compounds through Molecular Modeling and Spectroscopy": 1 +"Mathematics: Unraveling the Beauty of Fractals and Chaos Theory: An Introduction to Nonlinear Dynamics": 1 +"Advanced Robotics: A Comprehensive Study on Artificial Intelligence and its Applications in Autonomous Vehicles": 1 +"Interactive Learning for Kids: Introduction to Mechanical Engineering through the Use of K'NEX": 1 +"Data Analysis in Genetics: Genomics with R, Apache Hadoop, ggplot2 Visualization, and Shiny": 1 +"Fine Arts: An Intensive Study of Renaissance Art through the Perspective of Fresco Techniques": 1 +"Primary School Science: Understanding Weather Patterns with Weather Balloons, Anemometers, and Digital Weather Stations": 1 +"History of Literature: Understanding the Evolution of Literary Styles through the Influence of Typewriters": 1 +"Economics: Implementing Sustainable Economic Development Strategies using Blockchain Technology in Emerging Markets": 1 +"Interpreting Cosmic Radiation: An Introduction to Astrophysics through Gamma-Ray Spectroscopy": 1 +"Psychology: Applying Machine Learning for Predicting and Understanding Human Behavior": 1 +"Advanced Sound Design in Ableton Live: Exploring Wavetable Synthesis and MIDI Mapping": 1 +"Art and Anthropology: Unveiling the Mayan Codex - The Impact of Dresden Codex on Understanding Mayan Culture": 1 +"Sports Science: Enhancing Athletic Performance through Wearable Technology, Kinesiology, and Biomechanics": 1 +"Mathematics in Art: Unraveling the Golden Ratio in Renaissance Paintings using MATLAB and Fractal Geometry": 1 +"Spanish: Exploring Film Editing and After Effects for Cinematic Storytelling": 1 +"Pastry Arts: The Evolution of Baking Techniques through the Use of Modern Fermentation and Lamination Methods": 1 +"Medieval Architecture and Society: The Construction and Significance of the Gothic Cathedrals": 1 +"Chemistry: Essential Principles of Matter and Energy: A Deep Dive into Chemical Equilibrium": 1 +"Navigating Change: The Impact of the Printing Press, the Compass, and the Steam Engine on European Expansion and Culture": 1 +"Unfolding Galactic Mysteries: Astrophysics and the Use of Spectroscopy in Understanding Star Formation": 1 +"Neuroscience: Decoding the Brain - An In-depth Study of Neuroplasticity and the Impact of Biofeedback": 1 +"Culinary Science: The Role of Molecular Gastronomy in Modern Cuisine: Understanding through Texture Analysis": 1 +"Dynamics of Financial Markets: Critical Techniques for Ethical Trading and Investment Analysis": 1 +"Navigating 3D Modeling in Mechanical Engineering: A Comprehensive Course on CAD's Parametric Design and Surface Modeling": 1 +"The Art of Film: Mastering Lighting Techniques in Cinematography using Reflectors and Diffusers": 1 +"Green Rhythms: Promoting Environmental Consciousness Through Wind-Powered Instruments in Outdoor Concerts": 1 +"Deep Diving into Sales Trends: Utilizing Machine Learning in Business Analytics using Power BI and Predictive Analysis": 1 +"Mastering Java Programming: Enhancing Cybersecurity with the Strength of Spring Security": 1 +"Pioneering Innovations: The Thrill of Drone Technology in Landscape Photography": 1 +"Advanced Quantum Physics: Unraveling the Mysteries of String Theory and Quantum Gravity": 1 +"Insights into Astronomy: Understanding Cosmic Phenomena through the Lens of Hubble Space Telescope": 1 +"Data Analytics: Mastering Statistical Analysis using R and Tableau: A Practical Approach to Predictive Modelling": 1 +"Philosophy and Film: Deconstructing Aesthetics and Narratives in Kubrick's Cinematic Universe": 1 +"Advanced French: Semantic Analysis using Gensim, Julia and Spacy for Effective Linguistic Interpretation": 1 +"Bioinformatics: A Detailed Study on Genomic Sequencing and Data Visualization using Python": 1 +"Artificial Intelligence in Music Production: MIDI Programming with Python and Ableton Live": 1 +"The Impact of Social Media on Global Politics: A Study from the Perspective of Political Science": 1 +"Advanced Study of Human Genome Editing: Understanding Gene Manipulation using TALEN and Zinc Finger Nuclease Techniques": 1 +"Geology: Investigating Plate Tectonics and Earthquake Activity using Seismic Wave Data": 1 +"Physics of Sports: Applying Doppler Radar Technology in Analyzing Cricket Ball Dynamics": 1 +"Exploring the Role of Field-Programmable Gate Arrays in Advanced Artificial Intelligence and Neural Networks": 1 +"Introduction to Ballet: The Effect of Digital Projection Mapping on Stage Performances": 1 +"Biology of Wine: The Art of Fermentation and Chromatography in Winemaking": 1 +"Statistics for Environmental Science: Applying Multivariate Analysis in Climate Studies": 1 +"Cellular Dynamics: Investigating Mitochondrial Functions with Cryo-electron Microscopy and Fluorescence Spectroscopy": 1 +"Elementary Geography: Understanding Weather Patterns with Satellite Imaging and Doppler Weather Radar": 1 +"Organic Chemistry: Decoding Biochemical Processes using Nuclear Magnetic Resonance and Computational Chemistry": 1 +"A Beginner's Guide to Python Programming: Leveraging PyTest with Setuptools for Efficient Code Verification": 1 +"Exploring Acids and Bases for Children: A Fun Introduction to the pH Scale with Lemon Juice and Baking Soda Experiments": 1 +"Advanced Mechanics: Exploring Quantum Physics with Feynman Diagrams and Particle Collision Simulations": 1 +"Epidemiology Unveiled: Utilizing Python and Machine Learning for Predictive Disease Modeling": 1 +"Social Responsibility: Sustainable Urban Farming and Food Security Solutions": 1 +"Mastering TypeScript: Angular.js and its Impact on Dynamic Web Development": 1 +"History: The Impact of Ancient Greek Theatre on Contemporary Performing Arts": 1 +"Java and Ableton Live: Exploring Real-Time Sound Processing and Music Production Techniques": 1 +"Political Science: Decoding Diplomacy - Unraveling Middle East Politics through Orwell's Essays": 1 +"Wellness & Technology: Revolutionizing Physical Therapy with Virtual Reality and Machine Learning": 1 +"Immersive Storytelling: Leveraging Augmented Reality for Enhanced Gaming Experiences": 1 +"Molecular Biology in Focus: Exploring DNA Replication through Fluorescence Microscopy Techniques": 1 +"Psychology of Taste: Exploring Gastronomical Preferences through Gustatory Pathways and Salt Taste Tests": 1 +"Astrophysics: Grasping the Universe's Evolution through Stellar Spectroscopy and Dark Matter Simulation": 1 +"The Rhetoric of Politics: Understanding Political Jargon through Semantic Network Analysis": 1 +"Economics 101: Market Dynamics & Global Trade Patterns Analyzed through Econometric Modelling": 1 +"Fundamentals of Digital Art: Exploring Creative Expression with Adobe Photoshop and Illustrator": 1 +"Unraveling the Complexities of Network Security: Safeguarding Data with Cryptography and Firewall": 1 +"The Intricate World of Protein Synthesis: A Comprehensive Study with X-ray Crystallography": 1 +"Carbon Fiber and Vacuum Forming: Incorporating Stress-Strain Analysis for High-Performance Automotive Parts": 1 +"Philosophy of Mind for Adolescents: An Examination of Consciousness and Thought through Descartes' Dualism": 1 +"The Magic of Fractals: Investigating Geometry with Iterative Functions and Mandelbrot Sets.": 1 +"Physics: Mastering Quantum Mechanics with Feynman's Diagrams and Superposition Principals": 1 +"Exploring the Influence of FL Studio's Piano Roll on Modern Music Production Techniques": 1 +"Cracking the Code: An Advanced Study of Algorithms and Data Structures with Python": 1 +"Assessing Economic Theories with Game Theory: A Course in Rational Decision Making": 1 +"Marine Biology: Investigating Oceanographic Patterns and Biodiversity using Satellite Imagery": 1 +"Statistics: Predicting Stock Market Trends with R programming, Probability Theories, and Time Series Analysis": 1 +"Fine Arts: Crafting Surreal Landscapes with Oil Pastels and Stencil Techniques using Mixed Media": 1 +"Digital Design: Exploring Pixel Art in the Context of Retro Gaming": 1 +"History of Board Games: The Influence of Civilization in Strategy Games Development": 1 +"Physics for Beginners: Exploring Thermodynamics Using Simple Kitchen Experiments": 1 +"Advanced Biology: DNA Sequencing, Genomic Analysis and CRISPR-Cas9 Techniques": 1 +"Algebra 101: Exploring the Magic of Fibonacci Sequence in Nature's Design": 1 +"World Literature: The Renaissance, Shakespeare and the Evolution of the English Language": 1 +"Computer Science: Artificial Intelligence, Machine Learning and their Application in Autonomous Vehicles": 1 +"Philosophy 101: Aesthetics, Nietzsche, and the Birth of Tragedy: Analysis through Greek Mythology": 1 +"Physics 301: Quantum Physics and the Intricacies of String Theory: A Deeper Look into M-Theory": 1 +"Psychology 210: The Impact of Childhood Trauma on Adult Relationships: An Introduction to Attachment Theory": 1 +"Global Studies: The Intersection of Climate Change and Global Politics: Understanding the Paris Agreement": 1 +"Music Theory: The Evolution of Jazz: From New Orleans to Bebop": 1 +"Geography 202: Plate Tectonics, Earthquakes and Tsunamis: An In-depth Study of the Pacific Ring of Fire": 1 +"Physics: Quantum Mechanics and its Applications in Telecommunication": 1 +"Programming 101: Building Interactive Websites with Django": 1 +"Economics: Predictive Modeling in Financial Markets Using Big Data Analysis": 1 +"From Pixels to Sound Waves: The Integration of Audio Synthesis and Graphic Design through Digital Signal Processing": 1 +"Anatomy of Vision: Understanding Visual Perception through Optical Illusions": 1 +"Outdoor Survival: Advanced Skills in Fire Making with Flint and Steel Techniques": 1 +"Cyber Security: The Progression and Impact of Cryptology in Data Protection": 1 +"The Impact of Air Pollution on Cardiovascular Health: A Comprehensive Study using ECG and Potential Prevention Strategies": 1 +"Cultural Studies: The Role of Traditional Clothing in National Identity Formation": 1 +"Art Techniques: Sculpting Mastery with Clay and Plaster Modelling Techniques": 1 +"Mathematics: Understanding the Intricacies of Calculus through the Lens of Astrophysics": 1 +"Physics: Harnessing the Power of Quantum Mechanics: A Deep Dive into Schrödinger's Equation": 1 +"Advanced Studies in Psychology: Investigating Human Behavior through Cognitive Therapy and Functional MRI": 1 +"Cultural Studies: Deciphering Cultural Symbols through the Use of Virtual Reality": 1 +"Music Theory: The Mathematics Behind Harmony: An In-depth Study using MIDI Sequencers": 1 +"History: The Influence of the Printing Press on the Renaissance Era: An In-depth Study": 1 +"Technology: Decoding Blockchain: An Exploration of Cryptography and Distributed Ledger Technology": 1 +"Advanced Game Development: Exploring the Capabilities of Unreal Engine 4 and Oculus Rift VR": 1 +"Secondary Education 410: Utilizing Microsoft Teams for Interactive Learning in Virtual Classrooms": 1 +"Basic Anatomy: Investigating Human Physiology through the Use of 3D Printing and Virtual Dissection Techniques": 1 +"Advanced Mathematics: Exploring Fractals and Chaos Theory through Computer Simulations": 1 +"Biology: The Influence of GMOs on Modern Agriculture and Food Safety": 1 +"Computer Science: The Impact of Quantum Computing on Cybersecurity and Data Encryption": 1 +"Graphic Design: The Role of Illustrator in Creating Compelling Advertising Campaigns": 1 +"The Enigma Machine: Cryptography's Role in WWII Communications and Espionage": 1 +"Health Sciences: Analyzing Sleep Quality using Fitbit Trackers and Mobile Sleep Apps": 1 +"Physical Education: Enhancing Athletic Performance through Biofeedback and Virtual Reality Training": 1 +"Data Science: The Impact of Machine Learning on Predictive Analytics and Business Intelligence": 1 +"Physics: Understanding the Universe through String Theory and Quantum Gravity": 1 +"Political Science: The Influence of Social Media on Modern Politics and Elections": 1 +"Literature: Interpreting Cultural Contexts through Classic Novels and Contemporary Poetry": 1 +"Design: Utilizing Adobe Photoshop for Advanced Graphic Design: A Deep Dive into Visual Storytelling ": 1 +"Artificial Intelligence Ethics: Understanding the Moral Implications of Machine Learning Algorithms": 1 +"Chemistry: Unveiling the Secrets of Organic Compounds through Molecular Modeling ": 1 +"Astrophysics: Investigating Black Holes and Dark Matter Using Data from Hubble Space Telescope": 1 +"Advanced Robotics: Exploring Autonomous Systems through Raspberry Pi and Python Programming": 1 +"Geography: Navigating Global Climate Change using GIS and Remote Sensing Techniques": 1 +"Math: Probing into the World of Fractals and Chaos Theory through Advanced Calculus": 1 +"Cinema: Deconstructing Narrative Structures in Film Noir: A Study Through German Expressionism": 1 +"Health Education: Evaluating Diet and Exercise Plans using MyFitnessPal and Fitbit Technologies.": 1 +"Physics: Black Holes and Quantum Entanglement - The Mystery of Spacetime": 1 +"Clinical Psychology: Utilizing Cognitive Behavioral Therapy and Dialectical Behavior Therapy in Addiction Recovery": 1 +"Cryptography: The Evolution of Information Security - From Ancient Ciphering to Quantum Cryptography": 1 +"Botany: The Wonders of Photosynthesis - A Comprehensive Study of Plant Metabolism": 1 +"Political Science: Delving into the Arab Spring Using Social Media Analytics and Big Data": 1 +"Advanced Microbiology: Decoding Bacterial Communication Through Quorum Sensing": 1 +"The Influence of Bauhaus and De Stijl: Their Impact on the Development of Minimalist Architecture": 1 +"Advanced Digital Media: Mastering Visual Effects with Adobe After Effects": 1 +"Statistical Modelling: The Role of R Programming in Predictive Analytics and Data Visualization": 1 +"Neuroethology: Exploring Animal Behavior - Understanding Neural Circuits Through Optogenetics and Calcium Imaging": 1 +"Quantum Physics: Unraveling Subatomic Particles through Quantum Mechanics, Wave-Particle Duality, and String Theory": 1 +"Sustainable Energy: Analysing the Impact of Solar Power on Decarbonisation and Climate Change Mitigation": 1 +"Linguistics: The Influence of Social Media on Language Evolution: A Pragmatic Analysis": 1 +"Economics 101: Demystifying the World of Cryptocurrencies: An Introduction to Blockchain Technology": 1 +"Advanced Python Programming: Leveraging the Versatility of Django Framework for Web Development": 1 +"Ethics 101: Navigating Moral Dilemmas through Kantian Ethics and Virtue Theory": 1 +"Virtual Reality: Investigating the Role of VR in Enhancing Remote Education": 1 +"Gastronomy 101: The Art of Sushi Making: An In-depth Study of Umami and Fermentation": 1 +"Cultural Studies: The Impact of Globalisation on Traditional Art Forms and Cultural Preservation": 1 +"Archaeology: The Industrial Revolution and the Role of Steam Power in Transforming Societies.": 1 +"Advanced Baking: Decoding the Science Behind Leavening Agents and the Art of Bread Making": 1 +"Astrophysics: A Comprehensive Study on Black Holes, Gravitational Waves, and the Application of Doppler Spectroscopy": 1 +"The Influence of Fibonacci Sequences in Nature: A Deep Dive into the Mathematical Patterns of Botany": 1 +"The Legacy of Morse Code: Its Role in Maritime Communication and the Evolution of Radio Lingo": 1 +"American Literature: An Analysis of Irony and Satire in Mark Twain's Works": 1 +"Data Science: Proficiency in Python and Predictive Analytics using Scikit-learn and Tensorflow": 1 +"Exploring Social Commentary in Music: A Detailed Study on Songs Spawned by the Vietnam War ": 1 +"Introduction to Quantum Computing: A Practical Guide to Understanding Qubits using IBM's Quantum Experience": 1 +"Early Childhood Education 401: Implementing Virtual Reality in Interactive Learning Modules for Language Acquisition": 1 +"Marine Biology: Evaluating the Impact of Ocean Acidification on Coral Reefs and Strategies for Restoration": 1 +"Unraveling the Universe: A Glimpse into Astrophysics through Radio Astronomy": 1 +"Biological Discoveries: Exploring Genetics with a DNA Extraction Kit for Beginners": 1 +"Maritime History: Understanding Ancient Naval Warfare through Shipwreck Analysis and Artifact Restoration": 1 +"Literary Magic: Plot Construction in Fiction Writing - Analyzing George R.R. Martin's Methods": 1 +"Quantum Mechanics: Investigating Particle Behavior and Wave-Particle Duality in Subatomic Phenomena": 1 +"Machine Learning: Revolutionizing Financial Forecasting with Predictive Analysis Models": 1 +"Interactive Java Coding: Mastering Eclipse and Hibernate Framework": 1 +"Introductory Paleontology: Decoding Fossil Records and their Insights into Evolutionary History": 1 +"Outdoor Survival Skills: Utilizing Solar Energy for Sustainable Cooking Techniques": 1 +"Sociological Perspectives: Studying the Ceremonial Masks of Papua New Guinea through High-Resolution Photography": 1 +"Philosophy of Technology: Analyzing the Effect of Blockchain in Fintech on Global Economies ": 1 +"WordPress in Global Outreach: Understanding CMS in Nonprofit Communication Strategies": 1 +"Molecular Genetics and Spectroscopy: Utilizing DNA Sequencing Techniques with a Focus on Confocal Microscopy": 1 +"Ethics in Genetic Engineering: Unveiling the Ethical Dilemmas of Genome Editing": 1 +"Political Science: The Discourse of Health Policies - A Perspective on the Impact of Universal Healthcare": 1 +"The Influence of Quantum Computing in Information Technology: A Comprehensive Analysis of Quantum Algorithms": 1 +"Introduction to Animal Rights: A Critical Examination on Animal Cruelty and Veganism": 1 +"Data Visualization Using R: Exploring Regression Models with ggplot2, Random Forests, and K-Means Clustering": 1 +"Climate Change and Oceanography: An Extensive Analysis on the Effect of Global Warming on Marine Life": 1 +"Chemistry 101: Organic Chemistry and Its Role in Pharmaceutical Development": 1 +"Advanced Astrophysics: Unraveling Cosmic Mysteries with Computational Fluid Dynamics": 1 +"Sociology 201: The Interplay of Social Norms and Media Influence in Contemporary Society": 1 +"Poetic Landscape: Analyzing the Echoes of Existentialism in Modern Literature": 1 +"Computer Systems Architecture: Exploring Machine Learning Algorithms with C++ and CUDA APIs": 1 +"In-Depth Analysis of Human Genomics: Decoding Genomic Sequences using R Programming": 1 +"Analytical Philosophy: Deconstructing Ethical Dilemmas Using Formal Logic and Puzzles": 1 +"Nanotechnology Breakthroughs: The Hidden Potential of Quantum Dots in Material Science": 1 +"Digital Marketing Strategies: Leveraging Big Data Analytics to Understand Consumer Preferences": 1 +"Neurobiology Essentials: Understanding Neural Networks, fMRI Techniques, and the Role of Neuropsychiatry": 1 +"Public Health Perspectives: The Impact of Viral Trends on Mental Health and Wellness": 1 +"Mathematics: Exploring Fractals and Chaos Theory with Julia Sets and Mandelbrot Set": 1 +"Biological Anthropology: Insights into Human Evolution through Fossil Records and Genomic Sequencing": 1 +"Quantum Mechanics: Unveiling the Mysteries of Quantum Entanglement using Bell's Theorem and Quantum Dots": 1 +"Mastering Spanish: Enhancing Linguistic Skills through Immersive Virtual Reality and Duolingo": 1 +"Advanced Sociology: Unpacking Social Structures through Ethnographic Research and Content Analysis": 1 +"Ethics in Practice: Unraveling Moral Dilemmas through Kantian Deontology and Utilitarianism": 1 +"Italian Renaissance Art: Delving into the Symbolism in Botticelli's Primavera using Aesthetics and Semiotics": 1 +"Data Science & Predictive Analytics: A Comprehensive Study of Decision Trees and Random Forests in R and Python": 1 +"Mental Health Education: The Role of Mindfulness Meditation in Cognitive Behavioral Therapy for Anxiety Disorders": 1 +"In-depth Study of Enzyme Kinetics using Absorption Spectroscopy, Nuclear Magnetic Resonance, and X-ray Crystallography": 1 +"The Enlightenment Era's Technological Breakthrough: The Impact of Printing Press in the Age of Discovery": 1 +"Secondary Education Strategies: Integrating Zoom in Synchronous Learning - Advancing Digital Proficiency": 1 +"Discovering the Mathematical Beauty of Nature: Mastering Fractals with Complex Number Systems": 1 +"Role of Drones in Monitoring Environmental Changes: A Geographical Studies Approach": 1 +"Biology: Unraveling the Secrets of Cellular Division Through Electron Microscopy": 1 +"The Convergence of Literature and Film: A Comprehensive Study of Adobe Premiere in Film Editing": 1 +"The Chemistry of Fermentation in Brewing: A Spectrometric Examination with Python": 1 +"Computer Engineering: Introduction to Quantum Computing": 1 +"The Steam Engine and the Railways: Victorian Era Breakthroughs and the Influence of the Stationary Engine on Modern Transport Systems": 1 +"Social Sciences: Enhancing Global Communication in Nonprofit Organizations Using Twitter's Analytics and Salesforce: Fifteen Social Media Tactics": 1 +"Decoding the Universe: An Examination of Cosmic Phenomena Through Astrophysics and Spectroscopy": 1 +"Critical Thinking: Understanding Cognitive Biases for Young Learners": 1 +"The Interplay of Algebra and Relativity: The Significance of Differential Geometry in Einstein's Theory": 1 +"Chemistry and Civilization: Examining the Influence of Biochemical Research on Human Health": 1 +"Genetics Uncovered: Unraveling the Secrets of DNA Replication Through Advanced Imaging Techniques": 1 +"Cultural Dynamics: The Impact of Virtual Reality on Cultural Exchange in the Technological Era": 1 +"The Influence of Transistors on Mid-Century Design: An Analysis of Information Age Influence on Pop Art": 1 +"Basic Biology: Investigating Animal Behavior and Adaptation Through Field Studies": 1 +"Psychology: Exploring Human Emotion and Cognition: A Comprehensive Study Using fMRI Technology": 1 +"Advanced Cybernetics: Building Autonomous Drones Using JavaScript, Raspberry Pi, CAD Design, Machine Learning, and Dronecode SDK.": 1 +"Sociology: The Role of Video Games in Modern Youth Culture: A Study on Fortnite's Impact": 1 +"Unearthing the Beauty of Vivid Contrast in Acrylic Painting: Exploring Textures, Tones, and Patterns using Palette Knife Techniques": 1 +"The Enlightenment: Influence of Printing Press Technology on Contemporary Digital Media": 1 +"Advanced Machine Learning: Investigating Predictive Models using Decision Trees, k-NN Algorithms, and Big Data Processing with Spark in Scala": 1 +"Leveraging Python and R in Financial Mathematics: Unravelling Stock Market Trends and Investment Strategies": 1 +"Uncovering the Connection between Morse Code, Electric Telegraph, and the Evolution of Modern Communication during the Victorian Era": 1 +"A Comprehensive Study of Heart Function: The Application of Python Programming in ECG and PET Scans": 1 +"Mastering Python: From Fundamentals to Data Analytics using Tensorflow and Pandas": 1 +"Physical Education: Augmented Reality in Sports Training: A Lens into Precision and Agility": 1 +"Chemistry: The Role of Nanotechnology in the Creation of Efficient Batteries Using Advanced Electrochemical Processes": 1 +"Quantum Mechanics: Exploring the Uncertainty Principle and its Impact on Nanotechnology": 1 +"Marine Ecology: Utilizing Satellite Imaging for Coral Reef Conservation": 1 +"Ergonomics in Workplace Design: The Use of Biomechanics and 3D Motion Capture for Reducing Physical Strain": 1 +"Advanced Genetics: Harnessing the Power of CRISPR Cas-9 and Next Generation Sequencing Techniques": 1 +"Solar Energy Systems: Understanding Photovoltaic Cells and Concentrated Solar Power": 1 +"Adobe After Effects in Film Production: A Comprehensive Study of Visual Effects and Motion Graphics": 1 +"Microbiology Fundamentals: Investigating Bacterial Cultures with Gram Staining": 1 +"The Integration of Augmented Reality in Microsoft HoloLens and Oculus Rift for Architectural Visualization: A Comprehensive Look at Unity 3D": 1 +"Cognitive Psychology: Deciphering Human Behavior with fMRI Scans and Big Data Analytics": 1 +"Greywater Recycling: The Importance of Reuse Systems and Biofilters in Water Conservation": 1 +"Advanced Economics: The Role of Cryptocurrency in Modern Trade and Commerce": 1 +"Digital Literacy: Harnessing Photoshop and InDesign for Visual Storytelling in Journalism": 1 +"Elementary Spanish 101: Exploring the Power of Dialogue in Theatre ": 1 +"Physics in Everyday Life: Understanding Newton's Laws through Sports Dynamics": 1 +"Philosophy: An In-depth Study of Baroque Style - Meaning and Expression in Sculpture using Clay": 1 +"Expert Course in Data Visualization with R using ggplot2 - A Detailed Exploration of Statistical Graphics": 1 +"Organic Chemistry: Exploring Biochemical Pathways with Bioinformatics Software and Quantum Chemistry Using Gaussian": 1 +"Higher Education 502: Virtual Classrooms - Integrating Zoom and Google Classroom for Group Projects in Canvas": 1 +"Biology: The Role of Aerodynamics in Bird Flight Mechanics": 1 +"Literature: Deconstructing Narratives through Contextual Analysis and Linguistic Anthropology Tools": 1 +"Chemistry: Exploring Molecular Structures through Nuclear Magnetic Resonance Spectroscopy": 1 +"Electrical Engineering: Mastering Microcontroller Programming with Assembly and Arduino": 1 +"Big Data Analytics: Enhancing Decision Making with Data Mining, Hadoop, Google Cloud, and Distributed Ledger Technology": 1 +"Primary Education: Fundamentals of Mathematics through Gamified Learning: An Introduction to Arithmetic and Interactive Number Lines": 1 +"Computer Programming for Novices: A Primer on Ruby Web Development": 1 +"Anthropology: Decoding Ancient Civilizations through Artifacts and Burial Customs": 1 +"Health & Wellness: The Influence of Mindfulness Meditation on Stress Management and Emotional Balance": 1 +"Advanced Cybernetics: Integrating Machine Learning in Precision Agriculture for Sustainable Farming": 1 +"High-level Programming: Algorithmic Thinking with Graph Theory and C++": 1 +"Marketing Management: In-depth Analysis on Consumer Behavior using Big Data and Machine Learning for Brand Value Enhancement": 1 +"Biology: Evolutionary Process Explored through Genomic Sequencing and Bioinformatics": 1 +"Literature: The Art of Storytelling - Understanding Narrative Structure through Interactive Media": 1 +"Mathematics: The World of Fractals - A Journey from Basic Geometry to Complex Systems": 1 +"Philosophy: The Ethical Implications of AI - A Deep Dive into Machine Ethics": 1 +"Software Engineering: Building Scalable Web Applications with Node.js and MongoDB": 1 +"Political Science: Power Dynamics and Conflict Resolution - A Simulation-Based Approach": 1 +"Neuroscience: Unraveling the Mysteries of the Brain through Advanced Imaging Techniques": 1 +"Data Science: Predictive Analytics and Machine Learning with Python and TensorFlow": 1 +"Physical Education: Enhancing Motor Skills and Body Awareness through Virtual Reality Training": 1 +"Astrophysics: The Wonders of the Cosmos - An Exploration of Dark Energy using Quantum Mechanics": 1 +"Data Science: Predictive Analysis and Machine Learning in Medical Diagnostics": 1 +"Chemistry 101: Understanding the Role of Enzymes in Fermentation Processes": 1 +"History: Investigating Ancient Civilizations through Satellite Imaging and GIS": 1 +"Software Engineering: Developing Efficient Algorithms with Python and PyCharm": 1 +"Environmental Science: Assessing Climate Change Impact using Satellite Imaging and GIS Technology": 1 +"Artificial Intelligence: Machine Learning and Its Role in Predicting Stock Market Trends": 1 +"Ethics in Technology: Exploring the Impact of AI and Robotics on Employment and Economy": 1 +"Music & Technology: Evaluating the Influence of Auto-Tune on Contemporary Pop Culture": 1 +"Classical Literature: Exploring Jane Austen's Novels through Sentiment Analysis": 1 +"Neuroscience: Understanding Memory Formation and Recall through fMRI and Neural Networking": 1 +"Art History: Analyzing Byzantine Iconography through Virtual Reality Technology": 1 +"Advanced Mathematics: Understanding Fractal Geometry through Natural Phenomena and Computer Modeling": 1 +"Chemistry: The Role of Biochemical Reactions in Brewing: A Study on Craft Beers": 1 +"Computer Science: The Evolution of Game Design: From Pong to Virtual Reality": 1 +"Biology: The Impact of Climate Change on Coral Reefs: An Exploration through Underwater Photography": 1 +"Film Studies: The Influence of German Expressionism on Contemporary Cinema": 1 +"Social Science: The Sociopolitical Impacts of Cryptocurrency in Emerging Economies": 1 +"Astronomy: A Study of Celestial Mechanics through Telescope Observations and Simulation Software": 1 +"Psychology: Understanding the Role of Art Therapy in Child Development": 1 +"World Languages: Enhancing Language Acquisition through Music and Lyrics: A Study on Spanish and Italian": 1 +"The Science of Human Behavior: Decoding Psychological Phenomena through Cognitive Neuroscience and Freudian Theories": 1 +"Unveiling the Universe: A Comprehensive Study of Astrophysics, Galaxy Formation and Theories of Quantum Gravity": 1 +"Chemistry Unveiled: An In-depth Study of Organic Chemistry Utilizing Spectroscopy and Chromatography Techniques": 1 +"Civil Engineering: Understanding Structural Dynamics through Finite Element Analysis and Stress-Strain Curves": 1 +"Anthropology: Examining Cultural Evolution through the Lens of Language Development and Semantic Shifts": 1 +"Advanced Physics: The Role of Quantum Mechanics in Nanotechnology and Material Science": 1 +"Advanced Excel: Data Analysis, Pivot Tables, and Implementation of VBA Macros for Business Intelligence": 1 +"Microbiology: The Impact of Genetic Engineering on Viral Pathogenesis and Vaccine Development": 1 +"Global Politics: The Influence of International Law on Human Rights and Diplomatic Relations": 1 +"Applied Mechanics: The Integration of Thermodynamics and Fluid Mechanics in Jet Propulsion Technology": 1 +"Chemistry: Harnessing the Power of Nanomaterials in Solar Energy Conversion": 1 +"Artificial Intelligence: Utilizing Deep Learning in Deciphering Neurological Disorders": 1 +"Sociology: Unraveling the Impact of Social Media on Adolescent Mental Health": 1 +"Mechanical Engineering: The Dynamics of Material Deformation in Aerospace Engineering": 1 +"Geophysics: Unearthing the Secrets of Earth's Seismic Activity with Fourier Analysis": 1 +"Advanced Bioinformatics: Decoding the Human Genome with Machine Learning and Cloud Computing": 1 +"Global Politics: Analyzing the Influence of Climate Change on International Relations": 1 +"Data Science for Business: Predictive Modeling for Customer Lifetime Value using Python and TensorFlow": 1 +"Neuroscience Unlocked: Probing the Human Mind with Functional Magnetic Resonance Imaging and Neuroinformatics": 1 +"Comparative Literature: Decoding the Concept of Identity in Post-Colonial Novels Through Post-Structuralist Analysis and Digital Humanities": 1 +"Leveraging Augmented Reality in Architectural Design: A Comprehensive Course in Virtual Visualization": 1 +"Marine Biology: Studying the Effects of Ocean Acidification on Coral Reefs through Data Analysis and Infographics": 1 +"Senior Biomechanics: Understanding Human Motion through Kinematic Analysis and Musculoskeletal Modeling": 1 +"The Historical Analysis of Big Data's Influence on Public Health Policies and Preventive Care": 1 +"The Discourse of Political Campaigns and Voter Behavior: A Social Science Investigation using R for Data Analysis and Predictive Modeling": 1 +"Ethics: Dissecting Moral Dilemmas through the Lens of Deontological and Utilitarian Theories": 1 +"Quantum Physics: Deciphering the Mysteries of Quantum Entanglement through Particle Physics Experiments": 1 +"Primary: Introducing Basic History through the Study of Ancient Civilizations using Interactive Timelines": 1 +"Finance in Practice: Using Linear Regression to Forecast Financial Market Fluctuations": 1 +"Exploring Architectural History: The Influence of Gothic Architecture on Modern Structural Design Techniques": 1 +"Physics 210: The Role of Quantum Mechanics in the Development of Modern Telecommunication Systems": 1 +"Creative Writing: Crafting Suspense and Mystery in Crime Novels using Virtual Reality Simulations": 1 +"Bioinformatics: Integrating Genomics and Proteomics in Disease Profiling using Next-Generation Sequencing": 1 +"Statistics: Predictive Modeling in Finance using AI and Deep Learning Algorithms": 1 +"Advanced: Unraveling the Complexities of European Legal Systems through Socio-Legal Studies in the Age of Data Science": 1 +"Exploring Piano Harmonics: A Study on the Influence of Pedal Techniques on Sound Waves using Digital Oscilloscope": 1 +"Evolutionary Genetics: A Journey into the World of Genomic Diversity and Speciation": 1 +"Cybersecurity Essentials: Combatting Cyber Threats with Advanced Malware Analysis in Cyber Drill Exercises": 1 +"Art Criticism: Exploring the Impact of Surrealism on Contemporary Sculpture Techniques using Recycled Materials": 1 +"The Beauty of Typography: A Detailed Study on Serif, Sans-Serif, and Script using Digital Design Tools": 1 +"Analytical Reasoning: Unraveling Pseudoscience through Evidence-Based Approach": 1 +"Engineering: The Impact of Quantum Dots on Photovoltaic Technology": 1 +"Harnessing the Power of Google Quantum Computing for Advanced Cryptography: A Study of 12 Different Protocols": 1 +"Evolutionary Biology: Understanding Speciation and Adaptive Radiation in Alpine Flora": 1 +"Physics: Quantum Mechanics: Delving into the Principles of Quantum Entanglement and Superposition": 1 +"Sports Science: Soccer Strategies: The Significance of Player Formations": 1 +"Aquatic Zoology: Investigating Deep-Sea Creatures using Remote Operated Vehicles": 1 +"Fine Arts: Crafting Mesmerizing Portraits using Oil and Acrylic": 1 +"Sculpture: Mastering Metal Welding Techniques for Contemporary Art": 1 +"World History 102: The Influence of the Printing Press on the Renaissance Era": 1 +"Quantitative Reasoning: Unraveling Probabilities with Statistical Modeling Techniques": 1 +"Environmental Science: Understanding Climate Change through Geochemical Oceanography": 1 +"The Sound of Physics: Exploring Acoustic Waves and Harmonics with Modern Music Production": 1 +"Computer Science: Decoding the World of Cryptography using Python": 1 +"Physical Education: Enhancing Motor Skills through Virtual Reality Gaming in Sports": 1 +"Artificial Intelligence: Sustainable Development of Smart Cities using Deep Learning Algorithms": 1 +"Sociolinguistics: Analyzing Social Factors in Language Variation Through Machine Learning": 1 +"Business Communication: Advancing Negotiation Skills using LinkedIn Professional Networking": 1 +"Classical Music: Baroque Period - Evolution and Influence: An Analysis through Historical Musicology": 1 +"Creative Writing: Unfolding Narrative Structures through Interactive Storytelling in Video Games": 1 +"Advanced Geometry: The Application of Fractal Theory in Architectural Design": 1 +"Quantum Computing: The Intersection of Physics and Computer Science in Cryptography": 1 +"Chemistry: The Complexities of Organic Synthesis and its Role in Pharmaceutical Innovation": 1 +"Empowering Wellness: Mindfulness, Tai Chi and Stability with Stability Ball Exercises": 1 +"Astrobiology: Unraveling the Possibilities of Life Beyond Earth using Spectroscopy": 1 +"Statistics: Using Probability Theory for Predictive Analysis in Market Trends": 1 +"Software Engineering: Mastering Python Programming and Data Structure with Artificial Intelligence": 1 +"Linear Algebra: Navigating through Matrix Theory in Network Analysis": 1 +"Artificial Intelligence: Convolutional Neural Networks and their Role in Facial Recognition Systems": 1 +"Music Production: Crafting Sonic Landscapes with Ableton Live 10.": 1 +"Advanced Cybersecurity: Ethical Hacking and Secure Systems Architecture Using Linux and Python": 1 +"Interpreting Neural Networks: A Deep Dive into Machine Learning Algorithms Using TensorFlow and PyTorch": 1 +"Plant Biotech: Advancing Agriculture with Genetically Modified Crops using CRISPR-Cas9": 1 +"Building Modern Environments: Progressive Urban Planning Techniques with GIS and AutoCAD Civil 3D": 1 +"Fundamentals of Sports Analytics: Harnessing PowerBI for Soccer Team Performance Evaluation": 1 +"Sound Design: Mastering Foley Techniques for Cinematic Atmospheres in Pro Tools": 1 +"Psychiatry: Exploring Mental Disorders through the Perspective of Behavioral Neuroscience": 1 +"E-Commerce: The Growing Trend of Virtual Reality Shopping - A Study on Oculus Rift Technology": 1 +"Python for Financial Analysis: Incorporating Machine Learning in Stock Market Predictions": 1 +"Quantum Mechanics: Understanding Particle-Wave Duality through Schrödinger Equation and Quantum Field Theory": 1 +"Chemistry: Understanding Molecular Structures through Quantum Mechanics and Spectroscopy": 1 +"Advanced Robotics: Exploring Mechanisms, Kinematics, and Programming with ROS": 1 +"Biology: Deep Dive into Genetic Engineering and CRISPR-Cas9 Techniques": 1 +"Practical Economics: A Comprehensive Study of Game Theory and Behavioral Economics": 1 +"Artificial Intelligence: Unveiling Neural Networks and Deep Learning with TensorFlow ": 1 +"Environmental Science: Exploring Climate Change through Paleoclimatology and Glaciology ": 1 +"Literature: The Art of Narrative Construction in Modernist Novels": 1 +"Sociology: Understanding Social Structures through Conflict Theory and Network Analysis ": 1 +"Digital Media Production: The Role of Adobe Creative Suite in Graphic Design and Animation ": 1 +"Healthcare Management: The Impact of Technology on Patient Care and Hospital Administration": 1 +"Advanced Python: Deep Learning Techniques and Web Development with Django": 1 +"Practical Calculus: Applications in Engineering and Physics: Understanding Differential Equations": 1 +"History of Technology: The Influence of Quantum Computing on Modern Society": 1 +"Applying Discrete Mathematics in Cryptography: The Importance of Number Theory in Data Security": 1 +"Econometrics: An Investigation of Game Theory: Perspectives on Market Competition": 1 +"Adolescent Psychology: The Effect of Social Media on Emotional Health ": 1 +"Nutritional Science: The Impact of Microbiome Research on Human Health": 1 +"World Literature: Comparative Study of Postcolonial Narratives through the Prism of Cultural Studies": 1 +"Amazon Alexa and the Publishing Industry: Assessing the Role of Voice-Activated Technology in Multimedia ": 1 +"Bioinformatics: Protein Structure Prediction and Data Visualization using Python and Matplotlib": 1 +"Advanced Techniques in Genetic Engineering: A Deep Dive into Genomics and Proteomics": 1 +"Fostering Creativity Through Mathematics: Understanding Music Theory with Fibonacci Sequences": 1 +"Astrophysics: Exploring the Role of Gravitational Lensing in Astro-Photography": 1 +"Psychology: The Unfolding Human Mind: A Study in Emotional Intelligence and Brain Plasticity": 1 +"History: The Impact of the Gutenberg Printing Press on the Progression of Literary Culture": 1 +"Enhancing Computational Skills: Nurturing Problem-Solving Capabilities in Kids using Minecraft and Arduino": 1 +"Sports Science: The Role of Sensory Integration in Athletic Performance: A Study with Vestibular Stimulation": 1 +"Creative Writing: Building Worlds with Augmented Reality: Storytelling through Google Glass": 1 +"Radiology Uncovered: Investigating Human Anatomy through MRI, CT Scans, and Ultrasonography": 1 +"The Intersection of Philosophy and Neuroscience: The Influence of Binaural Beats on Brain Wave Patterns and Cognitive Functioning.": 1 +"Mathematics: Unfolding the Secrets of Fibonacci Sequence in Nature with Quantum Computing": 1 +"Culinary Arts: The Impact of Molecular Gastronomy on Sustainable Food Production - Experimenting with Sous-vide Techniques": 1 +"Software Engineering: Harnessing the Power of C++ and Ruby for Game Development and Cryptography": 1 +"Computer Basics for Novices: Understanding Blockchain and Cryptocurrency through Python": 1 +"Philosophy: An In-depth Look at Deductive Reasoning: Grasping Syllogisms": 1 +"Data Analysis: A Thorough Investigation of Regression Analysis with Binary Variables using R and MATLAB": 1 +"Junior Chemists: An Adventure with Atomic Structures for Children - Unveiling Covalent and Ionic Bonds": 1 +"Synchronizing Fashion and Finance: A Study on Amazon's Predictive Analytics Through Web Scraping Techniques": 1 +"Sociology: The Impact of Viral Videos on Body Image Perception in Modern Cinema": 1 +"Fiction Composition: Utilization of SWOT Analysis in Merging Sci-fi Elements and Metaphors with Character Development in Novellas": 1 +"Chemistry Fundamentals: The Impact of Biochemistry in Disease Prevention and Treatment": 1 +"Engineering Marvels: Exploring Structural Integrity with Advanced CAD Software": 1 +"Ecology for Beginners: Understanding Ecosystem Dynamics through Virtual Reality Simulations": 1 +"History of Technology: The Influence of The Printing Press on Information Dissemination": 1 +"Music Theory: Cognitive Impact of Classical Music on Child Development": 1 +"Introduction to Robotics: Exploring AI and Machine Learning in Robotic Systems": 1 +"Neuroscience: Deciphering Brain Activities using Functional Magnetic Resonance Imaging (fMRI)": 1 +"Meteorology: Forecasting Weather Patterns using Satellite Imagery and Doppler Radar": 1 +"Psychology Essentials: The Role of Cognitive Behavioral Therapy in Managing Stress and Anxiety": 1 +"Business 101: Enhancing Profitability through Strategic Marketing and SWOT Analysis": 1 +"Physics & Calculus: Exploring Motion through Differential Equations and MATLAB Simulations": 1 +"Athletic Training: Optimizing Sport Performance through Physiological Assessment and Nutritional Planning": 1 +"Critical Thinking: Unraveling Misconceptions with Cognitive Biases and Decision Theory": 1 +"Anthropology: Investigating Folklore's Societal Impact through Ethnographic Fieldwork and Content Analysis": 1 +"Advanced Logic in Computer Science: The Role of Algorithms and Data Structures in Problem Solving": 1 +"Digital Humanities: Interpreting Historical Texts Through Python Programming and Text Mining Techniques": 1 +"Mastery in Swift: iOS Development Using Firebase Database": 1 +"The Art of Screenwriting: The Influence of Symbolism in Cinematic Narratives": 1 +"World History: Uncovering Hidden Narratives through Epigraphical Analysis and the Rosetta Stone": 1 +"Genetic Engineering: Exploring the Potential of Gene Therapy with CRISPR-Cas9 and Viral Vectors": 1 +"Chemistry: Unraveling Molecular Structures through X-Ray Crystallography": 1 +"Navigating Neural Networks and Machine Learning with TensorFlow and Java": 1 +"French 305: The Artistic Use of Metaphor and Allegory in French Poetry - A Study of Symbolism and Expression": 1 +"Physics: Quantum Mechanics and the Role of Schrödinger's Cat in Wave-Particle Duality": 1 +"The Power of Color Theory in Digital Marketing: An Extensive Study of Consumer Behavior and Visual Perception": 1 +"Astrophysics: Exploring the Mysteries of Black Holes with the Event Horizon Telescope": 1 +"Fundamentals of Anthropology: Investigating Cultural Evolution through Archaeological Excavations": 1 +"Art: The Influence of Virtual Reality on Spatial Perception in Sculpture": 1 +"Interactive Ethics: A Basic Guide to Kantian Theories": 1 +"In-Depth Bioinformatics: Proteomic Data Interpretation using Hadoop and Distributed Systems": 1 +"Physics: Understanding the Basics of String Theory and Its Impact on Multiverse Concepts": 1 +"Biology: The Role of Genetic Engineering in Advancing Personalized Medicine and Health Equity": 1 +"The Application of Nanotechnology in Renewable Energy: An In-depth Analysis": 1 +"Medicinal Chemistry: The Role of Enzyme Inhibitors in Developing Antiviral Drugs": 1 +"Statistics: Predictive Modelling with Python in Epidemiological Studies": 1 +"Fine Arts: Utilizing Palette Knives in Abstract Oil Painting Techniques": 1 +"Geography: Analyzing the Impact of Urbanization on Biodiversity using Satellite Imagery and Spatial Analysis": 1 +"Machine Learning and Mental Health: A Comprehensive Evaluation of Google's DeepMind and Predictive Modeling in Cognitive Behavioral Therapy Techniques": 1 +"Secondary Education 410: Effective Use of Augmented Reality in Collaborative Learning Environments": 1 +"A Detailed Investigation of Texture Manipulation in Digital Illustration Using Illustrator: 10 Engaging Projects": 1 +"Physics Funhouse: Exploring Quantum Mechanics through Interactive Simulations": 1 +"Advanced Linguistics: Decoding Language Structures with Computational Models": 1 +"Mastering C++: Building Dynamic Systems in Robotics and Automation with Arduino": 1 +"Principles of Environmental Science: Climate Change and Ecosystem Conservation using GIS Technology": 1 +"The Progression of Blues in Post-War Europe: The Impact of Vinyl Record Distribution": 1 +"Data Science: Predictive Analytics using R and Data Visualization with ggplot2": 1 +"Physical Education: Mastering Basketball Techniques and Offensive Strategies": 1 +"Holistic Health: The Science of Yoga: Exploring Asanas, Pranayama, and Meditation": 1 +"Digital Revolution: The Convergence of Virtual Reality and Adobe Creative Suite in Graphic Design": 1 +"Psychology 210: Cognitive Behavioral Therapy and the Use of Neurofeedback in Stress Management Studies": 1 +"The Renaissance Era: Investigating the Impact of Oil Painting and Perspective Drawing Techniques": 1 +"Biochemistry: Decoding the Genetic Code through RNA Sequencing and Protein Folding": 1 +"Global Politics: The Role of Nuclear Technology in the Cold War Era": 1 +"Marine Biology: Investigating Coral Reefs Health through Diving Expeditions and Photographic Surveys": 1 +"Astrophysics: Understanding Black Holes through the Study of Gravitational Waves and Singularity Theories": 1 +"JavaScript and Ableton for Video Games: Sound Design using Synthesizers and Game Engines": 1 +"Calculus: Exploring the Application of Integration in Economics using MATLAB": 1 +"Econometrics: Forecasting Financial Crashes using Python, Neural Networks, and Time Series Analysis": 1 +"Geology: Examining Earthquakes and Volcanic Activity using Seismic Data and Satellite Imagery": 1 +"Contemporary Art: Analyzing the Influence of Pop Art on Modern Graphic Design Techniques using Digital Tools": 1 +"Ecological Architecture: An Examination of Rammed Earth Construction with 3D Modelling Technology": 1 +"Mastering Punctuation: Tackling Complex English Sentences using Grammar Checkers and Interactive Games": 1 +"Digital Animation Excellence: Crafting Exceptional 3D Characters with Blender's Sophisticated Features": 1 +"Artificial Intelligence: Forecasting Systems with R Language through Decision Trees": 1 +"The Influence of Jazz Improvisation on Social Change: A Deep Dive into the Power of the Saxophone": 1 +"Physics: Understanding Fluid Dynamics and Wave Mechanics with the Aid of Simulation Software": 1 +"Biology: Fundamental Concepts and Genetic Mapping Analysis using Bioinformatics Tools and Next-Generation Sequencing": 1 +"Galactic Detectives: Unraveling Cosmic Mysteries with James Webb Space Telescope and Spectral Analysis Technique": 1 +"The Effect of Urban Green Spaces on Mental Health: A Comprehensive Inquiry": 1 +"Employing Atlas.ti in Investigating Feminism's Impact on Ballet's Societal Significance: A Cultural Anthropology Perspective": 1 +"Astrophysics: Understanding Dark Matter and Energy through Quantum Field Theory": 1 +"Exploring the Intricacies of Classical Ballet: A Dance Theory Approach to Pas de Deux Choreography": 1 +"Mathematics: The Magic of Prime Numbers - An Insight through Cryptographic Algorithms": 1 +"Sustainable Architecture: The Impact of Solar Energy and Green Roofs on Urban Heat Islands": 1 +"Psychology 101: The Intersection of Emotion and Logic - A Cognitive Behavioral Therapy Approach": 1 +"The Digital Revolution: Assessing the Impact of Social Media on Journalism and News Consumption": 1 +"Biology: The Human Heart and Its Functions - An Examination through Magnetic Resonance Imaging": 1 +"Advanced Python Programming: Machine Learning and Data Mining using TensorFlow": 1 +"Economic Implications of Renewable Energy: A Comparative Study on Wind and Solar Power Investments": 1 +"Music Theory: The Art of Orchestration - Creating Depth and Clarity in Symphonic Compositions using Sibelius": 1 +"Physics: The Impact of Quantum Mechanics on Modern Telecommunication Systems": 1 +"Stellar Cartography: Navigating the Universe through Telescope Observation and Digital Mapping": 1 +"Java Programming: An In-depth Look at Binary Search Trees using IntelliJ, GitHub, and JavaFX": 1 +"Literature: The Use of Metaphor in Lyric Structures within Epic Poetry": 1 +"The Fibonacci Spiral: Engineers and Designers Reimagining Urban Planning with Augmented Reality": 1 +"Global Cuisine: Interpreting Culture through Culinary Photography": 1 +"Finance: Analyzing the Global Economy through Interactive Dashboards in Tableau": 1 +"Sound Engineering: The Influence of Pro Tools in Modern Hip Hop Beat Making": 1 +"Business Studies: The Transformation of Retail Industry through E-commerce": 1 +"Algebra: The Application of Quadratic Equations in Financial Forecasting Models": 1 +"Mathematics 101: The Power of Trigonometry in the Development of Satellite Technology": 1 +"Eco-Beats: Harnessing the Power of Solar Energy in Music Production Studios": 1 +"Physics for the Young: Discovering the Laws of Motion Through Toy Cars": 1 +"History 102: Tracing the Impact of the Silk Road on Global Trade during the Middle Ages ": 1 +"Science: Unveiling Mysteries through the Study of Black Holes and Interstellar Medium": 1 +"Military Science: Understanding the Impact of Drone Technology in Modern Warfare": 1 +"Microsoft HoloLens and Haptic Feedback Devices: Their Impact on Virtual Medical Training": 1 +"Navigating the Cloud: The Importance of Cloud Computing in the Age of Big Data": 1 +"Physical Education: Understanding Musculoskeletal Health through Resistance Training and Posture Correction": 1 +"Microbiology 101: Investigating Bacterial Structures using Electron Microscopy": 1 +"Exploring the Use of Oil Pastels in Landscape Art: Techniques, Textures, and Tonal Values": 1 +"Machine Learning: Utilizing R and ggplot2 for Predictive Analysis in Bioinformatics": 1 +"Watercolor Wonders: The Evolution and Techniques of Watercolor Painting Throughout History": 1 +"Investigating the Impact of E-commerce on Traditional Retail: An Amazon Case Study": 1 +"Physics: Evaluating the Role of Quantum Mechanics in Modern Telecommunication using MATLAB": 1 +"Music Production: Exploring Sound Design in Electronic Dance Music - Creating Textured Pads with Ableton Live": 1 +"Unraveling the Mysteries of Fractal Geometry in Natural Phenomena: A Mathematical Exploration of Coastlines and Snowflakes": 1 +"Mastering English Vocabulary: Enhancing Reading Comprehension through Crossword Puzzles and Digital Flashcards": 1 +"Physical Chemistry: Applying Molecular Dynamics Simulations with GROMACS and Quantum Espresso Software for Material Science": 1 +"Understanding the Principles of Acrylic Painting: An In-depth Study of Layering Techniques, Color Theory, and Brushwork": 1 +"Architecture: Building Sustainable Cities using Virtual Reality and 3D Printing Technologies": 1 +"Computer Science: Understanding Machine Learning Through Neural Networks and TensorFlow": 1 +"History: The Rise and Fall of Empires: A Study of Cultural Impact and Societal Change": 1 +"English Literature: Enhancing Vocabulary through Interactive Games and Digital Story Telling": 1 +"Chemistry Basics: The Magic of Molecular Structures - An Insight into Chemical Bonding": 1 +"Practical Software Engineering: Java, Spring Boot, AngularJS, MongoDB, and Microservices Architecture": 1 +"Biology: Biodiversity and Conservation: An In-Depth Study Using Genomic Sequencing Techniques": 1 +"Health Education: Wilderness First Aid and Environmental Stewardship through Natural Remedies": 1 +"Art History: The Influence of Abstract Expressionism on Modern Art through the Lens of Color Theory": 1 +"Astrophysics: Stars and Black Holes - A Comprehensive Study on Stellar Evolution": 1 +"Geography: The Economic Geology of Mineral Resources: A Deep Dive into Plate Tectonics": 1 +"Astrophysics: Gravitational Waves - Unraveling the Mysteries of the Universe through Interferometry": 1 +"Predictive Analytics in Health Care using R, Power BI, Decision Trees, Data Mining, and Machine Learning": 1 +"Philosophy: The Art of Argumentation - Understanding Fallacies through Venn Diagrams": 1 +"Art: Landscapes of the Soul: Pastel Drawing Techniques": 1 +"Chemistry: The Industrial Revolution: The Role of Distillation in the Birth of Modern Chemistry": 1 +"Advanced Mathematics: The Beauty of Fractals and their Mathematical Representation": 1 +"Microbiology: The Fundamentals of Virology and its Role in Gene Therapy Techniques": 1 +"Unveiling the Human Heart: An Introduction to Cardiac Imaging Techniques using Echocardiography and Magnetic Resonance Imaging (MRI)": 1 +"Art: The Craftsmanship of Leatherworking: Techniques and Tools, with a Special Focus on Awls.": 1 +"Decoding the Mind: An Introduction to Cognitive Psychology for Novices": 1 +"French: Revolution and Romanticism - Examining the Influence of Political Shifts on Literature": 1 +"Advancements in Geriatrics: Aging Gracefully with the Help of Biomedical Engineering and Pharmacogenetics": 1 +"Initiation to Computer Science: Understanding Cybersecurity through Encryption and Decryption": 1 +"Primitive Cultures: Tracing the Origins of Music Through Sociocultural Evolution": 1 +"Health and Wellness Education: The Science of Yoga and Benefits of Heart Rate Monitors": 1 +"Ecological Information Processing: Predicting Climate Change Using Big Data and R": 1 +"Astrophysics: Stellar Evolution and Supernovae - A Closer Look at Spectroscopic Observations": 1 +"Superstring Theory in Modern Physics 410: Multiverses and the Fabric of Spacetime - An In-depth Study of String Theory": 1 +"English 210: Deconstructing Symbolism and Metaphor in Modernist Fiction and Drama": 1 +"Leveraging Drone Technology in Forest Fire Prevention: A Comprehensive Study on Eco-friendly Firefighting": 1 +"Java and SpringBoot for Novices: An Introduction to Data Mining Techniques": 1 +"Health Education: Improving Individual Fitness and Well-being through Yoga and Mindfulness Practices": 1 +"Introductory Physics: The Power of Photons - An Overview of Quantum Optics": 1 +"Utilizing Space in Origami Art: An Exploration of Form, Pattern, and Color through Kirigami Techniques": 1 +"In-depth Analysis of Brain Function Using EEG, fMRI and Transcranial Magnetic Stimulation Procedures": 1 +"Unraveling Symphonic Masterpieces: A Detailed Study of Beethoven's Symphonies using Orchestra and Logic Pro X": 1 +"Sociology: A Study of the Impact of Globalization on Traditional Cultures": 1 +"The Confluence of Augmented Reality and Dance: Exploring the Influence of Microsoft HoloLens on Ballet Choreography Perception": 1 +"Advanced Spanish: Using Kahoot and Google Docs' Translate Feature for Profound Understanding of Latin American Literature": 1 +"Advanced Mathematics: Exploring Chaos Theory through Fractals and Python": 1 +"Literature and Psychology: An In-Depth Study of Fear in Gothic Novels Through Freudian Psychoanalysis Using Text Mining": 1 +"Cutting-Edge Biotechnology: Using CRISPR, RNA Sequencing and Bioinformatics in Disease Genomics": 1 +"Children's Physics: Understanding Gravity and Motion with DIY Pendulum Experiments": 1 +"Introduction to Digital Art: Vector Illustration in Adobe Illustrator for Game Design": 1 +"The Use of Raman Spectroscopy in Unveiling Secrets of Ancient Egyptian Pottery: A Study in Archaeological Science": 1 +"Mastering the Art of Watercolor: Exploring the Interaction of Water and Pigment through Layering, Gradients and Glazing Techniques": 1 +"A Journey into Virtual Reality: Creating Immersive Experiences with Unity and Oculus Rift": 1 +"Music Composition: The Science of Rhythm: Understanding Beats and Tempo through Wave Physics ": 1 +"Introductory Ethics: Utilitarianism in Modern Society Explored through Kierkegaard's Existentialism": 1 +"Unraveling Microbiology: A Starter's Guide to Bacterial Genetics with Gel Electrophoresis and Python Programming": 1 +"Algebra: Unveiling the Secrets of Linear Equations and Inequalities with MATLAB": 1 +"Mastering FL Studio: The Science Behind Electronic Dance Music Production": 1 +"Intermediate Biology: Exploring Plant Photosynthesis with Leaf Disk Assay, Chlorophyll Extraction, and a Spectrophotometer": 1 +"Cracking Digital Interaction: The Craft of UX/UI Designing and Frontend Coding with JavaScript": 1 +"Game Innovators: The Journey into Game Design with Augmented Reality": 1 +"Biomechanics and the Respiratory System: The Influence of Spirometry and Biofeedback on Athletic Performance": 1 +"Psychology: The Impact of Nurture on Emotional Intelligence - Findings from Behavioral Studies": 1 +"Astrophysics: Investigating the Law of Gravitational Attraction through Pendulum Experiments and Velocity-Time Graphs": 1 +"English Literature: Harnessing Comics and Prezi for Narrative Analysis": 1 +"Anthropology: Tracing Human Migration Patterns through Genetic Markers and DNA Analysis": 1 +"Quantum Mechanics: Understanding Quantum Entanglement and Superposition through the Lens of Schrödinger's Cat": 1 +"Biochemistry: Protein Structure Analysis using PyMOL and Molecular Dynamics Simulations with GROMACS": 1 +"Software Engineering: Designing Secure E-commerce Applications with ASP.NET, Azure, and AngularJS": 1 +"Applied Statistics in Environmental Science using R, ggplot2, and Shiny": 1 +"Sociology and Film: Decoding Social Constructs in Contemporary Cinema": 1 +"Health Education: Understanding the Impact of Diet and Exercise on Cardiovascular Health in the 21st Century": 1 +"Advanced Computer Science: Deep Learning with TensorFlow and Keras": 1 +"Physics 210: Thermodynamics and Statistical Mechanics: Application of Boltzmann's Equation": 1 +"Astrophysics: Unraveling Cosmic Mysteries through X-ray Astronomy and Chandra Observatory Data": 1 +"Advanced Concepts in Quantum Physics: An Introductory Course on Quantum Entanglement for Beginners": 1 +"Incorporating Augmented Reality in Stratocaster Guitar Riff Creation for Caribbean Carnivals: A Cultural Perspective": 1 +"Leveraging the Influence of Minimalist Design in Photoshop: The Evolution of Abstract Art in Contemporary Visual Communication": 1 +"Secondary Education 410: Employing Virtual Reality in Interactive Learning Modules for Collaborative Study": 1 +"Immunology: Exploring Immune System Mechanisms through Flow Cytometry and the Principle of Immunological Memory": 1 +"Electromagnetism and the Lorentz Force: A Focused Study on Electric Field Meters": 1 +"Physical Education: The Impact of Plyometric Training on Muscular Strength and Power": 1 +"Positron Emission Tomography in Neuroimaging Techniques in Neurology: Harnessing Tracer Principles for Brain Mapping": 1 +"Geography Studies: Land Use Change Detection Using Drone Photography and Geospatial Analysis": 1 +"Computational Linguistics: Sentiment Analysis using R for Social Media Mining: Pragmatics and Discourse Analysis.": 1 +"Advanced Linguistics: The Impact of Machine Learning on Natural Language Processing and Sentiment Analysis Techniques": 1 +"Utilizing Trello in Business: The Potential of Project Management Tools in Remote Work Environments": 1 +"Fashion Design: The Evolution of Art Deco in Contemporary Apparel: An Exploration of Design and Texture Using Fabric Manipulation": 1 +"Examining the Effects of Aromatherapy on Human Stress Responses": 1 +"Chemistry: Deciphering Thermodynamics Through the Investigation of Heat Transfer and Energy Conservation": 1 +"Astrobiology: Evaluating the Role of Meteorites in the Origin of Life on Earth": 1 +"Graphic Design: The Integration of Visual Art and Typography Using Advanced Illustration Software": 1 +"Nuclear Physics: Understanding Subatomic Particles, Quark Theory, and the Principles of Strong Interaction": 1 +"Sustainable Engineering: The Utilization of Solar Power in the Manufacturing of Eco-Friendly Electric Vehicles": 1 +"Secondary Education 410: Incorporating Microsoft Teams in Group Projects for Improved Virtual Interaction": 1 +"Exploring Quantum Computing Algorithms in Medicine: A Detailed Study of 15 Techniques": 1 +"Biology Fundamentals: Understanding Cellular Respiration and DNA Replication using 3D Molecular Visualization Software": 1 +"Music Theory: Evaluating Harmonic Structures through Fourier Transform and Spectrogram Analysis": 1 +"Mathematics: Advanced Data Interpretation using Tableau and SAS: Statistical Analysis": 1 +"Physics for Teens: Decoding the Universe through Quantum Mechanics and String Theory": 1 +"Anthropology: The Influence of Social Media on Cultural Identity and Globalization Trends": 1 +"Introduction to Robotics: Programming with Lego Mindstorms, Arduino and Raspberry Pi": 1 +"Semantic Web: Understanding Ontologies and RDFs with SPARQL and Protege": 1 +"The Influence of Air Pollution on Plant Genomes: A Study of Next Generation Sequencing and Bioinformatics": 1 +"Performing Arts: Postmodernism in Musicals and its Socio-Political Implications": 1 +"Advanced Geometry: Exploring Fractal Patterns through Mandelbrot Set and Python": 1 +"Internet Literacy: Unleashing the Potential of Google Classroom for Collaborative Learning": 1 +"Sports Medicine: The Impact of Biomechanics in Injury Prevention and Performance Enhancement": 1 +"Literature Studies: Mastering Metaphor and Symbolism Analysis using Google Books Ngram Viewer": 1 +"International Relations 101: Understanding Global Diplomacy through Role-Playing & Negotiation Strategies": 1 +"Unfolding History: Morse Code, the Printing Press and the Evolution of Communication": 1 +"Human Anatomy: Essential Aspects and Neurological Mapping using MRI and DTI Techniques": 1 +"Quantum Physics: Utilizing Schrödinger Equation, Atomic Orbitals, and Wave-Particle Duality in Understanding Quantum Mechanics.": 1 +"Digital Circuit Design: Exploring Multiplexers with the aid of Verilog and Microcontrollers": 1 +"Cosmology: The Mystery of Black Holes and Their Influence in Galactic Formation": 1 +"Physics: Investigating the Universe with Quantum Mechanics and Astrophotography": 1 +"Biology: Understanding Human Genetics through the Study of DNA Sequencing": 1 +"Programming Basics: An Introduction to Java - Understanding Object-Oriented Programming": 1 +"Military History: The Impact of Submarine Warfare in World War II": 1 +"Economics: Examining Global Inflation Trends through Keynesian and Monetarist Perspectives": 1 +"Stage Management: The Art of Lighting Design and Sound Control for Theatre Productions": 1 +"Advanced Game Development: Utilizing C#, Unity, SQL, WebGL, and AngularJS": 1 +"Art History: The Effect of Political Movements on Cubism and Dadaism": 1 +"Literacy Studies: Improving Reading and Writing Skills through Interactive Podcasting and Augmented Reality": 1 +"Audiology: The Science of Hearing Loss and Cochlear Implant Technology": 1 +"Chemistry: Unraveling Molecular Structures through X-Ray Crystallography": 1 +"Theater Lighting and Sound: The Role of Acoustics in Set Design": 1 +"Harnessing the Sun: A Comprehensive Study of Solar Power in Sustainable Energy Solutions": 1 +"Principles of Neuroscience: Analyzing Brain Functions through EEG and fMRI": 1 +"Probing Viral Pathogenesis: An Insight into RNA Sequencing and Bioinformatics": 1 +"The Science of Vision: Evolution of Optical Systems and the Impact of Retinal Prosthesis": 1 +"Advanced Physics: Quantum Mechanics Explored Through Schrödinger's Equation": 1 +"Primary Science: Learning Basic Physics Principles with Interactive Simulation Tools": 1 +"Video Game Development: Designing Interactive Worlds with Unity and C#": 1 +"Data Science 101: Leveraging Python and Apache Spark for Large Scale Data Processing": 1 +"Chemistry and Cuisine: Molecular Gastronomy and the Science of Sous-vide Cooking": 1 +"Advanced Mathematics: Exploring the World of Fractals with Maple and Python's Matplotlib": 1 +"Ecology: Investigating the Impact of Climate Change on Coral Reefs using GIS": 1 +"Unveiling the Abstract: Comprehensive Study of Cubism Art through Charcoal Techniques": 1 +"Astrophysics: Unraveling Dark Matter - An In-depth Observation Through Hubble Space Telescope": 1 +"Musicology: The Role of the Koto in Japanese Classical Music": 1 +"Literature: The Impact of Metaphors in Romantic Era Prose": 1 +"Engineering Statistics: Demystifying Reliability Analysis with Weibull Distribution using R and SPSS": 1 +"Creative Writing: Perfecting Plot Progression: An Emphasis on Character Arcs": 1 +"Advanced Computing: Fundamentals of Machine Learning with Python's Scikit-Learn": 1 +"Chemistry Concepts: Unraveling Chemical Reactions through Infrared Spectroscopy": 1 +"World History Uncovered: Investigating Ancient Civilizations through Virtual Reality Simulations": 1 +"Advanced Fitness: High-Altitude Training Methods Explored through Biometric Data Analysis": 1 +"Molecular Medicine: Deciphering RNA Interference in Viral Infections using CRISPR/Cas9 Technology": 1 +"English Literature: Deep-Dive into Narrative Structures with Story Map, Grammarly, Google Translate and ProWritingAid": 1 +"Visual Arts: Sculpture in Clay and Bronze: Exploring Texturing Techniques and Proportional Symmetry": 1 +"Environmental Science: Biodiversity Conservation using Drone Technology and Satellite Imagery": 1 +"Java Coding: Basketball Game Analytics using TensorFlow and Apache Spark: A Computational Approach": 1 +"Physics in Gaming: Simulating Realistic Movements with Unity and the Influence on Player Experience": 1 +"Ethics and Critical Thinking: Decoding Moral Dilemmas through Deontological Theory and Game Theory": 1 +"Computer Science: Utilizing Artificial Intelligence in Cryptography and Network Security": 1 +"The Impact of the Gutenberg Press on the Evolution of Latin in the Renaissance Era": 1 +"Earth Science: Applying Satellite Imagery in Volcanic Activity Monitoring": 1 +"Physics 204: Quantum Mechanics and String Theory Explored with Python": 1 +"Behavioral Economics: Predicting Consumer Behavior through Neural Networks and Data Mining": 1 +"Cognitive Psychology: Analyzing Human Perception through EEGs and Artificial Neural Networks": 1 +"Cellular Biology: Understanding Organism Evolution through Mitochondrial DNA Sequencing": 1 +"The Physics of Light: Integrating Optics and Art in Photographic Techniques": 1 +"Graphic Arts: Exploring 3D Modeling and Animation with Blender": 1 +"History: The Enlightenment and the Rise of Scientific Inquiry in the 18th Century": 1 +"Marine Biology: Unveiling the Secrets of Coral Reefs through Scuba Diving Experiences": 1 +"Global Cultures: Food and Cuisine - A Gastronomic Journey through Molecular Gastronomy Techniques": 1 +"Introductory Finance: Understanding Monetary Policy through the Application of the Keynesian Model": 1 +"The Art of Character Development: Exploring Persona Creation in Scriptwriting": 1 +"The Science of Gastronomy: Decoding the Chemistry behind Fermentation and Flavor Enhancement": 1 +"Art: The Role of Fresco Techniques in Renaissance Art": 1 +"The Universe of Astrophysics: Understanding Black Holes through Quantum Gravity": 1 +"Introductory Chemistry: Understanding Chemical Reactions through the Concept of Atomic Structure": 1 +"Molecular Genetics: Genetic Engineering using Gene Drives, In Vivo Imaging, and Synchrotron Radiation": 1 +"Art: The Influence of Python Language in Computer Graphics and Animation": 1 +"Mathematics in Nature: Utilizing Fractals and Fibonacci Sequences in Biological Structures": 1 +"Global Politics: Examining the Impact of Colonialism on Modern International Relations": 1 +"Chemistry Uncovered: Exploring Organic Compounds through Nuclear Magnetic Resonance Spectroscopy": 1 +"Astrophysics Decoded: The Intricacies of Black Holes and the Theory of General Relativity": 1 +"Computer Science: Leveraging Java Programming in the Development of Automated Systems": 1 +"Digital Media: The Role of Augmented Reality in Modern Marketing - Application and Strategy with HoloLens": 1 +"Psychology Basics: Understanding Human Behavior through Cognitive Models": 1 +"Music: The Influence of Jazz in Shaping Modern Pop Music": 1 +"A Comprehensive Study of YouTube and the Use of Deep Learning Algorithms in Video Recommendation Systems": 1 +"The Impact of Gothic Elements in the Transformation of Urban Planning during the Victorian Era": 1 +"Astrophysics: The Evolution of Stars and the Impact of Supernovae on Galactic Formation": 1 +"Anthropology: Tracing Human Evolution through the Lens of Advanced Genomic Sequencing": 1 +"Environmental Science: Assessing Climate Change Impacts through Satellite Imagery and Geospatial Analysis": 1 +"Bioethics: Navigating the Moral Labyrinth of Stem Cell Research": 1 +"Sociology: The Role of Social Media in Shaping Public Opinion: A Quantitative Analysis": 1 +"Bluegrass Rhythms: The Cultural Significance and Origins of Appalachian Music": 1 +"Linguistics: Decoding Ancient Scripts: A Computational Approach": 1 +"Cybersecurity: Developing Secure Encryption Techniques using Python": 1 +"Data Science: Advanced Predictive Modeling Techniques using R Programming": 1 +"Sports Science: Soccer Tactics: Understanding the Role of Aerobic Conditioning in Enhancing Performance": 1 +"Physics: The Intricate Dance of Particles - Quantum Mechanics Explored with Feynman Diagrams": 1 +"Young Botanists: The Secret Life of Plants - Photosynthesis Unveiled with Interactive Experiments": 1 +"High School Algebra: Solving Mysteries with Cipher Decoding Techniques": 1 +"In-Depth Immunology: Decoding the Human Immune Response through Flow Cytometry and ELISA Techniques": 1 +"Philosophy 101: Dissecting Syllogisms and Fallacies in Classical Rhetoric": 1 +"History and Code: Decrypting the American Civil War through Telegraphic Communications": 1 +"Neuroscience of Vision: An Insight into the Evolution of Visual Systems Using Perimetry and Color Perception Tests": 1 +"Understanding E-commerce: A Simplified Guide to Digital Economy for Teens": 1 +"Sustainable Investing: The Impact of Green Bonds on Environmental Conservation and Economic Growth": 1 +"Language Mastery: The Journey of Writing - Hieroglyphics to Digital Typography and the Changes They Brought": 1 +"Advanced Neuroscience: Understanding Neural Plasticity and Cognitive Enhancement through Transcranical Magnetic Stimulation": 1 +"Astrophysics Explored: The Role of Deep Learning Algorithms in Exoplanet Detection": 1 +"Sustainable Engineering: Harnessing Solar Energy: Photovoltaic Cells and the Future of Clean Power": 1 +"Urban Planning: Green Building Design and Implementation: A Study on Eco-Cities for a Sustainable Future": 1 +"Finance and Technology: The Impact of Quantum Computing on Cryptocurrency and Global Finance": 1 +"Digital Media: Evolution of Cinematic Techniques: The Influence of CGI in Modern Film Production": 1 +"Advanced Statistics for Sports Analytics: Leveraging Machine Learning for Performance Prediction": 1 +"Innovative Teaching: Utilizing Virtual Reality in Physics Education for Interactive Learning": 1 +"Medical Innovation: The Integration of Wearable Technology in Chronic Disease Management ": 1 +"Chemistry of Art: Analysis of Pigment Composition in Ancient Manuscripts Using Raman Spectroscopy": 1 +"Advanced Chemistry: Exploiting Nanoparticles for Targeted Drug Delivery Systems": 1 +"Economics: The Role of Cryptocurrency in Modern Financial Markets": 1 +"Health Sciences: Application of Artificial Intelligence in Predicting Cardiovascular Diseases": 1 +"Astrophysics: Understanding the Role of Dark Matter in Galaxy Formation": 1 +"Advanced Genetics: Using CRISPR-Cas9 for Gene Editing in Disease Treatment": 1 +"The Steam Engine and the Telegraph: Catalysts of the Victorian Technological Boom": 1 +"Computer Science: Advanced Algorithms and their Role in Big Data Analysis": 1 +"Astronomy Fundamentals: Probing the Mysteries of Black Holes with Gravitational Waves": 1 +"Psychology Basics: The Influence of Cognitive Behavioral Therapy on Anxiety Disorders": 1 +"Artificial Intelligence in Radiology: Leveraging Deep Learning for Early Cancer Detection": 1 +"Quantum Computing: Unraveling the Mysteries of Quantum Mechanics with Quantum Bits and Superposition": 1 +"Advanced Calculus: Harnessing the Power of Integrals in Predicting Market Trends Using Econometric Models": 1 +"The Potential of Augmented Reality in Healthcare: A Comprehensive Study of Microsoft's HoloLens in Surgical Procedures": 1 +"The Role of Data Structures and Algorithms in Software Engineering": 1 +"Galactic Detectives: Probing the Cosmos with the Hubble Space Telescope and Dark Energy Hypothesis": 1 +"Chemistry: Delving into Organic Compounds with the Principles of Atomic Structure": 1 +"Python and Django Framework: Mastering the Intricacies of Model-View-Controller (MVC) Design Pattern": 1 +"Digital Painting: Harnessing the Potentials of Adobe Photoshop in Crafting Hyperrealistic Art Pieces": 1 +"Philosophy: Deconstructing Paradoxes with the Help of Formal Logic": 1 +"IT Advanced Concepts: Utilizing Docker and Kubernetes in Real-World: Building Scalable E-commerce Platforms": 1 +"Biotechnology: Exploring Genomics and Genetic Engineering using CRISPR-Cas9": 1 +"The Art of Rhetoric: Enhancing Public Speaking Skills through TED Talks and Virtual Reality": 1 +"Ethics in AI: Addressing Privacy and Security Concerns in Machine Learning and Predictive Analytics": 1 +"Meteorology: Understanding Weather Patterns and Climate Change through Satellite Imagery and Doppler Radar": 1 +"Oceanography: Investigating the Deep Sea and Marine Conservation through ROV Expeditions and Sonar Mapping": 1 +"The Principle of Probability: Applying Bayesian Inference in Statistical Modelling and Decision Making": 1 +"Neuroscience: Decoding the Mysteries of Human Brain using MRI and Neuroimaging Techniques": 1 +"Advanced Calculus: Exploring the World of Fractals and Chaos Theory": 1 +"Cosmology: Probing the Universe's Birth - A Detailed Study through Cosmic Microwave Background Radiation": 1 +"Geology and Survival Strategies: Learning from Earthquakes through Seismic Tomography and Disaster Management": 1 +"Physics in Motion: The Implication of Quantum Theory in Modern Technology": 1 +"In-depth Study on Thermodynamics: Understanding Heat Transfer and Its Application in HVAC Systems": 1 +"Statistics: Probability Distributions and Predictive Modelling in R Language": 1 +"Exploring Arts and Crafts: A Visual Journey through Traditional Pottery around the Globe": 1 +"Demographic Transition and Gender: A Study on the Evolution of Gender Roles in Education": 1 +"Meteorology Decoded: The Importance of Doppler Radar in Weather Forecasting": 1 +"Advanced Grammar Mastery: Using Autodesk Storybook and Canva for Interactive Learning": 1 +"Computer Engineering: Understanding Middleware in C++ for Real-Time Systems in Autonomous Vehicles": 1 +"Molecular Biology: Decoding Genetic Sequences using CRISPR and Genomic Profiling": 1 +"Sociology Made Easy: An Introduction to Social Structures and Cultural Norms": 1 +"Astronomy and Mathematics: Deciphering the Universe through Calculus and Kepler's Laws": 1 +"Performance-Enhanced Training: Utilizing R and Machine Learning for Basketball Skill Enhancement": 1 +"Marine Biology: Understanding Coral Bleaching through Satellite Imagery and In-Situ Observations": 1 +"Culinary Physics: Unveiling the Mysteries of Sous Vide Cooking and Molecular Gastronomy": 1 +"Philosophical Reasoning: An Exploration of Deductive Arguments using Propositional Logic and Syllogistic Reasoning": 1 +"Advanced Paramedic Training: Mastering Trauma Management with Tourniquets and Hemostatic Agents": 1 +"Innovative Methods in Cardiology: Studying Heart Physiology with Echocardiography, Cardiac MRI, and Angiography": 1 +"Deep Dive into Java: Implementing Genetic Algorithms in Bioinformatics with JavaFX and Apache Commons Math": 1 +"Digital Design: Mastering UX/UI with Adobe XD and Agile Methodologies": 1 +"Cognitive Psychology Perspectives: Investigating Human Perception using EEG, Event-Related Potentials, and Transcranial Magnetic Stimulation": 1 +"Music: Exploring Harmonics and Resonance - A Study in Acoustic Physics": 1 +"The Role of Plant Symbolism in Poetry and Its Impact on Romantic Literature during the Victorian Era": 1 +"French Literature: A Detailed Analysis of Irony and Satire in Voltaire's Works": 1 +"Civil Engineering: Applying BIM and Revit in Modern Infrastructure Design": 1 +"The Impact of Mythology in Structuring Modern Cinema: A Cross-cultural Examination": 1 +"Quantum Physics: Quantum Entanglement and Schrödinger's Cat - Consequences for Information Theory": 1 +"Geology: Investigating Plate Tectonics with the Aid of Seismic Imaging and GPS Technology": 1 +"International Cuisine: The Silk Road's Effect and the Evolution of Spice Trade": 1 +"Archaeology: Uncovering Ancient Civilizations - From Hieroglyphs to the Internet": 1 +"Sports Medicine: Exploring Muscle Performance through Heart Rate Monitors": 1 +"Advanced Astrophysics: Exploring Black Holes and Wormholes through the Lens of General Relativity": 1 +"Chemistry 101: Understanding Organic Compounds through Stereochemistry and Isomerism": 1 +"Applying Boolean Algebra in Digital Circuit Design: A Hands-On Approach to Learning Electronics": 1 +"Immersive Language Learning: Mastering French Pronunciation through Augmented Reality": 1 +"Ecology Deep Dive: Decoding the Ecosystem Dynamics of Coral Reefs using Satellite Imagery": 1 +"Classical Music: The Baroque Period and the Evolution of Orchestral Suites": 1 +"Thermodynamics: Exploring the Principles of Heat Engines and Refrigerators": 1 +"Cultural Studies: The Impact of Social Media on Global Fashion Trends": 1 +"Middle School: Navigating the Solar System Through Virtual Reality: Planets, Asteroids and Comets": 1 +"Neuroplasticity Uncovered: Exploring Cognitive Rehabilitation through EEG Neurofeedback and Transcranial Magnetic Stimulation.": 1 +"Physics: Exploring the Cosmos through Telescope Technology and Astrophotography": 1 +"Biology for Beginners: Understanding Genetics and Evolution through DNA Sequencing and Bioinformatics": 1 +"Algebra: Merging Abstract Algebra and Computer Algorithms for Cryptography": 1 +"Sociology: Decoding Social Dynamics through Network Analysis and Big Data": 1 +"The Renaissance Era: The Influence of Latin in Literature and the Advancement of Printing Technology": 1 +"Web Development: Mastering JavaScript through Interactive Web Design": 1 +"The Dynamics of International Relations: The Role of Blockchain in Global Trade and Cybersecurity": 1 +"Junior Cartography: Understanding Geology and Climate Through GIS and Remote Sensing": 1 +"Cooking with Physics: Exploring Thermodynamics in the Culinary Arts": 1 +"The Revolution of Modern Art: The Impact of Dadaism and Surrealism on Contemporary Graphic Design": 1 +"Unlocking Soccer Strategies: An In-depth Analysis Through Python and Data Visualization Techniques": 1 +"Children's Psychology: Emotional Intelligence and Empathy - An Extensive Study": 1 +"Climate Change: Assessing the Role of Carbon Sequestration in Global Warming Mitigation": 1 +"Exploring Red Wine's Effect on Heart Health using Echocardiograms, Pulse Oximeters, and Cardiac MRI: A Detailed Study on Resveratrol, Polyphenols, Flavonoids, and Vitamins B1, B2, B6": 1 +"Chemistry: A Beginner's Guide to Organic Chemistry: Exploring Life through Biochemistry": 1 +"Eco-Friendly Urban Planning: Water Conservation and Waste Management Techniques in Sustainable City Design": 1 +"Sociology: The Impact of Virtual Reality in Transforming Education Systems": 1 +"Special Education 410: Enhancing Cognitive Abilities and Emotional Intelligence through Music Therapy and Waldorf Approaches": 1 +"Advanced Python Programming with Pandas for In-depth Analysis of Air Quality Index Data": 1 +"Computer Science: The Craft of JavaScript in Interactive Website Development": 1 +"Chemistry: The Role of Chromatography in Analyzing Organic Compounds": 1 +"Critical Thinking: Enhancing Cognitive Skills in Children through Puzzle Solving": 1 +"Secondary Education 210: Incorporating Google Meet and Quizlet for Interactive Lessons": 1 +"Digital Proficiency: Harnessing the Power of Microsoft Teams for Group Projects": 1 +"The Rhythm of Jazz: A Study of Logic Pro X and Its Impact on MIDI and Mixing Consoles": 1 +"Psychology: A Glimpse into Human Behavior using EEG, fMRI and PET Scans": 1 +"Zoology: Animal Anatomy - Observing Metamorphosis using Electron Microscopy": 1 +"Geometry: The Implication of Hyperbolic Geometry in Quantum Mechanics": 1 +"Positive Space in Watercolor Rendering: Investigating Textures, Tones, and Shapes with Fan Brush and Dry Brush Techniques": 1 +"Trade Evolution: The Impact of the Incense Route on Early Navigation Techniques": 1 +"Advanced Photoshop Techniques: Utilizing Digital Tools for Visual Storytelling": 1 +"Astrophysics Explored: A Deep Dive into Dark Matter, Black Holes, and the Use of Cosmic Microwaves in Space Exploration": 1 +"Cryptocurrency and Cybersecurity: An Overview of Digital Currency Security Measures and the Impact of Blockchain Technology": 1 +"Fashion Industry Economics: Analyzing Consumer Buying Patterns and Retail Strategies with a Focus on Sustainable Fashion": 1 +"Introduction to Quantum Mechanics: Deciphering Heisenberg’s Uncertainty Principle through Mathematical Illustration": 1 +"Appreciating Operas: A Detailed Analysis of Mozart's Masterpieces": 1 +"Integration of Python in Structural Engineering: Simulating Stress and Strain Patterns Using Finite Element Analysis": 1 +"Big Data and Healthcare: Implementing Machine Learning Algorithms in Predicting Disease Outbreaks": 1 +"The Impact of Drone Technology on Wildlife Conservation Efforts": 1 +"Advanced Programming with Python: Machine Learning and Data Analysis Using Scikit-Learn and Pandas in Financial Markets": 1 +"Physics: The Quantum Realm - Understanding Particle Duality using Wave Function and Schrödinger's Equation": 1 +"Chemistry: Molecular Geometry - A Detailed Study of VSEPR Theory and Its Applications": 1 +"Sociology: The Influence of Social Media on Political Activism - An Analytical Approach": 1 +"Economics 101: The Role of Cryptocurrency in Modern Economic Systems - A Global Perspective": 1 +"Geology: Unraveling Earth's History - Comprehending Rock Cycle and Plate Tectonics using GIS": 1 +"Introduction to Neural Networks: Application of Perceptron Algorithm in Image Recognition using Python and R": 1 +"Advanced French: The Art of Rhetoric - Exploring Metaphors in French Literature": 1 +"Archaeology: The Impact of the Bronze Age on Early Human Civilizations - A Comprehensive Study": 1 +"Exploring the Universe: Understanding Stellar Evolution through Spectroscopy and Hubble's Law": 1 +"Linguistics: The Transformation of Language - Analyzing the Influence of Emoji in Digital Communication.": 1 +"Advanced Biology: Genetic Engineering and CRISPR-Cas9: A Deep Dive into Modern Biotechnology": 1 +"Mathematics: Exploring Fractal Patterns and Their Applications in Digital Image Compression": 1 +"Linguistics: Leveraging Natural Language Processing with Java to Decode Semantic Structures": 1 +"Philosophy: Navigating the Landscape of Metaethics: A Comprehensive Study of Moral Relativism": 1 +"Computer Science: Mastering Cybersecurity with Ethical Hacking using Kali Linux": 1 +"Modern Physics: Exploring Quantum Mechanics through the Lens of Bell's Theorem": 1 +"Art History: Exploring the Impact of Linear Perspective in Renaissance Art": 1 +"Economics: Understanding Market Dynamics: Game Theory and Behavioral Economics": 1 +"Computer Engineering: Exploring Microcontroller Programming and Embedded Systems with Arduino": 1 +"Cosmology: Unraveling Cosmic Inflation Theory and the Big Bang through Computational Simulations": 1 +"Sociology: Exploring Gender Dynamics in Pre-Industrial Societies Using Intersectional Analysis": 1 +"Biology: Tracing the Impact of DNA Sequencing Technology on Modern Genetic Research ": 1 +"Music: The Application of Fourier Transforms in Digital Sound Synthesis and Audio Processing": 1 +"Advanced Calculus: Exploring Fractal Geometry Using Iterative Algorithms in MATLAB": 1 +"Visual Arts: Creating Immersive Environments with Augmented Reality and 360-Degree Photography": 1 +"Chemistry: Quantum Mechanics and the Study of Atomic Structures": 1 +"Marketing: The Role of Social Media Analytics in Enhancing Brand Visibility": 1 +"Programming: Implementing Machine Learning Algorithms with TensorFlow to Predict Stock Market Fluctuations": 1 +"Comparative Literature: Exploring Cultural Archetypes through the Lens of Japanese Manga and Western Graphic Novels": 1 +"Linguistics: The Evolution of Human Communication - Sign Language and the Influence of Technology on Real-time Translation": 1 +"Exploring Beat and Tempo: A Comprehensive Guide to Digital Music Production using MIDI Controllers": 1 +"Advanced Machine Learning: Implementing AI Systems in PyTorch using GPT-3": 1 +"Biology 205: The Role of Proteins and Enzymes in Digestive Health": 1 +"Artistic Expressions: Mastering Watercolor Techniques in Wildlife Illustration: The Art of Dry Brush and Wet-in-Wet Techniques": 1 +"Geology: Deciphering Earth's History through the Study of Plate Tectonics": 1 +"In-Depth Analysis of Big Data using Python: Utilizing Matplotlib and Plotly for Graph Theory Visualization": 1 +"Strings and Harmonics: Their Influence on Folk Music and the Development of the Acoustic Guitar": 1 +"Intro to Engineering: Understanding the Role of Tension and Compression in Bridge Design": 1 +"Exploring the Dynamics of Photovoltaic Cells: An Electrical Engineering Perspective": 1 +"Mechanical Engineering 101: Fundamentals of Fluid Dynamics and the Application of Bernoulli's Equation": 1 +"Grammar: Perfecting Sentence Structures through Regular Parsing Exercises": 1 +"Geology: Tracing Tectonic Plate Movements via Interactive 3D Models": 1 +"Zoology: Diving into the Aquatic Life - A Comprehensive Study of Coral Reefs using Underwater Robotics and Spectrometer Analysis": 1 +"Unveiling the Cold War: The Significance of Enigma Machine and PURPLE Cipher in Cold War Espionage": 1 +"Chemistry: Lavoisier's Contribution to the Law of Conservation of Mass and its Utilization in Mass Spectrometry": 1 +"The Evolution of Communication: The Transition from Radio to Podcasts and its Effect on Digital Broadcasting": 1 +"Cultural Studies: The Impact of Globalization on Japanese Cuisine - An Insight through the Evolution of Sushi": 1 +"Incorporating Google Classroom in Teaching: The Potential of Virtual Classrooms as Modern Teaching Tools": 1 +"Music: Expressing Emotions through Contemporary Music Composition Techniques": 1 +"Anthropology: The Influence of Electronic Dance Music in Brazilian Carnival Celebrations": 1 +"Advanced Physics: Quantum Mechanics and the Simulation of Particle Interactions in High Energy Collider": 1 +"Bioinformatics: Deploying Machine Learning Algorithms for Genomic Sequencing and Disease Prediction": 1 +"Political Science: The Impact of Globalization on International Relations - A Case Study on the European Union": 1 +"Mathematics 201: Differential Equations and Their Applications in Fluid Dynamics": 1 +"Environmental Ethics: Understanding the Implications of Industrial Waste Management for Sustainable Development": 1 +"Advanced Programming: Data Structures and Algorithms - Exploring Python and C++ for Software Development": 1 +"Anthropology: Tracing Human Evolution through Archaeological Findings and Genetic Analysis": 1 +"Nutritional Science: The Role of Probiotics in Gastrointestinal Health - A Comprehensive Study on Fermented Foods": 1 +"Engineering: The Principles of Robotics and Artificial Intelligence - Deep Learning and Neural Networks": 1 +"Marine Biology: Coral Reef Conservation - The Impact of Climate Change and Ocean Acidification on Marine Ecosystems": 1 +"Unveiling the Human Genome: A Comprehensive Study on Genomic Data Analysis and Visualisation": 1 +"Ethical Dilemmas in Business: Grappling with Corporate Social Responsibility through Virtue Ethics and Egoism": 1 +"Modern Architecture: Exploring Biomimicry using AutoCAD and Rhino Software": 1 +"Advanced Bioinformatics: Exploring Cancer Genomics through Next-Generation Sequencing": 1 +"Digital Media: The Impact of Virtual Reality on the Evolution of Filmmaking": 1 +"Neuroscience 101: Unraveling Dopamine Pathways and Their Role in Addictive Behaviors": 1 +"Metaphysical Musings: An Examination of Materialism in Contemporary Philosophy": 1 +"Astrophysics: Exploring Black Holes and Quantum Gravity using MATLAB and TensorFlow": 1 +"Sociology: The Role of Social Media in Shaping Political Movements": 1 +"Sound Engineering: Mastering Sound Design for Film using Pro Tools and Logic Pro X": 1 +"Geography: The Influence of GPS Technology and the Development of Modern Navigation": 1 +"Basketball Analytics: An In-depth Analysis using Python, R, and Tableau.": 1 +"Knots and Splicing: Their Role in Traditional Folklore and the Evolution of Modern Navigation": 1 +"Archaeology: Deciphering Lost Cultures through Lidar Technology and Augmented Reality": 1 +"Pastry Arts: The Science of Patisserie - Delving into the Methodology of Sugar Sculpting": 1 +"Secondary Education 410: Advanced Applications of Edtech: Incorporating VR in Classroom": 1 +"Advanced Calculus: Introduction to Stochastic Processes and their Applications in Finance": 1 +"Biology: Investigating the Potential of Stem Cells in Regenerative Medicine: Social and Moral Debates": 1 +"Costume Design: The Techniques of Fabric Manipulation and Color Theory for Film Costuming": 1 +"Astrophysics: Quantum Mechanics and the Study of Black Holes": 1 +"Advanced Robotics: The Intersection of AI, Machine Learning, and Humanoid Design": 1 +"Algebra II: Quadratic Equations and Polynomial Functions - An In-depth Study of Graph Theory ": 1 +"Biochemistry: Understanding Protein Synthesis and Enzyme Reactions with PyMOL": 1 +"Philosophy 201: Exploring Ethical Theories, Categorical Imperatives and Existentialism": 1 +"Music Production: Sound Engineering Principles - Creating Acoustic Landscapes using Digital Audio Workstations": 1 +"Journalism in the Age of Social Media: The Impact of Twitter, Instagram, and Podcasts on News Reporting": 1 +"Digital Literacy in Education: Enhancing Learning through Virtual Reality, Augmented Reality, and EdTech Tools": 1 +"Geography 220: The Influence of the Panama Canal on Transoceanic Trade": 1 +"Tech Titans: Network Security, Cryptography, and Threat Prevention with Wireshark": 1 +"Cognitive Neuroscience in Sports: Studying Brain Plasticity in Elite Athletes using fMRI Techniques": 1 +"Quantum Computing: An Exploration of Quantum Algorithms and Computational Complexity with Python": 1 +"Art 305: Abstract Impressionism: A Detailed Examination of Brushwork Techniques and Color Theory": 1 +"Linguistics: Sentiment Analysis in Spanish using Google Cloud Natural Language API: Discourse Interpretation and Textual Critique": 1 +"Advanced Statistics: Predictive Modeling of Global Warming Trends using R, Decision Trees, and Multivariate Regression Analysis": 1 +"Pioneering Underwater Exploration: Application of Fluid Dynamics in Submarine Navigation and 3D Mapping of Oceanic Trenches": 1 +"Architecture in Mathematics: The Role of Fractal Geometry in Structural Design": 1 +"Business 220: The Business of Film Distribution and Streaming - The Impact of Netflix's Subscription Model": 1 +"Elementary Physics: The Role of Newton's Laws of Motion in Mechanical Engineering": 1 +"Geography: GIS Techniques for Global Deforestation and Reforestation Rates Analysis": 1 +"A Study of SPSS in Health Economics: Healthcare Expenditure Analysis and Statistical Findings.": 1 +"Psychology: The Impact of Social Media on Mental Health: An In-Depth Analysis": 1 +"Computer Science: Advanced Machine Learning Techniques with Python and TensorFlow": 1 +"Dance: The Evolution of Modern Dance: Styles, Techniques, and Cultural Influence": 1 +"Forensic Science: Using DNA Sequencing in Crime Scene Investigation and Legal Proceedings": 1 +"Outdoor Education: Wilderness Navigation - Map Reading and Compass Skills for Hikers and Campers": 1 +"Sports Analytics: Exploring Soccer Performance Metrics using Python, SQL and Power BI for Real-Time Decision Making": 1 +"Sustainable Architecture: Integrating Solar Panels in Urban Planning: A Case Study on 10 Sustainable Cities": 1 +"Climate Studies: Tracking Sea Level Changes with Satellite Altimetry and Climate Models": 1 +"World Literature: Exploring Magical Realism through Gabriel Garcia Marquez's Novels": 1 +"Smart Grid Technology: The Impact of Internet of Things on Power Distribution and Energy Efficiency": 1 +"Mathematical Patterns: Unraveling the Secrets of Fractals and Chaos Theory in Natural Phenomena": 1 +"Geopolitics: Analyzing National Interests and Policies through Game Theory and Multi-agent Systems": 1 +"The Influence of Perspective and Light in the Transformation of Still Life Techniques: A Review on Shadows and Reflections": 1 +"Genomic Editing and CRISPR Technology: Delving into Genetic Innovations through Epigenetic Modifications": 1 +"Sociology: Evaluating the Role of Social Stratification in Contemporary Society using Network Analysis": 1 +"Physics for Adolescents: Probing into the Universe with Astrophysics and Hubble's Law": 1 +"Deep Learning Algorithms: An Intensive Exploration of Convolutional Neural Networks using Python and TensorFlow": 1 +"Cardiology: Investigating the Heart's Mechanics with Doppler Ultrasound and Echocardiography in Cardiovascular Imaging": 1 +"Art History: Decoding the Evolution of Abstract Expressionism through the Lens of Cubism": 1 +"Culinary Science: Mapping Molecular Gastronomy with Algorithms and Data Mining": 1 +"Biology: Understanding Cellular Processes through Microscopy and Bioinformatics": 1 +"Astrophysics: Exploring Cosmic Phenomena through Radio Astronomy and Data Analysis": 1 +"Introduction to Robotics: Programming Autonomous Robots using ROS": 1 +"Global Warming: Examining the Effects of Deforestation and Industrial Emissions on Climate": 1 +"Health Education: Understanding the Impact of Nutrition and Exercise on Mental Health": 1 +"Exploring Python Dataframes: An In-depth Guide to Data Manipulation, Analysis, and Visualization with Pandas": 1 +"Geography: Applying LiDAR Technology in Digital Elevation Models for Urban Planning": 1 +"Theatre: Integrating Augmented Reality into Set Design using Unity for Dramatic Production": 1 +"Art History: Decoding Renaissance Art through the Framework of Humanism using Machine Learning": 1 +"Music Theory: Infusing Melodic Structures into Orchestral Compositions using Fibonacci Sequences": 1 +"Chemistry: Exploring the Role of Nanoparticles in Drug Delivery using Atomic Force Microscopy": 1 +"Global Economics: Studying the Influence of Cryptocurrency on Financial Markets using Blockchain Analysis": 1 +"Biology: Understanding the Evolution of Viral Pathogens through Genomic Sequencing": 1 +"Culinary Arts: An Exploration of Molecular Gastronomy and Texture Manipulation": 1 +"Artificial Intelligence: An Insight into Deep Learning Algorithms and their Role in Autonomous Vehicles": 1 +"Environmental Science: Examining Deforestation Impact on Biodiversity using Remote Sensing Technology": 1 +"Digital Literature: Crafting Immersive Worlds and Characters with Twine": 1 +"Software Engineering: Implementing Machine Learning Algorithms for Cybersecurity Threat Detection": 1 +"Advanced Geometry: Transitioning from Two-Dimensional Figures to Three-Dimensional Models using AutoCAD": 1 +"Music Theory: Understanding Orchestral Composition through Frequency Spectrum Analysis and Digital Synthesizers": 1 +"Advanced Physics: Exploring Quantum Mechanics Through the Double Slit Experiment": 1 +"Comparative Literature: Tracing Cultural Influences in Postcolonial Narratives": 1 +"Introduction to Marine Biology: Understanding Ocean Ecosystems through the Study of Coral Reefs": 1 +"Advanced Programming: Creating Immersive Virtual Reality Experiences with C++ and Unity": 1 +"Behavioral Economics: Analyzing Consumer Behavior and Market Trends with SPSS and Python": 1 +"Engineering Mathematics: Mastering Fourier Series and Laplace Transforms": 1 +"Interactive Design: Developing User Interfaces with HTML5 and CSS3 for Mobile Applications": 1 +"Mastering Watercolor Techniques: From Gradient Washes to Detailed Dry Brushing": 1 +"Sociology: The Role of Social Media in Contemporary Political Movements: A Study using Big Data Analytics": 1 +"Exploring the Fundamentals of Sculpture: Emphasizing Form and Texture in Clay Modelling.": 1 +"Mathematics: Understanding Quantum Mechanics through Algebraic Topology": 1 +"Artificial Intelligence: Investigating the Impact of Machine Learning on Autonomous Driving": 1 +"Physics: Gravitational Waves Exploration with LIGO Interferometer": 1 +"Economics: The Impact of Cryptocurrency on Global Financial Systems": 1 +"Information Technology: Web Development with Python using Django Framework": 1 +"Psychology: Cognitive Bias and Its Effect on Human Decision-Making": 1 +"Biotechnology: Gene Editing Tools - CRISPR and Beyond": 1 +"Archeology and Chemistry: Dating Techniques and the Use of Carbon-14": 1 +"Music: The Influence of Computer-Generated Sounds in Contemporary Composition": 1 +"Environmental Science: Climate Change Modelling through Geospatial Data Analysis.": 1 +"Decoding Human Behavior: Applying Social Psychology to Understand Consumerism through Behavioral Economics": 1 +"Neuroscience: Exploring Neural Interfaces in Prosthetics - A Deep Dive into Brain-Computer Interaction ": 1 +"Archaeology: Using Geospatial Technologies for Excavation - Unveiling Ancient Civilizations through LIDAR": 1 +"Artificial Intelligence: Understanding Neural Networks through TensorFlow - Creating Self-learning Bots": 1 +"Criminology: Analyzing Forensic DNA through Biotechnology - Elucidating Crime Scenes with Molecular Biology": 1 +"Culinary Science: The Chemistry of Gastronomy - Molecular Transformations in Modern Cuisine": 1 +"Environmental Science: Assessing Climate Change through Ice Core Analysis - A Glacial Perspective on Global Warming": 1 +"Applied Mathematics: Exploring Cryptography through Number Theory - The Art of Code Breaking": 1 +"Astrophysics: Understanding Galaxy Formation through Computational Simulations - The Dark Matter Conundrum": 1 +"Bioinformatics: Decoding the Human Genome - Leveraging Machine Learning in Genetic Research.": 1 +"Quantum Computing: Exploring Qubits and Quantum Entanglement - A Study of Quantum Algorithms": 1 +"Environmental Science: Climate Change and Biodiversity - The Impact of Deforestation on Ecosystems": 1 +"Artificial Intelligence: The Impact of Convolutional Neural Networks on Image Recognition": 1 +"Cinematic Art and Anthropology: Exploring Cultural Narratives through Documentary Filmmaking": 1 +"Chemistry Fundamentals: Understanding Chemical Reactions and Energy Transfer through Thermodynamics": 1 +"Advanced Algebra: The Role of Matrix Theory in Linear Algebra and its Applications in Cryptography": 1 +"Marine Biology: The Communication of Dolphins - An Introduction to Bioacoustics": 1 +"Particle Physics 320: The Standard Model and the Higgs Boson - A Comprehensive Study of Quantum Field Theory": 1 +"Junior Botanists: Introduction to Photosynthesis and Plant Anatomy with Interactive Labs": 1 +"Philosophy: The Debate on Free Will - Implications and Perspectives in Cognitive Neuroscience": 1 +"Sociology: Exploring Social Dynamics through the Lens of Public Transport: A Study in Urban Sociology": 1 +"Chemistry: Understanding Atmospheric Pollution with Infrared Spectroscopy: A Comprehensive Study of Greenhouse Gases": 1 +"Artificial Intelligence: Predictive Modeling and Data Visualization using Python: A Deep Dive into Machine Learning Algorithms": 1 +"World Literature: Deconstructing Cultural Narratives in Magical Realism: Unveiling Gabriel Garcia Marquez's Use of Symbolism": 1 +"Health and Nutrition: Deciphering the Nutritional Facts of Organic Produce: A Comprehensive Look at Pesticide Residue Analysis": 1 +"Secondary Education 210: Enhancing Critical Thinking and Literacy Skills through Graphic Novels and Storytelling Techniques": 1 +"Graphic Design: Mastering 3D Modelling with Blender: An Introduction to Animation and Visual Effects": 1 +"Business Strategy: The Economic Influence of the Fashion Industry: An In-depth Analysis using SPSS": 1 +"Psychology 220: Understanding Emotion through Art Therapy: A Multidisciplinary Approach to Expressive Arts Therapy": 1 +"Primary Education 410: Advanced Strategies in Collaborative Learning - Utilizing Kahoot! for Interactive Quizzes in Virtual Classrooms": 1 +"English Literature: Analysing Shakespearian Tragedies Through Digital Humanities Tools": 1 +"Chemistry: Exploring Organic Compounds with Computational Chemistry Using Spartan Software": 1 +"Linguistics: Investigating Phonetics and Phonology using Praat Speech Analysis Software": 1 +"Advanced Visual Arts: The Influence of Augmented Reality on Modern Sculpture": 1 +"Astrophysics: The Mystery of Dark Matter - An In-depth Study of Cosmological Models": 1 +"Advanced Course in Digital Marketing: Optimising SEO and SEM with Google Analytics, WordPress, and Python": 1 +"Mastering Logic Pro X: Harnessing Audio Plugins for Progressive Sound Design ": 1 +"Cognitive Psychology 101: Enhancing Problem Solving Skills through Cognitive Training Apps": 1 +"Data Science: Developing Predictive Models for Financial Markets using Machine Learning in R": 1 +"Environmental Science: Creating Sustainable Urban Planning Models using GIS and Remote Sensing Technologies": 1 +"Philosophy: Deconstructing Utopias - A Postmodern Analysis of Ideal Societies in Literature": 1 +"Biology: Pollinators and Plants - The Vital Role of Bees in Ecosystems": 1 +"Political Science: The Power of Satirical Cartoons in Shaping Public Opinion during the Cold War": 1 +"Chemistry in Space: Understanding Astrochemistry and the Formation of Cosmic Molecules": 1 +"Art History: Decoding Symbolism in Renaissance Still Life Paintings": 1 +"Music: The Evolution of Synthesizers in Electronic Dance Music": 1 +"Physics: The Mystery of Dark Matter - Peering into the Abyss of the Universe": 1 +"Environmental Studies: Assessing Water Quality through Macroinvertebrate Analysis: An Examination of 10 Rivers": 1 +"Cinema Studies: The Role of Sound Design in Creating Emotional Impact in Film Noir": 1 +"World History: The Printing Press and the Internet: Comparative Study on the Revolution in Information Dissemination": 1 +"Physics in Action: Advancing Solar Energy Efficiency through Quantum Dot Solar Cells": 1 +"Math Magic for Children: Discovering Patterns with Origami and Fibonacci Sequences": 1 +"Environmental Science Essentials: Exploring Climate Change through Ice Core Sample Analysis": 1 +"Digital Literacy: Harnessing the Power of Microsoft Teams for Remote Education": 1 +"Ethics 101: Navigating Moral Dilemmas using Kant's Categorical Imperative and Utilitarianism": 1 +"Film and Cinematography: Crafting Visual Storytelling through Color Grading Techniques": 1 +"Basics of Programming: Building Smart Homes with Raspberry Pi, Python, and Internet of Things (IoT)": 1 +"Psychology Explained: Understanding Human Behavior through Eye Tracking Studies and Facial Recognition Technology": 1 +"Advanced Algorithms in Computer Engineering: Deploying Neural Networks in Java": 1 +"Decoding Music Theory: Exploring Harmonics through Tuning Forks and Frequency Analysis.": 1 +"Advanced Botany: Examining Plant Physiology and Photosynthesis with Spectrophotometry": 1 +"Digital Media Design: UX/UI Design Principles with Adobe XD and Project Cooperation in Trello": 1 +"Linguistics: Enhancing Multilingual Proficiency through Rosetta Stone in the Global Era": 1 +"Clinical Pharmacology: The Evolution and Practical Application of Chromatography in Drug Discovery": 1 +"Data Science 204: Machine Learning and Data Analysis with R": 1 +"Ethics: The Moral Philosophy of Utilitarianism- An Intensive Study on Consequentialism": 1 +"Intro to Trigonometry: Navigating Triangles with Scientific Calculators": 1 +"Meteorology: Understanding Atmospheric Dynamics through Weather Map Interpretation": 1 +"Visual Arts: Abstract Landscape Painting in Watercolor and Mixed Techniques: Developing Canvas Skills and the Use of Glazing Method through Spray Techniques": 1 +"Nuclear Physics: Deciphering Atomic Structure through the Prism of Nuclear Reactor Technology": 1 +"Astrophysics: The Role of Dark Matter in the Formation and Evolution of Galaxies": 1 +"Geography: The Influence of Plate Tectonics on Earth's Biodiversity": 1 +"Advanced Spanish: The Use of Magical Realism in Latin American Literature": 1 +"Oceanography: Unraveling the Mysteries of Deep Sea Ecosystems Using Remotely Operated Vehicles": 1 +"Psychology: An In-depth Analysis of Cognitive Behavior Therapy in Treating Depression": 1 +"Unveiling Nanotechnology: The Application of Carbon Nanotubes in Energy Storage": 1 +"Music History: The Transition from Baroque to Classical: A Study of Musical Styles and Compositions": 1 +"Exploring the World of Animation: The Impact of 3D Modeling in Digital Media and Entertainment": 1 +"Biology in Cooking: An Investigation into Fermentation and its Influence on Food Flavor": 1 +"Proficient in Python: Enhancing Data Analysis with Machine Learning and Predictive Algorithms": 1 +"Advanced Engineering: Utilizing 3D Printing in Modern Construction and Infrastructure Development": 1 +"Linguistic Evolution: From Cuneiform to Emojis - The Impact on Communication Dynamics": 1 +"Mastering the Art of Virtual Reality: In-depth Analysis of VR in Video Game Development": 1 +"Biology: Delving into Cellular Respiration - A Thorough Investigation into Energy Conversion": 1 +"The Mandelbrot Set: Embodying Beauty and Complexity in Fractal Mathematics Using Python": 1 +"Fitness Technology: Examining the Impact of Smart Watches on Personal Training and Wellness ": 1 +"Cultural Studies: Comprehensive Exploration of Flamenco Dance through Augmented Reality": 1 +"Stellar Astrophysics: Investigating Deep Space Phenomena with the James Webb Space Telescope": 1 +"Cinematic Psychology: Decoding Human Behavior through the Lens of Film Noir": 1 +"Applied Physics: An Intensive Study of Harmonic Oscillation in Spring-Mass Systems": 1 +"Advanced Machine Learning: Deep Neural Networks and Convolutional Neural Networks Using TensorFlow": 1 +"Art History: The Impact of Renaissance Painting Techniques on Contemporary Visual Art": 1 +"Advanced Algebra: Exploring Quadratic and Polynomial Equations through Graph Theory ": 1 +"Environmental Science: Decoding Climate Change - Understanding Atmospheric Science with Climate Modelling Tools": 1 +"Molecular Biology: In-depth Analysis of DNA Replication and Transcription Using Gel Electrophoresis": 1 +"Physical Chemistry: Quantum Mechanical Model and Spectroscopy Techniques for Understanding Chemical Bonding": 1 +"Organic Chemistry: The Role of Stereochemistry in Drug Design and Discovery": 1 +"Advanced Programming: Developing Mobile Apps with Java, Android Studio and Firebase Integration": 1 +"Cognitive Psychology: Examining Cognitive Processes and Mental Disorders Through fMRI and EEG Studies": 1 +"Astronomy 101: Gravitational Waves and Black Holes - Unraveling the Mysteries of the Universe": 1 +"Advanced Course on Financial Forecasting: Utilizing R, Power BI, Time-Series Analysis, and Predictive Modeling": 1 +"The Impact of the Printing Press on French Diplomatic Language During the Renaissance: The Role of the Compass": 1 +"Decoding Ocean Currents' Role in Climate Fluctuation with Satellite Altimetry and Oceanic Heat Flow Sensors": 1 +"Literature: The Evolution of Character Development in Postmodern Fiction": 1 +"Business Management 220: The Influence of E-commerce on Supply Chain Management in the Electronics Industry": 1 +"Computer Science: Mastering Ruby Programming for Cybersecurity": 1 +"Advanced Geology: Studying Tectonic Movements and Earthquake Occurrences with Seismic Analysis Tools": 1 +"Computer Science: An Introduction to Game Development using C# and Unity Engine": 1 +"Health Education: Understanding Mental Health through Psychology and Neuroimaging": 1 +"Mastering JavaScript: From Basics to Web Development using AngularJS and Node.js": 1 +"Chemistry 101: Unfolding the Contribution of Distillation Techniques to the Scottish Whiskey Industry": 1 +"Mathematics: A Dive into Calculus and Fractal Geometry in the Beauty of Nature": 1 +"Art Education: Elevating Visual Perception and Creative Expression through Augmented Reality": 1 +"The Influence of Music Theory on Jazz Improvisation using the Circle of Fifths and Audio Software: A Review of Syncopation and Polyrhythms": 1 +"Understanding Space-Time Continuum through the Framework of Minkowski Space": 1 +"Botany: Revealing the Secrets of Plant Growth and Photosynthesis through Macro Photography": 1 +"World History: The Gutenberg Press and the Evolution of Literature during the Renaissance": 1 +"Computer Science: Discovering the Mathematics Behind Cryptography and Secure Communication": 1 +"Outdoor Education: Navigation Techniques for Wilderness Exploration and Environmental Stewardship": 1 +"Cosmology: Interpreting Cosmic Riddles - The Role of Neutrinos in Star Formation": 1 +"Digital Marketing: Deconstructing Consumer Behavior through Social Media Analytics": 1 +"Audio Engineering: Crafting Acoustic Landscapes with Pro Tools": 1 +"Child Psychology: Understanding Emotional Development through Fairy Tales ": 1 +"The Universe Explored: A Course on Astrophysics and Spectral Analysis": 1 +"Data Science: Python Programming and Machine Learning with Deep Neural Networks": 1 +"Ethics: The Moral Dilemmas of Artificial Intelligence - A Discussion on Machine Consciousness and Rights": 1 +"Chemistry: Molecular Dynamics - Probing Reactions through Nuclear Magnetic Resonance Spectroscopy": 1 +"Geology: Plate Tectonics and its Role in Earthquakes: A Seismic Data Interpretation": 1 +"Advanced World History: The Civilizations of the Iron Age and the Use of Astrolabes": 1 +"The Effects of Carbohydrates on Human Energy Levels: An Investigation using Gas Chromatography and Infrared Spectroscopy": 1 +"Spanish: The Evolution of Flamenco - A Cultural Study through Linguistics and Dance ": 1 +"Politics: Evaluating the Effects of Social Media on the Brexit Referendum using Data Analysis": 1 +"Cultural Studies: The Impact of Anime on Post-War Japanese Society": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Theoretical Particle Physics": 1 +"Global Literature: The Enlightenment Era, Gutenberg's Press, Haiku Poetry, and the Birth of the Modern Novel": 1 +"Financial Literacy: A Beginner's Guide to Stock Market Investing for Teens": 1 +"Artificial Intelligence's Role in Climate Change Mitigation: Ethical Considerations and 10 Sustainable Strategies": 1 +"Java Programming: An Applied Approach to Genetic Algorithms with Apache Commons Math Library": 1 +"Agriculture: The Plow's Influence and the Rise of Aeroponics in the Advancement of Crop Production": 1 +"Psychology and Technology: Augmented Reality as a Treatment for Social Anxiety - A Holistic Method": 1 +"Physics of Sound: A Deep Dive into Acoustics and Sound Wave Manipulation": 1 +"Microeconomics: Examining Consumer Behavior Through Supply and Demand Equilibrium": 1 +"Biology: Investigating Sustainable Agriculture - The Science of Vertical Farming and Aquaponics": 1 +"Harmonic Analysis in Art: A Study on Color Theory and Visual Perception through Computational Algorithms.": 1 +"French: Sentiment Analysis in French Literature using Machine Learning: Comprehension and Thematic Dissection": 1 +"Astronomy for Adolescents: A Fascinating Voyage through the Universe": 1 +"Advanced Photoshop Techniques: Visual Storytelling in Football Sports": 1 +"Introduction to Mobile App Development: Implementing Swift in the Realm of Augmented Reality and Virtual Reality": 1 +"Deep Learning and Predictive Modelling: An Extensive Analysis using Python.": 1 +"Philosophy: Grasping the Role of Quantum Physics in Deterministic vs Indeterministic Views: A Comparative Analysis": 1 +"Chemistry of Emotion: Understanding Neurochemical Responses in Love and Fear with PET scans": 1 +"Algebra: Utilizing Wolfram Alpha in Solving Quadratic Equations with Graph Theory": 1 +"Astrophysics of Black Holes: Understanding the Role of Hawking Radiation in Space-Time Continuum": 1 +"Ethical Challenges in Artificial Intelligence: A Deep Dive into Machine Learning Bias and Ten Innovative Mitigations": 1 +"Data Science: TensorFlow in Practice with Python: Creating Predictive Models for Stock Market Analysis": 1 +"Decoding the Influence of Windmills on Dutch Landscape Art and Cultural Expression": 1 +"Cultural Studies: The Role of Streaming Platforms in Shaping Global Entertainment Trends": 1 +"Literature: Enhancing Literary Analysis and Interpretation Skills Through Podcasting in the Modern Era": 1 +"Neuroscience Fundamentals: Deciphering Human Decision-Making through Neural Network Models": 1 +"Engineering: Investigating Interference Patterns while Understanding Waves and Vibrations using Piezoelectric Materials": 1 +"Physics: Unveiling Quantum Mechanics through the Lens of Schrödinger’s Cat Paradox": 1 +"Design: The Impact of Augmented Reality on Modern Architectural Visualization": 1 +"Advanced Chemistry: Exploring Materials Science with Scanning Tunneling Microscopy and Crystallography": 1 +"Culinary Art: The Science of Flavours - A Study in Food Pairing and Sensory Analysis": 1 +"Music Theory: The Influence of Digital Synthesis on Modern Composition Techniques": 1 +"Astronomy: Dark Matter and the Fundamental Principles of the Universe": 1 +"Molecular Biology: Application of CRISPR-Cas9 Technology in Genetic Engineering and Disease Treatment": 1 +"Computer Science: Advanced Algorithms for Real-Time Ray Tracing in 3D Graphics": 1 +"Environmental Science: Unearthing Climate Change - A Comprehensive Study on Glacial Melting": 1 +"Psychology: Exploring the Human Mind through Functional Magnetic Resonance Imaging (fMRI) Techniques.": 1 +"Physics: Probing the Mysteries of Black Holes through the Lens of General Relativity ": 1 +"Biology: Demystifying Genetic Coding through CRISPR-Cas9 and DNA Sequencing": 1 +"Psychology: Exploring Human Behavior Patterns Using Big Data and Machine Learning": 1 +"Art History: Decoding the Symbolism and Aesthetics in Renaissance Era Paintings ": 1 +"Political Science: Evaluating Democracy through Comparative Governments and International Relations": 1 +"Computer Science: Navigating Cybersecurity Threats using Machine Learning and Cryptography": 1 +"Linguistics: Tracing Language Evolution with Phylogenetic Trees and Computational Models": 1 +"Astronomy: Investigating the Life Cycle of Stars using Spectroscopy and Stellar Models": 1 +"Environmental Science: Assessing Climate Change Impact through GIS and Remote Sensing ": 1 +"Economics: Dissecting Monetary Policies and Inflation Dynamics Using Game Theory and Econometrics": 1 +"Chemistry 102: Tracing Atomic Structures through Rutherford's Atomic Model": 1 +"Applying Python for Neural Networks: A Course on Artificial Intelligence": 1 +"Art of Storytelling: Mastering Plot Developments with Symbolism, Irony, and Foreshadowing Techniques": 1 +"Architectural Landscaping: The Role of Biophilic Design in Urban Spaces": 1 +"Exploring Respiratory Systems: A Detailed Study with Spirometry and Plethysmography": 1 +"Cultural Studies: The Impact of Instagram's Shop Feature on Consumer Buying Habits": 1 +"Algebra: The Role of Graph Theory in Advanced Network Security ": 1 +"Principles of Software Development: Programming with Ruby and Python": 1 +"Advanced Earth Science: Interpreting Tectonic Movements with Seismographs, Laser Ranging and GPS Data": 1 +"Understanding Psychiatry: A Comprehensive Study of Human Behavior Using fMRI and DTI Technology.": 1 +"Exploring Symbolism in Hip Hop Lyrics: The Impact of Alliteration in Youth Literature": 1 +"Social Science Research: Dissecting Consumer Psychology with Multivariate Analysis in R: A Look into Factor Analysis": 1 +"Advanced Audio Production: Echo Manipulation, Compressor Add-on, and Graphic Equalizer in Ableton Live Demystified": 1 +"Classic Literature: Decoding Allegory and Puns in 18th Century Plays - An In-depth Study using Semantic Analysis": 1 +"Bernoulli's Principle in Aerodynamics: The Intricacies of Lift Generation": 1 +"Augmented Reality: Transforming Healthcare through Interactive Patient Education": 1 +"Fundamentals of Magnetism: Grasping Electromagnetic Fields through Hands-on Experiments": 1 +"Health and Wellness: The Impact of Oculus Rift on the Dynamics of Virtual Fitness": 1 +"Young Explorers: Physics Magic with Balloons and Everyday Objects": 1 +"Comprehensive Manual to Data Science: Building AI Systems with Python, TensorFlow, 3D Modeling, and Raspberry Pi": 1 +"Physics 300: Quantum Mechanics and String Theory: Detailed Exploration using Feynman Diagrams": 1 +"Chemistry: Organic Compounds and Enzyme Catalysis: Insights through Computational Chemistry": 1 +"World History: Hieroglyphics and the Ancient Egyptian Civilization: A Deep Dive into Decipherment Techniques": 1 +"Neuroscience: Brain-Computer Interfaces - A Comprehensive Study in Neurological Disorders Using Electroencephalography": 1 +"Physical Education: Exploring Biomechanics in Swimming for Optimized Performance": 1 +"Advanced Geophysics: Seismic Data Interpretation using Machine Learning and Python on Google Cloud": 1 +"Linguistics: The Art of Sign Language - Decoding Meaning Through Gesture Recognition Technology": 1 +"Astrophysics: Stellar Spectroscopy, Cosmic Microwave Background and the Big Bang Theory: A Thorough Investigation with Radio Telescopes": 1 +"Computer Science: Designing Virtual Reality Environments using Unity's Procedural Generation Techniques": 1 +"Cultural Anthropology: Understanding Global Food Cultures Through Gastronomic Ethnography": 1 +"Practical Quantum Computing: Exploring the Fundamentals of Qubits with IBM's Quantum Experience": 1 +"The Art of Calligraphy: Understanding Letterforms and Ink Flow Techniques in the Context of Asian Scripts": 1 +"Conservation Biology: Evaluating the Impact of Climate Change on Endangered Species through Satellite Imagery and Data Analytics": 1 +"Advanced Pedagogy 401: Enhancing Student Engagement with Augmented Reality and Gamified Learning Platforms": 1 +"The Role of Immunology in Allergies: Decoding the Complex Interactions of the Immune System": 1 +"Music Production: Mastering Electronic Music Synthesis with Ableton Live": 1 +"Astronomy 101: Utilizing Telescopes, CCD Cameras, and Spectroscopy in Stellar Classification": 1 +"Creative Writing Workshop: Using Crossword Puzzles for Vocabulary Enrichment and Creative Expression": 1 +"Cultural Anthropology: The Role of Traditional Garments in Indigenous Festivities": 1 +"Political Science: The Impact of Platonic Philosophy on Contemporary Political Thought": 1 +"Chemistry in the Kitchen: Molecular Gastronomy and the Science of Cooking": 1 +"Neuroscience: The Use of Functional MRI in the Study of Autism: Theory, Techniques and Applications": 1 +"Environmental Design: The Role of Green Architecture in Sustainable Urban Planning": 1 +"Mathematics in the Arts: Exploring Fractals and the Beauty of Infinity": 1 +"Digital Media: Motion Graphics and 3D Animation with Blender and After Effects": 1 +"Advanced Data Visualization: Interactive Dashboards with Tableau and Power BI ": 1 +"Biology: Understanding Genetic Algorithms through the Lens of Evolutionary Science": 1 +"Artificial Intelligence: Deep Learning Techniques using TensorFlow and Convolutional Neural Networks": 1 +"Astronomy: The Role of Nebular Hypothesis in the Formation of Solar Systems": 1 +"Sociology: The Impact of Social Media on Modern Politics: A Study of Twitter's Influence in Election Campaigns": 1 +"Advanced Geometry 210: The Role of Torque in the Physics of Figure Skating": 1 +"Harnessing the Power of Virtual Reality in Modern Theatre Production and Performance": 1 +"Creative Writing 202: World Building for Young Authors - Crafting Unique Settings": 1 +"Music Theory: Tracing the Impact of Migration on Jazz - A Study through Acoustic Pianos": 1 +"Mastering Statistics: Leveraging Python's SciPy Library for Hypothesis Testing and Data Interpretation": 1 +"Quantum Mechanics: Unveiling Quantum Entanglement and Superposition through Virtual Experiments": 1 +"The Integration of Artificial Intelligence in Environmental Science: A Deep Dive into Climate Prediction Models": 1 +"Physical Education: Soccer Basics: Enhancing Skills in Defense and Goalkeeping with Adidas Telstar 18": 1 +"Philosophy: Applying Augmented Reality in the Evolution of Ethical Education": 1 +"Biology: Decoding DNA Replication and Protein Synthesis in Molecular Gastronomy through PCR Techniques": 1 +"Chemistry: Exploring Climate Change through Ice Core Sampling Techniques": 1 +"Physics: Quantum Computing and Cryptography: An Introduction to Post-Quantum Cryptography": 1 +"Advanced Game Development: Creating Virtual Reality Games with Unity, C#, and Oculus Rift": 1 +"Music Technology: Exploring the Science of Sound Synthesis with Max/MSP and Arduino": 1 +"Artificial Intelligence in Finance: Using Deep Learning for Risk Management and Investment Strategies": 1 +"Biology: Unraveling the Mysteries of Photosynthesis with Fluorescence Spectroscopy": 1 +"Digital Audio Workstations and Multimedia Art: A Comprehensive Study of Sound Design in Film": 1 +"Cosmology: Exploring the Mystery of Dark Matter: A Computational Astrophysics Perspective": 1 +"Psychology: Understanding Human Behavior through Virtual Reality Simulations - Insights into Cognitive Psychology": 1 +"Economic History: The Impact of the Industrial Revolution on Global Trade and the Formation of Modern Economities": 1 +"Art: Exploring Animation Techniques with Adobe After Effects: A Focus on Surrealist Art": 1 +"Sports and Technology: The Impact of Augmented Reality on Basketball Training": 1 +"Science: Decoding the Secrets of the Ocean using Isotope Analysis": 1 +"Understanding the Human Mind: An In-Depth Analysis using MRI, Functional Connectivity, and the Theory of Cognitive Architecture": 1 +"The Future of Athletics: A Study on AI Algorithms and Virtual Reality in Running Simulations": 1 +"Python and Random Forest Algorithms: A Comprehensive Data Science Course with Seaborn Data Visualization": 1 +"Utilizing Drone Technology for Urban Planning: A Geomatics Perspective": 1 +"Imagination Unleashed: Science Fiction Writing for Teens with Emphasis on Character Building": 1 +"Advanced Meteorology: Understanding Weather Patterns through Doppler Radar": 1 +"Neurology 220: The Crossroads of Brain and Language: Speech Recognition and fMRI Interpretation": 1 +"Physics of Astronomy: Utilizing Infrared Spectroscopy in the Study of Stellar Mass and Composition": 1 +"The Evolution of Algorithms: Deep Learning Applications in Predictive Policing ": 1 +"Organic Farming: Analyzing the Effects of Biofertilizer on Crop Health and Soil Fertility": 1 +"The Renaissance Era: Exploring Leonardo da Vinci's Sfumato Technique in Modern Digital Art": 1 +"Environmental Science: The Impact of Climate Change on Coastal Ecosystems and Biodiversity": 1 +"Sociolinguistics: Examining the Influence of Social Media on Language Evolution and Cultural Communication": 1 +"Biomedical Engineering: The Role of Nanotechnology in Drug Delivery and Tissue Engineering": 1 +"The Digital Revolution: The Use of Augmented Reality in Enhancing Learning Experience": 1 +"World Cuisine and Geography: An Aerial Assessment of Traditional Agricultural Practices": 1 +"The Aesthetics of Motion: Interpreting Dance Movements through the Frame of High-Speed Cameras": 1 +"Psychology: The Influence of Color on Human Emotion and Perception": 1 +"Biology: Genetic Engineering and CRISPR - An Exploration of Gene Editing Techniques": 1 +"Financial Forecasting: Using Machine Learning Algorithms to Predict Stock Market Trends": 1 +"Advanced Programming: Exploring AI and Machine Learning with JavaScript and TensorFlow": 1 +"Environmental Economics: Evaluating the Impact of Carbon Pricing on Global Warming": 1 +"Astrophysics: Black Holes, Wormholes and Time Travel - A Journey through Space-Time using VR Technology": 1 +"Music Theory: The Mathematics of Rhythm and Melody in Classical and Jazz Genres": 1 +"Archaeology: Ancient Tools and Pottery - Revealing Human History through Material Culture Analysis": 1 +"Neuroscience: Mapping the Human Brain - A Comprehensive Study using MRI and DTI Techniques": 1 +"Geography: An Exploration of Urban Planning and Sustainable Development through GIS and Remote Sensing Technology": 1 +"Stellar Spectra: Unraveling the Cosmic Mystery with Hubble Space Telescope and Spectroscopy": 1 +"Global Civilization: The Age of Enlightenment, Steam Power, the Telescope, and the Invention of the Printing Press": 1 +"Wellbeing and Exercise: The Role of Apple Watch and VR in Modern Physical Education": 1 +"Philosophy for Novices: Examining the Impact of Descartes' Dualism on Rationalist Thought": 1 +"Marvelous Mammals: A Zoological Study of Bats and Dolphins": 1 +"Literature Studies: The Progress of Writing - The Gutenberg Press, its Fusion with Typography, and the Influence of E-books": 1 +"Artistic Expression: Dry Brush Techniques in Abstract Art": 1 +"Primary Level: Understanding Weather Patterns and Basic Meteorology using Google Earth Education ": 1 +"Literature Studies: The Progress of Writing - The Historical Significance of the Quill Pen": 1 +"Chemistry: The Magic of Chromatography, Molecular Analysis, and Nuclear Magnetic Resonance": 1 +"Physics: Applying Quantum Mechanics to Astrophysics: Exploring Stellar Evolution with Spectroscopy": 1 +"Advanced Sociology: Deciphering Social Networks: Using Computational Social Science for Community Analysis": 1 +"Human Anatomy: Exploring Cardiac Physiology with Echocardiography and Stress Testing": 1 +"Artificial Intelligence: Deep Learning and Its Applications in Autonomous Driving": 1 +"Advanced Botany: Unraveling Plant Genetics: A Comprehensive Study through Comparative Genomics": 1 +"Psychology: Understanding Cognitive Development in Children: Insights from Functional Magnetic Resonance Imaging": 1 +"Environmental Engineering: Renewable Energy Systems: Evaluating Wind Turbine Technology for Sustainable Power Generation": 1 +"Biomedical Engineering: Innovations in Nanotechnology: A Study on Drug Delivery Systems": 1 +"Molecular Biology: Decoding the Human Genome: A Study Using Next-Generation Sequencing": 1 +"Applied Mathematics: Mathematical Modelling in Epidemiology: Understanding Disease Spread using Probability Theory and Statistics": 1 +"Physical Education: The Impact of High-Intensity Interval Training on Cardiovascular Health": 1 +"Advanced Data Analysis: Machine Learning Algorithms and Predictive Modelling using R": 1 +"Chemistry: Organic Synthesis - Exploring the Mechanism of the Diels-Alder Reaction": 1 +"Adventure Education: Survival Techniques - Fire Building and Shelter Construction for Outdoor Enthusiasts": 1 +"Psychology: Understanding the Impact of Visual Arts Therapy in Treating Anxiety Disorders": 1 +"Computational Science: Application of Java in Simulating Natural Phenomena: Fluid Dynamics": 1 +"Introduction to Programming 101: Learning the Basics of C++ ": 1 +"Ecological Genetics: Investigating the Role of Natural Selection in Species Diversity": 1 +"Cosmology: Inflationary Universe and Cosmic Microwave Background - An Interpretation of the Big Bang Theory": 1 +"Critical Thinking: Unraveling Logical Paradoxes and Argument Structure through Truth Tables and Predicate Logic": 1 +"Quantum Mechanics: The Influence of Quantum Entanglement on Modern Communication Systems": 1 +"Ethnobotany: The Role of Traditional Herbal Medicine in Global Health Care": 1 +"Chemistry: Unveiling the Mysteries of Organic Polymers in Plastic Manufacturing": 1 +"Secondary: Understanding the Human Brain through Advanced Neuroimaging and Virtual Reality": 1 +"Renewable Resources: Exploring the Efficiency of Wind Turbines in Power Generation": 1 +"Sociology of Film: The Impact of Bollywood on Global Cinema and Social Change": 1 +"Health and Wellness: The Role of Biomechanics in Aging and Physical Therapy": 1 +"Advanced World History: The Effects of the Silk Road on Eastern and Western Civilizations": 1 +"Cybersecurity: AI and Machine Learning in the Prevention and Detection of Cyber Threats": 1 +"Marine Biology: The Role of Coral Reefs in Climate Change Mitigation using Bioengineering Techniques": 1 +"Exploring Cultures: Understanding Symbolism in Indigenous Art Forms Using Digital Tools": 1 +"Critical Thinking: Applying Set Theory in Evaluating Cognitive Biases with Truth Tables and Deductive Reasoning": 1 +"Health Sciences: Understanding Human Physiology - A Focus on Neurobiology": 1 +"Business Management: Strategic Decision Making and the Role of Big Data Analytics": 1 +"The Use of Complex Numbers in Quantum Physics and Computational Algorithms": 1 +"Social Studies: The Dynamics of Political Discourse: Political Science and the Influence of Data Visualization Using R": 1 +"Designing Sustainable Landscapes: Advanced Permaculture Strategies with Remote Sensing and ArcGIS": 1 +"Digital Arts and Culture: Crafting Immersive Storytelling with Maya and Blender": 1 +"Psychology: Delving into Human Behavior Through Gestalt Theory and Qualitative Research Methods": 1 +"An In-depth Study of Texture in Digital Painting Techniques Using Illustrator: A Series of 12 Hands-on Projects": 1 +"Philosophy: The Role of Dialectics in Understanding Hegelian Metaphysics": 1 +"Chemistry 102: The Influence of Organic Reactions in Pharmaceutical Development using AI Models": 1 +"Astrophysics: Analysing Dark Matter and Energy through Cosmic Microwave Background": 1 +"Neurobiology: Unraveling Brain Function through Advanced Neuroimaging Techniques": 1 +"The Renaissance and the Influence of Gutenberg's Printing Press on Knowledge Dissemination": 1 +"Thermodynamics 201: Entropy, Second Law, and the Arrow of Time": 1 +"Ethics 102: Deconstructing Kantian Morality, Categorical Imperative, and Moral Absolutism": 1 +"Fine Arts: The Impact of Impressionism on the Depiction of Light and Color in Modern Painting": 1 +"Advanced Statistical Modeling: Predictive Analytics using Python and R": 1 +"Harmonics: Tracing the Progression of Harmonic Structures in Jazz Improvisation.": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Superconductivity": 1 +"Art History: The Impact of Byzantine Mosaics on Contemporary Mural Techniques": 1 +"Anthropology: Cultural Shifts and Social Impact of Food Consumption Patterns - A Case Study on the Mediterranean Diet": 1 +"Computer Science: Cybersecurity and Cryptography - Protecting Information in the Digital Age using RSA and AES": 1 +"Mathematics: Solving Real-World Problems with Combinatorial Optimization and Greedy Algorithms": 1 +"Data Science: Unraveling Complex Patterns using Big Data Analytics and Hadoop Ecosystem": 1 +"Astronomy: Understanding the Evolution of Galaxies through Spectroscopy and Infrared Imaging": 1 +"Sociology: The Role of Social Media in Shaping Public Opinion: A Quantitative Analysis using Sentiment Analysis Tools": 1 +"English Literature: Tracing the Evolution of the Hero's Journey in Epic Poetry from Beowulf to The Odyssey": 1 +"Biochemistry 205: Investigating Cellular Respiration and Metabolic Pathways in Endurance Athletes": 1 +"Advanced Mathematics: Exploring the Intersection of Quantum Mechanics and Number Theory": 1 +"Culinary Science: A Comprehensive Study on Molecular Gastronomy and the Art of Plating": 1 +"Environmental Psychology: Examining the Effects of Urbanization on Human Behaviors and Mental Health": 1 +"Astrophysics 101: Unraveling the Mysteries of Black Holes through the Lens of Quantum Gravity": 1 +"Digital Media: The Impact of Social Networking Platforms on Modern Political Discourse": 1 +"Physical Education: Yoga for Beginners - An Exploration of Asanas and their Mental Health Benefits": 1 +"Comparative Literature: Deconstructing Post-colonial Narratives in African Diaspora Literature": 1 +"Economic History: Tracing the Development of Global Trade from Silk Road to E-commerce": 1 +"Neuroscience for Everyone: Understanding the Role of Neuroplasticity in Cognitive Rehabilitation": 1 +"The World of Botany: Investigating Plant Adaptation Strategies in Extreme Environments using Genomic Sequencing.": 1 +"Aristotelian Logic in Modern Legal Practices: The Impact of Syllogism on Judicial Reasoning": 1 +"Medical Microbiology 401: The Role of Virtual Reality in Understanding Pathogen Behavior for Epidemic Prevention": 1 +"Quantum Cryptography: The Security Applications of Bell's Theorem in Modern Communication Networks": 1 +"Geography: The Impact of the Silk Road on the Diffusion of Buddhism in Chinese Societies": 1 +"Foreign Languages: The Science of Linguistic Analysis: Deciphering Ancient Scripts with Python and NLP Techniques": 1 +"Robotic Engineering and AI: Optimizing Industrial Efficiency through Machine Learning and MATLAB Programming": 1 +"Chemistry: Unveiling the Microcosmos with Scanning Tunneling Microscopy": 1 +"Astronomy 102: Fundamentals of Astrophysics: A Primary Exploration of Neutron Stars": 1 +"Holistic Medicine: Probing Mental Health through the Analysis of Gut Microbiota using Metagenomic Sequencing": 1 +"Archaeological Innovation: The Role of Ground Penetrating Radar in Unearthing Prehistoric Settlements": 1 +"Computer Science 101: Integrating Slack and Trello for Agile Software Development": 1 +"Health and Fitness: Maximizing Performance through Wearable Technology and Data Analysis": 1 +"Astrophysics: An Examination of Dark Matter and Energy - A Journey Through the Expanding Universe": 1 +"Music Theory: Deciphering Baroque Masterpieces through the Lens of Harpsichord Improvisation": 1 +"Fine Arts: Unveiling the Mysteries of Cubism through Acrylic Painting and Palette Knife Techniques": 1 +"Biochemistry: Exploring Cellular Processes through Nuclear Magnetic Resonance and Thermodynamics": 1 +"Historical Linguistics: The Transformation of Communication through Hieroglyphics and the Dead Sea Scrolls": 1 +"Biology 101: Understanding Metabolic Pathways through the Study of Endocrinology and Proteomics": 1 +"Media Studies: The Impact of Instagram's Stories Feature on Digital Marketing Strategies": 1 +"Earth Science: The Role of Plate Tectonics in Shaping Civilizations: An Investigation using Seismic Wave Data": 1 +"Applied Chemistry: Understanding Organic Compounds using Molecular Modeling Software": 1 +"Architectural Design: Exploring Urban Landscapes with CAD and 3D Printing": 1 +"Music Theory: Harmonic Analysis in Contemporary Pop using MIDI Sequencing": 1 +"Environmental Science: Evaluating Climate Change through Geographic Information Systems and Python": 1 +"Health and Fitness: Insights into the Impact of Veganism on Athletic Performance": 1 +"Algebra Revealed: Navigating the Intricacies of Quadratic Equations and Polynomial Functions": 1 +"Sociology 210: The Influence of Media Consumption on Social Behavior Across Cultures": 1 +"World History 102: The Gutenberg Press and the Rise of Literacy during the Renaissance": 1 +"Perspectives on Political Discourse: Analyzing Public Policy using Qualitative Data Analysis Tools": 1 +"Application of Python in Advanced Calculus: A Mathematical Engineering Perspective": 1 +"Economics: The Impact of Globalization on Local Economies: A Detailed Case Study": 1 +"Music Theory: An In-depth Exploration of Rhythm and Pacing in Baroque Compositions": 1 +"Advanced French Literacy: Enhancing Writing Proficiency with Grammarly and ProWritingAid for Thorough Text Review": 1 +"Astro-Physics: A Fascinating Journey into the Concept of Space-Time and Gravitational Waves": 1 +"Chemistry Fundamentals: Organic Chemistry and the Mechanism of Enzyme Actions": 1 +"History: Decoding the Cultural Evolution and its Impact on Modern Civilizations through Archaeological Artifacts": 1 +"Fine Arts: Exploring Watercolor Techniques in Portraying the Great Depression Era": 1 +"Literature: The Power of Satire in Contemporary Short Stories": 1 +"The Rhythm of Drums: Detailed Analysis of Percussion Timbre through Dynamic Microphone Positioning Using Fourier Transform": 1 +"Mathematics: Understanding Combinatorial Theory through Puzzles and Game Theory Simulations": 1 +"Chemistry: Exploring Chemical Reactions through Spectrophotometric Analysis and Stoichiometry": 1 +"Biology: Deciphering Cell Division Through the Study of Mitosis and Meiosis": 1 +"Physics: Understanding Electromagnetic Waves through the Lens of Quantum Mechanics using Wave-Particle Duality": 1 +"Philosophy: Unraveling Existentialism - A Deep Dive into Sartre's Theory of Freedom": 1 +"Art: Evolution of Typography: Exploring Letterforms through the Ages": 1 +"English: Mastering Grammar and Syntax in Complex Sentence Structures using Interactive Diagrams": 1 +"History: Decoding the Cold War: Analysis of Propaganda and its Influence on Global Politics": 1 +"Music: The Fusion of Classical and Electronic Music in Sound Production": 1 +"Craft: Woodworking Basics: The Skill of Carving and Joining using Chisel and Dovetail Joint Techniques": 1 +"Computer Programming: Understanding Machine Learning Algorithms with Python and Tensorflow.": 1 +"Astrophysics: Gravitational Waves and the Role of Quantum Computing in Unraveling Cosmic Mysteries": 1 +"Exploring the Impact of Quantum Cryptography on Cybersecurity: A Comparative Study between Classical and Quantum Algorithms": 1 +"Microbiology: Unfolding the Secrets of Cellular Respiration through Python and Microscopic Imaging Techniques": 1 +"Implementation of Machine Learning in Autonomous Vehicles: A Comprehensive Study on Traffic Management and Road Safety": 1 +"Music Appreciation: Jazz Improvisation and the Influence of AI in Creating New Harmonic Structures": 1 +"Sociology: Understanding the Impact of Emoji Languages on Digital Communication and Social Interactions": 1 +"World Literature 102: Exploring Epic Poetry through Machine Learning-Enabled Textual Analysis in Homer's Odyssey": 1 +"Physics: The Quantum Entanglement: Einstein's Spooky Action at a Distance and the Application of Quantum Optics": 1 +"Secondary Mathematics: An In-depth Look at Histograms and Probability Distributions": 1 +"The Impact of Cryptocurrencies on International Trade and Economic Structures: A Closer Look at Blockchain Technology": 1 +"Advanced Chemistry: The Intricate World of Organic Compounds and their Role in Pharmaceutical Industry": 1 +"World Literature: The Renaissance Era, the Printing Press, and the Rise of Vernacular Language": 1 +"Computer Science: Artificial Intelligence - Revolutionizing Industries with Neural Networks and Machine Learning": 1 +"Astrophysics: The Universe of Stars: Understanding Stellar Evolution and Supernovae": 1 +"Digital Cinematography: Mastering Visual Storytelling through Adobe Premiere Pro and After Effects": 1 +"Sculpture: Creating Lifelike Forms with Clay and Wood": 1 +"Decoding the Language of Nature: Unraveling Genetics through DNA Sequencing and Bioinformatics": 1 +"Applied Linguistics: Perfecting Multilingual Communication with Rosetta Stone, Duolingo, and Google Translate": 1 +"Unraveling the Mysteries of Human Psyche: Advanced Techniques in Psychoanalysis and Cognitive Behavioral Therapy": 1 +"Exploring the Depths of Cybersecurity: A Comprehensive Study on VPN and Firewall Protection": 1 +"Psychology: Exploring the Intricacies of Human Emotion through Cognitive Behavioral Therapy Techniques": 1 +"Astrophysics: Unveiling Universe Secrets through Spectroscopy and Quantum Mechanics": 1 +"High School Chemistry: Mastering Stoichiometry with Virtual Laboratory Simulations": 1 +"Primary Education: Inculcating Numeracy Skills through Manipulatives and Gamified Learning Modules": 1 +"Mastering Autodesk Maya: A Cinematic Study on Sci-Fi Animation": 1 +"Mitochondrial Dynamics: Comprehensive Evaluation through Fluorescence Resonance Energy Transfer, Cryo-Electron Microscopy, and Liquid Chromatography-Mass Spectrometry": 1 +"The Role of Sustainable Textiles in Reducing Waste in the Fashion Industry: A Cradle-to-Cradle Evaluation": 1 +"Philosophy: Applying Deep Learning Algorithms to Navigate Moral Dilemmas": 1 +"Art: Unraveling Abstract Expressionism: The Influence of Surrealism on Contemporary Painting Techniques & Incorporation of Augmented Reality": 1 +"Unfolding the Unknown: A Comprehensive Study on Clairvoyance and Hypotheses of Precognition": 1 +"Molecular Gastronomy: An In-depth Exploration of Food Science and Modern Cooking Techniques": 1 +"Cybersecurity Mastery: Understanding Threat Intelligence and Intrusion Detection Systems with Wireshark and Metasploit": 1 +"Physics: Quantum Entanglement and its Implications on Telecommunication Technology": 1 +"Astrobiology: Extraterrestrial Life and Its Potential Impact on the Understanding of Evolution": 1 +"Sustainable Architecture: Analyzing the Role of 3D Printing and Biodegradable Materials in Building Design": 1 +"Artificial Intelligence and Neuroscience: An In-depth Study on Emotion Recognition in Humanoid Robots": 1 +"Ethics: Analyzing Moral Dilemmas in Medical Practice through the Lens of Kant's Deontological Ethics": 1 +"Digital Art: Exploring Virtual Reality as a Medium - A Study of Tilt Brush Techniques": 1 +"Biomedical Engineering: A Comprehensive Study of Prosthetics and Biomechanics using CAD and 3D Printing": 1 +"Data Science: Understanding Machine Learning and Predictive Modeling in Business Analytics": 1 +"Advanced Linguistics: Deciphering Hieroglyphics with the Aid of Machine Learning Technology": 1 +"Geometry: Exploring Fractal Geometry in Nature using Advanced Computational Methods": 1 +"Biochemistry: Unraveling Protein Synthesis and Enzyme Kinetics through Computational Modelling": 1 +"Music: Understanding the Influence of Serialism on Modern Orchestration and Composition Techniques": 1 +"Astrophysics: Gravitational Wave Discovery and the Future of Space-Time Analysis": 1 +"Literature: Applying Natural Language Processing in Literary Analysis: A Deep Dive into Semantic Structures": 1 +"Philosophy: Navigating the Labyrinths of Existentialism: A Guide to Interpretive Analysis": 1 +"Cutting-Edge Cardiology: Advanced Imaging and Treatment Strategies for Ischemic Heart Disease": 1 +"Data Science: Advanced Predictive Models: From Neural Networks to Decision Trees": 1 +"Mitochondrial Morphology: A Detailed Investigation using Atomic Force Microscopy and Confocal Microscopy.": 1 +"Modern Art: Acrylic Techniques in Reflecting the Postmodern Period": 1 +"Cryptography: Unraveling the Intricate Webs of SSL and TLS Protocols": 1 +"Sustainable Agriculture: Regenerative Farming Practices in Organic Wine Production: A Soil Health Assessment": 1 +"Geophysics and Outdoor Sports: Understanding Terrain through GIS Mapping": 1 +"Mastering Logic Pro: The Use of AU Plugins in Sound Designing": 1 +"Molecular Biology: Unveiling Disease Mechanisms through Proteomics and Genomic Analysis": 1 +"World History 203: The Spinning Jenny and the Influence of the Steam Engine on Textile Factories during the Industrial Revolution": 1 +"Web Development: Understanding Basics, Web Applications using Python and Django": 1 +"Political Economy: Analyzing the Influence of Decentralized Finance in Modern Economic Policies": 1 +"Digital Music: Discovering MIDI Mapping in Logic Pro for Filter Frequency Adjustments in Synthesizers": 1 +"Deciphering the Human Genome: An In-depth Analysis of Bioinformatics and Genomic Medicine": 1 +"Neo-Expressionism and Beyond: Exploring Acrylic Abstract Art using the Pantone Color Matching System": 1 +"Advanced Astrophysics: Unraveling Galactic Mysteries with Spectroscopy and Radio Astronomy": 1 +"Microbiological Marvels: Examining Bacteriophages with Transmission Electron Microscopy": 1 +"The Impact of the Jacquard Loom in Textile Production: Evolution of French Industrial Language": 1 +"Sports Nutrition: Comparative Analysis of Endurance Training: The Cultural Relevance and Physical Techniques of Triathlon and Marathon Running": 1 +"Advancements in Neurobiology: Exploring Neuroimaging Techniques in MRI, PET Scans, and Transcranial Magnetic Stimulation": 1 +"Fundamentals of Quantum Mechanics: Insight into Quantum Entanglement with a Focus on Quantum Computing": 1 +"Data Structures in Python: An In-depth Study of Social Network Analysis": 1 +"Neural Networks in Artificial Intelligence: Customizing Spotify's Jazz Playlist for Mood Enhancement": 1 +"Mathematics: Advanced Calculus and its Applications in Economics using Maple Software": 1 +"Artificial Intelligence: Understanding Machine Learning through TensorFlow and Python": 1 +"Music Theory: Exploring Harmony and Melody through Logic Pro X and Sibelius": 1 +"Data Visualization: Interactive Charts and Graphs using D3.js, CSS, and HTML5": 1 +"Environmental Studies: Climate Change Impact on Biodiversity - A Focus on GIS and Remote Sensing Technologies": 1 +"Graphic Design: Creating Dynamic Visuals for Social Media using Canva and Photoshop": 1 +"Python Programming: Data Analysis and Visualization with Pandas and Matplotlib": 1 +"World History: The Impact of Gunpowder Inventions on Warfare and Civilization": 1 +"Software Development: Building Secure Banking Apps with Android Studio, Kotlin, and Google Firebase": 1 +"Biology: Unraveling the Mysteries of DNA Replication through Gel Electrophoresis and Microscopy Techniques": 1 +"History for Kids: Discovering Democracy through Ancient Greece's Political System": 1 +"Spanish: Linguistics and Global Warming - Understanding the Challenge through Bilingual Narratives": 1 +"Sociology: The Influence of Durkheim's Theory of Social Solidarity on Modern Society": 1 +"Advanced Filmmaking: Mastering Final Cut and Adobe Premiere for Cinematic Storytelling": 1 +"Exploring Cardiac Health: A Detailed Study through Ultrasound Techniques": 1 +"Art Appreciation: Exploring Van Gogh's Starry Night through Color Theory": 1 +"Middle School Biology: Understanding the Human Body - A Cellular Perspective": 1 +"Mathematics Unveiled: Fractal Geometry and Its Applications in Computer Graphics": 1 +"The Science of Sound: A Comprehensive Study of Music and Acoustics using Sound Spectrum Analysis": 1 +"English 305: Unraveling Irony and Satire in Postmodern Literature and Poetry": 1 +"Unreal Engine and Logic Pro X for Animation: Sound Design with Virtual Instruments and Motion Graphics": 1 +"Intermediate Spanish 203: Character Development in Narrative Poetry": 1 +"Introduction to Aerospace Engineering: Fundamentals of Python Programming and Algorithm Design": 1 +"Microbial Art Preservation: The Role of Biotechnology in Conserving Cultural Heritage": 1 +"Cutting-Edge Bioinformatics: Proteomic Data Interpretation Utilizing Parallel Computing, Python, and Machine Learning with TensorFlow": 1 +"Shopify and Global Commerce: The Importance of E-commerce Platforms in Cross-Cultural Business Communication": 1 +"Contemporary Anthropology: Understanding Cultural Shifts through the Prism of Ethnolinguistics": 1 +"Environmental Science: Assessing Environmental Transformations from Advanced Water Treatment Methods: An Investigation on the Effects of Reverse Osmosis": 1 +"Urban Forestry: Harnessing the Power of Green Walls and Rooftop Gardens for City-based Biodiversity": 1 +"Exploring the Influence of Perspective in Watercolor Artistry through Golden Ratio: A Detailed Scrutiny of Texture and Form": 1 +"Astrophysics: Exploring the Cosmos through Computational Simulations and Stellar Evolution": 1 +"Statistics: Decoding Population Dynamics Using Stochastic Processes and Monte Carlo Simulations": 1 +"Literature: Exploring the Intricacies of Modernist Poetry through T. S. Eliot's Writings": 1 +"Cutting-Edge Robotics: Grasping Humanoid Movement through Motion Capture and Machine Learning": 1 +"Mastering Sound Design: Manipulating Ambient Sounds in Ableton Live Using Akai Professional MPK Mini MKII and Focusrite Scarlett Solo Interface": 1 +"Chemistry: Understanding Quantum Mechanics in Chemical Reactions: A Dive into the World of Molecular Spectroscopy": 1 +"The Influence of the Pianoforte Mechanism on the Evolution of Classical Sonata Form": 1 +"Cognitive Science 210: Deciphering the Mind-Artistry Connection through Neuroaesthetics and the Application of Computational Psychology": 1 +"History 202: The Printing Press and the Renaissance": 1 +"Biology: Investigating Genomic Diversity in the Animal Kingdom through Next-Generation Sequencing: A Closer Look at African Wildlife Genetics": 1 +"Decoding Solar Energy: The Role of Photovoltaic Cells in Addressing Climate Change": 1 +"Data Mining: Implementing Regression Models with R and Tableau for Advanced Data Interpretation": 1 +"The Evolution of Anesthesia Techniques in Cardiovascular Surgeries: A Historical Perspective": 1 +"Immersive Gaming: Enhancing User Experience with Virtual Reality and Augmented Reality": 1 +"Radio Frequency Identification: Integrating with IoT for Streamlined Supply Chain Management": 1 +"Digital Humanism: Crafting a Respectful Online Environment through Positive Internet Behavior": 1 +"Expressive Art Therapy: Harnessing Digital Painting Tools for Therapeutic Creativity": 1 +"Macro Finance: Unraveling the Effects of Blockchain Technology on International Monetary Exchange": 1 +"Protein Synthesis in Cellular Biology: Employing Western Blot and Mass Spectrometry Techniques": 1 +"Pediatric Radiology: Navigating Pediatric Brain Development using Functional Magnetic Resonance Imaging and Positron Emission Tomography.": 1 +"Biology: Unearthing Cellular Structures and Functions through Electron Microscopy": 1 +"Chemistry: Unraveling Atomic Structures and Periodicity using Spectrophotometry": 1 +"Sociology: Investigating Social Structures and Paradigms through Case Study Analysis": 1 +"Cinematic Influence in Contemporary Literature: An Analytical Approach": 1 +"Mastering Melodies and Harmonies in Ableton Live for Pop Songwriting": 1 +"Pro Tools: An In-depth Exploration of Mixing and Mastering in Music Production": 1 +"Advanced Chemistry: Decoding Molecular Interactions through NMR Spectroscopy and Crystallography": 1 +"Foundations of Statistics: Unraveling Data Interpretations using Python": 1 +"The Role and Impact of Modern Games in Cultural Transmission: A Symbolic Interactionism Study": 1 +"Education: Enhancing Numeracy Skills through Gamification Techniques": 1 +"Advanced Calculus 101: Exploring Infinite Series with Python in Jupyter Notebooks": 1 +"Chemistry: The Role of Catalysts in Industrial Processes - A Deep Dive into Haber-Bosch Method": 1 +"Environmental Science: Assessing Climate Change Impact using Satellite Imagery and GIS Data": 1 +"Grammar: Enhancing English Sentence Structure Mastery with Duolingo": 1 +"World History: Studying Economic Transformations through the Lens of Global Trade Networks": 1 +"Advanced English: Using Google Docs and Grammarly for Thematic Analysis in Epic Poetry": 1 +"Senior Zoology: Exploring Behavioral Patterns of Aquatic Species through Underwater Videography": 1 +"Data Mining with Python: Predictive Modeling of Global Population Growth and Urbanization Patterns": 1 +"Primary Education: Understanding Weather Patterns and Climate Zones using Google Earth for GIS Analysis": 1 +"The Great Wall of China: Examining the Influence of Defensive Architecture on Ancient Warfare": 1 +"Biology 101: Understanding Genetic Variations through DNA Sequencing and Genomic Mapping": 1 +"Computational Mathematics: Using Machine Learning Algorithms to Predict Stock Market Trends": 1 +"History: Analyzing the Influence of Renaissance Art on Modern Culture through Digital Archives": 1 +"Physics: Quantum Mechanics - A Deep Dive into Particle-Wave Duality and Heisenberg's Uncertainty Principle": 1 +"Introduction to Psychology: Investigating the Impact of Social Media on Adolescent Mental Health": 1 +"Advanced English: Exploring Postmodernism in Contemporary Film with Video Conferencing Discussions": 1 +"Social Studies: The Role of Blockchain Technology in Revolutionizing Financial Systems": 1 +"Environmental Science: Assessing the Effects of Deforestation on Wildlife Habitat using Satellite Imagery": 1 +"Music Theory: The Influence of Jazz Improvisation on Modern Pop Music - A Study through Digital Music Production": 1 +"Health Education: The Impact of Yoga Meditation on Stress Reduction and Emotional Resilience.": 1 +"Chemistry: Unraveling the Connection between Thermodynamics and Nanotechnology": 1 +"Artificial Intelligence: Tracing the Progression of Machine Learning from Databases to Neural Networks": 1 +"Analyzing the Influence of Podcasts on the Progression of Conversational Coding in Software Development": 1 +"Deciphering the Impact of Vertical Farming on Amending Nutritional Deficiencies in Urban Agriculture Using GIS Technology": 1 +"Health Education: Incorporating Wearable Tech in Routine Workouts for Enhanced Health Outcomes": 1 +"Biotechnology 201: Applying Polymerase Chain Reaction in Disease Diagnostics ": 1 +"Astronomy: Investigating Dark Matter through the Perspective of Gravitational Lensing": 1 +"International Relations: The Post-Colonial Period and the Implication of Soft Power Diplomacy": 1 +"Evaluating the Ecological Consequences of Electronic Waste Disposal: Focus on Eco-design and Extended Producer Responsibility ": 1 +"Philosophy 200: An Examination of Epistemology using Modal Logic and Predicate Calculus": 1 +"Quantum Mechanics: The Role of Particle-Wave Duality in Advanced Telecommunication Systems": 1 +"Biology: Investigating Cellular Processes and DNA Manipulation through CRISPR-Cas9 Technology": 1 +"Machine Learning for Financial Analysis: Implementing Predictive Models for Stock Market Trends": 1 +"Kinematics: Applying Motion Sensors and VR Technology in Biomechanical Analysis and Rehabilitation": 1 +"Screenwriting 101: Mastering Plot Twists and Suspense in Thriller Film Genres": 1 +"Physics: Unmasking the Secrets of Thermodynamics and Heat Transfer using Infrared Thermography": 1 +"Computer Graphics: Exploring Rendering Techniques and Shaders in Video Game Design - Crafting Realistic Environments": 1 +"History: Tracing the Influence of Printing Press on Renaissance Art and the Spread of Humanism": 1 +"Neurobiology Insights: Decoding Sleep and Dream Patterns using EEG Signal Analysis": 1 +"Unfolding Space Science: The Impact of Satellite Imaging on Meteorology and Climate Change Studies": 1 +"Botanical Science: Exploring the Role of Photosynthesis in Ecosystem Sustainability": 1 +"The Aesthetics of Architecture: Understanding Fibonacci's Sequence in Modern Designs ": 1 +"The Influence of Classical Literature on Contemporary Graphic Novels: An In-depth Analysis": 1 +"Exploring the Fundamentals of Python Programming for Data Structures in Computer Science": 1 +"Rhythm and Movement: The Impact of Dance on Sociocultural Evolution": 1 +"Practical Geometry: Using Trigonometric Functions in Engineering Applications": 1 +"Astronomy Decoded: The Complex Dynamics of Black Holes in Space-Time Continuum": 1 +"Visual Arts and Society: Discussing Climate Change through Digital Illustration": 1 +"Calculus in Action: Differential Equations and their Applications in Physics": 1 +"Film Studies: Deconstructing Visual Narrative Techniques in Animation with After Effects": 1 +"Exploring Culinary Art: The Science of Sourdough Fermentation through Microbial Analysis": 1 +"Advanced Phonetics: Dialect Variations in the English Language using Speech Recognition Software": 1 +"Physics: Investigating Quantum Mechanics through Double Slit Experiment and Wave-Particle Duality": 1 +"Fine Art: Decoding Egyptian Hieroglyphs through the Prism of Contemporary Graffiti Culture": 1 +"Detailed Analysis of Lung Function: Implementing Spirometry in Pulmonary Function Testing with CT scans": 1 +"Marine Biology: The Impact of Mangrove Forests on Coastal Ecosystem Stability": 1 +"The Influence of The Industrial Revolution on Classical Music and its Evolution": 1 +"Psychology: Using fMRI to Decode the Cognitive Processes of Chess Grandmasters": 1 +"Cosmology: Interpreting the Expansion of the Universe through Redshift Observations": 1 +"Mastering QGIS: Evaluating the Impact of Topographic Variation on Local Weather Patterns": 1 +"Astronomy: A Deep Dive into Exoplanet Atmospheres - Spectral Analysis using Space-based Telescopes": 1 +"Computer Science: Advanced Python Programming - Machine Learning Algorithms, Neural Networks, and TensorFlow ": 1 +"Environmental Economics: Deciphering the Impact of Renewable Energy Policies on Global Markets": 1 +"Music Theory: The Complexities of Harmonic Progression - An Advanced Study using Ableton Live": 1 +"Biology: Decoding Genetics - An In-depth Study of DNA Replication and Protein Synthesis": 1 +"Advanced Calculus: Unraveling the Mysteries of Multivariable Functions and Non-linear Dynamics": 1 +"Biochemistry: Cellular Respiration and Energy Production: A Detailed Study of Mitochondrial Functions": 1 +"Geology: Unearthing the Secrets of Plate Tectonics: A Comprehensive Study of Earthquakes and Volcanic Eruptions": 1 +"Virtual Reality: Exploring Haptic Feedback & Sensory Integration in Full-Body VR Suits": 1 +"The Fusion of Art and Technology: Creating Dynamic Sculptures with 3D Printing and Kinetic Energy": 1 +"Physics: Exploring Quantum Mechanics through the Lens of String Theory": 1 +"Marine Biology: Deciphering Ocean Climate Impact on Coral Reef Ecosystems using Bioinformatics": 1 +"Astronomy: Unraveling Cosmic Mysteries with Spectroscopic Analysis of Distant Galaxies": 1 +"Biomedical Engineering: Innovating Prosthetic Design through the Integration of Nanotechnology": 1 +"Digital Marketing: Enhancing Business Outreach with SEO Techniques and Google Analytics": 1 +"Environmental Engineering: Advancing Waste Management Solutions with Biochar and Anaerobic Digestion": 1 +"Software Development: The Role of Machine Learning in Enhancing Cybersecurity": 1 +"Art and Technology: The Influence of Virtual Reality on Modern Sculpture": 1 +"Material Science: Application of Carbon Nanotubes in Energy Storage Technologies": 1 +"Philosophy: The Application of Modal Logic in Metaphysical Debates on Temporality.": 1 +"Physics: Application of Quantum Mechanics in Nanotechnology for Renewable Energy Development": 1 +"Geography: Utilizing GIS and Remote Sensing Techniques for Environmental Management and Conservation": 1 +"The Influence of Literature on the Growth of Civil Rights Movements in the 19th Century": 1 +"Advanced Genetics: The Role of CRISPR-Cas9 in Genome Editing and Disease Treatment": 1 +"Macroeconomics: Evaluating Economic Growth and Recession Cycles Through Keynesian and Classical Theories": 1 +"Digital Literacy for Beginners: Grasping Augmented and Virtual Reality Technologies with Unity": 1 +"Exploring the Universe: Understanding Cosmic Structures through Astrophysics and Telescope Observation": 1 +"Advanced Statistics: Decoding Data Trends Using Regression Analysis and Predictive Modelling": 1 +"Web Development Basics: Creating Responsive Websites with HTML, CSS, and JavaScript": 1 +"Military History: Naval Battles in the Modern Era - The Development of Submarine Warfare Strategies": 1 +"Mathematics 101: Exploring the Application of Calculus in Economics and Finance": 1 +"Anthropology: Decoding Ancient Scripts: An In-depth Study of the Rosetta Stone": 1 +"Art History: Tracing the Evolution of Impressionism through the Works of Monet and Renoir": 1 +"Environmental Science: Addressing Climate Change with Geoengineering: An Evaluation of Carbon Capture Technologies": 1 +"Advanced Programming: Creating Interactive User Interfaces with JavaScript, React, and Node.js": 1 +"Literature: Demystifying Symbolism in Modernist Literature: A Deep Dive into T.S. Eliot's The Waste Land": 1 +"Biology: Unraveling the Secrets of Stem Cells: Potential Breakthroughs in Regenerative Medicine": 1 +"Chemistry: The Role of Green Chemistry in Sustainable Industrial Processes": 1 +"World History: Examining the Long-term Effects of the Industrial Revolution on Global Economies": 1 +"Astronomy: Exploring the Mysteries of Dark Matter and Dark Energy: An Introduction to Cosmology.": 1 +"Historical Linguistics: Tracing the Evolution of Romance Languages through Latin Inscriptions": 1 +"Sound Engineering Fundamentals: Mastering Audio Manipulation with Audacity and FL Studio in Documentary Production": 1 +"The Science of Pyrotechnics: A Deep Dive into the Physics and Chemistry behind Firework Displays": 1 +"Digital Graphic Design: Exploring Virtual Reality's Impact on Basketball Game Visualization using Oculus Rift": 1 +"Complex Number Theory: Solution Approaches in Quantum Mechanics using MATLAB": 1 +"Biostatistics & Epidemiology: Interpreting Skewed Distributions and Outliers in Public Health Data using R and Excel": 1 +"Introduction to Cybersecurity: Understanding Cryptography through Java, C++, and OpenSSL": 1 +"Unraveling the Past: A Comprehensive Review of the Renaissance Art Period with Tineye Reverse Image Search ": 1 +"Astrobiology: The Hunt for Extraterrestrial Life using Kepler Space Telescope and Spectroscopic Analysis": 1 +"Introduction to Logic Circuits: Applying Kirchhoff's Laws in Electrical Engineering using Logic Gates and Truth Tables": 1 +"Quantum Physics: Exploring the Intricacies of Quantum Entanglement": 1 +"Global Languages: Spanish: Utilizing Duolingo in Classroom for Immersive Learning": 1 +"Astrophysics: The Enigma of Black Holes and Theories of Universe Expansion": 1 +"Decoding TCP/IP and UDP: A Detailed Analysis of Network Protocols": 1 +"In-depth Analysis of Economic Models: The IS-LM Framework and the Impact of Monetary Policy": 1 +"Cognitive Science: Understanding Human Cognition through fMRI Studies and Machine Learning": 1 +"Biotechnology Perspectives: Studying Genetic Material with CRISPR and Next-Generation Sequencing": 1 +"Geography and Cinema: Tracing the Origins of Ten Distinct Film Genres through Geographic Context": 1 +"Environmental Science: Evaluating the Consequences of Deforestation on Biodiversity": 1 +"The Influence of Cognitive Behavioral Therapy in Enhancing Mental Health: An Exhaustive Review of Ten Therapeutic Techniques": 1 +"Exploring Marine Life: An In-depth Study of Underwater Photography and Lighting Techniques": 1 +"Advanced Mathematics: Integrating Real World Applications into Geometry through Architecture Design": 1 +"The Art of Gourmet Baking: Understanding the Science of Leavening Agents & Oven Temperatures": 1 +"Environmental Science: Investigating Climate Change through Geoengineering Solutions": 1 +"Rhythmic Harmony: A Comparative Study of Eastern and Western Percussion Instruments in Folk Music": 1 +"Athletic Training: Implementing Resistance Bands for Strength and Conditioning in Basketball": 1 +"Artificial Intelligence: Developing Smart Applications Using Java's Deeplearning4j Framework": 1 +"Enhancing Virtual Reality: Using Oculus Quest for Interactive Learning in Astronomy": 1 +"Particle Chemistry: Unraveling the Mysteries of Atomic Structures through Scanning Tunneling Microscopes": 1 +"Data Science: An Intensive Course on Machine Learning Algorithms and Big Data Economics": 1 +"Physics: Understanding String Theory through the Lens of Quantum Mechanics": 1 +"Anthropology: Comparative Study of Indigenous Cultures Using Virtual Reality": 1 +"Mathematics: Advanced Calculus: Exploring Fractal Geometry with Python": 1 +"Physical Education: Enhancing Athletic Performance through Biomechanical Analysis and Wearable Tech": 1 +"Neuroscience: Cognitive Enhancement: Studying the Impact of Nootropics on Brain Function": 1 +"Environmental Science: Climate Change Modelling and Impact Analysis using GIS and Remote Sensing": 1 +"Music: The Evolution of Electronic Music: An Exploration of Synth and Sampler Techniques": 1 +"Data Science: Deep Learning and Predictive Analysis: A Comprehensive Guide to Neural Networks": 1 +"Computer Science: Advanced Game Development - Incorporating Physics Simulations with Unity": 1 +"Art and Design: Mastering 3D Sculpting - Techniques and Applications of ZBrush in Modern Design": 1 +"Artificial Intelligence in Agriculture: Machine Learning Models for Crop Disease Detection": 1 +"The Theremin: Exploring Its Impact on Sci-Fi Movie Soundtracks": 1 +"Cryptography: An Introduction to Secure Communication Using Python and RSA Algorithm": 1 +"Quantum Computing: Exploring its Implications on Modern Cybersecurity Practices": 1 +"Data Visualization in R: A Crash Course in Statistical Analysis and Information Design": 1 +"The Role of Virtual Reality in Modern Architecture: Creating Immersive 3D Models with Unity": 1 +"Climate Change: Using Big Data and Machine Learning to Predict Future Trends": 1 +"Exploring the Human Genome: Bioinformatics with Python and Machine Learning": 1 +"C++ Programming for Game Development: Building Strategic Thinking": 1 +"Evaluating Shakespeare's Plays through Sentiment Analysis Algorithms": 1 +"Exploring Proteins: Utilizing Nuclear Magnetic Resonance and Cryo-Electron Microscopy in Cellular Research": 1 +"Advanced Physics: The Role of Quantum Entanglement in the Universe": 1 +"Critical Thinking and Decision Making: From Games to Business Strategies using Abductive Reasoning": 1 +"The Chemistry of Color: An In-depth Study of Pigments using Spectrophotometers": 1 +"Spanish Proficiency: Enhancing Communication Skills using VR and Podcasts for Immersive Learning": 1 +"Philosophy 101: Navigating Existentialism, Cognitive Biases, and Socratic Dialogue Using Analytical Thinking": 1 +"Mastering Geometry with Protractors: Revealing the Aesthetics of Shapes and Dimensions": 1 +"Technology: Delving into Artificial Intelligence with Python Programming": 1 +"Sociology: The Dynamics of Urban Migration: A Study on the Socioeconomic Impact of Gentrification": 1 +"Sports Science: Understanding the Runner's Physiology through Echocardiography": 1 +"Mathematics Foundations: Exploring Fractals and Chaos Theory Through Programming": 1 +"Biology Concepts: Exploring the Process of Photosynthesis Using Molecular Biology Techniques": 1 +"Introductory Sociology: In-depth Analysis of Social Stratification and Class Dynamics": 1 +"Historical Perspectives: From Stone Carvings to Emojis: The Evolution of Visual Communication": 1 +"Physical Education 220: Enhancing Flexibility and Balance with Yoga and Pilates Techniques": 1 +"Elementary Education 105: Boosting Critical Thinking Through Interactive Online Puzzles and Games": 1 +"Chemistry: Studying Chemical Reactions in Everyday Life - Understanding the Science Behind Cooking and Baking": 1 +"English Literature: Unraveling the Themes in Modernist Poetry Using Contextual Analysis Methods": 1 +"Computer Science: Building Simple Games in JavaScript - An Introduction to Game Development": 1 +"Language Arts: Crafting Metaphors in Short Stories Inspired by Historic Events and Cultural Narratives": 1 +"Mathematics and Music: Understanding Frequency and Sound Waves through Mathematical Equations": 1 +"Astrophysics for Beginners: An Introduction to Black Holes and Gravitational Waves": 1 +"Emerging Technologies: The Impact of Artificial Intelligence on Social Media Marketing Strategies": 1 +"Medieval Literature 101: The Influence of Arthurian Legends on Modern Fantasy Genres": 1 +"Chemistry in Everyday Life: Unveiling the Science Behind Cooking and Baking": 1 +"Sports Science: The Biomechanics of Basketball and its Impact on Player Performance": 1 +"History 310: The Role of Printing Press in the Protestant Reformation": 1 +"Advanced Genetics: Exploring Human Evolution Through DNA Sequencing and Genetic Engineering": 1 +"Middle School Earth Science: Learning about Volcanoes and Earthquakes through Interactive 3D Models": 1 +"Art History 220: Ancient Egyptian Art and its Impact on Contemporary Graphic Design": 1 +"Quantum Computing: An In-depth Study of Qiskit and Quantum Circuits": 1 +"Economics: Understanding the Influence of Blockchain Technology on Global Trade": 1 +"Anthropology: Unveiling Cultural Implications of Virtual Reality in Global Communities": 1 +"Leveraging Big Data for Environmental Conservation: A Comprehensive Analysis of 10 Advanced Analytics Approaaches": 1 +"Music Theory: Exploring Sound Design with MIDI and the Spectral Analysis Technique": 1 +"Web Development: A Comprehensive Guide to PHP, Laravel, Vue.js, HTML5, MongoDB, and Event-Driven Programming with Swoole": 1 +"Android Programming: Building Applications with Kotlin": 1 +"Literature: Crafting Prose with Colloquial Language and Visual Metaphor using Scrivener and the Meter and Verse Structure": 1 +"Theology: Tracing the Impact of Confucianism on Contemporary Ethical Practices": 1 +"Astronomy: Utilizing Spectroscopy in the Study of Color Variation in Starlight for Space Art": 1 +"Astronomy: The Art of Star Tracking - Understanding Celestial Navigation and Sextant Use in the Age of Sail": 1 +"Engineering: Green Building Techniques - Harnessing Solar Energy and Rainwater Harvesting using IoT Technology": 1 +"Biology 102: Exploring the Human Genome - The Revolutionary Impact of Next-Generation Sequencing and Bioinformatics": 1 +"Advanced Physics: The Quantum Universe - Decoding Qubits and Quantum Entanglement in Quantum Computing": 1 +"History: The Renaissance Era - Analyzing the Impact of the Printing Press and Humanism on European Society": 1 +"Chemistry: Navigating Organic Compounds - An Investigation into the World of Polymers and Petrochemicals": 1 +"Psychology: The Intricate Labyrinth of Human Cognition - Unraveling the Mysteries of Memory and Perception through Neuroimaging Techniques": 1 +"Computer Science 301: Advanced JavaScript and Asynchronous Programming - Exploring Promises, Callbacks, and AJAX": 1 +"Anthropology: Understanding Ancient Civilizations - A Study of Egyptian Hieroglyphics and Mayan Calendars through Computer Vision": 1 +"Musicology: The Evolution of Jazz - A Comprehensive Study on the Influence of the Blues and Swing Era with Emphasis on Saxophone Techniques.": 1 +"Advanced Physics: Understanding Quantum Mechanics through the Use of MATLAB Simulations": 1 +"Next-Gen Botany: Investigating Plant Genomes through Bioinformatics and Python Coding": 1 +"Musical Mathematics: Exploring Patterns and Symmetries in Bach's Fugues through Algorithmic Compositions": 1 +"Microbiology: Unveiling the Secret World of Bacteria using Fluorescent Microscopy": 1 +"Literature: Deconstructing Postmodern Novels through the Application of Corpus Linguistics": 1 +"Fine Arts: Interpreting Surrealism through 3D Printing and Digital Sculpting Techniques": 1 +"Geography: Deep-Diving into Climate Change Effects with Satellite Imagery and Python GIS Libraries": 1 +"Primary: Utilizing Virtual Reality in Teaching Basic Math: Interactive Number Lines and Geometric Shapes": 1 +"Narrative Construction: Incorporating Irony and Satire in Blog Posts with Rhetorical Analysis Tools": 1 +"The Rhythm of the Cosmos: Applying Fourier Transforms to Analyze the Oscillations of Pulsar Stars": 1 +"Exploring Wildlife: An In-depth Guide to Macro Photography with Nikon Lenses": 1 +"Psychology 101: Understanding Human Behavior and Emotion through Positron Emission Tomography": 1 +"Literature 305: Unraveling Irony and Satire in Postmodernist Poetry and Prose": 1 +"Advanced Web Design: JavaScript, ReactJS, CSS3, Bootstrap & Adaptive Layout Concepts": 1 +"Quantum Computing and Information Security: Delving into Quantum Cryptography with Python": 1 +"Theoretical Physics: Unveiling the Mysteries of Dark Matter through Quantum Mechanics": 1 +"Earth Studies: Understanding Climate Change through the Analysis of Ocean Currents": 1 +"Art and Technology: The Fusion of Virtual Reality and Sculpture Using 3D Modelling Tools": 1 +"Statistics and Big Data: Utilizing R and Tableau in the Analysis of Global Health Trends": 1 +"Artificial Intelligence: Building Deep Learning Models in R with Convolutional Neural Networks.": 1 +"Advanced Pottery: Discovering Ceramic Techniques through 3D Modeling and Kiln Firing": 1 +"Behavioral Economics: Examining Consumer Decision Making through Neuroimaging and Eye-Tracking Studies": 1 +"Young Astronomers: Experiencing Astronomy through Telescope Observations and Planetarium Visits": 1 +"Practical Statistics: Forecasting Business Trends with Excel and Regression Analysis": 1 +"Genetic Engineering: Manipulating Genomic Data using Bioinformatics, RNA Interference, and Next Generation Sequencing": 1 +"Computer Science: Exploring Data Structures and Algorithms with Java and Binary Trees": 1 +"Artificial Intelligence in Agriculture: Harnessing Predictive Modeling and Neural Networks using TensorFlow": 1 +"The Intersection of Architecture and Sound: An Analysis of Acoustic Principles in Building Design": 1 +"Quantum Mechanics: Unraveling Quantum Phenomena with the Aid of Schrödinger's Equation and Quantum Tunneling": 1 +"Navigating JavaScript: Implementing Dynamic Programming to Enhance Search Algorithms": 1 +"Advanced Cryptography: Harnessing Quantum Computing for Secure Data Transmission": 1 +"Sociology of Fashion: Examining Sustainability through the Lens of Circular Fashion using Big Data": 1 +"Astrophysics: Deep Dive into Cosmic Microwave Background Radiation using Fourier Analysis": 1 +"Spanish Language and Culture: Leveraging Augmented Reality Apps for Immersive Learning": 1 +"Data Science and Sports: Predictive Analysis of Player Performance using R Programming": 1 +"Virtual Reality: Enhancing User Experience through Haptic Feedback and Advanced Simulation Techniques": 1 +"Economics of Renewable Energy: Evaluating the Impact of Solar Power in Emerging Markets using Econometric Models": 1 +"Forensic Science: DNA Sequencing and Data Analysis using BioPython": 1 +"Journalism in the Digital Era: Leveraging Social Media Analytics for News Gathering and Reporting": 1 +"Game Development: Creating Immersive Open World Environments using Unreal Engine 4": 1 +"Deep Space Navigation: Interstellar Cartography and Pulsar Based Positioning Systems": 1 +"Oceanography Uncovered: An In-depth Study of Marine Ecosystems and Conservation using Machine Learning and Satellite Data": 1 +"Advanced Robotics: Exploring Humanoid Robots and AI through Real-time Control Systems and Deep Learning": 1 +"Mastering Facebook's Ad Targeting: Comprehensive Examination of Digital Marketing Strategies and Data Analytics with Python": 1 +"Public Health and Urban Planning: Examining the Link between City Infrastructure and Community Wellness using GIS Technology": 1 +"Physics of Light: An Experimental Approach to Quantum Optics using Photon Detectors and Laser Technology": 1 +"The Convergence of Music and Physics: Understanding Acoustics in Concert Hall Design": 1 +"Diving into Children's Literature: An Examination of Storytelling and Illustrations with Digital Artwork Creation": 1 +"Software Engineering: Mastering Full Stack Development using Ruby on Rails and Vue.js": 1 +"Bioinformatics for Beginners: Understanding Genetic Variation through DNA Sequencing and Data Visualization Techniques using Python.": 1 +"The Power of Big Data and Machine Learning in Precision Agriculture: 10 Strategies for the Future of Farming": 1 +"Foreign Languages: Enhancing Communication Skills through Virtual Reality and Rosetta Stone Software": 1 +"Advanced Geometry: The Role of Shapes in Quantum Physics": 1 +"Mastering Adobe Audition: A Comprehensive Guide to Digital Audio Workstations for Podcast Production": 1 +"Advanced Python Programming: Creating Interactive Graphs for Bayesian Probability using Matplotlib": 1 +"Environmental Studies: The Effects of Urban Sprawl on Biodiversity and Remediation through Green Infrastructure": 1 +"Computer Engineering: Building Virtual Reality Worlds with C++ - A Complete Guide to Gaming Technology using Unity and VR Headsets": 1 +"Fundamentals of Painting: An Exploration of Mixed Media Techniques and Photorealism": 1 +"Young Biologists: Investigating the Human Body and Disease using Microscopes": 1 +"Physical Education: Wellness through Urban Gardening: The Health Benefits of Planting and Caring for Your Own Food.": 1 +"Biological Sciences: Decoding the Human Genome - Exploring the Potential of Gene Therapy in Modern Medicine": 1 +"Physics: Entropy and Thermodynamics - Unraveling the Mysterious Laws of Heat and Work": 1 +"Ecology: Understanding Ecosystem Dynamics and Biodiversity through Metagenomics": 1 +"Public Policy: The Power of Lobbying - Exploring the Impact of Interest Groups on Environmental Legislation": 1 +"Space Science: Astroparticle Physics - Unmasking the Universe through Cosmic Ray Detection": 1 +"Sociology: Exploring the Ideology of Post-modernism through Media Content Analysis": 1 +"Music Theory: The Evolution of Melodies - A Deep Dive into the World of Harmonic Progression": 1 +"Mathematics: Exploring Fractal Geometry in Nature - The Mathematical Patterns of Chaos Theory": 1 +"Literature: The Art of Metaphor in Modernist Literature - A Study of Imagery and Symbolism": 1 +"Art History: Deciphering the Visual Language of Abstract Expressionism: An In-depth Study using Augmented Reality Technology": 1 +"Advanced Mathematics 401: Exploring Non-Euclidean Geometry Through the Lens of Riemannian Manifolds": 1 +"Chemical Engineering: Introduction to Nanotechnology - Polymeric Nanoparticles and Drug Delivery Systems": 1 +"Historical Linguistics: Tracing Language Evolution Through Comparative Phonetics and Morphology": 1 +"Music Theory: Understanding the Role of Rhythm and Syncopation in Jazz Improvisation": 1 +"Exploring the Physics of Sound: An Acoustic Analysis of Resonance in Wind Instruments": 1 +"Advanced Literature: A Journey into Magical Realism - Garcia Marquez and Rushdie's Narrative Innovation ": 1 +"Modern Astronomy: Probing the Expanding Universe - Hubble's Law and Cosmic Microwave Background Radiation ": 1 +"Psychology of Learning: Effectiveness of Spaced Repetition and Active Recall in Memory Enhancement": 1 +"Sustainable Engineering: Harnessing Renewable Energy - Wind Turbine Design and Computational Fluid Dynamics ": 1 +"Analyzing Microbial Biomes: Metagenomics and the Impact of Gut Microbiota on Human Health.": 1 +"Physics: Advanced Quantum Mechanics and Simulation of Particle Interactions using MATLAB": 1 +"Green Architecture: The Role of Vertical Gardens in Urban Sustainability: Air Quality Improvement and Heat Island Effect Reduction": 1 +"Data Science in Football: Implementing Predictive Analysis for Player Injury Prevention using Tableau": 1 +"Marine Biology: Leveraging Sonar Technology and 3D Mapping to Study Coral Reef Biodiversity": 1 +"Philosophy: The Intersection of Quantum Physics and Metaphysics - An Exploration of Multiverse Theories with Virtual Reality": 1 +"Advanced Algebra: Exploring the Beauty of Symmetry and Transformation in Tessellations": 1 +"Computer Engineering: Network Security Analysis Using Python Programming": 1 +"Criminology: Facial Recognition and Behavioural Analysis in Modern Policing": 1 +"History: The Influence of Archery in the Warfare Strategies of Medieval Europe": 1 +"Secondary Level: Innovative Pedagogies for Teaching Mathematics with Augmented Reality: Understanding Geometric Solids and their Properties.": 1 +"Understanding Data Structures: Python for Financial Analysts": 1 +"Astronomy: The Importance of Telescopic Innovations in Space Exploration: A Look into Hubble's Legacy": 1 +"Advanced Zoology: Exploring Animal Behavior through Infrared Imaging and Bioacoustics": 1 +"The Science Behind Fermentation: A Dive into the Chemistry of Winemaking": 1 +"Mathematics for the Curious: The Enigma of Fractals, Infinity, and Prime Numbers": 1 +"The Art of Dynamic Brushwork in Acrylic Painting: Exploring Texture, Form, and Movement through Impasto Techniques": 1 +"Biology: The Science of Fabrics - Investigating Natural Fibers in Textile Design": 1 +"Unraveling Symbolism in Blues: The Synchrony of Storytelling in Folklore through Allegory": 1 +"Exploring Genetic Mutation: A Journey through DNA Visualization using Fluorescent Bioart": 1 +"International Economics: The Impact of Trade Agreements on Market Stability and Global Cooperation": 1 +"Advanced Photography: Exploring Light and Shadow with Nikon D850 and Adobe Lightroom": 1 +"Linguistics: An Analytical Study on Language Evolution using Socio-Cultural Paradigms": 1 +"Unleashing the Potential of FL Studio's Sytrus in Electronic Music: An In-depth Exploration": 1 +"History of Art: The Interplay of Color Theory and Impressionist Techniques in Postmodern Art": 1 +"Astrophysics for the Modern Age: The Impact of General Relativity on Gravitational Wave Detection": 1 +"Deciphering Metaphors in Cinema: The Power of Visual Allegory": 1 +"Psychology & Well-being: The Impact of Cognitive Behavioral Therapy on Anxiety and Mood Disorders": 1 +"Art: Deconstructing Surrealism through the Perspectives of Dadaism and Magical Realism": 1 +"Advanced Mathematics: Unraveling the Mysteries of Calculus with the aid of Wolfram Mathematica": 1 +"Creative Writing: Harnessing the Strengths, Weaknesses, Opportunities, and Threats (SWOT) Analysis in Crafting Dystopian Narratives and Plot Twists in Novels": 1 +"Digital Transformation: The Impact of Augmented Reality in Architecture - A Study on Autodesk Revit Software": 1 +"Physics in Focus: Understanding Quantum Mechanics through Schroedinger's Equation and Lattice Vibrations": 1 +"Theatre of the Postmodern: Deconstructing Metatheatre and the Role of Irony in Contemporary Drama": 1 +"Analytical Minds: Exploring Advanced Statistics Through R and SPSS": 1 +"The Streaming Revolution: Assessing the Influence of Video-On-Demand Platforms on Television Broadcasting and Future Prospects for Cable Networks": 1 +"Financial Literacy: Teaching the Basics of Banking and Personal Finance to Youth": 1 +"Marvels of the Mind: Psychological Processes for Children - Understanding Perception through Optical Illusions": 1 +"Junior Ecology: Understanding Environmental Conservation through The Study of Endangered Species and Ecosystems": 1 +"Biology Basics: Understanding Cell Division and the Role of DNA - Genetics": 1 +"The Impact of Renewable Energy Technology on Socio-Economic Transformation": 1 +"Physics 101: Unraveling Quantum Mechanics Through Particle Simulation": 1 +"Sociology: The Influence of Social Norms - Assessing the Impact of Universal Basic Income": 1 +"Film: Storytelling in Animation - Mastering Adobe Premiere Pro": 1 +"Physics for Children: Understanding Gravity using Simple Experiments": 1 +"Fine Arts: Exploring Proportions and Perspectives through Charcoal Sketching": 1 +"Cognitive Science: Deciphering Human Memory Through EEG and Neural Networks": 1 +"Digital Transformation: The Role of Artificial Intelligence in Supply Chain Management": 1 +"Life Skills: Mental Resilience through Mindfulness and Balanced Diet": 1 +"Science Fun for Kids: Exploring Thermodynamics with Homemade Heat Engines": 1 +"Genetics: Delving into the Intricacies of DNA Replication and Protein Synthesis": 1 +"The Influence of Trigonometry in Architecture: An Analytical Approach": 1 +"Data Science: R Programming and Text Mining: Enhancing Predictive Analytics in Healthcare": 1 +"Computer Engineering: Docker and MongoDB: Embedding Deep Learning in Real-Time Weather Forecasting Apps": 1 +"Economics: Boosting Market Visibility through Twitter Analytics and Salesforce: Effective Digital Marketing Strategies": 1 +"Health Science: The Effects of Melody Tempo on Stress Levels Using EEG Brainwave Analysis": 1 +"World Politics: The Cold War Era - Evaluating the Influence of Atomic Power and Democracy on Global Relations": 1 +"Creating Harmonies with Java and Ableton Live: An Introductory Course to Digital Music Production": 1 +"Chemistry: Photocatalysis - The Fundamentals of Solar Energy Conversion Techniques": 1 +"Mathematics: Fractal Geometry - Exploring the Complexity of Nature Through Mathematical Patterns": 1 +"Utilizing Calculus in Neural Network Backpropagation Methods in AI for Advanced Robotic Control.": 1 +"Physics: The Impact of Electromagnetic Waves on Wireless Communication Systems ": 1 +"Ballet: The Art of Pointework: A Comprehensive Analysis of Biomechanics and Injury Prevention": 1 +"Analyzing Proteins: The Role of Spectroscopy and Chromatography in Nutritional Science": 1 +"Medical Tech: Exploring the Potential of Machine Learning in Cancer Diagnosis and Treatment": 1 +"Calculus: Applying Derivatives and Integrals to Real-World Engineering Problems": 1 +"Utilizing Machine Learning in Meteorology: A Practical Approach to R and Keras for Weather Forecasting": 1 +"Musicology: The Transformation of Opera - From Baroque to Romantic Era: An Examination of Vocal Techniques": 1 +"Demystifying Blockchain Technology: The Potential of Distributed Ledger Systems": 1 +"From Quill to Screen: The Interplay of Digital Design and Traditional Calligraphy": 1 +"Fintech and Literature: Deciphering the Impact of Bitcoin Transactions on Digital Publishing": 1 +"Physics: Exploring Quantum Mechanics Through Schroedinger’s Equations": 1 +"Cultural Anthropology: The Impact of Globalization on Indigenous Cultures: A Mixed Methods Approach": 1 +"Astronomy: Galactic Formation and Evolution Explored Through Spectroscopy": 1 +"Applied Mathematics: Solving Real-World Problems Using Partial Differential Equations and MATLAB": 1 +"Advanced Neurobiology: Understanding Memory Formation Through Optogenetics and fMRI": 1 +"Digital Art: Creating Surreal Landscapes Through 3D Modeling and Photorealistic Rendering in Blender": 1 +"American Literature: Examining Themes of Alienation in Postmodern Novels Through Text Mining": 1 +"Biochemistry: Protein Folding and Misfolding Studies Using Cryo-Electron Microscopy and Molecular Dynamics Simulations": 1 +"Advanced Econometrics: Forecasting Financial Markets Using Statistical Learning and Time Series Analysis": 1 +"Ethics: Exploring the Philosophy of Justice Through Kantian Deontological Ethics and Rawlsian Theory of Justice": 1 +"Chemistry: The Influence of Organic Compounds in Pharmaceutical Drug Design": 1 +"Python Programming: Enhancing Data Analysis through Machine Learning and Artificial Intelligence": 1 +"Neuroscience of Language: Understanding the Impact of Bilingualism on Cognitive Development": 1 +"Virtual Reality in Medicine: Exploring the Role of Oculus Rift and Haptic Devices in Surgical Training Simulations": 1 +"Fine Arts: Exploring Texture through Mixed Media - The Use of Collage Techniques in Contemporary Art": 1 +"Technical Writing: Enhancing Presentation Skills using PowerPoint, Prezi, and Adobe Illustrator for Effective Communication": 1 +"Biology: Unraveling Genetic Mutations through PCR and DNA Sequencing - An Insight into Genomic Medicine": 1 +"Analyzing Symbolism in Film: An Interdisciplinary Approach using Semiotics and Psychoanalysis": 1 +"The Art of Storytelling in Animation: Understanding the Role of Color Theory in Emotional Resonance": 1 +"Chemistry: The Impact of Arrhenius Equation in Chemical Kinetics - A Comprehensive Study of Reaction Rates.": 1 +"Advanced Calculus: Unraveling the Mysteries of Black Holes and String Theory with Tensor Calculus": 1 +"Art History: Exploring the Metaphysics of Color in Impressionist and Post-Impressionist Paintings": 1 +"Biology: Delving into DNA and RNA: The Molecular Mechanics of Genetic Information Transmission": 1 +"Advanced Programming: Using Python and Machine Learning for Predictive Weather Analysis": 1 +"The Science of Music: An Exploration of Harmonic Resonance and Acoustic Waves in String Instruments": 1 +"Astrology: Deciphering Celestial Stories through Constellation Mythology and Hubble Deep Field Images": 1 +"Sociology: The Evolution of Social Structure and Power Dynamics in the Age of Social Media": 1 +"Geology: Decoding Earth's Past Climate through Ice Core Data and Paleoclimatology": 1 +"History: Investigating the Effect of Industrial Revolution on Urbanization and Class Structure": 1 +"Environmental Science: Evaluating the Role of Wind Turbine Technology in Renewable Energy and Climate Change Mitigation": 1 +"Advanced Programming: Mastering Java Through Eclipse and JUnit Testing": 1 +"Artificial Intelligence and Data Science: Optimizing Healthcare with Machine Learning Using TensorFlow": 1 +"Econometrics: Applying Multiple Regression Analysis on Economic Growth using EViews": 1 +"Physics: Exploring Quantum Mechanics in Cryptography for Secure Data Transmission": 1 +"Psychology: The Influence of Digital Marketing on Consumer Behavior: An In-depth Study": 1 +"Geology: Monitoring Earthquake Patterns with Seismic Analysis and ArcGIS": 1 +"Physical Chemistry: Investigating Thermodynamic Principles using Molecular Simulation Techniques": 1 +"Secondary Education 410: Incorporating Virtual Reality in STEM Education - Using Oculus Quest in Online Teaching": 1 +"Statistics: Exploring Climate Change through Time Series Analysis in R: The Impact of Renewable Energy Sources": 1 +"Literature: The Role of Metaphor in Modernist Literature: A Study of T.S. Eliot’s Poetry": 1 +"Psychology: The Impact of Instagram on Teenagers' Self-Esteem ": 1 +"Inclusive Hospitality: Enhancing Accessibility for Diverse Populations Using Hotel Management Software": 1 +"Expert Podcast Curation: Utilizing Spotify Premium for Ideal Jazz Genre Compilation in Media Production": 1 +"Ethnography: The Effect of Cassette Tapes on Local Folklore Traditions": 1 +"Software Engineering: Navigating Algorithm Complexity from Theory to Implementation": 1 +"Geometry in Action: Decoding Architectural Designs through Trigonometric Functions": 1 +"Political Science: The Development of Telecommunication: Influence of Satellite Channels on Global News Broadcasting": 1 +"Chemistry: Unraveling Chemical Reactions Using Thermodynamic Concepts": 1 +"Advanced E-commerce: Implementing Python in the Framework of Digital Wallet and Online Transactions": 1 +"Microbial Ecology: An In-Depth Analysis Through Next Generation Sequencing and Fluorescent Microscopy": 1 +"Exploring Adobe After Effects: Utilizing Visual Effects and Motion Graphics for Cinematic Animation": 1 +"Reflections on Existentialism in Modern Cinema: A Comprehensive Analysis": 1 +"Acoustics and Architecture: The Role of Bose Soundtouch 300 in Enhancing Auditorium Acoustics": 1 +"Decoding the Universe: The Use of Radio Astronomy in Understanding Cosmic Microwave Background Radiation": 1 +"Abstract Expressionism in Acrylic Paintings: An Exploration of Textures, Abstract Forms, and Brushwork Techniques": 1 +"Kinesiology: The Skeletal System, Biomechanics, and Therapeutic Massage - An Orthopedic Approach": 1 +"Physics: The Impact of Quantum Mechanics in Developing Nanotechnology and Sustainable Energy Solutions": 1 +"The Intersection of Traditional Board Games and Digital Innovation: A Comprehensive Study of Mahjong's Evolution": 1 +"Harnessing Aerial Photography: An Exploration into the Cultural Landscapes of Ten Indigenous Tribes": 1 +"Econometrics: Machine Learning in Financial Forecasting: A Case Study on the Stock Market": 1 +"Ecology: Forest Conservation through Drone Technology: An Exploration of Aerial Mapping and Biodiversity Monitoring": 1 +"Chess Strategies and Tactics: An Introduction to Deep Blue and Artificial Intelligence": 1 +"Steam Engines and Telegraphs: An Examination of the Victorian Era through Linguistic Shifts": 1 +"The Potential of Nanotechnology in Regenerative Medicine: An In-depth Analysis": 1 +"Audio Engineering: Optimizing Electronic Beats in Ableton Live Using MIDI Controllers and Focusrite Scarlett Interface": 1 +"The Sociopolitical Impact of Literature: A Study Utilizing Textual Analysis and Natural Language Processing": 1 +"Navigating 3D Modeling in Architecture: A Practical Guide to Using AutoCAD": 1 +"Probability Theory 301: Advanced Forecasting Methods with Python and SciPy": 1 +"Young Astronomers: Exploring the Cosmos with Digital Planetariums - An Interactive Guide for Children": 1 +"Business Management: Utilizing Machine Learning to Understand Consumer Behavior and Market Trends": 1 +"Advanced Animation: An In-Depth Guide to Maya for Game Development": 1 +"Biomechanics of Sports: Applications of Inertia Sensors in Performance Analysis of Tennis Players": 1 +"Predictive Analytics in Football: Leveraging SQL, Python, and Tableau for Enhanced Team Performance": 1 +"Quantum Computing: Deciphering Quantum Entanglement and Quantum Supremacy through Quantum Circuit Model": 1 +"The Role of AI: Transforming Healthcare Operations and Management through Machine Learning": 1 +"Mastering Japanese: Strengthening Business Communication through Cultural Understanding using Duolingo": 1 +"Fundamentals of Food Science: Exploring Fermentation Processes for Beverage Production": 1 +"Cybersecurity Essentials: Understanding Firewalls and their Role in Network Protection": 1 +"Mixcraft and Ableton Live in Audio Engineering: Perfecting Sound Mixing and Audio Processing Techniques": 1 +"The Fascinating Journey of DNA Replication: An In-depth Analysis through Electron Microscopy": 1 +"Advanced Physics: Quantum Mechanics and the Study of Particle Behavior Using CERN's Large Hadron Collider": 1 +"Mastering Spanish: The Art of Metaphor in Poetry and Prose": 1 +"Calculus Simplified: Understanding Derivatives and Integrals through Real-World Applications and Mathematica": 1 +"Introduction to Graphic Design: Utilizing Adobe Illustrator for Vector Art and Branding": 1 +"Statistics in Action: Predictive Modeling in Finance Using Regression Analysis and R": 1 +"Sociology Uncovered: Analyzing Social Constructs through the Lens of Marx's Conflict Theory": 1 +"Internet Privacy: Unraveling Data Security Threats in Social Media Platforms through Cryptography": 1 +"Exploring Cognitive Psychology: The Impact of Memory Retrieval on Human Decision Making": 1 +"World History: The Printing Press and the Reformation: Knowledge Dissemination in the Renaissance": 1 +"Sustainable Engineering: The Potential of Renewable Energy in Reducing Global Warming: A Thermodynamic Analysis": 1 +"Physics: Extraterrestrial Navigation Techniques: Using the Celestial Sphere and Stellarium": 1 +"The Art of Storytelling in Animation: A Study of Movement, Timing, and Expression using 3D Software": 1 +"Advancements in Agriculture: A Comprehensive Study on Vertical Farming and the Role of Robotic Harvesting": 1 +"Quantum Computing: Delving into Qubits and Quantum Entanglement with the Use of IBM Q Experience": 1 +"Physical Education: Enhancing Athletic Performance through Biomechanical Analysis and Sensor-based Feedback": 1 +"Cultural Studies: The Impact of Social Media Platforms on Global Political Discourse": 1 +"Art: Unraveling the Mysteries of Surrealism with Augmented Reality": 1 +"Music: The Integration of Sound Engineering and Visual Effects using Ableton Live": 1 +"Health Sciences: The Role of DNA Sequencing in Personalized Fitness and Diet Planning using 23andMe": 1 +"Environmental Science: The Effect of Green Roofs and Vertical Gardens on Urban Heat Islands": 1 +"Music Theory: Creating Melodies and Harmonies with Ableton Live Digital Audio Workstations": 1 +"Data Science: Leveraging R Programming for Advanced Statistical Analysis with ggplot2 Library": 1 +"Physical Education: Understanding Muscle Development and Performance Enhancement through Electromyography (EMG)": 1 +"Investigating the Environmental Effects of Industrial Waste on Marine Life using the Hedonic Pricing Method: An Examination of Five Waste Management Strategies": 1 +"Mathematics: Predictive Modelling and Simulation: Using R, Linear Regression, and Monte Carlo Methods for Risk Assessment in Financial Markets": 1 +"Computer Science: Python Programming and Fundamentals of Machine Learning Algorithms": 1 +"Assessing the Impact of Organic Farming on Soil Health and Crop Yield through Remote Sensing Technology": 1 +"Astronomy: The Role of Spectroscopy in Star Classification: A Detailed Review of Hertzsprung-Russell Diagram Interpretation": 1 +"Arts and Humanities: The Influence of History on Modern Cinema Explored through Digital Archival Research": 1 +"Advanced Statistics: Utilizing SPSS's Chi-Square Test for Hypothesis Testing and Categorical Data Analysis": 1 +"Advanced Python Programming: Delving into Machine Learning, Neural Networks, and Pandas Library": 1 +"The Hidden Mechanisms of Organic Chemistry: Unraveling Molecular Structures and Reactions with Quantum Mechanics": 1 +"Fluency in Spanish: Enhancing Language Learning with Virtual Reality Experiences": 1 +"Unraveling the Mysteries of Global Trade: From Local Markets to International Economics": 1 +"Geometric Beauty: The Intricacies of Tessellations and the Magic of Number Theory": 1 +"Creative Pursuits: Discovering Abstract Expressionism through Acrylic Pour Painting Techniques": 1 +"In-Depth Analysis of Classic Cinema: Uncovering Themes and Symbolism in Film Noir": 1 +"Essentials of 3D Animation: An Insight into Computer Graphics using Blender": 1 +"Instagram Mastery: The Science of Social Media Marketing in Fashion Industry": 1 +"Applied Science: The Role of Scanning Tunneling Microscopes in Material Science": 1 +"Physics: Unraveling Quantum Mechanics through the Lens of Schrödinger's Cat": 1 +"Computer Science: The Impact of Machine Learning on Predictive Analytics in Healthcare": 1 +"Art History: Analyzing the Evolution of Impressionism: A Focus on Color Theory and Brush Techniques": 1 +"Ecology: Understanding Biodiversity and Conservation through the Use of Remote Sensing Technology": 1 +"Music Education: Exploring the Influence of Technology on Music Composition and Performance": 1 +"Geography: The Role of GIS in Climate Change Analysis and Environmental Decision Making": 1 +"Neuroscience: Mapping the Human Brain: An In-depth Study using Functional MRI Technology": 1 +"Urban Studies: The Integration of Smart Grid Technology in Sustainable Urban Development": 1 +"Astrophysics: Investigation of Dark Matter through the Use of Gravitational Lensing": 1 +"An In-depth Analysis of Quantum Computing in Cryptography: Exploring Potential Solutions for Secure Global Financial Transactions.": 1 +"Advanced Robotics: Understanding AI Interactions through Python and Machine Learning": 1 +"The Evolution of Music: An Examination of Classical Compositions through the Lens of Cultural Anthropology": 1 +"Psychology: Decoding the Human Mind Through Freud's Psychoanalytic Theory": 1 +"The Galactic Spectacle: Deep Space Exploration Using Advanced Telescopic Imaging": 1 +"Business Finance: Leveraging PowerBI for Profit Maximization and Risk Assessment": 1 +"Civil Engineering: Assessing Soil Stability through VR and AR Infrastructure Models": 1 +"Marine Biology: Using GIS & Underwater Sonar Imaging for Coral Reef Protection Studies": 1 +"In-depth Analysis of Confucianism's Impact on Asian Cuisine: Utilizing SPSS in Social Research": 1 +"Eco-friendly Textile Production: Harnessing Algae Biopolymers for Biodegradable Fabric Production using 3D Printing": 1 +"Complex Calculus: Exploring Fractal Dimensions in MATLAB using Machine Learning Approaches": 1 +"The Role of Steam Engines in Transforming Maritime Transportation during the Industrial Revolution": 1 +"Machine Learning: Utilizing K-means Clustering in Python for Customer Behavior Analysis": 1 +"Literature: Decoding Economic Trends through Text Analysis and Sentiment Analysis in Python": 1 +"Implementation of Sharding Techniques in Distributed Databases to Evaluate Climate Change Impact on Solar Energy Production: An In-depth Assessment of 10 Possible Methods": 1 +"Art: Mastering Depth Perception in Landscape Photography using Lightroom and HDR Techniques": 1 +"Electrical Engineering: Applying Spectrum Analyzer in Principles of Frequency Modulation for Radio Broadcasting using Audacity": 1 +"Advanced Physics: Forecasting Tidal Waves using MATLAB and Fourier Transformations": 1 +"Genetics: The Dynamics of DNA: An In-depth Examination on Recombination and Genetic Variation": 1 +"Data Visualization: Using Python and Plotly to Develop Interactive Maps for Geospatial Analysis": 1 +"Art: Discovering Modern Trends through Digital Sculpting using ZBrush": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Schrödinger's Cat Paradox": 1 +"Biology: The Symphony of Life - Decoding DNA Structures and Genetic Coding": 1 +"Mastering the Craft of Oil Painting: The Role of Color Theory, Brush Techniques, and Impressionistic Styles": 1 +"Applying Thermodynamic Principles in Basketball Coaching: The Influence of Environmental Variables on Player Performance": 1 +"Music in Mathematics: Uncovering Fibonacci Sequences through Symphonic Composition": 1 +"Java and Spring Boot Web Development: NoSQL Integration with MongoDB Atlas": 1 +"Economics: Forecasting and Trend Analysis: Utilizing Python, Multiple Regression, and Scenario Planning for Market Prediction": 1 +"Creating Music with JavaScript, Reaper and Oscillator Nodes: An Introductory Course": 1 +"History: The Influence of the Transcontinental Railroad on Westward Expansion and Industrial Growth": 1 +"Data Science: The Significance of Machine Learning and Neural Networks in Big Data Analytics": 1 +"Chemistry: Organic Synthesis and Spectral Analysis: A Dive into NMR, IR, and Mass Spectrometry": 1 +"Astronomy: Gravitational Waves and the Interplay of Space-Time: Discovering the Universe with LIGO and VIRGO": 1 +"Psychology: Cognitive Behavioral Therapy and Mindfulness: A Journey into Mental Health and Well-being": 1 +"Music Theory: The Influence of Baroque Period on Contemporary Pop Music: A Study of Melody, Harmony, and Rhythm": 1 +"Biology: Genetic Engineering and CRISPR-Cas9: Revolutionizing Medicine and Agriculture": 1 +"Journalism: Investigating Fake News and Media Bias: A Deep Dive into Fact-Checking and Source Verification": 1 +"Economics: Fintech and Cryptocurrencies: Understanding Blockchain and its Impact on Financial Systems": 1 +"Fashion: The Evolution of Haute Couture in the 21st Century: An Examination of Dior, Chanel, and Givenchy": 1 +"Computer Graphics: Real-Time Ray Tracing and Global Illumination: An Overview of Nvidia RTX Technology": 1 +"Architecture: Sustainable Design and Green Buildings: Incorporating LEED Certification in Modern Architecture": 1 +"Biological Evolution: Genomic Analysis through the Lens of Molecular Phylogenetics": 1 +"Advanced Mathematics: The Impact of Euclid's Elements on Modern Geometry and Numerical Analysis": 1 +"Sociolinguistics: The Influence of Social Media on Language Evolution and Global Communication": 1 +"Environmental Science: Climate Change Impact on Biodiversity: A Deep Dive into Ecological Modeling": 1 +"The Renaissance: The Role of the Printing Press in the Reformation and Enlightenment": 1 +"Music Theory: Harmonic Analysis through the Prism of Ludwig van Beethoven's Symphonies": 1 +"Advanced Economics: Game Theory and its Application in International Trade and Negotiations": 1 +"Computational Neuroscience: Understanding Human Cognition through Artificial Neural Networks": 1 +"Quantum Computing: Quantum Information Theory and its Implications for Cryptography": 1 +"Cosmology: Unraveling the Mysteries of Dark Matter and Energy in the Expanding Universe": 1 +"Unfolding Quantum Mechanics: A Comprehensive Overview of Schrödinger's Equation and Quantum Field Theory": 1 +"Pioneering Astrophysics: Decoding Star Life Cycles through Hubble's Telescope and Einstein's Theory of Relativity": 1 +"Soccer Statistics: A Comprehensive Investigation using MATLAB, SAS and Power BI": 1 +"Mastering Cinema 4D: Football in the Realm of 3D Animation": 1 +"Advanced Organic Chemistry: Exploring Reaction Mechanisms using ChemDraw and PubChem Database": 1 +"Physiology 101: Discovering the Role of Biostatistics in Gene Therapy and Stem Cell Research": 1 +"Navigational Instruments in Space Travel: The Space Age - Gyroscopes, Star Trackers and The Sun Sensor": 1 +"Interpreting Kepler's Laws and Planetary Motion using Virtual Reality Simulations": 1 +"Advanced MRI Techniques in Cardiology: Investigating the Role of Magnetic Resonance in Understanding Heart Function": 1 +"Advanced Data-Driven Talent Evaluation: A Computer Science Perspective using Power BI, MATLAB, and Hierarchical Cluster Analysis": 1 +"Introduction to Robotics: An Overview of Arduino Programming": 1 +"Advanced Psychology: The Role of Eye-Tracking Technology in Cognitive Behavioral Therapy": 1 +"Fundamentals of Physics: The Science Behind Roller Coasters and Gravitational Forces": 1 +"Physical Education 210: Enhancing Flexibility through Contemporary Ballet Techniques": 1 +"Eastern Philosophy: An Exploration of Taoism, I Ching, and their Influence on Feng Shui": 1 +"Biology in Sports: Analyzing the Effects of High-Altitude Training on Lung Capacity": 1 +"Creative Writing Techniques: Leveraging Haiku and Tanka for Expressive Micro-Poetry": 1 +"The Evolution of Sculpture: The Impact of 3D Printing on Contemporary Art Forms": 1 +"Harmonious Living: Zero-Waste Lifestyle and the Use of Solar-Powered Home Appliances ": 1 +"Coding for Kids: Enhancing Problem Solving Skills through Scratch Programming": 1 +"Chemistry: Understanding Soundwaves via the Study of Vibrational Spectroscopy": 1 +"Literature: The Evolution of Poetry - The Haiku Form, its Fusion with Digital Media, and the Influence of E-books.": 1 +"Programming: The Role of Python in Data Analytics": 1 +"Sociolinguistics: The Revolution of Slang - Examining the Role of Memes in Social Media Discourse.": 1 +"Food Technology: Unraveling Food Preservation Techniques with Robotics and Big Data": 1 +"Introductory Information Technology: Website Design Using HTML, CSS, and Bootstrap": 1 +"Insect-Plant Relationships: A Genomic Approach Using Next-Generation Sequencing and DNA Barcoding": 1 +"Cradle-to-Cradle Design, Reusable Resources, and Compostable Materials: The Future of Eco-Friendly Clothing": 1 +"Advanced Geometry: Navigating the Complexities of Fractals using Computer-Aided Design": 1 +"Exploring the Influence of Romanticism in Victorian Britain through Historical Text Analysis": 1 +"Physics: Exploring Quantum Mechanics and Theoretical Physics Through MATLAB Simulations": 1 +"Literature and Creative Writing: Harnessing the Power of VR Technology for Immersive Storytelling": 1 +"Sustainability Practices: The Use of Hydroponic Systems in Urban Farming and Food Security": 1 +"Statistics: The Influence of Machine Learning Algorithms in Data Analysis and Predictive Modelling": 1 +"Business Management: The Impact of Artificial Intelligence (AI) on Supply Chain and Logistics": 1 +"Culinary Innovation: Understanding the Science of Molecular Gastronomy & Sous Vide Cooking Techniques": 1 +"The Art of Filmmaking: Understanding Cinematic Language and Storyboard Creation Through Adobe Premiere Pro": 1 +"Cybersecurity: Fundamentals and Advanced Techniques Using Python and C Programming": 1 +"Geopolitics and Climate Policy: An In-depth Analysis of International Relations using Data Visualization Tools": 1 +"The Discourse of Monetary Policies and Inflation: A Comprehensive Study Through Econometric Modelling.": 1 +"Biochemistry: Investigating Protein Structure Through X-Ray Crystallography and Molecular Dynamics": 1 +"Cognitive Psychology: Studying Human Behavior Through fMRI and Cognitive Bias Experiments": 1 +"Astrophysics: Deciphering the Universe's Origins with Cosmic Microwave Background and Dark Matter Research": 1 +"Geography: The Impact of Climate Change on Migration Patterns: A Look at Rising Sea Levels and Human Displacement": 1 +"Sculptural Arts: Exploring Abstract Expressionism through Metalworking and Found Object Assemblage": 1 +"Information Technology: Network Security with Firewalls, VPNs, and Intrusion Detection Systems": 1 +"Graphic Design: Mastery of Typography in UI/UX Design": 1 +"Macroeconomics: The Influence of Monetary Policy on Inflation and Unemployment Rates": 1 +"Postmodern Literature: Analyzing Magic Realism through the Works of Haruki Murakami": 1 +"Digital Music Production: The Role of Synthesizers and Sequencers in Modern Electronic Music Composition": 1 +"Astronomy: The Role of Machine Learning in Predicting Meteor Showers and Lunar Phases": 1 +"Health Science: Designing Smart Health Monitoring Systems using Cloud-Based IoT Technologies": 1 +"Literature: The Use of Allegory in Poetry to Address Climate Change": 1 +"Advanced Robotics: Building Autonomous Drones Using Raspberry Pi, 3D Printing, JavaScript, Infrared Sensors, and Microcontrollers": 1 +"Sociology: Tracking Social Trends and Patterns through Text Mining and Predictive Analysis": 1 +"Advanced Biotechnology: Harnessing the Power of CRISPR for Genetic Engineering": 1 +"Cybersecurity Expertise: Intrusion Detection, Firewall Configuration, and Threat Analysis with Wireshark and Metasploit": 1 +"Physics: Quantum Mechanics and Its Application in Advanced Encryption Techniques": 1 +"Study of Knife Techniques in Oil Painting: Manipulating Texture, Form, and Depth": 1 +"History of Art: The Impact of Perspective and Shadow in Renaissance Artworks": 1 +"Wave Mechanics: The Essence of Light, Energy and Photoelectric Effect": 1 +"Philosophy: A Deep Dive into the Realm of Metaphysics and Its Impact on Existentialism": 1 +"Chemistry in the Kitchen: Unfolding the Mysteries of Caramelization and Food Pairing": 1 +"Analytical Reasoning: The Art of Deduction in Decision Making using Probabilistic Models and Premise Analysis": 1 +"Green Engineering: Harnessing Solar Power for Sustainable Architecture: An Overview of Photovoltaic Technology and Passive Solar Design": 1 +"Astrophysics Simplified: Gravitational Waves and Relativity: Comprehending Space-Time Continuum": 1 +"Psychology 101: The Intricacies of Virtual Reality: An In-depth Study of VR Phobia and Psychological Effects": 1 +"English Literature: Decoding Satirical Devices in Political Cartoons": 1 +"Primary School Biology: Understanding Animal Adaptations and Genetic Diversity": 1 +"Theoretical Physics: Grasping the Universe through the Lens of String Theory": 1 +"Psychology: The Impact of Cognitive Biases in Stock Market Trading: A Behavioral Economics Approach": 1 +"Quantum Physics: Utilization of Quantum Entanglement in Next-Gen Telecommunication Systems": 1 +"Environmental Science: Applying GIS and Remote Sensing in Monitoring Deforestation and Biodiversity Loss": 1 +"Statistics: Exploring Crime Prediction through Machine Learning and Big Data Analysis": 1 +"Sport Science: Utilizing Virtual Reality in Enhancing Performance and Injury Recovery in Athletics": 1 +"Artificial Intelligence: The Role of Machine Learning in Predicting and Mitigating Natural Disasters": 1 +"Augmented Reality: Revolutionizing Medical Training and Surgery with Oculus Rift": 1 +"Abstract Algebra: Exploring Cryptography and Security Systems through Group Theory and Python": 1 +"Cinematography: The Art of 3D Animation and Visual Effects in Modern Filmmaking": 1 +"Data Analysis in Urban Planning: Employing Geospatial Data for Sustainable City Design using QGIS and Python.": 1 +"Mathematics: Exploring Fractal Geometry through the Beauty of Nature and Art": 1 +"Astronomy: Understanding Black Holes and Gravitational Waves through Computational Simulations": 1 +"Biology: Introduction to Genetics, DNA Sequencing and Genomic Editing Techniques": 1 +"Literature: Delving into Dystopian Worlds with Free Podcasts and Audiobooks": 1 +"Interactive Storytelling: Role of Virtual Reality in Revolutionizing Film and Gaming Industry": 1 +"Environmental Science: Studying Climate Change Impacts on Forest Ecosystems with Satellite Imaging and Data Visualization": 1 +"Microbiology: Advanced Techniques in Virology with Emphasis on Next-Generation Sequencing and CRISPR Technology": 1 +"Urban Planning: Designing Eco-Friendly Metropolises using Augmented Reality and Sustainable Construction Methods": 1 +"Decentralized Networks in Cryptocurrency: Leveraging the Lightning Network for Sustainable Energy Consumption in Bitcoin Mining": 1 +"Introduction to Behavioral Economics: Understanding Consumer Behavior through the Prism of the Prospect Theory": 1 +"Advanced Astrophysics 202: Unraveling the Mysteries of Dark Matter with Quantum Mechanics and Gravitational Lensing": 1 +"Game Development 101: Building Immersive Worlds with Unity and Procedural Generation": 1 +"International Business Studies: Navigating Global Trade using Economic Theory and Cultural Intelligence": 1 +"Psychology 105: Understanding Human Behavior with Cognitive Neuroscience and Functional MRI Techniques": 1 +"Digital Art and Design: Creating Realistic Environments with Blender and Physically Based Rendering": 1 +"Advanced Environmental Science: Climate Modeling Using GIS and Remote Sensing Techniques": 1 +"Quantum Computing 150: Developing Algorithms for Quantum Machines using Q# and Quantum Circuit Design": 1 +"World History 220: Decoding Ancient Civilizations through Archaeology and Epigraphy": 1 +"Biochemistry 301: Unveiling the Secrets of Cellular Metabolism with NMR Spectroscopy and Metabolomics": 1 +"Sociology 200: Exploring Social Structures in Digital Communities: Social Network Analysis and Big Data": 1 +"Astrophysics for Beginners: Understanding the Cosmic Microwave Background Radiation and Dark Matter": 1 +"The Evolution of the Printing Press: A Detailed Study on Gutenberg's Invention and Its Impact on the Information Age": 1 +"The Human Brain and Music: Investigating the Auditory Cortex through Electroencephalography": 1 +"Pro-level Python: Networking, Web Scraping and Advanced Data Visualization": 1 +"Physics Fun Time: Learning about Light and Electromagnetism through Experiments": 1 +"R Data Structures Explained: A Comprehensive Guide on Vectors, Lists and Data Frames": 1 +"Mastering Spanish: Exploring Poetry and the Art of Rhyme": 1 +"Biology: The Dance of DNA - A Detailed Exploration of Genetic Coding and Replication": 1 +"Computer Science: Text Mining and Sentiment Analysis using Naive Bayes Classifier in Natural Language Processing": 1 +"Mastering the Art of Sculpting: An Introduction to Bronze Casting and Patinas Techniques": 1 +"Art History: The Impact of Oil Painting Techniques on Renaissance Portraiture": 1 +"Music Theory: Harmonic Progressions and Scale Structures in Classical Compositions": 1 +"Astronomy 101: Cosmic Rays and Neutrino Observations - Understanding Stellar Activity": 1 +"Decoding Symbolism in Modern Literature and Film using Narrative Analysis Methods": 1 +"Environmental Studies: The Progression of Water Conservation Techniques through the Ages": 1 +"Virtual Reality: The Psychological Impact of Immersive Gaming on Player Behavior: An Analytical Study": 1 +"History: The Influence of Telegraphic Communication on Diplomacy during the Civil War": 1 +"Introductory Cartography: Understanding Geographic Coordinates and Topographical Maps through GIS Technology": 1 +"Interactive Physics: Velocity, Acceleration and Momentum: Learning through Pendulum Experiments": 1 +"Biology Basics: Exploring Cells and Genetics through Microscopic Observation": 1 +"French 210: Unraveling Metaphor and Allegory in Francophone Literature: A Study of Symbolism and Themes": 1 +"Exploring Earth: An In-depth Understanding of Geological Formations and Techniques in Carbon Dating": 1 +"Computational Mathematics 220: Advanced Algorithms and Data Visualization Using MATLAB": 1 +"English 210: Analyzing the Use of Metaphor in Digital Literature: Novels and Short Stories": 1 +"English 210: Novels and Short Stories: Exploring Narrative Voice and Structure in the Digital Era": 1 +"International Finance: The Influence of Digital Currency on Global Financial Markets: An Examination Using Econometric Analysis": 1 +"Physical Education: Advanced Basketball Strategies and Team Cohesion with Biometric Analyses": 1 +"Sound Design in the Digital Era: Utilizing Spectral Analysis in Audio Post-Production with Ableton Live": 1 +"Physics: Uncovering the Significance of Quantum Mechanics in Renewable Energy: Case Study on Photovoltaic Cells": 1 +"Sociology 150: Mapping the Evolution of Gender Roles Using Digital Resources from ProQuest": 1 +"Physics: Quantum Mechanics Explored through the Lens of Virtual Reality Experiments": 1 +"Advanced Programming: Ruby on Rails: Implementing Cryptography for Secure Data Flow": 1 +"Graphic Design: 3D Visualization Techniques in Architecture using AutoCAD": 1 +"Linguistics: Exploring the Evolution of Language through Computational Linguistic Tools": 1 +"Art: Modern Techniques in Digital Painting: Creating Realistic Portraits with Procreate": 1 +"Philosophy: The Intersection of Ethics and Artificial Intelligence: A Dialectical Approach ": 1 +"Data Science 101: Exploring Big Data Analytics using Apache Hadoop: A Case Study in Weather Forecasting": 1 +"Calculus: Advanced Calculus: Using Wolfram Mathematica in Integral Calculus and Differential Equations": 1 +"Literature: Unveiling Gothic Literature: An Exploration of Dark Romanticism using Text Analysis Software": 1 +"Game Development: Unity in VR Game Design: Exploring Physics-Based Puzzles in Virtual Reality Gaming": 1 +"Physics: Quantum Mechanics and Relativity - Understanding the Universe with Python": 1 +"Creative Coding: Bridging Art and Technology with Interactive Digital Installations": 1 +"Literature 101: Exploring Themes of Rebellion in Dystopian Novels": 1 +"Advanced Epidemiology: Using Machine Learning and Python to Predict Disease Outbreaks": 1 +"Psychology: The Impact of Digital Age on Human Behavior and Interpersonal Relationships": 1 +"Blockchain and Law: Legal Implications of Decentralized Financial Systems": 1 +"Religion Studies: The Influence of Buddhism on Ancient China's Political Landscape": 1 +"Data Science with MATLAB: Forecasting Climate Change Using Regression Models": 1 +"Advanced Critical Thinking: Utilizing Neural Networks and Python for Cognitive Bias Detection": 1 +"Nutritional Science: The History of Fermented Foods and their Impact on Human Health": 1 +"Chemistry: Decoding the Mystery of Chemical Reactions using the Law of Conservation of Mass": 1 +"Chemistry: An In-depth Study of Gas Laws through Real Life Applications": 1 +"Music: The Impact of Cultural Diversity on the Evolution of Jazz": 1 +"Music: The Role of Digital Audio Workstations in Modern Music Production": 1 +"Cognitive Neuroscience: Exploring Memory Retention Through fMRI Techniques": 1 +"Biostatistics: Application of Regression Analysis in Medical Research using R and Python": 1 +"Interactive French Learning: Integrating Duolingo, Memrise and Quizlet for Vocabulary Expansion": 1 +"Sociology: The Influence of Social Media on Interpersonal Communication in the 21st Century": 1 +"Biology: The Impact of pH Levels on Enzyme Activity in Human Digestion": 1 +"Mastering Logic Pro X: An Extensive Guide to Sound Mixing and Mastering in Contemporary Music.": 1 +"Exploring Physics and Gaming: Utilizing Oculus Rift in Understanding the Dynamics of Basketball": 1 +"Chemistry in Architecture: An In-depth Study of the Durability of Concrete Mixtures through Scanning Electron Microscopy": 1 +"Astrophysics: Decoding the Secrets of Neutron Stars using Pulsar Timing and Radio Telescope Data": 1 +"Advanced Study on Fluid Mechanics: Grasping the Concept of Drag and Its Impact on Aerodynamics": 1 +"The Rhythm of Business: Deciphering the Effect of Spotify's Discover Weekly on Consumer Behavior in the Music Market": 1 +"Decoding Uncertainty with Monte Carlo Simulations in Computational Physics: A Comprehensive Look at Quantum Mechanics": 1 +"Revolutionary Methods in Healthcare: Engaging Patients with Augmented Reality in Physiotherapy": 1 +"Interior Design: Dissecting Scandinavian Style: A Critical Approach using AutoCAD and Machine Learning": 1 +"Film Studies: Deconstructing Neorealism through Virtual Reality: An Examination of VR Techniques in Modern Cinema": 1 +"Artificial Intelligence: The Role of Neural Networks in Smart Cities and Sustainable Development": 1 +"Chemistry: The Role of Catalysts in Industrial Reactions - A Detailed Look at Enzyme Kinetics": 1 +"Astronomy: Comet Trails and Cosmic Dust: An In-depth Study on Interstellar Phenomena": 1 +"Neuroscience: Cognitive Enhancement through Neurofeedback Training: A Comprehensive Guide": 1 +"The Influence of Urban Architecture on Mental Health: A Sociological Perspective": 1 +"Philosophy 101: Understanding the Principles of Existentialism: A Study of Kierkegaard's Thought": 1 +"Climate Science and Agriculture: The Impact of Global Warming on Crop Yield and Farming Techniques": 1 +"JavaScript and Pro Tools for Sound Design: Exploring Sonic Textures and Spatial Audio for VR Experiences": 1 +"Music Theory: Deciphering Polyphony in Renaissance Madrigals through Digital Transcription Tools": 1 +"Sustainable Energy Solutions: The Promising Future of Solar and Wind Power in Urban Infrastructure": 1 +"Neuroscience: Exploring Neural Networks through Functional Magnetic Resonance Imaging and the NIRS (Near-Infrared Spectroscopy) Technique": 1 +"Culinary Arts 101: Exploring Flavors, Aromas, and Sustainable Cooking Techniques": 1 +"Astronomy for Beginners: Understanding the Solar System through Telescope Observations": 1 +"Biology: Understanding DNA, RNA, and the Intricacies of Genetic Engineering": 1 +"Art History: Examining Renaissance Frescoes through Infrared Reflectography and X-Ray Fluorescence": 1 +"Zoology: Exploring Animal Behavior and Ecosystems through Wildlife Photography": 1 +"Philosophy: Delving into Existentialism in Virtual Reality through Sartrean Principles and Human Interaction Analysis": 1 +"Geography: Enhancing Engagement in Virtual Classrooms using Google Earth and Zoom": 1 +"Advanced Computing 210: Mastering Python Programming with Machine Learning Algorithms": 1 +"Algebra: Employing Matrix Theory in Graphic Design": 1 +"Chemical Magic: Discovering Acid-Base Reactions through Hands-on Experiments and Titration": 1 +"Unlocking the Mystery of Data Transmission: A Comprehensive Study of OSI Model using Juniper Networks and OSPF Protocol": 1 +"Galactic Journeys: Understanding Andromeda and the Chandra X-ray Observatory's Impact on Astrophysics": 1 +"Global Literature: Enlightenment Era, the Invention of the Typewriter, Haiku Poetry, and the Evolution of the Short Story": 1 +"Athletic Training: Implementing Kettlebells, Resistance Tubes, and Fitness Trackers in Forestry Work for Maximum Endurance Development": 1 +"Breaking Creative Barriers: The Influence of DeepArt AI in Contemporary Graphic Design": 1 +"Maximizing Integration of Dropbox in Education for Efficient Knowledge Exchange": 1 +"Advanced Audio Engineering in GarageBand: A Detailed Exploration of Compression and EQ Techniques in Music Production": 1 +"Algebra: Fractal Patterns in Architecture and their Virtual Visualization": 1 +"Data Science Essentials: Mastering Classification Algorithms using R": 1 +"Internet of Things and the Economy of Connectivity: An Exhaustive Examination Using Apache Kafka": 1 +"Chemistry: Molecular Analysis and Applications in Food Science": 1 +"Psychology: Exploring Human Behavior through Cognitive Behavioral Therapy": 1 +"Physics: Understanding Quantum Mechanics and Its Impact on Modern Technology": 1 +"Digital Art: The Influence of Oculus Rift on Virtual Sculpting Techniques": 1 +"Software Development: Machine Learning Algorithms with PyTorch and Scikit-learn": 1 +"Economics: Utilizing Cryptocurrency in Macroeconomic Forecasting": 1 +"Creative Expression in Athletics: Depicting Gymnastics through Watercolor Paintings": 1 +"Earth Science: Deciphering Climate Patterns through Satellite Imagery": 1 +"Exploring Harmonics: An Introduction to Music Theory through Digital Synthesizers": 1 +"Information Security: Mastering Firewall Technologies with Cisco, Juniper, and Fortinet": 1 +"Sociology 101: The Impact of Social Media on Generation Z: A Deep Dive into Instagram's Algorithm": 1 +"The Basics of Astronomy: Understanding the Solar System and the Universe using Augmented Reality Models": 1 +"Elementary Nutrition: Discovering the Power of Probiotics through a Mediterranean Diet": 1 +"Physical Education: The Role of Flexibility in Gymnastics: Emphasizing Pilates and Yoga": 1 +"Education Technology 401: Enhancing Learning Experiences with Google Glass in Augmented Reality Puzzles": 1 +"Linguistics 101: The Science of Social Dialogue: Analyzing Sociolinguistics through Regression Analysis in R": 1 +"Geometry: Using the Pythagorean Theorem to Navigate in Triangular Spaces": 1 +"Biology: An In-depth Study of Photosynthesis and the Calvin Cycle in the Miracle of Plant Growth": 1 +"Science for Young Minds: Understanding the Water Cycle through Virtual Reality Simulations": 1 +"Advanced Web Development: Using Django in Python with PyCharm IDE": 1 +"Python for Data Analysis: An Advanced Course on Machine Learning Algorithms and Predictive Modelling": 1 +"Mechanical Engineering: Exploring the Principles of Thermodynamics and Heat Transfer in HVAC Systems ": 1 +"Sports Science: The Dynamics of Human Movement - Using Motion Capture Technology for Performance Analysis": 1 +"Utilizing Blockchain Technology for Enhanced Security and Transparency in Supply Chain Management": 1 +"High School History: Deciphering Ancient Civilizations through Digital Archaeology Tools": 1 +"Progressive Horticulture: Implementing Hydroponic and Aeroponic Techniques for Sustainable Urban Farming": 1 +"Global Finance: Cryptocurrency and its Impact on International Monetary Systems: A Guide to Secure Transactions": 1 +"R Programming for Business Intelligence: A Deep Dive into Stock Market Behavior and Financial Forecasting": 1 +"Physics: Mastery of Quantum Mechanics through Simulations Using the Schrödinger Equation": 1 +"Microbiology of Wine Production: An In-depth Study on Yeast Fermentation, Temperature Control, and Spectral Analysis.": 1 +"The Environmental Impact of Renewable Energy Systems: A Deep Dive into Solar Farm Ecosystems": 1 +"From Pen to Pixel: Exploring the Convergence of Traditional and Digital Animation Techniques": 1 +"Bioinformatics: Implementing Machine Learning in Genetic Sequence Analysis with R Programming": 1 +"Art History: The Influence of Impressionism on Modern-day Photography in Europe": 1 +"Ethics in Technology: The Moral Implications of AI in Predictive Policing": 1 +"Microeconomics 101: Understanding Consumer Behavior through the Lens of Game Theory": 1 +"Physics: The Role of Quantum Mechanics in the Development of Superconducting Materials": 1 +"Thermal Energy: An In-depth Analysis of Heat Transfer in HVAC Systems": 1 +"Cloud Security Essentials: A Comprehensive Guide to Data Protection, Privacy, and Compliance": 1 +"Marketing Psychology: Decoding the Consumer Mindset with Neuromarketing and Data Analytics": 1 +"Advanced Spanish: Incorporating Drama in Language Learning and Storytelling": 1 +"Poetry: Symbolism in Postmodern Literature: A Deep Dive into Sylvia Plath's Works": 1 +"The Business of Art: Navigating the Art Market with Data Analysis and Machine Learning": 1 +"Chemistry 101: Organic Chemistry and the Concept of Bond Energy - Understanding Exothermic Reactions": 1 +"Language Games: Vocabulary Expansion and Sentence Construction through Crosswords and Grammarly": 1 +"Geometry: Mathematical Concepts in Architecture: Using Pythagorean Theorem and CAD Software": 1 +"Unlocking the Secrets of Sleep Disorders: Utilizing EEG, Polysomnography, and Cognitive Behavioral Therapy": 1 +"Sports Science: Elements of Athletic Performance: Analyzing VO2 Max with Exercise Stress Testing": 1 +"Music Theory: Grasping Classical Composition through the Study of Baroque Counterpoint Techniques": 1 +"Geography: Employing GIS to Visualize the Environmental Variations of Africa": 1 +"Mathematics: Unraveling the Secrets of Fractals through Computer Programming": 1 +"Evaluating the Impact of Climate Change on Agricultural Practices: A Comprehensive Study on Hydroponic and Aeroponic Farming Systems": 1 +"Music meets Technology: The Integration of MIDI Controllers and AI in Contemporary Music Production": 1 +"Marine Biology: Exploring the Mysteries of Deep-Sea Creatures through Advanced Scuba Diving Techniques": 1 +"Geography: Understanding Landforms through Advanced Geospatial Technology and Satellite Mapping": 1 +"Genetic Engineering: Decoding DNA Sequencing Using CRISPR-Cas9 Genome Editing Techniques": 1 +"Ruby Programming Mastery: Rails, Sinatra and RubyMine Introduction": 1 +"Cybersecurity Essentials: Deep Dive into Cryptography - Understanding RSA, AES and SHA": 1 +"Materials Science: Developing Sustainable Packaging using Mushroom-Based Bioplastics": 1 +"Culinary Science: A Gourmet Journey through Sous Vide Cooking and Food Pairing with Wine Tasting": 1 +"Chemistry: The Significance of Chromatography in Organic Compound Analysis": 1 +"Introduction to Mobile Application Development: Building Virtual Reality Experiences with Unity and Google VR SDK": 1 +"Music Technology: The Influence of Digital Audio Workstations in Sound Design - Beat Creation with Logic Pro X": 1 +"Language Studies: Improving Grammar Skills using Grammarly’s Advanced Writing Assistant and Plagiarism Checker": 1 +"Linguistics: Advanced Language Learning Strategies with Rosetta Stone’s Immersive Method": 1 +"Digital Art: The Integration of Haptic Feedback in Virtual Sculpting using ZBrush and a VR Glove": 1 +"Cultural Anthropology: Understanding Societal Paradigms through the Comparison of Bollywood Cinema and Hollywood Movies": 1 +"Agricultural Science: Utilizing Drones and Machine Learning in Crop Disease Diagnosis and Prevention": 1 +"Sports Science: Evaluating Athletic Performance through Garmin Fitness Trackers and Augmented Reality Training": 1 +"Mathematics: The Impact of Graph Theory on Network Analysis and Optimization Algorithms": 1 +"Chemistry: The Impact of Green Chemistry Principles on Pharmaceutical Manufacturing": 1 +"Music and Technology: Integrating MIDI Controllers with Ableton for Live Performances": 1 +"Python & Django: Crafting Dynamic Websites from the Ground Up": 1 +"Unraveling Quantum Mechanics: An Exploration of Particle-Wave Duality and the Double-Slit Experiment": 1 +"Cultural Anthropology: The Role of Folklore in Shaping Societal Norms in East Asia": 1 +"Advanced Research: Animal Behavior and Evolutionary Analysis in Wildlife Conservation": 1 +"Sustainability, Solar Energy, and Smart Grids: The Future of Energy Efficient Homes": 1 +"Digital Media: Leveraging Spotify and Pandora for Event Management in the Digital Age": 1 +"Music: Exploring the Fundamentals of Rhythm and Melodies: Songwriting with GarageBand": 1 +"Health Science: The Impact of Sleep Patterns on Mental Health and Cognitive Performance": 1 +"The Role of the Compass and Sextant in Maritime Exploration: Navigating the Age of Discovery": 1 +"Chemical Analysis in Wine Making: Application of Spectrophotometry and Gas Chromatography": 1 +"Macroeconomics: Global Fiscal Policies and Monopolistic Competition for Market Dominance": 1 +"Ethics 101: Deconstructing Moral Relativism and Consequentialism in Contemporary Politics": 1 +"Chemistry: Reaction Kinetics and Catalytic Activity - Decoding Arrhenius Equation through Enzyme Studies": 1 +"Quantum Physics 101: Uncertainty Principle and Quantum Entanglement - Unraveling the Mysteries of Quantum Mechanics": 1 +"Cosmology Essentials: Unfolding the Secrets of the Cosmic Microwave Background, Dark Energy and Inflation Theory": 1 +"Art & Technology: Principles of Color Theory and Texture in Digital Painting": 1 +"French Cinema: Developing Film Critique Skills through the Study of Nouvelle Vague and Subtitle Translation Software": 1 +"Advanced Robotics: Exploring Autonomous Systems with Machine Learning Tools": 1 +"Philosophy: Understanding Existentialism through the Lens of Film Noir": 1 +"Programming: The Application of Python in Robotic Manipulation": 1 +"Physical Education: Mastering Balance Techniques in Gymnastics Using Virtual Reality": 1 +"Quantum Mechanics: Unraveling the Mystery of Quantum Entanglement": 1 +"The Resonance of Jazz: Exploring Improvisation and Syncopation in Ableton Live": 1 +"Navigating Fractal Geometry: From Mathematics to Landscape Design with SketchUp": 1 +"Intermediate History: The Evolution of Currency and the Impact of Digital Transactions": 1 +"Art History: The Influence of Light in Impressionism: Color, Reflection, and Texture with the Use of Plein Air Painting": 1 +"Ecology: The Effect of Urbanization on Bird Populations: A Study through Drone Surveillance": 1 +"English: Utilizing Haikus to Address Social Injustice in Contemporary Literature": 1 +"Biological Sciences: The Role of CRISPR in Genetic Engineering and Its Influence on Disease Control": 1 +"Quantum Chemistry: Understanding Molecular Structures through Schrödinger's Equation": 1 +"Psychology: The Use of Cognitive Behavioral Therapy in Treating Post-Traumatic Stress Disorder": 1 +"Geometry: The Application of Fractals in Nature and their Mathematical Representation": 1 +"Astrophysics: Exploring Galactic Dynamics using Kepler's Laws and MATLAB Programming": 1 +"Econometrics: An In-depth Analysis of Regression Models in Predicting Stock Market Trends using STATA": 1 +"In-depth Study of Enzyme Kinetics using Spectrophotometry, Nuclear Magnetic Resonance, and Fluorescence Quenching": 1 +"Philosophy of Science: Decoding Quantum Reality Through the Double Slit Experiment ": 1 +"Literature: Evaluating the Impact of Postcolonial Narratives on Modern Literature": 1 +"Computer Science: Unraveling the Complexity of Big Data Analytics using Hadoop and Spark": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Schrödinger's Cat Paradox": 1 +"Sociology: The Role of Social Media in Shaping Global Political Perspectives": 1 +"Art: The Evolution of Graffiti: From Street Art to Social Commentary": 1 +"Classical Literature: Analyzing Symbolism and Allegory in Dante's Divine Comedy": 1 +"Chemistry: Unraveling the Mysteries of Organic Compounds through NMR Spectroscopy": 1 +"The Contributions of Nanotechnology to Sustainable Energy: An Examination of Photovoltaic Cells ": 1 +"Philosophy 101: An Introduction to Existentialism and the Human Condition": 1 +"Mathematics: Predictive Analytics in Sports: A Deep Dive into Sabermetrics": 1 +"Cyber Sentinel: Exploring Cybersecurity Threats and Solutions in the Era of IoT": 1 +"Cinematic Storytelling and Audience Engagement: A Comprehensive Study of Interactive Media.": 1 +"Physics Fundamentals: Quantum Mechanics Explored Through Advanced Simulation Modelling": 1 +"Human Psychology: Unveiling the Intricacies of Emotional Intelligence Through Neuroimaging Techniques": 1 +"Artificial Intelligence: Understanding Deep Learning Algorithms Through Neural Networks and Tensorflow": 1 +"Modern Literature: Interpreting Symbolism and Metaphor in Contemporary Poetry through Historical Context": 1 +"Astrophysics Revealed: Exploring Dark Matter Through Electromagnetic Spectrum Analysis": 1 +"Advanced Robotics: Understanding Humanoid Evolution Through Machine Vision and Kinematics": 1 +"Archaeology Unearthed: Deciphering Ancient Civilizations Through Ground-Penetrating Radar Technology": 1 +"Healthcare Economics 101: Predicting the Impact of Epidemics on Global Economy Using Stochastic Modelling": 1 +"Game Theory in Politics: A Study on Strategic Decision Making in International Relations": 1 +"Ethics in Journalism: The Role of Digital Platforms in Shaping Public Opinion and Its Ethical Implications": 1 +"Chemistry: The Role of Biochemical Reactions in Athletic Performance": 1 +"Psychology 220: The Influence of Ballet on Mental Well-being and Emotional Expression": 1 +"Art History: Surrealism and its Relationship with Post-World War II Society": 1 +"The Integration of Folklore in Contemporary Literature: A Global Perspective": 1 +"Mastering Vocabulary: Using Quizlet App and Concept Mapping Techniques for Enhanced Language Acquisition": 1 +"Environmental Science: The Impact of Climate Change on Animal Behavior and Evolution": 1 +"Information Technology: Utilizing Python for Predictive Analytics in Sports Statistics": 1 +"Mastering Adobe Lightroom: An In-depth Study of Photo Editing Software for Professional Photography": 1 +"Physics and Music: Exploring Harmonics and Resonance through Spectral Analysis": 1 +"Computer Science: Algorithms and Patterns in Classical Music: An Exploration with MATLAB": 1 +"Advanced Biology: The Interplay of Enzymes and Hormones in Human Metabolism: An Endocrine Perspective": 1 +"The Era of Streaming: The Internet's Role in the Transformation of Music Listening Habits": 1 +"Statistics: Unveiling Patterns: Examining Probability Theory through the Lens of Monte Carlo Simulations": 1 +"Mastering Python: Exploring Lists, Arrays, Iterators, and the Power of PyTest Framework": 1 +"Geometry: Practical Use of Compass and Straightedge in Constructing and Analyzing Shapes": 1 +"Chemistry: The Molecular Kinetic Theory: Avogadro's Contribution to Chemistry": 1 +"Astrobiology: Deciphering the Possibility of Life in Exoplanets through Spectroscopy": 1 +"Evolution of Transportation: The Influence of the Steam Engine on Modern Travel Methods": 1 +"Artificial Intelligence with R: Exploring the World of Neural Networks": 1 +"Pixel Pioneers: Journey through JavaScript in Web Development": 1 +"Chemistry 210: Unraveling Molecular Structures: Advanced Organic Synthesis and its Implications for Medicine": 1 +"History: The Clash of Ideologies: A Comparative Analysis of Democratic and Communist Socio-political Systems": 1 +"Literary Studies: Deconstructing Metaphors in Modernist Literature: A Poststructuralist Approach": 1 +"Geology: Mineral Mapping and Geospatial Technologies: Understanding Earth's Resources and Environmental Impact": 1 +"Advanced Robotics: Exploring Artificial Intelligence in Autonomous Systems": 1 +"Astrophysics: Probing the Enigma of Dark Matter through Gravitational Lensing Observations": 1 +"Mathematics: Fractals and Chaos: A Deeper Look into Non-linear Dynamics": 1 +"Business Studies: The Digital Revolution: Understanding the Impact of E-commerce on Traditional Retail": 1 +"Conservation Biology: Climate Change and Wildlife: Assessing the Impact on Migratory Patterns": 1 +"Digital Art: Enhancing Creativity with Augmented and Virtual Reality Tools in Adobe Suite": 1 +"Philosophy: Virtual Intelligence and the Ethical Implications on Human Decision Making": 1 +"Advanced biology: Understanding the Role of Enzymes in Digestive Processes": 1 +"Digital Literacy and Interactive Learning: Enhancing Education through VR, Google Classroom, and Java Programming": 1 +"Geography: Unraveling Earth's Ecosystems through Remote Sensing Technology": 1 +"World Literature: Analyzing Modern Literature through Deconstructivist Approaches": 1 +"Blockchain Technology and the Influence of Artificial Intelligence on Financial Security: Ethical Considerations & Future Prospects": 1 +"Physics 202: Quantum Mechanics: An In-depth Study of Quantum Entanglement": 1 +"Introductory Physics: Uncovering the Mysteries of Light using Prism Experiments": 1 +"Kinetic Energy and Solar Power: Utilizing Solar Energy for Sustainable Transportation": 1 +"Communication: Digital Narratives and their Impact on Social Media Engagement": 1 +"Physics: Understanding Quantum Entanglement Through Photonic Interaction Experiments": 1 +"Advanced Chemistry: Exploring Biochemical Pathways Through Mass Spectrometry Techniques": 1 +"Advanced Mathematics: The Application of Fractal Geometry in Understanding Natural Phenomena": 1 +"Environmental Science: Using GIS and Remote Sensing to Assess Climate Change Impact on Biodiversity": 1 +"Sociology: Harnessing Machine Learning in Analyzing Social Media Interactions Across Cultures": 1 +"Advanced Robotics: Applying Microsoft Kinect in Physical Therapy Techniques ": 1 +"Big Data Analytics: Implementation of Spark and Hive in Analyzing Genomic Data": 1 +"Psychology: Utilizing fMRI to Understand the Cognitive Mechanisms Behind Decision Making": 1 +"Sports Science: The Role of Cardiovascular System in Endurance Training with the Application of Echocardiography ": 1 +"Paleontology: Uncovering Prehistoric Life and Biodiversity using Isotope Geochemistry and 3D Fossil Scanning": 1 +"Chemistry 101: Unveiling the Mysteries of Organic Compounds with Spectroscopy Techniques": 1 +"Psychology: Understanding Human Behavior through the Lens of Social Cognitive Theory": 1 +"Advanced Biology: Decoding the Human Genome - An In-depth Study of DNA Sequencing Methods": 1 +"Advanced Statistics: Predictive Modelling Using Regression Analysis in R Programming": 1 +"The Science of Architecture: Exploring Structural Integrity through Stress-Strain Analysis": 1 +"Theoretical Physics: Quantum Mechanics and the Implications for Modern Technology": 1 +"Music Theory: The Influence of Fibonacci Sequence on Rhythm Patterns in Classical Compositions": 1 +"Environmental Studies: Using Satellite Imagery for Climate Change Monitoring and Disaster Management": 1 +"Culinary Science: Molecular Gastronomy - A Journey Through Taste, Texture and Temperature": 1 +"Modern History: The Manhattan Project, Nuclear Fission and the Cold War Era": 1 +"Physics: Leveraging Quantum Mechanics in Understanding Black Holes": 1 +"Graphic Design: 3D Modeling with Blender for Virtual Reality Simulations": 1 +"TCP/IP and UDP Protocols Unveiled: A Comprehensive Analysis Using Wireshark Network Analyzer": 1 +"Advanced Botany: Delving into Fungi Kingdom with Phylogenetic Trees and Metagenomics": 1 +"Global Cuisine: Exploring Gastronomy and Culinary Traditions Through 360° GoPro Food Videography": 1 +"Creative Tutoring: Introducing Deductive Logic to Early Year Students": 1 +"Software Engineering: Docker and Travis CI/CD: Creating Cloud-Based Education Platforms for Students": 1 +"Machine Learning: Application of TensorFlow and PyTorch in Predicting Financial Market Trends": 1 +"The Industrial Evolution: How Steam Engine, Telegraph, and the Locomotive Transformed Trade and Societies": 1 +"Physiology 101: The Respiratory System and High-Altitude Performance: A Study of Chronic Mountain Sickness": 1 +"Phylogenetic Diversity: A Deep Dive into the Evolutionary Tree with Bioinformatics Tools": 1 +"Quantum Physics: Mastering Quantum Tunneling and Superposition with MATLAB": 1 +"Rational Discourse: Advanced Study of Argumentation Theory and Critical Thinking Techniques": 1 +"Microscopic Human Anatomy: Exploring Cellular Structures and Functions using Electron Microscopy": 1 +"Cultural Anthropology: Comparative Study of Indigenous Societies using Ethnographic Research Methods": 1 +"Astronomy: Unraveling Cosmic Mysteries with Radio Telescopes and Spectroscopy": 1 +"Applied Geometry: Exploring Fractal Patterns in Nature using MATLAB": 1 +"Innovative Robotics: Designing Autonomous Vehicles with ROS, Gazebo, and SLAM Algorithms": 1 +"The Role of Solar Energy in the Future of Sustainable Chemistry": 1 +"Sports Science: Application of Inertial Sensors in Biomechanical Analysis of Swimming Techniques": 1 +"Chemistry Essentials: Examining Chemical Reactions through Titration Techniques": 1 +"Fine Arts: Mastering Fresco Painting - An In-Depth Study of Using Lime Water and Pigments": 1 +"Mathematics: Exploring the Implications of Fractal Geometry in Modern Architecture": 1 +"Unlocking the Secrets of Calculus: Applying Derivatives in Engineering with AutoCAD": 1 +"Engaging English Literature: Utilizing Podcasts, Flipgrid, and Padlet for Interactive Poetry Analysis ": 1 +"Data Science: Streamlining Business Processes with MATLAB and Neural Networks ": 1 +"R Programming for Data Analysis: Understanding Decision Trees and Random Forests with Rattle ": 1 +"Advanced Physics: Probing the Mysteries of Quantum Field Theory with Maple": 1 +"Global Studies: Navigating the Complexities - A Deep Dive into African Politics through Achebe's Novels ": 1 +"Introductory Cosmology: The Marvels of Outer Space - Comprehending Black Holes, Supernovae, and Exoplanets": 1 +"Advanced Chemistry: Investigating Chemical Kinetics through Spectrophotometry": 1 +"Astronomy: Understanding Stellar Evolution through Spectral Analysis and Telescope Observation": 1 +"Harmonics in Music: A Study of String Vibrations and Frequency using Oscilloscopes": 1 +"Fine Arts: Renaissance Period and Its Influence on Modern Painting Techniques": 1 +"Food Science: Exploring Fermentation Processes with pH and Temperature Probes": 1 +"Data Analysis in Basketball: A Deep Dive into Player Statistics using R, Tableau, and Java": 1 +"Wildlife Videography: Mastering Underwater Filming with GoPro Action Cameras": 1 +"Improving Efficiency of Electric Vehicles through Computational Fluid Dynamics and Finite Element Analysis of Lithium-ion Batteries ": 1 +"Advanced Data Science: Applying PyTorch and Scikit-Learn for Deep Learning in Time Series Forecasting": 1 +"Physics: Exploring Electromagnetic Wave Propagation and Polarisation using Waveguides and Polarimeters": 1 +"Advanced Microbiology: Exploring the Intricacies of Cellular Respiration through Biochemical Processes": 1 +"Machine Learning: Understanding the Power of Decision Trees and Random Forests in Predictive Analytics": 1 +"Existential Psychology: Applying Sartre's Philosophy to Understand the Human Condition and Free Will": 1 +"The Complexity of Human Visual System: A Neurophysiological Approach and the Role of Retinal Electrodiagnosis in Visual Field Defects": 1 +"Economics in Motion: The Impact of Technological Disruption on Market Structures Analyzed through Predictive Modeling": 1 +"In-depth Examination of Tea's Influence on Cardiac Health Using Echocardiogram, Heart Rate Variability, and Cardiac Magnetic Resonance Imaging: Investigating the Role of Theanine, Catechins, Flavonoids, and Vitamins B1, B2, and C": 1 +"Astrophysics Explored: Cosmic Microwave Background and Dark Matter - Decoding the Secrets of the Cosmos": 1 +"Visual Artistry: Perfecting Charcoal Techniques in Portrait Drawing: The Mastery of Cross-Hatching and Stippling Methods": 1 +"Chemistry Uncovered: Utilizing Molecular Orbital Theory in the Study of Chemical Bonding with Spectroscopy ": 1 +"Innovative Study of Color Impact in Fresco Techniques through Fresco Secco and Buon Fresco: Assessing Atmospheric Perspective and Spatial Illusions": 1 +"Chemistry: The Intricacies of Polymer Chemistry through the Lens of Biodegradable Plastics": 1 +"Neuroscience: Exploring the Human Brain's Plasticity through Cognitive Rehabilitation and Neuroimaging Techniques": 1 +"Urban Planning: Utilizing AI in Infrastructure Development and Traffic Flow Optimization": 1 +"Electromagnetics in Action: Unraveling the Mysteries of Light Propagation, Optical Fiber, and Infrared Technology": 1 +"Astrophysics: Gravitational Waves and Black Holes: An Insight into Einstein’s Theory of Relativity": 1 +"EdTech in Special Education: Enhancing Access to Learning through Assistive Technology and Adaptive Devices": 1 +"Cultural Studies: The Influence of Streaming Services on Global Media Consumption and Cultural Exchange": 1 +"Environmental Science: Using Satellite Imagery to Monitor Deforestation and Its Impact on Climate Change": 1 +"Art: The Evolution of Digital Art and Its Influence on Contemporary Aesthetics and Gallery Exhibitions": 1 +"Data Science in Healthcare: Applying Machine Learning to Predictive Diagnostics and Patient Outcome Analysis": 1 +"Young Biologists: The Mystery of DNA Structures and Genetic Coding in Primary Biology": 1 +"Geography: An In-Depth Analysis of Weather Patterns and Climate Zones Utilizing Google Earth for Interactive Meteorological Studies": 1 +"Media Studies: The Impact of Netflix Series on Perception of Mental Health Issues in Contemporary Society": 1 +"Marketing: The Influence of Sensory Marketing in Consumer Behavior and Retail Experience": 1 +"Assessing the Financial Implications of E-commerce Giants on Global Economy through Net Worth Analysis": 1 +"Environmental Science: Harnessing the Power of Hydroelectric and Geothermal Energy for Sustainable Future": 1 +"Detailed Examination of Mediterranean Diet's Role in Metabolic Health Using Blood Tests, MRI Scans, and Glucose Monitors: A Study on Omega-3, Fiber, Vitamins, and Minerals": 1 +"Engineering: The Fundamentals of Light and Optics - Understanding Lasers and Fiber Optics": 1 +"Music Production: The Role of Ableton Live in Electronic Dance Music Creation": 1 +"Fine Arts: Discovering Printmaking and Etching Techniques using Intaglio Process with a Printing Press": 1 +"Sustainable Architecture: Utilizing Green Building Techniques for Climate Change Mitigation": 1 +"Gender Representation in Film: Analyzing the Impact of Bechdel Test on Hollywood – A Ten-Step Study": 1 +"Linguistics: Semiotics of Advertising - Decoding Messages via Structuralist and Post-Structuralist Theories": 1 +"Chemistry: Understanding the Molecular Structure and Spectroscopy": 1 +"Advanced Macroeconomics: Deciphering Global Economic Policies through Regression Analysis in Eviews using Panel Data and Econometric Models": 1 +"Culinary Arts: The Influence of Molecular Gastronomy on Fine Dining in Contemporary Society": 1 +"Programming for Beginners: Exploring Java and the Art of Error Handling": 1 +"Cybersecurity Fundamentals: Network Security and Ethical Hacking through Kali Linux": 1 +"Philosophy of Mathematics: Understanding Gödel's Incompleteness Theorems and the Foundations of Logic using Set Theory": 1 +"Cinematic Studies: Utilizing Machine Learning in Film Genre Classification using Tensorflow": 1 +"Biology: Decoding Genetic Sequences - An Introduction to Bioinformatics using Python": 1 +"Architectural Design: The Impact of Acoustic Phenomena on Concert Hall Architecture": 1 +"Physical Chemistry: A Deep Dive into Quantum Mechanics using Gaussian Software": 1 +"Engineering: Investigating Electromagnetic Waves through Antenna Design and Microwave Technology": 1 +"Art History: The Role of Tenebrism in the Spanish Golden Age Art": 1 +"Cosmology for Beginners: Unveiling the Secrets of Dark Matter and Dark Energy": 1 +"Environmental Science: Understanding Ocean Acoustics - Implications for Marine Life Conservation": 1 +"Culinary Science: The Art of Fermentation - An Exploration of Microbiology & Flavor Profiles": 1 +"Industrial Chemistry: The Role of Gas Chromatography and Mass Spectrometry in Perfume Manufacturing": 1 +"Metaphysics: The Impact of String Theory on Modern Philosophy - A Multidimensional Approach.": 1 +"Physics of Sound: Harmonics, Resonance, and Acoustic Phenomena in Musical Instruments": 1 +"Advanced Java: Understanding Data Structures and Algorithms with Binary Search Trees and Hashing": 1 +"Anthropology: Ritualistic Practices in Prehistoric Cultures: An Examination of Cave Art Symbolism": 1 +"Fine Arts: The Impact of Geometric Abstraction in Modern Architecture": 1 +"Blockchain & Cybersecurity: Reinventing Data Protection with Decentralized Systems - Approach 7": 1 +"Biology: Understanding Evolution through the Lens of DNA Sequencing and Genomic Comparisons": 1 +"Cognitive Psychology: Decoding the Human Mind with fMRI Scans and Pattern Recognition Algorithms": 1 +"R Programming for Environmental Science: GIS Integration, Spatial Analysis, Predictive Modelling, and Data Interpretation Techniques": 1 +"Economic History: The Cotton Gin, the Spinning Jenny, and their Effect on the Cotton Economy": 1 +"Advanced Space Science: Deciphering the Universe through Radio Astronomy and Spectral Analysis": 1 +"Chemistry: Studying Molecular Structures through Virtual Reality with Google Cardboard": 1 +"Exploring the Universe: An Introduction to Astrophysics using Radio Telescopes": 1 +"Diving into European History: Using Virtual Reality and Google Earth for a Comparative Study of Ancient Civilizations": 1 +"Literature: The Role of Metaphors in Modernist Novels": 1 +"Computer Science: Machine Learning Algorithms in Natural Language Processing using Java and Naive Bayes Classifier": 1 +"Ecology: Understanding Animal Behavior through Bioacoustics and Data Visualization": 1 +"Music Theory: Exploring Rhythmic Patterns through Digital Audio Workstations": 1 +"Sociology: The Impact of the Printing Press on Social Reform Movements during the Renaissance": 1 +"Fine Arts: Analyzing the Impact of Urban Landscapes on Postmodern Architectural Designs": 1 +"Quantum Physics: Understanding Quantum Entanglement through Mathematical Models.": 1 +"Advanced Anthropology: The Development of Social Norms - A Comprehensive Study of Cultural Evolution": 1 +"The Telegraph and the Steam Engine: Tracing the Tracks of the Second Industrial Revolution": 1 +"The Impact of Renewable Energy and AI-Based Weather Forecasting on Climate Change Mitigation": 1 +"Literature Studies: Postmodern Narratives and Absurdist Themes - An AI Critique with Semantic Analysis": 1 +"Cellular Biochemistry: Exploring Aerobic Glycolysis through Proteomics and Genomic Sequencing": 1 +"Calculus: Integrals and Derivatives - Understanding Rate of Change with Fundamental Theorem of Calculus": 1 +"Astrophysics: Deciphering Dark Matter, String Theory, and the Fundamentals of Gravitational Waves": 1 +"Data Analysis: Interpreting Trends through Regression Analysis in Python: A Journey into Inferential Statistics": 1 +"Teaching Techniques 401: Enhancing Classroom Engagement with Interactive Whiteboards and Augmented Reality Tools": 1 +"Biology: Zoology and the Magic of the Scanning Electron Microscope": 1 +"Psychology: The Role of Mindfulness and Cognitive Behavioral Therapy in Managing Chronic Pain": 1 +"Advanced Physics: Understanding Quantum Mechanics through the Double Slit Experiment": 1 +"Political Science: The Impact of Digital Media on Public Perception and Voting Behavior": 1 +"Biochemistry: The Influence of Genomic Medicine on Personalized Healthcare and Disease Prevention": 1 +"Data Analysis: Creating Predictive Models for E-commerce using Big Data and Machine Learning": 1 +"Marine Biology: The Effect of Ocean Acidification on Coral Reefs and Marine Biodiversity": 1 +"Calculus: Grasping the Fundamentals of Integral Calculus with the Aid of Matlab": 1 +"Criminology: Analyzing Crime Rates and Social Inequality through the Lens of Strain Theory": 1 +"Investment Analysis: Risk Management and Diversification in Cryptocurrency Portfolio using Blockchain": 1 +"Astrophysics: Understanding the Universe: From Black Holes to Dark Matter Using Celestia Software.": 1 +"Anthropology: The Influence of Printing Press Laws on the Rise of Newspapers and Literacy in the Renaissance Period": 1 +"Cognitive Development in Children: Understanding Empathy and Altruism Through Psychological Theories": 1 +"Advanced Chemistry: Protein Structure Analysis Using X-ray Crystallography and Nuclear Magnetic Resonance Techniques": 1 +"The Science of Sleep: A Comprehensive Study of Sleep Patterns and Neurological Activity using EEG": 1 +"Digital Media: Harnessing YouTube for the Understanding of Cinematography and Filmmaking Techniques": 1 +"Geography: Assessing the Impact of Urbanization on Climate Change using Drone Technology and 3D Mapping": 1 +"Language Games: Mastering Linguistics and Semantics Using Crosswords, Grammarly, and the Google NLP Tool": 1 +"Sustainable Practices in Fashion Design: Incorporating Circular Economy Principles": 1 +"The Business of Cinema: Exploring the Global Film Industry with Blockchain Technology and AI": 1 +"Astrophysics: The Implications of Quantum Mechanics in the Study of Black Holes and Gravitational Waves": 1 +"Global Politics: The Role of Nuclear Weapons in the Making of Modern Diplomacy": 1 +"Advanced Geometry: Utilizing Python Programming in Computational Geometry for Urban Planning": 1 +"Sociology: The Impact of Social Media on Youth Culture and Identity Formation": 1 +"Biotechnology: The Application of Nanotechnology in Drug Delivery Systems": 1 +"Environmental Science: The Influence of Climate Change on Global Food Security": 1 +"Literature: The Evolution of Feminist Narratives in Post-Modernist Literature": 1 +"Psychology: Understanding Human Behaviour through the lens of Cognitive Behavioural Therapy ": 1 +"Music Theory: The Influence of Digital Technology on Contemporary Composition and Sound Design": 1 +"Artificial Intelligence: Exploring Machine Learning Applications in Predictive Analytics": 1 +"Chemistry: The Role of Green Chemistry in Sustainable Industrial Practices": 1 +"Chemistry: The Science of Material Coloration: Understanding Dyes and Pigments": 1 +"Computer Programming: Implementing Machine Learning Algorithms with TensorFlow": 1 +"Musicology: The Role of the Electric Guitar in the Development of Rock Music in the 1960s": 1 +"Cultural Studies: Examining the Impact of Instagram Influencers on Body Positivity Movements": 1 +"Advanced World History: The Influence of Biotechnology on Global Health Policies": 1 +"Physics: Modeling Seismic Waves using Python, Fourier Transforms, and Finite Difference Methods": 1 +"Statistics: Predicting Stock Market Trends Using Time Series Analysis": 1 +"Molecular Biology: Applying Confocal Microscopy in Studying Neuronal Activity with Calcium Imaging": 1 +"Genetics: Unraveling the Mysteries of RNA Splicing and Alternative Exon Usage": 1 +"Digital Literacy: Leveraging Microsoft Sway and Apple iBooks Author for Interactive Content Creation": 1 +"Advanced Physics: Understanding Quantum Mechanics through the Use of Quantum Espresso and VASP Software Tools": 1 +"Digital Art: Creating Hyperrealistic Portraits with Procreate and Wacom Tablet": 1 +"French Literature: Delving into Symbolism and Intertextuality in Proust's Works": 1 +"Astronomy for Teens: Exploring the Cosmos with Stellarium and Google Sky": 1 +"Deep Dive into Genetics: Decoding DNA Sequencing with CRISPR and Next-Generation Sequencing": 1 +"War and Cinema: The Impact of Historical Conflicts on Film Noir": 1 +"Architectural Design: The Art of Sketching and Modeling with AutoCAD and Revit Software": 1 +"Performance Analysis in Individual Sports: Applying Dartfish and LongoMatch Software in Tennis": 1 +"The Business of Fashion: Navigating the Retail Landscape with the Use of Big Data and AI": 1 +"Environmental Science: From Rainforest to Coffee Cup - Investigating Sustainable Practices in Agriculture": 1 +"The Civil War Era: The Role of Telegraphic Communication in Military Strategies": 1 +"Art & Science: Exploring the Aesthetic Beauty of Fractal Geometry in Modern Architecture": 1 +"Mastering Narrative through Symbolism: A Comprehensive Course in Advanced English Literature": 1 +"Chemistry 101: Unlocking the Secrets of Enzyme Kinetics: A Closer Look at Catalysis": 1 +"Astronomy: Understanding the Effects of Gravity on Time Dilation": 1 +"Abstract Algebra: Tackling Group Theory in Cryptography using Python": 1 +"Information Technology: The Impact of Machine Learning in Predictive Analysis and Data Protection": 1 +"World History: Decoding the Human Spirit through Holocaust Literature - A Study in Textual Criticism and Postmodern Theory": 1 +"Statistics: Predictive Modelling in Climate Studies using Python and SAS": 1 +"Business 101: Maximizing Profit Margins through Efficient Supply Chain Management and Market Segmentation": 1 +"Analyzing the Impact of Digital Technology on Traditional Pottery: A Study on 3D-Printing": 1 +"Comprehensive Analysis of Plant Adaptation to Urban Environments: Using Photographic Monitoring and Genomic Sequencing ": 1 +"Physics: The Quantum Encryption - Decoding Information Security with Quantum Algorithms": 1 +"Sociology 101: The Impact of Social Media on Interpersonal Relationships": 1 +"Utilizing Sustainable Energy in Modern Architecture: A Holistic Approach": 1 +"Advanced Bioinformatics: Integrating Genome-Wide Association Studies with Python for Data Analysis": 1 +"Natural Phenomena: Delving into the Depths of Earth's Oceans with Sonar Technology": 1 +"Evolution of Art: The Role of Virtual Reality in Shaping Contemporary Visual Arts": 1 +"Narrative Design: The Impact of Interactive Media on Storytelling: A Video Game Perspective": 1 +"Digital Economics: Predicting Market Trends through Artificial Intelligence Algorithms": 1 +"Mastering Microsoft Access: Understanding Database Management through Query Design and Report Generation": 1 +"Exploring Nanoengineering Techniques for Biocompatible Materials in 3D Printing of Orthopedic Devices": 1 +"Digital Artistry: Generating Authentic Textures in Blender for Augmented Reality Landscapes": 1 +"Chemistry: Deciphering Chemical Thermodynamics Via the Appreciation of Phase Transitions": 1 +"Cultural Anthropology: Analyzing Instagram's Impact on Fashion Trends and Global Consumer Behavior": 1 +"Inquisitive Minds: A Comprehensive Guide to Adult Learning Theories for Educators": 1 +"Employing Virtual Reality in Music Education for Enhanced Spatial Awareness and Rhythm Recognition": 1 +"Narrative Devices in Classic Cinema: Understanding Character Arcs through Gustav Freytag's Dramatic Structure": 1 +"Strategic Thinkers: Developing Decision-Making Abilities through Chess Strategies and Java Programming": 1 +"The Intersection of Calculus and Quantum Physics: The Role of Functional Analysis in Schrödinger's Equation": 1 +"Java and Spring Boot: Building Web Apps with Thymeleaf, MySQL, and OAuth2.0": 1 +"Cognitive Neuroscience: Examining Memory Processes Through Electroencephalography": 1 +"Ruby on Rails: A Comprehensive Guide to Web Development with HTML5 and CSS3 Integration": 1 +"Exploring Wind Energy: A Study of Wind Turbines and their Representation in Environmental Literature": 1 +"Complex Analysis: An In-Depth Look at Complex Numbers & Functions with MATLAB": 1 +"Sound Engineering Basics: Creating Sonic Landscapes with Ableton Live": 1 +"Chemistry: Investigating Atomic Structure through Nuclear Magnetic Resonance": 1 +"Intro to Game Design: Crafting Engaging Experiences with Unity": 1 +"The Impact of Fractal Geometry and Parametric Design on Contemporary Urban Planning ": 1 +"Performance Dietetics: Optimizing Endurance and Recovery with Nutritional Profiling using DietMaster Pro and Micro-nutrient Timing": 1 +"Physics: Understanding Quantum Mechanics with Simulation Software: Visualizing the Double-Slit Experiment": 1 +"Chemistry: Exploring Green Chemistry Techniques for Sustainable Industrial Processes using Aspen Plus": 1 +"History: Decoding Ancient Scripts: The Impact of Rosetta Stone and AI on Modern Archaeology": 1 +"Digital Art: Exploring 3D Modeling and Animation in Virtual Reality using Blender and Unity": 1 +"Computer Science: Machine Learning with R: Predictive Analytics and Data Mining in Healthcare": 1 +"Economics: Evaluating Investment Strategies using Monte Carlo Simulations in the Foreign Exchange Market": 1 +"Geography: Climate Change Modeling and Data Visualization with ArcGIS and Google Earth Engine": 1 +"Creative Writing: Crafting Immersive Narratives using Virtual Reality Storyboarding in Unreal Engine": 1 +"Microsoft Access: Building Dynamic Business Intelligence Reports with SQL Queries": 1 +"Political Science: Predictive Analysis of Election Results using Neural Networks and TensorFlow": 1 +"Physics: Quantum Mechanics and Its Application in Cryptography": 1 +"Literature: Tracing the Impact of the Industrial Revolution on Victorian Novels": 1 +"Metabolic Biology: Decoding the Human Body's Energy Production through Mitochondrial Genomics": 1 +"Creative Writing: Crafting Metaphors in Prose Influenced by Urban Landscapes": 1 +"Art and Society: An Examination of Surrealism's Impact on Post-War Europe": 1 +"Game Theory: Optimizing Profit Margins in e-Sports Management using Nash Equilibrium ": 1 +"Environmental Science: Satellite Imaging in the Analysis of Coral Reef Biodiversity": 1 +"Inorganic Chemistry: Using Spartan'14 for Quantum Chemical Calculations": 1 +"Watercolor Techniques in Plein Air: An Exploration in Outdoor Artistry": 1 +"The Evolution of the Telegraph: A Communication Technology Overview": 1 +"Physics: Unraveling Quantum Mechanics through the Study of Particle-Wave Duality": 1 +"Songwriting with GarageBand: The Intersection of Folklore and Modern Pop using Loop Sequences and MIDI Controllers": 1 +"Geology: Harnessing AI and Satellite Imaging in Charting Climate Change Effects on Glacial Erosion": 1 +"Theatre History: From Greek Tragedy to Postmodern Performance: A Comparative Analysis using Dramaturgical Theory and Semiotics": 1 +"Mastering 3D Animation with JavaScript, Blender, and Motion Capture: An Introduction to Character Rigging": 1 +"Advanced Mathematics: Understanding Multi-variable Calculus through Surface Integrals": 1 +"Culinary Arts: Mastering Artisan Bread Baking with Sourdough Fermentation and Wood Fired Ovens": 1 +"The Business of Film: Navigating Hollywood with Netflix's Data-driven Methods and Block Chain Technology": 1 +"Anthropology: Decoding Human Behavior through Ethnographic Studies and Systems Theory": 1 +"Young Astronomers: Exploring the Universe with Telescope Construction and Space Weather Forecasting": 1 +"Chemistry: Mastering Organic Reactions and the Role of Catalysts in Speeding Up Chemical Processes": 1 +"Psychology: Investigating Personality Theories - The Connection between Behavior and Mental Processes": 1 +"Microeconomics: Supply and Demand Analysis using the Cross Elasticity Model": 1 +"Geology: A Comprehensive Study of Plate Tectonics and Volcanic Activity through Virtual 3D Models": 1 +"Neurophysiology: Understanding Human Sensory Systems through Electrophysiological Studies and the Principle of Synaptic Plasticity": 1 +"Fine Arts: Interpreting Renaissance Art through the Perspective of Humanism": 1 +"Astrophysics: Discovering the Universe - The Use of Hubble Space Telescope in Tracking Distant Galaxies": 1 +"Sports Science: Mastering the Biomechanics of Swimming Techniques": 1 +"Software Engineering: Understanding Object-Oriented Programming in Java and Swift": 1 +"Vibration and Waves: Understanding Sound Propagation through the Principle of Wave Superposition": 1 +"Biology: Understanding Cellular Structure through Microscopic Imaging and 3D Printing Techniques": 1 +"Chemistry: The Art of Creating Sustainable Polymers: An In-depth Study of Green Chemistry": 1 +"Sociology: Analyzing Social Behaviors Using AI and Deep Learning Models": 1 +"Astrophysics Simplified: Black Holes and the Role of Gravitational Waves": 1 +"Psychology: Decoding Human Emotions through Facial Recognition and AI Analysis": 1 +"Metaphysics: Exploring Reality through the Perspectives of Plato's Idealism": 1 +"Animation for Education: Using Adobe Animate and Unreal Engine to Create Immersive Learning Experiences": 1 +"Python for Financial Data Analysis: A Quantitative Finance Course using Distributed Computing, Monte Carlo Simulations, Statistical Learning, High-Performance Algorithms and Big Data Mining": 1 +"Mathematics: Understanding Fractal Geometry with Python for Chaos Theory": 1 +"The Art of Coding: Exploring the Use of Quantum Computers in Cryptography Technology": 1 +"Physics: Harnessing Quantum Mechanics in the Development of Next-Generation Computers": 1 +"Foreign Languages: Implementing Duolingo in a Secondary Spanish Course with Cultural Appreciation": 1 +"Cardiovascular Stress: The Effects of Caffeine: An MRI Analysis and Exploration of Five Mitigating Strategies": 1 +"Physical Education: Enhancing Athletic Performance through Virtual Reality Training and Biofeedback": 1 +"Environmental Studies: Utilizing Satellite Imagery, LIDAR, and Topographic Maps in Tracking Deforestation": 1 +"Personal Finance: Promoting Financial Stability through Strategic Investment and Budgeting Techniques": 1 +"Cosmology: The Evolution of Telescope Technology and Spectral Analysis": 1 +"Java Programming: Utilizing Spring Boot for Microservice Architecture with Docker and Kubernetes": 1 +"Introduction to Ethics: Deontological Theories: An Intensive Examination through Modern Debates": 1 +"Digital Storytelling: Enhancing Narrative Skills using Adobe Premiere Pro, Audacity, and Google Docs for Multimedia Production.": 1 +"Astronomy: Leveraging Machine Learning in the Analysis of Cosmic Microwave Background Radiation": 1 +"Kids in Tech: A Comprehensive Course on Python for Game Development": 1 +"Information Technology: Utilizing Cloud Computing for Big Data Management in Healthcare Research": 1 +"Progressive Botany: Delving into Algae Biofuel Production and Its Role in Sustainable Energy": 1 +"Quantum Mechanics: Understanding Quantum Entanglement, Superposition, and Its Application in Modern Telecommunication": 1 +"Genetic Engineering: Exploring CRISPR-Cas9 in Gene Editing and Personalized Medicine": 1 +"Sociolinguistics: Investigating Social Media Slang and its Impact on Modern Communication using Natural Language Processing": 1 +"Advanced Calculus: Understanding Chaos Theory through Fractals and Nonlinear Dynamics": 1 +"The Role of Perspective in Oil Painting: A Study of Light and Shadow using Chiaroscuro Techniques": 1 +"Deciphering the Economics of Cryptocurrency through Game Theory.": 1 +"Physics 210: Understanding Quantum Mechanics through Advanced Mathematical Concepts": 1 +"Literature: Unveiling the Symbolism and Themes in Postmodern Fiction through Comparative Analysis ": 1 +"Chemistry: The Power of Organic Synthesis - Exploring the Role of Green Chemistry in Pharmaceutical Industry": 1 +"Environmental Science: Understanding Climate Change through the Lens of Ice Core Analysis": 1 +"Mathematics: Exploring Predictive Modeling in Finance with MATLAB and SAS Programming": 1 +"Sociology: The Influence of Social Media on Political Movements - A Case Study Approach": 1 +"Advanced Insights into Neurology: Understanding the Role of Brain Imaging in Diagnosing Neurodegenerative Diseases": 1 +"Demystifying Basketball: A Comprehensive Study of Shot Selection Statistics Using Python, SQL, and Data Visualization": 1 +"Psychology: The Role of Art Therapy in Trauma Healing - An In-Depth Study of Creative Expression Techniques": 1 +"Environmental Sociology: The Social and Environmental Consequences of Plastic Consumption.": 1 +"The Influence of Drone Technology and Geospatial Analysis on Disaster Management": 1 +"Quantum Mechanics: The Effect of Quantum Computing on Cryptography": 1 +"The Art of Light: Investigating Photoluminescence Through Spectroscopy": 1 +"History: Analyzing the Medieval Manuscripts using Infrared Imaging and Machine Learning": 1 +"Digital Arts: Exploring the Principles of Animation Using Maya": 1 +"Discerning the Influence of Steam Power on Nautical Terminology during the Victorian Era: The Specific Role of the Propeller": 1 +"Sound Engineering: Exploring the Integration of Digital Audio Workstations in Film Scoring": 1 +"Marine Biology: Coral Reef Ecosystems: The Impact of Ocean Acidification on Biodiversity": 1 +"Literature: Examining the Use of Irony in Satirical Novels and Political Cartoons": 1 +"Exploring Tonal Value in Watercolor Techniques: Emphasizing on Flat Wash, Wet-on-Wet Technique and Glazing": 1 +"Advanced Microbiology: Utilizing Fluorescence Microscopy to Study Cellular Dynamics in Real-Time": 1 +"Psychology: The Impact of Meditation on Stress Reduction and Brain Connectivity": 1 +"Einstein's Theory of Relativity: An In-depth Exploration with MATLAB": 1 +"Physics Fun for Kids: Understanding Gravity through DIY Water Rocket Experiment": 1 +"Web Design Basics: Building Your First Website with HTML and CSS": 1 +"Political Science 101: The Influence of Public Opinion on Policy Making": 1 +"Data Science: Understanding Machine Learning Algorithms for Predictive Analysis using Python": 1 +"Cosmology: An Introductory Study of Dark Matter and the Use of Gravitational Lensing": 1 +"Physical Education: Utilizing Biomechanics in Optimizing Basketball Shooting Technique": 1 +"Organic Chemistry: Delving into the World of Stereochemistry and Chiral Molecules": 1 +"Advanced Physics: Exploring Dark Matter with Neutrino Observatories": 1 +"Engineering: The Science of Suspension Bridges - An Exploration of Stress Analysis using Finite Element Method": 1 +"Intro to Computer Science: Decoding Cybersecurity - Understanding Threats and Countermeasures with Firewall Technologies": 1 +"Advanced Journalism: Leveraging the Power of WordPress for Content Creation and Multimedia Integration": 1 +"Java, Logic Pro, and Sound Synthesis for Ambient Music: A Comprehensive Course in Sound Design": 1 +"History of Space Exploration: The Role of Telescopes in Understanding Our Universe": 1 +"Applied Mathematics: Fractal Patterns in Nature - Unraveling Chaos Theory": 1 +"Dance: The Impact of Virtual Reality in Choreography and Performance Art": 1 +"Media Studies: The Influence of Social Media on the Rise of Indie Cinema - A Study through Crowdfunding Platforms": 1 +"The Role of the Printing Press in Information Dissemination and The Enlightenment using Cryptographic Techniques": 1 +"Physics: Unraveling Quantum Mechanics Through the Study of Photons and Wave-Particle Duality": 1 +"Advancements in Public Health: The Role of Distributed Ledger Technology in Managing Epidemic Outbreaks and Disease Surveillance": 1 +"Meteorology: A Detailed Analysis of Climatic Patterns and Weather Forecasting Using Doppler Radar Technology": 1 +"Global Finance: Evaluating the Influence of Cryptocurrencies and Decentralized Finance on International Monetary Policies": 1 +"Genetic Studies 101: The Application of Whole Genome Sequencing and Bioinformatics in Precision Medicine": 1 +"Organic Chemistry: Investigating the Pathways of Enzyme Catalysis with Molecular Dynamics Simulations and Computational Chemistry": 1 +"Deep-Sea Geology: Understanding the Formation of Hydrothermal Vents and Their Influence on Oceanic Ecosystems": 1 +"Advanced Entomology: The Use of DNA Barcoding in the Study of Insect Biodiversity and Ecosystem Health": 1 +"Contemporary Art: Utilizing Digital Platforms for Creating Abstract Paintings with Geometrical Patterns and Color Theory": 1 +"Linguistics: A Comprehensive Examination of Metaphors in Classical Literature and Opera Lyrics": 1 +"Machine Learning with R: Applying Naive Bayes for Predictive Analytics": 1 +"Oceanography: Investigating Marine Biodiversity using DNA Barcoding Techniques": 1 +"Advanced Statistics: Exploring Fractals in Market Data - Demystifying Financial Chaos": 1 +"Covert Operations: Tracing Espionage Techniques from Invisible Ink to Digital Steganography": 1 +"Exploring Piano Harmonics: Investigating String Vibrations using Fourier Transform": 1 +"Creative Writing with Scrivener and ProWritingAid: Developing Imagery in Fantasy Literature": 1 +"Storyboarding: Leveraging Asana for Developing Non-Linear Narratives with Foreshadowing using Adobe Story": 1 +"Interactive Teaching: Employing Kahoot! for Gamified Learning in Science Education": 1 +"Software Engineering: Game Development with Java - Creating Real-time Strategy Games": 1 +"Advanced Web Development: Mastering React.js & Express.js: Building Dynamic Web Apps with MongoDB Atlas": 1 +"Advanced Mathematics: Theoretical Calculus: Understanding Integral Transformations": 1 +"Global Sociology: Deciphering Social Structures through the Lens of Gender Dynamics": 1 +"Exploring Vision Development: Comprehensive Study of Visual Field Testing using Octopus Perimetry": 1 +"Brain Functionality in Psychology: Cognitive Processes Assessment using EEG, fMRI and Transcranial Magnetic Stimulation ": 1 +"The Essence of Artificial Intelligence in Predictive Analytics: Harnessing Decision Trees in Risk Evaluation": 1 +"Creative Sparks: Fantasy Storytelling for Young Adults with a Focus on World Building": 1 +"International Relations: The Discourse on Nuclear Disarmament: National Security and the Power of Treaty Verification Systems": 1 +"Foundation of Programming 220: Developing Applications with Java": 1 +"The Intricacies of Rhetoric: Examining Propaganda Techniques through Semiotics and Discourse Analysis": 1 +"Organic Chemistry: Exploring Molecular Configurations through Nuclear Magnetic Resonance Spectroscopy": 1 +"Advanced Quantum Mechanics: Harnessing the Power of Quantum Computers in Algorithm Development": 1 +"Unveiling the Universe: A Deep Dive into Astrophysics Using Telescope Imaging and Stellar Spectroscopy": 1 +"Economics 101: Using Excel for Investment Analysis and Predicting Market Trends": 1 +"Chemistry in Action: Investigating Chemical Reaction Rates with Spectrophotometers and Computational Modeling": 1 +"Data Science Essentials: Predictive Modeling with R Programming and ggplot2 for Data Visualization": 1 +"Investigating Evolutionary Biology: Utilizing DNA Sequencing Technology in Species Classification": 1 +"Robotics Engineering: Exploring the Role of Arduino in Autonomous Vehicle Development": 1 +"Geography 101: Understanding Climate Change Impact on Global Migration using GIS": 1 +"Beginning with Blockchain: Leveraging Ethereum for Smart Contract Development": 1 +"Physiology 222: The Impact of Wearable Tech on Monitoring and Improving Cardiovascular Health.": 1 +"Astrophysics Fundamentals: Gravitational Waves Detection using Interferometry and Quantum Computing": 1 +"Advanced Calculus: Applying Fourier Transformations in Signal Processing with R Programming": 1 +"Complex App Development: Combining Kotlin, Firebase, RESTful APIs with PostgreSQL Database": 1 +"Music's Impact on Society: A Comprehensive Analysis Using Big Data and Machine Learning": 1 +"Healthcare Economics: Investigating Patient Flow using Queueing Theory and Simulation Modelling": 1 +"World History: Decoding Civilizational Patterns with Anthropological Theories and GIS Technology": 1 +"Climate Change Mitigation: The Role of Remote Sensing in Carbon Sequestration": 1 +"Advanced Statistics: Discovering Probability Distributions through Bayesian Inference": 1 +"Drupal for E-commerce: Mastering Content Management Systems in Digital Marketing Strategies": 1 +"Photography: The Integration of Virtual Reality in Modern Cinematic Techniques": 1 +"Psychology: Unraveling the Human Mind: The Influence of Cognitive Biases on Decision Making": 1 +"Data Science: Harnessing Predictive Analytics using R and Time Series Forecasting": 1 +"Advanced Physics: Exploring Thermodynamics using the Carnot Cycle and Heat Engines": 1 +"Sociology: Understanding Social Structures: The Role of Gender and Class in Society": 1 +"Environmental Science: Climate Change: Analysing the Impact of Greenhouse Gases using Ice Core Data": 1 +"Robotics: Understanding Kinematics and Dynamics through the Design and Control of Robotic Arms": 1 +"Astrophysics: The Enigma of Black Holes: Investigating Spacetime Singularity through General Relativity": 1 +"Fine Arts: Mastering Oil Painting: Techniques for Creating Depth, Shadows, and Realistic Textures": 1 +"Nutrition Science: The Microbiome Diet: The Role of Probiotics and Prebiotics in Gut Health": 1 +"Quantum Physics: The Intricacies of Quantum Entanglement in Einstein-Podolsky-Rosen Paradox": 1 +"Sociology: Exploring Social Behavior through Quantitative Analysis using R Programming": 1 +"Environmental Science: Decoding Climate Change Patterns with Geographic Information System (GIS)": 1 +"Mathematics: A Comprehension of Fractal Geometry and its Applications in Cryptography": 1 +"Literature: The Narrative Arc in Modern Novels - A Focus on Magical Realism": 1 +"Digital Marketing: Unveiling Consumer Behavior Trends with Google Analytics and AI Algorithms": 1 +"Astrophysics: Grasping Black Holes and Cosmic Evolution with Computational Astrophysics": 1 +"Forensic Psychology: The Role of Behavioral Analysis in Criminal Profiling": 1 +"Music Theory: Tracing the Evolution of Contemporary Jazz and its Influence on Hip Hop": 1 +"Anthropology: Decoding Ancient Civilizations: A Study of Mayan Hieroglyphics using Machine Learning": 1 +"Data Science: Predictive Modeling in Health Care: An Application of Artificial Intelligence and Big Data.": 1 +"Sociolinguistics: Understanding Gender Differences in Language Use through Corpus Linguistics": 1 +"Environmental Science: Exploring Climate Change Patterns using GIS and Remote Sensing": 1 +"Advanced Physics: Quantum Mechanics and its Implication in Nanotechnology": 1 +"Psychology: Investigating Memory Retention through EEG and fMRI": 1 +"Marine Biology: Unveiling Coral Reef Ecosystems using Underwater Imaging and Spectral Analysis": 1 +"Spanish: Semantic Analysis in Spanish Literature using Google Cloud Natural Language API": 1 +"Food Science: The Use of Spectrophotometry in Evaluating Food Quality ": 1 +"Astrophysics: The Impact of Stellar Nucleosynthesis in Understanding the Universe": 1 +"The Role of Ableton Live in Electronic Music Production: A Technological Insight": 1 +"Statistics 201: Advanced Data Analysis and Predictive Modeling using R and Tableau: Focus on Regression Analysis": 1 +"Chemistry Revealed: Unpacking Organic Synthesis through NMR Spectroscopy and the Pauli Exclusion Principle": 1 +"Advanced Studies in Neurological Mapping using fMRI and Computational Neuroscience ": 1 +"Physical Education: Enhancing Strength and Stamina with High-Altitude Training Techniques": 1 +"The Evolution of Sound: The Impact of Pro Tools on Digital Audio Production": 1 +"Geography: Assessing Deforestation Effects on Rural Migration: A GIS-based Approach Using ArcGIS": 1 +"Blue Innovations: Eco-friendly Practices with Green Seal Certified Appliances in Home Kitchens": 1 +"Genetics: The Influence of Genomic Editing Techniques on Plant Resistance to Climate Change": 1 +"Urban Transformation: The Influence of Brutalism on Contemporary Urban Landscape": 1 +"The Potential of Oculus Rift in Enhancing Dance Choreography: A Study with Motion Capture Technology": 1 +"Film Studies: The Progression of Cinematic Techniques and the Influence of Streaming Platforms": 1 +"Chemistry: The Role of Enzymes in Molecular Biology - A Study through Spectrophotometric Analysis": 1 +"Computer Science: The Practical Application of Machine Learning in Predictive Modeling": 1 +"History: Investigating Ancient Civilizations through Archaeological Excavations and Pottery Analysis": 1 +"Astrophysics: The Wonders of Dark Matter and its Influence on Galactic Formation": 1 +"Music: The Influence of Digital Audio Workstations in Modern Music Production": 1 +"Advanced Mathematics: The Use of Probability Theory in Cryptographic Algorithms": 1 +"Health Education: Understanding Human Metabolism through Fitbit Activity Trackers and Nutritional Analysis": 1 +"Elementary Physics: The Impact of Newton's Laws in Robotic Movement": 1 +"Fine Arts: The Evolution of Digital Art in the Post-Internet Era": 1 +"Econometrics: Applying Linear Regression Models to Predict Stock Market Trends using Python.": 1 +"Creative Coding: An Introduction to Game Development with Unity for Young Adults": 1 +"Astrobiology: A Deep Dive into the Search for Extraterrestrial Life with Telescopic Observations": 1 +"Paleontology: Revealing Prehistoric Life through Fossil Analysis and Radiometric Dating Techniques": 1 +"Neuroscience Uncovered: An In-depth Study of Brain-Computer Interfaces and Electroencephalography (EEG)": 1 +"Cutting-Edge Robotics: An Exploration of Machine Learning and Artificial Intelligence in Autonomous Vehicles": 1 +"Culinary Arts: A Beginner's Guide to Baking Techniques with Gluten-Free Ingredients": 1 +"Ethics 101: Understanding Moral Dilemmas through Kantian Ethics and Utilitarianism": 1 +"World Literature: Analyzing International Narratives with Postcolonial Theory": 1 +"Business Studies: Utilizing SWOT Analysis for Strategic Decision Making": 1 +"Quantum Physics Simplified: Grasping Quantum Mechanics through the Double-Slit Experiment": 1 +"Biology of Sound: Investigating Auditory Perception and Acoustic Ecology through Bioacoustics": 1 +"JavaScript for Data Science: Harnessing D3.js for Statistical Analysis and Interactive Data Visualization": 1 +"Exploring the Aesthetics of Watercolor: A Deep Dive into Wet-On-Wet Techniques and Color Harmony": 1 +"The Impact of Typography on Graphic Design: Tracing the Evolution of Printed Text from the Gutenberg Press to Digital Fonts": 1 +"Advanced Genetics: Unraveling Disease Predisposition through Genome Sequencing and Bioinformatics ": 1 +"Quantum Physics: Unmasking the Universe with Particle Accelerators and Quantum Entanglement": 1 +"Digital Sculpting for Animation: Mastering Character Design Using Maya and ZBrush with Blender 3D Modeling": 1 +"Geochemistry: Deciphering Earth’s History through the Study of Rocks, Minerals, and Isotope Ratios": 1 +"Engineering for Kids: Learning Structural Integrity through Building Bridges with Spaghetti and Marshmallows": 1 +"Junior Meteorologists: Understanding Weather Patterns through DIY Weather Station Building.": 1 +"Physics: Quantum Mechanics and Computing: An Introduction to Quantum Algorithms": 1 +"Literature: Unraveling Postmodernism: Understanding Metatextuality with Critical Discourse Analysis": 1 +"Neuroscience: Understanding Brain Plasticity and Memory through fMRI Technology": 1 +"Environmental Science: Assessing Biodiversity: Using GIS and Remote Sensing in Conservation Research": 1 +"Architecture: Building Sustainability: Exploring Green Design with LEED Certification": 1 +"Chemistry: Organic Synthesis and Spectroscopy: A Deep Dive into Mass Spectrometry": 1 +"Music: The Art of Composition: Exploring Melodic Structures and Harmonic Symmetry with Sibelius": 1 +"Digital Forensics: Cybersecurity and Encryption: A Practical Approach with Python and Wireshark": 1 +"Psychology: The Science of Perception: Understanding Visual Illusions and Cognitive Biases": 1 +"Astronomy: The Cosmos Unveiled: Exploring Galactic Structures with Hubble Space Telescope Data": 1 +"Physics of Music: Exploring Harmonic Resonance Through Acoustic Guitar Design": 1 +"Sociology: Evaluating the Role of Family Structures in Early Childhood Education": 1 +"Culinary Science: Transforming Traditional Recipes through Molecular Gastronomy Techniques": 1 +"Environmental Science: Investigating Climate Change Effects through Coral Reef Ecosystems": 1 +"Data Science: Harnessing Predictive Analytics in Sports Performance Using Python": 1 +"The Evolution of Language: Tracing the Influence of Proto-Indo-European Roots on Modern English": 1 +"Psychology: Empathy and Emotional Intelligence in Leadership - A Neuroscientific Approach": 1 +"Architectural Engineering: The Role of Thermodynamics in Sustainable Building Design": 1 +"Digital Marketing: Harnessing the Power of SEO and Google Analytics for E-commerce Success": 1 +"Anthropology: The Influence of Ancient Egyptian Hieroglyphics on Modern Communication Systems": 1 +"Modern Philosophy: Examining Existentialism through the Writings of Jean-Paul Sartre": 1 +"Biology 101: The Impact of Genetic Engineering on Modern Medicine": 1 +"Digital Media: Expanding Storytelling Capabilities with Virtual Reality and the Unreal Engine": 1 +"World History: The Influence of Global Trade on the Age of Exploration and Colonialism": 1 +"Sports Science: Assessing the Impact of Wearable Technology on Athlete Performance and Health": 1 +"Exploration of Multidimensional Spaces in Fine Arts: An Introduction to Blender and 3D Design": 1 +"Utilizing Drone Technology in Environmental Science for Advanced Ecosystem Monitoring: An Entry-Level Ecology Course": 1 +"Revolutionizing Film Editing with AI and Adobe Premiere Pro: A New Era in Cinematic Production": 1 +"Advanced Coding Techniques: Java and Data Structures for Intermediate Programmers": 1 +"Unraveling Seismology: Discovering Earth's Layers through Wave Analysis using MATLAB": 1 +"Physics: Quantum Mechanics in Modern Telecommunication: An Overview of Quantum Cryptography": 1 +"Advanced Agriculture: The Use of Biochar in Sustainable Soil Management and Crop Production": 1 +"Climate Science: The Impact of Polar Ice Melt on Global Sea Level Rises: A Geographical Approach": 1 +"Fine Art: Abstract Expressionism: Expressing Emotions through Non-Objective Art": 1 +"Behavioral Psychology: The Impact of Virtual Reality on Stress Management Techniques": 1 +"Statistics: Predictive Analytics in E-commerce: Leveraging Machine Learning with Python": 1 +"Astrophysics: The Role of Dark Matter in Galaxy Formation: Unveiling Cosmic Mysteries": 1 +"Information Technology: Enhancing User Experience in Mobile Gaming Using Augmented Reality": 1 +"Modern Literature: The Influence of Social Media on Contemporary Poetry: A Critical Analysis": 1 +"Sociology: The Effect of Globalization on Cultural Identity: A Comparative Study Using GIS Techniques": 1 +"Advanced Astronomical Studies: Utilizing Infrared Spectroscopy and Radio Telescopes to Understand Distant Galaxies": 1 +"Digital Media: Creating 3D Animation Using Blender and Maya": 1 +"Organic Chemistry: The Intricacies of Fermentation: A Deep Dive into Breweries and Wineries": 1 +"Engineering Marvels: Exploring the Role of Hydraulics in Construction and Industrial Machinery": 1 +"Cryptocurrency & Network Security: Protecting Financial Institutions from Digital Threats - Strategy 4": 1 +"Geology: Combining MATLAB and Python for Earthquake Data Analysis and Seismic Hazard Mapping": 1 +"Python Programming for Bioinformatics: Leveraging Genomic Data for Improved Health Outcomes": 1 +"Microbiological Studies: Exploring Pathogens through Electron Microscopy": 1 +"Performing Arts: Mastering the Art of Stage Direction using QLab Software": 1 +"Delving into the Realm of Abstract Art: Utilizing Charcoal for Depth, Shadows, and Emotion": 1 +"Exploring Sociology: A Deeper Understanding of Social Behavior and Group Dynamics": 1 +"Advanced Astrophysics: Studying the Universe through Quantum Mechanics and Simulations in Python": 1 +"Immunology: The Study of the Body's Defensive Systems and the Role of Vaccines": 1 +"Elementary Mathematics: Discovering Geometry through 3D Printing": 1 +"Light and Energy: An In-depth Analysis of Optics using Laser and Spectrophotometers": 1 +"Ceramics: Mastering Glazing Techniques: A Detailed Guide using a Potter's Wheel": 1 +"Fun with Robotics: Introducing Mechanical and Software Engineering Concepts for Kids using LEGO Mindstorms": 1 +"Decoding the Renaissance: A Detailed Study of Fresco Paintings through Mixed Media Techniques": 1 +"Geography: Interpreting Global Climate Patterns using ArcGIS Software": 1 +"Introduction to Quantum Computing: Understanding Qubits and Quantum Gates.": 1 +"Exploring Space Science with MATLAB, R, and Google Cloud Platform": 1 +"Sociology: The Influence of Augmented Reality on Global Education and Social Interaction": 1 +"Leveraging Java and FL Studio for Sound Synthesis: An Introductory Course in Digital Audio and Computer Programming": 1 +"French Literature: A Study of Social Justice Movements through Textual Analysis": 1 +"Discovering Oil Painting: A Comprehensive Study of Palette Knife Technique in Impasto": 1 +"Geography: The Role of Renewable Energy in Shaping Global Climate Policies": 1 +"Physics: Introduction to Quantum Mechanics with MATLAB": 1 +"Power BI for Data Science: Decoding Health and Wellness Metrics": 1 +"Philosophy: The Impact of Digital Photography in Contemporary Visual Culture and Identity Representation": 1 +"Psychology: The Potential of Augmented Reality in Cognitive Behavioral Therapy for Anxiety Disorders": 1 +"History of Medicine: The Role of Penicillin in World War II and Its Impact on Modern Healthcare": 1 +"Spanish Mastery: Enhancing Vocabulary and Sentence Structure through Duolingo and Netflix Subtitles": 1 +"Quantum Mechanics: Quantum Entanglement and Teleportation - A Journey into the Quantum World": 1 +"Information Technology: Introduction to Python Programming and Database Management": 1 +"The Effect of Artificial Intelligence and Virtual Reality on the Gaming Industry: 10 Predictions for the Next Decade": 1 +"Psychology: Exploring the Cognitive Processes Behind Decision Making - A Deep Dive into the Prefrontal Cortex": 1 +"Mathematics Essentials: Strengthening Problem-Solving Skills through the Use of Khan Academy": 1 +"Programming for Beginners: Understanding Object-Oriented Programming through Java": 1 +"Social Studies: Understanding Political Terminology through the Lens of Democracy and Capitalism": 1 +"Business Analytics: Optimizing Retail Strategies with Big Data and Predictive Modeling": 1 +"Virtual Reality in Architecture: Enhancing Building Design Techniques with 3D Modelling": 1 +"Adobe Illustrator and Machine Learning: Improving Graphic Design through Neural Networks": 1 +"Literature: Deciphering Dickens's Era through Economic Historical Analysis": 1 +"Literature: Science Fiction and Society - Understanding Technological Advancements through Postmodern Critique": 1 +"Art: Discovering Symbolism in Modern Art Movements": 1 +"Psychology: Decoding Emotions: An Insight into Emotional Intelligence Using EEG Technology": 1 +"Mathematics: The Craft of Decision-Making with Statistical Probabilities": 1 +"Biology: Introduction to Zoology: Animal Behavior and Evolution Using DNA Sequencing": 1 +"Astronomy: Investigating Cosmic Phenomena using Radio Telescope Data and Astronomical Spectroscopy": 1 +"Chemistry in the Kitchen: Using Chromatography to Understand the Composition of Spices and Herbs": 1 +"Chemistry Chronicles: Unraveling Chemical Reactions and Balancing Equations": 1 +"Advanced Mathematics: Exploring the Theory of Probability and its Applications in Statistics": 1 +"Mastering Web Development: In-depth Study of HTML, CSS, and Bootstrap with the Power of Github": 1 +"The Interplay of Sound Waves and Microphones: A Comprehensive Course in Acoustics and Audio Engineering": 1 +"Advanced Artistic Rendering: Creating Life-like 3D Models with Blender and Unity": 1 +"Engineering Essentials: Understanding the Principles of Hydraulics with Simulated Models and Force Gauges": 1 +"Data Science Deep Dive: Predictive Analysis using Machine Learning Algorithms and Python": 1 +"Advanced Cyber Security: Exploring Cryptography, Network Security, and Firewall Protocols using Wireshark and OpenVPN": 1 +"Medical Marvels: Studying Neurological Disorders and Mental Health using PET Scans: The Role of Dopamine Regulation": 1 +"Historical Insights: Architecture through the Centuries - The Evolution of Gothic Design Techniques": 1 +"Advanced Chemistry: Exploring Molecular Structures through Computational Chemistry using Python and MATLAB": 1 +"Psychology: The Role of Neurotransmitters in Memory Formation": 1 +"Astrobiology: Uncovering the Possibilities of Extraterrestrial Life with Astrochemical Analysis": 1 +"Physical Education: Improving Basketball Shooting Accuracy through Biomechanical Analysis": 1 +"History Revealed: The Changing Socioeconomic Landscape - The Industrial Revolution’s Impact on Modern Capitalism": 1 +"Quantum Mechanics: Exploring Quantum Entanglement: Comprehension of Non-local Interactions through Mathematical Representations": 1 +"Physical Education: Enhancing Tennis Strokes Using Motion Capture Technology and Performance Analytics": 1 +"High School Chemistry: Understanding Chemical Reactions with Chromatography and Spectroscopy": 1 +"Electrodynamics: Mastering Maxwell's Equations for Electromagnetic Field Analysis": 1 +"Philosophical Foundations: Delving into the Notion of Existentialism in 20th Century Philosophy": 1 +"Physics: Understanding Quantum Mechanics through Virtual Reality Simulations": 1 +"Statistics: Introduction to Predictive Modelling using R and Machine Learning Techniques": 1 +"Botany: Deciphering Plant Genetics through the Lens of Next Generation Sequencing": 1 +"Inorganic Chemistry: Exploring Crystal Structures with VESTA and Materials Studio Software": 1 +"Economics: Harnessing the Power of Excel in Market Trend Analysis": 1 +"French: Vocabulary Enhancement and Pronunciation Improvement through Duolingo's Language Learning Tools": 1 +"Psychology: Understanding Human Behavior through fMRI and EEG": 1 +"Multimedia Literacy: Leveraging Adobe Premiere Pro and Virtual Reality for Immersive Filmmaking": 1 +"Creative Writing: Mastering Metaphoric Language in Haiku for Emotional Expression": 1 +"Software Engineering: Building Interactive Websites with JavaScript - A Dive into Web Design using Adobe Dreamweaver.": 1 +"Mastering the Trumpet: An In-depth Study of Breathing Techniques and Embouchure": 1 +"Elementary: Leveraging Augmented Reality for Basic Arithmetic: A Mathematical Exploration with Interactive Number Models": 1 +"Music: Exploiting Spotify Streaming for Maximizing Earnings in the Digital Music Industry": 1 +"Physical Education: Achieving Wellness Through Urban Gardening: The Benefits of Plant Cultivation": 1 +"Advanced Poetry Composition: Unveiling the Synergy of Verse and Imagery with Microsoft Word and Google Docs": 1 +"Geology: Structural Analysis with LIDAR using Remote Sensing Technology": 1 +"World Literature: The Influence of Podcasts on Contemporary Storytelling Techniques": 1 +"The Art of Fusion Cooking: Mastering the Science of Spices & Sous Vide Techniques": 1 +"Music Theory: Deciphering Harmony and Tonality using Digital Audio Workstation": 1 +"Astronomy: The Thrilling Expedition of Solar System Mapping and the Quest for Dark Matter": 1 +"Artificial Intelligence in Healthcare: An exploration of Machine Learning Algorithms in Predicting Diseases": 1 +"Chemistry: Nanotechnology and Its Impact on Environmental Sustainability: A Case Study Using MATLAB and C++": 1 +"Introduction to World History: Deciphering Ancient Scripts through Linguistic and Archeological Approaches": 1 +"Cosmology: Understanding Dark Matter and Its Influence on the Expansion of the Universe": 1 +"Intermediate Biology: The Complexity of Human Genome and Gene Editing Techniques": 1 +"Psychology: The Integration of Virtual Reality in Treating Phobias and Anxiety Disorders": 1 +"Creative Writing: Enhancing Narrative Skills Using Adobe Creative Cloud and Digital Storyboarding": 1 +"Metaphysics Decoded: Unraveling The Mysteries of Reality and Existence through Symbolic Logic": 1 +"Data Science: Predictive Analytics in Financial Markets using Python and SAS": 1 +"Physical Education: The Role of Interactive Gaming in Promoting Healthy Lifestyle Choices.": 1 +"The Impact of Microwave Absorption in Biofuel Production and its Biological Processes": 1 +"The Fusion of Digital Animation and Sound: Understanding 3D Modelling through Blender": 1 +"Leveraging AI: Improving Spotify’s Discover Weekly Algorithm for Jazz in Concert Management": 1 +"The Influence of Light and Shadow in Oil Painting using Canvas: An Examination of Texture and Depth through Glazing Techniques": 1 +"Chemistry 200: Thermodynamics and Molecular Kinetics: An In-depth Analysis using Gibbs Energy Graphs": 1 +"Psychology: Unraveling the Mind’s Processes with fMRI in Cognitive Mapping Methods": 1 +"Geology: Revealing Earth's Secrets with Seismic Wave Analysis": 1 +"The Mastery of Narrative Storytelling: Utilizing Metaphor in Creative Writing": 1 +"Cybersecurity Expertise: An Exhaustive Study of SSL/TLS using Fortinet Firewalls and IPv4": 1 +"Language of Mathematics: Understanding Complex Equations through Differential Calculus.": 1 +"Psychology and Music: Exploring Emotional Responses to Different Genres using Biofeedback Techniques": 1 +"Young Physicists: Understanding Quantum Mechanics through Visual Simulations": 1 +"Biology: Decoding DNA Structures and Genetic Variations using Bioinformatics Software and Genomic Data": 1 +"Art History 320: Byzantine Mosaics and their Influence on Modern Mosaic Artistry": 1 +"Geology: The Dance of the Tectonic Plates - Investigating Earthquakes and Volcanic Activity with Google Earth and Seismic Data": 1 +"Creative Writing: Weaving Intricate Plots through Conflict Resolution and Suspense Building": 1 +"Astrobiology: Hunting for Extraterrestrial Life - Understanding Exoplanets and the Search for Biosignatures": 1 +"Cognitive Science: Exploring Human Perception and Cognition using Python and Data Visualization Techniques": 1 +"Mathematics: Solving Complex Algebraic Equations in Wolfram Alpha using Quadratic and Polynomial Functions": 1 +"Junior Biologists: Unraveling the Mysteries of Genetics - An Exploration of DNA Extraction and Gel Electrophoresis": 1 +"Advanced Programming: Creating Mobile Applications with Swift and Firebase": 1 +"Strategic Business Planning: Utilizing MS Excel in Data Analysis and Projections": 1 +"Chemistry 350: Exploring the World of Nanotechnology: Nanoparticles and Their Uses": 1 +"Health and Fitness: Wearable Technology in Assessing Cardiovascular Performance in Endurance Athletes": 1 +"Decoding Basketball Techniques: Comprehensive Review Using Java and Hadoop": 1 +"Machine Learning with Python: Navigating Neural Networks and Support Vector Machines Using TensorFlow": 1 +"Economics 220: The Dynamics of Crypto Currencies - Understanding the Role of Blockchain in Bitcoin's Value": 1 +"Exploring the Ocean Depths: An Intensive Look into Marine Biology and the Science of Ocean Currents": 1 +"Physics: The Optics and Spectroscopy of Art: Studying Color Using Wave Interference": 1 +"Occupational Therapy: Tai Chi and Flexibility: Exploring Therapeutic Tai Chi with Augmented Reality": 1 +"Advanced Astrophysics: Exploring Stellar Evolution using Hubble Space Telescope and Starlight Analysis": 1 +"Chemistry: Unraveling the Complexity of Organic Synthesis - A Deep Dive into Retro-Enantioselective Synthesis with NMR Spectroscopy": 1 +"Mastering Java: Building High-Performance Distributed Systems with J2EE and Apache Hadoop": 1 +"History: Reconstructing Ancient Civilizations - A Chronological Study of Roman Architecture using VR Technology": 1 +"Nutrition Science: Analyzing Dietary Patterns and Health Outcomes using Regression Models and SAS Programming": 1 +"Advanced Calculus 301: Exploring Fractal Geometry through the Lens of Mandelbrot and Julia Sets": 1 +"Physical Education 201: Integrating Augmented Reality in Outdoor and Adventure Activities": 1 +"Environmental Science: Climate Change - Advanced Modelling and Analysis using GIS and Remote Sensing": 1 +"Cybersecurity Essentials: Firewall Configuration, Intrusion Detection, and Prevention with Snort and Wireshark": 1 +"Child Psychology 305: Enhancing Cognitive Development through Interactive Digital Games and AI Technology": 1 +"Astronomy 101: Exploring the Cosmos through Telescope Technology and Star Mapping": 1 +"Physical Education: Skill Development and Strategy in Basketball Court Dynamics": 1 +"Music Production: Mastering Ableton Live's MIDI Tools in the Digital Music Landscape": 1 +"Computer Science 180: Java Programming for Data Analysis & Internet Security with Cryptography": 1 +"Musicology: The Impact of Melody in Harmony - An Examination with Pitch Detectors": 1 +"Physical Education: Encouraging Teamwork and Fair Play Through Volleyball Rotation System": 1 +"Geography: Leveraging Satellite Imaging in Tracing Historical Migration Patterns": 1 +"Computer Science 110: HTML & CSS Coding for Creating Dynamic Websites": 1 +"Marketing 200: Understanding the Influence of Influencer Marketing in Fashion Industry": 1 +"Social Sciences: Harnessing Google Docs and Zoom for Collaborative Project Management: Ten Effective Strategies": 1 +"Advanced Biology: Unraveling Genetic Code through CRISPR and Genomic Sequencing": 1 +"Space Science: Understanding Cosmic Expansion through Redshift Measurements and Hubble's Law": 1 +"Sports Science: Enhancing Performance through Biomechanics Analysis and Wearable Technology": 1 +"Agricultural Sciences: The Role of Soil Health in Global Food Security: An Exploration Using Soil Sensors and Nutrient Profiling": 1 +"Data Science: Application of Bayesian Inference in Cybersecurity: An Introduction to PyMC3": 1 +"English Literature: The Subtleties of Social Commentary: A Critical Analysis of Dystopian Fiction": 1 +"Immersive Tech in Art Education: Navigating Virtual Galleries and Augmented Reality for Enhanced Understanding": 1 +"Japanese: A Linguistic Investigation into Honorifics using Text Mining Techniques and Natural Language Processing": 1 +"Advanced Econometrics: Forecasting Economic Downturns using Time Series Analysis and R": 1 +"Environmental Science: Addressing Climate Change through Remote Sensing and GIS in Biodiversity Conservation": 1 +"Physics: Quantum Mechanics and String Theory - Decoding the Universe": 1 +"Computer Science: Binary Codes and Algorithms - The Foundation of Programming": 1 +"Environmental Studies: Climate Change and Mitigation Strategies - An Interdisciplinary Approach": 1 +"World History: Deciphering Ancient Scripts - Understanding Civilizational Narratives": 1 +"Chemistry: Exploring the Boundaries of Organic Compounds through Spectroscopy": 1 +"Astronomy: Celestial Bodies and Gravitational Forces - A Journey Through the Cosmos": 1 +"Advanced Physics: Thermodynamics and Statistical Mechanics - Decoding the Laws of Nature": 1 +"Computer Engineering: The Role of Transistors in Microprocessor Design": 1 +"Philosophy: Understanding the Evolution of Ethical Theories through Historical Context": 1 +"Advanced Biology: Proteomics and Genomics - Decoding the Complexity of Biological Systems": 1 +"Introduction to Cyber Security: Understanding Encryption Techniques with Java": 1 +"Statistics: Predictive Modelling for Climate Change Using MATLAB": 1 +"Quantum Computing and Cryptography: Revolutionary Impact on Digital Security ": 1 +"Advanced Spanish Proficiency: Refining Dialogue Creativity with Duolingo, Google Docs, and Microsoft Translator for Group Discussions": 1 +"Tropical Rainforest Ecosystem: The Role of Epiphytic Adaptations in Wildlife Preservation": 1 +"Innovative Architecture Designing: Utilizing 3D Printing for Sustainable Urban Development": 1 +"Mastering Graph Theory: Enhancing Knowledge of Data Structures with Python and Java": 1 +"Cellular Immunology: Investigating Disease Resistance through the Spectrum of T-Cell Receptor Genetic Recombination": 1 +"Intermediate Italian Literacy: Amplifying Reading Abilities with Kindle, Google Translate, and the Cambridge Italian Dictionary for Comprehensive Understanding": 1 +"A Study on Metaphors in Theatre Scripts and Dialogues of Political Drama Series: Utilizing Lexical and Semantic Analysis": 1 +"Artificial Intelligence: Unraveling the Ethical Implications of Autonomous Vehicles on Traffic Management": 1 +"Architecture: Utilizing Augmented Reality for Structural Design and Urban Planning": 1 +"Advanced Biochemistry: Exploring the Role of CRISPR Cas9 in Genetic Engineering and Human Health": 1 +"Digital Fabrication: Mastering 3D Printing Techniques for Sustainable Construction": 1 +"Neuroscience: Deciphering Emotions through Brain Mapping Using PET Scans and Transcranial Doppler Sonography": 1 +"Data Science: Predictive Modeling with Machine Learning Algorithms in Financial Markets": 1 +"Environmental Science: Understanding Climate Change through Satellite Data and Climate Models": 1 +"Game Development: Creating Immersive Environments with Unity and Virtual Reality": 1 +"Chemical Engineering: Harnessing the Power of Nanotechnology in Energy Production and Storage": 1 +"Food Science: Exploring the Impact of Genetically Modified Crops on Global Food Security": 1 +"Marine Biology: The Impact of Plastic Pollution on Coral Reefs and Solutions through Sustainable Practices": 1 +"Understanding ggplot2: A Comprehensive Guide to Data Visualization in R Programming for Statistical Analysis": 1 +"Ancient History: The Invention of Printing Press and Gunpowder: Their Influence on the Evolution of Societies": 1 +"Global Economics: The Effect of Cryptocurrency and the Introduction of Quantum Computing on Global Economy": 1 +"From Literature to Screen: The Portrayal of Renewable Energy Technologies in Dystopian Fiction": 1 +"Advanced Physics: Investigating Quantum Entanglement and Superposition using Interferometers and Photon Detectors": 1 +"Biology: Essentials of Genetics - An In-depth Study into DNA Replication and Repair Mechanisms": 1 +"The Progression of Culinary Arts: A Cultural Anthropological Study through the Lens of Food Habits": 1 +"Data Analysis: Interpreting Normal Distribution via Z-Scores in Python and R": 1 +"Introductory Astronomy: Decoding the Mysteries of the Universe through the Study of Black Holes and Supernovae": 1 +"Planetary Sciences: Understanding Mars Terrains with GIS and Deep Learning Algorithms ": 1 +"Physics 230: Implications of Quantum Mechanics in Modern Telecommunication ": 1 +"Fitness Science: Utilizing Kettlebells, Plyometrics, and Biofeedback in Urban Workouts for Cardiovascular Endurance": 1 +"Molecular Biology: RNA Interference - Unraveling the siRNA and miRNA Pathways ": 1 +"Chemistry for the Young: Exploring Polymerization with Glue and Borax Experiments ": 1 +"Fine Arts: Form and Texture for Pottery - A Study on Clay and Firing Techniques ": 1 +"Advanced Spanish: Building Suspense in Narrative Writing through the Iceberg Theory and Dramatic Irony ": 1 +"High School Statistics: Introduction to Box Plots and Data Visualization in R Programming ": 1 +"The Serotonin Surge: Investigating the Psychology of Humor through Biochemical Response ": 1 +"The Impact of Ableton Live in Electronic Music Production: An In-depth Study of Synthesizer Programming": 1 +"Physics: Exploring Quantum Mechanics through the Lens of Schrödinger's Cat Paradox": 1 +"Understanding The Role of Cryptocurrency in Modern Economy: from Bitcoin to Ethereum": 1 +"Environment Science: Analyzing the Impact of Climate Change on Global Biodiversity": 1 +"Psychology 101: Probing the Human Psyche: The Role of Cognitive Behavioral Therapy in Treating Anxiety Disorders": 1 +"Chemistry: The Chemistry of Fermentation and the Making of Wine": 1 +"Art Theory: The Influence of Cubism on Modern Graphic Design": 1 +"Data Science: Leveraging Python and Machine Learning for Predictive Modelling": 1 +"Sociology: The Impact of Social Media on Interpersonal Communication in the 21st Century": 1 +"Mathematics: The Role of Calculus in Robotics and Artificial Intelligence": 1 +"Genetics: The Role of CRISPR in Gene Editing and its Ethical Implications.": 1 +"Physics 101: Understanding Quantum Mechanics through Schrödinger’s Cat Experiment": 1 +"Nutrition and Dietetics: The Role of Fermentation in Gut Health and Disease Prevention": 1 +"Mathematics: Exploring Fractal Geometry in Nature using Mandelbrot Set": 1 +"Mindfulness in Education: Cultivating Emotional Balance through Yoga and Meditation": 1 +"Advanced French: Expanding Vocabulary through Immersive Language Learning with Babbel": 1 +"Exploring Cellular Communication: A Biochemistry Course using the Concept of Signal Transduction": 1 +"Grammar: Enhancing English Sentence Structure through Syntax Trees": 1 +"Virtual Reality in Cinema: Investigating Visual Effects and Audience Interaction": 1 +"Geology: Interpreting Earth's History through Fossil Records and Stratigraphic Principles": 1 +"Artificial Intelligence and Genetics: Predictive Modelling in Genomics using R, Keras and Matplotlib Visualization.": 1 +"Decoding the Universe: Applying Radio Astronomy and Spectroscopy in Advanced Galactic Mapping Techniques": 1 +"Physics for Teens: Exploring Energy and Matter through Simple Experiments": 1 +"Spanish Literature: A Study of Bullfighting Symbolism in Novels using Narrative Analysis Techniques": 1 +"The Evolution of Flight: The Airplane's Impact on the Progression of Aeronautical Engineering": 1 +"Music Creation: Exploring Baroque with Harpsichords and Counterpoint Techniques": 1 +"Theatre Studies: Investigating the Influence of Augmented Reality in Staging Classical Plays": 1 +"Cognitive Robotics: The Convergence of Behavioral Science and Artificial Intelligence Algorithms": 1 +"Young Geologists: Unearthing the Wonders of Plate Tectonics - A Journey into Seismic Studies and Strata Analysis": 1 +"Sociolinguistics: Decoding Social Media: Evaluating Language Use and Trends using Big Data Analysis in R": 1 +"Cultural Studies: The Impact of Climate Change on Indigenous Agricultural Practices and Food Security": 1 +"Geometry: The Influence of Fractals in Modern Architecture": 1 +"Employing Python and NMR Spectroscopy for Drug Discovery and Molecular Dynamics Studies": 1 +"Intermediate Filmmaking: Leveraging Final Cut Pro and Photoshop for Cinematic Storytelling in Foreign Films": 1 +"Basketball Analytics: Predictive Modeling in R Using Linear Regression and Power BI": 1 +"Decoding Irony in Blues: The Confluence of Allegories in Young Adult Literature via Symbolism": 1 +"Dance: Choreography and Stage Design - A Deep Dive into Augmented Reality Tools": 1 +"Botany: An In-depth Study of Fungi Biotechnology and Mushroom Cultivation using Cloning": 1 +"High School Physics 207: The Peculiarities of Time and Space - An Intro to Relativity Theory": 1 +"Fashion Industry Economics: Understanding Consumer Preferences and Market Shifts through Big Data Analysis": 1 +"Statistical Theory: Unraveling Variance and Probability Distributions with R and SAS": 1 +"Chemistry: Exploring Enzyme Kinetics - Making Sense of Michaelis-Menten Equation": 1 +"Biomedical Engineering: Decoding the Human Genome - Machine Learning Applications in Precision Medicine": 1 +"Astronomy: Investigating the Expansion of the Universe - A Deep Dive into Dark Energy": 1 +"Artificial Intelligence: Unveiling the Secrets of Neural Networks in Predictive Modeling": 1 +"Economics: Applying Game Theory to Understand Competitive Market Dynamics": 1 +"Media Studies: Assessing the Influence of YouTube Vloggers on Mental Health Awareness": 1 +"Sustainable Engineering: Innovative Green Building Techniques for Urban Housing": 1 +"Archaeology: Decoding the Mayan Calendar - The Intricacies of Ancient Timekeeping": 1 +"Nutrition Science: Understanding Probiotics - Microscopic Allies in Digestive Health": 1 +"Advanced Coding: Mastering React.js, Firebase, and Redux for Robust Web Application Development": 1 +"Immersive Technology: Crafting Virtual Reality Experiences with Unity and Unreal Engine": 1 +"Physics Foundations: The Pendulum Swing Experiment - A Study on Harmonic Motion": 1 +"Cutting-edge Cybersecurity: Quantum Encryption and Secure Key Distribution Protocols ": 1 +"History: The Influence of Railroads on the Expansion of the American West": 1 +"Cultural Anthropology: Analyzing Ritual Performances with Live Streaming Platforms": 1 +"Computational Chemistry: Drug Discovery and Molecular Dynamics Simulations using R": 1 +"Unraveling Textiles: The Chemistry of Fiber Reactions with Natural and Synthetic Dyes": 1 +"Exploring Piano Acoustics: Sound Wave Patterns and Vibrations Studied with Oscilloscope": 1 +"Political Science: Comparing Democratic and Authoritarian Regimes through Realist and Liberal Lenses": 1 +"Musicology: An In-depth Study of Jazz Improvisation Techniques using Miles Davis's 'Kind of Blue' Album as a Framework": 1 +"Physics: Quantum Mechanics - Unraveling the Mysteries of Quantum Superposition and Entanglement": 1 +"Advanced Calculus: Applying Differential Equations in the Analysis of Dynamic Systems": 1 +"Visualizing History with Augmented Reality: A New Perspective on Ancient Civilizations": 1 +"English 210: The Art of Rhetoric: Analyzing Persuasive Techniques in Political Speeches Using Text Mining": 1 +"Innovation in Medicine: The Potential of Nanotechnology in Targeted Drug Delivery Systems": 1 +"Culinary Art: The Science of Molecular Gastronomy in Contemporary Cooking": 1 +"Zoology: The Evolution and Ecology of Predatory Behavior in Wild Big Cats": 1 +"Forecasting Climate Change Impacts on Global Trade with Machine Learning, Time-Series Analysis, and GIS": 1 +"Cultural Studies: The Intersection of Social Media Technology and Youth Activism": 1 +"Advanced Analytics in Sports: Player Performance Evaluation Using Machine Learning and Data Visualization with Power BI": 1 +"Advanced Bioinformatics: Unveiling Genomic Data Analysis with R Language": 1 +"Quantum Mechanics: Utilizing Quantum Entanglement in Secure Communication: A Computational Study": 1 +"Efficient Software Development: Deep Dive into Agile Methodologies with Jira": 1 +"Psychology: Deciphering Cognitive Biases using Functional Magnetic Resonance Imaging ": 1 +"Probing the Microcosm: Quantum Field Theory and its Application in Particle Physics": 1 +"Nanotechnology: Unraveling the Potential of Carbon Nanotubes in Energy Storage": 1 +"Analyzing Political Discourse: Metaphor Usage in Presidential Speeches: A Corpus Linguistics Approach ": 1 +"Mastering Cybersecurity: Intrusion Detection with Machine Learning in Python": 1 +"Gastronomic Journey: Exploring Spices and their Medicinal Properties in Ayurvedic Cooking": 1 +"Navigating Finance: Unpacking Cryptocurrency Markets with Data Analytics": 1 +"Unraveling Innovation: The Impact of the Printing Press, the Compass, and Gunpowder on the Renaissance Era": 1 +"Biochemistry: Investigating Genetic Engineering's Role in Advancing Personalized Medicine": 1 +"Digital Art Exploration: The Emergence of Virtual Reality in Contemporary Sculpture": 1 +"Economic History: Evaluating the Effects of Gold Standard Policies on Great Depression Era Economics": 1 +"Critical Thinking Decoded: Assessing Cognitive Biases through Decision Trees and Bayesian Inference": 1 +"Ethical Musings: A Basic Overview of Kant's Deontological Ethics": 1 +"World Literature: Comparative Study of Magic Realism in Diverse Cultural Narratives": 1 +"Aerospace Engineering: Pioneering the Future with Quantum Communication Satellites": 1 +"Detailed Examination of Urban Ecology: Assessing Urbanization Impact using Remote Sensing, GIS Analysis and Drone Surveying": 1 +"Organic Chemistry: Unearthing the Potential of Polymer Chains in Plastic Recycling Techniques": 1 +"Unveiling the Secrets of MS Excel: Transforming Educational Administration with Spreadsheets": 1 +"Decoding Nature Imagery in Film: Its Influence on Contemporary Literature during the Cold War": 1 +"Machine Learning in Healthcare: Predictive Analysis of Patient Outcomes using R and Keras": 1 +"Physics and Music: The Impact of Quantum Mechanics on Melodic Structures in Jazz Improvisation": 1 +"Digital Competence: The Role of Augmented Reality in 21st Century Learning": 1 +"Design: The Fusion of Traditional Sculpture and 3D Printing with AutoCAD": 1 +"Mastering Ableton Live: An Intensive Review of Sound Design and Synthesis in Electronic Music Production": 1 +"Uncovering Societal Narratives: A Discourse Analysis Approach in Young Adult Literature for Sociology": 1 +"Investigating the Microbiome: A Course on Metagenomic Sequencing with Next-Generation Sequencing (NGS)": 1 +"Economics: The Impact of Blockchain Technology on Financial Market Dynamics.": 1 +"The Impact of Autonomous Vehicles and Artificial Intelligence on Traffic Management and Urban Planning": 1 +"Exploring Modern Dance: The Role of Virtual Reality in Creating Immersive Performances": 1 +"Physics in Art: Understanding the Optical Properties of Stained Glass through Spectrophotometry": 1 +"Composing Melodies with Java, Logic Pro, Synthesizers and Laplace Transforms: A Comprehensive Guide to Frequency Domain Processing": 1 +"Art: Mastering the Craft of Wood Turning with Lathes, Chisels and the Use of CNC Routers": 1 +"Global History: The Evolution of Political Campaigns - The Role of Social Media and Data Analytics": 1 +"Astronomy and Ancient Cultures: The Influence of Celestial Navigation on Mythology and the Development of the Sundial": 1 +"Geology: The Impact of Volcanic Eruptions on Local Ecosystems: A Detailed Study using Remote Sensing": 1 +"Biology for All: Exploring Genetic Sequences with Ruby Programming": 1 +"Music and Tech: The Role of Ableton Live's Session View in the Development of Live Electronic Performance": 1 +"Digital Transformation: The Power of Artificial Intelligence in Enhancing Customer Experience": 1 +"Culinary Creations: The Influence of Molecular Gastronomy on Modern Cuisine": 1 +"Neuroscience: Exploring Visual Processing through Functional Magnetic Resonance Imaging": 1 +"Economics: Using Predictive Analytics for Strategic Decision Making in Global Trade": 1 +"Photography: Mastering Light Composition Techniques using High-Speed Shutter and Aperture Control": 1 +"Astronomy: Decoding the Secrets of Dark Matter through Advanced Telescopic Observations": 1 +"Biochemistry: Unveiling the Mysteries of DNA Replication with Advanced Microscopy Techniques": 1 +"The Evolution of Cybersecurity: An In-depth Analysis of Quantum Cryptography in Protecting Information": 1 +"Microbiology: Unraveling the Complexities of Bacterial Resistance through Genomic Sequencing and Bioinformatics": 1 +"Literature: Analyzing the Role of Augmented Reality and Virtual Reality in Shaping Modern Narrative Techniques": 1 +"Defending Against DDoS Attacks: Cybersecurity Protocols in Network Knights with Wireshark": 1 +"Ancient History: The Emergence of Agriculture and its Impact on Early Civilizations": 1 +"Exploring Encaustic: A Comprehensive Look at Wax-based Painting Techniques": 1 +"The Role of Biomimicry and Sustainable Design in Modern Architecture": 1 +"Physics: Unraveling the Mysteries of Quantum Mechanics through Calculus": 1 +"Computer Engineering: An Introduction to Microprocessor Design using Verilog": 1 +"Applying Natural Language Processing in Unveiling Themes and Motifs in Victorian Era Poetry": 1 +"Introductory Botany: Discovering Fungi Diversity through Macro and Microscopic Examination": 1 +"The Industrial Transformation: The Steam Engine and its Influence on Global Trade and Society": 1 +"Deciphering Dialects: A Sociolinguistic Study of Sarcasm in British and American English Literature": 1 +"Advanced Robotics: The Role of Machine Learning in Sustainable Agriculture - Ethical Implications & Future Directions": 1 +"Young Biologists: Exploring DNA Sequencing, Gene Editing, and Chromatography": 1 +"Literature Studies: Nature-themed Narratives Analyzed through Feminism": 1 +"Information Technology: Innovative Solutions with Python and JavaScript": 1 +"Elementary Spanish 205: The Importance of Metaphor in Poetry": 1 +"The Influence of Telegraphy on English Business Lexicon: The Expansion of Communication during the Industrial Revolution": 1 +"Augmenting Classical Computing with Quantum Entanglement: Evaluation of 15 Novel Techniques": 1 +"Sociolinguistics: Investigating the Effect of Mobile Payment Systems on Fintech Jargon - A Deep Dive into Blockchain Terminology": 1 +"Ethics: The Craft of Debating - Grasping Paradoxes through Euler Diagrams": 1 +"Visual Communication: An Analysis of Pointillism Technique in the Color and Texture of Post-Impressionism": 1 +"Artificial Intelligence: Implementing Deep Learning Algorithms in Autonomous Vehicle Navigation": 1 +"Microbial Genomics: A Deep Dive into Bioinformatics, Python Programming and Machine Learning Techniques": 1 +"Web Development Mastery: Harnessing the Power of JavaScript and React for Enhanced User Experience": 1 +"Physical Education: Advanced Volleyball Techniques and The Art of Team Leadership": 1 +"Forensic Psychology: Understanding Criminal Behavior through Neuropsychology and Neuroimaging Techniques": 1 +"Economic Analysis: The Transformation of Supply Chain Models using Linear Programming and Game Theory": 1 +"Sports Science: The Influence of Wearable Technology in Athletic Performance Optimization": 1 +"World History: The Impact of Maritime Navigation on Global Trade during the Age of Discovery": 1 +"Gourmet Exploration: The Evolution of Culinary Techniques and the Rise of Molecular Gastronomy": 1 +"Quantum Mechanics: The Role of Wave-Particle Duality in Modern Telecommunication Systems": 1 +"Computer Science: Building Secure Cryptographic Systems using Quantum Computing": 1 +"World Music: The Evolution of Reggae: Exploring Rhythm, Melody, and Harmony through Digital Audio Workstations": 1 +"Biology: The Intricate Dance of DNA: Unraveling Genetic Coding and Replication": 1 +"Language Skills: Enhancing Japanese Kanji Recognition through the Use of Augmented Reality Technology": 1 +"Formal Logic: Advancing Problem-solving Skills through the Study of Inductive Reasoning": 1 +"Cosmology: Delving into Dark Matter: The Invisible Forces Shaping Our Universe": 1 +"Engineering: The Vital Role of Fractals in Creating Efficient Urban Planning Models Using AutoCAD": 1 +"Data Science: Utilizing Deep Learning to Predict Stock Market Trends": 1 +"Game Programming: Creating Immersive Experiences with Unreal Engine - A Comprehensive Guide to Virtual Reality": 1 +"Biochemistry: The Power of Enzymes: Applying Thermodynamics to Understand Biological Reactions": 1 +"Biological Engineering: Utilizing CRISPR-Cas9 for Advanced Genetic Modification ": 1 +"Astronomical Observations: The Use of Hubble Space Telescope in Unveiling the Dark Matter": 1 +"Applied Mathematics in Finance: Predictive Modeling for Stock Market using Regression Analysis": 1 +"Cyber Warriors: Understanding the Role of Blockchain in Enhancing Data Security and Privacy": 1 +"Public Health Informatics: The Power of Big Data in Tracking and Preventing Epidemics": 1 +"Environmental Education: Exploring Climate Change through Google Earth Virtual Tours": 1 +"Theoretical Politics: A Close Examination of Machiavelli's The Prince in Modern Political Scenarios": 1 +"Engineering Marvels: Investigating the Structural Integrity of Bridges Through Finite Element Analysis": 1 +"Secret Trails: Decoding Ancient Egyptian Hieroglyphics using Optical Character Recognition Technology": 1 +"Cultural Anthropology: Unraveling Tribal Customs in Africa using Virtual Reality and 3D Animation": 1 +"Chemistry: Innovative Strategies in Organic Synthesis: A Comprehensive Guide to Photoredox Catalysis and Flow Chemistry": 1 +"Architectural Design: The Evolution of Green Infrastructure: Understanding the Impact of Biophilic Design and Vertical Gardens on Urban Landscapes": 1 +"Mathematics: Advanced Data Analysis: Employing Machine Learning Algorithms and Monte Carlo Simulations for Predictive Modeling": 1 +"Sociology: The Impact of Social Media on Modern Societies: A Comparative Analysis using Quantitative and Qualitative Research Methods": 1 +"Astronomy: Celestial Mechanics: Understanding Stellar Phenomena through Radio Astronomy and Spectroscopy Techniques": 1 +"Gastronomy: The Science of Taste: Molecular Gastronomy and Sensory Analysis in Modern Cuisine Development": 1 +"Advanced Robotics: Deep Learning and Artificial Intelligence in Humanoid Robots: Introduction to Reinforcement Learning and Neural Networks": 1 +"Visual Arts: The Renaissance Revisited: Exploring Symbolism and Perspective in Italian Art using Virtual Reality and Augmented Reality Tools": 1 +"Environmental Studies: Climate Change Adaptation Techniques: An Analysis of Geoengineering and Carbon Sequestration": 1 +"Music Production: The Physics of Sound: An In-depth Study into Acoustics and Audio Engineering using Digital Audio Workstations": 1 +"Mastering the Art of Digital Sculpting: Maya, Illustrator and 3Ds Max Techniques with a Focus on Cinema 4D": 1 +"Food Chemistry: The Science of Fermentation and its Role in World Cuisines": 1 +"Blockchain Technology and Its Impact on Cybersecurity in Artificial Intelligence: Ethical Considerations and Innovative Approaches": 1 +"Political Science: The Role of Nationalism in Global Politics: An In-depth Analysis": 1 +"Chromatography and Crystallography: Exploring the Impact of Vitamins on Human Health": 1 +"Quantum Mechanics: A New Era in the Field of Physics": 1 +"Advanced Astrophysics: Exploring the Universe with Parabolic Antennas and Radio Telescopes": 1 +"Deciphering the Human Brain: The Role of Functional MRI (fMRI) in Understanding Neuroplasticity": 1 +"Mastering Complex Numbers: Unraveling the Mysteries of Quantum Mechanics with Python, R, and Fortran": 1 +"Building Acoustic Domes: Using Spatial Audio for Immersive Sound Experiences in Virtual Reality": 1 +"Biology: Understanding Photosynthesis - An Examination of Green Energy Sources": 1 +"Meteorology: Analyzing the Role of Hurricanes in Global Warming": 1 +"Sport Science: Profiling Soccer Performance - A Study of Game Statistics Using SPSS and Tableau": 1 +"Neuroscience: Understanding Emotion Regulation through Brain Imaging Techniques": 1 +"Data Analysis in Sports: A Comprehensive Study of Basketball Statistics Using SPSS and MATLAB": 1 +"Information Technology: Fundamentals of Programming with Ruby, C++, and GitHub for Version Control": 1 +"Optics: Unraveling the Mysteries of Laser Technology - Beam Splitters and Photodetectors": 1 +"Computer Science 101: Exploring Big Data with Hadoop and SQL": 1 +"Biochemistry: The Art of Beer Brewing - Highlight on Enzymatic Processes": 1 +"Music Theory: The Development of Musical Notation - The Influence of the Piano on Classical Composition Techniques": 1 +"Advanced Algebra: Utilizing Graph Theory in Network Analysis": 1 +"Biochemistry: The Influence of Protein Folding on Disease Pathogenesis ": 1 +"Environmental Science: Assessing Climate Change Impact through Glacial Melt Studies": 1 +"Fine Arts: Exploring Renaissance Period through 3D Modeling and Virtual Reality": 1 +"Quantum Physics: Understanding Particle Duality and Wave-Particle Interactions": 1 +"Nutritional Science: The Effect of Phytonutrients on Cellular Regeneration": 1 +"Aesthetics: The Influence of Synesthesia on Modern Art and Music": 1 +"The Role of Quantum Computing in Cryptography: A Comprehensive Examination": 1 +"Eco-Linguistics: The Interplay of Linguistic Choices and Climate Change Discourse": 1 +"Applied Geometry: Deciphering Natural Phenomena through Geodesic Domes and Voronoi Diagrams": 1 +"Understanding the Universe: An Introduction to Astrophysics Through the Lens of Dark Matter Research": 1 +"Chemistry in Cuisine: The Molecular Gastronomy of Food and Wine Pairing": 1 +"Exploring the Digital World: The Impact of Blockchain and Cryptography on Financial Systems": 1 +"The Language of Film: Influence of Sound Design and Foley Artistry in Cinema": 1 +"Sociology and Architecture: An Examination of Urban Planning and the Impact on Social Structures": 1 +"Mathematics: The Beauty of Fractals - Discovering Patterns in Nature through the Mandelbrot Set": 1 +"Sustainable Energy: Harnessing the Power of Tidal Turbines and Solar Panels for a Greener Future": 1 +"Data Science: Applications of Deep Learning in Predictive Healthcare Analytics": 1 +"Fashion and Technology: The Role of Augmented Reality in the Future of Retail Marketing": 1 +"Biology: Genomics and the Application of CRISPR Technology in Genetic Engineering": 1 +"Advanced Geometry: Understanding the Role of the Golden Ratio in Architecture and Design": 1 +"Chemistry: The Art of Perfume Creation through the Study of Organic Compounds": 1 +"The Physics of Dance: Exploring the Science of Movement and Gravity through Ballet Techniques": 1 +"Spanish Literature: Crafting Narrative Structures in Magical Realism using Foreshadowing and Symbolism": 1 +"Biological Anthropology: Understanding Human Evolution through the Study of Fossil Records and DNA Sequencing": 1 +"Ancient History: The Impact of the Pythagorean Theorem on the Development of Greek Mathematics": 1 +"Music Theory: The Influence of Baroque Music on the Evolution of the Piano Sonata": 1 +"Astronomy: Exploring the Cosmos through the Study of Exoplanets and Stellar Spectroscopy": 1 +"Linguistics: Decoding the Structure of Language through Phonetics and Morphology": 1 +"Calculus: Mastering Derivatives and Integrals through Real World Applications in Economics and Engineering.": 1 +"Astrophysics: Stellar Evolution and the Role of Computational Simulation": 1 +"Medieval Literature: The Impact of The Canterbury Tales on Narrative Structures": 1 +"Physics: Advanced Quantum Field Theory and the Standard Model": 1 +"Food Science: Molecular Gastronomy - The Science Behind Textures and Flavors": 1 +"Computer Science: Advanced Machine Learning Techniques - Deep Neural Networks and Genetic Algorithms": 1 +"Environmental Studies: Climate Change Modelling - Employing Remote Sensing and GIS Techniques": 1 +"Psychology: Cognitive Behavioral Therapy - An In-depth Study of its Principles and Applications": 1 +"Economics: Understanding Market Behaviour through Game Theory and Behavioral Economics": 1 +"Sociology: The Impact of Social Media on Identity Formation and Group Dynamics": 1 +"Artificial Intelligence: Exploring Ethics and Bias in Machine Learning Algorithms": 1 +"Neurolinguistics: Unlocking the Secrets of Human Brain Communication using fMRI Data and Python": 1 +"Visual Perception: Deciphering Optical Illusions and Perspective in Baroque Art through Geometrical Analysis": 1 +"Chemistry and Fashion: The Role of Synthetic Polymers in Modern Textiles": 1 +"Physics 407: Unraveling the Mysteries of Photons and Particle-Wave Duality in Quantum Optics": 1 +"Artificial Intelligence & Ecology: Leveraging Machine Learning for Biodiversity Conservation": 1 +"French Literature 204: Probing into Symbolism and Alexandrine Meter in Baudelaire's Poetry": 1 +"Cosmology: Grasping the Expanding Universe and Dark Matter through Astrophysical Calculations": 1 +"Understanding the Complexity of Gothic Architecture: A Comprehensive Study of Ribbed Vault Techniques": 1 +"Epigenetics 203: The Impact of DNA Methylation Studies and Genomic Imprinting on Epigenetic Therapy": 1 +"Investigating the Potential of Haptic Technology in Improving Golf Swing Mechanics through Virtual Reality: Five Innovative Methods": 1 +"Advanced Psychology: The Impact of Social Media on Youth Mental Health": 1 +"Contemporary Literature: A Comparative Study of Graphic Novels and Traditional Novels": 1 +"Environmental Studies: Investigating the Role of Urbanization in Biodiversity Loss": 1 +"Demystifying the Universe: An Exploration of Dark Matter and Quantum Physics": 1 +"Tech in Healthcare: The Integration of AI and Machine Learning in Disease Diagnosis": 1 +"Advanced Calculus: Applying Vector Mathematics in Engineering Problems": 1 +"Sports Science: The Role of Biomechanics in Athlete Performance Enhancement": 1 +"Global Politics: Assessing the Impact of Cyber Warfare on International Relations": 1 +"Exploring Information Technology: The Evolution of Quantum Computing": 1 +"Creative Learning for Kids: Exploring Basic Physics through LEGO Structures": 1 +"Chemoinformatics: Leveraging R and Java for Drug Discovery through Distributed Computing": 1 +"Art Theory: Unveiling Cubism in 3D Modeling using Virtual Reality Tools": 1 +"Cybersecurity: Core Principles of Cryptography - Introducing Cipher Suites and Public Key Infrastructure through OpenSSL and Wireshark": 1 +"Philosophy of Mind: Basic Notions and Cognitive Biases Explored through Thought Experiments and Predicate Logic": 1 +"The Influence of Surrealist Art on Social Movements during the Spanish Civil War": 1 +"Sustainable Engineering: Utilizing Nanotechnology for Energy Efficiency in Electric Vehicle Production": 1 +"Data Science: Leveraging the NumPy and Pandas Libraries for Time Series Analysis in Python": 1 +"International Relations: Understanding Global Governance in the Age of AI with Case Studies on Data Privacy and Machine Ethics": 1 +"Linguistics: Language and Culture: The Role of Social Media, Cryptocurrencies, and Augmented Reality in Contemporary Communication": 1 +"Astrophysics: The Science of Light, Spectroscopy, and Image Processing": 1 +"Chemistry: The Role of Nanotechnology in Drug Delivery Systems": 1 +"Youthful Geologists: Unraveling Earth's History through Fossil Identification and Geological Mapping": 1 +"Advanced Genetics: Exploring Human Genome with CRISPR-Cas9 and Genomic Sequencing": 1 +"Music Theory: Understanding the Structure and Dynamics of Jazz with Sibelius Notation Software": 1 +"Architecture: The Influence of Minimalism on Sustainable Building Design": 1 +"Finance Simplified: Comprehending Investment Risk and Return with the Capital Asset Pricing Model": 1 +"Technological Disruption: Assessing the Effects of Artificial Intelligence on the Future of Employment": 1 +"Introduction to Data Science: Predicting Stock Market Trends using Time Series Analysis": 1 +"Literary Studies: Postcolonial Narratives in a Digital Age: Insights from Text Mining Techniques": 1 +"Environmental Science: The Application of Remote Sensing in Monitoring Climate Change": 1 +"Understanding Astronomy: Gravitational Waves and the Expansion of the Universe through Radio Astronomy Techniques": 1 +"Creative Writing: Learning Narration Styles and Plot Development with Scrivener and Grammarly": 1 +"Chemistry in the Kitchen: Exploring Molecular Gastronomy and the Science Behind Cooking Techniques": 1 +"Advanced Robotics: Building Autonomous Systems with Raspberry Pi and Machine Learning": 1 +"Digital Art: Creating Captivating Visuals with Adobe Illustrator and 3D Animation Techniques": 1 +"Sustainable Architecture: Designing Eco-efficient Buildings with Passive Solar Techniques and Green Materials": 1 +"Advanced Topics in Physics: Quantum Computing and Quantum Cryptography: Building Secure Information Systems": 1 +"Marine Biology: Investigating Oceanography through Sonar Technology and Deep Sea Exploration": 1 +"Music Theory: Analyzing the Evolution of Jazz: From Ragtime to Bebop": 1 +"Photography: The Art and Science of Light: Exploring Techniques in Portraiture and Landscape with Photoshop and Lightroom": 1 +"Quantum Computing in Drug Discovery: Leveraging Qiskit and Machine Learning for Molecular Modeling": 1 +"Music: Classical Symphony and the Evolution of Sonata Form": 1 +"Bioinformatics in Aquaculture: The Role of Genomics in Sustainable Fish Farming": 1 +"Creative Writing: Incorporating Metaphors in Climate Change Discourse through Digital Publishing": 1 +"The Importance of Data Privacy in Safeguarding Non-Profit Organization Funds amidst Digital Wallet Proliferation: Five Practical Steps": 1 +"Galactic Detectives: Unveiling the Universe with the Hubble Space Telescope and Dark Matter Research": 1 +"Business Writing: Utilizing PowerPoint Designs and Google Translate for Cross-Cultural Presentations and Negotiations": 1 +"Intermediate Meteorology: Tracking Hurricane Paths with Doppler Radar and Weather Forecasting Tools": 1 +"Information Technology Foundations: Mobile App Development with Blockly, Java and Firebase": 1 +"Geometry: Investigating Fractals with the Mandelbrot Set: A Worldwide Perspective": 1 +"Advanced Physics: Quantum Mechanics and the Art of Wave Function Interpretation": 1 +"Mastering Excel: Utilizing PivotTables for Effective Business Decision Making": 1 +"Anatomy and Physiology: The Human Musculoskeletal System Explored through 3D Modelling": 1 +"Applied Linear Algebra: Exploring Vector Spaces with MATLAB": 1 +"Environmental Science: Understanding Climate Change through Geospatial Analysis": 1 +"Narrative Artistry: The Role of Metaphor in Shaping Emotional Engagement": 1 +"Data Mining in Sports: Predictive Modeling using R and Python for Enhanced Game Strategies": 1 +"Music Theory: Composing Melodies with the Aid of Fourier Series": 1 +"History and Data Science: Unraveling Historical Events through Machine Learning Algorithms": 1 +"Exploring Space: Understanding our Solar System through Virtual Reality Technologies": 1 +"Biology: Exploring Plant Cell Structures Through the Use of Electron Microscopy": 1 +"Chemistry: Understanding Chemical Reactions and Molecular Structures through Quantum Chemistry and Spectrometry": 1 +"Introduction to Robotics: Exploring the Application of AI and Machine Learning in Autonomous Systems": 1 +"Geography: Analyzing Geographic Patterns and Human Impact Using Remote Sensing and GIS": 1 +"Sports Science: Understanding Kinesiology and Biomechanics in Enhancing Athletic Performance": 1 +"Financial Engineering: Applying Quantitative Finance Techniques in Risk Management and Derivative Pricing": 1 +"Music Theory: Appreciating Classical Compositions through the Examination of Harmonic Progressions and Melodic Structures": 1 +"Philosophy: The Role of Existentialism and Absurdism in Modern Thought: A Comparative Analysis": 1 +"Data Science: The Application of Machine Learning Algorithms in Predictive Analytics": 1 +"Neuroscience: Exploring Brain Functions Through Electrophysiology and Functional Magnetic Resonance Imaging.": 1 +"Physics: Understanding the Universe through the Lens of Quantum Mechanics ": 1 +"Exploring the Influence of Social Media on Politics: A Twitter Case Study": 1 +"Artistic Expression in Physics: The Role of Fractals, Symmetry, and Dimension in Visual Arts": 1 +"Linguistics: How Internet Slang Shapes Modern Communication: A Study on Memes and Emojis": 1 +"Geology: Unearthing Ancient Mayan Agriculture Practices using LIDAR Technology": 1 +"Biopsychology: Exploring Human Consciousness Through EEG and Neurofeedback ": 1 +"Computer Science: Binary Language and Encryption: Pioneering Digital Security ": 1 +"Inorganic Chemistry: Unraveling the Mystery of Crystallography through Schrödinger's Equation and Chem3D": 1 +"Culinary History: The Revolutionary Impact of the Fermentation Process and Copper Cookware": 1 +"Advanced Cinematography: The Art of Color Grading in Ultra High Definition Filmmaking": 1 +"Mathematics: Exploring the Use of Fractal Geometry in Computer Graphics with Python": 1 +"Anthropology: Predictive Analysis of Cultural Migration Patterns Using Machine Learning": 1 +"Electrical Engineering: The Role of Quantum Dots in Next-Generation Solar Cell Design": 1 +"Drama Studies: Utilizing Method Acting Techniques in Contemporary Theatre: A Study of Konstantin Stanislavski's System": 1 +"Astronomy for Juniors: Exploring the Galaxy with Telescopes and Star Maps": 1 +"Biochemistry: DNA Replication and PCR Techniques - Implications for Genetic Engineering": 1 +"Sociology: The Effect of Social Media on Interpersonal Relationships and Communication": 1 +"Application of Laplace Transforms in Solving Differential Equations in Electrical Circuits": 1 +"Application of Google's TensorFlow in the Analysis of Climate Change Data and Predictive Modelling": 1 +"Physics: Deciphering the Mysteries of Subatomic Particles Using Quantum Field Theory": 1 +"Anthropology: Decoding Cultural Perspectives in Global Politics": 1 +"Using Google Analytics and Shopify: Leveraging E-commerce Strategies for Retail Success": 1 +"The Mathematics of Music: A Harmonic Analysis using Wavelet Transforms": 1 +"The Role of Gas Chromatography and Mass Spectrometry in Perfume Production: An Emphasis on Separation Techniques": 1 +"Neuroscience: The Influence of Sleep on Cognitive Function - Exploring EEG, fMRI, and Transcranial Magnetic Stimulation": 1 +"Physics: Quantum Mechanics and the Uncertainty Principle": 1 +"Film Studies: The Impact of Virtual Reality on Modern Storytelling - A Study on Immersive Narration": 1 +"Chemistry: The Complexity of Organic Chemistry and its Influence on Pharmaceutical Development": 1 +"Linguistics: The Science of Social Discourse: Analyzing Sociolinguistics through Factor Analysis in SPSS using Regression Models": 1 +"Philosophy: The Study of Existentialism and Human Freedom with Jean-Paul Sartre's Being and Nothingness": 1 +"Exploring the Multiverse: Quantum Physics and the Theory of Parallel Universes": 1 +"Dietetics: Understanding the Impact of Antioxidants on Cellular Health and Aging": 1 +"Information Technology: A Comprehensive Review of Artificial Intelligence and Neural Networks in Data Privacy": 1 +"Fitness Training: Yoga and Flexibility: Evaluating Ashtanga Yoga through Biomechanics": 1 +"Political Science: The Influence of Social Media on Public Opinion and its Democratic Consequences": 1 +"Advanced Mathematics: Decoding Chaos Theory through Nonlinear Dynamics and MATLAB Simulations": 1 +"Unveiling Social Constructs in Gothic Literature: A Thematic Study through Feminist Lens": 1 +"Data Science: Proficiently Harnessing Predictive Analytics using R and Hadoop": 1 +"Pharmaceutical Economics: Utilizing SPSS for Decision Tree Analysis in Drug Pricing": 1 +"Decoding the Progression of Country Music: An In-depth Study on Slide Guitar and Banjo Techniques": 1 +"Quantum Physics: An Introduction to String Theory and Multiverse Concepts": 1 +"Digital Art: The Impact of Augmented Reality on Contemporary Graphic Design": 1 +"Music Theory: The Influence of Artificial Intelligence on Composing and Harmonizing": 1 +"Human Anatomy: The Use of Virtual Reality in Surgical Education and Practice": 1 +"Environmental Science: The Role of Geographical Information Systems in Wildlife Conservation": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Schrödinger’s Cat Paradox": 1 +"Sociology: The Information Age: The Rise and Influence of Social Media": 1 +"Advanced Mathematics: Decoding Cryptography using Number Theory and Python": 1 +"Molecular Biology: Unraveling Genomic Sequencing with CRISPR and Bioinformatics": 1 +"Advanced Web Design: Building Interactive Websites with JavaScript, React, and Node.js": 1 +"Advanced Biotechnology: Examining Genomic Sequencing with Next-Generation Sequencing Technologies": 1 +"Neurobiology: The Role of Glial Cells in Neurotransmission - An In-depth Study Using Confocal Microscopy": 1 +"Digital Forensics: Leveraging Machine Learning in Cybersecurity - Detecting Advanced Persistent Threats": 1 +"Music Production: Application of Logic Pro X in Sound Design and Mixing Techniques": 1 +"Environmental Science: The Impact of Climate Change on Biodiversity - Using Remote Sensing for Ecosystem Analysis": 1 +"Artificial Intelligence: Deep Learning Algorithms for Autonomous Vehicles - Implementing TensorFlow in Robotic Control Systems": 1 +"Theoretical Physics: Black Holes and Hawking Radiation - An Examination through the Lens of Quantum Field Theory": 1 +"Data Science: Predictive Analytics in Healthcare - A Deep Dive into R Programming and Tableau for Epidemiological Studies": 1 +"Astronomy: The Life Cycle of Stars - Analyzing Stellar Evolution with Spectroscopic Observations": 1 +"Classical Literature: Tragedy in Ancient Greek Plays - The Use of Dramaturgical Analysis in Understanding Aristotelian Poetics": 1 +"History: Exploring Ancient Civilizations through Virtual Reality and 3D Modeling": 1 +"Financial Literacy: A Teenager's Introduction to Cryptocurrency Trading and Blockchain Technology": 1 +"Algebra: Conquering Linear Equations with Real-life Modeling and Problem Resolution": 1 +"Data Science: The Role of Probability Theory in Predictive Analytics and Data Visualization": 1 +"Advanced Game Design: An In-depth Study of Unity and Procedural Generation with C#": 1 +"Geology: Investigating Earthquakes and Tsunamis - The Role of GIS and Remote Sensing in Disaster Management": 1 +"Literature: Exploring Modern Novels with Podcasts and E-reading Platforms": 1 +"Sustainable Living: The Evolution of Renewable Energy Sources and their Impact on Modern Architecture": 1 +"Biomechanics: Grasping Force and Motion in Human Physiology for Improved Athletic Performance": 1 +"Digital Art: The Magic of Portraits - Harnessing Tablet Drawing Techniques for Realistic Human Features": 1 +"Chemistry: Exploring the Complexities of Organic Compounds through Chromatography": 1 +"Mastering Mandarin: Accelerating Language Acquisition with Augmented Reality Interactions": 1 +"Data Science: The Impact of Predictive Analytics in Healthcare Management": 1 +"Poetic Journey: Unpacking the Symbolism in Surrealist Poetry Using Text Mining Tools": 1 +"Ceramics and Culture: Examining the Evolution of Pottery in Ancient China through X-Ray Fluorescence": 1 +"Golden Ratio in Graphic Design: A Numerical Perspective Using Vector Graphics and Proportional Scaling": 1 +"Journalism 101: Reporting Stories with Impact: Utilizing Social Media Trends and Adobe InDesign": 1 +"Biology: Unraveling the Mysteries of Genetics through DNA Sequencing": 1 +"Anthropology: Indigenous Societies and Land: A Study using Satellite Imagery": 1 +"The Resonance of the Strings: The Interplay between Violin Making and Classical Music": 1 +"Physics Fundamentals: Exploring Quantum Mechanics with the Double-slit Experiment": 1 +"Urban Planning: Evaluating the Influence of New Urbanism on Sustainable Cities": 1 +"Organic Chemistry: Detailed Investigation into Stereochemistry using Jmol and Spartan'14": 1 +"Stellar Spectroscopy: Decoding Stellar Composition with High-resolution Spectrographs": 1 +"Complex Analysis and the Beauty of Chaos: Delving into Mandelbrot and Julia Sets with Python": 1 +"Ecology: Applying Drone Technology and GIS for Wetland Conservation in Southeast Asia": 1 +"Unraveling the Mysteries of the Human Brain: Advanced Study of Neurotransmitters using PET and MRI Imaging": 1 +"Cosmology: Unearthing Dark Matter with Large Hadron Collider and Gravitational Lensing": 1 +"Meteorology 101: Understanding Tornado Genesis with Doppler Radar and Storm Chaser Data": 1 +"Psychology: Assessing the Influence of Social Media on Youth Mental Health: An In-depth Study on Instagram": 1 +"Physics of Coffee Brewing: The Thermodynamics Behind Perfect Extraction": 1 +"Marketing Analytics: Using Google Data Studio for Effective Consumer Insights": 1 +"Cryptology Unveiled: Decoding Secrets with Quantum Computing": 1 +"Decoding the Visual Cortex: The Brain's Role in Color Perception": 1 +"Chemistry 101: Unraveling Molecular Structures with X-ray Crystallography": 1 +"Introduction to Robotics: Understanding Autonomous Systems and Sensor Integration": 1 +"Big Data and Machine Learning: Predictive Analysis using Hadoop and Tableau Visualization": 1 +"Assessing the Effect of Virtual Reality on Cognitive Development: A Comprehensive Study in Neuropsychology": 1 +"World History: The Impact of Vinyl Records on Pop Culture and Social Movements": 1 +"Smart Contracts and FinTech: Harnessing the Power of Ethereum Blockchain Technology": 1 +"Exploring Kepler's Laws of Planetary Motion through Interactive 3D Models": 1 +"Zoology: Unveiling Animal Behavior: A Journey into Ethology and Behavioral Genetics": 1 +"Quantum Mechanics: Unraveling the Mystery of Quantum Entanglement using Matrix Mechanics": 1 +"Chemistry: The Future of Clean Energy - The Science behind Solar Panels and Lithium-ion Batteries": 1 +"Advanced Topology: Understanding Black Holes through Differential Geometry and General Relativity": 1 +"Analyzing Basketball Strategies in Team Sports: The Role of SportsCode Gamebreaker and Catapult Sports Performance Tracking": 1 +"The Steam Engine and The Telegraph: Influences on French Commercial Language during the Industrial Revolution": 1 +"Augmented Reality in Civil Engineering: Building Smart Infrastructure with AutoCAD and Unreal Engine": 1 +"The Role of Metaphor in Prose and Speeches of Civil Rights Activists: An In-depth Study using Corpus Linguistics Tools": 1 +"Microbiology: Investigating Viral Pathogenesis with Cryo-Electron Microscopy and Single-Molecule Imaging Techniques": 1 +"Innovative Strategies in Business Management: A Machine-Learning Approach with Python": 1 +"Fundamentals of Neuroscience: Understanding Sleep Patterns using Functional Magnetic Resonance Imaging (fMRI) in Sleep Technology": 1 +"Ethics in Medicine: Decoding Bioethical Dilemmas with Deontology": 1 +"The Art of Storytelling: Developing Plot through Suspense in Fiction Writing": 1 +"Reasoning Skills for Kids: Learning Deductive Reasoning through Puzzles and Brain Teasers": 1 +"Meteorology Studies: Climate Change Impact on Polar Ice Caps - A Remote Sensing Perspective": 1 +"Applied Data Science: Time Series Forecasting with ARIMA Models in Python": 1 +"World Literature: Existentialism in French Literature - An Exploration with Jean-Paul Sartre's Works": 1 +"Advanced Geometry: Exploring Three-Dimensional Shapes through Projections and Cross-Sections": 1 +"Classical Philosophy and Contemporary Society: The Relevance of Platonic Thought in Current Social Discourse.": 1 +"Biology: The Role of Genetic Engineering in Crop Improvement: A CRISPR-Cas9 Approach": 1 +"Data Science: Predictive Analytics Using Machine Learning: A Practical Approach with Python": 1 +"Cinema Studies: Decoding the Aesthetic of Surrealism in French Cinema: An Existentialist Lens": 1 +"Chemistry: The Periodic Law and its Role in Chemical Bonding": 1 +"Network Infrastructure: Advanced Concepts of Routing and Switching: Understanding OSPF and BGP Protocols": 1 +"Immersive Architectural Design: Advanced 3D Visualization with SketchUp and Project Coordination using Jira": 1 +"Environmental Studies: Assessing the Impact of Urbanization on Biodiversity: A Study Using GIS Technology": 1 +"The Comprehensive Guide to Inductive Reasoning and Sudoku Puzzles: Understanding Binary Arithmetic and Boolean Algebra with VHDL and FPGA Technology": 1 +"The Confluence of Music and Mathematics: Exploring Rhythm and Algorithm in Algorithmic Composition": 1 +"History: The Role of Diplomatic Relations in the Cold War: A Study through Declassified Documents": 1 +"Biology: An In-depth Look at Cellular Respiration and Energy Production in Mitochondria": 1 +"Accounting: Utilizing BlockChain Technology for Financial Transactions and Auditing": 1 +"Astronomy: Unveiling the Mysteries of Dark Matter through Advanced Gravitational Lensing Techniques": 1 +"Sports Science: The Physiology of Endurance: An Analysis of Triathlon Athletes": 1 +"Nanotechnology: The Role of Graphene in Enhancing Battery Efficiency ": 1 +"Cognitive Science: The Psychological Implications of Virtual Reality on Spatial Awareness": 1 +"Ceramics: Traditional and Contemporary Glazing Techniques: An Examination of Raku Firing": 1 +"Biochemistry: Unraveling the Mechanisms of Enzyme Catalysis: A Perspective through Molecular Dynamics Simulation": 1 +"Comparative Literature: The Impact of the French Revolution on Romantic Poetry: A Thematic Analysis": 1 +"The Influence of Digital Communication on International Relations: An Exploration from A Media Studies Perspective": 1 +"Advanced Python Programming: Unveiling Machine Learning Techniques with Support Vector Machines and Decision Trees": 1 +"Geography 202: The Influence of Climate Change on the Migration Patterns of Arctic Wildlife": 1 +"Music Theory: Harmonic Progressions and Modulation Techniques in Romantic Era Compositions": 1 +"Philosophy: An In-depth Study of Kant’s Epistemology and its Impact on Modern Ethics": 1 +"Environmental Science: The Role of Algae in Carbon Sequestration - An Exploration Through Isotope Analysis": 1 +"Quantum Physics: Understanding Particle-Wave Duality Through the Double-Slit Experiment": 1 +"Mathematics 205: Application of Differential Equations in Modeling Population Dynamics with MATLAB": 1 +"Physical Education: The Use of Virtual Reality in Enhancing Balance and Agility Training": 1 +"Organic Chemistry: Exploring Reaction Mechanisms through Spectroscopic Analysis": 1 +"Computational Linguistics: Syntactic Parsing with Python and the Natural Language Toolkit": 1 +"Advanced Economics: Understanding Market Dynamics using Python, Tableau, and Predictive Analytics": 1 +"Cultural Anthropology: Applying the Confucian Doctrine to Encourage Global Diplomacy and Harmony": 1 +"Historical Analysis: The Impact of Renaissance Literature on Modern Feminist Thought": 1 +"Quantum Computing Basics: Entanglement and Superposition Experiments": 1 +"Green Architecture: Leveraging Biomimicry in Eco-Friendly Building Design with AutoCAD": 1 +"Psychology and Stress Management: Insights into Dialectical Behavior Therapy and Mindfulness Meditation Practices": 1 +"Physics in Animation: Understanding Motion Dynamics through Computer Graphics": 1 +"Nutrition Science: Improving Health Outcomes through Genomic Data and Personalized Diet Plans": 1 +"Outdoor Education: Utilizing Mycelium in Forest-Based Composting and Soil Regeneration Techniques": 1 +"Augmented Reality in Education: Harnessing the Power of HoloLens for Immersive Learning Experiences": 1 +"Advanced Mathematics: Exploring Fractals, Chaos Theory, and the Fibonacci Sequence in Nature": 1 +"Digital Art: Mastering Photoshop and Illustrator - 10 Strategies for Effective Graphic Design": 1 +"Linguistics and Culture: An Intermediate French Course with a Focus on Film Analysis, Duolingo, and Skype Language Exchange": 1 +"Sustainable Architecture: The Role of Biomimicry in the Eco-Friendly Construction of Skyscrapers using Recycled Materials": 1 +"Marine Biology: Coral Reef Ecosystems and the Impact of Climate Change": 1 +"Advanced Chemistry: Unveiling the Secrets of Molecular Structures using Gaussian": 1 +"The Power of Java in Creating Dynamic Web Applications: A Computer Science Perspective": 1 +"Sports Science: The Influence of VR Technology in Enhancing Football Performance through Biomechanics Analysis Systems": 1 +"Astronomy: Understanding the Universe through the Study of Stellar Spectroscopy": 1 +"Cognitive Psychology: The Complex Choreography of Thoughts - A Comprehensive Study of Memory Processing and Cognitive Behaviour": 1 +"Physics 300: Quantum Mechanics: Insights into Wave-Particle Duality and Superposition Principles": 1 +"Information Technology: The Application of Blockchain in Creating Secure Digital Transactions": 1 +"Understanding Symbolism in Kafka's Works Through Deep Learning Algorithms": 1 +"Software Engineering: Creating E-commerce Websites with Node.js, Express.js and MongoDB with PayPal Integration": 1 +"Data Science 102: Leveraging SQL for Business Intelligence": 1 +"Geology: Utilizing Remote Sensing and GIS in Studying Volcano Eruptions - Global Patterns and Risk Mitigation": 1 +"Food Technology: The Role of Fermentation in Enhancing the Nutritional Value of Food": 1 +"Visual Arts: Exploring Digital Painting Techniques Using Procreate": 1 +"Ecological Modeling using Python and Jupyter Notebook: A Comprehensive Approach": 1 +"The Impact of Television News Coverage on Public Opinion During the Vietnam War": 1 +"Environmental Biology: Exploring Biodiversity Reduction Through Field Research and Data Analysis": 1 +"Physics 315: Quantum Mechanics and Wave-Particle Duality: A Detailed Analysis of Particle Physics": 1 +"American Literature 150: Deconstructing Themes of Freedom and Rebellion in the Works of Mark Twain": 1 +"Advanced Volcanology: Using Virtual Reality and Seismic Imaging to Study Lava Flow Dynamics": 1 +"Sociology: The Role of Social Media in Shaping Political Narratives in Modern Democracies": 1 +"Music Production 101: Crafting Unique Melodies using Ableton Live": 1 +"Psychology: Utilizing Augmented Reality to Understand Cognitive Processes and Behavior": 1 +"Economics: Using Demand Elasticity Models to Forecast Market Trends": 1 +"Visual Arts: Exploring Shadows and Perspective in Cubism": 1 +"Advanced Coding Principles: Building Machine Learning Algorithms with Java and Deep Learning": 1 +"Advanced Physics 210: Quantum Mechanics and Particle Physics through MATLAB Simulations": 1 +"Culinary Arts: A Journey Through Fusion Cuisine Using Modernist Techniques and Molecular Gastronomy": 1 +"Music Theory: Exploring 20th Century Composition Through Synthesizer Programming and Digital Sound Engineering": 1 +"Biology 101: Understanding Cellular Processes through Microscopic Imaging and 3D Printing Models": 1 +"Cosmology: A Deep Dive Into Dark Matter and Dark Energy through Computational Astrophysics": 1 +"Graphic Design: Mastering Vector Art with Adobe Illustrator and a Study on Minimalist Aesthetics": 1 +"Creative Nonfiction: Analyzing Rhetoric and Persuasion in Political Speeches": 1 +"Cricket Analytics: A Comprehensive Study Using R, Tableau, and Machine Learning Algorithms": 1 +"Calculus & Linear Algebra: Understanding Fractal Geometry with Mathematica and Chaos Theory": 1 +"Cultural Anthropology: Understanding Social Dynamics in Online Gaming Communities Through Twitch Analysis": 1 +"Photography: Capturing Wildlife in their Natural Habitat - A Comprehensive Guide to Telephoto Lens Techniques": 1 +"Nutrition and Fitness: Evaluating the Implications of Vegan Diets on Athletic Performance": 1 +"Sustainable Architecture: Carbon-neutral Design Solutions with Biomimetic Approaches": 1 +"Artificial Intelligence in Finance: The Revolution of Algorithmic Trading and Predictive Analytics ": 1 +"Computer Science: Mobile App Development - Understanding the Essentials of Kotlin": 1 +"Chemistry and Society: The Role of Biodegradable Plastics in Waste Management": 1 +"Music: Harmonic Composition and Sound Engineering - An Insight into Digital Audio Workstations": 1 +"Statistics: Leveraging R Programming for Data Analysis in Epidemiology": 1 +"Literature: Deciphering Symbolism in Postmodern Fiction through Socio-Political Interpretations": 1 +"Psychology: Investigating Mental Health Disorders through Functional Magnetic Resonance Imaging and Cognitive Behavioral Therapy": 1 +"Molecular Gastronomy: The Science of Spherification and its Impact on Contemporary Cuisine": 1 +"The Industrial Revolution: The Transformation of the Textile Industry and the Importance of the Spinning Jenny": 1 +"Modern Architectural Designs: The Role of Carbon Fibers in the Evolution of Skyscrapers": 1 +"Creative Music Production: Exploring the Art of Sampling and Beat Matching in Electronic Dance Music": 1 +"Geospatial Technology: The Role of Drones in Precision Agriculture and Environmental Monitoring": 1 +"Health and Fitness: Understanding the Impact of High Intensity Interval Training on Metabolic Rate": 1 +"Quantum Mechanics: Understanding the Uncertainty Principle Through Particle Duality and Wave-Particle Interference": 1 +"Cybersecurity: Firewall and Intrusion Detection Systems: Developing Robust Defense Mechanisms for Banking Applications": 1 +"Philosophy 101: The Influence of Virtual Reality on Epistemology and the Notion of Reality": 1 +"Advanced Sports Analytics: R Programming, Predictive Modelling, Big Data, and the Application of Artificial Neural Networks": 1 +"Advanced Physics: Harnessing Quantum Computing in the Study of Subatomic Particles": 1 +"Musicology: Examining the Role of MIDI Controllers in the Evolution of Electronic Music Genres": 1 +"Sports Science: The Impact of Wearable GPS Units on Performance Analysis in Football": 1 +"Global Politics 420: Understanding the Influence of the Cold War on Contemporary International Relations": 1 +"Digital Health Solutions: Evaluating the Effectiveness of AI Algorithms in Telemedicine Consultations": 1 +"Data Science: Time Series Analysis using R with Emphasis on Random Forests": 1 +"Exploring Satellite Imaging: Mapping the Spread of Urbanization across Five Centuries": 1 +"Sociocultural Studies: Investigating the Role of Instagram in Shaping Modern Beauty Standards": 1 +"Advanced Calculus: Solving Complex Differential Equations using Calculators and Python": 1 +"Computational Neuroscience: The Implementation of Deep Reinforcement Learning in Brain-Computer Interfaces": 1 +"Chemistry: Unveiling Organic Synthesis through Green Chemistry Techniques": 1 +"Astronomy: Investigating Cosmic Phenomena through the Lens of Spectroscopy": 1 +"Calculus: Unraveling Differential Equations through Biomedical Applications": 1 +"Data Science: Predictive Modeling in Financial Markets Using Python": 1 +"Geometry: Exploring Non-Euclidean Spaces through Virtual Reality": 1 +"In-depth Study of Cultural Anthropology: Using Text Mining in Ethnographic Research": 1 +"Phonetics: An Insightful Study of Speech Sounds through Acoustic Phonetics": 1 +"Nutrition: Impact of Probiotics on Gut Health: In-depth Analysis through Metagenomics and Magnetic Resonance Imaging (MRI)": 1 +"The Green Evolution: The Role of Renewable Energy in Shaping Sustainable Infrastructure": 1 +"Sports Science: The Biomechanical Analysis of Human Movement in High Performance Athletics": 1 +"Physics: The Role of Quantum Mechanics in Modern Telecommunications": 1 +"Biotechnology: Genetic Engineering and Its Application in Sustainable Agriculture": 1 +"Global Politics: Understanding the Dynamics of Cyber Warfare in International Relations": 1 +"Advanced Robotics: An In-depth Study of Artificial Intelligence and Machine Learning": 1 +"The Role of Virtual Reality in Enhancing Learning Experiences in Special Education": 1 +"Critical Thinking: Deciphering Fake News with Argument Analysis and Fact Checking": 1 +"Art 307: The Evolution of Cubism: An Exploration of Abstract Structures and Techniques": 1 +"Literature: A Thorough Analysis of F. Scott Fitzgerald’s Novels Using Interactive eBooks and Webinars": 1 +"Advanced Astrophysics: Unraveling the Mysteries of Black Holes and Neutron Stars": 1 +"Music Production: Dissecting Electronic Beats in Hip-Hop Using Synthesizers and Digital Audio Workstations": 1 +"Physics: Deciphering Quantum Mechanics through Python and Tensorflow": 1 +"Space Exploration: Unveiling Cosmic Secrets with Machine Learning and Data Analysis": 1 +"Advanced Chemistry: Molecular Dynamics Simulations with Python and the PyMOL Framework": 1 +"Immersive Experiences: Creating Virtual Reality Games with Unity and C#": 1 +"Anthropology 201: Human Evolution - A Study of Genomic Data through Advanced Bioinformatics": 1 +"Cryptocurrency: Exploring Financial Trends and Market Behavior in the Era of Digital Currency": 1 +"Literature: Postmodernism - A Comprehensive Study of Metanarratives and Irony": 1 +"Global Studies: The Influence of Cryptocurrency in Global Economy and Cross-Cultural Interactions": 1 +"Optimizing Investment Strategy: A Deep Learning and Behavioral Economics Approach": 1 +"Healthcare Analytics: Enhancing Patient Care with Machine Learning and Predictive Modelling Techniques": 1 +"Quantum Physics: The Intersection of Probability Theory and Particle Interaction": 1 +"Advanced Astrophysics: The Role of Dark Matter in Galactic Dynamics": 1 +"Genetic Engineering: The Application of CRISPR-Cas9 in Human Disease Treatment": 1 +"Sociology: The Influence of Social Media on Global Culture Shifts": 1 +"Mathematics: The Evolution of Cryptography - From Ancient Ciphers to Quantum Encryption": 1 +"Classical Music: An In-depth Analysis of Orchestration Techniques in Symphony Composition": 1 +"Understanding Electromagnetism: An Examination of Radio Wave Propagation and Antenna Design": 1 +"Biochemistry: Unraveling Protein Structures with X-Ray Crystallography and PyMOL Visualization Tool": 1 +"Earth Science: Oceanography - A Detailed Study on Marine Ecosystems using Satellite Remote Sensing": 1 +"Philosophy and Literature: The Influence of Postmodernism in 21st Century Poetry.": 1 +"Decoding the Architecture of Microprocessors: A Thorough Examination of Computer Engineering": 1 +"Understanding the Linguistics of Shakespeare's Sonnets: A Literary Analysis Course Focusing on Iambic Pentameter": 1 +"Theoretical Physics: String Theory and the Impact of Quantum Gravity on Multidimensional Realities": 1 +"Film Theory: Unraveling the Themes of Neo-Noir in American Cinema: A Postmodern Perspective": 1 +"Advanced Organic Chemistry: The Role of Stereochemistry and Chiral Compounds in Pharmaceutical Development": 1 +"Harnessing the Wind: Evaluating the Effect of Wind Power on Sustainable Cities - An Examination of 10 Urban Energy Plans": 1 +"Mastering Java, Logic Pro, and MIDI for Audio Processing: An Introductory Course on Digital Audio and Programming": 1 +"Venturing into Data Science: Optimizing Business Strategies with Machine Learning Algorithms": 1 +"Statistical Analysis: Utilizing SPSS's Regression Tools and T-Test for Predictive Modelling": 1 +"Recycling in Fashion Industry: Innovating Cotton Fiber Reclaiming with Chemical Recycling Techniques": 1 +"Biology: The Role of Bioluminescence in Deep Sea Creatures": 1 +"Chemistry: Exploring the Nanoworld: An Introduction to Quantum Chemistry": 1 +"Psychology: Unveiling the Secrets of Human Behavior through Social Cognitive Theory": 1 +"Advanced Music Theory: The Harmonics and Overtones in Orchestral Symphonies": 1 +"Geography: Understanding Global Migration Patterns through Geospatial Analysis": 1 +"Medieval Literature: The Influence of Arthurian Legends on the Works of J.R.R. Tolkien": 1 +"Computer Science: Machine Learning Algorithms and their Applications in Predictive Analytics": 1 +"Sports Science: The Biomechanics and Tactics in Professional Tennis": 1 +"Cosmic Investigators: Decoding the Universe through the Hubble Space Telescope and Spectral Analysis": 1 +"Food Science: The Chemistry of Baking: Maillard Reactions and Gluten Development in Bread Making": 1 +"Clinical Psychology: The Implications of Cognitive Behavioral Therapy in Treating Anxiety and Depression": 1 +"Biological Sciences: Understanding Evolution through DNA Sequencing and Genomic Analysis": 1 +"Advanced Robotics: An Introduction to Autonomous Systems and Artificial Intelligence": 1 +"Quantum Physics: Decoding the Quantum Realm through String Theory and Quantum Field Theory": 1 +"Cybersecurity: Understanding Encryption, Cryptography and Firewall Systems for Secure Networking": 1 +"Geology: Unraveling Earth's History Through Plate Tectonics and Sedimentary Analysis": 1 +"Neuroscience: Neural Plasticity and Cognitive Development - Insights from Brain Imaging Techniques": 1 +"Sustainable Engineering: Renewable Energy Solutions and their Impact on Environmental Conservation": 1 +"Chemistry: Molecular Structure and Organic Reactions with Application in Pharmaceutical Science": 1 +"Financial Mathematics: Predictive Modeling and Risk Management using Quantitative Finance": 1 +"Physics: Unveiling the Mysteries of the Universe through the Lens of Quantum Mechanics and String Theory": 1 +"Digital Art: Harnessing the Power of Algorithms and Processing for Generative Art": 1 +"Advanced Econometrics: Forecasting Economic Trends using Time-Series Analysis and Stata Software": 1 +"Sustainable Architecture: Exploring Eco-friendly Methods in Building Construction and Urban Planning": 1 +"Biochemistry: Decoding the Secrets of Protein Structures through Crystallography and Molecular Dynamics Simulations": 1 +"Psychology in Marketing: Applying Behavioral Science for Effective Consumer Engagement and Brand Loyalty": 1 +"Technology and Society: The Influence of Artificial Intelligence on Modern Communication and Its Cultural Implications": 1 +"Web Warriors: Journey into JavaScript and React for Front-End Development": 1 +"Advanced Electronics: Mastering the Design and Analysis of Electronic Circuits using SPICE and MATLAB": 1 +"Cultural Studies: The Impact of Internet Memes on Modern Discourse and Social Identity": 1 +"Sociology 101: The Impact of Social Media on Interpersonal Communication and Relationships": 1 +"Art History: The Role of Pop Art in the Cultural Revolution of the 1960s": 1 +"Computer Science: The Influence of Quantum Computing on Modern Cryptography": 1 +"Organic Chemistry: Exploring Molecular Complexity through Pericyclic Reactions": 1 +"Medieval History: The Influence of the Printing Press on Mass Communication and Literacy": 1 +"Business Studies: Impact of Cryptocurrency on Global Financial Markets": 1 +"Theoretical Physics: Quantum Field Theory and its Application in Condensed Matter Physics": 1 +"Marine Biology: Understanding Coral Reefs Ecosystems through Genetic Sequencing": 1 +"Astrophysics: Unraveling the Mysteries of Black Holes through Gravitational Waves": 1 +"Statistics: Predictive Analysis in Sports: Deciphering Soccer Patterns with R Programming": 1 +"Physics of Sports: Understanding Projectile Motion through Baseball": 1 +"Environmental Science: Assessing the Impact of Deforestation on Biodiversity using GIS and Remote Sensing": 1 +"Quantum Mechanics: The Role of Quantum Entanglement in Teleportation Theories": 1 +"The Renaissance Era: Decoding the Influence of Italian Art on the Evolution of Perspective Drawing": 1 +"Introductory Robotics 101: Exploring the Basics of Machine Learning Algorithms": 1 +"Fiction and the Space Age: Reflecting the Cultural Shifts in 10 Science Fiction Novels": 1 +"Neurobiology of Sleep: Exploring Sleep Patterns and Disorders through Polysomnography and Actigraphy": 1 +"Music Technology: Harnessing Logic Pro X to Generate Dynamic Multi-Track Compositions": 1 +"Fundamentals of Game Development: Designing Immersive Virtual Environments using Unity": 1 +"Cognitive Psychology 101: Understanding Human Perception through Eye-Tracking Studies": 1 +"Sociolinguistics: Deciphering Social Norms & Cultural Identities through Language Evolution and Usage Patterns": 1 +"Physics: Quantum Mechanics and the Study of Photons using Wave-Particle Duality and Heisenberg's Uncertainty Principle": 1 +"Global Politics: A Comprehensive Study of International Relations and Diplomacy through Conflict Resolution and Peace Studies": 1 +"Cybersecurity: Mastering Ethical Hacking Techniques with Python, Wireshark, and Kali Linux": 1 +"Visual Arts: Exploring the Impact of Digital Technology on Contemporary Art through Augmented Reality and Virtual Reality": 1 +"Advanced Robotics: Building Intelligent Machines with Raspberry Pi, Arduino, and ROS": 1 +"Biochemistry: Unraveling the Secrets of DNA Replication through Polymerase Chain Reaction and Gel Electrophoresis": 1 +"Media Studies: Analyzing Media Influence on Public Opinion using Quantitative Content Analysis and Semiotics": 1 +"Environmental Economics: Assessing Climate Change Impacts on Global Economy through Econometric Analysis and GIS Mapping": 1 +"Deep Dive into Human Genome: Studying Genetic Variations using Next-Generation Sequencing, Genomic Imprinting, and Microarray Analysis": 1 +"Ecology and Conservation: Utilizing Drone Technology for Wildlife Monitoring and Habitat Preservation": 1 +"Global Politics: The Influence of Social Media Platforms on Public Opinion - An Analysis of Cambridge Analytica Scandal": 1 +"Astronomy for Beginners: Understanding the Role of Black Holes in Galactic Evolution": 1 +"Cinematic Studies: Exploring Narrative Structures in Virtual Reality Filmmaking": 1 +"Sociology: The Role of Music in Social Movements - A Focus on Punk and Hip Hop": 1 +"Linguistic Studies: Unraveling the Complexity of Mandarin Chinese through Computational Linguistics": 1 +"Behavioral Economics: The Psychology of Investing - Prospect Theory and Stock Market Trading": 1 +"Software Engineering: Python Programming for Data Protection and Privacy": 1 +"High School Chemistry: Exploring Quantum Mechanics through Atomic Structure and Spectroscopy": 1 +"Kantian Ethics in Contemporary Medical Practices: The Implications of Categorical Imperative on Patient Autonomy": 1 +"Chemistry Unveiled: Exploring the Science of Perfumery and the Art of Creating Signature Scents": 1 +"Graphics Design: Mastering Vector Illustrations with Adobe Illustrator for Game Development": 1 +"Biotechnology Basics: An In-depth Study of Protein Synthesis and Genetic Manipulation using CRISPR-Cas9": 1 +"Sociology & AI: Predictive Analysis of Urban Planning and Development Policies using Machine Learning": 1 +"Health and Fitness: The Role of Wearable Technologies in Monitoring Cardiovascular Health": 1 +"Outdoor Education: Navigational Techniques and Wilderness Survival Skills using GPS and Topographic Maps": 1 +"Advanced Mathematics: Understanding Fractal Geometry using Mandelbrot Set and Mathematica": 1 +"Philosophy of Mind: Cognitive Processes and Logical Reasoning - A Deep Dive into Propositional Logic and its Uses in AI": 1 +"Fine Arts: Exploring the Creative Process in Abstract Sculpture - Emphasis on Material Selection and Techniques": 1 +"Renewable Energy in Literature: A Study of Wind Energy and its Depiction in Modern Fiction": 1 +"Sociology: The Influence of Social Media on Cultural Assimilation: A Study of Globalization": 1 +"Quantum Physics: Understanding Wave Particle Duality through the Double Slit Experiment": 1 +"Language Studies: Decoding Syntax Trees with JavaScript's Text Processing Libraries: Text Interpretation": 1 +"Neurology 210: The Senses and Food - An Exploration of Taste Perception through Multidisciplinary Studies": 1 +"Mathematics: Deciphering Cryptography with Algebraic Structures": 1 +"Chemistry: Unveiling Atom Structures with Quantum Tunneling under the Scanning Tunneling Microscope": 1 +"Cognitive Science Basics: Unraveling Human Perception through Artificial Intelligence Models": 1 +"Basic Programming 201: An Introduction to Java and JavaFX for User Interface Design": 1 +"Geology: Tracing Earth's History Using Stratigraphy and Radiometric Dating Techniques": 1 +"The Influence of Quantum Computing on the Advancement of Cryptographic Security Models": 1 +"Coding for Kids: An Introduction to Scratch Programming for Young Minds": 1 +"Biological Engineering: Manipulating Genetic Material Using CRISPR-Cas9 Techniques": 1 +"Digital Citizenship: The Impact of Social Media on Personal Identity and Privacy": 1 +"Cosmic Wonders: Grasping the Universe through Spectroscopy and Doppler Shift Observations": 1 +"Biology 101: Understanding the Process of Photosynthesis: The Vital Role of Chlorophyll in Plants": 1 +"World Cultures: The Integration of Electric Guitar in Traditional African Music Festivals": 1 +"Introduction to Psychology: Exploring the Human Mind with EEG, PET Scans, and Transcranial Magnetic Stimulation": 1 +"Creative Writing: Mastering the Art of Haiku Composition with Nature Imagery in Japanese Poetry": 1 +"Problem Solving 101: Applying Java to Dissect Complex Mathematical Theories": 1 +"Anatomy Essentials: Understanding the Human Body through Radiographic Imaging and CT Scans": 1 +"Art History: Analyzing the Influence of Political Movements on Modern Art": 1 +"Sociology: The Role of Social Media in Shaping Cultural Norms: A Quantitative Approach": 1 +"Culinary Sciences: The Chemistry Behind Molecular Gastronomy: Techniques and Applications": 1 +"Philosophy 200: Existentialism and Absurdism: A Deep Dive into the Philosophy of Albert Camus": 1 +"Business Management: The Impact of Digital Transformation on Small and Medium Enterprises": 1 +"Neurobiology: Understanding Memory Formation and Retrieval through Neuroimaging Techniques": 1 +"Advanced Computer Science: Exploring Machine Learning with TensorFlow and Keras": 1 +"Literature 300: The Impact of Magical Realism in Latin American Literature": 1 +"Statistics 210: Predictive Modelling: An Advanced Course on Machine Learning Algorithms using R": 1 +"Environmental Science: Exploring Ecosystem Dynamics: A Study on Biodiversity Conservation through GIS Mapping": 1 +"Sociology: Understanding Social Behavior Through Game Theory and Comparative Studies": 1 +"The Role of the Industrial Revolution in the Evolution of Contemporary Art and Design": 1 +"Astronomy: Discovering the Universe through the Lens of Kepler's Laws of Planetary Motion": 1 +"Biology 101: Delving into the Complexities of DNA and Genetic Engineering": 1 +"Advanced Physics: Unraveling the Mysteries of Quantum Mechanics through the Double-Slit Experiment": 1 +"Economics 204: Exploring the Global Economy through the Lens of Sustainable Development and Green Finance": 1 +"Art and Technology: Utilizing Virtual Reality in Recreating Historical Monuments and Landscapes": 1 +"Computer Science: An Introduction to Machine Learning and Artificial Intelligence": 1 +"Engineering Mechanics: A Comprehensive Study on Stress-Strain Analysis in Material Science": 1 +"Photography and Physics: Understanding the Science of Light and Color in Digital Imaging.": 1 +"Chemistry: Understanding Chemical Reactions through Volcano Simulation Experiments": 1 +"Digital Art Basics: Exploring Graphic Design with Adobe Photoshop and Illustrator": 1 +"Urban Planning: Assessing the Impact of Green Spaces on Community Well-being": 1 +"Behavioral Economics: Unraveling Consumer Decision Making Process using Machine Learning Algorithms": 1 +"Creative Writing: Exploring Character Development through Virtual Reality Role-playing": 1 +"Advanced Cinematography: Utilizing Drone Technology for Captivating Aerial Shots": 1 +"Biodiversity Studies: Exploring Insect Behavior in Pollination using Microscopic Photography": 1 +"Introduction to Philosophy: Unraveling the Mysteries of Existentialism": 1 +"Digital Literature: Enhancing Reader Engagement through Interactive Storytelling in Virtual Reality": 1 +"Effects of Virtual Reality Therapy on Mental Health: An In-depth Psychology Study": 1 +"Advanced Mathematics: Complex Number Theory and Its Applications in Quantum Physics": 1 +"Physics in Motion: A Comprehensive Study of Newton's Laws in Everyday Activities": 1 +"Creative Writing: Utilizing Metaphors and Allegories to Address Climate Change Issues": 1 +"Philosophy 101: Exploring the Concept of Existentialism through Sartre's Works": 1 +"Radiology Basics: Understanding the Human Anatomy through X-Ray and CT Scan Imaging": 1 +"Astrophysics: An In-depth Look at the Life Cycle of Stars and the Concept of Supernovae": 1 +"Literature Analysis: The Role of Irony in Social Commentary in Classic Novels": 1 +"Spanish for Intermediate Learners: Deciphering the Subtext in Latin American Poetry": 1 +"Middle Ages History: The Influence of the Printing Press on the Spread of Ideas": 1 +"Cognitive Psychology: Exploring Human Behavior through Functional MRI Studies": 1 +"The Aesthetics of Sound: Incorporating Music Theory in Sports Training": 1 +"Meteorology: Utilizing Doppler Radar in Assessing Storm Intensity and Impact": 1 +"History: Examining the Past through Augmented Reality Tools": 1 +"Applied Biochemistry: Understanding Metabolic Pathways through Proteomics and Metabolomics Techniques": 1 +"Craftsmanship: Woodworking and Sculpting: Mastering the Chisel and Mallet": 1 +"Visual Arts: Techniques of Painting and Shading with Oil Colors": 1 +"Sustainability Studies: Harnessing Wind Energy in Agriculture to Minimize Greenhouse Gas Emissions": 1 +"Cinematography: Tracing the Development of Film Noir Genre through Alfred Hitchcock's Films": 1 +"Political Science: The Language of Diplomacy: The Role of International Treaties in Global Peacekeeping and the Impact of Globalization": 1 +"Neurofitness and Diet: An In-depth Analysis Using fMRI Technology": 1 +"Physics: Exploring the Universe Through Quantum Mechanics and Astrophysics": 1 +"Digital Art: Producing Geometric Patterns Using Algorithmic Design and Python": 1 +"Global Ecology: Impact of Industrialization on Biodiversity: An Analysis of Conservation Strategies": 1 +"Calculus: Understanding the Infinitesimal and Integral Calculus through Mathematical Modelling": 1 +"Ethical Dilemmas: Evaluating Moral Paradoxes through Deontological and Utilitarian Theories": 1 +"History: The Influence of Cinema on Shaping Societal Perceptions in the 20th Century": 1 +"Psychology: The Role of Cognitive Behavioral Therapy in Treating Anxiety Disorders: An Application of Psychiatric Software": 1 +"Sound Engineering: Creating Audio Effects with MATLAB and Fourier Transforms: An Introduction to Frequency Domain Processing.": 1 +"Drones in Contemporary Art: An Analysis of Mechanical Aesthetics in the 21st Century": 1 +"Sales Strategy: The Impact of Neuromarketing on Consumer Decision Making in E-commerce": 1 +"Advanced AI: Deep Learning Algorithms for Real-Time Facial Recognition": 1 +"Unraveling the Universe: An Examination of Dark Matter Using Advanced Telescopes and Astrophysics": 1 +"Physical Training: Optimizing Athletic Performance through Neurofeedback and VR Technology": 1 +"The Science of Sculpture: A Deep Dive into the Application of 3D Printing in Fine Art": 1 +"Understanding Human Genome: A Detailed Study through CRISPR and Next Generation Sequencing": 1 +"Rhythm, Emotion, and Neuropsychology: An Interdisciplinary Approach to Music Therapy": 1 +"Chemistry: Exploring the Significance of Avogadro's Number in Molecular Weight Calculations": 1 +"Mastering Pro Tools: Advanced Sound Design Techniques with MIDI Controllers": 1 +"Film Studies: An In-Depth Analysis of Non-Linear Narrative Techniques in Cinematography": 1 +"Sustainable Agriculture: The Role of Vertical Farming in Urban Food Production and Global Food Security.": 1 +"Advanced Physics: Unraveling Quantum Mechanics through Particle-Wave Duality Studies": 1 +"Discovering Rhythm in Ableton Live: An In-Depth Look at Drum Racks, Audio Effects, and the Glue Compressor": 1 +"Practical Chemistry: Understanding Photosynthesis through Light Reactions and the Calvin Cycle": 1 +"The Renaissance's Artistic Innovations: The Influence of Oil Painting in the Golden Age of Art": 1 +"Applying Karnaugh Maps in Microprocessor Design for Optimal Logic Reduction in Electrical Engineering": 1 +"Political Science: Power, Influence, and Authority Explored through the Lens of Political Theory": 1 +"English 220: Fiction and Film: Symbolism in Visual Narratives - A Study of Foreshadowing Techniques": 1 +"Introductory Astrophysics: Interpreting Galaxy Formation through the Big Bang Theory and Dark Matter": 1 +"Unity for Augmented Reality: Investigating 3D Modeling Techniques": 1 +"The Impact of Duolingo on Language Acquisition: A Study on Gamification in Learning Environments.": 1 +"Chemistry: Exploring the Wonders of Nanotechnology – Understanding Carbon Nanotubes and Graphene": 1 +"Art History: Tracing the Evolution of Landscape Painting through Virtual Reality": 1 +"Environmental Science: Understanding Climate Change through Satellite Imagery and Data Analysis": 1 +"Music Theory: The Art of Composition – Exploring Harmony and Melody through Digital Audio Workstations": 1 +"Mathematics: The World of Fluid Dynamics – Simulating Fluid Flow with Python and Matplotlib": 1 +"Performing Arts: The Magic of Theater – Exploring Scenic Design with 3D Modeling Software": 1 +"Computer Engineering: The Power of Microprocessors – An Introduction to Assembly Language and Hardware Design": 1 +"Biology: Unveiling the Secrets of DNA – The Science Behind Genetic Sequencing and CRISPR Technology": 1 +"Astronomy: Journey through the Cosmos – Understanding the Life Cycle of Stars and Nebulae": 1 +"Geology: Unearth the Past – Studying Fossil Records and Plate Tectonics with GIS Technology": 1 +"Understanding Climate Change: The Impact of Greenhouse Gases on Global Warming": 1 +"Exploring Acoustic Physics: Harmonic Vibrations and Sound Wave Interactions in Violin Mechanics": 1 +"Health and Wellness: Utilization of Smart Watches and AI Fitness Trackers in Promoting Active Lifestyles": 1 +"The Digital Revolution: The Influence of the Microprocessor on Global Communication and E-commerce Growth": 1 +"Harnessing Wind Power: The Future of Renewable Energy in Sustainable Engineering": 1 +"Quantum Physics: Comprehending Quantum Entanglement through Bell's Theorem and Wave-Particle Duality": 1 +"The Fundamentals of Cryptography: Java Programming for Data Encryption and Internet Security": 1 +"World Literature: A Journey through the Magic Realism in Latin American Novels": 1 +"MRI Techniques in Cardiology: An In-depth Examination of Cardiovascular Function and Pathology": 1 +"Statistics 310: The Use of Probability Theory in Predicting Stock Market Trends with R Programming": 1 +"The Influence of Geometry in Classical Architecture: An Analysis of Greek and Roman Structures": 1 +"Pro Tools: Expanding the Scope of Digital Music Production Through MIDI and Plugin Automation": 1 +"Global Politics: Examining the Impact of Tango on Argentine Nationalism and Identity": 1 +"Understanding Atmospheric Pressure and Temperature Variations Through Barometric and Thermocouple Measurements": 1 +"Biochemistry: Unraveling Proteins with Pymol and Molecular Dynamics Simulations using GROMACS": 1 +"Genetics: Exploring Epigenetics with DNA Methylation and Histone Modification Studies": 1 +"Postmodernism in French Literature: Text Analysis using Deconstruction and NLTK for Text Mining": 1 +"Advanced Mathematics 410: Chaos Theory and the Butterfly Effect: A Detailed Examination of Nonlinear Dynamics": 1 +"Music: Advanced Harmonic Concepts: Compositional Techniques using Ableton Live": 1 +"Neuroscience of Vision: Deciphering Visual Perception through Electroretinography": 1 +"Physics: An Investigation into Quantum Computing and its Relevance in Modern Cryptography": 1 +"Psychology: The Influence of Social Media Algorithms on Consumer Behavior": 1 +"Bioinformatics: Sequence Alignment and Phylogenetic Reconstruction using Python": 1 +"Engineering: The Role of Finite Element Analysis in Structural Design using AutoCAD": 1 +"Art: Analyzing Color Theory and its Digital Applications using Adobe Suite": 1 +"Predictive Analytics in Python: Time Series Forecasting, Regression Models, and Neural Networks": 1 +"Climate Change: Assessing the Role of Renewable Energy in Reducing Carbon Footprint: Focus on Wind and Solar Power": 1 +"Astronomy 101: The Hubble's Contribution and the Evolution of Space Telescopes in the Study of Exoplanets": 1 +"Literature: The Portrayal of AI in Cyberpunk Genre: A Comparative Analysis": 1 +"Law and Digital Currency: Investigating the Legal Framework for Cryptocurrency and Blockchain Technology in International Trade": 1 +"Biochemistry and Proteomics: Unraveling the Mysteries of Cellular Metabolism using Microarray Analysis": 1 +"Political Science: The Impact of Cybersecurity in International Relations: A Case Study of the 2016 US Elections": 1 +"Architecture: The Role of Parametric Design in Modern Urban Planning using BIM and Revit": 1 +"Language Education: Advanced Spanish Language and Literature: Incorporating Digital Storytelling and Google Classroom in Teaching": 1 +"Sustainability and Business: The Financial Implication of Plastic Waste Management in Southeast Asian Countries": 1 +"Musicology: The Influence of AI Technology on Modern Music Composition": 1 +"Anthropology: The Use of DNA Sequencing and Isotope Analysis in Uncovering the Migration Patterns of Ancient Civilizations": 1 +"Science and Technology: Quantum Computing and Cryptography: A New Era of Secure Communication": 1 +"Art History: The Influence of Baroque Style in Modern Fashion Design": 1 +"Astronomy: Discovering Dark Matter and Energy: An Exploration using Radio Telescopes and Hubble Space Telescope.": 1 +"Physics: Quantum Mechanics Applied to Modern Technology - A Comprehensive Analysis": 1 +"Navigating Adobe Illustrator in Fashion: A Detailed Exploration of Textile Design": 1 +"Advanced Botanical Mathematics: Fractal Analysis using MATLAB and R": 1 +"Spanish Literature: Exploring Political Satire through Cervantes’ Don Quixote": 1 +"Chemistry: The Role of Organic Compounds in Pharmaceutical Drug Design": 1 +"Exploring Geometry: The Impact of Mathematical Principles in Architecture Design": 1 +"Cultivating Debate Skills: A Practical Guide to Logical Fallacies, Rhetoric, and Argument Analysis": 1 +"World History: The Industrial Revolution and Its Influence on Modern Cities": 1 +"Advanced JavaScript and Web Audio API: Creating Interactive Soundscapes for Web Applications - A Detailed Course": 1 +"Digital Media and Football: The Role of Oculus Rift in Enhancing Player Training Techniques": 1 +"Physics for Beginners: Understanding Quantum Mechanics through Thought Experiments and Data Simulation": 1 +"Children's Mathematics: Learning Fractions through Baking and Measurement Tools": 1 +"Kids Physics: Interactive Experiments with Gravity and Magnetic Fields using Pendulums and Magnets": 1 +"Conservation Science: The Intricate Web of Rainforest Ecosystems Studied through Drone Technology": 1 +"Art History: Tracing the Evolution of Modern Sculpture through Augmented Reality Experiences": 1 +"Data Science: Predictive Analytics using R and Data Visualization with ggplot2": 1 +"Astrophysics: The Secrets of Black Holes: Analyzing Data from the Event Horizon Telescope": 1 +"Mastering Calligraphy: The Art and Technique of Brush Lettering": 1 +"Genetic Engineering: In-depth Research Using CRISPR, Gene Sequencing and Ethical Considerations": 1 +"Game Changers: Exploring Problem Solving with Algorithms in Computer Science": 1 +"Quantum Physics: An Intriguing Voyage into the Quantum Universe and the Mystery of Quantum Entanglement": 1 +"Chemistry Chaos: Comprehending Chemical Equilibrium and Thermodynamics through the Principle of Le Chatelier's Law": 1 +"The Art of Light: A Comprehensive Inquiry into Optics and the Engineering of Holography using Photonics": 1 +"Epistemology: Deconstructing the Paradigm of Knowledge - Skepticism, Empiricism, and Rationalism": 1 +"Predictive Modelling with TensorFlow in R: Boosting Business Profitability through Customer Behaviour Analysis": 1 +"World History: Exploring the French Revolution through the Lens of Feminist Theory": 1 +"The Intersection of Architecture and Sculpture: A Critical Examination of Brutalism in Modern Art": 1 +"Data Privacy: Assessing the Influence of Artificial Intelligence on Information Security": 1 +"Linguistics: The Progression of Communication - Introduction to the Esperanto Language and the Importance of Universal Language Translators": 1 +"Expert Techniques in Ableton Live: Unraveling the Impact of Sound Design in Electronic Music Production": 1 +"Artificial Intelligence: Neural Networks and Deep Learning - Exploring the Inner Workings of Machine Intelligence": 1 +"Music Theory: Harmonic Analysis and Emotional Perception in Orchestral Compositions": 1 +"Cosmology: Unveiling the Dark Universe - A Deep Dive into Dark Matter and Energy": 1 +"Psychology: Unraveling Human Behavior through Cognitive Neuroscience and Neuroimaging Techniques": 1 +"Modern History: Decoding Sociopolitical Changes through the Lens of Media Studies": 1 +"Sports Science: The Impact of Resistance Training on Muscular Strength and Body Composition": 1 +"Astrophysics: Probing Galactic Phenomena through X-Ray Astronomy and Spectroscopic Techniques": 1 +"Chemistry: The Significance of Avogadro's Number in Quantum Chemistry: A Study of Molecules and Atoms": 1 +"Cell Biology: Investigating Protein Synthesis through Chromatography Techniques": 1 +"Environmental Science: Utilizing Remote Sensing in the Study of Climate Change and Biodiversity Conservation": 1 +"Physics: Exploring Quantum Mechanics through the Lens of the Double-Slit Experiment": 1 +"World History: Navigating the Silk Road - Trade Routes and Cultural Exchange in the Middle Ages": 1 +"Computer Science: Developing AI Applications using Python and TensorFlow": 1 +"Geography: Unraveling Climate Patterns through Satellite Data and GIS Applications": 1 +"Environmental Science: Understanding Ecosystems through Biodiversity and Conservation Biology": 1 +"Digital Arts: Creating Virtual Reality Experiences through Unity 3D and Oculus Rift": 1 +"Physics: Inspecting the Universe through Astrophysics and Hubble Space Telescope Observations": 1 +"Humanities: Analyzing the Impact of Social Media on Modern Political Discourse": 1 +"Chemistry: Discovering the World of Polymers through Hands-On Polymerization Experiments": 1 +"Computer Science: Learning Data Structures and Algorithms through Java and Eclipse IDE": 1 +"The Art of Coding: Understanding Machine Learning through Python and Tensorflow": 1 +"Culinary Science: Detailed Examination of Molecular Gastronomy and Flavor Pairing Techniques": 1 +"Advanced Mathematics: Utilizing Quantum Computing for Enhanced Cryptanalysis": 1 +"Neuroscience and Music: An Analytical Study on the Impact of Binaural Beats on Cognitive Functions": 1 +"Journalism 101: Investigative Reporting and Ethical Storytelling in the Era of Social Media": 1 +"Sociolinguistics: Examining Code-Switching and Bilingualism in 21st Century Literature": 1 +"Chemistry: The Role of Bioinformatics in Drug Discovery and Pharmaceutical Development": 1 +"Sustainable Architecture: Exploring Bamboo as a Building Material for Future Urban Development": 1 +"Astrophysics: Unraveling Dark Matter and Energy using Quantum Mechanics": 1 +"Environmental Economics: The Effects of Green Energy Policies on Global Economies": 1 +"German Poetry: Unraveling Metaphors and Allegories in Goethe's Faust": 1 +"Sound Engineering: Navigating Sound Waves with Analog and Digital Synthesizers": 1 +"Biomedical Research: Tracking Blood Flow using Doppler Ultrasound and Magnetic Resonance Angiography": 1 +"Cultural Anthropology: Decoding Society through the Lens of Urban Graffiti": 1 +"Architectural Depictions of Sociopolitical Dynamics through Cubist Structures": 1 +"Computer Science: Improving Code Efficiency and Bug Detection using Integrated Development Environments": 1 +"Advanced Aquaculture: Utilizing Recirculating Aquaculture Systems for Sustainable Seafood Production": 1 +"Statistics: Leveraging Bayes Theorem for Predictive Modeling in Insurance Underwriting": 1 +"Chemistry: Probing Chemical Reactions with Nuclear Magnetic Resonance Spectroscopy": 1 +"Forest Conservation: Deploying Drone Technology for Biodiversity Assessment and Ecosystem Monitoring": 1 +"Latin American Literature: Unveiling Magical Realism in Gabriel Garcia Marquez's Works": 1 +"Quantum Computing: Deciphering Qubits and Quantum Entanglement with Python": 1 +"Satellite Communication Systems: Detailed Analysis of Geostationary Satellites and Doppler Shift in Telecommunication": 1 +"Virtual Reality in Gaming: Understanding Game Development with Unreal Engine and Oculus Rift": 1 +"Inorganic Chemistry: Exploring Transition Metals through Crystal Field Theory": 1 +"Fractal Geometry: Exploring the Beauty of Mathematics through Mandelbrot and Julia Sets": 1 +"Italian Trade Language during the Renaissance: Investigating the Impact of Printing Technology": 1 +"Balance in Architectural Design: Mastering AutoCAD, Revit, and BIM Techniques": 1 +"Romance and Mystery in Victorian Literature: A Study of Symbolism and Irony": 1 +"Python for Machine Learning: Advanced Concepts of Scikit-Learn, TensorFlow, and PyTorch": 1 +"Psychology: Investigating the Impact of Positive Reinforcement in Cognitive Behavioral Therapy": 1 +"Advanced Physics: Quantum Computing Uncovered: The Role of Qubits and Superposition": 1 +"The Influence of Adobe Photoshop's Layering Techniques on Digital Art Creations": 1 +"Cardiology: Heart Function Insights with Echocardiograms": 1 +"Environmental Science: The Integration of Satellite Imagery in Climate Change Studies": 1 +"Advanced Calculus: The Application of Differential Equations in Engineering Problems": 1 +"Cultural Studies: The Development of Literature Genres: The Renaissance Era": 1 +"Mastering Digital Sculpting in ZBrush: The Techniques of Shading, Detailing, and Rendering in 3D Art": 1 +"The Essentials of Meteorology: Comprehending Weather Patterns and Climate Change using 3D Simulation Models": 1 +"Computer Science: Core Concepts of Deep Learning with Tensorflow's Keras API": 1 +"Cybersecurity and AI: Implementing Deep Learning Algorithms for Threat Detection using Keras and PyTorch": 1 +"Exploring the Magic of Flavours: An Insight into the Chemistry of Culinary Arts and Molecular Gastronomy": 1 +"Global Cinema: Unraveling Social Constructs through New Wave Cinema and Film Theory": 1 +"Sustainable Architecture: Modern Techniques of Green Building using 3D Printing and Recyclable Materials": 1 +"Data Analysis in Social Sciences: Predictive Modeling and Statistical Inference using SAS and Julia": 1 +"Ethics in Autonomous Vehicles: Exploring Moral Dilemmas in AI-Driven Transportation and Proposed Solutions": 1 +"Mastering Event Planning: Lighting Design with DIALux and Event Coordination with Asana": 1 +"Cosmology for Beginners: Unveiling the Mysteries of Dark Matter through Radio Astronomy": 1 +"The Evolution of Chinese: Language Transformation in the Age of Social Media, AI Translation, and Digital Currency": 1 +"Behavioral Neurobiology: Examining Animal Behavior using Optogenetics and Functional MRI Techniques": 1 +"Decoding the Ocean: Marine Biology and the Impact of Ocean Acidification": 1 +"Sustainable Agriculture: Assessing Soil Health through Microbial Biomass Carbon Analysis": 1 +"Quantitative Finance: Using R and dplyr Library for Predictive Modelling": 1 +"Advanced Programming 210: Understanding Object-Oriented Concepts in C++": 1 +"Anthropology: Unraveling Linguistic Patterns in Indigenous Tribes through Ethnographic Study": 1 +"Geometry: Exploring Fractal Dimensions through Mandelbrot and Julia Sets": 1 +"Film Scoring and Sound Design: A Comprehensive Study of Foley Art Techniques": 1 +"Mastering Rhythm Composition with Ableton Live 10 and Native Instruments Kontakt: Harnessing MIDI Editor for Percussive Layers": 1 +"The Heart Unveiled: In-depth Analysis of Cardiac Rhythms using Electrocardiography and Cardiac MRI": 1 +"Augmented Reality: Exploring the Potential of AR in Urban Planning and Design": 1 +"Advanced Cybersecurity: Exploring Encryption Algorithms in Data Protection": 1 +"Health and Wellness: Biomechanics Analysis Through Wearable Fitness Trackers": 1 +"Music Theory: Understanding Harmonics and Resonance through Digital Synthesis": 1 +"Sustainable Agriculture: The Role of Precision Farming in Climate Change Mitigation": 1 +"Inorganic Chemistry: Exploring Crystallographic Structures through X-Ray Diffraction": 1 +"Marine Biology: The Role of Plankton in Aquatic Food Chains": 1 +"Computational Linguistics: Natural Language Processing with Python and Machine Learning": 1 +"Astrophysics: Black Holes and the Theory of Relativity": 1 +"Gastronomy: Molecular Gastronomy: The Physics of Sous-vide Cooking ": 1 +"Psychoacoustics: The Cognitive Impact of Sound Frequencies Determined Through EEG Analysis": 1 +"Introduction to Biophysics: Unraveling Biological Mechanisms with Atomic Force Microscopy": 1 +"Advanced Psychology: Decoding Human Behavior through Cognitive Behavioral Therapy and Neuroimaging": 1 +"Immunology: Understanding Autoimmune Diseases through Antigen Presentation and T Cell Activation Studies": 1 +"Data Science: Deciphering Big Data with Hadoop and Spark using Deep Learning Networks and the Bootstrap Method": 1 +"Creative Writing: Diverse Narrative Styles - A Semantic Analysis Approach: A View from Machine Learning": 1 +"Eastern Philosophy: Dissecting Karma and the Self with Nagarjuna's Emptiness Theory": 1 +"Introductory Cosmology: Decoding the Universe with Redshift Observations": 1 +"German Poetry: Exploring Expressionism through the Verse of Georg Trakl": 1 +"Microsoft HoloLens and Kinect for Surgical Training: An Extensive Research on the Influence of C# Programming": 1 +"Environmental Chemistry: Biochar and the Significance of Carbon Sequestration in Climate Change Mitigation": 1 +"Physics: Quantum Computing - An Introduction to Qiskit and Quantum Circuits": 1 +"Exploring the Realm of Statistics: Hypothesis Testing and Data Interpretation with SPSS": 1 +"Innovative Approaches in Biochemistry: Protein Structure Analysis using Chimera and Molecular Dynamics Simulation": 1 +"Mastering Algebra: Unravelling Quadratic Equations with GeoGebra": 1 +"Web Design Genius: Mastering User Experience (UX) Design with Figma, HTML, CSS, and JavaScript": 1 +"Principles of Psychology: Understanding Behavioral Biases through Cognitive Neuroscience": 1 +"Junior Physicists: Investigating the Laws of Thermodynamics with Simple Heat Experiments": 1 +"Unveiling the Mysteries of the Human Brain: A Comprehensive Study on Neuroimaging Techniques and Cognitive Neuroscience": 1 +"The Evolution of Film: The Impact of Augmented Reality on Cinematography and Storytelling": 1 +"Civil Engineering Fundamentals: Skyscraper Design and Structural Analysis using AutoCAD and SAP2000 Software": 1 +"Psychology of Colors: An Analysis on Emotional Responses to Visual Stimuli": 1 +"Agricultural Economics: Understanding the Impact of Global Trade Policies on Local Farming": 1 +"Biology 101: Dissecting Evolutionary Patterns through Comparative Anatomy": 1 +"Digital Arts: The Science Behind CGI and its Application in Modern Cinema": 1 +"Advanced Geometry: Navigating Space through Non-Euclidean Concepts and Topology": 1 +"Astrophysics: Quantum Theory and its Implications for Black Hole Studies": 1 +"From Hieroglyphics to Emojis: A Historical Overview of Visual Communication": 1 +"Algebra: Integration of Polynomials and Quadratic Equations in Cryptography": 1 +"Environmental Science: Climate Change Insights from Ice Core Analysis": 1 +"Data Science in Basketball: A Deep Dive into Player Analytics and Game Strategy": 1 +"Physics: Understanding Quantum Mechanics through the Lens of Schrödinger's Cat Experiment": 1 +"History: The Industrial Revolution and its Impact on Victorian Literature": 1 +"Machine Learning: Implementing Deep Learning Models for Image Recognition with TensorFlow": 1 +"Mathematics: Understanding the Intricacies of Calculus with Integral Equations": 1 +"Biology: Exploring the Genetic Diversity of Endangered Species using DNA Sequencing": 1 +"The Science of Beer Making: A Detailed Study on Malt Extraction, Fermentation, and Flavor Profiling": 1 +"Python Programming for Financial Analysis: Predictive Modeling with Scikit-Learn": 1 +"Computer Engineering: Analysing Hardware and Software Interactions with Raspberry Pi": 1 +"Environmental Studies: Understanding Climate Change Impact on Polar Ice Caps using Satellite Imagery": 1 +"Fine Arts: Mastering the Art of Impressionism in Landscape Paintings using Broken Color Techniques": 1 +"Astrophysics Fundamentals: Exploring the Role of Dark Matter in Galaxy Formation": 1 +"Neuroscience: A Comprehensive Review of Memory Formation and Retrieval through fMRI and Neuropsychological Tests": 1 +"Artificial Intelligence in Healthcare: Examining Disease Prediction using Neural Networks and Big Data Analytics": 1 +"History: A Charcoal Illustration Study of American Civil War Figures": 1 +"The Biology of Stress: Understanding the Effects of Chronic Stress on Human Brain using Molecular Biology and Genomics": 1 +"Mathematics: A Deep Dive into Chaos Theory and its Implications in Weather Forecasting": 1 +"Sustainable Agriculture: The New Age of Aquaponics - Evaluating the Impact of Hydroponics and Aquaculture on Food Security": 1 +"Chemistry at Home: Exploring Chemical Reactions with Kitchen Ingredients": 1 +"The Influence of Digital Media in Contemporary Art: An Examination of Augmented Reality and Virtual Reality Trends": 1 +"Psychology: Investigating the Mechanisms of Empathy through Social Neuroscience and Behavioral Analysis": 1 +"Chemistry: Nanotechnology in Medicine - Drug Delivery Systems and Biocompatibility": 1 +"Mastering Home Automation: Utilizing Google Assistant to Optimize Home Security and Energy Efficiency": 1 +"Physics: Quantum Mechanics - Understanding the Double-Slit Experiment and Wave-Particle Duality": 1 +"Environmental Science: The Impact of Industrialization on Aquatic Ecosystems - A Study through Remote Sensing": 1 +"Sport Psychology: The Role of Mental Toughness in Soccer - Strategies for Enhancing Team Performance": 1 +"Advanced Zoology: Impact of Urbanization on Bird Migration Patterns using GPS Tracking and Geographic Information Systems": 1 +"Cyber Defense Strategies: Understanding the Dynamics of Ransomware Attacks and Building Robust Disaster Recovery Plans": 1 +"Psychology 210: The Role of Art Therapy in Trauma Recovery - An Interdisciplinary Approach": 1 +"Radiology Basics: Understanding the Human Body through MRI and CT Scans": 1 +"Global Politics: The Cold War Era, Nuclear Deterrence, the Space Race, and the Rise of Diplomacy": 1 +"Advanced Astronautics: Navigating the Cosmos with Astrophysics, MATLAB, and Stellar Cartography": 1 +"Harmonic Architecture: Designing with Acoustics using AutoCAD, Rhino, and Revit": 1 +"Physics 102: Quantum Mechanics in the Creation of Advanced Telecommunication Networks": 1 +"Eco-Friendly Urban Development: Applying Geospatial Analysis in Green Building and Renewable Energy Practices using GIS": 1 +"Biochemical Engineering: Unlocking Metabolism with Genomic Data and Proteomics": 1 +"Primary Physics: Discovering Laws of Motion through Interactive Games": 1 +"Electronic Music Production: Creating Ambient Soundscapes with AI and FL Studio ": 1 +"Cultural Expression: Storytelling through Sculpture using 3D Printing Technology": 1 +"Sports Analytics: The Role of Biometric Data in Player Performance Enhancement": 1 +"Mastering Children's Book Illustration in Adobe Illustrator: The Art of Visual Storytelling in Fairy Tales": 1 +"Political Philosophy: Analyzing the Influence of Social Media on Modern Democracy": 1 +"Advanced Biochemistry: Understanding Human Metabolism through Proteomics and Metabolomics": 1 +"Interplanetary Ecology: A Multidisciplinary Approach to Terraforming Mars": 1 +"Cognitive Neuroscience: Exploring Visual Perception and Optical Illusions in the Human Visual System": 1 +"Comparative Literature: Applying Machine Learning Algorithms for Sentiment Analysis in World Literature": 1 +"Software Engineering: Utilizing TensorFlow, Docker, and Microservices for Developing AI Chatbots": 1 +"Innovative Statistical Approaches in Market Analysis: Using Python, Tableau, Random Forest, Pattern Recognition, and Predictive Modelling": 1 +"Oceanography: Understanding Ocean Currents and Climate Change through Satellite Data Analysis": 1 +"The Revolutionary Role of Augmented Reality in Education: An In-Depth Study in Teaching Methodologies": 1 +"Exploring Fundamental Physics: Encouraging Problem Solving through the Use of LEGO and Magnetic Fields": 1 +"Advanced Biotechnology: Genetic Sequencing and Data Analysis Using Python and Machine Learning for Personalized Medicine": 1 +"The Influence of Quantum Mechanics on Modern Telecommunication Systems": 1 +"Oceanography: Utilizing Sonar Technology and Bathymetric Data in Discovering the Mysteries of the Mariana Trench": 1 +"The Craft of Mosaics: Investigating Color and Texture through Tile Arrangement and Light Reflection": 1 +"Psycholinguistics: Decoding Thought Processes through Electroencephalography and Language Analysis": 1 +"Discovering Electrodynamics: Understanding Electromagnetic Waves through Practical Experiments and Simulations": 1 +"Biology 101: Cellular Structures and Biochemical Reactions - Application of Confocal Microscopy": 1 +"Astrophysics: The Wonders of Gravitational Waves and Their Role in Observing Black Holes": 1 +"Microeconomics: Market Structure Theories and Case Studies": 1 +"Investigating Track and Field: Comprehensive Analysis of Long Jump Patterns Using R, Matlab, SPSS, and Predictive Modelling Techniques": 1 +"Psychology: Impact of Virtual Reality on Human Perception and Cognitive Functioning": 1 +"Astrophysics: Probing Dark Matter and Cosmic Expansion through Advanced Computational Models": 1 +"Literature: Exploring Postmodernism in Literature - A Study on Metafiction and Intertextuality": 1 +"Data Science: Machine Learning and Predictive Analytics - Utilizing TensorFlow and PyTorch in Big Data": 1 +"Political Science: Comparative Study of Global Political Systems using Statistical Analysis in SPSS": 1 +"Art History: Impressionism to Post-Modernism - Painting Techniques with Gouache and Watercolor": 1 +"Environmental Studies: Applying Remote Sensing and GIS in Monitoring Deforestation and Biodiversity Loss": 1 +"Theater: Puppetry and Animation - Techniques for Creating Lifelike Movement": 1 +"Sports Studies: Enhancing Athletic Performance with Biomechanics and Nutrition in Kinesiology": 1 +"Neuroscience: Decoding the Brain - A Closer Look at Neuroplasticity and Neuroimaging Techniques": 1 +"Microeconomics: Market Structure Theories and Case Studies": 1 +"Investigating Track and Field: Comprehensive Analysis of Long Jump Patterns Using R, Matlab, SPSS, and Predictive Modelling Techniques": 1 +"Psychology: Impact of Virtual Reality on Human Perception and Cognitive Functioning": 1 +"Astrophysics: Probing Dark Matter and Cosmic Expansion through Advanced Computational Models": 1 +"Literature: Exploring Postmodernism in Literature - A Study on Metafiction and Intertextuality": 1 +"Data Science: Machine Learning and Predictive Analytics - Utilizing TensorFlow and PyTorch in Big Data": 1 +"Political Science: Comparative Study of Global Political Systems using Statistical Analysis in SPSS": 1 +"Art History: Impressionism to Post-Modernism - Painting Techniques with Gouache and Watercolor": 1 +"Environmental Studies: Applying Remote Sensing and GIS in Monitoring Deforestation and Biodiversity Loss": 1 +"Theater: Puppetry and Animation - Techniques for Creating Lifelike Movement": 1 diff --git a/sciphi/data/stock_config/textbooks_are_all_you_need_evol/main.yaml b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/main.yaml new file mode 100644 index 0000000..49587d3 --- /dev/null +++ b/sciphi/data/stock_config/textbooks_are_all_you_need_evol/main.yaml @@ -0,0 +1,107 @@ +# The `main.yaml` file is used to specify the synthetic data generation +# This file is used by the `DataConfigReader` to specify synthetic data construction. + +# Specify the outer LLM prompt format +# `md_instruction` follows typical Alpaca template +outer_prompt_format: md_instruction + +# Specify how the data should be generated +generator_mode: synthetic + +# Prompt templates are used to generate prompts for the synthetic data. +prompt_templates: + "{instruction_prefix} is the {document_type_description}:\n'{title}'\n\nYour task is to FIRST {outline_creation_instruction} and THEN {comprehensive_piece_instruction}. {python_intro_statement} {python_core_concept_representation} {python_example_instruction}. Note, explain things in as simple english as possible.": 1 + +prompt_template_inputs: + - instruction_prefix + - document_type_description + - title + - outline_creation_instruction + - comprehensive_piece_instruction + - python_intro_statement + - python_core_concept_representation + - python_example_instruction + +prompt_template_input_dependencies: + +config_files: + "evol_grade_school": 1 + "evol_seminar_i": 1 + +instruction_prefix: + "Listed below": 1 + "Provided here": 1 + "Outlined below": 1 + "Given below": 1 + "Presented here": 1 + "Shown below": 1 + "Illustrated here": 1 + "Displayed below": 1 + "Revealed here": 1 + "Detailed below": 1 + +document_type_description: + "title of a textbook and a corresponding section": 5 + "title of a book and a corresponding chapter": 4 + "title of a review paper and the associated section": 3 + "title of a volume and the associated chapter": 3 + "title of a reference book and a relevant section": 3 + "title of an essay": 2 + "title of a coursebook and a relevant module": 2 + "title of an encyclopedia and a particular volume": 2 + "title of a dissertation and the pertinent chapter": 2 + "title of a class and an associated lecture": 2 + "title of a symposium and the corresponding discussion": 1 + "title of a lecture series and a specific lecture": 1 + "title of an academic publication and a related chapter": 1 + "title of a journal and a distinct article": 1 + "title of a scholarly compendium and an associated entry": 1 + "title of a research paper and the relevant subsection": 1 + "title of an academic handbook and a specific chapter": 1 + "title of a lecture note and the corresponding unit": 1 + +outline_creation_instruction: + "write a step-by-step outline to replicate the mentioned title": 1 + "compose a detailed, step-by-step outline to replicate the title as mentioned": 1 + "draft a comprehensive, stepwise outline to replicate the specified title": 1 + "formulate a thorough, step-by-step guide to replicate the title as described": 1 + "detail a step-by-step plan to replicate the specified work": 1 + "craft a clear, structured outline to accurately replicate the title presented": 1 + "develop a meticulous, step-by-step strategy for reproducing the specified title": 1 + "organize a thorough, sequential outline for accurately replicating the mentioned work": 1 + "design a comprehensive, stepwise guide to faithfully replicate the described title": 1 + "construct a detailed, structured blueprint to precisely replicate the title specified": 1 + +comprehensive_piece_instruction: + "COMPOSE a comprehensive piece on the topic": 1 + "COMPOSE a detailed section on the topic": 2 + "DRAFT a substantial essay on the topic": 1 + "DRAFT an explanatory article on the topic": 1 + "WRITE an explanatory article on the topic": 1 + "WRITE a detailed page on the topic": 2 + "REPRODUCE the entire piece": 2 + "FORMULATE a detailed exposition on the subject": 1 + "ASSEMBLE a meticulous review on the subject": 1 + +python_intro_statement: + "FINALLY,": 1 + +python_core_concept_representation: + "represent a core concept of your response": 1 + "illustrate a principal element of your answer": 1 + "demonstrate a fundamental idea from your response": 1 + "showcase a key theme of your answer": 1 + "depict an essential concept from your reply": 1 + "display a foundational principle of your response": 1 + "exemplify a main idea from your answer": 1 + "highlight a central concept of your reply": 1 + +python_example_instruction: + "through an example with Python code": 5 + "by providing a Python code snippet": 4 + "using a practical Python example": 4 + "by illustrating with a piece of Python code": 3 + "by presenting an example using Python programming": 3 + "with a demonstrative Python code segment": 3 + "by showcasing a Python coding example": 2 + "using an illustrative Python coding snippet": 2 diff --git a/sciphi/data/stock_raw/algorithms/Algorithms-JeffE.pdf b/sciphi/data/stock_raw/algorithms/Algorithms-JeffE.pdf new file mode 100644 index 0000000..7519c1b Binary files /dev/null and b/sciphi/data/stock_raw/algorithms/Algorithms-JeffE.pdf differ diff --git a/sciphi/data/stock_raw/algorithms/README.md b/sciphi/data/stock_raw/algorithms/README.md new file mode 100644 index 0000000..ef09d9b --- /dev/null +++ b/sciphi/data/stock_raw/algorithms/README.md @@ -0,0 +1,11 @@ +# Algorithms by Jeff Erickson + +This repository contains a copy of the book "Algorithms" by Jeff Erickson. + +- **Author**: Jeff Erickson +- **Original Source**: [Jeff Erickson's Algorithms](https://jeffe.cs.illinois.edu/teaching/algorithms/) +- **License**: This work is licensed under the [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). + +## Attribution + +The book "Algorithms" is authored by Jeff Erickson and is redistributed here under the terms of the Creative Commons Attribution 4.0 International license. The original work can be found at [Jeff Erickson's Algorithms](https://jeffe.cs.illinois.edu/teaching/algorithms/). diff --git a/sciphi/data/stock_raw/learning_with_python/Makefile b/sciphi/data/stock_raw/learning_with_python/Makefile deleted file mode 100644 index 2749369..0000000 --- a/sciphi/data/stock_raw/learning_with_python/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -LATEX = latex - -DVIPS = dvips - -PDFFLAGS = -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress \ - -dCompressPages=true -dUseFlateCompression=true \ - -dEmbedAllFonts=true -dSubsetFonts=true -dMaxSubsetPct=100 - -%.dvi: %.tex - $(LATEX) $< - -%.ps: %.dvi - $(DVIPS) -o $@ $< - -%.pdf: %.ps - ps2pdf $(PDFFLAGS) $< - -all: top.tex - latex top - makeindex top - latex top - dvips -T 6.75in,9.25in -Ppdf -o thinkCSpy.ps top -# dvips -T 7.444in,9.681in -Ppdf -o thinkCSpy.ps top - ps2pdf $(PDFFLAGS) thinkCSpy.ps - -DEST = /home/downey/public_html/greent/thinkpython/thinkCSpy - -distrib: - rm -rf dist - mkdir dist dist/tex dist/html - rsync -a thinkCSpy.pdf thinkCSpy.ps dist - rsync -a Makefile *.tex dist/tex - rsync -a illustrations dist/tex - rm dist/tex/illustrations/*.bak - rsync -a images dist/html - mkdir dist/html/illustrations - rsync -a illustrations/*.png dist/html/illustrations - cd dist/tex; make clean - cd dist; tar -czf thinkCSpy.tex.tar.gz tex - cd ltoh; perl make_book_html.pl ../dist/tex ../dist/html - cd dist; tar -czf thinkCSpy.html.tar.gz html - cd dist; cp thinkCSpy.tex.tar.gz thinkCSpy.tex.tgz - cd dist; cp thinkCSpy.html.tar.gz thinkCSpy.html.tgz - rsync -a dist/* $(DEST) - chmod -R o+r $(DEST)/* - -clean: - rm -f *~ *.aux *.log *.dvi *.idx *.ilg *.ind *.toc - - -prop: - zip downey_software_design.zip proposal/proposal.pdf proposal/table_of_contents.pdf proposal/chapters12-14.pdf - - diff --git a/sciphi/data/stock_raw/learning_with_python/app01.tex b/sciphi/data/stock_raw/learning_with_python/app01.tex deleted file mode 100644 index edaa16a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/app01.tex +++ /dev/null @@ -1,614 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% -\chapter{Debugging} -\index{debugging} - -Different kinds of errors can occur -in a program, and it is useful to distinguish among them -in order to track them down more quickly: - -\begin{itemize} - -\item Syntax errors are produced by Python when it is -translating the source code into byte code. They usually -indicate that there is something wrong with the syntax of the program. -Example: Omitting the colon at the end of a {\tt def} statement yields -the somewhat redundant message {\tt SyntaxError: invalid syntax}. - -\item Runtime errors are produced by the runtime system if something -goes wrong while the program is running. Most runtime error messages -include information about where the error occurred and what functions -were executing. -Example: An infinite recursion eventually causes -a runtime error of ``maximum recursion depth exceeded.'' - -\item Semantic errors are problems with a program that compiles and -runs but doesn't do the right thing. Example: An expression may -not be evaluated in the order you expect, yielding an unexpected -result. - -\end{itemize} - -\index{compile-time error} -\index{syntax error} -\index{runtime error} -\index{semantic error} -\index{error!compile-time} -\index{error!syntax} -\index{error!runtime} -\index{error!semantic} -\index{exception} - -The first step in debugging is to figure out which kind of -error you are dealing with. Although the following sections are -organized by error type, some techniques are -applicable in more than one situation. - - -\section{Syntax errors} - -\index{error messages} -\index{compiler} - -Syntax errors are usually easy to fix once you figure out what they -are. Unfortunately, the error messages are often not helpful. -The most common messages are {\tt SyntaxError: invalid syntax} and -{\tt SyntaxError: invalid token}, neither of which is very informative. - -On the other hand, the message does tell you where in the program the -problem occurred. Actually, it tells you where Python -noticed a problem, which is not necessarily where the error -is. Sometimes the error is prior to the location of the error -message, often on the preceding line. - -\index{incremental program development} - -If you are building the program incrementally, you should have -a good idea about where the error is. It will be in the last -line you added. - -If you are copying code from a book, start by comparing -your code to the book's code very carefully. Check every character. -At the same time, remember that the book might be wrong, so -if you see something that looks like a syntax error, it might be. - -Here are some ways to avoid the most common syntax errors: - -\index{syntax} - -\begin{enumerate} - -\item Make sure you are not using a Python keyword for a variable name. - -\item Check that you have a colon at the end of the header of every -compound statement, including {\tt for}, {\tt while}, -{\tt if}, and {\tt def} statements. - -\item Check that indentation is consistent. You may indent with either -spaces or tabs but it's best not to mix them. Each level should be -nested the same amount. - -\item Make sure that any strings in the code have matching -quotation marks. - -\item If you have multiline strings with triple quotes (single or double), make -sure you have terminated the string properly. An unterminated string -may cause an {\tt invalid token} error at the end of your program, -or it may treat the following part of the program as a string until it -comes to the next string. In the second case, it might not produce an error -message at all! - -\item An unclosed bracket---\verb+(+, \verb+{+, or \verb+[+---makes -Python continue with the next line as part of the current statement. -Generally, an error occurs almost immediately in the next line. - -\item Check for the classic {\tt =} instead of {\tt ==} inside -a conditional. - -\end{enumerate} - -If nothing works, move on to the next section... - - -\subsection{I can't get my program to run no matter -what I do.} - -If the compiler says there is an error and you don't see it, that -might be because you and the compiler are not looking at the same -code. Check your programming environment to make sure that the -program you are editing is the one Python is trying to run. If you -are not sure, try putting an obvious and deliberate syntax error at -the beginning of the program. Now run (or import) it again. If the -compiler doesn't find the new error, there is probably something wrong -with the way your environment is set up. - -If this happens, one approach is to start again with a new -program like ``Hello, World!,'' and make sure you can get a known -program to run. Then gradually add the pieces of the new program -to the working one. - - - -\section{Runtime errors} - -Once your program is syntactically correct, -Python can import it and at least start running it. What could -possibly go wrong? - - -\subsection{My program does absolutely nothing.} - -This problem is most common when your file consists of functions and classes -but does not actually invoke anything to start execution. This may be -intentional if you only plan to import this module to supply classes -and functions. - -If it is not intentional, make sure that you -are invoking a function to start execution, or execute one from -the interactive prompt. Also see the ``Flow of Execution'' section -below. - - -\subsection{My program hangs.} -\index{infinite loop} -\index{infinite recursion} -\index{hanging} - -If a program stops and seems to be doing nothing, we -say it is ``hanging.'' Often that means that it is caught in -an infinite loop or an infinite recursion. - -\begin{itemize} - -\item If there is a particular loop that you suspect is the -problem, add a {\tt print} statement immediately before the loop that says -``entering the loop'' and another immediately after that says -``exiting the loop.'' - -Run the program. If you get the first message and not the second, -you've got an infinite loop. Go to the ``Infinite Loop'' section -below. - -\item Most of the time, an infinite recursion will cause the program -to run for a while and then produce a ``RuntimeError: Maximum -recursion depth exceeded'' error. If that happens, go to the -``Infinite Recursion'' section below. - -If you are not getting this error but you suspect there is a problem -with a recursive method or function, you can still use the techniques -in the ``Infinite Recursion'' section. - -\item If neither of those steps works, start testing other -loops and other recursive functions and methods. - -\item If that doesn't work, then it is possible that -you don't understand the flow of execution in your program. -Go to the ``Flow of Execution'' section below. - -\end{itemize} - - -\subsubsection{Infinite Loop} -\index{infinite loop} -\index{loop!infinite} -\index{condition} -\index{loop!condition} - -If you think you have an infinite loop and you think you know -what loop is causing the problem, add a {\tt print} statement at -the end of the loop that prints the values of the variables in -the condition and the value of the condition. - -For example: - -\beforeverb -\begin{verbatim} -while x > 0 and y < 0 : - # do something to x - # do something to y - - print "x: ", x - print "y: ", y - print "condition: ", (x > 0 and y < 0) -\end{verbatim} -\afterverb -% -Now when you run the program, you will see three lines of output -for each time through the loop. The last time through the -loop, the condition should be {\tt false}. If the loop keeps -going, you will be able to see the values of {\tt x} and {\tt y}, -and you might figure out why they are not being updated correctly. - - -\subsubsection{Infinite Recursion} -\index{infinite recursion} -\index{recursion!infinite} - -Most of the time, an infinite recursion will cause the program to run -for a while and then produce a {\tt Maximum recursion depth exceeded} -error. - -If you suspect that a function or method is causing an infinite -recursion, start by checking to make sure that there is a base case. -In other words, there should be some condition that will cause the -function or method to return without making a recursive invocation. -If not, then you need to rethink the algorithm and identify a base -case. - -If there is a base case but the program doesn't seem to be reaching -it, add a {\tt print} statement at the beginning of the function or method -that prints the parameters. Now when you run the program, you will see -a few lines of output every time the function or method is invoked, -and you will see the parameters. If the parameters are not moving -toward the base case, you will get some ideas about why not. - - -\subsubsection{Flow of Execution} -\index{flow of execution} -\index{execution!flow} - -If you are not sure how the flow of execution is moving through -your program, add {\tt print} statements to the beginning of each -function with a message like ``entering function {\tt foo},'' where -{\tt foo} is the name of the function. - -Now when you run the program, it will print a trace of each -function as it is invoked. - - -\subsection{When I run the program I get an exception.} -\index{exception} -\index{runtime error} - -If something goes wrong during runtime, Python -prints a message that includes the name of the -exception, the line of the program where the problem occurred, -and a traceback. - -\index{traceback} - -The traceback identifies the function that is currently running, -and then the function that invoked it, and then the function that -invoked {\em that}, and so on. In other words, it traces the -path of function invocations that got you to where you are. It -also includes the line number in your file where each of these -calls occurs. - -The first step is to examine the place in the program where -the error occurred and see if you can figure out what happened. -These are some of the most common runtime errors: - -\begin{description} - -\item[NameError:] You are trying to use a variable that doesn't -exist in the current environment. -Remember that local variables are local. You -cannot refer to them from outside the function where they are defined. - -\index{NameError} -\index{TypeError} - -\item[TypeError:] There are several possible causes: - -\begin{itemize} - -\item You are trying to use a value improperly. Example: indexing -a string, list, or tuple with something other than an integer. - -\index{index} - -\item There is a mismatch between the items in a format string and -the items passed for conversion. This can happen if either the number -of items does not match or an invalid conversion is called for. - -\index{format operator} -\index{operator!format} - -\item You are passing the wrong number of arguments to a function or method. -For methods, look at the method definition and -check that the first parameter is {\tt self}. Then look at the -method invocation; make sure you are invoking the method on an -object with the right type and providing the other arguments -correctly. - -\end{itemize} - -\item[KeyError:] You are trying to access an element of a dictionary -using a key value that the dictionary does not contain. - -\index{KeyError} -\index{dictionary} - -\item[AttributeError:] You are trying to access an attribute or method -that does not exist. - -\index{AttributeError} - -\item[IndexError:] The index you are using -to access a list, string, or tuple is greater than -its length minus one. Immediately before the site of the error, -add a {\tt print} statement to display -the value of the index and the length of the array. -Is the array the right size? Is the index the right value? - -\index{IndexError} - -\end{description} - - -\subsection{I added so many {\tt print} statements I get inundated with -output.} -\index{print statement} -\index{statement!print} - -One of the problems with using {\tt print} statements for debugging -is that you can end up buried in output. There are two ways -to proceed: simplify the output or simplify the program. - -To simplify the output, you can remove or comment out {\tt print} -statements that aren't helping, or combine them, or format -the output so it is easier to understand. - -To simplify the program, there are several things you can do. First, -scale down the problem the program is working on. For example, if you -are sorting an array, sort a {\em small} array. If the program takes -input from the user, give it the simplest input that causes the -problem. - -Second, clean up the program. Remove dead code and reorganize the -program to make it as easy to read as possible. For example, if you -suspect that the problem is in a deeply nested part of the program, -try rewriting that part with simpler structure. If you suspect a -large function, try splitting it into smaller functions and testing them -separately. - -Often the process of finding the minimal test case leads you -to the bug. If you find that a program works -in one situation but not in another, -that gives you a clue about what is going on. - -Similarly, rewriting a piece of code can help you find subtle -bugs. If you make a change that you think doesn't affect the -program, and it does, that can tip you off. - - -\section{Semantic errors} -\index{semantic error} -\index{error!semantic} - -In some ways, semantic errors are the hardest to debug, -because the compiler and the runtime system provide no information -about what is wrong. Only you know what the program is supposed to -do, and only you know that it isn't doing it. - -The first step is to make a connection between the program -text and the behavior you are seeing. You need a hypothesis -about what the program is actually doing. One of the things -that makes that hard is that computers run so fast. - -You will often wish that you could slow the program down to human -speed, and with some debuggers you can. But the time it takes to -insert a few well-placed {\tt print} statements is often short compared to -setting up the debugger, inserting and removing breakpoints, and -``walking'' the program to where the error is occurring. - -\subsection{My program doesn't work.} - -You should ask yourself these questions: - -\begin{itemize} - -\item Is there something the program was supposed to do but -which doesn't seem to be happening? Find the section of the code -that performs that function and make sure it is executing when -you think it should. - -\item Is something happening that shouldn't? Find code in -your program that performs that function and see if it is -executing when it shouldn't. - -\item Is a section of code producing an effect that is not -what you expected? Make sure that you understand the code in -question, especially if it involves invocations to functions or methods in -other Python modules. Read the documentation for the functions you invoke. -Try them out by writing simple test cases and checking the results. - -\end{itemize} - -In order to program, you need to have a mental model of how -programs work. If you write a program that doesn't do what you expect, -very often the problem is not in the program; it's in your mental -model. - -\index{model!mental} -\index{mental model} - -The best way to correct your mental model is to break the program -into its components (usually the functions and methods) and test -each component independently. Once you find the discrepancy -between your model and reality, you can solve the problem. - -Of course, you should be building and testing components as you -develop the program. If you encounter a problem, -there should be only a small amount of new code -that is not known to be correct. - - -\subsection{I've got a big hairy expression and it doesn't -do what I expect.} -\index{expression!big and hairy} - -Writing complex expressions is fine as long as they are readable, -but they can be hard to debug. It is often a good idea to -break a complex expression into a series of assignments to -temporary variables. - -For example: - -\beforeverb -\begin{verbatim} -self.hands[i].addCard (self.hands[self.findNeighbor(i)].popCard()) -\end{verbatim} -\afterverb -% -This can be rewritten as: - -\beforeverb -\begin{verbatim} -neighbor = self.findNeighbor (i) -pickedCard = self.hands[neighbor].popCard() -self.hands[i].addCard (pickedCard) -\end{verbatim} -\afterverb -% -The explicit version is easier to read because the variable -names provide additional documentation, and it is easier to debug -because you can check the types of the intermediate variables -and display their values. - -\index{temporary variable} -\index{variable!temporary} -\index{order of evaluation} -\index{precedence} - -Another problem that can occur with big expressions is -that the order of evaluation may not be what you expect. -For example, if you are translating the expression -$\frac{x}{2 \pi}$ into Python, you might write: - -\beforeverb -\begin{verbatim} -y = x / 2 * math.pi -\end{verbatim} -\afterverb -% -That is not correct because multiplication and division have -the same precedence and are evaluated from left to right. -So this expression computes $x \pi / 2$. - -A good way to debug expressions is to add parentheses to make -the order of evaluation explicit: - -\beforeverb -\begin{verbatim} - y = x / (2 * math.pi) -\end{verbatim} -\afterverb -% -Whenever you are not sure of the order of evaluation, use -parentheses. Not only will the program be correct (in the sense -of doing what you intended), it will also be more readable for -other people who haven't memorized the rules of precedence. - - -\subsection{I've got a function or method that doesn't return what I -expect.} -\index{return statement} -\index{statement!return} - -If you have a {\tt return} statement with a complex expression, -you don't have a chance to print the {\tt return} value before -returning. Again, you can use a temporary variable. For -example, instead of: - -\beforeverb -\begin{verbatim} -return self.hands[i].removeMatches() -\end{verbatim} -\afterverb -% -you could write: - -\beforeverb -\begin{verbatim} -count = self.hands[i].removeMatches() -return count -\end{verbatim} -\afterverb -% -Now you have the opportunity to display the value of -{\tt count} before returning. - - -\subsection{I'm really, really stuck and I need help.} - -First, try getting away from the computer for a few minutes. -Computers emit waves that affect the brain, causing these -effects: - -\begin{itemize} - -\item Frustration and/or rage. - -\item Superstitious beliefs (``the computer hates me'') and -magical thinking (``the program only works when I wear my -hat backward''). - -\item Random-walk programming (the attempt to program by writing -every possible program and choosing the one that does the right -thing). - -\end{itemize} - -If you find yourself suffering from any of these symptoms, get -up and go for a walk. When you are calm, think about the program. -What is it doing? What are some possible causes of that -behavior? When was the last time you had a working program, -and what did you do next? - -Sometimes it just takes time to find a bug. We often find bugs -when we are away from the computer and let our minds wander. Some -of the best places to find bugs are trains, showers, and in bed, -just before you fall asleep. - - -\subsection{No, I really need help.} - -It happens. Even the best programmers occasionally get stuck. -Sometimes you work on a program so long that you can't see the -error. A fresh pair of eyes is just the thing. - -Before you bring someone else in, make sure you have exhausted -the techniques described here. Your program should be as simple -as possible, and you should be working on the smallest input -that causes the error. You should have {\tt print} statements in the -appropriate places (and the output they produce should be -comprehensible). You should understand the problem well enough -to describe it concisely. - -When you bring someone in to help, be sure to give -them the information they need: - -\begin{itemize} - -\item If there is an error message, what is it -and what part of the program does it indicate? - -\item What was the last thing you did before this error occurred? -What were the last lines of code that you wrote, or what is -the new test case that fails? - -\item What have you tried so far, and what have you learned? - -\end{itemize} - -When you find the bug, take a second to think about what you -could have done to find it faster. Next time you see something -similar, you will be able to find the bug more quickly. - -Remember, the goal is not just to make the program -work. The goal is to learn how to make the program work. diff --git a/sciphi/data/stock_raw/learning_with_python/app02.tex b/sciphi/data/stock_raw/learning_with_python/app02.tex deleted file mode 100644 index f0c84e1..0000000 --- a/sciphi/data/stock_raw/learning_with_python/app02.tex +++ /dev/null @@ -1,409 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% - -\chapter{Creating a new data type} -\label{overloading} -\index{data type!user-defined} - -Object-oriented programming languages allow programmers to create new -data types that behave much like built-in data types. We will explore -this capability by building a {\tt Fraction} class that works very much -like the built-in numeric types: integers, longs and floats. - -Fractions, also known as rational numbers, are values that can be expressed -as a ratio of whole numbers, such as $5/6$. The top number is -called the numerator and the bottom number is called the denominator. - -\index{rational} -\index{fraction} -\index{numerator} -\index{denominator} - -We start by defining a {\tt Fraction} class with an initialization -method that provides the numerator and denominator as integers: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -class Fraction: - def __init__(self, numerator, denominator=1): - self.numerator = numerator - self.denominator = denominator -\end{verbatim} -\afterverb -% -The denominator is optional. A Fraction with just one -parameter represents a whole number. If the numerator -is $n$, we build the Fraction -$n/1$. - -The next step is to write a {\tt \_\_str\_\_} method that -displays fractions in a way that makes sense. The form -``numerator/denominator'' is natural here: - -\beforeverb -\begin{verbatim} -class Fraction: - ... - def __str__(self): - return "%d/%d" % (self.numerator, self.denominator) -\end{verbatim} -\afterverb -% -To test what we have so far, we put it in a file named -{\tt Fraction.py} and import it into the Python interpreter. -Then we create a fraction object and print it. - -\beforeverb -\begin{verbatim} ->>> from Fraction import Fraction ->>> spam = Fraction(5,6) ->>> print "The fraction is", spam -The fraction is 5/6 -\end{verbatim} -\afterverb -% -As usual, the {\tt print} command invokes the {\tt \_\_str\_\_} -method implicitly. - - -\section {Fraction multiplication} -\index{multiplication!fraction} -\index{fraction!multiplication} - -We would like to be able to apply the normal addition, subtraction, -multiplication, and division operations to fractions. To do this, we -can overload the mathematical operators for {\tt Fraction} objects. - -\index{overload} -\index{operator!overloading} -\index{mathematical operator} - -We'll start with multiplication because it is the easiest to implement. -To multiply fractions, we create a new fraction with a numerator -that is the product of the original numerators and a denominator that -is a product of the original denominators. {\tt \_\_mul\_\_} is the -name Python uses for a method that overloads the {\tt *} operator: - -\beforeverb -\begin{verbatim} -class Fraction: - ... - def __mul__(self, other): - return Fraction(self.numerator*other.numerator, - self.denominator*other.denominator) -\end{verbatim} -\afterverb -% -We can test this method by computing the product of two fractions: - -\beforeverb -\begin{verbatim} ->>> print Fraction(5,6) * Fraction(3,4) -15/24 -\end{verbatim} -\afterverb -% -It works, but we can do better! We can extend the method to -handle multiplication by an integer. We use the {\tt isinstance} function -to test if {\tt other} is an integer and convert it to a fraction if -it is. - -\beforeverb -\begin{verbatim} -class Fraction: - ... - def __mul__(self, other): - if isinstance(other, int): - other = Fraction(other) - return Fraction(self.numerator * other.numerator, - self.denominator * other.denominator) -\end{verbatim} -\afterverb -% -Multiplying fractions and integers now works, but only if the fraction -is the left operand: - -\beforeverb -\begin{verbatim} ->>> print Fraction(5,6) * 4 -20/6 ->>> print 4 * Fraction(5,6) -TypeError: __mul__ nor __rmul__ defined for these operands -\end{verbatim} -\afterverb -% -To evaluate a binary operator like multiplication, Python checks -the left operand first to see if it provides a {\tt \_\_mul\_\_} -that supports the type of the second operand. In this case, -the built-in integer operator doesn't support fractions. - -Next, Python checks the right operand to see if it provides -an {\tt \_\_rmul\_\_} method that supports the first type. In -this case, we haven't provided {\tt \_\_rmul\_\_}, so it fails. - -On the other hand, there is a simple way to provide -{\tt \_\_rmul\_\_}: - -\beforeverb -\begin{verbatim} -class Fraction: - ... - __rmul__ = __mul__ -\end{verbatim} -\afterverb -% -This assignment says that the {\tt \_\_rmul\_\_} is the same -as {\tt \_\_mul\_\_}. -Now if we evaluate {\tt 4 * Fraction(5,6)}, Python invokes -{\tt \_\_rmul\_\_} on the {\tt Fraction} object and passes 4 -as a parameter: - -\beforeverb -\begin{verbatim} ->>> print 4 * Fraction(5,6) -20/6 -\end{verbatim} -\afterverb -% -Since {\tt \_\_rmul\_\_} is the same as {\tt \_\_mul\_\_}, and -{\tt \_\_mul\_\_} can handle an integer parameter, we're all set. - - -\section{Fraction addition} -\index{addition!fraction} -\index{fraction!addition} - -Addition is more complicated than multiplication, but still not too -bad. The sum of $a/b$ and $c/d$ is the fraction -{\tt (a*d+c*b)/(b*d)}. - -Using the multiplication code as a model, we can write -{\tt \_\_add\_\_} and {\tt \_\_radd\_\_}: - -\beforeverb -\begin{verbatim} -class Fraction: - ... - def __add__(self, other): - if isinstance(other, int): - other = Fraction(other) - return Fraction(self.numerator * other.denominator + - self.denominator * other.numerator, - self.denominator * other.denominator) - - __radd__ = __add__ -\end{verbatim} -\afterverb -% -We can test these methods with {\tt Fraction}s and integers. - -\beforeverb -\begin{verbatim} ->>> print Fraction(5,6) + Fraction(5,6) -60/36 ->>> print Fraction(5,6) + 3 -23/6 ->>> print 2 + Fraction(5,6) -17/6 -\end{verbatim} -\afterverb -% -The first two examples invoke {\tt \_\_add\_\_}; the last -invokes {\tt \_\_radd\_\_}. - - -\section{Euclid's algorithm} -\index{greatest common divisor} -\index{Euclid} -\index{pseudocode} -\index{reduce} - -In the previous example, we computed the sum $5/6 + 5/6$ and got -$60/36$. That is correct, but it's not the best way to represent the -answer. To {\bf reduce} the fraction to its simplest terms, we have -to divide the numerator and denominator by their {\bf greatest common -divisor (GCD)}, which is 12. The result is $5/3$. - -In general, whenever we create a new {\tt Fraction} object, we should -reduce it by dividing the numerator and denominator by their GCD. If -the fraction is already reduced, the GCD is 1. - -Euclid of Alexandria (approx. 325--265 BCE) presented an algorithm -to find the GCD for two integers $m$ and $n$: - -\begin{quote} -If $n$ divides $m$ evenly, then $n$ is the GCD. Otherwise -the GCD is the GCD of $n$ and the remainder of $m$ divided by $n$. -\end{quote} - -This recursive definition can be expressed concisely as a function: - -\beforeverb -\begin{verbatim} -def gcd (m, n): - if m % n == 0: - return n - else: - return gcd(n, m%n) -\end{verbatim} -\afterverb -% -In the first line of the body, we use the modulus operator to -check divisibility. On the last line, we use it to compute -the remainder after division. - -Since all the operations we've written -create new {\tt Fraction}s for the result, we can reduce all results -by modifying the initialization method. - -\beforeverb -\begin{verbatim} -class Fraction: - def __init__(self, numerator, denominator=1): - g = gcd (numerator, denominator) - self.numerator = numerator / g - self.denominator = denominator / g -\end{verbatim} -\afterverb -% -Now whenever we create a {\tt Fraction}, it is reduced to its simplest -form: - -\beforeverb -\begin{verbatim} ->>> Fraction(100,-36) --25/9 -\end{verbatim} -\afterverb -% -A nice feature of {\tt gcd} is that if the fraction is -negative, the minus sign is always moved to the numerator. - - -\section{Comparing fractions} -\index{comparison!fraction} -\index{fraction!comparison} - -Suppose we have two {\tt Fraction} objects, {\tt a} and {\tt b}, and we -evaluate {\tt a == b}. The default implementation of {\tt ==} -tests for shallow equality, so it only returns true if {\tt a} -and {\tt b} are the same object. - -More likely, we want to return true if $a$ and $b$ have -the same value---that is, deep equality. - -We have to teach fractions how to compare themselves. As we saw in -Section~\ref{comparecard}, we can overload all the comparison -operators at once by supplying a {\tt \_\_cmp\_\_} method. - -By convention, the {\tt \_\_cmp\_\_} method returns a -negative number if {\tt self} is less than {\tt other}, zero -if they are the same, and a positive number if {\tt self} is greater -than {\tt other}. - -The simplest way to compare fractions is to cross-multiply. -If $a/b > c/d$, then $ad > bc$. -With that in mind, here is the code for {\tt \_\_cmp\_\_}: - -\beforeverb -\begin{verbatim} -class Fraction: - ... - def __cmp__(self, other): - diff = (self.numerator * other.denominator - - other.numerator * self.denominator) - return diff -\end{verbatim} -\afterverb -% -If {\tt self} is greater than {\tt other}, then {\tt diff} -will be positive. If {\tt other} is greater, then {\tt diff} -will be negative. If they are the same, {\tt diff} is zero. - - -\section {Taking it further} - -Of course, we are not done. We still have to implement -subtraction by overriding {\tt \_\_sub\_\_} and division -by overriding {\tt \_\_div\_\_}. - -One way to handle those operations is to implement negation -by overriding -{\tt \_\_neg\_\_} and inversion by overriding {\tt \_\_invert\_\_}. -Then we can subtract by negating the second operand and adding, -and we can divide by inverting the second operand and -multiplying. - -Next, we have to provide {\tt \_\_rsub\_\_} and {\tt \_\_rdiv\_\_}. -Unfortunately, we can't use the same trick we used for addition and -multiplication, because subtraction and division are not commutative. -We can't just set {\tt \_\_rsub\_\_} and {\tt \_\_rdiv\_\_} equal to -{\tt \_\_sub\_\_} and {\tt \_\_div\_\_}. In these operations, the -order of the operands makes a difference. - -To handle {\bf unary negation}, which is the use of the minus -sign with a single operand, we override {\tt \_\_neg\_\_}. - -\index{unary operator} -\index{negation} - -We can compute powers by overriding {\tt \_\_pow\_\_}, -but the implementation is a little tricky. If the exponent isn't -an integer, then it may not be possible to represent the result -as a {\tt Fraction}. For example, {\tt Fraction(2) ** Fraction(1,2)} -is the square root of 2, which is an irrational number (it can't -be represented as a fraction). -So it's not easy to write the most general version of {\tt \_\_pow\_\_}. - -\index{irrational} - -There is one other extension to the {\tt Fraction} class that you might -want to think about. So far, we have assumed that the numerator -and denominator are integers. - -\begin{quote} -{\em As an exercise, finish the implementation of the {\tt Fraction} -class so that it handles subtraction, division and exponentiation.} -\end{quote} - - - -\section{Glossary} - -\begin{description} - -\item[greatest common divisor (GCD):] The largest positive integer -that divides without a remainder into both the numerator and denominator -of a fraction. - -\item[reduce:] To change a fraction into an equivalent form with a -GCD of 1. - -\item[unary negation:] The operation that computes an additive -inverse, usually denoted with a leading minus sign. Called -``unary'' by contrast with the binary minus operation, which is -subtraction. - - -\index{greatest common divisor} -\index{reduce} -\index{unary negation} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/app03.tex b/sciphi/data/stock_raw/learning_with_python/app03.tex deleted file mode 100644 index 290ba98..0000000 --- a/sciphi/data/stock_raw/learning_with_python/app03.tex +++ /dev/null @@ -1,654 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% -\chapter{Complete Python Listings} - - -\section{Point class} - -\beforeverb -\begin{verbatim} -class Point: - def __init__(self, x=0, y=0): - self.x = x - self.y = y - - def __str__(self): - return '(' + str(self.x) + ', ' + str(self.y) + ')' - - def __add__(self, other): - return Point(self.x + other.x, self.y + other.y) - - def __sub__(self, other): - return Point(self.x - other.x, self.y - other.y) - - def __mul__(self, other): - return self.x * other.x + self.y * other.y - - def __rmul__(self, other): - return Point(other * self.x, other * self.y) - - def reverse(self): - self.x, self.y = self.y, self.x - - def frontAndBack(front): - from copy import copy - back = copy(front) - back.reverse() - print str(front) + str(back) -\end{verbatim} -\afterverb - - -\section{Time class} - -\beforeverb -\begin{verbatim} -class Time: - def __init__(self, hours=0, minutes=0, seconds=0): - self.hours = hours - self.minutes = minutes - self.seconds = seconds - - def __str__(self): - return str(self.hours) + ":" + str(self.minutes) + ":" + str(self.seconds) - - def convertToSeconds(self): - minutes = self.hours * 60 + self.minutes - seconds = self.minutes * 60 + self.seconds - return seconds - - def increment(self, secs): - secs = secs + self.seconds - - self.hours = self.hours + secs/3600 - secs = secs % 3600 - self.minutes = self.minutes + secs/60 - secs = secs % 60 - self.seconds = secs - - def makeTime(secs): - time = Time() - time.hours = secs/3600 - secs = secs - time.hours * 3600 - time.minutes = secs/60 - secs = secs - time.minutes * 60 - time.seconds = secs - return time -\end{verbatim} -\afterverb - - -\section {Cards, decks and games} - -\beforeverb -\begin{verbatim} -import random - -class Card: - suitList = ["Clubs", "Diamonds", "Hearts", "Spades"] - rankList = [ "narf", "Ace", "2", "3", "4", "5", "6", "7", "8", "9", "10", - "Jack", "Queen", "King"] - - def __init__(self, suit=0, rank=0): - self.suit = suit - self.rank = rank - - def __str__(self): - return self.rankList[self.rank] + " of " + self.suitList[self.suit] - - def __cmp__(self, other): - # check the suits - if self.suit > other.suit: return 1 - if self.suit < other.suit: return -1 - # suits are the same... check ranks - if self.rank > other.rank: return 1 - if self.rank < other.rank: return -1 - # ranks are the same... it's a tie - return 0 - -class Deck: - def __init__(self): - self.cards = [] - for suit in range(4): - for rank in range(1, 14): - self.cards.append(Card(suit, rank)) - - def printDeck(self): - for card in self.cards: - print card - - def __str__(self): - s = "" - for i in range(len(self.cards)): - s = s + " "*i + str(self.cards[i]) + "\n" - return s - - def shuffle(self): - import random - nCards = len(self.cards) - for i in range(nCards): - j = random.randrange(i, nCards) - [self.cards[i], self.cards[j]] = [self.cards[j], self.cards[i]] - - def removeCard(self, card): - if card in self.cards: - self.cards.remove(card) - return 1 - else: return 0 - - def popCard(self): - return self.cards.pop() - - def isEmpty(self): - return (len(self.cards) == 0) - - def deal(self, hands, nCards=999): - nHands = len(hands) - for i in range(nCards): - if self.isEmpty(): break # break if out of cards - card = self.popCard() # take the top card - hand = hands[i % nHands] # whose turn is next? - hand.addCard(card) # add the card to the hand - -class Hand(Deck): - def __init__(self, name=""): - self.cards = [] - self.name = name - - def addCard(self,card) : - self.cards.append(card) - - def __str__(self): - s = "Hand " + self.name - if self.isEmpty(): - s = s + " is empty\n" - else: - s = s + " contains\n" - return s + Deck.__str__(self) - -class CardGame: - def __init__(self): - self.deck = Deck() - self.deck.shuffle() - -class OldMaidHand(Hand): - def removeMatches(self): - count = 0 - originalCards = self.cards[:] - for card in originalCards: - match = Card(3 - card.suit, card.rank) - if match in self.cards: - self.cards.remove(card) - self.cards.remove(match) - print "Hand %s: %s matches %s" % (self.name,card,match) - count = count+1 - return count - -class OldMaidGame(CardGame): - def play(self, names): - # remove Queen of Clubs - self.deck.removeCard(Card(0,12)) - - # make hands base on names passed - self.hands = [] - for name in names : self.hands.append(OldMaidHand(name)) - - # deal the cards - self.deck.deal(self.hands) - print "---------- Cards have been dealt" - self.printHands() - - # Remove initial matches - matches = self.removeMatches() - print "---------- Matches discarded, play begins" - self.printHands() - - # Play until all 50 cards matched - turn = 0 - numHands = len(self.hands) - while matches < 25: - matches = matches + self.playOneTurn(turn) - turn = (turn + 1) % numHands - - print "---------- Game is Over" - self.printHands () - - def removeMatches(self): - count = 0 - for hand in self.hands: - count = count + hand.removeMatches() - return count - - def playOneTurn(self, i): - if self.hands[i].isEmpty(): - return 0 - neighbor = self.findNeighbor(i) - pickedCard = self.hands[neighbor].popCard() - self.hands[i].addCard(pickedCard) - print "Hand", self.hands[i].name, "picked", pickedCard - count = self.hands[i].removeMatches() - self.hands[i].shuffle() - return count - - def findNeighbor(self, i): - numHands = len(self.hands) - for next in range(1,numHands): - neighbor = (i + next) % numHands - if not self.hands[neighbor].isEmpty(): - return neighbor - - def printHands(self) : - for hand in self.hands : - print hand - -\end{verbatim} -\afterverb - - -\section{Linked Lists} - -\beforeverb -\begin{verbatim} - def printList(node) : - while node : - print node, - node = node.next - print - - def printBackward(list) : - if list == None : return - head = list - tail = list.next - printBackward(tail) - print head, - - def printBackwardNicely(list) : - print "(", - if list != None : - head = list - tail = list.next - printBackward(tail) - print head, - print ")", - - def removeSecond(list) : - if list == None : return - first = list - second = list.next - first.next = second.next - second.next = None - return second - -class Node : - - def __init__(self, cargo=None) : - self.cargo = cargo - self.next = None - - def __str__(self) : - return str(self.cargo) - - def printBackward(self) : - if self.next != None : - tail = self.next - tail.printBackward() - print self.cargo, - -class LinkedList : - def __init__(self) : - self.length = 0 - self.head = None - - def printBackward(self) : - print "(", - if self.head != None : - self.head.printBackward() - print ")", - - def addFirst(self, cargo) : - node = Node(cargo) - node.next = self.head - self.head = node - self.length = self.length + 1 -\end{verbatim} -\afterverb - -\section{Stack class} - -\beforeverb -\begin{verbatim} - -class Stack: # Python list implementation - def __init__(self): - self.items = [] - - def push(self, item): - self.items.append(item) - - def pop(self): - return self.items.pop() - - def isEmpty(self): - return(self.items == []) - - def evalPostfix(expr) : - import re - expr = re.split("([^0-9])", expr) - stack = Stack() - for token in expr : - if token == '' or token == ' ': - continue - if token == '+' : - sum = stack.pop() + stack.pop() - stack.push(sum) - elif token == '*' : - product = stack.pop() * stack.pop() - stack.push(product) - else : - stack.push(int(token)) - return stack.pop() - -\end{verbatim} -\afterverb - -\section {Queues and priority queues} -\beforeverb -\begin{verbatim} - -class Queue : - def __init__(self) : - self.length = 0 - self.head = None - - def empty(self) : - return (self.length == 0) - - def insert(self, cargo) : - node = Node(cargo) - node.next = None - if self.head == None : - # If list is empty our new node is first - self.head = node - else : - # Find the last node in the list - last = self.head - while last.next : last = last.next - # Append our new node - last.next = node - self.length = self.length + 1 - - def remove(self) : - cargo = self.head.cargo - self.head = self.head.next - self.length = self.length - 1 - return cargo - -class ImprovedQueue : - def __init__(self) : - self.length = 0 - self.head = None - self.last = None - - def empty(self) : - return (self.length == 0) - - def insert(self, cargo) : - node = Node(cargo) - node.next = None - if self.length == 0 : - # If list is empty our new node is first - self.head = self.last = node - else : - # Find the last node in the list - last = self.last - # Append our new node - last.next = node - self.last = node - self.length = self.length + 1 - - def remove(self) : - cargo = self.head.cargo - self.head = self.head.next - self.length = self.length - 1 - if self.length == 0 : self.last = None - return cargo - -class PriorityQueue : - def __init__(self) : - self.items = [] - - def empty(self) : - return self.items == [] - - def insert(self, item) : - self.items.append(item) - - def remove(self) : - maxi = 0 - for i in range(1,len(self.items)) : - if self.items[i] > self.items[maxi] : - maxi = i - item = self.items[maxi] - self.items[maxi:maxi+1] = [] - return item - -class Golfer : - def __init__(self, name, score) : - self.name = name - self.score= score - - def __str__(self) : - return "%-15s: %d" % (self.name, self.score) - - def __cmp__(self, other) : - if self.score < other.score : return 1 # less is more - if self.score > other.score : return -1 - return 0 - -\end{verbatim} -\afterverb - -\section{Trees} -\beforeverb -\begin{verbatim} -class Tree : - def __init__(self, cargo, left=None, right=None) : - self.cargo = cargo - self.left = left - self.right = right - - def __str__(self) : - return str(self.cargo) - - def getCargo(self): return self.cargo - def getLeft (self): return self.left - def getRight(self): return self.right - - def setCargo(self, cargo): self.cargo = cargo - def setLeft (self, left): self.left = left - def setRight(self, right): self.right = right - -def total(tree) : - if tree == None : return 0 - return total(tree.left) + total(tree.right) + tree.cargo - -def printTree(tree) : - if tree == None : return - print tree.cargo, - printTree(tree.left) - printTree(tree.right) - -def printTreePostorder(tree) : - if tree == None : return - printTreePostorder(tree.left) - printTreePostorder(tree.right) - print tree.cargo, - -def printTreeInorder(tree) : - if tree == None : return - printTreeInorder(tree.left) - print tree.cargo, - printTreeInorder(tree.right) - -def printTreeIndented(tree, level=0) : - if tree == None : return - printTreeIndented(tree.right, level+1) - print ' '*level + str(tree.cargo) - printTreeIndented(tree.left, level+1) -\end{verbatim} - -\section{Expression trees} - -\begin{verbatim} -def getToken(tokenList, expected) : - if tokenList[0] == expected : - tokenList[0:1] = [] # remove the token - return 1 - else : - return 0 - -def getProduct(tokenList) : - a = getNumber(tokenList) - if getToken(tokenList, '*') : - b = getProduct(tokenList) - return Tree('*', a, b) - else : - return a - -def getSum(tokenList) : - a = getProduct(tokenList) - if getToken(tokenList, '+') : - b = getSum(tokenList) - return Tree('+', a, b) - else : - return a - -def getNumber(tokenList) : - if getToken(tokenList, '(') : - x = getSum(tokenList) # get subexpression - getToken(tokenList, ')') # eat the closing parenthesis - return x - else : - x = tokenList[0] - if not isinstance(x, int) : return None - tokenList[0:1] = [] # remove the token - return Tree(x, None, None) # return a leaf with the number -\end{verbatim} - - -\section{Guess the animal} - -\begin{verbatim} -def animal() : - # start with a singleton - root = Tree("bird") - - # loop until the user quits - while 1 : - print - if not yes("Are you thinking of an animal? ") : break - - # walk the tree - tree = root - while tree.getLeft() != None : - prompt = tree.getCargo() + "? " - if yes(prompt): - tree = tree.getRight() - else: - tree = tree.getLeft() - - # make a guess - guess = tree.getCargo() - prompt = "Is it a " + guess + "? " - if yes(prompt) : - print "I rule!" - continue - - # get new information - prompt = "What is the animal\'s name? " - animal = raw_input(prompt) - prompt = "What question would distinguish a %s from a %s? " - question = raw_input(prompt % (animal,guess)) - - # add new information to the tree - tree.setCargo(question) - prompt = "If the animal were %s the answer would be? " - if yes(prompt % animal) : - tree.setLeft(Tree(guess)) - tree.setRight(Tree(animal)) - else : - tree.setLeft(Tree(animal)) - tree.setRight(Tree(guess)) - - -def yes(ques) : - from string import lower - ans = lower(raw_input(ques)) - return (ans[0:1] == 'y') -\end{verbatim} - -\section{{\tt Fraction} class} - -\beforeverb -\begin{verbatim} -class Fraction: - def __init__(self, numerator, denominator=1): - g = gcd(numerator, denominator) - self.numerator = numerator / g - self.denominator = denominator / g - - def __mul__(self, object): - if isinstance(object, int): - object = Fraction(object) - return Fraction(self.numerator*object.numerator, - self.denominator*object.denominator) - - __rmul__ = __mul__ - - def __add__(self, object): - if isinstance(object, int): - object = Fraction(object) - - return Fraction(self.numerator*object.denominator + - self.denominator*object.numerator, - self.denominator * object.denominator) - - __radd__ = __add__ - - def __cmp__(self, object): - if isinstance(object, int): - object = Fraction(object) - - diff = (self.numerator*object.denominator - - object.numerator*self.denominator) - return diff - - def __repr__(self): - return self.__str__() - - def __str__(self): - return "%d/%d" % (self.numerator, self.denominator) - -def gcd(m,n): - "return the greatest common divisor of 2 integer arguments" - if m % n == 0: - return n - else: - return gcd(n,m%n) - -\end{verbatim} -\afterverb diff --git a/sciphi/data/stock_raw/learning_with_python/app04.tex b/sciphi/data/stock_raw/learning_with_python/app04.tex deleted file mode 100644 index e3a8754..0000000 --- a/sciphi/data/stock_raw/learning_with_python/app04.tex +++ /dev/null @@ -1,201 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% - -\chapter{Recommendations for further reading} - -So where do you go from here? There are many directions to pursue, -extending your knowledge of Python specifically and -computer science in general. - -The examples in this book have been deliberately simple, but they -may not have shown off Python's most exciting capabilities. -Here is a sampling of extensions to Python and suggestions for -projects that use them. - -\begin{itemize} - -\item GUI (graphical user interface) programming lets your -program use a windowing environment to interact with the user and -display graphics. - -The oldest graphics package for Python -is Tkinter, which is based on Jon Ousterhout's Tcl and Tk scripting -languages. Tkinter comes bundled with the Python distribution. - -Another -popular platform is wxPython, which is essentially a Python veneer over -wxWindows, a C++ package which in turn implements windows using native -interfaces on Windows and Unix (including Linux) platforms. The -windows and controls under wxPython tend to have a more native look -and feel than those of Tkinter and are somewhat simpler to -program. - -Any type of GUI programming will lead you into event-driven -programming, where the user and not the programmer determines the flow of -execution. This style of programming takes some getting used to, -sometimes forcing you to rethink the whole structure of a program. - -\item Web programming integrates Python with the Internet. -For example, you can build web client programs that open and read -a remote web page (almost) as easily as you can open a file on -disk. There are also Python modules that let you access remote files -via ftp, and modules to let you send and receive email. Python is also -widely used for web server programs to handle input forms. - -\item Databases are a bit like super files where data is stored in -predefined schemas, and relationships between data items let you access -the data in various ways. Python has several modules to enable -users to connect to various database engines, both Open Source and -commercial. - -\item Thread programming lets you run several threads of execution -within a single program. If you have had the experience of using a -web browser to scroll the beginning of a page while the browser -continues to load the rest of it, then you have a feel for what -threads can do. - -\item When speed is paramount Python extensions may be written in a -compiled language like C or C++. Such extensions -form the base of many of the modules in the Python -library. The mechanics of linking functions and data is somewhat -complex. SWIG (Simplified Wrapper and Interface Generator) is a tool to -make the process much simpler. - -\end{itemize} - - -\section{Python-related web sites and books} - -Here are the authors' recommendations for Python resources -on the web: - -\begin{itemize} - -\item The Python home page at {\tt www.python.org} is the place to start -your search for any Python related material. You will find -help, documentation, links to other sites and SIG (Special Interest -Group) mailing lists that you can join. - -\item The Open Book Project {\tt www.ibiblio.com/obp} contains not -only this book online but also similar books for Java and C++ by Allen -Downey. In addition there are {\em -Lessons in Electric Circuits} by Tony R. Kuphaldt, -{\em Getting down -with ...}, a set of tutorials on a range of computer science topics, -written and edited by high school students, {\em Python for Fun}, -a set of case studies in Python by Chris Meyers, and {\em The Linux -Cookbook} by Michael Stultz, with 300 pages of tips and techniques. - -\item Finally if you go to Google and use the search -string ``python -snake -monty'' you will get about 750,000 hits. - -\end{itemize} - -\adjustpage{-1} -\pagebreak - -And here are some books that contain more material on the -Python language: - -\begin{itemize} - -\item {\em Core Python Programming} by Wesley Chun is a large book -at about 750 pages. The first part of the book covers the basic Python -language features. The second part provides an easy-paced introduction -to more advanced topics including many of those mentioned above. - -\item {\em Python Essential Reference} by David M. Beazley is a small -book, but it is packed with information both on the -language itself and the modules in the standard library. It is also -very well indexed. - -\item {\em Python Pocket Reference} by Mark Lutz really does fit in -your pocket. Although not as extensive as {\em Python Essential -Reference} it is a handy reference for the most commonly used functions -and modules. Mark Lutz is also the author of {\em Programming Python}, -one of the earliest (and largest) books on Python and not aimed at the -beginning programmer. His later book {\em Learning Python} is smaller -and more accessible. - -\item {\em Python Programming on Win32} by Mark Hammond and Andy -Robinson is a ``must have'' for anyone seriously using Python to develop -Windows applications. Among other things it covers the integration of -Python and COM, builds a small application with wxPython, and even -uses Python to script windows applications such as Word and Excel. - -\end{itemize} - -\section{Recommended general computer science books} - -The following suggestions for further reading include many of the -authors' favorite books. They deal with good programming practices -and computer science in general. - -\begin{itemize} - -\item {\em The Practice of Programming} by Kernighan and Pike covers not -only the design and coding of algorithms and data structures, but also -debugging, testing and improving the performance of programs. The -examples are mostly C++ and Java, with none in Python. - -\item {\em The Elements of Java Style} edited by Al Vermeulen is another -small book that discusses some of the finer points of good -programming, such as good use of naming conventions, comments, and -even whitespace and indentation (somewhat of a nonissue in -Python). The book also covers programming by contract, using -assertions to catch errors by testing preconditions and -postconditions, and proper programming with threads and their -synchronization. - -\item {\em Programming Pearls} by Jon Bentley is a classic book. -It consists of case studies that originally appeared in the author's -column in the {\em Communications of the ACM}. The studies deal with -tradeoffs in programming and why it is often an especially bad idea to -run with your first idea for a program. The book is a bit older than -those above (1986), so the examples are in older -languages. There are lots of problems to solve, some with solutions -and others with hints. This book was very popular and was followed by -a second volume. - -\item {\em The New Turing Omnibus} by A.K Dewdney provides a gentle -introduction to 66 topics of computer science ranging from parallel -computing to computer viruses, from cat scans to genetic -algorithms. All of the topics are short and entertaining. An earlier -book by Dewdney {\em The Armchair Universe} is a collection from his -column {\em Computer Recreations} in {\em Scientific American}. Both -books are a rich source of ideas for projects. - -\item {\em Turtles, Termites and Traffic Jams} by Mitchel Resnick -is about the power of decentralization and how complex behavior can -arise from coordinated simple activity of a multitude of agents. It -introduces the language StarLogo, which allows the user to write -programs for the agents. Running the program -demonstrates complex aggregate behavior, which is often -counterintuitive. Many of the programs in the book were developed by -students in middle school and high school. Similar programs could be -written in Python using simple graphics and threads. - -\item {\em G\"{o}del, Escher and Bach} by Douglas Hofstadter. Put simply, -if you found magic in recursion you will also find it in this -bestselling book. One of Hofstadter's themes involves ``strange loops'' -where patterns evolve and ascend until they meet themselves again. It -is Hofstadter's contention that such ``strange loops'' are an essential -part of what separates the animate from the inanimate. He -demonstrates such patterns in the music of Bach, the pictures of -Escher and G\"{o}del's incompleteness theorem. - -\end{itemize} diff --git a/sciphi/data/stock_raw/learning_with_python/chap01.tex b/sciphi/data/stock_raw/learning_with_python/chap01.tex deleted file mode 100644 index 53c94ce..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap01.tex +++ /dev/null @@ -1,569 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{The way of the program} - -The goal of this book is to teach you to think like a -computer scientist. This way of thinking combines some of the best features -of mathematics, engineering, and natural science. Like mathematicians, -computer scientists use formal languages to denote ideas (specifically -computations). Like engineers, they design things, assembling components -into systems and evaluating tradeoffs among alternatives. Like scientists, -they observe the behavior of complex systems, form hypotheses, and test -predictions. - -The single most important skill for a computer scientist is {\bf -problem solving}. Problem solving means the ability to formulate -problems, think creatively about solutions, and express a solution clearly -and accurately. As it turns out, the process of learning to program is an -excellent opportunity to practice problem-solving skills. That's why -this chapter is called, ``The way of the program.'' - -On one level, you will be learning to program, a useful -skill by itself. On another level, you will use programming as a means to -an end. As we go along, that end will become clearer. - -\section{The Python programming language} -\index{programming language} -\index{language!programming} - -The programming language you will be learning is Python. Python is -an example of a {\bf high-level language}; other high-level languages -you might have heard of are C, C++, Perl, and Java. - -As you might infer from the name ``high-level language,'' there are -also {\bf low-level languages}, sometimes referred to as ``machine -languages'' or ``assembly languages.'' Loosely speaking, computers -can only execute programs written in low-level languages. Thus, -programs written in a high-level language have to be processed before -they can run. This extra processing takes some time, which is a small -disadvantage of high-level languages. - -\index{portable} -\index{high-level language} -\index{low-level language} -\index{language!high-level} -\index{language!low-level} - -But the advantages are enormous. First, it is much easier to program -in a high-level language. Programs written in a high-level language -take less time to write, they are shorter and easier to read, and they -are more likely to be correct. Second, high-level languages are {\bf -portable}, meaning that they can run on different kinds of computers -with few or no modifications. Low-level programs can run on only one -kind of computer and have to be rewritten to run on another. - -Due to these advantages, almost all programs are written in high-level -languages. Low-level languages are used only for a few specialized -applications. - -\index{compile} -\index{interpret} - -Two kinds of programs process high-level languages -into low-level languages: {\bf interpreters} and {\bf compilers}. -An interpreter reads a high-level program and executes it, meaning that it -does what the program says. It processes the program a little at a time, -alternately reading lines and performing computations. - -\beforefig -\centerline{\psfig{figure=illustrations/interpret.eps,height=0.77in}} -\afterfig - -A compiler reads the program and translates it completely before the -program starts running. In this case, the high-level program is -called the {\bf source code}, and the translated program is called the -{\bf object code} or the {\bf executable}. Once a program is -compiled, you can execute it repeatedly without further translation. - -\beforefig -\centerline{\psfig{figure=illustrations/compile.eps,height=0.77in}} -\afterfig - -Python is considered an interpreted language because Python -programs are executed by an interpreter. There are two ways to -use the interpreter: command-line mode and script mode. In -command-line mode, you type Python programs and the interpreter -prints the result: - -\adjustpage{-2} -\pagebreak -\beforeverb -\begin{verbatim} -$ python -Python 2.4.1 (#1, Apr 29 2005, 00:28:56) -Type "help", "copyright", "credits" or "license" for more information. ->>> print 1 + 1 -2 -\end{verbatim} -\afterverb -% -The first line of this example is the command that starts the -Python interpreter. The next two lines are messages from the -interpreter. The third line starts with {\tt >>>}, which is the -prompt the interpreter uses to indicate that it is ready. We typed -{\tt print 1 + 1}, and the interpreter replied {\tt 2}. - -Alternatively, you can write a program in a file and use the -interpreter to execute the contents of the file. Such a file is -called a {\bf script}. For example, we used a text editor to -create a file named {\tt latoya.py} with the following contents: - - -\beforeverb -\begin{verbatim} -print 1 + 1 -\end{verbatim} -\afterverb -% -By convention, files that contain Python programs have names that -end with {\tt .py}. - -To execute the program, we have to tell the interpreter the name of -the script: - - -\beforeverb -\begin{verbatim} -$ python latoya.py -2 -\end{verbatim} -\afterverb -% -In other development environments, the details of executing programs -may differ. Also, most programs are more interesting than this one. - -Most of the examples in this book are executed on the command line. -Working on the command line is convenient for program development and -testing, because you can type programs and execute them -immediately. Once you have a working program, you should store -it in a script so you can execute or modify it in the future. - - -\section{What is a program?} - -A {\bf program} is a sequence of instructions that specifies how to -perform a computation. The computation might be something -mathematical, such as solving a system of equations or finding the -roots of a polynomial, but it can also be a symbolic computation, such -as searching and replacing text in a document or (strangely enough) -compiling a program. - -The details look different in -different languages, but a few basic instructions -appear in just about every language: - -\begin{description} - -\item[input:] Get data from the keyboard, a file, or some -other device. - -\item[output:] Display data on the screen or send data to a -file or other device. - -\item[math:] Perform basic mathematical operations like addition and -multiplication. - -\item[conditional execution:] Check for certain conditions and -execute the appropriate sequence of statements. - -\item[repetition:] Perform some action repeatedly, usually with -some variation. - -\end{description} - -Believe it or not, that's pretty much all there is to it. Every -program you've ever used, no matter how complicated, is made up of -instructions that look more or less like these. Thus, we can -describe programming as the process of breaking a large, complex task -into smaller and smaller subtasks until the subtasks are -simple enough to be performed with one of these basic instructions. - -That may be a little vague, but we will come back to this topic later -when we talk about {\bf algorithms}. - -\section{What is debugging?} -\index{debugging} -\index{bug} - -Programming is a complex process, and because it is done by human beings, -it often leads to errors. For whimsical reasons, programming errors are -called {\bf bugs} and the process of tracking them down and correcting them -is called {\bf debugging}. - -Three kinds of errors can occur in a program: syntax errors, runtime -errors, and semantic errors. It is useful -to distinguish between them in order to track them down more quickly. - -\subsection{Syntax errors} -\index{syntax error} -\index{error!syntax} - -Python can only execute a program if the program is syntactically -correct; otherwise, the process fails and returns an error message. -{\bf Syntax} refers to the structure of a program and the rules about -that structure. \index{syntax} For example, in English, a sentence must -begin with a capital letter and end with a period. this sentence contains -a {\bf syntax error}. So does this one - -For most readers, a few syntax errors are not a significant problem, -which is why we can read the poetry of e. e. cummings without spewing error -messages. Python is not so forgiving. If there is a single syntax error -anywhere in your program, Python will print an error message and quit, -and you will not be able to run your program. During the first few weeks -of your programming career, you will probably spend a lot of time tracking -down syntax errors. As you gain experience, though, you will make fewer -errors and find them faster. - -\subsection{Runtime errors} -\label{runtime} -\index{runtime error} -\index{error!runtime} -\index{exception} -\index{safe language} -\index{language!safe} - -The second type of error is a runtime error, so called because the -error does not appear until you run the program. These errors are also -called {\bf exceptions} because they usually indicate that something -exceptional (and bad) has happened. - -Runtime errors are rare in the simple programs you will see in the -first few chapters, so it might be a while before you encounter one. - - -\subsection{Semantic errors} -\index{semantics} -\index{semantic error} -\index{error!semantic} - -The third type of error is the {\bf semantic error}. If there is a -semantic error in your program, it will run successfully, in the sense -that the computer will not generate any error messages, but it will -not do the right thing. It will do something else. Specifically, it -will do what you told it to do. - -The problem is that the program you wrote is not the program you -wanted to write. The meaning of the program (its semantics) is wrong. -Identifying semantic errors can be tricky because it requires you to work -backward by looking at the output of the program and trying to figure -out what it is doing. - -\subsection{Experimental debugging} - -One of the most important skills you will acquire is -debugging. Although it can be frustrating, debugging is one of the -most intellectually rich, challenging, and interesting parts of programming. - -In some ways, debugging is like detective work. You are confronted -with clues, and you have to infer the processes and events that led -to the results you see. - -Debugging is also like an experimental science. Once you have an idea -what is going wrong, you modify your program and try again. If your -hypothesis was correct, then you can predict the result of the -modification, and you take a step closer to a working program. If -your hypothesis was wrong, you have to come up with a new one. As -Sherlock Holmes pointed out, ``When you have eliminated the -impossible, whatever remains, however improbable, must be the truth.'' -(A. Conan Doyle, {\em The Sign of Four}) - -\index{Holmes, Sherlock} -\index{Doyle, Arthur Conan} - -For some people, programming and debugging are the -same thing. That is, programming is the process of gradually -debugging a program until it does what you want. The idea -is that you should start with a program that -does {\em something} and make small modifications, debugging -them as you go, so that you always have a working program. - -For example, Linux is an operating system that contains thousands of -lines of code, but it started out as a simple program Linus Torvalds -used to explore the Intel 80386 chip. According to Larry Greenfield, -``One of Linus's earlier projects was a program that would switch -between printing AAAA and BBBB. This later evolved to Linux.'' -({\em The Linux Users' Guide} Beta Version 1) - -\index{Linux} - -Later chapters will make more suggestions about debugging and other -programming practices. - -\section{Formal and natural languages} -\index{formal language} -\index{natural language} -\index{language!formal} -\index{language!natural} - -{\bf Natural languages} are the languages that people speak, -such as English, Spanish, and French. They were not designed -by people (although people try to impose some order on them); -they evolved naturally. - -{\bf Formal languages} are languages that are designed by people for -specific applications. For example, the notation that mathematicians -use is a formal language that is particularly good at denoting -relationships among numbers and symbols. Chemists use a formal -language to represent the chemical structure of molecules. And -most importantly: - -\begin{quote} -{\bf Programming languages are formal languages that have been -designed to express computations.} -\end{quote} - -Formal languages tend to have strict rules about syntax. For example, -$3+3=6$ is a syntactically correct mathematical statement, but -{\tt 3=+6\$} is not. $H_2O$ is a syntactically correct chemical name, -but $_2Zz$ is not. - -Syntax rules come in two flavors, pertaining to {\bf tokens} and structure. -Tokens are the basic elements of the language, such as words, numbers, -and chemical elements. One of the problems with {\tt 3=+6\$} is that -{\tt \$} is not a legal token in mathematics (at least as far as we -know). Similarly, $_2Zz$ is not legal because there is no element with -the abbreviation $Zz$. - -The second type of syntax error pertains to the structure of a -statement---that is, the way the tokens are arranged. The statement -{\tt 3=+6\$} is structurally illegal because you can't place a plus -sign immediately after an equal sign. Similarly, molecular formulas -have to have subscripts after the element name, not before. - -\begin{quote} -{\em As an exercise, create what appears to be a well-structured English -sentence with unrecognizable tokens in it. Then write another sentence -with all valid tokens but with invalid structure.} -\end{quote} - -When you read a sentence in English or a statement in a formal -language, you have to figure out what the structure of the sentence is -(although in a natural language you do this subconsciously). This -process is called {\bf parsing}. - -\index{parse} - -For example, when you hear the sentence, ``The other shoe fell,'' you -understand that ``the other shoe'' is the subject and ``fell'' is the -predicate. Once you have parsed a sentence, you can figure out what it -means, or the semantics of the sentence. Assuming that you know -what a shoe is and what it means to fall, you will understand the -general implication of this sentence. - -Although formal and natural languages have many features in -common---tokens, structure, syntax, and semantics---there are many -differences: - -\index{ambiguity} -\index{redundancy} -\index{literalness} - -\begin{description} - -\item[ambiguity:] Natural languages are full of ambiguity, which -people deal with by using contextual clues and other information. -Formal languages are designed to be nearly or completely unambiguous, -which means that any statement has exactly one meaning, -regardless of context. - -\item[redundancy:] In order to make up for ambiguity and reduce -misunderstandings, natural languages employ lots of -redundancy. As a result, they are often verbose. Formal languages -are less redundant and more concise. - -\item[literalness:] Natural languages are full of idiom and -metaphor. If I say, ``The other shoe fell,'' there is probably -no shoe and nothing falling. Formal languages mean -exactly what they say. - -\end{description} - -People who grow up speaking a natural language---everyone---often have a -hard time adjusting to formal languages. In some ways, the difference -between formal and natural language is like the difference between -poetry and prose, but more so: - -\index{poetry} -\index{prose} - -\begin{description} - -\item[Poetry:] Words are used for their sounds as well as for -their meaning, and the whole poem together creates an effect or -emotional response. Ambiguity is not only common but often -deliberate. - -\item[Prose:] The literal meaning of words is more important, -and the structure contributes more meaning. Prose is more amenable to -analysis than poetry but still often ambiguous. - -\item[Programs:] The meaning of a computer program is unambiguous -and literal, and can be understood entirely by analysis of the -tokens and structure. - -\end{description} - -Here are some suggestions for reading programs (and other formal -languages). First, remember that formal languages are much more dense -than natural languages, so it takes longer to read them. Also, the -structure is very important, so it is usually not a good idea to read -from top to bottom, left to right. Instead, learn to parse the -program in your head, identifying the tokens and interpreting the -structure. Finally, the details matter. Little things -like spelling errors and bad punctuation, which you can get away -with in natural languages, can make a big difference in a formal -language. - -\section{The first program} -\label{hello} -\index{hello world} - -Traditionally, the first program written in a new language -is called ``Hello, World!'' because all it does is display the -words, ``Hello, World!'' In Python, it looks like this: - - -\beforeverb -\begin{verbatim} -print "Hello, World!" -\end{verbatim} -\afterverb -% -This is an example of a {\bf print statement}, which doesn't -actually print anything on paper. It displays a value on the -screen. In this case, the result is the words - - -\beforeverb -\begin{verbatim} -Hello, World! -\end{verbatim} -\afterverb -% -The quotation marks in the program mark the beginning and end -of the value; they don't appear in the result. - -\index{print statement} -\index{statement!print} - -Some people judge the quality of a programming language by the -simplicity of the ``Hello, World!'' program. By this standard, Python -does about as well as possible. - -\section{Glossary} - -\begin{description} - -\item[problem solving:] The process of formulating a problem, finding -a solution, and expressing the solution. - -\item[high-level language:] A programming language like Python that -is designed to be easy for humans to read and write. - -\item[low-level language:] A programming language that is designed -to be easy for a computer to execute; also called ``machine language'' or -``assembly language.'' - -\item[portability:] A property of a program that can run on more -than one kind of computer. - -\item[interpret:] To execute a program in a high-level language -by translating it one line at a time. - -\item[compile:] To translate a program written in a high-level language -into a low-level language all at once, in preparation for later -execution. - -\item[source code:] A program in a high-level language before -being compiled. - -\item[object code:] The output of the compiler after it translates -the program. - -\item[executable:] Another name for object code that is ready -to be executed. - -\item[script:] A program stored in a file (usually one that will be -interpreted). - -\item[program:] A set of instructions that specifies a computation. - -\item[algorithm:] A general process for solving a category of -problems. - -\item[bug:] An error in a program. - -\item[debugging:] The process of finding and removing any of the -three kinds of programming errors. - -\item[syntax:] The structure of a program. - -\item[syntax error:] An error in a program that makes it impossible -to parse (and therefore impossible to interpret). - -\item[runtime error:] An error that does not occur until the program -has started to execute but that prevents the program from continuing. - -\item[exception:] Another name for a runtime error. - -\item[semantic error:] An error in a program that makes it do something -other than what the programmer intended. - -\item[semantics:] The meaning of a program. - -\item[natural language:] Any one of the languages that people speak that -evolved naturally. - -\item[formal language:] Any one of the languages that people have designed -for specific purposes, such as representing mathematical ideas or -computer programs; all programming languages are formal languages. - -\item[token:] One of the basic elements of the syntactic structure of -a program, analogous to a word in a natural language. - -\item[parse:] To examine a program and analyze the syntactic structure. - -\item[print statement:] An instruction that causes the Python -interpreter to display a value on the screen. - -\index{program} -\index{problem-solving} -\index{high-level language} -\index{low-level language} -\index{portability} -\index{interpret} -\index{compile} -\index{source code} -\index{object code} -\index{executable} -\index{algorithm} -\index{bug} -\index{debugging} -\index{syntax} -\index{semantics} -\index{syntax error} -\index{runtime error} -\index{exception} -\index{semantic error} -\index{formal language} -\index{natural language} -\index{parse} -\index{token} -\index{script} -\index{print statement} -\index{statement!print} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap02.tex b/sciphi/data/stock_raw/learning_with_python/chap02.tex deleted file mode 100644 index e3c329b..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap02.tex +++ /dev/null @@ -1,666 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{Variables, expressions and statements} - -\section{Values and types} -\index{value} -\index{type} -\index{string} - -A {\bf value} is one of the fundamental things---like a letter or a -number---that a program manipulates. The values we have seen so far -are {\tt 2} (the result when we added {\tt 1 + 1}), and -{\tt 'Hello, World!'}. - -These values belong to different {\bf types}: -{\tt 2} is an integer, and {\tt 'Hello, World!'} is a {\bf string}, -so-called because it contains a ``string'' of letters. -You (and the interpreter) can identify -strings because they are enclosed in quotation marks. - -The print statement also works for integers. - -\beforeverb -\begin{verbatim} ->>> print 4 -4 -\end{verbatim} -\afterverb -% -If you are not sure what type a value has, -the interpreter can tell you. - -\beforeverb -\begin{verbatim} ->>> type('Hello, World!') - ->>> type(17) - -\end{verbatim} -\afterverb -% -Not surprisingly, strings belong to the type {\tt str} and -integers belong to the type {\tt int}. Less obviously, numbers -with a decimal point belong to a type called {\tt float}, -because these numbers are represented in a -format called {\bf floating-point}. - -\index{type} -\index{string} -\index{type!str} -\index{int} -\index{type!int} -\index{float} -\index{type!float} - -\beforeverb -\begin{verbatim} ->>> type(3.2) - -\end{verbatim} -\afterverb -% -What about values like {\tt '17'} and {\tt '3.2'}? -They look like numbers, but they are in quotation marks like -strings. - -\beforeverb -\begin{verbatim} ->>> type('17') - ->>> type('3.2') - -\end{verbatim} -\afterverb -% -They're strings. - -When you type a large integer, you might be tempted to use commas -between groups of three digits, as in {\tt 1,000,000}. This is not a -legal integer in Python, but it is a legal expression: - -\beforeverb -\begin{verbatim} ->>> print 1,000,000 -1 0 0 -\end{verbatim} -\afterverb -% -Well, that's not what we expected at all! Python interprets {\tt -1,000,000} as a comma-separated list of three integers, which it -prints consecutively. This is the first example we have seen of a -semantic error: the code runs without producing an error message, but -it doesn't do the ``right'' thing. - - -\section{Variables} -\index{variable} -\index{assignment} -\index{statement!assignment} - -One of the most powerful features of a programming language is the -ability to manipulate {\bf variables}. A variable is a name that -refers to a value. - -The {\bf assignment statement} creates new variables and gives -them values: - -\beforeverb -\begin{verbatim} ->>> message = "What's up, Doc?" ->>> n = 17 ->>> pi = 3.14159 -\end{verbatim} -\afterverb -% -This example makes three assignments. The first assigns the string -{\tt "What's up, Doc?"} to a new variable named {\tt message}. -The second gives the integer {\tt 17} to {\tt n}, and the third -gives the floating-point number {\tt 3.14159} to {\tt pi}. - -Notice that the first statement uses double quotes to enclose the -string. In general, single and double quotes do the same thing, but -if the string contains a single quote (or an apostrophe, which is -the same character), you have to use double quotes to enclose it. - -\index{state diagram} - -A common way to represent variables on paper is to write the name with -an arrow pointing to the variable's value. This kind of figure is -called a {\bf state diagram} because it shows what state each of the -variables is in (think of it as the variable's state of mind). -This diagram shows the result of the assignment statements: - -\beforefig -\centerline{\psfig{figure=illustrations/state2.eps}} -\afterfig - -The print statement also works with variables. - -\beforeverb -\begin{verbatim} ->>> print message -What's up, Doc? ->>> print n -17 ->>> print pi -3.14159 -\end{verbatim} -\afterverb -% -In each case the result is the value of the variable. -Variables also have types; again, we can ask the -interpreter what they are. - -\beforeverb -\begin{verbatim} ->>> type(message) - ->>> type(n) - ->>> type(pi) - -\end{verbatim} -\afterverb -% -The type of a variable is the type of the value it -refers to. - - -\section{Variable names and keywords} -\index{keyword} - -Programmers generally choose names for their variables that -are meaningful---they document what the variable is used for. - -Variable names can be arbitrarily long. They can contain -both letters and numbers, but they have to begin with a letter. -Although it is legal to use uppercase letters, by convention -we don't. If you do, remember that case matters. {\tt Bruce} -and {\tt bruce} are different variables. - -The underscore character ({\tt \_}) can appear in a name. -It is often used in names with multiple words, such as -{\tt my\_name} or {\tt price\_of\_tea\_in\_china}. - -\index{underscore character} - -If you give a variable an illegal name, you get a syntax error: - -\adjustpage{-2} -\pagebreak -\beforeverb -\begin{verbatim} ->>> 76trombones = 'big parade' -SyntaxError: invalid syntax ->>> more$ = 1000000 -SyntaxError: invalid syntax ->>> class = 'Computer Science 101' -SyntaxError: invalid syntax -\end{verbatim} -\afterverb -% -{\tt 76trombones} is illegal because it does not begin with a letter. -{\tt more\$} is illegal because it contains an illegal character, the dollar -sign. But what's wrong with {\tt class}? - -It turns out that {\tt class} is one of the Python {\bf keywords}. -Keywords define the language's rules and structure, and they cannot be -used as variable names. - -\index{keyword} - -Python has twenty-nine keywords: - -\beforeverb -\begin{verbatim} -and def exec if not return -assert del finally import or try -break elif for in pass while -class else from is print yield -continue except global lambda raise -\end{verbatim} -\afterverb -% -You might want to keep this list handy. If the interpreter complains -about one of your variable names and you don't know why, see if it -is on this list. - - -\section{Statements} - -A statement is an instruction that the Python interpreter can -execute. We have seen two kinds of statements: print -and assignment. - -When you type a statement on the command line, Python -executes it and displays the result, if there is one. The -result of a print statement is a value. Assignment statements -don't produce a result. - -A script usually contains a sequence of statements. If there -is more than one statement, the results appear one at a time -as the statements execute. - -For example, the script - -\beforeverb -\begin{verbatim} -print 1 -x = 2 -print x -\end{verbatim} -\afterverb -% -produces the output - -\beforeverb -\begin{verbatim} -1 -2 -\end{verbatim} -\afterverb -% -Again, the assignment statement produces no output. - - - -\section{Evaluating expressions} - -An expression is a combination of values, variables, and operators. -If you type an expression on the command line, the interpreter -{\bf evaluates} it and displays the result: - -\beforeverb -\begin{verbatim} ->>> 1 + 1 -2 -\end{verbatim} -\afterverb -% -Although expressions contain values, variables, and operators, -not every expression contains all of these elements. -A value all by itself is considered an expression, and so is -a variable. - -\beforeverb -\begin{verbatim} ->>> 17 -17 ->>> x -2 -\end{verbatim} -\afterverb -% -Confusingly, evaluating an expression is not quite the same -thing as printing a value. - -\beforeverb -\begin{verbatim} ->>> message = 'Hello, World!' ->>> message -'Hello, World!' ->>> print message -Hello, World! -\end{verbatim} -\afterverb -% -When the Python interpreter displays the value of an expression, it -uses the same format you would use to enter a value. In the case of -strings, that means that it includes the quotation marks. But if -you use a print statement, Python displays the contents of the string -without the quotation marks. - -In a script, an expression all by itself is a legal statement, but it -doesn't do anything. The script - -\beforeverb -\begin{verbatim} -17 -3.2 -'Hello, World!' -1 + 1 -\end{verbatim} -\afterverb -% -produces no output at all. How would you change the script to -display the values of these four expressions? - - -\section{Operators and operands} -\index{operator} -\index{operand} -\index{expression} - -{\bf Operators} are special symbols that represent computations -like addition and multiplication. The values the operator uses are -called {\bf operands}. - -The following are all legal Python expressions whose meaning is more or -less clear: -\adjustpage{2} -\beforeverb -\begin{verbatim} -20+32 hour-1 hour*60+minute minute/60 5**2 (5+9)*(15-7) -\end{verbatim} -\afterverb -% -The symbols {\tt +}, {\tt -}, and {\tt /}, and the use of parenthesis for -grouping, mean in Python what they mean in mathematics. The asterisk -({\tt *}) is the symbol for multiplication, and {\tt **} is the symbol -for exponentiation. - -When a variable name appears in the place of an operand, it -is replaced with its value before the operation is -performed. - -Addition, subtraction, multiplication, and exponentiation all do what -you expect, but you might be surprised by division. The following -operation has an unexpected result: - -\beforeverb -\begin{verbatim} ->>> minute = 59 ->>> minute/60 -0 -\end{verbatim} -\afterverb -% -The value of {\tt minute} is 59, and in conventional arithmetic 59 -divided by 60 is 0.98333, not 0. The reason for the discrepancy is -that Python is performing {\bf integer division}. - -\index{integer division} - -When both of the operands are integers, the result must also be an integer, -and by convention, integer division always rounds {\em down}, even in cases -like this where the next integer is very close. - -A possible solution to this problem is to calculate a percentage -rather than a fraction: - -\beforeverb -\begin{verbatim} ->>> minute*100/60 -98 -\end{verbatim} -\afterverb -% -Again the result is rounded down, but at least now the answer is -approximately correct. Another alternative is to use floating-point -division, which we get to in Chapter~\ref{floatchap}. - - -\section{Order of operations} -\index{order of operations} -\index{rules of precedence} - -When more than one operator appears in an expression, the order of -evaluation depends on the {\bf rules of precedence}. Python follows -the same precedence rules for its mathematical operators that -mathematics does. The acronym {\bf PEMDAS} is a useful way to -remember the order of operations: - -\begin{itemize} - -\item {\bf P}arentheses have the highest precedence and can be used -to force an expression to evaluate in the order you want. Since -expressions in parentheses are evaluated first, {\tt 2 * (3-1)} is 4, -and {\tt (1+1)**(5-2)} is 8. You can also use parentheses to make an -expression easier to read, as in {\tt (minute * 100) / 60}, even -though it doesn't change the result. - -\item {\bf E}xponentiation has the next highest precedence, so -{\tt 2**1+1} is 3 and not 4, and {\tt 3*1**3} is 3 and not 27. - -\item {\bf M}ultiplication and {\bf D}ivision have the same precedence, -which is higher than {\bf A}ddition and {\bf S}ubtraction, which also -have the same precedence. So {\tt 2*3-1} yields 5 rather than 4, and -{\tt 2/3-1} is {\tt -1}, not {\tt 1} (remember that in integer -division, {\tt 2/3=0}). - -\item Operators with the same precedence are evaluated from left to -right. So in the expression {\tt minute*100/60}, the multiplication -happens first, yielding {\tt 5900/60}, which in turn yields {\tt 98}. -If the operations had been evaluated from right to left, the result -would have been {\tt 59*1}, which is {\tt 59}, which is wrong. - -\end{itemize} - - -\section{Operations on strings} -\index{string operation} - -In general, you cannot perform mathematical operations on strings, even -if the strings look like numbers. The following are illegal (assuming -that {\tt message} has type {\tt string}): - -\beforeverb -\begin{verbatim} - message-1 'Hello'/123 message*'Hello' '15'+2 -\end{verbatim} -\afterverb -% -Interestingly, the {\tt +} operator does work with strings, although it -does not do exactly what you might expect. For strings, the {\tt +} operator -represents {\bf concatenation}, which means joining the two operands by -linking them end-to-end. For example: - -\index{concatenation} - -\beforeverb -\begin{verbatim} -fruit = 'banana' -bakedGood = ' nut bread' -print fruit + bakedGood -\end{verbatim} -\afterverb -% -The output of this program is {\tt banana nut bread}. The space -before the word {\tt nut} is part of the string, and is necessary -to produce the space between the concatenated strings. - -The {\tt *} operator also works on strings; it performs repetition. -For example, {\tt 'Fun'*3} is {\tt 'FunFunFun'}. One of the operands -has to be a string; the other has to be an integer. - -On one hand, this interpretation of {\tt +} and {\tt *} makes sense by -analogy with addition and multiplication. Just as {\tt 4*3} is -equivalent to {\tt 4+4+4}, we expect {\tt 'Fun'*3} to be the same as -{\tt 'Fun'+'Fun'+'Fun'}, and it is. On the other hand, there is a -significant way in which string concatenation and repetition are -different from integer addition and multiplication. -Can you think of a property that addition and multiplication have -that string concatenation and repetition do not? - - -\section{Composition} -\index{composition} - -So far, we have looked at the elements of a program---variables, -expressions, and statements---in isolation, without talking about how to -combine them. - -One of the most useful features of programming languages is their -ability to take small building blocks and {\bf compose} them. For -example, we know how to add numbers and we know how to print; it turns -out we can do both at the same time: - -\beforeverb -\begin{verbatim} ->>> print 17 + 3 -20 -\end{verbatim} -\afterverb -% -In reality, the -addition has to happen before the printing, so the actions aren't -actually happening at the same time. The point is that any -expression involving numbers, strings, and variables can be used inside a -print statement. You've already seen an example of this: - -\beforeverb -\begin{verbatim} -print 'Number of minutes since midnight: ', hour*60+minute -\end{verbatim} -\afterverb -% -You can also put arbitrary expressions on the right-hand side of an -assignment statement: - -\beforeverb -\begin{verbatim} -percentage = (minute * 100) / 60 -\end{verbatim} -\afterverb -% -This ability may not seem impressive now, but you will see other examples -where composition makes it possible to express complex computations neatly and -concisely. - -Warning: There are limits on where you can use certain expressions. For -example, the left-hand side of an assignment statement has to be a -{\em variable} name, not an expression. So, the following is illegal: -{\tt minute+1 = hour}. - - -\section{Comments} -\index{comment} - -As programs get bigger and more complicated, they get more difficult to -read. Formal languages are dense, and it is often difficult to look -at a piece of -code and figure out what it is doing, or why. - -For this reason, it is a good idea to add notes to your programs to explain -in natural language what the program is doing. These notes are called -{\bf comments}, and they are marked with the {\tt \#} symbol: - -\beforeverb -\begin{verbatim} -# compute the percentage of the hour that has elapsed -percentage = (minute * 100) / 60 -\end{verbatim} -\afterverb -% -In this case, the comment appears on a line by itself. You can also put -comments at the end of a line: - -\beforeverb -\begin{verbatim} -percentage = (minute * 100) / 60 # caution: integer division -\end{verbatim} -\afterverb -% -Everything from the {\tt \#} to the end of the line is ignored---it -has no effect on the program. The message is intended for the programmer or -for future programmers who might use this code. In this case, it -reminds the reader about the ever-surprising behavior of integer division. - -\index{integer division} - -This sort of comment is less necessary if you use the integer division -operation, \verb+//+. It has the same effect as the division -operator\footnote{For now. The behavior of the division operator may -change in future versions of Python.}, but it signals that the effect -is deliberate. - -\beforeverb -\begin{verbatim} -percentage = (minute * 100) // 60 -\end{verbatim} -\afterverb -% -The integer division operator is like a comment that says, ``I know -this is integer division, and I like it that way!'' - -\section{Glossary} - -\begin{description} - -\item[value:] A number or string (or other thing to be named later) -that can be stored in a variable or computed in an expression. - -\item[type:] A set of values. The type of a value determines how -it can be used in expressions. So far, the types you have seen are integers -(type {\tt int}), floating-point numbers (type {\tt float}), -and strings (type {\tt string}). - -\item[floating-point:] A format for representing numbers with fractional -parts. - -\item[variable:] A name that refers to a value. - -\item[statement:] A section of code that represents a command or action. So -far, the statements you have seen are assignments and print statements. - -\item[assignment:] A statement that assigns a value to a variable. - -\item[state diagram:] A graphical representation of a set of variables and the -values to which they refer. - -\item[keyword:] A reserved word that is used by the compiler to parse a -program; you cannot use keywords like {\tt if}, {\tt def}, and {\tt while} as -variable names. - -\item[operator:] A special symbol that represents a simple computation like -addition, multiplication, or string concatenation. - -\item[operand:] One of the values on which an operator operates. - -\item[expression:] A combination of variables, operators, and values that -represents a single result value. - -\item[evaluate:] To simplify an expression by performing the operations -in order to yield a single value. - -\item[integer division:] An operation that divides one integer by -another and yields an integer. Integer division yields only the -whole number of times that the numerator is divisible by the -denominator and discards any remainder. - -\item[rules of precedence:] The set of rules governing the order in which -expressions involving multiple operators and operands are evaluated. - -\item[concatenate:] To join two operands end-to-end. - -\item[composition:] The ability to combine simple expressions and statements -into compound statements and expressions in order to represent complex -computations concisely. - -\item[comment:] Information in a program that is meant for other -programmers (or anyone reading the source code) and has no effect on the -execution of the program. - -\index{value} -\index{floating-point} -\index{variable} -\index{type} -\index{keyword} -\index{statement} -\index{assignment} -\index{comment} -\index{state diagram} -\index{expression} -\index{operator} -\index{operand} -\index{integer division} -\index{rules of precedence} -\index{precedence} -\index{concatenation} -\index{composition} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap03.tex b/sciphi/data/stock_raw/learning_with_python/chap03.tex deleted file mode 100644 index 06dd4eb..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap03.tex +++ /dev/null @@ -1,802 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Functions} -\label{floatchap} - -\section{Function calls} -\label{functionchap} -\index{function call} -\index{call!function} - -You have already seen one example of a {\bf function call}: - -\beforeverb -\begin{verbatim} ->>> type("32") - -\end{verbatim} -\afterverb -% -The name of the function is {\tt type}, and it displays the type of -a value or variable. The value or variable, which is called the -{\bf argument} of the function, has to be enclosed in parentheses. -It is common to say that a function ``takes'' an argument and ``returns'' -a result. The result is called the {\bf return value}. - -\index{argument} -\index{return value} - -Instead of printing the return value, we could assign it to a variable: - -\beforeverb -\begin{verbatim} ->>> betty = type("32") ->>> print betty - -\end{verbatim} -\afterverb -% -As another example, the {\tt id} function takes a value or a variable and -returns an integer that acts as a unique identifier for the value: - -\beforeverb -\begin{verbatim} ->>> id(3) -134882108 ->>> betty = 3 ->>> id(betty) -134882108 -\end{verbatim} -\afterverb -% -Every value has an {\tt id}, which is a unique number related to where -it is stored in the memory of the computer. The {\tt id} of a -variable is the {\tt id} of the value to which it refers. - - - -\section{Type conversion} -\index{conversion!type} -\index{type conversion} - -Python provides a collection of built-in functions that convert values -from one type to another. The {\tt int} function takes any value and -converts it to an integer, if possible, or complains otherwise: - -\beforeverb -\begin{verbatim} ->>> int("32") -32 ->>> int("Hello") -ValueError: invalid literal for int(): Hello -\end{verbatim} -\afterverb -% -{\tt int} can also convert floating-point values to integers, but -remember that it truncates the fractional part: - -\beforeverb -\begin{verbatim} ->>> int(3.99999) -3 ->>> int(-2.3) --2 -\end{verbatim} -\afterverb -% -The {\tt float} function converts integers and strings to floating-point -numbers: - -\beforeverb -\begin{verbatim} ->>> float(32) -32.0 ->>> float("3.14159") -3.14159 -\end{verbatim} -\afterverb -% -Finally, the {\tt str} function converts to -type {\tt string}: - -\beforeverb -\begin{verbatim} ->>> str(32) -'32' ->>> str(3.14149) -'3.14149' -\end{verbatim} -\afterverb -% -It may seem odd that Python distinguishes the integer value {\tt 1} -from the floating-point value {\tt 1.0}. They may represent the same -number, but they belong to different types. The reason is that they -are represented differently inside the computer. - - - -\section{Type coercion} -\index{type coercion} -\index{coercion!type} -\index{integer division} -\index{division!integer} - -Now that we can convert between types, we have another way to deal -with integer division. Returning to the example from the previous -chapter, suppose we want to calculate the fraction of an hour that has -elapsed. The most obvious expression, {\tt minute / 60}, does integer -arithmetic, so the result is always 0, even at 59 minutes -past the hour. - -One solution is to convert {\tt minute} to floating-point -and do floating-point division: - -\beforeverb -\begin{verbatim} ->>> minute = 59 ->>> float(minute) / 60 -0.983333333333 -\end{verbatim} -\afterverb -% -Alternatively, we can take advantage of the rules for -automatic type conversion, which is called {\bf type coercion}. -For the mathematical operators, if either operand is a {\tt float}, -the other is automatically converted to a {\tt float}: - -\beforeverb -\begin{verbatim} ->>> minute = 59 ->>> minute / 60.0 -0.983333333333 -\end{verbatim} -\afterverb -% -By making the denominator a {\tt float}, we force Python to do -floating-point division. - - -\section{Math functions} -\index{math function} -\index{function!math} - -In mathematics, you have probably seen functions like {\tt sin} and -{\tt log}, and you have learned to evaluate expressions like {\tt -sin(pi/2)} and {\tt log(1/x)}. First, you evaluate the expression in -parentheses (the argument). For example, {\tt pi/2} is approximately -1.571, and {\tt 1/x} is 0.1 (if {\tt x} happens to be 10.0). - -Then, you evaluate the function itself, either by looking it up in a -table or by performing various computations. The {\tt sin} of 1.571 -is 1, and the {\tt log} of 0.1 is -1 (assuming that {\tt log} -indicates the logarithm base 10). - -This process can be applied repeatedly to evaluate more complicated -expressions like {\tt log(1/sin(pi/2))}. First, you evaluate the -argument of the innermost function, then evaluate the function, and so -on. - -Python has a math module that provides most of the familiar -mathematical functions. A {\bf module} is a file that contains a -collection of related functions grouped together. - -\index{module} - -Before we can use the functions from a module, we have to import them: - -\beforeverb -\begin{verbatim} ->>> import math -\end{verbatim} -\afterverb -% -To call one of the functions, we have to specify the name of the -module and the name of the function, separated by a dot, also -known as a period. This format is called {\bf dot notation}. - -\index{dot notation} - -\beforeverb -\begin{verbatim} ->>> decibel = math.log10 (17.0) ->>> angle = 1.5 ->>> height = math.sin(angle) -\end{verbatim} -\afterverb -% -The first statement sets {\tt decibel} to the logarithm of 17, base -{\tt 10}. There is also a function called {\tt log} that takes logarithm -base {\tt e}. - -The third statement finds the sine of the value of the variable {\tt -angle}. {\tt sin} and the other trigonometric functions ({\tt cos}, -{\tt tan}, etc.) take arguments in radians. To convert from degrees -to radians, divide by 360 and multiply by {\tt 2*pi}. For example, to -find the sine of 45 degrees, first calculate the angle in radians and -then take the sine: - -\beforeverb -\begin{verbatim} ->>> degrees = 45 ->>> angle = degrees * 2 * math.pi / 360.0 ->>> math.sin(angle) -0.707106781187 -\end{verbatim} -\afterverb -% -The constant {\tt pi} is also part of the math module. If you know -your geometry, you can check the previous result by comparing it to -the square root of two divided by two: - -\beforeverb -\begin{verbatim} ->>> math.sqrt(2) / 2.0 -0.707106781187 -\end{verbatim} -\afterverb -% - -\section{Composition} -\index{composition} -\index{function!composition} - -Just as with mathematical functions, Python functions can be composed, -meaning that you use one expression as part of another. For example, you can -use any expression as an argument to a function: - -\beforeverb -\begin{verbatim} ->>> x = math.cos(angle + math.pi/2) -\end{verbatim} -\afterverb -% -This statement takes the value of {\tt pi}, divides it by 2, and adds -the result to the value of {\tt angle}. The sum is then passed as an -argument to the {\tt cos} function. - -You can also take the result of one function and pass it as an argument to -another: - -\beforeverb -\begin{verbatim} ->>> x = math.exp(math.log(10.0)) -\end{verbatim} -\afterverb -% -This statement finds the log base {\tt e} of 10 and then raises {\tt e} to -that power. The result gets assigned to {\tt x}. - - -\section{Adding new functions} - -So far, we have only been using the functions that come with Python, -but it is also possible to add new functions. Creating new functions -to solve your particular problems is one of the most useful things -about a general-purpose programming language. - -In the context of programming, a {\bf function} is a named sequence of -statements that performs a desired operation. This operation is specified -in a {\bf function definition}. The functions we have been using so far have -been defined for us, and these definitions have been hidden. This is a good -thing, because it allows us to use the functions without worrying about the -details of their definitions. - -\index{function} -\index{function definition} -\index{definition!function} - -The syntax for a function definition is: - -\beforeverb -\begin{verbatim} -def NAME( LIST OF PARAMETERS ): - STATEMENTS -\end{verbatim} -\afterverb -% -You can make up any names you want for the functions you create, except that -you can't use a name that is a Python keyword. The list of parameters -specifies what information, if any, you have to provide in order to -use the new function. - -There can be any number of statements inside the function, but they -have to be indented from the left margin. In the examples in this -book, we will use an indentation of two spaces. - -The first couple of functions we are going to write have no parameters, -so the syntax looks like this: - -\beforeverb -\begin{verbatim} -def newLine(): - print -\end{verbatim} -\afterverb -% -This function is named {\tt newLine}. The empty parentheses indicate -that it has no parameters. It contains only a single statement, which -outputs a newline character. (That's what happens when you use a {\tt print} -command without any arguments.) - -The syntax for calling the new function is the same as the syntax -for built-in functions: - -\beforeverb -\begin{verbatim} -print "First Line." -newLine() -print "Second Line." -\end{verbatim} -\afterverb -% -The output of this program is: - -\beforeverb -\begin{verbatim} -First line. - -Second line. -\end{verbatim} -\afterverb -% -Notice the extra space between the two lines. What if we wanted -more space between the lines? We could call the same function -repeatedly: - -\beforeverb -\begin{verbatim} -print "First Line." -newLine() -newLine() -newLine() -print "Second Line." -\end{verbatim} -\afterverb -% -Or we could write a new function named {\tt threeLines} that prints -three new lines: - -\beforeverb -\begin{verbatim} -def threeLines(): - newLine() - newLine() - newLine() - -print "First Line." -threeLines() -print "Second Line." -\end{verbatim} -\afterverb -% -This function contains three statements, all of which are indented by two -spaces. Since the next statement is not indented, Python knows that it is -not part of the function. - -You should notice a few things about this program: - -\begin{enumerate} - -\item You can call the same procedure repeatedly. In fact, it is quite common -and useful to do so. - -\item You can have one function call another function; in this case -{\tt threeLines} calls {\tt newLine}. - -\end{enumerate} - -So far, it may not be clear why it is worth the trouble to create all of these -new functions. Actually, there are a lot of reasons, but this example -demonstrates two: - -\begin{itemize} - -\item Creating a new function gives you an opportunity to name a -group of statements. Functions can simplify a program by hiding a complex -computation behind a single command and by using English words in place of -arcane code. - -\item Creating a new function can make a program smaller by eliminating -repetitive code. For example, a short way to print nine consecutive new -lines is to call {\tt threeLines} three times. - -\end{itemize} - -\begin{quote} -{\em As an exercise, write a function called {\tt nineLines} that uses -{\tt threeLines} to print nine blank lines. How would you print -twenty-seven new lines?} -\end{quote} - - -\section{Definitions and use} - -Pulling together the code fragments from Section 3.6, the -whole program looks like this: - -\beforeverb -\begin{verbatim} -def newLine(): - print - -def threeLines(): - newLine() - newLine() - newLine() - -print "First Line." -threeLines() -print "Second Line." -\end{verbatim} -\afterverb -% -This program contains two function definitions: {\tt newLine} and -{\tt threeLines}. Function definitions get executed just like other -statements, but the effect is to create the new function. The statements -inside the function do not get executed until the function is called, and -the function definition generates no output. - -As you might expect, you have to create a function before you can -execute it. In other words, the function definition has to be -executed before the first time it is called. - -\begin{quote} -{\em As an exercise, move the last three lines of this program -to the top, so the function calls appear before the definitions. Run -the program and see what error -message you get.} -\end{quote} - -\begin{quote} -{\em As another exercise, start with the working version of the program -and move the definition of {\tt newLine} after the definition of -{\tt threeLines}. What happens when you run this program?} -\end{quote} - -\section{Flow of execution} -\index{flow of execution} - -In order to ensure that a function is defined before its first use, -you have to know the order in which statements are executed, which is -called the {\bf flow of execution}. - -Execution always begins at the first statement of the program. Statements are -executed one at a time, in order from top to bottom. - -Function definitions do not alter the flow of execution of the program, but -remember that statements inside the function are not executed until the -function is called. Although it is not common, you can define one function -inside another. In this case, the inner definition isn't executed until the -outer function is called. - -Function calls are like a detour in the flow of execution. Instead of going to -the next statement, the flow jumps to the first line of the called function, -executes all the statements there, and then comes back to pick up where it left -off. - -That sounds simple enough, until you remember that one function can call -another. While in the middle of one function, the program might have to -execute the statements in another function. But while executing that -new function, the program might have to execute yet another function! - -Fortunately, Python is adept at keeping track of where it is, so each time a -function completes, the program picks up where it left off in the function that -called it. When it gets to the end of the program, it terminates. - -What's the moral of this sordid tale? When you read a program, don't read from -top to bottom. Instead, follow the flow of execution. - - -\section{Parameters and arguments} -\label{parameters} -\index{parameter} -\index{function!parameter} -\index{argument} -\index{function!argument} - -Some of the built-in functions you have used require arguments, the -values that control how the function does its job. For example, if -you want to find the sine of a number, you have to indicate what the -number is. Thus, {\tt sin} takes a numeric value as an argument. - -Some functions take more than one argument. For example, {\tt pow} -takes two arguments, the base and the exponent. Inside the function, -the values that are passed get assigned to variables called {\bf parameters}. - -Here is an example of a user-defined function that has a parameter: - -\beforeverb -\begin{verbatim} -def printTwice(bruce): - print bruce, bruce -\end{verbatim} -\afterverb -% -This function takes a single argument and assigns it to a parameter -named {\tt bruce}. The value of the parameter (at this point we -have no idea what it will be) is printed twice, followed by a newline. -The name {\tt bruce} was chosen to suggest that the name you give a -parameter is up to you, but in general, you want to choose something -more illustrative than {\tt bruce}. - -The function {\tt printTwice} works for any type that can be printed: - -\beforeverb -\begin{verbatim} ->>> printTwice('Spam') -Spam Spam ->>> printTwice(5) -5 5 ->>> printTwice(3.14159) -3.14159 3.14159 -\end{verbatim} -\afterverb -% -In the first function call, the argument is a string. In the second, -it's an integer. In the third, it's a {\tt float}. - -The same rules of composition that apply to built-in functions also -apply to user-defined functions, so we can use any kind of expression -as an argument for {\tt printTwice}: - -\beforeverb -\begin{verbatim} ->>> printTwice('Spam'*4) -SpamSpamSpamSpam SpamSpamSpamSpam ->>> printTwice(math.cos(math.pi)) --1.0 -1.0 -\end{verbatim} -\afterverb -% -As usual, the expression is evaluated before the function is run, so -{\tt printTwice} prints {\tt SpamSpamSpamSpam SpamSpamSpamSpam} instead of -{\tt 'Spam'*4 'Spam'*4}. - -\begin{quote} -{\em As an exercise, write a call to {\tt printTwice} that does print -{\tt 'Spam'*4 'Spam'*4}. Hint: strings can be enclosed in either single or -double quotes, and the type of quote not used to enclose the string can be used -inside it as part of the string.} -\end{quote} - -We can also use a variable as an argument: - -\beforeverb -\begin{verbatim} ->>> michael = 'Eric, the half a bee.' ->>> printTwice(michael) -Eric, the half a bee. Eric, the half a bee. -\end{verbatim} -\afterverb -% -Notice something very important here. The name of the variable we pass -as an argument ({\tt michael}) has nothing to do with the name of the -parameter ({\tt bruce}). It doesn't matter what the value was -called back home (in the caller); here in {\tt printTwice}, we call -everybody {\tt bruce}. - - -\section{Variables and parameters are local} -\index{local variable} -\index{variable!local} - -When you create a {\bf local variable} inside a function, it only exists inside -the function, and you cannot use it outside. For example: - -\beforeverb -\begin{verbatim} -def catTwice(part1, part2): - cat = part1 + part2 - printTwice(cat) -\end{verbatim} -\afterverb -% -This function takes two arguments, concatenates them, and then prints -the result twice. -We can call the function with two strings: - -\beforeverb -\begin{verbatim} ->>> chant1 = "Pie Jesu domine, " ->>> chant2 = "Dona eis requiem." ->>> catTwice(chant1, chant2) -Pie Jesu domine, Dona eis requiem. Pie Jesu domine, Dona eis requiem. -\end{verbatim} -\afterverb -% -When {\tt catTwice} terminates, the variable {\tt cat} is destroyed. -If we try to print it, we get an error: - -\beforeverb -\begin{verbatim} ->>> print cat -NameError: cat -\end{verbatim} -\afterverb -% -Parameters are also local. -For example, outside the function {\tt printTwice}, there is no -such thing as {\tt bruce}. If you try to use it, Python will -complain. - - -\section{Stack diagrams} -\label{stackdiagram} -\index{stack diagram} -\index{function frame} -\index{frame} - -To keep track of which variables can be used where, it is sometimes -useful to draw a {\bf stack diagram}. Like state diagrams, stack -diagrams show the value of each variable, but they also show the -function to which each variable belongs. - -Each function is represented by a {\bf frame}. A frame is a box -with the name of a function -beside it and the parameters and variables of the function inside it. -The stack diagram for the -previous example looks like this: - -\adjustpage{-4} -\beforefig -\centerline{\psfig{figure=illustrations/stack.eps}} -\afterfig - -The order of the stack shows the flow of execution. {\tt printTwice} -was called by {\tt catTwice}, and {\tt catTwice} was called by {\tt -\_\_main\_\_}, which is a special name for the topmost function. When -you create a variable outside of any function, it belongs to {\tt -\_\_main\_\_}. - -Each parameter refers to the same value as its corresponding -argument. So, {\tt part1} has the same value as -{\tt chant1}, {\tt part2} has the same value as {\tt chant2}, -and {\tt bruce} has the same value as {\tt cat}. - -If an error occurs during a function call, Python prints the -name of the function, and the name of the function that called -it, and the name of the function that called {\em that}, all the -way back to {\tt \_\_main\_\_}. - -For example, if we try to access {\tt cat} from within {\tt -printTwice}, we get a {\tt NameError}: - -\beforeverb -\begin{verbatim} -Traceback (innermost last): - File "test.py", line 13, in __main__ - catTwice(chant1, chant2) - File "test.py", line 5, in catTwice - printTwice(cat) - File "test.py", line 9, in printTwice - print cat -NameError: cat -\end{verbatim} -\afterverb -% -This list of functions is called a {\bf traceback}. It tells you what -program file the error occurred in, and what line, and what functions -were executing at the time. It also shows the line of code that -caused the error. - -\index{traceback} - -Notice the similarity between the traceback and the -stack diagram. It's not a coincidence. - - -\section{Functions with results} - -You might have noticed by now that some of the functions we are using, -such as the math functions, yield results. Other functions, like -{\tt newLine}, perform an action but don't return a value. That raises -some questions: - -\begin{enumerate} - -\item What happens if you call a function and you don't do anything -with the result (i.e., you don't assign it to a variable or use it as -part of a larger expression)? - -\item What happens if you use a function without a result as part of -an expression, such as {\tt newLine() + 7}? - -\item Can you write functions that yield results, or are you stuck with -simple function like {\tt newLine} and {\tt printTwice}? - -\end{enumerate} - -The answer to the last question is that you can write functions that -yield results, and we'll do it in Chapter 5. - -\begin{quote} -{\em As an exercise, answer the other two questions by trying them -out. When you have a question about what is legal or illegal in -Python, a good way to find out is to ask the interpreter.} -\end{quote} - - -\section{Glossary} - -\begin{description} - -\item[function call:] A statement that executes a function. It consists of -the name of the function followed by a list of arguments enclosed in -parentheses. - -\item[argument:] A value provided to a function when the function is called. -This value is assigned to the corresponding parameter in the function. - -\item[return value:] The result of a function. If a function call -is used as an expression, the return value is the value of -the expression. - -\item[type conversion:] An explicit statement that takes a value -of one type and computes a corresponding value of another type. - -\item[type coercion:] A type conversion that happens automatically -according to Python's coercion rules. - -\item[module:] A file that contains a collection of related functions and -classes. - -\item[dot notation:] The syntax for calling a function in another -module, specifying the module name followed by a dot (period) and -the function name. - -\item[function:] A named sequence of statements that performs some useful -operation. Functions may or may not take arguments and may or may not -produce a result. - -\item[function definition:] A statement that creates a new function, -specifying its name, parameters, and the statements it executes. - -\item[flow of execution:] The order in which statements are executed during -a program run. - -\item[parameter:] A name used inside a function to refer to the value passed -as an argument. - -\item[local variable:] A variable defined inside a function. A local -variable can only be used inside its function. - -\item[stack diagram:] A graphical representation of a stack of functions, -their variables, and the values to which they refer. - -\item[frame:] A box in a stack diagram that represents a function call. -It contains the local variables and parameters of the function. - -\item[traceback:] A list of the functions that are executing, -printed when a runtime error occurs. - -\index{function call} -\index{return value} -\index{argument} -\index{coercion} -\index{module} -\index{dot notation} -\index{function} -\index{function definition} -\index{flow of execution} -\index{parameter} -\index{local variable} -\index{stack diagram} -\index{function frame} -\index{frame} -\index{traceback} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap04.tex b/sciphi/data/stock_raw/learning_with_python/chap04.tex deleted file mode 100644 index 1cca1f5..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap04.tex +++ /dev/null @@ -1,722 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{Conditionals and recursion} - -\section{The modulus operator} -\index{modulus operator} -\index{operator!modulus} - -The {\bf modulus operator} works on integers (and integer expressions) -and yields the remainder when the first operand is divided by the -second. In Python, the modulus operator is a percent sign ({\tt -\%}). The syntax is the same as for other operators: - -\beforeverb -\begin{verbatim} ->>> quotient = 7 / 3 ->>> print quotient -2 ->>> remainder = 7 % 3 ->>> print remainder -1 -\end{verbatim} -\afterverb -% -So 7 divided by 3 is 2 with 1 left over. - -The modulus operator turns out to be surprisingly useful. For -example, you can check whether one number is divisible by another---if -{\tt x \% y} is zero, then {\tt x} is divisible by {\tt y}. - -Also, you can extract the right-most digit -or digits from a number. For example, {\tt x \% 10} yields the -right-most digit of {\tt x} (in base 10). Similarly {\tt x \% 100} -yields the last two digits. - -\adjustpage{1} - -\section{Boolean expressions} -\index{boolean expression} -\index{expression!boolean} -\index{logical operator} -\index{operator!logical} - -A {\bf boolean expression} is an expression that is either true -or false. One way to write a boolean expression is to use the -operator {\tt ==}, which compares two values and produces a boolean -value: - -\beforeverb -\begin{verbatim} ->>> 5 == 5 -True ->>> 5 == 6 -False -\end{verbatim} -\afterverb -% -In the first statement, the two operands are equal, so the value of -the expression is {\tt True}; in the second statement, 5 is not equal -to 6, so we get {\tt False}. {\tt True} and {\tt False} are special -values that are built into Python. - -The {\tt ==} operator is one of the {\bf comparison operators}; the -others are: - -\beforeverb -\begin{verbatim} - x != y # x is not equal to y - x > y # x is greater than y - x < y # x is less than y - x >= y # x is greater than or equal to y - x <= y # x is less than or equal to y -\end{verbatim} -\afterverb -% -Although these operations are probably familiar to you, the Python -symbols are different from the mathematical symbols. A common error -is to use a single equal sign ({\tt =}) instead of a double equal sign -({\tt ==}). Remember that {\tt =} is an assignment operator and -{\tt ==} is a comparison operator. Also, there is no such thing as -{\tt =<} or {\tt =>}. - - -\section {Logical operators} -\index{logical operator} -\index{operator!logical} - -There are three {\bf logical operators}: {\tt and}, {\tt -or}, and {\tt not}. The semantics (meaning) of these operators is -similar to their meaning in English. For example, -{\tt x > 0 and x < 10} is true only if {\tt x} is greater than 0 -{\em and} less than 10. - -{\tt n\%2 == 0 or n\%3 == 0} is true if {\em either} of the conditions -is true, that is, if the number is divisible by 2 {\em or} 3. - -Finally, the {\tt not} operator negates a boolean -expression, so {\tt not(x > y)} is true if {\tt (x > y)} is false, -that is, if {\tt x} is less than or equal to {\tt y}. - -Strictly speaking, the operands of the logical operators should be -boolean expressions, but Python is not very strict. -Any nonzero number is interpreted as ``true.'' - -\beforeverb -\begin{verbatim} ->>> x = 5 ->>> x and 1 -1 ->>> y = 0 ->>> y and 1 -0 -\end{verbatim} -\afterverb -% -In general, this sort of thing is not considered good style. If you -want to compare a value to zero, you should do it explicitly. - - -\section{Conditional execution} -\label{conditional execution} -\index{conditional branching} -\index{conditional execution} - -In order to write useful programs, we almost always need the ability -to check conditions and change the behavior of the program -accordingly. {\bf Conditional statements} give us this ability. The -simplest form is the {\tt if} statement: - -\beforeverb -\begin{verbatim} -if x > 0: - print "x is positive" -\end{verbatim} -\afterverb -% -The boolean expression after the {\tt if} statement is -called the {\bf condition}. If it is true, then the indented -statement gets executed. If not, nothing happens. - -\index{compound statement} -\index{compound statement!header} -\index{compound statement!body} -\index{compound statement!statement block} -\index{statement!compound} - -Like other compound statements, the -{\tt if} statement is made up of a header and a block -of statements: - -\beforeverb -\begin{verbatim} -HEADER: - FIRST STATEMENT - ... - LAST STATEMENT -\end{verbatim} -\afterverb -% -The header begins on a new line and ends with a colon (:). The -indented statements that follow are called a {\bf block}. -The first unindented statement marks the end of the block. -A statement block inside a compound statement is called the {\bf body} -of the statement. - -\index{block} -\index{statement!block} -\index{body} - -There is no limit on the number of statements that can appear in -the body of an if statement, but there has to be at least one. -Occasionally, it is useful to have a body with no statements (usually -as a place keeper for code you haven't written yet). In that -case, you can use the {\tt pass} statement, which does nothing. - -\index{pass statement} -\index{statement!pass} - - - -\section{Alternative execution} -\label{alternative execution} - -A second form of the {\tt if} statement is alternative execution, -in which there are two possibilities and the condition determines -which one gets executed. The syntax looks like this: - -\beforeverb -\begin{verbatim} -if x%2 == 0: - print x, "is even" -else: - print x, "is odd" -\end{verbatim} -\afterverb -% -If the remainder when {\tt x} is divided by 2 is 0, then we -know that {\tt x} is even, and the program displays a message to that -effect. If the condition is false, the second set of statements is -executed. Since the condition must be true or false, exactly one of -the alternatives will be executed. The alternatives are called -{\bf branches}, because they are branches in the flow of execution. - -\index{branch} - -As an aside, if you need to check the parity (evenness or -oddness) of numbers often, you might ``wrap'' this code in a -function: - -\beforeverb -\begin{verbatim} -def printParity(x): - if x%2 == 0: - print x, "is even" - else: - print x, "is odd" -\end{verbatim} -\afterverb -% -For any value of {\tt x}, {\tt printParity} displays an -appropriate message. -When you call it, you can provide any integer expression -as an argument. - -\beforeverb -\begin{verbatim} ->>> printParity(17) -17 is odd ->>> y = 17 ->>> printParity(y+1) -18 is even -\end{verbatim} -\afterverb -% - - -\section{Chained conditionals} -\index{chained conditional} -\index{conditional!chained} - -Sometimes there are more than two possibilities and we need more than -two branches. One way to express a computation like that is a {\bf -chained conditional}: - -\beforeverb -\begin{verbatim} -if x < y: - print x, "is less than", y -elif x > y: - print x, "is greater than", y -else: - print x, "and", y, "are equal" -\end{verbatim} -\afterverb -% -{\tt elif} is an abbreviation of ``else if.'' Again, exactly one -branch will be executed. There is no limit of the number of {\tt -elif} statements, but the last branch has to be an {\tt else} -statement: - -\adjustpage{3} -\beforeverb -\begin{verbatim} -if choice == 'A': - functionA() -elif choice == 'B': - functionB() -elif choice == 'C': - functionC() -else: - print "Invalid choice." -\end{verbatim} -\afterverb -% -Each condition is checked in order. If the first is false, -the next is checked, and so on. If one of them is -true, the corresponding branch executes, and the statement -ends. Even if more than one condition is true, only the -first true branch executes. - -\begin{quote} -\begin{quote} -{\em As an exercise, wrap these examples in functions -called {\tt compare(x, y)} and {\tt dispatch(choice)}.} -\end{quote} -\end{quote} - - -\section{Nested conditionals} - -One conditional can also be nested within another. We could have -written the trichotomy example as follows: - -\beforeverb -\begin{verbatim} -if x == y: - print x, "and", y, "are equal" -else: - if x < y: - print x, "is less than", y - else: - print x, "is greater than", y -\end{verbatim} -\afterverb -% -The outer conditional contains two branches. The -first branch contains a simple output statement. The second branch -contains another {\tt if} statement, which has two branches of its -own. Those two branches are both output statements, -although they could have been conditional statements as well. - -Although the indentation of the statements makes the structure -apparent, nested conditionals become difficult to read very -quickly. In general, it is a good idea to avoid them when you can. - -Logical operators often provide a way to simplify nested conditional -statements. For example, we can rewrite the following code using a -single conditional: - -\beforeverb -\begin{verbatim} -if 0 < x: - if x < 10: - print "x is a positive single digit." -\end{verbatim} -\afterverb -% -The {\tt print} statement is executed only if we make it past both the -conditionals, so we can use the {\tt and} operator: - -\beforeverb -\begin{verbatim} -if 0 < x and x < 10: - print "x is a positive single digit." -\end{verbatim} -\afterverb -% -These kinds of conditions are common, so Python provides an -alternative syntax that is similar to mathematical notation: - -\beforeverb -\begin{verbatim} -if 0 < x < 10: - print "x is a positive single digit." -\end{verbatim} -\afterverb -% -This condition is semantically the same as -the compound boolean expression and the nested conditional. - - -\section{The {\tt return} statement} -\index{return statement} -\index{statement!return} - -The {\tt return} statement allows you to terminate the execution of a -function before you reach the end. One reason to use it is if you -detect an error condition: - -\beforeverb -\begin{verbatim} -import math - -def printLogarithm(x): - if x <= 0: - print "Positive numbers only, please." - return - - result = math.log(x) - print "The log of x is", result -\end{verbatim} -\afterverb -% -The function {\tt printLogarithm} has a -parameter named {\tt x}. The first thing it does is check whether -{\tt x} is less than or equal to 0, in which case it displays an -error message and then uses {\tt return} to exit the function. The -flow of execution immediately returns to the caller, and the remaining -lines of the function are not executed. - -Remember that to use a function from the math -module, you have to import it. - - -\section{Recursion} -\label{recursion} -\index{recursion} - -We mentioned that it is legal for one function to call another, and -you have seen several examples of that. We neglected to mention that -it is also legal for a function to call itself. It may not be obvious -why that is a good thing, but it turns out to be one of the most -magical and interesting things a program can do. -For example, look at the following function: - -\beforeverb -\begin{verbatim} -def countdown(n): - if n == 0: - print "Blastoff!" - else: - print n - countdown(n-1) -\end{verbatim} -\afterverb -% -{\tt countdown} expects the parameter, {\tt n}, to be a positive -integer. If {\tt n} is 0, it outputs the word, ``Blastoff!'' -Otherwise, it outputs {\tt n} and then calls a function named -{\tt countdown}---itself---passing {\tt n-1} as an argument. - -What happens if we call this function like this: - -\beforeverb -\begin{verbatim} ->>> countdown(3) -\end{verbatim} -\afterverb -% -The execution of {\tt countdown} begins with {\tt n=3}, and since -{\tt n} is not 0, it outputs the value 3, and then calls itself... - -\begin{quote} -The execution of {\tt countdown} begins with {\tt n=2}, and since -{\tt n} is not 0, it outputs the value 2, and then calls itself... - -\begin{quote} -The execution of {\tt countdown} begins with {\tt n=1}, and since -{\tt n} is not 0, it outputs the value 1, and then calls itself... - -\begin{quote} -The execution of {\tt countdown} begins with {\tt n=0}, and since -{\tt n} is 0, it outputs the word, ``Blastoff!'' and then returns. -\end{quote} - -The {\tt countdown} that got {\tt n=1} returns. -\end{quote} - -The {\tt countdown} that got {\tt n=2} returns. -\end{quote} - -The {\tt countdown} that got {\tt n=3} returns. - -And then you're back in {\tt \_\_main\_\_} (what a trip). So, the -total output looks like this: - -\beforeverb -\begin{verbatim} -3 -2 -1 -Blastoff! -\end{verbatim} -\afterverb -% -As a second example, look again at the functions {\tt newLine} and -{\tt threeLines}: - -\beforeverb -\begin{verbatim} -def newline(): - print - -def threeLines(): - newLine() - newLine() - newLine() -\end{verbatim} -\afterverb -% -Although these work, they would not be much help if we wanted to output 2 -newlines, or 106. A better alternative would be this: - -\beforeverb -\begin{verbatim} -def nLines(n): - if n > 0: - print - nLines(n-1) -\end{verbatim} -\afterverb -% -This program is similar to {\tt countdown}; as long as {\tt n} is -greater than 0, it outputs one newline and then calls itself to -output {\tt n-1} additional newlines. Thus, the total number of -newlines is {\tt 1 + (n - 1)} which, if you do your algebra right, comes -out to {\tt n}. - -The process of a function calling itself is {\bf recursion}, and -such functions are said to be recursive. - -\index{recursion} -\index{function!recursive} - - -\section{Stack diagrams for recursive functions} -\index{stack diagram} -\index{function frame} -\index{frame} - -In Section~\ref{stackdiagram}, we used a stack diagram to represent -the state of a program during a function call. The same kind of -diagram can help interpret a recursive function. - -Every time a function gets called, Python creates a new function -frame, which contains the function's local variables and parameters. -For a recursive function, there might be more than one frame on the -stack at the same time. - -This figure shows a stack diagram for {\tt countdown} called with -{\tt n = 3}: - -\beforefig -\centerline{\psfig{figure=illustrations/stack2.eps}} -\afterfig - -As usual, the top of the stack is the frame for {\tt \_\_main\_\_}. -It is empty because we did not create any variables in {\tt -\_\_main\_\_} or pass any arguments to it. - -The four {\tt countdown} frames have different values for the -parameter {\tt n}. The bottom of the stack, where {\tt n=0}, is -called the {\bf base case}. It does not make a recursive call, so -there are no more frames. - -\adjustpage{2} -\begin{quote} -{\em As an exercise, draw a stack diagram for {\tt nLines} called with -{\tt n=4}.} -\end{quote} - -\index{base case} -\index{recursion!base case} - - -\section{Infinite recursion} -\index{infinite recursion} -\index{recursion!infinite} -\index{runtime error} -\index{error!runtime} -\index{traceback} - -If a recursion never reaches a base case, it goes on making -recursive calls forever, and the program never terminates. This is -known as {\bf infinite recursion}, and it is generally not considered -a good idea. Here is a minimal program with an infinite recursion: - -\beforeverb -\begin{verbatim} -def recurse(): - recurse() -\end{verbatim} -\afterverb -% -In most programming environments, a program with infinite recursion -does not really run forever. Python reports an error -message when the maximum recursion depth is reached: - -\beforeverb -\begin{verbatim} - File "", line 2, in recurse - (98 repetitions omitted) - File "", line 2, in recurse -RuntimeError: Maximum recursion depth exceeded -\end{verbatim} -\afterverb -% -This traceback is a little bigger than the one we saw in the -previous chapter. When the error occurs, there are 100 -{\tt recurse} frames on the stack! - -\begin{quote} -{\em As an exercise, write a function with infinite recursion and run -it in the Python interpreter.} -\end{quote} - - -\section{Keyboard input} - -The programs we have written so far are a bit rude in the sense that -they accept no input from the user. They just do the same thing every -time. - -Python provides built-in functions that get input from the keyboard. -The simplest is called {\tt raw\_input}. When this function is -called, the program stops and waits for the user to type something. -When the user presses Return or the Enter key, the program resumes and -{\tt raw\_input} returns what the user typed as a {\bf string}: - -\beforeverb -\begin{verbatim} ->>> input = raw_input () -What are you waiting for? ->>> print input -What are you waiting for? -\end{verbatim} -\afterverb -% -Before calling {\tt raw\_input}, it is a good idea to print a message -telling the user what to input. This message is called a {\bf -prompt}. We can supply a prompt as an argument to {\tt raw\_input}: - -\index{prompt} - -\beforeverb -\begin{verbatim} ->>> name = raw_input ("What...is your name? ") -What...is your name? Arthur, King of the Britons! ->>> print name -Arthur, King of the Britons! -\end{verbatim} -\afterverb -% -If we expect the response to be an integer, we can use the -{\tt input} function: - -\beforeverb -\begin{verbatim} -prompt = "What...is the airspeed velocity of an unladen swallow?\n" -speed = input(prompt) -\end{verbatim} -\afterverb -% -The sequence \verb+\n+ at the end of the string represents a newline, -so the user's input appears below the prompt. - -If the user types a string of digits, it is converted to an -integer and assigned to {\tt speed}. Unfortunately, if the user -types a character that is not a digit, the program crashes: - -\beforeverb -\begin{verbatim} ->>> speed = input (prompt) -What...is the airspeed velocity of an unladen swallow? -What do you mean, an African or a European swallow? -SyntaxError: invalid syntax -\end{verbatim} -\afterverb -% -To avoid this kind of error, it is generally a good idea to -use {\tt raw\_input} to get a string and then use conversion -functions to convert to other types. - - -\section{Glossary} - -\begin{description} - -\item[modulus operator:] An operator, denoted with a percent sign -({\tt \%}), that works on integers and yields the remainder when one -number is divided by another. - -\item[boolean expression:] An expression that is either true or false. - -\item[comparison operator:] One of the operators that compares two -values: {\tt ==}, {\tt !=}, {\tt >}, {\tt <}, {\tt >=}, and {\tt <=}. - -\item[logical operator:] One of the operators that combines boolean -expressions: {\tt and}, {\tt or}, and {\tt not}. - -\item[conditional statement:] A statement that controls the flow of -execution depending on some condition. - -\item[condition:] The boolean expression in a conditional statement -that determines which branch is executed. - -\item[compound statement:] A statement that consists of a header -and a body. The header ends with a colon (:). The body is indented -relative to the header. - -\item[block:] A group of consecutive statements with the same -indentation. - -\item[body:] The block in a compound statement that follows the -header. - -\item[nesting:] One program structure within another, such as a -conditional statement inside a branch of another conditional -statement. - -\item[recursion:] The process of calling the function that is -currently executing. - -\item[base case:] A branch of the conditional statement in a -recursive function that does not result in a recursive call. - -\item[infinite recursion:] A function that calls itself recursively -without ever reaching the base case. Eventually, an infinite recursion -causes a runtime error. - -\item[prompt:] A visual cue that tells the user to input data. - -\index{modulus operator} -\index{boolean expression} -\index{expression!boolean} -\index{conditional statement} -\index{statement!conditional} -\index{condition} -\index{compound statement} -\index{branch} -\index{body} -\index{block} -\index{nesting} -\index{recursion} -\index{base case} -\index{infinite recursion} -\index{prompt} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap05.tex b/sciphi/data/stock_raw/learning_with_python/chap05.tex deleted file mode 100644 index 041ab58..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap05.tex +++ /dev/null @@ -1,796 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{Fruitful functions} - -\section{Return values} -\index{return value} - -Some of the built-in functions we have used, such as the math -functions, have produced results. Calling the function generates a -new value, which we usually assign to a variable or use as part of an -expression. - -\beforeverb -\begin{verbatim} -e = math.exp(1.0) -height = radius * math.sin(angle) -\end{verbatim} -\afterverb -% -But so far, none of the functions we have written has returned a -value. - -In this chapter, we are going to write functions that return values, -which we will call {\bf fruitful functions}, for want of a better -name. The first example is {\tt area}, which returns the area of a -circle with the given radius: - -\beforeverb -\begin{verbatim} -import math - -def area(radius): - temp = math.pi * radius**2 - return temp -\end{verbatim} -\afterverb -% -We have seen the {\tt return} statement before, but in a fruitful -function the {\tt return} statement includes -a {\bf return value}. This statement means: ``Return immediately from -this function and use the following expression as a return value.'' -The expression provided can be arbitrarily complicated, so we could -have written this function more concisely: - -\beforeverb -\begin{verbatim} -def area(radius): - return math.pi * radius**2 -\end{verbatim} -\afterverb -% -On the other hand, {\bf temporary variables} like {\tt temp} often make -debugging easier. - -\index{temporary variable} -\index{variable!temporary} - -Sometimes it is useful to have multiple return statements, one in each -branch of a conditional: - -\beforeverb -\begin{verbatim} -def absoluteValue(x): - if x < 0: - return -x - else: - return x -\end{verbatim} -\afterverb -% -Since these {\tt return} statements are in an alternative conditional, -only one will be executed. As soon as one is executed, the function -terminates without executing any subsequent statements. - -Code that appears after a {\tt return} statement, or any other place -the flow of execution can never reach, is called {\bf dead code}. - -\index{dead code} - -In a fruitful function, it is a good idea to ensure -that every possible path through the program hits a -{\tt return} statement. For example: - -\beforeverb -\begin{verbatim} -def absoluteValue(x): - if x < 0: - return -x - elif x > 0: - return x -\end{verbatim} -\afterverb -% -This program is not correct because if {\tt x} happens to be 0, -neither condition is true, and the function ends without hitting a -{\tt return} statement. -In this case, the return value is a special value called -{\tt None}: - -\index{None} - -\beforeverb -\begin{verbatim} ->>> print absoluteValue(0) -None -\end{verbatim} -\afterverb -% -\begin{quote} -\begin{quote} -{\em As an exercise, write a {\tt compare} function -that returns {\tt 1} if {\tt x > y}, -{\tt 0} if {\tt x == y}, and {\tt -1} if {\tt x < y}.} -\end{quote} -\end{quote} - - -\section{Program development} -\label{program development} -\index{scaffolding} - -At this point, you should be able to look at complete functions -and tell what they do. Also, if you have been doing the exercises, -you have written some small functions. As you write -larger functions, you might start to have more difficulty, -especially with runtime and semantic errors. - -To deal with increasingly complex programs, -we are going to suggest a technique called -{\bf incremental development}. The goal of incremental development -is to avoid long debugging sessions by adding and testing only -a small amount of code at a time. - -\index{incremental development} -\index{development!incremental} - -As an example, suppose you want to find the distance between two -points, given by the coordinates $(x_1, y_1)$ and $(x_2, y_2)$. -By the Pythagorean theorem, the distance is: - -\begin{displaymath} -\mathrm{distance} = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} -\end{displaymath} -% -The first step is to consider what a {\tt distance} function should -look like in Python. In other words, what are the inputs (parameters) -and what is the output (return value)? - -In this case, the two points are the inputs, which we can represent -using four parameters. The return value is the distance, which is -a floating-point value. - -Already we can write an outline of the function: - -\beforeverb -\begin{verbatim} -def distance(x1, y1, x2, y2): - return 0.0 -\end{verbatim} -\afterverb -% -Obviously, this version of the function doesn't compute distances; it -always returns zero. But it is syntactically correct, and it will -run, which means that we can test it before we make it more -complicated. - -To test the new function, we call it with sample values: - -\beforeverb -\begin{verbatim} ->>> distance(1, 2, 4, 6) -0.0 -\end{verbatim} -\afterverb -% -We chose these values so that the horizontal distance equals 3 and the -vertical distance equals 4; that way, the result is 5 -(the hypotenuse of a 3-4-5 triangle). When testing a function, it is -useful to know the right answer. - -At this point we have confirmed that the function is syntactically -correct, and we can start adding lines of code. After each -incremental change, we test the function again. If an error occurs at -any point, we know where it must be---in the last line -we added. - -A logical first step in the computation is to find the differences -$x_2 - x_1$ and $y_2 - y_1$. We will store those values in -temporary variables named {\tt dx} and {\tt dy} and print them. - -\beforeverb -\begin{verbatim} -def distance(x1, y1, x2, y2): - dx = x2 - x1 - dy = y2 - y1 - print "dx is", dx - print "dy is", dy - return 0.0 -\end{verbatim} -\afterverb -% -If the function is working, the outputs should be 3 and 4. If so, -we know that the function is getting the right arguments and performing -the first computation correctly. If not, there are only a few lines -to check. - -Next we compute the sum of squares of {\tt dx} and {\tt dy}: - -\beforeverb -\begin{verbatim} -def distance(x1, y1, x2, y2): - dx = x2 - x1 - dy = y2 - y1 - dsquared = dx**2 + dy**2 - print "dsquared is: ", dsquared - return 0.0 -\end{verbatim} -\afterverb -% -Notice that we removed the {\tt print} statements we wrote in the previous -step. Code like that is called {\bf scaffolding} because it is -helpful for building the program but is not part of the final product. - -Again, we would run the program at this stage and check the output -(which should be 25). - -Finally, if we have imported the math module, we can use the -{\tt sqrt} function to compute and return the result: - -\beforeverb -\begin{verbatim} -def distance(x1, y1, x2, y2): - dx = x2 - x1 - dy = y2 - y1 - dsquared = dx**2 + dy**2 - result = math.sqrt(dsquared) - return result -\end{verbatim} -\afterverb -% -If that works correctly, you are done. Otherwise, you might -want to print the value of {\tt result} before the return -statement. - -When you start out, you should add only a line or two of code -at a time. -As you gain more experience, you might find yourself -writing and debugging bigger chunks. Either way, -the incremental development process can save you a lot of debugging -time. - -The key aspects of the process are: - -\begin{enumerate} - -\item Start with a working program and make small incremental changes. -At any point, if there is an error, you will know exactly where it is. - -\item Use temporary variables to hold intermediate values so you can -output and check them. - -\item Once the program is working, you might want to remove some of -the scaffolding or consolidate multiple statements into compound -expressions, but only if it does not make the program difficult to -read. - -\end{enumerate} - -\begin{quote} -{\em As an exercise, use incremental development to write a function -called {\tt hypotenuse} that returns the length of the hypotenuse of a -right triangle given the lengths of the two legs as arguments. -Record each stage of the incremental development process as you go.} -\end{quote} - - -\section{Composition} -\index{composition} -\index{function!composition} - -As you should expect by now, you can call one function from -within another. This ability is called {\bf composition}. - -As an example, we'll write a function that takes two points, -the center of the circle and a point on the perimeter, and computes -the area of the circle. - -Assume that the center point is stored in the variables {\tt xc} and -{\tt yc}, and the perimeter point is in {\tt xp} and {\tt yp}. The -first step is to find the radius of the circle, which is the distance -between the two points. Fortunately, there is a function, {\tt -distance}, that does that: - -\beforeverb -\begin{verbatim} -radius = distance(xc, yc, xp, yp) -\end{verbatim} -\afterverb -% -The second step is to find the area of a circle with that radius and return -it: - -\beforeverb -\begin{verbatim} -result = area(radius) -return result -\end{verbatim} -\afterverb -% -Wrapping that up in a function, we get: - -\beforeverb -\begin{verbatim} -def area2(xc, yc, xp, yp): - radius = distance(xc, yc, xp, yp) - result = area(radius) - return result -\end{verbatim} -\afterverb -% -We called this function {\tt area2} to distinguish it from the {\tt -area} function defined earlier. There can only be one function with a -given name within a given module. - -The temporary variables {\tt radius} and {\tt result} are useful for -development and debugging, but once the program is working, we can -make it more concise by composing the function calls: - -\beforeverb -\begin{verbatim} -def area2(xc, yc, xp, yp): - return area(distance(xc, yc, xp, yp)) -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, write a function {\tt slope(x1, y1, x2, y2)} -that returns the slope of the line through the points $(x1, y1)$ and -$(x2, y2)$. Then use this function in a function called -{\tt intercept(x1, y1, x2, y2)} that returns the y-intercept of the -line through the points {\tt (x1, y1)} and {\tt (x2, y2)}.} -\end{quote} - - -\section{Boolean functions} -\label{boolean} -\index{boolean function} -\index{function!boolean} - -Functions can return boolean values, which is often convenient for hiding -complicated tests inside functions. For example: - -\beforeverb -\begin{verbatim} -def isDivisible(x, y): - if x % y == 0: - return True - else: - return False -\end{verbatim} -\afterverb -% -The name of this function is {\tt isDivisible}. It is common to give -boolean functions names that sound like yes/no questions. {\tt -isDivisible} returns either {\tt True} or {\tt False} to indicate whether the -{\tt x} is or is not divisible by {\tt y}. - -We can make the function more concise by taking advantage of the fact -that the condition of the {\tt if} statement is itself a boolean -expression. We can return it directly, avoiding the {\tt if} -statement altogether: - -\beforeverb -\begin{verbatim} -def isDivisible(x, y): - return x % y == 0 -\end{verbatim} -\afterverb -% -This session shows the new function in action: - -\beforeverb -\begin{verbatim} ->>> isDivisible(6, 4) -False ->>> isDivisible(6, 3) -True -\end{verbatim} -\afterverb -% -Boolean functions are often used in conditional statements: - -\beforeverb -\begin{verbatim} -if isDivisible(x, y): - print "x is divisible by y" -else: - print "x is not divisible by y" -\end{verbatim} -\afterverb -% -It might be tempting to write something like: - -\beforeverb -\begin{verbatim} -if isDivisible(x, y) == True: -\end{verbatim} -\afterverb -% -But the extra comparison is unnecessary. - -\begin{quote} -{\em As an exercise, write a function {\tt isBetween(x, y, z)} that -returns {\tt True} if $y \le x \le z$ or {\tt False} otherwise.} -\end{quote} - - -\section{More recursion} -\index{recursion} -\index{complete language} -\index{language!complete} -\index{Turing, Alan} -\index{Turing Thesis} - -So far, you have only learned a small subset of Python, but you might -be interested to know that this subset is a {\em complete} -programming language, which means that anything that can be -computed can be expressed in this language. Any program ever written -could be rewritten using only the language features you have learned -so far (actually, you would need a few commands to control devices -like the keyboard, mouse, disks, etc., but that's all). - -Proving that claim is a nontrivial exercise first accomplished by Alan -Turing, one of the first computer scientists (some would argue that he -was a mathematician, but a lot of early computer scientists started as -mathematicians). Accordingly, it is known as the Turing Thesis. If -you take a course on the Theory of Computation, you will have a chance -to see the proof. - -\adjustpage{2} - -To give you an idea of what you can do with the tools you have learned -so far, we'll evaluate a few recursively defined mathematical -functions. A recursive definition is similar to a circular -definition, in the sense that the definition contains a reference to -the thing being defined. A truly circular definition is not very -useful: - -\begin{description} - -\item[frabjuous:] An adjective used to describe something that is frabjuous. - -\end{description} - -\index{frabjuous} -\index{circular definition} -\index{definition!circular} - -If you saw that definition in the dictionary, you might be annoyed. On -the other hand, if you looked up the definition of the mathematical -function factorial, you might get something like this: - -\vspace{-0.35in} -\begin{eqnarray*} -&& 0! = 1 \\ -&& n! = n (n-1)! -\end{eqnarray*} -\vspace{-0.25in} - -This definition says that the factorial of 0 is 1, and the factorial -of any other value, $n$, is $n$ multiplied by the factorial of $n-1$. - -So $3!$ is 3 times $2!$, which is 2 times $1!$, which is 1 times -$0!$. Putting it all together, $3!$ equals 3 times 2 times 1 times 1, -which is 6. - -\index{factorial function} -\index{function!factorial} - -If you can write a recursive definition of something, you can usually -write a Python program to evaluate it. The first step is to decide -what the parameters are for this function. With little effort, you -should conclude that {\tt factorial} has a single parameter: - -\beforeverb -\begin{verbatim} -def factorial(n): -\end{verbatim} -\afterverb -% -If the argument happens to be 0, all we have to do is return 1: - -\beforeverb -\begin{verbatim} -def factorial(n): - if n == 0: - return 1 -\end{verbatim} -\afterverb -% -Otherwise, and this is the interesting part, we have to make a -recursive call to find the factorial of $n-1$ and then multiply it by -$n$: - -\beforeverb -\begin{verbatim} -def factorial(n): - if n == 0: - return 1 - else: - recurse = factorial(n-1) - result = n * recurse - return result -\end{verbatim} -\afterverb -% -The flow of execution for this program is similar to the flow of {\tt -countdown} in Section~\ref{recursion}. If we call {\tt factorial} with the -value 3: - -\adjustpage{1} - -Since 3 is not 0, we take the second branch and calculate the factorial -of {\tt n-1}... - -\begin{quote} -Since 2 is not 0, we take the second branch and calculate the factorial of -{\tt n-1}... - - - \begin{quote} - Since 1 is not 0, we take the second branch and calculate the factorial - of {\tt n-1}... - - - \begin{quote} - Since 0 {\em is} 0, we take the first branch and return 1 - without making any more recursive calls. - \end{quote} - - - The return value (1) is multiplied by $n$, which is 1, and the - result is returned. - \end{quote} - - -The return value (1) is multiplied by $n$, which is 2, and the -result is returned. -\end{quote} - - -The return value (2) is multiplied by $n$, which is 3, and the result, 6, -becomes the return value of the function call that started the whole -process. - -Here is what the stack diagram looks like for this sequence of function -calls: - -\vspace{0.1in} -\beforefig -\centerline{\psfig{figure=illustrations/stack3.eps}} -\afterfig -\vspace{0.1in} - -The return values are shown being passed back up the stack. -In each frame, the return value is -the value of {\tt result}, which is the product of {\tt n} -and {\tt recurse}. - -Notice that in the last frame, the local -variables {\tt recurse} and {\tt result} do not exist, because -the branch that creates them did not execute. - - - -\section{Leap of faith} -\index{recursion} -\index{leap of faith} - -Following the flow of execution is one way to read programs, but -it can quickly become labyrinthine. An -alternative is what we call the ``leap of faith.'' When you come to a -function call, instead of following the flow of execution, you {\em -assume} that the function works correctly and returns the appropriate -value. - -In fact, you are already practicing this leap of faith when you use -built-in functions. When you call {\tt math.cos} or {\tt math.exp}, -you don't examine the implementations of those functions. You just -assume that they work because the people who wrote the built-in -functions were good programmers. - -The same is true when you call one of your own functions. For example, -in Section~\ref{boolean}, we wrote a function called {\tt isDivisible} -that determines whether one number is divisible by another. Once we -have convinced ourselves that this function is correct---by testing -and examining the code---we can use the function without looking -at the code again. - -\adjustpage{-1} - -The same is true of recursive programs. When you get to the recursive -call, instead of following the flow of execution, you should assume -that the recursive call works (yields the correct result) and then ask -yourself, ``Assuming that I can find the factorial of $n-1$, can I -compute the factorial of $n$?'' In this case, it is clear that you -can, by multiplying by $n$. - -Of course, it's a bit strange to assume that the function works -correctly when you haven't finished writing it, but that's why -it's called a leap of faith! - - -\section{One more example} -\label{one more example} - -In the previous example, we used temporary variables to spell out -the steps and to make the code easier to debug, but we could have -saved a few lines: - -\beforeverb -\begin{verbatim} -def factorial(n): - if n == 0: - return 1 - else: - return n * factorial(n-1) -\end{verbatim} -\afterverb -% -From now on, we will tend to use the more concise form, but we -recommend that you use the more explicit version while you are developing -code. When you have it working, you can tighten it up if you are -feeling inspired. - -\index{Fibonacci function} - -After {\tt factorial}, the most common example of a recursively defined -mathematical function is {\tt fibonacci}, which has the following definition: - -\vspace{-0.25in} -\begin{eqnarray*} -&& \mathrm{fibonacci}(0) = 1 \\ -&& \mathrm{fibonacci}(1) = 1 \\ -&& \mathrm{fibonacci}(n) = \mathrm{fibonacci}(n-1) + \mathrm{fibonacci}(n-2); -\end{eqnarray*} -% -Translated into Python, it looks like this: - -\beforeverb -\begin{verbatim} -def fibonacci (n): - if n == 0 or n == 1: - return 1 - else: - return fibonacci(n-1) + fibonacci(n-2) -\end{verbatim} -\afterverb -% -If you try to follow the flow of execution here, even for fairly -small values of $n$, your head explodes. But according to the -leap of faith, if you assume that the two recursive calls -work correctly, then it is clear that you get -the right result by adding them together. - -\adjustpage{-1} - -\section{Checking types} -\index{type checking} -\index{error checking} -\index{factorial function} - -What happens if we call {\tt factorial} and give it 1.5 as an argument? - -\beforeverb -\begin{verbatim} ->>> factorial (1.5) -RuntimeError: Maximum recursion depth exceeded -\end{verbatim} -\afterverb -% -It looks like an infinite recursion. But how can that be? There is a -base case---when {\tt n == 0}. The problem is that the values -of {\tt n} {\em miss} the base case. - -\index{infinite recursion} -\index{recursion!infinite} - -In the first recursive call, the value of {\tt n} is 0.5. -In the next, it is -0.5. From there, it gets smaller and -smaller, but it will never be 0. - -We have two choices. We can try to generalize the {\tt factorial} -function to work with floating-point numbers, or we can make -{\tt factorial} check the type of its argument. The first option -is called the gamma function and it's a little beyond the -scope of this book. So we'll go for the -second. - -\index{gamma function} - -We can use the built-in function {\tt isinstance} to verify the type of the -argument. While we're -at it, we also make sure the argument is positive: - -\beforeverb -\begin{verbatim} -def factorial (n): - if not isinstance(n, int): - print "Factorial is only defined for integers." - return -1 - elif n < 0: - print "Factorial is only defined for positive integers." - return -1 - elif n == 0: - return 1 - else: - return n * factorial(n-1) -\end{verbatim} -\afterverb -% -Now we have three base cases. The first catches -nonintegers. The second catches negative integers. In both cases, -the program prints an error message and returns a special value, -1, to -indicate that something went wrong: - -\beforeverb -\begin{verbatim} ->>> factorial ("fred") -Factorial is only defined for integers. --1 ->>> factorial (-2) -Factorial is only defined for positive integers. --1 -\end{verbatim} -\afterverb -% -If we get past both checks, then we know that $n$ is a positive -integer, and we can prove that the recursion terminates. - -This program demonstrates a pattern sometimes called a {\bf guardian}. -The first two conditionals act as guardians, protecting the -code that follows from values that might cause an error. The guardians -make it possible to prove the correctness of the code. - - -\section{Glossary} - -\begin{description} - -\item[fruitful function:] A function that yields a return value. - -\item[return value:] The value provided as the result of a function call. - -\item[temporary variable:] A variable used to store an intermediate value in -a complex calculation. - -\item[dead code:] Part of a program that can never be executed, often because -it appears after a {\tt return} statement. - -\item[{\tt None}:] A special Python value returned by functions that -have no return statement, or a return statement without an argument. - -\item[incremental development:] A program development plan intended to -avoid debugging by adding and testing only -a small amount of code at a time. - -\item[scaffolding:] Code that is used during program development but is -not part of the final version. - -\item[guardian:] A condition that checks for and handles circumstances that -might cause an error. - -\index{temporary variable} -\index{variable!temporary} -\index{return value} -\index{dead code} -\index{None} -\index{incremental development} -\index{scaffolding} -\index{guardian} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap06.tex b/sciphi/data/stock_raw/learning_with_python/chap06.tex deleted file mode 100644 index 7350c9a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap06.tex +++ /dev/null @@ -1,777 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{Iteration} -\index{iteration} - - -\section{Multiple assignment} -\index{assignment} -\index{statement!assignment} -\index{multiple assignment} - -As you may have discovered, it is legal to -make more than one assignment to the same variable. A -new assignment makes an existing variable refer to a new -value (and stop referring to the old value). - -\beforeverb -\begin{verbatim} -bruce = 5 -print bruce, -bruce = 7 -print bruce -\end{verbatim} -\afterverb -% -The output of this program is {\tt 5 7}, because the first time -{\tt bruce} is printed, his value is 5, and the second time, his -value is 7. The -comma at the end of the first {\tt print} statement suppresses -the newline after the output, which is why both outputs -appear on the same line. - -Here is what {\bf multiple assignment} looks like in a state diagram: - -\beforefig -\centerline{\psfig{figure=illustrations/assign2.eps}} -\afterfig - -With multiple assignment it is especially important to distinguish -between an assignment operation and a statement of equality. Because -Python uses the equal sign ({\tt =}) for assignment, it is tempting to -interpret a statement like {\tt a = b} as a statement of equality. It -is not! - -First, equality is commutative and assignment is not. For -example, in mathematics, if $a = 7$ then $7 = a$. But in Python, the -statement {\tt a = 7} is legal and {\tt 7 = a} is not. - -Furthermore, in mathematics, a statement of equality is always true. -If $a = b$ now, then $a$ will always equal $b$. In Python, an -assignment statement can make two variables equal, but they don't have -to stay that way: - -\beforeverb -\begin{verbatim} -a = 5 -b = a # a and b are now equal -a = 3 # a and b are no longer equal -\end{verbatim} -\afterverb -% -The third line changes the value of {\tt a} but does not change the -value of {\tt b}, so they are no longer equal. (In some -programming languages, a different symbol is used for assignment, -such as {\tt <-} or {\tt :=}, to avoid confusion.) - -Although multiple assignment is frequently helpful, you should use it -with caution. If the values of variables change frequently, it can -make the code difficult to read and debug. - - -\section{The {\tt while} statement} -\index{while statement} -\index{statement!while} -\index{loop!while} -\index{iteration} - -Computers are often used to automate repetitive tasks. Repeating -identical or similar tasks without making errors is something that -computers do well and people do poorly. - -We have seen two programs, {\tt nLines} and {\tt countdown}, that use -recursion to perform repetition, which is also called {\bf iteration}. -Because iteration is so common, Python provides several language -features to make it easier. The first feature we are going to look -at is the {\tt while} statement. - -Here is what {\tt countdown} looks like with a -{\tt while} statement: - -\beforeverb -\begin{verbatim} -def countdown(n): - while n > 0: - print n - n = n-1 - print "Blastoff!" -\end{verbatim} -\afterverb -% -Since we removed the recursive call, this function is not -recursive. - -You can almost read the {\tt while} statement as if it were English. -It means, ``While {\tt n} is greater than 0, continue -displaying the value of {\tt n} and then reducing the value of -{\tt n} by 1. When you get to 0, display the word {\tt Blastoff!}'' - -More formally, here is the flow of execution for a {\tt while} statement: - -\begin{enumerate} - -\item Evaluate the condition, yielding {\tt 0} or {\tt 1}. - -\item If the condition is false (0), exit the {\tt while} statement -and continue execution at the next statement. - -\item If the condition is true (1), execute each of the statements in the -body and then go back to step 1. - -\end{enumerate} - -The body consists of all of the statements below the header -with the same indentation. - -This type of flow is called a {\bf loop} because the third step -loops back around to the top. Notice that if the condition is false -the first time through the loop, the statements inside the loop are -never executed. - -\index{condition} -\index{loop} -\index{loop!body} -\index{body!loop} -\index{infinite loop} -\index{loop!infinite} - -The body of the loop should change the value of one or more variables -so that eventually the condition becomes false and the loop -terminates. Otherwise the loop will repeat forever, which is called -an {\bf infinite loop}. An endless source of amusement for computer -scientists is the observation that the directions on shampoo, -``Lather, rinse, repeat,'' are an infinite loop. - -In the case of {\tt countdown}, we can prove that the loop -terminates because we know that the value of {\tt n} is finite, and we -can see that the value of {\tt n} gets smaller each time through the -loop, so eventually we have to get to 0. In other -cases, it is not so easy to tell: - -\beforeverb -\begin{verbatim} -def sequence(n): - while n != 1: - print n, - if n%2 == 0: # n is even - n = n/2 - else: # n is odd - n = n*3+1 -\end{verbatim} -\afterverb -% -The condition for this loop is {\tt n != 1}, so the loop will continue until -{\tt n} is {\tt 1}, which will make the condition false. - -Each time through the loop, the program outputs the value of {\tt n} -and then checks whether it is even or odd. If it is even, the value -of {\tt n} is divided by 2. If it is odd, the value is replaced by -{\tt n*3+1}. For example, if the starting value (the argument passed -to {\tt sequence}) is 3, the resulting sequence is 3, 10, 5, 16, 8, 4, 2, 1. - -Since {\tt n} sometimes increases and sometimes decreases, there is no -obvious proof that {\tt n} will ever reach 1, or that the program -terminates. For some particular values of {\tt n}, we can prove -termination. For example, if the starting value is a power of two, -then the value of {\tt n} will be even each time through the loop -until it reaches 1. The previous example ends with such a sequence, -starting with 16. - -Particular values aside, the interesting question is whether we can -prove that this program terminates for {\em all positive values} of {\tt n}. -So far, no one has been able to prove it {\em or} disprove it! - -\begin{quote} -{\em As an exercise, rewrite the function {\tt nLines} from -Section~\ref{recursion} using iteration instead of recursion.} -\end{quote} - - -\section{Tables} -\label{tables} -\index{table} -\index{logarithm} - -One of the things loops are good for is generating tabular data. -Before computers were readily available, people had to calculate -logarithms, sines and cosines, and other mathematical functions -by hand. To make that easier, mathematics books contained long tables -listing the values of these functions. Creating the tables was -slow and boring, and they tended to be full of errors. - -When computers appeared on the scene, one of the initial reactions -was, ``This is great! We can use the computers to generate the tables, -so there will be no errors.'' That turned out to be true (mostly) but -shortsighted. Soon thereafter, computers and calculators were so -pervasive that the tables became obsolete. - -Well, almost. For some operations, computers use -tables of values to get an approximate answer and then perform -computations to improve the approximation. In some cases, there have -been errors in the underlying tables, most famously in the table the -Intel Pentium used to perform floating-point division. - -\index{Intel} -\index{Pentium} - -Although a log table is not as useful as it once was, it still makes -a good example of iteration. The following program outputs a sequence -of values in the left column and their logarithms in the right column: - -\beforeverb -\begin{verbatim} -x = 1.0 -while x < 10.0: - print x, '\t', math.log(x) - x = x + 1.0 -\end{verbatim} -\afterverb -% -The string -\verb+'\t'+ represents a {\bf tab} -character. - -As characters and strings are displayed on the screen, -an invisible marker called the {\bf cursor} keeps track of -where the next character will go. After a {\tt print} statement, the -cursor normally goes to the beginning of the next line. - -The tab character shifts the cursor to the right until it -reaches one of the tab stops. Tabs are useful for making columns of -text line up, as in the output of the previous program: - -\beforeverb -\begin{verbatim} -1.0 0.0 -2.0 0.69314718056 -3.0 1.09861228867 -4.0 1.38629436112 -5.0 1.60943791243 -6.0 1.79175946923 -7.0 1.94591014906 -8.0 2.07944154168 -9.0 2.19722457734 -\end{verbatim} -\afterverb -% -If these values seem odd, remember that the {\tt log} function uses -base {\tt e}. Since powers of two are so important in computer -science, we often want to find logarithms with respect to base 2. To -do that, we can use the following formula: - -\begin{displaymath} -\log_2 x = \frac {\log_e x}{\log_e 2} -\end{displaymath} - -Changing the output statement to: - -\beforeverb -\begin{verbatim} - print x, '\t', math.log(x)/math.log(2.0) -\end{verbatim} -\afterverb -% -yields: - -\beforeverb -\begin{verbatim} -1.0 0.0 -2.0 1.0 -3.0 1.58496250072 -4.0 2.0 -5.0 2.32192809489 -6.0 2.58496250072 -7.0 2.80735492206 -8.0 3.0 -9.0 3.16992500144 -\end{verbatim} -\afterverb -% -We can see that 1, 2, 4, and 8 are powers of two because their -logarithms base 2 are round numbers. If we wanted to find the -logarithms of other powers of two, we could modify the program like -this: - -\beforeverb -\begin{verbatim} -x = 1.0 -while x < 100.0: - print x, '\t', math.log(x)/math.log(2.0) - x = x * 2.0 -\end{verbatim} -\afterverb -% -Now instead of adding something to {\tt x} each time through the loop, which -yields an arithmetic sequence, we multiply {\tt x} by something, yielding a -geometric sequence. The result is: - -\index{arithmetic sequence} -\index{geometric sequence} - -\beforeverb -\begin{verbatim} -1.0 0.0 -2.0 1.0 -4.0 2.0 -8.0 3.0 -16.0 4.0 -32.0 5.0 -64.0 6.0 -\end{verbatim} -\afterverb -% -Because of the tab characters between the columns, the position of the -second column does not depend on the number of digits in the first -column. - -Logarithm tables may not be useful any more, but for computer -scientists, knowing the powers of two is! - -\begin{quote} -{\em As an exercise, modify this program so that it outputs the powers -of two up to 65,536 (that's $2^{16}$). Print it out and memorize it.} -\end{quote} - -\index{escape sequence} - -The backslash character in \verb+'\t'+ indicates the -beginning of an {\bf escape sequence}. Escape sequences -are used to represent invisible characters like -tabs and newlines. The sequence \verb+\n+ represents a newline. - -An escape sequence can appear -anywhere in a string; in the example, the tab escape -sequence is the only thing in the string. - -How do you think you represent a backslash in a string? - -\begin{quote} -{\em As an exercise, write a single string that - -\beforeverb -\begin{verbatim} -produces - this - output. -\end{verbatim} -\afterverb - -} -\end{quote} - - -\section{Two-dimensional tables} -\index{table!two-dimensional} - -A two-dimensional table is a table where you -read the value at the intersection of a row and a column. A -multiplication table is a good example. -Let's say you want to print a multiplication table for the values -from 1 to 6. - -A good way to start is to write a loop that prints the multiples of -2, all on one line: - -\beforeverb -\begin{verbatim} -i = 1 -while i <= 6: - print 2*i, ' ', - i = i + 1 -print -\end{verbatim} -\afterverb -% -The first line initializes a variable named {\tt i}, which acts as a -counter or {\bf loop variable}. As the loop executes, the value of -{\tt i} increases from 1 to 6. When {\tt i} is 7, the loop -terminates. Each time through the loop, it displays the value of {\tt -2*i}, followed by three spaces. - -Again, the comma in the {\tt print} statement suppresses the newline. -After the loop completes, the second {\tt print} statement starts a -new line. - -The output of the program is: - -\beforeverb -\begin{verbatim} -2 4 6 8 10 12 -\end{verbatim} -\afterverb -% -So far, so good. The next step is to {\bf encapsulate} and {\bf generalize}. - - -\section{Encapsulation and generalization} -\label{encapsulation} -\index{encapsulation} -\index{generalization} -\index{program development!encapsulation} -\index{program development!generalization} - -Encapsulation is the process of wrapping a piece of code in a -function, allowing you to take advantage of all the things functions -are good for. You have seen two examples of encapsulation: -{\tt printParity} in Section~\ref{alternative execution}; and -{\tt isDivisible} in Section~\ref{boolean}. - -Generalization means taking something specific, such as printing the -multiples of 2, and making it more general, such as printing the -multiples of any integer. - -This function encapsulates the previous loop and -generalizes it to print multiples of {\tt n}: - -\beforeverb -\begin{verbatim} -def printMultiples(n): - i = 1 - while i <= 6: - print n*i, '\t', - i = i + 1 - print -\end{verbatim} -\afterverb -% -To encapsulate, all we had to do was add the first line, which -declares the name of the function and the parameter list. To -generalize, all we had to do was replace the value 2 with the -parameter {\tt n}. - -If we call this function with the argument 2, we get the same output as -before. With the argument 3, the output is: - -\beforeverb -\begin{verbatim} -3 6 9 12 15 18 -\end{verbatim} -\afterverb -% -With the argument 4, the output is: - -\beforeverb -\begin{verbatim} -4 8 12 16 20 24 -\end{verbatim} -\afterverb -% -By now you can probably guess how to print a multiplication table---by -calling {\tt printMultiples} repeatedly with different arguments. In -fact, we can use another loop: - -\beforeverb -\begin{verbatim} -i = 1 -while i <= 6: - printMultiples(i) - i = i + 1 -\end{verbatim} -\afterverb -% -Notice how similar this loop is to the one inside -{\tt printMultiples}. All we did was replace the {\tt print} statement with -a function call. - -The output of this program is a multiplication table: - -\beforeverb -\begin{verbatim} -1 2 3 4 5 6 -2 4 6 8 10 12 -3 6 9 12 15 18 -4 8 12 16 20 24 -5 10 15 20 25 30 -6 12 18 24 30 36 -\end{verbatim} -\afterverb -% - - -\section{More encapsulation} - -To demonstrate encapsulation again, let's take the code from the end of -Section~\ref{encapsulation} and wrap it up in a function: - -\beforeverb -\begin{verbatim} -def printMultTable(): - i = 1 - while i <= 6: - printMultiples(i) - i = i + 1 -\end{verbatim} -\afterverb -% -This process is a common {\bf development plan}. We develop code by -writing lines of code outside any function, or typing them in to the -interpreter. When we get the code working, we extract it and wrap it -up in a function. - -This development plan is particularly useful if you don't know, when -you start writing, how to divide the program into functions. This -approach lets you design as you go along. - -\adjustpage{-2} -\pagebreak - -\section{Local variables} -\index{variable!local} -\index{local variable} - -You might be wondering how we can use the same variable, {\tt i}, in -both {\tt printMultiples} and {\tt printMultTable}. Doesn't it cause -problems when one of the functions changes the value of the variable? - -The answer is no, because the {\tt i} in {\tt printMultiples} and the -{\tt i} in {\tt printMultTable} are {\em not} the same variable. - -Variables created inside a function definition are local; you can't -access a local variable from outside its ``home'' function. That -means you are free to have multiple variables with the same name as -long as they are not in the same function. - -The stack diagram for this program shows that the two -variables named {\tt i} are not the same variable. They can refer to -different values, and changing one does not affect the other. - -\beforefig -\centerline{\psfig{figure=illustrations/stack4.eps}} -\afterfig - -The value of {\tt i} in {\tt printMultTable} goes from 1 to 6. In the -diagram it happens to be 3. The next time through the loop it will -be 4. Each time through the loop, {\tt printMultTable} calls -{\tt printMultiples} with the current value of {\tt i} as an -argument. That value gets assigned to the parameter {\tt n}. - -Inside {\tt printMultiples}, the value of {\tt i} goes from -1 to 6. In the diagram, it happens to be 2. Changing this variable -has no effect on the value of {\tt i} in {\tt printMultTable}. - -It is common and perfectly legal to have different local variables -with the same name. In particular, names like {\tt i} and {\tt j} are -used frequently as loop variables. If you avoid -using them in one function just because you used them somewhere else, -you will probably make the program harder to read. - - -\adjustpage{-2} -\pagebreak - -\section{More generalization} - -As another example of generalization, imagine you wanted a program -that would print a multiplication table of any size, not just the -six-by-six table. You could add a parameter to {\tt printMultTable}: - -\beforeverb -\begin{verbatim} -def printMultTable(high): - i = 1 - while i <= high: - printMultiples(i) - i = i + 1 -\end{verbatim} -\afterverb -% -We replaced the value 6 with the parameter {\tt high}. If we call -{\tt printMultTable} with the argument 7, it displays: - -\beforeverb -\begin{verbatim} -1 2 3 4 5 6 -2 4 6 8 10 12 -3 6 9 12 15 18 -4 8 12 16 20 24 -5 10 15 20 25 30 -6 12 18 24 30 36 -7 14 21 28 35 42 -\end{verbatim} -\afterverb -% -This is fine, except that we probably want the table to be -square---with the same number of rows and columns. To do that, we -add another parameter to {\tt printMultiples} to specify how many -columns the table should have. - -Just to be annoying, we call this parameter {\tt high}, demonstrating -that different functions can have parameters with the same name (just like -local variables). Here's the whole program: - -\beforeverb -\begin{verbatim} -def printMultiples(n, high): - i = 1 - while i <= high: - print n*i, '\t', - i = i + 1 - print - -def printMultTable(high): - i = 1 - while i <= high: - printMultiples(i, high) - i = i + 1 -\end{verbatim} -\afterverb -% -Notice that when we added a new parameter, we had to change the first line -of the function (the function heading), and we also had to change the place -where the function is called in {\tt printMultTable}. - -As expected, this program generates a square seven-by-seven table: - -\beforeverb -\begin{verbatim} -1 2 3 4 5 6 7 -2 4 6 8 10 12 14 -3 6 9 12 15 18 21 -4 8 12 16 20 24 28 -5 10 15 20 25 30 35 -6 12 18 24 30 36 42 -7 14 21 28 35 42 49 -\end{verbatim} -\afterverb -% -When you generalize a function appropriately, you often get -a program with capabilities you didn't plan. For -example, you might -notice that, because $ab = ba$, -all the entries in the table appear twice. You could save ink by printing -only half the table. To do that, you only have to change one line of -{\tt printMultTable}. Change - -\beforeverb -\begin{verbatim} - printMultiples(i, high) -\end{verbatim} -\afterverb -% -to - -\beforeverb -\begin{verbatim} - printMultiples(i, i) -\end{verbatim} -\afterverb -% -and you get - -\beforeverb -\begin{verbatim} -1 -2 4 -3 6 9 -4 8 12 16 -5 10 15 20 25 -6 12 18 24 30 36 -7 14 21 28 35 42 49 -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, trace the execution of this version of -{\tt printMultTable} and figure out how it works.} -\end{quote} - - -\section{Functions} -\index{function} - -A few times now, we have mentioned ``all the things functions are good -for.'' By now, you might be wondering what exactly those things are. -Here are some of them: - -\begin{itemize} - -\item Giving a name to a sequence of statements makes your program -easier to read and debug. - -\item Dividing a long program into functions allows you to separate parts of -the program, debug them in isolation, and then compose them into a whole. - -\item Functions facilitate both recursion and iteration. - -\item Well-designed functions are often useful for many programs. Once you -write and debug one, you can reuse it. - -\end{itemize} - - -\section{Glossary} - -\begin{description} - -\item[multiple assignment:] Making more than one assignment to the same -variable during the execution of a program. - -\item[iteration:] Repeated execution of a set of statements using -either a recursive function call or a loop. - -\item[loop:] A statement or group of statements that execute repeatedly until -a terminating condition is satisfied. - -\item[infinite loop:] A loop in which the terminating condition is -never satisfied. - -\item[body:] The statements inside a loop. - -\item[loop variable:] A variable used as part of the terminating -condition of a loop. - -\item[tab:] A special character that causes the cursor to move to -the next tab stop on the current line. - -\item[newline:] A special character that causes the cursor to move to the -beginning of the next line. - -\item[cursor:] An invisible marker that keeps track of where the next -character will be printed. - -\item[escape sequence:] An escape character ($\backslash$) followed by one or -more printable characters used to designate a nonprintable character. - -\item[encapsulate:] To divide a large complex program into components -(like functions) and isolate the components from each other (by -using local variables, for example). - -\item[generalize:] To replace something unnecessarily specific (like a constant -value) with something appropriately general (like a variable or parameter). -Generalization makes code more versatile, more likely to be reused, and -sometimes even easier to write. - -\item[development plan:] A process for developing a program. In this chapter, -we demonstrated a style of development based on developing code to do -simple, specific things and then encapsulating and generalizing. - -\index{multiple assignment} -\index{assignment!multiple } -\index{iteration} -\index{loop!body} -\index{loop} -\index{infinite loop} -\index{escape sequence} -\index{cursor} -\index{tab} -\index{newline} -\index{loop variable} -\index{encapsulate} -\index{generalize} -\index{development plan} -\index{program!development} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap07.tex b/sciphi/data/stock_raw/learning_with_python/chap07.tex deleted file mode 100644 index f8443fd..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap07.tex +++ /dev/null @@ -1,651 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -\chapter{Strings} -\label{strings} - - -\section{A compound data type} -\index{compound data type} -\index{data type!compound} - -So far we have seen three types: {\tt int}, {\tt float}, and {\tt -string}. Strings are qualitatively different from the -other two because they are made up of smaller pieces---characters. - -\index{character} - -Types that comprise smaller pieces are called {\bf compound data -types}. Depending on what we are doing, we may want to treat a -compound data type as a single thing, or we may want to access its -parts. This ambiguity is useful. - -\index{bracket operator} -\index{operator!bracket} - -The bracket operator selects a single character from a string. - -\beforeverb -\begin{verbatim} ->>> fruit = "banana" ->>> letter = fruit[1] ->>> print letter -\end{verbatim} -\afterverb -% -The expression {\tt fruit[1]} selects character number 1 from {\tt -fruit}. The variable {\tt letter} refers to the result. When we -display {\tt letter}, we get a surprise: - -\beforeverb -\begin{verbatim} -a -\end{verbatim} -\afterverb -% -The first letter of {\tt "banana"} is not {\tt a}. Unless you are a -computer scientist. In that case you should think of the expression in -brackets as an offset from the beginning of the string, and the offset -of the first letter is zero. So {\tt b} is the 0th letter -(``zero-eth'') of {\tt "banana"}, {\tt a} is the 1th letter -(``one-eth''), and {\tt n} is the 2th (``two-eth'') letter. - -To get the first letter of a string, you just put 0, or -any expression with the value 0, in the brackets: - -\beforeverb -\begin{verbatim} ->>> letter = fruit[0] ->>> print letter -b -\end{verbatim} -\afterverb -% -The expression in brackets is called an {\bf index}. An index -specifies a member of an ordered set, in this case the set of -characters in the string. The index {\em indicates} which one you -want, hence the name. It can be any integer expression. - -\index{index} - - -\section{Length} -\index{string!length} -\index{runtime error} - -The {\tt len} function returns the number of characters in a string: - -\beforeverb -\begin{verbatim} ->>> fruit = "banana" ->>> len(fruit) -6 -\end{verbatim} -\afterverb -% -To get the last letter of a string, you might be tempted to try something -like this: - -\beforeverb -\begin{verbatim} -length = len(fruit) -last = fruit[length] # ERROR! -\end{verbatim} -\afterverb -% -That won't work. It causes the runtime error {\tt IndexError: string -index out of range}. The reason is that there is no 6th letter in -{\tt "banana"}. Since we started counting at zero, the six letters -are numbered 0 to 5. To get the last character, we have to subtract -1 from {\tt length}: - -\index{runtime error} - -\beforeverb -\begin{verbatim} -length = len(fruit) -last = fruit[length-1] -\end{verbatim} -\afterverb -% -Alternatively, we can use negative indices, which count backward from the end -of the string. The expression {\tt fruit[-1]} yields the last letter, -{\tt fruit[-2]} yields the second to last, and so on. - -\index{index!negative} - - -\section{Traversal and the {\tt for} loop} -\label{for} -\index{traversal} -\index{loop!traversal} -\index{for loop} -\index{loop!for loop} - -A lot of computations involve processing a string one character at a -time. Often they start at the beginning, select each character in -turn, do something to it, and continue until the end. This pattern of -processing is called a {\bf traversal}. One way to encode a traversal -is with a {\tt while} statement: - -\adjustpage{2} -\beforeverb -\begin{verbatim} -index = 0 -while index < len(fruit): - letter = fruit[index] - print letter - index = index + 1 -\end{verbatim} -\afterverb -% -This loop traverses the string and displays each letter on a line by -itself. The loop condition is {\tt index < len(fruit)}, so -when {\tt index} is equal to the length of the string, the -condition is false, and the body of the loop is not executed. The -last character accessed is the one with the index {\tt len(fruit)-1}, -which is the last character in the string. - -\begin{quote} -{\em As an exercise, write a function that takes a string as an argument -and outputs the letters backward, one per line.} -\end{quote} - -Using an index to -traverse a set of values is so common that -Python provides an alternative, simpler syntax---the {\tt for} loop: - -\beforeverb -\begin{verbatim} -for char in fruit: - print char -\end{verbatim} -\afterverb -% -Each time through the loop, the next character in the string is assigned -to the variable {\tt char}. The loop continues until no characters are -left. - -\index{concatenation} -\index{abecedarian} -\index{McCloskey, Robert} -\index{{\em Make Way for Ducklings}} - -The following example shows how to use concatenation and a {\tt -for} loop to generate an abecedarian series. ``Abecedarian'' refers -to a series or list in which the elements appear in alphabetical -order. For example, in Robert McCloskey's book {\em Make Way for -Ducklings}, the names of the ducklings are Jack, Kack, Lack, Mack, -Nack, Ouack, Pack, and Quack. This loop outputs these names in order: - -\beforeverb -\begin{verbatim} -prefixes = "JKLMNOPQ" -suffix = "ack" - -for letter in prefixes: - print letter + suffix -\end{verbatim} -\afterverb -% -The output of this program is: - -\beforeverb -\begin{verbatim} -Jack -Kack -Lack -Mack -Nack -Oack -Pack -Qack -\end{verbatim} -\afterverb -% -Of course, that's not quite right because ``Ouack'' and -``Quack'' are misspelled. - -\begin{quote} -{\em As an exercise, modify the program to fix this error.} -\end{quote} - - -\section{String slices} -\label{slice} -\index{slice} -\index{string!slice} - -A segment of a string is called a -{\bf slice}. Selecting a slice is similar to -selecting a character: - -\beforeverb -\begin{verbatim} ->>> s = "Peter, Paul, and Mary" ->>> print s[0:5] -Peter ->>> print s[7:11] -Paul ->>> print s[17:21] -Mary -\end{verbatim} -\afterverb -% -The operator {\tt [n:m]} returns the part of the string from the -``n-eth'' character to the ``m-eth'' character, including the first but -excluding the last. This behavior is counterintuitive; it makes -more sense if you imagine the indices pointing {\em between} the -characters, as in the following diagram: - -\beforefig -\centerline{\psfig{figure=illustrations/banana.eps}} -\afterfig - -If you omit the first index (before the colon), the slice starts at the -beginning of the string. If you omit the second index, the slice goes to the -end of the string. Thus: - -\beforeverb -\begin{verbatim} ->>> fruit = "banana" ->>> fruit[:3] -'ban' ->>> fruit[3:] -'ana' -\end{verbatim} -\afterverb -% -What do you think {\tt s[:]} means? - - -\section{String comparison} -\index{string comparison} -\index{comparison!string} - -The comparison operators work on -strings. To see if two strings are equal: - -\beforeverb -\begin{verbatim} -if word == "banana": - print "Yes, we have no bananas!" -\end{verbatim} -\afterverb -% -\adjustpage{-2} -\pagebreak - -Other comparison operations are useful for putting words in alphabetical -order: - -\beforeverb -\begin{verbatim} -if word < "banana": - print "Your word," + word + ", comes before banana." -elif word > "banana": - print "Your word," + word + ", comes after banana." -else: - print "Yes, we have no bananas!" -\end{verbatim} -\afterverb -% -You should be aware, though, that Python does not handle upper- -and lowercase letters the same way that people do. All the uppercase -letters come before all the lowercase letters. As a result: - -\beforeverb -\begin{verbatim} -Your word, Zebra, comes before banana. -\end{verbatim} -\afterverb -% -A common way to address this problem is to convert strings to a standard -format, such as all lowercase, before performing the comparison. A more -difficult problem is making the program realize that zebras are not fruit. - - -\section{Strings are immutable} -\index{mutable} -\index{immutable string} -\index{string!immutable} - -It is tempting to use the {\tt []} operator on the left side of an -assignment, with the intention of changing a character in a string. -For example: - -\beforeverb -\begin{verbatim} -greeting = "Hello, world!" -greeting[0] = 'J' # ERROR! -print greeting -\end{verbatim} -\afterverb -% -Instead of producing the output {\tt Jello, world!}, this code -produces the runtime error {\tt TypeError: object doesn't support item -assignment}. - -\index{runtime error} - -Strings are {\bf immutable}, which means you can't change an -existing string. The best you can do is create a new string -that is a variation on the original: - -\beforeverb -\begin{verbatim} -greeting = "Hello, world!" -newGreeting = 'J' + greeting[1:] -print newGreeting -\end{verbatim} -\afterverb -% -The solution here is to concatenate a new first letter onto -a slice of {\tt greeting}. This operation has no effect on -the original string. - -\index{concatenation} - -\adjustpage{-2} -\pagebreak - -\section{A {\tt find} function} -\label{find} -\index{traversal} -\index{eureka traversal} -\index{pattern} -\index{computational pattern} - -What does the following function do? - -\beforeverb -\begin{verbatim} -def find(str, ch): - index = 0 - while index < len(str): - if str[index] == ch: - return index - index = index + 1 - return -1 -\end{verbatim} -\afterverb -% -In a sense, {\tt find} is the opposite of the {\tt []} operator. -Instead of taking an index and extracting the corresponding character, -it takes a character and finds the index where that character -appears. If the character is not found, the function returns {\tt --1}. - -This is the first example we have seen of a {\tt return} statement -inside a loop. -If {\tt str[index] == ch}, the function returns -immediately, breaking out of the loop prematurely. - -If the character doesn't appear in the string, then the program -exits the loop normally and -returns {\tt -1}. - -This pattern of computation is sometimes called a ``eureka'' traversal -because as soon as we find what we are looking for, we can cry -``Eureka!'' and stop looking. - -\begin{quote} -{\em As an exercise, modify the {\tt find} function so that it has a -third parameter, the index in the string where it should start -looking.} -\end{quote} - - -\section{Looping and counting} -\label{counter} -\index{counter} -\index{pattern} - -The following program counts the number of times the letter {\tt a} -appears in a string: - -\beforeverb -\begin{verbatim} -fruit = "banana" -count = 0 -for char in fruit: - if char == 'a': - count = count + 1 -print count -\end{verbatim} -\afterverb -% -This program demonstrates another pattern of computation called a {\bf -counter}. The variable {\tt count} is initialized to 0 and then -incremented each time an {\tt a} is found. (To {\bf increment} is to -increase by one; it is the opposite of {\bf decrement}, and unrelated -to ``excrement,'' which is a noun.) When the loop exits, {\tt count} -contains the result---the total number of {\tt a}'s. - -\begin{quote} -{\em As an exercise, encapsulate this code in a function named {\tt -countLetters}, and generalize it so that it accepts the string and the -letter as arguments.} -\end{quote} - -\begin{quote} -{\em As a second exercise, rewrite this function so that instead of -traversing the string, it uses the three-parameter version of {\tt -find} from the previous.} -\end{quote} - - -\section{The {\tt string} module} -\index{module} -\index{string module} - -The {\tt string} module contains useful functions that -manipulate strings. As usual, we have to import the module before -we can use it: - -\beforeverb -\begin{verbatim} ->>> import string -\end{verbatim} -\afterverb -% -The {\tt string} module includes a function named {\tt find} that does -the same thing as the function we wrote. To call it we have to -specify the name of the module and the name of the function using dot -notation. - -\beforeverb -\begin{verbatim} ->>> fruit = "banana" ->>> index = string.find(fruit, "a") ->>> print index -1 -\end{verbatim} -\afterverb -% -This example demonstrates one of the benefits of modules---they help -avoid collisions between the names of built-in functions and -user-defined functions. By using dot notation we can specify which -version of {\tt find} we want. - -Actually, {\tt string.find} is more general than our version. First, -it can find substrings, not just characters: - -\beforeverb -\begin{verbatim} ->>> string.find("banana", "na") -2 -\end{verbatim} -\afterverb -% -Also, it takes an additional argument that specifies the index it -should start at: - -\beforeverb -\begin{verbatim} ->>> string.find("banana", "na", 3) -4 -\end{verbatim} -\afterverb -% -Or it can take two additional arguments that specify a range -of indices: - -\beforeverb -\begin{verbatim} ->>> string.find("bob", "b", 1, 2) --1 -\end{verbatim} -\afterverb -% -In this example, the search fails because the letter {\em b} does not -appear in the index range from {\tt 1} to {\tt 2} (not including {\tt -2}). - - -\section{Character classification} -\label{in} -\index{character classification} -\index{classification!character} -\index{uppercase} -\index{lowercase} -\index{whitespace} - -It is often helpful to examine a character and test whether it is -upper- or lowercase, or whether it is a character or a digit. The -{\tt string} module provides several constants that are -useful for these purposes. - -The string {\tt string.lowercase} contains all of the letters that the -system considers to be lowercase. Similarly, {\tt string.uppercase} -contains all of the uppercase letters. Try the following and see what -you get: - -\beforeverb -\begin{verbatim} ->>> print string.lowercase ->>> print string.uppercase ->>> print string.digits -\end{verbatim} -\afterverb -% -We can use these constants and {\tt find} to classify characters. For -example, if {\tt find(lowercase, ch)} returns a value other than {\tt --1}, then {\tt ch} must be lowercase: - -\beforeverb -\begin{verbatim} -def isLower(ch): - return string.find(string.lowercase, ch) != -1 -\end{verbatim} -\afterverb -% -Alternatively, we can take advantage of the {\tt in} operator, which -determines whether a character appears in a string: - -\beforeverb -\begin{verbatim} -def isLower(ch): - return ch in string.lowercase -\end{verbatim} -\afterverb -% -As yet another alternative, we can use the comparison operator: - -\beforeverb -\begin{verbatim} -def isLower(ch): - return 'a' <= ch <= 'z' -\end{verbatim} -\afterverb -% -If {\tt ch} is between {\em a} and {\em z}, it must be a lowercase -letter. - -\begin{quote} -{\em As an exercise, discuss which version of {\tt isLower} you think -will be fastest. Can you think of other reasons besides speed to -prefer one or the other?} -\end{quote} - -Another constant defined in the {\tt string} module may -surprise you when you print it: - -\beforeverb -\begin{verbatim} ->>> print string.whitespace -\end{verbatim} -\afterverb -% -{\bf Whitespace} characters move the cursor without printing -anything. They create the white space between visible -characters (at least on white paper). The constant -{\tt string.whitespace} contains all the -whitespace characters, including -space, tab (\verb+\t+), and newline -(\verb+\n+). - -\index{string module} -\index{module!string} - -There are other useful functions in the {\tt string} module, but this -book isn't intended to be a reference manual. On the other hand, the -{\em Python Library Reference} is. Along with a wealth of other -documentation, it's available from the Python website, {\tt -www.python.org}. - -\index{{\em Python Library Reference}} - -\section{Glossary} - -\begin{description} - -\item[compound data type:] A data type in which the values are made -up of components, or elements, that are themselves values. - -\item[traverse:] To iterate through the elements of a set, -performing a similar operation on each. - -\item[index:] A variable or value used to select a member of an -ordered set, such as a character from a string. - -\item[slice:] A part of a string specified by a range of indices. - -\item[mutable:] A compound data types whose elements can be assigned -new values. - -\item[counter:] A variable used to count something, usually initialized -to zero and then incremented. - -\item[increment:] To increase the value of a variable by one. - -\item[decrement:] To decrease the value of a variable by one. - -\item[whitespace:] Any of the characters that move the cursor without -printing visible characters. The constant -{\tt string.whitespace} -contains all the white\-space characters. - -\index{compound data type} -\index{traverse} -\index{index} -\index{slice} -\index{mutable} -\index{counter} -\index{increment} -\index{decrement} -\index{whitespace} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap08.tex b/sciphi/data/stock_raw/learning_with_python/chap08.tex deleted file mode 100644 index 564f7ba..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap08.tex +++ /dev/null @@ -1,949 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Lists} -\index{list} -\index{type!list} -\index{element} -\index{sequence} - -A {\bf list} is an ordered set of values, where each value is -identified by an index. The values that make up a list are -called its {\bf elements}. Lists are similar to strings, which are -ordered sets of characters, except that the elements of a list can -have any type. Lists and strings---and other things that behave like -ordered sets---are called {\bf sequences}. - - -\section{List values} - -There are several ways to create a new list; the simplest is to -enclose the elements in square brackets (\verb+[+ and \verb+]+): - -\beforeverb -\begin{verbatim} -[10, 20, 30, 40] -["spam", "bungee", "swallow"] -\end{verbatim} -\afterverb -% -The first example is a list of four integers. The second is a list of -three strings. The elements of a list don't have to be the same type. -The following list contains a string, a float, an integer, and -(mirabile dictu) another list: - -\beforeverb -\begin{verbatim} -["hello", 2.0, 5, [10, 20]] -\end{verbatim} -\afterverb -% -A list within another list is said to be {\bf nested}. - -\index{list!nested} - -Lists that contain consecutive integers are common, so Python provides a -simple way to create them: - -\beforeverb -\begin{verbatim} ->>> range(1,5) -[1, 2, 3, 4] -\end{verbatim} -\afterverb -% -The {\tt range} function takes two arguments and returns a list that -contains all the integers from the first to the second, including the -first but not including the second! - -There are two other forms of {\tt range}. With a single argument, it -creates a list that starts at 0: - -\beforeverb -\begin{verbatim} ->>> range(10) -[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] -\end{verbatim} -\afterverb -% -If there is a third argument, it specifies the space between -successive values, which is called the {\bf step size}. This example -counts from 1 to 10 by steps of 2: - -\beforeverb -\begin{verbatim} ->>> range(1, 10, 2) -[1, 3, 5, 7, 9] -\end{verbatim} -\afterverb -% -Finally, there is a special list that contains no elements. It is -called the empty list, and it is denoted {\tt []}. - -With all these ways to create lists, it would be disappointing if we -couldn't assign list values to variables or pass lists as arguments -to functions. We can. - -\beforeverb -\begin{verbatim} -vocabulary = ["ameliorate", "castigate", "defenestrate"] -numbers = [17, 123] -empty = [] -print vocabulary, numbers, empty -['ameliorate', 'castigate', 'defenestrate'] [17, 123] [] -\end{verbatim} -\afterverb -% - - -\section{Accessing elements} -\index{list!element} -\index{access} - -The syntax for accessing the elements of a list is the same as the -syntax for accessing the characters of a string---the bracket -operator ({\tt []}). The expression inside the brackets -specifies the index. Remember that the indices start at 0: - -\beforeverb -\begin{verbatim} -print numbers[0] -numbers[1] = 5 -\end{verbatim} -\afterverb -% -The bracket operator can appear anywhere in an expression. When it -appears on the left side of an assignment, it changes one of the -elements in the list, so the one-eth element of {\tt numbers}, which -used to be 123, is now 5. - -Any integer expression can be used as an index: - -\beforeverb -\begin{verbatim} ->>> numbers[3-2] -5 ->>> numbers[1.0] -TypeError: sequence index must be integer -\end{verbatim} -\afterverb -% -If you try to read or write an element that does not exist, you -get a runtime error: - -\index{runtime error} - -\beforeverb -\begin{verbatim} ->>> numbers[2] = 5 -IndexError: list assignment index out of range -\end{verbatim} -\afterverb -% -If an index has a negative value, it counts backward from the -end of the list: - -\beforeverb -\begin{verbatim} ->>> numbers[-1] -5 ->>> numbers[-2] -17 ->>> numbers[-3] -IndexError: list index out of range -\end{verbatim} -\afterverb -% -{\tt numbers[-1]} is the last element of the list, {\tt numbers[-2]} -is the second to last, and {\tt numbers[-3]} doesn't exist. - -It is common to use a loop variable as a list index. - -\beforeverb -\begin{verbatim} -horsemen = ["war", "famine", "pestilence", "death"] - -i = 0 -while i < 4: - print horsemen[i] - i = i + 1 -\end{verbatim} -\afterverb -% -This {\tt while} loop counts from 0 to 4. When the loop variable -{\tt i} is 4, the condition fails and the loop terminates. So the -body of the loop is only executed when {\tt i} is 0, 1, 2, and 3. - -Each time through the loop, the variable {\tt i} is used as an index -into the list, printing the {\tt i}-eth element. This pattern of -computation is called a {\bf list traversal}. - -\index{list!traversal} -\index{traversal!list} - - -\section{List length} -\index{length} -\index{list!length} - -The function {\tt len} returns the length of a list. It is a good -idea to use this value as the upper bound of a loop instead of a -constant. That way, if the size of the list changes, you won't have -to go through the program changing all the loops; they will work -correctly for any size list: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -horsemen = ["war", "famine", "pestilence", "death"] - -i = 0 -while i < len(horsemen): - print horsemen[i] - i = i + 1 -\end{verbatim} -\afterverb -% -The last time the body of the loop is executed, {\tt i} is {\tt -len(horsemen) - 1}, which is the index of the last element. When {\tt -i} is equal to {\tt len(horsemen)}, the condition fails and the body -is not executed, which is a good thing, because {\tt len(horsemen)} is -not a legal index. - -Although a list can contain another list, the nested -list still counts as a single element. The length of this list is -four: - -\beforeverb -\begin{verbatim} -['spam!', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]] -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, write a loop that traverses the previous -list and prints the length of each element. What happens if -you send an integer to {\tt len}?} -\end{quote} - - -\section{List membership} -\index{list!membership} -\index{in operator} -\index{operator!in} - -{\tt in} is a boolean operator that tests membership in a sequence. -We used it in Section~\ref{in} with strings, but it also works with -lists and other sequences: - -\beforeverb -\begin{verbatim} ->>> horsemen = ['war', 'famine', 'pestilence', 'death'] ->>> 'pestilence' in horsemen -True ->>> 'debauchery' in horsemen -False -\end{verbatim} -\afterverb - -Since ``pestilence'' is a member of the {\tt horsemen} list, the {\tt in} -operator returns true. Since ``debauchery'' is not in the list, {\tt -in} returns false. - -We can use the {\tt not} in combination -with {\tt in} to test whether an element is not a member of a list: - -\beforeverb -\begin{verbatim} ->>> 'debauchery' not in horsemen -True -\end{verbatim} -\afterverb - - -\section{Lists and {\tt for} loops} -\index{for loop} -\index{list!for loop} -\index{traversal} - -The {\tt for} loop we saw in Section~\ref{for} also works with -lists. -The generalized syntax of a {\tt for} loop is: - -\beforeverb -\begin{verbatim} -for VARIABLE in LIST: - BODY -\end{verbatim} -\afterverb -% -This statement is equivalent to: - -\beforeverb -\begin{verbatim} -i = 0 -while i < len(LIST): - VARIABLE = LIST[i] - BODY - i = i + 1 -\end{verbatim} -\afterverb -% -The {\tt for} loop is more concise because we can -eliminate the loop variable, {\tt i}. -Here is the previous loop written with a {\tt for} loop. - -\beforeverb -\begin{verbatim} -for horseman in horsemen: - print horseman -\end{verbatim} -\afterverb -% -It almost reads like English: ``For (every) horseman -in (the list of) horsemen, print (the name of the) horseman.'' - -Any list expression can be used in a {\tt for} loop: - -\beforeverb -\begin{verbatim} -for number in range(20): - if number % 2 == 0: - print number - -for fruit in ["banana", "apple", "quince"]: - print "I like to eat " + fruit + "s!" -\end{verbatim} -\afterverb -% -The first -example prints all the even numbers between zero and nineteen. -The second example expresses enthusiasm for various fruits. - - - -\section{List operations} -\index{list operation} -\index{operation!list} - -The {\tt +} operator concatenates lists: - -\index{concatenation!list} - -\beforeverb -\begin{verbatim} ->>> a = [1, 2, 3] ->>> b = [4, 5, 6] ->>> c = a + b ->>> print c -[1, 2, 3, 4, 5, 6] -\end{verbatim} -\afterverb -% -Similarly, the {\tt *} operator repeats a list a given number of times: - -\index{repetition!list} - -\beforeverb -\begin{verbatim} ->>> [0] * 4 -[0, 0, 0, 0] ->>> [1, 2, 3] * 3 -[1, 2, 3, 1, 2, 3, 1, 2, 3] -\end{verbatim} -\afterverb -% -The first example repeats {\tt [0]} four times. The second example -repeats the list {\tt [1, 2, 3]} three times. - - -\section{List slices} -\index{slice} -\index{list!slice} - -The slice operations we saw in Section~\ref{slice} -also work on lists: - -\beforeverb -\begin{verbatim} ->>> list = ['a', 'b', 'c', 'd', 'e', 'f'] ->>> list[1:3] -['b', 'c'] ->>> list[:4] -['a', 'b', 'c', 'd'] ->>> list[3:] -['d', 'e', 'f'] -\end{verbatim} -\afterverb -% -If you omit the first index, the slice starts at the beginning. -If you omit the second, the slice goes to the end. So if you -omit both, the slice is really a copy of the whole list. - -\beforeverb -\begin{verbatim} ->>> list[:] -['a', 'b', 'c', 'd', 'e', 'f'] -\end{verbatim} -\afterverb -% - - -\section{Lists are mutable} -\index{mutable!list} -\index{list!mutable} - -Unlike strings, lists are mutable, which means we can change -their elements. Using the bracket operator on the left side -of an assignment, we can update one of the elements: - -\beforeverb -\begin{verbatim} ->>> fruit = ["banana", "apple", "quince"] ->>> fruit[0] = "pear" ->>> fruit[-1] = "orange" ->>> print fruit -['pear', 'apple', 'orange'] -\end{verbatim} -\afterverb -% -With the slice operator we can update several elements at once: - -\beforeverb -\begin{verbatim} ->>> list = ['a', 'b', 'c', 'd', 'e', 'f'] ->>> list[1:3] = ['x', 'y'] ->>> print list -['a', 'x', 'y', 'd', 'e', 'f'] -\end{verbatim} -\afterverb -% -We can also remove elements from a list by assigning the empty list to -them: - -\beforeverb -\begin{verbatim} ->>> list = ['a', 'b', 'c', 'd', 'e', 'f'] ->>> list[1:3] = [] ->>> print list -['a', 'd', 'e', 'f'] -\end{verbatim} -\afterverb -% -And we can add elements to a list by squeezing them into an empty -slice at the desired location: - -\beforeverb -\begin{verbatim} ->>> list = ['a', 'd', 'f'] ->>> list[1:1] = ['b', 'c'] ->>> print list -['a', 'b', 'c', 'd', 'f'] ->>> list[4:4] = ['e'] ->>> print list -['a', 'b', 'c', 'd', 'e', 'f'] -\end{verbatim} -\afterverb -% - -\section{List deletion} -\index{deletion!list} -\index{list deletion} - -Using slices to delete list elements can be -awkward, and therefore error-prone. Python provides an alternative -that is more readable. - -{\tt del} removes an element from a list: - -\beforeverb -\begin{verbatim} ->>> a = ['one', 'two', 'three'] ->>> del a[1] ->>> a -['one', 'three'] -\end{verbatim} -\afterverb -% -As you might expect, {\tt del} handles negative indices -and causes a runtime error if the index is -out of range. - -You can use a slice as an index for {\tt del}: - -\beforeverb -\begin{verbatim} ->>> list = ['a', 'b', 'c', 'd', 'e', 'f'] ->>> del list[1:5] ->>> print list -['a', 'f'] -\end{verbatim} -\afterverb -% -As usual, slices select all the elements up to, but not -including, the second index. - -% Had to remove this because append is a method, not a function. -% The {\tt append} function adds an element (or a list) to -% the end of an existing list. - -% \beforeverb -% \begin{verbatim} -% >>> a = ['one', 'two'] -% >>> append (a, 'three') -% >>> print a -% ['one', 'two', 'three'] -% \end{verbatim} -% \afterverb - - -\adjustpage{-2} -\pagebreak - -\section{Objects and values} -\index{object} -\index{value} - -If we execute these assignment statements, - -\beforeverb -\begin{verbatim} -a = "banana" -b = "banana" -\end{verbatim} -\afterverb -% -we know that {\tt a} and {\tt b} will refer to a -string with the letters {\tt "banana"}. But we can't -tell whether they point to the {\em same} string. - -There are two possible states: - -\beforefig -\centerline{\psfig{figure=illustrations/list1.eps}} -\afterfig - -In one case, {\tt a} and {\tt b} refer to two different things that -have the same value. In the second case, they refer to the same -thing. These ``things'' have names---they are called {\bf objects}. -An object is something a variable can refer to. - -Every object has a unique {\bf identifier}, which we can obtain with -the {\tt id} function. By printing the identifier of {\tt a} -and {\tt b}, we can tell whether they refer to the same object. - -\beforeverb -\begin{verbatim} ->>> id(a) -135044008 ->>> id(b) -135044008 -\end{verbatim} -\afterverb -% -In fact, we get the same identifier twice, which means that -Python only created one string, -and both {\tt a} and {\tt b} refer to it. - -Interestingly, lists behave differently. -When we create two lists, we get two objects: - -\beforeverb -\begin{verbatim} ->>> a = [1, 2, 3] ->>> b = [1, 2, 3] ->>> id(a) -135045528 ->>> id(b) -135041704 -\end{verbatim} -\afterverb -% -\adjustpage{1} - -So the state diagram looks like this: - -\beforefig -\centerline{\psfig{figure=illustrations/list2.eps}} -\afterfig - -{\tt a} and {\tt b} have the same value but do not -refer to the same object. - - -\section{Aliasing} -\index{aliasing} -\index{reference!aliasing} - -Since variables refer to objects, if we assign one -variable to another, both variables refer to the same object: - -\beforeverb -\begin{verbatim} ->>> a = [1, 2, 3] ->>> b = a -\end{verbatim} -\afterverb -% -In this case, the state diagram looks like this: - -\beforefig -\centerline{\psfig{figure=illustrations/list3.eps}} -\afterfig - -Because the same list has two different names, {\tt a} and {\tt b}, we -say that it is {\bf aliased}. Changes made with one alias affect -the other: - -\beforeverb -\begin{verbatim} ->>> b[0] = 5 ->>> print a -[5, 2, 3] -\end{verbatim} -\afterverb -% -Although this behavior can be useful, it is sometimes unexpected or -undesirable. In general, it is safer to avoid aliasing when you -are working with mutable objects. Of course, for immutable -objects, there's no problem. That's why Python is free to -alias strings when it sees an opportunity to economize. - - -\section{Cloning lists} -\index{list!cloning} -\index{cloning} - -If we want to modify a list and also keep a copy of the original, we -need to be able to make a copy of the list itself, not just the -reference. This process is sometimes called {\bf cloning}, to avoid the -ambiguity of the word ``copy.'' - -The easiest way to clone a list is to use the slice operator: - -\beforeverb -\begin{verbatim} ->>> a = [1, 2, 3] ->>> b = a[:] ->>> print b -[1, 2, 3] -\end{verbatim} -\afterverb -% -Taking any slice of {\tt a} creates a new list. -In this case the slice happens to consist of the whole list. - -Now we are free to make changes to {\tt b} without worrying about {\tt a}: - -\beforeverb -\begin{verbatim} ->>> b[0] = 5 ->>> print a -[1, 2, 3] -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, draw a state diagram for {\tt a} and {\tt b} -before and after this change.} -\end{quote} - - - -\section{List parameters} -\index{list!as parameter} -\index{parameter} -\index{parameter!list} - -Passing a list as an argument actually passes a reference to the -list, not a copy of the list. -For example, the function {\tt head} takes a list as an argument -and returns the first element: - -\beforeverb -\begin{verbatim} -def head(list): - return list[0] -\end{verbatim} -\afterverb -% -Here's how it is used: - -\beforeverb -\begin{verbatim} ->>> numbers = [1, 2, 3] ->>> head(numbers) -1 -\end{verbatim} -\afterverb -% -The parameter {\tt list} and the variable {\tt numbers} are -aliases for the same object. The state diagram looks like -this: - -\beforefig -\centerline{\psfig{figure=illustrations/stack5.eps}} -\afterfig - -Since the list object is shared by two frames, we drew -it between them. - -If a function modifies a list parameter, the caller sees the change. -For example, {\tt deleteHead} removes the first element from a list: - -\beforeverb -\begin{verbatim} -def deleteHead(list): - del list[0] -\end{verbatim} -\afterverb -% -Here's how {\tt deleteHead} is used: - -\beforeverb -\begin{verbatim} ->>> numbers = [1, 2, 3] ->>> deleteHead(numbers) ->>> print numbers -[2, 3] -\end{verbatim} -\afterverb -% -If a function returns a list, it returns a reference to the list. For -example, {\tt tail} returns a list that contains all but the first -element of the given list: - -\beforeverb -\begin{verbatim} -def tail(list): - return list[1:] -\end{verbatim} -\afterverb -% -Here's how {\tt tail} is used: - -\beforeverb -\begin{verbatim} ->>> numbers = [1, 2, 3] ->>> rest = tail(numbers) ->>> print rest -[2, 3] -\end{verbatim} -\afterverb -% -Because the return value was created with the slice operator, it -is a new list. Creating {\tt rest}, and any subsequent changes -to {\tt rest}, have no effect on {\tt numbers}. - - - -\section{Nested lists} -\label{nested lists} -\index{nested list} -\index{list!nested} - -A nested list is a list that appears as an element in another -list. In this list, the three-eth element is a nested list: - -\beforeverb -\begin{verbatim} ->>> list = ["hello", 2.0, 5, [10, 20]] -\end{verbatim} -\afterverb -% -If we print {\tt list[3]}, we get {\tt [10, 20]}. To extract an -element from the nested list, we can proceed in two steps: - -\beforeverb -\begin{verbatim} ->>> elt = list[3] ->>> elt[0] -10 -\end{verbatim} -\afterverb -% -Or we can combine them: - -\beforeverb -\begin{verbatim} ->>> list[3][1] -20 -\end{verbatim} -\afterverb -% -Bracket operators evaluate from left to right, so this expression -gets the three-eth element of {\tt list} and extracts the one-eth -element from it. - -\section{Matrices} -\index{matrix} -\index{list!nested} - -Nested lists are often used to represent matrices. For example, -the matrix: - -\beforefig -\centerline{\psfig{figure=illustrations/matrix.eps}} -\afterfig - -might be represented as: - -\beforeverb -\begin{verbatim} ->>> matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] -\end{verbatim} -\afterverb -% -{\tt matrix} is a list with three elements, where each -element is a row of the matrix. We can select an entire row from the -matrix in the usual way: - -\beforeverb -\begin{verbatim} ->>> matrix[1] -[4, 5, 6] -\end{verbatim} -\afterverb -% -Or we can extract a single element from the matrix using the -double-index form: - -\beforeverb -\begin{verbatim} ->>> matrix[1][1] -5 -\end{verbatim} -\afterverb -% -The first index selects the row, and the second index selects the -column. Although this way of representing matrices is common, it is -not the only possibility. A small variation is to use a list of -columns instead of a list of rows. Later we will see a more -radical alternative using a dictionary. - -\index{dictionary} -\index{row} -\index{column} - - -\section{Strings and lists} -\index{split function} -\index{join function} - -Two of the most useful functions in the {\tt string} module involve -lists of strings. The {\tt split} function breaks a string into a -list of words. By default, any number of whitespace characters is -considered a word boundary: - -\beforeverb -\begin{verbatim} ->>> import string ->>> song = "The rain in Spain..." ->>> string.split(song) -['The', 'rain', 'in', 'Spain...'] -\end{verbatim} -\afterverb -% -An optional argument called a {\bf delimiter} can be used to specify which -characters to use as word boundaries. -The following example -uses the string {\tt ai} as the delimiter: - -\beforeverb -\begin{verbatim} ->>> string.split(song, 'ai') -['The r', 'n in Sp', 'n...'] -\end{verbatim} -\afterverb -% -Notice that the delimiter doesn't appear in the list. - -The {\tt join} function is the inverse of {\tt split}. It -takes a list of strings and -concatenates the elements with a space between each pair: - -\beforeverb -\begin{verbatim} ->>> list = ['The', 'rain', 'in', 'Spain...'] ->>> string.join(list) -'The rain in Spain...' -\end{verbatim} -\afterverb -% -Like {\tt split}, {\tt join} takes an optional delimiter -that is inserted between elements: - -\beforeverb -\begin{verbatim} ->>> string.join(list, '_') -'The_rain_in_Spain...' -\end{verbatim} -\afterverb - -\begin{quote} -\begin{quote} -{\em As an exercise, describe the relationship between {\tt -string.join(string.split(song))} and {\tt song}. Are they the same -for all strings? When would they be different?} -\end{quote} -\end{quote} - - -\section{Glossary} - -\begin{description} - -\item[list:] A named collection of objects, where each object is -identified by an index. - -\item[index:] An integer variable or value that indicates an element of a -list. - -\item[element:] One of the values in a list (or other sequence). The -bracket operator selects elements of a list. - -\item[sequence:] Any of the data types that consist of an ordered set of -elements, with each element identified by an index. - -\item[nested list:] A list that is an element of another list. - -\item[list traversal:] The sequential accessing of each element in a list. - -\item[object:] A thing to which a variable can refer. - -\item[aliases:] Multiple variables that contain references to the same object. - -\item[clone:] To create a new object that has the same value as an -existing object. Copying a reference to an object creates an alias -but doesn't clone the object. - -\item[delimiter:] A character or string used to indicate where a -string should be split. - -\index{list} -\index{index} -\index{sequence} -\index{element} -\index{nested list} -\index{list traversal} -\index{object} -\index{aliasing} -\index{clone} -\index{delimiter} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap09.tex b/sciphi/data/stock_raw/learning_with_python/chap09.tex deleted file mode 100644 index 5d62b0a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap09.tex +++ /dev/null @@ -1,600 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - - -\chapter{Tuples} -\label{tuplechap} -\index{tuple} - -\section{Mutability and tuples} -\index{tuple} -\index{data type!tuple} -\index{type!tuple} -\index{data type!immutable} - -So far, you have seen two compound types: strings, which are made up -of characters; and lists, which are made up of elements of any type. -One of the differences we noted is that the elements of a list can be -modified, but the characters in a string cannot. In other words, strings -are {\bf immutable} and lists are {\bf mutable}. - -\index{mutable} -\index{immutable} - -There is another type in Python called a {\bf tuple} that is similar -to a list except that it is immutable. Syntactically, a tuple is a -comma-separated list of values: - -\beforeverb -\begin{verbatim} ->>> tuple = 'a', 'b', 'c', 'd', 'e' -\end{verbatim} -\afterverb -% -Although it is not necessary, it is conventional to enclose tuples in -parentheses: - -\beforeverb -\begin{verbatim} ->>> tuple = ('a', 'b', 'c', 'd', 'e') -\end{verbatim} -\afterverb -% -To create a tuple with a single element, we have to include the final -comma: - -\beforeverb -\begin{verbatim} ->>> t1 = ('a',) ->>> type(t1) - -\end{verbatim} -\afterverb -% -Without the comma, Python treats {\tt ('a')} as a string in -parentheses: - -\beforeverb -\begin{verbatim} ->>> t2 = ('a') ->>> type(t2) - -\end{verbatim} -\afterverb -% -Syntax issues aside, the operations on tuples are the same as the -operations on lists. The index operator selects an element from -a tuple. - -\beforeverb -\begin{verbatim} ->>> tuple = ('a', 'b', 'c', 'd', 'e') ->>> tuple[0] -'a' -\end{verbatim} -\afterverb -% -And the slice operator selects a range of elements. - -\beforeverb -\begin{verbatim} ->>> tuple[1:3] -('b', 'c') -\end{verbatim} -\afterverb -% -But if we try to modify one of the elements of the tuple, we get -an error: - -\index{runtime error} - -\beforeverb -\begin{verbatim} ->>> tuple[0] = 'A' -TypeError: object doesn't support item assignment -\end{verbatim} -\afterverb -% -Of course, even if we can't modify the elements of a tuple, we can -replace it with a different tuple: - -\beforeverb -\begin{verbatim} ->>> tuple = ('A',) + tuple[1:] ->>> tuple -('A', 'b', 'c', 'd', 'e') -\end{verbatim} -\afterverb -% - -\section{Tuple assignment} -\label{tuple assignment} -\index{tuple assignment} -\index{assignment!tuple} - -Once in a while, it is useful to swap the values of two variables. -With conventional assignment statements, we have to use a temporary -variable. For example, to swap {\tt a} and {\tt b}: - -\beforeverb -\begin{verbatim} ->>> temp = a ->>> a = b ->>> b = temp -\end{verbatim} -\afterverb -% -If we have to do this often, this approach becomes cumbersome. Python -provides a form of {\bf tuple assignment} that solves this problem neatly: - -\beforeverb -\begin{verbatim} ->>> a, b = b, a -\end{verbatim} -\afterverb -% -The left side is a tuple of variables; the right side is a tuple of -values. Each value is assigned to its respective variable. -All the expressions on the right side are evaluated before any -of the assignments. -This feature makes tuple -assignment quite versatile. - -Naturally, the number of variables on the left and the number of -values on the right have to be the same: - -\beforeverb -\begin{verbatim} ->>> a, b, c, d = 1, 2, 3 -ValueError: unpack tuple of wrong size -\end{verbatim} -\afterverb -% - -\section{Tuples as return values} -\index{tuple} -\index{value!tuple} -\index{return value!tuple} -\index{function!tuple as return value} - -Functions can return tuples as return values. For example, we could -write a function that swaps two parameters: - -\beforeverb -\begin{verbatim} -def swap(x, y): - return y, x -\end{verbatim} -\afterverb -% -Then we can assign the return value to a -tuple with two variables: - -\beforeverb -\begin{verbatim} -a, b = swap(a, b) -\end{verbatim} -\afterverb -% -In this case, there is no great advantage in making {\tt swap} a -function. In fact, there is a danger in trying to encapsulate {\tt -swap}, which is the following tempting mistake: - -\beforeverb -\begin{verbatim} -def swap(x, y): # incorrect version - x, y = y, x -\end{verbatim} -\afterverb -% -If we call this function like this: - -\beforeverb -\begin{verbatim} -swap(a, b) -\end{verbatim} -\afterverb -% -then {\tt a} and {\tt x} are aliases for the same value. Changing {\tt x} -inside {\tt swap} makes {\tt x} refer to a different value, but it has no -effect on {\tt a} in {\tt \_\_main\_\_}. Similarly, changing {\tt y} has no -effect on {\tt b}. - -This function runs without producing an error message, but it -doesn't do what we intended. This is an example of a semantic -error. - -\index{semantic error} - -\begin{quote} -{\em As an exercise, draw a state diagram for this function so that -you can see why it doesn't work.} -\end{quote} - - -\section{Random numbers} -\index{random number} -\index{number!random} - -Most computer programs do the same thing every time they execute, -so they are said to be {\bf deterministic}. Determinism is usually a -good thing, since we expect the same calculation to yield the same -result. For some applications, though, we want the computer to -be unpredictable. Games are an obvious example, but there are -more. - -Making a program truly nondeterministic turns out to be not so easy, -but there are ways to make it at least seem nondeterministic. One of -them is to generate random numbers and use them to determine the -outcome of the program. Python provides a built-in function that -generates {\bf pseudorandom} numbers, which are not truly random in -the mathematical sense, but for our purposes they will do. - -The {\tt random} module contains a function called {\tt random} that -returns a floating-point number between 0.0 and 1.0. Each time you -call {\tt random}, you get the next number in a long series. To see a -sample, run this loop: - -\beforeverb -\begin{verbatim} -import random - -for i in range(10): - x = random.random() - print x -\end{verbatim} -\afterverb -% -To generate a random number between 0.0 and an upper bound like -{\tt high}, multiply {\tt x} by {\tt high}. - -\begin{quote} -{\em As an exercise, generate a random number between {\tt low} and -{\tt high}.} -\end{quote} - -\begin{quote} -{\em As an additional exercise, generate a random {\em integer} -between {\tt low} and {\tt high}, including both end points.} -\end{quote} - - -\section{List of random numbers} - -The first step is to generate a list of random values. {\tt -randomList} takes an integer argument and returns a list of random -numbers with the given length. It starts with a list of {\tt n} -zeros. Each time through the loop, it replaces one of the elements -with a random number. -The return value is a reference to the complete list: - -\beforeverb -\begin{verbatim} -def randomList(n): - s = [0] * n - for i in range(n): - s[i] = random.random() - return s -\end{verbatim} -\afterverb -% -We'll test this function with a list of eight elements. For -purposes of debugging, it is a good idea to start small. - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} ->>> randomList(8) -0.15156642489 -0.498048560109 -0.810894847068 -0.360371157682 -0.275119183077 -0.328578797631 -0.759199803101 -0.800367163582 -\end{verbatim} -\afterverb -% -The numbers generated by {\tt random} are supposed to be distributed -uniformly, which means that every value is equally likely. - -If we divide the range of possible -values into equal-sized ``buckets,'' and count the number of times a -random value falls in each bucket, we should get roughly the -same number in each. - -We can test this theory by writing a program to -divide the range into -buckets and count the number of values in each. - - -\section{Counting} -\index{counting} - -A good approach to problems like this is to divide the problem into -subproblems and look for subproblems that fit a computational pattern -you have seen before. - -In this case, we want to traverse a list of numbers and count the -number of times a value falls in a given range. That sounds familiar. -In Section~\ref{counter}, we wrote a program that traversed a string and -counted the number of times a given letter appeared. - -So, we can proceed by copying the old program and adapting it -for the current problem. The original program was: - -\beforeverb -\begin{verbatim} -count = 0 -for char in fruit: - if char == 'a': - count = count + 1 -print count -\end{verbatim} -\afterverb -% -The first step is to replace {\tt fruit} with {\tt t} and -{\tt char} with {\tt num}. That doesn't change the program; -it just makes it more readable. - -The second step is to change the test. We aren't interested -in finding letters. We want to see if {\tt num} is between -the given values {\tt low} and {\tt high}. - -\beforeverb -\begin{verbatim} -count = 0 -for num in t: - if low < num < high: - count = count + 1 -print count -\end{verbatim} -\afterverb -% -The last step is to encapsulate this code in a function called -{\tt inBucket}. The parameters are the list and the values -{\tt low} and {\tt high}. - -\beforeverb -\begin{verbatim} -def inBucket(t, low, high): - count = 0 - for num in t: - if low < num < high: - count = count + 1 - return count -\end{verbatim} -\afterverb -% -By copying and modifying an existing program, we were able -to write this function quickly and save a lot of debugging -time. This development plan is called {\bf pattern matching}. -If you find yourself working on a problem you have solved -before, reuse the solution. - - -\section{Many buckets} - -As the number of buckets increases, {\tt inBucket} gets -a little unwieldy. With two buckets, it's not bad: - -\beforeverb -\begin{verbatim} -low = inBucket(a, 0.0, 0.5) -high = inBucket(a, 0.5, 1) -\end{verbatim} -\afterverb -% -But with four buckets it is getting cumbersome. - -\beforeverb -\begin{verbatim} -bucket1 = inBucket(a, 0.0, 0.25) -bucket2 = inBucket(a, 0.25, 0.5) -bucket3 = inBucket(a, 0.5, 0.75) -bucket4 = inBucket(a, 0.75, 1.0) -\end{verbatim} -\afterverb -% -There are two problems. One is that we have to make up new -variable names for each result. The other is that we have to -compute the range for each bucket. - -We'll solve the second problem first. If the number of buckets -is {\tt numBuckets}, then the width of each bucket is -{\tt 1.0 / numBuckets}. - -We'll use a loop to compute the range of each bucket. -The loop variable, {\tt i}, -counts from 0 to {\tt numBuckets-1}: - -\beforeverb -\begin{verbatim} -bucketWidth = 1.0 / numBuckets -for i in range(numBuckets): - low = i * bucketWidth - high = low + bucketWidth - print low, "to", high -\end{verbatim} -\afterverb -% -To compute the low end of each bucket, we multiply the loop variable -by the bucket width. The high end is just a {\tt bucketWidth} away. - -With {\tt numBuckets = 8}, the output is: - -\beforeverb -\begin{verbatim} -0.0 to 0.125 -0.125 to 0.25 -0.25 to 0.375 -0.375 to 0.5 -0.5 to 0.625 -0.625 to 0.75 -0.75 to 0.875 -0.875 to 1.0 -\end{verbatim} -\afterverb -% -You can confirm that each bucket is the same width, that they don't -overlap, and that they cover the entire range from 0.0 to 1.0. - -Now back to the first problem. -We need a way to store eight integers, using the loop variable -to indicate one at a time. By now you should be thinking, -``List!'' - -We have to create the bucket list outside the loop, because we only -want to do it once. Inside the loop, we'll call {\tt inBucket} -repeatedly and update the {\tt i}-eth element of the list: - -\beforeverb -\begin{verbatim} -numBuckets = 8 -buckets = [0] * numBuckets -bucketWidth = 1.0 / numBuckets -for i in range(numBuckets): - low = i * bucketWidth - high = low + bucketWidth - buckets[i] = inBucket(t, low, high) -print buckets -\end{verbatim} -\afterverb -% -With a list of 1000 values, this code produces this bucket list: - -\beforeverb -\begin{verbatim} -[138, 124, 128, 118, 130, 117, 114, 131] -\end{verbatim} -\afterverb -% -These numbers are fairly close to 125, which is what we expected. At -least, they are close enough that we can believe the random number -generator is working. - -\begin{quote} -{\em As an exercise, -test this function with some longer lists, and see if the -number of values in each bucket tends to level off.} -\end{quote} - - -\section{A single-pass solution} -\index{histogram} - -Although this program works, it is not as efficient as it could be. -Every time it calls {\tt inBucket}, it traverses the entire list. As -the number of buckets increases, that gets to be a lot of traversals. - -It would be better to make a single pass through the list and compute -for each value the index of the bucket in which it falls. Then we can -increment the appropriate counter. - -In the previous section we took an index, {\tt i}, and multiplied it -by the {\tt bucketWidth} to find the lower bound of a given -bucket. Now we want to take a value in the range 0.0 to 1.0 and find the -index of the bucket where it falls. - -Since this problem is the inverse of the previous problem, we might -guess that we should divide by {\tt bucketWidth} instead of -multiplying. That guess is correct. - -Since {\tt bucketWidth = 1.0 / numBuckets}, dividing by {\tt -bucketWidth} is the same as multiplying by {\tt numBuckets}. If we -multiply a number in the range 0.0 to 1.0 by {\tt numBuckets}, we get -a number in the range from 0.0 to {\tt numBuckets}. If we round that -number to the next lower integer, we get exactly what we are looking -for---a bucket index: - -\beforeverb -\begin{verbatim} -numBuckets = 8 -buckets = [0] * numBuckets -for i in t: - index = int(i * numBuckets) - buckets[index] = buckets[index] + 1 -\end{verbatim} -\afterverb -% -We used the {\tt int} function to convert a floating-point -number to an integer. - -Is it possible for this calculation to produce an index that is out of -range (either negative or greater than {\tt len(buckets)-1})? - -A list like {\tt buckets} that contains counts of the number of values -in each range is called a {\bf histogram}. - -\begin{quote} -{\em As an exercise, write a function called {\tt histogram} that -takes a list and a number of buckets as arguments and returns -a histogram with the given number of buckets.} -\end{quote} - -\adjustpage{-2} -\pagebreak - -\section{Glossary} - -\begin{description} - -\item[immutable type:] A type in which the elements cannot be -modified. Assignments -to elements or slices of immutable types cause an error. - -\item[mutable type:] A data type in which the elements can be -modified. All mutable -types are compound types. Lists and dictionaries are mutable data -types; strings and tuples are not. - -\item[tuple:] A sequence type that is similar to a list except that it is -immutable. Tuples can be used wherever an immutable type is required, such -as a key in a dictionary. - -\item[tuple assignment:] An assignment to all of the elements in a tuple using -a single assignment statement. Tuple assignment occurs in parallel rather -than in sequence, making it useful for swapping values. - -\item[deterministic:] A program that does the same thing each time it is -called. - -\item[pseudorandom:] A sequence of numbers that appear to be random but that -are actually the result of a deterministic computation. - -\item[histogram:] A list of integers in which each element counts the -number of times something happens. - -\item[pattern matching:] A program development plan that involves -identifying a familiar computational pattern and copying the -solution to a similar problem. - -\index{mutable type} -\index{immutable type} -\index{tuple} -\index{tuple assignment} -\index{assignment!tuple} -\index{deterministic} -\index{pseudorandom} -\index{histogram} -\index{pattern matching} - -\end{description} - diff --git a/sciphi/data/stock_raw/learning_with_python/chap10.tex b/sciphi/data/stock_raw/learning_with_python/chap10.tex deleted file mode 100644 index c138c29..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap10.tex +++ /dev/null @@ -1,578 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Dictionaries} -\index{dictionary} - -\index{dictionary} -\index{data type!dictionary} -\index{type!dict} -\index{key} -\index{key-value pair} -\index{index} - -The compound types you have learned about---strings, lists, and -tuples---use integers as indices. If you try to use any other type as -an index, you get an error. - -{\bf Dictionaries} are similar to other compound types except that -they can use any immutable type as an index. As an example, we will -create a dictionary to translate English words into Spanish. For this -dictionary, the indices are {\tt strings}. - -One way to create a dictionary is to start with the empty dictionary -and add elements. The empty dictionary is denoted {\verb+{}+}: - -\beforeverb -\begin{verbatim} ->>> eng2sp = {} ->>> eng2sp['one'] = 'uno' ->>> eng2sp['two'] = 'dos' -\end{verbatim} -\afterverb -% -The first assignment creates a dictionary named {\tt eng2sp}; the -other assignments add new elements to the dictionary. We can print -the current value of the dictionary in the usual way: - -\beforeverb -\begin{verbatim} ->>> print eng2sp -{'one': 'uno', 'two': 'dos'} -\end{verbatim} -\afterverb -% -The elements of a dictionary appear in a comma-separated list. Each -entry contains an index and a value separated by a colon. In a -dictionary, the indices are called {\bf keys}, so the elements are -called {\bf key-value pairs}. - -Another way to create a dictionary is to provide a list of key-value -pairs using the same syntax as the previous output: - -\beforeverb -\begin{verbatim} ->>> eng2sp = {'one': 'uno', 'two': 'dos', 'three': 'tres'} -\end{verbatim} -\afterverb -% -If we print the value of {\tt eng2sp} again, we get a surprise: - -\beforeverb -\begin{verbatim} ->>> print eng2sp -{'one': 'uno', 'three': 'tres', 'two': 'dos'} -\end{verbatim} -\afterverb -% -The key-value pairs are not in order! Fortunately, there is no reason -to care about the order, since the elements of a dictionary are never -indexed with integer indices. Instead, we use the keys to look up the -corresponding values: - -\beforeverb -\begin{verbatim} ->>> print eng2sp['two'] -'dos' -\end{verbatim} -\afterverb -% -The key {\tt 'two'} yields the value {\tt 'dos'} even though it -appears in the third key-value pair. - - -\section{Dictionary operations} -\index{dictionary!operation} -\index{operation!dictionary} - -The {\tt del} statement removes a key-value pair from a dictionary. -For example, the following dictionary contains the names of various -fruits and the number of each fruit in stock: - -\beforeverb -\begin{verbatim} ->>> inventory = {'apples': 430, 'bananas': 312, 'oranges': 525, -'pears': 217} ->>> print inventory -{'oranges': 525, 'apples': 430, 'pears': 217, 'bananas': 312} -\end{verbatim} -\afterverb -% -If someone buys all of the pears, we can remove the entry from the -dictionary: - -\beforeverb -\begin{verbatim} ->>> del inventory['pears'] ->>> print inventory -{'oranges': 525, 'apples': 430, 'bananas': 312} -\end{verbatim} -\afterverb -% -Or if we're expecting more pears soon, we might just change the -value associated with pears: - -\beforeverb -\begin{verbatim} ->>> inventory['pears'] = 0 ->>> print inventory -{'oranges': 525, 'apples': 430, 'pears': 0, 'bananas': 312} -\end{verbatim} -\afterverb -% -The {\tt len} function also works on dictionaries; it returns the -number of key-value pairs: - -\beforeverb -\begin{verbatim} ->>> len(inventory) -4 -\end{verbatim} -\afterverb -% - - -\section{Dictionary methods} -\index{dictionary!method} -\index{method!dictionary} -\index{method} -\index{method!invocation} -\index{invoking method} - -A {\bf method} is similar to a function---it takes arguments and -returns a value---but the syntax is different. For example, the {\tt -keys} method takes a dictionary and returns a list of the keys that -appear, but instead of the function syntax {\tt keys(eng2sp)}, we use -the method syntax {\tt eng2sp.keys()}. - -\index{dot notation} - -\beforeverb -\begin{verbatim} ->>> eng2sp.keys() -['one', 'three', 'two'] -\end{verbatim} -\afterverb -% -This form of dot notation specifies the name of the function, {\tt -keys}, and the name of the object to apply the function to, {\tt -eng2sp}. The parentheses indicate that this method has no -parameters. - -A method call is called an {\bf invocation}; in this case, we would -say that we are invoking {\tt keys} on the object {\tt eng2sp}. - -The {\tt values} method is similar; it returns a list of the values in -the dictionary: - -\beforeverb -\begin{verbatim} ->>> eng2sp.values() -['uno', 'tres', 'dos'] -\end{verbatim} -\afterverb -% -The {\tt items} method returns both, in the form of a -list of tuples---one for each key-value -pair: - -\beforeverb -\begin{verbatim} ->>> eng2sp.items() -[('one','uno'), ('three', 'tres'), ('two', 'dos')] -\end{verbatim} -\afterverb -% -The syntax provides useful type information. The square brackets -indicate that this is a list. The parentheses indicate that -the elements of the list are tuples. - -If a method takes an argument, it uses the same syntax as a function -call. For example, the method {\tt has\_key} takes a key -and returns -true (1) if the key appears in the dictionary: - -\beforeverb -\begin{verbatim} ->>> eng2sp.has_key('one') -True ->>> eng2sp.has_key('deux') -False -\end{verbatim} -\afterverb -% -If you try to call a method without specifying an object, you get an -error. In this case, the error message is not very helpful: - -\beforeverb -\begin{verbatim} ->>> has_key('one') -NameError: has_key -\end{verbatim} -\afterverb -% - -\index{runtime error} - - -\section{Aliasing and copying} -\index{aliasing} -\index{copying} -\index{cloning} - -Because dictionaries are mutable, you need to be aware of aliasing. -Whenever two variables refer to the same object, changes to one affect -the other. - -If you want to modify a dictionary and keep a copy of the original, -use the {\tt copy} method. For example, {\tt opposites} is a -dictionary that contains pairs of opposites: - -\beforeverb -\begin{verbatim} ->>> opposites = {'up': 'down', 'right': 'wrong', 'true': 'false'} ->>> alias = opposites ->>> copy = opposites.copy() -\end{verbatim} -\afterverb -% -{\tt alias} and {\tt opposites} refer to the same object; {\tt copy} -refers to a fresh copy of the same dictionary. If we modify {\tt -alias}, {\tt opposites} is also changed: - -\beforeverb -\begin{verbatim} ->>> alias['right'] = 'left' ->>> opposites['right'] -'left' -\end{verbatim} -\afterverb -% -If we modify {\tt copy}, {\tt opposites} is unchanged: - -\beforeverb -\begin{verbatim} ->>> copy['right'] = 'privilege' ->>> opposites['right'] -'left' -\end{verbatim} -\afterverb -% - - -\section{Sparse matrices } -\index{matrix!sparse} -\index{nested list} -\index{list!nested} - -In Section~\ref{nested lists}, we used a list of lists to represent a -matrix. That is a good choice for a matrix with mostly nonzero -values, but consider a sparse matrix like this one: - -\beforefig -\centerline{\psfig{figure=illustrations/sparse.eps}} -\afterfig - -The list representation contains a lot of zeroes: - -\beforeverb -\begin{verbatim} -matrix = [ [0,0,0,1,0], - [0,0,0,0,0], - [0,2,0,0,0], - [0,0,0,0,0], - [0,0,0,3,0] ] -\end{verbatim} -\afterverb -% -An alternative is to use a dictionary. -For the keys, we can use tuples that contain the row and column -numbers. Here is the dictionary representation of the same matrix: - -\beforeverb -\begin{verbatim} -matrix = {(0,3): 1, (2, 1): 2, (4, 3): 3} -\end{verbatim} -\afterverb -% -We only need three key-value pairs, one for each nonzero element of the -matrix. Each key is a tuple, and each value is an integer. - -To access an element of the matrix, we could use the {\tt []} -operator: - -\beforeverb -\begin{verbatim} -matrix[0,3] -1 -\end{verbatim} -\afterverb -% -Notice that the syntax for the dictionary representation is not the -same as the syntax for the nested list representation. Instead of -two integer indices, we use one index, which is a tuple of integers. - -There is one problem. -If we specify an element that is zero, we get an -error, because there is no entry in the dictionary with that key: - -\index{runtime error} - -\beforeverb -\begin{verbatim} ->>> matrix[1,3] -KeyError: (1, 3) -\end{verbatim} -\afterverb -% -The {\tt get} method solves this problem: - -\beforeverb -\begin{verbatim} ->>> matrix.get((0,3), 0) -1 -\end{verbatim} -\afterverb -% -The first argument is the key; the second argument is the value -{\tt get} should return if the key is not in the dictionary: - -\beforeverb -\begin{verbatim} ->>> matrix.get((1,3), 0) -0 -\end{verbatim} -\afterverb -% -{\tt get} definitely improves the semantics of accessing -a sparse matrix. Shame about the syntax. - - -\section{Hints} -\index{hint} -\index{Fibonacci function} - -If you played around with the {\tt fibonacci} function from -Section~\ref{one more example}, you might have noticed that the bigger -the argument you provide, the longer the function takes to run. -Furthermore, the run time increases very quickly. On one of our -machines, {\tt fibonacci(20)} finishes instantly, {\tt fibonacci(30)} -takes about a second, and {\tt fibonacci(40)} takes roughly forever. - -To understand why, consider this {\bf call graph} for -{\tt fibonacci} with {\tt n=4}: - -\beforefig -\centerline{\psfig{figure=illustrations/fibonacci.eps,height=2in}} -\afterfig - -A call graph shows a set function frames, with lines connecting each -frame to the frames of the functions it calls. At the top of the -graph, {\tt fibonacci} with {\tt n=4} calls {\tt fibonacci} with {\tt -n=3} and {\tt n=2}. In turn, {\tt fibonacci} with {\tt n=3} calls -{\tt fibonacci} with {\tt n=2} and {\tt n=1}. And so on. - -\index{function frame} -\index{frame} -\index{call graph} - -Count how many times {\tt fibonacci(0)} and {\tt fibonacci(1)} are -called. This is an inefficient solution to the problem, and it gets -far worse as the argument gets bigger. - -A good solution is to keep track of values that have already been -computed by storing them in a dictionary. A previously computed value -that is stored for later use is called a {\bf hint}. Here is -an implementation of {\tt fibonacci} using hints: - -\beforeverb -\begin{verbatim} -previous = {0:1, 1:1} - -def fibonacci(n): - if previous.has_key(n): - return previous[n] - else: - newValue = fibonacci(n-1) + fibonacci(n-2) - previous[n] = newValue - return newValue -\end{verbatim} -\afterverb -% -The dictionary named {\tt previous} keeps track of the Fibonacci -numbers we already know. We start with only -two pairs: 0 maps to 1; and 1 maps to 1. - -Whenever {\tt fibonacci} is called, it checks the dictionary to -determine if it contains the result. -If it's there, the function can return -immediately without making any more recursive calls. If not, it has -to compute the new value. The new value is added to the dictionary -before the function returns. - -Using this version of {\tt fibonacci}, our machines can compute -{\tt fibonacci(40)} in an eyeblink. But when we try to compute -{\tt fibonacci(50)}, we see the following: - -\beforeverb -\begin{verbatim} ->>> fibonacci(50) -20365011074L -\end{verbatim} -\afterverb -% -The {\tt L} at the end of the result indicates that the answer -+(20,365,011,074) is too big to fit into a Python integer. Python -has automatically converted the result to a long integer. - -\section{Long integers} -\index{long integer} -\index{data type!long integer} -\index{type!long} -\index{integer!long} - -Python provides a type called {\tt long} that can handle any size -integer. There are two ways to create a {\tt long} value. One is -to write an integer with a capital {\tt L} at the end: - -\beforeverb -\begin{verbatim} ->>> type(1L) - -\end{verbatim} -\afterverb -% -The other is to use the {\tt long} function to convert a value to a -{\tt long}. {\tt long} can accept any numerical type and even -strings of digits: - -\index{type coercion} -\index{coercion!type} - -\beforeverb -\begin{verbatim} ->>> long(1) -1L ->>> long(3.9) -3L ->>> long('57') -57L -\end{verbatim} -\afterverb -% -All of the math operations work on {\tt long}s, so in general -any code that works with integers will also work with long -integers. Any time the result of a computation is too big -to be represented with an integer, Python detects the overflow -and returns the result as a long integer. For example: - -\beforeverb -\begin{verbatim} ->>> 1000 * 1000 -1000000 ->>> 100000 * 100000 -10000000000L -\end{verbatim} -\afterverb -% -In the first case the result has type {\tt int}; in the -second case it is {\tt long}. - - -\section{Counting letters} -\index{counting} -\index{histogram} -\index{compression} - -In Chapter~\ref{strings}, we wrote a function that counted the number -of occurrences of a letter in a string. A more general version of -this problem is to form a histogram of the letters in the string, that -is, how many times each letter appears. - -Such a histogram might be useful for compressing a text -file. Because different letters appear with different frequencies, we -can compress a file by using shorter codes for common letters and -longer codes for letters that appear less frequently. - -Dictionaries provide an elegant way to generate a histogram: - -\beforeverb -\begin{verbatim} ->>> letterCounts = {} ->>> for letter in "Mississippi": -... letterCounts[letter] = letterCounts.get (letter, 0) + 1 -... ->>> letterCounts -{'M': 1, 's': 4, 'p': 2, 'i': 4} -\end{verbatim} -\afterverb -% -We start with an empty dictionary. For each letter in the string, we -find the current count (possibly zero) and increment it. At the end, -the dictionary contains pairs of letters and their frequencies. - -It might be more appealing to display the histogram in alphabetical -order. We can do that with the {\tt items} and {\tt sort} methods: - -\beforeverb -\begin{verbatim} ->>> letterItems = letterCounts.items() ->>> letterItems.sort() ->>> print letterItems -[('M', 1), ('i', 4), ('p', 2), ('s', 4)] -\end{verbatim} -\afterverb -% -You have seen the {\tt items} method before, but {\tt sort} is the -first method you have encountered that applies to lists. There are -several other list methods, including {\tt append}, {\tt extend}, and -{\tt reverse}. Consult the Python documentation for details. - -\index{method!list} -\index{list method} - - -\section{Glossary} - -\begin{description} - -\item[dictionary:] A collection of key-value pairs that maps from -keys to values. -The keys can be any immutable type, and the values can be any type. - -\item[key:] A value that is used to look up an entry in a dictionary. - -\item[key-value pair:] One of the items in a dictionary. - -\item[method:] A kind of function that is called with a different syntax and -invoked ``on'' an object. - -\item[invoke:] To call a method. - -\item[hint:] Temporary storage of a precomputed value to avoid redundant -computation. - -\item[overflow:] A numerical result that is too large to be represented -in a numerical format. - -\index{dictionary} -\index{key} -\index{key-value pair} -\index{hint} -\index{method} -\index{invoke} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap11.tex b/sciphi/data/stock_raw/learning_with_python/chap11.tex deleted file mode 100644 index 215e724..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap11.tex +++ /dev/null @@ -1,753 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Files and exceptions} -\index{file} -\index{type!file} - -While a program is running, its data is in memory. When the program -ends, or the computer shuts down, data in memory disappears. To -store data permanently, you have to put it in a {\bf file}. -Files are usually stored on a -hard drive, floppy drive, or CD-ROM. - -When there are a large number of files, they are often organized -into {\bf directories} (also called ``folders''). -Each file is identified by a unique name, or a combination of a -file name and a directory name. - -By reading and writing files, programs can -exchange information with each other and generate printable formats -like PDF. - -Working with files is a lot like working with books. To use a book, -you have to open it. When you're done, you have to close it. While -the book is open, you can either write in it or read from it. In -either case, you know where you are in the book. Most of the time, -you read the whole book in its natural order, but you can also skip -around. - -All of this applies to files as well. To open a file, you specify -its name and indicate whether you want to read or write. - -Opening a file creates a file object. In this example, -the variable {\tt f} refers to the new file object. - -\beforeverb -\begin{verbatim} ->>> f = open("test.dat","w") ->>> print f - -\end{verbatim} -\afterverb -% -The open function takes two arguments. The first is the name of the file, -and the second is the mode. Mode {\tt "w"} means that we are opening -the file for writing. - -If there is no file named {\tt test.dat}, it will be created. -If there already is one, it will be replaced by the file we are -writing. - -When we print the file object, we see the name of the file, the -mode, and the location of the object. - -To put data in the file we invoke the {\tt write} method on the -file object: - -\beforeverb -\begin{verbatim} ->>> f.write("Now is the time") ->>> f.write("to close the file") -\end{verbatim} -\afterverb -% -Closing the file tells the system that we are done writing and -makes the file available for reading: - -\beforeverb -\begin{verbatim} ->>> f.close() -\end{verbatim} -\afterverb -% -Now we can open the file again, this time for reading, and read the -contents into a string. This time, the mode argument -is {\tt "r"} for reading: - -\beforeverb -\begin{verbatim} ->>> f = open("test.dat","r") -\end{verbatim} -\afterverb -% -If we try to open a file that doesn't exist, we get an error: - -\index{runtime error} - -\beforeverb -\begin{verbatim} ->>> f = open("test.cat","r") -IOError: [Errno 2] No such file or directory: 'test.cat' -\end{verbatim} -\afterverb -% -Not surprisingly, the {\tt read} method reads data from the -file. With no arguments, it reads the entire contents of the file: - -\beforeverb -\begin{verbatim} ->>> text = f.read() ->>> print text -Now is the timeto close the file -\end{verbatim} -\afterverb -% -There is no space between ``time'' and ``to'' because we did -not write a space between the strings. - -{\tt read} can also take an argument that indicates how many -characters to read: - -\beforeverb -\begin{verbatim} ->>> f = open("test.dat","r") ->>> print f.read(5) -Now i -\end{verbatim} -\afterverb -% -If not enough characters are left in the file, -{\tt read} returns the remaining characters. -When we get to the end of the file, -{\tt read} returns the empty string: - -\beforeverb -\begin{verbatim} ->>> print f.read(1000006) -s the timeto close the file ->>> print f.read() - ->>> -\end{verbatim} -\afterverb -% -The following function copies a file, reading and writing -up to fifty characters at a time. The first argument is the name of -the original file; the second is the name of the new file: - -\beforeverb -\begin{verbatim} -def copyFile(oldFile, newFile): - f1 = open(oldFile, "r") - f2 = open(newFile, "w") - while True: - text = f1.read(50) - if text == "": - break - f2.write(text) - f1.close() - f2.close() - return -\end{verbatim} -\afterverb -% -The {\tt break} statement is new. Executing it breaks out of the -loop; the flow of execution moves to the first statement after -the loop. - -\index{break statement} -\index{statement!break} - -In this example, the {\tt while} loop is infinite because the -value {\tt True} is always true. The {\em only} way to get out -of the loop is to execute {\tt break}, which happens when -{\tt text} is the empty string, which happens when we get to -the end of the file. - - - -\section{Text files} -\index{text file} -\index{file!text} - -A {\bf text file} is a file that contains printable characters and -whitespace, organized into lines separated by newline characters. -Since Python is specifically designed to process text files, it -provides methods that make the job easy. - -To demonstrate, we'll -create a text file with three lines of text separated by -newlines: - -\beforeverb -\begin{verbatim} ->>> f = open("test.dat","w") ->>> f.write("line one\nline two\nline three\n") ->>> f.close() -\end{verbatim} -\afterverb -% -The {\tt readline} method reads all the characters -up to and including the next newline character: - -\beforeverb -\begin{verbatim} ->>> f = open("test.dat","r") ->>> print f.readline() -line one - ->>> -\end{verbatim} -\afterverb -% -{\tt readlines} returns all of the remaining -lines as a list of strings: - -\beforeverb -\begin{verbatim} ->>> print f.readlines() -['line two\012', 'line three\012'] -\end{verbatim} -\afterverb -% -In this case, the output is in list format, which means that the -strings appear with quotation marks and the newline character -appears as the escape sequence {\tt \\012}. - -At the end of the file, {\tt readline} returns the empty string -and {\tt readlines} returns the empty list: - -\beforeverb -\begin{verbatim} ->>> print f.readline() - ->>> print f.readlines() -[] -\end{verbatim} -\afterverb -% -The following is an example of a line-processing program. -{\tt filterFile} makes a copy of {\tt oldFile}, omitting -any lines that begin with {\tt \#}: - -\beforeverb -\begin{verbatim} -def filterFile(oldFile, newFile): - f1 = open(oldFile, "r") - f2 = open(newFile, "w") - while True: - text = f1.readline() - if text == "": - break - if text[0] == '#': - continue - f2.write(text) - f1.close() - f2.close() - return -\end{verbatim} -\afterverb -% -The {\tt continue} statement ends the current iteration of the -loop, but continues looping. The flow of -execution moves to the top of the loop, checks the condition, -and proceeds accordingly. - -\index{continue statement} -\index{statement!continue} - -Thus, if {\tt text} is the empty string, the loop exits. If -the first character of {\tt text} is a hash mark, the flow -of execution goes to -the top of the loop. Only if both conditions fail do we copy -{\tt text} into the new file. - - -\section{Writing variables} -\index{format operator} -\index{format string} -\index{operator!format} - -The argument of {\tt write} has to be a string, so if we want -to put other values in a file, we have to convert them to -strings first. The easiest way to do that is with the {\tt str} -function: - -\beforeverb -\begin{verbatim} ->>> x = 52 ->>> f.write (str(x)) -\end{verbatim} -\afterverb -% -An alternative is to use the {\bf format operator} {\tt \%}. When -applied to integers, {\tt \%} is the modulus operator. But -when the first operand is a string, {\tt \%} is the format operator. - -The first operand is the {\bf format string}, and the second operand -is a tuple of expressions. The result is a string that contains -the values of the expressions, formatted according to the format -string. - -As a simple example, the {\bf format sequence} {\tt "\%d"} means that -the first expression in the tuple should be formatted as an -integer. Here the letter {\em d} stands for ``decimal'': - -\beforeverb -\begin{verbatim} ->>> cars = 52 ->>> "%d" % cars -'52' -\end{verbatim} -\afterverb -% -The result is the string {\tt '52'}, which is not to be confused -with the integer value {\tt 52}. - -A format sequence can appear anywhere in the format string, -so we can embed a value in a sentence: - -\beforeverb -\begin{verbatim} ->>> cars = 52 ->>> "In July we sold %d cars." % cars -'In July we sold 52 cars.' -\end{verbatim} -\afterverb -% -The format sequence {\tt "\%f"} formats the next item in -the tuple as a floating-point number, and {\tt "\%s"} formats -the next item as a string: - -\beforeverb -\begin{verbatim} ->>> "In %d days we made %f million %s." % (34,6.1,'dollars') -'In 34 days we made 6.100000 million dollars.' -\end{verbatim} -\afterverb -% -By default, the floating-point format prints six decimal places. - -The number of expressions in the tuple has to match the number -of format sequences in the string. Also, the types of the -expressions have to match the format sequences: - -\index{runtime error} - -\beforeverb -\begin{verbatim} ->>> "%d %d %d" % (1,2) -TypeError: not enough arguments for format string ->>> "%d" % 'dollars' -TypeError: illegal argument type for built-in operation -\end{verbatim} -\afterverb -% -In the first example, there aren't enough expressions; in the -second, the expression is the wrong type. - -For more control over the format of numbers, we can specify -the number of digits as part of the format sequence: - -\beforeverb -\begin{verbatim} ->>> "%6d" % 62 -' 62' ->>> "%12f" % 6.1 -' 6.100000' -\end{verbatim} -\afterverb -% -The number after the percent sign is the minimum number of spaces -the number will take up. If the value provided takes fewer digits, -leading spaces are added. If the number of spaces is negative, -trailing spaces are added: - -\beforeverb -\begin{verbatim} ->>> "%-6d" % 62 -'62 ' -\end{verbatim} -\afterverb -% -For floating-point numbers, we can also -specify the number of digits after the decimal point: - -\beforeverb -\begin{verbatim} ->>> "%12.2f" % 6.1 -' 6.10' -\end{verbatim} -\afterverb -% -In this example, the result takes up twelve spaces and includes two -digits after the decimal. This format is useful for printing -dollar amounts with the decimal points aligned. - -\index{dictionary} - -For example, imagine a dictionary that contains -student names as keys and hourly wages as values. -Here is a function that prints the contents of the dictionary -as a formatted report: - -\beforeverb -\begin{verbatim} -def report (wages) : - students = wages.keys() - students.sort() - for student in students : - print "%-20s %12.2f" % (student, wages[student]) -\end{verbatim} -\afterverb -% -To test this function, we'll create a small dictionary -and print the contents: - -\beforeverb -\begin{verbatim} ->>> wages = {'mary': 6.23, 'joe': 5.45, 'joshua': 4.25} ->>> report (wages) -joe 5.45 -joshua 4.25 -mary 6.23 -\end{verbatim} -\afterverb -% -By controlling the width of each value, we guarantee that the columns -will line up, as long as the names contain fewer than twenty-one -characters and the wages are less than one billion dollars an hour. - - -\section{Directories} -\index{directory} - -When you create a new file by opening it and writing, the new -file goes in the current directory (wherever you were when -you ran the program). Similarly, when you open a file for -reading, Python looks for it in the current directory. - -If you want to open a file somewhere else, you have to specify -the {\bf path} to the file, which is the name of the directory -(or folder) where the file is located: - -\beforeverb -\begin{verbatim} ->>> f = open("/usr/share/dict/words","r") ->>> print f.readline() -Aarhus -\end{verbatim} -\afterverb -% -This example opens a file named {\tt words} that resides in a -directory named {\tt dict}, which resides in {\tt share}, which -resides in {\tt usr}, which resides in the top-level directory -of the system, called {\tt /}. - -\index{path} -\index{delimiter} - -You cannot use {\tt /} -as part of a filename; it is reserved as a delimiter between -directory and filenames. - -The file {\tt /usr/share/dict/words} contains a list of words -in alphabetical order, of which the first is the name of a -Danish university. - - -\section{Pickling} -\index{pickling} - -In order to put values into a file, you have to convert them -to strings. You have already seen how to do that with {\tt str}: - -\beforeverb -\begin{verbatim} ->>> f.write (str(12.3)) ->>> f.write (str([1,2,3])) -\end{verbatim} -\afterverb -% -The problem is that when you read the value back, you get a string. -The original type information has been lost. In fact, you can't -even tell where one value ends and the next begins: - -\beforeverb -\begin{verbatim} ->>> f.readline() -'12.3[1, 2, 3]' -\end{verbatim} -\afterverb -% -The solution is {\bf pickling}, so called because it ``preserves'' -data structures. The {\tt pickle} module contains the necessary -commands. To use it, import {\tt pickle} and then open the file in -the usual way: - -\beforeverb -\begin{verbatim} ->>> import pickle ->>> f = open("test.pck","w") -\end{verbatim} -\afterverb -% -To store a data structure, use the {\tt dump} method and -then close the file in the usual way: - -\beforeverb -\begin{verbatim} ->>> pickle.dump(12.3, f) ->>> pickle.dump([1,2,3], f) ->>> f.close() -\end{verbatim} -\afterverb -% -Then we can open the file for reading and load the data structures -we dumped: - -\beforeverb -\begin{verbatim} ->>> f = open("test.pck","r") ->>> x = pickle.load(f) ->>> x -12.3 ->>> type(x) - ->>> y = pickle.load(f) ->>> y -[1, 2, 3] ->>> type(y) - -\end{verbatim} -\afterverb -% -Each time we invoke {\tt load}, we get a single value from -the file, complete with its original type. - - -\section{Exceptions} -\index{try statement} -\index{statement!try} -\index{raise exception} -\index{handle exception} -\index{except statement} -\index{statement!except} -\index{exception} - -Whenever a runtime error occurs, it creates an -{\bf exception}. Usually, the program stops and Python -prints -an error message. - -For example, dividing by zero creates an exception: - -\beforeverb -\begin{verbatim} ->>> print 55/0 -ZeroDivisionError: integer division or modulo -\end{verbatim} -\afterverb -% -So does accessing a nonexistent list item: - -\beforeverb -\begin{verbatim} ->>> a = [] ->>> print a[5] -IndexError: list index out of range -\end{verbatim} -\afterverb -% -Or accessing a key that isn't in the dictionary: - -\beforeverb -\begin{verbatim} ->>> b = {} ->>> print b['what'] -KeyError: what -\end{verbatim} -\afterverb -% -Or trying to open a nonexistent file: - -\beforeverb -\begin{verbatim} ->>> f = open("Idontexist", "r") -IOError: [Errno 2] No such file or directory: 'Idontexist' -\end{verbatim} -\afterverb -% -In each case, the error -message has two parts: the type of error before -the colon, and specifics about the error after the colon. -Normally Python also prints a traceback of where the program -was, but we have omitted that from the examples. - -\index{traceback} - -Sometimes we want to execute an operation that could cause -an exception, but we don't want the program to stop. We can -{\bf handle} the exception using the {\tt try} and -{\tt except} statements. - -For example, we might prompt the user for the name of a file -and then try to open it. If the file doesn't exist, we don't -want the program to crash; we want to handle the exception: - -\beforeverb -\begin{verbatim} -filename = raw_input('Enter a file name: ') -try: - f = open (filename, "r") -except IOError: - print 'There is no file named', filename -\end{verbatim} -\afterverb -% -The {\tt try} statement executes the statements in the first block. -If no exceptions occur, it ignores the {\tt except} statement. If an -exception of type {\tt IOError} occurs, it executes the statements in -the {\tt except} branch and then continues. - -We can encapsulate this capability in a function: {\tt exists} takes a -filename and returns true if the file exists, false if it doesn't: - -\beforeverb -\begin{verbatim} -def exists(filename): - try: - f = open(filename) - f.close() - return True - except IOError: - return False -\end{verbatim} -\afterverb -% -You can use multiple {\tt except} blocks to handle different kinds of -exceptions. The {\em Python Reference Manual} has the details. - -If your program detects an error condition, you can make it -{\bf raise} an exception. Here is an example that gets input -from the user and checks for the value 17. -Assuming that 17 is not valid input for some reason, we raise an -exception. - -\beforeverb -\begin{verbatim} -def inputNumber () : - x = input ('Pick a number: ') - if x == 17 : - raise ValueError, '17 is a bad number' - return x -\end{verbatim} -\afterverb -% -The {\tt raise} statement takes two arguments: the exception type and -specific information about the error. {\tt ValueError} is one of the -exception types Python provides for a variety of occasions. Other -examples include {\tt TypeError}, {\tt KeyError}, and my favorite, -{\tt NotImplementedError}. - -If the function that called {\tt inputNumber} handles the error, -then the program can continue; otherwise, Python prints the -error message and exits: - -\beforeverb -\begin{verbatim} ->>> inputNumber () -Pick a number: 17 -ValueError: 17 is a bad number -\end{verbatim} -\afterverb -% -The error message includes the exception type and the -additional information you provided. - -\begin{quote} -{\em As an exercise, write a function that uses {\tt inputNumber} -to input a number from the keyboard and that handles the -{\tt ValueError} exception.} -\end{quote} - - -\section{Glossary} - -\index{file} -\index{text file} -\index{break statement} -\index{statement!break} -\index{continue statement} -\index{statement!continue} -\index{format operator} -\index{format string} -\index{operator!format} -\index{directory} -\index{pickle} -\index{try} -\index{raise exception} -\index{raise exception} -\index{handle exception} -\index{except statement} -\index{exception} - -\begin{description} - -\item[file:] A named entity, usually stored on a hard drive, floppy disk, -or CD-ROM, that contains a stream of characters. - -\item[directory:] A named collection of files, also called a folder. - -\item[path:] A sequence of directory names that specifies the -exact location of a file. - -\item[text file:] A file that contains printable characters organized -into lines separated by newline characters. - -\item[break statement:] A statement that causes the flow of execution -to exit a loop. - -\item[continue statement:] A statement that causes the current iteration -of a loop to end. The flow of execution goes to the top of the loop, -evaluates the condition, and proceeds accordingly. - -\item[format operator:] The {\tt \%} operator takes a format -string and a tuple of expressions and yields a string that includes -the expressions, formatted according to the format string. - -\item[format string:] A string that contains printable characters -and format sequences that indicate how to format values. - -\item[format sequence:] A sequence of characters beginning with -{\tt \%} that indicates how to format a value. - -\item[pickle:] To write a data value in a file along with its -type information so that it can be reconstituted later. - -\item[exception:] An error that occurs at runtime. - -\item[handle:] To prevent an exception from terminating -a program using the {\tt try} -and {\tt except} statements. - -\item[raise:] To signal an exception using the {\tt raise} -statement. - - -\end{description} - diff --git a/sciphi/data/stock_raw/learning_with_python/chap12.tex b/sciphi/data/stock_raw/learning_with_python/chap12.tex deleted file mode 100644 index 1b14fe6..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap12.tex +++ /dev/null @@ -1,592 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Classes and objects} -\index{class} -\index{object} - - -\section{User-defined compound types} -\label{point} -\index{compound data type} -\index{data type!compound} -\index{user-defined data type} -\index{data type!user-defined} -\index{constructor} - -Having used some of Python's built-in types, we are ready to create a -user-defined type: the {\tt Point}. - -Consider the concept of a mathematical point. In two dimensions, a -point is two numbers (coordinates) that are treated collectively as a -single object. In mathematical notation, points are often written in -parentheses with a comma separating the coordinates. For example, -$(0, 0)$ represents the origin, and $(x, y)$ represents the -point $x$ units to the right and $y$ units up from the origin. - -A natural way to represent a point in Python is with two -floating-point values. The question, then, is how to group these two -values into a compound object. The quick and dirty solution -is to use a list or tuple, and for some applications that might -be the best choice. - -\index{floating-point} - -An alternative is to define a new user-defined compound type, also -called a {\bf class}. This approach involves a bit more effort, but -it has advantages that will be apparent soon. - -A class definition looks like this: - -\beforeverb -\begin{verbatim} -class Point: - pass -\end{verbatim} -\afterverb -% -Class definitions can appear anywhere in a program, but they are -usually near the beginning (after the {\tt import} statements). The -syntax rules for a class definition are the same as for other compound -statements (see Section~\ref{conditional execution}). - -This definition creates a new class called {\tt Point}. The -{\bf pass} statement has no effect; it is only -necessary because a compound statement must have something in its -body. - -By creating the {\tt Point} class, we created a new type, also -called {\tt Point}. The members of this type are called -{\bf instances} of the type or {\bf objects}. Creating a new instance -is called {\bf instantiation}. To instantiate a {\tt Point} object, -we call a function named (you guessed it) {\tt Point}: - -\index{instance!object} -\index{object instance} -\index{instantiation} - -\beforeverb -\begin{verbatim} -blank = Point() -\end{verbatim} -\afterverb -% -The variable {\tt blank} is assigned a reference to a new -{\tt Point} object. A function like {\tt Point} that creates -new objects is called a {\bf constructor}. - - -\section{Attributes} -\index{attribute} - -We can add new data to an instance using dot notation: - -\beforeverb -\begin{verbatim} ->>> blank.x = 3.0 ->>> blank.y = 4.0 -\end{verbatim} -\afterverb -% -This syntax is similar to the syntax for selecting a variable from a -module, such as {\tt math.pi} or {\tt string.uppercase}. In this case, -though, we are selecting a data item from an instance. These -named items are called {\bf attributes}. - -The following state diagram shows the result of these assignments: - -\beforefig -\centerline{\psfig{figure=illustrations/point.eps}} -\afterfig - -The variable {\tt blank} refers to a Point object, which -contains two attributes. Each attribute refers to a -floating-point number. - -We can read the value of an attribute using the same syntax: - -\beforeverb -\begin{verbatim} ->>> print blank.y -4.0 ->>> x = blank.x ->>> print x -3.0 -\end{verbatim} -\afterverb -% -The expression {\tt blank.x} means, ``Go to the object {\tt blank} -refers to and get the value of {\tt x}.'' In this case, we assign that -value to a variable named {\tt x}. There is no conflict between -the variable {\tt x} and the attribute {\tt x}. The -purpose of dot notation is to identify which variable you are -referring to unambiguously. - -You can use dot notation as part of any expression, so the following -statements are legal: - -\beforeverb -\begin{verbatim} -print '(' + str(blank.x) + ', ' + str(blank.y) + ')' -distanceSquared = blank.x * blank.x + blank.y * blank.y -\end{verbatim} -\afterverb -% -The first line outputs {\tt (3.0, 4.0)}; the second line calculates -the value 25.0. - -You might be tempted to print the value of {\tt blank} itself: - -\beforeverb -\begin{verbatim} ->>> print blank -<__main__.Point instance at 80f8e70> -\end{verbatim} -\afterverb -% -The result indicates that {\tt blank} is an instance of the {\tt -Point} class and it was defined in {\tt \_\_main\_\_}. {\tt 80f8e70} -is the unique identifier for this object, written in hexadecimal (base -16). This is probably not the most informative way to display a {\tt -Point} object. You will see how to change it shortly. - -\index{printing!object} - -\begin{quote} -{\em As an exercise, create and print a {\tt Point} object, and then -use {\tt id} to print the object's unique identifier. -Translate the hexadecimal form into decimal and confirm that they -match.} -\end{quote} - - -\section{Instances as arguments} -\index{instance} -\index{parameter} - -You can pass an instance as an argument in the usual way. -For example: - -\beforeverb -\begin{verbatim} -def printPoint(p): - print '(' + str(p.x) + ', ' + str(p.y) + ')' -\end{verbatim} -\afterverb -% -{\tt printPoint} takes a point as an argument and displays it in -the standard format. If you call {\tt printPoint(blank)}, the -output is {\tt (3.0, 4.0)}. - -\begin{quote} -{\em As an exercise, rewrite the {\tt distance} function from -Section~\ref{program development} so that it takes two {\tt Point}s as -arguments instead of four numbers.} -\end{quote} - - -\section{Sameness} -\index{sameness} - -The meaning of the word ``same'' seems perfectly clear until you give -it some thought, and then you realize there is more to it than you -expected. - -\index{ambiguity} -\index{natural language} -\index{language!} - -For example, if you say, ``Chris and I have the same car,'' you mean -that his car and yours are the same make and model, but that they are -two different cars. If you say, ``Chris and I have the same mother,'' -you mean that his mother and yours are the same person.\footnote{Not all -languages have the same problem. For example, German has different -words for different kinds of sameness. ``Same car'' in this context -would be ``gleiche Auto,'' and ``same mother'' would be ``selbe -Mutter.''} So the idea of ``sameness'' is different depending on the -context. - -When you talk about objects, there is a similar ambiguity. For -example, if two {\tt Point}s are the same, does that mean they -contain the same data (coordinates) or that they are actually -the same object? - -To find out if two references refer to the same object, use -the {\tt is} operator. For example: - -\beforeverb -\begin{verbatim} ->>> p1 = Point() ->>> p1.x = 3 ->>> p1.y = 4 ->>> p2 = Point() ->>> p2.x = 3 ->>> p2.y = 4 ->>> p1 is p2 -False -\end{verbatim} -\afterverb -% -Even though {\tt p1} and {\tt p2} contain the same coordinates, -they are not the same object. If we assign {\tt p1} to -{\tt p2}, then the two variables are aliases of the same -object: - -\beforeverb -\begin{verbatim} ->>> p2 = p1 ->>> p1 is p2 -True -\end{verbatim} -\afterverb -% -This type of equality is called {\bf shallow equality} because -it compares only the references, not the contents of the objects. - -\index{equality} -\index{identity} -\index{shallow equality} -\index{deep equality} - -To compare the contents of the objects---{\bf deep equality}---we -can write a function called {\tt samePoint}: - -\beforeverb -\begin{verbatim} -def samePoint(p1, p2) : - return (p1.x == p2.x) and (p1.y == p2.y) -\end{verbatim} -\afterverb -% -Now if we create two different objects that contain the same -data, we can use {\tt samePoint} to find out if they represent the -same point. - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} ->>> p1 = Point() ->>> p1.x = 3 ->>> p1.y = 4 ->>> p2 = Point() ->>> p2.x = 3 ->>> p2.y = 4 ->>> samePoint(p1, p2) -True -\end{verbatim} -\afterverb -% -Of course, if the two variables refer to the same object, -they have both shallow and deep equality. - - -\section{Rectangles} -\index{rectangle} - -Let's say that we want a class to represent a rectangle. The question -is, what information do we have to provide in order to specify a -rectangle? To keep things simple, assume that the rectangle is -oriented either vertically or horizontally, never at an angle. - -There are a few possibilities: we could specify the center of the -rectangle (two coordinates) and its size (width and height); or we -could specify one of the corners and the size; or we could specify two -opposing corners. A conventional choice is to specify the upper-left -corner of the rectangle and the size. - -Again, we'll define a new class: - -\beforeverb -\begin{verbatim} -class Rectangle: - pass -\end{verbatim} -\afterverb -% -And instantiate it: - -\beforeverb -\begin{verbatim} -box = Rectangle() -box.width = 100.0 -box.height = 200.0 -\end{verbatim} -\afterverb -% -This code creates a new {\tt Rectangle} object with two floating-point -attributes. To specify the upper-left corner, we can embed an -object within an object! - -\beforeverb -\begin{verbatim} -box.corner = Point() -box.corner.x = 0.0 -box.corner.y = 0.0 -\end{verbatim} -\afterverb -% -The dot operator composes. The expression {\tt box.corner.x} means, -``Go to the object {\tt box} refers to and select the attribute named -{\tt corner}; then go to that object and select the attribute named -{\tt x}.'' - -The figure shows the state of this object: - -\beforefig -\centerline{\psfig{figure=illustrations/rectangle.eps}} -\afterfig - - -\section{Instances as return values} -\index{instance} -\index{return value} - -Functions can return instances. For example, {\tt findCenter} -takes a {\tt Rectangle} as an argument and returns a {\tt Point} -that contains the coordinates of the center of the {\tt Rectangle}: - -\beforeverb -\begin{verbatim} -def findCenter(box): - p = Point() - p.x = box.corner.x + box.width/2.0 - p.y = box.corner.y - box.height/2.0 - return p -\end{verbatim} -\afterverb -% -To call this function, pass {\tt box} as an argument and assign -the result to a variable: - -\beforeverb -\begin{verbatim} ->>> center = findCenter(box) ->>> printPoint(center) -(50.0, -100.0) -\end{verbatim} -\afterverb -% - -\section{Objects are mutable} -\index{object!mutable} -\index{mutable!object} - -We can change the state of an object by making an assignment -to one of its attributes. For example, to change the size -of a rectangle without changing its position, we could -modify the values of {\tt width} and {\tt height}: - -\beforeverb -\begin{verbatim} -box.width = box.width + 50 -box.height = box.height + 100 -\end{verbatim} -\afterverb -% -We could encapsulate this code in a method and -generalize it to grow the rectangle by any amount: - -\index{encapsulation} -\index{generalization} - -\beforeverb -\begin{verbatim} -def growRect(box, dwidth, dheight) : - box.width = box.width + dwidth - box.height = box.height + dheight -\end{verbatim} -\afterverb -% -The variables {\tt dwidth} and {\tt dheight} indicate how much the -rectangle should grow in each direction. Invoking this method has the -effect of modifying the {\tt Rectangle} that is passed as an argument. - -For example, we could create a new {\tt Rectangle} named {\tt bob} -and pass it to {\tt growRect}: - -\beforeverb -\begin{verbatim} ->>> bob = Rectangle() ->>> bob.width = 100.0 ->>> bob.height = 200.0 ->>> bob.corner = Point() ->>> bob.corner.x = 0.0 ->>> bob.corner.y = 0.0 ->>> growRect(bob, 50, 100) -\end{verbatim} -\afterverb -% -While {\tt growRect} is running, the parameter {\tt box} is an -alias for {\tt bob}. Any changes made to {\tt box} also -affect {\tt bob}. - -\begin{quote} -{\em As an exercise, write a function named {\tt moveRect} that takes -a {\tt Rectangle} and two parameters named {\tt dx} and {\tt dy}. It -should change the location of the rectangle by adding {\tt dx} -to the {\tt x} coordinate of {\tt corner} and adding {\tt dy} -to the {\tt y} coordinate of {\tt corner}.} -\end{quote} - - -\section{Copying} -\label{embedded} -\index{aliasing} -\index{copying} -\index{copy module} -\index{module!copy} - -Aliasing can make a program difficult to read because changes -made in one place might have unexpected effects in another place. -It is hard to keep track of all the variables that might refer -to a given object. - -Copying an object is often an alternative to aliasing. -The {\tt copy} module contains a function called {\tt copy} that -can duplicate any object: - -\beforeverb -\begin{verbatim} ->>> import copy ->>> p1 = Point() ->>> p1.x = 3 ->>> p1.y = 4 ->>> p2 = copy.copy(p1) ->>> p1 == p2 -False ->>> samePoint(p1, p2) -True -\end{verbatim} -\afterverb -% -Once we import the {\tt copy} module, we can use the {\tt copy} method -to make a new {\tt Point}. {\tt p1} and {\tt p2} are not the -same point, but they contain the same data. - -To copy a simple object like a {\tt Point}, which doesn't -contain any embedded objects, {\tt copy} is sufficient. This is called -{\bf shallow copying}. - -For something like a {\tt Rectangle}, which contains a reference -to a {\tt Point}, {\tt copy} doesn't do quite the right thing. It -copies the reference to the {\tt Point} object, so both the old -{\tt Rectangle} and the new one refer to a single {\tt Point}. - -\index{embedded reference} -\index{reference!embedded} - -If we create a box, {\tt b1}, in the usual way and then make -a copy, {\tt b2}, using {\tt copy}, the resulting -state diagram looks like this: - -\vspace{0.1in} -\beforefig -\centerline{\psfig{figure=illustrations/rectangle2.eps}} -\afterfig -\vspace{0.1in} - -This is almost certainly not what we want. In this case, invoking -{\tt growRect} on one of the {\tt Rectangles} would not affect -the other, but invoking {\tt moveRect} on either would affect both! -This behavior is confusing and error-prone. - -Fortunately, the {\tt copy} module contains a method named {\tt -deepcopy} that copies not only the object but also any embedded -objects. You will not be surprised to learn that this operation is -called a {\bf deep copy}. - -\beforeverb -\begin{verbatim} ->>> b2 = copy.deepcopy(b1) -\end{verbatim} -\afterverb -% -Now {\tt b1} and {\tt b2} are completely separate objects. - -We can use {\tt deepcopy} to rewrite {\tt growRect} so that -instead of modifying an existing {\tt Rectangle}, it creates a new -{\tt Rectangle} that has the same location as the old one but new -dimensions: - -\beforeverb -\begin{verbatim} -def growRect(box, dwidth, dheight) : - import copy - newBox = copy.deepcopy(box) - newBox.width = newBox.width + dwidth - newBox.height = newBox.height + dheight - return newBox -\end{verbatim} -\afterverb -% - -\begin{quote} -{\em An an exercise, rewrite {\tt moveRect} so that it creates and -returns a new {\tt Rectangle} instead of modifying the old one.} -\end{quote} - - -\adjustpage{-2} -\pagebreak - -\section{Glossary} - -\begin{description} - -\item[class:] A user-defined compound type. -A class can also be thought of -as a template for the objects that are instances of it. - -\item[instantiate:] To create an instance of a class. - -\item[instance:] An object that belongs to a class. - -\item[object:] A compound data type that is often used to -model a thing or concept in the real world. - -\item[constructor:] A method used to create new objects. - -\item[attribute:] One of the named data items that makes up -an instance. - -\item[shallow equality:] Equality of references, or two -references that point to the same object. - -\item[deep equality:] Equality of values, or two references -that point to objects that have the same value. - -\item[shallow copy:] To copy the contents of an object, including -any references to embedded objects; implemented by the {\tt copy} -function in the {\tt copy} module. - -\item[deep copy:] To copy the contents of an object as well as any -embedded objects, and any objects embedded in them, and so on; -implemented by the {\tt deepcopy} function in the {\tt copy} module. - -\index{class} -\index{instantiate} -\index{instance} -\index{object} -\index{constructor} -\index{attribute} -\index{shallow equality} -\index{deep equality} -\index{shallow copy} -\index{deep copy} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap13.tex b/sciphi/data/stock_raw/learning_with_python/chap13.tex deleted file mode 100644 index 661eb7c..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap13.tex +++ /dev/null @@ -1,421 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Classes and functions} -\label{time} -\index{function} -\index{method} - - -\section{Time} - -As another example of a user-defined type, we'll define a class called -{\tt Time} that records the time of day. The class definition looks -like this: - -\beforeverb -\begin{verbatim} -class Time: - pass -\end{verbatim} -\afterverb -% -We can create a new {\tt Time} object and assign -attributes for hours, minutes, and seconds: - -\beforeverb -\begin{verbatim} -time = Time() -time.hours = 11 -time.minutes = 59 -time.seconds = 30 -\end{verbatim} -\afterverb -% -The state diagram for the {\tt Time} object looks like this: - -\beforefig -\centerline{\psfig{figure=illustrations/time.eps}} -\afterfig - -\begin{quote} -{\em As an exercise, write a function {\tt printTime} that takes a -{\tt Time} object -as an argument and prints it in the form {\tt hours:minutes:seconds}.} -\end{quote} - -\begin{quote} -{\em As a second exercise, write a boolean function {\tt after} that -takes two {\tt Time} objects, {\tt t1} and {\tt t2}, as arguments, and -returns {\tt True} if {\tt t1} follows {\tt t2} chronologically and -{\tt False} otherwise.} -\end{quote} - - -\section{Pure functions} -\index{pure function} -\index{function type!pure} - -In the next few sections, we'll write two versions of a function -called {\tt addTime}, which calculates the sum of two {\tt Time}s. -They will demonstrate two kinds of functions: pure functions and -modifiers. - -The following is a rough version of {\tt addTime}: - -\beforeverb -\begin{verbatim} -def addTime(t1, t2): - sum = Time() - sum.hours = t1.hours + t2.hours - sum.minutes = t1.minutes + t2.minutes - sum.seconds = t1.seconds + t2.seconds - return sum -\end{verbatim} -\afterverb -% -The function creates a new {\tt Time} object, initializes its -attributes, and returns a reference to the new object. This is called -a {\bf pure function} because it does not modify any of the objects -passed to it as arguments and it has no side effects, such as -displaying a value or getting user input. - -Here is an example of how to use this function. We'll create two {\tt -Time} objects: {\tt currentTime}, which contains the current time; and -{\tt breadTime}, which contains the amount of time it takes for a -breadmaker to make bread. Then we'll use {\tt addTime} to figure out -when the bread will be done. If you haven't finished writing {\tt -printTime} yet, take a look ahead to Section~\ref{printTime} before -you try this: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time() ->>> currentTime.hours = 9 ->>> currentTime.minutes = 14 ->>> currentTime.seconds = 30 - ->>> breadTime = Time() ->>> breadTime.hours = 3 ->>> breadTime.minutes = 35 ->>> breadTime.seconds = 0 - ->>> doneTime = addTime(currentTime, breadTime) ->>> printTime(doneTime) -\end{verbatim} -\afterverb -% -The output of this program is {\tt 12:49:30}, which is correct. On the -other hand, there are cases where the result is not correct. Can you -think of one? - -The problem is that this function does not deal with cases where the -number of seconds or minutes adds up to more than sixty. When that -happens, we have to ``carry'' the extra seconds into the minutes column -or the extra minutes into the hours column. - -Here's a second corrected version of the function: - -\beforeverb -\begin{verbatim} -def addTime(t1, t2): - sum = Time() - sum.hours = t1.hours + t2.hours - sum.minutes = t1.minutes + t2.minutes - sum.seconds = t1.seconds + t2.seconds - - if sum.seconds >= 60: - sum.seconds = sum.seconds - 60 - sum.minutes = sum.minutes + 1 - - if sum.minutes >= 60: - sum.minutes = sum.minutes - 60 - sum.hours = sum.hours + 1 - - return sum -\end{verbatim} -\afterverb -% -Although this function is correct, it is starting to get big. Later -we will suggest an alternative approach that yields shorter code. - - -\section{Modifiers} -\label{increment} -\index{modifier} -\index{function type!modifier} - -There are times when it is useful for a function to modify one or more -of the objects it gets as arguments. Usually, the caller keeps a -reference to the objects it passes, so any changes the function makes -are visible to the caller. Functions that work this way are called -{\bf modifiers}. - -{\tt increment}, which adds a given number of seconds to a {\tt Time} -object, would be written most naturally as a -modifier. A rough draft of the function -looks like this: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -def increment(time, seconds): - time.seconds = time.seconds + seconds - - if time.seconds >= 60: - time.seconds = time.seconds - 60 - time.minutes = time.minutes + 1 - - if time.minutes >= 60: - time.minutes = time.minutes - 60 - time.hours = time.hours + 1 -\end{verbatim} -\afterverb -% -The first line performs the basic operation; the remainder deals -with the special cases we saw before. - -Is this function correct? What happens if the parameter {\tt seconds} is -much greater than sixty? In that case, it is not enough to carry -once; we have to keep doing it until {\tt seconds} is less than sixty. -One solution is to -replace the {\tt if} statements with {\tt while} -statements: - -\beforeverb -\begin{verbatim} -def increment(time, seconds): - time.seconds = time.seconds + seconds - - while time.seconds >= 60: - time.seconds = time.seconds - 60 - time.minutes = time.minutes + 1 - - while time.minutes >= 60: - time.minutes = time.minutes - 60 - time.hours = time.hours + 1 -\end{verbatim} -\afterverb -% -This function is now correct, but it is not the most efficient -solution. - -\begin{quote} -{\em As an exercise, rewrite this function so that it doesn't contain -any loops.} -\end{quote} - -\begin{quote} -{\em As a second exercise, rewrite {\tt increment} as a pure function, and -write function calls to both versions.} -\end{quote} - - -\section{Which is better?} -\index{functional programming style} - -\adjustpage{1} - -Anything that can be done with modifiers can also be done with pure -functions. In fact, some programming languages only allow pure -functions. There is some evidence that programs that use pure -functions are faster to develop and less error-prone than programs -that use modifiers. Nevertheless, modifiers are convenient at times, -and in some cases, functional programs are less efficient. - -In general, we recommend that you write pure functions whenever it is -reasonable to do so and resort to modifiers only if there is a -compelling advantage. This approach might be called a {\bf functional -programming style}. - - -\section{Prototype development versus planning} -\label{convert} -\index{prototype development} - -In this chapter, we demonstrated an approach to program -development that we call {\bf prototype development}. In each -case, we wrote a rough draft (or prototype) that performed the basic -calculation and then tested it on a few cases, correcting flaws as we -found them. - -Although this approach can be effective, it can lead to code that is -unnecessarily complicated---since it deals with many special -cases---and unreliable---since it is hard to know if you have found -all the errors. - -An alternative is {\bf planned development}, in which high-level insight -into the problem can make the programming much easier. In this case, -the insight is that a {\tt Time} object is really a three-digit number -in base 60! The {\tt second} component is the ``ones column,'' the -{\tt minute} component is the ``sixties column,'' and the {\tt hour} -component is the ``thirty-six hundreds column.'' - -When we wrote {\tt addTime} and {\tt increment}, we were effectively -doing addition in base 60, which is why we had to carry from one -column to the next. - -This observation suggests another approach to the whole problem---we -can convert a {\tt Time} object into a single number and take -advantage of the fact that the computer knows how to do arithmetic -with numbers. The following function converts a {\tt Time} -object into an integer: - -\beforeverb -\begin{verbatim} -def convertToSeconds(t): - minutes = t.hours * 60 + t.minutes - seconds = minutes * 60 + t.seconds - return seconds -\end{verbatim} -\afterverb -% -Now, all we need is a way to convert from an integer to a {\tt Time} -object: - -\adjustpage{1} - -\beforeverb -\begin{verbatim} -def makeTime(seconds): - time = Time() - time.hours = seconds // 3600 - time.minutes = (seconds%3600) // 60 - time.seconds = seconds%60 - return time -\end{verbatim} -\afterverb -% -You might have to think a bit to convince yourself that this function -is correct. Assuming you are convinced, you can use it and -{\tt convertToSeconds} -to rewrite {\tt addTime}: - -\beforeverb -\begin{verbatim} -def addTime(t1, t2): - seconds = convertToSeconds(t1) + convertToSeconds(t2) - return makeTime(seconds) -\end{verbatim} -\afterverb -% -This version is much shorter than the original, and it is much easier to -demonstrate that it is correct. - -\begin{quote} -{\em As an exercise, rewrite {\tt increment} the same way.} -\end{quote} - - -\section{Generalization} -\index{generalization} - -In some ways, converting from base 60 to base 10 and back is harder -than just dealing with times. Base conversion is more abstract; our -intuition for dealing with times is better. - -But if we have the insight to treat times as base 60 numbers and make -the investment of writing the conversion functions ({\tt -convertToSeconds} and {\tt makeTime}), we get a program that is -shorter, easier to read and debug, and more reliable. - -It is also easier to add features later. For example, imagine -subtracting two {\tt Time}s to find the duration between them. The -na\"{\i}ve approach would be to implement subtraction with borrowing. -Using the conversion functions would be easier and more likely to be -correct. - -Ironically, sometimes making a problem harder (or more general) makes it -easier (because there are fewer special cases and fewer opportunities -for error). - - -\section{Algorithms} -\index{algorithm} - -When you write a general solution for a class of problems, as opposed -to a specific solution to a single problem, you have written an {\bf -algorithm}. We mentioned this word before but did not define it -carefully. It is not easy to define, so we will try a couple of -approaches. - -First, consider something that is not an algorithm. When you learned -to multiply single-digit numbers, you probably memorized the -multiplication table. In effect, you memorized 100 specific solutions. -That kind of knowledge is not algorithmic. - -But if you were ``lazy,'' you probably cheated by learning a few -tricks. For example, to find the product of $n$ and 9, you can -write $n-1$ as the first digit and $10-n$ as the second -digit. This trick is a general solution for multiplying any -single-digit number by 9. That's an algorithm! - -Similarly, the techniques you learned for addition with carrying, -subtraction with borrowing, and long division are all algorithms. One -of the characteristics of algorithms is that they do not require any -intelligence to carry out. They are mechanical processes in which -each step follows from the last according to a simple set of rules. - -In our opinion, it is embarrassing that humans spend so much time in -school learning to execute algorithms that, quite literally, require -no intelligence. - -On the other hand, the process of designing algorithms is interesting, -intellectually challenging, and a central part of what we call -programming. - -Some of the things that people do naturally, without difficulty or -conscious thought, are the hardest to express algorithmically. -Understanding natural language is a good example. We all do it, but -so far no one has been able to explain {\em how} we do it, at least -not in the form of an algorithm. - - -\section{Glossary} - -\begin{description} - -\item[pure function:] A function that does not modify any of the objects it -receives as arguments. Most pure functions are fruitful. - -\item[modifier:] A function that changes one or more of the objects it -receives as arguments. Most modifiers are fruitless. - -\item[functional programming style:] A style of program design in which the -majority of functions are pure. - -\item[prototype development:] A way of developing programs starting with a -prototype and gradually testing and improving it. - -\item[planned development:] A way of developing programs that involves -high-level insight into the problem and more planning than incremental -development or prototype development. - -\item[algorithm:] A set of instructions for solving a class of problems by a -mechanical, unintelligent process. - -\index{pure function} -\index{modifier} -\index{functional programming style} -\index{incremental development} -\index{development!incremental} -\index{planned development} -\index{development!planned} -\index{algorithm} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap14.tex b/sciphi/data/stock_raw/learning_with_python/chap14.tex deleted file mode 100644 index 1957a82..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap14.tex +++ /dev/null @@ -1,765 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Classes and methods} - - -\section{Object-oriented features} -\index{object-oriented programming language} -\index{object-oriented programming} - -Python is an {\bf object-oriented programming language}, which means -that it provides features that support {\bf object-oriented -programming}. - -It is not easy to define object-oriented programming, but we have -already seen some of its characteristics: - -\begin{itemize} - -\item Programs are made up of object definitions and function -definitions, and most of the computation is expressed in terms -of operations on objects. - -\item Each object definition corresponds to some object or concept -in the real world, and the functions that operate on that object -correspond to the ways real-world objects interact. - -\end{itemize} - -For example, the {\tt Time} class defined in Chapter~\ref{time} -corresponds to the way people record the time of day, and the -functions we defined correspond to the kinds of things people do with -times. Similarly, the {\tt Point} and {\tt Rectangle} classes -correspond to the mathematical concepts of a point and a rectangle. - -So far, we have not taken advantage of the features Python provides to -support object-oriented programming. Strictly speaking, these features are -not necessary. For the most part, they provide an alternative syntax -for things we have already done, but in many cases, the -alternative is more concise and more accurately conveys the structure of -the program. - -For example, in the {\tt Time} program, there is no obvious -connection between the class definition and the function definitions -that follow. With some examination, it is apparent that every function -takes at least one {\tt Time} object as an argument. - -This observation is the motivation for {\bf methods}. We have already -seen some methods, such as {\tt keys} and {\tt values}, which were -invoked on dictionaries. Each method is associated with a class and is -intended to be invoked on instances of that class. - -\index{method} -\index{function} -\index{instance!object} -\index{object instance} - -Methods are just like functions, with -two differences: - -\begin{itemize} - -\item Methods are defined inside a class definition in order -to make the relationship between the class and the method explicit. - -\item The syntax for invoking a method is different from the -syntax for calling a function. - -\end{itemize} - -In the next few sections, we will take the functions from the previous -two chapters and transform them into methods. This transformation is -purely mechanical; you can do it simply by following a sequence of -steps. If you are comfortable converting from one form to another, -you will be able to choose the best form for whatever you are doing. - - -\section{{\tt printTime}} -\label{printTime} -\index{printing!object} - -In Chapter~\ref{time}, we defined a class named -{\tt Time} and you wrote a function named {\tt printTime}, which -should have looked something like this: - -\beforeverb -\begin{verbatim} -class Time: - pass - -def printTime(time): - print str(time.hours) + ":" + \ - str(time.minutes) + ":" + \ - str(time.seconds) -\end{verbatim} -\afterverb -% -To call this function, we passed a {\tt Time} object as an argument: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time() ->>> currentTime.hours = 9 ->>> currentTime.minutes = 14 ->>> currentTime.seconds = 30 ->>> printTime(currentTime) -\end{verbatim} -\afterverb -% -To make {\tt printTime} a method, all we have to do is -move the function definition inside the class definition. Notice -the change in indentation. - -\beforeverb -\begin{verbatim} -class Time: - def printTime(time): - print str(time.hours) + ":" + \ - str(time.minutes) + ":" + \ - str(time.seconds) -\end{verbatim} -\afterverb -% -Now we can invoke {\tt printTime} using dot notation. - -\index{dot notation} - -\beforeverb -\begin{verbatim} ->>> currentTime.printTime() -\end{verbatim} -\afterverb -% -As usual, the object on which the method is invoked appears -before the dot and the -name of the method appears after the dot. - -The object on which the method is invoked is assigned to the -first parameter, so in this case {\tt currentTime} is assigned -to the parameter {\tt time}. - -By convention, the first parameter of a method is -called {\tt self}. The reason for this is a little -convoluted, but it is based on a useful metaphor. - -The syntax for a function call, {\tt printTime(currentTime)}, -suggests that the function is the active agent. It says -something like, ``Hey {\tt printTime}! Here's an object for -you to print.'' - -In object-oriented programming, the objects are the active -agents. An invocation like {\tt currentTime.printTime()} -says ``Hey {\tt currentTime}! Please print yourself!'' - -This change in perspective might be more polite, but -it is not obvious that it is useful. In the examples we -have seen so far, it may not be. But sometimes shifting -responsibility from the functions onto the objects -makes it possible to write more versatile functions, -and makes it easier to maintain and reuse code. - - -\section{Another example} - -Let's convert {\tt increment} (from Section~\ref{increment}) to a -method. To save space, we will leave out previously defined methods, -but you should keep them in your version: - -\adjustpage{-1} - -\beforeverb -\begin{verbatim} -class Time: - #previous method definitions here... - - def increment(self, seconds): - self.seconds = seconds + self.seconds - - while self.seconds >= 60: - self.seconds = self.seconds - 60 - self.minutes = self.minutes + 1 - - while self.minutes >= 60: - self.minutes = self.minutes - 60 - self.hours = self.hours + 1 -\end{verbatim} -\afterverb -% -The transformation is purely mechanical---we move the method -definition into the class definition and change the name of the first -parameter. - -Now we can invoke {\tt increment} as a method. - -\beforeverb -\begin{verbatim} -currentTime.increment(500) -\end{verbatim} -\afterverb -% -Again, the object on which the method is invoked gets assigned -to the first parameter, {\tt self}. The second parameter, -{\tt seconds} gets the value {\tt 500}. - -\begin{quote} -{\em As an exercise, convert {\tt convertToSeconds} -(from Section~\ref{convert}) to a method in the -{\tt Time} class.} -\end{quote} - - -\section{A more complicated example} - -The {\tt after} function is slightly more complicated because it -operates on two {\tt Time} objects, not just one. We can only convert -one of the parameters to {\tt self}; the other stays the same: - -\beforeverb -\begin{verbatim} -class Time: - #previous method definitions here... - - def after(self, time2): - if self.hour > time2.hour: - return 1 - if self.hour < time2.hour: - return 0 - - if self.minute > time2.minute: - return 1 - if self.minute < time2.minute: - return 0 - - if self.second > time2.second: - return 1 - return 0 -\end{verbatim} -\afterverb -% -We invoke this method on one object and pass the other as an argument: - -\beforeverb -\begin{verbatim} -if doneTime.after(currentTime): - print "The bread is not done yet." -\end{verbatim} -\afterverb -% -You can almost read the invocation like English: ``If the done-time is -after the current-time, then...'' - - -\section{Optional arguments} - -We have seen built-in functions that take a variable number of -arguments. For example, {\tt string.find} can take two, three, or -four arguments. - -It is possible to write user-defined functions with optional argument -lists. For example, we can upgrade our own version of {\tt find} to do -the same thing as {\tt string.find}. - -This is the original version from Section~\ref{find}: - -\beforeverb -\begin{verbatim} -def find(str, ch): - index = 0 - while index < len(str): - if str[index] == ch: - return index - index = index + 1 - return -1 -\end{verbatim} -\afterverb -% -This is the new and improved version: - -\beforeverb -\begin{verbatim} -def find(str, ch, start=0): - index = start - while index < len(str): - if str[index] == ch: - return index - index = index + 1 - return -1 -\end{verbatim} -\afterverb -% -The third parameter, {\tt start}, is optional because a default value, -{\tt 0}, is provided. If we invoke {\tt find} with only two -arguments, it uses the default value and starts from the beginning of -the string: - -\beforeverb -\begin{verbatim} ->>> find("apple", "p") -1 -\end{verbatim} -\afterverb -% -If we provide a third argument, it {\bf overrides} the default: - -\beforeverb -\begin{verbatim} ->>> find("apple", "p", 2) -2 ->>> find("apple", "p", 3) --1 -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, add a fourth parameter, {\tt end}, that specifies where -to stop looking. - -Warning: This exercise is a bit tricky. The default value of -{\tt end} should be {\tt len(str)}, but that doesn't work. The -default values are evaluated when the function is defined, not when it -is called. When {\tt find} is defined, {\tt str} doesn't exist yet, -so you can't find its length.} -\end{quote} - - -\section{The initialization method} -\index{initialization method} -\index{method!initialization} - -The {\bf initialization method} is -a special method that is invoked when an object is created. The name -of this method is {\tt \_\_init\_\_} (two underscore characters, -followed by {\tt init}, and then two more underscores). An -initialization method for the {\tt Time} class looks like this: - -\beforeverb -\begin{verbatim} -class Time: - def __init__(self, hours=0, minutes=0, seconds=0): - self.hours = hours - self.minutes = minutes - self.seconds = seconds -\end{verbatim} -\afterverb -% -There is no conflict between the attribute {\tt self.hours} -and the parameter {\tt hours}. Dot notation specifies which -variable we are referring to. - -\index{dot notation} - -When we invoke the {\tt Time} constructor, the arguments we provide -are passed along to {\tt init}: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time(9, 14, 30) ->>> currentTime.printTime() -9:14:30 -\end{verbatim} -\afterverb -% -Because the arguments are optional, we can omit them: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time() ->>> currentTime.printTime() -0:0:0 -\end{verbatim} -\afterverb -% -Or provide only the first: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time (9) ->>> currentTime.printTime() -9:0:0 -\end{verbatim} -\afterverb -% -Or the first two: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time (9, 14) ->>> currentTime.printTime() -9:14:0 -\end{verbatim} -\afterverb -% -Finally, we can make assignments to a subset of the -parameters by naming them explicitly: - -\beforeverb -\begin{verbatim} ->>> currentTime = Time(seconds = 30, hours = 9) ->>> currentTime.printTime() -9:0:30 -\end{verbatim} -\afterverb -% - -\section{Points revisited} -\index{Point class} -\index{class!Point} - -Let's rewrite the {\tt Point} class from -Section~\ref{point} in a more object-oriented style: - -\beforeverb -\begin{verbatim} -class Point: - def __init__(self, x=0, y=0): - self.x = x - self.y = y - - def __str__(self): - return '(' + str(self.x) + ', ' + str(self.y) + ')' -\end{verbatim} -\afterverb -% -The initialization method -takes $x$ and $y$ values as optional parameters; -the default for either parameter is 0. - -The next method, {\tt \_\_str\_\_}, returns a string representation -of a {\tt Point} object. -If a class provides a method named {\tt \_\_str\_\_}, it -overrides the default behavior of the Python built-in {\tt str} function. - -\beforeverb -\begin{verbatim} ->>> p = Point(3, 4) ->>> str(p) -'(3, 4)' -\end{verbatim} -\afterverb -% -Printing a {\tt Point} object implicitly invokes {\tt \_\_str\_\_} on -the object, so defining {\tt \_\_str\_\_} also changes the behavior of -{\tt print}: - -\beforeverb -\begin{verbatim} ->>> p = Point(3, 4) ->>> print p -(3, 4) -\end{verbatim} -\afterverb -% -When we write a new class, we almost always start by writing {\tt -\_\_init\_\_}, which makes it easier to instantiate objects, and {\tt -\_\_str\_\_}, which is almost always useful for debugging. - - -\section{Operator overloading} -\label{operator overloading} -\index{operator overloading} -\index{operator!overloading} -\index{dot product} -\index{scalar multiplication} - -Some languages make it possible to change the definition of the -built-in operators when they are applied to user-defined types. This -feature is called {\bf operator overloading}. It is especially useful when -defining new mathematical types. - -For example, to override the addition operator {\tt +}, we -provide a method named {\tt \_\_add\_\_}: - -\beforeverb -\begin{verbatim} -class Point: - # previously defined methods here... - - def __add__(self, other): - return Point(self.x + other.x, self.y + other.y) -\end{verbatim} -\afterverb -% -As usual, the first parameter is the object on which the method is -invoked. The second parameter is conveniently named {\tt other} -to distinguish it from {\tt self}. To add two {\tt Point}s, we create -and return a new {\tt Point} that contains the sum of the -$x$ coordinates and the sum of the $y$ coordinates. - -Now, when we apply the {\tt +} operator to {\tt Point} objects, Python -invokes {\tt \_\_add\_\_}: - -\beforeverb -\begin{verbatim} ->>> p1 = Point(3, 4) ->>> p2 = Point(5, 7) ->>> p3 = p1 + p2 ->>> print p3 -(8, 11) -\end{verbatim} -\afterverb -% -The expression {\tt p1 + p2} is equivalent to -{\tt p1.\_\_add\_\_(p2)}, but obviously more elegant. - -\begin{quote} -{\em As an exercise, add a method {\tt \_\_sub\_\_(self, other)} that -overloads the subtraction operator, and try it out.} -\end{quote} - -There are several ways to override the behavior of the -multiplication operator: by defining a method named -{\tt \_\_mul\_\_}, or {\tt \_\_rmul\_\_}, or both. - -If the left operand of {\tt *} is a {\tt Point}, Python invokes -{\tt \_\_mul\_\_}, which assumes that the other operand is also -a {\tt Point}. It computes the {\bf dot product} of the two -points, defined according to the rules of linear algebra: - -\beforeverb -\begin{verbatim} -def __mul__(self, other): - return self.x * other.x + self.y * other.y -\end{verbatim} -\afterverb -% -If the left operand of {\tt *} is a primitive type and the right -operand is a {\tt Point}, Python invokes {\tt \_\_rmul\_\_}, which -performs {\bf scalar multiplication}: - -\beforeverb -\begin{verbatim} -def __rmul__(self, other): - return Point(other * self.x, other * self.y) -\end{verbatim} -\afterverb -% -The result is a new {\tt Point} whose coordinates are a multiple -of the original coordinates. If {\tt other} is a type that cannot -be multiplied by a floating-point number, then -{\tt \_\_rmul\_\_} will yield an error. - -This example demonstrates both kinds of multiplication: - -\beforeverb -\begin{verbatim} ->>> p1 = Point(3, 4) ->>> p2 = Point(5, 7) ->>> print p1 * p2 -43 ->>> print 2 * p2 -(10, 14) -\end{verbatim} -\afterverb -% -What happens if we try to evaluate {\tt p2 * 2}? Since -the first operand is a {\tt Point}, Python invokes -{\tt \_\_mul\_\_} with {\tt 2} as the second argument. -Inside {\tt \_\_mul\_\_}, the program tries to access the {\tt x} -coordinate of {\tt other}, which fails because -an integer has no attributes: - -\beforeverb -\begin{verbatim} ->>> print p2 * 2 -AttributeError: 'int' object has no attribute 'x' -\end{verbatim} -\afterverb -% -Unfortunately, the error message is a bit opaque. This example -demonstrates some of the difficulties of object-oriented programming. -Sometimes it is hard enough just to figure out what code is running. - -For a more complete example of operator overloading, see -Appendix~\ref{overloading}. - - -\section{Polymorphism} -\index{polymorphism} - -Most of the methods we have written only work for a specific -type. When you create a new object, you write methods that operate -on that type. - -But there are certain operations that you will want to apply to many -types, such as the arithmetic operations in the previous sections. -If many types support the same set of operations, you -can write functions that work on any of those types. - -For example, the {\tt multadd} operation (which is common in -linear algebra) takes three arguments; it multiplies the first -two and then adds the third. We can write it in Python like -this: - -\beforeverb -\begin{verbatim} -def multadd (x, y, z): - return x * y + z -\end{verbatim} -\afterverb -% -This method will work for any values of {\tt x} and {\tt y} -that can be multiplied and for any value of {\tt z} that can be -added to the product. - -We can invoke it with numeric values: - -\beforeverb -\begin{verbatim} ->>> multadd (3, 2, 1) -7 -\end{verbatim} -\afterverb -% -Or with {\tt Point}s: - -\beforeverb -\begin{verbatim} ->>> p1 = Point(3, 4) ->>> p2 = Point(5, 7) ->>> print multadd (2, p1, p2) -(11, 15) ->>> print multadd (p1, p2, 1) -44 -\end{verbatim} -\afterverb -% -In the first case, the {\tt Point} is multiplied by a scalar -and then added to another {\tt Point}. -In the second case, the dot product yields a numeric -value, so the third argument also has to be a numeric value. - -A function like this that can take arguments with different -types is called {\bf polymorphic}. - -As another example, consider the method {\tt frontAndBack}, -which prints a list twice, forward and backward: - -\beforeverb -\begin{verbatim} -def frontAndBack(front): - import copy - back = copy.copy(front) - back.reverse() - print str(front) + str(back) -\end{verbatim} -\afterverb -% -Because the {\tt reverse} method is a modifier, we make a copy -of the list before reversing it. That way, this method doesn't -modify the list it gets as an argument. - -Here's an example that applies {\tt frontAndBack} to a list: - -\beforeverb -\begin{verbatim} ->>> myList = [1, 2, 3, 4] ->>> frontAndBack(myList) -[1, 2, 3, 4][4, 3, 2, 1] -\end{verbatim} -\afterverb -% -Of course, we intended to apply this function to lists, so -it is not surprising that it works. -What would be surprising is if we could apply it to a {\tt Point}. - -To determine whether a function can be applied to a new type, -we apply the fundamental rule of polymorphism: - -\begin{quote} -{\bf If all of the operations inside the function can be applied -to the type, the function can be applied to the type.} -\end{quote} - -The operations in the method include {\tt copy}, {\tt reverse}, and -{\tt print}. - -{\tt copy} works on any object, and we have already written -a {\tt \_\_str\_\_} method for {\tt Point}s, so all we need -is a {\tt reverse} method in the {\tt Point} class: - -\beforeverb -\begin{verbatim} -def reverse(self): - self.x , self.y = self.y, self.x -\end{verbatim} -\afterverb -% -Then we can pass {\tt Point}s to {\tt frontAndBack}: - -\beforeverb -\begin{verbatim} ->>> p = Point(3, 4) ->>> frontAndBack(p) -(3, 4)(4, 3) -\end{verbatim} -\afterverb -% -The best kind of polymorphism is the unintentional kind, where -you discover that a function you have already written can be -applied to a type for which you never planned. - - - -\section{Glossary} - -\begin{description} - -\item[object-oriented language:] A language that provides -features, such as user-defined classes and inheritance, that facilitate -object-oriented programming. - -\item[object-oriented programming:] A style of programming in which -data and the operations that manipulate it are organized into classes -and methods. - -\item[method:] A function that is defined inside a class definition and -is invoked on instances of that class. - -\item[override:] To replace a default. Examples include replacing a default -value with a particular argument and replacing a default method -by providing a new method with the same name. - -\item[initialization method:] A special method that is invoked automatically -when a new object is created and that initializes the object's attributes. - -\item[operator overloading:] Extending built-in operators -({\tt +}, {\tt -}, {\tt *}, {\tt >}, {\tt <}, etc.) so that they work -with user-defined types. - -\item[dot product:] An operation defined in linear algebra that -multiplies two {\tt Point}s and yields a numeric value. - -\item[scalar multiplication:] An operation defined in linear algebra that -multiplies each of the coordinates of a {\tt Point} by a numeric -value. - -\item[polymorphic:] A function that can operate on more than one -type. If all the operations in a function can be -applied to a type, then the function can be applied to a type. - - -\index{object-oriented programming language} -\index{method} -\index{initialization method} -\index{override} -\index{overloading} -\index{operator overloading} -\index{dot product} -\index{scalar multiplication} -\index{polymorphic} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap15.tex b/sciphi/data/stock_raw/learning_with_python/chap15.tex deleted file mode 100644 index d24ebcb..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap15.tex +++ /dev/null @@ -1,587 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Sets of objects} - -\section{Composition} -\index{composition} -\index{nested structure} - -By now, you have seen several examples of composition. -One of the -first examples was using a method invocation as part of an -expression. Another example is the nested structure of statements; -you can put an {\tt if} statement within a {\tt while} loop, within -another {\tt if} statement, and so on. - -Having seen this pattern, and having learned about lists and objects, -you should not be surprised to learn that you can create lists of -objects. You can also create objects that contain lists (as -attributes); you can create lists that contain lists; you can -create objects that contain objects; and so on. - -In this chapter and the next, we will look at some examples of these -combinations, using {\tt Card} objects as an example. - - -\section{{\tt Card} objects} -\index{Card} -\index{class!Card} - -If you are not familiar with common playing cards, now would be a good -time to get a deck, or else this chapter might not make much sense. -There are fifty-two cards in a deck, each of which belongs to one of four -suits and one of thirteen ranks. The suits are Spades, Hearts, Diamonds, and -Clubs (in descending order in bridge). The ranks are Ace, 2, 3, 4, 5, -6, 7, 8, 9, 10, Jack, Queen, and King. Depending on the game that you are -playing, the rank of Ace may be higher than King or lower than 2. - -\index{rank} -\index{suit} - -If we want to define a new object to represent a playing card, it is -obvious what the attributes should be: {\tt rank} and -{\tt suit}. It is not as obvious what type the attributes -should be. One possibility is to use strings containing words like -{\tt "Spade"} for suits and {\tt "Queen"} for ranks. One problem with -this implementation is that it would not be easy to compare cards to -see which had a higher rank or suit. - -\index{encode} -\index{encrypt} -\index{map to} - -An alternative is to use integers to {\bf encode} the ranks and suits. -By ``encode,'' we do not mean what some people think, which is to -encrypt or translate into a secret code. What a computer scientist -means by ``encode'' is ``to define a mapping between a -sequence of numbers and the items I want to represent.'' For example: - -\beforefig -\begin{tabular}{l c l} -Spades & $\mapsto$ & 3 \\ -Hearts & $\mapsto$ & 2 \\ -Diamonds & $\mapsto$ & 1 \\ -Clubs & $\mapsto$ & 0 -\end{tabular} -\afterfig - -An obvious feature of this mapping is that the suits map to integers in -order, so we can compare suits by comparing integers. The mapping for -ranks is fairly obvious; each of the numerical ranks maps to the -corresponding integer, and for face cards: - -\beforefig -\begin{tabular}{l c l} -Jack & $\mapsto$ & 11 \\ -Queen & $\mapsto$ & 12 \\ -King & $\mapsto$ & 13 \\ -\end{tabular} -\afterfig - -The reason we are using mathematical notation for these mappings is -that they are not part of the Python program. They are part of the -program design, but they never appear explicitly in the code. The -class definition for the {\tt Card} type looks like this: - -\beforeverb -\begin{verbatim} -class Card: - def __init__(self, suit=0, rank=2): - self.suit = suit - self.rank = rank -\end{verbatim} -\afterverb -% -As usual, we provide an initialization method that takes an optional -parameter for each attribute. The default value of {\tt suit} is -0, which represents Clubs. - -\index{constructor} - -To create a Card, we invoke the Card constructor with the -suit and rank of the card we want. - -\beforeverb -\begin{verbatim} -threeOfClubs = Card(3, 1) -\end{verbatim} -\afterverb -% -In the next section we'll figure out which card we just made. - - -\section{Class attributes and the {\tt \_\_str\_\_} method} -\index{class attribute} -\index{attribute!class} - -In order to print {\tt Card} objects in a way that people can easily -read, we want to map the integer codes onto words. A natural way to -do that is with lists of strings. We assign these lists to {\bf class -attributes} at the top of the class definition: - -\beforeverb -\begin{verbatim} -class Card: - suitList = ["Clubs", "Diamonds", "Hearts", "Spades"] - rankList = ["narf", "Ace", "2", "3", "4", "5", "6", "7", - "8", "9", "10", "Jack", "Queen", "King"] - - #init method omitted - - def __str__(self): - return (self.rankList[self.rank] + " of " + - self.suitList[self.suit]) -\end{verbatim} -\afterverb -% -A class attribute is defined outside of any method, and it can be -accessed from any of the methods in the class. - -Inside {\tt \_\_str\_\_}, we can use {\tt suitList} and {\tt rankList} -to map the numerical values of {\tt suit} and {\tt rank} to strings. -For example, the expression \verb+self.suitList[self.suit]+ means -``use the attribute {\tt suit} from the object {\tt self} as an index -into the class attribute named {\tt suitList}, and select the -appropriate string.'' - -The reason for the {\tt "narf"} in the first element in {\tt -rankList} is to act as a place keeper for the zero-eth element of the -list, which should never be used. The only valid ranks are 1 to 13. This -wasted item is not entirely necessary. We could have started at 0, -as usual, but it is less confusing to encode 2 as 2, 3 as 3, and so on. - -With the methods we have so far, we can create and print cards: - -\beforeverb -\begin{verbatim} ->>> card1 = Card(1, 11) ->>> print card1 -Jack of Diamonds -\end{verbatim} -\afterverb -% -Class attributes like {\tt suitList} are shared by all {\tt Card} -objects. The advantage of this is that we can use any {\tt Card} -object to access the class attributes: - -\beforeverb -\begin{verbatim} ->>> card2 = Card(1, 3) ->>> print card2 -3 of Diamonds ->>> print card2.suitList[1] -Diamonds -\end{verbatim} -\afterverb -% -The disadvantage is that if we modify a class attribute, it -affects every instance of the class. For example, if we decide -that ``Jack of Diamonds'' should really be called -``Jack of Swirly Whales,'' we could do this: - -\index{instance!object} -\index{object instance} - -\beforeverb -\begin{verbatim} ->>> card1.suitList[1] = "Swirly Whales" ->>> print card1 -Jack of Swirly Whales -\end{verbatim} -\afterverb -% -The problem is that {\em all} of the Diamonds just became -Swirly Whales: - -\beforeverb -\begin{verbatim} ->>> print card2 -3 of Swirly Whales -\end{verbatim} -\afterverb -% -It is usually not a good idea to modify class attributes. - - - -\section{Comparing cards} -\label{comparecard} -\index{operator!conditional} -\index{conditional operator} - -For primitive types, there are conditional operators -({\tt <}, {\tt >}, {\tt ==}, etc.) -that compare -values and determine when one is greater than, less than, or equal to -another. For user-defined types, we can override the behavior of -the built-in operators by providing a method named -{\tt \_\_cmp\_\_}. By convention, {\tt \_\_cmp\_\_} -has two parameters, {\tt self} and {\tt other}, and returns -1 if the first object is greater, -1 if the -second object is greater, and 0 if they are equal to each other. - -\index{override} -\index{operator overloading} -\index{ordering} -\index{complete ordering} -\index{partial ordering} - -Some types are completely ordered, which means that you can compare -any two elements and tell which is bigger. For example, the integers -and the floating-point numbers are completely ordered. Some sets are -unordered, which means that there is no meaningful way to say that one -element is bigger than another. For example, the fruits are -unordered, which is why you cannot compare apples and oranges. - -The set of playing cards is partially ordered, which means that -sometimes you can compare cards and sometimes not. For example, you -know that the 3 of Clubs is higher than the 2 of Clubs, and the 3 of -Diamonds is higher than the 3 of Clubs. But which is better, the 3 of -Clubs or the 2 of Diamonds? One has a higher rank, but the other has -a higher suit. - -\index{comparable} - -In order to make cards comparable, you have to decide which is more -important, rank or suit. To be honest, the choice is -arbitrary. For the sake of choosing, we will say that suit is more -important, because a new deck of cards comes sorted -with all the Clubs together, followed by all the Diamonds, and so on. - -With that decided, we can write {\tt \_\_cmp\_\_}: - -\beforeverb -\begin{verbatim} -def __cmp__(self, other): - # check the suits - if self.suit > other.suit: return 1 - if self.suit < other.suit: return -1 - # suits are the same... check ranks - if self.rank > other.rank: return 1 - if self.rank < other.rank: return -1 - # ranks are the same... it's a tie - return 0 -\end{verbatim} -\afterverb -% -In this ordering, Aces appear lower than Deuces (2s). - -\begin{quote} -{\em As an exercise, modify {\tt \_\_cmp\_\_} so that Aces are -ranked higher than Kings.} -\end{quote} - - -\section{Decks} -\index{list!of objects} -\index{object!list of} -\index{deck} - -Now that we have objects to represent {\tt Card}s, the next logical -step is to define a class to represent a {\tt Deck}. Of course, a -deck is made up of cards, so each {\tt Deck} object will contain a -list of cards as an attribute. - -\index{initialization method} -\index{method!initialization} - -The following is a class definition for the {\tt Deck} class. The -initialization method creates the attribute {\tt cards} and generates -the standard set of fifty-two cards: - -\index{composition} -\index{loop!nested} - -\beforeverb -\begin{verbatim} -class Deck: - def __init__(self): - self.cards = [] - for suit in range(4): - for rank in range(1, 14): - self.cards.append(Card(suit, rank)) -\end{verbatim} -\afterverb -% -The easiest way to populate the deck is with a nested loop. The outer -loop enumerates the suits from 0 to 3. The inner loop enumerates the -ranks from 1 to 13. Since the outer loop iterates four times, and the -inner loop iterates thirteen times, the total number of times the body -is executed is fifty-two (thirteen times four). Each iteration -creates a new instance of {\tt Card} with the current suit and rank, -and appends that card to the {\tt cards} list. - -The {\tt append} method works on lists but not, of course, tuples. - -\index{append method} -\index{list method} -\index{method!list} - -\adjustpage{1} - -\section{Printing the deck} -\label{printdeck} -\index{printing!deck object} - - -As usual, when we define a new type of object we want a method -that prints the contents of an object. -To print a {\tt Deck}, we traverse the list and print each {\tt Card}: - -\beforeverb -\begin{verbatim} -class Deck: - ... - def printDeck(self): - for card in self.cards: - print card -\end{verbatim} -\afterverb -% -Here, and from now on, the ellipsis ({\tt ...}) indicates that we have -omitted the other methods in the class. - -As an alternative to {\tt printDeck}, we could -write a {\tt \_\_str\_\_} method for the {\tt Deck} class. The -advantage of {\tt \_\_str\_\_} is that it is more flexible. Rather -than just printing the contents of the object, it generates a string -representation that other parts of the program can manipulate -before printing, or store for later use. - -Here is a version of {\tt \_\_str\_\_} that returns a string -representation of a {\tt Deck}. -To add a bit of pizzazz, it arranges the cards in a cascade -where each card is indented one space more than the previous card: - -\beforeverb -\begin{verbatim} -class Deck: - ... - def __str__(self): - s = "" - for i in range(len(self.cards)): - s = s + " "*i + str(self.cards[i]) + "\n" - return s -\end{verbatim} -\afterverb -% -This example demonstrates several features. First, instead of -traversing {\tt self.cards} and assigning each card to a variable, -we are using {\tt i} as a loop -variable and an index into the list of cards. - -Second, we are using the string multiplication operator to indent -each card by one more space than the last. The expression -{\tt " "*i} yields a number of spaces equal to the current value -of {\tt i}. - -Third, instead of using the {\tt print} command to print the cards, -we use the {\tt str} function. Passing an object as an argument to -{\tt str} is equivalent to invoking the {\tt \_\_str\_\_} method on -the object. - -\index{accumulator} - -Finally, we are using the variable {\tt s} as an {\bf accumulator}. -Initially, {\tt s} is the empty string. Each time through the loop, a -new string is generated and concatenated with the old value of {\tt s} -to get the new value. When the loop ends, {\tt s} contains the -complete string representation of the {\tt Deck}, which looks like -this: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} ->>> deck = Deck() ->>> print deck -Ace of Clubs - 2 of Clubs - 3 of Clubs - 4 of Clubs - 5 of Clubs - 6 of Clubs - 7 of Clubs - 8 of Clubs - 9 of Clubs - 10 of Clubs - Jack of Clubs - Queen of Clubs - King of Clubs - Ace of Diamonds -\end{verbatim} -\afterverb -% -And so on. Even though the result appears on 52 lines, it is -one long string that contains newlines. - - -\section{Shuffling the deck} -\index{shuffle} - -If a deck is perfectly shuffled, then any card is equally likely -to appear anywhere in the deck, and any location in the deck is -equally likely to contain any card. - -\index{random} -\index{randrange} - -To shuffle the deck, we will use the {\tt randrange} function -from the {\tt random} module. With two integer arguments, -{\tt a} and {\tt b}, {\tt randrange} chooses a random integer in -the range {\tt a <= x < b}. Since the upper bound is strictly -less than {\tt b}, we can use the length of a list as the -second argument, and we are guaranteed to get a legal index. -For example, this expression chooses the index of a random card in a deck: - -\beforeverb -\begin{verbatim} -random.randrange(0, len(self.cards)) -\end{verbatim} -\afterverb -% -An easy way to shuffle the deck is by traversing the cards and -swapping each card with a randomly chosen one. It is possible that -the card will be swapped with itself, but that is fine. In fact, if -we precluded that possibility, the order of the cards would be less -than entirely random: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -class Deck: - ... - def shuffle(self): - import random - nCards = len(self.cards) - for i in range(nCards): - j = random.randrange(i, nCards) - self.cards[i], self.cards[j] = self.cards[j], self.cards[i] -\end{verbatim} -\afterverb -% -Rather than assume that there are fifty-two cards in the deck, we get -the actual length of the list and store it in {\tt nCards}. - -\index{swap} -\index{tuple assignment} -\index{assignment!tuple} - -For each card in the deck, we choose a random card from among the -cards that haven't been shuffled yet. Then we swap the current -card ({\tt i}) with the selected card ({\tt j}). To swap the -cards we use a tuple assignment, as in Section~\ref{tuple assignment}: - -\beforeverb -\begin{verbatim} -self.cards[i], self.cards[j] = self.cards[j], self.cards[i] -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, rewrite this line of code -without using a sequence assignment.} -\end{quote} - - -\section{Removing and dealing cards} -\index{removing cards} - -Another method that would be useful for the {\tt Deck} class is {\tt -removeCard}, which takes a card as an argument, removes it, and -returns {\tt True} if the card was in the deck and {\tt False} -otherwise: - -\beforeverb -\begin{verbatim} -class Deck: - ... - def removeCard(self, card): - if card in self.cards: - self.cards.remove(card) - return True - else: - return False -\end{verbatim} -\afterverb -% -The {\tt in} operator returns true if the first operand is in the -second, which must be a list or a tuple. If the first operand is an -object, Python uses the object's {\tt \_\_cmp\_\_} method to determine -equality with items in the list. Since the {\tt \_\_cmp\_\_} in the -{\tt Card} class checks for deep equality, the {\tt removeCard} method -checks for deep equality. - -\index{in operator} -\index{operator!in} - -To deal cards, we want to remove and return the top card. -The list method {\tt pop} provides a convenient way to do that: - -\beforeverb -\begin{verbatim} -class Deck: - ... - def popCard(self): - return self.cards.pop() -\end{verbatim} -\afterverb -% -Actually, {\tt pop} removes the {\em last} card in the list, so we are in -effect dealing from the bottom of the deck. - -\index{boolean function} -\index{function!boolean} - -One more operation that we are likely to want is the boolean function -{\tt isEmpty}, which returns true if the deck contains no cards: - -\beforeverb -\begin{verbatim} -class Deck: - ... - def isEmpty(self): - return (len(self.cards) == 0) -\end{verbatim} -\afterverb - - -\section{Glossary} - -\begin{description} - -\item[encode:] To represent one set of values using another -set of values by constructing a mapping between them. - -\item[class attribute:] A variable that is defined inside -a class definition but outside any method. Class attributes -are accessible from any method in the class and are shared -by all instances of the class. - -\item[accumulator:] A variable used in a loop to accumulate -a series of values, such as by concatenating them onto -a string or adding them to a running sum. - -\index{encode} -\index{class attribute} -\index{attribute!class} -\index{accumulator} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap16.tex b/sciphi/data/stock_raw/learning_with_python/chap16.tex deleted file mode 100644 index da1acd8..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap16.tex +++ /dev/null @@ -1,637 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Inheritance} - -\section{Inheritance} -\index{inheritance} -\index{object-oriented programming} -\index{parent class} -\index{child class} -\index{subclass} - -The language feature most often associated with object-oriented -programming is {\bf inheritance}. Inheritance is the ability to -define a new class that is a modified version of an existing -class. - -The primary advantage of this feature is that you can add new methods -to a class without modifying the existing class. It is -called ``inheritance'' because the new class inherits all of the -methods of the existing class. Extending this metaphor, the existing -class is sometimes called the {\bf parent} class. The new class may -be called the {\bf child} class or sometimes ``subclass.'' - -\index{object-oriented design} - -Inheritance is a powerful feature. Some programs that would be -complicated without inheritance can be written concisely and simply -with it. Also, inheritance can facilitate code reuse, since you can -customize the behavior of parent classes without having to modify -them. In some cases, the inheritance structure reflects the natural -structure of the problem, which makes the program easier to -understand. - -On the other hand, inheritance can make programs difficult to read. -When a method is invoked, it is sometimes not clear where to find its -definition. The relevant code may be scattered among several modules. -Also, many of the things that can be done using inheritance can be -done as elegantly (or more so) without it. If the natural -structure of the problem does not lend itself to inheritance, this -style of programming can do more harm than good. - -In this chapter we will demonstrate the use of inheritance as part of -a program that plays the card game Old Maid. One of our goals is to -write code that could be reused to implement other card games. - - -\section{A hand of cards} - -For almost any card game, we need to represent a hand of cards. -A hand is similar to a deck, of course. Both are made up of -a set of cards, and both require operations like adding and -removing cards. Also, we might like the ability to shuffle -both decks and hands. - -A hand is also different from a deck. Depending on the game being -played, we might want to perform some operations on hands that -don't make sense for a deck. For example, in poker we might classify -a hand (straight, flush, etc.) or compare it with another hand. In -bridge, we might want to compute a score for a hand in order to make -a bid. - -This situation suggests the use of inheritance. If {\tt Hand} is a -subclass of {\tt Deck}, it will have all the methods -of {\tt Deck}, and new methods can be added. - -\index{parent class} -\index{class!parent} - -In the class definition, the name of the parent class appears -in parentheses: - -\beforeverb -\begin{verbatim} -class Hand(Deck): - pass -\end{verbatim} -\afterverb -% -This statement indicates that the new {\tt Hand} class inherits from -the existing {\tt Deck} class. - -The {\tt Hand} constructor initializes the attributes -for the hand, which are {\tt name} and {\tt cards}. The string {\tt name} -identifies this hand, probably by the name of -the player that holds it. The name is an optional parameter with -the empty string as a default value. -{\tt cards} is the list of cards in -the hand, initialized to the empty list: - -\beforeverb -\begin{verbatim} -class Hand(Deck): - def __init__(self, name=""): - self.cards = [] - self.name = name -\end{verbatim} -\afterverb -% -For just about any card game, it is necessary to add and -remove cards from the deck. Removing cards is already taken -care of, since {\tt Hand} inherits {\tt removeCard} from {\tt Deck}. -But we have to write {\tt addCard}: - -\beforeverb -\begin{verbatim} -class Hand(Deck): - ... - def addCard(self,card) : - self.cards.append(card) -\end{verbatim} -\afterverb -% -Again, the ellipsis indicates that we have omitted other methods. -The list {\tt append} method adds the new card to -the end of the list of cards. - - -\section{Dealing cards} -\index{dealing cards} - -Now that we have a {\tt Hand} class, we want to deal cards from the -{\tt Deck} into hands. It is not immediately obvious whether this -method should go in the {\tt Hand} class or in the {\tt Deck} class, -but since it operates on a single deck and (possibly) several hands, -it is more natural to put it in {\tt Deck}. - -{\tt deal} should be fairly general, -since different games will have different requirements. We may want -to deal out the entire deck at once or add one card to each hand. - -{\tt deal} takes three parameters: the deck, a list (or tuple) of -hands, and the total number of cards to deal. If there are not enough -cards in the deck, the method deals out all of the cards and stops: - -\beforeverb -\begin{verbatim} -class Deck : - ... - def deal(self, hands, nCards=999): - nHands = len(hands) - for i in range(nCards): - if self.isEmpty(): break # break if out of cards - card = self.popCard() # take the top card - hand = hands[i % nHands] # whose turn is next? - hand.addCard(card) # add the card to the hand -\end{verbatim} -\afterverb -% -The last parameter, {\tt nCards}, is optional; the default is a large -number, which effectively means that all of the cards in the deck -will get dealt. - -\index{loop variable} -\index{variable!loop} - -The loop variable {\tt i} goes from 0 to {\tt nCards-1}. Each -time through the loop, a card is removed from the deck using the -list method {\tt pop}, which removes and returns the last item -in the list. - -\index{modulus operator} -\index{operator!modulus} - -The modulus operator ({\tt \%}) allows us to deal cards in a -round robin (one card at a time to each hand). When {\tt i} is -equal to the number of hands in the list, the expression -{\tt i \% nHands} wraps around to the beginning of the list -(index 0). - - - -\section {Printing a Hand} -\index{printing!hand of cards} - -To print the contents of a hand, we can take advantage of -the {\tt printDeck} and {\tt \_\_str\_\_} methods inherited -from {\tt Deck}. For example: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} ->>> deck = Deck() ->>> deck.shuffle() ->>> hand = Hand("frank") ->>> deck.deal([hand], 5) ->>> print hand -Hand frank contains -2 of Spades - 3 of Spades - 4 of Spades - Ace of Hearts - 9 of Clubs -\end{verbatim} -\afterverb -% -It's not a great hand, but it has the makings -of a straight flush. - -\index{straight flush} - -Although it is convenient to inherit the existing methods, -there is additional information in a {\tt Hand} -object we might want to include when we print one. To do that, -we can provide a {\tt \_\_str\_\_} method in the {\tt Hand} class -that overrides the one in the {\tt Deck} class: - -\beforeverb -\begin{verbatim} -class Hand(Deck) - ... - def __str__(self): - s = "Hand " + self.name - if self.isEmpty(): - return s + " is empty\n" - else: - return s + " contains\n" + Deck.__str__(self) -\end{verbatim} -\afterverb -% -Initially, {\tt s} is a string that identifies the hand. If the hand -is empty, the program appends the words {\tt is empty} and returns the -result. - -Otherwise, the program appends the word {\tt contains} and the string -representation of the {\tt Deck}, computed by invoking the {\tt -\_\_str\_\_} method in the {\tt Deck} class on {\tt self}. - -It may seem odd to send {\tt self}, which refers to the current {\tt -Hand}, to a {\tt Deck} method, until you remember that a {\tt Hand} is -a kind of {\tt Deck}. {\tt Hand} objects can do everything {\tt Deck} -objects can, so it is legal to send a {\tt Hand} to a {\tt Deck} -method. - -\index{subclass} -\index{parent class} -\index{class!parent} - -In general, it is always legal to use an instance of a subclass -in place of an instance of a parent class. - - -\section {The {\tt CardGame} class} - -The {\tt CardGame} class takes care -of some basic chores common to all games, such as creating the -deck and shuffling it: - -\beforeverb -\begin{verbatim} -class CardGame: - def __init__(self): - self.deck = Deck() - self.deck.shuffle() -\end{verbatim} -\afterverb -% -This is the first case we have seen where the initialization -method performs a significant computation, beyond initializing -attributes. - -To implement specific games, we can inherit from {\tt CardGame} -and add features for the new game. -As an example, we'll write -a simulation of Old Maid. - -The object of Old Maid is to get rid of cards in your hand. You do -this by matching cards by rank and color. For example, the 4 of Clubs -matches the 4 of Spades since both suits are black. The Jack of Hearts -matches the Jack of Diamonds since both are red. - -To begin the game, the Queen of Clubs is removed from the deck so that -the Queen of Spades has no match. The fifty-one remaining cards are -dealt to the players in a round robin. After the deal, all players -match and discard as many cards as possible. - -When no more matches can be made, play begins. In turn, each player -picks a card (without looking) from the closest neighbor to the left -who still has cards. If the chosen card matches a card in the -player's hand, the pair is removed. Otherwise, the card is added to -the player's hand. Eventually all possible matches are made, leaving -only the Queen of Spades in the loser's hand. - -In our computer simulation of the game, the computer plays -all hands. Unfortunately, some nuances of the real game are lost. -In a real game, the player with the Old Maid -goes to some effort to get their neighbor to pick that card, -by displaying it a little more prominently, or perhaps failing -to display it more prominently, or even failing to fail to display -that card more prominently. The computer simply picks a neighbor's -card at random. - - -\section {{\tt OldMaidHand} class} -\index{class!OldMaidHand} - -A hand for playing Old Maid requires some abilities beyond the -general abilities of a {\tt Hand}. We will define a new class, {\tt -OldMaidHand}, that inherits from {\tt Hand} and provides an additional -method called {\tt removeMatches}: - - -\beforeverb -\begin{verbatim} -class OldMaidHand(Hand): - def removeMatches(self): - count = 0 - originalCards = self.cards[:] - for card in originalCards: - match = Card(3 - card.suit, card.rank) - if match in self.cards: - self.cards.remove(card) - self.cards.remove(match) - print "Hand %s: %s matches %s" % (self.name,card,match) - count = count + 1 - return count -\end{verbatim} -\afterverb -% -We start by making a copy of the list of cards, so that we can -traverse the copy while removing cards from the original. -Since {\tt self.cards} is modified in the -loop, we don't want to use it to control the traversal. Python can get -quite confused if it is traversing a list that is changing! - -\index{traversal} - -\adjustpage{1} - -For each card in the hand, we figure out what the matching card is and -go looking for it. The match card has the same rank and the other -suit of the same color. The expression {\tt 3 - card.suit} turns a -Club (suit 0) into a Spade (suit 3) and a Diamond (suit 1) into a -Heart (suit 2). You should satisfy yourself that the opposite -operations also work. If the match card is also in the hand, both -cards are removed. - -The following example demonstrates how to use {\tt removeMatches}: - -\beforeverb -\begin{verbatim} ->>> game = CardGame() ->>> hand = OldMaidHand("frank") ->>> game.deck.deal([hand], 13) ->>> print hand -Hand frank contains -Ace of Spades - 2 of Diamonds - 7 of Spades - 8 of Clubs - 6 of Hearts - 8 of Spades - 7 of Clubs - Queen of Clubs - 7 of Diamonds - 5 of Clubs - Jack of Diamonds - 10 of Diamonds - 10 of Hearts - ->>> hand.removeMatches() -Hand frank: 7 of Spades matches 7 of Clubs -Hand frank: 8 of Spades matches 8 of Clubs -Hand frank: 10 of Diamonds matches 10 of Hearts ->>> print hand -Hand frank contains -Ace of Spades - 2 of Diamonds - 6 of Hearts - Queen of Clubs - 7 of Diamonds - 5 of Clubs - Jack of Diamonds -\end{verbatim} -\afterverb -% -Notice that there is no {\tt \_\_init\_\_} method for the -{\tt OldMaidHand} class. We inherit it from {\tt Hand}. - - -\section {{\tt OldMaidGame} class} -\index{class!OldMaidGame} - -Now we can turn our attention to the game itself. -{\tt OldMaidGame} is a subclass of {\tt CardGame} with a new -method called {\tt play} that takes a list of players as an argument. - -Since {\tt \_\_init\_\_} is inherited from {\tt CardGame}, -a new {\tt OldMaidGame} object contains a new shuffled deck: - -\adjustpage{-1} - -\beforeverb -\begin{verbatim} -class OldMaidGame(CardGame): - def play(self, names): - # remove Queen of Clubs - self.deck.removeCard(Card(0,12)) - - # make a hand for each player - self.hands = [] - for name in names : - self.hands.append(OldMaidHand(name)) - - # deal the cards - self.deck.deal(self.hands) - print "---------- Cards have been dealt" - self.printHands() - - # remove initial matches - matches = self.removeAllMatches() - print "---------- Matches discarded, play begins" - self.printHands() - - # play until all 50 cards are matched - turn = 0 - numHands = len(self.hands) - while matches < 25: - matches = matches + self.playOneTurn(turn) - turn = (turn + 1) % numHands - - print "---------- Game is Over" - self.printHands() -\end{verbatim} -\afterverb -% -Some of the steps of the game have been separated into methods. -{\tt removeAllMatches} traverses the list of hands and -invokes {\tt removeMatches} on each: - -\beforeverb -\begin{verbatim} -class OldMaidGame(CardGame): - ... - def removeAllMatches(self): - count = 0 - for hand in self.hands: - count = count + hand.removeMatches() - return count -\end{verbatim} -\afterverb -% -\begin{quote} -{\em As an exercise, write {\tt printHands} which traverses -{\tt self.hands} and prints each hand.} -\end{quote} - -{\tt count} is -an accumulator that adds up the number of matches in each -hand and returns the total. - -\index{accumulator} - -When the total number of matches reaches twenty-five, -fifty cards have been removed from the hands, which means that -only one card is left and the game is over. - -The variable {\tt turn} keeps track of which player's turn -it is. It starts at 0 and increases by one each time; -when it reaches {\tt numHands}, the modulus operator -wraps it back around to 0. - -The method {\tt playOneTurn} takes an argument that indicates -whose turn it is. The return value is the number of matches -made during this turn: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -class OldMaidGame(CardGame): - ... - def playOneTurn(self, i): - if self.hands[i].isEmpty(): - return 0 - neighbor = self.findNeighbor(i) - pickedCard = self.hands[neighbor].popCard() - self.hands[i].addCard(pickedCard) - print "Hand", self.hands[i].name, "picked", pickedCard - count = self.hands[i].removeMatches() - self.hands[i].shuffle() - return count -\end{verbatim} -\afterverb -% -If a player's hand is empty, that player is out of the game, so he or she -does nothing and returns 0. - -Otherwise, a turn consists of finding the first player on the left -that has cards, taking one card from the neighbor, and checking -for matches. Before returning, the cards in the hand are shuffled -so that the next player's choice is random. - -The method {\tt findNeighbor} starts with the player to the -immediate left and continues around the circle until it finds -a player that still has cards: - -\beforeverb -\begin{verbatim} -class OldMaidGame(CardGame): - ... - def findNeighbor(self, i): - numHands = len(self.hands) - for next in range(1,numHands): - neighbor = (i + next) % numHands - if not self.hands[neighbor].isEmpty(): - return neighbor -\end{verbatim} -\afterverb -% -If {\tt findNeighbor} ever went all the way around the circle without -finding cards, it would return {\tt None} and cause an error -elsewhere in the program. Fortunately, we can prove that that will -never happen (as long as the end of the game is detected correctly). - -We have omitted the {\tt printHands} method. You -can write that one yourself. - -The following output is from a truncated form of the game where only -the top fifteen cards (tens and higher) were dealt to three players. -With this small deck, play stops after seven matches instead of -twenty-five. - -\beforeverb -\begin{verbatim} ->>> import cards ->>> game = cards.OldMaidGame() ->>> game.play(["Allen","Jeff","Chris"]) ----------- Cards have been dealt -Hand Allen contains -King of Hearts - Jack of Clubs - Queen of Spades - King of Spades - 10 of Diamonds - -Hand Jeff contains -Queen of Hearts - Jack of Spades - Jack of Hearts - King of Diamonds - Queen of Diamonds - -Hand Chris contains -Jack of Diamonds - King of Clubs - 10 of Spades - 10 of Hearts - 10 of Clubs - -Hand Jeff: Queen of Hearts matches Queen of Diamonds -Hand Chris: 10 of Spades matches 10 of Clubs ----------- Matches discarded, play begins -Hand Allen contains -King of Hearts - Jack of Clubs - Queen of Spades - King of Spades - 10 of Diamonds - -Hand Jeff contains -Jack of Spades - Jack of Hearts - King of Diamonds - -Hand Chris contains -Jack of Diamonds - King of Clubs - 10 of Hearts - -Hand Allen picked King of Diamonds -Hand Allen: King of Hearts matches King of Diamonds -Hand Jeff picked 10 of Hearts -Hand Chris picked Jack of Clubs -Hand Allen picked Jack of Hearts -Hand Jeff picked Jack of Diamonds -Hand Chris picked Queen of Spades -Hand Allen picked Jack of Diamonds -Hand Allen: Jack of Hearts matches Jack of Diamonds -Hand Jeff picked King of Clubs -Hand Chris picked King of Spades -Hand Allen picked 10 of Hearts -Hand Allen: 10 of Diamonds matches 10 of Hearts -Hand Jeff picked Queen of Spades -Hand Chris picked Jack of Spades -Hand Chris: Jack of Clubs matches Jack of Spades -Hand Jeff picked King of Spades -Hand Jeff: King of Clubs matches King of Spades ----------- Game is Over -Hand Allen is empty - -Hand Jeff contains -Queen of Spades - -Hand Chris is empty - -\end{verbatim} -\afterverb -% -So Jeff loses. - - - -\section{Glossary} - -\begin{description} - -\item[inheritance:] The ability to define a new class that is a -modified version of a previously defined class. - -\item[parent class:] The class from which a child class inherits. - -\item[child class:] A new class created by inheriting from an -existing class; also called a ``subclass.'' - -\index{inheritance} -\index{parent class} -\index{child class} -\index{subclass} - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap17.tex b/sciphi/data/stock_raw/learning_with_python/chap17.tex deleted file mode 100644 index 9e9e09e..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap17.tex +++ /dev/null @@ -1,636 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (C) 1999 Allen B. Downey - -% This LaTeX source is free software; you can redistribute it and/or -% modify it under the terms of the GNU General Public License as -% published by the Free Software Foundation (version 2). - -% This LaTeX source is distributed in the hope that it will be useful, -% but WITHOUT ANY WARRANTY; without even the implied warranty of -% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -% General Public License for more details. - -% Compiling this LaTeX source has the effect of generating -% a device-independent representation of a textbook, which -% can be converted to other formats and printed. All intermediate -% representations (including DVI and Postscript), and all printed -% copies of the textbook are also covered by the GNU General -% Public License. - -% This distribution includes a file named COPYING that contains the text -% of the GNU General Public License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - -\chapter{Linked lists} -\label{list} -\index{list} - -\section{Embedded references} -\index{reference} -\index{embedded reference} -\index{reference!embedded} -\index{linked list} -\index{list!linked} -\index{node} -\index{cargo} - -We have seen examples of attributes that refer to other objects, which -we called {\bf embedded references} (see Section~\ref{embedded}). A -common data structure, the {\bf linked list}, takes advantage of this -feature. - -Linked lists are made up of {\bf nodes}, where each node contains a -reference to the next node in the list. In addition, each node -contains a unit of data called the {\bf cargo}. - -A linked list is considered a {\bf recursive data -structure} because it has a recursive definition. - -\begin{quote} -A linked list is either: -\begin{itemize} - -\item the empty list, represented by {\tt None}, or - -\item a node that contains a cargo object and a reference -to a linked list. - -\end{itemize} - -\end{quote} - -\index{recursive data structure} -\index{data structure!recursive} - -Recursive data structures lend themselves to -recursive methods. - - -\section{The {\tt Node} class} -\index{Node class} -\index{class!Node} - -As usual when writing a new class, we'll start with the -initialization and {\tt \_\_str\_\_} methods so that we -can test the basic mechanism of creating and displaying the new -type: - -\beforeverb -\begin{verbatim} -class Node: - def __init__(self, cargo=None, next=None): - self.cargo = cargo - self.next = next - - def __str__(self): - return str(self.cargo) -\end{verbatim} -\afterverb -% -As usual, the parameters for the initialization method are optional. By -default, both the cargo and the link, {\tt next}, are set -to {\tt None}. - -The string representation of a node is just the string representation -of the cargo. Since any value can be passed to the {\tt str} -function, we can store any value in a list. - -To test the implementation so far, we can create a {\tt Node} -and print it: - -\beforeverb -\begin{verbatim} ->>> node = Node("test") ->>> print node -test -\end{verbatim} -\afterverb -% -To make it interesting, we need a list with more than -one node: - -\beforeverb -\begin{verbatim} ->>> node1 = Node(1) ->>> node2 = Node(2) ->>> node3 = Node(3) -\end{verbatim} -\afterverb -% -This code creates three nodes, but we don't have a list yet -because the nodes are not {\bf linked}. The state diagram -looks like this: - -\beforefig -\centerline{\psfig{figure=illustrations/link1.eps}} -\afterfig - -To link the nodes, we have to make the first node refer to the -second and the second node refer to the third: - -\beforeverb -\begin{verbatim} ->>> node1.next = node2 ->>> node2.next = node3 -\end{verbatim} -\afterverb -% -The reference of the third node is {\tt None}, which indicates that -it is the end of the list. Now the state diagram looks like this: - -\beforefig -\centerline{\psfig{figure=illustrations/link2.eps}} -\afterfig - -Now you know how to create nodes and link them into lists. What -might be less clear at this point is why. - - -\section{Lists as collections} -\index{collection} - -Lists are useful because they provide a way to assemble multiple -objects into a single entity, sometimes called a {\bf collection}. In -the example, the first node of the list serves as a reference to the -entire list. - -\index{list!printing} -\index{list!as argument} - -To pass the list as an argument, we only have to pass a -reference to the first node. For example, the function {\tt printList} -takes a single node as an argument. Starting with the head of the -list, it prints each node until it gets to the end: - -\beforeverb -\begin{verbatim} -def printList(node): - while node: - print node, - node = node.next - print -\end{verbatim} -\afterverb -% -To invoke this function, we pass a reference to the -first node: - -\beforeverb -\begin{verbatim} ->>> printList(node1) -1 2 3 -\end{verbatim} -\afterverb -% -Inside {\tt printList} we have a reference to the first node -of the list, but there is no variable that refers to the other -nodes. We have to use the {\tt next} value from each node -to get to the next node. - -To traverse a linked list, it is common to use a loop variable like -{\tt node} to refer to each of the nodes in succession. - -\index{loop variable} -\index{list!traversal} -\index{traverse} - -This diagram shows the nodes in the list and the values that -{\tt node} takes on: - -\beforefig -\centerline{\psfig{figure=illustrations/link3.eps}} -\afterfig - -\begin{quote} -{\em By convention, lists are often printed in brackets with commas -between the elements, as in {\tt [1, 2, 3]}. As an exercise, modify -{\tt printList} so that it generates output in this format.} -\end{quote} - - -\section{Lists and recursion} -\label{listrecursion} -\index{list!traverse recursively} -\index{traverse} - -It is natural to express many list operations using recursive methods. -For example, the following is a recursive algorithm for printing a list -backwards: - -\begin{enumerate} - -\item Separate the list into two pieces: the first node (called -the head); and the rest (called the tail). - -\item Print the tail backward. - -\item Print the head. - -\end{enumerate} - -Of course, Step 2, the recursive call, assumes that we have a way of -printing a list backward. But if we assume that the recursive -call works---the leap of faith---then we can convince ourselves that -this algorithm works. - -\index{leap of faith} -\index{list!printing backwards} - -All we need are a base case and a way of proving that for -any list, we will eventually get to the base case. Given the -recursive definition of a list, a natural base case is -the empty list, represented by {\tt None}: - -\beforeverb -\begin{verbatim} -def printBackward(list): - if list == None: return - head = list - tail = list.next - printBackward(tail) - print head, -\end{verbatim} -\afterverb -% -The first line handles the base case by doing nothing. The -next two lines split the list into {\tt head} and {\tt tail}. -The last two lines print the list. The comma at the end of the -last line keeps Python from printing a newline after each node. - -We invoke this function as we invoked {\tt printList}: - -\beforeverb -\begin{verbatim} ->>> printBackward(node1) -3 2 1 -\end{verbatim} -\afterverb -% -The result is a backward list. - -You might wonder why {\tt printList} and {\tt printBackward} are -functions and not methods in the {\tt Node} class. The reason is that -we want to use {\tt None} to represent the empty list and it is not -legal to invoke a method on {\tt None}. This limitation makes it -awkward to write list-manipulating code in a clean object-oriented -style. - -Can we prove that {\tt printBackward} will always terminate? In other -words, will it always reach the base case? In fact, the answer -is no. Some lists will make this function crash. - - -\section{Infinite lists} -\index{infinite list} -\index{list!infinite} -\index{loop!in list} -\index{list!loop} - -There is nothing to prevent a node from referring back to -an earlier node in the list, including itself. For example, -this figure shows a list with two nodes, one of which refers -to itself: - -\beforefig -\centerline{\psfig{figure=illustrations/link4.eps}} -\afterfig - -If we invoke {\tt printList} on this list, it will loop forever. -If we invoke {\tt printBackward}, it will recurse infinitely. -This sort of behavior makes infinite lists difficult to work -with. - -Nevertheless, they are occasionally useful. For example, we -might represent a number as a list of digits and use an infinite -list to represent a repeating fraction. - -Regardless, it is problematic that we cannot prove that {\tt printList} -and {\tt printBackward} terminate. The best we can do is the -hypothetical statement, ``If the list contains no loops, then these -functions will terminate.'' This sort of claim is called a {\bf -precondition}. It imposes a constraint on one of the arguments and -describes the behavior of the function if the constraint is satisfied. -You will see more examples soon. - -\index{precondition} - - -\section{The fundamental ambiguity theorem} -\index{ambiguity!fundamental theorem} -\index{theorem!fundamental ambiguity} - -One part of {\tt printBackward} might have raised -an eyebrow: - -\beforeverb -\begin{verbatim} - head = list - tail = list.next -\end{verbatim} -\afterverb -% -After the first assignment, {\tt head} and {\tt list} have the same -type and the same value. So why did we create a new variable? - -The reason is that the two variables play different roles. We think -of {\tt head} as a reference to a single node, and we think of -{\tt list} as a reference to the first node of a list. These -``roles'' are not part of the program; they are in the mind of the -programmer. - -\index{variable!roles} -\index{role!variable} - -In general we can't tell by looking at a program what role a -variable plays. -This ambiguity can be useful, but it can also make programs -difficult to read. We often use variable names like {\tt node} -and {\tt list} to document how we intend to use a variable and -sometimes create additional variables to disambiguate. - -We could have written {\tt printBackward} without {\tt head} -and {\tt tail}, which makes it more concise but possibly -less clear: - -\beforeverb -\begin{verbatim} -def printBackward(list) : - if list == None : return - printBackward(list.next) - print list, -\end{verbatim} -\afterverb -% -Looking at the two function calls, we have to remember that {\tt -printBackward} treats its argument as a collection and {\tt print} -treats its argument as a single object. - -The {\bf fundamental ambiguity theorem} describes the ambiguity -that is inherent in a reference to a node: - -\begin{quote} -{\bf A variable that refers to a node might treat the node as a single -object or as the first in a list of nodes.} -\end{quote} - - - -\section{Modifying lists} -\index{list!modifying} -\index{modifying lists} - -There are two ways to modify a linked list. Obviously, we can change -the cargo of one of the nodes, but the more interesting operations are -the ones that add, remove, or reorder the nodes. - -As an example, let's write a function that removes the second -node in the list and returns a reference to the removed node: - -\beforeverb -\begin{verbatim} -def removeSecond(list): - if list == None: return - first = list - second = list.next - # make the first node refer to the third - first.next = second.next - # separate the second node from the rest of the list - second.next = None - return second -\end{verbatim} -\afterverb -% -Again, we are using temporary variables to make the code more -readable. Here is how to use this function: - -\beforeverb -\begin{verbatim} ->>> printList(node1) -1 2 3 ->>> removed = removeSecond(node1) ->>> printList(removed) -2 ->>> printList(node1) -1 3 -\end{verbatim} -\afterverb -% -This state diagram shows the effect of the operation: - -\beforefig -\centerline{\psfig{figure=illustrations/link5.eps}} -\afterfig - -What happens if you invoke this function and pass a list with only one -element (a {\bf singleton})? What happens if you pass the empty list -as an argument? Is there a precondition for this function? If so, fix -the function to handle a violation of the precondition in a reasonable -way. - -\index{singleton} - - -\section{Wrappers and helpers} -\index{wrapper function} -\index{function!wrapper} -\index{helper function} -\index{function!helper} - -It is often useful to divide a list operation into -two functions. For example, to print a list -backward in the -format {\tt [3 2 1]} we can use the -{\tt printBackward} function to print {\tt 3 2 1} but we need -a separate function to print the brackets. -Let's call it {\tt printBackwardNicely}: - -\beforeverb -\begin{verbatim} -def printBackwardNicely(list) : - print "[", - printBackward(list) - print "]", -\end{verbatim} -\afterverb -% -Again, it is a good idea to check functions like this to see -if they work with special cases like an empty list or -a singleton. - -\index{singleton} - -When we use this function elsewhere in the program, we -invoke {\tt printBackwardNicely} directly, and it invokes -{\tt printBackward} on our behalf. In that sense, -{\tt printBackwardNicely} acts as a {\bf wrapper}, and it uses -{\tt printBackward} as a {\bf helper}. - - -\section {The {\tt LinkedList} class} -\index{LinkedList} -\index{class!LinkedList} - -There are some subtle problems with the way we have been -implementing lists. In a reversal of cause and effect, we'll -propose an alternative implementation first and then explain what -problems it solves. - -First, we'll create a new class called {\tt LinkedList}. Its -attributes are an integer that contains the length of the list -and a reference to the first node. {\tt LinkedList} objects -serve as handles for manipulating lists of {\tt Node} objects: - -\beforeverb -\begin{verbatim} -class LinkedList : - def __init__(self) : - self.length = 0 - self.head = None -\end{verbatim} -\afterverb -% -One nice thing about the {\tt LinkedList} class is that it provides -a natural place to put wrapper functions like -{\tt printBackwardNicely}, which we can make a -method of the {\tt LinkedList} class: - -\beforeverb -\begin{verbatim} -class LinkedList: - ... - def printBackward(self): - print "[", - if self.head != None: - self.head.printBackward() - print "]", - -class Node: - ... - def printBackward(self): - if self.next != None: - tail = self.next - tail.printBackward() - print self.cargo, -\end{verbatim} -\afterverb -% -Just to make things confusing, we renamed {\tt printBackwardNicely}. -Now there are two methods named {\tt printBackward}: one in the {\tt -Node} class (the helper); and one in the {\tt LinkedList} class (the -wrapper). When the wrapper invokes {\tt self.head.printBackward}, -it is invoking the helper, because {\tt self.head} is a -{\tt Node} object. - -Another benefit of the {\tt LinkedList} class is that it -makes it easier to add or remove the first element of a list. For -example, {\tt addFirst} is a method for {\tt LinkedList}s; it -takes an item of cargo as an argument and puts it at the beginning of the -list: - -\beforeverb -\begin{verbatim} -class LinkedList: - ... - def addFirst(self, cargo): - node = Node(cargo) - node.next = self.head - self.head = node - self.length = self.length + 1 -\end{verbatim} -\afterverb -% -As usual, you should check code like this to see if it handles -the special cases. For example, what happens if the list is initially -empty? - - -\section {Invariants} -\index{invariant} -\index{object invariant} -\index{list!well-formed} - -Some lists are ``well formed"; others are not. For example, if a list -contains a loop, it will cause many of our methods to crash, so we -might want to require that lists contain no loops. Another -requirement is that the {\tt length} value in the {\tt LinkedList} -object should be equal to the actual number of nodes in the list. - -Requirements like these are called {\bf invariants} because, ideally, -they should be true of every object all the time. Specifying -invariants for objects is a useful programming practice because it -makes it easier to prove the correctness of code, check the integrity -of data structures, and detect errors. - -One thing that is sometimes confusing about invariants is that -there are times when they are violated. For example, in the -middle of {\tt addFirst}, after we have added the node but -before we have incremented {\tt length}, the invariant is -violated. This kind of violation is acceptable; in fact, it is -often impossible to modify an object without violating an -invariant for at least a little while. Normally, we require -that every method that violates an invariant must restore -the invariant. - -If there is any significant stretch of code in which the invariant -is violated, it is important for the comments to make that clear, -so that no operations are performed that depend on the invariant. - -\index{documentation} - - -\section{Glossary} -\index{embedded reference} -\index{reference!embedded} -\index{recursive data structure} -\index{data structure!recursive} -\index{linked list} -\index{list!linked} -\index{node} -\index{cargo} -\index{link} -\index{precondition} -\index{invariant} -\index{wrapper} -\index{helper method} -\index{fundamental ambiguity theorem} -\index{singleton} - -\begin{description} - -\item[embedded reference:] A reference stored in an attribute of -an object. - -\item[linked list:] A data structure that implements a collection using -a sequence of linked nodes. - -\item[node:] An element of a list, usually implemented as an object -that contains a reference to another object of the same type. - -\item[cargo:] An item of data contained in a node. - -\item[link:] An embedded reference used to link one object to -another. - -\item[precondition:] An assertion that must be true in order for a -method to work correctly. - -\item[fundamental ambiguity theorem:] A reference to a list -node can be treated as a single -object or as the first in a list of nodes. - -\item[singleton:] A linked list with a single node. - -\item[wrapper:] A method that acts as a middleman between a -caller and a helper method, often making the method easier or -less error-prone to invoke. - -\item[helper:] A method that is not invoked directly by a caller -but is used by another method to perform part of an operation. - -\item[invariant:] An assertion that should be true of an object at -all times (except perhaps while the object is being modified). - -\end{description} - diff --git a/sciphi/data/stock_raw/learning_with_python/chap18.tex b/sciphi/data/stock_raw/learning_with_python/chap18.tex deleted file mode 100644 index f60565d..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap18.tex +++ /dev/null @@ -1,427 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% - -\chapter{Stacks} - -\section{Abstract data types} -\index{abstract data type|see{ADT}} -\index{ADT} -\index{encapsulation} - -The data types you have seen so far are all concrete, in the -sense that we have completely specified how they are implemented. -For example, the {\tt Card} class represents a card using two -integers. As we discussed at the time, that is not the only way -to represent a card; there are many alternative implementations. - -An {\bf abstract data type}, or ADT, specifies a set of operations (or -methods) and the semantics of the operations (what they do), but it -does not specify the implementation of the operations. That's -what makes it abstract. - -Why is that useful? - -\begin{itemize} - -\item It simplifies the task of specifying an algorithm if you -can denote the operations you need without having to think at the -same time about how the operations are performed. - -\item Since there are usually many ways to implement an ADT, -it might be useful to write an algorithm that can be used with -any of the possible implementations. - -\item Well-known ADTs, such as the Stack ADT in this chapter, -are often implemented in standard libraries so they can be written -once and used by many programmers. - -\item The operations on ADTs provide a common high-level language -for specifying and talking about algorithms. - -\end{itemize} - -When we talk about ADTs, we often distinguish the code that uses -the ADT, called the {\bf client} code, from the code that implements -the ADT, called the {\bf provider} code. - -\index{client} -\index{provider} - - -\section{The Stack ADT} -\index{stack} -\index{collection} -\index{ADT!Stack} - -In this chapter, we will look at one common ADT, the {\bf stack}. A -stack is a collection, meaning that it is a data structure that -contains multiple elements. Other collections we have seen include -dictionaries and lists. - -\index{interface} - -An ADT is defined by the operations that can be performed on it, which -is called an {\bf interface}. The interface for a stack consists of -these operations: - -\begin{description} - -\item[{\tt \_\_init\_\_}:] Initialize a new empty stack. - -\item[{\tt push}:] Add a new item to the stack. - -\item[{\tt pop}:] Remove and return an item from the stack. The item -that is returned is always the last one that was added. - -\item[{\tt isEmpty}:] Check whether the stack is empty. - -\end{description} - -A stack is sometimes called a ``last in, first out'' or LIFO -data structure, because the last item added is the first to -be removed. - - -\section {Implementing stacks with Python lists} -\index{Stack} -\index{class!Stack} -\index{generic data structure} -\index{data structure!generic} - -The list -operations that Python provides are similar to the operations that -define a stack. The interface isn't exactly what it is supposed -to be, but we can write code to translate from the Stack ADT -to the built-in operations. - -This code is called an {\bf implementation} of the Stack ADT. -In general, an implementation is a set of methods that satisfy -the syntactic and semantic requirements of an interface. - -Here is an implementation of the Stack ADT that uses a Python list: - -\beforeverb -\begin{verbatim} -class Stack : - def __init__(self) : - self.items = [] - - def push(self, item) : - self.items.append(item) - - def pop(self) : - return self.items.pop() - - def isEmpty(self) : - return (self.items == []) -\end{verbatim} -\afterverb -% -A {\tt Stack} object contains an attribute named {\tt items} -that is a list of items in the stack. The initialization method -sets {\tt items} to the empty list. - -To push a new item onto the stack, {\tt push} appends it onto {\tt -items}. To pop an item off the stack, {\tt pop} uses the -homonymous\footnote{same-named} list method to remove and return the -last item on the list. - -Finally, to check if the stack is empty, {\tt isEmpty} compares -{\tt items} to the empty list. - -\index{veneer} - -An implementation like this, in which the methods consist of simple -invocations of existing methods, is called a {\bf veneer}. In real -life, veneer is a thin coating of good quality wood used in -furniture-making to hide lower quality wood underneath. Computer -scientists use this metaphor to describe a small piece of code that -hides the details of an implementation and provides a simpler, or more -standard, interface. - - -\section{Pushing and popping} -\index{push} -\index{pop} -\index{generic data structure} -\index{data structure!generic} - -A stack is a {\bf generic data structure}, which means that we can -add any type of item to it. The following example pushes -two integers and a string onto the stack: - -\beforeverb -\begin{verbatim} ->>> s = Stack() ->>> s.push(54) ->>> s.push(45) ->>> s.push("+") -\end{verbatim} -\afterverb -% -We can use {\tt isEmpty} and {\tt pop} to remove and print -all of the items on the stack: - -\beforeverb -\begin{verbatim} -while not s.isEmpty() : - print s.pop(), -\end{verbatim} -\afterverb -% -The output is {\tt + 45 54}. In other words, we just used a stack -to print the items backward! Granted, it's not the -standard format for printing a list, but by using a stack, it was -remarkably easy to do. - -You should compare this bit of code to the implementation of {\tt -printBackward} in Section~\ref{listrecursion}. There is a natural -parallel between the recursive version of {\tt printBackward} and the -stack algorithm here. The difference is that {\tt printBackward} uses -the runtime stack to keep track of the nodes while it traverses the -list, and then prints them on the way back from the recursion. The -stack algorithm does the same thing, except that it uses a {\tt Stack} -object instead of the runtime stack. - - - -\section {Using a stack to evaluate postfix} -\index{postfix} -\index{infix} -\index{expression} - -In most programming languages, mathematical expressions are -written with the operator between the two operands, as in -{\tt 1+2}. This format is called {\bf infix}. An alternative -used by some calculators is called {\bf postfix}. In -postfix, the operator follows the operands, as in {\tt 1 2 +}. - -The reason postfix is sometimes useful is that there is a -natural way to evaluate a postfix expression using a stack: - -\begin{itemize} - -\item Starting at the beginning of the expression, get one -term (operator or operand) at a time. - - \begin{itemize} - - \item If the term is an operand, push it on the stack. - - \item If the term is an operator, pop two operands off - the stack, perform the operation on them, and push the - result back on the stack. - - \end{itemize} - -\item When you get to the end of the expression, there should -be exactly one operand left on the stack. That operand is the -result. - -\end{itemize} - -\begin{quote} -{\em As an exercise, apply this algorithm to the expression -{\tt 1 2 + 3 *}.} -\end{quote} - -This example demonstrates one of the advantages of postfix---there is -no need to use parentheses to control the order of operations. To get -the same result in infix, we would have to write {\tt (1 + 2) * 3}. - -\begin{quote} -{\em As an exercise, write a postfix expression that is equivalent to -{\tt 1 + 2 * 3}.} -\end{quote} - - -\section {Parsing} -\index{parse} -\index{token} -\index{delimiter} -\index{regular expression} - -To implement the previous algorithm, we need -to be able to traverse a string and break it into operands and -operators. This process is an example of {\bf parsing}, and the -results---the individual chunks of the string---are called {\bf -tokens}. You might remember these words from Chapter 1. - -Python provides a {\tt split} method in both the {\tt string} and {\tt -re} (regular expression) modules. The function {\tt string.split} -splits a string into a list using a single character as a {\bf delimiter}. -For example: - -\beforeverb -\begin{verbatim} ->>> import string ->>> string.split("Now is the time"," ") -['Now', 'is', 'the', 'time'] -\end{verbatim} -\afterverb -% -In this case, the delimiter is the space character, so the string -is split at each space. - -The function {\tt re.split} is more powerful, allowing us to -provide a regular expression instead of a delimiter. -A regular expression is a way of specifying a set of strings. -For example, \verb+[A-z]+ is the set of all letters and -\verb+[0-9]+ is the set of all digits. The \verb+^+ operator -negates a set, so \verb+[^0-9]+ is the set of every character that -is not a digit, which is exactly the set we want to use to -split up postfix expressions: - -\beforeverb -\begin{verbatim} ->>> import re ->>> re.split("([^0-9])", "123+456*/") -['123', '+', '456', '*', '', '/', ''] -\end{verbatim} -\afterverb -% -Notice that the order of the -arguments is different from {\tt string.split}; the delimiter comes -before the string. - -The resulting list includes the operands {\tt 123} and {\tt 456} and -the operators {\tt *} and {\tt /}. It also includes two empty -strings that are inserted as ``phantom operands,'' whenever an -operator appears without a number before or after it. - - -\section {Evaluating postfix} - -To evaluate a postfix expression, we will use the parser from -the previous section and the algorithm from the section before that. -To keep things simple, we'll start with an evaluator that -only implements the operators {\tt +} and {\tt *}: - -\adjustpage{-3} -\pagebreak - -\beforeverb -\begin{verbatim} -def evalPostfix(expr): - import re - tokenList = re.split("([^0-9])", expr) - stack = Stack() - for token in tokenList: - if token == '' or token == ' ': - continue - if token == '+': - sum = stack.pop() + stack.pop() - stack.push(sum) - elif token == '*': - product = stack.pop() * stack.pop() - stack.push(product) - else: - stack.push(int(token)) - return stack.pop() -\end{verbatim} -\afterverb -% -The first condition takes care of spaces and empty strings. The next -two conditions handle operators. We assume, for now, that anything -else must be an operand. Of course, it would be better to check for -erroneous input and report an error message, but we'll get to that -later. - -Let's test it by evaluating the postfix form of {\tt (56+47)*2}: - -\beforeverb -\begin{verbatim} ->>> print evalPostfix ("56 47 + 2 *") -206 -\end{verbatim} -\afterverb -% -That's close enough. - - -\section {Clients and providers} -\index{encapsulation} -\index{ADT} - -One of the fundamental goals of an ADT is to separate the -interests of the provider, who writes the code that implements -the ADT, and the client, who uses the ADT. -The provider only has to worry -about whether the implementation is correct---in accord -with the specification of the ADT---and not how it will be used. - -Conversely, the client {\em assumes} that the implementation of the -ADT is correct and doesn't worry about the details. When you -are using one of Python's built-in types, you have the luxury -of thinking exclusively as a client. - -Of course, when you implement an ADT, you also have -to write client code to test it. In that case, you play both -roles, which can be confusing. You should make some effort -to keep track of which role you are playing at any moment. - - -\section{Glossary} -\index{ADT} -\index{client} -\index{provider} -\index{infix} -\index{postfix} -\index{parse} -\index{token} -\index{delimiter} - -\begin{description} - -\item[abstract data type (ADT):] A data type (usually a collection -of objects) that is defined by a set of operations but that can -be implemented in a variety of ways. - -\item[interface:] The set of operations that define an ADT. - -\item[implementation:] Code that satisfies the syntactic and semantic -requirements of an interface. - -\item[client:] A program (or the person who wrote it) that uses an ADT. - -\item[provider:] The code (or the person -who wrote it) that implements an ADT. - -\item[veneer:] A class definition that implements an ADT with -method definitions that are invocations of other methods, sometimes -with simple transformations. The veneer does no significant work, -but it improves or standardizes the interface seen by the client. - -\item[generic data structure:] A kind of data structure that can -contain data of any type. - -\item[infix:] A way of writing mathematical expressions with the -operators between the operands. - -\item[postfix:] A way of writing mathematical expressions with the -operators after the operands. - -\item[parse:] To read a string of characters or tokens and analyze -its grammatical structure. - -\item[token:] A set of characters that are treated as a unit for -purposes of parsing, such as the words in a natural language. - -\item[delimiter:] A character that is used to separate tokens, -such as punctuation in a natural language. - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap19.tex b/sciphi/data/stock_raw/learning_with_python/chap19.tex deleted file mode 100644 index e8e21e8..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap19.tex +++ /dev/null @@ -1,483 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - -\chapter{Queues} -\label{queue} -\index{queue} -\index{ADT!Queue} -\index{priority queue} -\index{ADT!Priority Queue} -\index{FIFO} -\index{queueing policy} -\index{priority queueing} - -This chapter presents two ADTs: the Queue and the Priority Queue. -In real life, a {\bf queue} is a line of customers waiting for service -of some kind. In most cases, the first customer in line is the -next customer to be served. There are exceptions, though. -At airports, customers whose flights are leaving soon -are sometimes taken from the middle of the queue. At -supermarkets, a polite customer might let someone with only a -few items go first. - -The rule that determines who goes next is called the -{\bf queueing policy}. The simplest queueing policy is -called {\bf FIFO}, for ``first-in-first-out.'' The most general -queueing policy is {\bf priority queueing}, in which each customer -is assigned a priority and the customer with the highest priority -goes first, regardless of the order of arrival. We -say this is the most general policy because the priority -can be based on anything: what time a flight leaves; how many -groceries the customer has; or how important the customer is. -Of course, not all queueing policies are ``fair,'' but -fairness is in the eye of the beholder. - -The Queue ADT and the Priority Queue ADT have the same set -of operations. The difference -is in the semantics of the operations: a queue uses the FIFO -policy; and a priority queue (as the name suggests) uses the -priority queueing policy. - -\adjustpage{1} - -\section{The Queue ADT} -\index{ADT!Queue} -\index{Queue ADT} -\index{implementation!Queue} -\index{queue!List implementation} - -The Queue ADT is defined by the following operations: - -\begin{description} - -\item[{\tt \_\_init\_\_}:] Initialize a new empty queue. - -\item[{\tt insert}:] Add a new item to the queue. - -\item[{\tt remove}:] Remove and return an item from the queue. The item -that is returned is the first one that was added. - -\item[{\tt isEmpty}:] Check whether the queue is empty. - -\end{description} - - -\section{Linked Queue} -\index{linked queue} -\index{queue!linked implementation} - -The first implementation of the Queue ADT we will look at is -called a {\bf linked queue} because it is made up of linked -{\tt Node} objects. Here is the class definition: - -\beforeverb -\begin{verbatim} -class Queue: - def __init__(self): - self.length = 0 - self.head = None - - def isEmpty(self): - return (self.length == 0) - - def insert(self, cargo): - node = Node(cargo) - node.next = None - if self.head == None: - # if list is empty the new node goes first - self.head = node - else: - # find the last node in the list - last = self.head - while last.next: last = last.next - # append the new node - last.next = node - self.length = self.length + 1 - - def remove(self): - cargo = self.head.cargo - self.head = self.head.next - self.length = self.length - 1 - return cargo -\end{verbatim} -\afterverb -% -The methods {\tt isEmpty} and {\tt remove} are identical to the -{\tt LinkedList} methods {\tt isEmpty} and {\tt removeFirst}. -The {\tt insert} method is new and a bit more complicated. - -We want to insert new items at the end of the list. -If the queue is empty, we just set {\tt -head} to refer to the new node. - -Otherwise, we traverse the list to the last node and -tack the new node on the end. We can identify the last node because -its {\tt next} attribute is {\tt None}. - -There are two invariants for a properly formed {\tt Queue} object. -The value of {\tt length} should be the number of nodes in the -queue, and the last node should have {\tt next} equal to -{\tt None}. Convince yourself that this method preserves -both invariants. - - -\section{Performance characteristics} -\index{performance} - -Normally when we invoke a method, we are not concerned with the -details of its implementation. But there is one ``detail'' -we might want to know---the performance characteristics of the -method. How long does it take, and how does the run time change -as the number of items in the collection increases? - -First look at {\tt remove}. -There are no loops or function calls here, suggesting that -the runtime of this method is the same every time. Such a method -is called a {\bf constant time} operation. -In reality, the method might be slightly faster -when the list is empty since it skips the body of the conditional, -but that difference is not significant. - -\index{constant time} - -The performance of {\tt insert} is very different. -In the general case, we have to -traverse the list to find the last element. - -This traversal takes time proportional to the length of the -list. Since the runtime is a linear function of the length, -this method is called {\bf linear time}. Compared to -constant time, that's very bad. - -\index{linear time} - - -\section{Improved Linked Queue} -\index{queue!improved implementation} -\index{improved queue} - -We would like an implementation of the Queue ADT that can -perform all operations in constant time. One way to -do that is to modify the Queue class so that it -maintains a reference to both the first and the last node, -as shown in the figure: - -\beforefig -\centerline{\psfig{figure=illustrations/queue1.eps}} -\afterfig - -The {\tt ImprovedQueue} implementation looks like this: - -\beforeverb -\begin{verbatim} -class ImprovedQueue: - def __init__(self): - self.length = 0 - self.head = None - self.last = None - - def isEmpty(self): - return (self.length == 0) -\end{verbatim} -\afterverb -% -So far, the only change is the attribute {\tt last}. It is used in -{\tt insert} and {\tt remove} methods: - -\beforeverb -\begin{verbatim} -class ImprovedQueue: - ... - def insert(self, cargo): - node = Node(cargo) - node.next = None - if self.length == 0: - # if list is empty, the new node is head and last - self.head = self.last = node - else: - # find the last node - last = self.last - # append the new node - last.next = node - self.last = node - self.length = self.length + 1 -\end{verbatim} -\afterverb -% -Since {\tt last} keeps track of the last node, we don't have to search -for it. As a result, this method is constant time. - -There is a price to pay for that speed. We have to add a special case -to {\tt remove} to set {\tt last} to {\tt None} when the last node is -removed: - -\beforeverb -\begin{verbatim} -class ImprovedQueue: - ... - def remove(self): - cargo = self.head.cargo - self.head = self.head.next - self.length = self.length - 1 - if self.length == 0: - self.last = None - return cargo -\end{verbatim} -\afterverb -% -This implementation is more complicated than the -Linked Queue implementation, and it is more difficult to demonstrate -that it is correct. The advantage is that we have achieved -the goal---both {\tt insert} and {\tt remove} are constant time -operations. - -\begin{quote} -{\em As an exercise, write an implementation of the Queue ADT using -a Python list. Compare the performance of this implementation to the -{\tt ImprovedQueue} for a range of queue lengths.} -\end{quote} - - -\section{Priority queue} -\index{priority queue!ADT} -\index{ADT!Priority Queue} - -The Priority Queue ADT has the same interface as the Queue ADT, but -different semantics. Again, the interface is: - -\begin{description} - -\item[{\tt \_\_init\_\_}:] Initialize a new empty queue. - -\item[{\tt insert}:] Add a new item to the queue. - -\item[{\tt remove}:] Remove and return an item from the queue. The item -that is returned is the one with the highest priority. - -\item[{\tt isEmpty}:] Check whether the queue is empty. - -\end{description} - -The semantic difference is that the item that is removed from the -queue is not necessarily the first one that was added. Rather, it is -the item in the queue that has the highest priority. What the -priorities are and how they compare to each other are not specified by -the Priority Queue implementation. It depends on which items are in -the queue. - -For example, if the items in the queue have names, we might choose -them in alphabetical order. If they are bowling scores, we might go -from highest to lowest, but if they are golf scores, we would go from -lowest to highest. As long as we can compare the items in the queue, -we can find and remove the one with the highest priority. - -This implementation of Priority Queue has as an attribute -a Python list that -contains the items in the queue. - -\beforeverb -\begin{verbatim} -class PriorityQueue: - def __init__(self): - self.items = [] - - def isEmpty(self): - return self.items == [] - - def insert(self, item): - self.items.append(item) -\end{verbatim} -\afterverb -% -The initialization method, {\tt isEmpty}, and {\tt insert} are all -veneers on list operations. The only interesting method is {\tt -remove}: - -\beforeverb -\begin{verbatim} -class PriorityQueue: - ... - def remove(self): - maxi = 0 - for i in range(1,len(self.items)): - if self.items[i] > self.items[maxi]: - maxi = i - item = self.items[maxi] - self.items[maxi:maxi+1] = [] - return item -\end{verbatim} -\afterverb -% -At the beginning of each iteration, {\tt maxi} holds the index of the -biggest item (highest priority) we have seen {\em so far}. Each time -through the loop, the program compares the {\tt i}-eth item to the champion. -If the new item is bigger, the value of {\tt maxi} is set to {\tt i}. - -\index{traverse} - -When the {\tt for} statement completes, -{\tt maxi} is the index of the biggest item. This item -is removed from the list and returned. - -Let's test the implementation: - -\beforeverb -\begin{verbatim} ->>> q = PriorityQueue() ->>> q.insert(11) ->>> q.insert(12) ->>> q.insert(14) ->>> q.insert(13) ->>> while not q.isEmpty(): print q.remove() -14 -13 -12 -11 -\end{verbatim} -\afterverb -% -If the queue contains simple numbers or strings, they are -removed in numerical or alphabetical order, from highest to -lowest. Python can find the biggest integer or string because -it can compare them using the built-in comparison operators. - -If the queue contains an object type, it has to provide -a {\tt \_\_cmp\_\_} method. When {\tt remove} uses the {\tt >} -operator to compare items, it invokes the {\tt \_\_cmp\_\_} -for one of the items and passes the other as an argument. As -long as the {\tt \_\_cmp\_\_} method works correctly, the -Priority Queue will work. - - -\section{The {\tt Golfer} class} -\index{Golfer} -\index{class!Golfer} -\index{priority} -\index{operator overloading} -\index{overloading!operator} - -As an example of an object with an unusual definition of priority, let's -implement a class called {\tt Golfer} that keeps track of the -names and scores of golfers. As usual, we start by defining {\tt -\_\_init\_\_} and {\tt \_\_str\_\_}: - -\beforeverb -\begin{verbatim} -class Golfer: - def __init__(self, name, score): - self.name = name - self.score= score - - def __str__(self): - return "%-16s: %d" % (self.name, self.score) -\end{verbatim} -\afterverb -% -{\tt \_\_str\_\_} uses the format operator to put the names -and scores in neat columns. - -\index{format operator} -\index{operator!format} - -Next we define a version of {\tt \_\_cmp\_\_} where the lowest -score gets highest priority. As always, {\tt \_\_cmp\_\_} returns -1 if {\tt self} is ``greater than'' {\tt other}, -1 if {\tt self} -is ``less than'' other, and 0 if they are equal. - -\beforeverb -\begin{verbatim} -class Golfer: - ... - def __cmp__(self, other): - if self.score < other.score: return 1 # less is more - if self.score > other.score: return -1 - return 0 -\end{verbatim} -\afterverb -% -Now we are ready to test the priority queue with the {\tt Golfer} class: - -\beforeverb -\begin{verbatim} ->>> tiger = Golfer("Tiger Woods", 61) ->>> phil = Golfer("Phil Mickelson", 72) ->>> hal = Golfer("Hal Sutton", 69) ->>> ->>> pq = PriorityQueue() ->>> pq.insert(tiger) ->>> pq.insert(phil) ->>> pq.insert(hal) ->>> while not pq.isEmpty(): print pq.remove() -Tiger Woods : 61 -Hal Sutton : 69 -Phil Mickelson : 72 -\end{verbatim} -\afterverb - -\begin{quote} -{\em As an exercise, write an implementation of the Priority Queue ADT -using a linked list. You should keep the list sorted so that removal -is a constant time operation. Compare the performance of this -implementation with the Python list implementation.} -\end{quote} - - -\section{Glossary} -\index{queue} -\index{queueing policy} -\index{FIFO} -\index{priority queue} -\index{veneer} -\index{constant time} -\index{linear time} -\index{performance hazard} -\index{linked queue} -\index{circular buffer} -\index{abstract class} -\index{interface} - -\begin{description} - -\item[queue:] An ordered set of objects waiting for a service of -some kind. - -\item[Queue:] An ADT that performs the operations one might perform -on a queue. - -\item[queueing policy:] The rules that determine which member -of a queue is removed next. - -\item[FIFO:] ``First In, First Out,'' a queueing policy in which -the first member to arrive is the first to be removed. - -\item[priority queue:] A queueing policy in which -each member has a priority determined by external factors. -The member with the highest priority is the first to be removed. - -\item[Priority Queue:] An ADT that defines the operations one -might perform on a priority queue. - -\item[linked queue:] An implementation of a queue using a linked -list. - -\item[constant time:] An operation whose runtime does not -depend on the size of the data structure. - -\item[linear time:] An operation whose runtime is a linear -function of the size of the data structure. - -\end{description} diff --git a/sciphi/data/stock_raw/learning_with_python/chap20.tex b/sciphi/data/stock_raw/learning_with_python/chap20.tex deleted file mode 100644 index 7e48333..0000000 --- a/sciphi/data/stock_raw/learning_with_python/chap20.tex +++ /dev/null @@ -1,842 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% - -\chapter{Trees} -\index{tree} -\index{node} -\index{tree node} -\index{cargo} -\index{embedded reference} -\index{binary tree} - -Like linked lists, trees are made up of nodes. A common kind of tree -is a {\bf binary tree}, in which each node contains a reference to two -other nodes (possibly null). These references are referred to as the -left and right subtrees. Like list nodes, tree nodes also contain -cargo. A state diagram for a tree looks like this: - -\label{tree} -\beforefig -\centerline{\psfig{figure=illustrations/tree1.eps,height=1.7in}} -\afterfig - -To avoid cluttering up the picture, we often omit the -{\tt Nones}. - -The top of the tree (the node {\tt tree} refers to) is called the -{\bf root}. In keeping with the tree metaphor, the other nodes are -called branches and the nodes at the tips with null references are -called {\bf leaves}. It may seem odd that we draw the picture with -the root at the top and the leaves at the bottom, but that is not the -strangest thing. - -\index{root node} -\index{leaf node} -\index{parent node} -\index{child node} -\index{level} - -To make things worse, computer scientists mix in another -metaphor---the family tree. The top node is sometimes called -a {\bf parent} and the nodes it refers to are its {\bf children}. -Nodes with the same parent are called {\bf siblings}. - -Finally, there is a geometric vocabulary for talking -about trees. We already mentioned left and right, but there is -also ``up'' (toward the parent/root) and ``down'' (toward the -children/leaves). Also, all of the nodes that are the same -distance from the root comprise a {\bf level} of the tree. - -We probably don't need three metaphors for talking about trees, -but there they are. - -Like linked lists, trees are recursive data structures because -they are defined recursively. - -\index{recursive data structure} -\index{data structure!recursive} - -\begin{quote} -A tree is either: - -\begin{itemize} - -\item the empty tree, represented by {\tt None}, or - -\item a node that contains an object reference and two -tree references. - -\end{itemize} - -\end{quote} - -\index{tree!empty} - - -\section {Building trees} - -The process of assembling a tree is similar -to the process of assembling a linked list. -Each constructor invocation builds a single node. - -\beforeverb -\begin{verbatim} -class Tree: - def __init__(self, cargo, left=None, right=None): - self.cargo = cargo - self.left = left - self.right = right - - def __str__(self): - return str(self.cargo) -\end{verbatim} -\afterverb -% -The {\tt cargo} can -be any type, but the arguments for {\tt left} and {\tt right} should be -tree nodes. {\tt left} and {\tt right} are optional; the default -value is {\tt None}. - -To print a node, we just print the cargo. - -One way to build a tree is from the bottom up. -Allocate the child nodes first: - -\beforeverb -\begin{verbatim} -left = Tree(2) -right = Tree(3) -\end{verbatim} -\afterverb -% -Then create the parent node and link it to the children: - -\beforeverb -\begin{verbatim} -tree = Tree(1, left, right); -\end{verbatim} -\afterverb -% -We can write this code more concisely by nesting constructor -invocations: - -\beforeverb -\begin{verbatim} ->>> tree = Tree(1, Tree(2), Tree(3)) -\end{verbatim} -\afterverb -% -Either way, the result is the tree at the beginning of the -chapter. - - -\section {Traversing trees} -\index{tree!traversal} -\index{traverse} -\index{recursion} - -Any time you see a new data structure, your first -question should be, ``How do I traverse it?'' The most natural -way to traverse a tree is recursively. For example, if the -tree contains integers as cargo, this function returns their sum: - -\beforeverb -\begin{verbatim} -def total(tree): - if tree == None: return 0 - return total(tree.left) + total(tree.right) + tree.cargo -\end{verbatim} -\afterverb -% -The base case is the empty tree, which contains no cargo, so -the sum is 0. -The recursive step -makes two recursive calls to find the sum of the child trees. -When the recursive calls complete, -we add the cargo of the parent and return the -total. - - -\section {Expression trees} -\index{tree!expression} -\index{expression tree} -\index{postfix} -\index{infix} -\index{binary operator} -\index{operator!binary} - -A tree is a natural way to represent the structure of an expression. -Unlike other notations, it can represent the computation -unambiguously. For example, the infix expression {\tt 1 + 2 * 3} is -ambiguous unless we know that the multiplication happens before the -addition. - -This expression tree represents the same computation: - -\beforefig -\centerline{\psfig{figure=illustrations/tree2.eps,height=2in}} -\afterfig - -The nodes of an expression tree can be operands like {\tt 1} and -{\tt 2} or operators like {\tt +} and {\tt *}. Operands are leaf nodes; -operator nodes contain references to their operands. (All of these -operators are {\bf binary}, meaning they have exactly two operands.) - -We can build this tree like this: - -\beforeverb -\begin{verbatim} ->>> tree = Tree('+', Tree(1), Tree('*', Tree(2), Tree(3))) -\end{verbatim} -\afterverb -% -Looking at the figure, there is no question what the order of -operations is; the multiplication happens first in order to compute -the second operand of the addition. - -Expression trees have many uses. The example in this chapter uses -trees to translate expressions to postfix, prefix, and infix. -Similar trees are used inside compilers to parse, optimize, and -translate programs. - - -\section {Tree traversal} -\index{tree!traversal} -\index{traverse} -\index{recursion} -\index{preorder} -\index{postorder} -\index{inorder} - -We can traverse an expression tree and print the contents like this: - -\beforeverb -\begin{verbatim} -def printTree(tree): - if tree == None: return - print tree.cargo, - printTree(tree.left) - printTree(tree.right) -\end{verbatim} -\afterverb -% -\index{preorder} -\index{prefix} - -In other words, to print a tree, first print the contents of -the root, then print the entire left subtree, and then print the -entire right subtree. This way of traversing a tree is called -a {\bf preorder}, because the contents of the root appear {\em before} -the contents of the children. -For the previous example, the output is: - -\beforeverb -\begin{verbatim} ->>> tree = Tree('+', Tree(1), Tree('*', Tree(2), Tree(3))) ->>> printTree(tree) -+ 1 * 2 3 -\end{verbatim} -\afterverb -% -This format is different from both postfix and infix; it is another -notation called {\bf prefix}, in which the operators appear before -their operands. - -You might suspect that if you traverse the tree in a -different order, you will get the expression in a different -notation. For example, if you print the subtrees first and then -the root node, you get: - -\beforeverb -\begin{verbatim} -def printTreePostorder(tree): - if tree == None: return - printTreePostorder(tree.left) - printTreePostorder(tree.right) - print tree.cargo, -\end{verbatim} -\afterverb -% -\index{postorder} -\index{inorder} -The result, {\tt 1 2 3 * +}, is in postfix! -This order of traversal is called {\bf postorder}. - -Finally, to traverse a tree {\bf inorder}, -you print the left tree, then the root, and then the right tree: - -\beforeverb -\begin{verbatim} -def printTreeInorder(tree): - if tree == None: return - printTreeInorder(tree.left) - print tree.cargo, - printTreeInorder(tree.right) -\end{verbatim} -\afterverb -% -The result is {\tt 1 + 2 * 3}, which is the expression in infix. - -To be fair, we should point out that we have omitted an -important complication. Sometimes when we write an expression -in infix, we have to use parentheses to preserve the order of -operations. So an inorder traversal is not quite sufficient to -generate an infix expression. - -Nevertheless, with a few improvements, the expression tree and the -three recursive traversals provide a general way to translate -expressions from one format to another. - -\begin{quote} -{\em As an exercise, modify {\tt printTreeInorder} so that it -puts parentheses around every operator and pair of operands. -Is the output correct and unambiguous? Are the parentheses -always necessary? } -\end{quote} - -If we do an inorder traversal and keep track of what level -in the tree we are on, we can generate a graphical representation -of a tree: - -\beforeverb -\begin{verbatim} -def printTreeIndented(tree, level=0): - if tree == None: return - printTreeIndented(tree.right, level+1) - print ' '*level + str(tree.cargo) - printTreeIndented(tree.left, level+1) -\end{verbatim} -\afterverb -% -The parameter {\tt level} keeps track of where we are in the -tree. By default, it is initially 0. Each time we make a -recursive call, we pass {\tt level+1} because the child's level -is always one greater than the parent's. Each item is indented by -two spaces per level. The result for the example tree is: - -\beforeverb -\begin{verbatim} ->>> printTreeIndented(tree) - 3 - * - 2 -+ - 1 -\end{verbatim} -\afterverb -% -If you look at the output sideways, you see a simplified version -of the original figure. - - - -\section{Building an expression tree} -\index{expression tree} -\index{tree!expression} -\index{parse} -\index{token} - -In this section, we parse infix expressions and build the -corresponding expression trees. For example, the expression -{\tt (3+7)*9} yields the following tree: - -\beforefig -\centerline{\psfig{figure=illustrations/tree3.eps}} -\afterfig - -Notice that we have simplified the diagram by leaving -out the names of the attributes. - -The parser we will write handles expressions that include numbers, -parentheses, and the operators {\tt +} and {\tt *}. -We assume that the input string has already -been tokenized into a Python list. The token list for -{\tt (3+7)*9} is: - -\beforeverb -\begin{verbatim} -['(', 3, '+', 7, ')', '*', 9, 'end'] -\end{verbatim} -\afterverb -% -The {\tt end} token is useful for preventing the parser from -reading past the end of the list. - -\begin{quote} -{\em As an exercise, write a function that takes an expression -string and returns a token list.} -\end{quote} - -The first function we'll write is {\tt getToken}, which takes a token -list and an expected token as arguments. It compares the expected -token to the first token on the list: if they match, it removes the -token from the list and returns true; otherwise, it returns false: - -\beforeverb -\begin{verbatim} -def getToken(tokenList, expected): - if tokenList[0] == expected: - del tokenList[0] - return True - else: - return False -\end{verbatim} -\afterverb -% -Since {\tt tokenList} refers to a mutable object, the changes made -here are visible to any other variable that refers to the same object. - -The next function, {\tt getNumber}, handles operands. -If the next token in {\tt tokenList} is a number, -{\tt getNumber} removes it and returns a leaf node containing -the number; otherwise, it returns {\tt None}. - -\beforeverb -\begin{verbatim} -def getNumber(tokenList): - x = tokenList[0] - if not isinstance(x, int): return None - del tokenList[0] - return Tree (x, None, None) -\end{verbatim} -\afterverb -% -Before continuing, we should test {\tt getNumber} in isolation. We -assign a list of numbers to {\tt tokenList}, extract the first, -print the result, and print what remains of the token list: - -\beforeverb -\begin{verbatim} ->>> tokenList = [9, 11, 'end'] ->>> x = getNumber(tokenList) ->>> printTreePostorder(x) -9 ->>> print tokenList -[11, 'end'] -\end{verbatim} -\afterverb -% -The next method we need is {\tt getProduct}, which builds an -expression tree for products. A simple product has two numbers as -operands, like {\tt 3 * 7}. - -Here is a version of {\tt getProduct} that handles -simple products. - -\beforeverb -\begin{verbatim} -def getProduct(tokenList): - a = getNumber(tokenList) - if getToken(tokenList, '*'): - b = getNumber(tokenList) - return Tree ('*', a, b) - else: - return a -\end{verbatim} -\afterverb -% -Assuming that {\tt getNumber} succeeds and returns a singleton tree, -we assign the first operand to {\tt a}. -If the next character is {\tt *}, we get the second number -and build an expression tree with {\tt a}, {\tt b}, -and the operator. - -If the next character is anything else, then we just return -the leaf node with {\tt a}. Here are two examples: - -\beforeverb -\begin{verbatim} ->>> tokenList = [9, '*', 11, 'end'] ->>> tree = getProduct(tokenList) ->>> printTreePostorder(tree) -9 11 * -\end{verbatim} -\afterverb - -\beforeverb -\begin{verbatim} ->>> tokenList = [9, '+', 11, 'end'] ->>> tree = getProduct(tokenList) ->>> printTreePostorder(tree) -9 -\end{verbatim} -\afterverb -% -The second example implies that we consider a single -operand to be a kind of product. This definition of -``product'' is counterintuitive, but it turns out to -be useful. - -Now we have to deal with compound products, like like {\tt 3 * 5 * -13}. We treat this expression as a product of products, namely {\tt 3 -* (5 * 13)}. The resulting tree is: - -\beforefig -\centerline{\psfig{figure=illustrations/tree4.eps}} -\afterfig - -With a small change in {\tt getProduct}, we can handle -an arbitrarily long product: - -\beforeverb -\begin{verbatim} -def getProduct(tokenList): - a = getNumber(tokenList) - if getToken(tokenList, '*'): - b = getProduct(tokenList) # this line changed - return Tree ('*', a, b) - else: - return a -\end{verbatim} -\afterverb -% -In other words, a product can be either a singleton or a tree with -{\tt *} at the root, a number on the left, and a product on the right. -This kind of recursive definition should be starting to feel -familiar. - -\index{product} -\index{definition!recursive} -\index{recursive definition} - -Let's test the new version with a compound product: - -\beforeverb -\begin{verbatim} ->>> tokenList = [2, '*', 3, '*', 5 , '*', 7, 'end'] ->>> tree = getProduct(tokenList) ->>> printTreePostorder(tree) -2 3 5 7 * * * -\end{verbatim} -\afterverb -% -Next we will add the ability to parse sums. Again, we -use a slightly counterintuitive definition of ``sum.'' -For us, a sum can be a tree with {\tt +} at the root, -a product on the left, and a sum on the right. Or, a sum -can be just a product. - -\index{sum} - -If you are willing to play along with this definition, it has a nice -property: we can represent any expression (without parentheses) as a -sum of products. This property is the basis of our parsing algorithm. - -{\tt getSum} tries to build a tree with a product on the left and a -sum on the right. But if it doesn't find a {\tt +}, it just builds a -product. - -\beforeverb -\begin{verbatim} -def getSum(tokenList): - a = getProduct(tokenList) - if getToken(tokenList, '+'): - b = getSum(tokenList) - return Tree ('+', a, b) - else: - return a -\end{verbatim} -\afterverb -% -Let's test it with {\tt 9 * 11 + 5 * 7}: - -\beforeverb -\begin{verbatim} ->>> tokenList = [9, '*', 11, '+', 5, '*', 7, 'end'] ->>> tree = getSum(tokenList) ->>> printTreePostorder(tree) -9 11 * 5 7 * + -\end{verbatim} -\afterverb -% -We are almost done, but we still have to handle parentheses. -Anywhere in an expression where there can be a number, there can -also be an entire sum -enclosed in parentheses. We just need to modify {\tt getNumber} to -handle {\bf subexpressions}: - -\index{subexpression} - -\beforeverb -\begin{verbatim} -def getNumber(tokenList): - if getToken(tokenList, '('): - x = getSum(tokenList) # get the subexpression - getToken(tokenList, ')') # remove the closing parenthesis - return x - else: - x = tokenList[0] - if not isinstance(x, int): return None - tokenList[0:1] = [] - return Tree (x, None, None) -\end{verbatim} -\afterverb -% -Let's test this code with {\tt 9 * (11 + 5) * 7}: - -\beforeverb -\begin{verbatim} ->>> tokenList = [9, '*', '(', 11, '+', 5, ')', '*', 7, 'end'] ->>> tree = getSum(tokenList) ->>> printTreePostorder(tree) -9 11 5 + 7 * * -\end{verbatim} -\afterverb -% -\adjustpage{-2} -\pagebreak - -The parser handled the parentheses correctly; the addition happens -before the multiplication. - -In the final version of the program, it would be a good idea -to give {\tt getNumber} a name -more descriptive of its new role. - - -\section{Handling errors} -\index{handling errors} -\index{error handling} - -Throughout the parser, we've been assuming that expressions are -well-formed. For example, when we reach the end of a -subexpression, we assume that the next character is a close -parenthesis. If there is an error and the next character is something -else, we should deal with it. - -\beforeverb -\begin{verbatim} -def getNumber(tokenList): - if getToken(tokenList, '('): - x = getSum(tokenList) - if not getToken(tokenList, ')'): - raise ValueError, 'missing parenthesis' - return x - else: - # the rest of the function omitted -\end{verbatim} -\afterverb -% -The {\tt raise} statement creates an exception; in this -case a {\tt ValueError}. If the function that called -{\tt getNumber}, or one of the other functions in the -traceback, handles the exception, then the program -can continue. Otherwise, Python will print an error message -and quit. - -\begin{quote} -{\em As an exercise, find other places in these functions where errors -can occur and add appropriate {\tt raise} statements. -Test your code with improperly -formed expressions.} -\end{quote} - - -\section{The animal tree} -\index{animal game} -\index{game!animal} -\index{knowledge base} - -In this section, we develop a small program that uses a tree -to represent a knowledge base. - -The program interacts with the user to create a tree of questions -and animal names. Here is a sample run: - -\adjustpage{-3} -\pagebreak - -\beforeverb -\begin{verbatim} -Are you thinking of an animal? y -Is it a bird? n -What is the animals name? dog -What question would distinguish a dog from a bird? Can it fly -If the animal were dog the answer would be? n - -Are you thinking of an animal? y -Can it fly? n -Is it a dog? n -What is the animals name? cat -What question would distinguish a cat from a dog? Does it bark -If the animal were cat the answer would be? n - -Are you thinking of an animal? y -Can it fly? n -Does it bark? y -Is it a dog? y -I rule! - -Are you thinking of an animal? n -\end{verbatim} -\afterverb -% -Here is the tree this dialog builds: - -\beforefig -\centerline{\psfig{figure=illustrations/tree5.eps}} -\afterfig - -At the beginning of each round, the program starts at the top of the -tree and asks the first question. Depending on the answer, it moves -to the left or right child and continues until it gets to a leaf -node. At that point, it makes a guess. If the guess is not correct, -it asks the user for the name of the new animal and a question that -distinguishes the (bad) guess from the new animal. Then it adds a -node to the tree with the new question and the new animal. - -Here is the code: - -\adjustpage{-2} -\pagebreak - -\beforeverb -\begin{verbatim} -def animal(): - # start with a singleton - root = Tree("bird") - - # loop until the user quits - while True: - print - if not yes("Are you thinking of an animal? "): break - - # walk the tree - tree = root - while tree.getLeft() != None: - prompt = tree.getCargo() + "? " - if yes(prompt): - tree = tree.getRight() - else: - tree = tree.getLeft() - - # make a guess - guess = tree.getCargo() - prompt = "Is it a " + guess + "? " - if yes(prompt): - print "I rule!" - continue - - # get new information - prompt = "What is the animal's name? " - animal = raw_input(prompt) - prompt = "What question would distinguish a %s from a %s? " - question = raw_input(prompt % (animal,guess)) - - # add new information to the tree - tree.setCargo(question) - prompt = "If the animal were %s the answer would be? " - if yes(prompt % animal): - tree.setLeft(Tree(guess)) - tree.setRight(Tree(animal)) - else: - tree.setLeft(Tree(animal)) - tree.setRight(Tree(guess)) -\end{verbatim} -\afterverb -% -The function {\tt yes} is a helper; it prints a prompt and then -takes input from the user. If the response -begins with {\em y} or {\em Y}, the function returns true: - -\beforeverb -\begin{verbatim} -def yes(ques): - from string import lower - ans = lower(raw_input(ques)) - return (ans[0] == 'y') -\end{verbatim} -\afterverb -% -The condition of the outer loop is {\tt True}, which means it will -continue until the {\tt break} statement executes, if the user -is not thinking of an animal. - -The inner {\tt while} loop walks the tree from top to bottom, -guided by the user's responses. - -When a new node is added to the tree, the new question replaces -the cargo, and the two children are the new animal and the original -cargo. - -One shortcoming of the program is that when it exits, it forgets -everything you carefully taught it! - -\begin{quote} -{\em As an exercise, think of various ways you might save -the knowledge tree in a file. Implement the one you think -is easiest.} -\end{quote} - - -\section{Glossary} -\index{binary tree} -\index{node} -\index{root node} -\index{leaf node} -\index{parent node} -\index{child node} -\index{sibling node} -\index{level} -\index{prefix} -\index{preorder} -\index{postorder} -\index{inorder} -\index{binary operator} -\index{operator!binary} - -\begin{description} - -\item[binary tree:] A tree in which each node refers to zero, one, or -two dependent nodes. - -\item[root:] The topmost node in a tree, with no parent. - -\item[leaf:] A bottom-most node in a tree, with no children. - -\item[parent:] The node that refers to a given node. - -\item[child:] One of the nodes referred to by a node. - -\item[siblings:] Nodes that share a common parent. - -\item[level:] The set of nodes equidistant from the root. - -\item[binary operator:] An operator that takes two operands. - -\item[subexpression:] An expression in parentheses that acts -as a single operand in a larger expression. - -\item[preorder:] A way to traverse a tree, visiting each node -before its children. - -\item[prefix notation:] A way of writing a mathematical expression -with each operator appearing before its operands. - -\item[postorder:] A way to traverse a tree, visiting the children -of each node before the node itself. - -\item[inorder:] A way to traverse a tree, visiting the left subtree, -then the root, and then the right subtree. - -\end{description} - - - - - - diff --git a/sciphi/data/stock_raw/learning_with_python/contrib.tex b/sciphi/data/stock_raw/learning_with_python/contrib.tex deleted file mode 100644 index 2867d07..0000000 --- a/sciphi/data/stock_raw/learning_with_python/contrib.tex +++ /dev/null @@ -1,397 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and John Dewey. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -\chapter{Contributor List} - -To paraphrase the philosophy of the Free Software Foundation, this -book is free like free speech, but not necessarily free like free -pizza. It came about because of a collaboration that would not have -been possible without the GNU Free Documentation License. So we -thank the Free Software Foundation for developing this license -and, of course, making it available to us. - -We also thank the more than 100 sharp-eyed and -thoughtful readers who have sent us suggestions and corrections over -the past few years. In the spirit of free software, we decided to -express our gratitude in the form of a contributor list. Unfortunately, -this list is not complete, but we are doing our best to keep it -up to date. - -If you have a chance to look through the list, you should -realize that each person here has spared you and all subsequent -readers from the confusion of a technical error or a -less-than-transparent explanation, just by sending us a note. - -Impossible as it may seem after so many corrections, there may still -be errors in this book. If you should stumble across one, please -check the online version of the book at {\tt http://thinkpython.com}, -which is the most up-to-date version. If the error has not been -corrected, please take a minute to send us email at {\tt -feedback@thinkpython.com}. If we make a change due to your -suggestion, you will appear in the next version of the contributor -list (unless you ask to be omitted). Thank you! - - -\begin{itemize} - -\item Lloyd Hugh Allen sent in a correction to Section 8.4. -%He can be reached at: {\tt lha2@columbia.edu} - -\item Yvon Boulianne sent in a correction of a semantic error in -Chapter 5. -%She can be reached at: {\tt mystic@monuniverse.net} - -\item Fred Bremmer submitted a correction in Section 2.1. -%He can be reached at: {\tt Fred.Bremmer@ubc.cu} - -\item Jonah Cohen wrote the Perl scripts to convert the -LaTeX source for this book into beautiful HTML. - -%His Web page is {\tt jonah.ticalc.org} -%and his email is {\tt JonahCohen@aol.com} - -\item Michael Conlon sent in a grammar correction in Chapter 2 -and an improvement in style in Chapter 1, and he initiated discussion -on the technical aspects of interpreters. - -%Michael can be reached at: {\tt michael.conlon@sru.edu} - -\item Benoit Girard sent in a -correction to a humorous mistake in Section 5.6. - -%Benoit can be reached at: -%{\tt benoit.girard@gouv.qc.ca} - -\item Courtney Gleason and Katherine Smith wrote {\tt horsebet.py}, -which was used as a case study in an earlier version of the book. Their -program can now be found on the website. - -%Courtney can be reached at: {\tt -%orion1558@aol.com} - -\item Lee Harr submitted more corrections than we have room to list -here, and indeed he should be listed as one of the principal editors -of the text. - -%He can be reached at: {\tt missive@linuxfreemail.com} - -\item James Kaylin is a student using the text. He has submitted -numerous corrections. - -%James can be reached by email at: {\tt Jamarf@aol.com} - -\item David Kershaw fixed the broken {\tt catTwice} function in Section -3.10. - -%He can be reached at: {\tt david\_kershaw@merck.com} - -\item Eddie Lam has sent in numerous corrections to Chapters -1, 2, and 3. -He also fixed the Makefile so that it creates an index the first time it is -run and helped us set up a versioning scheme. - -%Eddie can be reached at: -%{\tt nautilus@yoyo.cc.monash.edu.au} - -\item Man-Yong Lee sent in a correction to the example code in -Section 2.4. - -%He can be reaced at: {\tt yong@linuxkorea.co.kr} - -\item David Mayo pointed out that the word ``unconsciously" -in Chapter 1 needed -to be changed to ``subconsciously". - -%David can be reached at:{\tt bdbear44@netscape.net} - -\item Chris McAloon sent in several corrections to Sections 3.9 and -3.10. - -%He can be reached at: {\tt cmcaloon@ou.edu} - -\item Matthew J. Moelter has been a long-time contributor who sent -in numerous corrections and suggestions to the book. - -%He can be reached at: -%{\tt mmoelter@calpoly.edu} - -\item Simon Dicon Montford reported a missing function definition and -several typos in Chapter 3. He also found errors in the {\tt increment} -function in Chapter 13. - -%He can be reached at: {\tt dicon@bigfoot.com} - -\item John Ouzts corrected the definition of ``return value" -in Chapter 3. - -%He can be reached at: {\tt jouzts@bigfoot.com} - -\item Kevin Parks sent in valuable comments and suggestions as to how -to improve the distribution of the book. - -%He can be reached at: {\tt cpsoct@lycos.com} - -\item David Pool sent in a typo in the glossary of Chapter 1, as well -as kind words of encouragement. - -%He can be reached at: {\tt pooldavid@hotmail.com} - -\item Michael Schmitt sent in a correction to the chapter on files -and exceptions. - -%He can be reached at: {\tt ipv6\_128@yahoo.com} - -\item Robin Shaw pointed out an error in Section 13.1, where the -printTime function was used in an example without being defined. - -%Robin can be reached at: {\tt randj@iowatelecom.net} - -\item Paul Sleigh found an error in Chapter 7 and a bug in Jonah Cohen's -Perl script that generates HTML from LaTeX. - -%He can be reached at: {\tt bat@atdot.dotat.org} - -%\item Christopher Smith is a computer science teacher at the Blake -%School in Minnesota who teaches Python to his beginning students. - -%He can be reached at: {\tt csmith@blakeschool.org or smiles@saysomething.com} - -\item Craig T. Snydal is testing the text in a course at Drew -University. He has contributed several valuable suggestions and corrections. - -%and can be reached at: {\tt csnydal@drew.edu} - -\item Ian Thomas and his students are using the text in a programming -course. They are the first ones to test the chapters in the latter half -of the book, and they have made numerous corrections and suggestions. - -%Ian can be reached at: {\tt ithomas@sd70.bc.ca} - -\item Keith Verheyden sent in a correction in Chapter 3. - -%He can be reached at: {\tt kverheyd@glam.ac.uk} - -\item Peter Winstanley let us know about a longstanding error in -our Latin in Chapter 3. - -%He can be reached at:{\tt Peter.Winstanley@scotland.gsi.gov.uk} - -\item Chris Wrobel made corrections to the code in the chapter on -file I/O and exceptions. - -%He can be reached at: {\tt ferz980@yahoo.com} - -\item Moshe Zadka has made invaluable contributions to this project. -In addition to writing the first draft of the chapter on Dictionaries, he -provided continual guidance in the early stages of the book. - -%He can be reached at: {\tt moshez@math.huji.ac.il} - -\item Christoph Zwerschke sent several corrections and -pedagogic suggestions, and explained the difference between {\em gleich} -and {\em selbe}. - -\item James Mayer sent us a whole slew of spelling and -typographical errors, including two in the contributor list. - -% james.mayer@acm.org - -\item Hayden McAfee caught a potentially confusing inconsistency -between two examples. -%hayden.mcafee@mindspring.com - -\item Angel Arnal is part of an international team of translators -working on the Spanish version of the text. He has also found several -errors in the English version. - -\item Tauhidul Hoque and Lex Berezhny created the illustrations -in Chapter 1 and improved many of the other illustrations. - -\item Dr. Michele Alzetta caught an error in Chapter 8 and sent -some interesting pedagogic comments and suggestions about Fibonacci -and Old Maid. -%mikalzet@libero.it - -\item Andy Mitchell caught a typo in Chapter 1 and a broken example -in Chapter 2. -%phantom917@hotmail.com - -\item Kalin Harvey suggested a clarification in Chapter 7 and -caught some typos. -%kalin@metamuscle.net - -\item Christopher P. Smith caught several typos and is helping us -prepare to update the book for Python 2.2. -%csmith@blakeschool.org - -\item David Hutchins caught a typo in the Foreword. -%jsdah2@uas.alaska.edu - -\item Gregor Lingl is teaching Python at a high school in Vienna, -Austria. He is working on a German translation of the book, -and he caught a couple of bad errors in Chapter 5. -%glingl@aon.at - -%Sean McShane sent us a very nice note -%sean.mcshane@sheridanc.on.ca - -\item Julie Peters caught a typo in the Preface. -%jkpeters@dmacc.cc.ia.us - -\item Florin Oprina sent in an improvement in {\tt makeTime}, -a correction in {\tt printTime}, and a nice typo. -%oprina@student.uit.no - -\item D.~J.~Webre suggested a clarification in Chapter 3. -%d_webre@yahoo.com - -% \item -% jkane@broadlink.com - -\item Ken found a fistful of errors in Chapters 8, 9 and 11. -%ken@codeweavers.com - -\item Ivo Wever caught a typo in Chapter 5 and suggested a clarification -in Chapter 3. -% I.J.W.Wever@student.tnw.tudelft.nl - -% rbeumer@knijnenberg.nl - -\item Curtis Yanko suggested a clarification in Chapter 2. -% YankoC@gspinc.com - -\item Ben Logan sent in a number of typos and problems with translating -the book into HTML. -%ben@wblogan.net - -%\item XXX suggested a clarification in Chapter 7, but prefers not -% to be included here. -%ejykfy@comcast.net - -%\item Florian Thiel caught an inconsistency in Chapter 2. -%noroute@web.de - -\item Jason Armstrong saw the missing word in Chapter 2. -%jarmstrong@technicacorp.com - -\item Louis Cordier noticed a spot in Chapter 16 where the code -didn't match the text. -% lcordier@dsp.sun.ac.za - -\item Brian Cain suggested several clarifications in Chapters 2 and 3. -% Brian.Cain@motorola.com - -\item Rob Black sent in a passel of corrections, including some -changes for Python 2.2. -% Rob.Black@static2358.com - -\item Jean-Philippe Rey at Ecole Centrale -Paris sent a number of patches, including some updates for Python 2.2 -and other thoughtful improvements. -% - -\item Jason Mader at George Washington University made a number -of useful suggestions and corrections. -%Jason Mader - -\item Jan Gundtofte-Bruun reminded us that ``a error'' is an error. -% Jan Gundtofte-Bruun - -\item Abel David and Alexis Dinno reminded us that the plural of -``matrix'' is ``matrices'', not ``matrixes''. This error was in the -book for years, but two readers with the same initials reported it on -the same day. Weird. -% Abel David , lexy-lou@doyenne.com - -\item Charles Thayer encouraged us to get rid of the semi-colons -we had put at the ends of some statements and to clean up our -use of ``argument'' and ``parameter''. -% Charles Thayer - -\item Roger Sperberg pointed out a twisted piece of logic in Chapter 3. -% - -\item Sam Bull pointed out a confusing paragraph in Chapter 2. -%Sam Bull - -\item Andrew Cheung pointed out two instances of ``use before def.'' -%cheunga@u.washington.edu - -\item Hans Batra found an error in Chapter 16. - -\item Chris Seberino suggested some improvements in the Preface. - -\item Yuri Takhteyev pointed out a problem with single and double quotes. - -\end{itemize} - - -% correspondents - -% Python version - -% Sam -% "sgasster@muon.com" -% suggestions about syntax glossary - -% James Pomeroy -% moodykre8r@earthlink.net -% suggestion about PEMDAS - -% Joel Jensen << joel@ens.net >> -% translated the book into MS html - - -% Gregg Boggs -% correction to Pythagorean theorem - -% John P. Withers -% jp_withers@yahoo.com -% question about latex - -% Michael Brownfield -% mmc81@airmail.net -% general kind words - -% wolfgang teschner -% wtr@hannover.sgh-net.de -% general kind words - -% Jeff -% jca@po.cwru.edu -% problem with pdf, and nice comments - -% d_webre@yahoo.com -% confusing comment about calculation of pi - -% Michael Wheatfill -% mwheatfill@tse-us.com -% general good comments and question about histograms - -% Java version - -% Vladimir -% "pisemsky@pisem.net" -% general praise - -% Yong -% ybakos69@yahoo.com" -% clarification of interface and abstract class - - - - - diff --git a/sciphi/data/stock_raw/learning_with_python/fdl.tex b/sciphi/data/stock_raw/learning_with_python/fdl.tex deleted file mode 100644 index d711b18..0000000 --- a/sciphi/data/stock_raw/learning_with_python/fdl.tex +++ /dev/null @@ -1,366 +0,0 @@ -% fdl.tex -% This file is a chapter. It must be included in a larger document to work -% properly. - -\chapter{GNU Free Documentation License} - -Version 1.1, March 2000\\ - - Copyright $\copyright$ 2000 Free Software Foundation, Inc.\\ - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\\ - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -\section*{Preamble} - -The purpose of this License is to make a manual, textbook, or other -written document ``free'' in the sense of freedom: to assure everyone -the effective freedom to copy and redistribute it, with or without -modifying it, either commercially or noncommercially. Secondarily, -this License preserves for the author and publisher a way to get -credit for their work, while not being considered responsible for -modifications made by others. - -This License is a kind of ``copyleft,'' which means that derivative -works of the document must themselves be free in the same sense. It -complements the GNU General Public License, which is a copyleft -license designed for free software. - -We have designed this License in order to use it for manuals for free -software, because free software needs free documentation: a free -program should come with manuals providing the same freedoms that the -software does. But this License is not limited to software manuals; -it can be used for any textual work, regardless of subject matter or -whether it is published as a printed book. We recommend this License -principally for works whose purpose is instruction or reference. - -\section{Applicability and Definitions} - -This License applies to any manual or other work that contains a -notice placed by the copyright holder saying it can be distributed -under the terms of this License. The ``Document,'' below, refers to any -such manual or work. Any member of the public is a licensee, and is -addressed as ``you.'' - -A ``Modified Version'' of the Document means any work containing the -Document or a portion of it, either copied verbatim, or with -modifications and/or translated into another language. - -A ``Secondary Section'' is a named appendix or a front-matter section of -the Document that deals exclusively with the relationship of the -publishers or authors of the Document to the Document's overall subject -(or to related matters) and contains nothing that could fall directly -within that overall subject. (For example, if the Document is in part a -textbook of mathematics, a Secondary Section may not explain any -mathematics.) The relationship could be a matter of historical -connection with the subject or with related matters, or of legal, -commercial, philosophical, ethical, or political position regarding -them. - -The ``Invariant Sections'' are certain Secondary Sections whose titles -are designated, as being those of Invariant Sections, in the notice -that says that the Document is released under this License. - -The ``Cover Texts'' are certain short passages of text that are listed, -as Front-Cover Texts or Back-Cover Texts, in the notice that says that -the Document is released under this License. - -A ``Transparent'' copy of the Document means a machine-readable copy, -represented in a format whose specification is available to the -general public, whose contents can be viewed and edited directly and -straightforwardly with generic text editors or (for images composed of -pixels) generic paint programs or (for drawings) some widely available -drawing editor, and that is suitable for input to text formatters or -for automatic translation to a variety of formats suitable for input -to text formatters. A copy made in an otherwise Transparent file -format whose markup has been designed to thwart or discourage -subsequent modification by readers is not Transparent. A copy that is -not ``Transparent'' is called ``Opaque.'' - -Examples of suitable formats for Transparent copies include plain -ASCII without markup, Texinfo input format, \LaTeX~input format, SGML -or XML using a publicly available DTD, and standard-conforming simple -HTML designed for human modification. Opaque formats include -PostScript, PDF, proprietary formats that can be read and edited only -by proprietary word processors, SGML or XML for which the DTD and/or -processing tools are not generally available, and the -machine-generated HTML produced by some word processors for output -purposes only. - -The ``Title Page'' means, for a printed book, the title page itself, -plus such following pages as are needed to hold, legibly, the material -this License requires to appear in the title page. For works in -formats which do not have any title page as such, ``Title Page'' means -the text near the most prominent appearance of the work's title, -preceding the beginning of the body of the text. - - -\section{Verbatim Copying} - -You may copy and distribute the Document in any medium, either -commercially or noncommercially, provided that this License, the -copyright notices, and the license notice saying this License applies -to the Document are reproduced in all copies, and that you add no other -conditions whatsoever to those of this License. You may not use -technical measures to obstruct or control the reading or further -copying of the copies you make or distribute. However, you may accept -compensation in exchange for copies. If you distribute a large enough -number of copies you must also follow the conditions in Section 3. - -You may also lend copies, under the same conditions stated above, and -you may publicly display copies. - - -\section{Copying in Quantity} - -If you publish printed copies of the Document numbering more than 100, -and the Document's license notice requires Cover Texts, you must enclose -the copies in covers that carry, clearly and legibly, all these Cover -Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on -the back cover. Both covers must also clearly and legibly identify -you as the publisher of these copies. The front cover must present -the full title with all words of the title equally prominent and -visible. You may add other material on the covers in addition. -Copying with changes limited to the covers, as long as they preserve -the title of the Document and satisfy these conditions, can be treated -as verbatim copying in other respects. - -If the required texts for either cover are too voluminous to fit -legibly, you should put the first ones listed (as many as fit -reasonably) on the actual cover, and continue the rest onto adjacent -pages. - -If you publish or distribute Opaque copies of the Document numbering -more than 100, you must either include a machine-readable Transparent -copy along with each Opaque copy, or state in or with each Opaque copy -a publicly accessible computer-network location containing a complete -Transparent copy of the Document, free of added material, which the -general network-using public has access to download anonymously at no -charge using public-standard network protocols. If you use the latter -option, you must take reasonably prudent steps, when you begin -distribution of Opaque copies in quantity, to ensure that this -Transparent copy will remain thus accessible at the stated location -until at least one year after the last time you distribute an Opaque -copy (directly or through your agents or retailers) of that edition to -the public. - -It is requested, but not required, that you contact the authors of the -Document well before redistributing any large number of copies, to give -them a chance to provide you with an updated version of the Document. - - -\section{Modifications} - -You may copy and distribute a Modified Version of the Document under -the conditions of Sections 2 and 3 above, provided that you release -the Modified Version under precisely this License, with the Modified -Version filling the role of the Document, thus licensing distribution -and modification of the Modified Version to whoever possesses a copy -of it. In addition, you must do these things in the Modified Version: - -\begin{itemize} - -\item Use in the Title Page (and on the covers, if any) a title distinct - from that of the Document, and from those of previous versions - (which should, if there were any, be listed in the History section - of the Document). You may use the same title as a previous version - if the original publisher of that version gives permission. -\item List on the Title Page, as authors, one or more persons or entities - responsible for authorship of the modifications in the Modified - Version, together with at least five of the principal authors of the - Document (all of its principal authors, if it has less than five). -\item State on the Title page the name of the publisher of the - Modified Version, as the publisher. -\item Preserve all the copyright notices of the Document. -\item Add an appropriate copyright notice for your modifications - adjacent to the other copyright notices. -\item Include, immediately after the copyright notices, a license notice - giving the public permission to use the Modified Version under the - terms of this License, in the form shown in the Addendum below. -\item Preserve in that license notice the full lists of Invariant Sections - and required Cover Texts given in the Document's license notice. -\item Include an unaltered copy of this License. -\item Preserve the section entitled ``History,'' and its title, and add to - it an item stating at least the title, year, new authors, and - publisher of the Modified Version as given on the Title Page. If - there is no section entitled ``History'' in the Document, create one - stating the title, year, authors, and publisher of the Document as - given on its Title Page, then add an item describing the Modified - Version as stated in the previous sentence. -\item Preserve the network location, if any, given in the Document for - public access to a Transparent copy of the Document, and likewise - the network locations given in the Document for previous versions - it was based on. These may be placed in the ``History'' section. - You may omit a network location for a work that was published at - least four years before the Document itself, or if the original - publisher of the version it refers to gives permission. -\item In any section entitled ``Acknowledgements'' or ``Dedications,'' - preserve the section's title, and preserve in the section all the - substance and tone of each of the contributor acknowledgements - and/or dedications given therein. -\item Preserve all the Invariant Sections of the Document, - unaltered in their text and in their titles. Section numbers - or the equivalent are not considered part of the section titles. -\item Delete any section entitled ``Endorsements.'' Such a section - may not be included in the Modified Version. -\item Do not retitle any existing section as ``Endorsements'' - or to conflict in title with any Invariant Section. - -\end{itemize} - -If the Modified Version includes new front-matter sections or -appendices that qualify as Secondary Sections and contain no material -copied from the Document, you may at your option designate some or all -of these sections as invariant. To do this, add their titles to the -list of Invariant Sections in the Modified Version's license notice. -These titles must be distinct from any other section titles. - -You may add a section entitled ``Endorsements,'' provided it contains -nothing but endorsements of your Modified Version by various -parties---for example, statements of peer review or that the text has -been approved by an organization as the authoritative definition of a -standard. - -You may add a passage of up to five words as a Front-Cover Text, and a -passage of up to 25 words as a Back-Cover Text, to the end of the list -of Cover Texts in the Modified Version. Only one passage of -Front-Cover Text and one of Back-Cover Text may be added by (or -through arrangements made by) any one entity. If the Document already -includes a cover text for the same cover, previously added by you or -by arrangement made by the same entity you are acting on behalf of, -you may not add another; but you may replace the old one, on explicit -permission from the previous publisher that added the old one. - -The author(s) and publisher(s) of the Document do not by this License -give permission to use their names for publicity for or to assert or -imply endorsement of any Modified Version. - - -\section{Combining Documents} - -You may combine the Document with other documents released under this -License, under the terms defined in Section 4 above for modified -versions, provided that you include in the combination all of the -Invariant Sections of all of the original documents, unmodified, and -list them all as Invariant Sections of your combined work in its -license notice. - -The combined work need only contain one copy of this License, and -multiple identical Invariant Sections may be replaced with a single -copy. If there are multiple Invariant Sections with the same name but -different contents, make the title of each such section unique by -adding at the end of it, in parentheses, the name of the original -author or publisher of that section if known, or else a unique number. -Make the same adjustment to the section titles in the list of -Invariant Sections in the license notice of the combined work. - -In the combination, you must combine any sections entitled ``History'' -in the various original documents, forming one section entitled -``History''; likewise combine any sections entitled ``Acknowledgements,'' -and any sections entitled ``Dedications.'' You must delete all sections -entitled ``Endorsements.'' - - -\section{Collections of Documents} - -You may make a collection consisting of the Document and other documents -released under this License, and replace the individual copies of this -License in the various documents with a single copy that is included in -the collection, provided that you follow the rules of this License for -verbatim copying of each of the documents in all other respects. - -You may extract a single document from such a collection, and distribute -it individually under this License, provided you insert a copy of this -License into the extracted document, and follow this License in all -other respects regarding verbatim copying of that document. - - - -\section{Aggregation with Independent Works} - -A compilation of the Document or its derivatives with other separate -and independent documents or works, in or on a volume of a storage or -distribution medium, does not as a whole count as a Modified Version -of the Document, provided no compilation copyright is claimed for the -compilation. Such a compilation is called an ``aggregate,'' and this -License does not apply to the other self-contained works thus compiled -with the Document, on account of their being thus compiled, if they -are not themselves derivative works of the Document. - -If the Cover Text requirement of Section 3 is applicable to these -copies of the Document, then if the Document is less than one quarter -of the entire aggregate, the Document's Cover Texts may be placed on -covers that surround only the Document within the aggregate. -Otherwise they must appear on covers around the whole aggregate. - - -\section{Translation} - -Translation is considered a kind of modification, so you may -distribute translations of the Document under the terms of Section 4. -Replacing Invariant Sections with translations requires special -permission from their copyright holders, but you may include -translations of some or all Invariant Sections in addition to the -original versions of these Invariant Sections. You may include a -translation of this License provided that you also include the -original English version of this License. In case of a disagreement -between the translation and the original English version of this -License, the original English version will prevail. - - -\section{Termination} - -You may not copy, modify, sublicense, or distribute the Document except -as expressly provided for under this License. Any other attempt to -copy, modify, sublicense, or distribute the Document is void, and will -automatically terminate your rights under this License. However, -parties who have received copies, or rights, from you under this -License will not have their licenses terminated so long as such -parties remain in full compliance. - - -\section{Future Revisions of This License} - -The Free Software Foundation may publish new, revised versions -of the GNU Free Documentation License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. See -http:///www.gnu.org/copyleft/. - -Each version of the License is given a distinguishing version number. -If the Document specifies that a particular numbered version of this -License "or any later version" applies to it, you have the option of -following the terms and conditions either of that specified version or -of any later version that has been published (not as a draft) by the -Free Software Foundation. If the Document does not specify a version -number of this License, you may choose any version ever published (not -as a draft) by the Free Software Foundation. - -\section{Addendum: How to Use This License for Your Documents} - -To use this License in a document you have written, include a copy of -the License in the document and put the following copyright and -license notices just after the title page: - -\begin{quote} - - Copyright $\copyright$ YEAR YOUR NAME. - Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU Free Documentation License, Version 1.1 - or any later version published by the Free Software Foundation; - with the Invariant Sections being LIST THEIR TITLES, with the - Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. - A copy of the license is included in the section entitled ``GNU - Free Documentation License.'' - -\end{quote} - -If you have no Invariant Sections, write ``with no Invariant Sections'' -instead of saying which ones are invariant. If you have no -Front-Cover Texts, write ``no Front-Cover Texts'' instead of -``Front-Cover Texts being LIST''; likewise for Back-Cover Texts. - -If your document contains nontrivial examples of program code, we -recommend releasing these examples in parallel under your choice of -free software license, such as the GNU General Public License, -to permit their use in free software. \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/figs.tex b/sciphi/data/stock_raw/learning_with_python/figs.tex deleted file mode 100644 index 124245f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/figs.tex +++ /dev/null @@ -1,144 +0,0 @@ -illustrations/assign2.eps - -\centerline{\psfig{figure=illustrations/assign2.eps}} - -illustrations/banana.eps - -\centerline{\psfig{figure=illustrations/banana.eps}} - -illustrations/compile.eps - -\centerline{\psfig{figure=illustrations/compile.eps}} - -illustrations/fibonacci.eps - -\centerline{\psfig{figure=illustrations/fibonacci.eps}} - -illustrations/interpret.eps - -\centerline{\psfig{figure=illustrations/interpret.eps}} - -illustrations/link1.eps - -\centerline{\psfig{figure=illustrations/link1.eps}} - -illustrations/link2.eps - -\centerline{\psfig{figure=illustrations/link2.eps}} - -illustrations/link3.eps - -\centerline{\psfig{figure=illustrations/link3.eps}} - -illustrations/link4.eps - -\centerline{\psfig{figure=illustrations/link4.eps}} - -illustrations/link5.eps - -\centerline{\psfig{figure=illustrations/link5.eps}} - -illustrations/list1.eps - -\centerline{\psfig{figure=illustrations/list1.eps}} - -illustrations/list2.eps - -\centerline{\psfig{figure=illustrations/list2.eps}} - -illustrations/list3.eps - -\centerline{\psfig{figure=illustrations/list3.eps}} - -illustrations/list4.eps - -%\centerline{\psfig{figure=illustrations/list4.eps}} - -illustrations/list5.eps - -%\centerline{\psfig{figure=illustrations/list5.eps}} - -illustrations/matrix.eps - -\centerline{\psfig{figure=illustrations/matrix.eps}} - -illustrations/point.eps - -\centerline{\psfig{figure=illustrations/point.eps}} - -illustrations/queue1.eps - -\centerline{\psfig{figure=illustrations/queue1.eps}} - -illustrations/queue2.eps - -%\centerline{\psfig{figure=illustrations/queue2.eps}} - -illustrations/queue3.eps - -%\centerline{\psfig{figure=illustrations/queue3.eps}} - -illustrations/queue4.eps - -%\centerline{\psfig{figure=illustrations/queue4.eps}} - -illustrations/queue5.eps - -%\centerline{\psfig{figure=illustrations/queue5.eps}} - -illustrations/rectangle2.eps - -\centerline{\psfig{figure=illustrations/rectangle2.eps}} - -illustrations/rectangle.eps - -\centerline{\psfig{figure=illustrations/rectangle.eps}} - -illustrations/sparse.eps - -\centerline{\psfig{figure=illustrations/sparse.eps}} - -illustrations/stack2.eps - -\centerline{\psfig{figure=illustrations/stack2.eps}} - -illustrations/stack3.eps - -\centerline{\psfig{figure=illustrations/stack3.eps}} - -illustrations/stack4.eps - -\centerline{\psfig{figure=illustrations/stack4.eps}} - -illustrations/stack.eps - -\centerline{\psfig{figure=illustrations/stack.eps}} - -illustrations/state.eps - -\centerline{\psfig{figure=illustrations/state.eps}} - -illustrations/time.eps - -\centerline{\psfig{figure=illustrations/time.eps}} - -illustrations/tree1.eps - -\centerline{\psfig{figure=illustrations/tree1.eps}} - -illustrations/tree2.eps - -\centerline{\psfig{figure=illustrations/tree2.eps}} - -illustrations/tree3.eps - -%\centerline{\psfig{figure=illustrations/tree3.eps}} - -illustrations/tree4.eps - -\centerline{\psfig{figure=illustrations/tree4.eps}} - -illustrations/treeadt.eps - -%\centerline{\psfig{figure=illustrations/treeadt.eps}} - diff --git a/sciphi/data/stock_raw/learning_with_python/figures.tex b/sciphi/data/stock_raw/learning_with_python/figures.tex deleted file mode 100644 index c4d57dd..0000000 --- a/sciphi/data/stock_raw/learning_with_python/figures.tex +++ /dev/null @@ -1,23 +0,0 @@ -\documentclass[b5paper,draft]{book} -\usepackage{psfig} -\usepackage{makeidx} -\pssilent - -\renewcommand\MakeUppercase{} - -\sloppy -\setlength{\topmargin}{-0.375in} -\setlength{\headsep}{0.25in} -\setlength{\textheight}{7.25in} -\setlength{\oddsidemargin}{0.0in} -\setlength{\evensidemargin}{0.0in} - -\setlength{\parindent}{0.0in} -\setlength{\parskip}{1.5ex plus 0.5ex minus 0.5ex} -\makeindex - -\begin{document} - -\include{figs} - -\end{document} diff --git a/sciphi/data/stock_raw/learning_with_python/foreword.tex b/sciphi/data/stock_raw/learning_with_python/foreword.tex deleted file mode 100644 index 453805f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/foreword.tex +++ /dev/null @@ -1,91 +0,0 @@ - -\chapter{Foreword} - -By David Beazley - -As an educator, researcher, and book author, I am delighted to see the -completion of this book. Python is a fun and extremely easy-to-use -programming language that has steadily gained in popularity over the -last few years. Developed over ten years ago by Guido van Rossum, -Python's simple syntax and overall feel is largely derived from ABC, a -teaching language that was developed in the 1980's. However, Python -was also created to solve real problems and it borrows a wide variety -of features from programming languages such as C++, Java, Modula-3, -and Scheme. Because of this, one of Python's most remarkable features -is its broad appeal to professional software developers, scientists, -researchers, artists, and educators. - -Despite Python's appeal to many different communities, you may still -wonder ``why Python?'' or ``why teach programming with Python?'' -Answering these questions is no simple task---especially when popular -opinion is on the side of more masochistic alternatives such -as C++ and Java. However, I think the most direct answer is that -programming in Python is simply a lot of fun and more productive. - -When I teach computer science courses, I want to cover important -concepts in addition to making the material interesting and engaging -to students. Unfortunately, there is a tendency for introductory -programming courses to focus far too much attention on mathematical -abstraction and for students to become frustrated with annoying -problems related to low-level details of syntax, compilation, and the -enforcement of seemingly arcane rules. Although such abstraction and -formalism is important to professional software engineers and students -who plan to continue their study of computer science, taking such an -approach in an introductory course mostly succeeds in making computer -science boring. When I teach a course, I don't want to have a room of -uninspired students. I would much rather see them trying to solve -interesting problems by exploring different ideas, taking -unconventional approaches, breaking the rules, and learning from their -mistakes. In doing so, I don't want to waste half of the semester -trying to sort out obscure syntax problems, unintelligible compiler -error messages, or the several hundred ways that a program might -generate a general protection fault. - -One of the reasons why I like Python is that it provides a really nice -balance between the practical and the conceptual. Since Python is -interpreted, beginners can pick up the language and start doing -neat things almost immediately without getting lost in the problems of -compilation and linking. Furthermore, Python comes with a large -library of modules that can be used to do all sorts of tasks ranging -from web-programming to graphics. Having such a practical focus is a -great way to engage students and it allows them to complete -significant projects. However, Python can also serve as an excellent -foundation for introducing important computer science concepts. Since -Python fully supports procedures and classes, students can be -gradually introduced to topics such as procedural abstraction, data -structures, and object-oriented programming---all of which are -applicable to later courses on Java or C++. Python even borrows a -number of features from functional programming languages and can be -used to introduce concepts that would be covered in more detail in -courses on Scheme and Lisp. - -In reading Jeffrey's preface, I am struck by his comments that Python -allowed him to see a ``higher level of success and a lower level of -frustration'' and that he was able to ``move faster with better -results.'' Although these comments refer to his introductory course, I -sometimes use Python for these exact same reasons in advanced graduate -level computer science courses at the University of Chicago. In these -courses, I am constantly faced with the daunting task of covering a -lot of difficult course material in a blistering nine week quarter. -Although it is certainly possible for me to inflict a lot of pain and -suffering by using a language like C++, I have often found this -approach to be counterproductive---especially when the course is about -a topic unrelated to just ``programming.'' I find that using Python -allows me to better focus on the actual topic at hand while allowing -students to complete substantial class projects. - -Although Python is still a young and evolving language, I believe that -it has a bright future in education. This book is an important step in -that direction. - -\vspace{0.25in} -\begin{flushleft} -David Beazley \\ -University of Chicago \\ -Author of the {\em Python Essential Reference} \\ -\end{flushleft} - - - - - diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.eps deleted file mode 100644 index 9e46bb0..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.eps +++ /dev/null @@ -1,126 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: assign2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 10:52:44 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 79 43 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 43 moveto 0 0 lineto 79 0 lineto 79 43 lineto closepath clip newpath --129.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 2175 975 m 3450 975 l 3450 1650 l 2175 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3139 1500 m 3158 1443 l 3015 1394 l 3119 1462 l 2995 1451 l cp -eoclip -n 2760 1339 m - 3135 1467 l gs col0 s gr gr - -% arrowhead -n 2995 1451 m 3119 1462 l 3015 1394 l col0 s -% Polyline - [15 45] 45 sd -n 2766 1271 m - 3141 1174 l gs col0 s gr [] 0 sd -% Polyline -n 3075 1080 m - 3300 1230 l gs col0 s gr -% Polyline -n 3300 1080 m - 3075 1230 l gs col0 s gr -/Helvetica ff 165.00 scf sf -3150 1530 m -gs 1 -1 sc (7) col0 sh gr -/Helvetica ff 165.00 scf sf -3150 1230 m -gs 1 -1 sc (5) col0 sh gr -/Helvetica ff 165.00 scf sf -2730 1340 m -gs 1 -1 sc (bruce) dup sw pop neg 0 rm col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.fig deleted file mode 100644 index df54f87..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.fig +++ /dev/null @@ -1,25 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2325 1080 3300 1530 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2760 1339 3135 1467 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 2766 1271 3141 1174 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 2 - 3075 1080 3300 1230 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 2 - 3300 1080 3075 1230 -4 0 0 50 0 16 11 0.0000 4 120 90 3150 1530 7\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3150 1230 5\001 -4 2 0 50 0 16 11 0.0000 4 120 375 2730 1340 bruce\001 --6 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2175 975 3450 975 3450 1650 2175 1650 2175 975 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.png deleted file mode 100644 index f3bf9bf..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/assign2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/banana.eps deleted file mode 100644 index 31ee9f5..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.eps +++ /dev/null @@ -1,186 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: banana.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 7 16:48:33 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 196 51 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 51 moveto 0 0 lineto 196 0 lineto 196 51 lineto closepath clip newpath --93.0 99.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1575 825 m 4800 825 l 4800 1350 l 1575 1350 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1110 m 2490 1050 l 2338 1050 l 2458 1080 l 2338 1110 l cp -eoclip -n 2100 1080 m - 2475 1080 l gs col0 s gr gr - -% arrowhead -n 2338 1110 m 2458 1080 l 2338 1050 l col0 s -% Polyline - [15 45] 45 sd -n 2700 825 m - 2700 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 3000 825 m - 3000 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 3300 825 m - 3300 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 3600 825 m - 3600 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 3900 825 m - 3900 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 4200 825 m - 4200 1500 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 4500 825 m - 4500 1500 l gs col0 s gr [] 0 sd -/Helvetica ff 165.00 scf sf -2025 1125 m -gs 1 -1 sc (fruit) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 330.00 scf sf -2550 1200 m -gs 1 -1 sc (") col0 sh gr -/Helvetica ff 330.00 scf sf -2775 1200 m -gs 1 -1 sc (b) col0 sh gr -/Helvetica ff 330.00 scf sf -3075 1200 m -gs 1 -1 sc (a) col0 sh gr -/Helvetica ff 330.00 scf sf -3375 1200 m -gs 1 -1 sc (n) col0 sh gr -/Helvetica ff 330.00 scf sf -3975 1200 m -gs 1 -1 sc (n) col0 sh gr -/Helvetica ff 330.00 scf sf -3675 1200 m -gs 1 -1 sc (a) col0 sh gr -/Helvetica ff 330.00 scf sf -4275 1200 m -gs 1 -1 sc (a) col0 sh gr -/Helvetica ff 330.00 scf sf -4575 1200 m -gs 1 -1 sc (") col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1650 m -gs 1 -1 sc (0) col0 sh gr -/Helvetica ff 165.00 scf sf -2925 1650 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 1650 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3525 1650 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -3825 1650 m -gs 1 -1 sc (4) col0 sh gr -/Helvetica ff 165.00 scf sf -4125 1650 m -gs 1 -1 sc (5) col0 sh gr -/Helvetica ff 165.00 scf sf -4425 1650 m -gs 1 -1 sc (6) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1650 m -gs 1 -1 sc (index) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/banana.fig deleted file mode 100644 index 0dd18e5..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.fig +++ /dev/null @@ -1,45 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1080 2475 1080 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 2700 825 2700 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3000 825 3000 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3300 825 3300 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3600 825 3600 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3900 825 3900 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 4200 825 4200 1500 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 4500 825 4500 1500 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1575 825 4800 825 4800 1350 1575 1350 1575 825 -4 2 0 50 0 16 11 0.0000 4 120 285 2025 1125 fruit\001 -4 0 0 50 0 16 22 0.0000 4 105 90 2550 1200 "\001 -4 0 0 50 0 16 22 0.0000 4 255 195 2775 1200 b\001 -4 0 0 50 0 16 22 0.0000 4 180 165 3075 1200 a\001 -4 0 0 50 0 16 22 0.0000 4 180 180 3375 1200 n\001 -4 0 0 50 0 16 22 0.0000 4 180 180 3975 1200 n\001 -4 0 0 50 0 16 22 0.0000 4 180 165 3675 1200 a\001 -4 0 0 50 0 16 22 0.0000 4 180 165 4275 1200 a\001 -4 0 0 50 0 16 22 0.0000 4 105 90 4575 1200 "\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1650 0\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2925 1650 1\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3225 1650 2\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3525 1650 3\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3825 1650 4\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4125 1650 5\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4425 1650 6\001 -4 0 0 50 0 16 11 0.0000 4 120 375 2025 1650 index\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.png b/sciphi/data/stock_raw/learning_with_python/illustrations/banana.png deleted file mode 100644 index 048d36d..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/banana.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/compile.eps deleted file mode 100644 index f5dfd9f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.eps +++ /dev/null @@ -1,200 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: compile.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 7 16:23:32 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 386 62 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 62 moveto 0 0 lineto 386 0 lineto 386 62 lineto closepath clip newpath --2.0 87.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -15.000 slw -n 3936 655 m 3840 548 l 3840 915 l - 3936 813 l gs col0 s gr -% Polyline -n 1304 647 m 1207 540 l 1207 907 l - 1304 805 l gs col0 s gr -% Polyline -n 5694 1296 m 6151 1296 l 6151 1356 l 5694 1356 l - cp gs col0 s gr -% Polyline -n 5598 1357 m 6259 1357 l 6259 1412 l 5598 1412 l - cp gs col0 s gr -% Polyline -n 5413 463 m 6437 463 l 6437 1296 l 5413 1296 l - cp gs col7 1.00 shd ef gr gs col0 s gr -% Polyline -7.500 slw -n 5467 519 m 6381 519 l 6381 1237 l 5467 1237 l - cp gs col7 1.00 shd ef gr gs col0 s gr -/Helvetica ff 165.00 scf sf -5588 953 m -gs 1 -1 sc (OUTPUT) col0 sh gr -% Polyline -gs clippath -3869 795 m 3869 705 l 3657 705 l 3837 750 l 3657 795 l cp -eoclip -n 3525 750 m - 3854 750 l gs col0 s gr gr - -% arrowhead -n 3657 795 m 3837 750 l 3657 705 l col0 s -% Polyline -15.000 slw -n 5002 1248 m 5100 1350 l 5100 984 l - 5002 1089 l gs col0 s gr -% Polyline -7.500 slw -gs clippath -5444 1170 m 5444 1080 l 5232 1080 l 5412 1125 l 5232 1170 l cp -eoclip -n 5100 1125 m - 5429 1125 l gs col0 s gr gr - -% arrowhead -n 5232 1170 m 5412 1125 l 5232 1080 l col0 s -% Polyline -15.000 slw -n 3936 548 m 5010 548 l 5010 1342 l 3936 1342 l - cp gs col0 s gr -% Polyline -n 2700 525 m 3525 525 l 3525 1350 l 2700 1350 l - cp gs col0 s gr -% Polyline -7.500 slw -gs clippath -1236 787 m 1236 697 l 1024 697 l 1204 742 l 1024 787 l cp -eoclip -n 892 742 m - 1221 742 l gs col0 s gr gr - -% arrowhead -n 1024 787 m 1204 742 l 1024 697 l col0 s -% Polyline -15.000 slw -n 67 442 m 742 442 l 892 592 l 892 1342 l 67 1342 l - 67 442 l cp gs col0 s gr -% Polyline -7.500 slw -n 742 442 m 742 592 l - 892 592 l gs col0 s gr -% Polyline -15.000 slw -n 1304 540 m 2274 540 l 2274 1327 l 1304 1327 l - cp gs col0 s gr -% Polyline -n 2274 1225 m 2371 1327 l 2371 961 l - 2274 1066 l gs col0 s gr -% Polyline -7.500 slw -gs clippath -2721 1162 m 2721 1072 l 2509 1072 l 2689 1117 l 2509 1162 l cp -eoclip -n 2377 1117 m - 2706 1117 l gs col0 s gr gr - -% arrowhead -n 2509 1162 m 2689 1117 l 2509 1072 l col0 s -/Helvetica ff 165.00 scf sf -2775 1125 m -gs 1 -1 sc (CODE) col0 sh gr -/Helvetica ff 165.00 scf sf -2775 900 m -gs 1 -1 sc (OBJECT) col0 sh gr -/Helvetica ff 165.00 scf sf -4005 975 m -gs 1 -1 sc (EXECUTOR) col0 sh gr -/Helvetica ff 165.00 scf sf -142 1117 m -gs 1 -1 sc (CODE) col0 sh gr -/Helvetica ff 165.00 scf sf -142 892 m -gs 1 -1 sc (SOURCE) col0 sh gr -/Helvetica ff 165.00 scf sf -1342 967 m -gs 1 -1 sc (COMPILER) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/compile.fig deleted file mode 100644 index 8ca2e5d..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.fig +++ /dev/null @@ -1,56 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 5325 375 6525 1500 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 5694 1296 6151 1296 6151 1356 5694 1356 5694 1296 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 5598 1357 6259 1357 6259 1412 5598 1412 5598 1357 -2 2 0 2 0 7 50 0 20 0.000 0 0 -1 0 0 5 - 5413 463 6437 463 6437 1296 5413 1296 5413 463 -2 2 0 1 0 7 50 0 20 0.000 0 0 -1 0 0 5 - 5467 519 6381 519 6381 1237 5467 1237 5467 519 -4 0 0 50 0 16 11 0.0000 4 120 615 5588 953 OUTPUT\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 3525 750 3854 750 -2 1 0 2 0 7 63 0 -1 0.000 0 0 -1 0 0 4 - 3936 655 3840 548 3840 915 3936 813 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 5002 1248 5100 1350 5100 984 5002 1089 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 5100 1125 5429 1125 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 3936 548 5010 548 5010 1342 3936 1342 3936 548 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 2700 525 3525 525 3525 1350 2700 1350 2700 525 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 892 742 1221 742 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 6 - 67 442 742 442 892 592 892 1342 67 1342 67 442 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 3 - 742 442 742 592 892 592 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 1304 540 2274 540 2274 1327 1304 1327 1304 540 -2 1 0 2 0 7 63 0 -1 0.000 0 0 -1 0 0 4 - 1304 647 1207 540 1207 907 1304 805 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 2274 1225 2371 1327 2371 961 2274 1066 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 2377 1117 2706 1117 -4 0 0 50 0 16 11 0.0000 4 120 465 2775 1125 CODE\001 -4 0 0 50 0 16 11 0.0000 4 120 600 2775 900 OBJECT\001 -4 0 0 50 0 16 11 0.0000 4 120 855 4005 975 EXECUTOR\001 -4 0 0 50 0 16 11 0.0000 4 120 465 142 1117 CODE\001 -4 0 0 50 0 16 11 0.0000 4 120 675 142 892 SOURCE\001 -4 0 0 50 0 16 11 0.0000 4 120 825 1342 967 COMPILER\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.png b/sciphi/data/stock_raw/learning_with_python/illustrations/compile.png deleted file mode 100644 index 738cd6e..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/compile.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl b/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl deleted file mode 100644 index d919f38..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/tclsh - -foreach file [glob *.fig] { - set outfile [file root $file].png - puts "Converting $file, creating $outfile." - exec fig2dev -L png -m 1.2727 $file $outfile -} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl~ b/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl~ deleted file mode 100644 index 7afdaea..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/eps2png.tcl~ +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/tclsh - -foreach file [glob *.eps] { - set outfile [file root $file].png - puts "Converting $file, creating $outfile." - exec convert $file $outfile -} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.eps deleted file mode 100644 index ed1a8e3..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.eps +++ /dev/null @@ -1,356 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: fibonacci.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 7 17:25:43 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 308 218 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 218 moveto 0 0 lineto 308 0 lineto 308 218 lineto closepath clip newpath --62.0 244.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3450 450 m 4350 450 l 4350 1125 l 3450 1125 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2250 1425 m 3150 1425 l 3150 2100 l 2250 2100 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 4650 1425 m 5550 1425 l 5550 2100 l 4650 2100 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 5250 2400 m 6150 2400 l 6150 3075 l 5250 3075 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 4050 2400 m 4950 2400 l 4950 3075 l 4050 3075 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2850 2400 m 3750 2400 l 3750 3075 l 2850 3075 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1650 2400 m 2550 2400 l 2550 3075 l 1650 3075 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2250 3375 m 3150 3375 l 3150 4050 l 2250 4050 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1050 3375 m 1950 3375 l 1950 4050 l 1050 4050 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -4095 929 m 4095 869 l 3943 869 l 4063 899 l 3943 929 l cp -eoclip -n 3705 899 m - 4080 899 l gs col0 s gr gr - -% arrowhead -n 3943 929 m 4063 899 l 3943 869 l col0 s -/Helvetica ff 165.00 scf sf -3555 705 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -3630 952 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4155 952 m -gs 1 -1 sc (4) col0 sh gr -% Polyline -gs clippath -3118 1414 m 3160 1456 l 3268 1349 l 3162 1413 l 3225 1306 l cp -eoclip -n 3450 1125 m - 3150 1425 l gs col0 s gr gr - -% arrowhead -n 3225 1306 m 3162 1413 l 3268 1349 l col0 s -% Polyline -gs clippath -2068 2389 m 2110 2431 l 2218 2324 l 2112 2388 l 2175 2281 l cp -eoclip -n 2400 2100 m - 2100 2400 l gs col0 s gr gr - -% arrowhead -n 2175 2281 m 2112 2388 l 2218 2324 l col0 s -% Polyline -gs clippath -1468 3364 m 1510 3406 l 1618 3299 l 1512 3363 l 1575 3256 l cp -eoclip -n 1800 3075 m - 1500 3375 l gs col0 s gr gr - -% arrowhead -n 1575 3256 m 1512 3363 l 1618 3299 l col0 s -% Polyline -gs clippath -4468 2389 m 4510 2431 l 4618 2324 l 4512 2388 l 4575 2281 l cp -eoclip -n 4800 2100 m - 4500 2400 l gs col0 s gr gr - -% arrowhead -n 4575 2281 m 4512 2388 l 4618 2324 l col0 s -% Polyline -gs clippath -4639 1456 m 4681 1414 l 4574 1306 l 4638 1413 l 4531 1349 l cp -eoclip -n 4350 1125 m - 4650 1425 l gs col0 s gr gr - -% arrowhead -n 4531 1349 m 4638 1413 l 4574 1306 l col0 s -% Polyline -gs clippath -3289 2431 m 3331 2389 l 3224 2281 l 3288 2388 l 3181 2324 l cp -eoclip -n 3000 2100 m - 3300 2400 l gs col0 s gr gr - -% arrowhead -n 3181 2324 m 3288 2388 l 3224 2281 l col0 s -% Polyline -gs clippath -2689 3406 m 2731 3364 l 2624 3256 l 2688 3363 l 2581 3299 l cp -eoclip -n 2400 3075 m - 2700 3375 l gs col0 s gr gr - -% arrowhead -n 2581 3299 m 2688 3363 l 2624 3256 l col0 s -% Polyline -gs clippath -5689 2431 m 5731 2389 l 5624 2281 l 5688 2388 l 5581 2324 l cp -eoclip -n 5400 2100 m - 5700 2400 l gs col0 s gr gr - -% arrowhead -n 5581 2324 m 5688 2388 l 5624 2281 l col0 s -% Polyline -gs clippath -2895 1904 m 2895 1844 l 2743 1844 l 2863 1874 l 2743 1904 l cp -eoclip -n 2505 1874 m - 2880 1874 l gs col0 s gr gr - -% arrowhead -n 2743 1904 m 2863 1874 l 2743 1844 l col0 s -% Polyline -gs clippath -5295 1904 m 5295 1844 l 5143 1844 l 5263 1874 l 5143 1904 l cp -eoclip -n 4905 1874 m - 5280 1874 l gs col0 s gr gr - -% arrowhead -n 5143 1904 m 5263 1874 l 5143 1844 l col0 s -% Polyline -gs clippath -5895 2879 m 5895 2819 l 5743 2819 l 5863 2849 l 5743 2879 l cp -eoclip -n 5505 2849 m - 5880 2849 l gs col0 s gr gr - -% arrowhead -n 5743 2879 m 5863 2849 l 5743 2819 l col0 s -% Polyline -gs clippath -4695 2879 m 4695 2819 l 4543 2819 l 4663 2849 l 4543 2879 l cp -eoclip -n 4305 2849 m - 4680 2849 l gs col0 s gr gr - -% arrowhead -n 4543 2879 m 4663 2849 l 4543 2819 l col0 s -% Polyline -gs clippath -3495 2879 m 3495 2819 l 3343 2819 l 3463 2849 l 3343 2879 l cp -eoclip -n 3105 2849 m - 3480 2849 l gs col0 s gr gr - -% arrowhead -n 3343 2879 m 3463 2849 l 3343 2819 l col0 s -% Polyline -gs clippath -2295 2879 m 2295 2819 l 2143 2819 l 2263 2849 l 2143 2879 l cp -eoclip -n 1905 2849 m - 2280 2849 l gs col0 s gr gr - -% arrowhead -n 2143 2879 m 2263 2849 l 2143 2819 l col0 s -% Polyline -gs clippath -2895 3854 m 2895 3794 l 2743 3794 l 2863 3824 l 2743 3854 l cp -eoclip -n 2505 3824 m - 2880 3824 l gs col0 s gr gr - -% arrowhead -n 2743 3854 m 2863 3824 l 2743 3794 l col0 s -% Polyline -gs clippath -1695 3854 m 1695 3794 l 1543 3794 l 1663 3824 l 1543 3854 l cp -eoclip -n 1305 3824 m - 1680 3824 l gs col0 s gr gr - -% arrowhead -n 1543 3854 m 1663 3824 l 1543 3794 l col0 s -/Helvetica ff 165.00 scf sf -2355 1680 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -2430 1927 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2955 1927 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -4755 1680 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -4830 1927 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5355 1927 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -5355 2655 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -5430 2902 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5955 2902 m -gs 1 -1 sc (0) col0 sh gr -/Helvetica ff 165.00 scf sf -4155 2655 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -4230 2902 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4755 2902 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -2955 2655 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -3030 2902 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3555 2902 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -1755 2655 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -1830 2902 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2355 2902 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -2355 3630 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -2430 3877 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2955 3877 m -gs 1 -1 sc (0) col0 sh gr -/Helvetica ff 165.00 scf sf -1155 3630 m -gs 1 -1 sc (fibonacci) col0 sh gr -/Helvetica ff 165.00 scf sf -1230 3877 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1755 3877 m -gs 1 -1 sc (1) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.fig deleted file mode 100644 index 244cee1..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.fig +++ /dev/null @@ -1,107 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 3450 450 4350 1125 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3450 450 4350 450 4350 1125 3450 1125 3450 450 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3705 899 4080 899 -4 0 0 50 0 16 11 0.0000 4 120 615 3555 705 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 3630 952 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4155 952 4\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3450 1125 3150 1425 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2400 2100 2100 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1800 3075 1500 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4800 2100 4500 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4350 1125 4650 1425 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3000 2100 3300 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2400 3075 2700 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5400 2100 5700 2400 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2250 1425 3150 1425 3150 2100 2250 2100 2250 1425 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2505 1874 2880 1874 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4650 1425 5550 1425 5550 2100 4650 2100 4650 1425 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4905 1874 5280 1874 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 5250 2400 6150 2400 6150 3075 5250 3075 5250 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5505 2849 5880 2849 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4050 2400 4950 2400 4950 3075 4050 3075 4050 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4305 2849 4680 2849 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2850 2400 3750 2400 3750 3075 2850 3075 2850 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3105 2849 3480 2849 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1650 2400 2550 2400 2550 3075 1650 3075 1650 2400 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1905 2849 2280 2849 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2250 3375 3150 3375 3150 4050 2250 4050 2250 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2505 3824 2880 3824 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1050 3375 1950 3375 1950 4050 1050 4050 1050 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1305 3824 1680 3824 -4 0 0 50 0 16 11 0.0000 4 120 615 2355 1680 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2430 1927 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2955 1927 3\001 -4 0 0 50 0 16 11 0.0000 4 120 615 4755 1680 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 4830 1927 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 5355 1927 2\001 -4 0 0 50 0 16 11 0.0000 4 120 615 5355 2655 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 5430 2902 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 5955 2902 0\001 -4 0 0 50 0 16 11 0.0000 4 120 615 4155 2655 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 4230 2902 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4755 2902 1\001 -4 0 0 50 0 16 11 0.0000 4 120 615 2955 2655 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 3030 2902 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3555 2902 1\001 -4 0 0 50 0 16 11 0.0000 4 120 615 1755 2655 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 1830 2902 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2355 2902 2\001 -4 0 0 50 0 16 11 0.0000 4 120 615 2355 3630 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2430 3877 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2955 3877 0\001 -4 0 0 50 0 16 11 0.0000 4 120 615 1155 3630 fibonacci\001 -4 2 0 50 0 16 11 0.0000 4 90 90 1230 3877 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 1755 3877 1\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.png b/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.png deleted file mode 100644 index 8374add..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/fibonacci.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.eps deleted file mode 100644 index 036cb23..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.eps +++ /dev/null @@ -1,158 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: interpret.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 7 16:26:37 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 264 62 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 62 moveto 0 0 lineto 264 0 lineto 264 62 lineto closepath clip newpath --138.0 87.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -15.000 slw -n 5919 1296 m 6376 1296 l 6376 1356 l 5919 1356 l - cp gs col0 s gr -% Polyline -n 5823 1357 m 6484 1357 l 6484 1412 l 5823 1412 l - cp gs col0 s gr -% Polyline -n 5638 463 m 6662 463 l 6662 1296 l 5638 1296 l - cp gs col7 1.00 shd ef gr gs col0 s gr -% Polyline -7.500 slw -n 5692 519 m 6606 519 l 6606 1237 l 5692 1237 l - cp gs col7 1.00 shd ef gr gs col0 s gr -/Helvetica ff 165.00 scf sf -5813 953 m -gs 1 -1 sc (OUTPUT) col0 sh gr -% Polyline -gs clippath -3615 795 m 3615 705 l 3403 705 l 3583 750 l 3403 795 l cp -eoclip -n 3225 750 m - 3600 750 l gs col0 s gr gr - -% arrowhead -n 3403 795 m 3583 750 l 3403 705 l col0 s -% Polyline -15.000 slw -n 2325 1350 m 2325 450 l 3000 450 l 3150 600 l 3150 1350 l - 2325 1350 l cp gs col0 s gr -% Polyline -7.500 slw -n 3000 450 m 3000 600 l - 3150 600 l gs col0 s gr -% Polyline -15.000 slw -n 3748 640 m 3652 533 l 3652 900 l - 3748 798 l gs col0 s gr -% Polyline -7.500 slw -gs clippath -5587 1162 m 5587 1072 l 5375 1072 l 5555 1117 l 5375 1162 l cp -eoclip -n 5197 1117 m - 5572 1117 l gs col0 s gr gr - -% arrowhead -n 5375 1162 m 5555 1117 l 5375 1072 l col0 s -% Polyline -15.000 slw -n 5039 1173 m 5137 1275 l 5137 909 l - 5039 1014 l gs col0 s gr -% Polyline -n 3750 525 m 5047 525 l 5047 1290 l 3750 1290 l - cp gs col0 s gr -/Helvetica ff 165.00 scf sf -2400 900 m -gs 1 -1 sc (SOURCE) col0 sh gr -/Helvetica ff 165.00 scf sf -2400 1125 m -gs 1 -1 sc (CODE) col0 sh gr -/Helvetica ff 165.00 scf sf -3825 975 m -gs 1 -1 sc (INTERPRETER) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.fig deleted file mode 100644 index e1ff4d3..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.fig +++ /dev/null @@ -1,39 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 5550 375 6750 1500 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 5919 1296 6376 1296 6376 1356 5919 1356 5919 1296 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 5823 1357 6484 1357 6484 1412 5823 1412 5823 1357 -2 2 0 2 0 7 50 0 20 0.000 0 0 -1 0 0 5 - 5638 463 6662 463 6662 1296 5638 1296 5638 463 -2 2 0 1 0 7 50 0 20 0.000 0 0 -1 0 0 5 - 5692 519 6606 519 6606 1237 5692 1237 5692 519 -4 0 0 50 0 16 11 0.0000 4 120 615 5813 953 OUTPUT\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 3225 750 3600 750 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 6 - 2325 1350 2325 450 3000 450 3150 600 3150 1350 2325 1350 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 3 - 3000 450 3000 600 3150 600 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 3748 640 3652 533 3652 900 3748 798 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 90.00 180.00 - 5197 1117 5572 1117 -2 1 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 5039 1173 5137 1275 5137 909 5039 1014 -2 2 0 2 0 7 50 0 -1 0.000 0 0 -1 0 0 5 - 3750 525 5047 525 5047 1290 3750 1290 3750 525 -4 0 0 50 0 16 11 0.0000 4 120 675 2400 900 SOURCE\001 -4 0 0 50 0 16 11 0.0000 4 120 465 2400 1125 CODE\001 -4 0 0 50 0 16 11 0.0000 4 120 1050 3825 975 INTERPRETER\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.png b/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.png deleted file mode 100644 index f37b56f..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/interpret.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/link1.eps deleted file mode 100644 index 7519a84..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.eps +++ /dev/null @@ -1,230 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: link1.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 16:22:43 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 304 76 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 76 moveto 0 0 lineto 304 0 lineto 304 76 lineto closepath clip newpath --89.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3225 975 m 4800 975 l 4800 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 3075 975 l 3075 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 4950 975 m 6525 975 l 6525 1650 l 4950 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -4215 1477 m 4215 1417 l 4063 1417 l 4183 1447 l 4063 1477 l cp -eoclip -n 3825 1447 m - 4200 1447 l gs col0 s gr gr - -% arrowhead -n 4063 1477 m 4183 1447 l 4063 1417 l col0 s -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -3345 990 m 3405 990 l 3405 838 l 3375 958 l 3345 838 l cp -eoclip -n 3375 600 m - 3375 975 l gs col0 s gr gr - -% arrowhead -n 3345 838 m 3375 958 l 3405 838 l col0 s -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -1620 990 m 1680 990 l 1680 838 l 1650 958 l 1620 838 l cp -eoclip -n 1650 600 m - 1650 975 l gs col0 s gr gr - -% arrowhead -n 1620 838 m 1650 958 l 1680 838 l col0 s -% Polyline -gs clippath -5940 1477 m 5940 1417 l 5788 1417 l 5908 1447 l 5788 1477 l cp -eoclip -n 5550 1447 m - 5925 1447 l gs col0 s gr gr - -% arrowhead -n 5788 1477 m 5908 1447 l 5788 1417 l col0 s -% Polyline -gs clippath -5940 1177 m 5940 1117 l 5788 1117 l 5908 1147 l 5788 1177 l cp -eoclip -n 5550 1147 m - 5925 1147 l gs col0 s gr gr - -% arrowhead -n 5788 1177 m 5908 1147 l 5788 1117 l col0 s -% Polyline -gs clippath -5070 990 m 5130 990 l 5130 838 l 5100 958 l 5070 838 l cp -eoclip -n 5100 600 m - 5100 975 l gs col0 s gr gr - -% arrowhead -n 5070 838 m 5100 958 l 5130 838 l col0 s -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 525 m -gs 1 -1 sc (node2) col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1500 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -1500 525 m -gs 1 -1 sc (node1) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 525 m -gs 1 -1 sc (node3) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1500 m -gs 1 -1 sc (None) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/link1.fig deleted file mode 100644 index 7ab09ee..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.fig +++ /dev/null @@ -1,57 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1447 4200 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 600 3375 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4800 975 4800 1650 3225 1650 3225 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1650 600 1650 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 3075 975 3075 1650 1500 1650 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1447 5925 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1147 5925 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5100 600 5100 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4950 975 6525 975 6525 1650 4950 1650 4950 975 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 3750 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 435 3225 525 node2\001 -4 0 0 50 0 16 11 0.0000 4 120 375 4275 1500 None\001 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 2025 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 0 0 50 0 16 11 0.0000 4 120 435 1500 525 node1\001 -4 0 0 50 0 16 11 0.0000 4 120 375 2550 1500 None\001 -4 2 0 50 0 16 11 0.0000 4 120 390 5475 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 5475 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1200 3\001 -4 0 0 50 0 16 11 0.0000 4 120 435 4950 525 node3\001 -4 0 0 50 0 16 11 0.0000 4 120 375 6000 1500 None\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.png b/sciphi/data/stock_raw/learning_with_python/illustrations/link1.png deleted file mode 100644 index 4f15d1e..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/link1.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/link2.eps deleted file mode 100644 index db010ec..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.eps +++ /dev/null @@ -1,224 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: link2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 16:23:10 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 304 76 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 76 moveto 0 0 lineto 304 0 lineto 304 76 lineto closepath clip newpath --89.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 4950 975 m 6525 975 l 6525 1650 l 4950 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3225 975 m 4575 975 l 4575 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 2850 975 l 2850 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3240 1477 m 3240 1417 l 3088 1417 l 3208 1447 l 3088 1477 l cp -eoclip -n 2100 1447 m - 3225 1447 l gs col0 s gr gr - -% arrowhead -n 3088 1477 m 3208 1447 l 3088 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -1620 990 m 1680 990 l 1680 838 l 1650 958 l 1620 838 l cp -eoclip -n 1650 600 m - 1650 975 l gs col0 s gr gr - -% arrowhead -n 1620 838 m 1650 958 l 1680 838 l col0 s -% Polyline -gs clippath -4965 1469 m 4964 1409 l 4812 1410 l 4933 1440 l 4813 1470 l cp -eoclip -n 3825 1447 m - 4950 1440 l gs col0 s gr gr - -% arrowhead -n 4813 1470 m 4933 1440 l 4812 1410 l col0 s -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -3345 990 m 3405 990 l 3405 838 l 3375 958 l 3345 838 l cp -eoclip -n 3375 600 m - 3375 975 l gs col0 s gr gr - -% arrowhead -n 3345 838 m 3375 958 l 3405 838 l col0 s -% Polyline -gs clippath -5940 1477 m 5940 1417 l 5788 1417 l 5908 1447 l 5788 1477 l cp -eoclip -n 5550 1447 m - 5925 1447 l gs col0 s gr gr - -% arrowhead -n 5788 1477 m 5908 1447 l 5788 1417 l col0 s -% Polyline -gs clippath -5940 1177 m 5940 1117 l 5788 1117 l 5908 1147 l 5788 1177 l cp -eoclip -n 5550 1147 m - 5925 1147 l gs col0 s gr gr - -% arrowhead -n 5788 1177 m 5908 1147 l 5788 1117 l col0 s -% Polyline -gs clippath -5070 990 m 5130 990 l 5130 838 l 5100 958 l 5070 838 l cp -eoclip -n 5100 600 m - 5100 975 l gs col0 s gr gr - -% arrowhead -n 5070 838 m 5100 958 l 5130 838 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -1500 525 m -gs 1 -1 sc (node1) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 525 m -gs 1 -1 sc (node2) col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 525 m -gs 1 -1 sc (node3) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1500 m -gs 1 -1 sc (None) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/link2.fig deleted file mode 100644 index d94ddb0..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.fig +++ /dev/null @@ -1,55 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 3225 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1650 600 1650 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1447 4950 1440 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 600 3375 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1447 5925 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1147 5925 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5100 600 5100 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4950 975 6525 975 6525 1650 4950 1650 4950 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4575 975 4575 1650 3225 1650 3225 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 2850 975 2850 1650 1500 1650 1500 975 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 2025 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 0 0 50 0 16 11 0.0000 4 120 435 1500 525 node1\001 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 3750 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 435 3225 525 node2\001 -4 2 0 50 0 16 11 0.0000 4 120 390 5475 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 5475 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1200 3\001 -4 0 0 50 0 16 11 0.0000 4 120 435 4950 525 node3\001 -4 0 0 50 0 16 11 0.0000 4 120 375 6000 1500 None\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/link2.png deleted file mode 100644 index 1257bf2..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/link2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/link3.eps deleted file mode 100644 index 5335ffe..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.eps +++ /dev/null @@ -1,244 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: link3.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Tue Dec 11 10:59:36 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 304 111 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 111 moveto 0 0 lineto 304 0 lineto 304 111 lineto closepath clip newpath --89.0 135.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 4950 975 m 6525 975 l 6525 1650 l 4950 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3225 975 m 4575 975 l 4575 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 2850 975 l 2850 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -1620 990 m 1680 990 l 1680 838 l 1650 958 l 1620 838 l cp -eoclip -n 1650 600 m - 1650 975 l gs col0 s gr gr - -% arrowhead -n 1620 838 m 1650 958 l 1680 838 l col0 s -/Helvetica ff 165.00 scf sf -1500 525 m -gs 1 -1 sc (node1) col0 sh gr -% Polyline -gs clippath -3240 1477 m 3240 1417 l 3088 1417 l 3208 1447 l 3088 1477 l cp -eoclip -n 2100 1447 m - 3225 1447 l gs col0 s gr gr - -% arrowhead -n 3088 1477 m 3208 1447 l 3088 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -4965 1469 m 4964 1409 l 4812 1410 l 4933 1440 l 4813 1470 l cp -eoclip -n 3825 1447 m - 4950 1440 l gs col0 s gr gr - -% arrowhead -n 4813 1470 m 4933 1440 l 4812 1410 l col0 s -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -3345 990 m 3405 990 l 3405 838 l 3375 958 l 3345 838 l cp -eoclip -n 3375 600 m - 3375 975 l gs col0 s gr gr - -% arrowhead -n 3345 838 m 3375 958 l 3405 838 l col0 s -% Polyline -gs clippath -5940 1477 m 5940 1417 l 5788 1417 l 5908 1447 l 5788 1477 l cp -eoclip -n 5550 1447 m - 5925 1447 l gs col0 s gr gr - -% arrowhead -n 5788 1477 m 5908 1447 l 5788 1417 l col0 s -% Polyline -gs clippath -5940 1177 m 5940 1117 l 5788 1117 l 5908 1147 l 5788 1177 l cp -eoclip -n 5550 1147 m - 5925 1147 l gs col0 s gr gr - -% arrowhead -n 5788 1177 m 5908 1147 l 5788 1117 l col0 s -% Polyline -gs clippath -5070 990 m 5130 990 l 5130 838 l 5100 958 l 5070 838 l cp -eoclip -n 5100 600 m - 5100 975 l gs col0 s gr gr - -% arrowhead -n 5070 838 m 5100 958 l 5130 838 l col0 s -% Polyline -gs clippath -4977 1669 m 4948 1616 l 4815 1689 l 4935 1658 l 4844 1741 l cp -eoclip -n 4125 2100 m - 4950 1650 l gs col0 s gr gr - -% arrowhead -n 4844 1741 m 4935 1658 l 4815 1689 l col0 s -% Polyline - [15 45] 45 sd -n 3675 2100 m - 2850 1650 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 3900 2100 m - 3900 1650 l gs col0 s gr [] 0 sd -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 525 m -gs 1 -1 sc (node2) col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1500 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 525 m -gs 1 -1 sc (node3) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1500 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 2250 m -gs 1 -1 sc (node) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/link3.fig deleted file mode 100644 index e04aaba..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.fig +++ /dev/null @@ -1,65 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 1500 375 1950 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1650 600 1650 975 -4 0 0 50 0 16 11 0.0000 4 120 435 1500 525 node1\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 3225 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1447 4950 1440 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 600 3375 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1447 5925 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1147 5925 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5100 600 5100 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4950 975 6525 975 6525 1650 4950 1650 4950 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4575 975 4575 1650 3225 1650 3225 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 2850 975 2850 1650 1500 1650 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4125 2100 4950 1650 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3675 2100 2850 1650 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3900 2100 3900 1650 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 75 2025 1500 y\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 75 3750 1500 y\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 435 3225 525 node2\001 -4 2 0 50 0 16 11 0.0000 4 120 390 5475 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 75 5475 1500 y\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1200 3\001 -4 0 0 50 0 16 11 0.0000 4 120 435 4950 525 node3\001 -4 0 0 50 0 16 11 0.0000 4 120 375 6000 1500 None\001 -4 0 0 50 0 16 11 0.0000 4 120 345 3750 2250 node\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.png b/sciphi/data/stock_raw/learning_with_python/illustrations/link3.png deleted file mode 100644 index 57aec58..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/link3.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/link4.eps deleted file mode 100644 index bbc06d5..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.eps +++ /dev/null @@ -1,172 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: link4.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 16:55:09 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 187 94 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 94 moveto 0 0 lineto 187 0 lineto 187 94 lineto closepath clip newpath --89.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3225 975 m 4575 975 l 4575 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 2850 975 l 2850 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Arc -n 3812.5 1687.5 262.8 -87.3 87.3 arc -gs col0 s gr - -% Arc -gs clippath -3553 1631 m 3493 1638 l 3511 1788 l 3527 1666 l 3571 1781 l cp -eoclip -n 3787.5 1687.5 265.2 81.9 -171.9 arc -gs col0 s gr - gr - -% arrowhead -n 3571 1781 m 3527 1666 l 3511 1788 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -1620 990 m 1680 990 l 1680 838 l 1650 958 l 1620 838 l cp -eoclip -n 1650 600 m - 1650 975 l gs col0 s gr gr - -% arrowhead -n 1620 838 m 1650 958 l 1680 838 l col0 s -% Polyline -gs clippath -3240 1477 m 3240 1417 l 3088 1417 l 3208 1447 l 3088 1477 l cp -eoclip -n 2100 1447 m - 3225 1447 l gs col0 s gr gr - -% arrowhead -n 3088 1477 m 3208 1447 l 3088 1417 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -1500 525 m -gs 1 -1 sc (list) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/link4.fig deleted file mode 100644 index ebdda40..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.fig +++ /dev/null @@ -1,35 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -5 1 0 1 0 7 50 0 -1 0.000 0 0 0 0 3812.500 1687.500 3825 1425 4050 1800 3825 1950 -5 1 0 1 0 7 50 0 -1 0.000 0 0 1 0 3787.500 1687.500 3825 1950 3600 1875 3525 1650 - 0 0 1.00 60.00 120.00 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4575 975 4575 1650 3225 1650 3225 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 2850 975 2850 1650 1500 1650 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1650 600 1650 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 3225 1447 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 2025 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 3750 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 195 1500 525 list\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.png b/sciphi/data/stock_raw/learning_with_python/illustrations/link4.png deleted file mode 100644 index 801cd23..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/link4.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/link5.eps deleted file mode 100644 index 9c5e4a9..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.eps +++ /dev/null @@ -1,212 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: link5.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 16:26:17 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 304 94 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 94 moveto 0 0 lineto 304 0 lineto 304 94 lineto closepath clip newpath --89.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 4950 975 m 6525 975 l 6525 1650 l 4950 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3225 975 m 4575 975 l 4575 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 2850 975 l 2850 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Arc -gs clippath -4976 1670 m 4950 1616 l 4813 1682 l 4935 1657 l 4840 1736 l cp -eoclip -n 3707.2 -771.0 2721.3 126.2 62.8 arcn -gs col0 s gr - gr - -% arrowhead -n 4840 1736 m 4935 1657 l 4813 1682 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline - [15 45] 45 sd -n 3825 1447 m - 4950 1440 l gs col0 s gr [] 0 sd -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -3345 990 m 3405 990 l 3405 838 l 3375 958 l 3345 838 l cp -eoclip -n 3375 600 m - 3375 975 l gs col0 s gr gr - -% arrowhead -n 3345 838 m 3375 958 l 3405 838 l col0 s -% Polyline -gs clippath -5940 1477 m 5940 1417 l 5788 1417 l 5908 1447 l 5788 1477 l cp -eoclip -n 5550 1447 m - 5925 1447 l gs col0 s gr gr - -% arrowhead -n 5788 1477 m 5908 1447 l 5788 1417 l col0 s -% Polyline -gs clippath -5940 1177 m 5940 1117 l 5788 1117 l 5908 1147 l 5788 1177 l cp -eoclip -n 5550 1147 m - 5925 1147 l gs col0 s gr gr - -% arrowhead -n 5788 1177 m 5908 1147 l 5788 1117 l col0 s -% Polyline -gs clippath -1620 990 m 1680 990 l 1680 838 l 1650 958 l 1620 838 l cp -eoclip -n 1650 600 m - 1650 975 l gs col0 s gr gr - -% arrowhead -n 1620 838 m 1650 958 l 1680 838 l col0 s -% Polyline - [15 45] 45 sd -n 2100 1447 m - 3225 1447 l gs col0 s gr [] 0 sd -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 525 m -gs 1 -1 sc (second) col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1500 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -1500 525 m -gs 1 -1 sc (first) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/link5.fig deleted file mode 100644 index c01f4ee..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.fig +++ /dev/null @@ -1,51 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -5 1 0 1 0 7 50 0 -1 0.000 0 1 1 0 3707.250 -771.000 2100 1425 3750 1950 4950 1650 - 0 0 1.00 60.00 120.00 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3825 1447 4950 1440 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 600 3375 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1447 5925 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1147 5925 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4950 975 6525 975 6525 1650 4950 1650 4950 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4575 975 4575 1650 3225 1650 3225 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 2850 975 2850 1650 1500 1650 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1650 600 1650 975 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 2100 1447 3225 1447 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 2025 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 3750 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 495 3225 525 second\001 -4 2 0 50 0 16 11 0.0000 4 120 390 5475 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 5475 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1200 3\001 -4 0 0 50 0 16 11 0.0000 4 120 375 6000 1500 None\001 -4 0 0 50 0 16 11 0.0000 4 120 285 1500 525 first\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.png b/sciphi/data/stock_raw/learning_with_python/illustrations/link5.png deleted file mode 100644 index 2efb415..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/link5.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/list1.eps deleted file mode 100644 index 9bef948..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.eps +++ /dev/null @@ -1,158 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: list1.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:34:48 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 218 43 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 43 moveto 0 0 lineto 218 0 lineto 218 43 lineto closepath clip newpath --107.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 975 m 3375 975 l 3375 1650 l 1800 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3825 975 m 5400 975 l 5400 1650 l 3825 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (a) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (b) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("banana") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc ("banana") col0 sh gr -% Polyline -gs clippath -4522 1375 m 4507 1317 l 4360 1355 l 4484 1354 l 4375 1413 l cp -eoclip -n 4125 1447 m - 4500 1350 l gs col0 s gr gr - -% arrowhead -n 4375 1413 m 4484 1354 l 4360 1355 l col0 s -% Polyline -gs clippath -4504 1308 m 4523 1251 l 4380 1202 l 4484 1270 l 4360 1259 l cp -eoclip -n 4125 1147 m - 4500 1275 l gs col0 s gr gr - -% arrowhead -n 4360 1259 m 4484 1270 l 4380 1202 l col0 s -/Helvetica ff 165.00 scf sf -4050 1200 m -gs 1 -1 sc (a) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4050 1500 m -gs 1 -1 sc (b) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4575 1350 m -gs 1 -1 sc ("banana") col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/list1.fig deleted file mode 100644 index 624aa77..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.fig +++ /dev/null @@ -1,34 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 1800 975 3375 1650 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 3375 975 3375 1650 1800 1650 1800 975 -4 2 0 50 0 16 11 0.0000 4 90 75 2025 1200 a\001 -4 2 0 50 0 16 11 0.0000 4 120 90 2025 1500 b\001 -4 0 0 50 0 16 11 0.0000 4 120 615 2550 1200 "banana"\001 -4 0 0 50 0 16 11 0.0000 4 120 615 2550 1500 "banana"\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4125 1447 4500 1350 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4125 1147 4500 1275 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3825 975 5400 975 5400 1650 3825 1650 3825 975 -4 2 0 50 0 16 11 0.0000 4 90 75 4050 1200 a\001 -4 2 0 50 0 16 11 0.0000 4 120 90 4050 1500 b\001 -4 0 0 50 0 16 11 0.0000 4 120 615 4575 1350 "banana"\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.png b/sciphi/data/stock_raw/learning_with_python/illustrations/list1.png deleted file mode 100644 index 8368837..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/list1.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/list2.eps deleted file mode 100644 index ebe15aa..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.eps +++ /dev/null @@ -1,128 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: list2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:32:48 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 97 43 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 43 moveto 0 0 lineto 97 0 lineto 97 43 lineto closepath clip newpath --107.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 975 m 3375 975 l 3375 1650 l 1800 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (a) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (b) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ([ 1, 2, 3 ]) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc ([ 1, 2, 3 ]) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/list2.fig deleted file mode 100644 index 73d6dd0..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.fig +++ /dev/null @@ -1,21 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 3375 975 3375 1650 1800 1650 1800 975 -4 2 0 50 0 16 11 0.0000 4 90 75 2025 1200 a\001 -4 2 0 50 0 16 11 0.0000 4 120 90 2025 1500 b\001 -4 0 0 50 0 16 11 0.0000 4 150 630 2550 1200 [ 1, 2, 3 ]\001 -4 0 0 50 0 16 11 0.0000 4 150 630 2550 1500 [ 1, 2, 3 ]\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/list2.png deleted file mode 100644 index 4a3009e..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/list2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/list3.eps deleted file mode 100644 index 1d144d6..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.eps +++ /dev/null @@ -1,125 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: list3.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:33:04 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 97 43 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 43 moveto 0 0 lineto 97 0 lineto 97 43 lineto closepath clip newpath --107.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 975 m 3375 975 l 3375 1650 l 1800 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2497 1375 m 2482 1317 l 2335 1355 l 2459 1354 l 2350 1413 l cp -eoclip -n 2100 1447 m - 2475 1350 l gs col0 s gr gr - -% arrowhead -n 2350 1413 m 2459 1354 l 2335 1355 l col0 s -% Polyline -gs clippath -2479 1308 m 2498 1251 l 2355 1202 l 2459 1270 l 2335 1259 l cp -eoclip -n 2100 1147 m - 2475 1275 l gs col0 s gr gr - -% arrowhead -n 2335 1259 m 2459 1270 l 2355 1202 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (a) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (b) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1350 m -gs 1 -1 sc ([ 1, 2, 3 ]) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/list3.fig deleted file mode 100644 index ae60d05..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.fig +++ /dev/null @@ -1,20 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1350 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1275 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 3375 975 3375 1650 1800 1650 1800 975 -4 2 0 50 0 16 11 0.0000 4 90 75 2025 1200 a\001 -4 2 0 50 0 16 11 0.0000 4 120 90 2025 1500 b\001 -4 0 0 50 0 16 11 0.0000 4 150 630 2550 1350 [ 1, 2, 3 ]\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.png b/sciphi/data/stock_raw/learning_with_python/illustrations/list3.png deleted file mode 100644 index 392f199..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/list3.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.eps deleted file mode 100644 index 7b737ac..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.eps +++ /dev/null @@ -1,110 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: matrix.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 10:02:32 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 53 40 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 40 moveto 0 0 lineto 53 0 lineto 53 40 lineto closepath clip newpath --61.0 102.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 1050 m 1875 1050 l 1875 1687 l - 1800 1687 l gs col0 s gr -% Polyline -n 1120 1050 m 1045 1050 l 1045 1687 l - 1120 1687 l gs col0 s gr -/Helvetica ff 165.00 scf sf -1200 1200 m -gs 1 -1 sc (1 2 3) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 1650 m -gs 1 -1 sc (7 8 9) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 1425 m -gs 1 -1 sc (4 5 6) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.fig deleted file mode 100644 index c2cea79..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.fig +++ /dev/null @@ -1,18 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 1045 1050 1875 1687 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 1800 1050 1875 1050 1875 1687 1800 1687 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 1120 1050 1045 1050 1045 1687 1120 1687 --6 -4 0 0 50 0 16 11 0.0000 4 120 540 1200 1200 1 2 3\001 -4 0 0 50 0 16 11 0.0000 4 120 540 1200 1650 7 8 9\001 -4 0 0 50 0 16 11 0.0000 4 120 540 1200 1425 4 5 6\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.png b/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.png deleted file mode 100644 index d7746a4..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/matrix.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/point.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/point.eps deleted file mode 100644 index 1b6166f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/point.eps +++ /dev/null @@ -1,140 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: point.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:41:45 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 119 43 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 43 moveto 0 0 lineto 119 0 lineto 119 43 lineto closepath clip newpath --58.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 975 m 2925 975 l 2925 1650 l 1800 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -1815 1147 m 1815 1087 l 1663 1087 l 1783 1117 l 1663 1147 l cp -eoclip -n 1425 1117 m - 1800 1117 l gs col0 s gr gr - -% arrowhead -n 1663 1147 m 1783 1117 l 1663 1087 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (x) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (3.0) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (4.0) col0 sh gr -/Helvetica ff 165.00 scf sf -1350 1170 m -gs 1 -1 sc (blank) dup sw pop neg 0 rm col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/point.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/point.fig deleted file mode 100644 index af53fea..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/point.fig +++ /dev/null @@ -1,25 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 2925 975 2925 1650 1800 1650 1800 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1425 1117 1800 1117 -4 2 0 50 0 16 11 0.0000 4 90 90 2025 1200 x\001 -4 2 0 50 0 16 11 0.0000 4 120 75 2025 1500 y\001 -4 0 0 50 0 16 11 0.0000 4 120 225 2550 1200 3.0\001 -4 0 0 50 0 16 11 0.0000 4 120 225 2550 1500 4.0\001 -4 2 0 50 0 16 11 0.0000 4 120 360 1350 1170 blank\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/point.png b/sciphi/data/stock_raw/learning_with_python/illustrations/point.png deleted file mode 100644 index fd75029..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/point.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.eps deleted file mode 100644 index 9031a9a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.eps +++ /dev/null @@ -1,227 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: queue1.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Tue Dec 11 11:01:07 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 304 83 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 83 moveto 0 0 lineto 304 0 lineto 304 83 lineto closepath clip newpath --89.0 100.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 4950 975 m 6525 975 l 6525 1650 l 4950 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 2850 975 l 2850 1650 l 1500 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3225 975 m 4575 975 l 4575 1650 l 3225 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 300 m 5475 300 l 5475 675 l 1500 675 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -4971 1485 m 4972 1425 l 4820 1424 l 4940 1455 l 4819 1484 l cp -eoclip -n 3825 1447 m - 4957 1455 l gs col0 s gr gr - -% arrowhead -n 4819 1484 m 4940 1455 l 4820 1424 l col0 s -% Polyline -gs clippath -4215 1177 m 4215 1117 l 4063 1117 l 4183 1147 l 4063 1177 l cp -eoclip -n 3825 1147 m - 4200 1147 l gs col0 s gr gr - -% arrowhead -n 4063 1177 m 4183 1147 l 4063 1117 l col0 s -% Polyline -gs clippath -3240 1477 m 3240 1417 l 3088 1417 l 3208 1447 l 3088 1477 l cp -eoclip -n 2100 1447 m - 3225 1447 l gs col0 s gr gr - -% arrowhead -n 3088 1477 m 3208 1447 l 3088 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -5940 1477 m 5940 1417 l 5788 1417 l 5908 1447 l 5788 1477 l cp -eoclip -n 5550 1447 m - 5925 1447 l gs col0 s gr gr - -% arrowhead -n 5788 1477 m 5908 1447 l 5788 1417 l col0 s -% Polyline -gs clippath -5940 1177 m 5940 1117 l 5788 1117 l 5908 1147 l 5788 1177 l cp -eoclip -n 5550 1147 m - 5925 1147 l gs col0 s gr gr - -% arrowhead -n 5788 1177 m 5908 1147 l 5788 1117 l col0 s -% Polyline -gs clippath -5070 990 m 5130 990 l 5130 838 l 5100 958 l 5070 838 l cp -eoclip -n 5100 600 m - 5100 975 l gs col0 s gr gr - -% arrowhead -n 5070 838 m 5100 958 l 5130 838 l col0 s -% Polyline -gs clippath -1845 990 m 1905 990 l 1905 838 l 1875 958 l 1845 838 l cp -eoclip -n 1875 600 m - 1875 975 l gs col0 s gr gr - -% arrowhead -n 1845 838 m 1875 958 l 1905 838 l col0 s -% Polyline -gs clippath -3765 502 m 3765 442 l 3613 442 l 3733 472 l 3613 502 l cp -eoclip -n 3375 472 m - 3750 472 l gs col0 s gr gr - -% arrowhead -n 3613 502 m 3733 472 l 3613 442 l col0 s -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1500 m -gs 1 -1 sc (next) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -4275 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 525 m -gs 1 -1 sc (head) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5175 525 m -gs 1 -1 sc (last) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3300 525 m -gs 1 -1 sc (length) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3825 525 m -gs 1 -1 sc (3) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.fig deleted file mode 100644 index 362c7e9..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.fig +++ /dev/null @@ -1,57 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1447 4957 1455 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3825 1147 4200 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 3225 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1447 5925 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5550 1147 5925 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5100 600 5100 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4950 975 6525 975 6525 1650 4950 1650 4950 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1875 600 1875 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 472 3750 472 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 2850 975 2850 1650 1500 1650 1500 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3225 975 4575 975 4575 1650 3225 1650 3225 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 300 5475 300 5475 675 1500 675 1500 300 -4 2 0 50 0 16 11 0.0000 4 120 390 3750 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 3750 1500 next\001 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 2025 1500 next\001 -4 2 0 50 0 16 11 0.0000 4 120 390 5475 1200 cargo\001 -4 2 0 50 0 16 11 0.0000 4 120 315 5475 1500 next\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2550 1200 1\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4275 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1200 3\001 -4 2 0 50 0 16 11 0.0000 4 120 330 2100 525 head\001 -4 2 0 50 0 16 11 0.0000 4 120 240 5175 525 last\001 -4 2 0 50 0 16 11 0.0000 4 150 435 3300 525 length\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3825 525 3\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.png b/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.png deleted file mode 100644 index d7cb0cf..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/queue1.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.eps deleted file mode 100644 index 864a034..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.eps +++ /dev/null @@ -1,185 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: rectangle.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:48:32 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 212 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 212 0 lineto 212 61 lineto closepath clip newpath --46.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3300 1350 m 4275 1350 l 4275 1950 l 3300 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 3000 975 l 3000 1950 l 1500 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3915 1852 m 3915 1792 l 3763 1792 l 3883 1822 l 3763 1852 l cp -eoclip -n 3525 1822 m - 3900 1822 l gs col0 s gr gr - -% arrowhead -n 3763 1852 m 3883 1822 l 3763 1792 l col0 s -% Polyline -gs clippath -3915 1552 m 3915 1492 l 3763 1492 l 3883 1522 l 3763 1552 l cp -eoclip -n 3525 1522 m - 3900 1522 l gs col0 s gr gr - -% arrowhead -n 3763 1552 m 3883 1522 l 3763 1492 l col0 s -/Helvetica ff 165.00 scf sf -3450 1875 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3975 1575 m -gs 1 -1 sc (0.0) col0 sh gr -/Helvetica ff 165.00 scf sf -3450 1575 m -gs 1 -1 sc (x) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3975 1875 m -gs 1 -1 sc (0.0) col0 sh gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -3310 1774 m 3309 1714 l 3157 1715 l 3278 1745 l 3158 1775 l cp -eoclip -n 2100 1747 m - 3295 1745 l gs col0 s gr gr - -% arrowhead -n 3158 1775 m 3278 1745 l 3157 1715 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -1515 1185 m 1515 1125 l 1363 1125 l 1483 1155 l 1363 1185 l cp -eoclip -n 1115 1155 m - 1500 1155 l gs col0 s gr gr - -% arrowhead -n 1363 1185 m 1483 1155 l 1363 1125 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (width) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (height) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (100.0) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (corner) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (200.0) col0 sh gr -/Helvetica ff 165.00 scf sf -1050 1200 m -gs 1 -1 sc (box) dup sw pop neg 0 rm col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.fig deleted file mode 100644 index 2502f15..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.fig +++ /dev/null @@ -1,43 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 3300 1350 4275 1950 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3525 1822 3900 1822 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3525 1522 3900 1522 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3300 1350 4275 1350 4275 1950 3300 1950 3300 1350 -4 2 0 50 0 16 11 0.0000 4 120 75 3450 1875 y\001 -4 0 0 50 0 16 11 0.0000 4 120 225 3975 1575 0.0\001 -4 2 0 50 0 16 11 0.0000 4 90 90 3450 1575 x\001 -4 0 0 50 0 16 11 0.0000 4 120 225 3975 1875 0.0\001 --6 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 3000 975 3000 1950 1500 1950 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1747 3295 1745 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1115 1155 1500 1155 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 width\001 -4 2 0 50 0 16 11 0.0000 4 150 435 2025 1500 height\001 -4 0 0 50 0 16 11 0.0000 4 120 405 2550 1200 100.0\001 -4 2 0 50 0 16 11 0.0000 4 90 450 2025 1800 corner\001 -4 0 0 50 0 16 11 0.0000 4 120 405 2550 1500 200.0\001 -4 2 0 50 0 16 11 0.0000 4 120 270 1050 1200 box\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.png b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.png deleted file mode 100644 index 9488433..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.eps deleted file mode 100644 index 23aefd6..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.eps +++ /dev/null @@ -1,242 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: rectangle2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Sat Dec 8 14:55:19 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 343 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 343 0 lineto 343 61 lineto closepath clip newpath --56.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3300 1350 m 4275 1350 l 4275 1950 l 3300 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 4575 975 m 6075 975 l 6075 1950 l 4575 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1500 975 m 3000 975 l 3000 1950 l 1500 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3915 1852 m 3915 1792 l 3763 1792 l 3883 1822 l 3763 1852 l cp -eoclip -n 3525 1822 m - 3900 1822 l gs col0 s gr gr - -% arrowhead -n 3763 1852 m 3883 1822 l 3763 1792 l col0 s -% Polyline -gs clippath -3915 1552 m 3915 1492 l 3763 1492 l 3883 1522 l 3763 1552 l cp -eoclip -n 3525 1522 m - 3900 1522 l gs col0 s gr gr - -% arrowhead -n 3763 1552 m 3883 1522 l 3763 1492 l col0 s -/Helvetica ff 165.00 scf sf -3450 1875 m -gs 1 -1 sc (y) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3975 1575 m -gs 1 -1 sc (0.0) col0 sh gr -/Helvetica ff 165.00 scf sf -3450 1575 m -gs 1 -1 sc (x) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3975 1875 m -gs 1 -1 sc (0.0) col0 sh gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -5085 1417 m 5085 1477 l 5237 1477 l 5117 1447 l 5237 1417 l cp -eoclip -n 5475 1447 m - 5100 1447 l gs col0 s gr gr - -% arrowhead -n 5237 1417 m 5117 1447 l 5237 1477 l col0 s -% Polyline -gs clippath -5085 1117 m 5085 1177 l 5237 1177 l 5117 1147 l 5237 1117 l cp -eoclip -n 5475 1147 m - 5100 1147 l gs col0 s gr gr - -% arrowhead -n 5237 1117 m 5117 1147 l 5237 1177 l col0 s -% Polyline -gs clippath -3310 1774 m 3309 1714 l 3157 1715 l 3278 1745 l 3158 1775 l cp -eoclip -n 2100 1747 m - 3295 1745 l gs col0 s gr gr - -% arrowhead -n 3158 1775 m 3278 1745 l 3157 1715 l col0 s -% Polyline -gs clippath -4257 1724 m 4256 1784 l 4408 1785 l 4289 1755 l 4409 1725 l cp -eoclip -n 5467 1757 m - 4272 1755 l gs col0 s gr gr - -% arrowhead -n 4409 1725 m 4289 1755 l 4408 1785 l col0 s -% Polyline -gs clippath -6060 1125 m 6060 1185 l 6212 1185 l 6092 1155 l 6212 1125 l cp -eoclip -n 6420 1155 m - 6075 1155 l gs col0 s gr gr - -% arrowhead -n 6212 1125 m 6092 1155 l 6212 1185 l col0 s -% Polyline -gs clippath -1515 1185 m 1515 1125 l 1363 1125 l 1483 1155 l 1363 1185 l cp -eoclip -n 1140 1155 m - 1500 1155 l gs col0 s gr gr - -% arrowhead -n 1363 1185 m 1483 1155 l 1363 1125 l col0 s -/Helvetica ff 165.00 scf sf -4650 1200 m -gs 1 -1 sc (100.0) col0 sh gr -/Helvetica ff 165.00 scf sf -4650 1500 m -gs 1 -1 sc (200.0) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (width) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (height) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc (100.0) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (corner) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (200.0) col0 sh gr -/Helvetica ff 165.00 scf sf -5550 1200 m -gs 1 -1 sc (width) col0 sh gr -/Helvetica ff 165.00 scf sf -5550 1500 m -gs 1 -1 sc (height) col0 sh gr -/Helvetica ff 165.00 scf sf -5550 1800 m -gs 1 -1 sc (corner) col0 sh gr -/Helvetica ff 165.00 scf sf -1125 1200 m -gs 1 -1 sc (b1) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6450 1200 m -gs 1 -1 sc (b2) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.fig deleted file mode 100644 index 0331109..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.fig +++ /dev/null @@ -1,67 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 3300 1350 4275 1950 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3525 1822 3900 1822 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3525 1522 3900 1522 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3300 1350 4275 1350 4275 1950 3300 1950 3300 1350 -4 2 0 50 0 16 11 0.0000 4 120 75 3450 1875 y\001 -4 0 0 50 0 16 11 0.0000 4 120 225 3975 1575 0.0\001 -4 2 0 50 0 16 11 0.0000 4 90 90 3450 1575 x\001 -4 0 0 50 0 16 11 0.0000 4 120 225 3975 1875 0.0\001 --6 -6 2100 1050 2475 1500 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 --6 -6 5100 1050 5475 1500 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5475 1447 5100 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5475 1147 5100 1147 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1747 3295 1745 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4575 975 6075 975 6075 1950 4575 1950 4575 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1500 975 3000 975 3000 1950 1500 1950 1500 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5467 1757 4272 1755 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 6420 1155 6075 1155 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1140 1155 1500 1155 -4 0 0 50 0 16 11 0.0000 4 120 405 4650 1200 100.0\001 -4 0 0 50 0 16 11 0.0000 4 120 405 4650 1500 200.0\001 -4 2 0 50 0 16 11 0.0000 4 120 390 2025 1200 width\001 -4 2 0 50 0 16 11 0.0000 4 150 435 2025 1500 height\001 -4 0 0 50 0 16 11 0.0000 4 120 405 2550 1200 100.0\001 -4 2 0 50 0 16 11 0.0000 4 90 450 2025 1800 corner\001 -4 0 0 50 0 16 11 0.0000 4 120 405 2550 1500 200.0\001 -4 0 0 50 0 16 11 0.0000 4 120 390 5550 1200 width\001 -4 0 0 50 0 16 11 0.0000 4 150 435 5550 1500 height\001 -4 0 0 50 0 16 11 0.0000 4 90 450 5550 1800 corner\001 -4 2 0 50 0 16 11 0.0000 4 120 180 1125 1200 b1\001 -4 0 0 50 0 16 11 0.0000 4 120 180 6450 1200 b2\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.png deleted file mode 100644 index 1621280..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/rectangle2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.eps deleted file mode 100644 index 75078b7..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.eps +++ /dev/null @@ -1,116 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: sparse.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 10:05:55 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 79 68 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 68 moveto 0 0 lineto 79 0 lineto 79 68 lineto closepath clip newpath --62.0 130.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1127 1050 m 1052 1050 l 1052 2145 l - 1127 2145 l gs col0 s gr -% Polyline -n 2250 1050 m 2325 1050 l 2325 2145 l - 2250 2145 l gs col0 s gr -/Helvetica ff 165.00 scf sf -1200 1650 m -gs 1 -1 sc (0 2 0 0 0) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 1200 m -gs 1 -1 sc (0 0 0 1 0) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 1425 m -gs 1 -1 sc (0 0 0 0 0) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 2100 m -gs 1 -1 sc (0 0 0 3 0) col0 sh gr -/Helvetica ff 165.00 scf sf -1200 1875 m -gs 1 -1 sc (0 0 0 0 0) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.fig deleted file mode 100644 index 5612861..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.fig +++ /dev/null @@ -1,20 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 1052 1050 2325 2145 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 1127 1050 1052 1050 1052 2145 1127 2145 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 0 0 4 - 2250 1050 2325 1050 2325 2145 2250 2145 --6 -4 0 0 50 0 16 11 0.0000 4 120 990 1200 1650 0 2 0 0 0\001 -4 0 0 50 0 16 11 0.0000 4 120 990 1200 1200 0 0 0 1 0\001 -4 0 0 50 0 16 11 0.0000 4 120 990 1200 1425 0 0 0 0 0\001 -4 0 0 50 0 16 11 0.0000 4 120 990 1200 2100 0 0 0 3 0\001 -4 0 0 50 0 16 11 0.0000 4 120 990 1200 1875 0 0 0 0 0\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.png b/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.png deleted file mode 100644 index 7bdd78a..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/sparse.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/stack.eps deleted file mode 100644 index 2d4069f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.eps +++ /dev/null @@ -1,203 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: stack.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Sun Dec 30 18:20:56 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 291 142 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 142 moveto 0 0 lineto 291 0 lineto 291 142 lineto closepath clip newpath --34.0 199.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1425 975 m 5400 975 l 5400 1650 l 1425 1650 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1424 2925 m 5392 2925 l 5392 3300 l 1424 3300 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1425 1800 m 5400 1800 l 5400 2775 l 1425 2775 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 2302 m 2490 2242 l 2338 2242 l 2458 2272 l 2338 2302 l cp -eoclip -n 2100 2272 m - 2475 2272 l gs col0 s gr gr - -% arrowhead -n 2338 2302 m 2458 2272 l 2338 2242 l col0 s -% Polyline -gs clippath -2490 2602 m 2490 2542 l 2338 2542 l 2458 2572 l 2338 2602 l cp -eoclip -n 2100 2572 m - 2475 2572 l gs col0 s gr gr - -% arrowhead -n 2338 2602 m 2458 2572 l 2338 2542 l col0 s -% Polyline -gs clippath -2490 2002 m 2490 1942 l 2338 1942 l 2458 1972 l 2338 2002 l cp -eoclip -n 2100 1972 m - 2475 1972 l gs col0 s gr gr - -% arrowhead -n 2338 2002 m 2458 1972 l 2338 1942 l col0 s -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -% Polyline -gs clippath -2482 3127 m 2482 3067 l 2330 3067 l 2450 3097 l 2330 3127 l cp -eoclip -n 2092 3097 m - 2467 3097 l gs col0 s gr gr - -% arrowhead -n 2330 3127 m 2450 3097 l 2330 3067 l col0 s -/Helvetica ff 165.00 scf sf -1350 2025 m -gs 1 -1 sc (catTwice) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (chant1) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (chant2) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("Pie Jesu domine,") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc ("Dona eis requiem.") col0 sh gr -/Helvetica ff 165.00 scf sf -1350 1200 m -gs 1 -1 sc (__main__) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -578 3173 m -gs 1 -1 sc (printTwice) col0 sh gr -/Helvetica ff 165.00 scf sf -2025 2025 m -gs 1 -1 sc (part1) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 2325 m -gs 1 -1 sc (part2) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 2625 m -gs 1 -1 sc (cat) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 2025 m -gs 1 -1 sc ("Pie Jesu domine,") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 2625 m -gs 1 -1 sc ("Pie Jesu domine, Dona eis requiem.") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 2325 m -gs 1 -1 sc ("Dona eis requiem.") col0 sh gr -/Helvetica ff 165.00 scf sf -2017 3150 m -gs 1 -1 sc (bruce) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2542 3150 m -gs 1 -1 sc ("Pie Jesu domine, Dona eis requiem.") col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/stack.fig deleted file mode 100644 index faf854c..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.fig +++ /dev/null @@ -1,50 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2100 1897 2475 2647 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 2272 2475 2272 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 2572 2475 2572 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1972 2475 1972 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1425 975 5400 975 5400 1650 1425 1650 1425 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1424 2925 5392 2925 5392 3300 1424 3300 1424 2925 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1425 1800 5400 1800 5400 2775 1425 2775 1425 1800 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2092 3097 2467 3097 -4 2 0 50 0 16 11 0.0000 4 120 585 1350 2025 catTwice\001 -4 2 0 50 0 16 11 0.0000 4 120 480 2025 1200 chant1\001 -4 2 0 50 0 16 11 0.0000 4 120 480 2025 1500 chant2\001 -4 0 0 50 0 16 11 0.0000 4 150 1260 2550 1200 "Pie Jesu domine,"\001 -4 0 0 50 0 16 11 0.0000 4 150 1335 2550 1500 "Dona eis requiem."\001 -4 2 0 50 0 16 11 0.0000 4 150 675 1350 1200 __main__\001 -4 0 0 50 0 16 11 0.0000 4 150 705 578 3173 printTwice\001 -4 2 0 50 0 16 11 0.0000 4 150 375 2025 2025 part1\001 -4 2 0 50 0 16 11 0.0000 4 150 375 2025 2325 part2\001 -4 2 0 50 0 16 11 0.0000 4 120 210 2025 2625 cat\001 -4 0 0 50 0 16 11 0.0000 4 150 1260 2550 2025 "Pie Jesu domine,"\001 -4 0 0 50 0 16 11 0.0000 4 150 2520 2550 2625 "Pie Jesu domine, Dona eis requiem."\001 -4 0 0 50 0 16 11 0.0000 4 150 1335 2550 2325 "Dona eis requiem."\001 -4 2 0 50 0 16 11 0.0000 4 255 840 2017 3150 bruce\001 -4 0 0 50 0 16 11 0.0000 4 150 2520 2542 3150 "Pie Jesu domine, Dona eis requiem."\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.png b/sciphi/data/stock_raw/learning_with_python/illustrations/stack.png deleted file mode 100644 index 0e9916e..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/stack.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.eps deleted file mode 100644 index 5670784..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.eps +++ /dev/null @@ -1,185 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: stack2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 14:16:17 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 131 151 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 151 moveto 0 0 lineto 131 0 lineto 131 151 lineto closepath clip newpath --50.0 177.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 450 m 3000 450 l 3000 825 l 1800 825 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 975 m 3000 975 l 3000 1350 l 1800 1350 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 1500 m 3000 1500 l 3000 1875 l 1800 1875 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 2025 m 3000 2025 l 3000 2400 l 1800 2400 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 2550 m 3000 2550 l 3000 2925 l 1800 2925 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2565 1177 m 2565 1117 l 2413 1117 l 2533 1147 l 2413 1177 l cp -eoclip -n 2175 1147 m - 2550 1147 l gs col0 s gr gr - -% arrowhead -n 2413 1177 m 2533 1147 l 2413 1117 l col0 s -% Polyline -gs clippath -2565 1702 m 2565 1642 l 2413 1642 l 2533 1672 l 2413 1702 l cp -eoclip -n 2175 1672 m - 2550 1672 l gs col0 s gr gr - -% arrowhead -n 2413 1702 m 2533 1672 l 2413 1642 l col0 s -% Polyline -gs clippath -2565 2227 m 2565 2167 l 2413 2167 l 2533 2197 l 2413 2227 l cp -eoclip -n 2175 2197 m - 2550 2197 l gs col0 s gr gr - -% arrowhead -n 2413 2227 m 2533 2197 l 2413 2167 l col0 s -% Polyline -gs clippath -2565 2752 m 2565 2692 l 2413 2692 l 2533 2722 l 2413 2752 l cp -eoclip -n 2175 2722 m - 2550 2722 l gs col0 s gr gr - -% arrowhead -n 2413 2752 m 2533 2722 l 2413 2692 l col0 s -/Helvetica ff 165.00 scf sf -1650 675 m -gs 1 -1 sc (__main__) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 1200 m -gs 1 -1 sc (countdown) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 1725 m -gs 1 -1 sc (countdown) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 2250 m -gs 1 -1 sc (countdown) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 2775 m -gs 1 -1 sc (countdown) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1200 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1200 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1725 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1725 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2250 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 2250 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2775 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 2775 m -gs 1 -1 sc (0) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.fig deleted file mode 100644 index 1df626c..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.fig +++ /dev/null @@ -1,44 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 450 3000 450 3000 825 1800 825 1800 450 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 3000 975 3000 1350 1800 1350 1800 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 1500 3000 1500 3000 1875 1800 1875 1800 1500 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 2025 3000 2025 3000 2400 1800 2400 1800 2025 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 2550 3000 2550 3000 2925 1800 2925 1800 2550 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1147 2550 1147 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1672 2550 1672 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 2197 2550 2197 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 2722 2550 2722 -4 2 0 50 0 16 11 0.0000 4 150 675 1650 675 __main__\001 -4 2 0 50 0 16 11 0.0000 4 120 780 1650 1200 countdown\001 -4 2 0 50 0 16 11 0.0000 4 120 780 1650 1725 countdown\001 -4 2 0 50 0 16 11 0.0000 4 120 780 1650 2250 countdown\001 -4 2 0 50 0 16 11 0.0000 4 120 780 1650 2775 countdown\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 1200 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1200 3\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 1725 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1725 2\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 2250 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 2250 1\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 2775 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 2775 0\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.png deleted file mode 100644 index 511b5f2..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/stack2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.eps deleted file mode 100644 index 49d6c20..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.eps +++ /dev/null @@ -1,327 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: stack3.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 16:06:14 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 309 151 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 151 moveto 0 0 lineto 309 0 lineto 309 151 lineto closepath clip newpath --57.0 177.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 975 m 5700 975 l 5700 1350 l 1800 1350 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 1500 m 5700 1500 l 5700 1875 l 1800 1875 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 2025 m 5700 2025 l 5700 2400 l 1800 2400 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 2550 m 5700 2550 l 5700 2925 l 1800 2925 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 450 m 5700 450 l 5700 825 l 1800 825 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2565 1177 m 2565 1117 l 2413 1117 l 2533 1147 l 2413 1177 l cp -eoclip -n 2175 1147 m - 2550 1147 l gs col0 s gr gr - -% arrowhead -n 2413 1177 m 2533 1147 l 2413 1117 l col0 s -/Helvetica ff 165.00 scf sf -2100 1200 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1200 m -gs 1 -1 sc (3) col0 sh gr -% Polyline -gs clippath -4065 1177 m 4065 1117 l 3913 1117 l 4033 1147 l 3913 1177 l cp -eoclip -n 3675 1147 m - 4050 1147 l gs col0 s gr gr - -% arrowhead -n 3913 1177 m 4033 1147 l 3913 1117 l col0 s -/Helvetica ff 165.00 scf sf -3600 1200 m -gs 1 -1 sc (recurse) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4125 1200 m -gs 1 -1 sc (2) col0 sh gr -% Polyline -gs clippath -4065 1702 m 4065 1642 l 3913 1642 l 4033 1672 l 3913 1702 l cp -eoclip -n 3675 1672 m - 4050 1672 l gs col0 s gr gr - -% arrowhead -n 3913 1702 m 4033 1672 l 3913 1642 l col0 s -/Helvetica ff 165.00 scf sf -3600 1725 m -gs 1 -1 sc (recurse) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4125 1725 m -gs 1 -1 sc (1) col0 sh gr -% Polyline -gs clippath -4065 2227 m 4065 2167 l 3913 2167 l 4033 2197 l 3913 2227 l cp -eoclip -n 3675 2197 m - 4050 2197 l gs col0 s gr gr - -% arrowhead -n 3913 2227 m 4033 2197 l 3913 2167 l col0 s -/Helvetica ff 165.00 scf sf -3600 2250 m -gs 1 -1 sc (recurse) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4125 2250 m -gs 1 -1 sc (1) col0 sh gr -% Polyline -gs clippath -5415 2227 m 5415 2167 l 5263 2167 l 5383 2197 l 5263 2227 l cp -eoclip -n 5025 2197 m - 5400 2197 l gs col0 s gr gr - -% arrowhead -n 5263 2227 m 5383 2197 l 5263 2167 l col0 s -% Polyline -gs clippath -5415 1702 m 5415 1642 l 5263 1642 l 5383 1672 l 5263 1702 l cp -eoclip -n 5025 1672 m - 5400 1672 l gs col0 s gr gr - -% arrowhead -n 5263 1702 m 5383 1672 l 5263 1642 l col0 s -% Polyline -gs clippath -5415 1177 m 5415 1117 l 5263 1117 l 5383 1147 l 5263 1177 l cp -eoclip -n 5025 1147 m - 5400 1147 l gs col0 s gr gr - -% arrowhead -n 5263 1177 m 5383 1147 l 5263 1117 l col0 s -/Helvetica ff 165.00 scf sf -5475 2250 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 2250 m -gs 1 -1 sc (return) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1725 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 1725 m -gs 1 -1 sc (return) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 1200 m -gs 1 -1 sc (6) col0 sh gr -/Helvetica ff 165.00 scf sf -4950 1200 m -gs 1 -1 sc (return) dup sw pop neg 0 rm col0 sh gr -% Arc -gs clippath -5694 2216 m 5676 2274 l 5821 2319 l 5716 2255 l 5839 2262 l cp -eoclip -n 5700.0 2475.0 225.0 90.0 -90.0 arcn -gs col0 s gr - gr - -% arrowhead -n 5839 2262 m 5716 2255 l 5821 2319 l col0 s -% Arc -gs clippath -5694 1691 m 5676 1749 l 5821 1794 l 5716 1730 l 5839 1737 l cp -eoclip -n 5700.0 1950.0 225.0 90.0 -90.0 arcn -gs col0 s gr - gr - -% arrowhead -n 5839 1737 m 5716 1730 l 5821 1794 l col0 s -% Arc -gs clippath -5694 641 m 5676 699 l 5821 744 l 5716 680 l 5839 687 l cp -eoclip -n 5700.0 900.0 225.0 90.0 -90.0 arcn -gs col0 s gr - gr - -% arrowhead -n 5839 687 m 5716 680 l 5821 744 l col0 s -% Arc -gs clippath -5694 1166 m 5676 1224 l 5821 1269 l 5716 1205 l 5839 1212 l cp -eoclip -n 5700.0 1425.0 225.0 90.0 -90.0 arcn -gs col0 s gr - gr - -% arrowhead -n 5839 1212 m 5716 1205 l 5821 1269 l col0 s -% Polyline -gs clippath -2565 1702 m 2565 1642 l 2413 1642 l 2533 1672 l 2413 1702 l cp -eoclip -n 2175 1672 m - 2550 1672 l gs col0 s gr gr - -% arrowhead -n 2413 1702 m 2533 1672 l 2413 1642 l col0 s -% Polyline -gs clippath -2565 2227 m 2565 2167 l 2413 2167 l 2533 2197 l 2413 2227 l cp -eoclip -n 2175 2197 m - 2550 2197 l gs col0 s gr gr - -% arrowhead -n 2413 2227 m 2533 2197 l 2413 2167 l col0 s -% Polyline -gs clippath -2565 2752 m 2565 2692 l 2413 2692 l 2533 2722 l 2413 2752 l cp -eoclip -n 2175 2722 m - 2550 2722 l gs col0 s gr gr - -% arrowhead -n 2413 2752 m 2533 2722 l 2413 2692 l col0 s -/Helvetica ff 165.00 scf sf -1650 675 m -gs 1 -1 sc (__main__) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 1200 m -gs 1 -1 sc (factorial) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1725 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1725 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2250 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 2250 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2775 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 2775 m -gs 1 -1 sc (0) col0 sh gr -/Helvetica ff 165.00 scf sf -1650 1725 m -gs 1 -1 sc (factorial) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 2250 m -gs 1 -1 sc (factorial) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1650 2775 m -gs 1 -1 sc (factorial) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -6000 2550 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 2025 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 1500 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -6000 975 m -gs 1 -1 sc (6) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.fig deleted file mode 100644 index 3a3ca8f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.fig +++ /dev/null @@ -1,98 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -5 1 0 1 0 7 50 0 -1 0.000 0 1 1 0 5700.000 2475.000 5700 2700 5925 2475 5700 2250 - 0 0 1.00 60.00 120.00 -5 1 0 1 0 7 50 0 -1 0.000 0 1 1 0 5700.000 1950.000 5700 2175 5925 1950 5700 1725 - 0 0 1.00 60.00 120.00 -5 1 0 1 0 7 50 0 -1 0.000 0 1 1 0 5700.000 900.000 5700 1125 5925 900 5700 675 - 0 0 1.00 60.00 120.00 -5 1 0 1 0 7 50 0 -1 0.000 0 1 1 0 5700.000 1425.000 5700 1650 5925 1425 5700 1200 - 0 0 1.00 60.00 120.00 -6 1950 1050 2775 1200 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1147 2550 1147 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 1200 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1200 3\001 --6 -6 3075 1050 4275 2250 -6 3075 1050 4275 1200 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3675 1147 4050 1147 -4 2 0 50 0 16 11 0.0000 4 90 495 3600 1200 recurse\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4125 1200 2\001 --6 -6 3075 1575 4275 1725 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3675 1672 4050 1672 -4 2 0 50 0 16 11 0.0000 4 90 495 3600 1725 recurse\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4125 1725 1\001 --6 -6 3075 2100 4275 2250 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3675 2197 4050 2197 -4 2 0 50 0 16 11 0.0000 4 90 495 3600 2250 recurse\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4125 2250 1\001 --6 --6 -6 4500 1050 5625 2250 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5025 2197 5400 2197 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5025 1672 5400 1672 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5025 1147 5400 1147 -4 0 0 50 0 16 11 0.0000 4 120 90 5475 2250 1\001 -4 2 0 50 0 16 11 0.0000 4 120 420 4950 2250 return\001 -4 0 0 50 0 16 11 0.0000 4 120 90 5475 1725 2\001 -4 2 0 50 0 16 11 0.0000 4 120 420 4950 1725 return\001 -4 0 0 50 0 16 11 0.0000 4 120 90 5475 1200 6\001 -4 2 0 50 0 16 11 0.0000 4 120 420 4950 1200 return\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1672 2550 1672 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 2197 2550 2197 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 2722 2550 2722 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 975 5700 975 5700 1350 1800 1350 1800 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 1500 5700 1500 5700 1875 1800 1875 1800 1500 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 2025 5700 2025 5700 2400 1800 2400 1800 2025 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 2550 5700 2550 5700 2925 1800 2925 1800 2550 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 450 5700 450 5700 825 1800 825 1800 450 -4 2 0 50 0 16 11 0.0000 4 150 675 1650 675 __main__\001 -4 2 0 50 0 16 11 0.0000 4 120 555 1650 1200 factorial\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 1725 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1725 2\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 2250 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 2250 1\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 2775 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 2775 0\001 -4 2 0 50 0 16 11 0.0000 4 120 555 1650 1725 factorial\001 -4 2 0 50 0 16 11 0.0000 4 120 555 1650 2250 factorial\001 -4 2 0 50 0 16 11 0.0000 4 120 555 1650 2775 factorial\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 2550 1\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 2025 1\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 1500 2\001 -4 0 0 50 0 16 11 0.0000 4 120 90 6000 975 6\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.png b/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.png deleted file mode 100644 index 0b54cb0..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/stack3.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.eps deleted file mode 100644 index 430a3d4..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.eps +++ /dev/null @@ -1,173 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: stack4.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 14 14:02:13 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 222 101 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 101 moveto 0 0 lineto 222 0 lineto 222 101 lineto closepath clip newpath --40.0 145.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1800 1725 m 4350 1725 l 4350 2400 l 1800 2400 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1800 750 m 4350 750 l 4350 1575 l 1800 1575 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline - [15 45] 45 sd -n 2175 1125 m - 2550 1125 l gs col0 s gr [] 0 sd -% Polyline - [15 45] 45 sd -n 2175 1125 m - 2550 900 l gs col0 s gr [] 0 sd -% Polyline -gs clippath -2547 1383 m 2578 1331 l 2448 1253 l 2536 1341 l 2417 1304 l cp -eoclip -n 2175 1125 m - 2550 1350 l gs col0 s gr gr - -% arrowhead -n 2417 1304 m 2536 1341 l 2448 1253 l col0 s -/Helvetica ff 165.00 scf sf -2100 1200 m -gs 1 -1 sc (i) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1200 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -2625 975 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1425 m -gs 1 -1 sc (3) col0 sh gr -% Polyline -gs clippath -2565 2130 m 2565 2070 l 2413 2070 l 2533 2100 l 2413 2130 l cp -eoclip -n 2175 2100 m - 2550 2100 l gs col0 s gr gr - -% arrowhead -n 2413 2130 m 2533 2100 l 2413 2070 l col0 s -% Polyline - [15 45] 45 sd -n 3300 2100 m - 3675 1875 l gs col0 s gr [] 0 sd -% Polyline -gs clippath -3690 2130 m 3690 2070 l 3538 2070 l 3658 2100 l 3538 2130 l cp -eoclip -n 3300 2100 m - 3675 2100 l gs col0 s gr gr - -% arrowhead -n 3538 2130 m 3658 2100 l 3538 2070 l col0 s -/Helvetica ff 165.00 scf sf -2100 2175 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 2175 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 165.00 scf sf -3225 2175 m -gs 1 -1 sc (i) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 2175 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1950 m -gs 1 -1 sc (1) col0 sh gr -/Helvetica ff 165.00 scf sf -675 975 m -gs 1 -1 sc (printMultTable) col0 sh gr -/Helvetica ff 165.00 scf sf -750 1950 m -gs 1 -1 sc (printMultiples) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.fig deleted file mode 100644 index d79f4c7..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.fig +++ /dev/null @@ -1,41 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2025 825 2775 1425 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 2175 1125 2550 1125 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 2175 1125 2550 900 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1125 2550 1350 -4 2 0 50 0 16 11 0.0000 4 120 30 2100 1200 i\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1200 2\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 975 1\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 1425 3\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 2100 2550 2100 -2 1 2 1 0 7 50 0 -1 3.000 0 0 -1 0 0 2 - 3300 2100 3675 1875 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3300 2100 3675 2100 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 1725 4350 1725 4350 2400 1800 2400 1800 1725 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1800 750 4350 750 4350 1575 1800 1575 1800 750 -4 2 0 50 0 16 11 0.0000 4 90 90 2100 2175 n\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2625 2175 3\001 -4 2 0 50 0 16 11 0.0000 4 120 30 3225 2175 i\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3750 2175 2\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3750 1950 1\001 -4 0 0 50 0 16 11 0.0000 4 150 975 675 975 printMultTable\001 -4 0 0 50 0 16 11 0.0000 4 150 930 750 1950 printMultiples\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.png b/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.png deleted file mode 100644 index 66aa528..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/stack4.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.eps deleted file mode 100644 index 58fce9f..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.eps +++ /dev/null @@ -1,134 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: stack5.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 14 14:07:05 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 162 66 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 66 moveto 0 0 lineto 162 0 lineto 162 66 lineto closepath clip newpath --29.0 123.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1275 975 m 2250 975 l 2250 1425 l 1275 1425 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1275 1575 m 2250 1575 l 2250 2025 l 1275 2025 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2509 1601 m 2481 1548 l 2346 1619 l 2467 1590 l 2374 1672 l cp -eoclip -n 2082 1793 m - 2482 1582 l gs col0 s gr gr - -% arrowhead -n 2374 1672 m 2467 1590 l 2346 1619 l col0 s -% Polyline -gs clippath -2480 1458 m 2509 1406 l 2378 1331 l 2468 1417 l 2348 1383 l cp -eoclip -n 2085 1200 m - 2482 1425 l gs col0 s gr gr - -% arrowhead -n 2348 1383 m 2468 1417 l 2378 1331 l col0 s -/Helvetica ff 165.00 scf sf -2025 1852 m -gs 1 -1 sc (list) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2528 1553 m -gs 1 -1 sc ([ 1, 2, 3 ]) col0 sh gr -/Helvetica ff 165.00 scf sf -2040 1245 m -gs 1 -1 sc (numbers) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1192 1245 m -gs 1 -1 sc (__main__) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -1207 1852 m -gs 1 -1 sc (head) dup sw pop neg 0 rm col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.fig deleted file mode 100644 index 2fe0b44..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.fig +++ /dev/null @@ -1,24 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1275 975 2250 975 2250 1425 1275 1425 1275 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1275 1575 2250 1575 2250 2025 1275 2025 1275 1575 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2082 1793 2482 1582 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2085 1200 2482 1425 -4 2 0 50 0 16 11 0.0000 4 120 195 2025 1852 list\001 -4 0 0 50 0 16 11 0.0000 4 150 630 2528 1553 [ 1, 2, 3 ]\001 -4 2 0 50 0 16 11 0.0000 4 120 585 2040 1245 numbers\001 -4 2 0 50 0 16 11 0.0000 4 150 675 1192 1245 __main__\001 -4 2 0 50 0 16 11 0.0000 4 120 330 1207 1852 head\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.png b/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.png deleted file mode 100644 index 5fb7901..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/stack5.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/state.eps deleted file mode 100644 index eec6614..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/state.eps +++ /dev/null @@ -1,143 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: state.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 11:03:45 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 173 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 173 0 lineto 173 61 lineto closepath clip newpath --71.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1200 975 m 4050 975 l 4050 1950 l 1200 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1777 m 2490 1717 l 2338 1717 l 2458 1747 l 2338 1777 l cp -eoclip -n 2100 1747 m - 2475 1747 l gs col0 s gr gr - -% arrowhead -n 2338 1777 m 2458 1747 l 2338 1717 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (message) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (pi) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("What's up, Doc?") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (17) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1800 m -gs 1 -1 sc (3.14159) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/state.fig deleted file mode 100644 index 01144c3..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/state.fig +++ /dev/null @@ -1,28 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2100 1072 2475 1822 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1747 2475 1747 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 --6 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1200 975 4050 975 4050 1950 1200 1950 1200 975 -4 2 0 50 0 16 11 0.0000 4 120 585 2025 1200 message\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2025 1500 n\001 -4 2 0 50 0 16 11 0.0000 4 150 120 2025 1800 pi\001 -4 0 0 50 0 16 11 0.0000 4 150 1275 2550 1200 "What's up, Doc?"\001 -4 0 0 50 0 16 11 0.0000 4 120 180 2550 1500 17\001 -4 0 0 50 0 16 11 0.0000 4 120 585 2550 1800 3.14159\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state.png b/sciphi/data/stock_raw/learning_with_python/illustrations/state.png deleted file mode 100644 index 708adbb..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/state.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/state2.eps deleted file mode 100644 index fd4311b..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.eps +++ /dev/null @@ -1,143 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: state2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 09:26:35 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 173 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 173 0 lineto 173 61 lineto closepath clip newpath --71.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1200 975 m 4050 975 l 4050 1950 l 1200 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1777 m 2490 1717 l 2338 1717 l 2458 1747 l 2338 1777 l cp -eoclip -n 2100 1747 m - 2475 1747 l gs col0 s gr gr - -% arrowhead -n 2338 1777 m 2458 1747 l 2338 1717 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (message) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (pi) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("What's up, Doc?") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (17) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1800 m -gs 1 -1 sc (3.14159) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/state2.fig deleted file mode 100644 index 01144c3..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.fig +++ /dev/null @@ -1,28 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2100 1072 2475 1822 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1447 2475 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1747 2475 1747 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2100 1147 2475 1147 --6 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1200 975 4050 975 4050 1950 1200 1950 1200 975 -4 2 0 50 0 16 11 0.0000 4 120 585 2025 1200 message\001 -4 2 0 50 0 16 11 0.0000 4 90 90 2025 1500 n\001 -4 2 0 50 0 16 11 0.0000 4 150 120 2025 1800 pi\001 -4 0 0 50 0 16 11 0.0000 4 150 1275 2550 1200 "What's up, Doc?"\001 -4 0 0 50 0 16 11 0.0000 4 120 180 2550 1500 17\001 -4 0 0 50 0 16 11 0.0000 4 120 585 2550 1800 3.14159\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/state2.png deleted file mode 100644 index 708adbb..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/state2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps deleted file mode 100644 index 00f4f03..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps +++ /dev/null @@ -1,144 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: state.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 11:03:45 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 173 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 173 0 lineto 173 61 lineto closepath clip newpath --71.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1200 975 m 4050 975 l 4050 1950 l 1200 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1777 m 2490 1717 l 2338 1717 l 2458 1747 l 2338 1777 l cp -eoclip -n 2100 1747 m - 2475 1747 l gs col0 s gr gr - -% arrowhead -n 2338 1777 m 2458 1747 l 2338 1717 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (message) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (pi) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("What's up, Doc?") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (17) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1800 m -gs 1 -1 sc (3.14159) col0 sh gr -$F2psEnd -showpage -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps~ b/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps~ deleted file mode 100644 index eec6614..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/test.eps~ +++ /dev/null @@ -1,143 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: state.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Thu Dec 6 11:03:45 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 173 61 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 61 moveto 0 0 lineto 173 0 lineto 173 61 lineto closepath clip newpath --71.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 1200 975 m 4050 975 l 4050 1950 l 1200 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2490 1477 m 2490 1417 l 2338 1417 l 2458 1447 l 2338 1477 l cp -eoclip -n 2100 1447 m - 2475 1447 l gs col0 s gr gr - -% arrowhead -n 2338 1477 m 2458 1447 l 2338 1417 l col0 s -% Polyline -gs clippath -2490 1777 m 2490 1717 l 2338 1717 l 2458 1747 l 2338 1777 l cp -eoclip -n 2100 1747 m - 2475 1747 l gs col0 s gr gr - -% arrowhead -n 2338 1777 m 2458 1747 l 2338 1717 l col0 s -% Polyline -gs clippath -2490 1177 m 2490 1117 l 2338 1117 l 2458 1147 l 2338 1177 l cp -eoclip -n 2100 1147 m - 2475 1147 l gs col0 s gr gr - -% arrowhead -n 2338 1177 m 2458 1147 l 2338 1117 l col0 s -/Helvetica ff 165.00 scf sf -2025 1200 m -gs 1 -1 sc (message) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1500 m -gs 1 -1 sc (n) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2025 1800 m -gs 1 -1 sc (pi) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1200 m -gs 1 -1 sc ("What's up, Doc?") col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1500 m -gs 1 -1 sc (17) col0 sh gr -/Helvetica ff 165.00 scf sf -2550 1800 m -gs 1 -1 sc (3.14159) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/test.png b/sciphi/data/stock_raw/learning_with_python/illustrations/test.png deleted file mode 100644 index 48f71eb..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/test.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/time.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/time.eps deleted file mode 100644 index 35a8810..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/time.eps +++ /dev/null @@ -1,159 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: time.fig -%%Creator: fig2dev Version 3.2 Patchlevel 4 -%%CreationDate: Mon Jun 27 08:54:56 2005 -%%For: downey@localhost.localdomain (Allen Downey) -%%BoundingBox: 0 0 140 60 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 60 moveto 0 0 lineto 140 0 lineto 140 60 lineto closepath clip newpath --36.4 117.7 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -10 setmiterlimit -0 slj 0 slc - 0.06000 0.06000 sc -% -% Fig objects follow -% -% -% here starts figure with depth 51 -% Polyline -7.500 slw -n 1350 975 m 2925 975 l 2925 1950 l 1350 1950 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2565 1477 m 2565 1417 l 2413 1417 l 2533 1447 l 2413 1477 l cp -eoclip -n 2175 1447 m - 2550 1447 l gs col0 s gr gr - -% arrowhead -n 2413 1477 m 2533 1447 l 2413 1417 l col0 s -% Polyline -gs clippath -2557 1777 m 2557 1717 l 2405 1717 l 2525 1747 l 2405 1777 l cp -eoclip -n 2175 1747 m - 2542 1747 l gs col0 s gr gr - -% arrowhead -n 2405 1777 m 2525 1747 l 2405 1717 l col0 s -% Polyline -gs clippath -2565 1177 m 2565 1117 l 2413 1117 l 2533 1147 l 2413 1177 l cp -eoclip -n 2175 1147 m - 2550 1147 l gs col0 s gr gr - -% arrowhead -n 2413 1177 m 2533 1147 l 2413 1117 l col0 s -% Polyline -gs clippath -1360 1177 m 1360 1117 l 1208 1117 l 1328 1147 l 1208 1177 l cp -eoclip -n 960 1147 m - 1345 1147 l gs col0 s gr gr - -% arrowhead -n 1208 1177 m 1328 1147 l 1208 1117 l col0 s -/Helvetica ff 165.00 scf sf -2625 1500 m -gs 1 -1 sc (59) col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1800 m -gs 1 -1 sc (30) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1200 m -gs 1 -1 sc (hours) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1500 m -gs 1 -1 sc (minutes) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2100 1800 m -gs 1 -1 sc (seconds) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2625 1200 m -gs 1 -1 sc (11) col0 sh gr -/Helvetica ff 165.00 scf sf -900 1200 m -gs 1 -1 sc (time) dup sw pop neg 0 rm col0 sh gr -% here ends figure; -$F2psEnd -rs -showpage diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/time.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/time.fig deleted file mode 100644 index 86fa06c..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/time.fig +++ /dev/null @@ -1,30 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1447 2550 1447 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1747 2542 1747 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2175 1147 2550 1147 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1350 975 2925 975 2925 1950 1350 1950 1350 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 960 1147 1345 1147 -4 0 0 50 0 16 11 0.0000 4 120 180 2625 1500 59\001 -4 0 0 50 0 16 11 0.0000 4 120 180 2625 1800 30\001 -4 2 0 50 0 16 11 0.0000 4 120 390 2100 1200 hours\001 -4 2 0 50 0 16 11 0.0000 4 120 525 2100 1500 minutes\001 -4 2 0 50 0 16 11 0.0000 4 120 570 2100 1800 seconds\001 -4 0 0 50 0 16 11 0.0000 4 120 180 2625 1200 11\001 -4 2 0 50 0 16 11 0.0000 4 120 285 900 1200 time\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/time.png b/sciphi/data/stock_raw/learning_with_python/illustrations/time.png deleted file mode 100644 index 032c395..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/time.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.eps deleted file mode 100644 index 2f2f96a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.eps +++ /dev/null @@ -1,245 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: tree1.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Tue Dec 11 17:35:32 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 214 170 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 170 moveto 0 0 lineto 214 0 lineto 214 170 lineto closepath clip newpath --93.0 194.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 2550 975 m 4125 975 l 4125 1725 l 2550 1725 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1575 2025 m 3150 2025 l 3150 2775 l 1575 2775 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3525 2025 m 5100 2025 l 5100 2775 l 3525 2775 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3690 1177 m 3690 1117 l 3538 1117 l 3658 1147 l 3538 1177 l cp -eoclip -n 3300 1147 m - 3675 1147 l gs col0 s gr gr - -% arrowhead -n 3538 1177 m 3658 1147 l 3538 1117 l col0 s -/Helvetica ff 165.00 scf sf -3225 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3750 1200 m -gs 1 -1 sc (1) col0 sh gr -% Polyline -gs clippath -2591 2020 m 2641 2054 l 2725 1927 l 2634 2011 l 2675 1894 l cp -eoclip -n 2925 1575 m - 2625 2025 l gs col0 s gr gr - -% arrowhead -n 2675 1894 m 2634 2011 l 2725 1927 l col0 s -% Polyline -gs clippath -4033 2054 m 4083 2020 l 3999 1894 l 4041 2011 l 3949 1927 l cp -eoclip -n 3750 1575 m - 4050 2025 l gs col0 s gr gr - -% arrowhead -n 3949 1927 m 4041 2011 l 3999 1894 l col0 s -% Polyline -gs clippath -1691 3075 m 1745 3101 l 1812 2966 l 1732 3060 l 1758 2939 l cp -eoclip -n 1950 2625 m - 1725 3075 l gs col0 s gr gr - -% arrowhead -n 1758 2939 m 1732 3060 l 1812 2966 l col0 s -% Polyline -gs clippath -3641 3075 m 3695 3101 l 3762 2966 l 3682 3060 l 3708 2939 l cp -eoclip -n 3900 2625 m - 3675 3075 l gs col0 s gr gr - -% arrowhead -n 3708 2939 m 3682 3060 l 3762 2966 l col0 s -% Polyline -gs clippath -2979 3101 m 3033 3075 l 2966 2939 l 2993 3060 l 2912 2966 l cp -eoclip -n 2775 2625 m - 3000 3075 l gs col0 s gr gr - -% arrowhead -n 2912 2966 m 2993 3060 l 2966 2939 l col0 s -% Polyline -gs clippath -4929 3101 m 4983 3075 l 4916 2939 l 4943 3060 l 4862 2966 l cp -eoclip -n 4725 2625 m - 4950 3075 l gs col0 s gr gr - -% arrowhead -n 4862 2966 m 4943 3060 l 4916 2939 l col0 s -% Polyline -gs clippath -3270 990 m 3330 990 l 3330 838 l 3300 958 l 3270 838 l cp -eoclip -n 3300 600 m - 3300 975 l gs col0 s gr gr - -% arrowhead -n 3270 838 m 3300 958 l 3330 838 l col0 s -% Polyline -gs clippath -2715 2227 m 2715 2167 l 2563 2167 l 2683 2197 l 2563 2227 l cp -eoclip -n 2325 2197 m - 2700 2197 l gs col0 s gr gr - -% arrowhead -n 2563 2227 m 2683 2197 l 2563 2167 l col0 s -% Polyline -gs clippath -4665 2227 m 4665 2167 l 4513 2167 l 4633 2197 l 4513 2227 l cp -eoclip -n 4275 2197 m - 4650 2197 l gs col0 s gr gr - -% arrowhead -n 4513 2227 m 4633 2197 l 4513 2167 l col0 s -/Helvetica ff 165.00 scf sf -3150 525 m -gs 1 -1 sc (tree) col0 sh gr -/Helvetica ff 165.00 scf sf -1575 3225 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -2775 3225 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -3525 3225 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -4725 3225 m -gs 1 -1 sc (None) col0 sh gr -/Helvetica ff 165.00 scf sf -3075 1500 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3525 1500 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2550 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 2550 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -4050 2550 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4500 2550 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -2250 2250 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2775 2250 m -gs 1 -1 sc (2) col0 sh gr -/Helvetica ff 165.00 scf sf -4200 2250 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4725 2250 m -gs 1 -1 sc (3) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.fig deleted file mode 100644 index 97b28e1..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.fig +++ /dev/null @@ -1,64 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2775 1050 3900 1275 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3300 1147 3675 1147 -4 2 0 50 0 16 11 0.0000 4 120 390 3225 1200 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3750 1200 1\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2925 1575 2625 2025 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3750 1575 4050 2025 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 1950 2625 1725 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3900 2625 3675 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2775 2625 3000 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4725 2625 4950 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3300 600 3300 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2550 975 4125 975 4125 1725 2550 1725 2550 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1575 2025 3150 2025 3150 2775 1575 2775 1575 2025 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3525 2025 5100 2025 5100 2775 3525 2775 3525 2025 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2325 2197 2700 2197 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4275 2197 4650 2197 -4 0 0 50 0 16 11 0.0000 4 120 270 3150 525 tree\001 -4 0 0 50 0 16 11 0.0000 4 120 375 1575 3225 None\001 -4 0 0 50 0 16 11 0.0000 4 120 375 2775 3225 None\001 -4 0 0 50 0 16 11 0.0000 4 120 375 3525 3225 None\001 -4 0 0 50 0 16 11 0.0000 4 120 375 4725 3225 None\001 -4 2 0 50 0 16 11 0.0000 4 120 225 3075 1500 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 3525 1500 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 2100 2550 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 2550 2550 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 4050 2550 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 4500 2550 right\001 -4 2 0 50 0 16 11 0.0000 4 120 390 2250 2250 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2775 2250 2\001 -4 2 0 50 0 16 11 0.0000 4 120 390 4200 2250 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 4725 2250 3\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.png b/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.png deleted file mode 100644 index d9639a4..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/tree1.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.eps deleted file mode 100644 index cd3ae0c..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.eps +++ /dev/null @@ -1,263 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: tree2.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Fri Dec 7 17:49:49 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 273 207 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 207 moveto 0 0 lineto 273 0 lineto 273 207 lineto closepath clip newpath --93.0 231.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 2550 975 m 4125 975 l 4125 1725 l 2550 1725 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3525 2025 m 5100 2025 l 5100 2775 l 3525 2775 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2550 3075 m 4125 3075 l 4125 3825 l 2550 3825 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 4500 3075 m 6075 3075 l 6075 3825 l 4500 3825 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 1575 2025 m 3150 2025 l 3150 2775 l 1575 2775 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -3540 3277 m 3540 3217 l 3388 3217 l 3508 3247 l 3388 3277 l cp -eoclip -n 3150 3247 m - 3525 3247 l gs col0 s gr gr - -% arrowhead -n 3388 3277 m 3508 3247 l 3388 3217 l col0 s -/Helvetica ff 165.00 scf sf -3075 3300 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3600 3300 m -gs 1 -1 sc (2) col0 sh gr -% Polyline -gs clippath -2715 2227 m 2715 2167 l 2563 2167 l 2683 2197 l 2563 2227 l cp -eoclip -n 2325 2197 m - 2700 2197 l gs col0 s gr gr - -% arrowhead -n 2563 2227 m 2683 2197 l 2563 2167 l col0 s -/Helvetica ff 165.00 scf sf -2250 2250 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2775 2250 m -gs 1 -1 sc (1) col0 sh gr -% Polyline -gs clippath -3690 1177 m 3690 1117 l 3538 1117 l 3658 1147 l 3538 1177 l cp -eoclip -n 3300 1147 m - 3675 1147 l gs col0 s gr gr - -% arrowhead -n 3538 1177 m 3658 1147 l 3538 1117 l col0 s -/Helvetica ff 165.00 scf sf -3225 1200 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 210.00 scf sf -3750 1200 m -gs 1 -1 sc (+) col0 sh gr -% Polyline -gs clippath -4665 2227 m 4665 2167 l 4513 2167 l 4633 2197 l 4513 2227 l cp -eoclip -n 4275 2197 m - 4650 2197 l gs col0 s gr gr - -% arrowhead -n 4513 2227 m 4633 2197 l 4513 2167 l col0 s -/Helvetica ff 165.00 scf sf -4200 2250 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 360.00 scf sf -4725 2400 m -gs 1 -1 sc (*) col0 sh gr -% Polyline -gs clippath -5640 3277 m 5640 3217 l 5488 3217 l 5608 3247 l 5488 3277 l cp -eoclip -n 5250 3247 m - 5625 3247 l gs col0 s gr gr - -% arrowhead -n 5488 3277 m 5608 3247 l 5488 3217 l col0 s -/Helvetica ff 165.00 scf sf -5175 3300 m -gs 1 -1 sc (cargo) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5700 3300 m -gs 1 -1 sc (3) col0 sh gr -% Polyline -gs clippath -2591 2020 m 2641 2054 l 2725 1927 l 2634 2011 l 2675 1894 l cp -eoclip -n 2925 1575 m - 2625 2025 l gs col0 s gr gr - -% arrowhead -n 2675 1894 m 2634 2011 l 2725 1927 l col0 s -% Polyline -gs clippath -4033 2054 m 4083 2020 l 3999 1894 l 4041 2011 l 3949 1927 l cp -eoclip -n 3750 1575 m - 4050 2025 l gs col0 s gr gr - -% arrowhead -n 3949 1927 m 4041 2011 l 3999 1894 l col0 s -% Polyline -gs clippath -3641 3075 m 3695 3101 l 3762 2966 l 3682 3060 l 3708 2939 l cp -eoclip -n 3900 2625 m - 3675 3075 l gs col0 s gr gr - -% arrowhead -n 3708 2939 m 3682 3060 l 3762 2966 l col0 s -% Polyline -gs clippath -4929 3101 m 4983 3075 l 4916 2939 l 4943 3060 l 4862 2966 l cp -eoclip -n 4725 2625 m - 4950 3075 l gs col0 s gr gr - -% arrowhead -n 4862 2966 m 4943 3060 l 4916 2939 l col0 s -% Polyline -gs clippath -3270 990 m 3330 990 l 3330 838 l 3300 958 l 3270 838 l cp -eoclip -n 3300 600 m - 3300 975 l gs col0 s gr gr - -% arrowhead -n 3270 838 m 3300 958 l 3330 838 l col0 s -/Helvetica ff 165.00 scf sf -3150 525 m -gs 1 -1 sc (tree) col0 sh gr -/Helvetica ff 165.00 scf sf -3075 1500 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3525 1500 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -4050 2550 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -4500 2550 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -3075 3600 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -3525 3600 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -5025 3600 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -5475 3600 m -gs 1 -1 sc (right) col0 sh gr -/Helvetica ff 165.00 scf sf -2100 2550 m -gs 1 -1 sc (left) dup sw pop neg 0 rm col0 sh gr -/Helvetica ff 165.00 scf sf -2550 2550 m -gs 1 -1 sc (right) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.fig deleted file mode 100644 index 9cc354b..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.fig +++ /dev/null @@ -1,80 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -6 2625 3150 3750 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3150 3247 3525 3247 -4 2 0 50 0 16 11 0.0000 4 120 390 3075 3300 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 3600 3300 2\001 --6 -6 1800 2100 2925 2325 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2325 2197 2700 2197 -4 2 0 50 0 16 11 0.0000 4 120 390 2250 2250 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 2775 2250 1\001 --6 -6 2775 1050 3900 1275 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3300 1147 3675 1147 -4 2 0 50 0 16 11 0.0000 4 120 390 3225 1200 cargo\001 -4 0 0 50 0 16 14 0.0000 4 105 135 3750 1200 +\001 --6 -6 3750 2100 4875 2325 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4275 2197 4650 2197 -4 2 0 50 0 16 11 0.0000 4 120 390 4200 2250 cargo\001 -4 0 0 50 0 16 24 0.0000 4 105 150 4725 2400 *\001 --6 -6 4725 3150 5850 3375 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 5250 3247 5625 3247 -4 2 0 50 0 16 11 0.0000 4 120 390 5175 3300 cargo\001 -4 0 0 50 0 16 11 0.0000 4 120 90 5700 3300 3\001 --6 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2925 1575 2625 2025 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3750 1575 4050 2025 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3900 2625 3675 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 4725 2625 4950 3075 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3300 600 3300 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2550 975 4125 975 4125 1725 2550 1725 2550 975 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3525 2025 5100 2025 5100 2775 3525 2775 3525 2025 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2550 3075 4125 3075 4125 3825 2550 3825 2550 3075 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 4500 3075 6075 3075 6075 3825 4500 3825 4500 3075 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 1575 2025 3150 2025 3150 2775 1575 2775 1575 2025 -4 0 0 50 0 16 11 0.0000 4 120 270 3150 525 tree\001 -4 2 0 50 0 16 11 0.0000 4 120 225 3075 1500 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 3525 1500 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 4050 2550 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 4500 2550 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 3075 3600 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 3525 3600 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 5025 3600 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 5475 3600 right\001 -4 2 0 50 0 16 11 0.0000 4 120 225 2100 2550 left\001 -4 0 0 50 0 16 11 0.0000 4 150 330 2550 2550 right\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.png b/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.png deleted file mode 100644 index 8544cbe..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/tree2.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.eps deleted file mode 100644 index e4016e7..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.eps +++ /dev/null @@ -1,161 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: tree3.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Tue Dec 11 18:04:00 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 97 106 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 106 moveto 0 0 lineto 97 0 lineto 97 106 lineto closepath clip newpath --138.0 163.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 2325 2325 m 2775 2325 l 2775 2700 l 2325 2700 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3075 2325 m 3525 2325 l 3525 2700 l 3075 2700 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3450 1650 m 3900 1650 l 3900 2025 l 3450 2025 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2700 1650 m 3150 1650 l 3150 2025 l 2700 2025 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3075 975 m 3525 975 l 3525 1350 l 3075 1350 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2893 1639 m 2935 1681 l 3043 1574 l 2937 1638 l 3000 1531 l cp -eoclip -n 3225 1350 m - 2925 1650 l gs col0 s gr gr - -% arrowhead -n 3000 1531 m 2937 1638 l 3043 1574 l col0 s -% Polyline -gs clippath -3664 1681 m 3706 1639 l 3599 1531 l 3663 1638 l 3556 1574 l cp -eoclip -n 3375 1350 m - 3675 1650 l gs col0 s gr gr - -% arrowhead -n 3556 1574 m 3663 1638 l 3599 1531 l col0 s -% Polyline -gs clippath -2518 2314 m 2560 2356 l 2668 2249 l 2562 2313 l 2625 2206 l cp -eoclip -n 2850 2025 m - 2550 2325 l gs col0 s gr gr - -% arrowhead -n 2625 2206 m 2562 2313 l 2668 2249 l col0 s -% Polyline -gs clippath -3289 2356 m 3331 2314 l 3224 2206 l 3288 2313 l 3181 2249 l cp -eoclip -n 3000 2025 m - 3300 2325 l gs col0 s gr gr - -% arrowhead -n 3181 2249 m 3288 2313 l 3224 2206 l col0 s -/Helvetica ff 210.00 scf sf -3630 1913 m -gs 1 -1 sc (9) col0 sh gr -/Helvetica ff 210.00 scf sf -3248 2595 m -gs 1 -1 sc (7) col0 sh gr -/Helvetica ff 210.00 scf sf -2490 2588 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 210.00 scf sf -2858 1905 m -gs 1 -1 sc (+) col0 sh gr -/Helvetica ff 360.00 scf sf -3225 1380 m -gs 1 -1 sc (*) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.fig deleted file mode 100644 index 7915a1a..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.fig +++ /dev/null @@ -1,36 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3225 1350 2925 1650 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 1350 3675 1650 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 2850 2025 2550 2325 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3000 2025 3300 2325 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2325 2325 2775 2325 2775 2700 2325 2700 2325 2325 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3075 2325 3525 2325 3525 2700 3075 2700 3075 2325 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3450 1650 3900 1650 3900 2025 3450 2025 3450 1650 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2700 1650 3150 1650 3150 2025 2700 2025 2700 1650 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3075 975 3525 975 3525 1350 3075 1350 3075 975 -4 0 0 50 0 16 14 0.0000 4 150 120 3630 1913 9\001 -4 0 0 50 0 16 14 0.0000 4 150 120 3248 2595 7\001 -4 0 0 50 0 16 14 0.0000 4 150 120 2490 2588 3\001 -4 0 0 50 0 16 14 0.0000 4 105 135 2858 1905 +\001 -4 0 0 50 0 16 24 0.0000 4 105 150 3225 1380 *\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.png b/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.png deleted file mode 100644 index 20f6c2e..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/tree3.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.eps deleted file mode 100644 index 07a16c0..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.eps +++ /dev/null @@ -1,161 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: tree4.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Tue Dec 11 18:03:53 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 97 106 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 106 moveto 0 0 lineto 97 0 lineto 97 106 lineto closepath clip newpath --161.0 163.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 3450 1650 m 3900 1650 l 3900 2025 l 3450 2025 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 2700 1650 m 3150 1650 l 3150 2025 l 2700 2025 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3075 975 m 3525 975 l 3525 1350 l 3075 1350 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3075 2325 m 3525 2325 l 3525 2700 l 3075 2700 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -n 3825 2325 m 4275 2325 l 4275 2700 l 3825 2700 l - cp gs col7 0.90 shd ef gr gs col0 s gr -% Polyline -gs clippath -2893 1639 m 2935 1681 l 3043 1574 l 2937 1638 l 3000 1531 l cp -eoclip -n 3225 1350 m - 2925 1650 l gs col0 s gr gr - -% arrowhead -n 3000 1531 m 2937 1638 l 3043 1574 l col0 s -% Polyline -gs clippath -3664 1681 m 3706 1639 l 3599 1531 l 3663 1638 l 3556 1574 l cp -eoclip -n 3375 1350 m - 3675 1650 l gs col0 s gr gr - -% arrowhead -n 3556 1574 m 3663 1638 l 3599 1531 l col0 s -% Polyline -gs clippath -3268 2314 m 3310 2356 l 3418 2249 l 3312 2313 l 3375 2206 l cp -eoclip -n 3600 2025 m - 3300 2325 l gs col0 s gr gr - -% arrowhead -n 3375 2206 m 3312 2313 l 3418 2249 l col0 s -% Polyline -gs clippath -4039 2356 m 4081 2314 l 3974 2206 l 4038 2313 l 3931 2249 l cp -eoclip -n 3750 2025 m - 4050 2325 l gs col0 s gr gr - -% arrowhead -n 3931 2249 m 4038 2313 l 3974 2206 l col0 s -/Helvetica ff 360.00 scf sf -3225 1380 m -gs 1 -1 sc (*) col0 sh gr -/Helvetica ff 210.00 scf sf -2865 1920 m -gs 1 -1 sc (3) col0 sh gr -/Helvetica ff 360.00 scf sf -3600 2047 m -gs 1 -1 sc (*) col0 sh gr -/Helvetica ff 210.00 scf sf -3240 2595 m -gs 1 -1 sc (5) col0 sh gr -/Helvetica ff 210.00 scf sf -3931 2595 m -gs 1 -1 sc (13) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.fig deleted file mode 100644 index 014aeba..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.fig +++ /dev/null @@ -1,36 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3225 1350 2925 1650 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3375 1350 3675 1650 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3450 1650 3900 1650 3900 2025 3450 2025 3450 1650 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 2700 1650 3150 1650 3150 2025 2700 2025 2700 1650 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3075 975 3525 975 3525 1350 3075 1350 3075 975 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3600 2025 3300 2325 -2 1 0 1 0 7 50 0 -1 0.000 0 0 -1 1 0 2 - 0 0 1.00 60.00 120.00 - 3750 2025 4050 2325 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3075 2325 3525 2325 3525 2700 3075 2700 3075 2325 -2 2 0 1 0 7 51 0 18 0.000 0 0 -1 0 0 5 - 3825 2325 4275 2325 4275 2700 3825 2700 3825 2325 -4 0 0 50 0 16 24 0.0000 4 105 150 3225 1380 *\001 -4 0 0 50 0 16 14 0.0000 4 150 120 2865 1920 3\001 -4 0 0 50 0 16 24 0.0000 4 105 150 3600 2047 *\001 -4 0 0 50 0 16 14 0.0000 4 150 120 3240 2595 5\001 -4 0 0 50 0 16 14 0.0000 4 150 240 3931 2595 13\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.png b/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.png deleted file mode 100644 index 5d99c36..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/tree4.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.eps b/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.eps deleted file mode 100644 index 26392f9..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.eps +++ /dev/null @@ -1,164 +0,0 @@ -%!PS-Adobe-2.0 EPSF-2.0 -%%Title: tree5.eps -%%Creator: fig2dev Version 3.2 Patchlevel 3c -%%CreationDate: Sun Dec 30 19:29:04 2001 -%%For: downey@rocky.wellesley.edu (Allen B. Downey) -%%BoundingBox: 0 0 196 110 -%%Magnification: 1.0000 -%%EndComments -/$F2psDict 200 dict def -$F2psDict begin -$F2psDict /mtrx matrix put -/col-1 {0 setgray} bind def -/col0 {0.000 0.000 0.000 srgb} bind def -/col1 {0.000 0.000 1.000 srgb} bind def -/col2 {0.000 1.000 0.000 srgb} bind def -/col3 {0.000 1.000 1.000 srgb} bind def -/col4 {1.000 0.000 0.000 srgb} bind def -/col5 {1.000 0.000 1.000 srgb} bind def -/col6 {1.000 1.000 0.000 srgb} bind def -/col7 {1.000 1.000 1.000 srgb} bind def -/col8 {0.000 0.000 0.560 srgb} bind def -/col9 {0.000 0.000 0.690 srgb} bind def -/col10 {0.000 0.000 0.820 srgb} bind def -/col11 {0.530 0.810 1.000 srgb} bind def -/col12 {0.000 0.560 0.000 srgb} bind def -/col13 {0.000 0.690 0.000 srgb} bind def -/col14 {0.000 0.820 0.000 srgb} bind def -/col15 {0.000 0.560 0.560 srgb} bind def -/col16 {0.000 0.690 0.690 srgb} bind def -/col17 {0.000 0.820 0.820 srgb} bind def -/col18 {0.560 0.000 0.000 srgb} bind def -/col19 {0.690 0.000 0.000 srgb} bind def -/col20 {0.820 0.000 0.000 srgb} bind def -/col21 {0.560 0.000 0.560 srgb} bind def -/col22 {0.690 0.000 0.690 srgb} bind def -/col23 {0.820 0.000 0.820 srgb} bind def -/col24 {0.500 0.190 0.000 srgb} bind def -/col25 {0.630 0.250 0.000 srgb} bind def -/col26 {0.750 0.380 0.000 srgb} bind def -/col27 {1.000 0.500 0.500 srgb} bind def -/col28 {1.000 0.630 0.630 srgb} bind def -/col29 {1.000 0.750 0.750 srgb} bind def -/col30 {1.000 0.880 0.880 srgb} bind def -/col31 {1.000 0.840 0.000 srgb} bind def - -end -save -newpath 0 110 moveto 0 0 lineto 196 0 lineto 196 110 lineto closepath clip newpath --21.0 118.0 translate -1 -1 scale - -/cp {closepath} bind def -/ef {eofill} bind def -/gr {grestore} bind def -/gs {gsave} bind def -/sa {save} bind def -/rs {restore} bind def -/l {lineto} bind def -/m {moveto} bind def -/rm {rmoveto} bind def -/n {newpath} bind def -/s {stroke} bind def -/sh {show} bind def -/slc {setlinecap} bind def -/slj {setlinejoin} bind def -/slw {setlinewidth} bind def -/srgb {setrgbcolor} bind def -/rot {rotate} bind def -/sc {scale} bind def -/sd {setdash} bind def -/ff {findfont} bind def -/sf {setfont} bind def -/scf {scalefont} bind def -/sw {stringwidth} bind def -/tr {translate} bind def -/tnt {dup dup currentrgbcolor - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add - 4 -2 roll dup 1 exch sub 3 -1 roll mul add srgb} - bind def -/shd {dup dup currentrgbcolor 4 -2 roll mul 4 -2 roll mul - 4 -2 roll mul srgb} bind def -/$F2psBegin {$F2psDict begin /$F2psEnteredState save def} def -/$F2psEnd {$F2psEnteredState restore end} def - -$F2psBegin -%%Page: 1 1 -10 setmiterlimit - 0.06000 0.06000 sc -% -% Fig objects follow -% -% Polyline -7.500 slw -n 480 1650 m 375 1650 375 1845 105 arcto 4 {pop} repeat - 375 1950 870 1950 105 arcto 4 {pop} repeat - 975 1950 975 1755 105 arcto 4 {pop} repeat - 975 1650 480 1650 105 arcto 4 {pop} repeat - cp gs col0 s gr -% Polyline -n 1530 1650 m 1425 1650 1425 1845 105 arcto 4 {pop} repeat - 1425 1950 1920 1950 105 arcto 4 {pop} repeat - 2025 1950 2025 1755 105 arcto 4 {pop} repeat - 2025 1650 1530 1650 105 arcto 4 {pop} repeat - cp gs col0 s gr -% Polyline -n 1350 1200 m - 1725 1650 l gs col0 s gr -% Polyline -n 1050 1200 m - 675 1650 l gs col0 s gr -% Polyline -n 705 900 m 600 900 600 1095 105 arcto 4 {pop} repeat - 600 1200 1770 1200 105 arcto 4 {pop} repeat - 1875 1200 1875 1005 105 arcto 4 {pop} repeat - 1875 900 705 900 105 arcto 4 {pop} repeat - cp gs col0 s gr -% Polyline -n 1800 450 m - 1200 900 l gs col0 s gr -% Polyline -n 1380 150 m 1275 150 1275 345 105 arcto 4 {pop} repeat - 1275 450 2820 450 105 arcto 4 {pop} repeat - 2925 450 2925 255 105 arcto 4 {pop} repeat - 2925 150 1380 150 105 arcto 4 {pop} repeat - cp gs col0 s gr -% Polyline -n 2430 900 m 2325 900 2325 1095 105 arcto 4 {pop} repeat - 2325 1200 3495 1200 105 arcto 4 {pop} repeat - 3600 1200 3600 1005 105 arcto 4 {pop} repeat - 3600 900 2430 900 105 arcto 4 {pop} repeat - cp gs col0 s gr -% Polyline -n 2400 450 m - 3000 900 l gs col0 s gr -/Helvetica ff 180.00 scf sf -2820 1117 m -gs 1 -1 sc (bird) col0 sh gr -/Helvetica ff 180.00 scf sf -1275 750 m -gs 1 -1 sc (n) col0 sh gr -/Helvetica ff 180.00 scf sf -1650 1500 m -gs 1 -1 sc (y) col0 sh gr -/Helvetica ff 180.00 scf sf -675 1500 m -gs 1 -1 sc (n) col0 sh gr -/Helvetica ff 180.00 scf sf -2887 750 m -gs 1 -1 sc (y) col0 sh gr -/Helvetica ff 180.00 scf sf -1687 367 m -gs 1 -1 sc (Can it fly?) col0 sh gr -/Helvetica ff 180.00 scf sf -697 1118 m -gs 1 -1 sc (Does it bark?) col0 sh gr -/Helvetica ff 180.00 scf sf -548 1860 m -gs 1 -1 sc (cat) col0 sh gr -/Helvetica ff 180.00 scf sf -1575 1860 m -gs 1 -1 sc (dog) col0 sh gr -$F2psEnd -rs diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.fig b/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.fig deleted file mode 100644 index ccf8259..0000000 --- a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.fig +++ /dev/null @@ -1,36 +0,0 @@ -#FIG 3.2 -Landscape -Center -Inches -Letter -100.00 -Single --2 -1200 2 -2 4 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 5 - 975 1950 375 1950 375 1650 975 1650 975 1950 -2 4 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 5 - 2025 1950 1425 1950 1425 1650 2025 1650 2025 1950 -2 1 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 2 - 1350 1200 1725 1650 -2 1 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 2 - 1050 1200 675 1650 -2 4 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 5 - 1875 1200 600 1200 600 900 1875 900 1875 1200 -2 1 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 2 - 1800 450 1200 900 -2 4 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 5 - 2925 450 1275 450 1275 150 2925 150 2925 450 -2 4 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 5 - 3600 1200 2325 1200 2325 900 3600 900 3600 1200 -2 1 0 1 0 7 50 0 -1 0.000 0 0 7 0 0 2 - 2400 450 3000 900 -4 0 0 50 0 16 12 0.0000 4 135 315 2820 1117 bird\001 -4 0 0 50 0 16 12 0.0000 4 105 105 1275 750 n\001 -4 0 0 50 0 16 12 0.0000 4 150 105 1650 1500 y\001 -4 0 0 50 0 16 12 0.0000 4 105 105 675 1500 n\001 -4 0 0 50 0 16 12 0.0000 4 150 105 2887 750 y\001 -4 0 0 50 0 16 12 0.0000 4 180 855 1687 367 Can it fly?\001 -4 0 0 50 0 16 12 0.0000 4 135 1110 697 1118 Does it bark?\001 -4 0 0 50 0 16 12 0.0000 4 135 255 548 1860 cat\001 -4 0 0 50 0 16 12 0.0000 4 180 315 1575 1860 dog\001 diff --git a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.png b/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.png deleted file mode 100644 index 3032015..0000000 Binary files a/sciphi/data/stock_raw/learning_with_python/illustrations/tree5.png and /dev/null differ diff --git a/sciphi/data/stock_raw/learning_with_python/preface.tex b/sciphi/data/stock_raw/learning_with_python/preface.tex deleted file mode 100644 index 3b15157..0000000 --- a/sciphi/data/stock_raw/learning_with_python/preface.tex +++ /dev/null @@ -1,257 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers. - -% Permission is granted to copy, distribute and/or modify this document under -% the terms of the GNU Free Documentation License, Version 1.1 or any later -% version published by the Free Software Foundation; with the Invariant -% Sections being "Contributor List", "Forward", and "Preface", with no -% Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is -% included in the section entitled "GNU Free Documentation License". - -% This distribution includes a file named fdl.tex that contains the text of the -% GNU Free Documentation License. If it is missing, you can obtain it from -% www.gnu.org or by writing to the Free Software Foundation, Inc., -% 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% -\chapter{Preface} - -By Jeff Elkner - -This book owes its existence to the collaboration made possible by the -Internet and the free software movement. Its three authors---a -college professor, a high school teacher, and a professional -programmer---have yet to meet face to face, but we have been able to -work closely together and have been aided by many wonderful folks who -have donated their time and energy to helping make this book better. - -We think this book is a testament to the benefits and future -possibilities of this kind of collaboration, the framework for which -has been put in place by Richard Stallman and the Free Software -Foundation. - - -\section*{How and why I came to use Python} - -In 1999, the College Board's Advanced Placement (AP) Computer Science -exam was given in C++ for the first time. As in many high schools -throughout the country, the decision to change languages had a direct -impact on the computer science curriculum at Yorktown High School in -Arlington, Virginia, where I teach. Up to this point, Pascal was the -language of instruction in both our first-year and AP courses. In -keeping with past practice of giving students two years of exposure to -the same language, we made the decision to switch to C++ in the -first-year course for the 1997-98 school year so that we would be in -step with the College Board's change for the AP course the following -year. - -Two years later, I was convinced that C++ was a poor choice to use for -introducing students to computer science. While it is certainly a very -powerful programming language, it is also an extremely difficult -language to learn and teach. I found myself constantly fighting with -C++'s difficult syntax and multiple ways of doing things, and I was -losing many students unnecessarily as a result. Convinced there had to -be a better language choice for our first-year class, I went looking -for an alternative to C++. - -I needed a language that would run on the machines in our Linux lab as -well as on the Windows and Macintosh platforms most students have at -home. I wanted it to be free and available electronically, so that -students could use it at home regardless of their income. I wanted a -language that was used by professional programmers, and one that had -an active developer community around it. It had to support both -procedural and object-oriented programming. And most importantly, it -had to be easy to learn and teach. When I investigated the choices -with these goals in mind, Python stood out as the best candidate for -the job. - -I asked one of Yorktown's talented students, Matt Ahrens, -to give Python a try. In two months he not only learned the language -but wrote an application called pyTicket that enabled our staff to -report technology problems via the Web. I knew that Matt could not -have finished an application of that scale in so short a time in C++, -and this accomplishment, combined with Matt's positive assessment of -Python, suggested that Python was the solution I was looking for. - - -\section*{Finding a textbook} - -Having decided to use Python in both of my introductory computer -science classes the following year, the most pressing problem was the -lack of an available textbook. - -Free content came to the rescue. Earlier in the year, Richard -Stallman had introduced me to Allen Downey. Both of us had written to -Richard expressing an interest in developing free educational -content. Allen had already written a first-year computer science -textbook, {\em How to Think Like a Computer Scientist}. When I read -this book, I knew immediately that I wanted to use it in my class. It -was the clearest and most helpful computer science text I had seen. -It emphasized the processes of thought involved in programming rather -than the features of a particular language. Reading it immediately -made me a better teacher. - -{\em How to Think Like a Computer Scientist} was not just an excellent -book, but it had been released under a GNU public license, which meant -it could be used freely and modified to meet the needs of its user. -Once I decided to use Python, it occurred to me that I could translate -Allen's original Java version of the book into the new language. -While I would not have been able to write a textbook on my own, having -Allen's book to work from made it possible for me to do so, at the -same time demonstrating that the cooperative development model used so -well in software could also work for educational content. - -Working on this book for the last two years has been rewarding for -both my students and me, and my students played a big part in the -process. Since I could make instant changes whenever someone found a -spelling error or difficult passage, I encouraged them to look for -mistakes in the book by giving them a bonus point each time they made -a suggestion that resulted in a change in the text. This had the -double benefit of encouraging them to read the text more carefully and -of getting the text thoroughly reviewed by its most important critics, -students using it to learn computer science. - -% I fixed this paragraph too: - -For the second half of the book on object-oriented programming, I knew -that someone with more real programming experience than I had would be -needed to do it right. The book sat in an unfinished state for the better -part of a year until the free software community once again provided the -needed means for its completion. - -I received an email from Chris Meyers expressing interest in the book. -Chris is a professional programmer who started teaching a programming -course last year using Python at Lane Community College in Eugene, -Oregon. The prospect of teaching the course had led Chris to the -book, and he started helping out with it immediately. By the end of -the school year he had created a companion project on our website at -{\tt http://www.ibiblio.org/obp} called {\em Python for Fun} and was -working with some of my most advanced students as a master teacher, -guiding them beyond where I could take them. - - -\section*{Introducing programming with Python} - -The process of translating and using {\em How to Think Like a Computer -Scientist} for the past two years has confirmed Python's suitability -for teaching beginning students. Python greatly simplifies -programming examples and makes important programming ideas easier to -teach. - -The first example from the text illustrates this point. -It is the traditional ``hello, world'' program, which in the C++ -version of the book looks like this: - -\begin{verbatim} - #include - - void main() - { - cout << "Hello, world." << endl; - } -\end{verbatim} - -in the Python version it becomes: - -\begin{verbatim} - print "Hello, World!" -\end{verbatim} - -Even though this is a trivial example, the advantages of Python stand -out. Yorktown's Computer Science I course has no prerequisites, so -many of the students seeing this example are looking at their first -program. Some of them are undoubtedly a little nervous, having heard -that computer programming is difficult to learn. The C++ version has -always forced me to choose between two unsatisfying options: either to -explain {\tt \#include}, {\tt void main()}, \{, and \}, -and risk confusing or intimidating some of the students right at the -start, or to tell them, ``Just don't worry about all of that stuff -now; we will talk about it later,'' and risk the same thing. The -educational objectives at this point in the course are to introduce -students to the idea of a programming language and to get them to -write their first program, thereby introducing them to the programming -environment. The Python program has exactly what is needed to do these -things, and nothing more. - -Comparing the explanatory text of the program in each version of -the book further illustrates what this means to the beginning student. -There are thirteen paragraphs of explanation of ``Hello, world!'' in the -C++ version; in the Python version, there are only two. More importantly, -the missing eleven paragraphs do not deal with the ``big ideas'' in -computer programming but with the minutia of C++ syntax. I found this -same thing happening throughout the book. Whole paragraphs simply -disappear from the Python version of the text because Python's much -clearer syntax renders them unnecessary. - -Using a very high-level language like Python allows a teacher to -postpone talking about low-level details of the machine until students -have the background that they need to better make sense of the -details. It thus creates the ability to put ``first things first'' -pedagogically. One of the best examples of this is the way in which -Python handles variables. In C++ a variable is a name for a place that -holds a thing. Variables have to be declared with types at least in -part because the size of the place to which they refer needs to be -predetermined. Thus, the idea of a variable is bound up with the -hardware of the machine. The powerful and fundamental concept of a -variable is already difficult enough for beginning students (in both -computer science and algebra). Bytes and addresses do not help the -matter. In Python a variable is a name that refers to a thing. This is -a far more intuitive concept for beginning students and is much closer -to the meaning of ``variable'' that they learned in their math -courses. I had much less difficulty teaching variables this year than -I did in the past, and I spent less time helping students with -problems using them. - -Another example of how Python aids in the teaching and learning of -programming is in its syntax for functions. My students have always -had a great deal of difficulty understanding functions. The main -problem centers around the difference between a function definition -and a function call, and the related distinction between a parameter -and an argument. Python comes to the rescue with syntax that is -nothing short of beautiful. Function definitions begin with the -keyword {\tt def}, so I simply tell my students, ``When you define a -function, begin with {\tt def}, followed by the name of the function -that you are defining; when you call a function, simply call (type) -out its name.'' Parameters go with definitions; arguments go with -calls. There are no return types, parameter types, or reference and -value parameters to get in the way, so I am now able to teach -functions in less than half the time that it previously took me, with -better comprehension. - -Using Python has improved the effectiveness of our computer science -program for all students. I see a higher general level of success and -a lower level of frustration than I experienced during the two years I -taught C++. I move faster with better results. More students leave -the course with the ability to create meaningful programs and with the -positive attitude toward the experience of programming that this -engenders. - - -\section*{Building a community} - -% Jeff: the following sentence sounds funny to me. You mention -% every continent and then Korea specifically. How about just -% the every continent part and take out the Korea? - -% done. - -I have received email from all over the globe from people using -this book to learn or to teach programming. A user community has -begun to emerge, and many people have been contributing to the -project by sending in materials for the companion website at -{\tt http://www.thinkpython.com}. - -With the publication of the book in print form, I expect the growth in -the user community to continue and accelerate. The emergence of this -user community and the possibility it suggests for similar -collaboration among educators have been the most exciting parts of -working on this project for me. By working together, we can increase -the quality of materials available for our use and save valuable time. -I invite you to join our community and look forward to hearing from -you. Please write to the authors at {\tt feedback@thinkpython.com}. - -\vspace{0.25in} -\begin{flushleft} -Jeffrey Elkner\\ -Yorktown High School\\ -Arlington, Virginia\\ -\end{flushleft} diff --git a/sciphi/data/stock_raw/learning_with_python/proposal.tex b/sciphi/data/stock_raw/learning_with_python/proposal.tex deleted file mode 100644 index e5902f0..0000000 --- a/sciphi/data/stock_raw/learning_with_python/proposal.tex +++ /dev/null @@ -1,326 +0,0 @@ -\documentclass{article} -\usepackage{url} - -\setlength{\parindent}{0.0in} -\setlength{\parskip}{1.7ex plus 0.5ex minus 0.5ex} -\renewcommand{\baselinestretch}{1.05} - -\title{Book Proposal: {\em Software Design}} -\author{} -\date{} - -\begin{document} - -\maketitle - -\section*{Author information} - -\begin{flushleft} -Prof. Allen B. Downey\\ -Olin College of Engineering\\ -Olin Way\\ -Needham, MA 02492\\ -\quad \\ -downey@allendowney.com\\ -781-292-2558 (w)\\ -781-292-2508 (f)\\ -\end{flushleft} - -Allen Downey is an Associate Professor of Computer Science at the Olin -College of Engineering. He has taught computer science at Wellesley -College, Colby College and U.C. Berkeley. He has a Ph.D. in Computer -Science from U.C. Berkeley and a Master's Degree from MIT. - -Detailed CV at \url{allendowney.com/downeyCV.pdf} - - -\section*{Software Design} - -{\em Software Design} is a revised and -updated version of {\em How to Think Like a Computer Scientist: Learning -with Python,} which was published in 2001. - -The book is intended for students with no programming experience. It starts -with the most basic concepts of programming, and is carefully designed -to define all terms when they are first used and to develop each new -concept in a logical progression. Larger pieces, like recursion and -object-oriented programming are divided into a sequence of smaller -steps and introduced over the course of several chapters. - -The book is concise. Each chapter is 10-12 pages and covers the -material for one week of a college course. It is not a comprehensive -presentation of Python; instead it focuses on the tools of -software design, starting with small functions and basic algorithms and -working up to object-oriented design. In the vocabulary of computer -science pedagogy, it uses the {\em objects late} approach. - - -\subsection*{The original book} - -{\em How to Think} is published under the GNU Free Documentation -License by Green Tea Press, which is a partnership of the author and -his wife. Green Tea Press provides electronic versions of the book at -\url{thinkpython.com} and sells hardcopies to individuals, college -bookstores, and through Amazon. - -The book is well known on the Internet and well regarded. A Google -search on the title and author yields more than 16,000 hits. The book -has received positive reviews from readers. It is used as a textbook -in classes at a number of colleges and universities, including Simon -Fraser University, Clark College, Albion College, University of -Illinois at Urbana-Champaign, U.C. Berkeley, U.C. San Diego and San -Diego State University. Internationally, the electronic version is -used at the Indian Institute of Technology at Kanpur, the University -of New South Wales (Australia), Utrecht University (Holland) and -Sirindhorn International Institute of Technology (Thailand). - - -\subsection*{The new book} - -{\em Software Design} is in some sense the second edition of {\em How to -Think.} My goals in updating and revising the book are: - -\begin{enumerate} - -\item To incorporate the material I have developed in my classes as a -series of case studies covering topics in software engineering: -functional abstraction, multi-layer interface design, data structure -selection and design, UML object and class diagrams, and basic -object-oriented design patterns. - -These case studies are based on a software suite I have written called -Swampy. Swampy is a set of Python modules that can run in a standard -Python installation. They provide an environment for a series of -exercises that include graphics and animation (the original book is -all text-based). The design and implementation of Swampy is the -subject of the last case study. The current version of Swampy -is available from \url{allendowney.com/swampy}. - -\item To update the examples in the book with features that are new in -Python, and to demonstrate more idiomatic Python style. - -\end{enumerate} - -\pagebreak -In addition, I am considering the following changes: - -\begin{enumerate} - -\item Changing the title to {\em Software Design}. The current title is a -whimsical working title that stuck. {\em Software Design} is a more -concise description of the contents; I think it is also a stronger -title (and it is not currently in use). - -A potential drawback of changing the title is that it might be more -difficult to take advantage of the international reputation of {\em How to -Think}. - -\item Removing Chapters 17 through 20. These chapters cover the -implementation of data structures. They are appropriate for a college -course on data structures (which is where they were developed), but -they are not essential to the focus of the book. Also, they are at a -lower level of abstraction than the rest of the book. - -\item Expanding Appendix B into a regular chapter. Defining special -functions to customize the behavior of user-defined objects is -an important technique in Python, and consistent with the new -focus of the book. - -\end{enumerate} - -I expect to work on these revisions in Summer 2007. I will have -a draft of the new chapters by July 1 and a complete manuscript by -September 1, 2007. - -I will prepare the manuscript in LaTeX; I can produce camera-ready PDF -or LaTeX files ready for professional typesetting. The manuscript -will include black-and-white figures like the ones in {\em How to Think}; -these could be used as-is or sent to a professional illustrator. - -I will also produce a version of Swampy that contains the programs -needed for the case studies, suitable for distribution along with the -book or on a web page. - - -\section*{Outline} - -The outline of the new book will follow {\em How to Think}, with the new -case studies interspersed: - -1. The way of the program. - -2. Variables, expressions and statements. - -3. Functions. - -\quad \quad Case study: functional abstraction. - -4. Conditionals and recursion. - -5. Fruitful functions. - -6. Iteration. - -\quad \quad Case study: encapsulation and generalization. - -7. Strings. - -8. Lists. - -9. Tuples. - -\quad \quad Case study: iteration and search. - -10. Dictionaries. - -11. Files and exceptions. - -12. Classes and objects. - -\quad \quad Case study: data structure selection. - -13. Classes and functions. - -14. Classes and methods. - -15. Sets of objects. - -\quad \quad Case study: algorithm design. - -16. Inheritance and UML. - -17. Customizing object behavior (revised version of Appendix B). - -\quad \quad Case study: object-oriented design. - -18. GUIs with Tkinter. - -\quad \quad Case study: design and implementation of Swampy. - -A. Debugging. - -The detailed table of contents from {\em How to Think} is included with -this proposal. The entire book is available from \url{thinkpython.com}. - -The chapters from {\em How to Think} will be revised and updated. Some -will be mostly unchanged; others will be substantially rewritten. -The case studies are new material based on homeworks I am using in my -class. Each case study presents an example program and a series of -exercises; then it presents solutions to some of the exercises and a -discussion of the concept the case study is meant to demonstrate. - -With 18 chapters, 7 case studies and an appendix, each 10-12 pages, -I expect the total page count to be 260--300 pages. - - -\section*{Sample Chapters} - -Along with this proposal I am submitting Chapters 12, 13 and 14 from -{\em How to Think}. These chapters introduce object-oriented programming -starting with user-defined types and attributes, functions that -operate on objects, and then methods. - -These chapters demonstrate several features of the book: - -\begin{enumerate} - -\item One concept at a time: I have divided the topics that give students -the most trouble into a series of small steps so that students can -exercise new concepts before going to the next step. - -\item Balance of language features and concepts: The book in not -primarily about Python; it uses Python examples to demonstrate -software engineering concepts. Most chapters start with language -features and end with concepts. - -\item Conciseness: An important goal of the book is to be small enough -that students can be expected to read and understand the entire book -in a one-semester course. Each chapter is 10-12 pages; students can -read 1-2 chapters per week, depending on the pace of the class. - -\item Emphasis on vocabulary: I am careful to define each term the first -time it appears, and each chapter ends with a glossary of new terms. - -\end{enumerate} - - -\section*{Readership} - -{\em Software Design} is appropriate as a textbook in an introductory -college or high school class. {\em How to Think} is currently in use -at a number of colleges and universities, and at some high schools. - -At the college level, some computer science departments are migrating -from Java to Python in their intro classes. In addition, many science -departments are using Python in classes that require basic -programming, especially Physics and Bioinformatics. - -{\em Software Design} is also appropriate for self-teachers and -home-schoolers. I get frequent email from individuals who are using -{\em How to Think} to teach themselves programming in Python. - -For professional programmers, the introductory chapters are probably -too basic, but the book is appropriate for professionals in other -fields who need to pick up programming. - - -\section*{Competition} - -The most direct competitors are: - -\begin{itemize} -\item {\em Learn to Program Using Python: A Tutorial for Hobbyists, -Self-Starters, and All Who Want to Learn the Art of Computer -Programming}, by Alan Gauld (2001). - -\item {\em Python Programming: An Introduction to Computer Science}, by John -M. Zelle (2003). -\end{itemize} - -Both books are aimed at beginning programmers. Gauld's is intended -for self-teachers; Zelle's is intended for computer science classes. - -Both books are well regarded, but when I checked the Amazon -sales ranks, {\em How to Think} was out-selling both (March 21, 2007). - -\begin{tabular}{l|l} -Author & Amazon sales rank\\ -\hline -Downey & $\sim$37,000\\ -Zelle & $\sim$135,000\\ -Gauld & $\sim$490,000\\ -\end{tabular} - -Gauld's book is getting old; it is possible that a new edition -will appear soon. Zelle's book is relatively new and probably -the most direct competition for the college textbook market. - - -\section*{Copyright} - -The copyright on {\em How to Think} is held by Allen Downey, Jeff Elkner -and Chris Meyers. We have released it under the GNU Free -Documentation License (FDL), which allows anyone to copy, modify and -distribute it. In fact, the Python version of the book exists because -Jeff Elkner took the Java version and translated it into Python. - -I am currently working with my co-authors to license their -contributions for use in {\em Software Design}. I will grant an -exclusive license to the publishers to print and distribute the final -version of the book, but I would like to keep the copyright and -maintain a draft version of the book on my web page under the FDL, -Creative Commons, or other license. - -% Best choice looks like: -% http://creativecommons.org/licenses/by-nc-sa/3.0/ - -My experience with {\em How to Think} convinces me that keeping a -version of the book under a permissive license has value for the -publisher. It encourages readers to contribute corrections and -suggestions (which gives us a head start on a future editions), it -allows potential adopters to test the material before committing to -it, and, maybe most important, it opens the door to future projects -that might never happen otherwise. - -\end{document} - diff --git a/sciphi/data/stock_raw/learning_with_python/storage/docstore.json b/sciphi/data/stock_raw/learning_with_python/storage/docstore.json deleted file mode 100644 index 62ecfe6..0000000 --- a/sciphi/data/stock_raw/learning_with_python/storage/docstore.json +++ /dev/null @@ -1 +0,0 @@ -{"docstore/metadata": {"6685c205-00b5-4be1-b3aa-d0e9dae77c44": {"doc_hash": "2d0de5a371df3746ab755a1c8ef8fa62d6b6741f0cbbd585e1aa8ec30cd54cd5"}, "e5d27f08-e86f-411d-8d21-6cb9b9015eeb": {"doc_hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "65bb8589-485e-470d-b83a-68f40dd30598": {"doc_hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "c3fd772a-d386-4522-bf40-858dcb47beef": {"doc_hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "3f9cbb80-96f4-46f0-ba04-876c6740f788": {"doc_hash": "13ddcd1cfae725738279879c65c8cc78d2cddb7e1bc4f5ac6d9cc212c04cf188"}, "5586efe2-3b14-4421-84e8-ebd27a3acbe8": {"doc_hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "6798d972-db6f-4157-b244-43106ac2bb95": {"doc_hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "dbfcaa25-9f49-4920-a7a3-aa56fe190ede": {"doc_hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "55e9377f-cd20-4e8f-b312-4037fb435a8a": {"doc_hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "7bf09652-9a97-4f30-bc07-da12c2260de4": {"doc_hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c": {"doc_hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "06e73d4b-883b-4bd7-8bf9-7799be07321a": {"doc_hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "b39a27f4-bb19-4496-9cd3-a6710b808acd": {"doc_hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "4b44e675-64e5-457e-909e-a1553348de00": {"doc_hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "4c0e9bc5-b047-4250-a300-230f1a16cd97": {"doc_hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1": {"doc_hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2d4bd6b2-e597-4231-9fd7-ee576f2d485d": {"doc_hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "ef7906f0-0f42-4ca1-aaea-654d1c6674a9": {"doc_hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "366d85d8-9b45-40c4-992e-849cf65da266": {"doc_hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "646aed1c-3013-452e-ad89-93702220a065": {"doc_hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "6addee7a-a48c-4a90-9101-cb696f59a62d": {"doc_hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2bf315b5-29d8-46ec-a209-9313b0a60382": {"doc_hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "fc58a467-8927-4a0e-8f27-d70a9b65fae3": {"doc_hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a": {"doc_hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "32abb63a-2e47-4a29-a7e8-d187222d3e60": {"doc_hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "5a928013-b632-48cb-9ecd-b5670356cf8f": {"doc_hash": "7f41150f0ccac5de9bd0f529d47c68f3bd3f0cae633bde82cf0e31aedc727847"}, "a52d9267-6dab-41e4-861d-c627c9c03f5f": {"doc_hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "0d121388-4770-427c-beea-56d66cb85583": {"doc_hash": "0b40d73c911a2d66b9fe0977dfd4046d01c6c7eae283e866efa9a6a2f5ba5fbe"}, "b3ffcbd6-d068-4eaf-a60f-e172eaff7869": {"doc_hash": "577db7bc866e14083156471eb8420b66d9371633765b835c49996779b3a70371"}, "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f": {"doc_hash": "0a2a113b43bfaa43a52ce8145683bbd80010569267471d3d1aec093d606025b6"}, "54d8490b-0b63-40b6-8012-d279ddde92c8": {"doc_hash": "17a6fee2e3ea4e1355794d27faa230d4762c1c81e7e5a290d0cbcb141f9581ed"}, "67f8511a-826b-4d6f-acf1-6dcca534434d": {"doc_hash": "f3a7b1c00b19c4b7962b8c015f2d8255201bf3176ba2b8717404b87b722c8e4a"}, "19141fb6-d671-4159-b23c-c79984a6ccf1": {"doc_hash": "52248a5cca29a828d9d7e75d8e56e8251f21208e2402aff5d5c62b84939cd4fc"}, "1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f": {"doc_hash": "78e3c420a5ad6788e8c4fd7533250788075ab0342b0e9a52bc7497eacee22fa9", "ref_doc_id": "6685c205-00b5-4be1-b3aa-d0e9dae77c44"}, "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec": {"doc_hash": "a54ca5563833affe082df54603a8ff5d304f2f193ff11ace50a039ba529737af", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "43e2934d-8b5a-4253-a65c-6963192bf333": {"doc_hash": "7a508ee3dd4a0e32fae4ad124e6a2219ea76a3d835b5aba56428da48b87c59d7", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "e6412f55-0e69-40ea-9d17-2ba2dc205df8": {"doc_hash": "a5a8c47e83fbeb9a38180b1d98159a2a34172ec8413a49ef8c4c39f759a7af33", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "30edcd48-606d-40a4-b815-a31a30ffd824": {"doc_hash": "d2ab03878d9b54993e12a50a3aadb0ed01d62810af3626b906247c6f2cf35b09", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "08affb40-2cbf-4b09-aa2b-e31dde7a6daa": {"doc_hash": "1f360d1eed989980b4a720e5a8581ab25ec4b29cab3fa5c5499e8d516b3b3d06", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "a7c1cef1-ba90-4dd4-a366-05c37ea5289f": {"doc_hash": "459b255aaa99abe51b2d93b6b9616b4cb0aaa881e5e3d0fa08d15df03128db3b", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "ad10fe86-f437-47cb-873c-2c6cd3329369": {"doc_hash": "32ce97c8a961e4838906499414caf6b1b44216acf9103b5aea3127795a68da21", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "a49e389c-f457-4114-bb4a-7ab41ec6490c": {"doc_hash": "ccb23ac1e210312a6e96836172661b1b2644ff363b9d2cde9f25dd9084822379", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "c381a8cb-0c74-4ec8-9dd4-326416f7bc32": {"doc_hash": "974022a8cb3d401c102f7509746e9a85638d99d96d0fb354864e8f1bfd43b7c1", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "6d7285c2-c06b-4c3e-9c04-eb4cb0482338": {"doc_hash": "94407d163baa5a82d88ae62fd0a010477a747f1761636e2dc4784737c48637a6", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9": {"doc_hash": "97749fa349984a6a862128ee102d91a5710d06a1d28d59972d864c3f3e85ed5b", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "209fc505-f77b-42eb-a0ec-3c89bc7993dd": {"doc_hash": "4ffdd0ede983743bbfdd1fd7cf20b9120c23de078fa46a2afe415f7a92c466fc", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "38d0187e-fd3c-40fe-84c5-6038c6db529f": {"doc_hash": "5938289984a317ba20f61ce85fcac21d37d7daebb763be62fe8079039cd28ed5", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21": {"doc_hash": "d84f8b9f58c60fe60a4ffb576b47443f48e038de630d0a65abcc579ed7d7ca94", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5": {"doc_hash": "39b7496d8f9ca5e24f724490f33246e875632ad1b3d240c2e08c68bda8ff3529", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "d2c42aad-be12-4391-9d49-6f98b336a7aa": {"doc_hash": "092b9c6a0a8a3c4e5dbc84d46610623d0ea06bb2176a27ca2ef416b3cf42521e", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "9447d812-d668-42d7-860b-27936468ab3d": {"doc_hash": "7ad434cd80cbdb3e8af1825252b1e1c5a1ca5ab88d2cea1cbad62dccf2dfa9cd", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "b8d382cd-0334-429b-9834-99a34e818741": {"doc_hash": "abddb556fe5a507c9f3357bc8e6efcf625649f60906693bdd6cbfc63e98d620c", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e": {"doc_hash": "70fc42c11782e3c18eb67a219b3930e1c6dfbf5c70fb3abf8ce4bd5a5fd1fb9c", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f": {"doc_hash": "6f4b6a69e05d7a06e46cd221598a962bdcf8a185dbf6fbeba0c56578a031ecc1", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "28a02a3b-dde7-460a-9f99-bcb347d728bb": {"doc_hash": "b958722109282c2318f4bb211ca1add17ad4f93fcfa8cea4669e7d4f42f566c7", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "741aa787-463c-4189-b641-510278e53f0f": {"doc_hash": "84fc49ee8070b2fde61902c7c9e12aec417f46d9cc5413878bdae44c468f7a15", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "3fa2421e-8b56-472f-bdf8-db7bd95d817d": {"doc_hash": "d5754f01e316b06668db1612f2f689c26af446e6a2482936869789e90e925d3b", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c": {"doc_hash": "9a438ff50f67593f88a984e2af8204abca40e2001458f1aa8ea5e4757251246a", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "b7059d13-4bf1-4044-b228-2d2a847e89a2": {"doc_hash": "86a12bb25274512e7ebae2038e6260fd902522c730de1c906114aedff7b45ba6", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "44d86782-fbbf-4972-bfa0-f05631ace2d2": {"doc_hash": "558da0a43cd04931223993d4a1a08966112ce0390dff9a3f6afa7f17796bdd8e", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "c127a5a8-e5bd-4e52-98f2-f01c12db95b3": {"doc_hash": "38a54077c96472bd457c79487b8d0c6defbacf9c06da7a18d3e613ca6388cab3", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "ea53cead-3e5e-49cf-9c71-78029f117c0a": {"doc_hash": "0353c8c63ffd3cf2c8bca45b1511d60671a512e574466f9d5f8a7fd74c60b670", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "447c0f42-0e4f-435d-97c3-e88d6657386c": {"doc_hash": "4324122ab1082f88fd54da91482af49bb2a4ad71d574ee2559d2e57b7ce3361e", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "26da9a8c-b014-4fbf-b7f5-47bf05613a9e": {"doc_hash": "35ea34d7270a2e749579877a41946d4135bda2b305fc8d8362034a947cfae1bd", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "62c45f91-a5d5-4db9-997b-7f2538092433": {"doc_hash": "52819b4fcfd4c6c00a8ae1f0693e15a36aab4c87ec6779d16282b7aad14ec498", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e": {"doc_hash": "dde9b17d31a19665e7d931375e831222ca1a71ac2140bb25160590a276a6fc90", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "95c352af-8078-4534-aad1-1124f88c56dd": {"doc_hash": "c9f1f1a0a174191f8d06a10f4968ef9c52da3ea8117b9a6060c4af34de37533b", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "2cad634c-c9c9-4205-9361-baa79a34008c": {"doc_hash": "cc555f57c1239ca33f570436cefcee835b32b76cbcb33ccf32099df9a15fe819", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "74429688-a399-4fd6-87c6-98bf364281ed": {"doc_hash": "5f434e21025926ae56c723241a99c30b6f946215da3264d75e75267f5eff837e", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "5051091c-194f-49a1-8289-f686858300ec": {"doc_hash": "785ae50a1841e82e384cdf5ff50bd2ac979b4beb5096840084d61bed2c617ed7", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "4f932ede-8209-44e0-9202-0d644d756afc": {"doc_hash": "0e84ddac98747c405e502006642d6d3e7470ef7dfbd2b4cd913b71149fa1ce02", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5379d4a0-b2cd-45ea-b795-818ae80fb090": {"doc_hash": "db3ab9f794c6bc32994357788ef9b09bd45c1845b4e3b1f2cea1d2d6a867fb96", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "34ed9af4-83b2-4f32-b700-fc003541f5a6": {"doc_hash": "b39d55b3e1e1c72a63dc1ac5c690425d5ccc64a50f51a30cbc999f46633ef5f9", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5f510fb4-a8c9-4360-a742-ec2f3b45bab6": {"doc_hash": "c3ee9ecaa1533590c5ad83c14b30e730a8fd23632dc0a079b6ed80d05d431764", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "d5bc4479-681b-42f3-914e-09acf2d7ed74": {"doc_hash": "e2ef8a897f8ff911a14e783cfe44e22ce0b141fa07618b0c8efe0c48e5350a6d", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "3a459cfa-8984-45f1-a5d4-819cc5044aa9": {"doc_hash": "fc59565496f8526cd269311cfc7d970dd966982686e0fef17d9086159b1bcd1e", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "660b852a-0985-4490-aad3-e7b3ccfb829c": {"doc_hash": "ed839f334ebae923b5e66572139359ae41f05eafeb6973bd5e5e6a5eb7104d75", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "464a4c61-76db-4671-84b1-48da946f5f78": {"doc_hash": "0e6e8529bb52b92222ed5065f984191aa6a9cffccdf0b7318ce8fb5f8e43a780", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5948f425-654c-4cee-98e0-b64a0fb4bbe5": {"doc_hash": "c0747f39cb321155994aa1a7f0dceeb7d36f62c3e05bb8ba40f4a13d51f3b935", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "3f9412e4-a749-4bff-8739-4606b31ea8f1": {"doc_hash": "b75825908cb534ddf54717ef19fffceaa87b581b68363c796e5e39ca22a7ad9b", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "be0a3801-aaf8-41f3-9996-6218b1366d18": {"doc_hash": "e0bc4a8fc5709dddb9cd2778b9ee7aba1d015e8097c5ad3d89bb88d531cdaa13", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "248058b8-0d54-48db-9a21-55b77aa1eb04": {"doc_hash": "165dc46c35331e1ab3885ef62876246e1d8aed29feda1cec34a76d92d5d388ef", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "59c02e3e-4304-4e19-bab8-b92039c0a2e8": {"doc_hash": "f4daefb30b3ef3501567388026a9b208e8ac0d24814e9788300368e21a601a3b", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "a45af541-a681-431f-8e18-14c46748011c": {"doc_hash": "15fe45391510db384bc0b8663a112201d8d26a2232ac89211e69571dce6e7b20", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "9800400e-4b08-40de-8eab-a8030438fdea": {"doc_hash": "21bb590a14b2eb024b6b7b0118e63e810aad91067577b812808bb7f34ec95840", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "8d110233-ce34-468f-904d-59986c253e79": {"doc_hash": "db88dc1bf19b9df3b887bdfe88b7abc75d6397237b8ac9c7f9377520c34aaa05", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "3654c353-73a0-4429-8b80-706b16bf79e3": {"doc_hash": "59e3869dbaf0d118e518f88c79ca7246fd59964b2bb979e4dc39c7858013d221", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8c681b3e-fbde-4214-adaf-f9d1300c9aee": {"doc_hash": "c1eaf39f9c960a77077b3a27b5b68a284c2adaa8d60e1b31e60b79e875061ea6", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8defb448-9071-4fc8-85d7-1c8c7994b068": {"doc_hash": "48805f2dac73bcc5930214ba32b30b3508ec0f39735dcbfe2475ce425e649c70", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a": {"doc_hash": "c498aa9aee283b9c50a4ff756d8ab370718d65f6ee25a861b1c4848addf9dc00", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8a42847e-d34b-4214-83fd-6613a4b84086": {"doc_hash": "68e08f377e5d902f0c5b4cac2f3bf3bf1872124dad8a3d0140d11992a1de1429", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "46465398-05f7-49ec-bc8c-c6f1d9696bcc": {"doc_hash": "f799bc7d4024b191bda25186b0e879b121bf3405fddc6c6bcd5b0652e296d1aa", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "66035af3-6ef1-495b-a24c-4e6642d277f4": {"doc_hash": "e4f6e4c329b81bee01e2f9f5963590a686af8de1925d89241a622bf30a26a71c", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "c3def67b-d763-4f94-9a2b-53b81a1be41b": {"doc_hash": "e0de621c8f5dc66ffd4526067a206cdd6240c7b4d39bb1aed59e7073e65d8052", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "36bb8e59-f2dd-4374-897e-a97830ae042b": {"doc_hash": "bb97a49fc2fcba8fa0e78a36e3028bcd54d6cb9688b608cc60d45d3b82152840", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "c1505c31-0d44-4e42-964c-1889324dc33b": {"doc_hash": "3b29f95d26e4bc8cf9efb6b7e6c20614ba0ebdb05f1ea4ddf221381fc1d8323a", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "bc137aa3-66e7-417d-951c-5d12b6ca21e9": {"doc_hash": "78704f05722c95e6173a791658398749b63ca2e032a997e562bbd45654cb6bc4", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "b5804993-458b-4b01-b13c-ad4cb9ea1c30": {"doc_hash": "91f5a8a93bc4930ee0fed4741ede2f265ddef8d3e179b24a4027f639d08c956e", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "b7cf44ff-494b-4b14-90d2-f358a2dbea32": {"doc_hash": "3fb09aa26d0f69f30389e5277d8946c6202b8bd44e3c29b0b228f9b5f057b18a", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "3a60dc4d-a8c5-4b8a-8389-dc972fdab765": {"doc_hash": "527392256c90d1aea5202f9244de0e50e3b03fb499c7abe2297d51e53f0e96d3", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "655b870a-ed3a-476f-a19f-b05285203802": {"doc_hash": "39973f7aafae1fff0fdbc03b503091613c88da708c667eae48d682f384283f64", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "6e24f274-bc98-41ba-bba6-1275248af13c": {"doc_hash": "70b574ba8f109cf968e93f0cdbf9af4c97ea13b67350193080cc1b86be104d66", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70": {"doc_hash": "e0d88610c6309454c22e59eee75277fdd3d3bd750de908681b32efb7997ae38d", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "45053040-3fa3-4bb5-aa00-7a11811e4098": {"doc_hash": "c998bd41bd90fb5669f9772e811d2b9f396d3813d744700ccc020a925464a3ff", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "959cccdc-8990-470a-a8e8-64ef3ca824bd": {"doc_hash": "6d01005fba986675f0fdb396a209a5f9f6f8542d9a66c6c83d091fba1edbe052", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "3c0babf6-7299-46e3-8b25-a99533bce746": {"doc_hash": "735d0bcca2a9e6bf0e0865ac194f1224cd14bec22dcd15c00403a1b97ee91d77", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "80c4a719-ec82-4874-b183-7aef4ca5dceb": {"doc_hash": "c14255fc7cb2121cc92a304d83326b4fc20ad2c30728da8a5af136f17b42a9df", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "e3602a25-424c-4f8a-9898-c34357bd7420": {"doc_hash": "45efb16a6a470e7975752ab12fb92c62e1e978f426a22a113367ee70fe64c150", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "8875d27e-0ca8-4ae5-82bf-284d04df8f36": {"doc_hash": "86ea4db9491e6908f37130994adc90bc0b61be3ac33910a2dd967767a690320a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "0f8f3308-6725-46c7-84bd-19d9d9f68ceb": {"doc_hash": "bfb52c67219bbd387f8057784cb43dfde2c07d3b11dda9a1e596edf573d375fb", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "eee0cc8b-2935-4cba-b198-f2213e577473": {"doc_hash": "f7c431161d8e3cd8c3969c70ce8c4b32e77dc348980850ebd500017d70751227", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "c82bed89-8f47-4ba3-98c6-40149c08d156": {"doc_hash": "7b80c006cacb8d13182073b618e9440bad1e116aa98c9a87c8ff853dca213a9a", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "7fc185be-53f4-469d-8b85-7384546f2dae": {"doc_hash": "4cd6de72fb0ca14346c1a9f8b2cc6480e907d94927d42989cc07de5783930cd7", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "f395dbda-eaef-4363-890a-e136eb12c483": {"doc_hash": "7e33ab922458ecd5da7d328afa5afedb030ae07d89ea7c3a670c06a3ab5e278f", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "edae333f-d2c1-4fc5-b558-50faf36e419a": {"doc_hash": "5839bf742ede3dc1a28ba0a65d602886266d9398291d62e5d0e4d531b121b87a", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "359df20b-7775-474e-b3a4-bfbbc0e8a56c": {"doc_hash": "d1761e9915c9a111e140e9f096bf7a562e02ff7cc65d2c55aec846c665d2e536", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e": {"doc_hash": "022f4fd091c6ca4b9954bb35645e04c2055850653debe4fec86ccf62a7fec0a3", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "f8a816c2-2836-40c3-b2e7-5e2ea5584eab": {"doc_hash": "6523a7be6879e96e94c153c7ad9d95ed19b3df1bc33c36966695347313b8b39d", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "faba4ae7-0c67-498f-a704-eabd35773868": {"doc_hash": "bb5b82e3d02fadef2a20dbbb63ab1ba8646f53735c084188740097225d50b54c", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "00b14091-118e-4451-ad88-dd7db709b135": {"doc_hash": "63ea626e5a80338b543b599ac89b67aafc2e3bd4de82f2091a370b3e98ed1f84", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b": {"doc_hash": "c39643e53282c6a2902f89c717f8ffcd27ad3fa95addb68d9a12e5ed6a1e5b19", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "31aa5116-27d2-4e25-9ea7-e39a90baf975": {"doc_hash": "ea6989e45e373ef22ea75b6c97c976cc3aff927456dc089c0d3e3f1833d67228", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "bfda4cdd-355f-44cd-a333-592fb7cbade4": {"doc_hash": "c3ced4734c6b97d8f3ff2bd52171d803850326402dc41a65902f00fcf2b1f84e", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "7517e8c9-e829-47be-a792-3bb7aedb40a7": {"doc_hash": "4a99eea3c36191d40ec408c6796f60e5bb4cac4b086b7f0f25d2fa092224e2c1", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "eeeefeaf-d448-4ed2-967b-ac85b7dc012e": {"doc_hash": "b1784dbf90b13f34642c68fa4873209e8e0680eaf59af102003de67f516da973", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "7fd9dd64-d020-4c02-8c3e-7e498557b7e6": {"doc_hash": "1b5465abfaa4d670fddf0f276070e4fed2e3fbbbe627fb47495e250c0d7ae2f4", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "78fce47a-97ce-40a1-a41d-45c29ec1c6ff": {"doc_hash": "bae8a0a240f9b1c1edac65dea11aed7477bea31c7107f7c4f0703c4ab0e1b8d2", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "270fc7ae-49fc-4d87-a3e7-04ec0577a426": {"doc_hash": "1d211337437ef34e3a0b188e3abc96baba35800c4eb752b01eb498d33f203c37", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "d37333a6-d060-47f4-9e0e-29273ac89aa1": {"doc_hash": "1ea09d693255a02045d4b11b587061c36225487037d5f32662564f9c4abc11f1", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "97c67d12-52ac-46ba-8df3-c740bb16e497": {"doc_hash": "af9128b4ef3f5d78dc5775bc63983a22e49646210837bd8c49691302fabc10af", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "1f9270dc-5439-4eb4-b6a8-bee468243ae9": {"doc_hash": "c8f3ccc4ea92632c2cb9d2d005bd4273a87a900b950209d4c216e4d4953b6daf", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "bf7b3e64-7e63-4c9a-b611-622581711e8d": {"doc_hash": "44988c9b900451859896bf15a4d2ee70437d9f3127d76ea444a09f2dbe5391e5", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "00b4a5d7-9bbd-4055-a1cf-f54e5357911b": {"doc_hash": "58c74a8f753f5627524f31a15d25ca3823e7767588d8981d79d3d5734186b907", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "cf0db177-d4a6-45eb-838d-074b79670592": {"doc_hash": "43b14ce32fcbe430ac7a49c5c61f792365a67437d17c515df23b7a2431efb030", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "fd76a23c-a4e7-463d-a4e4-2a999724795f": {"doc_hash": "c2f26a06a13a8c34996b3bba6eddd01e5f9a98fdb969824ee331a9cda28592f7", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b": {"doc_hash": "fea80c013bc777615b447136967f5829cce51a5caf3c430029739f7a7570b906", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "932ade67-eecb-47cd-b5fe-567427a3003a": {"doc_hash": "07a84d5219ebb70e08a263e735277406d289fbe9f4653530e22aabcc83663663", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935": {"doc_hash": "440752e479fc4dedd1ba69410b16d0856ceefc1e0c71b515611ce14d07a4fce9", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "4a21db87-f1d9-4f48-97ed-ef89e1c22707": {"doc_hash": "1539a4e6540a2bca7f8f8836e2e375cd96b6f518168a3ac4db8442cbdee1051e", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "ff5d255c-4788-45d5-b921-9cca84b2584a": {"doc_hash": "d4a3047c021c639998773a0db2ad69874968db10e38ce6d4c4c23e48897df884", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "9e3a1ee4-9a16-458d-9d23-3a155e95ef79": {"doc_hash": "09e2f91ace6e3b0832a4449b8f755d2dd903e4574546a3a5b36e1bd8fe21eb8e", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "a5376a45-de84-4321-b327-d9e9c6742a8c": {"doc_hash": "9d40abf92aabc151deeb50290e5dc23aa7146a691774e27b6b926ae21e5baed7", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "87d37a51-fbbf-4575-a224-dfbce78025c6": {"doc_hash": "5e6eef98523896bc62410c1c73f53a52920519adc1b12c2ed8bf3ab19827f2d3", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "ddbf5900-58bf-41be-acf1-43b900410da6": {"doc_hash": "cf00de856470d0f93df4216db55d35e75ddd0601cddb0ba350c4e8dd9cebf30b", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "98b2ce96-a564-4c85-8471-1014e50c45b1": {"doc_hash": "946943857ee755604a90416a5e4b4d33aa5221a2e688316b802a1d7c67dc8ae0", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "1146c533-2788-4aa9-a68e-2f129677a095": {"doc_hash": "a79d816ddaa242ae78b2fbbb57e01037234551b2ccf808209266b0d06f392cf5", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "5501c185-c58a-4ee2-8d66-f373eb14f7f4": {"doc_hash": "99e9dfb7a97674614b7624ab714204a731b4d2bb19bcde2408d2b5674c269c50", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "7ce69457-887b-4129-bc12-be646345587b": {"doc_hash": "ca7c78b3730f011f3219cf582de6261520bd15fb73cc9ac44e08b27091db4c4f", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "a19ef6b2-886a-49f0-972c-adb25d81ea44": {"doc_hash": "4baaf7b2aa101a77215f23e189ff222d7b0a287f9ef2eafc57bd72fea437f727", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "914c76dc-6aab-47cf-9ab6-731981d942fe": {"doc_hash": "2bb253b03abf79883db91c75870deeed1338862fd3737db7e30c66510f030892", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "935bce25-2dce-433f-a117-7583d47ec888": {"doc_hash": "f83432b03f65234a53edb52755f63594d0536a0667d3c4b8da37022fd371562e", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "51d8576b-7e29-4750-b6b9-0f17693077d5": {"doc_hash": "6e1cd873a606730dcbbdac3c8bad1d3343c396891f9e2b9757a9b98f94a85ce3", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "55da5c49-c77a-4ce6-bd25-70b055db9658": {"doc_hash": "3d3ad5040d68562d80881264221853bee312c95716209c65eeb1dae802613120", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "ba390c38-cbab-4d5e-8737-21c68d6599e7": {"doc_hash": "1a5a9aa0002ddef1d1557bf29f583276843c7d92c259e266efcec81402c206de", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107": {"doc_hash": "3894241940c94a0e32a0e323c09a4bba1e11147200eba206597d7efdc1456b7b", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "b62efdf3-cde0-49ba-a7d5-68d8a09f3118": {"doc_hash": "8b2375437d05a095f1c85fe363b70772b135362e793a36290f674c50e64483f4", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "63f94e80-9f22-4700-ae0d-393029b21a47": {"doc_hash": "2f9299287a3afeaf3b2def0068bf39ce1eca2146b935474248cf094e47c86b99", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "51feec6d-2627-4b9e-a339-7524953b135c": {"doc_hash": "25019c40bdb85ee5999eedd9249928dfff52668c73bda9c1fe41d1be4c625a8a", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "02835535-81cb-4b99-9c36-7f722fe56e53": {"doc_hash": "b24b0bd67833645a1ebfccdb6e6e85a50c281f1938fe87df5f5c58209c41ae47", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b": {"doc_hash": "0c3b580fa3ef72e5ff87d9b928d55c2dd65960e707d43cd58f02fef5121d1ae9", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "d428515b-e422-458d-bb7c-b19c19acc64f": {"doc_hash": "ce9cc4d7f158e93fd0695065adee00f2cabf8bf698da3b12604b526fd0bdd429", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "4dc159c0-87f3-4130-8b29-fa95cb66e1bc": {"doc_hash": "d6eb1ce3dcd65d3816205f481b4326b92c4ad584347d4c0405b190ae8a15ca0a", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "8b135e07-e798-40ba-af9c-57338f8631ef": {"doc_hash": "6899501b84c600436d66b5d567d75c4a824be929c044416dc936f7986ad599a1", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "c2d8f160-644e-487d-a842-4813e7c6728d": {"doc_hash": "c010cb5298dcb69ffc5b352ad8a919cbda75092b18e5318c0836318bb3552096", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "7c41061f-967d-433f-978a-b0172c1cb3cd": {"doc_hash": "c910eb9d8d1eca71319aacbd190890c1ad9c9ea7c453f44df8793e5804d04e1f", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "74be3d9d-1ed6-45ea-a122-395f60330929": {"doc_hash": "5cd6f70b2804d1b24aec15e1e826138f33c05d9ae9ce2d698a98212122060565", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "31272119-3229-40a3-86bb-2282ac6d6fe3": {"doc_hash": "e7874bd96c74c16941dd40551f92dcf0e95adeab5b15bdeb478937b0b69903dd", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "27c585f2-eae8-4e0d-a64f-18a6221e0644": {"doc_hash": "ee9e254face0623d802cc1c88a4ae0391c730d5972e7453e5068a08c57e3ec23", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e": {"doc_hash": "56713eb38bfce0b6cecc0bad8195c6ecd9647ea18c040acbe6dc24b4ffa4da1f", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "efb2b508-2e2f-4b13-8294-bb36a71e2634": {"doc_hash": "6845a6b79bf426ef06758c89090cd292058386cb3481f5833b53fd8381ad4278", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e": {"doc_hash": "eeda2fc197f222a84f728ad71382816cbb05f127ffbc740048ab6bf76e7c491d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "aec60a8e-dde5-4c5d-884a-af18bb204b1e": {"doc_hash": "8d438a45faf9044d0e7a4937e3ad378950ddbcb05f5c65a28fbebe83788b75c5", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "35a31964-52f0-4c13-bab7-e0ab575a3d7f": {"doc_hash": "d5dca9c98d00e103e62cf33160781328a89bfdd4ebd813796d8407743654acc5", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "23d3f456-47be-4dd3-8b8c-6c00f1d47889": {"doc_hash": "0e47dd7e8c9e1d1c8405d07d07141960cc371b55a2521ac5eb943198ea00def7", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "ff51296b-eafb-4862-88aa-ff2bae8c82eb": {"doc_hash": "1274e1c2a558a9509c835f08e844109519d283a8b4928dc7e2b6d19cf21d7784", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd": {"doc_hash": "b471cd308127118a448259ca5d2f91be229191023dea978dd129615ad04cff92", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "ce31c578-fc0a-442c-acfd-232fb07ca028": {"doc_hash": "f198ae69d02251fa4b9fc8fce14f45658799c226378a5c5dfaf016130a7a664f", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b": {"doc_hash": "b6acd7c1de2b5526221930acebb962014b6692f62952ccd588cd38d3c4255c7f", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "6429847b-17f8-4e4e-8ec9-289a9f5b74d1": {"doc_hash": "f1a511c92efd1c56cacf7a38c8aa95b4b0eccb7b74f9adf32fbd7877a601cb8c", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd": {"doc_hash": "7e0a196bdd4d8ebc78d86ba0bbf5e0df62cd34e730f234e7d810b60d31ee7af1", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "3f2a1579-dc10-4d61-84ec-282a3582fe16": {"doc_hash": "2a20f834115c4851cff73e9d108a92aec459ebc79fa23d4839c6c5daa9fc972e", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "b84c306f-9568-4e43-93d6-8e8a7e64cc3a": {"doc_hash": "dc01ee77f70cf366da39bc3ac1907312e1a9e6d5f46469557773eebae24a7e02", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "8e899819-777f-4540-b925-c8eaa4b25258": {"doc_hash": "2d3ed8cff1dd13f332c62e49eecc7f9add5718567118890eb5f1ae3ad187ed38", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "a12a726d-e5d7-4615-8f14-60665e34ec67": {"doc_hash": "d4644a0e7b7e2f2bc85d9aa1c86e5573f4123b3a52c423a5222934b0137b53b2", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "523b9723-f604-4ad0-9140-1f46a38c90fd": {"doc_hash": "4122c20abd81e8691d018e9088e99d27852f6acde85eddbfc732a4266d7c5e00", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "97f8d001-26d2-4042-87a6-da4c7e9df3d1": {"doc_hash": "ff1182aff21e30e45365304dbd5f8cb7c21d7dc5a77967f4dc1761521faa8ec5", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "aacf5ef9-6dbd-40de-991b-a512b0552188": {"doc_hash": "6988493b68075730d2a7e7b9f4c8bf2f5fb1a648e20961b24df72ddc1fddeded", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "decefc81-7ed0-450c-b7ad-bbc3f17b4994": {"doc_hash": "308874d968e9a1f54122dfba8f08a0139070e9fd371d93aa38ffb613154d7f12", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6": {"doc_hash": "b31873bf80194ccd1fa5a7ec223dafdef36d3f7c5a79ba6c82ded8b6bb0f2565", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "c3556ce3-e8dc-44df-9263-115d43ae8b65": {"doc_hash": "0fb3dc59b92afc33c1046e28b3a9eb3e7a95eb91c6d567991ddbac9ea17ee459", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "b7618784-7da4-4ea7-a537-e13e4e6958a4": {"doc_hash": "a013dba54d0d6ef7c3d103be964f9858564bddfb6f8b09b9566a24f40d4b2f65", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "015f77e0-1857-45de-9299-ae361ba2bb5a": {"doc_hash": "8d8286332f0e7f59ff18614dbf4933ad752ae082c2deea18b21836c3cf414681", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "c8f16d49-c530-47af-a49c-3e0f2e6edac3": {"doc_hash": "e1b541c5ec4f4da58c5fc27e332a45414061851b923c608bbae6df4f69256b64", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "751318bf-7121-43da-88b3-b0c3e382e2f8": {"doc_hash": "cff5a136b79ff1a13723070392fd599de7d3897b65364e9bdaae5b7bb9e5dd95", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "0938a373-57be-4f0f-bb30-8bd66beac402": {"doc_hash": "c3fff470a16513cb292218e49b6203dd8277351a27e02d9c17d72b2702c6990f", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "b8d3d508-5cbc-4dc0-b528-dc4943c195cc": {"doc_hash": "c31d6acee2a9557ee3687a5da5cc1a82ccac2eebc18186b533cdc7385a0789d8", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "d67269bf-5add-49da-8086-3ce46606e311": {"doc_hash": "625b688d45e930159a20f739b58a69b56f82b5183b0a2d0b22ddae0a52823e69", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "9efa0d03-95f2-447c-99c0-3085b92d0f82": {"doc_hash": "443a6dd30e3175fda78a8445fa8fa1838b6adebdcd52d6300685a700dd5dcf3c", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "f301d3a7-e76e-456d-9b46-6b971f9d23b2": {"doc_hash": "f11409314c1ca089a897bbee3e231022a9e5b61f10e0119e714b5401cc45753c", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "4c2e44e7-e40e-4937-96de-44c0628f61f4": {"doc_hash": "32a8ef382b4c72e15be715b540a642628a52a346dec288fc745735ed77d703b3", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "7a406987-eba0-4222-a34f-7ad3724a5604": {"doc_hash": "4f99a93acd3b54691adee1dbcd250a5e0d455b7a873f1006c153557e57e8d8a5", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "ec793519-e044-423d-ba4b-21c3ec916891": {"doc_hash": "0cc21ecce0950ad45477642b3d7ab969684cda22f2bc5464074a02cc93713111", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "83808199-cb49-4a60-bcfe-27a4b9d3b685": {"doc_hash": "d235af6c0c0d9dd50b29801e7115c4f9693143ea647f2102785801e7a1a83972", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "3363e09a-1ab4-4c17-bb8a-e6752917130a": {"doc_hash": "b310582126abe7f22a23f77d5ebbfd167da4140e0889452bb41f85d86c97afe0", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "476b4f33-d161-4cbe-a216-dbfa745ef944": {"doc_hash": "d026bf3148ce7eed284ab214d1b8281e43888f702170fcaa308d60eceb9cd4b7", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "479ce05c-61fd-4bea-8a73-e26b16cd3e70": {"doc_hash": "9ffd6d66ae282c4b6e078f4c3d0f733d65d624415d7b4f9faaa1df77421b6283", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "47ee3c46-bad3-4aac-99eb-11a0b98ebf20": {"doc_hash": "b6d96f6c3bb85d8d2ef242e9324190aabf190cbb627ccce99162a6a233c4fe12", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "20146fda-7b8b-4d03-adb9-1c79e9d87125": {"doc_hash": "8fb629faf6434d074fff0c3901cfb286836d07fb31a5c0d8547e951f88190ae7", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "ff608a4c-36da-45aa-ad71-ea74392d397c": {"doc_hash": "9e60dd0ae06caca1fc2f8663c3e0bdee8325468f7b2f7d4fb7efcc73f9497246", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "7a9c5d00-cd62-4a4e-9607-bd6caef08515": {"doc_hash": "ee5af6ea10dab8858f260571cbd1ebf89be906bd0c04223241b6e631a54319f2", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "f620bea9-7052-4504-ade1-ba5cf9d769a4": {"doc_hash": "ae310102f38996585d9f421e65b7a66ebb1ca7935d2883e29b4f8ffcc21ed096", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7": {"doc_hash": "f83e3e9e3c499efceed6397ee27c034ff9c155bd4e8b363981fb506232717fd7", "ref_doc_id": "0d121388-4770-427c-beea-56d66cb85583"}, "9936a434-0aae-4070-99e6-d1abeb440546": {"doc_hash": "2460627122e40a72441e17a25d4c23df94c9b47ddab6e7f916df03a5fb7c83e4", "ref_doc_id": "0d121388-4770-427c-beea-56d66cb85583"}, "278d2c56-536c-4910-9fcb-daa1088cb994": {"doc_hash": "d0cadb0544a7ae24020f1f7f75cf378dbb16af9f5b1c78d07bc111afed98d681", "ref_doc_id": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869"}, "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3": {"doc_hash": "14ab568893315f28a4139c512caa7438c5c3a925383bdc5b59a46baf256caa6a", "ref_doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f"}, "df1de581-9827-42fd-b1ed-e2fc4ca4899b": {"doc_hash": "0ab42e8bb8555d8d2e7dfeb401d0a405c7da1f2142367c403333f55dd55148eb", "ref_doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f"}, "bb687d40-1093-4eaf-90c9-d0eb2e3dade1": {"doc_hash": "157789eb3883f33793554435b09c77efb4e71b422caa0cd6926cc6df54f6d868", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "9f7ff698-db2b-41ab-9c8e-c255d8e3a586": {"doc_hash": "30225d1d620a45435660145c2cf70d664f4ab379978f8abfcae8457eb644a312", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "d665cef5-0e08-47bb-9e34-0b0767c0f1ff": {"doc_hash": "56bda4d8dc2d4757dc8c5e73aeade85037a8ae23a386cd1e07a122ee06b087b5", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "0e222bbb-583f-4ab9-84e6-79c3709b03e8": {"doc_hash": "0edad6f6276b8d016b26f62fc060f05d9459472758c445b0bbb27546705a246c", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "3b555f83-9634-48a7-b8c0-a207c923d7bf": {"doc_hash": "0dcc7072302d5126368c031c9a46be39e9a5c8fbc2dd8ed06d78d31f7503bcfd", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "45498fda-c622-4a9a-a1bc-4d2124f9b64d": {"doc_hash": "a42a15e17cec9ebc34c5cd830e1e87a8e85c24a0575a022f3974d309df5201af", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "53b70118-7161-41bf-9e8c-8c33daf2307b": {"doc_hash": "800c73d895b6819ee26d24b9d5d2544e90e0064fdd3d6a342c549f0be092140f", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "a0fa9976-9308-4e10-bcbc-a24ff57cef61": {"doc_hash": "11803adb34695647c904fff7c7a6d6a24f7bd69ac39825d453003fb6b92dd1b5", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "50ce3962-d5f7-44be-81d3-35dfd06afa74": {"doc_hash": "e6f860615f0c043f0c414ff83d2479880ffb8ea2f65477e4ed7810b6aa4cfb6f", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "5cabf076-22d0-4480-a111-3d87c6574c5b": {"doc_hash": "c5aae1a71b8a96beee91d7b04e40db4103decae1e2c12867fa644572c181f742", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021": {"doc_hash": "28dce084bd07ad83be25dea4ae4ab7adba66a8731985fc08700282f7d69f3fca", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "e79cb32e-d193-420b-9804-a5e004fdb394": {"doc_hash": "27ed8717605c75805706437a34d70bb46bdbcab8437ffce47367529735cf1ee4", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}}, "docstore/data": {"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f": {"__data__": {"id_": "1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6685c205-00b5-4be1-b3aa-d0e9dae77c44", "node_type": null, "metadata": {}, "hash": "2d0de5a371df3746ab755a1c8ef8fa62d6b6741f0cbbd585e1aa8ec30cd54cd5"}}, "hash": "78e3c420a5ad6788e8c4fd7533250788075ab0342b0e9a52bc7497eacee22fa9", "text": "LATEX = latex\n\nDVIPS = dvips\n\nPDFFLAGS = -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress \\\n -dCompressPages=true -dUseFlateCompression=true \\\n -dEmbedAllFonts=true -dSubsetFonts=true -dMaxSubsetPct=100\n\n%.dvi: %.tex\n\t$(LATEX) $<\n\n%.ps: %.dvi\n\t$(DVIPS) -o $@ $<\n\n%.pdf: %.ps\n\tps2pdf $(PDFFLAGS) $<\n\nall:\ttop.tex\n\tlatex top\n\tmakeindex top\n\tlatex top\n\tdvips -T 6.75in,9.25in -Ppdf -o thinkCSpy.ps top\n#\tdvips -T 7.444in,9.681in -Ppdf -o thinkCSpy.ps top\n\tps2pdf $(PDFFLAGS) thinkCSpy.ps\n\nDEST = /home/downey/public_html/greent/thinkpython/thinkCSpy\n\ndistrib:\n\trm -rf dist\n\tmkdir dist dist/tex dist/html\n\trsync -a thinkCSpy.pdf thinkCSpy.ps dist\n\trsync -a Makefile *.tex dist/tex\n\trsync -a illustrations dist/tex\n\trm dist/tex/illustrations/*.bak\n\trsync -a images dist/html\n\tmkdir dist/html/illustrations\n\trsync -a illustrations/*.png dist/html/illustrations\n\tcd dist/tex; make clean\n\tcd dist; tar -czf thinkCSpy.tex.tar.gz tex\n\tcd ltoh; perl make_book_html.pl ../dist/tex ../dist/html\n\tcd dist; tar -czf thinkCSpy.html.tar.gz html\n\tcd dist; cp thinkCSpy.tex.tar.gz thinkCSpy.tex.tgz\n\tcd dist; cp thinkCSpy.html.tar.gz thinkCSpy.html.tgz\n\trsync -a dist/* $(DEST)\n\tchmod -R o+r $(DEST)/*\n\nclean:\n\trm -f *~ *.aux *.log *.dvi *.idx *.ilg *.ind *.toc\n\n\nprop:\n\tzip downey_software_design.zip proposal/proposal.pdf proposal/table_of_contents.pdf proposal/chapters12-14.pdf", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec": {"__data__": {"id_": "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "3": {"node_id": "43e2934d-8b5a-4253-a65c-6963192bf333", "node_type": null, "metadata": {}, "hash": "7a508ee3dd4a0e32fae4ad124e6a2219ea76a3d835b5aba56428da48b87c59d7"}}, "hash": "a54ca5563833affe082df54603a8ff5d304f2f193ff11ace50a039ba529737af", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\\chapter{Debugging}\n\\index{debugging}\n\nDifferent kinds of errors can occur\nin a program, and it is useful to distinguish among them\nin order to track them down more quickly:\n\n\\begin{itemize}\n\n\\item Syntax errors are produced by Python when it is\ntranslating the source code into byte code. They usually\nindicate that there is something wrong with the syntax of the program.\nExample: Omitting the colon at the end of a {\\tt def} statement yields\nthe somewhat redundant message {\\tt SyntaxError: invalid syntax}.\n\n\\item Runtime errors are produced by the runtime system if something\ngoes wrong while the program is running. Most runtime error messages\ninclude information about where the error occurred and what functions\nwere executing.\nExample: An infinite recursion eventually causes\na runtime error of ``maximum recursion depth exceeded.''\n\n\\item Semantic errors are problems with a program that compiles and\nruns but doesn't do the right thing. Example: An expression may\nnot be evaluated in the order you expect, yielding an unexpected\nresult.\n\n\\end{itemize}\n\n\\index{compile-time error}\n\\index{syntax error}\n\\index{runtime error}\n\\index{semantic error}\n\\index{error!compile-time}\n\\index{error!syntax}\n\\index{error!runtime}\n\\index{error!semantic}\n\\index{exception}\n\nThe first step in debugging is to figure out which kind of\nerror you are dealing with. Although the following sections are\norganized by error type, some techniques are\napplicable in more than one situation.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "43e2934d-8b5a-4253-a65c-6963192bf333": {"__data__": {"id_": "43e2934d-8b5a-4253-a65c-6963192bf333", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec", "node_type": null, "metadata": {}, "hash": "a54ca5563833affe082df54603a8ff5d304f2f193ff11ace50a039ba529737af"}, "3": {"node_id": "e6412f55-0e69-40ea-9d17-2ba2dc205df8", "node_type": null, "metadata": {}, "hash": "a5a8c47e83fbeb9a38180b1d98159a2a34172ec8413a49ef8c4c39f759a7af33"}}, "hash": "7a508ee3dd4a0e32fae4ad124e6a2219ea76a3d835b5aba56428da48b87c59d7", "text": "\\section{Syntax errors}\n\n\\index{error messages}\n\\index{compiler}\n\nSyntax errors are usually easy to fix once you figure out what they\nare. Unfortunately, the error messages are often not helpful.\nThe most common messages are {\\tt SyntaxError: invalid syntax} and\n{\\tt SyntaxError: invalid token}, neither of which is very informative.\n\nOn the other hand, the message does tell you where in the program the\nproblem occurred. Actually, it tells you where Python\nnoticed a problem, which is not necessarily where the error\nis. Sometimes the error is prior to the location of the error\nmessage, often on the preceding line.\n\n\\index{incremental program development}\n\nIf you are building the program incrementally, you should have\na good idea about where the error is. It will be in the last\nline you added.\n\nIf you are copying code from a book, start by comparing\nyour code to the book's code very carefully. Check every character.\nAt the same time, remember that the book might be wrong, so\nif you see something that looks like a syntax error, it might be.\n\nHere are some ways to avoid the most common syntax errors:\n\n\\index{syntax}\n\n\\begin{enumerate}\n\n\\item Make sure you are not using a Python keyword for a variable name.\n\n\\item Check that you have a colon at the end of the header of every\ncompound statement, including {\\tt for}, {\\tt while},\n{\\tt if}, and {\\tt def} statements.\n\n\\item Check that indentation is consistent. You may indent with either\nspaces or tabs but it's best not to mix them. Each level should be\nnested the same amount.\n\n\\item Make sure that any strings in the code have matching\nquotation marks.\n\n\\item If you have multiline strings with triple quotes (single or double), make\nsure you have terminated the string properly. An unterminated string\nmay cause an {\\tt invalid token} error at the end of your program,\nor it may treat the following part of the program as a string until it\ncomes to the next string. In the second case, it might not produce an error\nmessage at all!\n\n\\item An unclosed bracket---\\verb+(+, \\verb+{+, or \\verb+[+---makes\nPython continue with the next line as part of the current statement.\nGenerally, an error occurs almost immediately in the next line.\n\n\\item Check for the classic {\\tt =} instead of {\\tt ==} inside\na conditional.\n\n\\end{enumerate}\n\nIf nothing works, move on to the next section...\n\n\n\\subsection{I can't get my program to run no matter\nwhat I do.}\n\nIf the compiler says there is an error and you don't see it, that\nmight be because you and the compiler are not looking at the same\ncode. Check your programming environment to make sure that the\nprogram you are editing is the one Python is trying to run. If you\nare not sure, try putting an obvious and deliberate syntax error at\nthe beginning of the program. Now run (or import) it again. If the\ncompiler doesn't find the new error, there is probably something wrong\nwith the way your environment is set up. \n\nIf this happens, one approach is to start again with a new\nprogram like ``Hello, World!,'' and make sure you can get a known\nprogram to run. Then gradually add the pieces of the new program\nto the working one.\n\n\n\n\\section{Runtime errors}\n\nOnce your program is syntactically correct,\nPython can import it and at least start running it. What could\npossibly go wrong?\n\n\n\\subsection{My program does absolutely nothing.}\n\nThis problem is most common when your file consists of functions and classes\nbut does not actually invoke anything to start execution. This may be\nintentional if you only plan to import this module to supply classes\nand functions.\n\nIf it is not intentional, make sure that you\nare invoking a function to start execution, or execute one from\nthe interactive prompt. Also see the ``Flow of Execution'' section\nbelow.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e6412f55-0e69-40ea-9d17-2ba2dc205df8": {"__data__": {"id_": "e6412f55-0e69-40ea-9d17-2ba2dc205df8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "43e2934d-8b5a-4253-a65c-6963192bf333", "node_type": null, "metadata": {}, "hash": "7a508ee3dd4a0e32fae4ad124e6a2219ea76a3d835b5aba56428da48b87c59d7"}, "3": {"node_id": "30edcd48-606d-40a4-b815-a31a30ffd824", "node_type": null, "metadata": {}, "hash": "d2ab03878d9b54993e12a50a3aadb0ed01d62810af3626b906247c6f2cf35b09"}}, "hash": "a5a8c47e83fbeb9a38180b1d98159a2a34172ec8413a49ef8c4c39f759a7af33", "text": "\\subsection{My program hangs.}\n\\index{infinite loop}\n\\index{infinite recursion}\n\\index{hanging}\n\nIf a program stops and seems to be doing nothing, we\nsay it is ``hanging.'' Often that means that it is caught in\nan infinite loop or an infinite recursion.\n\n\\begin{itemize}\n\n\\item If there is a particular loop that you suspect is the\nproblem, add a {\\tt print} statement immediately before the loop that says\n``entering the loop'' and another immediately after that says\n``exiting the loop.''\n\nRun the program. If you get the first message and not the second,\nyou've got an infinite loop. Go to the ``Infinite Loop'' section\nbelow.\n\n\\item Most of the time, an infinite recursion will cause the program\nto run for a while and then produce a ``RuntimeError: Maximum\nrecursion depth exceeded'' error. If that happens, go to the\n``Infinite Recursion'' section below.\n\nIf you are not getting this error but you suspect there is a problem\nwith a recursive method or function, you can still use the techniques\nin the ``Infinite Recursion'' section.\n\n\\item If neither of those steps works, start testing other\nloops and other recursive functions and methods.\n\n\\item If that doesn't work, then it is possible that\nyou don't understand the flow of execution in your program.\nGo to the ``Flow of Execution'' section below.\n\n\\end{itemize}\n\n\n\\subsubsection{Infinite Loop}\n\\index{infinite loop}\n\\index{loop!infinite}\n\\index{condition}\n\\index{loop!condition}\n\nIf you think you have an infinite loop and you think you know\nwhat loop is causing the problem, add a {\\tt print} statement at\nthe end of the loop that prints the values of the variables in\nthe condition and the value of the condition.\n\nFor example:\n\n\\beforeverb\n\\begin{verbatim}\nwhile x > 0 and y < 0 :\n # do something to x\n # do something to y\n\n print \"x: \", x\n print \"y: \", y\n print \"condition: \", (x > 0 and y < 0)\n\\end{verbatim}\n\\afterverb\n%\nNow when you run the program, you will see three lines of output\nfor each time through the loop. The last time through the\nloop, the condition should be {\\tt false}. If the loop keeps\ngoing, you will be able to see the values of {\\tt x} and {\\tt y},\nand you might figure out why they are not being updated correctly.\n\n\n\\subsubsection{Infinite Recursion}\n\\index{infinite recursion}\n\\index{recursion!infinite}\n\nMost of the time, an infinite recursion will cause the program to run\nfor a while and then produce a {\\tt Maximum recursion depth exceeded}\nerror.\n\nIf you suspect that a function or method is causing an infinite\nrecursion, start by checking to make sure that there is a base case.\nIn other words, there should be some condition that will cause the\nfunction or method to return without making a recursive invocation.\nIf not, then you need to rethink the algorithm and identify a base\ncase.\n\nIf there is a base case but the program doesn't seem to be reaching\nit, add a {\\tt print} statement at the beginning of the function or method\nthat prints the parameters. Now when you run the program, you will see\na few lines of output every time the function or method is invoked,\nand you will see the parameters. If the parameters are not moving\ntoward the base case, you will get some ideas about why not.\n\n\n\\subsubsection{Flow of Execution}\n\\index{flow of execution}\n\\index{execution!flow}\n\nIf you are not sure how the flow of execution is moving through\nyour program, add {\\tt print} statements to the beginning of each\nfunction with a message like ``entering function {\\tt foo},'' where\n{\\tt foo} is the name of the function.\n\nNow when you run the program, it will print a trace of each\nfunction as it is invoked.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "30edcd48-606d-40a4-b815-a31a30ffd824": {"__data__": {"id_": "30edcd48-606d-40a4-b815-a31a30ffd824", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "e6412f55-0e69-40ea-9d17-2ba2dc205df8", "node_type": null, "metadata": {}, "hash": "a5a8c47e83fbeb9a38180b1d98159a2a34172ec8413a49ef8c4c39f759a7af33"}, "3": {"node_id": "08affb40-2cbf-4b09-aa2b-e31dde7a6daa", "node_type": null, "metadata": {}, "hash": "1f360d1eed989980b4a720e5a8581ab25ec4b29cab3fa5c5499e8d516b3b3d06"}}, "hash": "d2ab03878d9b54993e12a50a3aadb0ed01d62810af3626b906247c6f2cf35b09", "text": "\\subsection{When I run the program I get an exception.}\n\\index{exception}\n\\index{runtime error}\n\nIf something goes wrong during runtime, Python\nprints a message that includes the name of the\nexception, the line of the program where the problem occurred,\nand a traceback.\n\n\\index{traceback}\n\nThe traceback identifies the function that is currently running,\nand then the function that invoked it, and then the function that\ninvoked {\\em that}, and so on. In other words, it traces the\npath of function invocations that got you to where you are. It\nalso includes the line number in your file where each of these\ncalls occurs.\n\nThe first step is to examine the place in the program where\nthe error occurred and see if you can figure out what happened.\nThese are some of the most common runtime errors:\n\n\\begin{description}\n\n\\item[NameError:] You are trying to use a variable that doesn't\nexist in the current environment.\nRemember that local variables are local. You\ncannot refer to them from outside the function where they are defined.\n\n\\index{NameError}\n\\index{TypeError}\n\n\\item[TypeError:] There are several possible causes:\n\n\\begin{itemize}\n\n\\item You are trying to use a value improperly. Example: indexing\na string, list, or tuple with something other than an integer.\n\n\\index{index}\n\n\\item There is a mismatch between the items in a format string and\nthe items passed for conversion. This can happen if either the number\nof items does not match or an invalid conversion is called for.\n\n\\index{format operator}\n\\index{operator!format}\n\n\\item You are passing the wrong number of arguments to a function or method.\nFor methods, look at the method definition and\ncheck that the first parameter is {\\tt self}. Then look at the\nmethod invocation; make sure you are invoking the method on an\nobject with the right type and providing the other arguments\ncorrectly.\n\n\\end{itemize}\n\n\\item[KeyError:] You are trying to access an element of a dictionary\nusing a key value that the dictionary does not contain.\n\n\\index{KeyError}\n\\index{dictionary}\n\n\\item[AttributeError:] You are trying to access an attribute or method\nthat does not exist.\n\n\\index{AttributeError}\n\n\\item[IndexError:] The index you are using\nto access a list, string, or tuple is greater than\nits length minus one. Immediately before the site of the error,\nadd a {\\tt print} statement to display\nthe value of the index and the length of the array.\nIs the array the right size? Is the index the right value?\n\n\\index{IndexError}\n\n\\end{description}\n\n\n\\subsection{I added so many {\\tt print} statements I get inundated with\noutput.}\n\\index{print statement}\n\\index{statement!print}\n\nOne of the problems with using {\\tt print} statements for debugging\nis that you can end up buried in output. There are two ways\nto proceed: simplify the output or simplify the program.\n\nTo simplify the output, you can remove or comment out {\\tt print}\nstatements that aren't helping, or combine them, or format\nthe output so it is easier to understand.\n\nTo simplify the program, there are several things you can do. First,\nscale down the problem the program is working on. For example, if you\nare sorting an array, sort a {\\em small} array. If the program takes\ninput from the user, give it the simplest input that causes the\nproblem.\n\nSecond, clean up the program. Remove dead code and reorganize the\nprogram to make it as easy to read as possible. For example, if you\nsuspect that the problem is in a deeply nested part of the program,\ntry rewriting that part with simpler structure. If you suspect a\nlarge function, try splitting it into smaller functions and testing them\nseparately.\n\nOften the process of finding the minimal test case leads you\nto the bug. If you find that a program works\nin one situation but not in another,\nthat gives you a clue about what is going on.\n\nSimilarly, rewriting a piece of code can help you find subtle\nbugs. If you make a change that you think doesn't affect the\nprogram, and it does, that can tip you off.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "08affb40-2cbf-4b09-aa2b-e31dde7a6daa": {"__data__": {"id_": "08affb40-2cbf-4b09-aa2b-e31dde7a6daa", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "30edcd48-606d-40a4-b815-a31a30ffd824", "node_type": null, "metadata": {}, "hash": "d2ab03878d9b54993e12a50a3aadb0ed01d62810af3626b906247c6f2cf35b09"}, "3": {"node_id": "a7c1cef1-ba90-4dd4-a366-05c37ea5289f", "node_type": null, "metadata": {}, "hash": "459b255aaa99abe51b2d93b6b9616b4cb0aaa881e5e3d0fa08d15df03128db3b"}}, "hash": "1f360d1eed989980b4a720e5a8581ab25ec4b29cab3fa5c5499e8d516b3b3d06", "text": "\\section{Semantic errors}\n\\index{semantic error}\n\\index{error!semantic}\n\nIn some ways, semantic errors are the hardest to debug,\nbecause the compiler and the runtime system provide no information\nabout what is wrong. Only you know what the program is supposed to\ndo, and only you know that it isn't doing it.\n\nThe first step is to make a connection between the program\ntext and the behavior you are seeing. You need a hypothesis\nabout what the program is actually doing. One of the things\nthat makes that hard is that computers run so fast.\n\nYou will often wish that you could slow the program down to human\nspeed, and with some debuggers you can. But the time it takes to\ninsert a few well-placed {\\tt print} statements is often short compared to\nsetting up the debugger, inserting and removing breakpoints, and\n``walking'' the program to where the error is occurring.\n\n\\subsection{My program doesn't work.}\n\nYou should ask yourself these questions:\n\n\\begin{itemize}\n\n\\item Is there something the program was supposed to do but\nwhich doesn't seem to be happening? Find the section of the code\nthat performs that function and make sure it is executing when\nyou think it should.\n\n\\item Is something happening that shouldn't? Find code in\nyour program that performs that function and see if it is\nexecuting when it shouldn't.\n\n\\item Is a section of code producing an effect that is not\nwhat you expected? Make sure that you understand the code in\nquestion, especially if it involves invocations to functions or methods in\nother Python modules. Read the documentation for the functions you invoke.\nTry them out by writing simple test cases and checking the results.\n\n\\end{itemize}\n\nIn order to program, you need to have a mental model of how\nprograms work. If you write a program that doesn't do what you expect,\nvery often the problem is not in the program; it's in your mental\nmodel.\n\n\\index{model!mental}\n\\index{mental model}\n\nThe best way to correct your mental model is to break the program\ninto its components (usually the functions and methods) and test\neach component independently. Once you find the discrepancy\nbetween your model and reality, you can solve the problem.\n\nOf course, you should be building and testing components as you\ndevelop the program. If you encounter a problem,\nthere should be only a small amount of new code\nthat is not known to be correct.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a7c1cef1-ba90-4dd4-a366-05c37ea5289f": {"__data__": {"id_": "a7c1cef1-ba90-4dd4-a366-05c37ea5289f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "08affb40-2cbf-4b09-aa2b-e31dde7a6daa", "node_type": null, "metadata": {}, "hash": "1f360d1eed989980b4a720e5a8581ab25ec4b29cab3fa5c5499e8d516b3b3d06"}, "3": {"node_id": "ad10fe86-f437-47cb-873c-2c6cd3329369", "node_type": null, "metadata": {}, "hash": "32ce97c8a961e4838906499414caf6b1b44216acf9103b5aea3127795a68da21"}}, "hash": "459b255aaa99abe51b2d93b6b9616b4cb0aaa881e5e3d0fa08d15df03128db3b", "text": "\\subsection{I've got a big hairy expression and it doesn't\ndo what I expect.}\n\\index{expression!big and hairy}\n\nWriting complex expressions is fine as long as they are readable,\nbut they can be hard to debug. It is often a good idea to\nbreak a complex expression into a series of assignments to\ntemporary variables.\n\nFor example:\n\n\\beforeverb\n\\begin{verbatim}\nself.hands[i].addCard (self.hands[self.findNeighbor(i)].popCard())\n\\end{verbatim}\n\\afterverb\n%\nThis can be rewritten as:\n\n\\beforeverb\n\\begin{verbatim}\nneighbor = self.findNeighbor (i)\npickedCard = self.hands[neighbor].popCard()\nself.hands[i].addCard (pickedCard)\n\\end{verbatim}\n\\afterverb\n%\nThe explicit version is easier to read because the variable\nnames provide additional documentation, and it is easier to debug\nbecause you can check the types of the intermediate variables\nand display their values.\n\n\\index{temporary variable}\n\\index{variable!temporary}\n\\index{order of evaluation}\n\\index{precedence}\n\nAnother problem that can occur with big expressions is\nthat the order of evaluation may not be what you expect.\nFor example, if you are translating the expression\n$\\frac{x}{2 \\pi}$ into Python, you might write:\n\n\\beforeverb\n\\begin{verbatim}\ny = x / 2 * math.pi\n\\end{verbatim}\n\\afterverb\n%\nThat is not correct because multiplication and division have\nthe same precedence and are evaluated from left to right.\nSo this expression computes $x \\pi / 2$.\n\nA good way to debug expressions is to add parentheses to make\nthe order of evaluation explicit:\n\n\\beforeverb\n\\begin{verbatim}\n y = x / (2 * math.pi)\n\\end{verbatim}\n\\afterverb\n%\nWhenever you are not sure of the order of evaluation, use\nparentheses. Not only will the program be correct (in the sense\nof doing what you intended), it will also be more readable for\nother people who haven't memorized the rules of precedence.\n\n\n\\subsection{I've got a function or method that doesn't return what I\nexpect.}\n\\index{return statement}\n\\index{statement!return}\n\nIf you have a {\\tt return} statement with a complex expression,\nyou don't have a chance to print the {\\tt return} value before\nreturning. Again, you can use a temporary variable. For\nexample, instead of:\n\n\\beforeverb\n\\begin{verbatim}\nreturn self.hands[i].removeMatches()\n\\end{verbatim}\n\\afterverb\n%\nyou could write:\n\n\\beforeverb\n\\begin{verbatim}\ncount = self.hands[i].removeMatches()\nreturn count\n\\end{verbatim}\n\\afterverb\n%\nNow you have the opportunity to display the value of\n{\\tt count} before returning.\n\n\n\\subsection{I'm really, really stuck and I need help.}\n\nFirst, try getting away from the computer for a few minutes.\nComputers emit waves that affect the brain, causing these\neffects:\n\n\\begin{itemize}\n\n\\item Frustration and/or rage.\n\n\\item Superstitious beliefs (``the computer hates me'') and\nmagical thinking (``the program only works when I wear my\nhat backward'').\n\n\\item Random-walk programming (the attempt to program by writing\nevery possible program and choosing the one that does the right\nthing).\n\n\\end{itemize}\n\nIf you find yourself suffering from any of these symptoms, get\nup and go for a walk. When you are calm, think about the program.\nWhat is it doing? What are some possible causes of that\nbehavior? When was the last time you had a working program,\nand what did you do next?\n\nSometimes it just takes time to find a bug. We often find bugs\nwhen we are away from the computer and let our minds wander. Some\nof the best places to find bugs are trains, showers, and in bed,\njust before you fall asleep.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ad10fe86-f437-47cb-873c-2c6cd3329369": {"__data__": {"id_": "ad10fe86-f437-47cb-873c-2c6cd3329369", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "node_type": null, "metadata": {}, "hash": "18bcc2a26edb52927481ba8ebb3c2ab800deac0bdd679a15548186b97f086ea0"}, "2": {"node_id": "a7c1cef1-ba90-4dd4-a366-05c37ea5289f", "node_type": null, "metadata": {}, "hash": "459b255aaa99abe51b2d93b6b9616b4cb0aaa881e5e3d0fa08d15df03128db3b"}}, "hash": "32ce97c8a961e4838906499414caf6b1b44216acf9103b5aea3127795a68da21", "text": "\\subsection{No, I really need help.}\n\nIt happens. Even the best programmers occasionally get stuck.\nSometimes you work on a program so long that you can't see the\nerror. A fresh pair of eyes is just the thing.\n\nBefore you bring someone else in, make sure you have exhausted\nthe techniques described here. Your program should be as simple\nas possible, and you should be working on the smallest input\nthat causes the error. You should have {\\tt print} statements in the\nappropriate places (and the output they produce should be\ncomprehensible). You should understand the problem well enough\nto describe it concisely.\n\nWhen you bring someone in to help, be sure to give\nthem the information they need:\n\n\\begin{itemize}\n\n\\item If there is an error message, what is it\nand what part of the program does it indicate?\n\n\\item What was the last thing you did before this error occurred?\nWhat were the last lines of code that you wrote, or what is\nthe new test case that fails?\n\n\\item What have you tried so far, and what have you learned?\n\n\\end{itemize}\n\nWhen you find the bug, take a second to think about what you\ncould have done to find it faster. Next time you see something\nsimilar, you will be able to find the bug more quickly.\n\nRemember, the goal is not just to make the program\nwork. The goal is to learn how to make the program work.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a49e389c-f457-4114-bb4a-7ab41ec6490c": {"__data__": {"id_": "a49e389c-f457-4114-bb4a-7ab41ec6490c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "3": {"node_id": "c381a8cb-0c74-4ec8-9dd4-326416f7bc32", "node_type": null, "metadata": {}, "hash": "974022a8cb3d401c102f7509746e9a85638d99d96d0fb354864e8f1bfd43b7c1"}}, "hash": "ccb23ac1e210312a6e96836172661b1b2644ff363b9d2cde9f25dd9084822379", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\n\\chapter{Creating a new data type}\n\\label{overloading}\n\\index{data type!user-defined}\n\nObject-oriented programming languages allow programmers to create new\ndata types that behave much like built-in data types. We will explore\nthis capability by building a {\\tt Fraction} class that works very much\nlike the built-in numeric types: integers, longs and floats.\n\nFractions, also known as rational numbers, are values that can be expressed\nas a ratio of whole numbers, such as $5/6$. The top number is\ncalled the numerator and the bottom number is called the denominator.\n\n\\index{rational}\n\\index{fraction}\n\\index{numerator}\n\\index{denominator}\n\nWe start by defining a {\\tt Fraction} class with an initialization\nmethod that provides the numerator and denominator as integers:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n def __init__(self, numerator, denominator=1):\n self.numerator = numerator\n self.denominator = denominator\n\\end{verbatim}\n\\afterverb\n%\nThe denominator is optional. A Fraction with just one\nparameter represents a whole number. If the numerator\nis $n$, we build the Fraction\n$n/1$.\n\nThe next step is to write a {\\tt \\_\\_str\\_\\_} method that\ndisplays fractions in a way that makes sense. The form\n``numerator/denominator'' is natural here:\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n def __str__(self):\n return \"%d/%d\" % (self.numerator, self.denominator)\n\\end{verbatim}\n\\afterverb\n%\nTo test what we have so far, we put it in a file named\n{\\tt Fraction.py} and import it into the Python interpreter.\nThen we create a fraction object and print it.\n\n\\beforeverb\n\\begin{verbatim}\n>>> from Fraction import Fraction\n>>> spam = Fraction(5,6)\n>>> print \"The fraction is\", spam\nThe fraction is 5/6\n\\end{verbatim}\n\\afterverb\n%\nAs usual, the {\\tt print} command invokes the {\\tt \\_\\_str\\_\\_}\nmethod implicitly.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c381a8cb-0c74-4ec8-9dd4-326416f7bc32": {"__data__": {"id_": "c381a8cb-0c74-4ec8-9dd4-326416f7bc32", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "2": {"node_id": "a49e389c-f457-4114-bb4a-7ab41ec6490c", "node_type": null, "metadata": {}, "hash": "ccb23ac1e210312a6e96836172661b1b2644ff363b9d2cde9f25dd9084822379"}, "3": {"node_id": "6d7285c2-c06b-4c3e-9c04-eb4cb0482338", "node_type": null, "metadata": {}, "hash": "94407d163baa5a82d88ae62fd0a010477a747f1761636e2dc4784737c48637a6"}}, "hash": "974022a8cb3d401c102f7509746e9a85638d99d96d0fb354864e8f1bfd43b7c1", "text": "\\section {Fraction multiplication}\n\\index{multiplication!fraction}\n\\index{fraction!multiplication}\n\nWe would like to be able to apply the normal addition, subtraction,\nmultiplication, and division operations to fractions. To do this, we\ncan overload the mathematical operators for {\\tt Fraction} objects.\n\n\\index{overload}\n\\index{operator!overloading}\n\\index{mathematical operator}\n\nWe'll start with multiplication because it is the easiest to implement.\nTo multiply fractions, we create a new fraction with a numerator\nthat is the product of the original numerators and a denominator that\nis a product of the original denominators. {\\tt \\_\\_mul\\_\\_} is the\nname Python uses for a method that overloads the {\\tt *} operator:\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n def __mul__(self, other):\n return Fraction(self.numerator*other.numerator,\n self.denominator*other.denominator)\n\\end{verbatim}\n\\afterverb\n%\nWe can test this method by computing the product of two fractions:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print Fraction(5,6) * Fraction(3,4)\n15/24\n\\end{verbatim}\n\\afterverb\n%\nIt works, but we can do better! We can extend the method to\nhandle multiplication by an integer. We use the {\\tt isinstance} function\nto test if {\\tt other} is an integer and convert it to a fraction if\nit is.\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n def __mul__(self, other):\n if isinstance(other, int):\n other = Fraction(other)\n return Fraction(self.numerator * other.numerator,\n self.denominator * other.denominator)\n\\end{verbatim}\n\\afterverb\n%\nMultiplying fractions and integers now works, but only if the fraction\nis the left operand:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print Fraction(5,6) * 4\n20/6\n>>> print 4 * Fraction(5,6)\nTypeError: __mul__ nor __rmul__ defined for these operands\n\\end{verbatim}\n\\afterverb\n%\nTo evaluate a binary operator like multiplication, Python checks\nthe left operand first to see if it provides a {\\tt \\_\\_mul\\_\\_}\nthat supports the type of the second operand. In this case,\nthe built-in integer operator doesn't support fractions.\n\nNext, Python checks the right operand to see if it provides\nan {\\tt \\_\\_rmul\\_\\_} method that supports the first type. In\nthis case, we haven't provided {\\tt \\_\\_rmul\\_\\_}, so it fails.\n\nOn the other hand, there is a simple way to provide\n{\\tt \\_\\_rmul\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n __rmul__ = __mul__\n\\end{verbatim}\n\\afterverb\n%\nThis assignment says that the {\\tt \\_\\_rmul\\_\\_} is the same\nas {\\tt \\_\\_mul\\_\\_}.\nNow if we evaluate {\\tt 4 * Fraction(5,6)}, Python invokes\n{\\tt \\_\\_rmul\\_\\_} on the {\\tt Fraction} object and passes 4\nas a parameter:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print 4 * Fraction(5,6)\n20/6\n\\end{verbatim}\n\\afterverb\n%\nSince {\\tt \\_\\_rmul\\_\\_} is the same as {\\tt \\_\\_mul\\_\\_}, and\n{\\tt \\_\\_mul\\_\\_} can handle an integer parameter, we're all set.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6d7285c2-c06b-4c3e-9c04-eb4cb0482338": {"__data__": {"id_": "6d7285c2-c06b-4c3e-9c04-eb4cb0482338", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "2": {"node_id": "c381a8cb-0c74-4ec8-9dd4-326416f7bc32", "node_type": null, "metadata": {}, "hash": "974022a8cb3d401c102f7509746e9a85638d99d96d0fb354864e8f1bfd43b7c1"}, "3": {"node_id": "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9", "node_type": null, "metadata": {}, "hash": "97749fa349984a6a862128ee102d91a5710d06a1d28d59972d864c3f3e85ed5b"}}, "hash": "94407d163baa5a82d88ae62fd0a010477a747f1761636e2dc4784737c48637a6", "text": "\\section{Fraction addition}\n\\index{addition!fraction}\n\\index{fraction!addition}\n\nAddition is more complicated than multiplication, but still not too\nbad. The sum of $a/b$ and $c/d$ is the fraction\n{\\tt (a*d+c*b)/(b*d)}.\n\nUsing the multiplication code as a model, we can write\n{\\tt \\_\\_add\\_\\_} and {\\tt \\_\\_radd\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n def __add__(self, other):\n if isinstance(other, int):\n other = Fraction(other)\n return Fraction(self.numerator * other.denominator +\n self.denominator * other.numerator,\n self.denominator * other.denominator)\n\n __radd__ = __add__\n\\end{verbatim}\n\\afterverb\n%\nWe can test these methods with {\\tt Fraction}s and integers.\n\n\\beforeverb\n\\begin{verbatim}\n>>> print Fraction(5,6) + Fraction(5,6)\n60/36\n>>> print Fraction(5,6) + 3\n23/6\n>>> print 2 + Fraction(5,6)\n17/6\n\\end{verbatim}\n\\afterverb\n%\nThe first two examples invoke {\\tt \\_\\_add\\_\\_}; the last\ninvokes {\\tt \\_\\_radd\\_\\_}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9": {"__data__": {"id_": "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "2": {"node_id": "6d7285c2-c06b-4c3e-9c04-eb4cb0482338", "node_type": null, "metadata": {}, "hash": "94407d163baa5a82d88ae62fd0a010477a747f1761636e2dc4784737c48637a6"}, "3": {"node_id": "209fc505-f77b-42eb-a0ec-3c89bc7993dd", "node_type": null, "metadata": {}, "hash": "4ffdd0ede983743bbfdd1fd7cf20b9120c23de078fa46a2afe415f7a92c466fc"}}, "hash": "97749fa349984a6a862128ee102d91a5710d06a1d28d59972d864c3f3e85ed5b", "text": "\\section{Euclid's algorithm}\n\\index{greatest common divisor}\n\\index{Euclid}\n\\index{pseudocode}\n\\index{reduce}\n\nIn the previous example, we computed the sum $5/6 + 5/6$ and got\n$60/36$. That is correct, but it's not the best way to represent the\nanswer. To {\\bf reduce} the fraction to its simplest terms, we have\nto divide the numerator and denominator by their {\\bf greatest common\ndivisor (GCD)}, which is 12. The result is $5/3$.\n\nIn general, whenever we create a new {\\tt Fraction} object, we should\nreduce it by dividing the numerator and denominator by their GCD. If\nthe fraction is already reduced, the GCD is 1.\n\nEuclid of Alexandria (approx. 325--265 BCE) presented an algorithm\nto find the GCD for two integers $m$ and $n$:\n\n\\begin{quote}\nIf $n$ divides $m$ evenly, then $n$ is the GCD. Otherwise\nthe GCD is the GCD of $n$ and the remainder of $m$ divided by $n$.\n\\end{quote}\n\nThis recursive definition can be expressed concisely as a function:\n\n\\beforeverb\n\\begin{verbatim}\ndef gcd (m, n):\n if m % n == 0:\n return n\n else:\n return gcd(n, m%n)\n\\end{verbatim}\n\\afterverb\n%\nIn the first line of the body, we use the modulus operator to\ncheck divisibility. On the last line, we use it to compute\nthe remainder after division.\n\nSince all the operations we've written\ncreate new {\\tt Fraction}s for the result, we can reduce all results\nby modifying the initialization method.\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n def __init__(self, numerator, denominator=1):\n g = gcd (numerator, denominator)\n self.numerator = numerator / g\n self.denominator = denominator / g\n\\end{verbatim}\n\\afterverb\n%\nNow whenever we create a {\\tt Fraction}, it is reduced to its simplest\nform:\n\n\\beforeverb\n\\begin{verbatim}\n>>> Fraction(100,-36)\n-25/9\n\\end{verbatim}\n\\afterverb\n%\nA nice feature of {\\tt gcd} is that if the fraction is\nnegative, the minus sign is always moved to the numerator.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "209fc505-f77b-42eb-a0ec-3c89bc7993dd": {"__data__": {"id_": "209fc505-f77b-42eb-a0ec-3c89bc7993dd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "2": {"node_id": "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9", "node_type": null, "metadata": {}, "hash": "97749fa349984a6a862128ee102d91a5710d06a1d28d59972d864c3f3e85ed5b"}, "3": {"node_id": "38d0187e-fd3c-40fe-84c5-6038c6db529f", "node_type": null, "metadata": {}, "hash": "5938289984a317ba20f61ce85fcac21d37d7daebb763be62fe8079039cd28ed5"}}, "hash": "4ffdd0ede983743bbfdd1fd7cf20b9120c23de078fa46a2afe415f7a92c466fc", "text": "\\section{Comparing fractions}\n\\index{comparison!fraction}\n\\index{fraction!comparison}\n\nSuppose we have two {\\tt Fraction} objects, {\\tt a} and {\\tt b}, and we\nevaluate {\\tt a == b}. The default implementation of {\\tt ==}\ntests for shallow equality, so it only returns true if {\\tt a}\nand {\\tt b} are the same object.\n\nMore likely, we want to return true if $a$ and $b$ have\nthe same value---that is, deep equality.\n\nWe have to teach fractions how to compare themselves. As we saw in\nSection~\\ref{comparecard}, we can overload all the comparison\noperators at once by supplying a {\\tt \\_\\_cmp\\_\\_} method.\n\nBy convention, the {\\tt \\_\\_cmp\\_\\_} method returns a\nnegative number if {\\tt self} is less than {\\tt other}, zero\nif they are the same, and a positive number if {\\tt self} is greater\nthan {\\tt other}.\n\nThe simplest way to compare fractions is to cross-multiply.\nIf $a/b > c/d$, then $ad > bc$.\nWith that in mind, here is the code for {\\tt \\_\\_cmp\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n ...\n def __cmp__(self, other):\n diff = (self.numerator * other.denominator -\n other.numerator * self.denominator)\n return diff\n\\end{verbatim}\n\\afterverb\n%\nIf {\\tt self} is greater than {\\tt other}, then {\\tt diff}\nwill be positive. If {\\tt other} is greater, then {\\tt diff}\nwill be negative. If they are the same, {\\tt diff} is zero.\n\n\n\\section {Taking it further}\n\nOf course, we are not done. We still have to implement\nsubtraction by overriding {\\tt \\_\\_sub\\_\\_} and division\nby overriding {\\tt \\_\\_div\\_\\_}.\n\nOne way to handle those operations is to implement negation\nby overriding\n{\\tt \\_\\_neg\\_\\_} and inversion by overriding {\\tt \\_\\_invert\\_\\_}.\nThen we can subtract by negating the second operand and adding,\nand we can divide by inverting the second operand and\nmultiplying.\n\nNext, we have to provide {\\tt \\_\\_rsub\\_\\_} and {\\tt \\_\\_rdiv\\_\\_}.\nUnfortunately, we can't use the same trick we used for addition and\nmultiplication, because subtraction and division are not commutative.\nWe can't just set {\\tt \\_\\_rsub\\_\\_} and {\\tt \\_\\_rdiv\\_\\_} equal to\n{\\tt \\_\\_sub\\_\\_} and {\\tt \\_\\_div\\_\\_}. In these operations, the\norder of the operands makes a difference.\n\nTo handle {\\bf unary negation}, which is the use of the minus\nsign with a single operand, we override {\\tt \\_\\_neg\\_\\_}.\n\n\\index{unary operator}\n\\index{negation}\n\nWe can compute powers by overriding {\\tt \\_\\_pow\\_\\_},\nbut the implementation is a little tricky. If the exponent isn't\nan integer, then it may not be possible to represent the result\nas a {\\tt Fraction}. For example, {\\tt Fraction(2) ** Fraction(1,2)}\nis the square root of 2, which is an irrational number (it can't\nbe represented as a fraction).\nSo it's not easy to write the most general version of {\\tt \\_\\_pow\\_\\_}.\n\n\\index{irrational}\n\nThere is one other extension to the {\\tt Fraction} class that you might\nwant to think about. So far, we have assumed that the numerator\nand denominator are integers.\n\n\\begin{quote}\n{\\em As an exercise, finish the implementation of the {\\tt Fraction}\nclass so that it handles subtraction, division and exponentiation.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "38d0187e-fd3c-40fe-84c5-6038c6db529f": {"__data__": {"id_": "38d0187e-fd3c-40fe-84c5-6038c6db529f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "65bb8589-485e-470d-b83a-68f40dd30598", "node_type": null, "metadata": {}, "hash": "367efa5bfa66d48b4934fcfbe5b0c0335479731607b30dac032649f476978ac6"}, "2": {"node_id": "209fc505-f77b-42eb-a0ec-3c89bc7993dd", "node_type": null, "metadata": {}, "hash": "4ffdd0ede983743bbfdd1fd7cf20b9120c23de078fa46a2afe415f7a92c466fc"}}, "hash": "5938289984a317ba20f61ce85fcac21d37d7daebb763be62fe8079039cd28ed5", "text": "\\section{Glossary}\n\n\\begin{description}\n\n\\item[greatest common divisor (GCD):] The largest positive integer\nthat divides without a remainder into both the numerator and denominator\nof a fraction.\n\n\\item[reduce:] To change a fraction into an equivalent form with a\nGCD of 1.\n\n\\item[unary negation:] The operation that computes an additive\ninverse, usually denoted with a leading minus sign. Called \n``unary'' by contrast with the binary minus operation, which is\nsubtraction.\n\n\n\\index{greatest common divisor}\n\\index{reduce}\n\\index{unary negation}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21": {"__data__": {"id_": "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "3": {"node_id": "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5", "node_type": null, "metadata": {}, "hash": "39b7496d8f9ca5e24f724490f33246e875632ad1b3d240c2e08c68bda8ff3529"}}, "hash": "d84f8b9f58c60fe60a4ffb576b47443f48e038de630d0a65abcc579ed7d7ca94", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\\chapter{Complete Python Listings}\n\n\n\\section{Point class}\n\n\\beforeverb\n\\begin{verbatim}\nclass Point:\n def __init__(self, x=0, y=0):\n self.x = x\n self.y = y\n\n def __str__(self):\n return '(' + str(self.x) + ', ' + str(self.y) + ')'\n\n def __add__(self, other):\n return Point(self.x + other.x, self.y + other.y)\n\n def __sub__(self, other):\n return Point(self.x - other.x, self.y - other.y)\n\n def __mul__(self, other):\n return self.x * other.x + self.y * other.y\n\n def __rmul__(self, other):\n return Point(other * self.x, other * self.y)\n\n def reverse(self):\n self.x, self.y = self.y, self.x\n\n def frontAndBack(front):\n from copy import copy\n back = copy(front)\n back.reverse()\n print str(front) + str(back)\n\\end{verbatim}\n\\afterverb\n\n\n\\section{Time class}\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n def __init__(self, hours=0, minutes=0, seconds=0):\n self.hours = hours\n self.minutes = minutes\n self.seconds = seconds\n\n def __str__(self):\n return str(self.hours) + \":\" + str(self.minutes) + \":\" + str(self.seconds)\n\n def convertToSeconds(self):\n minutes = self.hours * 60 + self.minutes\n seconds = self.minutes * 60 + self.seconds\n return seconds\n\n def increment(self, secs):\n secs = secs + self.seconds\n\n self.hours = self.hours + secs/3600\n secs = secs % 3600\n self.minutes = self.minutes + secs/60\n secs = secs % 60\n self.seconds = secs\n\n def makeTime(secs):\n time = Time()\n time.hours = secs/3600\n secs = secs - time.hours * 3600\n time.minutes = secs/60\n secs = secs - time.minutes * 60\n time.seconds = secs\n return time\n\\end{verbatim}\n\\afterverb", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5": {"__data__": {"id_": "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21", "node_type": null, "metadata": {}, "hash": "d84f8b9f58c60fe60a4ffb576b47443f48e038de630d0a65abcc579ed7d7ca94"}, "3": {"node_id": "d2c42aad-be12-4391-9d49-6f98b336a7aa", "node_type": null, "metadata": {}, "hash": "092b9c6a0a8a3c4e5dbc84d46610623d0ea06bb2176a27ca2ef416b3cf42521e"}}, "hash": "39b7496d8f9ca5e24f724490f33246e875632ad1b3d240c2e08c68bda8ff3529", "text": "\\section {Cards, decks and games}\n\n\\beforeverb\n\\begin{verbatim}\nimport random\n\nclass Card:\n suitList = [\"Clubs\", \"Diamonds\", \"Hearts\", \"Spades\"]\n rankList = [ \"narf\", \"Ace\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\", \"9\", \"10\",\n \"Jack\", \"Queen\", \"King\"]\n\n def __init__(self, suit=0, rank=0):\n self.suit = suit\n self.rank = rank\n\n def __str__(self):\n return self.rankList[self.rank] + \" of \" + self.suitList[self.suit]\n\n def __cmp__(self, other):\n # check the suits\n if self.suit > other.suit: return 1\n if self.suit < other.suit: return -1\n # suits are the same... check ranks\n if self.rank > other.rank: return 1\n if self.rank < other.rank: return -1\n # ranks are the same... it's a tie\n return 0\n\nclass Deck:\n def __init__(self):\n self.cards = []\n for suit in range(4):\n for rank in range(1, 14):\n self.cards.append(Card(suit, rank))\n\n def printDeck(self):\n for card in self.cards:\n print card\n\n def __str__(self):\n s = \"\"\n for i in range(len(self.cards)):\n s = s + \" \"*i + str(self.cards[i]) + \"\\n\"\n return s\n\n def shuffle(self):\n import random\n nCards = len(self.cards)\n for i in range(nCards):\n j = random.randrange(i, nCards)\n [self.cards[i], self.cards[j]] = [self.cards[j], self.cards[i]]\n\n def removeCard(self, card):\n if card in self.cards:\n self.cards.remove(card)\n return 1\n else: return 0\n\n def popCard(self):\n return self.cards.pop()\n\n def isEmpty(self):\n return (len(self.cards) == 0)\n\n def deal(self, hands, nCards=999):\n nHands = len(hands)\n for i in range(nCards):\n if self.isEmpty(): break # break if out of cards\n card = self.popCard() # take the top card\n hand = hands[i % nHands] # whose turn is next?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d2c42aad-be12-4391-9d49-6f98b336a7aa": {"__data__": {"id_": "d2c42aad-be12-4391-9d49-6f98b336a7aa", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5", "node_type": null, "metadata": {}, "hash": "39b7496d8f9ca5e24f724490f33246e875632ad1b3d240c2e08c68bda8ff3529"}, "3": {"node_id": "9447d812-d668-42d7-860b-27936468ab3d", "node_type": null, "metadata": {}, "hash": "7ad434cd80cbdb3e8af1825252b1e1c5a1ca5ab88d2cea1cbad62dccf2dfa9cd"}}, "hash": "092b9c6a0a8a3c4e5dbc84d46610623d0ea06bb2176a27ca2ef416b3cf42521e", "text": "hand.addCard(card) # add the card to the hand\n\nclass Hand(Deck):\n def __init__(self, name=\"\"):\n self.cards = []\n self.name = name\n\n def addCard(self,card) :\n self.cards.append(card)\n\n def __str__(self):\n s = \"Hand \" + self.name\n if self.isEmpty():\n s = s + \" is empty\\n\"\n else:\n s = s + \" contains\\n\"\n return s + Deck.__str__(self)\n\nclass CardGame:\n def __init__(self):\n self.deck = Deck()\n self.deck.shuffle()\n\nclass OldMaidHand(Hand):\n def removeMatches(self):\n count = 0\n originalCards = self.cards[:]\n for card in originalCards:\n match = Card(3 - card.suit, card.rank)\n if match in self.cards:\n self.cards.remove(card)\n self.cards.remove(match)\n print \"Hand %s: %s matches %s\" % (self.name,card,match)\n count = count+1\n return count\n\nclass OldMaidGame(CardGame):\n def play(self, names):\n # remove Queen of Clubs\n self.deck.removeCard(Card(0,12))\n\n # make hands base on names passed\n self.hands = []\n for name in names : self.hands.append(OldMaidHand(name))\n\n # deal the cards\n self.deck.deal(self.hands)\n print \"---------- Cards have been dealt\"\n self.printHands()\n\n # Remove initial matches\n matches = self.removeMatches()\n print \"---------- Matches discarded, play begins\"\n self.printHands()\n\n # Play until all 50 cards matched\n turn = 0\n numHands = len(self.hands)\n while matches < 25:\n matches = matches + self.playOneTurn(turn)\n turn = (turn + 1) % numHands\n\n print \"---------- Game is Over\"\n self.printHands ()\n\n def removeMatches(self):\n count = 0\n for hand in self.hands:\n count = count + hand.removeMatches()\n return count\n\n def playOneTurn(self, i):\n if self.hands[i].isEmpty():\n return 0\n neighbor = self.findNeighbor(i)\n pickedCard = self.hands[neighbor].popCard()\n self.hands[i].addCard(pickedCard)\n print \"Hand\", self.hands[i].name, \"picked\", pickedCard\n count = self.hands[i].removeMatches()\n self.hands[i].shuffle()\n return count\n\n def findNeighbor(self, i):\n numHands = len(self.hands)\n for next in range(1,numHands):\n neighbor = (i + next) % numHands\n if not self.hands[neighbor].isEmpty():\n return neighbor\n\n def printHands(self) :\n for hand in self.hands :\n print hand\n\n\\end{verbatim}\n\\afterverb\n\n\n\\section{Linked Lists}\n\n\\beforeverb\n\\begin{verbatim}\n def printList(node) :\n while node :\n print node,\n node = node.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9447d812-d668-42d7-860b-27936468ab3d": {"__data__": {"id_": "9447d812-d668-42d7-860b-27936468ab3d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "d2c42aad-be12-4391-9d49-6f98b336a7aa", "node_type": null, "metadata": {}, "hash": "092b9c6a0a8a3c4e5dbc84d46610623d0ea06bb2176a27ca2ef416b3cf42521e"}, "3": {"node_id": "b8d382cd-0334-429b-9834-99a34e818741", "node_type": null, "metadata": {}, "hash": "abddb556fe5a507c9f3357bc8e6efcf625649f60906693bdd6cbfc63e98d620c"}}, "hash": "7ad434cd80cbdb3e8af1825252b1e1c5a1ca5ab88d2cea1cbad62dccf2dfa9cd", "text": "node = node.next\n print\n \n def printBackward(list) :\n if list == None : return\n head = list\n tail = list.next\n printBackward(tail)\n print head,\n \n def printBackwardNicely(list) :\n print \"(\",\n if list != None :\n head = list\n tail = list.next\n printBackward(tail)\n print head,\n print \")\",\n \n def removeSecond(list) :\n if list == None : return\n first = list\n second = list.next\n first.next = second.next\n second.next = None\n return second\n\nclass Node :\n\n def __init__(self, cargo=None) :\n self.cargo = cargo\n self.next = None\n\n def __str__(self) :\n return str(self.cargo)\n\n def printBackward(self) :\n if self.next != None :\n tail = self.next\n tail.printBackward()\n print self.cargo,\n\nclass LinkedList :\n def __init__(self) :\n self.length = 0\n self.head = None\n\n def printBackward(self) :\n print \"(\",\n if self.head != None :\n self.head.printBackward()\n print \")\",\n\n def addFirst(self, cargo) :\n node = Node(cargo)\n node.next = self.head\n self.head = node\n self.length = self.length + 1\n\\end{verbatim}\n\\afterverb\n\n\\section{Stack class}\n\n\\beforeverb\n\\begin{verbatim}\n\nclass Stack: # Python list implementation\n def __init__(self):\n self.items = []\n\n def push(self, item):\n self.items.append(item)\n\n def pop(self):\n return self.items.pop()\n\n def isEmpty(self):\n return(self.items == [])\n\n def evalPostfix(expr) :\n import re\n expr = re.split(\"([^0-9])\", expr)\n stack = Stack()\n for token in expr :\n if token == '' or token == ' ':\n continue\n if token == '+' :\n sum = stack.pop() + stack.pop()\n stack.push(sum)\n elif token == '*' :\n product = stack.pop() * stack.pop()\n stack.push(product)\n else :\n stack.push(int(token))\n return stack.pop()\n\n\\end{verbatim}\n\\afterverb\n\n\\section {Queues and priority queues}\n\\beforeverb\n\\begin{verbatim}\n\nclass Queue :\n def __init__(self) :\n self.length = 0\n self.head = None\n\n def empty(self) :\n return (self.length == 0)\n\n def insert(self, cargo) :\n node = Node(cargo)\n node.next = None\n if self.head == None :\n # If list is empty our new node is first\n self.head = node\n else :\n # Find the last node in the list\n last = self.head\n while last.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b8d382cd-0334-429b-9834-99a34e818741": {"__data__": {"id_": "b8d382cd-0334-429b-9834-99a34e818741", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "9447d812-d668-42d7-860b-27936468ab3d", "node_type": null, "metadata": {}, "hash": "7ad434cd80cbdb3e8af1825252b1e1c5a1ca5ab88d2cea1cbad62dccf2dfa9cd"}, "3": {"node_id": "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e", "node_type": null, "metadata": {}, "hash": "70fc42c11782e3c18eb67a219b3930e1c6dfbf5c70fb3abf8ce4bd5a5fd1fb9c"}}, "hash": "abddb556fe5a507c9f3357bc8e6efcf625649f60906693bdd6cbfc63e98d620c", "text": "head\n while last.next : last = last.next\n # Append our new node\n last.next = node\n self.length = self.length + 1\n\n def remove(self) :\n cargo = self.head.cargo\n self.head = self.head.next\n self.length = self.length - 1\n return cargo\n\nclass ImprovedQueue :\n def __init__(self) :\n self.length = 0\n self.head = None\n self.last = None\n\n def empty(self) :\n return (self.length == 0)\n\n def insert(self, cargo) :\n node = Node(cargo)\n node.next = None\n if self.length == 0 :\n # If list is empty our new node is first\n self.head = self.last = node\n else :\n # Find the last node in the list\n last = self.last\n # Append our new node\n last.next = node\n self.last = node\n self.length = self.length + 1\n\n def remove(self) :\n cargo = self.head.cargo\n self.head = self.head.next\n self.length = self.length - 1\n if self.length == 0 : self.last = None\n return cargo\n\nclass PriorityQueue :\n def __init__(self) :\n self.items = []\n\n def empty(self) :\n return self.items == []\n\n def insert(self, item) :\n self.items.append(item)\n\n def remove(self) :\n maxi = 0\n for i in range(1,len(self.items)) :\n if self.items[i] > self.items[maxi] :\n maxi = i\n item = self.items[maxi]\n self.items[maxi:maxi+1] = []\n return item\n\nclass Golfer :\n def __init__(self, name, score) :\n self.name = name\n self.score= score\n\n def __str__(self) :\n return \"%-15s: %d\" % (self.name, self.score)\n\n def __cmp__(self, other) :\n if self.score < other.score : return 1 # less is more\n if self.score > other.score : return -1\n return 0\n\n\\end{verbatim}\n\\afterverb\n\n\\section{Trees}\n\\beforeverb\n\\begin{verbatim}\nclass Tree :\n def __init__(self, cargo, left=None, right=None) :\n self.cargo = cargo\n self.left = left\n self.right = right\n\n def __str__(self) :\n return str(self.cargo)\n\n def getCargo(self): return self.cargo\n def getLeft (self): return self.left\n def getRight(self): return self.right\n\n def setCargo(self, cargo): self.cargo = cargo\n def setLeft (self, left): self.left = left\n def setRight(self, right): self.right = right\n\ndef total(tree) :\n if tree == None : return 0\n return total(tree.left) + total(tree.right) + tree.cargo\n\ndef printTree(tree) :\n if tree == None : return\n print tree.cargo,\n printTree(tree.left)\n printTree(tree.right)\n\ndef printTreePostorder(tree) :\n if tree == None : return\n printTreePostorder(tree.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e": {"__data__": {"id_": "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "b8d382cd-0334-429b-9834-99a34e818741", "node_type": null, "metadata": {}, "hash": "abddb556fe5a507c9f3357bc8e6efcf625649f60906693bdd6cbfc63e98d620c"}, "3": {"node_id": "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f", "node_type": null, "metadata": {}, "hash": "6f4b6a69e05d7a06e46cd221598a962bdcf8a185dbf6fbeba0c56578a031ecc1"}}, "hash": "70fc42c11782e3c18eb67a219b3930e1c6dfbf5c70fb3abf8ce4bd5a5fd1fb9c", "text": "left)\n printTreePostorder(tree.right)\n print tree.cargo,\n\ndef printTreeInorder(tree) :\n if tree == None : return\n printTreeInorder(tree.left)\n print tree.cargo,\n printTreeInorder(tree.right)\n\ndef printTreeIndented(tree, level=0) :\n if tree == None : return\n printTreeIndented(tree.right, level+1)\n print ' '*level + str(tree.cargo)\n printTreeIndented(tree.left, level+1)\n\\end{verbatim}\n\n\\section{Expression trees}\n\n\\begin{verbatim}\ndef getToken(tokenList, expected) :\n if tokenList[0] == expected :\n tokenList[0:1] = [] # remove the token\n return 1\n else :\n return 0\n\ndef getProduct(tokenList) :\n a = getNumber(tokenList)\n if getToken(tokenList, '*') :\n b = getProduct(tokenList)\n return Tree('*', a, b)\n else :\n return a\n\ndef getSum(tokenList) :\n a = getProduct(tokenList)\n if getToken(tokenList, '+') :\n b = getSum(tokenList)\n return Tree('+', a, b)\n else :\n return a\n\ndef getNumber(tokenList) :\n if getToken(tokenList, '(') :\n x = getSum(tokenList) # get subexpression\n getToken(tokenList, ')') # eat the closing parenthesis\n return x\n else :\n x = tokenList[0]\n if not isinstance(x, int) : return None\n tokenList[0:1] = [] # remove the token\n return Tree(x, None, None) # return a leaf with the number\n\\end{verbatim}\n\n\n\\section{Guess the animal}\n\n\\begin{verbatim}\ndef animal() :\n # start with a singleton\n root = Tree(\"bird\")\n\n # loop until the user quits\n while 1 :\n print\n if not yes(\"Are you thinking of an animal? \") : break\n\n # walk the tree\n tree = root\n while tree.getLeft() != None :\n prompt = tree.getCargo() + \"? \"\n if yes(prompt):\n tree = tree.getRight()\n else:\n tree = tree.getLeft()\n\n # make a guess\n guess = tree.getCargo()\n prompt = \"Is it a \" + guess + \"? \"\n if yes(prompt) :\n print \"I rule!\"\n continue\n\n # get new information\n prompt = \"What is the animal\\'s name? \"\n animal = raw_input(prompt)\n prompt = \"What question would distinguish a %s from a %s? \"\n question = raw_input(prompt % (animal,guess))\n\n # add new information to the tree\n tree.setCargo(question)\n prompt = \"If the animal were %s the answer would be? \"\n if yes(prompt % animal) :\n tree.setLeft(Tree(guess))\n tree.setRight(Tree(animal))\n else :\n tree.setLeft(Tree(animal))\n tree.setRight(Tree(guess))", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f": {"__data__": {"id_": "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "node_type": null, "metadata": {}, "hash": "39085c5c3400cadac8c780017750f7043664c1be634aab6649468947793a7131"}, "2": {"node_id": "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e", "node_type": null, "metadata": {}, "hash": "70fc42c11782e3c18eb67a219b3930e1c6dfbf5c70fb3abf8ce4bd5a5fd1fb9c"}}, "hash": "6f4b6a69e05d7a06e46cd221598a962bdcf8a185dbf6fbeba0c56578a031ecc1", "text": "def yes(ques) :\n from string import lower\n ans = lower(raw_input(ques))\n return (ans[0:1] == 'y')\n\\end{verbatim}\n\n\\section{{\\tt Fraction} class}\n\n\\beforeverb\n\\begin{verbatim}\nclass Fraction:\n def __init__(self, numerator, denominator=1):\n g = gcd(numerator, denominator)\n self.numerator = numerator / g\n self.denominator = denominator / g\n\n def __mul__(self, object):\n if isinstance(object, int):\n object = Fraction(object)\n return Fraction(self.numerator*object.numerator,\n self.denominator*object.denominator)\n\n __rmul__ = __mul__\n\n def __add__(self, object):\n if isinstance(object, int):\n object = Fraction(object)\n\n return Fraction(self.numerator*object.denominator +\n self.denominator*object.numerator,\n self.denominator * object.denominator)\n\n __radd__ = __add__\n\n def __cmp__(self, object):\n if isinstance(object, int):\n object = Fraction(object)\n\n diff = (self.numerator*object.denominator -\n object.numerator*self.denominator)\n return diff\n\n def __repr__(self):\n return self.__str__()\n\n def __str__(self):\n return \"%d/%d\" % (self.numerator, self.denominator)\n\ndef gcd(m,n):\n \"return the greatest common divisor of 2 integer arguments\"\n if m % n == 0:\n return n\n else:\n return gcd(n,m%n)\n\n\\end{verbatim}\n\\afterverb", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "28a02a3b-dde7-460a-9f99-bcb347d728bb": {"__data__": {"id_": "28a02a3b-dde7-460a-9f99-bcb347d728bb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "node_type": null, "metadata": {}, "hash": "13ddcd1cfae725738279879c65c8cc78d2cddb7e1bc4f5ac6d9cc212c04cf188"}, "3": {"node_id": "741aa787-463c-4189-b641-510278e53f0f", "node_type": null, "metadata": {}, "hash": "84fc49ee8070b2fde61902c7c9e12aec417f46d9cc5413878bdae44c468f7a15"}}, "hash": "b958722109282c2318f4bb211ca1add17ad4f93fcfa8cea4669e7d4f42f566c7", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\n\\chapter{Recommendations for further reading}\n\nSo where do you go from here? There are many directions to pursue,\nextending your knowledge of Python specifically and\ncomputer science in general.\n\nThe examples in this book have been deliberately simple, but they\nmay not have shown off Python's most exciting capabilities.\nHere is a sampling of extensions to Python and suggestions for\nprojects that use them.\n\n\\begin{itemize}\n\n\\item GUI (graphical user interface) programming lets your\nprogram use a windowing environment to interact with the user and\ndisplay graphics.\n\nThe oldest graphics package for Python\nis Tkinter, which is based on Jon Ousterhout's Tcl and Tk scripting\nlanguages. Tkinter comes bundled with the Python distribution.\n\nAnother\npopular platform is wxPython, which is essentially a Python veneer over\nwxWindows, a C++ package which in turn implements windows using native\ninterfaces on Windows and Unix (including Linux) platforms. The\nwindows and controls under wxPython tend to have a more native look\nand feel than those of Tkinter and are somewhat simpler to\nprogram.\n\nAny type of GUI programming will lead you into event-driven\nprogramming, where the user and not the programmer determines the flow of\nexecution. This style of programming takes some getting used to,\nsometimes forcing you to rethink the whole structure of a program.\n\n\\item Web programming integrates Python with the Internet.\nFor example, you can build web client programs that open and read\na remote web page (almost) as easily as you can open a file on\ndisk. There are also Python modules that let you access remote files\nvia ftp, and modules to let you send and receive email. Python is also\nwidely used for web server programs to handle input forms.\n\n\\item Databases are a bit like super files where data is stored in\npredefined schemas, and relationships between data items let you access\nthe data in various ways. Python has several modules to enable\nusers to connect to various database engines, both Open Source and\ncommercial.\n\n\\item Thread programming lets you run several threads of execution \nwithin a single program. If you have had the experience of using a\nweb browser to scroll the beginning of a page while the browser\ncontinues to load the rest of it, then you have a feel for what\nthreads can do.\n\n\\item When speed is paramount Python extensions may be written in a\ncompiled language like C or C++. Such extensions\nform the base of many of the modules in the Python\nlibrary. The mechanics of linking functions and data is somewhat\ncomplex. SWIG (Simplified Wrapper and Interface Generator) is a tool to\nmake the process much simpler.\n\n\\end{itemize}\n\n\n\\section{Python-related web sites and books}\n\nHere are the authors' recommendations for Python resources\non the web:\n\n\\begin{itemize}\n\n\\item The Python home page at {\\tt www.python.org} is the place to start \nyour search for any Python related material. You will find\nhelp, documentation, links to other sites and SIG (Special Interest\nGroup) mailing lists that you can join.\n\n\\item The Open Book Project {\\tt www.ibiblio.com/obp} contains not\nonly this book online but also similar books for Java and C++ by Allen\nDowney.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "741aa787-463c-4189-b641-510278e53f0f": {"__data__": {"id_": "741aa787-463c-4189-b641-510278e53f0f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "node_type": null, "metadata": {}, "hash": "13ddcd1cfae725738279879c65c8cc78d2cddb7e1bc4f5ac6d9cc212c04cf188"}, "2": {"node_id": "28a02a3b-dde7-460a-9f99-bcb347d728bb", "node_type": null, "metadata": {}, "hash": "b958722109282c2318f4bb211ca1add17ad4f93fcfa8cea4669e7d4f42f566c7"}, "3": {"node_id": "3fa2421e-8b56-472f-bdf8-db7bd95d817d", "node_type": null, "metadata": {}, "hash": "d5754f01e316b06668db1612f2f689c26af446e6a2482936869789e90e925d3b"}}, "hash": "84fc49ee8070b2fde61902c7c9e12aec417f46d9cc5413878bdae44c468f7a15", "text": "In addition there are {\\em\nLessons in Electric Circuits} by Tony R. Kuphaldt, \n{\\em Getting down\nwith ...}, a set of tutorials on a range of computer science topics,\nwritten and edited by high school students, {\\em Python for Fun},\na set of case studies in Python by Chris Meyers, and {\\em The Linux\nCookbook} by Michael Stultz, with 300 pages of tips and techniques.\n\n\\item Finally if you go to Google and use the search \nstring ``python -snake -monty'' you will get about 750,000 hits.\n\n\\end{itemize}\n\n\\adjustpage{-1}\n\\pagebreak\n\nAnd here are some books that contain more material on the\nPython language:\n\n\\begin{itemize}\n\n\\item {\\em Core Python Programming} by Wesley Chun is a large book \nat about 750 pages. The first part of the book covers the basic Python\nlanguage features. The second part provides an easy-paced introduction\nto more advanced topics including many of those mentioned above.\n\n\\item {\\em Python Essential Reference} by David M. Beazley is a small\nbook, but it is packed with information both on the\nlanguage itself and the modules in the standard library. It is also\nvery well indexed.\n\n\\item {\\em Python Pocket Reference} by Mark Lutz really does fit in \nyour pocket. Although not as extensive as {\\em Python Essential\nReference} it is a handy reference for the most commonly used functions\nand modules. Mark Lutz is also the author of {\\em Programming Python},\none of the earliest (and largest) books on Python and not aimed at the\nbeginning programmer. His later book {\\em Learning Python} is smaller\nand more accessible.\n\n\\item {\\em Python Programming on Win32} by Mark Hammond and Andy \nRobinson is a ``must have'' for anyone seriously using Python to develop\nWindows applications. Among other things it covers the integration of\nPython and COM, builds a small application with wxPython, and even\nuses Python to script windows applications such as Word and Excel.\n\n\\end{itemize}\n\n\\section{Recommended general computer science books}\n\nThe following suggestions for further reading include many of the\nauthors' favorite books. They deal with good programming practices\nand computer science in general.\n\n\\begin{itemize}\n\n\\item {\\em The Practice of Programming} by Kernighan and Pike covers not \nonly the design and coding of algorithms and data structures, but also\ndebugging, testing and improving the performance of programs. The\nexamples are mostly C++ and Java, with none in Python.\n\n\\item {\\em The Elements of Java Style} edited by Al Vermeulen is another\nsmall book that discusses some of the finer points of good\nprogramming, such as good use of naming conventions, comments, and\neven whitespace and indentation (somewhat of a nonissue in\nPython). The book also covers programming by contract, using\nassertions to catch errors by testing preconditions and\npostconditions, and proper programming with threads and their\nsynchronization.\n\n\\item {\\em Programming Pearls} by Jon Bentley is a classic book.\nIt consists of case studies that originally appeared in the author's\ncolumn in the {\\em Communications of the ACM}. The studies deal with\ntradeoffs in programming and why it is often an especially bad idea to\nrun with your first idea for a program. The book is a bit older than\nthose above (1986), so the examples are in older\nlanguages. There are lots of problems to solve, some with solutions\nand others with hints. This book was very popular and was followed by\na second volume.\n\n\\item {\\em The New Turing Omnibus} by A.K Dewdney provides a gentle\nintroduction to 66 topics of computer science ranging from parallel\ncomputing to computer viruses, from cat scans to genetic\nalgorithms. All of the topics are short and entertaining. An earlier\nbook by Dewdney {\\em The Armchair Universe} is a collection from his\ncolumn {\\em Computer Recreations} in {\\em Scientific American}. Both\nbooks are a rich source of ideas for projects.\n\n\\item {\\em Turtles, Termites and Traffic Jams} by Mitchel Resnick\nis about the power of decentralization and how complex behavior can\narise from coordinated simple activity of a multitude of agents. It\nintroduces the language StarLogo, which allows the user to write\nprograms for the agents.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3fa2421e-8b56-472f-bdf8-db7bd95d817d": {"__data__": {"id_": "3fa2421e-8b56-472f-bdf8-db7bd95d817d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "node_type": null, "metadata": {}, "hash": "13ddcd1cfae725738279879c65c8cc78d2cddb7e1bc4f5ac6d9cc212c04cf188"}, "2": {"node_id": "741aa787-463c-4189-b641-510278e53f0f", "node_type": null, "metadata": {}, "hash": "84fc49ee8070b2fde61902c7c9e12aec417f46d9cc5413878bdae44c468f7a15"}}, "hash": "d5754f01e316b06668db1612f2f689c26af446e6a2482936869789e90e925d3b", "text": "Running the program\ndemonstrates complex aggregate behavior, which is often\ncounterintuitive. Many of the programs in the book were developed by\nstudents in middle school and high school. Similar programs could be\nwritten in Python using simple graphics and threads.\n\n\\item {\\em G\\\"{o}del, Escher and Bach} by Douglas Hofstadter. Put simply,\nif you found magic in recursion you will also find it in this\nbestselling book. One of Hofstadter's themes involves ``strange loops''\nwhere patterns evolve and ascend until they meet themselves again. It\nis Hofstadter's contention that such ``strange loops'' are an essential\npart of what separates the animate from the inanimate. He\ndemonstrates such patterns in the music of Bach, the pictures of\nEscher and G\\\"{o}del's incompleteness theorem.\n\n\\end{itemize}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c": {"__data__": {"id_": "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "3": {"node_id": "b7059d13-4bf1-4044-b228-2d2a847e89a2", "node_type": null, "metadata": {}, "hash": "86a12bb25274512e7ebae2038e6260fd902522c730de1c906114aedff7b45ba6"}}, "hash": "9a438ff50f67593f88a984e2af8204abca40e2001458f1aa8ea5e4757251246a", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{The way of the program}\n\nThe goal of this book is to teach you to think like a\ncomputer scientist. This way of thinking combines some of the best features\nof mathematics, engineering, and natural science. Like mathematicians,\ncomputer scientists use formal languages to denote ideas (specifically\ncomputations). Like engineers, they design things, assembling components\ninto systems and evaluating tradeoffs among alternatives. Like scientists,\nthey observe the behavior of complex systems, form hypotheses, and test\npredictions.\n\nThe single most important skill for a computer scientist is {\\bf\nproblem solving}. Problem solving means the ability to formulate\nproblems, think creatively about solutions, and express a solution clearly\nand accurately. As it turns out, the process of learning to program is an\nexcellent opportunity to practice problem-solving skills. That's why\nthis chapter is called, ``The way of the program.''\n\nOn one level, you will be learning to program, a useful\nskill by itself. On another level, you will use programming as a means to\nan end. As we go along, that end will become clearer.\n\n\\section{The Python programming language}\n\\index{programming language}\n\\index{language!programming}\n\nThe programming language you will be learning is Python. Python is\nan example of a {\\bf high-level language}; other high-level languages\nyou might have heard of are C, C++, Perl, and Java.\n\nAs you might infer from the name ``high-level language,'' there are\nalso {\\bf low-level languages}, sometimes referred to as ``machine\nlanguages'' or ``assembly languages.'' Loosely speaking, computers\ncan only execute programs written in low-level languages. Thus,\nprograms written in a high-level language have to be processed before\nthey can run. This extra processing takes some time, which is a small\ndisadvantage of high-level languages.\n\n\\index{portable}\n\\index{high-level language}\n\\index{low-level language}\n\\index{language!high-level}\n\\index{language!low-level}\n\nBut the advantages are enormous. First, it is much easier to program\nin a high-level language. Programs written in a high-level language\ntake less time to write, they are shorter and easier to read, and they\nare more likely to be correct. Second, high-level languages are {\\bf\nportable}, meaning that they can run on different kinds of computers\nwith few or no modifications. Low-level programs can run on only one\nkind of computer and have to be rewritten to run on another.\n\nDue to these advantages, almost all programs are written in high-level\nlanguages. Low-level languages are used only for a few specialized\napplications.\n\n\\index{compile}\n\\index{interpret}\n\nTwo kinds of programs process high-level languages\ninto low-level languages: {\\bf interpreters} and {\\bf compilers}.\nAn interpreter reads a high-level program and executes it, meaning that it\ndoes what the program says. It processes the program a little at a time,\nalternately reading lines and performing computations.\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/interpret.eps,height=0.77in}}\n\\afterfig\n\nA compiler reads the program and translates it completely before the\nprogram starts running.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b7059d13-4bf1-4044-b228-2d2a847e89a2": {"__data__": {"id_": "b7059d13-4bf1-4044-b228-2d2a847e89a2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "2": {"node_id": "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c", "node_type": null, "metadata": {}, "hash": "9a438ff50f67593f88a984e2af8204abca40e2001458f1aa8ea5e4757251246a"}, "3": {"node_id": "44d86782-fbbf-4972-bfa0-f05631ace2d2", "node_type": null, "metadata": {}, "hash": "558da0a43cd04931223993d4a1a08966112ce0390dff9a3f6afa7f17796bdd8e"}}, "hash": "86a12bb25274512e7ebae2038e6260fd902522c730de1c906114aedff7b45ba6", "text": "In this case, the high-level program is\ncalled the {\\bf source code}, and the translated program is called the\n{\\bf object code} or the {\\bf executable}. Once a program is\ncompiled, you can execute it repeatedly without further translation.\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/compile.eps,height=0.77in}}\n\\afterfig\n\nPython is considered an interpreted language because Python\nprograms are executed by an interpreter. There are two ways to\nuse the interpreter: command-line mode and script mode. In\ncommand-line mode, you type Python programs and the interpreter\nprints the result:\n\n\\adjustpage{-2}\n\\pagebreak\n\\beforeverb\n\\begin{verbatim}\n$ python\nPython 2.4.1 (#1, Apr 29 2005, 00:28:56)\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>> print 1 + 1\n2\n\\end{verbatim}\n\\afterverb\n%\nThe first line of this example is the command that starts the\nPython interpreter. The next two lines are messages from the\ninterpreter. The third line starts with {\\tt >>>}, which is the\nprompt the interpreter uses to indicate that it is ready. We typed\n{\\tt print 1 + 1}, and the interpreter replied {\\tt 2}.\n\nAlternatively, you can write a program in a file and use the\ninterpreter to execute the contents of the file. Such a file is\ncalled a {\\bf script}. For example, we used a text editor to\ncreate a file named {\\tt latoya.py} with the following contents:\n\n\n\\beforeverb\n\\begin{verbatim}\nprint 1 + 1\n\\end{verbatim}\n\\afterverb\n%\nBy convention, files that contain Python programs have names that\nend with {\\tt .py}.\n\nTo execute the program, we have to tell the interpreter the name of\nthe script:\n\n\n\\beforeverb\n\\begin{verbatim}\n$ python latoya.py\n2\n\\end{verbatim}\n\\afterverb\n%\nIn other development environments, the details of executing programs\nmay differ. Also, most programs are more interesting than this one.\n\nMost of the examples in this book are executed on the command line.\nWorking on the command line is convenient for program development and\ntesting, because you can type programs and execute them\nimmediately. Once you have a working program, you should store\nit in a script so you can execute or modify it in the future.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "44d86782-fbbf-4972-bfa0-f05631ace2d2": {"__data__": {"id_": "44d86782-fbbf-4972-bfa0-f05631ace2d2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "2": {"node_id": "b7059d13-4bf1-4044-b228-2d2a847e89a2", "node_type": null, "metadata": {}, "hash": "86a12bb25274512e7ebae2038e6260fd902522c730de1c906114aedff7b45ba6"}, "3": {"node_id": "c127a5a8-e5bd-4e52-98f2-f01c12db95b3", "node_type": null, "metadata": {}, "hash": "38a54077c96472bd457c79487b8d0c6defbacf9c06da7a18d3e613ca6388cab3"}}, "hash": "558da0a43cd04931223993d4a1a08966112ce0390dff9a3f6afa7f17796bdd8e", "text": "\\section{What is a program?}\n\nA {\\bf program} is a sequence of instructions that specifies how to\nperform a computation. The computation might be something\nmathematical, such as solving a system of equations or finding the\nroots of a polynomial, but it can also be a symbolic computation, such\nas searching and replacing text in a document or (strangely enough)\ncompiling a program.\n\nThe details look different in\ndifferent languages, but a few basic instructions\nappear in just about every language:\n\n\\begin{description}\n\n\\item[input:] Get data from the keyboard, a file, or some\nother device.\n\n\\item[output:] Display data on the screen or send data to a\nfile or other device.\n\n\\item[math:] Perform basic mathematical operations like addition and\nmultiplication.\n\n\\item[conditional execution:] Check for certain conditions and\nexecute the appropriate sequence of statements.\n\n\\item[repetition:] Perform some action repeatedly, usually with\nsome variation.\n\n\\end{description}\n\nBelieve it or not, that's pretty much all there is to it. Every\nprogram you've ever used, no matter how complicated, is made up of\ninstructions that look more or less like these. Thus, we can\ndescribe programming as the process of breaking a large, complex task\ninto smaller and smaller subtasks until the subtasks are\nsimple enough to be performed with one of these basic instructions.\n\nThat may be a little vague, but we will come back to this topic later\nwhen we talk about {\\bf algorithms}.\n\n\\section{What is debugging?}\n\\index{debugging}\n\\index{bug}\n\nProgramming is a complex process, and because it is done by human beings,\nit often leads to errors. For whimsical reasons, programming errors are\ncalled {\\bf bugs} and the process of tracking them down and correcting them\nis called {\\bf debugging}.\n\nThree kinds of errors can occur in a program: syntax errors, runtime \nerrors, and semantic errors. It is useful\nto distinguish between them in order to track them down more quickly.\n\n\\subsection{Syntax errors}\n\\index{syntax error}\n\\index{error!syntax}\n\nPython can only execute a program if the program is syntactically\ncorrect; otherwise, the process fails and returns an error message.\n{\\bf Syntax} refers to the structure of a program and the rules about\nthat structure. \\index{syntax} For example, in English, a sentence must\nbegin with a capital letter and end with a period. this sentence contains\na {\\bf syntax error}. So does this one\n\nFor most readers, a few syntax errors are not a significant problem,\nwhich is why we can read the poetry of e. e. cummings without spewing error\nmessages. Python is not so forgiving. If there is a single syntax error\nanywhere in your program, Python will print an error message and quit,\nand you will not be able to run your program. During the first few weeks\nof your programming career, you will probably spend a lot of time tracking\ndown syntax errors. As you gain experience, though, you will make fewer\nerrors and find them faster.\n\n\\subsection{Runtime errors}\n\\label{runtime}\n\\index{runtime error}\n\\index{error!runtime}\n\\index{exception}\n\\index{safe language}\n\\index{language!safe}\n\nThe second type of error is a runtime error, so called because the\nerror does not appear until you run the program. These errors are also\ncalled {\\bf exceptions} because they usually indicate that something\nexceptional (and bad) has happened.\n\nRuntime errors are rare in the simple programs you will see in the\nfirst few chapters, so it might be a while before you encounter one.\n\n\n\\subsection{Semantic errors}\n\\index{semantics}\n\\index{semantic error}\n\\index{error!semantic}\n\nThe third type of error is the {\\bf semantic error}. If there is a\nsemantic error in your program, it will run successfully, in the sense\nthat the computer will not generate any error messages, but it will\nnot do the right thing. It will do something else. Specifically, it\nwill do what you told it to do.\n\nThe problem is that the program you wrote is not the program you\nwanted to write. The meaning of the program (its semantics) is wrong.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c127a5a8-e5bd-4e52-98f2-f01c12db95b3": {"__data__": {"id_": "c127a5a8-e5bd-4e52-98f2-f01c12db95b3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "2": {"node_id": "44d86782-fbbf-4972-bfa0-f05631ace2d2", "node_type": null, "metadata": {}, "hash": "558da0a43cd04931223993d4a1a08966112ce0390dff9a3f6afa7f17796bdd8e"}, "3": {"node_id": "ea53cead-3e5e-49cf-9c71-78029f117c0a", "node_type": null, "metadata": {}, "hash": "0353c8c63ffd3cf2c8bca45b1511d60671a512e574466f9d5f8a7fd74c60b670"}}, "hash": "38a54077c96472bd457c79487b8d0c6defbacf9c06da7a18d3e613ca6388cab3", "text": "The meaning of the program (its semantics) is wrong.\nIdentifying semantic errors can be tricky because it requires you to work\nbackward by looking at the output of the program and trying to figure\nout what it is doing.\n\n\\subsection{Experimental debugging}\n\nOne of the most important skills you will acquire is\ndebugging. Although it can be frustrating, debugging is one of the\nmost intellectually rich, challenging, and interesting parts of programming.\n\nIn some ways, debugging is like detective work. You are confronted\nwith clues, and you have to infer the processes and events that led\nto the results you see.\n\nDebugging is also like an experimental science. Once you have an idea\nwhat is going wrong, you modify your program and try again. If your\nhypothesis was correct, then you can predict the result of the\nmodification, and you take a step closer to a working program. If\nyour hypothesis was wrong, you have to come up with a new one. As\nSherlock Holmes pointed out, ``When you have eliminated the\nimpossible, whatever remains, however improbable, must be the truth.''\n(A. Conan Doyle, {\\em The Sign of Four})\n\n\\index{Holmes, Sherlock}\n\\index{Doyle, Arthur Conan}\n\nFor some people, programming and debugging are the\nsame thing. That is, programming is the process of gradually\ndebugging a program until it does what you want. The idea\nis that you should start with a program that\ndoes {\\em something} and make small modifications, debugging\nthem as you go, so that you always have a working program.\n\nFor example, Linux is an operating system that contains thousands of\nlines of code, but it started out as a simple program Linus Torvalds\nused to explore the Intel 80386 chip. According to Larry Greenfield,\n``One of Linus's earlier projects was a program that would switch\nbetween printing AAAA and BBBB. This later evolved to Linux.''\n({\\em The Linux Users' Guide} Beta Version 1)\n\n\\index{Linux}\n\nLater chapters will make more suggestions about debugging and other\nprogramming practices.\n\n\\section{Formal and natural languages}\n\\index{formal language}\n\\index{natural language}\n\\index{language!formal}\n\\index{language!natural}\n\n{\\bf Natural languages} are the languages that people speak,\nsuch as English, Spanish, and French. They were not designed\nby people (although people try to impose some order on them);\nthey evolved naturally.\n\n{\\bf Formal languages} are languages that are designed by people for\nspecific applications. For example, the notation that mathematicians\nuse is a formal language that is particularly good at denoting\nrelationships among numbers and symbols. Chemists use a formal\nlanguage to represent the chemical structure of molecules. And\nmost importantly:\n\n\\begin{quote}\n{\\bf Programming languages are formal languages that have been\ndesigned to express computations.}\n\\end{quote}\n\nFormal languages tend to have strict rules about syntax. For example,\n$3+3=6$ is a syntactically correct mathematical statement, but\n{\\tt 3=+6\\$} is not. $H_2O$ is a syntactically correct chemical name,\nbut $_2Zz$ is not.\n\nSyntax rules come in two flavors, pertaining to {\\bf tokens} and structure.\nTokens are the basic elements of the language, such as words, numbers,\nand chemical elements. One of the problems with {\\tt 3=+6\\$} is that\n{\\tt \\$} is not a legal token in mathematics (at least as far as we\nknow). Similarly, $_2Zz$ is not legal because there is no element with\nthe abbreviation $Zz$.\n\nThe second type of syntax error pertains to the structure of a\nstatement---that is, the way the tokens are arranged. The statement\n{\\tt 3=+6\\$} is structurally illegal because you can't place a plus\nsign immediately after an equal sign. Similarly, molecular formulas\nhave to have subscripts after the element name, not before.\n\n\\begin{quote}\n{\\em As an exercise, create what appears to be a well-structured English\nsentence with unrecognizable tokens in it. Then write another sentence\nwith all valid tokens but with invalid structure.}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ea53cead-3e5e-49cf-9c71-78029f117c0a": {"__data__": {"id_": "ea53cead-3e5e-49cf-9c71-78029f117c0a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "2": {"node_id": "c127a5a8-e5bd-4e52-98f2-f01c12db95b3", "node_type": null, "metadata": {}, "hash": "38a54077c96472bd457c79487b8d0c6defbacf9c06da7a18d3e613ca6388cab3"}, "3": {"node_id": "447c0f42-0e4f-435d-97c3-e88d6657386c", "node_type": null, "metadata": {}, "hash": "4324122ab1082f88fd54da91482af49bb2a4ad71d574ee2559d2e57b7ce3361e"}}, "hash": "0353c8c63ffd3cf2c8bca45b1511d60671a512e574466f9d5f8a7fd74c60b670", "text": "Then write another sentence\nwith all valid tokens but with invalid structure.}\n\\end{quote}\n\nWhen you read a sentence in English or a statement in a formal\nlanguage, you have to figure out what the structure of the sentence is\n(although in a natural language you do this subconsciously). This\nprocess is called {\\bf parsing}.\n\n\\index{parse}\n\nFor example, when you hear the sentence, ``The other shoe fell,'' you\nunderstand that ``the other shoe'' is the subject and ``fell'' is the\npredicate. Once you have parsed a sentence, you can figure out what it\nmeans, or the semantics of the sentence. Assuming that you know\nwhat a shoe is and what it means to fall, you will understand the\ngeneral implication of this sentence.\n\nAlthough formal and natural languages have many features in\ncommon---tokens, structure, syntax, and semantics---there are many\ndifferences:\n\n\\index{ambiguity}\n\\index{redundancy}\n\\index{literalness}\n\n\\begin{description}\n\n\\item[ambiguity:] Natural languages are full of ambiguity, which\npeople deal with by using contextual clues and other information.\nFormal languages are designed to be nearly or completely unambiguous,\nwhich means that any statement has exactly one meaning,\nregardless of context.\n\n\\item[redundancy:] In order to make up for ambiguity and reduce\nmisunderstandings, natural languages employ lots of\nredundancy. As a result, they are often verbose. Formal languages\nare less redundant and more concise.\n\n\\item[literalness:] Natural languages are full of idiom and\nmetaphor. If I say, ``The other shoe fell,'' there is probably\nno shoe and nothing falling. Formal languages mean\nexactly what they say.\n\n\\end{description}\n\nPeople who grow up speaking a natural language---everyone---often have a\nhard time adjusting to formal languages. In some ways, the difference\nbetween formal and natural language is like the difference between\npoetry and prose, but more so:\n\n\\index{poetry}\n\\index{prose}\n\n\\begin{description}\n\n\\item[Poetry:] Words are used for their sounds as well as for\ntheir meaning, and the whole poem together creates an effect or\nemotional response. Ambiguity is not only common but often\ndeliberate.\n\n\\item[Prose:] The literal meaning of words is more important,\nand the structure contributes more meaning. Prose is more amenable to\nanalysis than poetry but still often ambiguous.\n\n\\item[Programs:] The meaning of a computer program is unambiguous\nand literal, and can be understood entirely by analysis of the\ntokens and structure.\n\n\\end{description}\n\nHere are some suggestions for reading programs (and other formal\nlanguages). First, remember that formal languages are much more dense\nthan natural languages, so it takes longer to read them. Also, the\nstructure is very important, so it is usually not a good idea to read\nfrom top to bottom, left to right. Instead, learn to parse the\nprogram in your head, identifying the tokens and interpreting the\nstructure. Finally, the details matter. Little things\nlike spelling errors and bad punctuation, which you can get away\nwith in natural languages, can make a big difference in a formal\nlanguage.\n\n\\section{The first program}\n\\label{hello}\n\\index{hello world}\n\nTraditionally, the first program written in a new language\nis called ``Hello, World!'' because all it does is display the\nwords, ``Hello, World!'' In Python, it looks like this:\n\n\n\\beforeverb\n\\begin{verbatim}\nprint \"Hello, World!\"\n\\end{verbatim}\n\\afterverb\n%\nThis is an example of a {\\bf print statement}, which doesn't\nactually print anything on paper. It displays a value on the\nscreen. In this case, the result is the words", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "447c0f42-0e4f-435d-97c3-e88d6657386c": {"__data__": {"id_": "447c0f42-0e4f-435d-97c3-e88d6657386c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "node_type": null, "metadata": {}, "hash": "8865d7f7ff7fd59b0d00160f2635b29927198a3bf50874045051106000bcecf3"}, "2": {"node_id": "ea53cead-3e5e-49cf-9c71-78029f117c0a", "node_type": null, "metadata": {}, "hash": "0353c8c63ffd3cf2c8bca45b1511d60671a512e574466f9d5f8a7fd74c60b670"}}, "hash": "4324122ab1082f88fd54da91482af49bb2a4ad71d574ee2559d2e57b7ce3361e", "text": "\\beforeverb\n\\begin{verbatim}\nHello, World!\n\\end{verbatim}\n\\afterverb\n%\nThe quotation marks in the program mark the beginning and end\nof the value; they don't appear in the result.\n\n\\index{print statement}\n\\index{statement!print}\n\nSome people judge the quality of a programming language by the\nsimplicity of the ``Hello, World!'' program. By this standard, Python\ndoes about as well as possible.\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[problem solving:] The process of formulating a problem, finding\na solution, and expressing the solution.\n\n\\item[high-level language:] A programming language like Python that\nis designed to be easy for humans to read and write.\n\n\\item[low-level language:] A programming language that is designed\nto be easy for a computer to execute; also called ``machine language'' or\n``assembly language.''\n\n\\item[portability:] A property of a program that can run on more\nthan one kind of computer.\n\n\\item[interpret:] To execute a program in a high-level language\nby translating it one line at a time.\n\n\\item[compile:] To translate a program written in a high-level language\ninto a low-level language all at once, in preparation for later\nexecution.\n\n\\item[source code:] A program in a high-level language before\nbeing compiled.\n\n\\item[object code:] The output of the compiler after it translates\nthe program.\n\n\\item[executable:] Another name for object code that is ready\nto be executed.\n\n\\item[script:] A program stored in a file (usually one that will be\ninterpreted).\n\n\\item[program:] A set of instructions that specifies a computation.\n\n\\item[algorithm:] A general process for solving a category of\nproblems.\n\n\\item[bug:] An error in a program.\n\n\\item[debugging:] The process of finding and removing any of the\nthree kinds of programming errors.\n\n\\item[syntax:] The structure of a program.\n\n\\item[syntax error:] An error in a program that makes it impossible\nto parse (and therefore impossible to interpret).\n\n\\item[runtime error:] An error that does not occur until the program\nhas started to execute but that prevents the program from continuing.\n\n\\item[exception:] Another name for a runtime error.\n\n\\item[semantic error:] An error in a program that makes it do something\nother than what the programmer intended.\n\n\\item[semantics:] The meaning of a program.\n\n\\item[natural language:] Any one of the languages that people speak that\nevolved naturally.\n\n\\item[formal language:] Any one of the languages that people have designed\nfor specific purposes, such as representing mathematical ideas or\ncomputer programs; all programming languages are formal languages.\n\n\\item[token:] One of the basic elements of the syntactic structure of\na program, analogous to a word in a natural language.\n\n\\item[parse:] To examine a program and analyze the syntactic structure.\n\n\\item[print statement:] An instruction that causes the Python\ninterpreter to display a value on the screen.\n\n\\index{program}\n\\index{problem-solving}\n\\index{high-level language}\n\\index{low-level language}\n\\index{portability}\n\\index{interpret}\n\\index{compile}\n\\index{source code}\n\\index{object code}\n\\index{executable}\n\\index{algorithm}\n\\index{bug}\n\\index{debugging}\n\\index{syntax}\n\\index{semantics}\n\\index{syntax error}\n\\index{runtime error}\n\\index{exception}\n\\index{semantic error}\n\\index{formal language}\n\\index{natural language}\n\\index{parse}\n\\index{token}\n\\index{script}\n\\index{print statement}\n\\index{statement!print}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "26da9a8c-b014-4fbf-b7f5-47bf05613a9e": {"__data__": {"id_": "26da9a8c-b014-4fbf-b7f5-47bf05613a9e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "3": {"node_id": "62c45f91-a5d5-4db9-997b-7f2538092433", "node_type": null, "metadata": {}, "hash": "52819b4fcfd4c6c00a8ae1f0693e15a36aab4c87ec6779d16282b7aad14ec498"}}, "hash": "35ea34d7270a2e749579877a41946d4135bda2b305fc8d8362034a947cfae1bd", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{Variables, expressions and statements}\n\n\\section{Values and types}\n\\index{value}\n\\index{type}\n\\index{string}\n\nA {\\bf value} is one of the fundamental things---like a letter or a\nnumber---that a program manipulates. The values we have seen so far\nare {\\tt 2} (the result when we added {\\tt 1 + 1}), and\n{\\tt 'Hello, World!'}.\n\nThese values belong to different {\\bf types}:\n{\\tt 2} is an integer, and {\\tt 'Hello, World!'} is a {\\bf string},\nso-called because it contains a ``string'' of letters.\nYou (and the interpreter) can identify\nstrings because they are enclosed in quotation marks.\n\nThe print statement also works for integers.\n\n\\beforeverb\n\\begin{verbatim}\n>>> print 4\n4\n\\end{verbatim}\n\\afterverb\n%\nIf you are not sure what type a value has,\nthe interpreter can tell you.\n\n\\beforeverb\n\\begin{verbatim}\n>>> type('Hello, World!')\n\n>>> type(17)\n\n\\end{verbatim}\n\\afterverb\n%\nNot surprisingly, strings belong to the type {\\tt str} and\nintegers belong to the type {\\tt int}. Less obviously, numbers\nwith a decimal point belong to a type called {\\tt float},\nbecause these numbers are represented in a\nformat called {\\bf floating-point}.\n\n\\index{type}\n\\index{string}\n\\index{type!str}\n\\index{int}\n\\index{type!int}\n\\index{float}\n\\index{type!float}\n\n\\beforeverb\n\\begin{verbatim}\n>>> type(3.2)\n\n\\end{verbatim}\n\\afterverb\n%\nWhat about values like {\\tt '17'} and {\\tt '3.2'}?\nThey look like numbers, but they are in quotation marks like\nstrings.\n\n\\beforeverb\n\\begin{verbatim}\n>>> type('17')\n\n>>> type('3.2')\n\n\\end{verbatim}\n\\afterverb\n%\nThey're strings.\n\nWhen you type a large integer, you might be tempted to use commas\nbetween groups of three digits, as in {\\tt 1,000,000}. This is not a\nlegal integer in Python, but it is a legal expression:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print 1,000,000\n1 0 0\n\\end{verbatim}\n\\afterverb\n%\nWell, that's not what we expected at all! Python interprets {\\tt\n1,000,000} as a comma-separated list of three integers, which it\nprints consecutively. This is the first example we have seen of a\nsemantic error: the code runs without producing an error message, but\nit doesn't do the ``right'' thing.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "62c45f91-a5d5-4db9-997b-7f2538092433": {"__data__": {"id_": "62c45f91-a5d5-4db9-997b-7f2538092433", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "26da9a8c-b014-4fbf-b7f5-47bf05613a9e", "node_type": null, "metadata": {}, "hash": "35ea34d7270a2e749579877a41946d4135bda2b305fc8d8362034a947cfae1bd"}, "3": {"node_id": "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e", "node_type": null, "metadata": {}, "hash": "dde9b17d31a19665e7d931375e831222ca1a71ac2140bb25160590a276a6fc90"}}, "hash": "52819b4fcfd4c6c00a8ae1f0693e15a36aab4c87ec6779d16282b7aad14ec498", "text": "\\section{Variables}\n\\index{variable}\n\\index{assignment}\n\\index{statement!assignment}\n\nOne of the most powerful features of a programming language is the\nability to manipulate {\\bf variables}. A variable is a name that\nrefers to a value.\n\nThe {\\bf assignment statement} creates new variables and gives\nthem values:\n\n\\beforeverb\n\\begin{verbatim}\n>>> message = \"What's up, Doc?\"\n>>> n = 17\n>>> pi = 3.14159\n\\end{verbatim}\n\\afterverb\n%\nThis example makes three assignments. The first assigns the string\n{\\tt \"What's up, Doc?\"} to a new variable named {\\tt message}.\nThe second gives the integer {\\tt 17} to {\\tt n}, and the third\ngives the floating-point number {\\tt 3.14159} to {\\tt pi}.\n\nNotice that the first statement uses double quotes to enclose the\nstring. In general, single and double quotes do the same thing, but\nif the string contains a single quote (or an apostrophe, which is\nthe same character), you have to use double quotes to enclose it.\n\n\\index{state diagram}\n\nA common way to represent variables on paper is to write the name with\nan arrow pointing to the variable's value. This kind of figure is\ncalled a {\\bf state diagram} because it shows what state each of the\nvariables is in (think of it as the variable's state of mind).\nThis diagram shows the result of the assignment statements:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/state2.eps}}\n\\afterfig\n\nThe print statement also works with variables.\n\n\\beforeverb\n\\begin{verbatim}\n>>> print message\nWhat's up, Doc?\n>>> print n\n17\n>>> print pi\n3.14159\n\\end{verbatim}\n\\afterverb\n%\nIn each case the result is the value of the variable.\nVariables also have types; again, we can ask the\ninterpreter what they are.\n\n\\beforeverb\n\\begin{verbatim}\n>>> type(message)\n\n>>> type(n)\n\n>>> type(pi)\n\n\\end{verbatim}\n\\afterverb\n%\nThe type of a variable is the type of the value it\nrefers to.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e": {"__data__": {"id_": "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "62c45f91-a5d5-4db9-997b-7f2538092433", "node_type": null, "metadata": {}, "hash": "52819b4fcfd4c6c00a8ae1f0693e15a36aab4c87ec6779d16282b7aad14ec498"}, "3": {"node_id": "95c352af-8078-4534-aad1-1124f88c56dd", "node_type": null, "metadata": {}, "hash": "c9f1f1a0a174191f8d06a10f4968ef9c52da3ea8117b9a6060c4af34de37533b"}}, "hash": "dde9b17d31a19665e7d931375e831222ca1a71ac2140bb25160590a276a6fc90", "text": "\\section{Variable names and keywords}\n\\index{keyword}\n\nProgrammers generally choose names for their variables that\nare meaningful---they document what the variable is used for.\n\nVariable names can be arbitrarily long. They can contain\nboth letters and numbers, but they have to begin with a letter.\nAlthough it is legal to use uppercase letters, by convention\nwe don't. If you do, remember that case matters. {\\tt Bruce}\nand {\\tt bruce} are different variables.\n\nThe underscore character ({\\tt \\_}) can appear in a name.\nIt is often used in names with multiple words, such as\n{\\tt my\\_name} or {\\tt price\\_of\\_tea\\_in\\_china}.\n\n\\index{underscore character}\n\nIf you give a variable an illegal name, you get a syntax error:\n\n\\adjustpage{-2}\n\\pagebreak\n\\beforeverb\n\\begin{verbatim}\n>>> 76trombones = 'big parade'\nSyntaxError: invalid syntax\n>>> more$ = 1000000\nSyntaxError: invalid syntax\n>>> class = 'Computer Science 101'\nSyntaxError: invalid syntax\n\\end{verbatim}\n\\afterverb\n%\n{\\tt 76trombones} is illegal because it does not begin with a letter.\n{\\tt more\\$} is illegal because it contains an illegal character, the dollar\nsign. But what's wrong with {\\tt class}?\n\nIt turns out that {\\tt class} is one of the Python {\\bf keywords}.\nKeywords define the language's rules and structure, and they cannot be\nused as variable names.\n\n\\index{keyword}\n\nPython has twenty-nine keywords:\n\n\\beforeverb\n\\begin{verbatim}\nand def exec if not return\nassert del finally import or try\nbreak elif for in pass while\nclass else from is print yield\ncontinue except global lambda raise\n\\end{verbatim}\n\\afterverb\n%\nYou might want to keep this list handy. If the interpreter complains\nabout one of your variable names and you don't know why, see if it\nis on this list.\n\n\n\\section{Statements}\n\nA statement is an instruction that the Python interpreter can\nexecute. We have seen two kinds of statements: print\nand assignment.\n\nWhen you type a statement on the command line, Python\nexecutes it and displays the result, if there is one. The\nresult of a print statement is a value. Assignment statements\ndon't produce a result.\n\nA script usually contains a sequence of statements. If there\nis more than one statement, the results appear one at a time\nas the statements execute.\n\nFor example, the script\n\n\\beforeverb\n\\begin{verbatim}\nprint 1\nx = 2\nprint x\n\\end{verbatim}\n\\afterverb\n%\nproduces the output\n\n\\beforeverb\n\\begin{verbatim}\n1\n2\n\\end{verbatim}\n\\afterverb\n%\nAgain, the assignment statement produces no output.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "95c352af-8078-4534-aad1-1124f88c56dd": {"__data__": {"id_": "95c352af-8078-4534-aad1-1124f88c56dd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e", "node_type": null, "metadata": {}, "hash": "dde9b17d31a19665e7d931375e831222ca1a71ac2140bb25160590a276a6fc90"}, "3": {"node_id": "2cad634c-c9c9-4205-9361-baa79a34008c", "node_type": null, "metadata": {}, "hash": "cc555f57c1239ca33f570436cefcee835b32b76cbcb33ccf32099df9a15fe819"}}, "hash": "c9f1f1a0a174191f8d06a10f4968ef9c52da3ea8117b9a6060c4af34de37533b", "text": "\\section{Evaluating expressions}\n\nAn expression is a combination of values, variables, and operators.\nIf you type an expression on the command line, the interpreter\n{\\bf evaluates} it and displays the result:\n\n\\beforeverb\n\\begin{verbatim}\n>>> 1 + 1\n2\n\\end{verbatim}\n\\afterverb\n%\nAlthough expressions contain values, variables, and operators,\nnot every expression contains all of these elements.\nA value all by itself is considered an expression, and so is\na variable.\n\n\\beforeverb\n\\begin{verbatim}\n>>> 17\n17\n>>> x\n2\n\\end{verbatim}\n\\afterverb\n%\nConfusingly, evaluating an expression is not quite the same\nthing as printing a value.\n\n\\beforeverb\n\\begin{verbatim}\n>>> message = 'Hello, World!'\n>>> message\n'Hello, World!'\n>>> print message\nHello, World!\n\\end{verbatim}\n\\afterverb\n%\nWhen the Python interpreter displays the value of an expression, it\nuses the same format you would use to enter a value. In the case of\nstrings, that means that it includes the quotation marks. But if\nyou use a print statement, Python displays the contents of the string\nwithout the quotation marks.\n\nIn a script, an expression all by itself is a legal statement, but it\ndoesn't do anything. The script\n\n\\beforeverb\n\\begin{verbatim}\n17\n3.2\n'Hello, World!'\n1 + 1\n\\end{verbatim}\n\\afterverb\n%\nproduces no output at all. How would you change the script to\ndisplay the values of these four expressions?\n\n\n\\section{Operators and operands}\n\\index{operator}\n\\index{operand}\n\\index{expression}\n\n{\\bf Operators} are special symbols that represent computations\nlike addition and multiplication. The values the operator uses are\ncalled {\\bf operands}.\n\nThe following are all legal Python expressions whose meaning is more or\nless clear:\n\\adjustpage{2}\n\\beforeverb\n\\begin{verbatim}\n20+32 hour-1 hour*60+minute minute/60 5**2 (5+9)*(15-7)\n\\end{verbatim}\n\\afterverb\n%\nThe symbols {\\tt +}, {\\tt -}, and {\\tt /}, and the use of parenthesis for\ngrouping, mean in Python what they mean in mathematics. The asterisk\n({\\tt *}) is the symbol for multiplication, and {\\tt **} is the symbol\nfor exponentiation.\n\nWhen a variable name appears in the place of an operand, it\nis replaced with its value before the operation is\nperformed.\n\nAddition, subtraction, multiplication, and exponentiation all do what\nyou expect, but you might be surprised by division. The following\noperation has an unexpected result:\n\n\\beforeverb\n\\begin{verbatim}\n>>> minute = 59\n>>> minute/60\n0\n\\end{verbatim}\n\\afterverb\n%\nThe value of {\\tt minute} is 59, and in conventional arithmetic 59\ndivided by 60 is 0.98333, not 0. The reason for the discrepancy is\nthat Python is performing {\\bf integer division}.\n\n\\index{integer division}\n\nWhen both of the operands are integers, the result must also be an integer,\nand by convention, integer division always rounds {\\em down}, even in cases\nlike this where the next integer is very close.\n\nA possible solution to this problem is to calculate a percentage\nrather than a fraction:\n\n\\beforeverb\n\\begin{verbatim}\n>>> minute*100/60\n98\n\\end{verbatim}\n\\afterverb\n%\nAgain the result is rounded down, but at least now the answer is\napproximately correct. Another alternative is to use floating-point\ndivision, which we get to in Chapter~\\ref{floatchap}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2cad634c-c9c9-4205-9361-baa79a34008c": {"__data__": {"id_": "2cad634c-c9c9-4205-9361-baa79a34008c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "95c352af-8078-4534-aad1-1124f88c56dd", "node_type": null, "metadata": {}, "hash": "c9f1f1a0a174191f8d06a10f4968ef9c52da3ea8117b9a6060c4af34de37533b"}, "3": {"node_id": "74429688-a399-4fd6-87c6-98bf364281ed", "node_type": null, "metadata": {}, "hash": "5f434e21025926ae56c723241a99c30b6f946215da3264d75e75267f5eff837e"}}, "hash": "cc555f57c1239ca33f570436cefcee835b32b76cbcb33ccf32099df9a15fe819", "text": "\\section{Order of operations}\n\\index{order of operations}\n\\index{rules of precedence}\n\nWhen more than one operator appears in an expression, the order of\nevaluation depends on the {\\bf rules of precedence}. Python follows\nthe same precedence rules for its mathematical operators that\nmathematics does. The acronym {\\bf PEMDAS} is a useful way to\nremember the order of operations:\n\n\\begin{itemize}\n\n\\item {\\bf P}arentheses have the highest precedence and can be used \nto force an expression to evaluate in the order you want. Since\nexpressions in parentheses are evaluated first, {\\tt 2 * (3-1)} is 4,\nand {\\tt (1+1)**(5-2)} is 8. You can also use parentheses to make an\nexpression easier to read, as in {\\tt (minute * 100) / 60}, even\nthough it doesn't change the result.\n\n\\item {\\bf E}xponentiation has the next highest precedence, so\n{\\tt 2**1+1} is 3 and not 4, and {\\tt 3*1**3} is 3 and not 27.\n\n\\item {\\bf M}ultiplication and {\\bf D}ivision have the same precedence,\nwhich is higher than {\\bf A}ddition and {\\bf S}ubtraction, which also\nhave the same precedence. So {\\tt 2*3-1} yields 5 rather than 4, and\n{\\tt 2/3-1} is {\\tt -1}, not {\\tt 1} (remember that in integer\ndivision, {\\tt 2/3=0}).\n\n\\item Operators with the same precedence are evaluated from left to \nright. So in the expression {\\tt minute*100/60}, the multiplication\nhappens first, yielding {\\tt 5900/60}, which in turn yields {\\tt 98}.\nIf the operations had been evaluated from right to left, the result\nwould have been {\\tt 59*1}, which is {\\tt 59}, which is wrong.\n\n\\end{itemize}\n\n\n\\section{Operations on strings}\n\\index{string operation}\n\nIn general, you cannot perform mathematical operations on strings, even\nif the strings look like numbers. The following are illegal (assuming\nthat {\\tt message} has type {\\tt string}):\n\n\\beforeverb\n\\begin{verbatim}\n message-1 'Hello'/123 message*'Hello' '15'+2\n\\end{verbatim}\n\\afterverb\n%\nInterestingly, the {\\tt +} operator does work with strings, although it\ndoes not do exactly what you might expect. For strings, the {\\tt +} operator\nrepresents {\\bf concatenation}, which means joining the two operands by\nlinking them end-to-end. For example:\n\n\\index{concatenation}\n\n\\beforeverb\n\\begin{verbatim}\nfruit = 'banana'\nbakedGood = ' nut bread'\nprint fruit + bakedGood\n\\end{verbatim}\n\\afterverb\n%\nThe output of this program is {\\tt banana nut bread}. The space\nbefore the word {\\tt nut} is part of the string, and is necessary\nto produce the space between the concatenated strings.\n\nThe {\\tt *} operator also works on strings; it performs repetition.\nFor example, {\\tt 'Fun'*3} is {\\tt 'FunFunFun'}. One of the operands\nhas to be a string; the other has to be an integer.\n\nOn one hand, this interpretation of {\\tt +} and {\\tt *} makes sense by\nanalogy with addition and multiplication. Just as {\\tt 4*3} is\nequivalent to {\\tt 4+4+4}, we expect {\\tt 'Fun'*3} to be the same as\n{\\tt 'Fun'+'Fun'+'Fun'}, and it is. On the other hand, there is a\nsignificant way in which string concatenation and repetition are\ndifferent from integer addition and multiplication.\nCan you think of a property that addition and multiplication have\nthat string concatenation and repetition do not?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "74429688-a399-4fd6-87c6-98bf364281ed": {"__data__": {"id_": "74429688-a399-4fd6-87c6-98bf364281ed", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "2cad634c-c9c9-4205-9361-baa79a34008c", "node_type": null, "metadata": {}, "hash": "cc555f57c1239ca33f570436cefcee835b32b76cbcb33ccf32099df9a15fe819"}, "3": {"node_id": "5051091c-194f-49a1-8289-f686858300ec", "node_type": null, "metadata": {}, "hash": "785ae50a1841e82e384cdf5ff50bd2ac979b4beb5096840084d61bed2c617ed7"}}, "hash": "5f434e21025926ae56c723241a99c30b6f946215da3264d75e75267f5eff837e", "text": "\\section{Composition}\n\\index{composition}\n\nSo far, we have looked at the elements of a program---variables,\nexpressions, and statements---in isolation, without talking about how to\ncombine them.\n\nOne of the most useful features of programming languages is their\nability to take small building blocks and {\\bf compose} them. For\nexample, we know how to add numbers and we know how to print; it turns\nout we can do both at the same time:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print 17 + 3\n20\n\\end{verbatim}\n\\afterverb\n%\nIn reality, the\naddition has to happen before the printing, so the actions aren't \nactually happening at the same time. The point is that any\nexpression involving numbers, strings, and variables can be used inside a\nprint statement. You've already seen an example of this:\n\n\\beforeverb\n\\begin{verbatim}\nprint 'Number of minutes since midnight: ', hour*60+minute\n\\end{verbatim}\n\\afterverb\n%\nYou can also put arbitrary expressions on the right-hand side of an\nassignment statement:\n\n\\beforeverb\n\\begin{verbatim}\npercentage = (minute * 100) / 60\n\\end{verbatim}\n\\afterverb\n%\nThis ability may not seem impressive now, but you will see other examples\nwhere composition makes it possible to express complex computations neatly and\nconcisely.\n\nWarning: There are limits on where you can use certain expressions. For\nexample, the left-hand side of an assignment statement has to be a\n{\\em variable} name, not an expression. So, the following is illegal:\n{\\tt minute+1 = hour}.\n\n\n\\section{Comments}\n\\index{comment}\n\nAs programs get bigger and more complicated, they get more difficult to\nread. Formal languages are dense, and it is often difficult to look\nat a piece of\ncode and figure out what it is doing, or why.\n\nFor this reason, it is a good idea to add notes to your programs to explain\nin natural language what the program is doing. These notes are called\n{\\bf comments}, and they are marked with the {\\tt \\#} symbol:\n\n\\beforeverb\n\\begin{verbatim}\n# compute the percentage of the hour that has elapsed\npercentage = (minute * 100) / 60\n\\end{verbatim}\n\\afterverb\n%\nIn this case, the comment appears on a line by itself. You can also put\ncomments at the end of a line:\n\n\\beforeverb\n\\begin{verbatim}\npercentage = (minute * 100) / 60 # caution: integer division\n\\end{verbatim}\n\\afterverb\n%\nEverything from the {\\tt \\#} to the end of the line is ignored---it\nhas no effect on the program. The message is intended for the programmer or\nfor future programmers who might use this code. In this case, it\nreminds the reader about the ever-surprising behavior of integer division.\n\n\\index{integer division}\n\nThis sort of comment is less necessary if you use the integer division\noperation, \\verb+//+. It has the same effect as the division\noperator\\footnote{For now. The behavior of the division operator may\nchange in future versions of Python.}, but it signals that the effect\nis deliberate.\n\n\\beforeverb\n\\begin{verbatim}\npercentage = (minute * 100) // 60 \n\\end{verbatim}\n\\afterverb\n%\nThe integer division operator is like a comment that says, ``I know\nthis is integer division, and I like it that way!''\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[value:] A number or string (or other thing to be named later)\nthat can be stored in a variable or computed in an expression.\n\n\\item[type:] A set of values. The type of a value determines how\nit can be used in expressions. So far, the types you have seen are integers\n(type {\\tt int}), floating-point numbers (type {\\tt float}),\nand strings (type {\\tt string}).\n\n\\item[floating-point:] A format for representing numbers with fractional\nparts.\n\n\\item[variable:] A name that refers to a value.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5051091c-194f-49a1-8289-f686858300ec": {"__data__": {"id_": "5051091c-194f-49a1-8289-f686858300ec", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6798d972-db6f-4157-b244-43106ac2bb95", "node_type": null, "metadata": {}, "hash": "00ce622136b720ff22bae61454be83e79e07a7def80162ac87c02e6d4379cb2c"}, "2": {"node_id": "74429688-a399-4fd6-87c6-98bf364281ed", "node_type": null, "metadata": {}, "hash": "5f434e21025926ae56c723241a99c30b6f946215da3264d75e75267f5eff837e"}}, "hash": "785ae50a1841e82e384cdf5ff50bd2ac979b4beb5096840084d61bed2c617ed7", "text": "\\item[variable:] A name that refers to a value.\n\n\\item[statement:] A section of code that represents a command or action. So\nfar, the statements you have seen are assignments and print statements.\n\n\\item[assignment:] A statement that assigns a value to a variable.\n\n\\item[state diagram:] A graphical representation of a set of variables and the\nvalues to which they refer.\n\n\\item[keyword:] A reserved word that is used by the compiler to parse a\nprogram; you cannot use keywords like {\\tt if}, {\\tt def}, and {\\tt while} as\nvariable names.\n\n\\item[operator:] A special symbol that represents a simple computation like\naddition, multiplication, or string concatenation.\n\n\\item[operand:] One of the values on which an operator operates.\n\n\\item[expression:] A combination of variables, operators, and values that\nrepresents a single result value.\n\n\\item[evaluate:] To simplify an expression by performing the operations\nin order to yield a single value.\n\n\\item[integer division:] An operation that divides one integer by\nanother and yields an integer. Integer division yields only the\nwhole number of times that the numerator is divisible by the\ndenominator and discards any remainder.\n\n\\item[rules of precedence:] The set of rules governing the order in which\nexpressions involving multiple operators and operands are evaluated.\n\n\\item[concatenate:] To join two operands end-to-end.\n\n\\item[composition:] The ability to combine simple expressions and statements\ninto compound statements and expressions in order to represent complex\ncomputations concisely.\n\n\\item[comment:] Information in a program that is meant for other\nprogrammers (or anyone reading the source code) and has no effect on the\nexecution of the program.\n\n\\index{value}\n\\index{floating-point}\n\\index{variable}\n\\index{type}\n\\index{keyword}\n\\index{statement}\n\\index{assignment}\n\\index{comment}\n\\index{state diagram}\n\\index{expression}\n\\index{operator}\n\\index{operand}\n\\index{integer division}\n\\index{rules of precedence}\n\\index{precedence}\n\\index{concatenation}\n\\index{composition}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4f932ede-8209-44e0-9202-0d644d756afc": {"__data__": {"id_": "4f932ede-8209-44e0-9202-0d644d756afc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "3": {"node_id": "5379d4a0-b2cd-45ea-b795-818ae80fb090", "node_type": null, "metadata": {}, "hash": "db3ab9f794c6bc32994357788ef9b09bd45c1845b4e3b1f2cea1d2d6a867fb96"}}, "hash": "0e84ddac98747c405e502006642d6d3e7470ef7dfbd2b4cd913b71149fa1ce02", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Functions}\n\\label{floatchap}\n\n\\section{Function calls}\n\\label{functionchap}\n\\index{function call}\n\\index{call!function}\n\nYou have already seen one example of a {\\bf function call}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> type(\"32\")\n\n\\end{verbatim}\n\\afterverb\n%\nThe name of the function is {\\tt type}, and it displays the type of\na value or variable. The value or variable, which is called the\n{\\bf argument} of the function, has to be enclosed in parentheses.\nIt is common to say that a function ``takes'' an argument and ``returns''\na result. The result is called the {\\bf return value}.\n\n\\index{argument}\n\\index{return value}\n\nInstead of printing the return value, we could assign it to a variable:\n\n\\beforeverb\n\\begin{verbatim}\n>>> betty = type(\"32\")\n>>> print betty\n\n\\end{verbatim}\n\\afterverb\n%\nAs another example, the {\\tt id} function takes a value or a variable and\nreturns an integer that acts as a unique identifier for the value:\n\n\\beforeverb\n\\begin{verbatim}\n>>> id(3)\n134882108\n>>> betty = 3\n>>> id(betty)\n134882108\n\\end{verbatim}\n\\afterverb\n%\nEvery value has an {\\tt id}, which is a unique number related to where\nit is stored in the memory of the computer. The {\\tt id} of a\nvariable is the {\\tt id} of the value to which it refers.\n\n\n\n\\section{Type conversion}\n\\index{conversion!type}\n\\index{type conversion}\n\nPython provides a collection of built-in functions that convert values\nfrom one type to another. The {\\tt int} function takes any value and\nconverts it to an integer, if possible, or complains otherwise:\n\n\\beforeverb\n\\begin{verbatim}\n>>> int(\"32\")\n32\n>>> int(\"Hello\")\nValueError: invalid literal for int(): Hello\n\\end{verbatim}\n\\afterverb\n%\n{\\tt int} can also convert floating-point values to integers, but\nremember that it truncates the fractional part:\n\n\\beforeverb\n\\begin{verbatim}\n>>> int(3.99999)\n3\n>>> int(-2.3)\n-2\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt float} function converts integers and strings to floating-point\nnumbers:\n\n\\beforeverb\n\\begin{verbatim}\n>>> float(32)\n32.0\n>>> float(\"3.14159\")\n3.14159\n\\end{verbatim}\n\\afterverb\n%\nFinally, the {\\tt str} function converts to\ntype {\\tt string}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> str(32)\n'32'\n>>> str(3.14149)\n'3.14149'\n\\end{verbatim}\n\\afterverb\n%\nIt may seem odd that Python distinguishes the integer value {\\tt 1}\nfrom the floating-point value {\\tt 1.0}. They may represent the same\nnumber, but they belong to different types. The reason is that they\nare represented differently inside the computer.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5379d4a0-b2cd-45ea-b795-818ae80fb090": {"__data__": {"id_": "5379d4a0-b2cd-45ea-b795-818ae80fb090", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "4f932ede-8209-44e0-9202-0d644d756afc", "node_type": null, "metadata": {}, "hash": "0e84ddac98747c405e502006642d6d3e7470ef7dfbd2b4cd913b71149fa1ce02"}, "3": {"node_id": "34ed9af4-83b2-4f32-b700-fc003541f5a6", "node_type": null, "metadata": {}, "hash": "b39d55b3e1e1c72a63dc1ac5c690425d5ccc64a50f51a30cbc999f46633ef5f9"}}, "hash": "db3ab9f794c6bc32994357788ef9b09bd45c1845b4e3b1f2cea1d2d6a867fb96", "text": "\\section{Type coercion}\n\\index{type coercion}\n\\index{coercion!type}\n\\index{integer division}\n\\index{division!integer}\n\nNow that we can convert between types, we have another way to deal\nwith integer division. Returning to the example from the previous\nchapter, suppose we want to calculate the fraction of an hour that has\nelapsed. The most obvious expression, {\\tt minute / 60}, does integer\narithmetic, so the result is always 0, even at 59 minutes\npast the hour.\n\nOne solution is to convert {\\tt minute} to floating-point\nand do floating-point division:\n\n\\beforeverb\n\\begin{verbatim}\n>>> minute = 59\n>>> float(minute) / 60\n0.983333333333\n\\end{verbatim}\n\\afterverb\n%\nAlternatively, we can take advantage of the rules for\nautomatic type conversion, which is called {\\bf type coercion}.\nFor the mathematical operators, if either operand is a {\\tt float},\nthe other is automatically converted to a {\\tt float}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> minute = 59\n>>> minute / 60.0\n0.983333333333\n\\end{verbatim}\n\\afterverb\n%\nBy making the denominator a {\\tt float}, we force Python to do\nfloating-point division.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "34ed9af4-83b2-4f32-b700-fc003541f5a6": {"__data__": {"id_": "34ed9af4-83b2-4f32-b700-fc003541f5a6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "5379d4a0-b2cd-45ea-b795-818ae80fb090", "node_type": null, "metadata": {}, "hash": "db3ab9f794c6bc32994357788ef9b09bd45c1845b4e3b1f2cea1d2d6a867fb96"}, "3": {"node_id": "5f510fb4-a8c9-4360-a742-ec2f3b45bab6", "node_type": null, "metadata": {}, "hash": "c3ee9ecaa1533590c5ad83c14b30e730a8fd23632dc0a079b6ed80d05d431764"}}, "hash": "b39d55b3e1e1c72a63dc1ac5c690425d5ccc64a50f51a30cbc999f46633ef5f9", "text": "\\section{Math functions}\n\\index{math function}\n\\index{function!math}\n\nIn mathematics, you have probably seen functions like {\\tt sin} and\n{\\tt log}, and you have learned to evaluate expressions like {\\tt\nsin(pi/2)} and {\\tt log(1/x)}. First, you evaluate the expression in\nparentheses (the argument). For example, {\\tt pi/2} is approximately\n1.571, and {\\tt 1/x} is 0.1 (if {\\tt x} happens to be 10.0).\n\nThen, you evaluate the function itself, either by looking it up in a\ntable or by performing various computations. The {\\tt sin} of 1.571\nis 1, and the {\\tt log} of 0.1 is -1 (assuming that {\\tt log}\nindicates the logarithm base 10).\n\nThis process can be applied repeatedly to evaluate more complicated\nexpressions like {\\tt log(1/sin(pi/2))}. First, you evaluate the\nargument of the innermost function, then evaluate the function, and so\non.\n\nPython has a math module that provides most of the familiar\nmathematical functions. A {\\bf module} is a file that contains a\ncollection of related functions grouped together.\n\n\\index{module}\n\nBefore we can use the functions from a module, we have to import them:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import math\n\\end{verbatim}\n\\afterverb\n%\nTo call one of the functions, we have to specify the name of the\nmodule and the name of the function, separated by a dot, also\nknown as a period. This format is called {\\bf dot notation}.\n\n\\index{dot notation}\n\n\\beforeverb\n\\begin{verbatim}\n>>> decibel = math.log10 (17.0)\n>>> angle = 1.5\n>>> height = math.sin(angle)\n\\end{verbatim}\n\\afterverb\n%\nThe first statement sets {\\tt decibel} to the logarithm of 17, base\n{\\tt 10}. There is also a function called {\\tt log} that takes logarithm\nbase {\\tt e}.\n\nThe third statement finds the sine of the value of the variable {\\tt\nangle}. {\\tt sin} and the other trigonometric functions ({\\tt cos},\n{\\tt tan}, etc.) take arguments in radians. To convert from degrees\nto radians, divide by 360 and multiply by {\\tt 2*pi}. For example, to\nfind the sine of 45 degrees, first calculate the angle in radians and\nthen take the sine:\n\n\\beforeverb\n\\begin{verbatim}\n>>> degrees = 45\n>>> angle = degrees * 2 * math.pi / 360.0\n>>> math.sin(angle)\n0.707106781187\n\\end{verbatim}\n\\afterverb\n%\nThe constant {\\tt pi} is also part of the math module. If you know\nyour geometry, you can check the previous result by comparing it to\nthe square root of two divided by two:\n\n\\beforeverb\n\\begin{verbatim}\n>>> math.sqrt(2) / 2.0\n0.707106781187\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{Composition}\n\\index{composition}\n\\index{function!composition}\n\nJust as with mathematical functions, Python functions can be composed,\nmeaning that you use one expression as part of another. For example, you can\nuse any expression as an argument to a function:\n\n\\beforeverb\n\\begin{verbatim}\n>>> x = math.cos(angle + math.pi/2)\n\\end{verbatim}\n\\afterverb\n%\nThis statement takes the value of {\\tt pi}, divides it by 2, and adds\nthe result to the value of {\\tt angle}. The sum is then passed as an\nargument to the {\\tt cos} function.\n\nYou can also take the result of one function and pass it as an argument to\nanother:\n\n\\beforeverb\n\\begin{verbatim}\n>>> x = math.exp(math.log(10.0))\n\\end{verbatim}\n\\afterverb\n%\nThis statement finds the log base {\\tt e} of 10 and then raises {\\tt e} to\nthat power. The result gets assigned to {\\tt x}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5f510fb4-a8c9-4360-a742-ec2f3b45bab6": {"__data__": {"id_": "5f510fb4-a8c9-4360-a742-ec2f3b45bab6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "34ed9af4-83b2-4f32-b700-fc003541f5a6", "node_type": null, "metadata": {}, "hash": "b39d55b3e1e1c72a63dc1ac5c690425d5ccc64a50f51a30cbc999f46633ef5f9"}, "3": {"node_id": "d5bc4479-681b-42f3-914e-09acf2d7ed74", "node_type": null, "metadata": {}, "hash": "e2ef8a897f8ff911a14e783cfe44e22ce0b141fa07618b0c8efe0c48e5350a6d"}}, "hash": "c3ee9ecaa1533590c5ad83c14b30e730a8fd23632dc0a079b6ed80d05d431764", "text": "\\section{Adding new functions}\n\nSo far, we have only been using the functions that come with Python,\nbut it is also possible to add new functions. Creating new functions\nto solve your particular problems is one of the most useful things\nabout a general-purpose programming language.\n\nIn the context of programming, a {\\bf function} is a named sequence of\nstatements that performs a desired operation. This operation is specified\nin a {\\bf function definition}. The functions we have been using so far have\nbeen defined for us, and these definitions have been hidden. This is a good\nthing, because it allows us to use the functions without worrying about the\ndetails of their definitions.\n\n\\index{function}\n\\index{function definition}\n\\index{definition!function}\n\nThe syntax for a function definition is:\n\n\\beforeverb\n\\begin{verbatim}\ndef NAME( LIST OF PARAMETERS ):\n STATEMENTS\n\\end{verbatim}\n\\afterverb\n%\nYou can make up any names you want for the functions you create, except that\nyou can't use a name that is a Python keyword. The list of parameters\nspecifies what information, if any, you have to provide in order to\nuse the new function.\n\nThere can be any number of statements inside the function, but they\nhave to be indented from the left margin. In the examples in this\nbook, we will use an indentation of two spaces.\n\nThe first couple of functions we are going to write have no parameters,\nso the syntax looks like this:\n\n\\beforeverb\n\\begin{verbatim}\ndef newLine():\n print\n\\end{verbatim}\n\\afterverb\n%\nThis function is named {\\tt newLine}. The empty parentheses indicate\nthat it has no parameters. It contains only a single statement, which\noutputs a newline character. (That's what happens when you use a {\\tt print}\ncommand without any arguments.)\n\nThe syntax for calling the new function is the same as the syntax\nfor built-in functions:\n\n\\beforeverb\n\\begin{verbatim}\nprint \"First Line.\"\nnewLine()\nprint \"Second Line.\"\n\\end{verbatim}\n\\afterverb\n%\nThe output of this program is:\n\n\\beforeverb\n\\begin{verbatim}\nFirst line.\n\nSecond line.\n\\end{verbatim}\n\\afterverb\n%\nNotice the extra space between the two lines. What if we wanted\nmore space between the lines? We could call the same function\nrepeatedly:\n\n\\beforeverb\n\\begin{verbatim}\nprint \"First Line.\"\nnewLine()\nnewLine()\nnewLine()\nprint \"Second Line.\"\n\\end{verbatim}\n\\afterverb\n%\nOr we could write a new function named {\\tt threeLines} that prints\nthree new lines:\n\n\\beforeverb\n\\begin{verbatim}\ndef threeLines():\n newLine()\n newLine()\n newLine()\n\nprint \"First Line.\"\nthreeLines()\nprint \"Second Line.\"\n\\end{verbatim}\n\\afterverb\n%\nThis function contains three statements, all of which are indented by two\nspaces. Since the next statement is not indented, Python knows that it is\nnot part of the function.\n\nYou should notice a few things about this program:\n\n\\begin{enumerate}\n\n\\item You can call the same procedure repeatedly. In fact, it is quite common\nand useful to do so.\n\n\\item You can have one function call another function; in this case\n{\\tt threeLines} calls {\\tt newLine}.\n\n\\end{enumerate}\n\nSo far, it may not be clear why it is worth the trouble to create all of these\nnew functions. Actually, there are a lot of reasons, but this example\ndemonstrates two:\n\n\\begin{itemize}\n\n\\item Creating a new function gives you an opportunity to name a\ngroup of statements. Functions can simplify a program by hiding a complex\ncomputation behind a single command and by using English words in place of\narcane code.\n\n\\item Creating a new function can make a program smaller by eliminating\nrepetitive code. For example, a short way to print nine consecutive new\nlines is to call {\\tt threeLines} three times.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d5bc4479-681b-42f3-914e-09acf2d7ed74": {"__data__": {"id_": "d5bc4479-681b-42f3-914e-09acf2d7ed74", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "5f510fb4-a8c9-4360-a742-ec2f3b45bab6", "node_type": null, "metadata": {}, "hash": "c3ee9ecaa1533590c5ad83c14b30e730a8fd23632dc0a079b6ed80d05d431764"}, "3": {"node_id": "3a459cfa-8984-45f1-a5d4-819cc5044aa9", "node_type": null, "metadata": {}, "hash": "fc59565496f8526cd269311cfc7d970dd966982686e0fef17d9086159b1bcd1e"}}, "hash": "e2ef8a897f8ff911a14e783cfe44e22ce0b141fa07618b0c8efe0c48e5350a6d", "text": "\\end{itemize}\n\n\\begin{quote}\n{\\em As an exercise, write a function called {\\tt nineLines} that uses\n{\\tt threeLines} to print nine blank lines. How would you print \ntwenty-seven new lines?}\n\\end{quote}\n\n\n\\section{Definitions and use}\n\nPulling together the code fragments from Section 3.6, the\nwhole program looks like this:\n\n\\beforeverb\n\\begin{verbatim}\ndef newLine():\n print\n\ndef threeLines():\n newLine()\n newLine()\n newLine()\n\nprint \"First Line.\"\nthreeLines()\nprint \"Second Line.\"\n\\end{verbatim}\n\\afterverb\n%\nThis program contains two function definitions: {\\tt newLine} and\n{\\tt threeLines}. Function definitions get executed just like other\nstatements, but the effect is to create the new function. The statements\ninside the function do not get executed until the function is called, and\nthe function definition generates no output.\n\nAs you might expect, you have to create a function before you can\nexecute it. In other words, the function definition has to be\nexecuted before the first time it is called.\n\n\\begin{quote}\n{\\em As an exercise, move the last three lines of this program\nto the top, so the function calls appear before the definitions. Run \nthe program and see what error\nmessage you get.}\n\\end{quote}\n\n\\begin{quote}\n{\\em As another exercise, start with the working version of the program\nand move the definition of {\\tt newLine} after the definition of\n{\\tt threeLines}. What happens when you run this program?}\n\\end{quote}\n\n\\section{Flow of execution}\n\\index{flow of execution}\n\nIn order to ensure that a function is defined before its first use,\nyou have to know the order in which statements are executed, which is\ncalled the {\\bf flow of execution}.\n\nExecution always begins at the first statement of the program. Statements are\nexecuted one at a time, in order from top to bottom.\n\nFunction definitions do not alter the flow of execution of the program, but\nremember that statements inside the function are not executed until the\nfunction is called. Although it is not common, you can define one function\ninside another. In this case, the inner definition isn't executed until the\nouter function is called.\n\nFunction calls are like a detour in the flow of execution. Instead of going to\nthe next statement, the flow jumps to the first line of the called function,\nexecutes all the statements there, and then comes back to pick up where it left\noff.\n\nThat sounds simple enough, until you remember that one function can call\nanother. While in the middle of one function, the program might have to\nexecute the statements in another function. But while executing that\nnew function, the program might have to execute yet another function!\n\nFortunately, Python is adept at keeping track of where it is, so each time a\nfunction completes, the program picks up where it left off in the function that\ncalled it. When it gets to the end of the program, it terminates.\n\nWhat's the moral of this sordid tale? When you read a program, don't read from\ntop to bottom. Instead, follow the flow of execution.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3a459cfa-8984-45f1-a5d4-819cc5044aa9": {"__data__": {"id_": "3a459cfa-8984-45f1-a5d4-819cc5044aa9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "d5bc4479-681b-42f3-914e-09acf2d7ed74", "node_type": null, "metadata": {}, "hash": "e2ef8a897f8ff911a14e783cfe44e22ce0b141fa07618b0c8efe0c48e5350a6d"}, "3": {"node_id": "660b852a-0985-4490-aad3-e7b3ccfb829c", "node_type": null, "metadata": {}, "hash": "ed839f334ebae923b5e66572139359ae41f05eafeb6973bd5e5e6a5eb7104d75"}}, "hash": "fc59565496f8526cd269311cfc7d970dd966982686e0fef17d9086159b1bcd1e", "text": "\\section{Parameters and arguments}\n\\label{parameters}\n\\index{parameter}\n\\index{function!parameter}\n\\index{argument}\n\\index{function!argument}\n\nSome of the built-in functions you have used require arguments, the\nvalues that control how the function does its job. For example, if\nyou want to find the sine of a number, you have to indicate what the\nnumber is. Thus, {\\tt sin} takes a numeric value as an argument.\n\nSome functions take more than one argument. For example, {\\tt pow}\ntakes two arguments, the base and the exponent. Inside the function,\nthe values that are passed get assigned to variables called {\\bf parameters}.\n\nHere is an example of a user-defined function that has a parameter:\n\n\\beforeverb\n\\begin{verbatim}\ndef printTwice(bruce):\n print bruce, bruce\n\\end{verbatim}\n\\afterverb\n%\nThis function takes a single argument and assigns it to a parameter\nnamed {\\tt bruce}. The value of the parameter (at this point we\nhave no idea what it will be) is printed twice, followed by a newline.\nThe name {\\tt bruce} was chosen to suggest that the name you give a\nparameter is up to you, but in general, you want to choose something\nmore illustrative than {\\tt bruce}.\n\nThe function {\\tt printTwice} works for any type that can be printed:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printTwice('Spam')\nSpam Spam\n>>> printTwice(5)\n5 5\n>>> printTwice(3.14159)\n3.14159 3.14159\n\\end{verbatim}\n\\afterverb\n%\nIn the first function call, the argument is a string. In the second,\nit's an integer. In the third, it's a {\\tt float}.\n\nThe same rules of composition that apply to built-in functions also\napply to user-defined functions, so we can use any kind of expression\nas an argument for {\\tt printTwice}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printTwice('Spam'*4)\nSpamSpamSpamSpam SpamSpamSpamSpam\n>>> printTwice(math.cos(math.pi))\n-1.0 -1.0\n\\end{verbatim}\n\\afterverb\n%\nAs usual, the expression is evaluated before the function is run, so\n{\\tt printTwice} prints {\\tt SpamSpamSpamSpam SpamSpamSpamSpam} instead of\n{\\tt 'Spam'*4 'Spam'*4}.\n\n\\begin{quote}\n{\\em As an exercise, write a call to {\\tt printTwice} that does print\n{\\tt 'Spam'*4 'Spam'*4}. Hint: strings can be enclosed in either single or \ndouble quotes, and the type of quote not used to enclose the string can be used\ninside it as part of the string.}\n\\end{quote}\n\nWe can also use a variable as an argument:\n\n\\beforeverb\n\\begin{verbatim}\n>>> michael = 'Eric, the half a bee.'\n>>> printTwice(michael)\nEric, the half a bee. Eric, the half a bee.\n\\end{verbatim}\n\\afterverb\n%\nNotice something very important here. The name of the variable we pass\nas an argument ({\\tt michael}) has nothing to do with the name of the\nparameter ({\\tt bruce}). It doesn't matter what the value was\ncalled back home (in the caller); here in {\\tt printTwice}, we call\neverybody {\\tt bruce}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "660b852a-0985-4490-aad3-e7b3ccfb829c": {"__data__": {"id_": "660b852a-0985-4490-aad3-e7b3ccfb829c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "3a459cfa-8984-45f1-a5d4-819cc5044aa9", "node_type": null, "metadata": {}, "hash": "fc59565496f8526cd269311cfc7d970dd966982686e0fef17d9086159b1bcd1e"}, "3": {"node_id": "464a4c61-76db-4671-84b1-48da946f5f78", "node_type": null, "metadata": {}, "hash": "0e6e8529bb52b92222ed5065f984191aa6a9cffccdf0b7318ce8fb5f8e43a780"}}, "hash": "ed839f334ebae923b5e66572139359ae41f05eafeb6973bd5e5e6a5eb7104d75", "text": "\\section{Variables and parameters are local}\n\\index{local variable}\n\\index{variable!local}\n\nWhen you create a {\\bf local variable} inside a function, it only exists inside\nthe function, and you cannot use it outside. For example:\n\n\\beforeverb\n\\begin{verbatim}\ndef catTwice(part1, part2):\n cat = part1 + part2\n printTwice(cat)\n\\end{verbatim}\n\\afterverb\n%\nThis function takes two arguments, concatenates them, and then prints\nthe result twice.\nWe can call the function with two strings:\n\n\\beforeverb\n\\begin{verbatim}\n>>> chant1 = \"Pie Jesu domine, \"\n>>> chant2 = \"Dona eis requiem.\"\n>>> catTwice(chant1, chant2)\nPie Jesu domine, Dona eis requiem. Pie Jesu domine, Dona eis requiem.\n\\end{verbatim}\n\\afterverb\n%\nWhen {\\tt catTwice} terminates, the variable {\\tt cat} is destroyed.\nIf we try to print it, we get an error:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print cat\nNameError: cat\n\\end{verbatim}\n\\afterverb\n%\nParameters are also local.\nFor example, outside the function {\\tt printTwice}, there is no\nsuch thing as {\\tt bruce}. If you try to use it, Python will\ncomplain.\n\n\n\\section{Stack diagrams}\n\\label{stackdiagram}\n\\index{stack diagram}\n\\index{function frame}\n\\index{frame}\n\nTo keep track of which variables can be used where, it is sometimes\nuseful to draw a {\\bf stack diagram}. Like state diagrams, stack\ndiagrams show the value of each variable, but they also show the\nfunction to which each variable belongs.\n\nEach function is represented by a {\\bf frame}. A frame is a box\nwith the name of a function\nbeside it and the parameters and variables of the function inside it.\nThe stack diagram for the\nprevious example looks like this:\n\n\\adjustpage{-4}\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/stack.eps}}\n\\afterfig\n\nThe order of the stack shows the flow of execution. {\\tt printTwice}\nwas called by {\\tt catTwice}, and {\\tt catTwice} was called by {\\tt\n\\_\\_main\\_\\_}, which is a special name for the topmost function. When\nyou create a variable outside of any function, it belongs to {\\tt\n\\_\\_main\\_\\_}.\n\nEach parameter refers to the same value as its corresponding\nargument. So, {\\tt part1} has the same value as\n{\\tt chant1}, {\\tt part2} has the same value as {\\tt chant2},\nand {\\tt bruce} has the same value as {\\tt cat}.\n\nIf an error occurs during a function call, Python prints the\nname of the function, and the name of the function that called\nit, and the name of the function that called {\\em that}, all the\nway back to {\\tt \\_\\_main\\_\\_}.\n\nFor example, if we try to access {\\tt cat} from within {\\tt\nprintTwice}, we get a {\\tt NameError}:\n\n\\beforeverb\n\\begin{verbatim}\nTraceback (innermost last):\n File \"test.py\", line 13, in __main__\n catTwice(chant1, chant2)\n File \"test.py\", line 5, in catTwice\n printTwice(cat)\n File \"test.py\", line 9, in printTwice\n print cat\nNameError: cat\n\\end{verbatim}\n\\afterverb\n%\nThis list of functions is called a {\\bf traceback}. It tells you what\nprogram file the error occurred in, and what line, and what functions\nwere executing at the time. It also shows the line of code that\ncaused the error.\n\n\\index{traceback}\n\nNotice the similarity between the traceback and the\nstack diagram. It's not a coincidence.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "464a4c61-76db-4671-84b1-48da946f5f78": {"__data__": {"id_": "464a4c61-76db-4671-84b1-48da946f5f78", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "node_type": null, "metadata": {}, "hash": "8f5deb0fe18b288f313f962a4fc9228caf56ba428268b8c17d3e2694310cbb4b"}, "2": {"node_id": "660b852a-0985-4490-aad3-e7b3ccfb829c", "node_type": null, "metadata": {}, "hash": "ed839f334ebae923b5e66572139359ae41f05eafeb6973bd5e5e6a5eb7104d75"}}, "hash": "0e6e8529bb52b92222ed5065f984191aa6a9cffccdf0b7318ce8fb5f8e43a780", "text": "\\section{Functions with results}\n\nYou might have noticed by now that some of the functions we are using,\nsuch as the math functions, yield results. Other functions, like\n{\\tt newLine}, perform an action but don't return a value. That raises\nsome questions:\n\n\\begin{enumerate}\n\n\\item What happens if you call a function and you don't do anything\nwith the result (i.e., you don't assign it to a variable or use it as\npart of a larger expression)?\n\n\\item What happens if you use a function without a result as part of\nan expression, such as {\\tt newLine() + 7}?\n\n\\item Can you write functions that yield results, or are you stuck with\nsimple function like {\\tt newLine} and {\\tt printTwice}?\n\n\\end{enumerate}\n\nThe answer to the last question is that you can write functions that\nyield results, and we'll do it in Chapter 5.\n\n\\begin{quote}\n{\\em As an exercise, answer the other two questions by trying them\nout. When you have a question about what is legal or illegal in\nPython, a good way to find out is to ask the interpreter.}\n\\end{quote}\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[function call:] A statement that executes a function. It consists of\nthe name of the function followed by a list of arguments enclosed in\nparentheses.\n\n\\item[argument:] A value provided to a function when the function is called.\nThis value is assigned to the corresponding parameter in the function.\n\n\\item[return value:] The result of a function. If a function call\nis used as an expression, the return value is the value of\nthe expression.\n\n\\item[type conversion:] An explicit statement that takes a value\nof one type and computes a corresponding value of another type.\n\n\\item[type coercion:] A type conversion that happens automatically\naccording to Python's coercion rules.\n\n\\item[module:] A file that contains a collection of related functions and\nclasses.\n\n\\item[dot notation:] The syntax for calling a function in another\nmodule, specifying the module name followed by a dot (period) and\nthe function name.\n\n\\item[function:] A named sequence of statements that performs some useful\noperation. Functions may or may not take arguments and may or may not\nproduce a result.\n\n\\item[function definition:] A statement that creates a new function,\nspecifying its name, parameters, and the statements it executes.\n\n\\item[flow of execution:] The order in which statements are executed during\na program run.\n\n\\item[parameter:] A name used inside a function to refer to the value passed\nas an argument.\n\n\\item[local variable:] A variable defined inside a function. A local\nvariable can only be used inside its function.\n\n\\item[stack diagram:] A graphical representation of a stack of functions,\ntheir variables, and the values to which they refer.\n\n\\item[frame:] A box in a stack diagram that represents a function call.\nIt contains the local variables and parameters of the function.\n\n\\item[traceback:] A list of the functions that are executing,\nprinted when a runtime error occurs.\n\n\\index{function call}\n\\index{return value}\n\\index{argument}\n\\index{coercion}\n\\index{module}\n\\index{dot notation}\n\\index{function}\n\\index{function definition}\n\\index{flow of execution}\n\\index{parameter}\n\\index{local variable}\n\\index{stack diagram}\n\\index{function frame}\n\\index{frame}\n\\index{traceback}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5948f425-654c-4cee-98e0-b64a0fb4bbe5": {"__data__": {"id_": "5948f425-654c-4cee-98e0-b64a0fb4bbe5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "3": {"node_id": "3f9412e4-a749-4bff-8739-4606b31ea8f1", "node_type": null, "metadata": {}, "hash": "b75825908cb534ddf54717ef19fffceaa87b581b68363c796e5e39ca22a7ad9b"}}, "hash": "c0747f39cb321155994aa1a7f0dceeb7d36f62c3e05bb8ba40f4a13d51f3b935", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{Conditionals and recursion}\n\n\\section{The modulus operator}\n\\index{modulus operator}\n\\index{operator!modulus}\n\nThe {\\bf modulus operator} works on integers (and integer expressions)\nand yields the remainder when the first operand is divided by the\nsecond. In Python, the modulus operator is a percent sign ({\\tt\n\\%}). The syntax is the same as for other operators:\n\n\\beforeverb\n\\begin{verbatim}\n>>> quotient = 7 / 3\n>>> print quotient\n2\n>>> remainder = 7 % 3\n>>> print remainder\n1\n\\end{verbatim}\n\\afterverb\n%\nSo 7 divided by 3 is 2 with 1 left over.\n\nThe modulus operator turns out to be surprisingly useful. For\nexample, you can check whether one number is divisible by another---if\n{\\tt x \\% y} is zero, then {\\tt x} is divisible by {\\tt y}.\n\nAlso, you can extract the right-most digit\nor digits from a number. For example, {\\tt x \\% 10} yields the\nright-most digit of {\\tt x} (in base 10). Similarly {\\tt x \\% 100}\nyields the last two digits.\n\n\\adjustpage{1}\n\n\\section{Boolean expressions}\n\\index{boolean expression}\n\\index{expression!boolean}\n\\index{logical operator}\n\\index{operator!logical}\n\nA {\\bf boolean expression} is an expression that is either true\nor false. One way to write a boolean expression is to use the\noperator {\\tt ==}, which compares two values and produces a boolean\nvalue:\n\n\\beforeverb\n\\begin{verbatim}\n>>> 5 == 5\nTrue\n>>> 5 == 6\nFalse\n\\end{verbatim}\n\\afterverb\n%\nIn the first statement, the two operands are equal, so the value of\nthe expression is {\\tt True}; in the second statement, 5 is not equal\nto 6, so we get {\\tt False}. {\\tt True} and {\\tt False} are special\nvalues that are built into Python.\n\nThe {\\tt ==} operator is one of the {\\bf comparison operators}; the\nothers are:\n\n\\beforeverb\n\\begin{verbatim}\n x != y # x is not equal to y\n x > y # x is greater than y\n x < y # x is less than y\n x >= y # x is greater than or equal to y\n x <= y # x is less than or equal to y\n\\end{verbatim}\n\\afterverb\n%\nAlthough these operations are probably familiar to you, the Python\nsymbols are different from the mathematical symbols. A common error\nis to use a single equal sign ({\\tt =}) instead of a double equal sign\n({\\tt ==}). Remember that {\\tt =} is an assignment operator and\n{\\tt ==} is a comparison operator. Also, there is no such thing as\n{\\tt =<} or {\\tt =>}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3f9412e4-a749-4bff-8739-4606b31ea8f1": {"__data__": {"id_": "3f9412e4-a749-4bff-8739-4606b31ea8f1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "5948f425-654c-4cee-98e0-b64a0fb4bbe5", "node_type": null, "metadata": {}, "hash": "c0747f39cb321155994aa1a7f0dceeb7d36f62c3e05bb8ba40f4a13d51f3b935"}, "3": {"node_id": "be0a3801-aaf8-41f3-9996-6218b1366d18", "node_type": null, "metadata": {}, "hash": "e0bc4a8fc5709dddb9cd2778b9ee7aba1d015e8097c5ad3d89bb88d531cdaa13"}}, "hash": "b75825908cb534ddf54717ef19fffceaa87b581b68363c796e5e39ca22a7ad9b", "text": "\\section {Logical operators}\n\\index{logical operator}\n\\index{operator!logical}\n\nThere are three {\\bf logical operators}: {\\tt and}, {\\tt\nor}, and {\\tt not}. The semantics (meaning) of these operators is\nsimilar to their meaning in English. For example,\n{\\tt x > 0 and x < 10} is true only if {\\tt x} is greater than 0\n{\\em and} less than 10.\n\n{\\tt n\\%2 == 0 or n\\%3 == 0} is true if {\\em either} of the conditions\nis true, that is, if the number is divisible by 2 {\\em or} 3.\n\nFinally, the {\\tt not} operator negates a boolean\nexpression, so {\\tt not(x > y)} is true if {\\tt (x > y)} is false,\nthat is, if {\\tt x} is less than or equal to {\\tt y}.\n\nStrictly speaking, the operands of the logical operators should be\nboolean expressions, but Python is not very strict.\nAny nonzero number is interpreted as ``true.''\n\n\\beforeverb\n\\begin{verbatim}\n>>> x = 5\n>>> x and 1\n1\n>>> y = 0\n>>> y and 1\n0\n\\end{verbatim}\n\\afterverb\n%\nIn general, this sort of thing is not considered good style. If you\nwant to compare a value to zero, you should do it explicitly.\n\n\n\\section{Conditional execution}\n\\label{conditional execution}\n\\index{conditional branching}\n\\index{conditional execution}\n\nIn order to write useful programs, we almost always need the ability\nto check conditions and change the behavior of the program\naccordingly. {\\bf Conditional statements} give us this ability. The\nsimplest form is the {\\tt if} statement:\n\n\\beforeverb\n\\begin{verbatim}\nif x > 0:\n print \"x is positive\"\n\\end{verbatim}\n\\afterverb\n%\nThe boolean expression after the {\\tt if} statement is\ncalled the {\\bf condition}. If it is true, then the indented\nstatement gets executed. If not, nothing happens.\n\n\\index{compound statement}\n\\index{compound statement!header}\n\\index{compound statement!body}\n\\index{compound statement!statement block}\n\\index{statement!compound}\n\nLike other compound statements, the\n{\\tt if} statement is made up of a header and a block\nof statements:\n\n\\beforeverb\n\\begin{verbatim}\nHEADER:\n FIRST STATEMENT\n ...\n LAST STATEMENT\n\\end{verbatim}\n\\afterverb\n%\nThe header begins on a new line and ends with a colon (:). The\nindented statements that follow are called a {\\bf block}.\nThe first unindented statement marks the end of the block.\nA statement block inside a compound statement is called the {\\bf body}\nof the statement.\n\n\\index{block}\n\\index{statement!block}\n\\index{body}\n\nThere is no limit on the number of statements that can appear in\nthe body of an if statement, but there has to be at least one.\nOccasionally, it is useful to have a body with no statements (usually\nas a place keeper for code you haven't written yet). In that\ncase, you can use the {\\tt pass} statement, which does nothing.\n\n\\index{pass statement}\n\\index{statement!pass}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "be0a3801-aaf8-41f3-9996-6218b1366d18": {"__data__": {"id_": "be0a3801-aaf8-41f3-9996-6218b1366d18", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "3f9412e4-a749-4bff-8739-4606b31ea8f1", "node_type": null, "metadata": {}, "hash": "b75825908cb534ddf54717ef19fffceaa87b581b68363c796e5e39ca22a7ad9b"}, "3": {"node_id": "248058b8-0d54-48db-9a21-55b77aa1eb04", "node_type": null, "metadata": {}, "hash": "165dc46c35331e1ab3885ef62876246e1d8aed29feda1cec34a76d92d5d388ef"}}, "hash": "e0bc4a8fc5709dddb9cd2778b9ee7aba1d015e8097c5ad3d89bb88d531cdaa13", "text": "\\section{Alternative execution}\n\\label{alternative execution}\n\nA second form of the {\\tt if} statement is alternative execution,\nin which there are two possibilities and the condition determines\nwhich one gets executed. The syntax looks like this:\n\n\\beforeverb\n\\begin{verbatim}\nif x%2 == 0:\n print x, \"is even\"\nelse:\n print x, \"is odd\"\n\\end{verbatim}\n\\afterverb\n%\nIf the remainder when {\\tt x} is divided by 2 is 0, then we\nknow that {\\tt x} is even, and the program displays a message to that\neffect. If the condition is false, the second set of statements is\nexecuted. Since the condition must be true or false, exactly one of\nthe alternatives will be executed. The alternatives are called\n{\\bf branches}, because they are branches in the flow of execution.\n\n\\index{branch}\n\nAs an aside, if you need to check the parity (evenness or\noddness) of numbers often, you might ``wrap'' this code in a\nfunction:\n\n\\beforeverb\n\\begin{verbatim}\ndef printParity(x):\n if x%2 == 0:\n print x, \"is even\"\n else:\n print x, \"is odd\"\n\\end{verbatim}\n\\afterverb\n%\nFor any value of {\\tt x}, {\\tt printParity} displays an\nappropriate message.\nWhen you call it, you can provide any integer expression\nas an argument.\n\n\\beforeverb\n\\begin{verbatim}\n>>> printParity(17)\n17 is odd\n>>> y = 17\n>>> printParity(y+1)\n18 is even\n\\end{verbatim}\n\\afterverb\n%\n\n\n\\section{Chained conditionals}\n\\index{chained conditional}\n\\index{conditional!chained}\n\nSometimes there are more than two possibilities and we need more than\ntwo branches. One way to express a computation like that is a {\\bf\nchained conditional}:\n\n\\beforeverb\n\\begin{verbatim}\nif x < y:\n print x, \"is less than\", y\nelif x > y:\n print x, \"is greater than\", y\nelse:\n print x, \"and\", y, \"are equal\"\n\\end{verbatim}\n\\afterverb\n%\n{\\tt elif} is an abbreviation of ``else if.'' Again, exactly one\nbranch will be executed. There is no limit of the number of {\\tt\nelif} statements, but the last branch has to be an {\\tt else}\nstatement:\n\n\\adjustpage{3}\n\\beforeverb\n\\begin{verbatim}\nif choice == 'A':\n functionA()\nelif choice == 'B':\n functionB()\nelif choice == 'C':\n functionC()\nelse:\n print \"Invalid choice.\"\n\\end{verbatim}\n\\afterverb\n%\nEach condition is checked in order. If the first is false,\nthe next is checked, and so on. If one of them is\ntrue, the corresponding branch executes, and the statement\nends. Even if more than one condition is true, only the\nfirst true branch executes. \n\n\\begin{quote}\n\\begin{quote}\n{\\em As an exercise, wrap these examples in functions\ncalled {\\tt compare(x, y)} and {\\tt dispatch(choice)}.}\n\\end{quote}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "248058b8-0d54-48db-9a21-55b77aa1eb04": {"__data__": {"id_": "248058b8-0d54-48db-9a21-55b77aa1eb04", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "be0a3801-aaf8-41f3-9996-6218b1366d18", "node_type": null, "metadata": {}, "hash": "e0bc4a8fc5709dddb9cd2778b9ee7aba1d015e8097c5ad3d89bb88d531cdaa13"}, "3": {"node_id": "59c02e3e-4304-4e19-bab8-b92039c0a2e8", "node_type": null, "metadata": {}, "hash": "f4daefb30b3ef3501567388026a9b208e8ac0d24814e9788300368e21a601a3b"}}, "hash": "165dc46c35331e1ab3885ef62876246e1d8aed29feda1cec34a76d92d5d388ef", "text": "\\section{Nested conditionals}\n\nOne conditional can also be nested within another. We could have\nwritten the trichotomy example as follows:\n\n\\beforeverb\n\\begin{verbatim}\nif x == y:\n print x, \"and\", y, \"are equal\"\nelse:\n if x < y:\n print x, \"is less than\", y\n else:\n print x, \"is greater than\", y\n\\end{verbatim}\n\\afterverb\n%\nThe outer conditional contains two branches. The\nfirst branch contains a simple output statement. The second branch\ncontains another {\\tt if} statement, which has two branches of its\nown. Those two branches are both output statements,\nalthough they could have been conditional statements as well.\n\nAlthough the indentation of the statements makes the structure\napparent, nested conditionals become difficult to read very\nquickly. In general, it is a good idea to avoid them when you can.\n\nLogical operators often provide a way to simplify nested conditional\nstatements. For example, we can rewrite the following code using a\nsingle conditional:\n\n\\beforeverb\n\\begin{verbatim}\nif 0 < x:\n if x < 10:\n print \"x is a positive single digit.\"\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt print} statement is executed only if we make it past both the\nconditionals, so we can use the {\\tt and} operator:\n\n\\beforeverb\n\\begin{verbatim}\nif 0 < x and x < 10:\n print \"x is a positive single digit.\"\n\\end{verbatim}\n\\afterverb\n%\nThese kinds of conditions are common, so Python provides an\nalternative syntax that is similar to mathematical notation:\n\n\\beforeverb\n\\begin{verbatim}\nif 0 < x < 10:\n print \"x is a positive single digit.\"\n\\end{verbatim}\n\\afterverb\n%\nThis condition is semantically the same as\nthe compound boolean expression and the nested conditional.\n\n\n\\section{The {\\tt return} statement}\n\\index{return statement}\n\\index{statement!return}\n\nThe {\\tt return} statement allows you to terminate the execution of a\nfunction before you reach the end. One reason to use it is if you\ndetect an error condition:\n\n\\beforeverb\n\\begin{verbatim}\nimport math\n\ndef printLogarithm(x):\n if x <= 0:\n print \"Positive numbers only, please.\"\n return\n\n result = math.log(x)\n print \"The log of x is\", result\n\\end{verbatim}\n\\afterverb\n%\nThe function {\\tt printLogarithm} has a\nparameter named {\\tt x}. The first thing it does is check whether\n{\\tt x} is less than or equal to 0, in which case it displays an\nerror message and then uses {\\tt return} to exit the function. The\nflow of execution immediately returns to the caller, and the remaining\nlines of the function are not executed.\n\nRemember that to use a function from the math\nmodule, you have to import it.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "59c02e3e-4304-4e19-bab8-b92039c0a2e8": {"__data__": {"id_": "59c02e3e-4304-4e19-bab8-b92039c0a2e8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "248058b8-0d54-48db-9a21-55b77aa1eb04", "node_type": null, "metadata": {}, "hash": "165dc46c35331e1ab3885ef62876246e1d8aed29feda1cec34a76d92d5d388ef"}, "3": {"node_id": "a45af541-a681-431f-8e18-14c46748011c", "node_type": null, "metadata": {}, "hash": "15fe45391510db384bc0b8663a112201d8d26a2232ac89211e69571dce6e7b20"}}, "hash": "f4daefb30b3ef3501567388026a9b208e8ac0d24814e9788300368e21a601a3b", "text": "\\section{Recursion}\n\\label{recursion}\n\\index{recursion}\n\nWe mentioned that it is legal for one function to call another, and\nyou have seen several examples of that. We neglected to mention that\nit is also legal for a function to call itself. It may not be obvious\nwhy that is a good thing, but it turns out to be one of the most\nmagical and interesting things a program can do.\nFor example, look at the following function:\n\n\\beforeverb\n\\begin{verbatim}\ndef countdown(n):\n if n == 0:\n print \"Blastoff!\"\n else:\n print n\n countdown(n-1)\n\\end{verbatim}\n\\afterverb\n%\n{\\tt countdown} expects the parameter, {\\tt n}, to be a positive\ninteger. If {\\tt n} is 0, it outputs the word, ``Blastoff!''\nOtherwise, it outputs {\\tt n} and then calls a function named\n{\\tt countdown}---itself---passing {\\tt n-1} as an argument.\n\nWhat happens if we call this function like this:\n\n\\beforeverb\n\\begin{verbatim}\n>>> countdown(3)\n\\end{verbatim}\n\\afterverb\n%\nThe execution of {\\tt countdown} begins with {\\tt n=3}, and since\n{\\tt n} is not 0, it outputs the value 3, and then calls itself...\n\n\\begin{quote}\nThe execution of {\\tt countdown} begins with {\\tt n=2}, and since\n{\\tt n} is not 0, it outputs the value 2, and then calls itself...\n\n\\begin{quote}\nThe execution of {\\tt countdown} begins with {\\tt n=1}, and since\n{\\tt n} is not 0, it outputs the value 1, and then calls itself...\n\n\\begin{quote}\nThe execution of {\\tt countdown} begins with {\\tt n=0}, and since\n{\\tt n} is 0, it outputs the word, ``Blastoff!'' and then returns.\n\\end{quote}\n\nThe {\\tt countdown} that got {\\tt n=1} returns.\n\\end{quote}\n\nThe {\\tt countdown} that got {\\tt n=2} returns.\n\\end{quote}\n\nThe {\\tt countdown} that got {\\tt n=3} returns.\n\nAnd then you're back in {\\tt \\_\\_main\\_\\_} (what a trip). So, the\ntotal output looks like this:\n\n\\beforeverb\n\\begin{verbatim}\n3\n2\n1\nBlastoff!\n\\end{verbatim}\n\\afterverb\n%\nAs a second example, look again at the functions {\\tt newLine} and\n{\\tt threeLines}:\n\n\\beforeverb\n\\begin{verbatim}\ndef newline():\n print\n\ndef threeLines():\n newLine()\n newLine()\n newLine()\n\\end{verbatim}\n\\afterverb\n%\nAlthough these work, they would not be much help if we wanted to output 2\nnewlines, or 106. A better alternative would be this:\n\n\\beforeverb\n\\begin{verbatim}\ndef nLines(n):\n if n > 0:\n print\n nLines(n-1)\n\\end{verbatim}\n\\afterverb\n%\nThis program is similar to {\\tt countdown}; as long as {\\tt n} is\ngreater than 0, it outputs one newline and then calls itself to\noutput {\\tt n-1} additional newlines. Thus, the total number of\nnewlines is {\\tt 1 + (n - 1)} which, if you do your algebra right, comes\nout to {\\tt n}.\n\nThe process of a function calling itself is {\\bf recursion}, and\nsuch functions are said to be recursive.\n\n\\index{recursion}\n\\index{function!recursive}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a45af541-a681-431f-8e18-14c46748011c": {"__data__": {"id_": "a45af541-a681-431f-8e18-14c46748011c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "59c02e3e-4304-4e19-bab8-b92039c0a2e8", "node_type": null, "metadata": {}, "hash": "f4daefb30b3ef3501567388026a9b208e8ac0d24814e9788300368e21a601a3b"}, "3": {"node_id": "9800400e-4b08-40de-8eab-a8030438fdea", "node_type": null, "metadata": {}, "hash": "21bb590a14b2eb024b6b7b0118e63e810aad91067577b812808bb7f34ec95840"}}, "hash": "15fe45391510db384bc0b8663a112201d8d26a2232ac89211e69571dce6e7b20", "text": "\\section{Stack diagrams for recursive functions}\n\\index{stack diagram}\n\\index{function frame}\n\\index{frame}\n\nIn Section~\\ref{stackdiagram}, we used a stack diagram to represent\nthe state of a program during a function call. The same kind of\ndiagram can help interpret a recursive function.\n\nEvery time a function gets called, Python creates a new function\nframe, which contains the function's local variables and parameters.\nFor a recursive function, there might be more than one frame on the\nstack at the same time.\n\nThis figure shows a stack diagram for {\\tt countdown} called with\n{\\tt n = 3}:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/stack2.eps}}\n\\afterfig\n\nAs usual, the top of the stack is the frame for {\\tt \\_\\_main\\_\\_}.\nIt is empty because we did not create any variables in {\\tt\n\\_\\_main\\_\\_} or pass any arguments to it.\n\nThe four {\\tt countdown} frames have different values for the\nparameter {\\tt n}. The bottom of the stack, where {\\tt n=0}, is\ncalled the {\\bf base case}. It does not make a recursive call, so\nthere are no more frames.\n\n\\adjustpage{2}\n\\begin{quote}\n{\\em As an exercise, draw a stack diagram for {\\tt nLines} called with\n{\\tt n=4}.}\n\\end{quote}\n\n\\index{base case}\n\\index{recursion!base case}\n\n\n\\section{Infinite recursion}\n\\index{infinite recursion}\n\\index{recursion!infinite}\n\\index{runtime error}\n\\index{error!runtime}\n\\index{traceback}\n\nIf a recursion never reaches a base case, it goes on making\nrecursive calls forever, and the program never terminates. This is\nknown as {\\bf infinite recursion}, and it is generally not considered\na good idea. Here is a minimal program with an infinite recursion:\n\n\\beforeverb\n\\begin{verbatim}\ndef recurse():\n recurse()\n\\end{verbatim}\n\\afterverb\n%\nIn most programming environments, a program with infinite recursion\ndoes not really run forever. Python reports an error\nmessage when the maximum recursion depth is reached:\n\n\\beforeverb\n\\begin{verbatim}\n File \"\", line 2, in recurse\n (98 repetitions omitted)\n File \"\", line 2, in recurse\nRuntimeError: Maximum recursion depth exceeded\n\\end{verbatim}\n\\afterverb\n%\nThis traceback is a little bigger than the one we saw in the\nprevious chapter. When the error occurs, there are 100\n{\\tt recurse} frames on the stack!\n\n\\begin{quote}\n{\\em As an exercise, write a function with infinite recursion and run\nit in the Python interpreter.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9800400e-4b08-40de-8eab-a8030438fdea": {"__data__": {"id_": "9800400e-4b08-40de-8eab-a8030438fdea", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "a45af541-a681-431f-8e18-14c46748011c", "node_type": null, "metadata": {}, "hash": "15fe45391510db384bc0b8663a112201d8d26a2232ac89211e69571dce6e7b20"}, "3": {"node_id": "8d110233-ce34-468f-904d-59986c253e79", "node_type": null, "metadata": {}, "hash": "db88dc1bf19b9df3b887bdfe88b7abc75d6397237b8ac9c7f9377520c34aaa05"}}, "hash": "21bb590a14b2eb024b6b7b0118e63e810aad91067577b812808bb7f34ec95840", "text": "\\section{Keyboard input}\n\nThe programs we have written so far are a bit rude in the sense that\nthey accept no input from the user. They just do the same thing every\ntime.\n\nPython provides built-in functions that get input from the keyboard.\nThe simplest is called {\\tt raw\\_input}. When this function is\ncalled, the program stops and waits for the user to type something.\nWhen the user presses Return or the Enter key, the program resumes and\n{\\tt raw\\_input} returns what the user typed as a {\\bf string}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> input = raw_input ()\nWhat are you waiting for?\n>>> print input\nWhat are you waiting for?\n\\end{verbatim}\n\\afterverb\n%\nBefore calling {\\tt raw\\_input}, it is a good idea to print a message\ntelling the user what to input. This message is called a {\\bf\nprompt}. We can supply a prompt as an argument to {\\tt raw\\_input}:\n\n\\index{prompt}\n\n\\beforeverb\n\\begin{verbatim}\n>>> name = raw_input (\"What...is your name? \")\nWhat...is your name? Arthur, King of the Britons!\n>>> print name\nArthur, King of the Britons!\n\\end{verbatim}\n\\afterverb\n%\nIf we expect the response to be an integer, we can use the\n{\\tt input} function:\n\n\\beforeverb\n\\begin{verbatim}\nprompt = \"What...is the airspeed velocity of an unladen swallow?\\n\"\nspeed = input(prompt)\n\\end{verbatim}\n\\afterverb\n%\nThe sequence \\verb+\\n+ at the end of the string represents a newline,\nso the user's input appears below the prompt.\n\nIf the user types a string of digits, it is converted to an\ninteger and assigned to {\\tt speed}. Unfortunately, if the user\ntypes a character that is not a digit, the program crashes:\n\n\\beforeverb\n\\begin{verbatim}\n>>> speed = input (prompt)\nWhat...is the airspeed velocity of an unladen swallow?\nWhat do you mean, an African or a European swallow?\nSyntaxError: invalid syntax\n\\end{verbatim}\n\\afterverb\n%\nTo avoid this kind of error, it is generally a good idea to\nuse {\\tt raw\\_input} to get a string and then use conversion\nfunctions to convert to other types.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8d110233-ce34-468f-904d-59986c253e79": {"__data__": {"id_": "8d110233-ce34-468f-904d-59986c253e79", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "node_type": null, "metadata": {}, "hash": "5cb10e83ade97fa491aad7e4d3d207a636c1aae25805dfe62605108ec0994afb"}, "2": {"node_id": "9800400e-4b08-40de-8eab-a8030438fdea", "node_type": null, "metadata": {}, "hash": "21bb590a14b2eb024b6b7b0118e63e810aad91067577b812808bb7f34ec95840"}}, "hash": "db88dc1bf19b9df3b887bdfe88b7abc75d6397237b8ac9c7f9377520c34aaa05", "text": "\\section{Glossary}\n\n\\begin{description}\n\n\\item[modulus operator:] An operator, denoted with a percent sign\n({\\tt \\%}), that works on integers and yields the remainder when one\nnumber is divided by another.\n\n\\item[boolean expression:] An expression that is either true or false.\n\n\\item[comparison operator:] One of the operators that compares two\nvalues: {\\tt ==}, {\\tt !=}, {\\tt >}, {\\tt <}, {\\tt >=}, and {\\tt <=}.\n\n\\item[logical operator:] One of the operators that combines boolean\nexpressions: {\\tt and}, {\\tt or}, and {\\tt not}.\n\n\\item[conditional statement:] A statement that controls the flow of\nexecution depending on some condition.\n\n\\item[condition:] The boolean expression in a conditional statement\nthat determines which branch is executed.\n\n\\item[compound statement:] A statement that consists of a header\nand a body. The header ends with a colon (:). The body is indented\nrelative to the header.\n\n\\item[block:] A group of consecutive statements with the same\nindentation.\n\n\\item[body:] The block in a compound statement that follows the\nheader.\n\n\\item[nesting:] One program structure within another, such as a\nconditional statement inside a branch of another conditional\nstatement.\n\n\\item[recursion:] The process of calling the function that is\ncurrently executing.\n\n\\item[base case:] A branch of the conditional statement in a\nrecursive function that does not result in a recursive call.\n\n\\item[infinite recursion:] A function that calls itself recursively\nwithout ever reaching the base case. Eventually, an infinite recursion\ncauses a runtime error.\n\n\\item[prompt:] A visual cue that tells the user to input data.\n\n\\index{modulus operator}\n\\index{boolean expression}\n\\index{expression!boolean}\n\\index{conditional statement}\n\\index{statement!conditional}\n\\index{condition}\n\\index{compound statement}\n\\index{branch}\n\\index{body}\n\\index{block}\n\\index{nesting}\n\\index{recursion}\n\\index{base case}\n\\index{infinite recursion}\n\\index{prompt}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3654c353-73a0-4429-8b80-706b16bf79e3": {"__data__": {"id_": "3654c353-73a0-4429-8b80-706b16bf79e3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "3": {"node_id": "8c681b3e-fbde-4214-adaf-f9d1300c9aee", "node_type": null, "metadata": {}, "hash": "c1eaf39f9c960a77077b3a27b5b68a284c2adaa8d60e1b31e60b79e875061ea6"}}, "hash": "59e3869dbaf0d118e518f88c79ca7246fd59964b2bb979e4dc39c7858013d221", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{Fruitful functions}\n\n\\section{Return values}\n\\index{return value}\n\nSome of the built-in functions we have used, such as the math\nfunctions, have produced results. Calling the function generates a\nnew value, which we usually assign to a variable or use as part of an\nexpression.\n\n\\beforeverb\n\\begin{verbatim}\ne = math.exp(1.0)\nheight = radius * math.sin(angle)\n\\end{verbatim}\n\\afterverb\n%\nBut so far, none of the functions we have written has returned a\nvalue.\n\nIn this chapter, we are going to write functions that return values,\nwhich we will call {\\bf fruitful functions}, for want of a better\nname. The first example is {\\tt area}, which returns the area of a\ncircle with the given radius:\n\n\\beforeverb\n\\begin{verbatim}\nimport math\n\ndef area(radius):\n temp = math.pi * radius**2\n return temp\n\\end{verbatim}\n\\afterverb\n%\nWe have seen the {\\tt return} statement before, but in a fruitful\nfunction the {\\tt return} statement includes\na {\\bf return value}. This statement means: ``Return immediately from\nthis function and use the following expression as a return value.''\nThe expression provided can be arbitrarily complicated, so we could\nhave written this function more concisely:\n\n\\beforeverb\n\\begin{verbatim}\ndef area(radius):\n return math.pi * radius**2\n\\end{verbatim}\n\\afterverb\n%\nOn the other hand, {\\bf temporary variables} like {\\tt temp} often make\ndebugging easier.\n\n\\index{temporary variable}\n\\index{variable!temporary}\n\nSometimes it is useful to have multiple return statements, one in each\nbranch of a conditional:\n\n\\beforeverb\n\\begin{verbatim}\ndef absoluteValue(x):\n if x < 0:\n return -x\n else:\n return x\n\\end{verbatim}\n\\afterverb\n%\nSince these {\\tt return} statements are in an alternative conditional,\nonly one will be executed. As soon as one is executed, the function\nterminates without executing any subsequent statements.\n\nCode that appears after a {\\tt return} statement, or any other place\nthe flow of execution can never reach, is called {\\bf dead code}.\n\n\\index{dead code}\n\nIn a fruitful function, it is a good idea to ensure\nthat every possible path through the program hits a\n{\\tt return} statement. For example:\n\n\\beforeverb\n\\begin{verbatim}\ndef absoluteValue(x):\n if x < 0:\n return -x\n elif x > 0:\n return x\n\\end{verbatim}\n\\afterverb\n%\nThis program is not correct because if {\\tt x} happens to be 0,\nneither condition is true, and the function ends without hitting a\n{\\tt return} statement.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8c681b3e-fbde-4214-adaf-f9d1300c9aee": {"__data__": {"id_": "8c681b3e-fbde-4214-adaf-f9d1300c9aee", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "3654c353-73a0-4429-8b80-706b16bf79e3", "node_type": null, "metadata": {}, "hash": "59e3869dbaf0d118e518f88c79ca7246fd59964b2bb979e4dc39c7858013d221"}, "3": {"node_id": "8defb448-9071-4fc8-85d7-1c8c7994b068", "node_type": null, "metadata": {}, "hash": "48805f2dac73bcc5930214ba32b30b3508ec0f39735dcbfe2475ce425e649c70"}}, "hash": "c1eaf39f9c960a77077b3a27b5b68a284c2adaa8d60e1b31e60b79e875061ea6", "text": "In this case, the return value is a special value called\n{\\tt None}:\n\n\\index{None}\n\n\\beforeverb\n\\begin{verbatim}\n>>> print absoluteValue(0)\nNone\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n\\begin{quote}\n{\\em As an exercise, write a {\\tt compare} function\nthat returns {\\tt 1} if {\\tt x > y},\n{\\tt 0} if {\\tt x == y}, and {\\tt -1} if {\\tt x < y}.}\n\\end{quote}\n\\end{quote}\n\n\n\\section{Program development}\n\\label{program development}\n\\index{scaffolding}\n\nAt this point, you should be able to look at complete functions\nand tell what they do. Also, if you have been doing the exercises,\nyou have written some small functions. As you write\nlarger functions, you might start to have more difficulty,\nespecially with runtime and semantic errors.\n\nTo deal with increasingly complex programs,\nwe are going to suggest a technique called\n{\\bf incremental development}. The goal of incremental development\nis to avoid long debugging sessions by adding and testing only\na small amount of code at a time.\n\n\\index{incremental development}\n\\index{development!incremental}\n\nAs an example, suppose you want to find the distance between two\npoints, given by the coordinates $(x_1, y_1)$ and $(x_2, y_2)$.\nBy the Pythagorean theorem, the distance is:\n\n\\begin{displaymath}\n\\mathrm{distance} = \\sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}\n\\end{displaymath}\n%\nThe first step is to consider what a {\\tt distance} function should\nlook like in Python. In other words, what are the inputs (parameters)\nand what is the output (return value)?\n\nIn this case, the two points are the inputs, which we can represent\nusing four parameters. The return value is the distance, which is\na floating-point value.\n\nAlready we can write an outline of the function:\n\n\\beforeverb\n\\begin{verbatim}\ndef distance(x1, y1, x2, y2):\n return 0.0\n\\end{verbatim}\n\\afterverb\n%\nObviously, this version of the function doesn't compute distances; it\nalways returns zero. But it is syntactically correct, and it will\nrun, which means that we can test it before we make it more\ncomplicated.\n\nTo test the new function, we call it with sample values:\n\n\\beforeverb\n\\begin{verbatim}\n>>> distance(1, 2, 4, 6)\n0.0\n\\end{verbatim}\n\\afterverb\n%\nWe chose these values so that the horizontal distance equals 3 and the\nvertical distance equals 4; that way, the result is 5\n(the hypotenuse of a 3-4-5 triangle). When testing a function, it is\nuseful to know the right answer.\n\nAt this point we have confirmed that the function is syntactically\ncorrect, and we can start adding lines of code. After each\nincremental change, we test the function again. If an error occurs at\nany point, we know where it must be---in the last line\nwe added.\n\nA logical first step in the computation is to find the differences\n$x_2 - x_1$ and $y_2 - y_1$. We will store those values in\ntemporary variables named {\\tt dx} and {\\tt dy} and print them.\n\n\\beforeverb\n\\begin{verbatim}\ndef distance(x1, y1, x2, y2):\n dx = x2 - x1\n dy = y2 - y1\n print \"dx is\", dx\n print \"dy is\", dy\n return 0.0\n\\end{verbatim}\n\\afterverb\n%\nIf the function is working, the outputs should be 3 and 4. If so,\nwe know that the function is getting the right arguments and performing\nthe first computation correctly. If not, there are only a few lines\nto check.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8defb448-9071-4fc8-85d7-1c8c7994b068": {"__data__": {"id_": "8defb448-9071-4fc8-85d7-1c8c7994b068", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "8c681b3e-fbde-4214-adaf-f9d1300c9aee", "node_type": null, "metadata": {}, "hash": "c1eaf39f9c960a77077b3a27b5b68a284c2adaa8d60e1b31e60b79e875061ea6"}, "3": {"node_id": "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a", "node_type": null, "metadata": {}, "hash": "c498aa9aee283b9c50a4ff756d8ab370718d65f6ee25a861b1c4848addf9dc00"}}, "hash": "48805f2dac73bcc5930214ba32b30b3508ec0f39735dcbfe2475ce425e649c70", "text": "If not, there are only a few lines\nto check.\n\nNext we compute the sum of squares of {\\tt dx} and {\\tt dy}:\n\n\\beforeverb\n\\begin{verbatim}\ndef distance(x1, y1, x2, y2):\n dx = x2 - x1\n dy = y2 - y1\n dsquared = dx**2 + dy**2\n print \"dsquared is: \", dsquared\n return 0.0\n\\end{verbatim}\n\\afterverb\n%\nNotice that we removed the {\\tt print} statements we wrote in the previous\nstep. Code like that is called {\\bf scaffolding} because it is\nhelpful for building the program but is not part of the final product.\n\nAgain, we would run the program at this stage and check the output\n(which should be 25).\n\nFinally, if we have imported the math module, we can use the\n{\\tt sqrt} function to compute and return the result:\n\n\\beforeverb\n\\begin{verbatim}\ndef distance(x1, y1, x2, y2):\n dx = x2 - x1\n dy = y2 - y1\n dsquared = dx**2 + dy**2\n result = math.sqrt(dsquared)\n return result\n\\end{verbatim}\n\\afterverb\n%\nIf that works correctly, you are done. Otherwise, you might\nwant to print the value of {\\tt result} before the return\nstatement.\n\nWhen you start out, you should add only a line or two of code\nat a time.\nAs you gain more experience, you might find yourself\nwriting and debugging bigger chunks. Either way,\nthe incremental development process can save you a lot of debugging\ntime.\n\nThe key aspects of the process are:\n\n\\begin{enumerate}\n\n\\item Start with a working program and make small incremental changes. \nAt any point, if there is an error, you will know exactly where it is.\n\n\\item Use temporary variables to hold intermediate values so you can\noutput and check them.\n\n\\item Once the program is working, you might want to remove some of\nthe scaffolding or consolidate multiple statements into compound\nexpressions, but only if it does not make the program difficult to\nread.\n\n\\end{enumerate}\n\n\\begin{quote}\n{\\em As an exercise, use incremental development to write a function\ncalled {\\tt hypotenuse} that returns the length of the hypotenuse of a\nright triangle given the lengths of the two legs as arguments.\nRecord each stage of the incremental development process as you go.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a": {"__data__": {"id_": "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "8defb448-9071-4fc8-85d7-1c8c7994b068", "node_type": null, "metadata": {}, "hash": "48805f2dac73bcc5930214ba32b30b3508ec0f39735dcbfe2475ce425e649c70"}, "3": {"node_id": "8a42847e-d34b-4214-83fd-6613a4b84086", "node_type": null, "metadata": {}, "hash": "68e08f377e5d902f0c5b4cac2f3bf3bf1872124dad8a3d0140d11992a1de1429"}}, "hash": "c498aa9aee283b9c50a4ff756d8ab370718d65f6ee25a861b1c4848addf9dc00", "text": "Record each stage of the incremental development process as you go.}\n\\end{quote}\n\n\n\\section{Composition}\n\\index{composition}\n\\index{function!composition}\n\nAs you should expect by now, you can call one function from\nwithin another. This ability is called {\\bf composition}.\n\nAs an example, we'll write a function that takes two points,\nthe center of the circle and a point on the perimeter, and computes\nthe area of the circle.\n\nAssume that the center point is stored in the variables {\\tt xc} and\n{\\tt yc}, and the perimeter point is in {\\tt xp} and {\\tt yp}. The\nfirst step is to find the radius of the circle, which is the distance\nbetween the two points. Fortunately, there is a function, {\\tt\ndistance}, that does that:\n\n\\beforeverb\n\\begin{verbatim}\nradius = distance(xc, yc, xp, yp)\n\\end{verbatim}\n\\afterverb\n%\nThe second step is to find the area of a circle with that radius and return\nit:\n\n\\beforeverb\n\\begin{verbatim}\nresult = area(radius)\nreturn result\n\\end{verbatim}\n\\afterverb\n%\nWrapping that up in a function, we get:\n\n\\beforeverb\n\\begin{verbatim}\ndef area2(xc, yc, xp, yp):\n radius = distance(xc, yc, xp, yp)\n result = area(radius)\n return result\n\\end{verbatim}\n\\afterverb\n%\nWe called this function {\\tt area2} to distinguish it from the {\\tt\narea} function defined earlier. There can only be one function with a\ngiven name within a given module.\n\nThe temporary variables {\\tt radius} and {\\tt result} are useful for\ndevelopment and debugging, but once the program is working, we can\nmake it more concise by composing the function calls:\n\n\\beforeverb\n\\begin{verbatim}\ndef area2(xc, yc, xp, yp):\n return area(distance(xc, yc, xp, yp))\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, write a function {\\tt slope(x1, y1, x2, y2)}\nthat returns the slope of the line through the points $(x1, y1)$ and\n$(x2, y2)$. Then use this function in a function called\n{\\tt intercept(x1, y1, x2, y2)} that returns the y-intercept of the\nline through the points {\\tt (x1, y1)} and {\\tt (x2, y2)}.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8a42847e-d34b-4214-83fd-6613a4b84086": {"__data__": {"id_": "8a42847e-d34b-4214-83fd-6613a4b84086", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a", "node_type": null, "metadata": {}, "hash": "c498aa9aee283b9c50a4ff756d8ab370718d65f6ee25a861b1c4848addf9dc00"}, "3": {"node_id": "46465398-05f7-49ec-bc8c-c6f1d9696bcc", "node_type": null, "metadata": {}, "hash": "f799bc7d4024b191bda25186b0e879b121bf3405fddc6c6bcd5b0652e296d1aa"}}, "hash": "68e08f377e5d902f0c5b4cac2f3bf3bf1872124dad8a3d0140d11992a1de1429", "text": "\\section{Boolean functions}\n\\label{boolean}\n\\index{boolean function}\n\\index{function!boolean}\n\nFunctions can return boolean values, which is often convenient for hiding\ncomplicated tests inside functions. For example:\n\n\\beforeverb\n\\begin{verbatim}\ndef isDivisible(x, y):\n if x % y == 0:\n return True\n else:\n return False\n\\end{verbatim}\n\\afterverb\n%\nThe name of this function is {\\tt isDivisible}. It is common to give\nboolean functions names that sound like yes/no questions. {\\tt\nisDivisible} returns either {\\tt True} or {\\tt False} to indicate whether the\n{\\tt x} is or is not divisible by {\\tt y}.\n\nWe can make the function more concise by taking advantage of the fact\nthat the condition of the {\\tt if} statement is itself a boolean\nexpression. We can return it directly, avoiding the {\\tt if}\nstatement altogether:\n\n\\beforeverb\n\\begin{verbatim}\ndef isDivisible(x, y):\n return x % y == 0\n\\end{verbatim}\n\\afterverb\n%\nThis session shows the new function in action:\n\n\\beforeverb\n\\begin{verbatim}\n>>> isDivisible(6, 4)\nFalse\n>>> isDivisible(6, 3)\nTrue\n\\end{verbatim}\n\\afterverb\n%\nBoolean functions are often used in conditional statements:\n\n\\beforeverb\n\\begin{verbatim}\nif isDivisible(x, y):\n print \"x is divisible by y\"\nelse:\n print \"x is not divisible by y\"\n\\end{verbatim}\n\\afterverb\n%\nIt might be tempting to write something like:\n\n\\beforeverb\n\\begin{verbatim}\nif isDivisible(x, y) == True:\n\\end{verbatim}\n\\afterverb\n%\nBut the extra comparison is unnecessary.\n\n\\begin{quote}\n{\\em As an exercise, write a function {\\tt isBetween(x, y, z)} that\nreturns {\\tt True} if $y \\le x \\le z$ or {\\tt False} otherwise.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "46465398-05f7-49ec-bc8c-c6f1d9696bcc": {"__data__": {"id_": "46465398-05f7-49ec-bc8c-c6f1d9696bcc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "8a42847e-d34b-4214-83fd-6613a4b84086", "node_type": null, "metadata": {}, "hash": "68e08f377e5d902f0c5b4cac2f3bf3bf1872124dad8a3d0140d11992a1de1429"}, "3": {"node_id": "66035af3-6ef1-495b-a24c-4e6642d277f4", "node_type": null, "metadata": {}, "hash": "e4f6e4c329b81bee01e2f9f5963590a686af8de1925d89241a622bf30a26a71c"}}, "hash": "f799bc7d4024b191bda25186b0e879b121bf3405fddc6c6bcd5b0652e296d1aa", "text": "\\section{More recursion}\n\\index{recursion}\n\\index{complete language}\n\\index{language!complete}\n\\index{Turing, Alan}\n\\index{Turing Thesis}\n\nSo far, you have only learned a small subset of Python, but you might\nbe interested to know that this subset is a {\\em complete}\nprogramming language, which means that anything that can be\ncomputed can be expressed in this language. Any program ever written\ncould be rewritten using only the language features you have learned\nso far (actually, you would need a few commands to control devices\nlike the keyboard, mouse, disks, etc., but that's all).\n\nProving that claim is a nontrivial exercise first accomplished by Alan\nTuring, one of the first computer scientists (some would argue that he\nwas a mathematician, but a lot of early computer scientists started as\nmathematicians). Accordingly, it is known as the Turing Thesis. If\nyou take a course on the Theory of Computation, you will have a chance\nto see the proof.\n\n\\adjustpage{2}\n\nTo give you an idea of what you can do with the tools you have learned\nso far, we'll evaluate a few recursively defined mathematical\nfunctions. A recursive definition is similar to a circular\ndefinition, in the sense that the definition contains a reference to\nthe thing being defined. A truly circular definition is not very\nuseful:\n\n\\begin{description}\n\n\\item[frabjuous:] An adjective used to describe something that is frabjuous.\n\n\\end{description}\n\n\\index{frabjuous}\n\\index{circular definition}\n\\index{definition!circular}\n\nIf you saw that definition in the dictionary, you might be annoyed. On\nthe other hand, if you looked up the definition of the mathematical\nfunction factorial, you might get something like this:\n\n\\vspace{-0.35in}\n\\begin{eqnarray*}\n&& 0! = 1 \\\\\n&& n! = n (n-1)!\n\\end{eqnarray*}\n\\vspace{-0.25in}\n\nThis definition says that the factorial of 0 is 1, and the factorial\nof any other value, $n$, is $n$ multiplied by the factorial of $n-1$.\n\nSo $3!$ is 3 times $2!$, which is 2 times $1!$, which is 1 times\n$0!$. Putting it all together, $3!$ equals 3 times 2 times 1 times 1,\nwhich is 6.\n\n\\index{factorial function}\n\\index{function!factorial}\n\nIf you can write a recursive definition of something, you can usually\nwrite a Python program to evaluate it. The first step is to decide\nwhat the parameters are for this function. With little effort, you\nshould conclude that {\\tt factorial} has a single parameter:\n\n\\beforeverb\n\\begin{verbatim}\ndef factorial(n):\n\\end{verbatim}\n\\afterverb\n%\nIf the argument happens to be 0, all we have to do is return 1:\n\n\\beforeverb\n\\begin{verbatim}\ndef factorial(n):\n if n == 0:\n return 1\n\\end{verbatim}\n\\afterverb\n%\nOtherwise, and this is the interesting part, we have to make a\nrecursive call to find the factorial of $n-1$ and then multiply it by\n$n$:\n\n\\beforeverb\n\\begin{verbatim}\ndef factorial(n):\n if n == 0:\n return 1\n else:\n recurse = factorial(n-1)\n result = n * recurse\n return result\n\\end{verbatim}\n\\afterverb\n%\nThe flow of execution for this program is similar to the flow of {\\tt\ncountdown} in Section~\\ref{recursion}. If we call {\\tt factorial} with the\nvalue 3:\n\n\\adjustpage{1}\n\nSince 3 is not 0, we take the second branch and calculate the factorial\nof {\\tt n-1}...\n\n\\begin{quote}\nSince 2 is not 0, we take the second branch and calculate the factorial of\n{\\tt n-1}...", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "66035af3-6ef1-495b-a24c-4e6642d277f4": {"__data__": {"id_": "66035af3-6ef1-495b-a24c-4e6642d277f4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "46465398-05f7-49ec-bc8c-c6f1d9696bcc", "node_type": null, "metadata": {}, "hash": "f799bc7d4024b191bda25186b0e879b121bf3405fddc6c6bcd5b0652e296d1aa"}, "3": {"node_id": "c3def67b-d763-4f94-9a2b-53b81a1be41b", "node_type": null, "metadata": {}, "hash": "e0de621c8f5dc66ffd4526067a206cdd6240c7b4d39bb1aed59e7073e65d8052"}}, "hash": "e4f6e4c329b81bee01e2f9f5963590a686af8de1925d89241a622bf30a26a71c", "text": "\\begin{quote}\n Since 1 is not 0, we take the second branch and calculate the factorial\n of {\\tt n-1}...\n\n\n \\begin{quote}\n Since 0 {\\em is} 0, we take the first branch and return 1\n without making any more recursive calls.\n \\end{quote}\n\n\n The return value (1) is multiplied by $n$, which is 1, and the\n result is returned.\n \\end{quote}\n\n\nThe return value (1) is multiplied by $n$, which is 2, and the\nresult is returned.\n\\end{quote}\n\n\nThe return value (2) is multiplied by $n$, which is 3, and the result, 6,\nbecomes the return value of the function call that started the whole\nprocess.\n\nHere is what the stack diagram looks like for this sequence of function\ncalls:\n\n\\vspace{0.1in}\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/stack3.eps}}\n\\afterfig\n\\vspace{0.1in}\n\nThe return values are shown being passed back up the stack.\nIn each frame, the return value is\nthe value of {\\tt result}, which is the product of {\\tt n}\nand {\\tt recurse}.\n\nNotice that in the last frame, the local\nvariables {\\tt recurse} and {\\tt result} do not exist, because\nthe branch that creates them did not execute.\n\n\n\n\\section{Leap of faith}\n\\index{recursion}\n\\index{leap of faith}\n\nFollowing the flow of execution is one way to read programs, but\nit can quickly become labyrinthine. An\nalternative is what we call the ``leap of faith.'' When you come to a\nfunction call, instead of following the flow of execution, you {\\em\nassume} that the function works correctly and returns the appropriate\nvalue.\n\nIn fact, you are already practicing this leap of faith when you use\nbuilt-in functions. When you call {\\tt math.cos} or {\\tt math.exp},\nyou don't examine the implementations of those functions. You just\nassume that they work because the people who wrote the built-in\nfunctions were good programmers.\n\nThe same is true when you call one of your own functions. For example,\nin Section~\\ref{boolean}, we wrote a function called {\\tt isDivisible}\nthat determines whether one number is divisible by another. Once we\nhave convinced ourselves that this function is correct---by testing\nand examining the code---we can use the function without looking\nat the code again.\n\n\\adjustpage{-1}\n\nThe same is true of recursive programs. When you get to the recursive\ncall, instead of following the flow of execution, you should assume\nthat the recursive call works (yields the correct result) and then ask\nyourself, ``Assuming that I can find the factorial of $n-1$, can I\ncompute the factorial of $n$?'' In this case, it is clear that you\ncan, by multiplying by $n$.\n\nOf course, it's a bit strange to assume that the function works\ncorrectly when you haven't finished writing it, but that's why\nit's called a leap of faith!\n\n\n\\section{One more example}\n\\label{one more example}\n\nIn the previous example, we used temporary variables to spell out\nthe steps and to make the code easier to debug, but we could have\nsaved a few lines:\n\n\\beforeverb\n\\begin{verbatim}\ndef factorial(n):\n if n == 0:\n return 1\n else:\n return n * factorial(n-1)\n\\end{verbatim}\n\\afterverb\n%\nFrom now on, we will tend to use the more concise form, but we\nrecommend that you use the more explicit version while you are developing\ncode. When you have it working, you can tighten it up if you are\nfeeling inspired.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c3def67b-d763-4f94-9a2b-53b81a1be41b": {"__data__": {"id_": "c3def67b-d763-4f94-9a2b-53b81a1be41b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "66035af3-6ef1-495b-a24c-4e6642d277f4", "node_type": null, "metadata": {}, "hash": "e4f6e4c329b81bee01e2f9f5963590a686af8de1925d89241a622bf30a26a71c"}, "3": {"node_id": "36bb8e59-f2dd-4374-897e-a97830ae042b", "node_type": null, "metadata": {}, "hash": "bb97a49fc2fcba8fa0e78a36e3028bcd54d6cb9688b608cc60d45d3b82152840"}}, "hash": "e0de621c8f5dc66ffd4526067a206cdd6240c7b4d39bb1aed59e7073e65d8052", "text": "When you have it working, you can tighten it up if you are\nfeeling inspired.\n\n\\index{Fibonacci function}\n\nAfter {\\tt factorial}, the most common example of a recursively defined\nmathematical function is {\\tt fibonacci}, which has the following definition:\n\n\\vspace{-0.25in}\n\\begin{eqnarray*}\n&& \\mathrm{fibonacci}(0) = 1 \\\\\n&& \\mathrm{fibonacci}(1) = 1 \\\\\n&& \\mathrm{fibonacci}(n) = \\mathrm{fibonacci}(n-1) + \\mathrm{fibonacci}(n-2);\n\\end{eqnarray*}\n%\nTranslated into Python, it looks like this:\n\n\\beforeverb\n\\begin{verbatim}\ndef fibonacci (n):\n if n == 0 or n == 1:\n return 1\n else:\n return fibonacci(n-1) + fibonacci(n-2)\n\\end{verbatim}\n\\afterverb\n%\nIf you try to follow the flow of execution here, even for fairly\nsmall values of $n$, your head explodes. But according to the\nleap of faith, if you assume that the two recursive calls\nwork correctly, then it is clear that you get\nthe right result by adding them together.\n\n\\adjustpage{-1}\n\n\\section{Checking types}\n\\index{type checking}\n\\index{error checking}\n\\index{factorial function}\n\nWhat happens if we call {\\tt factorial} and give it 1.5 as an argument?\n\n\\beforeverb\n\\begin{verbatim}\n>>> factorial (1.5)\nRuntimeError: Maximum recursion depth exceeded\n\\end{verbatim}\n\\afterverb\n%\nIt looks like an infinite recursion. But how can that be? There is a\nbase case---when {\\tt n == 0}. The problem is that the values\nof {\\tt n} {\\em miss} the base case.\n\n\\index{infinite recursion}\n\\index{recursion!infinite}\n\nIn the first recursive call, the value of {\\tt n} is 0.5.\nIn the next, it is -0.5. From there, it gets smaller and\nsmaller, but it will never be 0.\n\nWe have two choices. We can try to generalize the {\\tt factorial}\nfunction to work with floating-point numbers, or we can make\n{\\tt factorial} check the type of its argument. The first option\nis called the gamma function and it's a little beyond the\nscope of this book. So we'll go for the\nsecond.\n\n\\index{gamma function}\n\nWe can use the built-in function {\\tt isinstance} to verify the type of the\nargument. While we're\nat it, we also make sure the argument is positive:\n\n\\beforeverb\n\\begin{verbatim}\ndef factorial (n):\n if not isinstance(n, int):\n print \"Factorial is only defined for integers.\"\n return -1\n elif n < 0:\n print \"Factorial is only defined for positive integers.\"\n return -1\n elif n == 0:\n return 1\n else:\n return n * factorial(n-1)\n\\end{verbatim}\n\\afterverb\n%\nNow we have three base cases. The first catches\nnonintegers. The second catches negative integers. In both cases,\nthe program prints an error message and returns a special value, -1, to\nindicate that something went wrong:\n\n\\beforeverb\n\\begin{verbatim}\n>>> factorial (\"fred\")\nFactorial is only defined for integers.\n-1\n>>> factorial (-2)\nFactorial is only defined for positive integers.\n-1\n\\end{verbatim}\n\\afterverb\n%\nIf we get past both checks, then we know that $n$ is a positive\ninteger, and we can prove that the recursion terminates.\n\nThis program demonstrates a pattern sometimes called a {\\bf guardian}.\nThe first two conditionals act as guardians, protecting the\ncode that follows from values that might cause an error.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "36bb8e59-f2dd-4374-897e-a97830ae042b": {"__data__": {"id_": "36bb8e59-f2dd-4374-897e-a97830ae042b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "node_type": null, "metadata": {}, "hash": "b85c9178f1934aede99b2982b6a7d7abb31a7200f117b628b18e69577d292072"}, "2": {"node_id": "c3def67b-d763-4f94-9a2b-53b81a1be41b", "node_type": null, "metadata": {}, "hash": "e0de621c8f5dc66ffd4526067a206cdd6240c7b4d39bb1aed59e7073e65d8052"}}, "hash": "bb97a49fc2fcba8fa0e78a36e3028bcd54d6cb9688b608cc60d45d3b82152840", "text": "The guardians\nmake it possible to prove the correctness of the code.\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[fruitful function:] A function that yields a return value.\n\n\\item[return value:] The value provided as the result of a function call.\n\n\\item[temporary variable:] A variable used to store an intermediate value in\na complex calculation.\n\n\\item[dead code:] Part of a program that can never be executed, often because\nit appears after a {\\tt return} statement.\n\n\\item[{\\tt None}:] A special Python value returned by functions that\nhave no return statement, or a return statement without an argument.\n\n\\item[incremental development:] A program development plan intended to\navoid debugging by adding and testing only\na small amount of code at a time.\n\n\\item[scaffolding:] Code that is used during program development but is\nnot part of the final version.\n\n\\item[guardian:] A condition that checks for and handles circumstances that\nmight cause an error.\n\n\\index{temporary variable}\n\\index{variable!temporary}\n\\index{return value}\n\\index{dead code}\n\\index{None}\n\\index{incremental development}\n\\index{scaffolding}\n\\index{guardian}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c1505c31-0d44-4e42-964c-1889324dc33b": {"__data__": {"id_": "c1505c31-0d44-4e42-964c-1889324dc33b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "3": {"node_id": "bc137aa3-66e7-417d-951c-5d12b6ca21e9", "node_type": null, "metadata": {}, "hash": "78704f05722c95e6173a791658398749b63ca2e032a997e562bbd45654cb6bc4"}}, "hash": "3b29f95d26e4bc8cf9efb6b7e6c20614ba0ebdb05f1ea4ddf221381fc1d8323a", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{Iteration}\n\\index{iteration}\n\n\n\\section{Multiple assignment}\n\\index{assignment}\n\\index{statement!assignment}\n\\index{multiple assignment}\n\nAs you may have discovered, it is legal to\nmake more than one assignment to the same variable. A\nnew assignment makes an existing variable refer to a new\nvalue (and stop referring to the old value).\n\n\\beforeverb\n\\begin{verbatim}\nbruce = 5\nprint bruce,\nbruce = 7\nprint bruce\n\\end{verbatim}\n\\afterverb\n%\nThe output of this program is {\\tt 5 7}, because the first time\n{\\tt bruce} is printed, his value is 5, and the second time, his\nvalue is 7. The\ncomma at the end of the first {\\tt print} statement suppresses\nthe newline after the output, which is why both outputs\nappear on the same line.\n\nHere is what {\\bf multiple assignment} looks like in a state diagram:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/assign2.eps}}\n\\afterfig\n\nWith multiple assignment it is especially important to distinguish\nbetween an assignment operation and a statement of equality. Because\nPython uses the equal sign ({\\tt =}) for assignment, it is tempting to\ninterpret a statement like {\\tt a = b} as a statement of equality. It\nis not!\n\nFirst, equality is commutative and assignment is not. For\nexample, in mathematics, if $a = 7$ then $7 = a$. But in Python, the\nstatement {\\tt a = 7} is legal and {\\tt 7 = a} is not.\n\nFurthermore, in mathematics, a statement of equality is always true.\nIf $a = b$ now, then $a$ will always equal $b$. In Python, an\nassignment statement can make two variables equal, but they don't have\nto stay that way:\n\n\\beforeverb\n\\begin{verbatim}\na = 5\nb = a # a and b are now equal\na = 3 # a and b are no longer equal\n\\end{verbatim}\n\\afterverb\n%\nThe third line changes the value of {\\tt a} but does not change the\nvalue of {\\tt b}, so they are no longer equal. (In some\nprogramming languages, a different symbol is used for assignment,\nsuch as {\\tt <-} or {\\tt :=}, to avoid confusion.)\n\nAlthough multiple assignment is frequently helpful, you should use it\nwith caution. If the values of variables change frequently, it can\nmake the code difficult to read and debug.\n\n\n\\section{The {\\tt while} statement}\n\\index{while statement}\n\\index{statement!while}\n\\index{loop!while}\n\\index{iteration}\n\nComputers are often used to automate repetitive tasks. Repeating\nidentical or similar tasks without making errors is something that\ncomputers do well and people do poorly.\n\nWe have seen two programs, {\\tt nLines} and {\\tt countdown}, that use\nrecursion to perform repetition, which is also called {\\bf iteration}.\nBecause iteration is so common, Python provides several language\nfeatures to make it easier. The first feature we are going to look\nat is the {\\tt while} statement.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bc137aa3-66e7-417d-951c-5d12b6ca21e9": {"__data__": {"id_": "bc137aa3-66e7-417d-951c-5d12b6ca21e9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "c1505c31-0d44-4e42-964c-1889324dc33b", "node_type": null, "metadata": {}, "hash": "3b29f95d26e4bc8cf9efb6b7e6c20614ba0ebdb05f1ea4ddf221381fc1d8323a"}, "3": {"node_id": "b5804993-458b-4b01-b13c-ad4cb9ea1c30", "node_type": null, "metadata": {}, "hash": "91f5a8a93bc4930ee0fed4741ede2f265ddef8d3e179b24a4027f639d08c956e"}}, "hash": "78704f05722c95e6173a791658398749b63ca2e032a997e562bbd45654cb6bc4", "text": "The first feature we are going to look\nat is the {\\tt while} statement.\n\nHere is what {\\tt countdown} looks like with a \n{\\tt while} statement:\n\n\\beforeverb\n\\begin{verbatim}\ndef countdown(n):\n while n > 0:\n print n\n n = n-1\n print \"Blastoff!\"\n\\end{verbatim}\n\\afterverb\n%\nSince we removed the recursive call, this function is not\nrecursive.\n\nYou can almost read the {\\tt while} statement as if it were English.\nIt means, ``While {\\tt n} is greater than 0, continue\ndisplaying the value of {\\tt n} and then reducing the value of\n{\\tt n} by 1. When you get to 0, display the word {\\tt Blastoff!}''\n\nMore formally, here is the flow of execution for a {\\tt while} statement:\n\n\\begin{enumerate}\n\n\\item Evaluate the condition, yielding {\\tt 0} or {\\tt 1}.\n\n\\item If the condition is false (0), exit the {\\tt while} statement\nand continue execution at the next statement.\n\n\\item If the condition is true (1), execute each of the statements in the\nbody and then go back to step 1.\n\n\\end{enumerate}\n\nThe body consists of all of the statements below the header\nwith the same indentation.\n\nThis type of flow is called a {\\bf loop} because the third step\nloops back around to the top. Notice that if the condition is false\nthe first time through the loop, the statements inside the loop are\nnever executed.\n\n\\index{condition}\n\\index{loop}\n\\index{loop!body}\n\\index{body!loop}\n\\index{infinite loop}\n\\index{loop!infinite}\n\nThe body of the loop should change the value of one or more variables\nso that eventually the condition becomes false and the loop\nterminates. Otherwise the loop will repeat forever, which is called\nan {\\bf infinite loop}. An endless source of amusement for computer\nscientists is the observation that the directions on shampoo,\n``Lather, rinse, repeat,'' are an infinite loop.\n\nIn the case of {\\tt countdown}, we can prove that the loop\nterminates because we know that the value of {\\tt n} is finite, and we\ncan see that the value of {\\tt n} gets smaller each time through the\nloop, so eventually we have to get to 0. In other\ncases, it is not so easy to tell:\n\n\\beforeverb\n\\begin{verbatim}\ndef sequence(n):\n while n != 1:\n print n,\n if n%2 == 0: # n is even\n n = n/2\n else: # n is odd\n n = n*3+1\n\\end{verbatim}\n\\afterverb\n%\nThe condition for this loop is {\\tt n != 1}, so the loop will continue until\n{\\tt n} is {\\tt 1}, which will make the condition false.\n\nEach time through the loop, the program outputs the value of {\\tt n}\nand then checks whether it is even or odd. If it is even, the value\nof {\\tt n} is divided by 2. If it is odd, the value is replaced by\n{\\tt n*3+1}. For example, if the starting value (the argument passed\nto {\\tt sequence}) is 3, the resulting sequence is 3, 10, 5, 16, 8, 4, 2, 1.\n\nSince {\\tt n} sometimes increases and sometimes decreases, there is no\nobvious proof that {\\tt n} will ever reach 1, or that the program\nterminates. For some particular values of {\\tt n}, we can prove\ntermination. For example, if the starting value is a power of two,\nthen the value of {\\tt n} will be even each time through the loop\nuntil it reaches 1. The previous example ends with such a sequence,\nstarting with 16.\n\nParticular values aside, the interesting question is whether we can\nprove that this program terminates for {\\em all positive values} of {\\tt n}.\nSo far, no one has been able to prove it {\\em or} disprove it!", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b5804993-458b-4b01-b13c-ad4cb9ea1c30": {"__data__": {"id_": "b5804993-458b-4b01-b13c-ad4cb9ea1c30", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "bc137aa3-66e7-417d-951c-5d12b6ca21e9", "node_type": null, "metadata": {}, "hash": "78704f05722c95e6173a791658398749b63ca2e032a997e562bbd45654cb6bc4"}, "3": {"node_id": "b7cf44ff-494b-4b14-90d2-f358a2dbea32", "node_type": null, "metadata": {}, "hash": "3fb09aa26d0f69f30389e5277d8946c6202b8bd44e3c29b0b228f9b5f057b18a"}}, "hash": "91f5a8a93bc4930ee0fed4741ede2f265ddef8d3e179b24a4027f639d08c956e", "text": "So far, no one has been able to prove it {\\em or} disprove it!\n\n\\begin{quote}\n{\\em As an exercise, rewrite the function {\\tt nLines} from\nSection~\\ref{recursion} using iteration instead of recursion.}\n\\end{quote}\n\n\n\\section{Tables}\n\\label{tables}\n\\index{table}\n\\index{logarithm}\n\nOne of the things loops are good for is generating tabular data.\nBefore computers were readily available, people had to calculate\nlogarithms, sines and cosines, and other mathematical functions\nby hand. To make that easier, mathematics books contained long tables\nlisting the values of these functions. Creating the tables was\nslow and boring, and they tended to be full of errors.\n\nWhen computers appeared on the scene, one of the initial reactions\nwas, ``This is great! We can use the computers to generate the tables,\nso there will be no errors.'' That turned out to be true (mostly) but\nshortsighted. Soon thereafter, computers and calculators were so\npervasive that the tables became obsolete.\n\nWell, almost. For some operations, computers use\ntables of values to get an approximate answer and then perform\ncomputations to improve the approximation. In some cases, there have\nbeen errors in the underlying tables, most famously in the table the\nIntel Pentium used to perform floating-point division.\n\n\\index{Intel}\n\\index{Pentium}\n\nAlthough a log table is not as useful as it once was, it still makes\na good example of iteration. The following program outputs a sequence\nof values in the left column and their logarithms in the right column:\n\n\\beforeverb\n\\begin{verbatim}\nx = 1.0\nwhile x < 10.0:\n print x, '\\t', math.log(x)\n x = x + 1.0\n\\end{verbatim}\n\\afterverb\n%\nThe string \n\\verb+'\\t'+ represents a {\\bf tab}\ncharacter.\n\nAs characters and strings are displayed on the screen,\nan invisible marker called the {\\bf cursor} keeps track of\nwhere the next character will go. After a {\\tt print} statement, the\ncursor normally goes to the beginning of the next line.\n\nThe tab character shifts the cursor to the right until it\nreaches one of the tab stops. Tabs are useful for making columns of\ntext line up, as in the output of the previous program:\n\n\\beforeverb\n\\begin{verbatim}\n1.0 0.0\n2.0 0.69314718056\n3.0 1.09861228867\n4.0 1.38629436112\n5.0 1.60943791243\n6.0 1.79175946923\n7.0 1.94591014906\n8.0 2.07944154168\n9.0 2.19722457734\n\\end{verbatim}\n\\afterverb\n%\nIf these values seem odd, remember that the {\\tt log} function uses\nbase {\\tt e}. Since powers of two are so important in computer\nscience, we often want to find logarithms with respect to base 2.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b7cf44ff-494b-4b14-90d2-f358a2dbea32": {"__data__": {"id_": "b7cf44ff-494b-4b14-90d2-f358a2dbea32", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "b5804993-458b-4b01-b13c-ad4cb9ea1c30", "node_type": null, "metadata": {}, "hash": "91f5a8a93bc4930ee0fed4741ede2f265ddef8d3e179b24a4027f639d08c956e"}, "3": {"node_id": "3a60dc4d-a8c5-4b8a-8389-dc972fdab765", "node_type": null, "metadata": {}, "hash": "527392256c90d1aea5202f9244de0e50e3b03fb499c7abe2297d51e53f0e96d3"}}, "hash": "3fb09aa26d0f69f30389e5277d8946c6202b8bd44e3c29b0b228f9b5f057b18a", "text": "To\ndo that, we can use the following formula:\n\n\\begin{displaymath}\n\\log_2 x = \\frac {\\log_e x}{\\log_e 2}\n\\end{displaymath}\n\nChanging the output statement to:\n\n\\beforeverb\n\\begin{verbatim}\n print x, '\\t', math.log(x)/math.log(2.0)\n\\end{verbatim}\n\\afterverb\n%\nyields:\n\n\\beforeverb\n\\begin{verbatim}\n1.0 0.0\n2.0 1.0\n3.0 1.58496250072\n4.0 2.0\n5.0 2.32192809489\n6.0 2.58496250072\n7.0 2.80735492206\n8.0 3.0\n9.0 3.16992500144\n\\end{verbatim}\n\\afterverb\n%\nWe can see that 1, 2, 4, and 8 are powers of two because their\nlogarithms base 2 are round numbers. If we wanted to find the\nlogarithms of other powers of two, we could modify the program like\nthis:\n\n\\beforeverb\n\\begin{verbatim}\nx = 1.0\nwhile x < 100.0:\n print x, '\\t', math.log(x)/math.log(2.0)\n x = x * 2.0\n\\end{verbatim}\n\\afterverb\n%\nNow instead of adding something to {\\tt x} each time through the loop, which\nyields an arithmetic sequence, we multiply {\\tt x} by something, yielding a\ngeometric sequence. The result is:\n\n\\index{arithmetic sequence}\n\\index{geometric sequence}\n\n\\beforeverb\n\\begin{verbatim}\n1.0 0.0\n2.0 1.0\n4.0 2.0\n8.0 3.0\n16.0 4.0\n32.0 5.0\n64.0 6.0\n\\end{verbatim}\n\\afterverb\n%\nBecause of the tab characters between the columns, the position of the\nsecond column does not depend on the number of digits in the first\ncolumn.\n\nLogarithm tables may not be useful any more, but for computer\nscientists, knowing the powers of two is!\n\n\\begin{quote}\n{\\em As an exercise, modify this program so that it outputs the powers\nof two up to 65,536 (that's $2^{16}$). Print it out and memorize it.}\n\\end{quote}\n\n\\index{escape sequence}\n\nThe backslash character in \\verb+'\\t'+ indicates the\nbeginning of an {\\bf escape sequence}. Escape sequences\nare used to represent invisible characters like\ntabs and newlines. The sequence \\verb+\\n+ represents a newline.\n\nAn escape sequence can appear\nanywhere in a string; in the example, the tab escape\nsequence is the only thing in the string.\n\nHow do you think you represent a backslash in a string?\n\n\\begin{quote}\n{\\em As an exercise, write a single string that\n\n\\beforeverb\n\\begin{verbatim}\nproduces\n this\n output.\n\\end{verbatim}\n\\afterverb\n\n}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3a60dc4d-a8c5-4b8a-8389-dc972fdab765": {"__data__": {"id_": "3a60dc4d-a8c5-4b8a-8389-dc972fdab765", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "b7cf44ff-494b-4b14-90d2-f358a2dbea32", "node_type": null, "metadata": {}, "hash": "3fb09aa26d0f69f30389e5277d8946c6202b8bd44e3c29b0b228f9b5f057b18a"}, "3": {"node_id": "655b870a-ed3a-476f-a19f-b05285203802", "node_type": null, "metadata": {}, "hash": "39973f7aafae1fff0fdbc03b503091613c88da708c667eae48d682f384283f64"}}, "hash": "527392256c90d1aea5202f9244de0e50e3b03fb499c7abe2297d51e53f0e96d3", "text": "\\end{verbatim}\n\\afterverb\n\n}\n\\end{quote}\n\n\n\\section{Two-dimensional tables}\n\\index{table!two-dimensional}\n\nA two-dimensional table is a table where you\nread the value at the intersection of a row and a column. A\nmultiplication table is a good example.\nLet's say you want to print a multiplication table for the values\nfrom 1 to 6.\n\nA good way to start is to write a loop that prints the multiples of\n2, all on one line:\n\n\\beforeverb\n\\begin{verbatim}\ni = 1\nwhile i <= 6:\n print 2*i, ' ',\n i = i + 1\nprint\n\\end{verbatim}\n\\afterverb\n%\nThe first line initializes a variable named {\\tt i}, which acts as a\ncounter or {\\bf loop variable}. As the loop executes, the value of\n{\\tt i} increases from 1 to 6. When {\\tt i} is 7, the loop\nterminates. Each time through the loop, it displays the value of {\\tt\n2*i}, followed by three spaces. \n\nAgain, the comma in the {\\tt print} statement suppresses the newline.\nAfter the loop completes, the second {\\tt print} statement starts a\nnew line.\n\nThe output of the program is:\n\n\\beforeverb\n\\begin{verbatim}\n2 4 6 8 10 12\n\\end{verbatim}\n\\afterverb\n%\nSo far, so good. The next step is to {\\bf encapsulate} and {\\bf generalize}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "655b870a-ed3a-476f-a19f-b05285203802": {"__data__": {"id_": "655b870a-ed3a-476f-a19f-b05285203802", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "3a60dc4d-a8c5-4b8a-8389-dc972fdab765", "node_type": null, "metadata": {}, "hash": "527392256c90d1aea5202f9244de0e50e3b03fb499c7abe2297d51e53f0e96d3"}, "3": {"node_id": "6e24f274-bc98-41ba-bba6-1275248af13c", "node_type": null, "metadata": {}, "hash": "70b574ba8f109cf968e93f0cdbf9af4c97ea13b67350193080cc1b86be104d66"}}, "hash": "39973f7aafae1fff0fdbc03b503091613c88da708c667eae48d682f384283f64", "text": "\\section{Encapsulation and generalization}\n\\label{encapsulation}\n\\index{encapsulation}\n\\index{generalization}\n\\index{program development!encapsulation}\n\\index{program development!generalization}\n\nEncapsulation is the process of wrapping a piece of code in a\nfunction, allowing you to take advantage of all the things functions\nare good for. You have seen two examples of encapsulation:\n{\\tt printParity} in Section~\\ref{alternative execution}; and\n{\\tt isDivisible} in Section~\\ref{boolean}.\n\nGeneralization means taking something specific, such as printing the\nmultiples of 2, and making it more general, such as printing the\nmultiples of any integer.\n\nThis function encapsulates the previous loop and\ngeneralizes it to print multiples of {\\tt n}:\n\n\\beforeverb\n\\begin{verbatim}\ndef printMultiples(n):\n i = 1\n while i <= 6:\n print n*i, '\\t',\n i = i + 1\n print\n\\end{verbatim}\n\\afterverb\n%\nTo encapsulate, all we had to do was add the first line, which\ndeclares the name of the function and the parameter list. To\ngeneralize, all we had to do was replace the value 2 with the\nparameter {\\tt n}.\n\nIf we call this function with the argument 2, we get the same output as\nbefore. With the argument 3, the output is:\n\n\\beforeverb\n\\begin{verbatim}\n3 6 9 12 15 18\n\\end{verbatim}\n\\afterverb\n%\nWith the argument 4, the output is:\n\n\\beforeverb\n\\begin{verbatim}\n4 8 12 16 20 24\n\\end{verbatim}\n\\afterverb\n%\nBy now you can probably guess how to print a multiplication table---by\ncalling {\\tt printMultiples} repeatedly with different arguments. In\nfact, we can use another loop:\n\n\\beforeverb\n\\begin{verbatim}\ni = 1\nwhile i <= 6:\n printMultiples(i)\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nNotice how similar this loop is to the one inside\n{\\tt printMultiples}. All we did was replace the {\\tt print} statement with\na function call.\n\nThe output of this program is a multiplication table:\n\n\\beforeverb\n\\begin{verbatim}\n1 2 3 4 5 6\n2 4 6 8 10 12\n3 6 9 12 15 18\n4 8 12 16 20 24\n5 10 15 20 25 30\n6 12 18 24 30 36\n\\end{verbatim}\n\\afterverb\n%", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6e24f274-bc98-41ba-bba6-1275248af13c": {"__data__": {"id_": "6e24f274-bc98-41ba-bba6-1275248af13c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "655b870a-ed3a-476f-a19f-b05285203802", "node_type": null, "metadata": {}, "hash": "39973f7aafae1fff0fdbc03b503091613c88da708c667eae48d682f384283f64"}, "3": {"node_id": "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70", "node_type": null, "metadata": {}, "hash": "e0d88610c6309454c22e59eee75277fdd3d3bd750de908681b32efb7997ae38d"}}, "hash": "70b574ba8f109cf968e93f0cdbf9af4c97ea13b67350193080cc1b86be104d66", "text": "\\section{More encapsulation}\n\nTo demonstrate encapsulation again, let's take the code from the end of\nSection~\\ref{encapsulation} and wrap it up in a function:\n\n\\beforeverb\n\\begin{verbatim}\ndef printMultTable():\n i = 1\n while i <= 6:\n printMultiples(i)\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nThis process is a common {\\bf development plan}. We develop code by\nwriting lines of code outside any function, or typing them in to the\ninterpreter. When we get the code working, we extract it and wrap it\nup in a function.\n\nThis development plan is particularly useful if you don't know, when\nyou start writing, how to divide the program into functions. This\napproach lets you design as you go along.\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\section{Local variables}\n\\index{variable!local}\n\\index{local variable}\n\nYou might be wondering how we can use the same variable, {\\tt i}, in\nboth {\\tt printMultiples} and {\\tt printMultTable}. Doesn't it cause\nproblems when one of the functions changes the value of the variable?\n\nThe answer is no, because the {\\tt i} in {\\tt printMultiples} and the\n{\\tt i} in {\\tt printMultTable} are {\\em not} the same variable.\n\nVariables created inside a function definition are local; you can't\naccess a local variable from outside its ``home'' function. That\nmeans you are free to have multiple variables with the same name as\nlong as they are not in the same function.\n\nThe stack diagram for this program shows that the two\nvariables named {\\tt i} are not the same variable. They can refer to\ndifferent values, and changing one does not affect the other.\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/stack4.eps}}\n\\afterfig\n\nThe value of {\\tt i} in {\\tt printMultTable} goes from 1 to 6. In the\ndiagram it happens to be 3. The next time through the loop it will\nbe 4. Each time through the loop, {\\tt printMultTable} calls\n{\\tt printMultiples} with the current value of {\\tt i} as an\nargument. That value gets assigned to the parameter {\\tt n}.\n\nInside {\\tt printMultiples}, the value of {\\tt i} goes from\n1 to 6. In the diagram, it happens to be 2. Changing this variable\nhas no effect on the value of {\\tt i} in {\\tt printMultTable}.\n\nIt is common and perfectly legal to have different local variables\nwith the same name. In particular, names like {\\tt i} and {\\tt j} are\nused frequently as loop variables. If you avoid\nusing them in one function just because you used them somewhere else,\nyou will probably make the program harder to read.\n\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\section{More generalization}\n\nAs another example of generalization, imagine you wanted a program\nthat would print a multiplication table of any size, not just the\nsix-by-six table. You could add a parameter to {\\tt printMultTable}:\n\n\\beforeverb\n\\begin{verbatim}\ndef printMultTable(high):\n i = 1\n while i <= high:\n printMultiples(i)\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nWe replaced the value 6 with the parameter {\\tt high}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70": {"__data__": {"id_": "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "6e24f274-bc98-41ba-bba6-1275248af13c", "node_type": null, "metadata": {}, "hash": "70b574ba8f109cf968e93f0cdbf9af4c97ea13b67350193080cc1b86be104d66"}, "3": {"node_id": "45053040-3fa3-4bb5-aa00-7a11811e4098", "node_type": null, "metadata": {}, "hash": "c998bd41bd90fb5669f9772e811d2b9f396d3813d744700ccc020a925464a3ff"}}, "hash": "e0d88610c6309454c22e59eee75277fdd3d3bd750de908681b32efb7997ae38d", "text": "If we call\n{\\tt printMultTable} with the argument 7, it displays:\n\n\\beforeverb\n\\begin{verbatim}\n1 2 3 4 5 6\n2 4 6 8 10 12\n3 6 9 12 15 18\n4 8 12 16 20 24\n5 10 15 20 25 30\n6 12 18 24 30 36\n7 14 21 28 35 42\n\\end{verbatim}\n\\afterverb\n%\nThis is fine, except that we probably want the table to be\nsquare---with the same number of rows and columns. To do that, we\nadd another parameter to {\\tt printMultiples} to specify how many\ncolumns the table should have.\n\nJust to be annoying, we call this parameter {\\tt high}, demonstrating\nthat different functions can have parameters with the same name (just like\nlocal variables). Here's the whole program:\n\n\\beforeverb\n\\begin{verbatim}\ndef printMultiples(n, high):\n i = 1\n while i <= high:\n print n*i, '\\t',\n i = i + 1\n print\n\ndef printMultTable(high):\n i = 1\n while i <= high:\n printMultiples(i, high)\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nNotice that when we added a new parameter, we had to change the first line\nof the function (the function heading), and we also had to change the place\nwhere the function is called in {\\tt printMultTable}.\n\nAs expected, this program generates a square seven-by-seven table:\n\n\\beforeverb\n\\begin{verbatim}\n1 2 3 4 5 6 7\n2 4 6 8 10 12 14\n3 6 9 12 15 18 21\n4 8 12 16 20 24 28\n5 10 15 20 25 30 35\n6 12 18 24 30 36 42\n7 14 21 28 35 42 49\n\\end{verbatim}\n\\afterverb\n%\nWhen you generalize a function appropriately, you often get\na program with capabilities you didn't plan. For\nexample, you might\nnotice that, because $ab = ba$,\nall the entries in the table appear twice. You could save ink by printing\nonly half the table. To do that, you only have to change one line of\n{\\tt printMultTable}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "45053040-3fa3-4bb5-aa00-7a11811e4098": {"__data__": {"id_": "45053040-3fa3-4bb5-aa00-7a11811e4098", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "node_type": null, "metadata": {}, "hash": "72342a9f8006c0bfab11df9ad85491e74e7261df4ab69348b5ffada9e9e01e09"}, "2": {"node_id": "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70", "node_type": null, "metadata": {}, "hash": "e0d88610c6309454c22e59eee75277fdd3d3bd750de908681b32efb7997ae38d"}}, "hash": "c998bd41bd90fb5669f9772e811d2b9f396d3813d744700ccc020a925464a3ff", "text": "Change\n\n\\beforeverb\n\\begin{verbatim}\n printMultiples(i, high)\n\\end{verbatim}\n\\afterverb\n%\nto\n\n\\beforeverb\n\\begin{verbatim}\n printMultiples(i, i)\n\\end{verbatim}\n\\afterverb\n%\nand you get\n\n\\beforeverb\n\\begin{verbatim}\n1\n2 4\n3 6 9\n4 8 12 16\n5 10 15 20 25\n6 12 18 24 30 36\n7 14 21 28 35 42 49\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, trace the execution of this version of\n{\\tt printMultTable} and figure out how it works.}\n\\end{quote}\n\n\n\\section{Functions}\n\\index{function}\n\nA few times now, we have mentioned ``all the things functions are good\nfor.'' By now, you might be wondering what exactly those things are.\nHere are some of them:\n\n\\begin{itemize}\n\n\\item Giving a name to a sequence of statements makes your program\neasier to read and debug.\n\n\\item Dividing a long program into functions allows you to separate parts of\nthe program, debug them in isolation, and then compose them into a whole.\n\n\\item Functions facilitate both recursion and iteration.\n\n\\item Well-designed functions are often useful for many programs. Once you\nwrite and debug one, you can reuse it.\n\n\\end{itemize}\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[multiple assignment:] Making more than one assignment to the same\nvariable during the execution of a program.\n\n\\item[iteration:] Repeated execution of a set of statements using\neither a recursive function call or a loop.\n\n\\item[loop:] A statement or group of statements that execute repeatedly until\na terminating condition is satisfied.\n\n\\item[infinite loop:] A loop in which the terminating condition is\nnever satisfied.\n\n\\item[body:] The statements inside a loop.\n\n\\item[loop variable:] A variable used as part of the terminating\ncondition of a loop.\n\n\\item[tab:] A special character that causes the cursor to move to\nthe next tab stop on the current line.\n\n\\item[newline:] A special character that causes the cursor to move to the\nbeginning of the next line.\n\n\\item[cursor:] An invisible marker that keeps track of where the next\ncharacter will be printed.\n\n\\item[escape sequence:] An escape character ($\\backslash$) followed by one or\nmore printable characters used to designate a nonprintable character.\n\n\\item[encapsulate:] To divide a large complex program into components\n(like functions) and isolate the components from each other (by\nusing local variables, for example).\n\n\\item[generalize:] To replace something unnecessarily specific (like a constant\nvalue) with something appropriately general (like a variable or parameter).\nGeneralization makes code more versatile, more likely to be reused, and\nsometimes even easier to write.\n\n\\item[development plan:] A process for developing a program. In this chapter,\nwe demonstrated a style of development based on developing code to do\nsimple, specific things and then encapsulating and generalizing.\n\n\\index{multiple assignment}\n\\index{assignment!multiple }\n\\index{iteration}\n\\index{loop!body}\n\\index{loop}\n\\index{infinite loop}\n\\index{escape sequence}\n\\index{cursor}\n\\index{tab}\n\\index{newline}\n\\index{loop variable}\n\\index{encapsulate}\n\\index{generalize}\n\\index{development plan}\n\\index{program!development}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "959cccdc-8990-470a-a8e8-64ef3ca824bd": {"__data__": {"id_": "959cccdc-8990-470a-a8e8-64ef3ca824bd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "3": {"node_id": "3c0babf6-7299-46e3-8b25-a99533bce746", "node_type": null, "metadata": {}, "hash": "735d0bcca2a9e6bf0e0865ac194f1224cd14bec22dcd15c00403a1b97ee91d77"}}, "hash": "6d01005fba986675f0fdb396a209a5f9f6f8542d9a66c6c83d091fba1edbe052", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\\chapter{Strings}\n\\label{strings}\n\n\n\\section{A compound data type}\n\\index{compound data type}\n\\index{data type!compound}\n\nSo far we have seen three types: {\\tt int}, {\\tt float}, and {\\tt\nstring}. Strings are qualitatively different from the\nother two because they are made up of smaller pieces---characters.\n\n\\index{character}\n\nTypes that comprise smaller pieces are called {\\bf compound data\ntypes}. Depending on what we are doing, we may want to treat a\ncompound data type as a single thing, or we may want to access its\nparts. This ambiguity is useful.\n\n\\index{bracket operator}\n\\index{operator!bracket}\n\nThe bracket operator selects a single character from a string.\n\n\\beforeverb\n\\begin{verbatim}\n>>> fruit = \"banana\"\n>>> letter = fruit[1]\n>>> print letter\n\\end{verbatim}\n\\afterverb\n%\nThe expression {\\tt fruit[1]} selects character number 1 from {\\tt\nfruit}. The variable {\\tt letter} refers to the result. When we\ndisplay {\\tt letter}, we get a surprise:\n\n\\beforeverb\n\\begin{verbatim}\na\n\\end{verbatim}\n\\afterverb\n%\nThe first letter of {\\tt \"banana\"} is not {\\tt a}. Unless you are a\ncomputer scientist. In that case you should think of the expression in\nbrackets as an offset from the beginning of the string, and the offset\nof the first letter is zero. So {\\tt b} is the 0th letter\n(``zero-eth'') of {\\tt \"banana\"}, {\\tt a} is the 1th letter\n(``one-eth''), and {\\tt n} is the 2th (``two-eth'') letter.\n\nTo get the first letter of a string, you just put 0, or\nany expression with the value 0, in the brackets:\n\n\\beforeverb\n\\begin{verbatim}\n>>> letter = fruit[0]\n>>> print letter\nb\n\\end{verbatim}\n\\afterverb\n%\nThe expression in brackets is called an {\\bf index}. An index\nspecifies a member of an ordered set, in this case the set of\ncharacters in the string. The index {\\em indicates} which one you\nwant, hence the name. It can be any integer expression.\n\n\\index{index}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3c0babf6-7299-46e3-8b25-a99533bce746": {"__data__": {"id_": "3c0babf6-7299-46e3-8b25-a99533bce746", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "959cccdc-8990-470a-a8e8-64ef3ca824bd", "node_type": null, "metadata": {}, "hash": "6d01005fba986675f0fdb396a209a5f9f6f8542d9a66c6c83d091fba1edbe052"}, "3": {"node_id": "80c4a719-ec82-4874-b183-7aef4ca5dceb", "node_type": null, "metadata": {}, "hash": "c14255fc7cb2121cc92a304d83326b4fc20ad2c30728da8a5af136f17b42a9df"}}, "hash": "735d0bcca2a9e6bf0e0865ac194f1224cd14bec22dcd15c00403a1b97ee91d77", "text": "\\section{Length}\n\\index{string!length}\n\\index{runtime error}\n\nThe {\\tt len} function returns the number of characters in a string:\n\n\\beforeverb\n\\begin{verbatim}\n>>> fruit = \"banana\"\n>>> len(fruit)\n6\n\\end{verbatim}\n\\afterverb\n%\nTo get the last letter of a string, you might be tempted to try something\nlike this:\n\n\\beforeverb\n\\begin{verbatim}\nlength = len(fruit)\nlast = fruit[length] # ERROR!\n\\end{verbatim}\n\\afterverb\n%\nThat won't work. It causes the runtime error {\\tt IndexError: string\nindex out of range}. The reason is that there is no 6th letter in\n{\\tt \"banana\"}. Since we started counting at zero, the six letters\nare numbered 0 to 5. To get the last character, we have to subtract\n1 from {\\tt length}:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\nlength = len(fruit)\nlast = fruit[length-1]\n\\end{verbatim}\n\\afterverb\n%\nAlternatively, we can use negative indices, which count backward from the end\nof the string. The expression {\\tt fruit[-1]} yields the last letter,\n{\\tt fruit[-2]} yields the second to last, and so on.\n\n\\index{index!negative}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "80c4a719-ec82-4874-b183-7aef4ca5dceb": {"__data__": {"id_": "80c4a719-ec82-4874-b183-7aef4ca5dceb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "3c0babf6-7299-46e3-8b25-a99533bce746", "node_type": null, "metadata": {}, "hash": "735d0bcca2a9e6bf0e0865ac194f1224cd14bec22dcd15c00403a1b97ee91d77"}, "3": {"node_id": "e3602a25-424c-4f8a-9898-c34357bd7420", "node_type": null, "metadata": {}, "hash": "45efb16a6a470e7975752ab12fb92c62e1e978f426a22a113367ee70fe64c150"}}, "hash": "c14255fc7cb2121cc92a304d83326b4fc20ad2c30728da8a5af136f17b42a9df", "text": "\\section{Traversal and the {\\tt for} loop}\n\\label{for}\n\\index{traversal}\n\\index{loop!traversal}\n\\index{for loop}\n\\index{loop!for loop}\n\nA lot of computations involve processing a string one character at a\ntime. Often they start at the beginning, select each character in\nturn, do something to it, and continue until the end. This pattern of\nprocessing is called a {\\bf traversal}. One way to encode a traversal\nis with a {\\tt while} statement:\n\n\\adjustpage{2}\n\\beforeverb\n\\begin{verbatim}\nindex = 0\nwhile index < len(fruit):\n letter = fruit[index]\n print letter\n index = index + 1\n\\end{verbatim}\n\\afterverb\n%\nThis loop traverses the string and displays each letter on a line by\nitself. The loop condition is {\\tt index < len(fruit)}, so\nwhen {\\tt index} is equal to the length of the string, the\ncondition is false, and the body of the loop is not executed. The\nlast character accessed is the one with the index {\\tt len(fruit)-1},\nwhich is the last character in the string.\n\n\\begin{quote}\n{\\em As an exercise, write a function that takes a string as an argument\nand outputs the letters backward, one per line.}\n\\end{quote}\n\nUsing an index to\ntraverse a set of values is so common that\nPython provides an alternative, simpler syntax---the {\\tt for} loop:\n\n\\beforeverb\n\\begin{verbatim}\nfor char in fruit:\n print char\n\\end{verbatim}\n\\afterverb\n%\nEach time through the loop, the next character in the string is assigned\nto the variable {\\tt char}. The loop continues until no characters are\nleft.\n\n\\index{concatenation}\n\\index{abecedarian}\n\\index{McCloskey, Robert}\n\\index{{\\em Make Way for Ducklings}}\n\nThe following example shows how to use concatenation and a {\\tt\nfor} loop to generate an abecedarian series. ``Abecedarian'' refers\nto a series or list in which the elements appear in alphabetical\norder. For example, in Robert McCloskey's book {\\em Make Way for\nDucklings}, the names of the ducklings are Jack, Kack, Lack, Mack,\nNack, Ouack, Pack, and Quack. This loop outputs these names in order:\n\n\\beforeverb\n\\begin{verbatim}\nprefixes = \"JKLMNOPQ\"\nsuffix = \"ack\"\n\nfor letter in prefixes:\n print letter + suffix\n\\end{verbatim}\n\\afterverb\n%\nThe output of this program is:\n\n\\beforeverb\n\\begin{verbatim}\nJack\nKack\nLack\nMack\nNack\nOack\nPack\nQack\n\\end{verbatim}\n\\afterverb\n%\nOf course, that's not quite right because ``Ouack'' and\n``Quack'' are misspelled.\n\n\\begin{quote}\n{\\em As an exercise, modify the program to fix this error.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e3602a25-424c-4f8a-9898-c34357bd7420": {"__data__": {"id_": "e3602a25-424c-4f8a-9898-c34357bd7420", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "80c4a719-ec82-4874-b183-7aef4ca5dceb", "node_type": null, "metadata": {}, "hash": "c14255fc7cb2121cc92a304d83326b4fc20ad2c30728da8a5af136f17b42a9df"}, "3": {"node_id": "8875d27e-0ca8-4ae5-82bf-284d04df8f36", "node_type": null, "metadata": {}, "hash": "86ea4db9491e6908f37130994adc90bc0b61be3ac33910a2dd967767a690320a"}}, "hash": "45efb16a6a470e7975752ab12fb92c62e1e978f426a22a113367ee70fe64c150", "text": "\\section{String slices}\n\\label{slice}\n\\index{slice}\n\\index{string!slice}\n\nA segment of a string is called a \n{\\bf slice}. Selecting a slice is similar to\nselecting a character:\n\n\\beforeverb\n\\begin{verbatim}\n>>> s = \"Peter, Paul, and Mary\"\n>>> print s[0:5]\nPeter\n>>> print s[7:11]\nPaul\n>>> print s[17:21]\nMary\n\\end{verbatim}\n\\afterverb\n%\nThe operator {\\tt [n:m]} returns the part of the string from the \n``n-eth'' character to the ``m-eth'' character, including the first but\nexcluding the last. This behavior is counterintuitive; it makes\nmore sense if you imagine the indices pointing {\\em between} the\ncharacters, as in the following diagram:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/banana.eps}}\n\\afterfig\n\nIf you omit the first index (before the colon), the slice starts at the\nbeginning of the string. If you omit the second index, the slice goes to the\nend of the string. Thus:\n\n\\beforeverb\n\\begin{verbatim}\n>>> fruit = \"banana\"\n>>> fruit[:3]\n'ban'\n>>> fruit[3:]\n'ana'\n\\end{verbatim}\n\\afterverb\n%\nWhat do you think {\\tt s[:]} means?\n\n\n\\section{String comparison}\n\\index{string comparison}\n\\index{comparison!string}\n\nThe comparison operators work on\nstrings. To see if two strings are equal:\n\n\\beforeverb\n\\begin{verbatim}\nif word == \"banana\":\n print \"Yes, we have no bananas!\"\n\\end{verbatim}\n\\afterverb\n%\n\\adjustpage{-2}\n\\pagebreak\n\nOther comparison operations are useful for putting words in alphabetical\norder:\n\n\\beforeverb\n\\begin{verbatim}\nif word < \"banana\":\n print \"Your word,\" + word + \", comes before banana.\"\nelif word > \"banana\":\n print \"Your word,\" + word + \", comes after banana.\"\nelse:\n print \"Yes, we have no bananas!\"\n\\end{verbatim}\n\\afterverb\n%\nYou should be aware, though, that Python does not handle upper-\nand lowercase letters the same way that people do. All the uppercase\nletters come before all the lowercase letters. As a result:\n\n\\beforeverb\n\\begin{verbatim}\nYour word, Zebra, comes before banana.\n\\end{verbatim}\n\\afterverb\n%\nA common way to address this problem is to convert strings to a standard\nformat, such as all lowercase, before performing the comparison. A more\ndifficult problem is making the program realize that zebras are not fruit.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8875d27e-0ca8-4ae5-82bf-284d04df8f36": {"__data__": {"id_": "8875d27e-0ca8-4ae5-82bf-284d04df8f36", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "e3602a25-424c-4f8a-9898-c34357bd7420", "node_type": null, "metadata": {}, "hash": "45efb16a6a470e7975752ab12fb92c62e1e978f426a22a113367ee70fe64c150"}, "3": {"node_id": "0f8f3308-6725-46c7-84bd-19d9d9f68ceb", "node_type": null, "metadata": {}, "hash": "bfb52c67219bbd387f8057784cb43dfde2c07d3b11dda9a1e596edf573d375fb"}}, "hash": "86ea4db9491e6908f37130994adc90bc0b61be3ac33910a2dd967767a690320a", "text": "\\section{Strings are immutable}\n\\index{mutable}\n\\index{immutable string}\n\\index{string!immutable}\n\nIt is tempting to use the {\\tt []} operator on the left side of an\nassignment, with the intention of changing a character in a string.\nFor example:\n\n\\beforeverb\n\\begin{verbatim}\ngreeting = \"Hello, world!\"\ngreeting[0] = 'J' # ERROR!\nprint greeting\n\\end{verbatim}\n\\afterverb\n%\nInstead of producing the output {\\tt Jello, world!}, this code\nproduces the runtime error {\\tt TypeError: object doesn't support item\nassignment}.\n\n\\index{runtime error}\n\nStrings are {\\bf immutable}, which means you can't change an\nexisting string. The best you can do is create a new string\nthat is a variation on the original:\n\n\\beforeverb\n\\begin{verbatim}\ngreeting = \"Hello, world!\"\nnewGreeting = 'J' + greeting[1:]\nprint newGreeting\n\\end{verbatim}\n\\afterverb\n%\nThe solution here is to concatenate a new first letter onto\na slice of {\\tt greeting}. This operation has no effect on\nthe original string.\n\n\\index{concatenation}\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\section{A {\\tt find} function}\n\\label{find}\n\\index{traversal}\n\\index{eureka traversal}\n\\index{pattern}\n\\index{computational pattern}\n\nWhat does the following function do?\n\n\\beforeverb\n\\begin{verbatim}\ndef find(str, ch):\n index = 0\n while index < len(str):\n if str[index] == ch:\n return index\n index = index + 1\n return -1\n\\end{verbatim}\n\\afterverb\n%\nIn a sense, {\\tt find} is the opposite of the {\\tt []} operator.\nInstead of taking an index and extracting the corresponding character,\nit takes a character and finds the index where that character\nappears. If the character is not found, the function returns {\\tt\n-1}.\n\nThis is the first example we have seen of a {\\tt return} statement\ninside a loop.\nIf {\\tt str[index] == ch}, the function returns\nimmediately, breaking out of the loop prematurely.\n\nIf the character doesn't appear in the string, then the program\nexits the loop normally and \nreturns {\\tt -1}.\n\nThis pattern of computation is sometimes called a ``eureka'' traversal\nbecause as soon as we find what we are looking for, we can cry\n``Eureka!'' and stop looking.\n\n\\begin{quote}\n{\\em As an exercise, modify the {\\tt find} function so that it has a\nthird parameter, the index in the string where it should start\nlooking.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0f8f3308-6725-46c7-84bd-19d9d9f68ceb": {"__data__": {"id_": "0f8f3308-6725-46c7-84bd-19d9d9f68ceb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "8875d27e-0ca8-4ae5-82bf-284d04df8f36", "node_type": null, "metadata": {}, "hash": "86ea4db9491e6908f37130994adc90bc0b61be3ac33910a2dd967767a690320a"}, "3": {"node_id": "eee0cc8b-2935-4cba-b198-f2213e577473", "node_type": null, "metadata": {}, "hash": "f7c431161d8e3cd8c3969c70ce8c4b32e77dc348980850ebd500017d70751227"}}, "hash": "bfb52c67219bbd387f8057784cb43dfde2c07d3b11dda9a1e596edf573d375fb", "text": "\\section{Looping and counting}\n\\label{counter}\n\\index{counter}\n\\index{pattern}\n\nThe following program counts the number of times the letter {\\tt a}\nappears in a string:\n\n\\beforeverb\n\\begin{verbatim}\nfruit = \"banana\"\ncount = 0\nfor char in fruit:\n if char == 'a':\n count = count + 1\nprint count\n\\end{verbatim}\n\\afterverb\n%\nThis program demonstrates another pattern of computation called a {\\bf\ncounter}. The variable {\\tt count} is initialized to 0 and then\nincremented each time an {\\tt a} is found. (To {\\bf increment} is to\nincrease by one; it is the opposite of {\\bf decrement}, and unrelated\nto ``excrement,'' which is a noun.) When the loop exits, {\\tt count}\ncontains the result---the total number of {\\tt a}'s.\n\n\\begin{quote}\n{\\em As an exercise, encapsulate this code in a function named {\\tt\ncountLetters}, and generalize it so that it accepts the string and the\nletter as arguments.}\n\\end{quote}\n\n\\begin{quote}\n{\\em As a second exercise, rewrite this function so that instead of\ntraversing the string, it uses the three-parameter version of {\\tt\nfind} from the previous.}\n\\end{quote}\n\n\n\\section{The {\\tt string} module}\n\\index{module}\n\\index{string module}\n\nThe {\\tt string} module contains useful functions that\nmanipulate strings. As usual, we have to import the module before\nwe can use it:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import string\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt string} module includes a function named {\\tt find} that does\nthe same thing as the function we wrote. To call it we have to\nspecify the name of the module and the name of the function using dot\nnotation.\n\n\\beforeverb\n\\begin{verbatim}\n>>> fruit = \"banana\"\n>>> index = string.find(fruit, \"a\")\n>>> print index\n1\n\\end{verbatim}\n\\afterverb\n%\nThis example demonstrates one of the benefits of modules---they help\navoid collisions between the names of built-in functions and\nuser-defined functions. By using dot notation we can specify which\nversion of {\\tt find} we want.\n\nActually, {\\tt string.find} is more general than our version. First,\nit can find substrings, not just characters:\n\n\\beforeverb\n\\begin{verbatim}\n>>> string.find(\"banana\", \"na\")\n2\n\\end{verbatim}\n\\afterverb\n%\nAlso, it takes an additional argument that specifies the index it\nshould start at:\n\n\\beforeverb\n\\begin{verbatim}\n>>> string.find(\"banana\", \"na\", 3)\n4\n\\end{verbatim}\n\\afterverb\n%\nOr it can take two additional arguments that specify a range\nof indices:\n\n\\beforeverb\n\\begin{verbatim}\n>>> string.find(\"bob\", \"b\", 1, 2)\n-1\n\\end{verbatim}\n\\afterverb\n%\nIn this example, the search fails because the letter {\\em b} does not\nappear in the index range from {\\tt 1} to {\\tt 2} (not including {\\tt\n2}).\n\n\n\\section{Character classification}\n\\label{in}\n\\index{character classification}\n\\index{classification!character}\n\\index{uppercase}\n\\index{lowercase}\n\\index{whitespace}\n\nIt is often helpful to examine a character and test whether it is\nupper- or lowercase, or whether it is a character or a digit. The\n{\\tt string} module provides several constants that are\nuseful for these purposes.\n\nThe string {\\tt string.lowercase} contains all of the letters that the\nsystem considers to be lowercase. Similarly, {\\tt string.uppercase}\ncontains all of the uppercase letters.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "eee0cc8b-2935-4cba-b198-f2213e577473": {"__data__": {"id_": "eee0cc8b-2935-4cba-b198-f2213e577473", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "node_type": null, "metadata": {}, "hash": "0c5f73f43fc1f829f412659fdc54f0ed0987d18025656a1468a60fd1fc328cc7"}, "2": {"node_id": "0f8f3308-6725-46c7-84bd-19d9d9f68ceb", "node_type": null, "metadata": {}, "hash": "bfb52c67219bbd387f8057784cb43dfde2c07d3b11dda9a1e596edf573d375fb"}}, "hash": "f7c431161d8e3cd8c3969c70ce8c4b32e77dc348980850ebd500017d70751227", "text": "Try the following and see what\nyou get:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print string.lowercase\n>>> print string.uppercase\n>>> print string.digits\n\\end{verbatim}\n\\afterverb\n%\nWe can use these constants and {\\tt find} to classify characters. For\nexample, if {\\tt find(lowercase, ch)} returns a value other than {\\tt\n-1}, then {\\tt ch} must be lowercase:\n\n\\beforeverb\n\\begin{verbatim}\ndef isLower(ch):\n return string.find(string.lowercase, ch) != -1\n\\end{verbatim}\n\\afterverb\n%\nAlternatively, we can take advantage of the {\\tt in} operator, which\ndetermines whether a character appears in a string:\n\n\\beforeverb\n\\begin{verbatim}\ndef isLower(ch):\n return ch in string.lowercase\n\\end{verbatim}\n\\afterverb\n%\nAs yet another alternative, we can use the comparison operator:\n\n\\beforeverb\n\\begin{verbatim}\ndef isLower(ch):\n return 'a' <= ch <= 'z'\n\\end{verbatim}\n\\afterverb\n%\nIf {\\tt ch} is between {\\em a} and {\\em z}, it must be a lowercase\nletter.\n\n\\begin{quote}\n{\\em As an exercise, discuss which version of {\\tt isLower} you think\nwill be fastest. Can you think of other reasons besides speed to\nprefer one or the other?}\n\\end{quote}\n\nAnother constant defined in the {\\tt string} module may\nsurprise you when you print it:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print string.whitespace\n\\end{verbatim}\n\\afterverb\n%\n{\\bf Whitespace} characters move the cursor without printing\nanything. They create the white space between visible\ncharacters (at least on white paper). The constant\n{\\tt string.whitespace} contains all the\nwhitespace characters, including\nspace, tab (\\verb+\\t+), and newline\n(\\verb+\\n+).\n\n\\index{string module}\n\\index{module!string}\n\nThere are other useful functions in the {\\tt string} module, but this\nbook isn't intended to be a reference manual. On the other hand, the\n{\\em Python Library Reference} is. Along with a wealth of other\ndocumentation, it's available from the Python website, {\\tt\nwww.python.org}.\n\n\\index{{\\em Python Library Reference}}\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[compound data type:] A data type in which the values are made\nup of components, or elements, that are themselves values.\n\n\\item[traverse:] To iterate through the elements of a set,\nperforming a similar operation on each.\n\n\\item[index:] A variable or value used to select a member of an\nordered set, such as a character from a string.\n\n\\item[slice:] A part of a string specified by a range of indices.\n\n\\item[mutable:] A compound data types whose elements can be assigned\nnew values.\n\n\\item[counter:] A variable used to count something, usually initialized\nto zero and then incremented.\n\n\\item[increment:] To increase the value of a variable by one.\n\n\\item[decrement:] To decrease the value of a variable by one.\n\n\\item[whitespace:] Any of the characters that move the cursor without\nprinting visible characters. The constant\n{\\tt string.whitespace}\ncontains all the white\\-space characters.\n\n\\index{compound data type}\n\\index{traverse}\n\\index{index}\n\\index{slice}\n\\index{mutable}\n\\index{counter}\n\\index{increment}\n\\index{decrement}\n\\index{whitespace}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c82bed89-8f47-4ba3-98c6-40149c08d156": {"__data__": {"id_": "c82bed89-8f47-4ba3-98c6-40149c08d156", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "3": {"node_id": "7fc185be-53f4-469d-8b85-7384546f2dae", "node_type": null, "metadata": {}, "hash": "4cd6de72fb0ca14346c1a9f8b2cc6480e907d94927d42989cc07de5783930cd7"}}, "hash": "7b80c006cacb8d13182073b618e9440bad1e116aa98c9a87c8ff853dca213a9a", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Lists}\n\\index{list}\n\\index{type!list}\n\\index{element}\n\\index{sequence}\n\nA {\\bf list} is an ordered set of values, where each value is\nidentified by an index. The values that make up a list are\ncalled its {\\bf elements}. Lists are similar to strings, which are\nordered sets of characters, except that the elements of a list can\nhave any type. Lists and strings---and other things that behave like\nordered sets---are called {\\bf sequences}.\n\n\n\\section{List values}\n\nThere are several ways to create a new list; the simplest is to\nenclose the elements in square brackets (\\verb+[+ and \\verb+]+):\n\n\\beforeverb\n\\begin{verbatim}\n[10, 20, 30, 40]\n[\"spam\", \"bungee\", \"swallow\"]\n\\end{verbatim}\n\\afterverb\n%\nThe first example is a list of four integers. The second is a list of\nthree strings. The elements of a list don't have to be the same type.\nThe following list contains a string, a float, an integer, and\n(mirabile dictu) another list:\n\n\\beforeverb\n\\begin{verbatim}\n[\"hello\", 2.0, 5, [10, 20]]\n\\end{verbatim}\n\\afterverb\n%\nA list within another list is said to be {\\bf nested}.\n\n\\index{list!nested}\n\nLists that contain consecutive integers are common, so Python provides a\nsimple way to create them:\n\n\\beforeverb\n\\begin{verbatim}\n>>> range(1,5)\n[1, 2, 3, 4]\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt range} function takes two arguments and returns a list that\ncontains all the integers from the first to the second, including the\nfirst but not including the second!\n\nThere are two other forms of {\\tt range}. With a single argument, it\ncreates a list that starts at 0:\n\n\\beforeverb\n\\begin{verbatim}\n>>> range(10)\n[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\n\\end{verbatim}\n\\afterverb\n%\nIf there is a third argument, it specifies the space between\nsuccessive values, which is called the {\\bf step size}. This example\ncounts from 1 to 10 by steps of 2:\n\n\\beforeverb\n\\begin{verbatim}\n>>> range(1, 10, 2)\n[1, 3, 5, 7, 9]\n\\end{verbatim}\n\\afterverb\n%\nFinally, there is a special list that contains no elements. It is\ncalled the empty list, and it is denoted {\\tt []}.\n\nWith all these ways to create lists, it would be disappointing if we\ncouldn't assign list values to variables or pass lists as arguments\nto functions. We can.\n\n\\beforeverb\n\\begin{verbatim}\nvocabulary = [\"ameliorate\", \"castigate\", \"defenestrate\"]\nnumbers = [17, 123]\nempty = []\nprint vocabulary, numbers, empty\n['ameliorate', 'castigate', 'defenestrate'] [17, 123] []\n\\end{verbatim}\n\\afterverb\n%", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7fc185be-53f4-469d-8b85-7384546f2dae": {"__data__": {"id_": "7fc185be-53f4-469d-8b85-7384546f2dae", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "c82bed89-8f47-4ba3-98c6-40149c08d156", "node_type": null, "metadata": {}, "hash": "7b80c006cacb8d13182073b618e9440bad1e116aa98c9a87c8ff853dca213a9a"}, "3": {"node_id": "f395dbda-eaef-4363-890a-e136eb12c483", "node_type": null, "metadata": {}, "hash": "7e33ab922458ecd5da7d328afa5afedb030ae07d89ea7c3a670c06a3ab5e278f"}}, "hash": "4cd6de72fb0ca14346c1a9f8b2cc6480e907d94927d42989cc07de5783930cd7", "text": "\\section{Accessing elements}\n\\index{list!element}\n\\index{access}\n\nThe syntax for accessing the elements of a list is the same as the\nsyntax for accessing the characters of a string---the bracket\noperator ({\\tt []}). The expression inside the brackets\nspecifies the index. Remember that the indices start at 0:\n\n\\beforeverb\n\\begin{verbatim}\nprint numbers[0]\nnumbers[1] = 5\n\\end{verbatim}\n\\afterverb\n%\nThe bracket operator can appear anywhere in an expression. When it\nappears on the left side of an assignment, it changes one of the\nelements in the list, so the one-eth element of {\\tt numbers}, which\nused to be 123, is now 5.\n\nAny integer expression can be used as an index:\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers[3-2]\n5\n>>> numbers[1.0]\nTypeError: sequence index must be integer\n\\end{verbatim}\n\\afterverb\n%\nIf you try to read or write an element that does not exist, you\nget a runtime error:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers[2] = 5\nIndexError: list assignment index out of range\n\\end{verbatim}\n\\afterverb\n%\nIf an index has a negative value, it counts backward from the\nend of the list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers[-1]\n5\n>>> numbers[-2]\n17\n>>> numbers[-3]\nIndexError: list index out of range\n\\end{verbatim}\n\\afterverb\n%\n{\\tt numbers[-1]} is the last element of the list, {\\tt numbers[-2]}\nis the second to last, and {\\tt numbers[-3]} doesn't exist.\n\nIt is common to use a loop variable as a list index.\n\n\\beforeverb\n\\begin{verbatim}\nhorsemen = [\"war\", \"famine\", \"pestilence\", \"death\"]\n\ni = 0\nwhile i < 4:\n print horsemen[i]\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nThis {\\tt while} loop counts from 0 to 4. When the loop variable\n{\\tt i} is 4, the condition fails and the loop terminates. So the\nbody of the loop is only executed when {\\tt i} is 0, 1, 2, and 3.\n\nEach time through the loop, the variable {\\tt i} is used as an index\ninto the list, printing the {\\tt i}-eth element. This pattern of\ncomputation is called a {\\bf list traversal}.\n\n\\index{list!traversal}\n\\index{traversal!list}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f395dbda-eaef-4363-890a-e136eb12c483": {"__data__": {"id_": "f395dbda-eaef-4363-890a-e136eb12c483", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "7fc185be-53f4-469d-8b85-7384546f2dae", "node_type": null, "metadata": {}, "hash": "4cd6de72fb0ca14346c1a9f8b2cc6480e907d94927d42989cc07de5783930cd7"}, "3": {"node_id": "edae333f-d2c1-4fc5-b558-50faf36e419a", "node_type": null, "metadata": {}, "hash": "5839bf742ede3dc1a28ba0a65d602886266d9398291d62e5d0e4d531b121b87a"}}, "hash": "7e33ab922458ecd5da7d328afa5afedb030ae07d89ea7c3a670c06a3ab5e278f", "text": "\\section{List length}\n\\index{length}\n\\index{list!length}\n\nThe function {\\tt len} returns the length of a list. It is a good\nidea to use this value as the upper bound of a loop instead of a\nconstant. That way, if the size of the list changes, you won't have\nto go through the program changing all the loops; they will work\ncorrectly for any size list:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\nhorsemen = [\"war\", \"famine\", \"pestilence\", \"death\"]\n\ni = 0\nwhile i < len(horsemen):\n print horsemen[i]\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nThe last time the body of the loop is executed, {\\tt i} is {\\tt\nlen(horsemen) - 1}, which is the index of the last element. When {\\tt\ni} is equal to {\\tt len(horsemen)}, the condition fails and the body\nis not executed, which is a good thing, because {\\tt len(horsemen)} is\nnot a legal index.\n\nAlthough a list can contain another list, the nested\nlist still counts as a single element. The length of this list is\nfour:\n\n\\beforeverb\n\\begin{verbatim}\n['spam!', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, write a loop that traverses the previous\nlist and prints the length of each element. What happens if\nyou send an integer to {\\tt len}?}\n\\end{quote}\n\n\n\\section{List membership}\n\\index{list!membership}\n\\index{in operator}\n\\index{operator!in}\n\n{\\tt in} is a boolean operator that tests membership in a sequence.\nWe used it in Section~\\ref{in} with strings, but it also works with\nlists and other sequences:\n\n\\beforeverb\n\\begin{verbatim}\n>>> horsemen = ['war', 'famine', 'pestilence', 'death']\n>>> 'pestilence' in horsemen\nTrue\n>>> 'debauchery' in horsemen\nFalse\n\\end{verbatim}\n\\afterverb\n\nSince ``pestilence'' is a member of the {\\tt horsemen} list, the {\\tt in}\noperator returns true. Since ``debauchery'' is not in the list, {\\tt\nin} returns false.\n\nWe can use the {\\tt not} in combination\nwith {\\tt in} to test whether an element is not a member of a list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> 'debauchery' not in horsemen\nTrue\n\\end{verbatim}\n\\afterverb", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "edae333f-d2c1-4fc5-b558-50faf36e419a": {"__data__": {"id_": "edae333f-d2c1-4fc5-b558-50faf36e419a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "f395dbda-eaef-4363-890a-e136eb12c483", "node_type": null, "metadata": {}, "hash": "7e33ab922458ecd5da7d328afa5afedb030ae07d89ea7c3a670c06a3ab5e278f"}, "3": {"node_id": "359df20b-7775-474e-b3a4-bfbbc0e8a56c", "node_type": null, "metadata": {}, "hash": "d1761e9915c9a111e140e9f096bf7a562e02ff7cc65d2c55aec846c665d2e536"}}, "hash": "5839bf742ede3dc1a28ba0a65d602886266d9398291d62e5d0e4d531b121b87a", "text": "\\section{Lists and {\\tt for} loops}\n\\index{for loop}\n\\index{list!for loop}\n\\index{traversal}\n\nThe {\\tt for} loop we saw in Section~\\ref{for} also works with\nlists.\nThe generalized syntax of a {\\tt for} loop is:\n\n\\beforeverb\n\\begin{verbatim}\nfor VARIABLE in LIST:\n BODY\n\\end{verbatim}\n\\afterverb\n%\nThis statement is equivalent to:\n\n\\beforeverb\n\\begin{verbatim}\ni = 0\nwhile i < len(LIST):\n VARIABLE = LIST[i]\n BODY\n i = i + 1\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt for} loop is more concise because we can \neliminate the loop variable, {\\tt i}.\nHere is the previous loop written with a {\\tt for} loop.\n\n\\beforeverb\n\\begin{verbatim}\nfor horseman in horsemen:\n print horseman\n\\end{verbatim}\n\\afterverb\n%\nIt almost reads like English: ``For (every) horseman\nin (the list of) horsemen, print (the name of the) horseman.''\n\nAny list expression can be used in a {\\tt for} loop:\n\n\\beforeverb\n\\begin{verbatim}\nfor number in range(20):\n if number % 2 == 0:\n print number\n\nfor fruit in [\"banana\", \"apple\", \"quince\"]:\n print \"I like to eat \" + fruit + \"s!\"\n\\end{verbatim}\n\\afterverb\n%\nThe first\nexample prints all the even numbers between zero and nineteen.\nThe second example expresses enthusiasm for various fruits.\n\n\n\n\\section{List operations}\n\\index{list operation}\n\\index{operation!list}\n\nThe {\\tt +} operator concatenates lists:\n\n\\index{concatenation!list}\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = [1, 2, 3]\n>>> b = [4, 5, 6]\n>>> c = a + b\n>>> print c\n[1, 2, 3, 4, 5, 6]\n\\end{verbatim}\n\\afterverb\n%\nSimilarly, the {\\tt *} operator repeats a list a given number of times:\n\n\\index{repetition!list}\n\n\\beforeverb\n\\begin{verbatim}\n>>> [0] * 4\n[0, 0, 0, 0]\n>>> [1, 2, 3] * 3\n[1, 2, 3, 1, 2, 3, 1, 2, 3]\n\\end{verbatim}\n\\afterverb\n%\nThe first example repeats {\\tt [0]} four times. The second example\nrepeats the list {\\tt [1, 2, 3]} three times.\n\n\n\\section{List slices}\n\\index{slice}\n\\index{list!slice}\n\nThe slice operations we saw in Section~\\ref{slice}\nalso work on lists:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> list[1:3]\n['b', 'c']\n>>> list[:4]\n['a', 'b', 'c', 'd']\n>>> list[3:]\n['d', 'e', 'f']\n\\end{verbatim}\n\\afterverb\n%\nIf you omit the first index, the slice starts at the beginning.\nIf you omit the second, the slice goes to the end. So if you\nomit both, the slice is really a copy of the whole list.\n\n\\beforeverb\n\\begin{verbatim}\n>>> list[:]\n['a', 'b', 'c', 'd', 'e', 'f']\n\\end{verbatim}\n\\afterverb\n%", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "359df20b-7775-474e-b3a4-bfbbc0e8a56c": {"__data__": {"id_": "359df20b-7775-474e-b3a4-bfbbc0e8a56c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "edae333f-d2c1-4fc5-b558-50faf36e419a", "node_type": null, "metadata": {}, "hash": "5839bf742ede3dc1a28ba0a65d602886266d9398291d62e5d0e4d531b121b87a"}, "3": {"node_id": "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e", "node_type": null, "metadata": {}, "hash": "022f4fd091c6ca4b9954bb35645e04c2055850653debe4fec86ccf62a7fec0a3"}}, "hash": "d1761e9915c9a111e140e9f096bf7a562e02ff7cc65d2c55aec846c665d2e536", "text": "\\section{Lists are mutable}\n\\index{mutable!list}\n\\index{list!mutable}\n\nUnlike strings, lists are mutable, which means we can change\ntheir elements. Using the bracket operator on the left side\nof an assignment, we can update one of the elements:\n\n\\beforeverb\n\\begin{verbatim}\n>>> fruit = [\"banana\", \"apple\", \"quince\"]\n>>> fruit[0] = \"pear\"\n>>> fruit[-1] = \"orange\"\n>>> print fruit\n['pear', 'apple', 'orange']\n\\end{verbatim}\n\\afterverb\n%\nWith the slice operator we can update several elements at once:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> list[1:3] = ['x', 'y']\n>>> print list\n['a', 'x', 'y', 'd', 'e', 'f']\n\\end{verbatim}\n\\afterverb\n%\nWe can also remove elements from a list by assigning the empty list to\nthem:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> list[1:3] = []\n>>> print list\n['a', 'd', 'e', 'f']\n\\end{verbatim}\n\\afterverb\n%\nAnd we can add elements to a list by squeezing them into an empty\nslice at the desired location:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['a', 'd', 'f']\n>>> list[1:1] = ['b', 'c']\n>>> print list\n['a', 'b', 'c', 'd', 'f']\n>>> list[4:4] = ['e']\n>>> print list\n['a', 'b', 'c', 'd', 'e', 'f']\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{List deletion}\n\\index{deletion!list}\n\\index{list deletion}\n\nUsing slices to delete list elements can be\nawkward, and therefore error-prone. Python provides an alternative\nthat is more readable.\n\n{\\tt del} removes an element from a list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = ['one', 'two', 'three']\n>>> del a[1]\n>>> a\n['one', 'three']\n\\end{verbatim}\n\\afterverb\n%\nAs you might expect, {\\tt del} handles negative indices\nand causes a runtime error if the index is\nout of range.\n\nYou can use a slice as an index for {\\tt del}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['a', 'b', 'c', 'd', 'e', 'f']\n>>> del list[1:5]\n>>> print list\n['a', 'f']\n\\end{verbatim}\n\\afterverb\n%\nAs usual, slices select all the elements up to, but not\nincluding, the second index.\n\n% Had to remove this because append is a method, not a function.\n% The {\\tt append} function adds an element (or a list) to\n% the end of an existing list.\n\n% \\beforeverb\n% \\begin{verbatim}\n% >>> a = ['one', 'two']\n% >>> append (a, 'three')\n% >>> print a\n% ['one', 'two', 'three']\n% \\end{verbatim}\n% \\afterverb", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e": {"__data__": {"id_": "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "359df20b-7775-474e-b3a4-bfbbc0e8a56c", "node_type": null, "metadata": {}, "hash": "d1761e9915c9a111e140e9f096bf7a562e02ff7cc65d2c55aec846c665d2e536"}, "3": {"node_id": "f8a816c2-2836-40c3-b2e7-5e2ea5584eab", "node_type": null, "metadata": {}, "hash": "6523a7be6879e96e94c153c7ad9d95ed19b3df1bc33c36966695347313b8b39d"}}, "hash": "022f4fd091c6ca4b9954bb35645e04c2055850653debe4fec86ccf62a7fec0a3", "text": "\\adjustpage{-2}\n\\pagebreak\n\n\\section{Objects and values}\n\\index{object}\n\\index{value}\n\nIf we execute these assignment statements,\n\n\\beforeverb\n\\begin{verbatim}\na = \"banana\"\nb = \"banana\"\n\\end{verbatim}\n\\afterverb\n%\nwe know that {\\tt a} and {\\tt b} will refer to a\nstring with the letters {\\tt \"banana\"}. But we can't\ntell whether they point to the {\\em same} string.\n\nThere are two possible states:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/list1.eps}}\n\\afterfig\n\nIn one case, {\\tt a} and {\\tt b} refer to two different things that\nhave the same value. In the second case, they refer to the same\nthing. These ``things'' have names---they are called {\\bf objects}.\nAn object is something a variable can refer to.\n\nEvery object has a unique {\\bf identifier}, which we can obtain with\nthe {\\tt id} function. By printing the identifier of {\\tt a}\nand {\\tt b}, we can tell whether they refer to the same object.\n\n\\beforeverb\n\\begin{verbatim}\n>>> id(a)\n135044008\n>>> id(b)\n135044008\n\\end{verbatim}\n\\afterverb\n%\nIn fact, we get the same identifier twice, which means that\nPython only created one string,\nand both {\\tt a} and {\\tt b} refer to it.\n\nInterestingly, lists behave differently.\nWhen we create two lists, we get two objects:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = [1, 2, 3]\n>>> b = [1, 2, 3]\n>>> id(a)\n135045528\n>>> id(b)\n135041704\n\\end{verbatim}\n\\afterverb\n%\n\\adjustpage{1}\n\nSo the state diagram looks like this:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/list2.eps}}\n\\afterfig\n\n{\\tt a} and {\\tt b} have the same value but do not\nrefer to the same object.\n\n\n\\section{Aliasing}\n\\index{aliasing}\n\\index{reference!aliasing}\n\nSince variables refer to objects, if we assign one\nvariable to another, both variables refer to the same object:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = [1, 2, 3]\n>>> b = a\n\\end{verbatim}\n\\afterverb\n%\nIn this case, the state diagram looks like this:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/list3.eps}}\n\\afterfig\n\nBecause the same list has two different names, {\\tt a} and {\\tt b}, we\nsay that it is {\\bf aliased}. Changes made with one alias affect\nthe other:\n\n\\beforeverb\n\\begin{verbatim}\n>>> b[0] = 5\n>>> print a\n[5, 2, 3]\n\\end{verbatim}\n\\afterverb\n%\nAlthough this behavior can be useful, it is sometimes unexpected or\nundesirable. In general, it is safer to avoid aliasing when you\nare working with mutable objects. Of course, for immutable\nobjects, there's no problem. That's why Python is free to\nalias strings when it sees an opportunity to economize.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f8a816c2-2836-40c3-b2e7-5e2ea5584eab": {"__data__": {"id_": "f8a816c2-2836-40c3-b2e7-5e2ea5584eab", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e", "node_type": null, "metadata": {}, "hash": "022f4fd091c6ca4b9954bb35645e04c2055850653debe4fec86ccf62a7fec0a3"}, "3": {"node_id": "faba4ae7-0c67-498f-a704-eabd35773868", "node_type": null, "metadata": {}, "hash": "bb5b82e3d02fadef2a20dbbb63ab1ba8646f53735c084188740097225d50b54c"}}, "hash": "6523a7be6879e96e94c153c7ad9d95ed19b3df1bc33c36966695347313b8b39d", "text": "\\section{Cloning lists}\n\\index{list!cloning}\n\\index{cloning}\n\nIf we want to modify a list and also keep a copy of the original, we\nneed to be able to make a copy of the list itself, not just the\nreference. This process is sometimes called {\\bf cloning}, to avoid the\nambiguity of the word ``copy.''\n\nThe easiest way to clone a list is to use the slice operator:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = [1, 2, 3]\n>>> b = a[:]\n>>> print b\n[1, 2, 3]\n\\end{verbatim}\n\\afterverb\n%\nTaking any slice of {\\tt a} creates a new list. \nIn this case the slice happens to consist of the whole list.\n\nNow we are free to make changes to {\\tt b} without worrying about {\\tt a}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> b[0] = 5\n>>> print a\n[1, 2, 3]\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, draw a state diagram for {\\tt a} and {\\tt b}\nbefore and after this change.}\n\\end{quote}\n\n\n\n\\section{List parameters}\n\\index{list!as parameter}\n\\index{parameter}\n\\index{parameter!list}\n\nPassing a list as an argument actually passes a reference to the\nlist, not a copy of the list.\nFor example, the function {\\tt head} takes a list as an argument\nand returns the first element:\n\n\\beforeverb\n\\begin{verbatim}\ndef head(list):\n return list[0]\n\\end{verbatim}\n\\afterverb\n%\nHere's how it is used:\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers = [1, 2, 3]\n>>> head(numbers)\n1\n\\end{verbatim}\n\\afterverb\n%\nThe parameter {\\tt list} and the variable {\\tt numbers} are\naliases for the same object. The state diagram looks like\nthis:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/stack5.eps}}\n\\afterfig\n\nSince the list object is shared by two frames, we drew\nit between them.\n\nIf a function modifies a list parameter, the caller sees the change.\nFor example, {\\tt deleteHead} removes the first element from a list:\n\n\\beforeverb\n\\begin{verbatim}\ndef deleteHead(list):\n del list[0]\n\\end{verbatim}\n\\afterverb\n%\nHere's how {\\tt deleteHead} is used:\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers = [1, 2, 3]\n>>> deleteHead(numbers)\n>>> print numbers\n[2, 3]\n\\end{verbatim}\n\\afterverb\n%\nIf a function returns a list, it returns a reference to the list. For\nexample, {\\tt tail} returns a list that contains all but the first\nelement of the given list:\n\n\\beforeverb\n\\begin{verbatim}\ndef tail(list):\n return list[1:]\n\\end{verbatim}\n\\afterverb\n%\nHere's how {\\tt tail} is used:\n\n\\beforeverb\n\\begin{verbatim}\n>>> numbers = [1, 2, 3]\n>>> rest = tail(numbers)\n>>> print rest\n[2, 3]\n\\end{verbatim}\n\\afterverb\n%\nBecause the return value was created with the slice operator, it\nis a new list. Creating {\\tt rest}, and any subsequent changes\nto {\\tt rest}, have no effect on {\\tt numbers}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "faba4ae7-0c67-498f-a704-eabd35773868": {"__data__": {"id_": "faba4ae7-0c67-498f-a704-eabd35773868", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "f8a816c2-2836-40c3-b2e7-5e2ea5584eab", "node_type": null, "metadata": {}, "hash": "6523a7be6879e96e94c153c7ad9d95ed19b3df1bc33c36966695347313b8b39d"}, "3": {"node_id": "00b14091-118e-4451-ad88-dd7db709b135", "node_type": null, "metadata": {}, "hash": "63ea626e5a80338b543b599ac89b67aafc2e3bd4de82f2091a370b3e98ed1f84"}}, "hash": "bb5b82e3d02fadef2a20dbbb63ab1ba8646f53735c084188740097225d50b54c", "text": "\\section{Nested lists}\n\\label{nested lists}\n\\index{nested list}\n\\index{list!nested}\n\nA nested list is a list that appears as an element in another\nlist. In this list, the three-eth element is a nested list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = [\"hello\", 2.0, 5, [10, 20]]\n\\end{verbatim}\n\\afterverb\n%\nIf we print {\\tt list[3]}, we get {\\tt [10, 20]}. To extract an\nelement from the nested list, we can proceed in two steps:\n\n\\beforeverb\n\\begin{verbatim}\n>>> elt = list[3]\n>>> elt[0]\n10\n\\end{verbatim}\n\\afterverb\n%\nOr we can combine them:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list[3][1]\n20\n\\end{verbatim}\n\\afterverb\n%\nBracket operators evaluate from left to right, so this expression\ngets the three-eth element of {\\tt list} and extracts the one-eth\nelement from it.\n\n\\section{Matrices}\n\\index{matrix}\n\\index{list!nested}\n\nNested lists are often used to represent matrices. For example,\nthe matrix:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/matrix.eps}}\n\\afterfig\n\nmight be represented as:\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]\n\\end{verbatim}\n\\afterverb\n%\n{\\tt matrix} is a list with three elements, where each\nelement is a row of the matrix. We can select an entire row from the\nmatrix in the usual way:\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix[1]\n[4, 5, 6]\n\\end{verbatim}\n\\afterverb\n%\nOr we can extract a single element from the matrix using the\ndouble-index form:\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix[1][1]\n5\n\\end{verbatim}\n\\afterverb\n%\nThe first index selects the row, and the second index selects the\ncolumn. Although this way of representing matrices is common, it is\nnot the only possibility. A small variation is to use a list of\ncolumns instead of a list of rows. Later we will see a more\nradical alternative using a dictionary.\n\n\\index{dictionary}\n\\index{row}\n\\index{column}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "00b14091-118e-4451-ad88-dd7db709b135": {"__data__": {"id_": "00b14091-118e-4451-ad88-dd7db709b135", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "node_type": null, "metadata": {}, "hash": "b5905689fabc253bee90b71ee08cddd044f0b13c1802fb7325049fb948b116c0"}, "2": {"node_id": "faba4ae7-0c67-498f-a704-eabd35773868", "node_type": null, "metadata": {}, "hash": "bb5b82e3d02fadef2a20dbbb63ab1ba8646f53735c084188740097225d50b54c"}}, "hash": "63ea626e5a80338b543b599ac89b67aafc2e3bd4de82f2091a370b3e98ed1f84", "text": "\\section{Strings and lists}\n\\index{split function}\n\\index{join function}\n\nTwo of the most useful functions in the {\\tt string} module involve\nlists of strings. The {\\tt split} function breaks a string into a\nlist of words. By default, any number of whitespace characters is\nconsidered a word boundary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import string\n>>> song = \"The rain in Spain...\"\n>>> string.split(song)\n['The', 'rain', 'in', 'Spain...']\n\\end{verbatim}\n\\afterverb\n%\nAn optional argument called a {\\bf delimiter} can be used to specify which\ncharacters to use as word boundaries.\nThe following example\nuses the string {\\tt ai} as the delimiter:\n\n\\beforeverb\n\\begin{verbatim}\n>>> string.split(song, 'ai')\n['The r', 'n in Sp', 'n...']\n\\end{verbatim}\n\\afterverb\n%\nNotice that the delimiter doesn't appear in the list.\n\nThe {\\tt join} function is the inverse of {\\tt split}. It\ntakes a list of strings and\nconcatenates the elements with a space between each pair:\n\n\\beforeverb\n\\begin{verbatim}\n>>> list = ['The', 'rain', 'in', 'Spain...']\n>>> string.join(list)\n'The rain in Spain...'\n\\end{verbatim}\n\\afterverb\n%\nLike {\\tt split}, {\\tt join} takes an optional delimiter\nthat is inserted between elements:\n\n\\beforeverb\n\\begin{verbatim}\n>>> string.join(list, '_')\n'The_rain_in_Spain...'\n\\end{verbatim}\n\\afterverb\n\n\\begin{quote}\n\\begin{quote}\n{\\em As an exercise, describe the relationship between {\\tt\nstring.join(string.split(song))} and {\\tt song}. Are they the same\nfor all strings? When would they be different?}\n\\end{quote}\n\\end{quote}\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[list:] A named collection of objects, where each object is\nidentified by an index.\n\n\\item[index:] An integer variable or value that indicates an element of a\nlist.\n\n\\item[element:] One of the values in a list (or other sequence). The\nbracket operator selects elements of a list.\n\n\\item[sequence:] Any of the data types that consist of an ordered set of\nelements, with each element identified by an index.\n\n\\item[nested list:] A list that is an element of another list.\n\n\\item[list traversal:] The sequential accessing of each element in a list.\n\n\\item[object:] A thing to which a variable can refer.\n\n\\item[aliases:] Multiple variables that contain references to the same object.\n\n\\item[clone:] To create a new object that has the same value as an\nexisting object. Copying a reference to an object creates an alias\nbut doesn't clone the object.\n\n\\item[delimiter:] A character or string used to indicate where a\nstring should be split.\n\n\\index{list}\n\\index{index}\n\\index{sequence}\n\\index{element}\n\\index{nested list}\n\\index{list traversal}\n\\index{object}\n\\index{aliasing}\n\\index{clone}\n\\index{delimiter}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b": {"__data__": {"id_": "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "3": {"node_id": "31aa5116-27d2-4e25-9ea7-e39a90baf975", "node_type": null, "metadata": {}, "hash": "ea6989e45e373ef22ea75b6c97c976cc3aff927456dc089c0d3e3f1833d67228"}}, "hash": "c39643e53282c6a2902f89c717f8ffcd27ad3fa95addb68d9a12e5ed6a1e5b19", "text": "% LaTeX source for textbook ``How to think like a computer scientist'\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\n\n\\chapter{Tuples}\n\\label{tuplechap}\n\\index{tuple}\n\n\\section{Mutability and tuples}\n\\index{tuple}\n\\index{data type!tuple}\n\\index{type!tuple}\n\\index{data type!immutable}\n\nSo far, you have seen two compound types: strings, which are made up\nof characters; and lists, which are made up of elements of any type.\nOne of the differences we noted is that the elements of a list can be\nmodified, but the characters in a string cannot. In other words, strings\nare {\\bf immutable} and lists are {\\bf mutable}.\n\n\\index{mutable}\n\\index{immutable}\n\nThere is another type in Python called a {\\bf tuple} that is similar\nto a list except that it is immutable. Syntactically, a tuple is a\ncomma-separated list of values:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tuple = 'a', 'b', 'c', 'd', 'e'\n\\end{verbatim}\n\\afterverb\n%\nAlthough it is not necessary, it is conventional to enclose tuples in\nparentheses:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tuple = ('a', 'b', 'c', 'd', 'e')\n\\end{verbatim}\n\\afterverb\n%\nTo create a tuple with a single element, we have to include the final\ncomma:\n\n\\beforeverb\n\\begin{verbatim}\n>>> t1 = ('a',)\n>>> type(t1)\n\n\\end{verbatim}\n\\afterverb\n%\nWithout the comma, Python treats {\\tt ('a')} as a string in\nparentheses:\n\n\\beforeverb\n\\begin{verbatim}\n>>> t2 = ('a')\n>>> type(t2)\n\n\\end{verbatim}\n\\afterverb\n%\nSyntax issues aside, the operations on tuples are the same as the\noperations on lists. The index operator selects an element from\na tuple.\n\n\\beforeverb\n\\begin{verbatim}\n>>> tuple = ('a', 'b', 'c', 'd', 'e')\n>>> tuple[0]\n'a'\n\\end{verbatim}\n\\afterverb\n%\nAnd the slice operator selects a range of elements.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "31aa5116-27d2-4e25-9ea7-e39a90baf975": {"__data__": {"id_": "31aa5116-27d2-4e25-9ea7-e39a90baf975", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "2": {"node_id": "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b", "node_type": null, "metadata": {}, "hash": "c39643e53282c6a2902f89c717f8ffcd27ad3fa95addb68d9a12e5ed6a1e5b19"}, "3": {"node_id": "bfda4cdd-355f-44cd-a333-592fb7cbade4", "node_type": null, "metadata": {}, "hash": "c3ced4734c6b97d8f3ff2bd52171d803850326402dc41a65902f00fcf2b1f84e"}}, "hash": "ea6989e45e373ef22ea75b6c97c976cc3aff927456dc089c0d3e3f1833d67228", "text": "\\beforeverb\n\\begin{verbatim}\n>>> tuple[1:3]\n('b', 'c')\n\\end{verbatim}\n\\afterverb\n%\nBut if we try to modify one of the elements of the tuple, we get\nan error:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\n>>> tuple[0] = 'A'\nTypeError: object doesn't support item assignment\n\\end{verbatim}\n\\afterverb\n%\nOf course, even if we can't modify the elements of a tuple, we can\nreplace it with a different tuple:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tuple = ('A',) + tuple[1:]\n>>> tuple\n('A', 'b', 'c', 'd', 'e')\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{Tuple assignment}\n\\label{tuple assignment}\n\\index{tuple assignment}\n\\index{assignment!tuple}\n\nOnce in a while, it is useful to swap the values of two variables.\nWith conventional assignment statements, we have to use a temporary\nvariable. For example, to swap {\\tt a} and {\\tt b}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> temp = a\n>>> a = b\n>>> b = temp\n\\end{verbatim}\n\\afterverb\n%\nIf we have to do this often, this approach becomes cumbersome. Python\nprovides a form of {\\bf tuple assignment} that solves this problem neatly:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a, b = b, a\n\\end{verbatim}\n\\afterverb\n%\nThe left side is a tuple of variables; the right side is a tuple of\nvalues. Each value is assigned to its respective variable. \nAll the expressions on the right side are evaluated before any\nof the assignments.\nThis feature makes tuple\nassignment quite versatile.\n\nNaturally, the number of variables on the left and the number of\nvalues on the right have to be the same:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a, b, c, d = 1, 2, 3\nValueError: unpack tuple of wrong size\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{Tuples as return values}\n\\index{tuple}\n\\index{value!tuple}\n\\index{return value!tuple}\n\\index{function!tuple as return value}\n\nFunctions can return tuples as return values. For example, we could\nwrite a function that swaps two parameters:\n\n\\beforeverb\n\\begin{verbatim}\ndef swap(x, y):\n return y, x\n\\end{verbatim}\n\\afterverb\n%\nThen we can assign the return value to a\ntuple with two variables:\n\n\\beforeverb\n\\begin{verbatim}\na, b = swap(a, b)\n\\end{verbatim}\n\\afterverb\n%\nIn this case, there is no great advantage in making {\\tt swap} a\nfunction. In fact, there is a danger in trying to encapsulate {\\tt\nswap}, which is the following tempting mistake:\n\n\\beforeverb\n\\begin{verbatim}\ndef swap(x, y): # incorrect version\n x, y = y, x\n\\end{verbatim}\n\\afterverb\n%\nIf we call this function like this:\n\n\\beforeverb\n\\begin{verbatim}\nswap(a, b)\n\\end{verbatim}\n\\afterverb\n%\nthen {\\tt a} and {\\tt x} are aliases for the same value. Changing {\\tt x}\ninside {\\tt swap} makes {\\tt x} refer to a different value, but it has no\neffect on {\\tt a} in {\\tt \\_\\_main\\_\\_}. Similarly, changing {\\tt y} has no\neffect on {\\tt b}.\n\nThis function runs without producing an error message, but it\ndoesn't do what we intended. This is an example of a semantic\nerror.\n\n\\index{semantic error}\n\n\\begin{quote}\n{\\em As an exercise, draw a state diagram for this function so that\nyou can see why it doesn't work.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bfda4cdd-355f-44cd-a333-592fb7cbade4": {"__data__": {"id_": "bfda4cdd-355f-44cd-a333-592fb7cbade4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "2": {"node_id": "31aa5116-27d2-4e25-9ea7-e39a90baf975", "node_type": null, "metadata": {}, "hash": "ea6989e45e373ef22ea75b6c97c976cc3aff927456dc089c0d3e3f1833d67228"}, "3": {"node_id": "7517e8c9-e829-47be-a792-3bb7aedb40a7", "node_type": null, "metadata": {}, "hash": "4a99eea3c36191d40ec408c6796f60e5bb4cac4b086b7f0f25d2fa092224e2c1"}}, "hash": "c3ced4734c6b97d8f3ff2bd52171d803850326402dc41a65902f00fcf2b1f84e", "text": "\\end{quote}\n\n\n\\section{Random numbers}\n\\index{random number}\n\\index{number!random}\n\nMost computer programs do the same thing every time they execute,\nso they are said to be {\\bf deterministic}. Determinism is usually a\ngood thing, since we expect the same calculation to yield the same\nresult. For some applications, though, we want the computer to\nbe unpredictable. Games are an obvious example, but there are\nmore.\n\nMaking a program truly nondeterministic turns out to be not so easy,\nbut there are ways to make it at least seem nondeterministic. One of\nthem is to generate random numbers and use them to determine the\noutcome of the program. Python provides a built-in function that\ngenerates {\\bf pseudorandom} numbers, which are not truly random in\nthe mathematical sense, but for our purposes they will do.\n\nThe {\\tt random} module contains a function called {\\tt random} that\nreturns a floating-point number between 0.0 and 1.0. Each time you\ncall {\\tt random}, you get the next number in a long series. To see a\nsample, run this loop:\n\n\\beforeverb\n\\begin{verbatim}\nimport random\n\nfor i in range(10):\n x = random.random()\n print x\n\\end{verbatim}\n\\afterverb\n%\nTo generate a random number between 0.0 and an upper bound like\n{\\tt high}, multiply {\\tt x} by {\\tt high}.\n\n\\begin{quote}\n{\\em As an exercise, generate a random number between {\\tt low} and\n{\\tt high}.}\n\\end{quote}\n\n\\begin{quote}\n{\\em As an additional exercise, generate a random {\\em integer}\nbetween {\\tt low} and {\\tt high}, including both end points.}\n\\end{quote}\n\n\n\\section{List of random numbers}\n\nThe first step is to generate a list of random values. {\\tt\nrandomList} takes an integer argument and returns a list of random\nnumbers with the given length. It starts with a list of {\\tt n}\nzeros. Each time through the loop, it replaces one of the elements\nwith a random number.\nThe return value is a reference to the complete list:\n\n\\beforeverb\n\\begin{verbatim}\ndef randomList(n):\n s = [0] * n\n for i in range(n):\n s[i] = random.random()\n return s\n\\end{verbatim}\n\\afterverb\n%\nWe'll test this function with a list of eight elements. For\npurposes of debugging, it is a good idea to start small.\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\n>>> randomList(8)\n0.15156642489\n0.498048560109\n0.810894847068\n0.360371157682\n0.275119183077\n0.328578797631\n0.759199803101\n0.800367163582\n\\end{verbatim}\n\\afterverb\n%\nThe numbers generated by {\\tt random} are supposed to be distributed\nuniformly, which means that every value is equally likely.\n\nIf we divide the range of possible\nvalues into equal-sized ``buckets,'' and count the number of times a\nrandom value falls in each bucket, we should get roughly the\nsame number in each.\n\nWe can test this theory by writing a program to \ndivide the range into\nbuckets and count the number of values in each.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7517e8c9-e829-47be-a792-3bb7aedb40a7": {"__data__": {"id_": "7517e8c9-e829-47be-a792-3bb7aedb40a7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "2": {"node_id": "bfda4cdd-355f-44cd-a333-592fb7cbade4", "node_type": null, "metadata": {}, "hash": "c3ced4734c6b97d8f3ff2bd52171d803850326402dc41a65902f00fcf2b1f84e"}, "3": {"node_id": "eeeefeaf-d448-4ed2-967b-ac85b7dc012e", "node_type": null, "metadata": {}, "hash": "b1784dbf90b13f34642c68fa4873209e8e0680eaf59af102003de67f516da973"}}, "hash": "4a99eea3c36191d40ec408c6796f60e5bb4cac4b086b7f0f25d2fa092224e2c1", "text": "\\section{Counting}\n\\index{counting}\n\nA good approach to problems like this is to divide the problem into\nsubproblems and look for subproblems that fit a computational pattern\nyou have seen before.\n\nIn this case, we want to traverse a list of numbers and count the\nnumber of times a value falls in a given range. That sounds familiar.\nIn Section~\\ref{counter}, we wrote a program that traversed a string and\ncounted the number of times a given letter appeared.\n\nSo, we can proceed by copying the old program and adapting it\nfor the current problem. The original program was:\n\n\\beforeverb\n\\begin{verbatim}\ncount = 0\nfor char in fruit:\n if char == 'a':\n count = count + 1\nprint count\n\\end{verbatim}\n\\afterverb\n%\nThe first step is to replace {\\tt fruit} with {\\tt t} and\n{\\tt char} with {\\tt num}. That doesn't change the program;\nit just makes it more readable.\n\nThe second step is to change the test. We aren't interested\nin finding letters. We want to see if {\\tt num} is between\nthe given values {\\tt low} and {\\tt high}. \n\n\\beforeverb\n\\begin{verbatim}\ncount = 0\nfor num in t:\n if low < num < high:\n count = count + 1\nprint count\n\\end{verbatim}\n\\afterverb\n%\nThe last step is to encapsulate this code in a function called\n{\\tt inBucket}. The parameters are the list and the values\n{\\tt low} and {\\tt high}.\n\n\\beforeverb\n\\begin{verbatim}\ndef inBucket(t, low, high):\n count = 0\n for num in t:\n if low < num < high:\n count = count + 1\n return count\n\\end{verbatim}\n\\afterverb\n%\nBy copying and modifying an existing program, we were able\nto write this function quickly and save a lot of debugging\ntime. This development plan is called {\\bf pattern matching}.\nIf you find yourself working on a problem you have solved\nbefore, reuse the solution.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "eeeefeaf-d448-4ed2-967b-ac85b7dc012e": {"__data__": {"id_": "eeeefeaf-d448-4ed2-967b-ac85b7dc012e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "2": {"node_id": "7517e8c9-e829-47be-a792-3bb7aedb40a7", "node_type": null, "metadata": {}, "hash": "4a99eea3c36191d40ec408c6796f60e5bb4cac4b086b7f0f25d2fa092224e2c1"}, "3": {"node_id": "7fd9dd64-d020-4c02-8c3e-7e498557b7e6", "node_type": null, "metadata": {}, "hash": "1b5465abfaa4d670fddf0f276070e4fed2e3fbbbe627fb47495e250c0d7ae2f4"}}, "hash": "b1784dbf90b13f34642c68fa4873209e8e0680eaf59af102003de67f516da973", "text": "\\section{Many buckets}\n\nAs the number of buckets increases, {\\tt inBucket} gets\na little unwieldy. With two buckets, it's not bad:\n\n\\beforeverb\n\\begin{verbatim}\nlow = inBucket(a, 0.0, 0.5)\nhigh = inBucket(a, 0.5, 1)\n\\end{verbatim}\n\\afterverb\n%\nBut with four buckets it is getting cumbersome.\n\n\\beforeverb\n\\begin{verbatim}\nbucket1 = inBucket(a, 0.0, 0.25)\nbucket2 = inBucket(a, 0.25, 0.5)\nbucket3 = inBucket(a, 0.5, 0.75)\nbucket4 = inBucket(a, 0.75, 1.0)\n\\end{verbatim}\n\\afterverb\n%\nThere are two problems. One is that we have to make up new\nvariable names for each result. The other is that we have to\ncompute the range for each bucket.\n\nWe'll solve the second problem first. If the number of buckets\nis {\\tt numBuckets}, then the width of each bucket is\n{\\tt 1.0 / numBuckets}.\n\nWe'll use a loop to compute the range of each bucket.\nThe loop variable, {\\tt i},\ncounts from 0 to {\\tt numBuckets-1}:\n\n\\beforeverb\n\\begin{verbatim}\nbucketWidth = 1.0 / numBuckets\nfor i in range(numBuckets):\n low = i * bucketWidth\n high = low + bucketWidth\n print low, \"to\", high\n\\end{verbatim}\n\\afterverb\n%\nTo compute the low end of each bucket, we multiply the loop variable\nby the bucket width. The high end is just a {\\tt bucketWidth} away.\n\nWith {\\tt numBuckets = 8}, the output is:\n\n\\beforeverb\n\\begin{verbatim}\n0.0 to 0.125\n0.125 to 0.25\n0.25 to 0.375\n0.375 to 0.5\n0.5 to 0.625\n0.625 to 0.75\n0.75 to 0.875\n0.875 to 1.0\n\\end{verbatim}\n\\afterverb\n%\nYou can confirm that each bucket is the same width, that they don't\noverlap, and that they cover the entire range from 0.0 to 1.0.\n\nNow back to the first problem.\nWe need a way to store eight integers, using the loop variable\nto indicate one at a time. By now you should be thinking,\n``List!''\n\nWe have to create the bucket list outside the loop, because we only\nwant to do it once. Inside the loop, we'll call {\\tt inBucket}\nrepeatedly and update the {\\tt i}-eth element of the list:\n\n\\beforeverb\n\\begin{verbatim}\nnumBuckets = 8\nbuckets = [0] * numBuckets\nbucketWidth = 1.0 / numBuckets\nfor i in range(numBuckets):\n low = i * bucketWidth\n high = low + bucketWidth\n buckets[i] = inBucket(t, low, high)\nprint buckets\n\\end{verbatim}\n\\afterverb\n%\nWith a list of 1000 values, this code produces this bucket list:\n\n\\beforeverb\n\\begin{verbatim}\n[138, 124, 128, 118, 130, 117, 114, 131]\n\\end{verbatim}\n\\afterverb\n%\nThese numbers are fairly close to 125, which is what we expected. At\nleast, they are close enough that we can believe the random number\ngenerator is working.\n\n\\begin{quote}\n{\\em As an exercise, \ntest this function with some longer lists, and see if the\nnumber of values in each bucket tends to level off.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7fd9dd64-d020-4c02-8c3e-7e498557b7e6": {"__data__": {"id_": "7fd9dd64-d020-4c02-8c3e-7e498557b7e6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4b44e675-64e5-457e-909e-a1553348de00", "node_type": null, "metadata": {}, "hash": "79112d3452a6e8330f0183a7b4466e744f84d6c6cd5d148b62c00f7bd3dbc318"}, "2": {"node_id": "eeeefeaf-d448-4ed2-967b-ac85b7dc012e", "node_type": null, "metadata": {}, "hash": "b1784dbf90b13f34642c68fa4873209e8e0680eaf59af102003de67f516da973"}}, "hash": "1b5465abfaa4d670fddf0f276070e4fed2e3fbbbe627fb47495e250c0d7ae2f4", "text": "\\section{A single-pass solution}\n\\index{histogram}\n\nAlthough this program works, it is not as efficient as it could be.\nEvery time it calls {\\tt inBucket}, it traverses the entire list. As\nthe number of buckets increases, that gets to be a lot of traversals.\n\nIt would be better to make a single pass through the list and compute\nfor each value the index of the bucket in which it falls. Then we can\nincrement the appropriate counter.\n\nIn the previous section we took an index, {\\tt i}, and multiplied it\nby the {\\tt bucketWidth} to find the lower bound of a given\nbucket. Now we want to take a value in the range 0.0 to 1.0 and find the\nindex of the bucket where it falls.\n\nSince this problem is the inverse of the previous problem, we might\nguess that we should divide by {\\tt bucketWidth} instead of\nmultiplying. That guess is correct.\n\nSince {\\tt bucketWidth = 1.0 / numBuckets}, dividing by {\\tt\nbucketWidth} is the same as multiplying by {\\tt numBuckets}. If we\nmultiply a number in the range 0.0 to 1.0 by {\\tt numBuckets}, we get\na number in the range from 0.0 to {\\tt numBuckets}. If we round that\nnumber to the next lower integer, we get exactly what we are looking\nfor---a bucket index:\n\n\\beforeverb\n\\begin{verbatim}\nnumBuckets = 8\nbuckets = [0] * numBuckets\nfor i in t:\n index = int(i * numBuckets)\n buckets[index] = buckets[index] + 1\n\\end{verbatim}\n\\afterverb\n%\nWe used the {\\tt int} function to convert a floating-point\nnumber to an integer.\n\nIs it possible for this calculation to produce an index that is out of\nrange (either negative or greater than {\\tt len(buckets)-1})?\n\nA list like {\\tt buckets} that contains counts of the number of values\nin each range is called a {\\bf histogram}.\n\n\\begin{quote}\n{\\em As an exercise, write a function called {\\tt histogram} that\ntakes a list and a number of buckets as arguments and returns\na histogram with the given number of buckets.}\n\\end{quote}\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[immutable type:] A type in which the elements cannot be\nmodified. Assignments\nto elements or slices of immutable types cause an error.\n\n\\item[mutable type:] A data type in which the elements can be\nmodified. All mutable\ntypes are compound types. Lists and dictionaries are mutable data\ntypes; strings and tuples are not.\n\n\\item[tuple:] A sequence type that is similar to a list except that it is\nimmutable. Tuples can be used wherever an immutable type is required, such\nas a key in a dictionary.\n\n\\item[tuple assignment:] An assignment to all of the elements in a tuple using\na single assignment statement. Tuple assignment occurs in parallel rather\nthan in sequence, making it useful for swapping values.\n\n\\item[deterministic:] A program that does the same thing each time it is\ncalled.\n\n\\item[pseudorandom:] A sequence of numbers that appear to be random but that\nare actually the result of a deterministic computation.\n\n\\item[histogram:] A list of integers in which each element counts the \nnumber of times something happens.\n\n\\item[pattern matching:] A program development plan that involves\nidentifying a familiar computational pattern and copying the\nsolution to a similar problem.\n\n\\index{mutable type}\n\\index{immutable type}\n\\index{tuple}\n\\index{tuple assignment}\n\\index{assignment!tuple}\n\\index{deterministic}\n\\index{pseudorandom}\n\\index{histogram}\n\\index{pattern matching}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "78fce47a-97ce-40a1-a41d-45c29ec1c6ff": {"__data__": {"id_": "78fce47a-97ce-40a1-a41d-45c29ec1c6ff", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "3": {"node_id": "270fc7ae-49fc-4d87-a3e7-04ec0577a426", "node_type": null, "metadata": {}, "hash": "1d211337437ef34e3a0b188e3abc96baba35800c4eb752b01eb498d33f203c37"}}, "hash": "bae8a0a240f9b1c1edac65dea11aed7477bea31c7107f7c4f0703c4ab0e1b8d2", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Dictionaries}\n\\index{dictionary}\n\n\\index{dictionary}\n\\index{data type!dictionary}\n\\index{type!dict}\n\\index{key}\n\\index{key-value pair}\n\\index{index}\n\nThe compound types you have learned about---strings, lists, and\ntuples---use integers as indices. If you try to use any other type as\nan index, you get an error.\n\n{\\bf Dictionaries} are similar to other compound types except that\nthey can use any immutable type as an index. As an example, we will\ncreate a dictionary to translate English words into Spanish. For this\ndictionary, the indices are {\\tt strings}.\n\nOne way to create a dictionary is to start with the empty dictionary\nand add elements. The empty dictionary is denoted {\\verb+{}+}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp = {}\n>>> eng2sp['one'] = 'uno'\n>>> eng2sp['two'] = 'dos'\n\\end{verbatim}\n\\afterverb\n%\nThe first assignment creates a dictionary named {\\tt eng2sp}; the\nother assignments add new elements to the dictionary. We can print\nthe current value of the dictionary in the usual way:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print eng2sp\n{'one': 'uno', 'two': 'dos'}\n\\end{verbatim}\n\\afterverb\n%\nThe elements of a dictionary appear in a comma-separated list. Each\nentry contains an index and a value separated by a colon. In a\ndictionary, the indices are called {\\bf keys}, so the elements are\ncalled {\\bf key-value pairs}.\n\nAnother way to create a dictionary is to provide a list of key-value\npairs using the same syntax as the previous output:\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp = {'one': 'uno', 'two': 'dos', 'three': 'tres'}\n\\end{verbatim}\n\\afterverb\n%\nIf we print the value of {\\tt eng2sp} again, we get a surprise:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print eng2sp\n{'one': 'uno', 'three': 'tres', 'two': 'dos'}\n\\end{verbatim}\n\\afterverb\n%\nThe key-value pairs are not in order! Fortunately, there is no reason\nto care about the order, since the elements of a dictionary are never\nindexed with integer indices. Instead, we use the keys to look up the\ncorresponding values:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print eng2sp['two']\n'dos'\n\\end{verbatim}\n\\afterverb\n%\nThe key {\\tt 'two'} yields the value {\\tt 'dos'} even though it\nappears in the third key-value pair.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "270fc7ae-49fc-4d87-a3e7-04ec0577a426": {"__data__": {"id_": "270fc7ae-49fc-4d87-a3e7-04ec0577a426", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "2": {"node_id": "78fce47a-97ce-40a1-a41d-45c29ec1c6ff", "node_type": null, "metadata": {}, "hash": "bae8a0a240f9b1c1edac65dea11aed7477bea31c7107f7c4f0703c4ab0e1b8d2"}, "3": {"node_id": "d37333a6-d060-47f4-9e0e-29273ac89aa1", "node_type": null, "metadata": {}, "hash": "1ea09d693255a02045d4b11b587061c36225487037d5f32662564f9c4abc11f1"}}, "hash": "1d211337437ef34e3a0b188e3abc96baba35800c4eb752b01eb498d33f203c37", "text": "\\section{Dictionary operations}\n\\index{dictionary!operation}\n\\index{operation!dictionary}\n\nThe {\\tt del} statement removes a key-value pair from a dictionary.\nFor example, the following dictionary contains the names of various\nfruits and the number of each fruit in stock:\n\n\\beforeverb\n\\begin{verbatim}\n>>> inventory = {'apples': 430, 'bananas': 312, 'oranges': 525, \n'pears': 217}\n>>> print inventory\n{'oranges': 525, 'apples': 430, 'pears': 217, 'bananas': 312}\n\\end{verbatim}\n\\afterverb\n%\nIf someone buys all of the pears, we can remove the entry from the\ndictionary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> del inventory['pears']\n>>> print inventory\n{'oranges': 525, 'apples': 430, 'bananas': 312}\n\\end{verbatim}\n\\afterverb\n%\nOr if we're expecting more pears soon, we might just change the\nvalue associated with pears:\n\n\\beforeverb\n\\begin{verbatim}\n>>> inventory['pears'] = 0\n>>> print inventory\n{'oranges': 525, 'apples': 430, 'pears': 0, 'bananas': 312}\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt len} function also works on dictionaries; it returns the\nnumber of key-value pairs:\n\n\\beforeverb\n\\begin{verbatim}\n>>> len(inventory)\n4\n\\end{verbatim}\n\\afterverb\n%", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d37333a6-d060-47f4-9e0e-29273ac89aa1": {"__data__": {"id_": "d37333a6-d060-47f4-9e0e-29273ac89aa1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "2": {"node_id": "270fc7ae-49fc-4d87-a3e7-04ec0577a426", "node_type": null, "metadata": {}, "hash": "1d211337437ef34e3a0b188e3abc96baba35800c4eb752b01eb498d33f203c37"}, "3": {"node_id": "97c67d12-52ac-46ba-8df3-c740bb16e497", "node_type": null, "metadata": {}, "hash": "af9128b4ef3f5d78dc5775bc63983a22e49646210837bd8c49691302fabc10af"}}, "hash": "1ea09d693255a02045d4b11b587061c36225487037d5f32662564f9c4abc11f1", "text": "\\section{Dictionary methods}\n\\index{dictionary!method}\n\\index{method!dictionary}\n\\index{method}\n\\index{method!invocation}\n\\index{invoking method}\n\nA {\\bf method} is similar to a function---it takes arguments and\nreturns a value---but the syntax is different. For example, the {\\tt\nkeys} method takes a dictionary and returns a list of the keys that\nappear, but instead of the function syntax {\\tt keys(eng2sp)}, we use\nthe method syntax {\\tt eng2sp.keys()}.\n\n\\index{dot notation}\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp.keys()\n['one', 'three', 'two']\n\\end{verbatim}\n\\afterverb\n%\nThis form of dot notation specifies the name of the function, {\\tt\nkeys}, and the name of the object to apply the function to, {\\tt\neng2sp}. The parentheses indicate that this method has no\nparameters.\n\nA method call is called an {\\bf invocation}; in this case, we would\nsay that we are invoking {\\tt keys} on the object {\\tt eng2sp}.\n\nThe {\\tt values} method is similar; it returns a list of the values in\nthe dictionary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp.values()\n['uno', 'tres', 'dos']\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt items} method returns both, in the form of a\nlist of tuples---one for each key-value\npair:\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp.items()\n[('one','uno'), ('three', 'tres'), ('two', 'dos')]\n\\end{verbatim}\n\\afterverb\n%\nThe syntax provides useful type information. The square brackets\nindicate that this is a list. The parentheses indicate that\nthe elements of the list are tuples.\n\nIf a method takes an argument, it uses the same syntax as a function\ncall. For example, the method {\\tt has\\_key} takes a key\nand returns\ntrue (1) if the key appears in the dictionary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> eng2sp.has_key('one')\nTrue\n>>> eng2sp.has_key('deux')\nFalse\n\\end{verbatim}\n\\afterverb\n%\nIf you try to call a method without specifying an object, you get an\nerror. In this case, the error message is not very helpful:\n\n\\beforeverb\n\\begin{verbatim}\n>>> has_key('one')\nNameError: has_key\n\\end{verbatim}\n\\afterverb\n%\n\n\\index{runtime error}\n\n\n\\section{Aliasing and copying}\n\\index{aliasing}\n\\index{copying}\n\\index{cloning}\n\nBecause dictionaries are mutable, you need to be aware of aliasing.\nWhenever two variables refer to the same object, changes to one affect\nthe other.\n\nIf you want to modify a dictionary and keep a copy of the original,\nuse the {\\tt copy} method. For example, {\\tt opposites} is a\ndictionary that contains pairs of opposites:\n\n\\beforeverb\n\\begin{verbatim}\n>>> opposites = {'up': 'down', 'right': 'wrong', 'true': 'false'}\n>>> alias = opposites\n>>> copy = opposites.copy()\n\\end{verbatim}\n\\afterverb\n%\n{\\tt alias} and {\\tt opposites} refer to the same object; {\\tt copy}\nrefers to a fresh copy of the same dictionary. If we modify {\\tt\nalias}, {\\tt opposites} is also changed:\n\n\\beforeverb\n\\begin{verbatim}\n>>> alias['right'] = 'left'\n>>> opposites['right']\n'left'\n\\end{verbatim}\n\\afterverb\n%\nIf we modify {\\tt copy}, {\\tt opposites} is unchanged:\n\n\\beforeverb\n\\begin{verbatim}\n>>> copy['right'] = 'privilege'\n>>> opposites['right']\n'left'\n\\end{verbatim}\n\\afterverb\n%", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "97c67d12-52ac-46ba-8df3-c740bb16e497": {"__data__": {"id_": "97c67d12-52ac-46ba-8df3-c740bb16e497", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "2": {"node_id": "d37333a6-d060-47f4-9e0e-29273ac89aa1", "node_type": null, "metadata": {}, "hash": "1ea09d693255a02045d4b11b587061c36225487037d5f32662564f9c4abc11f1"}, "3": {"node_id": "1f9270dc-5439-4eb4-b6a8-bee468243ae9", "node_type": null, "metadata": {}, "hash": "c8f3ccc4ea92632c2cb9d2d005bd4273a87a900b950209d4c216e4d4953b6daf"}}, "hash": "af9128b4ef3f5d78dc5775bc63983a22e49646210837bd8c49691302fabc10af", "text": "\\section{Sparse matrices }\n\\index{matrix!sparse}\n\\index{nested list}\n\\index{list!nested}\n\nIn Section~\\ref{nested lists}, we used a list of lists to represent a\nmatrix. That is a good choice for a matrix with mostly nonzero\nvalues, but consider a sparse matrix like this one:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/sparse.eps}}\n\\afterfig\n\nThe list representation contains a lot of zeroes:\n\n\\beforeverb\n\\begin{verbatim}\nmatrix = [ [0,0,0,1,0],\n [0,0,0,0,0],\n [0,2,0,0,0],\n [0,0,0,0,0],\n [0,0,0,3,0] ]\n\\end{verbatim}\n\\afterverb\n%\nAn alternative is to use a dictionary.\nFor the keys, we can use tuples that contain the row and column\nnumbers. Here is the dictionary representation of the same matrix:\n\n\\beforeverb\n\\begin{verbatim}\nmatrix = {(0,3): 1, (2, 1): 2, (4, 3): 3}\n\\end{verbatim}\n\\afterverb\n%\nWe only need three key-value pairs, one for each nonzero element of the\nmatrix. Each key is a tuple, and each value is an integer.\n\nTo access an element of the matrix, we could use the {\\tt []}\noperator:\n\n\\beforeverb\n\\begin{verbatim}\nmatrix[0,3]\n1\n\\end{verbatim}\n\\afterverb\n%\nNotice that the syntax for the dictionary representation is not the\nsame as the syntax for the nested list representation. Instead of\ntwo integer indices, we use one index, which is a tuple of integers.\n\nThere is one problem.\nIf we specify an element that is zero, we get an\nerror, because there is no entry in the dictionary with that key:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix[1,3]\nKeyError: (1, 3)\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt get} method solves this problem:\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix.get((0,3), 0)\n1\n\\end{verbatim}\n\\afterverb\n%\nThe first argument is the key; the second argument is the value\n{\\tt get} should return if the key is not in the dictionary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> matrix.get((1,3), 0)\n0\n\\end{verbatim}\n\\afterverb\n%\n{\\tt get} definitely improves the semantics of accessing\na sparse matrix. Shame about the syntax.\n\n\n\\section{Hints}\n\\index{hint}\n\\index{Fibonacci function}\n\nIf you played around with the {\\tt fibonacci} function from\nSection~\\ref{one more example}, you might have noticed that the bigger\nthe argument you provide, the longer the function takes to run.\nFurthermore, the run time increases very quickly. On one of our\nmachines, {\\tt fibonacci(20)} finishes instantly, {\\tt fibonacci(30)}\ntakes about a second, and {\\tt fibonacci(40)} takes roughly forever.\n\nTo understand why, consider this {\\bf call graph} for\n{\\tt fibonacci} with {\\tt n=4}:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/fibonacci.eps,height=2in}}\n\\afterfig\n\nA call graph shows a set function frames, with lines connecting each\nframe to the frames of the functions it calls. At the top of the\ngraph, {\\tt fibonacci} with {\\tt n=4} calls {\\tt fibonacci} with {\\tt\nn=3} and {\\tt n=2}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1f9270dc-5439-4eb4-b6a8-bee468243ae9": {"__data__": {"id_": "1f9270dc-5439-4eb4-b6a8-bee468243ae9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "2": {"node_id": "97c67d12-52ac-46ba-8df3-c740bb16e497", "node_type": null, "metadata": {}, "hash": "af9128b4ef3f5d78dc5775bc63983a22e49646210837bd8c49691302fabc10af"}, "3": {"node_id": "bf7b3e64-7e63-4c9a-b611-622581711e8d", "node_type": null, "metadata": {}, "hash": "44988c9b900451859896bf15a4d2ee70437d9f3127d76ea444a09f2dbe5391e5"}}, "hash": "c8f3ccc4ea92632c2cb9d2d005bd4273a87a900b950209d4c216e4d4953b6daf", "text": "In turn, {\\tt fibonacci} with {\\tt n=3} calls\n{\\tt fibonacci} with {\\tt n=2} and {\\tt n=1}. And so on.\n\n\\index{function frame}\n\\index{frame}\n\\index{call graph}\n\nCount how many times {\\tt fibonacci(0)} and {\\tt fibonacci(1)} are\ncalled. This is an inefficient solution to the problem, and it gets\nfar worse as the argument gets bigger.\n\nA good solution is to keep track of values that have already been\ncomputed by storing them in a dictionary. A previously computed value\nthat is stored for later use is called a {\\bf hint}. Here is\nan implementation of {\\tt fibonacci} using hints:\n\n\\beforeverb\n\\begin{verbatim}\nprevious = {0:1, 1:1}\n\ndef fibonacci(n):\n if previous.has_key(n):\n return previous[n]\n else:\n newValue = fibonacci(n-1) + fibonacci(n-2)\n previous[n] = newValue\n return newValue\n\\end{verbatim}\n\\afterverb\n%\nThe dictionary named {\\tt previous} keeps track of the Fibonacci\nnumbers we already know. We start with only\ntwo pairs: 0 maps to 1; and 1 maps to 1.\n\nWhenever {\\tt fibonacci} is called, it checks the dictionary to\ndetermine if it contains the result.\nIf it's there, the function can return\nimmediately without making any more recursive calls. If not, it has\nto compute the new value. The new value is added to the dictionary\nbefore the function returns.\n\nUsing this version of {\\tt fibonacci}, our machines can compute\n{\\tt fibonacci(40)} in an eyeblink. But when we try to compute\n{\\tt fibonacci(50)}, we see the following:\n\n\\beforeverb\n\\begin{verbatim}\n>>> fibonacci(50)\n20365011074L\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt L} at the end of the result indicates that the answer\n+(20,365,011,074) is too big to fit into a Python integer. Python\nhas automatically converted the result to a long integer.\n\n\\section{Long integers}\n\\index{long integer}\n\\index{data type!long integer}\n\\index{type!long}\n\\index{integer!long}\n\nPython provides a type called {\\tt long} that can handle any size\ninteger. There are two ways to create a {\\tt long} value. One is\nto write an integer with a capital {\\tt L} at the end:\n\n\\beforeverb\n\\begin{verbatim}\n>>> type(1L)\n\n\\end{verbatim}\n\\afterverb\n%\nThe other is to use the {\\tt long} function to convert a value to a\n{\\tt long}. {\\tt long} can accept any numerical type and even\nstrings of digits:\n\n\\index{type coercion}\n\\index{coercion!type}\n\n\\beforeverb\n\\begin{verbatim}\n>>> long(1)\n1L\n>>> long(3.9)\n3L\n>>> long('57')\n57L\n\\end{verbatim}\n\\afterverb\n%\nAll of the math operations work on {\\tt long}s, so in general\nany code that works with integers will also work with long\nintegers. Any time the result of a computation is too big\nto be represented with an integer, Python detects the overflow\nand returns the result as a long integer. For example:\n\n\\beforeverb\n\\begin{verbatim}\n>>> 1000 * 1000\n1000000\n>>> 100000 * 100000\n10000000000L\n\\end{verbatim}\n\\afterverb\n%\nIn the first case the result has type {\\tt int}; in the\nsecond case it is {\\tt long}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bf7b3e64-7e63-4c9a-b611-622581711e8d": {"__data__": {"id_": "bf7b3e64-7e63-4c9a-b611-622581711e8d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "node_type": null, "metadata": {}, "hash": "fb2260ef912cda76d6237745cb2dc272feae14cd7c1f90ddf083d5ff9c5cd1ad"}, "2": {"node_id": "1f9270dc-5439-4eb4-b6a8-bee468243ae9", "node_type": null, "metadata": {}, "hash": "c8f3ccc4ea92632c2cb9d2d005bd4273a87a900b950209d4c216e4d4953b6daf"}}, "hash": "44988c9b900451859896bf15a4d2ee70437d9f3127d76ea444a09f2dbe5391e5", "text": "\\section{Counting letters}\n\\index{counting}\n\\index{histogram}\n\\index{compression}\n\nIn Chapter~\\ref{strings}, we wrote a function that counted the number\nof occurrences of a letter in a string. A more general version of\nthis problem is to form a histogram of the letters in the string, that\nis, how many times each letter appears.\n\nSuch a histogram might be useful for compressing a text\nfile. Because different letters appear with different frequencies, we\ncan compress a file by using shorter codes for common letters and\nlonger codes for letters that appear less frequently.\n\nDictionaries provide an elegant way to generate a histogram:\n\n\\beforeverb\n\\begin{verbatim}\n>>> letterCounts = {}\n>>> for letter in \"Mississippi\":\n... letterCounts[letter] = letterCounts.get (letter, 0) + 1\n...\n>>> letterCounts\n{'M': 1, 's': 4, 'p': 2, 'i': 4}\n\\end{verbatim}\n\\afterverb\n%\nWe start with an empty dictionary. For each letter in the string, we\nfind the current count (possibly zero) and increment it. At the end,\nthe dictionary contains pairs of letters and their frequencies.\n\nIt might be more appealing to display the histogram in alphabetical\norder. We can do that with the {\\tt items} and {\\tt sort} methods:\n\n\\beforeverb\n\\begin{verbatim}\n>>> letterItems = letterCounts.items()\n>>> letterItems.sort()\n>>> print letterItems\n[('M', 1), ('i', 4), ('p', 2), ('s', 4)]\n\\end{verbatim}\n\\afterverb\n%\nYou have seen the {\\tt items} method before, but {\\tt sort} is the\nfirst method you have encountered that applies to lists. There are\nseveral other list methods, including {\\tt append}, {\\tt extend}, and\n{\\tt reverse}. Consult the Python documentation for details.\n\n\\index{method!list}\n\\index{list method}\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[dictionary:] A collection of key-value pairs that maps from\nkeys to values.\nThe keys can be any immutable type, and the values can be any type.\n\n\\item[key:] A value that is used to look up an entry in a dictionary.\n\n\\item[key-value pair:] One of the items in a dictionary.\n\n\\item[method:] A kind of function that is called with a different syntax and\ninvoked ``on'' an object.\n\n\\item[invoke:] To call a method.\n\n\\item[hint:] Temporary storage of a precomputed value to avoid redundant\ncomputation.\n\n\\item[overflow:] A numerical result that is too large to be represented\nin a numerical format.\n\n\\index{dictionary}\n\\index{key}\n\\index{key-value pair}\n\\index{hint}\n\\index{method}\n\\index{invoke}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "00b4a5d7-9bbd-4055-a1cf-f54e5357911b": {"__data__": {"id_": "00b4a5d7-9bbd-4055-a1cf-f54e5357911b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "3": {"node_id": "cf0db177-d4a6-45eb-838d-074b79670592", "node_type": null, "metadata": {}, "hash": "43b14ce32fcbe430ac7a49c5c61f792365a67437d17c515df23b7a2431efb030"}}, "hash": "58c74a8f753f5627524f31a15d25ca3823e7767588d8981d79d3d5734186b907", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Files and exceptions}\n\\index{file}\n\\index{type!file}\n\nWhile a program is running, its data is in memory. When the program\nends, or the computer shuts down, data in memory disappears. To\nstore data permanently, you have to put it in a {\\bf file}.\nFiles are usually stored on a\nhard drive, floppy drive, or CD-ROM.\n\nWhen there are a large number of files, they are often organized\ninto {\\bf directories} (also called ``folders'').\nEach file is identified by a unique name, or a combination of a\nfile name and a directory name.\n\nBy reading and writing files, programs can\nexchange information with each other and generate printable formats\nlike PDF.\n\nWorking with files is a lot like working with books. To use a book,\nyou have to open it. When you're done, you have to close it. While\nthe book is open, you can either write in it or read from it. In\neither case, you know where you are in the book. Most of the time,\nyou read the whole book in its natural order, but you can also skip\naround.\n\nAll of this applies to files as well. To open a file, you specify\nits name and indicate whether you want to read or write.\n\nOpening a file creates a file object. In this example,\nthe variable {\\tt f} refers to the new file object.\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.dat\",\"w\")\n>>> print f\n\n\\end{verbatim}\n\\afterverb\n%\nThe open function takes two arguments. The first is the name of the file,\nand the second is the mode. Mode {\\tt \"w\"} means that we are opening\nthe file for writing.\n\nIf there is no file named {\\tt test.dat}, it will be created.\nIf there already is one, it will be replaced by the file we are\nwriting.\n\nWhen we print the file object, we see the name of the file, the\nmode, and the location of the object.\n\nTo put data in the file we invoke the {\\tt write} method on the\nfile object:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f.write(\"Now is the time\")\n>>> f.write(\"to close the file\")\n\\end{verbatim}\n\\afterverb\n%\nClosing the file tells the system that we are done writing and\nmakes the file available for reading:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f.close()\n\\end{verbatim}\n\\afterverb\n%\nNow we can open the file again, this time for reading, and read the\ncontents into a string.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "cf0db177-d4a6-45eb-838d-074b79670592": {"__data__": {"id_": "cf0db177-d4a6-45eb-838d-074b79670592", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "00b4a5d7-9bbd-4055-a1cf-f54e5357911b", "node_type": null, "metadata": {}, "hash": "58c74a8f753f5627524f31a15d25ca3823e7767588d8981d79d3d5734186b907"}, "3": {"node_id": "fd76a23c-a4e7-463d-a4e4-2a999724795f", "node_type": null, "metadata": {}, "hash": "c2f26a06a13a8c34996b3bba6eddd01e5f9a98fdb969824ee331a9cda28592f7"}}, "hash": "43b14ce32fcbe430ac7a49c5c61f792365a67437d17c515df23b7a2431efb030", "text": "This time, the mode argument\nis {\\tt \"r\"} for reading:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.dat\",\"r\")\n\\end{verbatim}\n\\afterverb\n%\nIf we try to open a file that doesn't exist, we get an error:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.cat\",\"r\")\nIOError: [Errno 2] No such file or directory: 'test.cat'\n\\end{verbatim}\n\\afterverb\n%\nNot surprisingly, the {\\tt read} method reads data from the\nfile. With no arguments, it reads the entire contents of the file:\n\n\\beforeverb\n\\begin{verbatim}\n>>> text = f.read()\n>>> print text\nNow is the timeto close the file\n\\end{verbatim}\n\\afterverb\n%\nThere is no space between ``time'' and ``to'' because we did\nnot write a space between the strings.\n\n{\\tt read} can also take an argument that indicates how many\ncharacters to read:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.dat\",\"r\")\n>>> print f.read(5)\nNow i\n\\end{verbatim}\n\\afterverb\n%\nIf not enough characters are left in the file,\n{\\tt read} returns the remaining characters.\nWhen we get to the end of the file,\n{\\tt read} returns the empty string:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print f.read(1000006)\ns the timeto close the file\n>>> print f.read()\n\n>>>\n\\end{verbatim}\n\\afterverb\n%\nThe following function copies a file, reading and writing\nup to fifty characters at a time. The first argument is the name of\nthe original file; the second is the name of the new file:\n\n\\beforeverb\n\\begin{verbatim}\ndef copyFile(oldFile, newFile):\n f1 = open(oldFile, \"r\")\n f2 = open(newFile, \"w\")\n while True:\n text = f1.read(50)\n if text == \"\":\n break\n f2.write(text)\n f1.close()\n f2.close()\n return\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt break} statement is new. Executing it breaks out of the\nloop; the flow of execution moves to the first statement after\nthe loop.\n\n\\index{break statement}\n\\index{statement!break}\n\nIn this example, the {\\tt while} loop is infinite because the\nvalue {\\tt True} is always true. The {\\em only} way to get out\nof the loop is to execute {\\tt break}, which happens when\n{\\tt text} is the empty string, which happens when we get to\nthe end of the file.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "fd76a23c-a4e7-463d-a4e4-2a999724795f": {"__data__": {"id_": "fd76a23c-a4e7-463d-a4e4-2a999724795f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "cf0db177-d4a6-45eb-838d-074b79670592", "node_type": null, "metadata": {}, "hash": "43b14ce32fcbe430ac7a49c5c61f792365a67437d17c515df23b7a2431efb030"}, "3": {"node_id": "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b", "node_type": null, "metadata": {}, "hash": "fea80c013bc777615b447136967f5829cce51a5caf3c430029739f7a7570b906"}}, "hash": "c2f26a06a13a8c34996b3bba6eddd01e5f9a98fdb969824ee331a9cda28592f7", "text": "\\section{Text files}\n\\index{text file}\n\\index{file!text}\n\nA {\\bf text file} is a file that contains printable characters and\nwhitespace, organized into lines separated by newline characters.\nSince Python is specifically designed to process text files, it\nprovides methods that make the job easy.\n\nTo demonstrate, we'll\ncreate a text file with three lines of text separated by\nnewlines:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.dat\",\"w\")\n>>> f.write(\"line one\\nline two\\nline three\\n\")\n>>> f.close()\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt readline} method reads all the characters\nup to and including the next newline character:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.dat\",\"r\")\n>>> print f.readline()\nline one\n\n>>>\n\\end{verbatim}\n\\afterverb\n%\n{\\tt readlines} returns all of the remaining\nlines as a list of strings:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print f.readlines()\n['line two\\012', 'line three\\012']\n\\end{verbatim}\n\\afterverb\n%\nIn this case, the output is in list format, which means that the\nstrings appear with quotation marks and the newline character\nappears as the escape sequence {\\tt \\\\012}.\n\nAt the end of the file, {\\tt readline} returns the empty string\nand {\\tt readlines} returns the empty list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print f.readline()\n\n>>> print f.readlines()\n[]\n\\end{verbatim}\n\\afterverb\n%\nThe following is an example of a line-processing program.\n{\\tt filterFile} makes a copy of {\\tt oldFile}, omitting\nany lines that begin with {\\tt \\#}:\n\n\\beforeverb\n\\begin{verbatim}\ndef filterFile(oldFile, newFile):\n f1 = open(oldFile, \"r\")\n f2 = open(newFile, \"w\")\n while True:\n text = f1.readline()\n if text == \"\":\n break\n if text[0] == '#':\n continue\n f2.write(text)\n f1.close()\n f2.close()\n return\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt continue} statement ends the current iteration of the\nloop, but continues looping. The flow of\nexecution moves to the top of the loop, checks the condition,\nand proceeds accordingly.\n\n\\index{continue statement}\n\\index{statement!continue}\n\nThus, if {\\tt text} is the empty string, the loop exits. If\nthe first character of {\\tt text} is a hash mark, the flow\nof execution goes to\nthe top of the loop. Only if both conditions fail do we copy\n{\\tt text} into the new file.\n\n\n\\section{Writing variables}\n\\index{format operator}\n\\index{format string}\n\\index{operator!format}\n\nThe argument of {\\tt write} has to be a string, so if we want\nto put other values in a file, we have to convert them to\nstrings first. The easiest way to do that is with the {\\tt str}\nfunction:\n\n\\beforeverb\n\\begin{verbatim}\n>>> x = 52\n>>> f.write (str(x))\n\\end{verbatim}\n\\afterverb\n%\nAn alternative is to use the {\\bf format operator} {\\tt \\%}. When\napplied to integers, {\\tt \\%} is the modulus operator. But\nwhen the first operand is a string, {\\tt \\%} is the format operator.\n\nThe first operand is the {\\bf format string}, and the second operand\nis a tuple of expressions. The result is a string that contains\nthe values of the expressions, formatted according to the format\nstring.\n\nAs a simple example, the {\\bf format sequence} {\\tt \"\\%d\"} means that\nthe first expression in the tuple should be formatted as an\ninteger.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b": {"__data__": {"id_": "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "fd76a23c-a4e7-463d-a4e4-2a999724795f", "node_type": null, "metadata": {}, "hash": "c2f26a06a13a8c34996b3bba6eddd01e5f9a98fdb969824ee331a9cda28592f7"}, "3": {"node_id": "932ade67-eecb-47cd-b5fe-567427a3003a", "node_type": null, "metadata": {}, "hash": "07a84d5219ebb70e08a263e735277406d289fbe9f4653530e22aabcc83663663"}}, "hash": "fea80c013bc777615b447136967f5829cce51a5caf3c430029739f7a7570b906", "text": "Here the letter {\\em d} stands for ``decimal'':\n\n\\beforeverb\n\\begin{verbatim}\n>>> cars = 52\n>>> \"%d\" % cars\n'52'\n\\end{verbatim}\n\\afterverb\n%\nThe result is the string {\\tt '52'}, which is not to be confused\nwith the integer value {\\tt 52}.\n\nA format sequence can appear anywhere in the format string,\nso we can embed a value in a sentence:\n\n\\beforeverb\n\\begin{verbatim}\n>>> cars = 52\n>>> \"In July we sold %d cars.\" % cars\n'In July we sold 52 cars.'\n\\end{verbatim}\n\\afterverb\n%\nThe format sequence {\\tt \"\\%f\"} formats the next item in\nthe tuple as a floating-point number, and {\\tt \"\\%s\"} formats\nthe next item as a string:\n\n\\beforeverb\n\\begin{verbatim}\n>>> \"In %d days we made %f million %s.\" % (34,6.1,'dollars')\n'In 34 days we made 6.100000 million dollars.'\n\\end{verbatim}\n\\afterverb\n%\nBy default, the floating-point format prints six decimal places.\n\nThe number of expressions in the tuple has to match the number\nof format sequences in the string. Also, the types of the\nexpressions have to match the format sequences:\n\n\\index{runtime error}\n\n\\beforeverb\n\\begin{verbatim}\n>>> \"%d %d %d\" % (1,2)\nTypeError: not enough arguments for format string\n>>> \"%d\" % 'dollars'\nTypeError: illegal argument type for built-in operation\n\\end{verbatim}\n\\afterverb\n%\nIn the first example, there aren't enough expressions; in the\nsecond, the expression is the wrong type.\n\nFor more control over the format of numbers, we can specify\nthe number of digits as part of the format sequence:\n\n\\beforeverb\n\\begin{verbatim}\n>>> \"%6d\" % 62\n' 62'\n>>> \"%12f\" % 6.1\n' 6.100000'\n\\end{verbatim}\n\\afterverb\n%\nThe number after the percent sign is the minimum number of spaces\nthe number will take up. If the value provided takes fewer digits,\nleading spaces are added. If the number of spaces is negative,\ntrailing spaces are added:\n\n\\beforeverb\n\\begin{verbatim}\n>>> \"%-6d\" % 62\n'62 '\n\\end{verbatim}\n\\afterverb\n%\nFor floating-point numbers, we can also\nspecify the number of digits after the decimal point:\n\n\\beforeverb\n\\begin{verbatim}\n>>> \"%12.2f\" % 6.1\n' 6.10'\n\\end{verbatim}\n\\afterverb\n%\nIn this example, the result takes up twelve spaces and includes two\ndigits after the decimal. This format is useful for printing\ndollar amounts with the decimal points aligned.\n\n\\index{dictionary}\n\nFor example, imagine a dictionary that contains\nstudent names as keys and hourly wages as values.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "932ade67-eecb-47cd-b5fe-567427a3003a": {"__data__": {"id_": "932ade67-eecb-47cd-b5fe-567427a3003a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b", "node_type": null, "metadata": {}, "hash": "fea80c013bc777615b447136967f5829cce51a5caf3c430029739f7a7570b906"}, "3": {"node_id": "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935", "node_type": null, "metadata": {}, "hash": "440752e479fc4dedd1ba69410b16d0856ceefc1e0c71b515611ce14d07a4fce9"}}, "hash": "07a84d5219ebb70e08a263e735277406d289fbe9f4653530e22aabcc83663663", "text": "Here is a function that prints the contents of the dictionary\nas a formatted report:\n\n\\beforeverb\n\\begin{verbatim}\ndef report (wages) :\n students = wages.keys()\n students.sort()\n for student in students :\n print \"%-20s %12.2f\" % (student, wages[student])\n\\end{verbatim}\n\\afterverb\n%\nTo test this function, we'll create a small dictionary\nand print the contents:\n\n\\beforeverb\n\\begin{verbatim}\n>>> wages = {'mary': 6.23, 'joe': 5.45, 'joshua': 4.25}\n>>> report (wages)\njoe 5.45\njoshua 4.25\nmary 6.23\n\\end{verbatim}\n\\afterverb\n%\nBy controlling the width of each value, we guarantee that the columns\nwill line up, as long as the names contain fewer than twenty-one\ncharacters and the wages are less than one billion dollars an hour.\n\n\n\\section{Directories}\n\\index{directory}\n\nWhen you create a new file by opening it and writing, the new\nfile goes in the current directory (wherever you were when\nyou ran the program). Similarly, when you open a file for\nreading, Python looks for it in the current directory.\n\nIf you want to open a file somewhere else, you have to specify\nthe {\\bf path} to the file, which is the name of the directory\n(or folder) where the file is located:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"/usr/share/dict/words\",\"r\")\n>>> print f.readline()\nAarhus\n\\end{verbatim}\n\\afterverb\n%\nThis example opens a file named {\\tt words} that resides in a\ndirectory named {\\tt dict}, which resides in {\\tt share}, which\nresides in {\\tt usr}, which resides in the top-level directory\nof the system, called {\\tt /}.\n\n\\index{path}\n\\index{delimiter}\n\nYou cannot use {\\tt /}\nas part of a filename; it is reserved as a delimiter between\ndirectory and filenames.\n\nThe file {\\tt /usr/share/dict/words} contains a list of words\nin alphabetical order, of which the first is the name of a\nDanish university.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935": {"__data__": {"id_": "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "932ade67-eecb-47cd-b5fe-567427a3003a", "node_type": null, "metadata": {}, "hash": "07a84d5219ebb70e08a263e735277406d289fbe9f4653530e22aabcc83663663"}, "3": {"node_id": "4a21db87-f1d9-4f48-97ed-ef89e1c22707", "node_type": null, "metadata": {}, "hash": "1539a4e6540a2bca7f8f8836e2e375cd96b6f518168a3ac4db8442cbdee1051e"}}, "hash": "440752e479fc4dedd1ba69410b16d0856ceefc1e0c71b515611ce14d07a4fce9", "text": "\\section{Pickling}\n\\index{pickling}\n\nIn order to put values into a file, you have to convert them\nto strings. You have already seen how to do that with {\\tt str}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f.write (str(12.3))\n>>> f.write (str([1,2,3]))\n\\end{verbatim}\n\\afterverb\n%\nThe problem is that when you read the value back, you get a string.\nThe original type information has been lost. In fact, you can't\neven tell where one value ends and the next begins:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f.readline()\n'12.3[1, 2, 3]'\n\\end{verbatim}\n\\afterverb\n%\nThe solution is {\\bf pickling}, so called because it ``preserves''\ndata structures. The {\\tt pickle} module contains the necessary\ncommands. To use it, import {\\tt pickle} and then open the file in\nthe usual way:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import pickle\n>>> f = open(\"test.pck\",\"w\")\n\\end{verbatim}\n\\afterverb\n%\nTo store a data structure, use the {\\tt dump} method and\nthen close the file in the usual way:\n\n\\beforeverb\n\\begin{verbatim}\n>>> pickle.dump(12.3, f)\n>>> pickle.dump([1,2,3], f)\n>>> f.close()\n\\end{verbatim}\n\\afterverb\n%\nThen we can open the file for reading and load the data structures\nwe dumped:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"test.pck\",\"r\")\n>>> x = pickle.load(f)\n>>> x\n12.3\n>>> type(x)\n\n>>> y = pickle.load(f)\n>>> y\n[1, 2, 3]\n>>> type(y)\n\n\\end{verbatim}\n\\afterverb\n%\nEach time we invoke {\\tt load}, we get a single value from\nthe file, complete with its original type.\n\n\n\\section{Exceptions}\n\\index{try statement}\n\\index{statement!try}\n\\index{raise exception}\n\\index{handle exception}\n\\index{except statement}\n\\index{statement!except}\n\\index{exception}\n\nWhenever a runtime error occurs, it creates an\n{\\bf exception}. Usually, the program stops and Python\nprints \nan error message.\n\nFor example, dividing by zero creates an exception:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print 55/0\nZeroDivisionError: integer division or modulo\n\\end{verbatim}\n\\afterverb\n%\nSo does accessing a nonexistent list item:\n\n\\beforeverb\n\\begin{verbatim}\n>>> a = []\n>>> print a[5]\nIndexError: list index out of range\n\\end{verbatim}\n\\afterverb\n%\nOr accessing a key that isn't in the dictionary:\n\n\\beforeverb\n\\begin{verbatim}\n>>> b = {}\n>>> print b['what']\nKeyError: what\n\\end{verbatim}\n\\afterverb\n%\nOr trying to open a nonexistent file:\n\n\\beforeverb\n\\begin{verbatim}\n>>> f = open(\"Idontexist\", \"r\")\nIOError: [Errno 2] No such file or directory: 'Idontexist'\n\\end{verbatim}\n\\afterverb\n%\nIn each case, the error\nmessage has two parts: the type of error before\nthe colon, and specifics about the error after the colon.\nNormally Python also prints a traceback of where the program\nwas, but we have omitted that from the examples.\n\n\\index{traceback}\n\nSometimes we want to execute an operation that could cause\nan exception, but we don't want the program to stop. We can\n{\\bf handle} the exception using the {\\tt try} and\n{\\tt except} statements.\n\nFor example, we might prompt the user for the name of a file\nand then try to open it.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4a21db87-f1d9-4f48-97ed-ef89e1c22707": {"__data__": {"id_": "4a21db87-f1d9-4f48-97ed-ef89e1c22707", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935", "node_type": null, "metadata": {}, "hash": "440752e479fc4dedd1ba69410b16d0856ceefc1e0c71b515611ce14d07a4fce9"}, "3": {"node_id": "ff5d255c-4788-45d5-b921-9cca84b2584a", "node_type": null, "metadata": {}, "hash": "d4a3047c021c639998773a0db2ad69874968db10e38ce6d4c4c23e48897df884"}}, "hash": "1539a4e6540a2bca7f8f8836e2e375cd96b6f518168a3ac4db8442cbdee1051e", "text": "If the file doesn't exist, we don't\nwant the program to crash; we want to handle the exception:\n\n\\beforeverb\n\\begin{verbatim}\nfilename = raw_input('Enter a file name: ')\ntry:\n f = open (filename, \"r\")\nexcept IOError:\n print 'There is no file named', filename\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt try} statement executes the statements in the first block.\nIf no exceptions occur, it ignores the {\\tt except} statement. If an\nexception of type {\\tt IOError} occurs, it executes the statements in\nthe {\\tt except} branch and then continues.\n\nWe can encapsulate this capability in a function: {\\tt exists} takes a\nfilename and returns true if the file exists, false if it doesn't:\n\n\\beforeverb\n\\begin{verbatim}\ndef exists(filename):\n try:\n f = open(filename)\n f.close()\n return True\n except IOError:\n return False\n\\end{verbatim}\n\\afterverb\n%\nYou can use multiple {\\tt except} blocks to handle different kinds of\nexceptions. The {\\em Python Reference Manual} has the details.\n\nIf your program detects an error condition, you can make it\n{\\bf raise} an exception. Here is an example that gets input\nfrom the user and checks for the value 17. \nAssuming that 17 is not valid input for some reason, we raise an\nexception.\n\n\\beforeverb\n\\begin{verbatim}\ndef inputNumber () :\n x = input ('Pick a number: ')\n if x == 17 :\n raise ValueError, '17 is a bad number'\n return x\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt raise} statement takes two arguments: the exception type and\nspecific information about the error. {\\tt ValueError} is one of the\nexception types Python provides for a variety of occasions. Other\nexamples include {\\tt TypeError}, {\\tt KeyError}, and my favorite,\n{\\tt NotImplementedError}.\n\nIf the function that called {\\tt inputNumber} handles the error,\nthen the program can continue; otherwise, Python prints the\nerror message and exits:\n\n\\beforeverb\n\\begin{verbatim}\n>>> inputNumber ()\nPick a number: 17\nValueError: 17 is a bad number\n\\end{verbatim}\n\\afterverb\n%\nThe error message includes the exception type and the\nadditional information you provided.\n\n\\begin{quote}\n{\\em As an exercise, write a function that uses {\\tt inputNumber}\nto input a number from the keyboard and that handles the\n{\\tt ValueError} exception.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ff5d255c-4788-45d5-b921-9cca84b2584a": {"__data__": {"id_": "ff5d255c-4788-45d5-b921-9cca84b2584a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "node_type": null, "metadata": {}, "hash": "7826336962347e4f949e64a37c4ade0177fd90bd37cad66a15096f8284c29e4c"}, "2": {"node_id": "4a21db87-f1d9-4f48-97ed-ef89e1c22707", "node_type": null, "metadata": {}, "hash": "1539a4e6540a2bca7f8f8836e2e375cd96b6f518168a3ac4db8442cbdee1051e"}}, "hash": "d4a3047c021c639998773a0db2ad69874968db10e38ce6d4c4c23e48897df884", "text": "\\end{quote}\n\n\n\\section{Glossary}\n\n\\index{file}\n\\index{text file}\n\\index{break statement}\n\\index{statement!break}\n\\index{continue statement}\n\\index{statement!continue}\n\\index{format operator}\n\\index{format string}\n\\index{operator!format}\n\\index{directory}\n\\index{pickle}\n\\index{try}\n\\index{raise exception}\n\\index{raise exception}\n\\index{handle exception}\n\\index{except statement}\n\\index{exception}\n\n\\begin{description}\n\n\\item[file:] A named entity, usually stored on a hard drive, floppy disk,\nor CD-ROM, that contains a stream of characters.\n\n\\item[directory:] A named collection of files, also called a folder.\n\n\\item[path:] A sequence of directory names that specifies the\nexact location of a file.\n\n\\item[text file:] A file that contains printable characters organized\ninto lines separated by newline characters.\n\n\\item[break statement:] A statement that causes the flow of execution\nto exit a loop.\n\n\\item[continue statement:] A statement that causes the current iteration\nof a loop to end. The flow of execution goes to the top of the loop,\nevaluates the condition, and proceeds accordingly.\n\n\\item[format operator:] The {\\tt \\%} operator takes a format\nstring and a tuple of expressions and yields a string that includes\nthe expressions, formatted according to the format string.\n\n\\item[format string:] A string that contains printable characters\nand format sequences that indicate how to format values.\n\n\\item[format sequence:] A sequence of characters beginning with\n{\\tt \\%} that indicates how to format a value.\n\n\\item[pickle:] To write a data value in a file along with its\ntype information so that it can be reconstituted later.\n\n\\item[exception:] An error that occurs at runtime.\n\n\\item[handle:] To prevent an exception from terminating\na program using the {\\tt try}\nand {\\tt except} statements.\n\n\\item[raise:] To signal an exception using the {\\tt raise}\nstatement.\n\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9e3a1ee4-9a16-458d-9d23-3a155e95ef79": {"__data__": {"id_": "9e3a1ee4-9a16-458d-9d23-3a155e95ef79", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "3": {"node_id": "a5376a45-de84-4321-b327-d9e9c6742a8c", "node_type": null, "metadata": {}, "hash": "9d40abf92aabc151deeb50290e5dc23aa7146a691774e27b6b926ae21e5baed7"}}, "hash": "09e2f91ace6e3b0832a4449b8f755d2dd903e4574546a3a5b36e1bd8fe21eb8e", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Classes and objects}\n\\index{class}\n\\index{object}\n\n\n\\section{User-defined compound types}\n\\label{point}\n\\index{compound data type}\n\\index{data type!compound}\n\\index{user-defined data type}\n\\index{data type!user-defined}\n\\index{constructor}\n\nHaving used some of Python's built-in types, we are ready to create a\nuser-defined type: the {\\tt Point}.\n\nConsider the concept of a mathematical point. In two dimensions, a\npoint is two numbers (coordinates) that are treated collectively as a\nsingle object. In mathematical notation, points are often written in\nparentheses with a comma separating the coordinates. For example,\n$(0, 0)$ represents the origin, and $(x, y)$ represents the\npoint $x$ units to the right and $y$ units up from the origin.\n\nA natural way to represent a point in Python is with two\nfloating-point values. The question, then, is how to group these two\nvalues into a compound object. The quick and dirty solution\nis to use a list or tuple, and for some applications that might\nbe the best choice.\n\n\\index{floating-point}\n\nAn alternative is to define a new user-defined compound type, also\ncalled a {\\bf class}. This approach involves a bit more effort, but\nit has advantages that will be apparent soon.\n\nA class definition looks like this:\n\n\\beforeverb\n\\begin{verbatim}\nclass Point:\n pass\n\\end{verbatim}\n\\afterverb\n%\nClass definitions can appear anywhere in a program, but they are\nusually near the beginning (after the {\\tt import} statements). The\nsyntax rules for a class definition are the same as for other compound\nstatements (see Section~\\ref{conditional execution}).\n\nThis definition creates a new class called {\\tt Point}. The\n{\\bf pass} statement has no effect; it is only\nnecessary because a compound statement must have something in its\nbody.\n\nBy creating the {\\tt Point} class, we created a new type, also\ncalled {\\tt Point}. The members of this type are called\n{\\bf instances} of the type or {\\bf objects}. Creating a new instance\nis called {\\bf instantiation}. To instantiate a {\\tt Point} object,\nwe call a function named (you guessed it) {\\tt Point}:\n\n\\index{instance!object}\n\\index{object instance}\n\\index{instantiation}\n\n\\beforeverb\n\\begin{verbatim}\nblank = Point()\n\\end{verbatim}\n\\afterverb\n%\nThe variable {\\tt blank} is assigned a reference to a new\n{\\tt Point} object. A function like {\\tt Point} that creates\nnew objects is called a {\\bf constructor}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a5376a45-de84-4321-b327-d9e9c6742a8c": {"__data__": {"id_": "a5376a45-de84-4321-b327-d9e9c6742a8c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "9e3a1ee4-9a16-458d-9d23-3a155e95ef79", "node_type": null, "metadata": {}, "hash": "09e2f91ace6e3b0832a4449b8f755d2dd903e4574546a3a5b36e1bd8fe21eb8e"}, "3": {"node_id": "87d37a51-fbbf-4575-a224-dfbce78025c6", "node_type": null, "metadata": {}, "hash": "5e6eef98523896bc62410c1c73f53a52920519adc1b12c2ed8bf3ab19827f2d3"}}, "hash": "9d40abf92aabc151deeb50290e5dc23aa7146a691774e27b6b926ae21e5baed7", "text": "\\section{Attributes}\n\\index{attribute}\n\nWe can add new data to an instance using dot notation:\n\n\\beforeverb\n\\begin{verbatim}\n>>> blank.x = 3.0\n>>> blank.y = 4.0\n\\end{verbatim}\n\\afterverb\n%\nThis syntax is similar to the syntax for selecting a variable from a\nmodule, such as {\\tt math.pi} or {\\tt string.uppercase}. In this case,\nthough, we are selecting a data item from an instance. These\nnamed items are called {\\bf attributes}.\n\nThe following state diagram shows the result of these assignments:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/point.eps}}\n\\afterfig\n\nThe variable {\\tt blank} refers to a Point object, which\ncontains two attributes. Each attribute refers to a\nfloating-point number.\n\nWe can read the value of an attribute using the same syntax:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print blank.y\n4.0\n>>> x = blank.x\n>>> print x\n3.0\n\\end{verbatim}\n\\afterverb\n%\nThe expression {\\tt blank.x} means, ``Go to the object {\\tt blank}\nrefers to and get the value of {\\tt x}.'' In this case, we assign that\nvalue to a variable named {\\tt x}. There is no conflict between\nthe variable {\\tt x} and the attribute {\\tt x}. The\npurpose of dot notation is to identify which variable you are\nreferring to unambiguously.\n\nYou can use dot notation as part of any expression, so the following\nstatements are legal:\n\n\\beforeverb\n\\begin{verbatim}\nprint '(' + str(blank.x) + ', ' + str(blank.y) + ')'\ndistanceSquared = blank.x * blank.x + blank.y * blank.y\n\\end{verbatim}\n\\afterverb\n%\nThe first line outputs {\\tt (3.0, 4.0)}; the second line calculates\nthe value 25.0.\n\nYou might be tempted to print the value of {\\tt blank} itself:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print blank\n<__main__.Point instance at 80f8e70>\n\\end{verbatim}\n\\afterverb\n%\nThe result indicates that {\\tt blank} is an instance of the {\\tt\nPoint} class and it was defined in {\\tt \\_\\_main\\_\\_}. {\\tt 80f8e70}\nis the unique identifier for this object, written in hexadecimal (base\n16). This is probably not the most informative way to display a {\\tt\nPoint} object. You will see how to change it shortly.\n\n\\index{printing!object}\n\n\\begin{quote}\n{\\em As an exercise, create and print a {\\tt Point} object, and then\nuse {\\tt id} to print the object's unique identifier.\nTranslate the hexadecimal form into decimal and confirm that they\nmatch.}\n\\end{quote}\n\n\n\\section{Instances as arguments}\n\\index{instance}\n\\index{parameter}\n\nYou can pass an instance as an argument in the usual way.\nFor example:\n\n\\beforeverb\n\\begin{verbatim}\ndef printPoint(p):\n print '(' + str(p.x) + ', ' + str(p.y) + ')'\n\\end{verbatim}\n\\afterverb\n%\n{\\tt printPoint} takes a point as an argument and displays it in\nthe standard format. If you call {\\tt printPoint(blank)}, the\noutput is {\\tt (3.0, 4.0)}.\n\n\\begin{quote}\n{\\em As an exercise, rewrite the {\\tt distance} function from\nSection~\\ref{program development} so that it takes two {\\tt Point}s as\narguments instead of four numbers.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "87d37a51-fbbf-4575-a224-dfbce78025c6": {"__data__": {"id_": "87d37a51-fbbf-4575-a224-dfbce78025c6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "a5376a45-de84-4321-b327-d9e9c6742a8c", "node_type": null, "metadata": {}, "hash": "9d40abf92aabc151deeb50290e5dc23aa7146a691774e27b6b926ae21e5baed7"}, "3": {"node_id": "ddbf5900-58bf-41be-acf1-43b900410da6", "node_type": null, "metadata": {}, "hash": "cf00de856470d0f93df4216db55d35e75ddd0601cddb0ba350c4e8dd9cebf30b"}}, "hash": "5e6eef98523896bc62410c1c73f53a52920519adc1b12c2ed8bf3ab19827f2d3", "text": "\\section{Sameness}\n\\index{sameness}\n\nThe meaning of the word ``same'' seems perfectly clear until you give\nit some thought, and then you realize there is more to it than you\nexpected.\n\n\\index{ambiguity}\n\\index{natural language}\n\\index{language!}\n\nFor example, if you say, ``Chris and I have the same car,'' you mean\nthat his car and yours are the same make and model, but that they are\ntwo different cars. If you say, ``Chris and I have the same mother,''\nyou mean that his mother and yours are the same person.\\footnote{Not all\nlanguages have the same problem. For example, German has different\nwords for different kinds of sameness. ``Same car'' in this context\nwould be ``gleiche Auto,'' and ``same mother'' would be ``selbe\nMutter.''} So the idea of ``sameness'' is different depending on the\ncontext.\n\nWhen you talk about objects, there is a similar ambiguity. For\nexample, if two {\\tt Point}s are the same, does that mean they\ncontain the same data (coordinates) or that they are actually\nthe same object?\n\nTo find out if two references refer to the same object, use\nthe {\\tt is} operator. For example:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p1 = Point()\n>>> p1.x = 3\n>>> p1.y = 4\n>>> p2 = Point()\n>>> p2.x = 3\n>>> p2.y = 4\n>>> p1 is p2\nFalse\n\\end{verbatim}\n\\afterverb\n%\nEven though {\\tt p1} and {\\tt p2} contain the same coordinates,\nthey are not the same object. If we assign {\\tt p1} to\n{\\tt p2}, then the two variables are aliases of the same\nobject:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p2 = p1\n>>> p1 is p2\nTrue\n\\end{verbatim}\n\\afterverb\n%\nThis type of equality is called {\\bf shallow equality} because\nit compares only the references, not the contents of the objects.\n\n\\index{equality}\n\\index{identity}\n\\index{shallow equality}\n\\index{deep equality}\n\nTo compare the contents of the objects---{\\bf deep equality}---we\ncan write a function called {\\tt samePoint}:\n\n\\beforeverb\n\\begin{verbatim}\ndef samePoint(p1, p2) :\n return (p1.x == p2.x) and (p1.y == p2.y)\n\\end{verbatim}\n\\afterverb\n%\nNow if we create two different objects that contain the same\ndata, we can use {\\tt samePoint} to find out if they represent the\nsame point.\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\n>>> p1 = Point()\n>>> p1.x = 3\n>>> p1.y = 4\n>>> p2 = Point()\n>>> p2.x = 3\n>>> p2.y = 4\n>>> samePoint(p1, p2)\nTrue\n\\end{verbatim}\n\\afterverb\n%\nOf course, if the two variables refer to the same object,\nthey have both shallow and deep equality.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ddbf5900-58bf-41be-acf1-43b900410da6": {"__data__": {"id_": "ddbf5900-58bf-41be-acf1-43b900410da6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "87d37a51-fbbf-4575-a224-dfbce78025c6", "node_type": null, "metadata": {}, "hash": "5e6eef98523896bc62410c1c73f53a52920519adc1b12c2ed8bf3ab19827f2d3"}, "3": {"node_id": "98b2ce96-a564-4c85-8471-1014e50c45b1", "node_type": null, "metadata": {}, "hash": "946943857ee755604a90416a5e4b4d33aa5221a2e688316b802a1d7c67dc8ae0"}}, "hash": "cf00de856470d0f93df4216db55d35e75ddd0601cddb0ba350c4e8dd9cebf30b", "text": "\\section{Rectangles}\n\\index{rectangle}\n\nLet's say that we want a class to represent a rectangle. The question\nis, what information do we have to provide in order to specify a\nrectangle? To keep things simple, assume that the rectangle is\noriented either vertically or horizontally, never at an angle.\n\nThere are a few possibilities: we could specify the center of the\nrectangle (two coordinates) and its size (width and height); or we\ncould specify one of the corners and the size; or we could specify two\nopposing corners. A conventional choice is to specify the upper-left\ncorner of the rectangle and the size.\n\nAgain, we'll define a new class:\n\n\\beforeverb\n\\begin{verbatim}\nclass Rectangle:\n pass\n\\end{verbatim}\n\\afterverb\n%\nAnd instantiate it:\n\n\\beforeverb\n\\begin{verbatim}\nbox = Rectangle()\nbox.width = 100.0\nbox.height = 200.0\n\\end{verbatim}\n\\afterverb\n%\nThis code creates a new {\\tt Rectangle} object with two floating-point\nattributes. To specify the upper-left corner, we can embed an\nobject within an object!\n\n\\beforeverb\n\\begin{verbatim}\nbox.corner = Point()\nbox.corner.x = 0.0\nbox.corner.y = 0.0\n\\end{verbatim}\n\\afterverb\n%\nThe dot operator composes. The expression {\\tt box.corner.x} means,\n``Go to the object {\\tt box} refers to and select the attribute named\n{\\tt corner}; then go to that object and select the attribute named\n{\\tt x}.''\n\nThe figure shows the state of this object:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/rectangle.eps}}\n\\afterfig", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "98b2ce96-a564-4c85-8471-1014e50c45b1": {"__data__": {"id_": "98b2ce96-a564-4c85-8471-1014e50c45b1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "ddbf5900-58bf-41be-acf1-43b900410da6", "node_type": null, "metadata": {}, "hash": "cf00de856470d0f93df4216db55d35e75ddd0601cddb0ba350c4e8dd9cebf30b"}, "3": {"node_id": "1146c533-2788-4aa9-a68e-2f129677a095", "node_type": null, "metadata": {}, "hash": "a79d816ddaa242ae78b2fbbb57e01037234551b2ccf808209266b0d06f392cf5"}}, "hash": "946943857ee755604a90416a5e4b4d33aa5221a2e688316b802a1d7c67dc8ae0", "text": "\\section{Instances as return values}\n\\index{instance}\n\\index{return value}\n\nFunctions can return instances. For example, {\\tt findCenter}\ntakes a {\\tt Rectangle} as an argument and returns a {\\tt Point}\nthat contains the coordinates of the center of the {\\tt Rectangle}:\n\n\\beforeverb\n\\begin{verbatim}\ndef findCenter(box):\n p = Point()\n p.x = box.corner.x + box.width/2.0\n p.y = box.corner.y - box.height/2.0\n return p\n\\end{verbatim}\n\\afterverb\n%\nTo call this function, pass {\\tt box} as an argument and assign\nthe result to a variable:\n\n\\beforeverb\n\\begin{verbatim}\n>>> center = findCenter(box)\n>>> printPoint(center)\n(50.0, -100.0)\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{Objects are mutable}\n\\index{object!mutable}\n\\index{mutable!object}\n\nWe can change the state of an object by making an assignment\nto one of its attributes. For example, to change the size\nof a rectangle without changing its position, we could\nmodify the values of {\\tt width} and {\\tt height}:\n\n\\beforeverb\n\\begin{verbatim}\nbox.width = box.width + 50\nbox.height = box.height + 100\n\\end{verbatim}\n\\afterverb\n%\nWe could encapsulate this code in a method and\ngeneralize it to grow the rectangle by any amount:\n\n\\index{encapsulation}\n\\index{generalization}\n\n\\beforeverb\n\\begin{verbatim}\ndef growRect(box, dwidth, dheight) :\n box.width = box.width + dwidth\n box.height = box.height + dheight\n\\end{verbatim}\n\\afterverb\n%\nThe variables {\\tt dwidth} and {\\tt dheight} indicate how much the\nrectangle should grow in each direction. Invoking this method has the\neffect of modifying the {\\tt Rectangle} that is passed as an argument.\n\nFor example, we could create a new {\\tt Rectangle} named {\\tt bob}\nand pass it to {\\tt growRect}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> bob = Rectangle()\n>>> bob.width = 100.0\n>>> bob.height = 200.0\n>>> bob.corner = Point()\n>>> bob.corner.x = 0.0\n>>> bob.corner.y = 0.0\n>>> growRect(bob, 50, 100)\n\\end{verbatim}\n\\afterverb\n%\nWhile {\\tt growRect} is running, the parameter {\\tt box} is an\nalias for {\\tt bob}. Any changes made to {\\tt box} also\naffect {\\tt bob}.\n\n\\begin{quote}\n{\\em As an exercise, write a function named {\\tt moveRect} that takes\na {\\tt Rectangle} and two parameters named {\\tt dx} and {\\tt dy}. It\nshould change the location of the rectangle by adding {\\tt dx}\nto the {\\tt x} coordinate of {\\tt corner} and adding {\\tt dy}\nto the {\\tt y} coordinate of {\\tt corner}.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1146c533-2788-4aa9-a68e-2f129677a095": {"__data__": {"id_": "1146c533-2788-4aa9-a68e-2f129677a095", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "98b2ce96-a564-4c85-8471-1014e50c45b1", "node_type": null, "metadata": {}, "hash": "946943857ee755604a90416a5e4b4d33aa5221a2e688316b802a1d7c67dc8ae0"}, "3": {"node_id": "5501c185-c58a-4ee2-8d66-f373eb14f7f4", "node_type": null, "metadata": {}, "hash": "99e9dfb7a97674614b7624ab714204a731b4d2bb19bcde2408d2b5674c269c50"}}, "hash": "a79d816ddaa242ae78b2fbbb57e01037234551b2ccf808209266b0d06f392cf5", "text": "\\section{Copying}\n\\label{embedded}\n\\index{aliasing}\n\\index{copying}\n\\index{copy module}\n\\index{module!copy}\n\nAliasing can make a program difficult to read because changes\nmade in one place might have unexpected effects in another place.\nIt is hard to keep track of all the variables that might refer\nto a given object.\n\nCopying an object is often an alternative to aliasing.\nThe {\\tt copy} module contains a function called {\\tt copy} that\ncan duplicate any object:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import copy\n>>> p1 = Point()\n>>> p1.x = 3\n>>> p1.y = 4\n>>> p2 = copy.copy(p1)\n>>> p1 == p2\nFalse\n>>> samePoint(p1, p2)\nTrue\n\\end{verbatim}\n\\afterverb\n%\nOnce we import the {\\tt copy} module, we can use the {\\tt copy} method\nto make a new {\\tt Point}. {\\tt p1} and {\\tt p2} are not the\nsame point, but they contain the same data.\n\nTo copy a simple object like a {\\tt Point}, which doesn't\ncontain any embedded objects, {\\tt copy} is sufficient. This is called \n{\\bf shallow copying}.\n\nFor something like a {\\tt Rectangle}, which contains a reference\nto a {\\tt Point}, {\\tt copy} doesn't do quite the right thing. It\ncopies the reference to the {\\tt Point} object, so both the old\n{\\tt Rectangle} and the new one refer to a single {\\tt Point}.\n\n\\index{embedded reference}\n\\index{reference!embedded}\n\nIf we create a box, {\\tt b1}, in the usual way and then make\na copy, {\\tt b2}, using {\\tt copy}, the resulting\nstate diagram looks like this:\n\n\\vspace{0.1in}\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/rectangle2.eps}}\n\\afterfig\n\\vspace{0.1in}\n\nThis is almost certainly not what we want. In this case, invoking\n{\\tt growRect} on one of the {\\tt Rectangles} would not affect\nthe other, but invoking {\\tt moveRect} on either would affect both!\nThis behavior is confusing and error-prone.\n\nFortunately, the {\\tt copy} module contains a method named {\\tt\ndeepcopy} that copies not only the object but also any embedded\nobjects. You will not be surprised to learn that this operation is\ncalled a {\\bf deep copy}.\n\n\\beforeverb\n\\begin{verbatim}\n>>> b2 = copy.deepcopy(b1)\n\\end{verbatim}\n\\afterverb\n%\nNow {\\tt b1} and {\\tt b2} are completely separate objects.\n\nWe can use {\\tt deepcopy} to rewrite {\\tt growRect} so that\ninstead of modifying an existing {\\tt Rectangle}, it creates a new\n{\\tt Rectangle} that has the same location as the old one but new\ndimensions:\n\n\\beforeverb\n\\begin{verbatim}\ndef growRect(box, dwidth, dheight) :\n import copy\n newBox = copy.deepcopy(box)\n newBox.width = newBox.width + dwidth\n newBox.height = newBox.height + dheight\n return newBox\n\\end{verbatim}\n\\afterverb\n%\n\n\\begin{quote}\n{\\em An an exercise, rewrite {\\tt moveRect} so that it creates and\nreturns a new {\\tt Rectangle} instead of modifying the old one.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5501c185-c58a-4ee2-8d66-f373eb14f7f4": {"__data__": {"id_": "5501c185-c58a-4ee2-8d66-f373eb14f7f4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "node_type": null, "metadata": {}, "hash": "0a5b5c31def51af47d686168fbcd18a8eb627fb655d88e86be7e30f597dbed2e"}, "2": {"node_id": "1146c533-2788-4aa9-a68e-2f129677a095", "node_type": null, "metadata": {}, "hash": "a79d816ddaa242ae78b2fbbb57e01037234551b2ccf808209266b0d06f392cf5"}}, "hash": "99e9dfb7a97674614b7624ab714204a731b4d2bb19bcde2408d2b5674c269c50", "text": "\\adjustpage{-2}\n\\pagebreak\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[class:] A user-defined compound type.\nA class can also be thought of\nas a template for the objects that are instances of it.\n\n\\item[instantiate:] To create an instance of a class.\n\n\\item[instance:] An object that belongs to a class.\n\n\\item[object:] A compound data type that is often used to\nmodel a thing or concept in the real world.\n\n\\item[constructor:] A method used to create new objects.\n\n\\item[attribute:] One of the named data items that makes up\nan instance.\n\n\\item[shallow equality:] Equality of references, or two\nreferences that point to the same object.\n\n\\item[deep equality:] Equality of values, or two references\nthat point to objects that have the same value.\n\n\\item[shallow copy:] To copy the contents of an object, including\nany references to embedded objects; implemented by the {\\tt copy}\nfunction in the {\\tt copy} module.\n\n\\item[deep copy:] To copy the contents of an object as well as any\nembedded objects, and any objects embedded in them, and so on;\nimplemented by the {\\tt deepcopy} function in the {\\tt copy} module.\n\n\\index{class}\n\\index{instantiate}\n\\index{instance}\n\\index{object}\n\\index{constructor}\n\\index{attribute}\n\\index{shallow equality}\n\\index{deep equality}\n\\index{shallow copy}\n\\index{deep copy}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7ce69457-887b-4129-bc12-be646345587b": {"__data__": {"id_": "7ce69457-887b-4129-bc12-be646345587b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "node_type": null, "metadata": {}, "hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "3": {"node_id": "a19ef6b2-886a-49f0-972c-adb25d81ea44", "node_type": null, "metadata": {}, "hash": "4baaf7b2aa101a77215f23e189ff222d7b0a287f9ef2eafc57bd72fea437f727"}}, "hash": "ca7c78b3730f011f3219cf582de6261520bd15fb73cc9ac44e08b27091db4c4f", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Classes and functions}\n\\label{time}\n\\index{function}\n\\index{method}\n\n\n\\section{Time}\n\nAs another example of a user-defined type, we'll define a class called\n{\\tt Time} that records the time of day. The class definition looks\nlike this:\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n pass\n\\end{verbatim}\n\\afterverb\n%\nWe can create a new {\\tt Time} object and assign\nattributes for hours, minutes, and seconds:\n\n\\beforeverb\n\\begin{verbatim}\ntime = Time()\ntime.hours = 11\ntime.minutes = 59\ntime.seconds = 30\n\\end{verbatim}\n\\afterverb\n%\nThe state diagram for the {\\tt Time} object looks like this:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/time.eps}}\n\\afterfig\n\n\\begin{quote}\n{\\em As an exercise, write a function {\\tt printTime} that takes a \n{\\tt Time} object\nas an argument and prints it in the form {\\tt hours:minutes:seconds}.}\n\\end{quote}\n\n\\begin{quote}\n{\\em As a second exercise, write a boolean function {\\tt after} that\ntakes two {\\tt Time} objects, {\\tt t1} and {\\tt t2}, as arguments, and\nreturns {\\tt True} if {\\tt t1} follows {\\tt t2} chronologically and\n{\\tt False} otherwise.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a19ef6b2-886a-49f0-972c-adb25d81ea44": {"__data__": {"id_": "a19ef6b2-886a-49f0-972c-adb25d81ea44", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "node_type": null, "metadata": {}, "hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "2": {"node_id": "7ce69457-887b-4129-bc12-be646345587b", "node_type": null, "metadata": {}, "hash": "ca7c78b3730f011f3219cf582de6261520bd15fb73cc9ac44e08b27091db4c4f"}, "3": {"node_id": "914c76dc-6aab-47cf-9ab6-731981d942fe", "node_type": null, "metadata": {}, "hash": "2bb253b03abf79883db91c75870deeed1338862fd3737db7e30c66510f030892"}}, "hash": "4baaf7b2aa101a77215f23e189ff222d7b0a287f9ef2eafc57bd72fea437f727", "text": "\\section{Pure functions}\n\\index{pure function}\n\\index{function type!pure}\n\nIn the next few sections, we'll write two versions of a function\ncalled {\\tt addTime}, which calculates the sum of two {\\tt Time}s.\nThey will demonstrate two kinds of functions: pure functions and\nmodifiers.\n\nThe following is a rough version of {\\tt addTime}:\n\n\\beforeverb\n\\begin{verbatim}\ndef addTime(t1, t2):\n sum = Time()\n sum.hours = t1.hours + t2.hours\n sum.minutes = t1.minutes + t2.minutes\n sum.seconds = t1.seconds + t2.seconds\n return sum\n\\end{verbatim}\n\\afterverb\n%\nThe function creates a new {\\tt Time} object, initializes its\nattributes, and returns a reference to the new object. This is called\na {\\bf pure function} because it does not modify any of the objects\npassed to it as arguments and it has no side effects, such as\ndisplaying a value or getting user input.\n\nHere is an example of how to use this function. We'll create two {\\tt\nTime} objects: {\\tt currentTime}, which contains the current time; and\n{\\tt breadTime}, which contains the amount of time it takes for a\nbreadmaker to make bread. Then we'll use {\\tt addTime} to figure out\nwhen the bread will be done. If you haven't finished writing {\\tt\nprintTime} yet, take a look ahead to Section~\\ref{printTime} before\nyou try this:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time()\n>>> currentTime.hours = 9\n>>> currentTime.minutes = 14\n>>> currentTime.seconds = 30\n\n>>> breadTime = Time()\n>>> breadTime.hours = 3\n>>> breadTime.minutes = 35\n>>> breadTime.seconds = 0\n\n>>> doneTime = addTime(currentTime, breadTime)\n>>> printTime(doneTime)\n\\end{verbatim}\n\\afterverb\n%\nThe output of this program is {\\tt 12:49:30}, which is correct. On the\nother hand, there are cases where the result is not correct. Can you\nthink of one?\n\nThe problem is that this function does not deal with cases where the\nnumber of seconds or minutes adds up to more than sixty. When that\nhappens, we have to ``carry'' the extra seconds into the minutes column\nor the extra minutes into the hours column.\n\nHere's a second corrected version of the function:\n\n\\beforeverb\n\\begin{verbatim}\ndef addTime(t1, t2):\n sum = Time()\n sum.hours = t1.hours + t2.hours\n sum.minutes = t1.minutes + t2.minutes\n sum.seconds = t1.seconds + t2.seconds\n\n if sum.seconds >= 60:\n sum.seconds = sum.seconds - 60\n sum.minutes = sum.minutes + 1\n\n if sum.minutes >= 60:\n sum.minutes = sum.minutes - 60\n sum.hours = sum.hours + 1\n\n return sum\n\\end{verbatim}\n\\afterverb\n%\nAlthough this function is correct, it is starting to get big. Later\nwe will suggest an alternative approach that yields shorter code.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "914c76dc-6aab-47cf-9ab6-731981d942fe": {"__data__": {"id_": "914c76dc-6aab-47cf-9ab6-731981d942fe", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "node_type": null, "metadata": {}, "hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "2": {"node_id": "a19ef6b2-886a-49f0-972c-adb25d81ea44", "node_type": null, "metadata": {}, "hash": "4baaf7b2aa101a77215f23e189ff222d7b0a287f9ef2eafc57bd72fea437f727"}, "3": {"node_id": "935bce25-2dce-433f-a117-7583d47ec888", "node_type": null, "metadata": {}, "hash": "f83432b03f65234a53edb52755f63594d0536a0667d3c4b8da37022fd371562e"}}, "hash": "2bb253b03abf79883db91c75870deeed1338862fd3737db7e30c66510f030892", "text": "\\section{Modifiers}\n\\label{increment}\n\\index{modifier}\n\\index{function type!modifier}\n\nThere are times when it is useful for a function to modify one or more\nof the objects it gets as arguments. Usually, the caller keeps a\nreference to the objects it passes, so any changes the function makes\nare visible to the caller. Functions that work this way are called\n{\\bf modifiers}.\n\n{\\tt increment}, which adds a given number of seconds to a {\\tt Time}\nobject, would be written most naturally as a\nmodifier. A rough draft of the function\nlooks like this:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\ndef increment(time, seconds):\n time.seconds = time.seconds + seconds\n\n if time.seconds >= 60:\n time.seconds = time.seconds - 60\n time.minutes = time.minutes + 1\n\n if time.minutes >= 60:\n time.minutes = time.minutes - 60\n time.hours = time.hours + 1\n\\end{verbatim}\n\\afterverb\n%\nThe first line performs the basic operation; the remainder deals\nwith the special cases we saw before.\n\nIs this function correct? What happens if the parameter {\\tt seconds} is\nmuch greater than sixty? In that case, it is not enough to carry\nonce; we have to keep doing it until {\\tt seconds} is less than sixty.\nOne solution is to\nreplace the {\\tt if} statements with {\\tt while}\nstatements:\n\n\\beforeverb\n\\begin{verbatim}\ndef increment(time, seconds):\n time.seconds = time.seconds + seconds\n\n while time.seconds >= 60:\n time.seconds = time.seconds - 60\n time.minutes = time.minutes + 1\n\n while time.minutes >= 60:\n time.minutes = time.minutes - 60\n time.hours = time.hours + 1\n\\end{verbatim}\n\\afterverb\n%\nThis function is now correct, but it is not the most efficient\nsolution.\n\n\\begin{quote}\n{\\em As an exercise, rewrite this function so that it doesn't contain \nany loops.}\n\\end{quote}\n\n\\begin{quote}\n{\\em As a second exercise, rewrite {\\tt increment} as a pure function, and\nwrite function calls to both versions.}\n\\end{quote}\n\n\n\\section{Which is better?}\n\\index{functional programming style}\n\n\\adjustpage{1}\n\nAnything that can be done with modifiers can also be done with pure\nfunctions. In fact, some programming languages only allow pure\nfunctions. There is some evidence that programs that use pure\nfunctions are faster to develop and less error-prone than programs\nthat use modifiers. Nevertheless, modifiers are convenient at times,\nand in some cases, functional programs are less efficient.\n\nIn general, we recommend that you write pure functions whenever it is\nreasonable to do so and resort to modifiers only if there is a\ncompelling advantage. This approach might be called a {\\bf functional\nprogramming style}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "935bce25-2dce-433f-a117-7583d47ec888": {"__data__": {"id_": "935bce25-2dce-433f-a117-7583d47ec888", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "node_type": null, "metadata": {}, "hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "2": {"node_id": "914c76dc-6aab-47cf-9ab6-731981d942fe", "node_type": null, "metadata": {}, "hash": "2bb253b03abf79883db91c75870deeed1338862fd3737db7e30c66510f030892"}, "3": {"node_id": "51d8576b-7e29-4750-b6b9-0f17693077d5", "node_type": null, "metadata": {}, "hash": "6e1cd873a606730dcbbdac3c8bad1d3343c396891f9e2b9757a9b98f94a85ce3"}}, "hash": "f83432b03f65234a53edb52755f63594d0536a0667d3c4b8da37022fd371562e", "text": "\\section{Prototype development versus planning}\n\\label{convert}\n\\index{prototype development}\n\nIn this chapter, we demonstrated an approach to program\ndevelopment that we call {\\bf prototype development}. In each\ncase, we wrote a rough draft (or prototype) that performed the basic\ncalculation and then tested it on a few cases, correcting flaws as we\nfound them.\n\nAlthough this approach can be effective, it can lead to code that is\nunnecessarily complicated---since it deals with many special\ncases---and unreliable---since it is hard to know if you have found\nall the errors.\n\nAn alternative is {\\bf planned development}, in which high-level insight\ninto the problem can make the programming much easier. In this case,\nthe insight is that a {\\tt Time} object is really a three-digit number\nin base 60! The {\\tt second} component is the ``ones column,'' the\n{\\tt minute} component is the ``sixties column,'' and the {\\tt hour}\ncomponent is the ``thirty-six hundreds column.''\n\nWhen we wrote {\\tt addTime} and {\\tt increment}, we were effectively\ndoing addition in base 60, which is why we had to carry from one\ncolumn to the next.\n\nThis observation suggests another approach to the whole problem---we\ncan convert a {\\tt Time} object into a single number and take\nadvantage of the fact that the computer knows how to do arithmetic\nwith numbers. The following function converts a {\\tt Time}\nobject into an integer:\n\n\\beforeverb\n\\begin{verbatim}\ndef convertToSeconds(t):\n minutes = t.hours * 60 + t.minutes\n seconds = minutes * 60 + t.seconds\n return seconds\n\\end{verbatim}\n\\afterverb\n%\nNow, all we need is a way to convert from an integer to a {\\tt Time}\nobject:\n\n\\adjustpage{1}\n\n\\beforeverb\n\\begin{verbatim}\ndef makeTime(seconds):\n time = Time()\n time.hours = seconds // 3600\n time.minutes = (seconds%3600) // 60\n time.seconds = seconds%60\n return time\n\\end{verbatim}\n\\afterverb\n%\nYou might have to think a bit to convince yourself that this function\nis correct. Assuming you are convinced, you can use it and\n{\\tt convertToSeconds}\nto rewrite {\\tt addTime}:\n\n\\beforeverb\n\\begin{verbatim}\ndef addTime(t1, t2):\n seconds = convertToSeconds(t1) + convertToSeconds(t2)\n return makeTime(seconds)\n\\end{verbatim}\n\\afterverb\n%\nThis version is much shorter than the original, and it is much easier to\ndemonstrate that it is correct.\n\n\\begin{quote}\n{\\em As an exercise, rewrite {\\tt increment} the same way.}\n\\end{quote}\n\n\n\\section{Generalization}\n\\index{generalization}\n\nIn some ways, converting from base 60 to base 10 and back is harder\nthan just dealing with times. Base conversion is more abstract; our\nintuition for dealing with times is better.\n\nBut if we have the insight to treat times as base 60 numbers and make\nthe investment of writing the conversion functions ({\\tt\nconvertToSeconds} and {\\tt makeTime}), we get a program that is\nshorter, easier to read and debug, and more reliable.\n\nIt is also easier to add features later. For example, imagine\nsubtracting two {\\tt Time}s to find the duration between them. The\nna\\\"{\\i}ve approach would be to implement subtraction with borrowing.\nUsing the conversion functions would be easier and more likely to be\ncorrect.\n\nIronically, sometimes making a problem harder (or more general) makes it\neasier (because there are fewer special cases and fewer opportunities\nfor error).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "51d8576b-7e29-4750-b6b9-0f17693077d5": {"__data__": {"id_": "51d8576b-7e29-4750-b6b9-0f17693077d5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "node_type": null, "metadata": {}, "hash": "05a1e2b7fecdfcc0cff6fba1318a82c4e45728db6cccbaca5cdb52d57ba9d74f"}, "2": {"node_id": "935bce25-2dce-433f-a117-7583d47ec888", "node_type": null, "metadata": {}, "hash": "f83432b03f65234a53edb52755f63594d0536a0667d3c4b8da37022fd371562e"}}, "hash": "6e1cd873a606730dcbbdac3c8bad1d3343c396891f9e2b9757a9b98f94a85ce3", "text": "\\section{Algorithms}\n\\index{algorithm}\n\nWhen you write a general solution for a class of problems, as opposed\nto a specific solution to a single problem, you have written an {\\bf\nalgorithm}. We mentioned this word before but did not define it\ncarefully. It is not easy to define, so we will try a couple of\napproaches.\n\nFirst, consider something that is not an algorithm. When you learned\nto multiply single-digit numbers, you probably memorized the\nmultiplication table. In effect, you memorized 100 specific solutions.\nThat kind of knowledge is not algorithmic.\n\nBut if you were ``lazy,'' you probably cheated by learning a few\ntricks. For example, to find the product of $n$ and 9, you can\nwrite $n-1$ as the first digit and $10-n$ as the second\ndigit. This trick is a general solution for multiplying any\nsingle-digit number by 9. That's an algorithm!\n\nSimilarly, the techniques you learned for addition with carrying,\nsubtraction with borrowing, and long division are all algorithms. One\nof the characteristics of algorithms is that they do not require any\nintelligence to carry out. They are mechanical processes in which\neach step follows from the last according to a simple set of rules.\n\nIn our opinion, it is embarrassing that humans spend so much time in\nschool learning to execute algorithms that, quite literally, require\nno intelligence.\n\nOn the other hand, the process of designing algorithms is interesting,\nintellectually challenging, and a central part of what we call\nprogramming.\n\nSome of the things that people do naturally, without difficulty or\nconscious thought, are the hardest to express algorithmically.\nUnderstanding natural language is a good example. We all do it, but\nso far no one has been able to explain {\\em how} we do it, at least\nnot in the form of an algorithm.\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[pure function:] A function that does not modify any of the objects it\nreceives as arguments. Most pure functions are fruitful.\n\n\\item[modifier:] A function that changes one or more of the objects it\nreceives as arguments. Most modifiers are fruitless.\n\n\\item[functional programming style:] A style of program design in which the\nmajority of functions are pure.\n\n\\item[prototype development:] A way of developing programs starting with a\nprototype and gradually testing and improving it.\n\n\\item[planned development:] A way of developing programs that involves\nhigh-level insight into the problem and more planning than incremental\ndevelopment or prototype development.\n\n\\item[algorithm:] A set of instructions for solving a class of problems by a\nmechanical, unintelligent process.\n\n\\index{pure function}\n\\index{modifier}\n\\index{functional programming style}\n\\index{incremental development}\n\\index{development!incremental}\n\\index{planned development}\n\\index{development!planned}\n\\index{algorithm}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "55da5c49-c77a-4ce6-bd25-70b055db9658": {"__data__": {"id_": "55da5c49-c77a-4ce6-bd25-70b055db9658", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "3": {"node_id": "ba390c38-cbab-4d5e-8737-21c68d6599e7", "node_type": null, "metadata": {}, "hash": "1a5a9aa0002ddef1d1557bf29f583276843c7d92c259e266efcec81402c206de"}}, "hash": "3d3ad5040d68562d80881264221853bee312c95716209c65eeb1dae802613120", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Classes and methods}\n\n\n\\section{Object-oriented features}\n\\index{object-oriented programming language}\n\\index{object-oriented programming}\n\nPython is an {\\bf object-oriented programming language}, which means\nthat it provides features that support {\\bf object-oriented\nprogramming}.\n\nIt is not easy to define object-oriented programming, but we have\nalready seen some of its characteristics:\n\n\\begin{itemize}\n\n\\item Programs are made up of object definitions and function\ndefinitions, and most of the computation is expressed in terms\nof operations on objects.\n\n\\item Each object definition corresponds to some object or concept\nin the real world, and the functions that operate on that object\ncorrespond to the ways real-world objects interact.\n\n\\end{itemize}\n\nFor example, the {\\tt Time} class defined in Chapter~\\ref{time}\ncorresponds to the way people record the time of day, and the\nfunctions we defined correspond to the kinds of things people do with\ntimes. Similarly, the {\\tt Point} and {\\tt Rectangle} classes\ncorrespond to the mathematical concepts of a point and a rectangle.\n\nSo far, we have not taken advantage of the features Python provides to\nsupport object-oriented programming. Strictly speaking, these features are\nnot necessary. For the most part, they provide an alternative syntax\nfor things we have already done, but in many cases, the\nalternative is more concise and more accurately conveys the structure of\nthe program.\n\nFor example, in the {\\tt Time} program, there is no obvious\nconnection between the class definition and the function definitions\nthat follow. With some examination, it is apparent that every function\ntakes at least one {\\tt Time} object as an argument.\n\nThis observation is the motivation for {\\bf methods}. We have already\nseen some methods, such as {\\tt keys} and {\\tt values}, which were\ninvoked on dictionaries. Each method is associated with a class and is\nintended to be invoked on instances of that class.\n\n\\index{method}\n\\index{function}\n\\index{instance!object}\n\\index{object instance}\n\nMethods are just like functions, with\ntwo differences:\n\n\\begin{itemize}\n\n\\item Methods are defined inside a class definition in order\nto make the relationship between the class and the method explicit.\n\n\\item The syntax for invoking a method is different from the\nsyntax for calling a function.\n\n\\end{itemize}\n\nIn the next few sections, we will take the functions from the previous\ntwo chapters and transform them into methods. This transformation is\npurely mechanical; you can do it simply by following a sequence of\nsteps. If you are comfortable converting from one form to another,\nyou will be able to choose the best form for whatever you are doing.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ba390c38-cbab-4d5e-8737-21c68d6599e7": {"__data__": {"id_": "ba390c38-cbab-4d5e-8737-21c68d6599e7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "55da5c49-c77a-4ce6-bd25-70b055db9658", "node_type": null, "metadata": {}, "hash": "3d3ad5040d68562d80881264221853bee312c95716209c65eeb1dae802613120"}, "3": {"node_id": "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107", "node_type": null, "metadata": {}, "hash": "3894241940c94a0e32a0e323c09a4bba1e11147200eba206597d7efdc1456b7b"}}, "hash": "1a5a9aa0002ddef1d1557bf29f583276843c7d92c259e266efcec81402c206de", "text": "\\section{{\\tt printTime}}\n\\label{printTime}\n\\index{printing!object}\n\nIn Chapter~\\ref{time}, we defined a class named\n{\\tt Time} and you wrote a function named {\\tt printTime}, which\nshould have looked something like this:\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n pass\n\ndef printTime(time):\n print str(time.hours) + \":\" + \\\n str(time.minutes) + \":\" + \\\n str(time.seconds)\n\\end{verbatim}\n\\afterverb\n%\nTo call this function, we passed a {\\tt Time} object as an argument:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time()\n>>> currentTime.hours = 9\n>>> currentTime.minutes = 14\n>>> currentTime.seconds = 30\n>>> printTime(currentTime)\n\\end{verbatim}\n\\afterverb\n%\nTo make {\\tt printTime} a method, all we have to do is\nmove the function definition inside the class definition. Notice\nthe change in indentation.\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n def printTime(time):\n print str(time.hours) + \":\" + \\\n str(time.minutes) + \":\" + \\\n str(time.seconds)\n\\end{verbatim}\n\\afterverb\n%\nNow we can invoke {\\tt printTime} using dot notation.\n\n\\index{dot notation}\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime.printTime()\n\\end{verbatim}\n\\afterverb\n%\nAs usual, the object on which the method is invoked appears\nbefore the dot and the\nname of the method appears after the dot.\n\nThe object on which the method is invoked is assigned to the\nfirst parameter, so in this case {\\tt currentTime} is assigned\nto the parameter {\\tt time}.\n\nBy convention, the first parameter of a method is\ncalled {\\tt self}. The reason for this is a little\nconvoluted, but it is based on a useful metaphor.\n\nThe syntax for a function call, {\\tt printTime(currentTime)},\nsuggests that the function is the active agent. It says\nsomething like, ``Hey {\\tt printTime}! Here's an object for\nyou to print.''\n\nIn object-oriented programming, the objects are the active\nagents. An invocation like {\\tt currentTime.printTime()}\nsays ``Hey {\\tt currentTime}! Please print yourself!''\n\nThis change in perspective might be more polite, but\nit is not obvious that it is useful. In the examples we\nhave seen so far, it may not be. But sometimes shifting\nresponsibility from the functions onto the objects\nmakes it possible to write more versatile functions,\nand makes it easier to maintain and reuse code.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107": {"__data__": {"id_": "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "ba390c38-cbab-4d5e-8737-21c68d6599e7", "node_type": null, "metadata": {}, "hash": "1a5a9aa0002ddef1d1557bf29f583276843c7d92c259e266efcec81402c206de"}, "3": {"node_id": "b62efdf3-cde0-49ba-a7d5-68d8a09f3118", "node_type": null, "metadata": {}, "hash": "8b2375437d05a095f1c85fe363b70772b135362e793a36290f674c50e64483f4"}}, "hash": "3894241940c94a0e32a0e323c09a4bba1e11147200eba206597d7efdc1456b7b", "text": "\\section{Another example}\n\nLet's convert {\\tt increment} (from Section~\\ref{increment}) to a\nmethod. To save space, we will leave out previously defined methods,\nbut you should keep them in your version:\n\n\\adjustpage{-1}\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n #previous method definitions here...\n\n def increment(self, seconds):\n self.seconds = seconds + self.seconds\n\n while self.seconds >= 60:\n self.seconds = self.seconds - 60\n self.minutes = self.minutes + 1\n\n while self.minutes >= 60:\n self.minutes = self.minutes - 60\n self.hours = self.hours + 1\n\\end{verbatim}\n\\afterverb\n%\nThe transformation is purely mechanical---we move the method\ndefinition into the class definition and change the name of the first\nparameter.\n\nNow we can invoke {\\tt increment} as a method.\n\n\\beforeverb\n\\begin{verbatim}\ncurrentTime.increment(500)\n\\end{verbatim}\n\\afterverb\n%\nAgain, the object on which the method is invoked gets assigned\nto the first parameter, {\\tt self}. The second parameter,\n{\\tt seconds} gets the value {\\tt 500}.\n\n\\begin{quote}\n{\\em As an exercise, convert {\\tt convertToSeconds} \n(from Section~\\ref{convert}) to a method in the\n{\\tt Time} class.}\n\\end{quote}\n\n\n\\section{A more complicated example}\n\nThe {\\tt after} function is slightly more complicated because it\noperates on two {\\tt Time} objects, not just one. We can only convert\none of the parameters to {\\tt self}; the other stays the same:\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n #previous method definitions here...\n\n def after(self, time2):\n if self.hour > time2.hour:\n return 1\n if self.hour < time2.hour:\n return 0\n\n if self.minute > time2.minute:\n return 1\n if self.minute < time2.minute:\n return 0\n\n if self.second > time2.second:\n return 1\n return 0\n\\end{verbatim}\n\\afterverb\n%\nWe invoke this method on one object and pass the other as an argument:\n\n\\beforeverb\n\\begin{verbatim}\nif doneTime.after(currentTime):\n print \"The bread is not done yet.\"\n\\end{verbatim}\n\\afterverb\n%\nYou can almost read the invocation like English: ``If the done-time is\nafter the current-time, then...''", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b62efdf3-cde0-49ba-a7d5-68d8a09f3118": {"__data__": {"id_": "b62efdf3-cde0-49ba-a7d5-68d8a09f3118", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107", "node_type": null, "metadata": {}, "hash": "3894241940c94a0e32a0e323c09a4bba1e11147200eba206597d7efdc1456b7b"}, "3": {"node_id": "63f94e80-9f22-4700-ae0d-393029b21a47", "node_type": null, "metadata": {}, "hash": "2f9299287a3afeaf3b2def0068bf39ce1eca2146b935474248cf094e47c86b99"}}, "hash": "8b2375437d05a095f1c85fe363b70772b135362e793a36290f674c50e64483f4", "text": "\\section{Optional arguments}\n\nWe have seen built-in functions that take a variable number of\narguments. For example, {\\tt string.find} can take two, three, or\nfour arguments.\n\nIt is possible to write user-defined functions with optional argument\nlists. For example, we can upgrade our own version of {\\tt find} to do\nthe same thing as {\\tt string.find}.\n\nThis is the original version from Section~\\ref{find}:\n\n\\beforeverb\n\\begin{verbatim}\ndef find(str, ch):\n index = 0\n while index < len(str):\n if str[index] == ch:\n return index\n index = index + 1\n return -1\n\\end{verbatim}\n\\afterverb\n%\nThis is the new and improved version:\n\n\\beforeverb\n\\begin{verbatim}\ndef find(str, ch, start=0):\n index = start\n while index < len(str):\n if str[index] == ch:\n return index\n index = index + 1\n return -1\n\\end{verbatim}\n\\afterverb\n%\nThe third parameter, {\\tt start}, is optional because a default value,\n{\\tt 0}, is provided. If we invoke {\\tt find} with only two\narguments, it uses the default value and starts from the beginning of\nthe string:\n\n\\beforeverb\n\\begin{verbatim}\n>>> find(\"apple\", \"p\")\n1\n\\end{verbatim}\n\\afterverb\n%\nIf we provide a third argument, it {\\bf overrides} the default:\n\n\\beforeverb\n\\begin{verbatim}\n>>> find(\"apple\", \"p\", 2)\n2\n>>> find(\"apple\", \"p\", 3)\n-1\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, add a fourth parameter, {\\tt end}, that specifies where\nto stop looking.\n\nWarning: This exercise is a bit tricky. The default value of\n{\\tt end} should be {\\tt len(str)}, but that doesn't work. The\ndefault values are evaluated when the function is defined, not when it\nis called. When {\\tt find} is defined, {\\tt str} doesn't exist yet,\nso you can't find its length.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "63f94e80-9f22-4700-ae0d-393029b21a47": {"__data__": {"id_": "63f94e80-9f22-4700-ae0d-393029b21a47", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "b62efdf3-cde0-49ba-a7d5-68d8a09f3118", "node_type": null, "metadata": {}, "hash": "8b2375437d05a095f1c85fe363b70772b135362e793a36290f674c50e64483f4"}, "3": {"node_id": "51feec6d-2627-4b9e-a339-7524953b135c", "node_type": null, "metadata": {}, "hash": "25019c40bdb85ee5999eedd9249928dfff52668c73bda9c1fe41d1be4c625a8a"}}, "hash": "2f9299287a3afeaf3b2def0068bf39ce1eca2146b935474248cf094e47c86b99", "text": "\\section{The initialization method}\n\\index{initialization method}\n\\index{method!initialization}\n\nThe {\\bf initialization method} is\na special method that is invoked when an object is created. The name\nof this method is {\\tt \\_\\_init\\_\\_} (two underscore characters,\nfollowed by {\\tt init}, and then two more underscores). An\ninitialization method for the {\\tt Time} class looks like this:\n\n\\beforeverb\n\\begin{verbatim}\nclass Time:\n def __init__(self, hours=0, minutes=0, seconds=0):\n self.hours = hours\n self.minutes = minutes\n self.seconds = seconds\n\\end{verbatim}\n\\afterverb\n%\nThere is no conflict between the attribute {\\tt self.hours}\nand the parameter {\\tt hours}. Dot notation specifies which\nvariable we are referring to.\n\n\\index{dot notation}\n\nWhen we invoke the {\\tt Time} constructor, the arguments we provide\nare passed along to {\\tt init}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time(9, 14, 30)\n>>> currentTime.printTime()\n9:14:30\n\\end{verbatim}\n\\afterverb\n%\nBecause the arguments are optional, we can omit them:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time()\n>>> currentTime.printTime()\n0:0:0\n\\end{verbatim}\n\\afterverb\n%\nOr provide only the first:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time (9)\n>>> currentTime.printTime()\n9:0:0\n\\end{verbatim}\n\\afterverb\n%\nOr the first two:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time (9, 14)\n>>> currentTime.printTime()\n9:14:0\n\\end{verbatim}\n\\afterverb\n%\nFinally, we can make assignments to a subset of the\nparameters by naming them explicitly:\n\n\\beforeverb\n\\begin{verbatim}\n>>> currentTime = Time(seconds = 30, hours = 9)\n>>> currentTime.printTime()\n9:0:30\n\\end{verbatim}\n\\afterverb\n%\n\n\\section{Points revisited}\n\\index{Point class}\n\\index{class!Point}\n\nLet's rewrite the {\\tt Point} class from\nSection~\\ref{point} in a more object-oriented style:\n\n\\beforeverb\n\\begin{verbatim}\nclass Point:\n def __init__(self, x=0, y=0):\n self.x = x\n self.y = y\n\n def __str__(self):\n return '(' + str(self.x) + ', ' + str(self.y) + ')'\n\\end{verbatim}\n\\afterverb\n%\nThe initialization method\ntakes $x$ and $y$ values as optional parameters;\nthe default for either parameter is 0.\n\nThe next method, {\\tt \\_\\_str\\_\\_}, returns a string representation\nof a {\\tt Point} object.\nIf a class provides a method named {\\tt \\_\\_str\\_\\_}, it\noverrides the default behavior of the Python built-in {\\tt str} function.\n\n\\beforeverb\n\\begin{verbatim}\n>>> p = Point(3, 4)\n>>> str(p)\n'(3, 4)'\n\\end{verbatim}\n\\afterverb\n%\nPrinting a {\\tt Point} object implicitly invokes {\\tt \\_\\_str\\_\\_} on\nthe object, so defining {\\tt \\_\\_str\\_\\_} also changes the behavior of\n{\\tt print}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p = Point(3, 4)\n>>> print p\n(3, 4)\n\\end{verbatim}\n\\afterverb\n%\nWhen we write a new class, we almost always start by writing {\\tt\n\\_\\_init\\_\\_}, which makes it easier to instantiate objects, and {\\tt\n\\_\\_str\\_\\_}, which is almost always useful for debugging.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "51feec6d-2627-4b9e-a339-7524953b135c": {"__data__": {"id_": "51feec6d-2627-4b9e-a339-7524953b135c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "63f94e80-9f22-4700-ae0d-393029b21a47", "node_type": null, "metadata": {}, "hash": "2f9299287a3afeaf3b2def0068bf39ce1eca2146b935474248cf094e47c86b99"}, "3": {"node_id": "02835535-81cb-4b99-9c36-7f722fe56e53", "node_type": null, "metadata": {}, "hash": "b24b0bd67833645a1ebfccdb6e6e85a50c281f1938fe87df5f5c58209c41ae47"}}, "hash": "25019c40bdb85ee5999eedd9249928dfff52668c73bda9c1fe41d1be4c625a8a", "text": "\\section{Operator overloading}\n\\label{operator overloading}\n\\index{operator overloading}\n\\index{operator!overloading}\n\\index{dot product}\n\\index{scalar multiplication}\n\nSome languages make it possible to change the definition of the\nbuilt-in operators when they are applied to user-defined types. This\nfeature is called {\\bf operator overloading}. It is especially useful when\ndefining new mathematical types.\n\nFor example, to override the addition operator {\\tt +}, we\nprovide a method named {\\tt \\_\\_add\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Point:\n # previously defined methods here...\n\n def __add__(self, other):\n return Point(self.x + other.x, self.y + other.y)\n\\end{verbatim}\n\\afterverb\n%\nAs usual, the first parameter is the object on which the method is\ninvoked. The second parameter is conveniently named {\\tt other}\nto distinguish it from {\\tt self}. To add two {\\tt Point}s, we create\nand return a new {\\tt Point} that contains the sum of the\n$x$ coordinates and the sum of the $y$ coordinates.\n\nNow, when we apply the {\\tt +} operator to {\\tt Point} objects, Python\ninvokes {\\tt \\_\\_add\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p1 = Point(3, 4)\n>>> p2 = Point(5, 7)\n>>> p3 = p1 + p2\n>>> print p3\n(8, 11)\n\\end{verbatim}\n\\afterverb\n%\nThe expression {\\tt p1 + p2} is equivalent to\n{\\tt p1.\\_\\_add\\_\\_(p2)}, but obviously more elegant.\n\n\\begin{quote}\n{\\em As an exercise, add a method {\\tt \\_\\_sub\\_\\_(self, other)} that\noverloads the subtraction operator, and try it out.}\n\\end{quote}\n\nThere are several ways to override the behavior of the\nmultiplication operator: by defining a method named\n{\\tt \\_\\_mul\\_\\_}, or {\\tt \\_\\_rmul\\_\\_}, or both.\n\nIf the left operand of {\\tt *} is a {\\tt Point}, Python invokes\n{\\tt \\_\\_mul\\_\\_}, which assumes that the other operand is also\na {\\tt Point}. It computes the {\\bf dot product} of the two\npoints, defined according to the rules of linear algebra:\n\n\\beforeverb\n\\begin{verbatim}\ndef __mul__(self, other):\n return self.x * other.x + self.y * other.y\n\\end{verbatim}\n\\afterverb\n%\nIf the left operand of {\\tt *} is a primitive type and the right\noperand is a {\\tt Point}, Python invokes {\\tt \\_\\_rmul\\_\\_}, which\nperforms {\\bf scalar multiplication}:\n\n\\beforeverb\n\\begin{verbatim}\ndef __rmul__(self, other):\n return Point(other * self.x, other * self.y)\n\\end{verbatim}\n\\afterverb\n%\nThe result is a new {\\tt Point} whose coordinates are a multiple\nof the original coordinates. If {\\tt other} is a type that cannot\nbe multiplied by a floating-point number, then\n{\\tt \\_\\_rmul\\_\\_} will yield an error.\n\nThis example demonstrates both kinds of multiplication:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p1 = Point(3, 4)\n>>> p2 = Point(5, 7)\n>>> print p1 * p2\n43\n>>> print 2 * p2\n(10, 14)\n\\end{verbatim}\n\\afterverb\n%\nWhat happens if we try to evaluate {\\tt p2 * 2}? Since\nthe first operand is a {\\tt Point}, Python invokes\n{\\tt \\_\\_mul\\_\\_} with {\\tt 2} as the second argument.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "02835535-81cb-4b99-9c36-7f722fe56e53": {"__data__": {"id_": "02835535-81cb-4b99-9c36-7f722fe56e53", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "51feec6d-2627-4b9e-a339-7524953b135c", "node_type": null, "metadata": {}, "hash": "25019c40bdb85ee5999eedd9249928dfff52668c73bda9c1fe41d1be4c625a8a"}, "3": {"node_id": "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b", "node_type": null, "metadata": {}, "hash": "0c3b580fa3ef72e5ff87d9b928d55c2dd65960e707d43cd58f02fef5121d1ae9"}}, "hash": "b24b0bd67833645a1ebfccdb6e6e85a50c281f1938fe87df5f5c58209c41ae47", "text": "Inside {\\tt \\_\\_mul\\_\\_}, the program tries to access the {\\tt x}\ncoordinate of {\\tt other}, which fails because\nan integer has no attributes:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print p2 * 2\nAttributeError: 'int' object has no attribute 'x'\n\\end{verbatim}\n\\afterverb\n%\nUnfortunately, the error message is a bit opaque. This example\ndemonstrates some of the difficulties of object-oriented programming.\nSometimes it is hard enough just to figure out what code is running.\n\nFor a more complete example of operator overloading, see\nAppendix~\\ref{overloading}.\n\n\n\\section{Polymorphism}\n\\index{polymorphism}\n\nMost of the methods we have written only work for a specific\ntype. When you create a new object, you write methods that operate\non that type.\n\nBut there are certain operations that you will want to apply to many\ntypes, such as the arithmetic operations in the previous sections.\nIf many types support the same set of operations, you\ncan write functions that work on any of those types.\n\nFor example, the {\\tt multadd} operation (which is common in\nlinear algebra) takes three arguments; it multiplies the first\ntwo and then adds the third. We can write it in Python like\nthis:\n\n\\beforeverb\n\\begin{verbatim}\ndef multadd (x, y, z):\n return x * y + z\n\\end{verbatim}\n\\afterverb\n%\nThis method will work for any values of {\\tt x} and {\\tt y}\nthat can be multiplied and for any value of {\\tt z} that can be\nadded to the product.\n\nWe can invoke it with numeric values:\n\n\\beforeverb\n\\begin{verbatim}\n>>> multadd (3, 2, 1)\n7\n\\end{verbatim}\n\\afterverb\n%\nOr with {\\tt Point}s:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p1 = Point(3, 4)\n>>> p2 = Point(5, 7)\n>>> print multadd (2, p1, p2)\n(11, 15)\n>>> print multadd (p1, p2, 1)\n44\n\\end{verbatim}\n\\afterverb\n%\nIn the first case, the {\\tt Point} is multiplied by a scalar\nand then added to another {\\tt Point}.\nIn the second case, the dot product yields a numeric\nvalue, so the third argument also has to be a numeric value.\n\nA function like this that can take arguments with different\ntypes is called {\\bf polymorphic}.\n\nAs another example, consider the method {\\tt frontAndBack},\nwhich prints a list twice, forward and backward:\n\n\\beforeverb\n\\begin{verbatim}\ndef frontAndBack(front):\n import copy\n back = copy.copy(front)\n back.reverse()\n print str(front) + str(back)\n\\end{verbatim}\n\\afterverb\n%\nBecause the {\\tt reverse} method is a modifier, we make a copy\nof the list before reversing it. That way, this method doesn't\nmodify the list it gets as an argument.\n\nHere's an example that applies {\\tt frontAndBack} to a list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> myList = [1, 2, 3, 4]\n>>> frontAndBack(myList)\n[1, 2, 3, 4][4, 3, 2, 1]\n\\end{verbatim}\n\\afterverb\n%\nOf course, we intended to apply this function to lists, so\nit is not surprising that it works.\nWhat would be surprising is if we could apply it to a {\\tt Point}.\n\nTo determine whether a function can be applied to a new type,\nwe apply the fundamental rule of polymorphism:\n\n\\begin{quote}\n{\\bf If all of the operations inside the function can be applied\nto the type, the function can be applied to the type.}\n\\end{quote}\n\nThe operations in the method include {\\tt copy}, {\\tt reverse}, and\n{\\tt print}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b": {"__data__": {"id_": "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "366d85d8-9b45-40c4-992e-849cf65da266", "node_type": null, "metadata": {}, "hash": "e7dba67f7b63caf9ad5ee7f43f9b5c8f2b26ab0df48ef4ce2802f24f66c670a6"}, "2": {"node_id": "02835535-81cb-4b99-9c36-7f722fe56e53", "node_type": null, "metadata": {}, "hash": "b24b0bd67833645a1ebfccdb6e6e85a50c281f1938fe87df5f5c58209c41ae47"}}, "hash": "0c3b580fa3ef72e5ff87d9b928d55c2dd65960e707d43cd58f02fef5121d1ae9", "text": "{\\tt copy} works on any object, and we have already written\na {\\tt \\_\\_str\\_\\_} method for {\\tt Point}s, so all we need\nis a {\\tt reverse} method in the {\\tt Point} class:\n\n\\beforeverb\n\\begin{verbatim}\ndef reverse(self):\n self.x , self.y = self.y, self.x\n\\end{verbatim}\n\\afterverb\n%\nThen we can pass {\\tt Point}s to {\\tt frontAndBack}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> p = Point(3, 4)\n>>> frontAndBack(p)\n(3, 4)(4, 3)\n\\end{verbatim}\n\\afterverb\n%\nThe best kind of polymorphism is the unintentional kind, where\nyou discover that a function you have already written can be\napplied to a type for which you never planned.\n\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[object-oriented language:] A language that provides\nfeatures, such as user-defined classes and inheritance, that facilitate\nobject-oriented programming.\n\n\\item[object-oriented programming:] A style of programming in which\ndata and the operations that manipulate it are organized into classes\nand methods.\n\n\\item[method:] A function that is defined inside a class definition and\nis invoked on instances of that class.\n\n\\item[override:] To replace a default. Examples include replacing a default\nvalue with a particular argument and replacing a default method\nby providing a new method with the same name.\n\n\\item[initialization method:] A special method that is invoked automatically\nwhen a new object is created and that initializes the object's attributes.\n\n\\item[operator overloading:] Extending built-in operators\n({\\tt +}, {\\tt -}, {\\tt *}, {\\tt >}, {\\tt <}, etc.) so that they work\nwith user-defined types.\n\n\\item[dot product:] An operation defined in linear algebra that\nmultiplies two {\\tt Point}s and yields a numeric value.\n\n\\item[scalar multiplication:] An operation defined in linear algebra that\nmultiplies each of the coordinates of a {\\tt Point} by a numeric\nvalue.\n\n\\item[polymorphic:] A function that can operate on more than one\ntype. If all the operations in a function can be\napplied to a type, then the function can be applied to a type.\n\n\n\\index{object-oriented programming language}\n\\index{method}\n\\index{initialization method}\n\\index{override}\n\\index{overloading}\n\\index{operator overloading}\n\\index{dot product}\n\\index{scalar multiplication}\n\\index{polymorphic}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d428515b-e422-458d-bb7c-b19c19acc64f": {"__data__": {"id_": "d428515b-e422-458d-bb7c-b19c19acc64f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "3": {"node_id": "4dc159c0-87f3-4130-8b29-fa95cb66e1bc", "node_type": null, "metadata": {}, "hash": "d6eb1ce3dcd65d3816205f481b4326b92c4ad584347d4c0405b190ae8a15ca0a"}}, "hash": "ce9cc4d7f158e93fd0695065adee00f2cabf8bf698da3b12604b526fd0bdd429", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Sets of objects}\n\n\\section{Composition}\n\\index{composition}\n\\index{nested structure}\n\nBy now, you have seen several examples of composition.\nOne of the\nfirst examples was using a method invocation as part of an\nexpression. Another example is the nested structure of statements;\nyou can put an {\\tt if} statement within a {\\tt while} loop, within\nanother {\\tt if} statement, and so on.\n\nHaving seen this pattern, and having learned about lists and objects,\nyou should not be surprised to learn that you can create lists of\nobjects. You can also create objects that contain lists (as\nattributes); you can create lists that contain lists; you can\ncreate objects that contain objects; and so on.\n\nIn this chapter and the next, we will look at some examples of these\ncombinations, using {\\tt Card} objects as an example.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4dc159c0-87f3-4130-8b29-fa95cb66e1bc": {"__data__": {"id_": "4dc159c0-87f3-4130-8b29-fa95cb66e1bc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "d428515b-e422-458d-bb7c-b19c19acc64f", "node_type": null, "metadata": {}, "hash": "ce9cc4d7f158e93fd0695065adee00f2cabf8bf698da3b12604b526fd0bdd429"}, "3": {"node_id": "8b135e07-e798-40ba-af9c-57338f8631ef", "node_type": null, "metadata": {}, "hash": "6899501b84c600436d66b5d567d75c4a824be929c044416dc936f7986ad599a1"}}, "hash": "d6eb1ce3dcd65d3816205f481b4326b92c4ad584347d4c0405b190ae8a15ca0a", "text": "\\section{{\\tt Card} objects}\n\\index{Card}\n\\index{class!Card}\n\nIf you are not familiar with common playing cards, now would be a good\ntime to get a deck, or else this chapter might not make much sense.\nThere are fifty-two cards in a deck, each of which belongs to one of four\nsuits and one of thirteen ranks. The suits are Spades, Hearts, Diamonds, and\nClubs (in descending order in bridge). The ranks are Ace, 2, 3, 4, 5,\n6, 7, 8, 9, 10, Jack, Queen, and King. Depending on the game that you are\nplaying, the rank of Ace may be higher than King or lower than 2.\n\n\\index{rank}\n\\index{suit}\n\nIf we want to define a new object to represent a playing card, it is\nobvious what the attributes should be: {\\tt rank} and\n{\\tt suit}. It is not as obvious what type the attributes\nshould be. One possibility is to use strings containing words like\n{\\tt \"Spade\"} for suits and {\\tt \"Queen\"} for ranks. One problem with\nthis implementation is that it would not be easy to compare cards to\nsee which had a higher rank or suit.\n\n\\index{encode}\n\\index{encrypt}\n\\index{map to}\n\nAn alternative is to use integers to {\\bf encode} the ranks and suits.\nBy ``encode,'' we do not mean what some people think, which is to\nencrypt or translate into a secret code. What a computer scientist\nmeans by ``encode'' is ``to define a mapping between a\nsequence of numbers and the items I want to represent.'' For example:\n\n\\beforefig\n\\begin{tabular}{l c l}\nSpades & $\\mapsto$ & 3 \\\\\nHearts & $\\mapsto$ & 2 \\\\\nDiamonds & $\\mapsto$ & 1 \\\\\nClubs & $\\mapsto$ & 0\n\\end{tabular}\n\\afterfig\n\nAn obvious feature of this mapping is that the suits map to integers in\norder, so we can compare suits by comparing integers. The mapping for\nranks is fairly obvious; each of the numerical ranks maps to the\ncorresponding integer, and for face cards:\n\n\\beforefig\n\\begin{tabular}{l c l}\nJack & $\\mapsto$ & 11 \\\\\nQueen & $\\mapsto$ & 12 \\\\\nKing & $\\mapsto$ & 13 \\\\\n\\end{tabular}\n\\afterfig\n\nThe reason we are using mathematical notation for these mappings is\nthat they are not part of the Python program. They are part of the\nprogram design, but they never appear explicitly in the code. The\nclass definition for the {\\tt Card} type looks like this:\n\n\\beforeverb\n\\begin{verbatim}\nclass Card:\n def __init__(self, suit=0, rank=2):\n self.suit = suit\n self.rank = rank\n\\end{verbatim}\n\\afterverb\n%\nAs usual, we provide an initialization method that takes an optional\nparameter for each attribute. The default value of {\\tt suit} is\n0, which represents Clubs.\n\n\\index{constructor}\n\nTo create a Card, we invoke the Card constructor with the\nsuit and rank of the card we want.\n\n\\beforeverb\n\\begin{verbatim}\nthreeOfClubs = Card(3, 1)\n\\end{verbatim}\n\\afterverb\n%\nIn the next section we'll figure out which card we just made.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8b135e07-e798-40ba-af9c-57338f8631ef": {"__data__": {"id_": "8b135e07-e798-40ba-af9c-57338f8631ef", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "4dc159c0-87f3-4130-8b29-fa95cb66e1bc", "node_type": null, "metadata": {}, "hash": "d6eb1ce3dcd65d3816205f481b4326b92c4ad584347d4c0405b190ae8a15ca0a"}, "3": {"node_id": "c2d8f160-644e-487d-a842-4813e7c6728d", "node_type": null, "metadata": {}, "hash": "c010cb5298dcb69ffc5b352ad8a919cbda75092b18e5318c0836318bb3552096"}}, "hash": "6899501b84c600436d66b5d567d75c4a824be929c044416dc936f7986ad599a1", "text": "\\section{Class attributes and the {\\tt \\_\\_str\\_\\_} method}\n\\index{class attribute}\n\\index{attribute!class}\n\nIn order to print {\\tt Card} objects in a way that people can easily\nread, we want to map the integer codes onto words. A natural way to\ndo that is with lists of strings. We assign these lists to {\\bf class\nattributes} at the top of the class definition:\n\n\\beforeverb\n\\begin{verbatim}\nclass Card:\n suitList = [\"Clubs\", \"Diamonds\", \"Hearts\", \"Spades\"]\n rankList = [\"narf\", \"Ace\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \n \"8\", \"9\", \"10\", \"Jack\", \"Queen\", \"King\"]\n\n #init method omitted\n\n def __str__(self):\n return (self.rankList[self.rank] + \" of \" + \n self.suitList[self.suit])\n\\end{verbatim}\n\\afterverb\n%\nA class attribute is defined outside of any method, and it can be\naccessed from any of the methods in the class.\n\nInside {\\tt \\_\\_str\\_\\_}, we can use {\\tt suitList} and {\\tt rankList}\nto map the numerical values of {\\tt suit} and {\\tt rank} to strings.\nFor example, the expression \\verb+self.suitList[self.suit]+ means\n``use the attribute {\\tt suit} from the object {\\tt self} as an index\ninto the class attribute named {\\tt suitList}, and select the\nappropriate string.''\n\nThe reason for the {\\tt \"narf\"} in the first element in {\\tt\nrankList} is to act as a place keeper for the zero-eth element of the\nlist, which should never be used. The only valid ranks are 1 to 13. This\nwasted item is not entirely necessary. We could have started at 0,\nas usual, but it is less confusing to encode 2 as 2, 3 as 3, and so on.\n\nWith the methods we have so far, we can create and print cards:\n\n\\beforeverb\n\\begin{verbatim}\n>>> card1 = Card(1, 11)\n>>> print card1\nJack of Diamonds\n\\end{verbatim}\n\\afterverb\n%\nClass attributes like {\\tt suitList} are shared by all {\\tt Card}\nobjects. The advantage of this is that we can use any {\\tt Card}\nobject to access the class attributes:\n\n\\beforeverb\n\\begin{verbatim}\n>>> card2 = Card(1, 3)\n>>> print card2\n3 of Diamonds\n>>> print card2.suitList[1]\nDiamonds\n\\end{verbatim}\n\\afterverb\n%\nThe disadvantage is that if we modify a class attribute, it\naffects every instance of the class. For example, if we decide\nthat ``Jack of Diamonds'' should really be called\n``Jack of Swirly Whales,'' we could do this:\n\n\\index{instance!object}\n\\index{object instance}\n\n\\beforeverb\n\\begin{verbatim}\n>>> card1.suitList[1] = \"Swirly Whales\"\n>>> print card1\nJack of Swirly Whales\n\\end{verbatim}\n\\afterverb\n%\nThe problem is that {\\em all} of the Diamonds just became\nSwirly Whales:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print card2\n3 of Swirly Whales\n\\end{verbatim}\n\\afterverb\n%\nIt is usually not a good idea to modify class attributes.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c2d8f160-644e-487d-a842-4813e7c6728d": {"__data__": {"id_": "c2d8f160-644e-487d-a842-4813e7c6728d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "8b135e07-e798-40ba-af9c-57338f8631ef", "node_type": null, "metadata": {}, "hash": "6899501b84c600436d66b5d567d75c4a824be929c044416dc936f7986ad599a1"}, "3": {"node_id": "7c41061f-967d-433f-978a-b0172c1cb3cd", "node_type": null, "metadata": {}, "hash": "c910eb9d8d1eca71319aacbd190890c1ad9c9ea7c453f44df8793e5804d04e1f"}}, "hash": "c010cb5298dcb69ffc5b352ad8a919cbda75092b18e5318c0836318bb3552096", "text": "\\section{Comparing cards}\n\\label{comparecard}\n\\index{operator!conditional}\n\\index{conditional operator}\n\nFor primitive types, there are conditional operators\n({\\tt <}, {\\tt >}, {\\tt ==}, etc.)\nthat compare\nvalues and determine when one is greater than, less than, or equal to\nanother. For user-defined types, we can override the behavior of\nthe built-in operators by providing a method named\n{\\tt \\_\\_cmp\\_\\_}. By convention, {\\tt \\_\\_cmp\\_\\_}\nhas two parameters, {\\tt self} and {\\tt other}, and returns\n1 if the first object is greater, -1 if the\nsecond object is greater, and 0 if they are equal to each other.\n\n\\index{override}\n\\index{operator overloading}\n\\index{ordering}\n\\index{complete ordering}\n\\index{partial ordering}\n\nSome types are completely ordered, which means that you can compare\nany two elements and tell which is bigger. For example, the integers\nand the floating-point numbers are completely ordered. Some sets are\nunordered, which means that there is no meaningful way to say that one\nelement is bigger than another. For example, the fruits are\nunordered, which is why you cannot compare apples and oranges.\n\nThe set of playing cards is partially ordered, which means that\nsometimes you can compare cards and sometimes not. For example, you\nknow that the 3 of Clubs is higher than the 2 of Clubs, and the 3 of\nDiamonds is higher than the 3 of Clubs. But which is better, the 3 of\nClubs or the 2 of Diamonds? One has a higher rank, but the other has\na higher suit.\n\n\\index{comparable}\n\nIn order to make cards comparable, you have to decide which is more\nimportant, rank or suit. To be honest, the choice is\narbitrary. For the sake of choosing, we will say that suit is more\nimportant, because a new deck of cards comes sorted\nwith all the Clubs together, followed by all the Diamonds, and so on.\n\nWith that decided, we can write {\\tt \\_\\_cmp\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\ndef __cmp__(self, other):\n # check the suits\n if self.suit > other.suit: return 1\n if self.suit < other.suit: return -1\n # suits are the same... check ranks\n if self.rank > other.rank: return 1\n if self.rank < other.rank: return -1\n # ranks are the same... it's a tie\n return 0\n\\end{verbatim}\n\\afterverb\n%\nIn this ordering, Aces appear lower than Deuces (2s).\n\n\\begin{quote}\n{\\em As an exercise, modify {\\tt \\_\\_cmp\\_\\_} so that Aces are\nranked higher than Kings.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7c41061f-967d-433f-978a-b0172c1cb3cd": {"__data__": {"id_": "7c41061f-967d-433f-978a-b0172c1cb3cd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "c2d8f160-644e-487d-a842-4813e7c6728d", "node_type": null, "metadata": {}, "hash": "c010cb5298dcb69ffc5b352ad8a919cbda75092b18e5318c0836318bb3552096"}, "3": {"node_id": "74be3d9d-1ed6-45ea-a122-395f60330929", "node_type": null, "metadata": {}, "hash": "5cd6f70b2804d1b24aec15e1e826138f33c05d9ae9ce2d698a98212122060565"}}, "hash": "c910eb9d8d1eca71319aacbd190890c1ad9c9ea7c453f44df8793e5804d04e1f", "text": "\\section{Decks}\n\\index{list!of objects}\n\\index{object!list of}\n\\index{deck}\n\nNow that we have objects to represent {\\tt Card}s, the next logical\nstep is to define a class to represent a {\\tt Deck}. Of course, a\ndeck is made up of cards, so each {\\tt Deck} object will contain a\nlist of cards as an attribute.\n\n\\index{initialization method}\n\\index{method!initialization}\n\nThe following is a class definition for the {\\tt Deck} class. The\ninitialization method creates the attribute {\\tt cards} and generates\nthe standard set of fifty-two cards:\n\n\\index{composition}\n\\index{loop!nested}\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n def __init__(self):\n self.cards = []\n for suit in range(4):\n for rank in range(1, 14):\n self.cards.append(Card(suit, rank))\n\\end{verbatim}\n\\afterverb\n%\nThe easiest way to populate the deck is with a nested loop. The outer\nloop enumerates the suits from 0 to 3. The inner loop enumerates the\nranks from 1 to 13. Since the outer loop iterates four times, and the\ninner loop iterates thirteen times, the total number of times the body\nis executed is fifty-two (thirteen times four). Each iteration\ncreates a new instance of {\\tt Card} with the current suit and rank,\nand appends that card to the {\\tt cards} list.\n\nThe {\\tt append} method works on lists but not, of course, tuples.\n\n\\index{append method}\n\\index{list method}\n\\index{method!list}\n\n\\adjustpage{1}\n\n\\section{Printing the deck}\n\\label{printdeck}\n\\index{printing!deck object}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "74be3d9d-1ed6-45ea-a122-395f60330929": {"__data__": {"id_": "74be3d9d-1ed6-45ea-a122-395f60330929", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "7c41061f-967d-433f-978a-b0172c1cb3cd", "node_type": null, "metadata": {}, "hash": "c910eb9d8d1eca71319aacbd190890c1ad9c9ea7c453f44df8793e5804d04e1f"}, "3": {"node_id": "31272119-3229-40a3-86bb-2282ac6d6fe3", "node_type": null, "metadata": {}, "hash": "e7874bd96c74c16941dd40551f92dcf0e95adeab5b15bdeb478937b0b69903dd"}}, "hash": "5cd6f70b2804d1b24aec15e1e826138f33c05d9ae9ce2d698a98212122060565", "text": "As usual, when we define a new type of object we want a method\nthat prints the contents of an object.\nTo print a {\\tt Deck}, we traverse the list and print each {\\tt Card}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def printDeck(self):\n for card in self.cards:\n print card\n\\end{verbatim}\n\\afterverb\n%\nHere, and from now on, the ellipsis ({\\tt ...}) indicates that we have\nomitted the other methods in the class.\n\nAs an alternative to {\\tt printDeck}, we could\nwrite a {\\tt \\_\\_str\\_\\_} method for the {\\tt Deck} class. The\nadvantage of {\\tt \\_\\_str\\_\\_} is that it is more flexible. Rather\nthan just printing the contents of the object, it generates a string\nrepresentation that other parts of the program can manipulate\nbefore printing, or store for later use.\n\nHere is a version of {\\tt \\_\\_str\\_\\_} that returns a string\nrepresentation of a {\\tt Deck}.\nTo add a bit of pizzazz, it arranges the cards in a cascade\nwhere each card is indented one space more than the previous card:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def __str__(self):\n s = \"\"\n for i in range(len(self.cards)):\n s = s + \" \"*i + str(self.cards[i]) + \"\\n\"\n return s\n\\end{verbatim}\n\\afterverb\n%\nThis example demonstrates several features. First, instead of\ntraversing {\\tt self.cards} and assigning each card to a variable,\nwe are using {\\tt i} as a loop\nvariable and an index into the list of cards.\n\nSecond, we are using the string multiplication operator to indent\neach card by one more space than the last. The expression\n{\\tt \" \"*i} yields a number of spaces equal to the current value\nof {\\tt i}.\n\nThird, instead of using the {\\tt print} command to print the cards,\nwe use the {\\tt str} function. Passing an object as an argument to\n{\\tt str} is equivalent to invoking the {\\tt \\_\\_str\\_\\_} method on\nthe object.\n\n\\index{accumulator}\n\nFinally, we are using the variable {\\tt s} as an {\\bf accumulator}.\nInitially, {\\tt s} is the empty string. Each time through the loop, a\nnew string is generated and concatenated with the old value of {\\tt s}\nto get the new value. When the loop ends, {\\tt s} contains the\ncomplete string representation of the {\\tt Deck}, which looks like\nthis:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\n>>> deck = Deck()\n>>> print deck\nAce of Clubs\n 2 of Clubs\n 3 of Clubs\n 4 of Clubs\n 5 of Clubs\n 6 of Clubs\n 7 of Clubs\n 8 of Clubs\n 9 of Clubs\n 10 of Clubs\n Jack of Clubs\n Queen of Clubs\n King of Clubs\n Ace of Diamonds\n\\end{verbatim}\n\\afterverb\n%\nAnd so on. Even though the result appears on 52 lines, it is\none long string that contains newlines.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "31272119-3229-40a3-86bb-2282ac6d6fe3": {"__data__": {"id_": "31272119-3229-40a3-86bb-2282ac6d6fe3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "74be3d9d-1ed6-45ea-a122-395f60330929", "node_type": null, "metadata": {}, "hash": "5cd6f70b2804d1b24aec15e1e826138f33c05d9ae9ce2d698a98212122060565"}, "3": {"node_id": "27c585f2-eae8-4e0d-a64f-18a6221e0644", "node_type": null, "metadata": {}, "hash": "ee9e254face0623d802cc1c88a4ae0391c730d5972e7453e5068a08c57e3ec23"}}, "hash": "e7874bd96c74c16941dd40551f92dcf0e95adeab5b15bdeb478937b0b69903dd", "text": "\\section{Shuffling the deck}\n\\index{shuffle}\n\nIf a deck is perfectly shuffled, then any card is equally likely\nto appear anywhere in the deck, and any location in the deck is\nequally likely to contain any card.\n\n\\index{random}\n\\index{randrange}\n\nTo shuffle the deck, we will use the {\\tt randrange} function\nfrom the {\\tt random} module. With two integer arguments,\n{\\tt a} and {\\tt b}, {\\tt randrange} chooses a random integer in\nthe range {\\tt a <= x < b}. Since the upper bound is strictly\nless than {\\tt b}, we can use the length of a list as the\nsecond argument, and we are guaranteed to get a legal index.\nFor example, this expression chooses the index of a random card in a deck:\n\n\\beforeverb\n\\begin{verbatim}\nrandom.randrange(0, len(self.cards))\n\\end{verbatim}\n\\afterverb\n%\nAn easy way to shuffle the deck is by traversing the cards and\nswapping each card with a randomly chosen one. It is possible that\nthe card will be swapped with itself, but that is fine. In fact, if\nwe precluded that possibility, the order of the cards would be less\nthan entirely random:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def shuffle(self):\n import random\n nCards = len(self.cards)\n for i in range(nCards):\n j = random.randrange(i, nCards)\n self.cards[i], self.cards[j] = self.cards[j], self.cards[i]\n\\end{verbatim}\n\\afterverb\n%\nRather than assume that there are fifty-two cards in the deck, we get\nthe actual length of the list and store it in {\\tt nCards}.\n\n\\index{swap}\n\\index{tuple assignment}\n\\index{assignment!tuple}\n\nFor each card in the deck, we choose a random card from among the\ncards that haven't been shuffled yet. Then we swap the current\ncard ({\\tt i}) with the selected card ({\\tt j}). To swap the\ncards we use a tuple assignment, as in Section~\\ref{tuple assignment}:\n\n\\beforeverb\n\\begin{verbatim}\nself.cards[i], self.cards[j] = self.cards[j], self.cards[i]\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, rewrite this line of code\nwithout using a sequence assignment.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "27c585f2-eae8-4e0d-a64f-18a6221e0644": {"__data__": {"id_": "27c585f2-eae8-4e0d-a64f-18a6221e0644", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "646aed1c-3013-452e-ad89-93702220a065", "node_type": null, "metadata": {}, "hash": "220e5e4f0f62c9339c866ac3da15b4197cf19527f2df03d4137de2d4218ee8fc"}, "2": {"node_id": "31272119-3229-40a3-86bb-2282ac6d6fe3", "node_type": null, "metadata": {}, "hash": "e7874bd96c74c16941dd40551f92dcf0e95adeab5b15bdeb478937b0b69903dd"}}, "hash": "ee9e254face0623d802cc1c88a4ae0391c730d5972e7453e5068a08c57e3ec23", "text": "\\section{Removing and dealing cards}\n\\index{removing cards}\n\nAnother method that would be useful for the {\\tt Deck} class is {\\tt\nremoveCard}, which takes a card as an argument, removes it, and\nreturns {\\tt True} if the card was in the deck and {\\tt False}\notherwise:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def removeCard(self, card):\n if card in self.cards:\n self.cards.remove(card)\n return True\n else: \n return False\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt in} operator returns true if the first operand is in the\nsecond, which must be a list or a tuple. If the first operand is an\nobject, Python uses the object's {\\tt \\_\\_cmp\\_\\_} method to determine\nequality with items in the list. Since the {\\tt \\_\\_cmp\\_\\_} in the\n{\\tt Card} class checks for deep equality, the {\\tt removeCard} method\nchecks for deep equality.\n\n\\index{in operator}\n\\index{operator!in}\n\nTo deal cards, we want to remove and return the top card.\nThe list method {\\tt pop} provides a convenient way to do that:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def popCard(self):\n return self.cards.pop()\n\\end{verbatim}\n\\afterverb\n%\nActually, {\\tt pop} removes the {\\em last} card in the list, so we are in\neffect dealing from the bottom of the deck.\n\n\\index{boolean function}\n\\index{function!boolean}\n\nOne more operation that we are likely to want is the boolean function\n{\\tt isEmpty}, which returns true if the deck contains no cards:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck:\n ...\n def isEmpty(self):\n return (len(self.cards) == 0)\n\\end{verbatim}\n\\afterverb\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[encode:] To represent one set of values using another\nset of values by constructing a mapping between them.\n\n\\item[class attribute:] A variable that is defined inside\na class definition but outside any method. Class attributes\nare accessible from any method in the class and are shared\nby all instances of the class.\n\n\\item[accumulator:] A variable used in a loop to accumulate\na series of values, such as by concatenating them onto\na string or adding them to a running sum.\n\n\\index{encode}\n\\index{class attribute}\n\\index{attribute!class}\n\\index{accumulator}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e": {"__data__": {"id_": "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "3": {"node_id": "efb2b508-2e2f-4b13-8294-bb36a71e2634", "node_type": null, "metadata": {}, "hash": "6845a6b79bf426ef06758c89090cd292058386cb3481f5833b53fd8381ad4278"}}, "hash": "56713eb38bfce0b6cecc0bad8195c6ecd9647ea18c040acbe6dc24b4ffa4da1f", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Inheritance}\n\n\\section{Inheritance}\n\\index{inheritance}\n\\index{object-oriented programming}\n\\index{parent class}\n\\index{child class}\n\\index{subclass}\n\nThe language feature most often associated with object-oriented\nprogramming is {\\bf inheritance}. Inheritance is the ability to\ndefine a new class that is a modified version of an existing\nclass.\n\nThe primary advantage of this feature is that you can add new methods\nto a class without modifying the existing class. It is\ncalled ``inheritance'' because the new class inherits all of the\nmethods of the existing class. Extending this metaphor, the existing\nclass is sometimes called the {\\bf parent} class. The new class may\nbe called the {\\bf child} class or sometimes ``subclass.''\n\n\\index{object-oriented design}\n\nInheritance is a powerful feature. Some programs that would be\ncomplicated without inheritance can be written concisely and simply\nwith it. Also, inheritance can facilitate code reuse, since you can\ncustomize the behavior of parent classes without having to modify\nthem. In some cases, the inheritance structure reflects the natural\nstructure of the problem, which makes the program easier to\nunderstand.\n\nOn the other hand, inheritance can make programs difficult to read.\nWhen a method is invoked, it is sometimes not clear where to find its\ndefinition. The relevant code may be scattered among several modules.\nAlso, many of the things that can be done using inheritance can be\ndone as elegantly (or more so) without it. If the natural\nstructure of the problem does not lend itself to inheritance, this\nstyle of programming can do more harm than good.\n\nIn this chapter we will demonstrate the use of inheritance as part of\na program that plays the card game Old Maid. One of our goals is to\nwrite code that could be reused to implement other card games.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "efb2b508-2e2f-4b13-8294-bb36a71e2634": {"__data__": {"id_": "efb2b508-2e2f-4b13-8294-bb36a71e2634", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e", "node_type": null, "metadata": {}, "hash": "56713eb38bfce0b6cecc0bad8195c6ecd9647ea18c040acbe6dc24b4ffa4da1f"}, "3": {"node_id": "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e", "node_type": null, "metadata": {}, "hash": "eeda2fc197f222a84f728ad71382816cbb05f127ffbc740048ab6bf76e7c491d"}}, "hash": "6845a6b79bf426ef06758c89090cd292058386cb3481f5833b53fd8381ad4278", "text": "\\section{A hand of cards}\n\nFor almost any card game, we need to represent a hand of cards.\nA hand is similar to a deck, of course. Both are made up of\na set of cards, and both require operations like adding and\nremoving cards. Also, we might like the ability to shuffle\nboth decks and hands.\n\nA hand is also different from a deck. Depending on the game being\nplayed, we might want to perform some operations on hands that\ndon't make sense for a deck. For example, in poker we might classify\na hand (straight, flush, etc.) or compare it with another hand. In\nbridge, we might want to compute a score for a hand in order to make\na bid.\n\nThis situation suggests the use of inheritance. If {\\tt Hand} is a\nsubclass of {\\tt Deck}, it will have all the methods\nof {\\tt Deck}, and new methods can be added.\n\n\\index{parent class}\n\\index{class!parent}\n\nIn the class definition, the name of the parent class appears\nin parentheses:\n\n\\beforeverb\n\\begin{verbatim}\nclass Hand(Deck):\n pass\n\\end{verbatim}\n\\afterverb\n%\nThis statement indicates that the new {\\tt Hand} class inherits from\nthe existing {\\tt Deck} class.\n\nThe {\\tt Hand} constructor initializes the attributes\nfor the hand, which are {\\tt name} and {\\tt cards}. The string {\\tt name}\nidentifies this hand, probably by the name of\nthe player that holds it. The name is an optional parameter with\nthe empty string as a default value.\n{\\tt cards} is the list of cards in\nthe hand, initialized to the empty list:\n\n\\beforeverb\n\\begin{verbatim}\nclass Hand(Deck):\n def __init__(self, name=\"\"):\n self.cards = []\n self.name = name\n\\end{verbatim}\n\\afterverb\n%\nFor just about any card game, it is necessary to add and\nremove cards from the deck. Removing cards is already taken\ncare of, since {\\tt Hand} inherits {\\tt removeCard} from {\\tt Deck}.\nBut we have to write {\\tt addCard}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Hand(Deck):\n ...\n def addCard(self,card) :\n self.cards.append(card)\n\\end{verbatim}\n\\afterverb\n%\nAgain, the ellipsis indicates that we have omitted other methods.\nThe list {\\tt append} method adds the new card to\nthe end of the list of cards.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e": {"__data__": {"id_": "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "efb2b508-2e2f-4b13-8294-bb36a71e2634", "node_type": null, "metadata": {}, "hash": "6845a6b79bf426ef06758c89090cd292058386cb3481f5833b53fd8381ad4278"}, "3": {"node_id": "aec60a8e-dde5-4c5d-884a-af18bb204b1e", "node_type": null, "metadata": {}, "hash": "8d438a45faf9044d0e7a4937e3ad378950ddbcb05f5c65a28fbebe83788b75c5"}}, "hash": "eeda2fc197f222a84f728ad71382816cbb05f127ffbc740048ab6bf76e7c491d", "text": "\\section{Dealing cards}\n\\index{dealing cards}\n\nNow that we have a {\\tt Hand} class, we want to deal cards from the\n{\\tt Deck} into hands. It is not immediately obvious whether this\nmethod should go in the {\\tt Hand} class or in the {\\tt Deck} class,\nbut since it operates on a single deck and (possibly) several hands,\nit is more natural to put it in {\\tt Deck}.\n\n{\\tt deal} should be fairly general,\nsince different games will have different requirements. We may want\nto deal out the entire deck at once or add one card to each hand.\n\n{\\tt deal} takes three parameters: the deck, a list (or tuple) of\nhands, and the total number of cards to deal. If there are not enough\ncards in the deck, the method deals out all of the cards and stops:\n\n\\beforeverb\n\\begin{verbatim}\nclass Deck :\n ...\n def deal(self, hands, nCards=999):\n nHands = len(hands)\n for i in range(nCards):\n if self.isEmpty(): break # break if out of cards\n card = self.popCard() # take the top card\n hand = hands[i % nHands] # whose turn is next?\n hand.addCard(card) # add the card to the hand\n\\end{verbatim}\n\\afterverb\n%\nThe last parameter, {\\tt nCards}, is optional; the default is a large\nnumber, which effectively means that all of the cards in the deck\nwill get dealt.\n\n\\index{loop variable}\n\\index{variable!loop}\n\nThe loop variable {\\tt i} goes from 0 to {\\tt nCards-1}. Each\ntime through the loop, a card is removed from the deck using the\nlist method {\\tt pop}, which removes and returns the last item\nin the list.\n\n\\index{modulus operator}\n\\index{operator!modulus}\n\nThe modulus operator ({\\tt \\%}) allows us to deal cards in a\nround robin (one card at a time to each hand). When {\\tt i} is\nequal to the number of hands in the list, the expression\n{\\tt i \\% nHands} wraps around to the beginning of the list\n(index 0).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "aec60a8e-dde5-4c5d-884a-af18bb204b1e": {"__data__": {"id_": "aec60a8e-dde5-4c5d-884a-af18bb204b1e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e", "node_type": null, "metadata": {}, "hash": "eeda2fc197f222a84f728ad71382816cbb05f127ffbc740048ab6bf76e7c491d"}, "3": {"node_id": "35a31964-52f0-4c13-bab7-e0ab575a3d7f", "node_type": null, "metadata": {}, "hash": "d5dca9c98d00e103e62cf33160781328a89bfdd4ebd813796d8407743654acc5"}}, "hash": "8d438a45faf9044d0e7a4937e3ad378950ddbcb05f5c65a28fbebe83788b75c5", "text": "\\section {Printing a Hand}\n\\index{printing!hand of cards}\n\nTo print the contents of a hand, we can take advantage of\nthe {\\tt printDeck} and {\\tt \\_\\_str\\_\\_} methods inherited\nfrom {\\tt Deck}. For example:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\n>>> deck = Deck()\n>>> deck.shuffle()\n>>> hand = Hand(\"frank\")\n>>> deck.deal([hand], 5)\n>>> print hand\nHand frank contains\n2 of Spades\n 3 of Spades\n 4 of Spades\n Ace of Hearts\n 9 of Clubs\n\\end{verbatim}\n\\afterverb\n%\nIt's not a great hand, but it has the makings\nof a straight flush.\n\n\\index{straight flush}\n\nAlthough it is convenient to inherit the existing methods,\nthere is additional information in a {\\tt Hand}\nobject we might want to include when we print one. To do that,\nwe can provide a {\\tt \\_\\_str\\_\\_} method in the {\\tt Hand} class\nthat overrides the one in the {\\tt Deck} class:\n\n\\beforeverb\n\\begin{verbatim}\nclass Hand(Deck)\n ...\n def __str__(self):\n s = \"Hand \" + self.name\n if self.isEmpty():\n return s + \" is empty\\n\"\n else:\n return s + \" contains\\n\" + Deck.__str__(self)\n\\end{verbatim}\n\\afterverb\n%\nInitially, {\\tt s} is a string that identifies the hand. If the hand\nis empty, the program appends the words {\\tt is empty} and returns the\nresult.\n\nOtherwise, the program appends the word {\\tt contains} and the string\nrepresentation of the {\\tt Deck}, computed by invoking the {\\tt\n\\_\\_str\\_\\_} method in the {\\tt Deck} class on {\\tt self}.\n\nIt may seem odd to send {\\tt self}, which refers to the current {\\tt\nHand}, to a {\\tt Deck} method, until you remember that a {\\tt Hand} is\na kind of {\\tt Deck}. {\\tt Hand} objects can do everything {\\tt Deck}\nobjects can, so it is legal to send a {\\tt Hand} to a {\\tt Deck}\nmethod.\n\n\\index{subclass}\n\\index{parent class}\n\\index{class!parent}\n\nIn general, it is always legal to use an instance of a subclass\nin place of an instance of a parent class.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "35a31964-52f0-4c13-bab7-e0ab575a3d7f": {"__data__": {"id_": "35a31964-52f0-4c13-bab7-e0ab575a3d7f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "aec60a8e-dde5-4c5d-884a-af18bb204b1e", "node_type": null, "metadata": {}, "hash": "8d438a45faf9044d0e7a4937e3ad378950ddbcb05f5c65a28fbebe83788b75c5"}, "3": {"node_id": "23d3f456-47be-4dd3-8b8c-6c00f1d47889", "node_type": null, "metadata": {}, "hash": "0e47dd7e8c9e1d1c8405d07d07141960cc371b55a2521ac5eb943198ea00def7"}}, "hash": "d5dca9c98d00e103e62cf33160781328a89bfdd4ebd813796d8407743654acc5", "text": "\\section {The {\\tt CardGame} class}\n\nThe {\\tt CardGame} class takes care\nof some basic chores common to all games, such as creating the\ndeck and shuffling it:\n\n\\beforeverb\n\\begin{verbatim}\nclass CardGame:\n def __init__(self):\n self.deck = Deck()\n self.deck.shuffle()\n\\end{verbatim}\n\\afterverb\n%\nThis is the first case we have seen where the initialization\nmethod performs a significant computation, beyond initializing\nattributes.\n\nTo implement specific games, we can inherit from {\\tt CardGame}\nand add features for the new game.\nAs an example, we'll write\na simulation of Old Maid.\n\nThe object of Old Maid is to get rid of cards in your hand. You do\nthis by matching cards by rank and color. For example, the 4 of Clubs\nmatches the 4 of Spades since both suits are black. The Jack of Hearts\nmatches the Jack of Diamonds since both are red.\n\nTo begin the game, the Queen of Clubs is removed from the deck so that\nthe Queen of Spades has no match. The fifty-one remaining cards are\ndealt to the players in a round robin. After the deal, all players\nmatch and discard as many cards as possible.\n\nWhen no more matches can be made, play begins. In turn, each player\npicks a card (without looking) from the closest neighbor to the left\nwho still has cards. If the chosen card matches a card in the\nplayer's hand, the pair is removed. Otherwise, the card is added to\nthe player's hand. Eventually all possible matches are made, leaving\nonly the Queen of Spades in the loser's hand.\n\nIn our computer simulation of the game, the computer plays\nall hands. Unfortunately, some nuances of the real game are lost.\nIn a real game, the player with the Old Maid\ngoes to some effort to get their neighbor to pick that card,\nby displaying it a little more prominently, or perhaps failing\nto display it more prominently, or even failing to fail to display\nthat card more prominently. The computer simply picks a neighbor's\ncard at random.\n\n\n\\section {{\\tt OldMaidHand} class}\n\\index{class!OldMaidHand}\n\nA hand for playing Old Maid requires some abilities beyond the\ngeneral abilities of a {\\tt Hand}. We will define a new class, {\\tt\nOldMaidHand}, that inherits from {\\tt Hand} and provides an additional\nmethod called {\\tt removeMatches}:", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "23d3f456-47be-4dd3-8b8c-6c00f1d47889": {"__data__": {"id_": "23d3f456-47be-4dd3-8b8c-6c00f1d47889", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "35a31964-52f0-4c13-bab7-e0ab575a3d7f", "node_type": null, "metadata": {}, "hash": "d5dca9c98d00e103e62cf33160781328a89bfdd4ebd813796d8407743654acc5"}, "3": {"node_id": "ff51296b-eafb-4862-88aa-ff2bae8c82eb", "node_type": null, "metadata": {}, "hash": "1274e1c2a558a9509c835f08e844109519d283a8b4928dc7e2b6d19cf21d7784"}}, "hash": "0e47dd7e8c9e1d1c8405d07d07141960cc371b55a2521ac5eb943198ea00def7", "text": "\\beforeverb\n\\begin{verbatim}\nclass OldMaidHand(Hand):\n def removeMatches(self):\n count = 0\n originalCards = self.cards[:]\n for card in originalCards:\n match = Card(3 - card.suit, card.rank)\n if match in self.cards:\n self.cards.remove(card)\n self.cards.remove(match)\n print \"Hand %s: %s matches %s\" % (self.name,card,match)\n count = count + 1\n return count\n\\end{verbatim}\n\\afterverb\n%\nWe start by making a copy of the list of cards, so that we can\ntraverse the copy while removing cards from the original.\nSince {\\tt self.cards} is modified in the\nloop, we don't want to use it to control the traversal. Python can get\nquite confused if it is traversing a list that is changing!\n\n\\index{traversal}\n\n\\adjustpage{1}\n\nFor each card in the hand, we figure out what the matching card is and\ngo looking for it. The match card has the same rank and the other\nsuit of the same color. The expression {\\tt 3 - card.suit} turns a\nClub (suit 0) into a Spade (suit 3) and a Diamond (suit 1) into a\nHeart (suit 2). You should satisfy yourself that the opposite\noperations also work. If the match card is also in the hand, both\ncards are removed.\n\nThe following example demonstrates how to use {\\tt removeMatches}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> game = CardGame()\n>>> hand = OldMaidHand(\"frank\")\n>>> game.deck.deal([hand], 13)\n>>> print hand\nHand frank contains\nAce of Spades\n 2 of Diamonds\n 7 of Spades\n 8 of Clubs\n 6 of Hearts\n 8 of Spades\n 7 of Clubs\n Queen of Clubs\n 7 of Diamonds\n 5 of Clubs\n Jack of Diamonds\n 10 of Diamonds\n 10 of Hearts\n\n>>> hand.removeMatches()\nHand frank: 7 of Spades matches 7 of Clubs\nHand frank: 8 of Spades matches 8 of Clubs\nHand frank: 10 of Diamonds matches 10 of Hearts\n>>> print hand\nHand frank contains\nAce of Spades\n 2 of Diamonds\n 6 of Hearts\n Queen of Clubs\n 7 of Diamonds\n 5 of Clubs\n Jack of Diamonds\n\\end{verbatim}\n\\afterverb\n%\nNotice that there is no {\\tt \\_\\_init\\_\\_} method for the\n{\\tt OldMaidHand} class. We inherit it from {\\tt Hand}.\n\n\n\\section {{\\tt OldMaidGame} class}\n\\index{class!OldMaidGame}\n\nNow we can turn our attention to the game itself.\n{\\tt OldMaidGame} is a subclass of {\\tt CardGame} with a new\nmethod called {\\tt play} that takes a list of players as an argument.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ff51296b-eafb-4862-88aa-ff2bae8c82eb": {"__data__": {"id_": "ff51296b-eafb-4862-88aa-ff2bae8c82eb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "23d3f456-47be-4dd3-8b8c-6c00f1d47889", "node_type": null, "metadata": {}, "hash": "0e47dd7e8c9e1d1c8405d07d07141960cc371b55a2521ac5eb943198ea00def7"}, "3": {"node_id": "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd", "node_type": null, "metadata": {}, "hash": "b471cd308127118a448259ca5d2f91be229191023dea978dd129615ad04cff92"}}, "hash": "1274e1c2a558a9509c835f08e844109519d283a8b4928dc7e2b6d19cf21d7784", "text": "Since {\\tt \\_\\_init\\_\\_} is inherited from {\\tt CardGame},\na new {\\tt OldMaidGame} object contains a new shuffled deck:\n\n\\adjustpage{-1}\n\n\\beforeverb\n\\begin{verbatim}\nclass OldMaidGame(CardGame):\n def play(self, names):\n # remove Queen of Clubs\n self.deck.removeCard(Card(0,12))\n\n # make a hand for each player\n self.hands = []\n for name in names :\n self.hands.append(OldMaidHand(name))\n\n # deal the cards\n self.deck.deal(self.hands)\n print \"---------- Cards have been dealt\"\n self.printHands()\n\n # remove initial matches\n matches = self.removeAllMatches()\n print \"---------- Matches discarded, play begins\"\n self.printHands()\n\n # play until all 50 cards are matched\n turn = 0\n numHands = len(self.hands)\n while matches < 25:\n matches = matches + self.playOneTurn(turn)\n turn = (turn + 1) % numHands\n\n print \"---------- Game is Over\"\n self.printHands()\n\\end{verbatim}\n\\afterverb\n%\nSome of the steps of the game have been separated into methods.\n{\\tt removeAllMatches} traverses the list of hands and\ninvokes {\\tt removeMatches} on each:\n\n\\beforeverb\n\\begin{verbatim}\nclass OldMaidGame(CardGame):\n ...\n def removeAllMatches(self):\n count = 0\n for hand in self.hands:\n count = count + hand.removeMatches()\n return count\n\\end{verbatim}\n\\afterverb\n%\n\\begin{quote}\n{\\em As an exercise, write {\\tt printHands} which traverses\n{\\tt self.hands} and prints each hand.}\n\\end{quote}\n\n{\\tt count} is\nan accumulator that adds up the number of matches in each\nhand and returns the total.\n\n\\index{accumulator}\n\nWhen the total number of matches reaches twenty-five,\nfifty cards have been removed from the hands, which means that\nonly one card is left and the game is over.\n\nThe variable {\\tt turn} keeps track of which player's turn\nit is. It starts at 0 and increases by one each time;\nwhen it reaches {\\tt numHands}, the modulus operator\nwraps it back around to 0.\n\nThe method {\\tt playOneTurn} takes an argument that indicates\nwhose turn it is. The return value is the number of matches\nmade during this turn:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\nclass OldMaidGame(CardGame):\n ...\n def playOneTurn(self, i):\n if self.hands[i].isEmpty():\n return 0\n neighbor = self.findNeighbor(i)\n pickedCard = self.hands[neighbor].popCard()\n self.hands[i].addCard(pickedCard)\n print \"Hand\", self.hands[i].name, \"picked\", pickedCard\n count = self.hands[i].removeMatches()\n self.hands[i].shuffle()\n return count\n\\end{verbatim}\n\\afterverb\n%\nIf a player's hand is empty, that player is out of the game, so he or she\ndoes nothing and returns 0.\n\nOtherwise, a turn consists of finding the first player on the left\nthat has cards, taking one card from the neighbor, and checking\nfor matches. Before returning, the cards in the hand are shuffled\nso that the next player's choice is random.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd": {"__data__": {"id_": "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "node_type": null, "metadata": {}, "hash": "81a01c3b214dce7ac1d9a9bade0a5d9b1f4c71a890ce260c13bd955ecf7c8d6f"}, "2": {"node_id": "ff51296b-eafb-4862-88aa-ff2bae8c82eb", "node_type": null, "metadata": {}, "hash": "1274e1c2a558a9509c835f08e844109519d283a8b4928dc7e2b6d19cf21d7784"}}, "hash": "b471cd308127118a448259ca5d2f91be229191023dea978dd129615ad04cff92", "text": "The method {\\tt findNeighbor} starts with the player to the\nimmediate left and continues around the circle until it finds\na player that still has cards:\n\n\\beforeverb\n\\begin{verbatim}\nclass OldMaidGame(CardGame):\n ...\n def findNeighbor(self, i):\n numHands = len(self.hands)\n for next in range(1,numHands):\n neighbor = (i + next) % numHands\n if not self.hands[neighbor].isEmpty():\n return neighbor\n\\end{verbatim}\n\\afterverb\n%\nIf {\\tt findNeighbor} ever went all the way around the circle without\nfinding cards, it would return {\\tt None} and cause an error\nelsewhere in the program. Fortunately, we can prove that that will\nnever happen (as long as the end of the game is detected correctly).\n\nWe have omitted the {\\tt printHands} method. You\ncan write that one yourself.\n\nThe following output is from a truncated form of the game where only\nthe top fifteen cards (tens and higher) were dealt to three players.\nWith this small deck, play stops after seven matches instead of\ntwenty-five.\n\n\\beforeverb\n\\begin{verbatim}\n>>> import cards\n>>> game = cards.OldMaidGame()\n>>> game.play([\"Allen\",\"Jeff\",\"Chris\"])\n---------- Cards have been dealt\nHand Allen contains\nKing of Hearts\n Jack of Clubs\n Queen of Spades\n King of Spades\n 10 of Diamonds\n\nHand Jeff contains\nQueen of Hearts\n Jack of Spades\n Jack of Hearts\n King of Diamonds\n Queen of Diamonds\n\nHand Chris contains\nJack of Diamonds\n King of Clubs\n 10 of Spades\n 10 of Hearts\n 10 of Clubs\n\nHand Jeff: Queen of Hearts matches Queen of Diamonds\nHand Chris: 10 of Spades matches 10 of Clubs\n---------- Matches discarded, play begins\nHand Allen contains\nKing of Hearts\n Jack of Clubs\n Queen of Spades\n King of Spades\n 10 of Diamonds\n\nHand Jeff contains\nJack of Spades\n Jack of Hearts\n King of Diamonds\n\nHand Chris contains\nJack of Diamonds\n King of Clubs\n 10 of Hearts\n\nHand Allen picked King of Diamonds\nHand Allen: King of Hearts matches King of Diamonds\nHand Jeff picked 10 of Hearts\nHand Chris picked Jack of Clubs\nHand Allen picked Jack of Hearts\nHand Jeff picked Jack of Diamonds\nHand Chris picked Queen of Spades\nHand Allen picked Jack of Diamonds\nHand Allen: Jack of Hearts matches Jack of Diamonds\nHand Jeff picked King of Clubs\nHand Chris picked King of Spades\nHand Allen picked 10 of Hearts\nHand Allen: 10 of Diamonds matches 10 of Hearts\nHand Jeff picked Queen of Spades\nHand Chris picked Jack of Spades\nHand Chris: Jack of Clubs matches Jack of Spades\nHand Jeff picked King of Spades\nHand Jeff: King of Clubs matches King of Spades\n---------- Game is Over\nHand Allen is empty\n\nHand Jeff contains\nQueen of Spades\n\nHand Chris is empty\n\n\\end{verbatim}\n\\afterverb\n%\nSo Jeff loses.\n\n\n\n\\section{Glossary}\n\n\\begin{description}\n\n\\item[inheritance:] The ability to define a new class that is a\nmodified version of a previously defined class.\n\n\\item[parent class:] The class from which a child class inherits.\n\n\\item[child class:] A new class created by inheriting from an\nexisting class; also called a ``subclass.''\n\n\\index{inheritance}\n\\index{parent class}\n\\index{child class}\n\\index{subclass}\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ce31c578-fc0a-442c-acfd-232fb07ca028": {"__data__": {"id_": "ce31c578-fc0a-442c-acfd-232fb07ca028", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "3": {"node_id": "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b", "node_type": null, "metadata": {}, "hash": "b6acd7c1de2b5526221930acebb962014b6692f62952ccd588cd38d3c4255c7f"}}, "hash": "f198ae69d02251fa4b9fc8fce14f45658799c226378a5c5dfaf016130a7a664f", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (C) 1999 Allen B. Downey\n\n% This LaTeX source is free software; you can redistribute it and/or\n% modify it under the terms of the GNU General Public License as\n% published by the Free Software Foundation (version 2).\n\n% This LaTeX source is distributed in the hope that it will be useful,\n% but WITHOUT ANY WARRANTY; without even the implied warranty of\n% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n% General Public License for more details.\n\n% Compiling this LaTeX source has the effect of generating\n% a device-independent representation of a textbook, which\n% can be converted to other formats and printed. All intermediate\n% representations (including DVI and Postscript), and all printed\n% copies of the textbook are also covered by the GNU General\n% Public License.\n\n% This distribution includes a file named COPYING that contains the text\n% of the GNU General Public License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\n\\chapter{Linked lists}\n\\label{list}\n\\index{list}\n\n\\section{Embedded references}\n\\index{reference}\n\\index{embedded reference}\n\\index{reference!embedded}\n\\index{linked list}\n\\index{list!linked}\n\\index{node}\n\\index{cargo}\n\nWe have seen examples of attributes that refer to other objects, which\nwe called {\\bf embedded references} (see Section~\\ref{embedded}). A\ncommon data structure, the {\\bf linked list}, takes advantage of this\nfeature.\n\nLinked lists are made up of {\\bf nodes}, where each node contains a\nreference to the next node in the list. In addition, each node\ncontains a unit of data called the {\\bf cargo}.\n\nA linked list is considered a {\\bf recursive data\nstructure} because it has a recursive definition.\n\n\\begin{quote}\nA linked list is either:\n\\begin{itemize}\n\n\\item the empty list, represented by {\\tt None}, or\n\n\\item a node that contains a cargo object and a reference\nto a linked list.\n\n\\end{itemize}\n\n\\end{quote}\n\n\\index{recursive data structure}\n\\index{data structure!recursive}\n\nRecursive data structures lend themselves to\nrecursive methods.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b": {"__data__": {"id_": "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "ce31c578-fc0a-442c-acfd-232fb07ca028", "node_type": null, "metadata": {}, "hash": "f198ae69d02251fa4b9fc8fce14f45658799c226378a5c5dfaf016130a7a664f"}, "3": {"node_id": "6429847b-17f8-4e4e-8ec9-289a9f5b74d1", "node_type": null, "metadata": {}, "hash": "f1a511c92efd1c56cacf7a38c8aa95b4b0eccb7b74f9adf32fbd7877a601cb8c"}}, "hash": "b6acd7c1de2b5526221930acebb962014b6692f62952ccd588cd38d3c4255c7f", "text": "\\section{The {\\tt Node} class}\n\\index{Node class}\n\\index{class!Node}\n\nAs usual when writing a new class, we'll start with the\ninitialization and {\\tt \\_\\_str\\_\\_} methods so that we\ncan test the basic mechanism of creating and displaying the new\ntype:\n\n\\beforeverb\n\\begin{verbatim}\nclass Node:\n def __init__(self, cargo=None, next=None):\n self.cargo = cargo\n self.next = next\n\n def __str__(self):\n return str(self.cargo)\n\\end{verbatim}\n\\afterverb\n%\nAs usual, the parameters for the initialization method are optional. By\ndefault, both the cargo and the link, {\\tt next}, are set\nto {\\tt None}.\n\nThe string representation of a node is just the string representation\nof the cargo. Since any value can be passed to the {\\tt str}\nfunction, we can store any value in a list.\n\nTo test the implementation so far, we can create a {\\tt Node}\nand print it:\n\n\\beforeverb\n\\begin{verbatim}\n>>> node = Node(\"test\")\n>>> print node\ntest\n\\end{verbatim}\n\\afterverb\n%\nTo make it interesting, we need a list with more than\none node:\n\n\\beforeverb\n\\begin{verbatim}\n>>> node1 = Node(1)\n>>> node2 = Node(2)\n>>> node3 = Node(3)\n\\end{verbatim}\n\\afterverb\n%\nThis code creates three nodes, but we don't have a list yet\nbecause the nodes are not {\\bf linked}. The state diagram\nlooks like this:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/link1.eps}}\n\\afterfig\n\nTo link the nodes, we have to make the first node refer to the\nsecond and the second node refer to the third:\n\n\\beforeverb\n\\begin{verbatim}\n>>> node1.next = node2\n>>> node2.next = node3\n\\end{verbatim}\n\\afterverb\n%\nThe reference of the third node is {\\tt None}, which indicates that\nit is the end of the list. Now the state diagram looks like this:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/link2.eps}}\n\\afterfig\n\nNow you know how to create nodes and link them into lists. What\nmight be less clear at this point is why.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6429847b-17f8-4e4e-8ec9-289a9f5b74d1": {"__data__": {"id_": "6429847b-17f8-4e4e-8ec9-289a9f5b74d1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b", "node_type": null, "metadata": {}, "hash": "b6acd7c1de2b5526221930acebb962014b6692f62952ccd588cd38d3c4255c7f"}, "3": {"node_id": "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd", "node_type": null, "metadata": {}, "hash": "7e0a196bdd4d8ebc78d86ba0bbf5e0df62cd34e730f234e7d810b60d31ee7af1"}}, "hash": "f1a511c92efd1c56cacf7a38c8aa95b4b0eccb7b74f9adf32fbd7877a601cb8c", "text": "\\section{Lists as collections}\n\\index{collection}\n\nLists are useful because they provide a way to assemble multiple\nobjects into a single entity, sometimes called a {\\bf collection}. In\nthe example, the first node of the list serves as a reference to the\nentire list.\n\n\\index{list!printing}\n\\index{list!as argument}\n\nTo pass the list as an argument, we only have to pass a\nreference to the first node. For example, the function {\\tt printList}\ntakes a single node as an argument. Starting with the head of the\nlist, it prints each node until it gets to the end:\n\n\\beforeverb\n\\begin{verbatim}\ndef printList(node):\n while node:\n print node,\n node = node.next\n print\n\\end{verbatim}\n\\afterverb\n%\nTo invoke this function, we pass a reference to the\nfirst node:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printList(node1)\n1 2 3\n\\end{verbatim}\n\\afterverb\n%\nInside {\\tt printList} we have a reference to the first node\nof the list, but there is no variable that refers to the other\nnodes. We have to use the {\\tt next} value from each node\nto get to the next node.\n\nTo traverse a linked list, it is common to use a loop variable like\n{\\tt node} to refer to each of the nodes in succession.\n\n\\index{loop variable}\n\\index{list!traversal}\n\\index{traverse}\n\nThis diagram shows the nodes in the list and the values that\n{\\tt node} takes on:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/link3.eps}}\n\\afterfig\n\n\\begin{quote}\n{\\em By convention, lists are often printed in brackets with commas\nbetween the elements, as in {\\tt [1, 2, 3]}. As an exercise, modify\n{\\tt printList} so that it generates output in this format.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd": {"__data__": {"id_": "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "6429847b-17f8-4e4e-8ec9-289a9f5b74d1", "node_type": null, "metadata": {}, "hash": "f1a511c92efd1c56cacf7a38c8aa95b4b0eccb7b74f9adf32fbd7877a601cb8c"}, "3": {"node_id": "3f2a1579-dc10-4d61-84ec-282a3582fe16", "node_type": null, "metadata": {}, "hash": "2a20f834115c4851cff73e9d108a92aec459ebc79fa23d4839c6c5daa9fc972e"}}, "hash": "7e0a196bdd4d8ebc78d86ba0bbf5e0df62cd34e730f234e7d810b60d31ee7af1", "text": "\\section{Lists and recursion}\n\\label{listrecursion}\n\\index{list!traverse recursively}\n\\index{traverse}\n\nIt is natural to express many list operations using recursive methods.\nFor example, the following is a recursive algorithm for printing a list\nbackwards:\n\n\\begin{enumerate}\n\n\\item Separate the list into two pieces: the first node (called\nthe head); and the rest (called the tail).\n\n\\item Print the tail backward.\n\n\\item Print the head.\n\n\\end{enumerate}\n\nOf course, Step 2, the recursive call, assumes that we have a way of\nprinting a list backward. But if we assume that the recursive\ncall works---the leap of faith---then we can convince ourselves that\nthis algorithm works.\n\n\\index{leap of faith}\n\\index{list!printing backwards}\n\nAll we need are a base case and a way of proving that for\nany list, we will eventually get to the base case. Given the\nrecursive definition of a list, a natural base case is\nthe empty list, represented by {\\tt None}:\n\n\\beforeverb\n\\begin{verbatim}\ndef printBackward(list):\n if list == None: return\n head = list\n tail = list.next\n printBackward(tail)\n print head,\n\\end{verbatim}\n\\afterverb\n%\nThe first line handles the base case by doing nothing. The\nnext two lines split the list into {\\tt head} and {\\tt tail}.\nThe last two lines print the list. The comma at the end of the\nlast line keeps Python from printing a newline after each node.\n\nWe invoke this function as we invoked {\\tt printList}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printBackward(node1)\n3 2 1\n\\end{verbatim}\n\\afterverb\n%\nThe result is a backward list.\n\nYou might wonder why {\\tt printList} and {\\tt printBackward} are\nfunctions and not methods in the {\\tt Node} class. The reason is that\nwe want to use {\\tt None} to represent the empty list and it is not\nlegal to invoke a method on {\\tt None}. This limitation makes it\nawkward to write list-manipulating code in a clean object-oriented\nstyle.\n\nCan we prove that {\\tt printBackward} will always terminate? In other\nwords, will it always reach the base case? In fact, the answer\nis no. Some lists will make this function crash.\n\n\n\\section{Infinite lists}\n\\index{infinite list}\n\\index{list!infinite}\n\\index{loop!in list}\n\\index{list!loop}\n\nThere is nothing to prevent a node from referring back to\nan earlier node in the list, including itself. For example,\nthis figure shows a list with two nodes, one of which refers\nto itself:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/link4.eps}}\n\\afterfig\n\nIf we invoke {\\tt printList} on this list, it will loop forever.\nIf we invoke {\\tt printBackward}, it will recurse infinitely.\nThis sort of behavior makes infinite lists difficult to work\nwith.\n\nNevertheless, they are occasionally useful. For example, we\nmight represent a number as a list of digits and use an infinite\nlist to represent a repeating fraction.\n\nRegardless, it is problematic that we cannot prove that {\\tt printList}\nand {\\tt printBackward} terminate. The best we can do is the\nhypothetical statement, ``If the list contains no loops, then these\nfunctions will terminate.'' This sort of claim is called a {\\bf\nprecondition}. It imposes a constraint on one of the arguments and\ndescribes the behavior of the function if the constraint is satisfied.\nYou will see more examples soon.\n\n\\index{precondition}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3f2a1579-dc10-4d61-84ec-282a3582fe16": {"__data__": {"id_": "3f2a1579-dc10-4d61-84ec-282a3582fe16", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd", "node_type": null, "metadata": {}, "hash": "7e0a196bdd4d8ebc78d86ba0bbf5e0df62cd34e730f234e7d810b60d31ee7af1"}, "3": {"node_id": "b84c306f-9568-4e43-93d6-8e8a7e64cc3a", "node_type": null, "metadata": {}, "hash": "dc01ee77f70cf366da39bc3ac1907312e1a9e6d5f46469557773eebae24a7e02"}}, "hash": "2a20f834115c4851cff73e9d108a92aec459ebc79fa23d4839c6c5daa9fc972e", "text": "\\section{The fundamental ambiguity theorem}\n\\index{ambiguity!fundamental theorem}\n\\index{theorem!fundamental ambiguity}\n\nOne part of {\\tt printBackward} might have raised\nan eyebrow:\n\n\\beforeverb\n\\begin{verbatim}\n head = list\n tail = list.next\n\\end{verbatim}\n\\afterverb\n%\nAfter the first assignment, {\\tt head} and {\\tt list} have the same\ntype and the same value. So why did we create a new variable?\n\nThe reason is that the two variables play different roles. We think\nof {\\tt head} as a reference to a single node, and we think of\n{\\tt list} as a reference to the first node of a list. These\n``roles'' are not part of the program; they are in the mind of the\nprogrammer.\n\n\\index{variable!roles}\n\\index{role!variable}\n\nIn general we can't tell by looking at a program what role a\nvariable plays.\nThis ambiguity can be useful, but it can also make programs\ndifficult to read. We often use variable names like {\\tt node}\nand {\\tt list} to document how we intend to use a variable and\nsometimes create additional variables to disambiguate.\n\nWe could have written {\\tt printBackward} without {\\tt head}\nand {\\tt tail}, which makes it more concise but possibly\nless clear:\n\n\\beforeverb\n\\begin{verbatim}\ndef printBackward(list) :\n if list == None : return\n printBackward(list.next)\n print list,\n\\end{verbatim}\n\\afterverb\n%\nLooking at the two function calls, we have to remember that {\\tt\nprintBackward} treats its argument as a collection and {\\tt print}\ntreats its argument as a single object.\n\nThe {\\bf fundamental ambiguity theorem} describes the ambiguity\nthat is inherent in a reference to a node:\n\n\\begin{quote}\n{\\bf A variable that refers to a node might treat the node as a single\nobject or as the first in a list of nodes.}\n\\end{quote}\n\n\n\n\\section{Modifying lists}\n\\index{list!modifying}\n\\index{modifying lists}\n\nThere are two ways to modify a linked list. Obviously, we can change\nthe cargo of one of the nodes, but the more interesting operations are\nthe ones that add, remove, or reorder the nodes.\n\nAs an example, let's write a function that removes the second\nnode in the list and returns a reference to the removed node:\n\n\\beforeverb\n\\begin{verbatim}\ndef removeSecond(list):\n if list == None: return\n first = list\n second = list.next\n # make the first node refer to the third\n first.next = second.next\n # separate the second node from the rest of the list\n second.next = None\n return second\n\\end{verbatim}\n\\afterverb\n%\nAgain, we are using temporary variables to make the code more\nreadable. Here is how to use this function:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printList(node1)\n1 2 3\n>>> removed = removeSecond(node1)\n>>> printList(removed)\n2\n>>> printList(node1)\n1 3\n\\end{verbatim}\n\\afterverb\n%\nThis state diagram shows the effect of the operation:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/link5.eps}}\n\\afterfig\n\nWhat happens if you invoke this function and pass a list with only one\nelement (a {\\bf singleton})? What happens if you pass the empty list\nas an argument? Is there a precondition for this function? If so, fix\nthe function to handle a violation of the precondition in a reasonable\nway.\n\n\\index{singleton}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b84c306f-9568-4e43-93d6-8e8a7e64cc3a": {"__data__": {"id_": "b84c306f-9568-4e43-93d6-8e8a7e64cc3a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "3f2a1579-dc10-4d61-84ec-282a3582fe16", "node_type": null, "metadata": {}, "hash": "2a20f834115c4851cff73e9d108a92aec459ebc79fa23d4839c6c5daa9fc972e"}, "3": {"node_id": "8e899819-777f-4540-b925-c8eaa4b25258", "node_type": null, "metadata": {}, "hash": "2d3ed8cff1dd13f332c62e49eecc7f9add5718567118890eb5f1ae3ad187ed38"}}, "hash": "dc01ee77f70cf366da39bc3ac1907312e1a9e6d5f46469557773eebae24a7e02", "text": "\\section{Wrappers and helpers}\n\\index{wrapper function}\n\\index{function!wrapper}\n\\index{helper function}\n\\index{function!helper}\n\nIt is often useful to divide a list operation into\ntwo functions. For example, to print a list\nbackward in the\nformat {\\tt [3 2 1]} we can use the\n{\\tt printBackward} function to print {\\tt 3 2 1} but we need\na separate function to print the brackets.\nLet's call it {\\tt printBackwardNicely}:\n\n\\beforeverb\n\\begin{verbatim}\ndef printBackwardNicely(list) :\n print \"[\",\n printBackward(list)\n print \"]\",\n\\end{verbatim}\n\\afterverb\n%\nAgain, it is a good idea to check functions like this to see\nif they work with special cases like an empty list or\na singleton.\n\n\\index{singleton}\n\nWhen we use this function elsewhere in the program, we\ninvoke {\\tt printBackwardNicely} directly, and it invokes\n{\\tt printBackward} on our behalf. In that sense,\n{\\tt printBackwardNicely} acts as a {\\bf wrapper}, and it uses\n{\\tt printBackward} as a {\\bf helper}.\n\n\n\\section {The {\\tt LinkedList} class}\n\\index{LinkedList}\n\\index{class!LinkedList}\n\nThere are some subtle problems with the way we have been\nimplementing lists. In a reversal of cause and effect, we'll\npropose an alternative implementation first and then explain what\nproblems it solves.\n\nFirst, we'll create a new class called {\\tt LinkedList}. Its\nattributes are an integer that contains the length of the list\nand a reference to the first node. {\\tt LinkedList} objects\nserve as handles for manipulating lists of {\\tt Node} objects:\n\n\\beforeverb\n\\begin{verbatim}\nclass LinkedList :\n def __init__(self) :\n self.length = 0\n self.head = None\n\\end{verbatim}\n\\afterverb\n%\nOne nice thing about the {\\tt LinkedList} class is that it provides\na natural place to put wrapper functions like\n{\\tt printBackwardNicely}, which we can make a\nmethod of the {\\tt LinkedList} class:\n\n\\beforeverb\n\\begin{verbatim}\nclass LinkedList:\n ...\n def printBackward(self):\n print \"[\",\n if self.head != None:\n self.head.printBackward()\n print \"]\",\n\nclass Node:\n ...\n def printBackward(self):\n if self.next != None:\n tail = self.next\n tail.printBackward()\n print self.cargo,\n\\end{verbatim}\n\\afterverb\n%\nJust to make things confusing, we renamed {\\tt printBackwardNicely}.\nNow there are two methods named {\\tt printBackward}: one in the {\\tt\nNode} class (the helper); and one in the {\\tt LinkedList} class (the\nwrapper). When the wrapper invokes {\\tt self.head.printBackward},\nit is invoking the helper, because {\\tt self.head} is a\n{\\tt Node} object.\n\nAnother benefit of the {\\tt LinkedList} class is that it\nmakes it easier to add or remove the first element of a list. For\nexample, {\\tt addFirst} is a method for {\\tt LinkedList}s; it\ntakes an item of cargo as an argument and puts it at the beginning of the\nlist:\n\n\\beforeverb\n\\begin{verbatim}\nclass LinkedList:\n ...\n def addFirst(self, cargo):\n node = Node(cargo)\n node.next = self.head\n self.head = node\n self.length = self.length + 1\n\\end{verbatim}\n\\afterverb\n%\nAs usual, you should check code like this to see if it handles\nthe special cases. For example, what happens if the list is initially\nempty?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8e899819-777f-4540-b925-c8eaa4b25258": {"__data__": {"id_": "8e899819-777f-4540-b925-c8eaa4b25258", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "node_type": null, "metadata": {}, "hash": "6d3808e5914606c11880160615dbcb136f86dd3162bee419a76e1f11b8637a81"}, "2": {"node_id": "b84c306f-9568-4e43-93d6-8e8a7e64cc3a", "node_type": null, "metadata": {}, "hash": "dc01ee77f70cf366da39bc3ac1907312e1a9e6d5f46469557773eebae24a7e02"}}, "hash": "2d3ed8cff1dd13f332c62e49eecc7f9add5718567118890eb5f1ae3ad187ed38", "text": "\\section {Invariants}\n\\index{invariant}\n\\index{object invariant}\n\\index{list!well-formed}\n\nSome lists are ``well formed\"; others are not. For example, if a list\ncontains a loop, it will cause many of our methods to crash, so we\nmight want to require that lists contain no loops. Another\nrequirement is that the {\\tt length} value in the {\\tt LinkedList}\nobject should be equal to the actual number of nodes in the list.\n\nRequirements like these are called {\\bf invariants} because, ideally,\nthey should be true of every object all the time. Specifying\ninvariants for objects is a useful programming practice because it\nmakes it easier to prove the correctness of code, check the integrity\nof data structures, and detect errors.\n\nOne thing that is sometimes confusing about invariants is that\nthere are times when they are violated. For example, in the\nmiddle of {\\tt addFirst}, after we have added the node but\nbefore we have incremented {\\tt length}, the invariant is\nviolated. This kind of violation is acceptable; in fact, it is\noften impossible to modify an object without violating an\ninvariant for at least a little while. Normally, we require\nthat every method that violates an invariant must restore\nthe invariant.\n\nIf there is any significant stretch of code in which the invariant\nis violated, it is important for the comments to make that clear,\nso that no operations are performed that depend on the invariant.\n\n\\index{documentation}\n\n\n\\section{Glossary}\n\\index{embedded reference}\n\\index{reference!embedded}\n\\index{recursive data structure}\n\\index{data structure!recursive}\n\\index{linked list}\n\\index{list!linked}\n\\index{node}\n\\index{cargo}\n\\index{link}\n\\index{precondition}\n\\index{invariant}\n\\index{wrapper}\n\\index{helper method}\n\\index{fundamental ambiguity theorem}\n\\index{singleton}\n\n\\begin{description}\n\n\\item[embedded reference:] A reference stored in an attribute of\nan object.\n\n\\item[linked list:] A data structure that implements a collection using\na sequence of linked nodes.\n\n\\item[node:] An element of a list, usually implemented as an object\nthat contains a reference to another object of the same type.\n\n\\item[cargo:] An item of data contained in a node.\n\n\\item[link:] An embedded reference used to link one object to\nanother.\n\n\\item[precondition:] An assertion that must be true in order for a\nmethod to work correctly.\n\n\\item[fundamental ambiguity theorem:] A reference to a list\nnode can be treated as a single\nobject or as the first in a list of nodes.\n\n\\item[singleton:] A linked list with a single node.\n\n\\item[wrapper:] A method that acts as a middleman between a\ncaller and a helper method, often making the method easier or\nless error-prone to invoke.\n\n\\item[helper:] A method that is not invoked directly by a caller\nbut is used by another method to perform part of an operation.\n\n\\item[invariant:] An assertion that should be true of an object at\nall times (except perhaps while the object is being modified).\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a12a726d-e5d7-4615-8f14-60665e34ec67": {"__data__": {"id_": "a12a726d-e5d7-4615-8f14-60665e34ec67", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "node_type": null, "metadata": {}, "hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "3": {"node_id": "523b9723-f604-4ad0-9140-1f46a38c90fd", "node_type": null, "metadata": {}, "hash": "4122c20abd81e8691d018e9088e99d27852f6acde85eddbfc732a4266d7c5e00"}}, "hash": "d4644a0e7b7e2f2bc85d9aa1c86e5573f4123b3a52c423a5222934b0137b53b2", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\n\\chapter{Stacks}\n\n\\section{Abstract data types}\n\\index{abstract data type|see{ADT}}\n\\index{ADT}\n\\index{encapsulation}\n\nThe data types you have seen so far are all concrete, in the\nsense that we have completely specified how they are implemented.\nFor example, the {\\tt Card} class represents a card using two\nintegers. As we discussed at the time, that is not the only way\nto represent a card; there are many alternative implementations.\n\nAn {\\bf abstract data type}, or ADT, specifies a set of operations (or\nmethods) and the semantics of the operations (what they do), but it\ndoes not specify the implementation of the operations. That's\nwhat makes it abstract.\n\nWhy is that useful?\n\n\\begin{itemize}\n\n\\item It simplifies the task of specifying an algorithm if you\ncan denote the operations you need without having to think at the\nsame time about how the operations are performed.\n\n\\item Since there are usually many ways to implement an ADT,\nit might be useful to write an algorithm that can be used with\nany of the possible implementations.\n\n\\item Well-known ADTs, such as the Stack ADT in this chapter,\nare often implemented in standard libraries so they can be written\nonce and used by many programmers.\n\n\\item The operations on ADTs provide a common high-level language\nfor specifying and talking about algorithms.\n\n\\end{itemize}\n\nWhen we talk about ADTs, we often distinguish the code that uses\nthe ADT, called the {\\bf client} code, from the code that implements\nthe ADT, called the {\\bf provider} code.\n\n\\index{client}\n\\index{provider}\n\n\n\\section{The Stack ADT}\n\\index{stack}\n\\index{collection}\n\\index{ADT!Stack}\n\nIn this chapter, we will look at one common ADT, the {\\bf stack}. A\nstack is a collection, meaning that it is a data structure that\ncontains multiple elements. Other collections we have seen include\ndictionaries and lists.\n\n\\index{interface}\n\nAn ADT is defined by the operations that can be performed on it, which\nis called an {\\bf interface}. The interface for a stack consists of\nthese operations:\n\n\\begin{description}\n\n\\item[{\\tt \\_\\_init\\_\\_}:] Initialize a new empty stack.\n\n\\item[{\\tt push}:] Add a new item to the stack.\n\n\\item[{\\tt pop}:] Remove and return an item from the stack. The item\nthat is returned is always the last one that was added.\n\n\\item[{\\tt isEmpty}:] Check whether the stack is empty.\n\n\\end{description}\n\nA stack is sometimes called a ``last in, first out'' or LIFO\ndata structure, because the last item added is the first to\nbe removed.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "523b9723-f604-4ad0-9140-1f46a38c90fd": {"__data__": {"id_": "523b9723-f604-4ad0-9140-1f46a38c90fd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "node_type": null, "metadata": {}, "hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "2": {"node_id": "a12a726d-e5d7-4615-8f14-60665e34ec67", "node_type": null, "metadata": {}, "hash": "d4644a0e7b7e2f2bc85d9aa1c86e5573f4123b3a52c423a5222934b0137b53b2"}, "3": {"node_id": "97f8d001-26d2-4042-87a6-da4c7e9df3d1", "node_type": null, "metadata": {}, "hash": "ff1182aff21e30e45365304dbd5f8cb7c21d7dc5a77967f4dc1761521faa8ec5"}}, "hash": "4122c20abd81e8691d018e9088e99d27852f6acde85eddbfc732a4266d7c5e00", "text": "\\section {Implementing stacks with Python lists}\n\\index{Stack}\n\\index{class!Stack}\n\\index{generic data structure}\n\\index{data structure!generic}\n\nThe list\noperations that Python provides are similar to the operations that\ndefine a stack. The interface isn't exactly what it is supposed\nto be, but we can write code to translate from the Stack ADT\nto the built-in operations.\n\nThis code is called an {\\bf implementation} of the Stack ADT.\nIn general, an implementation is a set of methods that satisfy\nthe syntactic and semantic requirements of an interface.\n\nHere is an implementation of the Stack ADT that uses a Python list:\n\n\\beforeverb\n\\begin{verbatim}\nclass Stack :\n def __init__(self) :\n self.items = []\n\n def push(self, item) :\n self.items.append(item)\n\n def pop(self) :\n return self.items.pop()\n\n def isEmpty(self) :\n return (self.items == [])\n\\end{verbatim}\n\\afterverb\n%\nA {\\tt Stack} object contains an attribute named {\\tt items}\nthat is a list of items in the stack. The initialization method\nsets {\\tt items} to the empty list.\n\nTo push a new item onto the stack, {\\tt push} appends it onto {\\tt\nitems}. To pop an item off the stack, {\\tt pop} uses the\nhomonymous\\footnote{same-named} list method to remove and return the\nlast item on the list.\n\nFinally, to check if the stack is empty, {\\tt isEmpty} compares\n{\\tt items} to the empty list.\n\n\\index{veneer}\n\nAn implementation like this, in which the methods consist of simple\ninvocations of existing methods, is called a {\\bf veneer}. In real\nlife, veneer is a thin coating of good quality wood used in\nfurniture-making to hide lower quality wood underneath. Computer\nscientists use this metaphor to describe a small piece of code that\nhides the details of an implementation and provides a simpler, or more\nstandard, interface.\n\n\n\\section{Pushing and popping}\n\\index{push}\n\\index{pop}\n\\index{generic data structure}\n\\index{data structure!generic}\n\nA stack is a {\\bf generic data structure}, which means that we can\nadd any type of item to it. The following example pushes\ntwo integers and a string onto the stack:\n\n\\beforeverb\n\\begin{verbatim}\n>>> s = Stack()\n>>> s.push(54)\n>>> s.push(45)\n>>> s.push(\"+\")\n\\end{verbatim}\n\\afterverb\n%\nWe can use {\\tt isEmpty} and {\\tt pop} to remove and print\nall of the items on the stack:\n\n\\beforeverb\n\\begin{verbatim}\nwhile not s.isEmpty() :\n print s.pop(),\n\\end{verbatim}\n\\afterverb\n%\nThe output is {\\tt + 45 54}. In other words, we just used a stack\nto print the items backward! Granted, it's not the\nstandard format for printing a list, but by using a stack, it was\nremarkably easy to do.\n\nYou should compare this bit of code to the implementation of {\\tt\nprintBackward} in Section~\\ref{listrecursion}. There is a natural\nparallel between the recursive version of {\\tt printBackward} and the\nstack algorithm here. The difference is that {\\tt printBackward} uses\nthe runtime stack to keep track of the nodes while it traverses the\nlist, and then prints them on the way back from the recursion. The\nstack algorithm does the same thing, except that it uses a {\\tt Stack}\nobject instead of the runtime stack.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "97f8d001-26d2-4042-87a6-da4c7e9df3d1": {"__data__": {"id_": "97f8d001-26d2-4042-87a6-da4c7e9df3d1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "node_type": null, "metadata": {}, "hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "2": {"node_id": "523b9723-f604-4ad0-9140-1f46a38c90fd", "node_type": null, "metadata": {}, "hash": "4122c20abd81e8691d018e9088e99d27852f6acde85eddbfc732a4266d7c5e00"}, "3": {"node_id": "aacf5ef9-6dbd-40de-991b-a512b0552188", "node_type": null, "metadata": {}, "hash": "6988493b68075730d2a7e7b9f4c8bf2f5fb1a648e20961b24df72ddc1fddeded"}}, "hash": "ff1182aff21e30e45365304dbd5f8cb7c21d7dc5a77967f4dc1761521faa8ec5", "text": "\\section {Using a stack to evaluate postfix}\n\\index{postfix}\n\\index{infix}\n\\index{expression}\n\nIn most programming languages, mathematical expressions are\nwritten with the operator between the two operands, as in\n{\\tt 1+2}. This format is called {\\bf infix}. An alternative\nused by some calculators is called {\\bf postfix}. In\npostfix, the operator follows the operands, as in {\\tt 1 2 +}.\n\nThe reason postfix is sometimes useful is that there is a\nnatural way to evaluate a postfix expression using a stack:\n\n\\begin{itemize}\n\n\\item Starting at the beginning of the expression, get one\nterm (operator or operand) at a time.\n\n \\begin{itemize}\n\n \\item If the term is an operand, push it on the stack.\n\n \\item If the term is an operator, pop two operands off\n the stack, perform the operation on them, and push the\n result back on the stack.\n\n \\end{itemize}\n\n\\item When you get to the end of the expression, there should\nbe exactly one operand left on the stack. That operand is the\nresult.\n\n\\end{itemize}\n\n\\begin{quote}\n{\\em As an exercise, apply this algorithm to the expression\n{\\tt 1 2 + 3 *}.}\n\\end{quote}\n\nThis example demonstrates one of the advantages of postfix---there is\nno need to use parentheses to control the order of operations. To get\nthe same result in infix, we would have to write {\\tt (1 + 2) * 3}.\n\n\\begin{quote}\n{\\em As an exercise, write a postfix expression that is equivalent to\n{\\tt 1 + 2 * 3}.}\n\\end{quote}\n\n\n\\section {Parsing}\n\\index{parse}\n\\index{token}\n\\index{delimiter}\n\\index{regular expression}\n\nTo implement the previous algorithm, we need\nto be able to traverse a string and break it into operands and\noperators. This process is an example of {\\bf parsing}, and the\nresults---the individual chunks of the string---are called {\\bf\ntokens}. You might remember these words from Chapter 1.\n\nPython provides a {\\tt split} method in both the {\\tt string} and {\\tt\nre} (regular expression) modules. The function {\\tt string.split}\nsplits a string into a list using a single character as a {\\bf delimiter}.\nFor example:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import string\n>>> string.split(\"Now is the time\",\" \")\n['Now', 'is', 'the', 'time']\n\\end{verbatim}\n\\afterverb\n%\nIn this case, the delimiter is the space character, so the string\nis split at each space.\n\nThe function {\\tt re.split} is more powerful, allowing us to\nprovide a regular expression instead of a delimiter.\nA regular expression is a way of specifying a set of strings.\nFor example, \\verb+[A-z]+ is the set of all letters and\n\\verb+[0-9]+ is the set of all digits. The \\verb+^+ operator\nnegates a set, so \\verb+[^0-9]+ is the set of every character that\nis not a digit, which is exactly the set we want to use to\nsplit up postfix expressions:\n\n\\beforeverb\n\\begin{verbatim}\n>>> import re\n>>> re.split(\"([^0-9])\", \"123+456*/\")\n['123', '+', '456', '*', '', '/', '']\n\\end{verbatim}\n\\afterverb\n%\nNotice that the order of the\narguments is different from {\\tt string.split}; the delimiter comes\nbefore the string.\n\nThe resulting list includes the operands {\\tt 123} and {\\tt 456} and\nthe operators {\\tt *} and {\\tt /}. It also includes two empty\nstrings that are inserted as ``phantom operands,'' whenever an\noperator appears without a number before or after it.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "aacf5ef9-6dbd-40de-991b-a512b0552188": {"__data__": {"id_": "aacf5ef9-6dbd-40de-991b-a512b0552188", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "node_type": null, "metadata": {}, "hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "2": {"node_id": "97f8d001-26d2-4042-87a6-da4c7e9df3d1", "node_type": null, "metadata": {}, "hash": "ff1182aff21e30e45365304dbd5f8cb7c21d7dc5a77967f4dc1761521faa8ec5"}, "3": {"node_id": "decefc81-7ed0-450c-b7ad-bbc3f17b4994", "node_type": null, "metadata": {}, "hash": "308874d968e9a1f54122dfba8f08a0139070e9fd371d93aa38ffb613154d7f12"}}, "hash": "6988493b68075730d2a7e7b9f4c8bf2f5fb1a648e20961b24df72ddc1fddeded", "text": "\\section {Evaluating postfix}\n\nTo evaluate a postfix expression, we will use the parser from\nthe previous section and the algorithm from the section before that.\nTo keep things simple, we'll start with an evaluator that\nonly implements the operators {\\tt +} and {\\tt *}:\n\n\\adjustpage{-3}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\ndef evalPostfix(expr):\n import re\n tokenList = re.split(\"([^0-9])\", expr)\n stack = Stack()\n for token in tokenList:\n if token == '' or token == ' ':\n continue\n if token == '+':\n sum = stack.pop() + stack.pop()\n stack.push(sum)\n elif token == '*':\n product = stack.pop() * stack.pop()\n stack.push(product)\n else:\n stack.push(int(token))\n return stack.pop()\n\\end{verbatim}\n\\afterverb\n%\nThe first condition takes care of spaces and empty strings. The next\ntwo conditions handle operators. We assume, for now, that anything\nelse must be an operand. Of course, it would be better to check for\nerroneous input and report an error message, but we'll get to that\nlater.\n\nLet's test it by evaluating the postfix form of {\\tt (56+47)*2}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> print evalPostfix (\"56 47 + 2 *\")\n206\n\\end{verbatim}\n\\afterverb\n%\nThat's close enough.\n\n\n\\section {Clients and providers}\n\\index{encapsulation}\n\\index{ADT}\n\nOne of the fundamental goals of an ADT is to separate the\ninterests of the provider, who writes the code that implements\nthe ADT, and the client, who uses the ADT.\nThe provider only has to worry\nabout whether the implementation is correct---in accord\nwith the specification of the ADT---and not how it will be used.\n\nConversely, the client {\\em assumes} that the implementation of the\nADT is correct and doesn't worry about the details. When you\nare using one of Python's built-in types, you have the luxury\nof thinking exclusively as a client.\n\nOf course, when you implement an ADT, you also have\nto write client code to test it. In that case, you play both\nroles, which can be confusing. You should make some effort\nto keep track of which role you are playing at any moment.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "decefc81-7ed0-450c-b7ad-bbc3f17b4994": {"__data__": {"id_": "decefc81-7ed0-450c-b7ad-bbc3f17b4994", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "node_type": null, "metadata": {}, "hash": "29f4318e743373b158f315f8d22038f24902967296115a8d28dab0db9c70cf25"}, "2": {"node_id": "aacf5ef9-6dbd-40de-991b-a512b0552188", "node_type": null, "metadata": {}, "hash": "6988493b68075730d2a7e7b9f4c8bf2f5fb1a648e20961b24df72ddc1fddeded"}}, "hash": "308874d968e9a1f54122dfba8f08a0139070e9fd371d93aa38ffb613154d7f12", "text": "\\section{Glossary}\n\\index{ADT}\n\\index{client}\n\\index{provider}\n\\index{infix}\n\\index{postfix}\n\\index{parse}\n\\index{token}\n\\index{delimiter}\n\n\\begin{description}\n\n\\item[abstract data type (ADT):] A data type (usually a collection\nof objects) that is defined by a set of operations but that can\nbe implemented in a variety of ways.\n\n\\item[interface:] The set of operations that define an ADT.\n\n\\item[implementation:] Code that satisfies the syntactic and semantic\nrequirements of an interface.\n\n\\item[client:] A program (or the person who wrote it) that uses an ADT.\n\n\\item[provider:] The code (or the person\nwho wrote it) that implements an ADT.\n\n\\item[veneer:] A class definition that implements an ADT with\nmethod definitions that are invocations of other methods, sometimes\nwith simple transformations. The veneer does no significant work,\nbut it improves or standardizes the interface seen by the client.\n\n\\item[generic data structure:] A kind of data structure that can\ncontain data of any type.\n\n\\item[infix:] A way of writing mathematical expressions with the\noperators between the operands.\n\n\\item[postfix:] A way of writing mathematical expressions with the\noperators after the operands.\n\n\\item[parse:] To read a string of characters or tokens and analyze\nits grammatical structure.\n\n\\item[token:] A set of characters that are treated as a unit for\npurposes of parsing, such as the words in a natural language.\n\n\\item[delimiter:] A character that is used to separate tokens,\nsuch as punctuation in a natural language.\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6": {"__data__": {"id_": "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "3": {"node_id": "c3556ce3-e8dc-44df-9263-115d43ae8b65", "node_type": null, "metadata": {}, "hash": "0fb3dc59b92afc33c1046e28b3a9eb3e7a95eb91c6d567991ddbac9ea17ee459"}}, "hash": "b31873bf80194ccd1fa5a7ec223dafdef36d3f7c5a79ba6c82ded8b6bb0f2565", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\n\\chapter{Queues}\n\\label{queue}\n\\index{queue}\n\\index{ADT!Queue}\n\\index{priority queue}\n\\index{ADT!Priority Queue}\n\\index{FIFO}\n\\index{queueing policy}\n\\index{priority queueing}\n\nThis chapter presents two ADTs: the Queue and the Priority Queue.\nIn real life, a {\\bf queue} is a line of customers waiting for service\nof some kind. In most cases, the first customer in line is the\nnext customer to be served. There are exceptions, though.\nAt airports, customers whose flights are leaving soon\nare sometimes taken from the middle of the queue. At\nsupermarkets, a polite customer might let someone with only a\nfew items go first.\n\nThe rule that determines who goes next is called the\n{\\bf queueing policy}. The simplest queueing policy is\ncalled {\\bf FIFO}, for ``first-in-first-out.'' The most general\nqueueing policy is {\\bf priority queueing}, in which each customer\nis assigned a priority and the customer with the highest priority\ngoes first, regardless of the order of arrival. We\nsay this is the most general policy because the priority\ncan be based on anything: what time a flight leaves; how many\ngroceries the customer has; or how important the customer is.\nOf course, not all queueing policies are ``fair,'' but\nfairness is in the eye of the beholder.\n\nThe Queue ADT and the Priority Queue ADT have the same set\nof operations. The difference\nis in the semantics of the operations: a queue uses the FIFO\npolicy; and a priority queue (as the name suggests) uses the\npriority queueing policy.\n\n\\adjustpage{1}\n\n\\section{The Queue ADT}\n\\index{ADT!Queue}\n\\index{Queue ADT}\n\\index{implementation!Queue}\n\\index{queue!List implementation}\n\nThe Queue ADT is defined by the following operations:\n\n\\begin{description}\n\n\\item[{\\tt \\_\\_init\\_\\_}:] Initialize a new empty queue.\n\n\\item[{\\tt insert}:] Add a new item to the queue.\n\n\\item[{\\tt remove}:] Remove and return an item from the queue. The item\nthat is returned is the first one that was added.\n\n\\item[{\\tt isEmpty}:] Check whether the queue is empty.\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c3556ce3-e8dc-44df-9263-115d43ae8b65": {"__data__": {"id_": "c3556ce3-e8dc-44df-9263-115d43ae8b65", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "2": {"node_id": "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6", "node_type": null, "metadata": {}, "hash": "b31873bf80194ccd1fa5a7ec223dafdef36d3f7c5a79ba6c82ded8b6bb0f2565"}, "3": {"node_id": "b7618784-7da4-4ea7-a537-e13e4e6958a4", "node_type": null, "metadata": {}, "hash": "a013dba54d0d6ef7c3d103be964f9858564bddfb6f8b09b9566a24f40d4b2f65"}}, "hash": "0fb3dc59b92afc33c1046e28b3a9eb3e7a95eb91c6d567991ddbac9ea17ee459", "text": "\\section{Linked Queue}\n\\index{linked queue}\n\\index{queue!linked implementation}\n\nThe first implementation of the Queue ADT we will look at is\ncalled a {\\bf linked queue} because it is made up of linked\n{\\tt Node} objects. Here is the class definition:\n\n\\beforeverb\n\\begin{verbatim}\nclass Queue:\n def __init__(self):\n self.length = 0\n self.head = None\n\n def isEmpty(self):\n return (self.length == 0)\n\n def insert(self, cargo):\n node = Node(cargo)\n node.next = None\n if self.head == None:\n # if list is empty the new node goes first\n self.head = node\n else:\n # find the last node in the list\n last = self.head\n while last.next: last = last.next\n # append the new node\n last.next = node\n self.length = self.length + 1\n\n def remove(self):\n cargo = self.head.cargo\n self.head = self.head.next\n self.length = self.length - 1\n return cargo\n\\end{verbatim}\n\\afterverb\n%\nThe methods {\\tt isEmpty} and {\\tt remove} are identical to the\n{\\tt LinkedList} methods {\\tt isEmpty} and {\\tt removeFirst}.\nThe {\\tt insert} method is new and a bit more complicated.\n\nWe want to insert new items at the end of the list.\nIf the queue is empty, we just set {\\tt\nhead} to refer to the new node.\n\nOtherwise, we traverse the list to the last node and\ntack the new node on the end. We can identify the last node because\nits {\\tt next} attribute is {\\tt None}.\n\nThere are two invariants for a properly formed {\\tt Queue} object.\nThe value of {\\tt length} should be the number of nodes in the\nqueue, and the last node should have {\\tt next} equal to\n{\\tt None}. Convince yourself that this method preserves\nboth invariants.\n\n\n\\section{Performance characteristics}\n\\index{performance}\n\nNormally when we invoke a method, we are not concerned with the\ndetails of its implementation. But there is one ``detail''\nwe might want to know---the performance characteristics of the\nmethod. How long does it take, and how does the run time change\nas the number of items in the collection increases?\n\nFirst look at {\\tt remove}.\nThere are no loops or function calls here, suggesting that\nthe runtime of this method is the same every time. Such a method\nis called a {\\bf constant time} operation.\nIn reality, the method might be slightly faster\nwhen the list is empty since it skips the body of the conditional,\nbut that difference is not significant.\n\n\\index{constant time}\n\nThe performance of {\\tt insert} is very different.\nIn the general case, we have to\ntraverse the list to find the last element.\n\nThis traversal takes time proportional to the length of the\nlist. Since the runtime is a linear function of the length,\nthis method is called {\\bf linear time}. Compared to\nconstant time, that's very bad.\n\n\\index{linear time}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b7618784-7da4-4ea7-a537-e13e4e6958a4": {"__data__": {"id_": "b7618784-7da4-4ea7-a537-e13e4e6958a4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "2": {"node_id": "c3556ce3-e8dc-44df-9263-115d43ae8b65", "node_type": null, "metadata": {}, "hash": "0fb3dc59b92afc33c1046e28b3a9eb3e7a95eb91c6d567991ddbac9ea17ee459"}, "3": {"node_id": "015f77e0-1857-45de-9299-ae361ba2bb5a", "node_type": null, "metadata": {}, "hash": "8d8286332f0e7f59ff18614dbf4933ad752ae082c2deea18b21836c3cf414681"}}, "hash": "a013dba54d0d6ef7c3d103be964f9858564bddfb6f8b09b9566a24f40d4b2f65", "text": "\\section{Improved Linked Queue}\n\\index{queue!improved implementation}\n\\index{improved queue}\n\nWe would like an implementation of the Queue ADT that can\nperform all operations in constant time. One way to\ndo that is to modify the Queue class so that it\nmaintains a reference to both the first and the last node,\nas shown in the figure:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/queue1.eps}}\n\\afterfig\n\nThe {\\tt ImprovedQueue} implementation looks like this:\n\n\\beforeverb\n\\begin{verbatim}\nclass ImprovedQueue:\n def __init__(self):\n self.length = 0\n self.head = None\n self.last = None\n\n def isEmpty(self):\n return (self.length == 0)\n\\end{verbatim}\n\\afterverb\n%\nSo far, the only change is the attribute {\\tt last}. It is used in\n{\\tt insert} and {\\tt remove} methods:\n\n\\beforeverb\n\\begin{verbatim}\nclass ImprovedQueue:\n ...\n def insert(self, cargo):\n node = Node(cargo)\n node.next = None\n if self.length == 0:\n # if list is empty, the new node is head and last\n self.head = self.last = node\n else:\n # find the last node\n last = self.last\n # append the new node\n last.next = node\n self.last = node\n self.length = self.length + 1\n\\end{verbatim}\n\\afterverb\n%\nSince {\\tt last} keeps track of the last node, we don't have to search\nfor it. As a result, this method is constant time.\n\nThere is a price to pay for that speed. We have to add a special case\nto {\\tt remove} to set {\\tt last} to {\\tt None} when the last node is\nremoved:\n\n\\beforeverb\n\\begin{verbatim}\nclass ImprovedQueue:\n ...\n def remove(self):\n cargo = self.head.cargo\n self.head = self.head.next\n self.length = self.length - 1\n if self.length == 0:\n self.last = None\n return cargo\n\\end{verbatim}\n\\afterverb\n%\nThis implementation is more complicated than the\nLinked Queue implementation, and it is more difficult to demonstrate\nthat it is correct. The advantage is that we have achieved\nthe goal---both {\\tt insert} and {\\tt remove} are constant time\noperations.\n\n\\begin{quote}\n{\\em As an exercise, write an implementation of the Queue ADT using\na Python list. Compare the performance of this implementation to the\n{\\tt ImprovedQueue} for a range of queue lengths.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "015f77e0-1857-45de-9299-ae361ba2bb5a": {"__data__": {"id_": "015f77e0-1857-45de-9299-ae361ba2bb5a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "2": {"node_id": "b7618784-7da4-4ea7-a537-e13e4e6958a4", "node_type": null, "metadata": {}, "hash": "a013dba54d0d6ef7c3d103be964f9858564bddfb6f8b09b9566a24f40d4b2f65"}, "3": {"node_id": "c8f16d49-c530-47af-a49c-3e0f2e6edac3", "node_type": null, "metadata": {}, "hash": "e1b541c5ec4f4da58c5fc27e332a45414061851b923c608bbae6df4f69256b64"}}, "hash": "8d8286332f0e7f59ff18614dbf4933ad752ae082c2deea18b21836c3cf414681", "text": "\\section{Priority queue}\n\\index{priority queue!ADT}\n\\index{ADT!Priority Queue}\n\nThe Priority Queue ADT has the same interface as the Queue ADT, but\ndifferent semantics. Again, the interface is:\n\n\\begin{description}\n\n\\item[{\\tt \\_\\_init\\_\\_}:] Initialize a new empty queue.\n\n\\item[{\\tt insert}:] Add a new item to the queue.\n\n\\item[{\\tt remove}:] Remove and return an item from the queue. The item\nthat is returned is the one with the highest priority.\n\n\\item[{\\tt isEmpty}:] Check whether the queue is empty.\n\n\\end{description}\n\nThe semantic difference is that the item that is removed from the\nqueue is not necessarily the first one that was added. Rather, it is\nthe item in the queue that has the highest priority. What the\npriorities are and how they compare to each other are not specified by\nthe Priority Queue implementation. It depends on which items are in\nthe queue.\n\nFor example, if the items in the queue have names, we might choose\nthem in alphabetical order. If they are bowling scores, we might go\nfrom highest to lowest, but if they are golf scores, we would go from\nlowest to highest. As long as we can compare the items in the queue,\nwe can find and remove the one with the highest priority.\n\nThis implementation of Priority Queue has as an attribute\na Python list that\ncontains the items in the queue.\n\n\\beforeverb\n\\begin{verbatim}\nclass PriorityQueue:\n def __init__(self):\n self.items = []\n\n def isEmpty(self):\n return self.items == []\n\n def insert(self, item):\n self.items.append(item)\n\\end{verbatim}\n\\afterverb\n%\nThe initialization method, {\\tt isEmpty}, and {\\tt insert} are all\nveneers on list operations. The only interesting method is {\\tt\nremove}:\n\n\\beforeverb\n\\begin{verbatim}\nclass PriorityQueue:\n ...\n def remove(self):\n maxi = 0\n for i in range(1,len(self.items)):\n if self.items[i] > self.items[maxi]:\n maxi = i\n item = self.items[maxi]\n self.items[maxi:maxi+1] = []\n return item\n\\end{verbatim}\n\\afterverb\n%\nAt the beginning of each iteration, {\\tt maxi} holds the index of the\nbiggest item (highest priority) we have seen {\\em so far}. Each time\nthrough the loop, the program compares the {\\tt i}-eth item to the champion.\nIf the new item is bigger, the value of {\\tt maxi} is set to {\\tt i}.\n\n\\index{traverse}\n\nWhen the {\\tt for} statement completes,\n{\\tt maxi} is the index of the biggest item. This item\nis removed from the list and returned.\n\nLet's test the implementation:\n\n\\beforeverb\n\\begin{verbatim}\n>>> q = PriorityQueue()\n>>> q.insert(11)\n>>> q.insert(12)\n>>> q.insert(14)\n>>> q.insert(13)\n>>> while not q.isEmpty(): print q.remove()\n14\n13\n12\n11\n\\end{verbatim}\n\\afterverb\n%\nIf the queue contains simple numbers or strings, they are\nremoved in numerical or alphabetical order, from highest to\nlowest. Python can find the biggest integer or string because\nit can compare them using the built-in comparison operators.\n\nIf the queue contains an object type, it has to provide\na {\\tt \\_\\_cmp\\_\\_} method. When {\\tt remove} uses the {\\tt >}\noperator to compare items, it invokes the {\\tt \\_\\_cmp\\_\\_}\nfor one of the items and passes the other as an argument. As\nlong as the {\\tt \\_\\_cmp\\_\\_} method works correctly, the\nPriority Queue will work.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c8f16d49-c530-47af-a49c-3e0f2e6edac3": {"__data__": {"id_": "c8f16d49-c530-47af-a49c-3e0f2e6edac3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "2": {"node_id": "015f77e0-1857-45de-9299-ae361ba2bb5a", "node_type": null, "metadata": {}, "hash": "8d8286332f0e7f59ff18614dbf4933ad752ae082c2deea18b21836c3cf414681"}, "3": {"node_id": "751318bf-7121-43da-88b3-b0c3e382e2f8", "node_type": null, "metadata": {}, "hash": "cff5a136b79ff1a13723070392fd599de7d3897b65364e9bdaae5b7bb9e5dd95"}}, "hash": "e1b541c5ec4f4da58c5fc27e332a45414061851b923c608bbae6df4f69256b64", "text": "\\section{The {\\tt Golfer} class}\n\\index{Golfer}\n\\index{class!Golfer}\n\\index{priority}\n\\index{operator overloading}\n\\index{overloading!operator}\n\nAs an example of an object with an unusual definition of priority, let's\nimplement a class called {\\tt Golfer} that keeps track of the\nnames and scores of golfers. As usual, we start by defining {\\tt\n\\_\\_init\\_\\_} and {\\tt \\_\\_str\\_\\_}:\n\n\\beforeverb\n\\begin{verbatim}\nclass Golfer:\n def __init__(self, name, score):\n self.name = name\n self.score= score\n\n def __str__(self):\n return \"%-16s: %d\" % (self.name, self.score)\n\\end{verbatim}\n\\afterverb\n%\n{\\tt \\_\\_str\\_\\_} uses the format operator to put the names\nand scores in neat columns.\n\n\\index{format operator}\n\\index{operator!format}\n\nNext we define a version of {\\tt \\_\\_cmp\\_\\_} where the lowest\nscore gets highest priority. As always, {\\tt \\_\\_cmp\\_\\_} returns\n1 if {\\tt self} is ``greater than'' {\\tt other}, -1 if {\\tt self}\nis ``less than'' other, and 0 if they are equal.\n\n\\beforeverb\n\\begin{verbatim}\nclass Golfer:\n ...\n def __cmp__(self, other):\n if self.score < other.score: return 1 # less is more\n if self.score > other.score: return -1\n return 0\n\\end{verbatim}\n\\afterverb\n%\nNow we are ready to test the priority queue with the {\\tt Golfer} class:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tiger = Golfer(\"Tiger Woods\", 61)\n>>> phil = Golfer(\"Phil Mickelson\", 72)\n>>> hal = Golfer(\"Hal Sutton\", 69)\n>>>\n>>> pq = PriorityQueue()\n>>> pq.insert(tiger)\n>>> pq.insert(phil)\n>>> pq.insert(hal)\n>>> while not pq.isEmpty(): print pq.remove()\nTiger Woods : 61\nHal Sutton : 69\nPhil Mickelson : 72\n\\end{verbatim}\n\\afterverb\n\n\\begin{quote}\n{\\em As an exercise, write an implementation of the Priority Queue ADT \nusing a linked list. You should keep the list sorted so that removal\nis a constant time operation. Compare the performance of this\nimplementation with the Python list implementation.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "751318bf-7121-43da-88b3-b0c3e382e2f8": {"__data__": {"id_": "751318bf-7121-43da-88b3-b0c3e382e2f8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "node_type": null, "metadata": {}, "hash": "821cd266646ed64793309ae8262943cce5e8d6ead88e44167c7fb5984f6e734b"}, "2": {"node_id": "c8f16d49-c530-47af-a49c-3e0f2e6edac3", "node_type": null, "metadata": {}, "hash": "e1b541c5ec4f4da58c5fc27e332a45414061851b923c608bbae6df4f69256b64"}}, "hash": "cff5a136b79ff1a13723070392fd599de7d3897b65364e9bdaae5b7bb9e5dd95", "text": "\\section{Glossary}\n\\index{queue}\n\\index{queueing policy}\n\\index{FIFO}\n\\index{priority queue}\n\\index{veneer}\n\\index{constant time}\n\\index{linear time}\n\\index{performance hazard}\n\\index{linked queue}\n\\index{circular buffer}\n\\index{abstract class}\n\\index{interface}\n\n\\begin{description}\n\n\\item[queue:] An ordered set of objects waiting for a service of\nsome kind.\n\n\\item[Queue:] An ADT that performs the operations one might perform\non a queue.\n\n\\item[queueing policy:] The rules that determine which member\nof a queue is removed next.\n\n\\item[FIFO:] ``First In, First Out,'' a queueing policy in which\nthe first member to arrive is the first to be removed.\n\n\\item[priority queue:] A queueing policy in which\neach member has a priority determined by external factors.\nThe member with the highest priority is the first to be removed.\n\n\\item[Priority Queue:] An ADT that defines the operations one\nmight perform on a priority queue.\n\n\\item[linked queue:] An implementation of a queue using a linked\nlist.\n\n\\item[constant time:] An operation whose runtime does not\ndepend on the size of the data structure.\n\n\\item[linear time:] An operation whose runtime is a linear\nfunction of the size of the data structure.\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0938a373-57be-4f0f-bb30-8bd66beac402": {"__data__": {"id_": "0938a373-57be-4f0f-bb30-8bd66beac402", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "3": {"node_id": "b8d3d508-5cbc-4dc0-b528-dc4943c195cc", "node_type": null, "metadata": {}, "hash": "c31d6acee2a9557ee3687a5da5cc1a82ccac2eebc18186b533cdc7385a0789d8"}}, "hash": "c3fff470a16513cb292218e49b6203dd8277351a27e02d9c17d72b2702c6990f", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\n\\chapter{Trees}\n\\index{tree}\n\\index{node}\n\\index{tree node}\n\\index{cargo}\n\\index{embedded reference}\n\\index{binary tree}\n\nLike linked lists, trees are made up of nodes. A common kind of tree\nis a {\\bf binary tree}, in which each node contains a reference to two\nother nodes (possibly null). These references are referred to as the\nleft and right subtrees. Like list nodes, tree nodes also contain\ncargo. A state diagram for a tree looks like this:\n\n\\label{tree}\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/tree1.eps,height=1.7in}}\n\\afterfig\n\nTo avoid cluttering up the picture, we often omit the\n{\\tt Nones}.\n\nThe top of the tree (the node {\\tt tree} refers to) is called the\n{\\bf root}. In keeping with the tree metaphor, the other nodes are\ncalled branches and the nodes at the tips with null references are\ncalled {\\bf leaves}. It may seem odd that we draw the picture with\nthe root at the top and the leaves at the bottom, but that is not the\nstrangest thing.\n\n\\index{root node}\n\\index{leaf node}\n\\index{parent node}\n\\index{child node}\n\\index{level}\n\nTo make things worse, computer scientists mix in another\nmetaphor---the family tree. The top node is sometimes called\na {\\bf parent} and the nodes it refers to are its {\\bf children}.\nNodes with the same parent are called {\\bf siblings}.\n\nFinally, there is a geometric vocabulary for talking\nabout trees. We already mentioned left and right, but there is\nalso ``up'' (toward the parent/root) and ``down'' (toward the\nchildren/leaves). Also, all of the nodes that are the same\ndistance from the root comprise a {\\bf level} of the tree.\n\nWe probably don't need three metaphors for talking about trees,\nbut there they are.\n\nLike linked lists, trees are recursive data structures because\nthey are defined recursively.\n\n\\index{recursive data structure}\n\\index{data structure!recursive}\n\n\\begin{quote}\nA tree is either:\n\n\\begin{itemize}\n\n\\item the empty tree, represented by {\\tt None}, or\n\n\\item a node that contains an object reference and two\ntree references.\n\n\\end{itemize}\n\n\\end{quote}\n\n\\index{tree!empty}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b8d3d508-5cbc-4dc0-b528-dc4943c195cc": {"__data__": {"id_": "b8d3d508-5cbc-4dc0-b528-dc4943c195cc", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "0938a373-57be-4f0f-bb30-8bd66beac402", "node_type": null, "metadata": {}, "hash": "c3fff470a16513cb292218e49b6203dd8277351a27e02d9c17d72b2702c6990f"}, "3": {"node_id": "d67269bf-5add-49da-8086-3ce46606e311", "node_type": null, "metadata": {}, "hash": "625b688d45e930159a20f739b58a69b56f82b5183b0a2d0b22ddae0a52823e69"}}, "hash": "c31d6acee2a9557ee3687a5da5cc1a82ccac2eebc18186b533cdc7385a0789d8", "text": "\\section {Building trees}\n\nThe process of assembling a tree is similar\nto the process of assembling a linked list.\nEach constructor invocation builds a single node.\n\n\\beforeverb\n\\begin{verbatim}\nclass Tree:\n def __init__(self, cargo, left=None, right=None):\n self.cargo = cargo\n self.left = left\n self.right = right\n\n def __str__(self):\n return str(self.cargo)\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt cargo} can\nbe any type, but the arguments for {\\tt left} and {\\tt right} should be\ntree nodes. {\\tt left} and {\\tt right} are optional; the default\nvalue is {\\tt None}.\n\nTo print a node, we just print the cargo.\n\nOne way to build a tree is from the bottom up.\nAllocate the child nodes first:\n\n\\beforeverb\n\\begin{verbatim}\nleft = Tree(2)\nright = Tree(3)\n\\end{verbatim}\n\\afterverb\n%\nThen create the parent node and link it to the children:\n\n\\beforeverb\n\\begin{verbatim}\ntree = Tree(1, left, right);\n\\end{verbatim}\n\\afterverb\n%\nWe can write this code more concisely by nesting constructor\ninvocations:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tree = Tree(1, Tree(2), Tree(3))\n\\end{verbatim}\n\\afterverb\n%\nEither way, the result is the tree at the beginning of the\nchapter.\n\n\n\\section {Traversing trees}\n\\index{tree!traversal}\n\\index{traverse}\n\\index{recursion}\n\nAny time you see a new data structure, your first\nquestion should be, ``How do I traverse it?'' The most natural\nway to traverse a tree is recursively. For example, if the\ntree contains integers as cargo, this function returns their sum:\n\n\\beforeverb\n\\begin{verbatim}\ndef total(tree):\n if tree == None: return 0\n return total(tree.left) + total(tree.right) + tree.cargo\n\\end{verbatim}\n\\afterverb\n%\nThe base case is the empty tree, which contains no cargo, so\nthe sum is 0.\nThe recursive step\nmakes two recursive calls to find the sum of the child trees.\nWhen the recursive calls complete,\nwe add the cargo of the parent and return the\ntotal.\n\n\n\\section {Expression trees}\n\\index{tree!expression}\n\\index{expression tree}\n\\index{postfix}\n\\index{infix}\n\\index{binary operator}\n\\index{operator!binary}\n\nA tree is a natural way to represent the structure of an expression.\nUnlike other notations, it can represent the computation\nunambiguously. For example, the infix expression {\\tt 1 + 2 * 3} is\nambiguous unless we know that the multiplication happens before the\naddition.\n\nThis expression tree represents the same computation:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/tree2.eps,height=2in}}\n\\afterfig\n\nThe nodes of an expression tree can be operands like {\\tt 1} and\n{\\tt 2} or operators like {\\tt +} and {\\tt *}. Operands are leaf nodes;\noperator nodes contain references to their operands. (All of these\noperators are {\\bf binary}, meaning they have exactly two operands.)\n\nWe can build this tree like this:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tree = Tree('+', Tree(1), Tree('*', Tree(2), Tree(3)))\n\\end{verbatim}\n\\afterverb\n%\nLooking at the figure, there is no question what the order of\noperations is; the multiplication happens first in order to compute\nthe second operand of the addition.\n\nExpression trees have many uses. The example in this chapter uses\ntrees to translate expressions to postfix, prefix, and infix.\nSimilar trees are used inside compilers to parse, optimize, and\ntranslate programs.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d67269bf-5add-49da-8086-3ce46606e311": {"__data__": {"id_": "d67269bf-5add-49da-8086-3ce46606e311", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "b8d3d508-5cbc-4dc0-b528-dc4943c195cc", "node_type": null, "metadata": {}, "hash": "c31d6acee2a9557ee3687a5da5cc1a82ccac2eebc18186b533cdc7385a0789d8"}, "3": {"node_id": "9efa0d03-95f2-447c-99c0-3085b92d0f82", "node_type": null, "metadata": {}, "hash": "443a6dd30e3175fda78a8445fa8fa1838b6adebdcd52d6300685a700dd5dcf3c"}}, "hash": "625b688d45e930159a20f739b58a69b56f82b5183b0a2d0b22ddae0a52823e69", "text": "\\section {Tree traversal}\n\\index{tree!traversal}\n\\index{traverse}\n\\index{recursion}\n\\index{preorder}\n\\index{postorder}\n\\index{inorder}\n\nWe can traverse an expression tree and print the contents like this:\n\n\\beforeverb\n\\begin{verbatim}\ndef printTree(tree):\n if tree == None: return\n print tree.cargo,\n printTree(tree.left)\n printTree(tree.right)\n\\end{verbatim}\n\\afterverb\n%\n\\index{preorder}\n\\index{prefix}\n\nIn other words, to print a tree, first print the contents of\nthe root, then print the entire left subtree, and then print the\nentire right subtree. This way of traversing a tree is called\na {\\bf preorder}, because the contents of the root appear {\\em before}\nthe contents of the children.\nFor the previous example, the output is:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tree = Tree('+', Tree(1), Tree('*', Tree(2), Tree(3)))\n>>> printTree(tree)\n+ 1 * 2 3\n\\end{verbatim}\n\\afterverb\n%\nThis format is different from both postfix and infix; it is another\nnotation called {\\bf prefix}, in which the operators appear before\ntheir operands.\n\nYou might suspect that if you traverse the tree in a\ndifferent order, you will get the expression in a different\nnotation. For example, if you print the subtrees first and then\nthe root node, you get:\n\n\\beforeverb\n\\begin{verbatim}\ndef printTreePostorder(tree):\n if tree == None: return\n printTreePostorder(tree.left)\n printTreePostorder(tree.right)\n print tree.cargo,\n\\end{verbatim}\n\\afterverb\n%\n\\index{postorder}\n\\index{inorder}\nThe result, {\\tt 1 2 3 * +}, is in postfix!\nThis order of traversal is called {\\bf postorder}.\n\nFinally, to traverse a tree {\\bf inorder},\nyou print the left tree, then the root, and then the right tree:\n\n\\beforeverb\n\\begin{verbatim}\ndef printTreeInorder(tree):\n if tree == None: return\n printTreeInorder(tree.left)\n print tree.cargo,\n printTreeInorder(tree.right)\n\\end{verbatim}\n\\afterverb\n%\nThe result is {\\tt 1 + 2 * 3}, which is the expression in infix.\n\nTo be fair, we should point out that we have omitted an\nimportant complication. Sometimes when we write an expression\nin infix, we have to use parentheses to preserve the order of\noperations. So an inorder traversal is not quite sufficient to\ngenerate an infix expression.\n\nNevertheless, with a few improvements, the expression tree and the\nthree recursive traversals provide a general way to translate\nexpressions from one format to another.\n\n\\begin{quote}\n{\\em As an exercise, modify {\\tt printTreeInorder} so that it\nputs parentheses around every operator and pair of operands.\nIs the output correct and unambiguous? Are the parentheses\nalways necessary? }\n\\end{quote}\n\nIf we do an inorder traversal and keep track of what level\nin the tree we are on, we can generate a graphical representation\nof a tree:\n\n\\beforeverb\n\\begin{verbatim}\ndef printTreeIndented(tree, level=0):\n if tree == None: return\n printTreeIndented(tree.right, level+1)\n print ' '*level + str(tree.cargo)\n printTreeIndented(tree.left, level+1)\n\\end{verbatim}\n\\afterverb\n%\nThe parameter {\\tt level} keeps track of where we are in the\ntree. By default, it is initially 0. Each time we make a\nrecursive call, we pass {\\tt level+1} because the child's level\nis always one greater than the parent's. Each item is indented by\ntwo spaces per level.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9efa0d03-95f2-447c-99c0-3085b92d0f82": {"__data__": {"id_": "9efa0d03-95f2-447c-99c0-3085b92d0f82", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "d67269bf-5add-49da-8086-3ce46606e311", "node_type": null, "metadata": {}, "hash": "625b688d45e930159a20f739b58a69b56f82b5183b0a2d0b22ddae0a52823e69"}, "3": {"node_id": "f301d3a7-e76e-456d-9b46-6b971f9d23b2", "node_type": null, "metadata": {}, "hash": "f11409314c1ca089a897bbee3e231022a9e5b61f10e0119e714b5401cc45753c"}}, "hash": "443a6dd30e3175fda78a8445fa8fa1838b6adebdcd52d6300685a700dd5dcf3c", "text": "Each item is indented by\ntwo spaces per level. The result for the example tree is:\n\n\\beforeverb\n\\begin{verbatim}\n>>> printTreeIndented(tree)\n 3\n *\n 2\n+\n 1\n\\end{verbatim}\n\\afterverb\n%\nIf you look at the output sideways, you see a simplified version\nof the original figure.\n\n\n\n\\section{Building an expression tree}\n\\index{expression tree}\n\\index{tree!expression}\n\\index{parse}\n\\index{token}\n\nIn this section, we parse infix expressions and build the\ncorresponding expression trees. For example, the expression\n{\\tt (3+7)*9} yields the following tree:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/tree3.eps}}\n\\afterfig\n\nNotice that we have simplified the diagram by leaving\nout the names of the attributes.\n\nThe parser we will write handles expressions that include numbers,\nparentheses, and the operators {\\tt +} and {\\tt *}.\nWe assume that the input string has already\nbeen tokenized into a Python list. The token list for\n{\\tt (3+7)*9} is:\n\n\\beforeverb\n\\begin{verbatim}\n['(', 3, '+', 7, ')', '*', 9, 'end']\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt end} token is useful for preventing the parser from\nreading past the end of the list.\n\n\\begin{quote}\n{\\em As an exercise, write a function that takes an expression\nstring and returns a token list.}\n\\end{quote}\n\nThe first function we'll write is {\\tt getToken}, which takes a token\nlist and an expected token as arguments. It compares the expected\ntoken to the first token on the list: if they match, it removes the\ntoken from the list and returns true; otherwise, it returns false:\n\n\\beforeverb\n\\begin{verbatim}\ndef getToken(tokenList, expected):\n if tokenList[0] == expected:\n del tokenList[0]\n return True\n else:\n return False\n\\end{verbatim}\n\\afterverb\n%\nSince {\\tt tokenList} refers to a mutable object, the changes made\nhere are visible to any other variable that refers to the same object.\n\nThe next function, {\\tt getNumber}, handles operands.\nIf the next token in {\\tt tokenList} is a number,\n{\\tt getNumber} removes it and returns a leaf node containing\nthe number; otherwise, it returns {\\tt None}.\n\n\\beforeverb\n\\begin{verbatim}\ndef getNumber(tokenList):\n x = tokenList[0]\n if not isinstance(x, int): return None\n del tokenList[0]\n return Tree (x, None, None)\n\\end{verbatim}\n\\afterverb\n%\nBefore continuing, we should test {\\tt getNumber} in isolation. We\nassign a list of numbers to {\\tt tokenList}, extract the first,\nprint the result, and print what remains of the token list:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [9, 11, 'end']\n>>> x = getNumber(tokenList)\n>>> printTreePostorder(x)\n9\n>>> print tokenList\n[11, 'end']\n\\end{verbatim}\n\\afterverb\n%\nThe next method we need is {\\tt getProduct}, which builds an\nexpression tree for products. A simple product has two numbers as\noperands, like {\\tt 3 * 7}.\n\nHere is a version of {\\tt getProduct} that handles\nsimple products.\n\n\\beforeverb\n\\begin{verbatim}\ndef getProduct(tokenList):\n a = getNumber(tokenList)\n if getToken(tokenList, '*'):\n b = getNumber(tokenList)\n return Tree ('*', a, b)\n else:\n return a\n\\end{verbatim}\n\\afterverb\n%\nAssuming that {\\tt getNumber} succeeds and returns a singleton tree,\nwe assign the first operand to {\\tt a}.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f301d3a7-e76e-456d-9b46-6b971f9d23b2": {"__data__": {"id_": "f301d3a7-e76e-456d-9b46-6b971f9d23b2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "9efa0d03-95f2-447c-99c0-3085b92d0f82", "node_type": null, "metadata": {}, "hash": "443a6dd30e3175fda78a8445fa8fa1838b6adebdcd52d6300685a700dd5dcf3c"}, "3": {"node_id": "4c2e44e7-e40e-4937-96de-44c0628f61f4", "node_type": null, "metadata": {}, "hash": "32a8ef382b4c72e15be715b540a642628a52a346dec288fc745735ed77d703b3"}}, "hash": "f11409314c1ca089a897bbee3e231022a9e5b61f10e0119e714b5401cc45753c", "text": "If the next character is {\\tt *}, we get the second number\nand build an expression tree with {\\tt a}, {\\tt b},\nand the operator.\n\nIf the next character is anything else, then we just return\nthe leaf node with {\\tt a}. Here are two examples:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [9, '*', 11, 'end']\n>>> tree = getProduct(tokenList)\n>>> printTreePostorder(tree)\n9 11 *\n\\end{verbatim}\n\\afterverb\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [9, '+', 11, 'end']\n>>> tree = getProduct(tokenList)\n>>> printTreePostorder(tree)\n9\n\\end{verbatim}\n\\afterverb\n%\nThe second example implies that we consider a single\noperand to be a kind of product. This definition of\n``product'' is counterintuitive, but it turns out to\nbe useful. \n\nNow we have to deal with compound products, like like {\\tt 3 * 5 *\n13}. We treat this expression as a product of products, namely {\\tt 3\n* (5 * 13)}. The resulting tree is:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/tree4.eps}}\n\\afterfig\n\nWith a small change in {\\tt getProduct}, we can handle\nan arbitrarily long product:\n\n\\beforeverb\n\\begin{verbatim}\ndef getProduct(tokenList):\n a = getNumber(tokenList)\n if getToken(tokenList, '*'):\n b = getProduct(tokenList) # this line changed\n return Tree ('*', a, b)\n else:\n return a\n\\end{verbatim}\n\\afterverb\n%\nIn other words, a product can be either a singleton or a tree with\n{\\tt *} at the root, a number on the left, and a product on the right.\nThis kind of recursive definition should be starting to feel\nfamiliar.\n\n\\index{product}\n\\index{definition!recursive}\n\\index{recursive definition}\n\nLet's test the new version with a compound product:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [2, '*', 3, '*', 5 , '*', 7, 'end']\n>>> tree = getProduct(tokenList)\n>>> printTreePostorder(tree)\n2 3 5 7 * * *\n\\end{verbatim}\n\\afterverb\n%\nNext we will add the ability to parse sums. Again, we\nuse a slightly counterintuitive definition of ``sum.''\nFor us, a sum can be a tree with {\\tt +} at the root,\na product on the left, and a sum on the right. Or, a sum\ncan be just a product.\n\n\\index{sum}\n\nIf you are willing to play along with this definition, it has a nice\nproperty: we can represent any expression (without parentheses) as a\nsum of products. This property is the basis of our parsing algorithm.\n\n{\\tt getSum} tries to build a tree with a product on the left and a\nsum on the right. But if it doesn't find a {\\tt +}, it just builds a\nproduct.\n\n\\beforeverb\n\\begin{verbatim}\ndef getSum(tokenList):\n a = getProduct(tokenList)\n if getToken(tokenList, '+'):\n b = getSum(tokenList)\n return Tree ('+', a, b)\n else:\n return a\n\\end{verbatim}\n\\afterverb\n%\nLet's test it with {\\tt 9 * 11 + 5 * 7}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [9, '*', 11, '+', 5, '*', 7, 'end']\n>>> tree = getSum(tokenList)\n>>> printTreePostorder(tree)\n9 11 * 5 7 * +\n\\end{verbatim}\n\\afterverb\n%\nWe are almost done, but we still have to handle parentheses.\nAnywhere in an expression where there can be a number, there can\nalso be an entire sum\nenclosed in parentheses.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4c2e44e7-e40e-4937-96de-44c0628f61f4": {"__data__": {"id_": "4c2e44e7-e40e-4937-96de-44c0628f61f4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "f301d3a7-e76e-456d-9b46-6b971f9d23b2", "node_type": null, "metadata": {}, "hash": "f11409314c1ca089a897bbee3e231022a9e5b61f10e0119e714b5401cc45753c"}, "3": {"node_id": "7a406987-eba0-4222-a34f-7ad3724a5604", "node_type": null, "metadata": {}, "hash": "4f99a93acd3b54691adee1dbcd250a5e0d455b7a873f1006c153557e57e8d8a5"}}, "hash": "32a8ef382b4c72e15be715b540a642628a52a346dec288fc745735ed77d703b3", "text": "We just need to modify {\\tt getNumber} to\nhandle {\\bf subexpressions}:\n\n\\index{subexpression}\n\n\\beforeverb\n\\begin{verbatim}\ndef getNumber(tokenList):\n if getToken(tokenList, '('):\n x = getSum(tokenList) # get the subexpression\n getToken(tokenList, ')') # remove the closing parenthesis\n return x\n else:\n x = tokenList[0]\n if not isinstance(x, int): return None\n tokenList[0:1] = []\n return Tree (x, None, None) \n\\end{verbatim}\n\\afterverb\n%\nLet's test this code with {\\tt 9 * (11 + 5) * 7}:\n\n\\beforeverb\n\\begin{verbatim}\n>>> tokenList = [9, '*', '(', 11, '+', 5, ')', '*', 7, 'end']\n>>> tree = getSum(tokenList)\n>>> printTreePostorder(tree)\n9 11 5 + 7 * *\n\\end{verbatim}\n\\afterverb\n%\n\\adjustpage{-2}\n\\pagebreak\n\nThe parser handled the parentheses correctly; the addition happens\nbefore the multiplication.\n\nIn the final version of the program, it would be a good idea\nto give {\\tt getNumber} a name\nmore descriptive of its new role.\n\n\n\\section{Handling errors}\n\\index{handling errors}\n\\index{error handling}\n\nThroughout the parser, we've been assuming that expressions are\nwell-formed. For example, when we reach the end of a\nsubexpression, we assume that the next character is a close\nparenthesis. If there is an error and the next character is something\nelse, we should deal with it.\n\n\\beforeverb\n\\begin{verbatim}\ndef getNumber(tokenList):\n if getToken(tokenList, '('):\n x = getSum(tokenList) \n if not getToken(tokenList, ')'):\n raise ValueError, 'missing parenthesis'\n return x\n else:\n # the rest of the function omitted\n\\end{verbatim}\n\\afterverb\n%\nThe {\\tt raise} statement creates an exception; in this\ncase a {\\tt ValueError}. If the function that called\n{\\tt getNumber}, or one of the other functions in the\ntraceback, handles the exception, then the program\ncan continue. Otherwise, Python will print an error message\nand quit.\n\n\\begin{quote}\n{\\em As an exercise, find other places in these functions where errors\ncan occur and add appropriate {\\tt raise} statements.\nTest your code with improperly\nformed expressions.}\n\\end{quote}\n\n\n\\section{The animal tree}\n\\index{animal game}\n\\index{game!animal}\n\\index{knowledge base}\n\nIn this section, we develop a small program that uses a tree\nto represent a knowledge base.\n\nThe program interacts with the user to create a tree of questions\nand animal names. Here is a sample run:\n\n\\adjustpage{-3}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\nAre you thinking of an animal? y\nIs it a bird? n\nWhat is the animals name? dog\nWhat question would distinguish a dog from a bird? Can it fly\nIf the animal were dog the answer would be? n\n\nAre you thinking of an animal? y\nCan it fly? n\nIs it a dog? n\nWhat is the animals name? cat\nWhat question would distinguish a cat from a dog? Does it bark\nIf the animal were cat the answer would be? n\n\nAre you thinking of an animal? y\nCan it fly? n\nDoes it bark? y\nIs it a dog? y\nI rule!\n\nAre you thinking of an animal?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7a406987-eba0-4222-a34f-7ad3724a5604": {"__data__": {"id_": "7a406987-eba0-4222-a34f-7ad3724a5604", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "4c2e44e7-e40e-4937-96de-44c0628f61f4", "node_type": null, "metadata": {}, "hash": "32a8ef382b4c72e15be715b540a642628a52a346dec288fc745735ed77d703b3"}, "3": {"node_id": "ec793519-e044-423d-ba4b-21c3ec916891", "node_type": null, "metadata": {}, "hash": "0cc21ecce0950ad45477642b3d7ab969684cda22f2bc5464074a02cc93713111"}}, "hash": "4f99a93acd3b54691adee1dbcd250a5e0d455b7a873f1006c153557e57e8d8a5", "text": "y\nI rule!\n\nAre you thinking of an animal? n\n\\end{verbatim}\n\\afterverb\n%\nHere is the tree this dialog builds:\n\n\\beforefig\n\\centerline{\\psfig{figure=illustrations/tree5.eps}}\n\\afterfig\n\nAt the beginning of each round, the program starts at the top of the\ntree and asks the first question. Depending on the answer, it moves\nto the left or right child and continues until it gets to a leaf\nnode. At that point, it makes a guess. If the guess is not correct,\nit asks the user for the name of the new animal and a question that\ndistinguishes the (bad) guess from the new animal. Then it adds a\nnode to the tree with the new question and the new animal.\n\nHere is the code:\n\n\\adjustpage{-2}\n\\pagebreak\n\n\\beforeverb\n\\begin{verbatim}\ndef animal():\n # start with a singleton\n root = Tree(\"bird\")\n\n # loop until the user quits\n while True:\n print\n if not yes(\"Are you thinking of an animal? \"): break\n\n # walk the tree\n tree = root\n while tree.getLeft() != None:\n prompt = tree.getCargo() + \"? \"\n if yes(prompt):\n tree = tree.getRight()\n else:\n tree = tree.getLeft()\n\n # make a guess\n guess = tree.getCargo()\n prompt = \"Is it a \" + guess + \"? \"\n if yes(prompt):\n print \"I rule!\"\n continue\n\n # get new information\n prompt = \"What is the animal's name? \"\n animal = raw_input(prompt)\n prompt = \"What question would distinguish a %s from a %s? \"\n question = raw_input(prompt % (animal,guess))\n\n # add new information to the tree\n tree.setCargo(question)\n prompt = \"If the animal were %s the answer would be? \"\n if yes(prompt % animal):\n tree.setLeft(Tree(guess))\n tree.setRight(Tree(animal))\n else:\n tree.setLeft(Tree(animal))\n tree.setRight(Tree(guess))\n\\end{verbatim}\n\\afterverb\n%\nThe function {\\tt yes} is a helper; it prints a prompt and then\ntakes input from the user. If the response\nbegins with {\\em y} or {\\em Y}, the function returns true:\n\n\\beforeverb\n\\begin{verbatim}\ndef yes(ques):\n from string import lower\n ans = lower(raw_input(ques))\n return (ans[0] == 'y')\n\\end{verbatim}\n\\afterverb\n%\nThe condition of the outer loop is {\\tt True}, which means it will\ncontinue until the {\\tt break} statement executes, if the user\nis not thinking of an animal.\n\nThe inner {\\tt while} loop walks the tree from top to bottom,\nguided by the user's responses.\n\nWhen a new node is added to the tree, the new question replaces\nthe cargo, and the two children are the new animal and the original\ncargo.\n\nOne shortcoming of the program is that when it exits, it forgets\neverything you carefully taught it!\n\n\\begin{quote}\n{\\em As an exercise, think of various ways you might save\nthe knowledge tree in a file. Implement the one you think\nis easiest.}\n\\end{quote}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ec793519-e044-423d-ba4b-21c3ec916891": {"__data__": {"id_": "ec793519-e044-423d-ba4b-21c3ec916891", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "node_type": null, "metadata": {}, "hash": "2a79d681c4ca9a3737e9dbfb44c4ec26df4bfb59660b77179661ebe1d9190596"}, "2": {"node_id": "7a406987-eba0-4222-a34f-7ad3724a5604", "node_type": null, "metadata": {}, "hash": "4f99a93acd3b54691adee1dbcd250a5e0d455b7a873f1006c153557e57e8d8a5"}}, "hash": "0cc21ecce0950ad45477642b3d7ab969684cda22f2bc5464074a02cc93713111", "text": "Implement the one you think\nis easiest.}\n\\end{quote}\n\n\n\\section{Glossary}\n\\index{binary tree}\n\\index{node}\n\\index{root node}\n\\index{leaf node}\n\\index{parent node}\n\\index{child node}\n\\index{sibling node}\n\\index{level}\n\\index{prefix}\n\\index{preorder}\n\\index{postorder}\n\\index{inorder}\n\\index{binary operator}\n\\index{operator!binary}\n\n\\begin{description}\n\n\\item[binary tree:] A tree in which each node refers to zero, one, or\ntwo dependent nodes.\n\n\\item[root:] The topmost node in a tree, with no parent.\n\n\\item[leaf:] A bottom-most node in a tree, with no children.\n\n\\item[parent:] The node that refers to a given node.\n\n\\item[child:] One of the nodes referred to by a node.\n\n\\item[siblings:] Nodes that share a common parent.\n\n\\item[level:] The set of nodes equidistant from the root.\n\n\\item[binary operator:] An operator that takes two operands.\n\n\\item[subexpression:] An expression in parentheses that acts\nas a single operand in a larger expression.\n\n\\item[preorder:] A way to traverse a tree, visiting each node\nbefore its children.\n\n\\item[prefix notation:] A way of writing a mathematical expression\nwith each operator appearing before its operands.\n\n\\item[postorder:] A way to traverse a tree, visiting the children\nof each node before the node itself.\n\n\\item[inorder:] A way to traverse a tree, visiting the left subtree,\nthen the root, and then the right subtree.\n\n\\end{description}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "83808199-cb49-4a60-bcfe-27a4b9d3b685": {"__data__": {"id_": "83808199-cb49-4a60-bcfe-27a4b9d3b685", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "node_type": null, "metadata": {}, "hash": "7f41150f0ccac5de9bd0f529d47c68f3bd3f0cae633bde82cf0e31aedc727847"}, "3": {"node_id": "3363e09a-1ab4-4c17-bb8a-e6752917130a", "node_type": null, "metadata": {}, "hash": "b310582126abe7f22a23f77d5ebbfd167da4140e0889452bb41f85d86c97afe0"}}, "hash": "d235af6c0c0d9dd50b29801e7115c4f9693143ea647f2102785801e7a1a83972", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and John Dewey.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\n\\chapter{Contributor List}\n\nTo paraphrase the philosophy of the Free Software Foundation, this\nbook is free like free speech, but not necessarily free like free\npizza. It came about because of a collaboration that would not have\nbeen possible without the GNU Free Documentation License. So we\nthank the Free Software Foundation for developing this license\nand, of course, making it available to us.\n\nWe also thank the more than 100 sharp-eyed and\nthoughtful readers who have sent us suggestions and corrections over\nthe past few years. In the spirit of free software, we decided to\nexpress our gratitude in the form of a contributor list. Unfortunately,\nthis list is not complete, but we are doing our best to keep it\nup to date.\n\nIf you have a chance to look through the list, you should\nrealize that each person here has spared you and all subsequent\nreaders from the confusion of a technical error or a\nless-than-transparent explanation, just by sending us a note.\n\nImpossible as it may seem after so many corrections, there may still\nbe errors in this book. If you should stumble across one, please\ncheck the online version of the book at {\\tt http://thinkpython.com},\nwhich is the most up-to-date version. If the error has not been\ncorrected, please take a minute to send us email at {\\tt\nfeedback@thinkpython.com}. If we make a change due to your\nsuggestion, you will appear in the next version of the contributor\nlist (unless you ask to be omitted). Thank you!\n\n\n\\begin{itemize}\n\n\\item Lloyd Hugh Allen sent in a correction to Section 8.4.\n%He can be reached at: {\\tt lha2@columbia.edu}\n\n\\item Yvon Boulianne sent in a correction of a semantic error in\nChapter 5.\n%She can be reached at: {\\tt mystic@monuniverse.net}\n\n\\item Fred Bremmer submitted a correction in Section 2.1.\n%He can be reached at: {\\tt Fred.Bremmer@ubc.cu}\n\n\\item Jonah Cohen wrote the Perl scripts to convert the\nLaTeX source for this book into beautiful HTML.\n\n%His Web page is {\\tt jonah.ticalc.org}\n%and his email is {\\tt JonahCohen@aol.com}\n\n\\item Michael Conlon sent in a grammar correction in Chapter 2\nand an improvement in style in Chapter 1, and he initiated discussion\non the technical aspects of interpreters.\n\n%Michael can be reached at: {\\tt michael.conlon@sru.edu}\n\n\\item Benoit Girard sent in a\ncorrection to a humorous mistake in Section 5.6.\n\n%Benoit can be reached at:\n%{\\tt benoit.girard@gouv.qc.ca}\n\n\\item Courtney Gleason and Katherine Smith wrote {\\tt horsebet.py},\nwhich was used as a case study in an earlier version of the book. Their\nprogram can now be found on the website.\n\n%Courtney can be reached at: {\\tt\n%orion1558@aol.com}\n\n\\item Lee Harr submitted more corrections than we have room to list\nhere, and indeed he should be listed as one of the principal editors\nof the text.\n\n%He can be reached at: {\\tt missive@linuxfreemail.com}\n\n\\item James Kaylin is a student using the text. He has submitted\nnumerous corrections.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3363e09a-1ab4-4c17-bb8a-e6752917130a": {"__data__": {"id_": "3363e09a-1ab4-4c17-bb8a-e6752917130a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "node_type": null, "metadata": {}, "hash": "7f41150f0ccac5de9bd0f529d47c68f3bd3f0cae633bde82cf0e31aedc727847"}, "2": {"node_id": "83808199-cb49-4a60-bcfe-27a4b9d3b685", "node_type": null, "metadata": {}, "hash": "d235af6c0c0d9dd50b29801e7115c4f9693143ea647f2102785801e7a1a83972"}, "3": {"node_id": "476b4f33-d161-4cbe-a216-dbfa745ef944", "node_type": null, "metadata": {}, "hash": "d026bf3148ce7eed284ab214d1b8281e43888f702170fcaa308d60eceb9cd4b7"}}, "hash": "b310582126abe7f22a23f77d5ebbfd167da4140e0889452bb41f85d86c97afe0", "text": "He has submitted\nnumerous corrections.\n\n%James can be reached by email at: {\\tt Jamarf@aol.com}\n\n\\item David Kershaw fixed the broken {\\tt catTwice} function in Section\n3.10.\n\n%He can be reached at: {\\tt david\\_kershaw@merck.com}\n\n\\item Eddie Lam has sent in numerous corrections to Chapters \n1, 2, and 3.\nHe also fixed the Makefile so that it creates an index the first time it is\nrun and helped us set up a versioning scheme. \n\n%Eddie can be reached at:\n%{\\tt nautilus@yoyo.cc.monash.edu.au}\n\n\\item Man-Yong Lee sent in a correction to the example code in\nSection 2.4. \n\n%He can be reaced at: {\\tt yong@linuxkorea.co.kr}\n\n\\item David Mayo pointed out that the word ``unconsciously\"\nin Chapter 1 needed\nto be changed to ``subconsciously\".\n\n%David can be reached at:{\\tt bdbear44@netscape.net}\n\n\\item Chris McAloon sent in several corrections to Sections 3.9 and\n3.10.\n\n%He can be reached at: {\\tt cmcaloon@ou.edu}\n\n\\item Matthew J. Moelter has been a long-time contributor who sent\nin numerous corrections and suggestions to the book. \n\n%He can be reached at:\n%{\\tt mmoelter@calpoly.edu}\n\n\\item Simon Dicon Montford reported a missing function definition and\nseveral typos in Chapter 3. He also found errors in the {\\tt increment}\nfunction in Chapter 13.\n\n%He can be reached at: {\\tt dicon@bigfoot.com}\n\n\\item John Ouzts corrected the definition of ``return value\"\nin Chapter 3.\n\n%He can be reached at: {\\tt jouzts@bigfoot.com}\n\n\\item Kevin Parks sent in valuable comments and suggestions as to how\nto improve the distribution of the book.\n\n%He can be reached at: {\\tt cpsoct@lycos.com}\n\n\\item David Pool sent in a typo in the glossary of Chapter 1, as well\nas kind words of encouragement.\n\n%He can be reached at: {\\tt pooldavid@hotmail.com}\n\n\\item Michael Schmitt sent in a correction to the chapter on files\nand exceptions.\n\n%He can be reached at: {\\tt ipv6\\_128@yahoo.com}\n\n\\item Robin Shaw pointed out an error in Section 13.1, where the\nprintTime function was used in an example without being defined.\n\n%Robin can be reached at: {\\tt randj@iowatelecom.net}\n\n\\item Paul Sleigh found an error in Chapter 7 and a bug in Jonah Cohen's\nPerl script that generates HTML from LaTeX.\n\n%He can be reached at: {\\tt bat@atdot.dotat.org}\n\n%\\item Christopher Smith is a computer science teacher at the Blake\n%School in Minnesota who teaches Python to his beginning students.\n\n%He can be reached at: {\\tt csmith@blakeschool.org or smiles@saysomething.com}\n\n\\item Craig T. Snydal is testing the text in a course at Drew\nUniversity. He has contributed several valuable suggestions and corrections.\n\n%and can be reached at: {\\tt csnydal@drew.edu}\n\n\\item Ian Thomas and his students are using the text in a programming\ncourse. They are the first ones to test the chapters in the latter half\nof the book, and they have made numerous corrections and suggestions.\n\n%Ian can be reached at: {\\tt ithomas@sd70.bc.ca}\n\n\\item Keith Verheyden sent in a correction in Chapter 3.\n\n%He can be reached at: {\\tt kverheyd@glam.ac.uk}\n\n\\item Peter Winstanley let us know about a longstanding error in\nour Latin in Chapter 3.\n\n%He can be reached at:{\\tt Peter.Winstanley@scotland.gsi.gov.uk} \n\n\\item Chris Wrobel made corrections to the code in the chapter on\nfile I/O and exceptions. \n\n%He can be reached at: {\\tt ferz980@yahoo.com}\n\n\\item Moshe Zadka has made invaluable contributions to this project.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "476b4f33-d161-4cbe-a216-dbfa745ef944": {"__data__": {"id_": "476b4f33-d161-4cbe-a216-dbfa745ef944", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "node_type": null, "metadata": {}, "hash": "7f41150f0ccac5de9bd0f529d47c68f3bd3f0cae633bde82cf0e31aedc727847"}, "2": {"node_id": "3363e09a-1ab4-4c17-bb8a-e6752917130a", "node_type": null, "metadata": {}, "hash": "b310582126abe7f22a23f77d5ebbfd167da4140e0889452bb41f85d86c97afe0"}, "3": {"node_id": "479ce05c-61fd-4bea-8a73-e26b16cd3e70", "node_type": null, "metadata": {}, "hash": "9ffd6d66ae282c4b6e078f4c3d0f733d65d624415d7b4f9faaa1df77421b6283"}}, "hash": "d026bf3148ce7eed284ab214d1b8281e43888f702170fcaa308d60eceb9cd4b7", "text": "In addition to writing the first draft of the chapter on Dictionaries, he\nprovided continual guidance in the early stages of the book.\n\n%He can be reached at: {\\tt moshez@math.huji.ac.il}\n\n\\item Christoph Zwerschke sent several corrections and\npedagogic suggestions, and explained the difference between {\\em gleich}\nand {\\em selbe}.\n\n\\item James Mayer sent us a whole slew of spelling and\ntypographical errors, including two in the contributor list.\n\n% james.mayer@acm.org\n\n\\item Hayden McAfee caught a potentially confusing inconsistency\nbetween two examples.\n%hayden.mcafee@mindspring.com\n\n\\item Angel Arnal is part of an international team of translators\nworking on the Spanish version of the text. He has also found several\nerrors in the English version.\n\n\\item Tauhidul Hoque and Lex Berezhny created the illustrations\nin Chapter 1 and improved many of the other illustrations.\n\n\\item Dr. Michele Alzetta caught an error in Chapter 8 and sent\nsome interesting pedagogic comments and suggestions about Fibonacci\nand Old Maid.\n%mikalzet@libero.it\n\n\\item Andy Mitchell caught a typo in Chapter 1 and a broken example\nin Chapter 2.\n%phantom917@hotmail.com\n\n\\item Kalin Harvey suggested a clarification in Chapter 7 and\ncaught some typos.\n%kalin@metamuscle.net\n\n\\item Christopher P. Smith caught several typos and is helping us\nprepare to update the book for Python 2.2.\n%csmith@blakeschool.org\n\n\\item David Hutchins caught a typo in the Foreword.\n%jsdah2@uas.alaska.edu\n\n\\item Gregor Lingl is teaching Python at a high school in Vienna,\nAustria. He is working on a German translation of the book,\nand he caught a couple of bad errors in Chapter 5.\n%glingl@aon.at\n\n%Sean McShane sent us a very nice note\n%sean.mcshane@sheridanc.on.ca\n\n\\item Julie Peters caught a typo in the Preface.\n%jkpeters@dmacc.cc.ia.us\n\n\\item Florin Oprina sent in an improvement in {\\tt makeTime},\na correction in {\\tt printTime}, and a nice typo.\n%oprina@student.uit.no \n\n\\item D.~J.~Webre suggested a clarification in Chapter 3.\n%d_webre@yahoo.com\n\n% \\item \n% jkane@broadlink.com\n\n\\item Ken found a fistful of errors in Chapters 8, 9 and 11.\n%ken@codeweavers.com\n\n\\item Ivo Wever caught a typo in Chapter 5 and suggested a clarification\nin Chapter 3.\n% I.J.W.Wever@student.tnw.tudelft.nl\n\n% rbeumer@knijnenberg.nl\n\n\\item Curtis Yanko suggested a clarification in Chapter 2.\n% YankoC@gspinc.com\n\n\\item Ben Logan sent in a number of typos and problems with translating\nthe book into HTML.\n%ben@wblogan.net\n\n%\\item XXX suggested a clarification in Chapter 7, but prefers not\n% to be included here.\n%ejykfy@comcast.net\n\n%\\item Florian Thiel caught an inconsistency in Chapter 2.\n%noroute@web.de\n\n\\item Jason Armstrong saw the missing word in Chapter 2.\n%jarmstrong@technicacorp.com\n\n\\item Louis Cordier noticed a spot in Chapter 16 where the code\ndidn't match the text.\n% lcordier@dsp.sun.ac.za\n\n\\item Brian Cain suggested several clarifications in Chapters 2 and 3.\n% Brian.Cain@motorola.com\n\n\\item Rob Black sent in a passel of corrections, including some\nchanges for Python 2.2.\n% Rob.Black@static2358.com\n\n\\item Jean-Philippe Rey at Ecole Centrale\nParis sent a number of patches, including some updates for Python 2.2\nand other thoughtful improvements.\n%\n\n\\item Jason Mader at George Washington University made a number\nof useful suggestions and corrections.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "479ce05c-61fd-4bea-8a73-e26b16cd3e70": {"__data__": {"id_": "479ce05c-61fd-4bea-8a73-e26b16cd3e70", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "node_type": null, "metadata": {}, "hash": "7f41150f0ccac5de9bd0f529d47c68f3bd3f0cae633bde82cf0e31aedc727847"}, "2": {"node_id": "476b4f33-d161-4cbe-a216-dbfa745ef944", "node_type": null, "metadata": {}, "hash": "d026bf3148ce7eed284ab214d1b8281e43888f702170fcaa308d60eceb9cd4b7"}}, "hash": "9ffd6d66ae282c4b6e078f4c3d0f733d65d624415d7b4f9faaa1df77421b6283", "text": "%Jason Mader \n\n\\item Jan Gundtofte-Bruun reminded us that ``a error'' is an error.\n% Jan Gundtofte-Bruun \n\n\\item Abel David and Alexis Dinno reminded us that the plural of\n``matrix'' is ``matrices'', not ``matrixes''. This error was in the\nbook for years, but two readers with the same initials reported it on\nthe same day. Weird.\n% Abel David , lexy-lou@doyenne.com\n\n\\item Charles Thayer encouraged us to get rid of the semi-colons\nwe had put at the ends of some statements and to clean up our\nuse of ``argument'' and ``parameter''.\n% Charles Thayer \n\n\\item Roger Sperberg pointed out a twisted piece of logic in Chapter 3.\n%\n\n\\item Sam Bull pointed out a confusing paragraph in Chapter 2.\n%Sam Bull \n\n\\item Andrew Cheung pointed out two instances of ``use before def.''\n%cheunga@u.washington.edu\n\n\\item Hans Batra found an error in Chapter 16.\n\n\\item Chris Seberino suggested some improvements in the Preface.\n\n\\item Yuri Takhteyev pointed out a problem with single and double quotes.\n\n\\end{itemize}\n\n\n% correspondents\n\n% Python version\n\n% Sam\n% \"sgasster@muon.com\" \n% suggestions about syntax glossary\n\n% James Pomeroy\n% moodykre8r@earthlink.net\n% suggestion about PEMDAS\n\n% Joel Jensen << joel@ens.net >>\n% translated the book into MS html\n\n\n% Gregg Boggs \n% correction to Pythagorean theorem\n\n% John P. Withers\n% jp_withers@yahoo.com\n% question about latex\n\n% Michael Brownfield\n% mmc81@airmail.net\n% general kind words\n\n% wolfgang teschner\n% wtr@hannover.sgh-net.de\n% general kind words\n\n% Jeff\n% jca@po.cwru.edu\n% problem with pdf, and nice comments\n\n% d_webre@yahoo.com\n% confusing comment about calculation of pi\n\n% Michael Wheatfill\n% mwheatfill@tse-us.com\n% general good comments and question about histograms\n\n% Java version\n\n% Vladimir\n% \"pisemsky@pisem.net\"\n% general praise\n\n% Yong\n% ybakos69@yahoo.com\" \n% clarification of interface and abstract class", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "47ee3c46-bad3-4aac-99eb-11a0b98ebf20": {"__data__": {"id_": "47ee3c46-bad3-4aac-99eb-11a0b98ebf20", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "node_type": null, "metadata": {}, "hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "3": {"node_id": "20146fda-7b8b-4d03-adb9-1c79e9d87125", "node_type": null, "metadata": {}, "hash": "8fb629faf6434d074fff0c3901cfb286836d07fb31a5c0d8547e951f88190ae7"}}, "hash": "b6d96f6c3bb85d8d2ef242e9324190aabf190cbb627ccce99162a6a233c4fe12", "text": "% fdl.tex\n% This file is a chapter. It must be included in a larger document to work\n% properly.\n\n\\chapter{GNU Free Documentation License}\n\nVersion 1.1, March 2000\\\\\n\n Copyright $\\copyright$ 2000 Free Software Foundation, Inc.\\\\\n 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\\\\\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n\\section*{Preamble}\n\nThe purpose of this License is to make a manual, textbook, or other\nwritten document ``free'' in the sense of freedom: to assure everyone\nthe effective freedom to copy and redistribute it, with or without\nmodifying it, either commercially or noncommercially. Secondarily,\nthis License preserves for the author and publisher a way to get\ncredit for their work, while not being considered responsible for\nmodifications made by others.\n\nThis License is a kind of ``copyleft,'' which means that derivative\nworks of the document must themselves be free in the same sense. It\ncomplements the GNU General Public License, which is a copyleft\nlicense designed for free software.\n\nWe have designed this License in order to use it for manuals for free\nsoftware, because free software needs free documentation: a free\nprogram should come with manuals providing the same freedoms that the\nsoftware does. But this License is not limited to software manuals;\nit can be used for any textual work, regardless of subject matter or\nwhether it is published as a printed book. We recommend this License\nprincipally for works whose purpose is instruction or reference.\n\n\\section{Applicability and Definitions}\n\nThis License applies to any manual or other work that contains a\nnotice placed by the copyright holder saying it can be distributed\nunder the terms of this License. The ``Document,'' below, refers to any\nsuch manual or work. Any member of the public is a licensee, and is\naddressed as ``you.''\n\nA ``Modified Version'' of the Document means any work containing the\nDocument or a portion of it, either copied verbatim, or with\nmodifications and/or translated into another language.\n\nA ``Secondary Section'' is a named appendix or a front-matter section of\nthe Document that deals exclusively with the relationship of the\npublishers or authors of the Document to the Document's overall subject\n(or to related matters) and contains nothing that could fall directly\nwithin that overall subject. (For example, if the Document is in part a\ntextbook of mathematics, a Secondary Section may not explain any\nmathematics.) The relationship could be a matter of historical\nconnection with the subject or with related matters, or of legal,\ncommercial, philosophical, ethical, or political position regarding\nthem.\n\nThe ``Invariant Sections'' are certain Secondary Sections whose titles\nare designated, as being those of Invariant Sections, in the notice\nthat says that the Document is released under this License.\n\nThe ``Cover Texts'' are certain short passages of text that are listed,\nas Front-Cover Texts or Back-Cover Texts, in the notice that says that\nthe Document is released under this License.\n\nA ``Transparent'' copy of the Document means a machine-readable copy,\nrepresented in a format whose specification is available to the\ngeneral public, whose contents can be viewed and edited directly and\nstraightforwardly with generic text editors or (for images composed of\npixels) generic paint programs or (for drawings) some widely available\ndrawing editor, and that is suitable for input to text formatters or\nfor automatic translation to a variety of formats suitable for input\nto text formatters. A copy made in an otherwise Transparent file\nformat whose markup has been designed to thwart or discourage\nsubsequent modification by readers is not Transparent. A copy that is\nnot ``Transparent'' is called ``Opaque.''\n\nExamples of suitable formats for Transparent copies include plain\nASCII without markup, Texinfo input format, \\LaTeX~input format, SGML\nor XML using a publicly available DTD, and standard-conforming simple\nHTML designed for human modification. Opaque formats include\nPostScript, PDF, proprietary formats that can be read and edited only\nby proprietary word processors, SGML or XML for which the DTD and/or\nprocessing tools are not generally available, and the\nmachine-generated HTML produced by some word processors for output\npurposes only.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "20146fda-7b8b-4d03-adb9-1c79e9d87125": {"__data__": {"id_": "20146fda-7b8b-4d03-adb9-1c79e9d87125", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "node_type": null, "metadata": {}, "hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "2": {"node_id": "47ee3c46-bad3-4aac-99eb-11a0b98ebf20", "node_type": null, "metadata": {}, "hash": "b6d96f6c3bb85d8d2ef242e9324190aabf190cbb627ccce99162a6a233c4fe12"}, "3": {"node_id": "ff608a4c-36da-45aa-ad71-ea74392d397c", "node_type": null, "metadata": {}, "hash": "9e60dd0ae06caca1fc2f8663c3e0bdee8325468f7b2f7d4fb7efcc73f9497246"}}, "hash": "8fb629faf6434d074fff0c3901cfb286836d07fb31a5c0d8547e951f88190ae7", "text": "The ``Title Page'' means, for a printed book, the title page itself,\nplus such following pages as are needed to hold, legibly, the material\nthis License requires to appear in the title page. For works in\nformats which do not have any title page as such, ``Title Page'' means\nthe text near the most prominent appearance of the work's title,\npreceding the beginning of the body of the text.\n\n\n\\section{Verbatim Copying}\n\nYou may copy and distribute the Document in any medium, either\ncommercially or noncommercially, provided that this License, the\ncopyright notices, and the license notice saying this License applies\nto the Document are reproduced in all copies, and that you add no other\nconditions whatsoever to those of this License. You may not use\ntechnical measures to obstruct or control the reading or further\ncopying of the copies you make or distribute. However, you may accept\ncompensation in exchange for copies. If you distribute a large enough\nnumber of copies you must also follow the conditions in Section 3.\n\nYou may also lend copies, under the same conditions stated above, and\nyou may publicly display copies.\n\n\n\\section{Copying in Quantity}\n\nIf you publish printed copies of the Document numbering more than 100,\nand the Document's license notice requires Cover Texts, you must enclose\nthe copies in covers that carry, clearly and legibly, all these Cover\nTexts: Front-Cover Texts on the front cover, and Back-Cover Texts on\nthe back cover. Both covers must also clearly and legibly identify\nyou as the publisher of these copies. The front cover must present\nthe full title with all words of the title equally prominent and\nvisible. You may add other material on the covers in addition.\nCopying with changes limited to the covers, as long as they preserve\nthe title of the Document and satisfy these conditions, can be treated\nas verbatim copying in other respects.\n\nIf the required texts for either cover are too voluminous to fit\nlegibly, you should put the first ones listed (as many as fit\nreasonably) on the actual cover, and continue the rest onto adjacent\npages.\n\nIf you publish or distribute Opaque copies of the Document numbering\nmore than 100, you must either include a machine-readable Transparent\ncopy along with each Opaque copy, or state in or with each Opaque copy\na publicly accessible computer-network location containing a complete\nTransparent copy of the Document, free of added material, which the\ngeneral network-using public has access to download anonymously at no\ncharge using public-standard network protocols. If you use the latter\noption, you must take reasonably prudent steps, when you begin\ndistribution of Opaque copies in quantity, to ensure that this\nTransparent copy will remain thus accessible at the stated location\nuntil at least one year after the last time you distribute an Opaque\ncopy (directly or through your agents or retailers) of that edition to\nthe public.\n\nIt is requested, but not required, that you contact the authors of the\nDocument well before redistributing any large number of copies, to give\nthem a chance to provide you with an updated version of the Document.\n\n\n\\section{Modifications}\n\nYou may copy and distribute a Modified Version of the Document under\nthe conditions of Sections 2 and 3 above, provided that you release\nthe Modified Version under precisely this License, with the Modified\nVersion filling the role of the Document, thus licensing distribution\nand modification of the Modified Version to whoever possesses a copy\nof it. In addition, you must do these things in the Modified Version:\n\n\\begin{itemize}\n\n\\item Use in the Title Page (and on the covers, if any) a title distinct\n from that of the Document, and from those of previous versions\n (which should, if there were any, be listed in the History section\n of the Document). You may use the same title as a previous version\n if the original publisher of that version gives permission.\n\\item List on the Title Page, as authors, one or more persons or entities\n responsible for authorship of the modifications in the Modified\n Version, together with at least five of the principal authors of the\n Document (all of its principal authors, if it has less than five).\n\\item State on the Title page the name of the publisher of the\n Modified Version, as the publisher.\n\\item Preserve all the copyright notices of the Document.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ff608a4c-36da-45aa-ad71-ea74392d397c": {"__data__": {"id_": "ff608a4c-36da-45aa-ad71-ea74392d397c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "node_type": null, "metadata": {}, "hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "2": {"node_id": "20146fda-7b8b-4d03-adb9-1c79e9d87125", "node_type": null, "metadata": {}, "hash": "8fb629faf6434d074fff0c3901cfb286836d07fb31a5c0d8547e951f88190ae7"}, "3": {"node_id": "7a9c5d00-cd62-4a4e-9607-bd6caef08515", "node_type": null, "metadata": {}, "hash": "ee5af6ea10dab8858f260571cbd1ebf89be906bd0c04223241b6e631a54319f2"}}, "hash": "9e60dd0ae06caca1fc2f8663c3e0bdee8325468f7b2f7d4fb7efcc73f9497246", "text": "\\item Preserve all the copyright notices of the Document.\n\\item Add an appropriate copyright notice for your modifications\n adjacent to the other copyright notices.\n\\item Include, immediately after the copyright notices, a license notice\n giving the public permission to use the Modified Version under the\n terms of this License, in the form shown in the Addendum below.\n\\item Preserve in that license notice the full lists of Invariant Sections\n and required Cover Texts given in the Document's license notice.\n\\item Include an unaltered copy of this License.\n\\item Preserve the section entitled ``History,'' and its title, and add to\n it an item stating at least the title, year, new authors, and\n publisher of the Modified Version as given on the Title Page. If\n there is no section entitled ``History'' in the Document, create one\n stating the title, year, authors, and publisher of the Document as\n given on its Title Page, then add an item describing the Modified\n Version as stated in the previous sentence.\n\\item Preserve the network location, if any, given in the Document for\n public access to a Transparent copy of the Document, and likewise\n the network locations given in the Document for previous versions\n it was based on. These may be placed in the ``History'' section.\n You may omit a network location for a work that was published at\n least four years before the Document itself, or if the original\n publisher of the version it refers to gives permission.\n\\item In any section entitled ``Acknowledgements'' or ``Dedications,''\n preserve the section's title, and preserve in the section all the\n substance and tone of each of the contributor acknowledgements\n and/or dedications given therein.\n\\item Preserve all the Invariant Sections of the Document,\n unaltered in their text and in their titles. Section numbers\n or the equivalent are not considered part of the section titles.\n\\item Delete any section entitled ``Endorsements.'' Such a section\n may not be included in the Modified Version.\n\\item Do not retitle any existing section as ``Endorsements''\n or to conflict in title with any Invariant Section.\n\n\\end{itemize}\n\nIf the Modified Version includes new front-matter sections or\nappendices that qualify as Secondary Sections and contain no material\ncopied from the Document, you may at your option designate some or all\nof these sections as invariant. To do this, add their titles to the\nlist of Invariant Sections in the Modified Version's license notice.\nThese titles must be distinct from any other section titles.\n\nYou may add a section entitled ``Endorsements,'' provided it contains\nnothing but endorsements of your Modified Version by various\nparties---for example, statements of peer review or that the text has\nbeen approved by an organization as the authoritative definition of a\nstandard.\n\nYou may add a passage of up to five words as a Front-Cover Text, and a\npassage of up to 25 words as a Back-Cover Text, to the end of the list\nof Cover Texts in the Modified Version. Only one passage of\nFront-Cover Text and one of Back-Cover Text may be added by (or\nthrough arrangements made by) any one entity. If the Document already\nincludes a cover text for the same cover, previously added by you or\nby arrangement made by the same entity you are acting on behalf of,\nyou may not add another; but you may replace the old one, on explicit\npermission from the previous publisher that added the old one.\n\nThe author(s) and publisher(s) of the Document do not by this License\ngive permission to use their names for publicity for or to assert or\nimply endorsement of any Modified Version.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7a9c5d00-cd62-4a4e-9607-bd6caef08515": {"__data__": {"id_": "7a9c5d00-cd62-4a4e-9607-bd6caef08515", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "node_type": null, "metadata": {}, "hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "2": {"node_id": "ff608a4c-36da-45aa-ad71-ea74392d397c", "node_type": null, "metadata": {}, "hash": "9e60dd0ae06caca1fc2f8663c3e0bdee8325468f7b2f7d4fb7efcc73f9497246"}, "3": {"node_id": "f620bea9-7052-4504-ade1-ba5cf9d769a4", "node_type": null, "metadata": {}, "hash": "ae310102f38996585d9f421e65b7a66ebb1ca7935d2883e29b4f8ffcc21ed096"}}, "hash": "ee5af6ea10dab8858f260571cbd1ebf89be906bd0c04223241b6e631a54319f2", "text": "\\section{Combining Documents}\n\nYou may combine the Document with other documents released under this\nLicense, under the terms defined in Section 4 above for modified\nversions, provided that you include in the combination all of the\nInvariant Sections of all of the original documents, unmodified, and\nlist them all as Invariant Sections of your combined work in its\nlicense notice.\n\nThe combined work need only contain one copy of this License, and\nmultiple identical Invariant Sections may be replaced with a single\ncopy. If there are multiple Invariant Sections with the same name but\ndifferent contents, make the title of each such section unique by\nadding at the end of it, in parentheses, the name of the original\nauthor or publisher of that section if known, or else a unique number.\nMake the same adjustment to the section titles in the list of\nInvariant Sections in the license notice of the combined work.\n\nIn the combination, you must combine any sections entitled ``History''\nin the various original documents, forming one section entitled\n``History''; likewise combine any sections entitled ``Acknowledgements,''\nand any sections entitled ``Dedications.'' You must delete all sections\nentitled ``Endorsements.''\n\n\n\\section{Collections of Documents}\n\nYou may make a collection consisting of the Document and other documents\nreleased under this License, and replace the individual copies of this\nLicense in the various documents with a single copy that is included in\nthe collection, provided that you follow the rules of this License for\nverbatim copying of each of the documents in all other respects.\n\nYou may extract a single document from such a collection, and distribute\nit individually under this License, provided you insert a copy of this\nLicense into the extracted document, and follow this License in all\nother respects regarding verbatim copying of that document.\n\n\n\n\\section{Aggregation with Independent Works}\n\nA compilation of the Document or its derivatives with other separate\nand independent documents or works, in or on a volume of a storage or\ndistribution medium, does not as a whole count as a Modified Version\nof the Document, provided no compilation copyright is claimed for the\ncompilation. Such a compilation is called an ``aggregate,'' and this\nLicense does not apply to the other self-contained works thus compiled\nwith the Document, on account of their being thus compiled, if they\nare not themselves derivative works of the Document.\n\nIf the Cover Text requirement of Section 3 is applicable to these\ncopies of the Document, then if the Document is less than one quarter\nof the entire aggregate, the Document's Cover Texts may be placed on\ncovers that surround only the Document within the aggregate.\nOtherwise they must appear on covers around the whole aggregate.\n\n\n\\section{Translation}\n\nTranslation is considered a kind of modification, so you may\ndistribute translations of the Document under the terms of Section 4.\nReplacing Invariant Sections with translations requires special\npermission from their copyright holders, but you may include\ntranslations of some or all Invariant Sections in addition to the\noriginal versions of these Invariant Sections. You may include a\ntranslation of this License provided that you also include the\noriginal English version of this License. In case of a disagreement\nbetween the translation and the original English version of this\nLicense, the original English version will prevail.\n\n\n\\section{Termination}\n\nYou may not copy, modify, sublicense, or distribute the Document except\nas expressly provided for under this License. Any other attempt to\ncopy, modify, sublicense, or distribute the Document is void, and will\nautomatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f620bea9-7052-4504-ade1-ba5cf9d769a4": {"__data__": {"id_": "f620bea9-7052-4504-ade1-ba5cf9d769a4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "node_type": null, "metadata": {}, "hash": "154dfc5544f99a8aa17a73c35d409696e8631e44468eb41aedaf3f7d258740d7"}, "2": {"node_id": "7a9c5d00-cd62-4a4e-9607-bd6caef08515", "node_type": null, "metadata": {}, "hash": "ee5af6ea10dab8858f260571cbd1ebf89be906bd0c04223241b6e631a54319f2"}}, "hash": "ae310102f38996585d9f421e65b7a66ebb1ca7935d2883e29b4f8ffcc21ed096", "text": "\\section{Future Revisions of This License}\n\nThe Free Software Foundation may publish new, revised versions\nof the GNU Free Documentation License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns. See\nhttp:///www.gnu.org/copyleft/.\n\nEach version of the License is given a distinguishing version number.\nIf the Document specifies that a particular numbered version of this\nLicense \"or any later version\" applies to it, you have the option of\nfollowing the terms and conditions either of that specified version or\nof any later version that has been published (not as a draft) by the\nFree Software Foundation. If the Document does not specify a version\nnumber of this License, you may choose any version ever published (not\nas a draft) by the Free Software Foundation.\n\n\\section{Addendum: How to Use This License for Your Documents}\n\nTo use this License in a document you have written, include a copy of\nthe License in the document and put the following copyright and\nlicense notices just after the title page:\n\n\\begin{quote}\n\n Copyright $\\copyright$ YEAR YOUR NAME.\n Permission is granted to copy, distribute and/or modify this document\n under the terms of the GNU Free Documentation License, Version 1.1\n or any later version published by the Free Software Foundation;\n with the Invariant Sections being LIST THEIR TITLES, with the\n Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.\n A copy of the license is included in the section entitled ``GNU\n Free Documentation License.''\n\n\\end{quote}\n\nIf you have no Invariant Sections, write ``with no Invariant Sections''\ninstead of saying which ones are invariant. If you have no\nFront-Cover Texts, write ``no Front-Cover Texts'' instead of\n``Front-Cover Texts being LIST''; likewise for Back-Cover Texts.\n\nIf your document contains nontrivial examples of program code, we\nrecommend releasing these examples in parallel under your choice of\nfree software license, such as the GNU General Public License,\nto permit their use in free software.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7": {"__data__": {"id_": "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0d121388-4770-427c-beea-56d66cb85583", "node_type": null, "metadata": {}, "hash": "0b40d73c911a2d66b9fe0977dfd4046d01c6c7eae283e866efa9a6a2f5ba5fbe"}, "3": {"node_id": "9936a434-0aae-4070-99e6-d1abeb440546", "node_type": null, "metadata": {}, "hash": "2460627122e40a72441e17a25d4c23df94c9b47ddab6e7f916df03a5fb7c83e4"}}, "hash": "f83e3e9e3c499efceed6397ee27c034ff9c155bd4e8b363981fb506232717fd7", "text": "illustrations/assign2.eps\n\n\\centerline{\\psfig{figure=illustrations/assign2.eps}}\n\nillustrations/banana.eps\n\n\\centerline{\\psfig{figure=illustrations/banana.eps}}\n\nillustrations/compile.eps\n\n\\centerline{\\psfig{figure=illustrations/compile.eps}}\n\nillustrations/fibonacci.eps\n\n\\centerline{\\psfig{figure=illustrations/fibonacci.eps}}\n\nillustrations/interpret.eps\n\n\\centerline{\\psfig{figure=illustrations/interpret.eps}}\n\nillustrations/link1.eps\n\n\\centerline{\\psfig{figure=illustrations/link1.eps}}\n\nillustrations/link2.eps\n\n\\centerline{\\psfig{figure=illustrations/link2.eps}}\n\nillustrations/link3.eps\n\n\\centerline{\\psfig{figure=illustrations/link3.eps}}\n\nillustrations/link4.eps\n\n\\centerline{\\psfig{figure=illustrations/link4.eps}}\n\nillustrations/link5.eps\n\n\\centerline{\\psfig{figure=illustrations/link5.eps}}\n\nillustrations/list1.eps\n\n\\centerline{\\psfig{figure=illustrations/list1.eps}}\n\nillustrations/list2.eps\n\n\\centerline{\\psfig{figure=illustrations/list2.eps}}\n\nillustrations/list3.eps\n\n\\centerline{\\psfig{figure=illustrations/list3.eps}}\n\nillustrations/list4.eps\n\n%\\centerline{\\psfig{figure=illustrations/list4.eps}}\n\nillustrations/list5.eps\n\n%\\centerline{\\psfig{figure=illustrations/list5.eps}}\n\nillustrations/matrix.eps\n\n\\centerline{\\psfig{figure=illustrations/matrix.eps}}\n\nillustrations/point.eps\n\n\\centerline{\\psfig{figure=illustrations/point.eps}}\n\nillustrations/queue1.eps\n\n\\centerline{\\psfig{figure=illustrations/queue1.eps}}\n\nillustrations/queue2.eps\n\n%\\centerline{\\psfig{figure=illustrations/queue2.eps}}\n\nillustrations/queue3.eps\n\n%\\centerline{\\psfig{figure=illustrations/queue3.eps}}\n\nillustrations/queue4.eps\n\n%\\centerline{\\psfig{figure=illustrations/queue4.eps}}\n\nillustrations/queue5.eps\n\n%\\centerline{\\psfig{figure=illustrations/queue5.eps}}\n\nillustrations/rectangle2.eps\n\n\\centerline{\\psfig{figure=illustrations/rectangle2.eps}}\n\nillustrations/rectangle.eps\n\n\\centerline{\\psfig{figure=illustrations/rectangle.eps}}\n\nillustrations/sparse.eps\n\n\\centerline{\\psfig{figure=illustrations/sparse.eps}}\n\nillustrations/stack2.eps\n\n\\centerline{\\psfig{figure=illustrations/stack2.eps}}\n\nillustrations/stack3.eps\n\n\\centerline{\\psfig{figure=illustrations/stack3.eps}}\n\nillustrations/stack4.eps\n\n\\centerline{\\psfig{figure=illustrations/stack4.eps}}\n\nillustrations/stack.eps\n\n\\centerline{\\psfig{figure=illustrations/stack.eps}}\n\nillustrations/state.eps\n\n\\centerline{\\psfig{figure=illustrations/state.eps}}\n\nillustrations/time.eps\n\n\\centerline{\\psfig{figure=illustrations/time.eps}}\n\nillustrations/tree1.eps\n\n\\centerline{\\psfig{figure=illustrations/tree1.eps}}\n\nillustrations/tree2.eps\n\n\\centerline{\\psfig{figure=illustrations/tree2.eps}}\n\nillustrations/tree3.eps\n\n%\\centerline{\\psfig{figure=illustrations/tree3.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9936a434-0aae-4070-99e6-d1abeb440546": {"__data__": {"id_": "9936a434-0aae-4070-99e6-d1abeb440546", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "0d121388-4770-427c-beea-56d66cb85583", "node_type": null, "metadata": {}, "hash": "0b40d73c911a2d66b9fe0977dfd4046d01c6c7eae283e866efa9a6a2f5ba5fbe"}, "2": {"node_id": "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7", "node_type": null, "metadata": {}, "hash": "f83e3e9e3c499efceed6397ee27c034ff9c155bd4e8b363981fb506232717fd7"}}, "hash": "2460627122e40a72441e17a25d4c23df94c9b47ddab6e7f916df03a5fb7c83e4", "text": "eps\n\n%\\centerline{\\psfig{figure=illustrations/tree3.eps}}\n\nillustrations/tree4.eps\n\n\\centerline{\\psfig{figure=illustrations/tree4.eps}}\n\nillustrations/treeadt.eps\n\n%\\centerline{\\psfig{figure=illustrations/treeadt.eps}}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "278d2c56-536c-4910-9fcb-daa1088cb994": {"__data__": {"id_": "278d2c56-536c-4910-9fcb-daa1088cb994", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869", "node_type": null, "metadata": {}, "hash": "577db7bc866e14083156471eb8420b66d9371633765b835c49996779b3a70371"}}, "hash": "d0cadb0544a7ae24020f1f7f75cf378dbb16af9f5b1c78d07bc111afed98d681", "text": "\\documentclass[b5paper,draft]{book}\n\\usepackage{psfig}\n\\usepackage{makeidx}\n\\pssilent\n\n\\renewcommand\\MakeUppercase{}\n\n\\sloppy\n\\setlength{\\topmargin}{-0.375in}\n\\setlength{\\headsep}{0.25in}\n\\setlength{\\textheight}{7.25in}\n\\setlength{\\oddsidemargin}{0.0in}\n\\setlength{\\evensidemargin}{0.0in}\n\n\\setlength{\\parindent}{0.0in}\n\\setlength{\\parskip}{1.5ex plus 0.5ex minus 0.5ex}\n\\makeindex\n\n\\begin{document}\n\n\\include{figs}\n\n\\end{document}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3": {"__data__": {"id_": "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "node_type": null, "metadata": {}, "hash": "0a2a113b43bfaa43a52ce8145683bbd80010569267471d3d1aec093d606025b6"}, "3": {"node_id": "df1de581-9827-42fd-b1ed-e2fc4ca4899b", "node_type": null, "metadata": {}, "hash": "0ab42e8bb8555d8d2e7dfeb401d0a405c7da1f2142367c403333f55dd55148eb"}}, "hash": "14ab568893315f28a4139c512caa7438c5c3a925383bdc5b59a46baf256caa6a", "text": "\\chapter{Foreword}\n\nBy David Beazley\n\nAs an educator, researcher, and book author, I am delighted to see the\ncompletion of this book. Python is a fun and extremely easy-to-use\nprogramming language that has steadily gained in popularity over the\nlast few years. Developed over ten years ago by Guido van Rossum,\nPython's simple syntax and overall feel is largely derived from ABC, a\nteaching language that was developed in the 1980's. However, Python\nwas also created to solve real problems and it borrows a wide variety\nof features from programming languages such as C++, Java, Modula-3,\nand Scheme. Because of this, one of Python's most remarkable features\nis its broad appeal to professional software developers, scientists,\nresearchers, artists, and educators.\n\nDespite Python's appeal to many different communities, you may still\nwonder ``why Python?'' or ``why teach programming with Python?''\nAnswering these questions is no simple task---especially when popular\nopinion is on the side of more masochistic alternatives such\nas C++ and Java. However, I think the most direct answer is that\nprogramming in Python is simply a lot of fun and more productive.\n\nWhen I teach computer science courses, I want to cover important\nconcepts in addition to making the material interesting and engaging\nto students. Unfortunately, there is a tendency for introductory\nprogramming courses to focus far too much attention on mathematical\nabstraction and for students to become frustrated with annoying\nproblems related to low-level details of syntax, compilation, and the\nenforcement of seemingly arcane rules. Although such abstraction and\nformalism is important to professional software engineers and students\nwho plan to continue their study of computer science, taking such an\napproach in an introductory course mostly succeeds in making computer\nscience boring. When I teach a course, I don't want to have a room of\nuninspired students. I would much rather see them trying to solve\ninteresting problems by exploring different ideas, taking\nunconventional approaches, breaking the rules, and learning from their\nmistakes. In doing so, I don't want to waste half of the semester\ntrying to sort out obscure syntax problems, unintelligible compiler\nerror messages, or the several hundred ways that a program might\ngenerate a general protection fault.\n\nOne of the reasons why I like Python is that it provides a really nice\nbalance between the practical and the conceptual. Since Python is\ninterpreted, beginners can pick up the language and start doing\nneat things almost immediately without getting lost in the problems of\ncompilation and linking. Furthermore, Python comes with a large\nlibrary of modules that can be used to do all sorts of tasks ranging\nfrom web-programming to graphics. Having such a practical focus is a\ngreat way to engage students and it allows them to complete\nsignificant projects. However, Python can also serve as an excellent\nfoundation for introducing important computer science concepts. Since\nPython fully supports procedures and classes, students can be\ngradually introduced to topics such as procedural abstraction, data\nstructures, and object-oriented programming---all of which are\napplicable to later courses on Java or C++. Python even borrows a\nnumber of features from functional programming languages and can be\nused to introduce concepts that would be covered in more detail in\ncourses on Scheme and Lisp.\n\nIn reading Jeffrey's preface, I am struck by his comments that Python\nallowed him to see a ``higher level of success and a lower level of\nfrustration'' and that he was able to ``move faster with better\nresults.'' Although these comments refer to his introductory course, I\nsometimes use Python for these exact same reasons in advanced graduate\nlevel computer science courses at the University of Chicago. In these\ncourses, I am constantly faced with the daunting task of covering a\nlot of difficult course material in a blistering nine week quarter.\nAlthough it is certainly possible for me to inflict a lot of pain and\nsuffering by using a language like C++, I have often found this\napproach to be counterproductive---especially when the course is about\na topic unrelated to just ``programming.'' I find that using Python\nallows me to better focus on the actual topic at hand while allowing\nstudents to complete substantial class projects.\n\nAlthough Python is still a young and evolving language, I believe that\nit has a bright future in education. This book is an important step in\nthat direction.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "df1de581-9827-42fd-b1ed-e2fc4ca4899b": {"__data__": {"id_": "df1de581-9827-42fd-b1ed-e2fc4ca4899b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "node_type": null, "metadata": {}, "hash": "0a2a113b43bfaa43a52ce8145683bbd80010569267471d3d1aec093d606025b6"}, "2": {"node_id": "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3", "node_type": null, "metadata": {}, "hash": "14ab568893315f28a4139c512caa7438c5c3a925383bdc5b59a46baf256caa6a"}}, "hash": "0ab42e8bb8555d8d2e7dfeb401d0a405c7da1f2142367c403333f55dd55148eb", "text": "This book is an important step in\nthat direction.\n\n\\vspace{0.25in}\n\\begin{flushleft}\nDavid Beazley \\\\\nUniversity of Chicago \\\\\nAuthor of the {\\em Python Essential Reference} \\\\\n\\end{flushleft}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bb687d40-1093-4eaf-90c9-d0eb2e3dade1": {"__data__": {"id_": "bb687d40-1093-4eaf-90c9-d0eb2e3dade1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "node_type": null, "metadata": {}, "hash": "17a6fee2e3ea4e1355794d27faa230d4762c1c81e7e5a290d0cbcb141f9581ed"}, "3": {"node_id": "9f7ff698-db2b-41ab-9c8e-c255d8e3a586", "node_type": null, "metadata": {}, "hash": "30225d1d620a45435660145c2cf70d664f4ab379978f8abfcae8457eb644a312"}}, "hash": "157789eb3883f33793554435b09c77efb4e71b422caa0cd6926cc6df54f6d868", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001 Allen B. Downey, Jeffrey Elkner, and Chris Meyers.\n\n% Permission is granted to copy, distribute and/or modify this document under\n% the terms of the GNU Free Documentation License, Version 1.1 or any later\n% version published by the Free Software Foundation; with the Invariant\n% Sections being \"Contributor List\", \"Forward\", and \"Preface\", with no\n% Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is\n% included in the section entitled \"GNU Free Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text of the\n% GNU Free Documentation License. If it is missing, you can obtain it from\n% www.gnu.org or by writing to the Free Software Foundation, Inc.,\n% 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n%\n\\chapter{Preface}\n\nBy Jeff Elkner\n\nThis book owes its existence to the collaboration made possible by the\nInternet and the free software movement. Its three authors---a\ncollege professor, a high school teacher, and a professional\nprogrammer---have yet to meet face to face, but we have been able to\nwork closely together and have been aided by many wonderful folks who\nhave donated their time and energy to helping make this book better.\n\nWe think this book is a testament to the benefits and future\npossibilities of this kind of collaboration, the framework for which\nhas been put in place by Richard Stallman and the Free Software\nFoundation.\n\n\n\\section*{How and why I came to use Python}\n\nIn 1999, the College Board's Advanced Placement (AP) Computer Science\nexam was given in C++ for the first time. As in many high schools\nthroughout the country, the decision to change languages had a direct\nimpact on the computer science curriculum at Yorktown High School in\nArlington, Virginia, where I teach. Up to this point, Pascal was the\nlanguage of instruction in both our first-year and AP courses. In\nkeeping with past practice of giving students two years of exposure to\nthe same language, we made the decision to switch to C++ in the\nfirst-year course for the 1997-98 school year so that we would be in\nstep with the College Board's change for the AP course the following\nyear.\n\nTwo years later, I was convinced that C++ was a poor choice to use for\nintroducing students to computer science. While it is certainly a very\npowerful programming language, it is also an extremely difficult\nlanguage to learn and teach. I found myself constantly fighting with\nC++'s difficult syntax and multiple ways of doing things, and I was\nlosing many students unnecessarily as a result. Convinced there had to\nbe a better language choice for our first-year class, I went looking\nfor an alternative to C++.\n\nI needed a language that would run on the machines in our Linux lab as\nwell as on the Windows and Macintosh platforms most students have at\nhome. I wanted it to be free and available electronically, so that\nstudents could use it at home regardless of their income. I wanted a\nlanguage that was used by professional programmers, and one that had\nan active developer community around it. It had to support both\nprocedural and object-oriented programming. And most importantly, it\nhad to be easy to learn and teach. When I investigated the choices\nwith these goals in mind, Python stood out as the best candidate for\nthe job.\n\nI asked one of Yorktown's talented students, Matt Ahrens, \nto give Python a try. In two months he not only learned the language\nbut wrote an application called pyTicket that enabled our staff to\nreport technology problems via the Web. I knew that Matt could not\nhave finished an application of that scale in so short a time in C++,\nand this accomplishment, combined with Matt's positive assessment of\nPython, suggested that Python was the solution I was looking for.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9f7ff698-db2b-41ab-9c8e-c255d8e3a586": {"__data__": {"id_": "9f7ff698-db2b-41ab-9c8e-c255d8e3a586", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "node_type": null, "metadata": {}, "hash": "17a6fee2e3ea4e1355794d27faa230d4762c1c81e7e5a290d0cbcb141f9581ed"}, "2": {"node_id": "bb687d40-1093-4eaf-90c9-d0eb2e3dade1", "node_type": null, "metadata": {}, "hash": "157789eb3883f33793554435b09c77efb4e71b422caa0cd6926cc6df54f6d868"}, "3": {"node_id": "d665cef5-0e08-47bb-9e34-0b0767c0f1ff", "node_type": null, "metadata": {}, "hash": "56bda4d8dc2d4757dc8c5e73aeade85037a8ae23a386cd1e07a122ee06b087b5"}}, "hash": "30225d1d620a45435660145c2cf70d664f4ab379978f8abfcae8457eb644a312", "text": "\\section*{Finding a textbook}\n\nHaving decided to use Python in both of my introductory computer\nscience classes the following year, the most pressing problem was the\nlack of an available textbook.\n\nFree content came to the rescue. Earlier in the year, Richard\nStallman had introduced me to Allen Downey. Both of us had written to\nRichard expressing an interest in developing free educational\ncontent. Allen had already written a first-year computer science\ntextbook, {\\em How to Think Like a Computer Scientist}. When I read\nthis book, I knew immediately that I wanted to use it in my class. It\nwas the clearest and most helpful computer science text I had seen.\nIt emphasized the processes of thought involved in programming rather\nthan the features of a particular language. Reading it immediately\nmade me a better teacher.\n\n{\\em How to Think Like a Computer Scientist} was not just an excellent\nbook, but it had been released under a GNU public license, which meant\nit could be used freely and modified to meet the needs of its user.\nOnce I decided to use Python, it occurred to me that I could translate\nAllen's original Java version of the book into the new language.\nWhile I would not have been able to write a textbook on my own, having\nAllen's book to work from made it possible for me to do so, at the\nsame time demonstrating that the cooperative development model used so\nwell in software could also work for educational content.\n\nWorking on this book for the last two years has been rewarding for\nboth my students and me, and my students played a big part in the\nprocess. Since I could make instant changes whenever someone found a\nspelling error or difficult passage, I encouraged them to look for\nmistakes in the book by giving them a bonus point each time they made\na suggestion that resulted in a change in the text. This had the\ndouble benefit of encouraging them to read the text more carefully and\nof getting the text thoroughly reviewed by its most important critics,\nstudents using it to learn computer science.\n\n% I fixed this paragraph too:\n\nFor the second half of the book on object-oriented programming, I knew\nthat someone with more real programming experience than I had would be\nneeded to do it right. The book sat in an unfinished state for the better\npart of a year until the free software community once again provided the\nneeded means for its completion.\n\nI received an email from Chris Meyers expressing interest in the book.\nChris is a professional programmer who started teaching a programming\ncourse last year using Python at Lane Community College in Eugene,\nOregon. The prospect of teaching the course had led Chris to the\nbook, and he started helping out with it immediately. By the end of\nthe school year he had created a companion project on our website at\n{\\tt http://www.ibiblio.org/obp} called {\\em Python for Fun} and was\nworking with some of my most advanced students as a master teacher,\nguiding them beyond where I could take them.\n\n\n\\section*{Introducing programming with Python}\n\nThe process of translating and using {\\em How to Think Like a Computer\nScientist} for the past two years has confirmed Python's suitability\nfor teaching beginning students. Python greatly simplifies\nprogramming examples and makes important programming ideas easier to\nteach.\n\nThe first example from the text illustrates this point.\nIt is the traditional ``hello, world'' program, which in the C++\nversion of the book looks like this:\n\n\\begin{verbatim}\n #include \n\n void main()\n {\n cout << \"Hello, world.\" << endl;\n }\n\\end{verbatim}\n\nin the Python version it becomes:\n\n\\begin{verbatim}\n print \"Hello, World!\"\n\\end{verbatim}\n\nEven though this is a trivial example, the advantages of Python stand\nout. Yorktown's Computer Science I course has no prerequisites, so\nmany of the students seeing this example are looking at their first\nprogram. Some of them are undoubtedly a little nervous, having heard\nthat computer programming is difficult to learn. The C++ version has\nalways forced me to choose between two unsatisfying options: either to\nexplain {\\tt \\#include}, {\\tt void main()}, \\{, and \\},\nand risk confusing or intimidating some of the students right at the\nstart, or to tell them, ``Just don't worry about all of that stuff\nnow; we will talk about it later,'' and risk the same thing.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d665cef5-0e08-47bb-9e34-0b0767c0f1ff": {"__data__": {"id_": "d665cef5-0e08-47bb-9e34-0b0767c0f1ff", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "node_type": null, "metadata": {}, "hash": "17a6fee2e3ea4e1355794d27faa230d4762c1c81e7e5a290d0cbcb141f9581ed"}, "2": {"node_id": "9f7ff698-db2b-41ab-9c8e-c255d8e3a586", "node_type": null, "metadata": {}, "hash": "30225d1d620a45435660145c2cf70d664f4ab379978f8abfcae8457eb644a312"}, "3": {"node_id": "0e222bbb-583f-4ab9-84e6-79c3709b03e8", "node_type": null, "metadata": {}, "hash": "0edad6f6276b8d016b26f62fc060f05d9459472758c445b0bbb27546705a246c"}}, "hash": "56bda4d8dc2d4757dc8c5e73aeade85037a8ae23a386cd1e07a122ee06b087b5", "text": "The\neducational objectives at this point in the course are to introduce\nstudents to the idea of a programming language and to get them to\nwrite their first program, thereby introducing them to the programming\nenvironment. The Python program has exactly what is needed to do these\nthings, and nothing more.\n\nComparing the explanatory text of the program in each version of\nthe book further illustrates what this means to the beginning student.\nThere are thirteen paragraphs of explanation of ``Hello, world!'' in the\nC++ version; in the Python version, there are only two. More importantly,\nthe missing eleven paragraphs do not deal with the ``big ideas'' in\ncomputer programming but with the minutia of C++ syntax. I found this\nsame thing happening throughout the book. Whole paragraphs simply\ndisappear from the Python version of the text because Python's much\nclearer syntax renders them unnecessary.\n\nUsing a very high-level language like Python allows a teacher to\npostpone talking about low-level details of the machine until students\nhave the background that they need to better make sense of the\ndetails. It thus creates the ability to put ``first things first''\npedagogically. One of the best examples of this is the way in which\nPython handles variables. In C++ a variable is a name for a place that\nholds a thing. Variables have to be declared with types at least in\npart because the size of the place to which they refer needs to be\npredetermined. Thus, the idea of a variable is bound up with the\nhardware of the machine. The powerful and fundamental concept of a\nvariable is already difficult enough for beginning students (in both\ncomputer science and algebra). Bytes and addresses do not help the\nmatter. In Python a variable is a name that refers to a thing. This is\na far more intuitive concept for beginning students and is much closer\nto the meaning of ``variable'' that they learned in their math\ncourses. I had much less difficulty teaching variables this year than\nI did in the past, and I spent less time helping students with\nproblems using them.\n\nAnother example of how Python aids in the teaching and learning of\nprogramming is in its syntax for functions. My students have always\nhad a great deal of difficulty understanding functions. The main\nproblem centers around the difference between a function definition\nand a function call, and the related distinction between a parameter\nand an argument. Python comes to the rescue with syntax that is\nnothing short of beautiful. Function definitions begin with the\nkeyword {\\tt def}, so I simply tell my students, ``When you define a\nfunction, begin with {\\tt def}, followed by the name of the function\nthat you are defining; when you call a function, simply call (type)\nout its name.'' Parameters go with definitions; arguments go with\ncalls. There are no return types, parameter types, or reference and\nvalue parameters to get in the way, so I am now able to teach\nfunctions in less than half the time that it previously took me, with\nbetter comprehension.\n\nUsing Python has improved the effectiveness of our computer science\nprogram for all students. I see a higher general level of success and\na lower level of frustration than I experienced during the two years I\ntaught C++. I move faster with better results. More students leave\nthe course with the ability to create meaningful programs and with the\npositive attitude toward the experience of programming that this\nengenders.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0e222bbb-583f-4ab9-84e6-79c3709b03e8": {"__data__": {"id_": "0e222bbb-583f-4ab9-84e6-79c3709b03e8", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "node_type": null, "metadata": {}, "hash": "17a6fee2e3ea4e1355794d27faa230d4762c1c81e7e5a290d0cbcb141f9581ed"}, "2": {"node_id": "d665cef5-0e08-47bb-9e34-0b0767c0f1ff", "node_type": null, "metadata": {}, "hash": "56bda4d8dc2d4757dc8c5e73aeade85037a8ae23a386cd1e07a122ee06b087b5"}}, "hash": "0edad6f6276b8d016b26f62fc060f05d9459472758c445b0bbb27546705a246c", "text": "\\section*{Building a community}\n\n% Jeff: the following sentence sounds funny to me. You mention\n% every continent and then Korea specifically. How about just\n% the every continent part and take out the Korea?\n\n% done.\n\nI have received email from all over the globe from people using\nthis book to learn or to teach programming. A user community has\nbegun to emerge, and many people have been contributing to the\nproject by sending in materials for the companion website at\n{\\tt http://www.thinkpython.com}.\n\nWith the publication of the book in print form, I expect the growth in\nthe user community to continue and accelerate. The emergence of this\nuser community and the possibility it suggests for similar\ncollaboration among educators have been the most exciting parts of\nworking on this project for me. By working together, we can increase\nthe quality of materials available for our use and save valuable time.\nI invite you to join our community and look forward to hearing from\nyou. Please write to the authors at {\\tt feedback@thinkpython.com}.\n\n\\vspace{0.25in}\n\\begin{flushleft}\nJeffrey Elkner\\\\\nYorktown High School\\\\\nArlington, Virginia\\\\\n\\end{flushleft}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3b555f83-9634-48a7-b8c0-a207c923d7bf": {"__data__": {"id_": "3b555f83-9634-48a7-b8c0-a207c923d7bf", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "node_type": null, "metadata": {}, "hash": "f3a7b1c00b19c4b7962b8c015f2d8255201bf3176ba2b8717404b87b722c8e4a"}, "3": {"node_id": "45498fda-c622-4a9a-a1bc-4d2124f9b64d", "node_type": null, "metadata": {}, "hash": "a42a15e17cec9ebc34c5cd830e1e87a8e85c24a0575a022f3974d309df5201af"}}, "hash": "0dcc7072302d5126368c031c9a46be39e9a5c8fbc2dd8ed06d78d31f7503bcfd", "text": "\\documentclass{article}\n\\usepackage{url}\n\n\\setlength{\\parindent}{0.0in}\n\\setlength{\\parskip}{1.7ex plus 0.5ex minus 0.5ex}\n\\renewcommand{\\baselinestretch}{1.05}\n\n\\title{Book Proposal: {\\em Software Design}}\n\\author{}\n\\date{}\n\n\\begin{document}\n\n\\maketitle\n\n\\section*{Author information}\n\n\\begin{flushleft}\nProf. Allen B. Downey\\\\\nOlin College of Engineering\\\\\nOlin Way\\\\\nNeedham, MA 02492\\\\\n\\quad \\\\\ndowney@allendowney.com\\\\\n781-292-2558 (w)\\\\\n781-292-2508 (f)\\\\\n\\end{flushleft}\n\nAllen Downey is an Associate Professor of Computer Science at the Olin\nCollege of Engineering. He has taught computer science at Wellesley\nCollege, Colby College and U.C. Berkeley. He has a Ph.D. in Computer\nScience from U.C. Berkeley and a Master's Degree from MIT.\n\nDetailed CV at \\url{allendowney.com/downeyCV.pdf}\n\n\n\\section*{Software Design}\n\n{\\em Software Design} is a revised and\nupdated version of {\\em How to Think Like a Computer Scientist: Learning\nwith Python,} which was published in 2001.\n\nThe book is intended for students with no programming experience. It starts\nwith the most basic concepts of programming, and is carefully designed\nto define all terms when they are first used and to develop each new\nconcept in a logical progression. Larger pieces, like recursion and\nobject-oriented programming are divided into a sequence of smaller\nsteps and introduced over the course of several chapters.\n\nThe book is concise. Each chapter is 10-12 pages and covers the\nmaterial for one week of a college course. It is not a comprehensive\npresentation of Python; instead it focuses on the tools of\nsoftware design, starting with small functions and basic algorithms and\nworking up to object-oriented design. In the vocabulary of computer\nscience pedagogy, it uses the {\\em objects late} approach.\n\n\n\\subsection*{The original book}\n\n{\\em How to Think} is published under the GNU Free Documentation\nLicense by Green Tea Press, which is a partnership of the author and\nhis wife. Green Tea Press provides electronic versions of the book at\n\\url{thinkpython.com} and sells hardcopies to individuals, college\nbookstores, and through Amazon.\n\nThe book is well known on the Internet and well regarded. A Google\nsearch on the title and author yields more than 16,000 hits. The book\nhas received positive reviews from readers. It is used as a textbook\nin classes at a number of colleges and universities, including Simon\nFraser University, Clark College, Albion College, University of\nIllinois at Urbana-Champaign, U.C. Berkeley, U.C. San Diego and San\nDiego State University. Internationally, the electronic version is\nused at the Indian Institute of Technology at Kanpur, the University\nof New South Wales (Australia), Utrecht University (Holland) and\nSirindhorn International Institute of Technology (Thailand).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "45498fda-c622-4a9a-a1bc-4d2124f9b64d": {"__data__": {"id_": "45498fda-c622-4a9a-a1bc-4d2124f9b64d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "node_type": null, "metadata": {}, "hash": "f3a7b1c00b19c4b7962b8c015f2d8255201bf3176ba2b8717404b87b722c8e4a"}, "2": {"node_id": "3b555f83-9634-48a7-b8c0-a207c923d7bf", "node_type": null, "metadata": {}, "hash": "0dcc7072302d5126368c031c9a46be39e9a5c8fbc2dd8ed06d78d31f7503bcfd"}, "3": {"node_id": "53b70118-7161-41bf-9e8c-8c33daf2307b", "node_type": null, "metadata": {}, "hash": "800c73d895b6819ee26d24b9d5d2544e90e0064fdd3d6a342c549f0be092140f"}}, "hash": "a42a15e17cec9ebc34c5cd830e1e87a8e85c24a0575a022f3974d309df5201af", "text": "\\subsection*{The new book}\n\n{\\em Software Design} is in some sense the second edition of {\\em How to\nThink.} My goals in updating and revising the book are:\n\n\\begin{enumerate}\n\n\\item To incorporate the material I have developed in my classes as a\nseries of case studies covering topics in software engineering:\nfunctional abstraction, multi-layer interface design, data structure\nselection and design, UML object and class diagrams, and basic\nobject-oriented design patterns.\n\nThese case studies are based on a software suite I have written called\nSwampy. Swampy is a set of Python modules that can run in a standard\nPython installation. They provide an environment for a series of\nexercises that include graphics and animation (the original book is\nall text-based). The design and implementation of Swampy is the\nsubject of the last case study. The current version of Swampy\nis available from \\url{allendowney.com/swampy}.\n\n\\item To update the examples in the book with features that are new in\nPython, and to demonstrate more idiomatic Python style.\n\n\\end{enumerate}\n\n\\pagebreak\nIn addition, I am considering the following changes:\n\n\\begin{enumerate}\n\n\\item Changing the title to {\\em Software Design}. The current title is a\nwhimsical working title that stuck. {\\em Software Design} is a more\nconcise description of the contents; I think it is also a stronger\ntitle (and it is not currently in use).\n\nA potential drawback of changing the title is that it might be more\ndifficult to take advantage of the international reputation of {\\em How to\nThink}.\n\n\\item Removing Chapters 17 through 20. These chapters cover the\nimplementation of data structures. They are appropriate for a college\ncourse on data structures (which is where they were developed), but\nthey are not essential to the focus of the book. Also, they are at a\nlower level of abstraction than the rest of the book.\n\n\\item Expanding Appendix B into a regular chapter. Defining special\nfunctions to customize the behavior of user-defined objects is\nan important technique in Python, and consistent with the new\nfocus of the book.\n\n\\end{enumerate}\n\nI expect to work on these revisions in Summer 2007. I will have\na draft of the new chapters by July 1 and a complete manuscript by\nSeptember 1, 2007.\n\nI will prepare the manuscript in LaTeX; I can produce camera-ready PDF\nor LaTeX files ready for professional typesetting. The manuscript\nwill include black-and-white figures like the ones in {\\em How to Think};\nthese could be used as-is or sent to a professional illustrator.\n\nI will also produce a version of Swampy that contains the programs\nneeded for the case studies, suitable for distribution along with the\nbook or on a web page.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "53b70118-7161-41bf-9e8c-8c33daf2307b": {"__data__": {"id_": "53b70118-7161-41bf-9e8c-8c33daf2307b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "node_type": null, "metadata": {}, "hash": "f3a7b1c00b19c4b7962b8c015f2d8255201bf3176ba2b8717404b87b722c8e4a"}, "2": {"node_id": "45498fda-c622-4a9a-a1bc-4d2124f9b64d", "node_type": null, "metadata": {}, "hash": "a42a15e17cec9ebc34c5cd830e1e87a8e85c24a0575a022f3974d309df5201af"}, "3": {"node_id": "a0fa9976-9308-4e10-bcbc-a24ff57cef61", "node_type": null, "metadata": {}, "hash": "11803adb34695647c904fff7c7a6d6a24f7bd69ac39825d453003fb6b92dd1b5"}}, "hash": "800c73d895b6819ee26d24b9d5d2544e90e0064fdd3d6a342c549f0be092140f", "text": "\\section*{Outline}\n\nThe outline of the new book will follow {\\em How to Think}, with the new\ncase studies interspersed:\n\n1. The way of the program.\n\n2. Variables, expressions and statements.\n\n3. Functions.\n\n\\quad \\quad Case study: functional abstraction.\n\n4. Conditionals and recursion.\n\n5. Fruitful functions.\n\n6. Iteration.\n\n\\quad \\quad Case study: encapsulation and generalization.\n\n7. Strings.\n\n8. Lists.\n\n9. Tuples.\n\n\\quad \\quad Case study: iteration and search.\n\n10. Dictionaries.\n\n11. Files and exceptions.\n\n12. Classes and objects.\n\n\\quad \\quad Case study: data structure selection.\n\n13. Classes and functions.\n\n14. Classes and methods.\n\n15. Sets of objects.\n\n\\quad \\quad Case study: algorithm design.\n\n16. Inheritance and UML.\n\n17. Customizing object behavior (revised version of Appendix B).\n\n\\quad \\quad Case study: object-oriented design.\n\n18. GUIs with Tkinter.\n\n\\quad \\quad Case study: design and implementation of Swampy.\n\nA. Debugging.\n\nThe detailed table of contents from {\\em How to Think} is included with\nthis proposal. The entire book is available from \\url{thinkpython.com}.\n\nThe chapters from {\\em How to Think} will be revised and updated. Some\nwill be mostly unchanged; others will be substantially rewritten.\nThe case studies are new material based on homeworks I am using in my\nclass. Each case study presents an example program and a series of\nexercises; then it presents solutions to some of the exercises and a\ndiscussion of the concept the case study is meant to demonstrate.\n\nWith 18 chapters, 7 case studies and an appendix, each 10-12 pages,\nI expect the total page count to be 260--300 pages.\n\n\n\\section*{Sample Chapters}\n\nAlong with this proposal I am submitting Chapters 12, 13 and 14 from\n{\\em How to Think}. These chapters introduce object-oriented programming\nstarting with user-defined types and attributes, functions that\noperate on objects, and then methods.\n\nThese chapters demonstrate several features of the book:\n\n\\begin{enumerate}\n\n\\item One concept at a time: I have divided the topics that give students\nthe most trouble into a series of small steps so that students can\nexercise new concepts before going to the next step.\n\n\\item Balance of language features and concepts: The book in not\nprimarily about Python; it uses Python examples to demonstrate\nsoftware engineering concepts. Most chapters start with language\nfeatures and end with concepts.\n\n\\item Conciseness: An important goal of the book is to be small enough\nthat students can be expected to read and understand the entire book\nin a one-semester course. Each chapter is 10-12 pages; students can\nread 1-2 chapters per week, depending on the pace of the class.\n\n\\item Emphasis on vocabulary: I am careful to define each term the first\ntime it appears, and each chapter ends with a glossary of new terms.\n\n\\end{enumerate}\n\n\n\\section*{Readership}\n\n{\\em Software Design} is appropriate as a textbook in an introductory\ncollege or high school class. {\\em How to Think} is currently in use\nat a number of colleges and universities, and at some high schools.\n\nAt the college level, some computer science departments are migrating\nfrom Java to Python in their intro classes. In addition, many science\ndepartments are using Python in classes that require basic\nprogramming, especially Physics and Bioinformatics.\n\n{\\em Software Design} is also appropriate for self-teachers and\nhome-schoolers. I get frequent email from individuals who are using\n{\\em How to Think} to teach themselves programming in Python.\n\nFor professional programmers, the introductory chapters are probably\ntoo basic, but the book is appropriate for professionals in other\nfields who need to pick up programming.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a0fa9976-9308-4e10-bcbc-a24ff57cef61": {"__data__": {"id_": "a0fa9976-9308-4e10-bcbc-a24ff57cef61", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "node_type": null, "metadata": {}, "hash": "f3a7b1c00b19c4b7962b8c015f2d8255201bf3176ba2b8717404b87b722c8e4a"}, "2": {"node_id": "53b70118-7161-41bf-9e8c-8c33daf2307b", "node_type": null, "metadata": {}, "hash": "800c73d895b6819ee26d24b9d5d2544e90e0064fdd3d6a342c549f0be092140f"}}, "hash": "11803adb34695647c904fff7c7a6d6a24f7bd69ac39825d453003fb6b92dd1b5", "text": "\\section*{Competition}\n\nThe most direct competitors are:\n\n\\begin{itemize}\n\\item {\\em Learn to Program Using Python: A Tutorial for Hobbyists,\nSelf-Starters, and All Who Want to Learn the Art of Computer\nProgramming}, by Alan Gauld (2001).\n\n\\item {\\em Python Programming: An Introduction to Computer Science}, by John\nM. Zelle (2003).\n\\end{itemize}\n\nBoth books are aimed at beginning programmers. Gauld's is intended\nfor self-teachers; Zelle's is intended for computer science classes.\n\nBoth books are well regarded, but when I checked the Amazon\nsales ranks, {\\em How to Think} was out-selling both (March 21, 2007).\n\n\\begin{tabular}{l|l}\nAuthor\t&\t Amazon sales rank\\\\\n\\hline\nDowney\t& $\\sim$37,000\\\\\nZelle & $\\sim$135,000\\\\\nGauld\t&\t $\\sim$490,000\\\\\n\\end{tabular}\n\nGauld's book is getting old; it is possible that a new edition\nwill appear soon. Zelle's book is relatively new and probably\nthe most direct competition for the college textbook market.\n\n\n\\section*{Copyright}\n\nThe copyright on {\\em How to Think} is held by Allen Downey, Jeff Elkner\nand Chris Meyers. We have released it under the GNU Free\nDocumentation License (FDL), which allows anyone to copy, modify and\ndistribute it. In fact, the Python version of the book exists because\nJeff Elkner took the Java version and translated it into Python.\n\nI am currently working with my co-authors to license their\ncontributions for use in {\\em Software Design}. I will grant an\nexclusive license to the publishers to print and distribute the final\nversion of the book, but I would like to keep the copyright and\nmaintain a draft version of the book on my web page under the FDL,\nCreative Commons, or other license.\n\n% Best choice looks like:\n% http://creativecommons.org/licenses/by-nc-sa/3.0/\n\nMy experience with {\\em How to Think} convinces me that keeping a\nversion of the book under a permissive license has value for the\npublisher. It encourages readers to contribute corrections and\nsuggestions (which gives us a head start on a future editions), it\nallows potential adopters to test the material before committing to\nit, and, maybe most important, it opens the door to future projects\nthat might never happen otherwise.\n\n\\end{document}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "50ce3962-d5f7-44be-81d3-35dfd06afa74": {"__data__": {"id_": "50ce3962-d5f7-44be-81d3-35dfd06afa74", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "node_type": null, "metadata": {}, "hash": "52248a5cca29a828d9d7e75d8e56e8251f21208e2402aff5d5c62b84939cd4fc"}, "3": {"node_id": "5cabf076-22d0-4480-a111-3d87c6574c5b", "node_type": null, "metadata": {}, "hash": "c5aae1a71b8a96beee91d7b04e40db4103decae1e2c12867fa644572c181f742"}}, "hash": "e6f860615f0c043f0c414ff83d2479880ffb8ea2f65477e4ed7810b6aa4cfb6f", "text": "% LaTeX source for textbook ``How to think like a computer scientist''\n% Copyright (c) 2001,2002 Allen B. Downey.\n\n% Permission is granted to copy, distribute and/or modify this\n% document under the terms of the GNU Free Documentation License,\n% Version 1.1 or any later version published by the Free Software\n% Foundation; with the Invariant Sections being \"Contributor List\",\n% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of\n% the license is included in the section entitled \"GNU Free\n% Documentation License\".\n\n% This distribution includes a file named fdl.tex that contains the text\n% of the GNU Free Documentation License. If it is missing, you can obtain\n% it from www.gnu.org or by writing to the Free Software Foundation,\n% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5cabf076-22d0-4480-a111-3d87c6574c5b": {"__data__": {"id_": "5cabf076-22d0-4480-a111-3d87c6574c5b", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "node_type": null, "metadata": {}, "hash": "52248a5cca29a828d9d7e75d8e56e8251f21208e2402aff5d5c62b84939cd4fc"}, "2": {"node_id": "50ce3962-d5f7-44be-81d3-35dfd06afa74", "node_type": null, "metadata": {}, "hash": "e6f860615f0c043f0c414ff83d2479880ffb8ea2f65477e4ed7810b6aa4cfb6f"}, "3": {"node_id": "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021", "node_type": null, "metadata": {}, "hash": "28dce084bd07ad83be25dea4ae4ab7adba66a8731985fc08700282f7d69f3fca"}}, "hash": "c5aae1a71b8a96beee91d7b04e40db4103decae1e2c12867fa644572c181f742", "text": "%\n\\documentclass[10pt]{book}\n\\usepackage[paperwidth=6.75in,paperheight=9.25in,\n width=4.9in,height=7.2in,\n hmarginratio=3:2,vmarginratio=3:2]{geometry}\n\\usepackage{fancyhdr}\n\\usepackage{psfig}\n\\usepackage{makeidx}\n\\pssilent\n\n\\sloppy\n% dimensions for b5paper\n%\\setlength{\\topmargin}{-0.375in}\n%\\setlength{\\oddsidemargin}{0.0in}\n%\\setlength{\\evensidemargin}{0.0in}\n\n% dimensions for 8.5 x 11\n%\\setlength{\\topmargin}{0.625in}\n%\\setlength{\\oddsidemargin}{0.875in}\n%\\setlength{\\evensidemargin}{0.875in}\n\n\\setlength{\\headsep}{3ex}\n\\setlength{\\textheight}{7.2in}\n\n\\setlength{\\parindent}{0.0in}\n\\setlength{\\parskip}{1.7ex plus 0.5ex minus 0.5ex}\n\\renewcommand{\\baselinestretch}{1.02}\n\n% see LaTeX Companion page 62\n\\setlength{\\topsep}{-0.0\\parskip}\n\\setlength{\\partopsep}{-0.5\\parskip}\n\\setlength{\\itemindent}{0.0in}\n\\setlength{\\listparindent}{0.0in}\n\n% see LaTeX Companion page 26\n% these are copied from /usr/local/teTeX/share/texmf/tex/latex/base/book.cls\n% all I changed is afterskip\n\n\\makeatletter\n\\renewcommand{\\section}{\\@startsection \n {section} {1} {0mm}%\n {-3.5ex \\@plus -1ex \\@minus -.2ex}%\n {0.7ex \\@plus.2ex}%\n {\\normalfont\\Large\\bfseries}}\n\\renewcommand\\subsection{\\@startsection {subsection}{2}{0mm}%\n {-3.25ex\\@plus -1ex \\@minus -.2ex}%\n {0.3ex \\@plus .2ex}%\n {\\normalfont\\large\\bfseries}}\n\\renewcommand\\subsubsection{\\@startsection {subsubsection}{3}{0mm}%\n {-3.25ex\\@plus -1ex \\@minus -.2ex}%\n {0.3ex \\@plus .2ex}%\n {\\normalfont\\normalsize\\bfseries}}\n\\makeatother\n\n\\newcommand{\\beforefig}{\\vspace{1.3\\parskip}}\n\\newcommand{\\afterfig}{\\vspace{-0.2\\parskip}}\n\n\\newcommand{\\beforeverb}{\\vspace{0.6\\parskip}}\n\\newcommand{\\afterverb}{\\vspace{0.6\\parskip}}\n\n\\newcommand{\\adjustpage}[1]{\\enlargethispage{#1\\baselineskip}}\n\n% Note: the following command seems to cause problems for Acroreader\n% on Windows, so for now I am overriding it.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021": {"__data__": {"id_": "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "node_type": null, "metadata": {}, "hash": "52248a5cca29a828d9d7e75d8e56e8251f21208e2402aff5d5c62b84939cd4fc"}, "2": {"node_id": "5cabf076-22d0-4480-a111-3d87c6574c5b", "node_type": null, "metadata": {}, "hash": "c5aae1a71b8a96beee91d7b04e40db4103decae1e2c12867fa644572c181f742"}, "3": {"node_id": "e79cb32e-d193-420b-9804-a5e004fdb394", "node_type": null, "metadata": {}, "hash": "27ed8717605c75805706437a34d70bb46bdbcab8437ffce47367529735cf1ee4"}}, "hash": "28dce084bd07ad83be25dea4ae4ab7adba66a8731985fc08700282f7d69f3fca", "text": "\\newcommand{\\clearemptydoublepage}{\\newpage{\\pagestyle{empty}\\cleardoublepage}}\n\\renewcommand{\\clearemptydoublepage}{\\cleardoublepage}\n\n\\newcommand{\\blankpage}{\\pagestyle{empty}\\vspace*{1in}\\newpage}\n\\renewcommand{\\blankpage}{\\vspace*{1in}\\newpage}\n\n\\pagestyle{fancyplain}\n\n\\renewcommand{\\chaptermark}[1]{\\markboth{#1}{}}\n\\renewcommand{\\sectionmark}[1]{\\markright{\\thesection\\ #1}{}}\n\n\\lhead[\\fancyplain{}{\\bfseries\\thepage}]%\n {\\fancyplain{}{\\bfseries\\rightmark}}\n\\rhead[\\fancyplain{}{\\bfseries\\leftmark}]%\n {\\fancyplain{}{\\bfseries\\thepage}}\n\\cfoot{}\n\n% turn off the rule under the header\n%\\setlength{\\headrulewidth}{0pt}\n\n% the following is a brute-force way to prevent the headers\n% from getting transformed into all-caps\n\\renewcommand\\MakeUppercase{}\n\n\\makeindex\n\n\\begin{document}\n\n\\frontmatter\n\n%-half title--------------------------------------------------\n\\thispagestyle{empty}\n\n\\begin{flushright}\n\\vspace*{2.5in}\n\n{\\huge How to Think Like a Computer Scientist}\n\n\\vspace{1in}\n\n{\\LARGE Learning with Python}\n\n\\vfill\n\n\\end{flushright}\n\n%--verso------------------------------------------------------\n\n\\clearemptydoublepage\n%\\pagebreak\n%\\thispagestyle{empty}\n%\\vspace*{6in}\n\n%--title page--------------------------------------------------\n\\pagebreak\n\\thispagestyle{empty}\n\n\\begin{flushright}\n\\vspace*{2.5in}\n\n{\\huge How to Think Like a Computer Scientist}\n\n\\vspace{0.25in}\n\n{\\LARGE Learning with Python}\n\n\\vspace{1in}\n\n{\\Large\nAllen Downey\\\\\nJeffrey Elkner\\\\\nChris Meyers\\\\\n}\n\n\n\\vspace{1in}\n\n{\\Large Green Tea Press}\n\n{\\small Wellesley, Massachusetts}\n\n%\\psfig{figure=illustrations/logo1.eps,width=1in}\n\\vfill\n\n\\end{flushright}\n\n\n%--copyright--------------------------------------------------\n\\pagebreak\n\\thispagestyle{empty}\n\n{\\small\nCopyright \\copyright ~2002 Allen Downey, Jeffrey Elkner, and Chris Meyers.\n\nEdited by Shannon Turlington and Lisa Cutler. Cover design by Rebecca Gimenez.\n\nPrinting history:\n\n\\begin{description}\n\n\\item[April 2002:] First edition.\n\n\\item[August 2008:] Second printing.\n\n\\end{description}\n\n\\vspace{0.2in}\n\n\\begin{flushleft}\nGreen Tea Press \\\\\n1 Grove St. \\\\\nP.O. Box 812901 \\\\\nWellesley, MA 02482 \\\\\n\\end{flushleft}\n\nPermission is granted to copy, distribute, and/or modify this document\nunder the terms of the GNU Free Documentation License, Version 1.1 or\nany later version published by the Free Software Foundation; with the\nInvariant Sections being ``Foreword,'' ``Preface,'' and ``Contributor\nList,'' with no Front-Cover Texts, and with no Back-Cover Texts. A\ncopy of the license is included in the appendix entitled ``GNU Free\nDocumentation License.''\n\nThe GNU Free Documentation License is available from {\\tt www.gnu.org}\nor by writing to the Free Software Foundation, Inc., 59 Temple Place,\nSuite 330, Boston, MA 02111-1307, USA.\n\nThe original form of this book is \\LaTeX\\ source code. Compiling this\n\\LaTeX\\ source has the effect of generating a device-independent\nrepresentation of a textbook, which can be converted to other formats\nand printed.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e79cb32e-d193-420b-9804-a5e004fdb394": {"__data__": {"id_": "e79cb32e-d193-420b-9804-a5e004fdb394", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "node_type": null, "metadata": {}, "hash": "52248a5cca29a828d9d7e75d8e56e8251f21208e2402aff5d5c62b84939cd4fc"}, "2": {"node_id": "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021", "node_type": null, "metadata": {}, "hash": "28dce084bd07ad83be25dea4ae4ab7adba66a8731985fc08700282f7d69f3fca"}}, "hash": "27ed8717605c75805706437a34d70bb46bdbcab8437ffce47367529735cf1ee4", "text": "The \\LaTeX\\ source for this book is available from\n{\\tt http://www.thinkpython.com}\n\n\\vspace{0.2in}\n\nPublisher's Cataloging-in-Publication (provided by Quality Books, Inc.)\n\n\\begin{tabbing}\nDowney, Allen\\\\\n\\qquad How to think like a computer scientist : learning \\\\\n\\quad with Python / Allen Downey, Jeffrey Elkner, Chris \\\\\n\\quad Meyers. -- 1st ed. \\\\\n\\qquad p. cm. \\\\\n\\qquad Includes index. \\\\\n\\qquad ISBN 0-9716775-0-6 \\\\\n\\qquad LCCN 2002100618 \\\\\n\\\\\n\\qquad 1. Python (Computer program language) I. Elkner, \\\\\n\\quad Jeffrey. II. Meyers, Chris. III. Title \\\\\n\\\\\n\\quad QA76.73.P98D69 2002 \\qquad \\qquad \\quad 005.13'3 \\\\\n\\qquad \\qquad \\qquad \\qquad \\qquad \\qquad \\qquad QBI02-200031 \\\\\n\\end{tabbing}\n\n} % end small\n\n%-----------------------------------------------------------------\n\n\\include{foreword}\n\\clearemptydoublepage\n\n\\include{preface}\n\\clearemptydoublepage\n\n\\include{contrib}\n\\clearemptydoublepage\n\n% The following lines add a little extra space to the column\n% in which the Section numbers appear in the table of contents\n\\makeatletter\n\\renewcommand{\\l@section}{\\@dottedtocline{1}{1.5em}{3.0em}}\n\\makeatother\n\\setcounter{tocdepth}{1}\n\n\\tableofcontents\n\\clearemptydoublepage\n\n\\mainmatter\n\\include{chap01}\n\\clearemptydoublepage\n\\include{chap02}\n\\clearemptydoublepage\n\\include{chap03}\n\\clearemptydoublepage\n\\include{chap04}\n\\clearemptydoublepage\n\\include{chap05}\n\\clearemptydoublepage\n\\include{chap06}\n\\clearemptydoublepage\n\\include{chap07}\n\\clearemptydoublepage\n\\include{chap08}\n\\clearemptydoublepage\n\\include{chap09}\n\\clearemptydoublepage\n\\include{chap10}\n\\clearemptydoublepage\n\\include{chap11}\n\\clearemptydoublepage\n\\include{chap12}\n\\clearemptydoublepage\n\\include{chap13}\n\\clearemptydoublepage\n\\include{chap14}\n\\clearemptydoublepage\n\\include{chap15}\n\\clearemptydoublepage\n\\include{chap16}\n\\clearemptydoublepage\n\\include{chap17}\n\\clearemptydoublepage\n\\include{chap18}\n\\clearemptydoublepage\n\\include{chap19}\n\\clearemptydoublepage\n\\include{chap20}\n\\clearemptydoublepage\n\n\\appendix\n\\include{app01}\n\\clearemptydoublepage\n\\include{app02}\n\\clearemptydoublepage\n%\\include{app03}\n%\\clearemptydoublepage\n\\include{app04}\n\\clearemptydoublepage\n\n%\\include{fdl}\n%\\clearemptydoublepage\n\n\\printindex\n\n\\thispagestyle{empty} \\blankpage\n\\thispagestyle{empty} \\blankpage\n\n\\end{document}", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}}, "docstore/ref_doc_info": {"6685c205-00b5-4be1-b3aa-d0e9dae77c44": {"node_ids": ["1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f"], "metadata": {}}, "e5d27f08-e86f-411d-8d21-6cb9b9015eeb": {"node_ids": ["3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec", "43e2934d-8b5a-4253-a65c-6963192bf333", "e6412f55-0e69-40ea-9d17-2ba2dc205df8", "30edcd48-606d-40a4-b815-a31a30ffd824", "08affb40-2cbf-4b09-aa2b-e31dde7a6daa", "a7c1cef1-ba90-4dd4-a366-05c37ea5289f", "ad10fe86-f437-47cb-873c-2c6cd3329369"], "metadata": {}}, "65bb8589-485e-470d-b83a-68f40dd30598": {"node_ids": ["a49e389c-f457-4114-bb4a-7ab41ec6490c", "c381a8cb-0c74-4ec8-9dd4-326416f7bc32", "6d7285c2-c06b-4c3e-9c04-eb4cb0482338", "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9", "209fc505-f77b-42eb-a0ec-3c89bc7993dd", "38d0187e-fd3c-40fe-84c5-6038c6db529f"], "metadata": {}}, "c3fd772a-d386-4522-bf40-858dcb47beef": {"node_ids": ["e1ad94ee-b96e-43a4-8ce0-382b5ec83b21", "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5", "d2c42aad-be12-4391-9d49-6f98b336a7aa", "9447d812-d668-42d7-860b-27936468ab3d", "b8d382cd-0334-429b-9834-99a34e818741", "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e", "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f"], "metadata": {}}, "3f9cbb80-96f4-46f0-ba04-876c6740f788": {"node_ids": ["28a02a3b-dde7-460a-9f99-bcb347d728bb", "741aa787-463c-4189-b641-510278e53f0f", "3fa2421e-8b56-472f-bdf8-db7bd95d817d"], "metadata": {}}, "5586efe2-3b14-4421-84e8-ebd27a3acbe8": {"node_ids": ["c0b89d2e-7a53-4066-9bbd-2101bebb4f1c", "b7059d13-4bf1-4044-b228-2d2a847e89a2", "44d86782-fbbf-4972-bfa0-f05631ace2d2", "c127a5a8-e5bd-4e52-98f2-f01c12db95b3", "ea53cead-3e5e-49cf-9c71-78029f117c0a", "447c0f42-0e4f-435d-97c3-e88d6657386c"], "metadata": {}}, "6798d972-db6f-4157-b244-43106ac2bb95": {"node_ids": ["26da9a8c-b014-4fbf-b7f5-47bf05613a9e", "62c45f91-a5d5-4db9-997b-7f2538092433", "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e", "95c352af-8078-4534-aad1-1124f88c56dd", "2cad634c-c9c9-4205-9361-baa79a34008c", "74429688-a399-4fd6-87c6-98bf364281ed", "5051091c-194f-49a1-8289-f686858300ec"], "metadata": {}}, "dbfcaa25-9f49-4920-a7a3-aa56fe190ede": {"node_ids": ["4f932ede-8209-44e0-9202-0d644d756afc", "5379d4a0-b2cd-45ea-b795-818ae80fb090", "34ed9af4-83b2-4f32-b700-fc003541f5a6", "5f510fb4-a8c9-4360-a742-ec2f3b45bab6", "d5bc4479-681b-42f3-914e-09acf2d7ed74", "3a459cfa-8984-45f1-a5d4-819cc5044aa9", "660b852a-0985-4490-aad3-e7b3ccfb829c", "464a4c61-76db-4671-84b1-48da946f5f78"], "metadata": {}}, "55e9377f-cd20-4e8f-b312-4037fb435a8a": {"node_ids": ["5948f425-654c-4cee-98e0-b64a0fb4bbe5", "3f9412e4-a749-4bff-8739-4606b31ea8f1", "be0a3801-aaf8-41f3-9996-6218b1366d18", "248058b8-0d54-48db-9a21-55b77aa1eb04", "59c02e3e-4304-4e19-bab8-b92039c0a2e8", "a45af541-a681-431f-8e18-14c46748011c", "9800400e-4b08-40de-8eab-a8030438fdea", "8d110233-ce34-468f-904d-59986c253e79"], "metadata": {}}, "7bf09652-9a97-4f30-bc07-da12c2260de4": {"node_ids": ["3654c353-73a0-4429-8b80-706b16bf79e3", "8c681b3e-fbde-4214-adaf-f9d1300c9aee", "8defb448-9071-4fc8-85d7-1c8c7994b068", "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a", "8a42847e-d34b-4214-83fd-6613a4b84086", "46465398-05f7-49ec-bc8c-c6f1d9696bcc", "66035af3-6ef1-495b-a24c-4e6642d277f4", "c3def67b-d763-4f94-9a2b-53b81a1be41b", "36bb8e59-f2dd-4374-897e-a97830ae042b"], "metadata": {}}, "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c": {"node_ids": ["c1505c31-0d44-4e42-964c-1889324dc33b", "bc137aa3-66e7-417d-951c-5d12b6ca21e9", "b5804993-458b-4b01-b13c-ad4cb9ea1c30", "b7cf44ff-494b-4b14-90d2-f358a2dbea32", "3a60dc4d-a8c5-4b8a-8389-dc972fdab765", "655b870a-ed3a-476f-a19f-b05285203802", "6e24f274-bc98-41ba-bba6-1275248af13c", "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70", "45053040-3fa3-4bb5-aa00-7a11811e4098"], "metadata": {}}, "06e73d4b-883b-4bd7-8bf9-7799be07321a": {"node_ids": ["959cccdc-8990-470a-a8e8-64ef3ca824bd", "3c0babf6-7299-46e3-8b25-a99533bce746", "80c4a719-ec82-4874-b183-7aef4ca5dceb", "e3602a25-424c-4f8a-9898-c34357bd7420", "8875d27e-0ca8-4ae5-82bf-284d04df8f36", "0f8f3308-6725-46c7-84bd-19d9d9f68ceb", "eee0cc8b-2935-4cba-b198-f2213e577473"], "metadata": {}}, "b39a27f4-bb19-4496-9cd3-a6710b808acd": {"node_ids": ["c82bed89-8f47-4ba3-98c6-40149c08d156", "7fc185be-53f4-469d-8b85-7384546f2dae", "f395dbda-eaef-4363-890a-e136eb12c483", "edae333f-d2c1-4fc5-b558-50faf36e419a", "359df20b-7775-474e-b3a4-bfbbc0e8a56c", "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e", "f8a816c2-2836-40c3-b2e7-5e2ea5584eab", "faba4ae7-0c67-498f-a704-eabd35773868", "00b14091-118e-4451-ad88-dd7db709b135"], "metadata": {}}, "4b44e675-64e5-457e-909e-a1553348de00": {"node_ids": ["ebc2df6e-9ad0-494f-b5bd-1e02d342a82b", "31aa5116-27d2-4e25-9ea7-e39a90baf975", "bfda4cdd-355f-44cd-a333-592fb7cbade4", "7517e8c9-e829-47be-a792-3bb7aedb40a7", "eeeefeaf-d448-4ed2-967b-ac85b7dc012e", "7fd9dd64-d020-4c02-8c3e-7e498557b7e6"], "metadata": {}}, "4c0e9bc5-b047-4250-a300-230f1a16cd97": {"node_ids": ["78fce47a-97ce-40a1-a41d-45c29ec1c6ff", "270fc7ae-49fc-4d87-a3e7-04ec0577a426", "d37333a6-d060-47f4-9e0e-29273ac89aa1", "97c67d12-52ac-46ba-8df3-c740bb16e497", "1f9270dc-5439-4eb4-b6a8-bee468243ae9", "bf7b3e64-7e63-4c9a-b611-622581711e8d"], "metadata": {}}, "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1": {"node_ids": ["00b4a5d7-9bbd-4055-a1cf-f54e5357911b", "cf0db177-d4a6-45eb-838d-074b79670592", "fd76a23c-a4e7-463d-a4e4-2a999724795f", "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b", "932ade67-eecb-47cd-b5fe-567427a3003a", "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935", "4a21db87-f1d9-4f48-97ed-ef89e1c22707", "ff5d255c-4788-45d5-b921-9cca84b2584a"], "metadata": {}}, "2d4bd6b2-e597-4231-9fd7-ee576f2d485d": {"node_ids": ["9e3a1ee4-9a16-458d-9d23-3a155e95ef79", "a5376a45-de84-4321-b327-d9e9c6742a8c", "87d37a51-fbbf-4575-a224-dfbce78025c6", "ddbf5900-58bf-41be-acf1-43b900410da6", "98b2ce96-a564-4c85-8471-1014e50c45b1", "1146c533-2788-4aa9-a68e-2f129677a095", "5501c185-c58a-4ee2-8d66-f373eb14f7f4"], "metadata": {}}, "ef7906f0-0f42-4ca1-aaea-654d1c6674a9": {"node_ids": ["7ce69457-887b-4129-bc12-be646345587b", "a19ef6b2-886a-49f0-972c-adb25d81ea44", "914c76dc-6aab-47cf-9ab6-731981d942fe", "935bce25-2dce-433f-a117-7583d47ec888", "51d8576b-7e29-4750-b6b9-0f17693077d5"], "metadata": {}}, "366d85d8-9b45-40c4-992e-849cf65da266": {"node_ids": ["55da5c49-c77a-4ce6-bd25-70b055db9658", "ba390c38-cbab-4d5e-8737-21c68d6599e7", "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107", "b62efdf3-cde0-49ba-a7d5-68d8a09f3118", "63f94e80-9f22-4700-ae0d-393029b21a47", "51feec6d-2627-4b9e-a339-7524953b135c", "02835535-81cb-4b99-9c36-7f722fe56e53", "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b"], "metadata": {}}, "646aed1c-3013-452e-ad89-93702220a065": {"node_ids": ["d428515b-e422-458d-bb7c-b19c19acc64f", "4dc159c0-87f3-4130-8b29-fa95cb66e1bc", "8b135e07-e798-40ba-af9c-57338f8631ef", "c2d8f160-644e-487d-a842-4813e7c6728d", "7c41061f-967d-433f-978a-b0172c1cb3cd", "74be3d9d-1ed6-45ea-a122-395f60330929", "31272119-3229-40a3-86bb-2282ac6d6fe3", "27c585f2-eae8-4e0d-a64f-18a6221e0644"], "metadata": {}}, "6addee7a-a48c-4a90-9101-cb696f59a62d": {"node_ids": ["e4ea8093-4e35-4b68-86b8-5e5d52df3c5e", "efb2b508-2e2f-4b13-8294-bb36a71e2634", "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e", "aec60a8e-dde5-4c5d-884a-af18bb204b1e", "35a31964-52f0-4c13-bab7-e0ab575a3d7f", "23d3f456-47be-4dd3-8b8c-6c00f1d47889", "ff51296b-eafb-4862-88aa-ff2bae8c82eb", "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd"], "metadata": {}}, "2bf315b5-29d8-46ec-a209-9313b0a60382": {"node_ids": ["ce31c578-fc0a-442c-acfd-232fb07ca028", "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b", "6429847b-17f8-4e4e-8ec9-289a9f5b74d1", "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd", "3f2a1579-dc10-4d61-84ec-282a3582fe16", "b84c306f-9568-4e43-93d6-8e8a7e64cc3a", "8e899819-777f-4540-b925-c8eaa4b25258"], "metadata": {}}, "fc58a467-8927-4a0e-8f27-d70a9b65fae3": {"node_ids": ["a12a726d-e5d7-4615-8f14-60665e34ec67", "523b9723-f604-4ad0-9140-1f46a38c90fd", "97f8d001-26d2-4042-87a6-da4c7e9df3d1", "aacf5ef9-6dbd-40de-991b-a512b0552188", "decefc81-7ed0-450c-b7ad-bbc3f17b4994"], "metadata": {}}, "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a": {"node_ids": ["1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6", "c3556ce3-e8dc-44df-9263-115d43ae8b65", "b7618784-7da4-4ea7-a537-e13e4e6958a4", "015f77e0-1857-45de-9299-ae361ba2bb5a", "c8f16d49-c530-47af-a49c-3e0f2e6edac3", "751318bf-7121-43da-88b3-b0c3e382e2f8"], "metadata": {}}, "32abb63a-2e47-4a29-a7e8-d187222d3e60": {"node_ids": ["0938a373-57be-4f0f-bb30-8bd66beac402", "b8d3d508-5cbc-4dc0-b528-dc4943c195cc", "d67269bf-5add-49da-8086-3ce46606e311", "9efa0d03-95f2-447c-99c0-3085b92d0f82", "f301d3a7-e76e-456d-9b46-6b971f9d23b2", "4c2e44e7-e40e-4937-96de-44c0628f61f4", "7a406987-eba0-4222-a34f-7ad3724a5604", "ec793519-e044-423d-ba4b-21c3ec916891"], "metadata": {}}, "5a928013-b632-48cb-9ecd-b5670356cf8f": {"node_ids": ["83808199-cb49-4a60-bcfe-27a4b9d3b685", "3363e09a-1ab4-4c17-bb8a-e6752917130a", "476b4f33-d161-4cbe-a216-dbfa745ef944", "479ce05c-61fd-4bea-8a73-e26b16cd3e70"], "metadata": {}}, "a52d9267-6dab-41e4-861d-c627c9c03f5f": {"node_ids": ["47ee3c46-bad3-4aac-99eb-11a0b98ebf20", "20146fda-7b8b-4d03-adb9-1c79e9d87125", "ff608a4c-36da-45aa-ad71-ea74392d397c", "7a9c5d00-cd62-4a4e-9607-bd6caef08515", "f620bea9-7052-4504-ade1-ba5cf9d769a4"], "metadata": {}}, "0d121388-4770-427c-beea-56d66cb85583": {"node_ids": ["4ade5e33-06eb-4908-ba7c-ff1047dc4cb7", "9936a434-0aae-4070-99e6-d1abeb440546"], "metadata": {}}, "b3ffcbd6-d068-4eaf-a60f-e172eaff7869": {"node_ids": ["278d2c56-536c-4910-9fcb-daa1088cb994"], "metadata": {}}, "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f": {"node_ids": ["c89bbe3f-202d-4a25-b59a-7b19e3f67aa3", "df1de581-9827-42fd-b1ed-e2fc4ca4899b"], "metadata": {}}, "54d8490b-0b63-40b6-8012-d279ddde92c8": {"node_ids": ["bb687d40-1093-4eaf-90c9-d0eb2e3dade1", "9f7ff698-db2b-41ab-9c8e-c255d8e3a586", "d665cef5-0e08-47bb-9e34-0b0767c0f1ff", "0e222bbb-583f-4ab9-84e6-79c3709b03e8"], "metadata": {}}, "67f8511a-826b-4d6f-acf1-6dcca534434d": {"node_ids": ["3b555f83-9634-48a7-b8c0-a207c923d7bf", "45498fda-c622-4a9a-a1bc-4d2124f9b64d", "53b70118-7161-41bf-9e8c-8c33daf2307b", "a0fa9976-9308-4e10-bcbc-a24ff57cef61"], "metadata": {}}, "19141fb6-d671-4159-b23c-c79984a6ccf1": {"node_ids": ["50ce3962-d5f7-44be-81d3-35dfd06afa74", "5cabf076-22d0-4480-a111-3d87c6574c5b", "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021", "e79cb32e-d193-420b-9804-a5e004fdb394"], "metadata": {}}}} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/storage/graph_store.json b/sciphi/data/stock_raw/learning_with_python/storage/graph_store.json deleted file mode 100644 index 9aab8ea..0000000 --- a/sciphi/data/stock_raw/learning_with_python/storage/graph_store.json +++ /dev/null @@ -1 +0,0 @@ -{"graph_dict": {}} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/storage/index_store.json b/sciphi/data/stock_raw/learning_with_python/storage/index_store.json deleted file mode 100644 index 7968b51..0000000 --- a/sciphi/data/stock_raw/learning_with_python/storage/index_store.json +++ /dev/null @@ -1 +0,0 @@ -{"index_store/data": {"vector_index": {"__type__": "vector_store", "__data__": "{\"index_id\": \"vector_index\", \"summary\": null, \"nodes_dict\": {\"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f\": \"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f\", \"3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec\": \"3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec\", \"43e2934d-8b5a-4253-a65c-6963192bf333\": \"43e2934d-8b5a-4253-a65c-6963192bf333\", \"e6412f55-0e69-40ea-9d17-2ba2dc205df8\": \"e6412f55-0e69-40ea-9d17-2ba2dc205df8\", \"30edcd48-606d-40a4-b815-a31a30ffd824\": \"30edcd48-606d-40a4-b815-a31a30ffd824\", \"08affb40-2cbf-4b09-aa2b-e31dde7a6daa\": \"08affb40-2cbf-4b09-aa2b-e31dde7a6daa\", \"a7c1cef1-ba90-4dd4-a366-05c37ea5289f\": \"a7c1cef1-ba90-4dd4-a366-05c37ea5289f\", \"ad10fe86-f437-47cb-873c-2c6cd3329369\": \"ad10fe86-f437-47cb-873c-2c6cd3329369\", \"a49e389c-f457-4114-bb4a-7ab41ec6490c\": \"a49e389c-f457-4114-bb4a-7ab41ec6490c\", \"c381a8cb-0c74-4ec8-9dd4-326416f7bc32\": \"c381a8cb-0c74-4ec8-9dd4-326416f7bc32\", \"6d7285c2-c06b-4c3e-9c04-eb4cb0482338\": \"6d7285c2-c06b-4c3e-9c04-eb4cb0482338\", \"5ab53850-d6e8-4e49-a1f2-65cc2571c8b9\": \"5ab53850-d6e8-4e49-a1f2-65cc2571c8b9\", \"209fc505-f77b-42eb-a0ec-3c89bc7993dd\": \"209fc505-f77b-42eb-a0ec-3c89bc7993dd\", \"38d0187e-fd3c-40fe-84c5-6038c6db529f\": \"38d0187e-fd3c-40fe-84c5-6038c6db529f\", \"e1ad94ee-b96e-43a4-8ce0-382b5ec83b21\": \"e1ad94ee-b96e-43a4-8ce0-382b5ec83b21\", \"12129d9a-a7e2-49c1-b4a2-90a5a24b08a5\": \"12129d9a-a7e2-49c1-b4a2-90a5a24b08a5\", \"d2c42aad-be12-4391-9d49-6f98b336a7aa\": \"d2c42aad-be12-4391-9d49-6f98b336a7aa\", \"9447d812-d668-42d7-860b-27936468ab3d\": \"9447d812-d668-42d7-860b-27936468ab3d\", \"b8d382cd-0334-429b-9834-99a34e818741\": \"b8d382cd-0334-429b-9834-99a34e818741\", \"c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e\": \"c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e\", \"fa24eeb0-41ac-4cd5-aa70-eadbea570e4f\": \"fa24eeb0-41ac-4cd5-aa70-eadbea570e4f\", \"28a02a3b-dde7-460a-9f99-bcb347d728bb\": \"28a02a3b-dde7-460a-9f99-bcb347d728bb\", \"741aa787-463c-4189-b641-510278e53f0f\": \"741aa787-463c-4189-b641-510278e53f0f\", \"3fa2421e-8b56-472f-bdf8-db7bd95d817d\": \"3fa2421e-8b56-472f-bdf8-db7bd95d817d\", \"c0b89d2e-7a53-4066-9bbd-2101bebb4f1c\": \"c0b89d2e-7a53-4066-9bbd-2101bebb4f1c\", \"b7059d13-4bf1-4044-b228-2d2a847e89a2\": \"b7059d13-4bf1-4044-b228-2d2a847e89a2\", \"44d86782-fbbf-4972-bfa0-f05631ace2d2\": \"44d86782-fbbf-4972-bfa0-f05631ace2d2\", \"c127a5a8-e5bd-4e52-98f2-f01c12db95b3\": \"c127a5a8-e5bd-4e52-98f2-f01c12db95b3\", \"ea53cead-3e5e-49cf-9c71-78029f117c0a\": \"ea53cead-3e5e-49cf-9c71-78029f117c0a\", \"447c0f42-0e4f-435d-97c3-e88d6657386c\": \"447c0f42-0e4f-435d-97c3-e88d6657386c\", \"26da9a8c-b014-4fbf-b7f5-47bf05613a9e\": \"26da9a8c-b014-4fbf-b7f5-47bf05613a9e\", \"62c45f91-a5d5-4db9-997b-7f2538092433\": \"62c45f91-a5d5-4db9-997b-7f2538092433\", \"8ba81b98-7cb6-4139-8cfc-21f26e3aa11e\": \"8ba81b98-7cb6-4139-8cfc-21f26e3aa11e\", \"95c352af-8078-4534-aad1-1124f88c56dd\": \"95c352af-8078-4534-aad1-1124f88c56dd\", \"2cad634c-c9c9-4205-9361-baa79a34008c\": \"2cad634c-c9c9-4205-9361-baa79a34008c\", \"74429688-a399-4fd6-87c6-98bf364281ed\": \"74429688-a399-4fd6-87c6-98bf364281ed\", \"5051091c-194f-49a1-8289-f686858300ec\": \"5051091c-194f-49a1-8289-f686858300ec\", \"4f932ede-8209-44e0-9202-0d644d756afc\": \"4f932ede-8209-44e0-9202-0d644d756afc\", \"5379d4a0-b2cd-45ea-b795-818ae80fb090\": \"5379d4a0-b2cd-45ea-b795-818ae80fb090\", \"34ed9af4-83b2-4f32-b700-fc003541f5a6\": \"34ed9af4-83b2-4f32-b700-fc003541f5a6\", \"5f510fb4-a8c9-4360-a742-ec2f3b45bab6\": \"5f510fb4-a8c9-4360-a742-ec2f3b45bab6\", \"d5bc4479-681b-42f3-914e-09acf2d7ed74\": \"d5bc4479-681b-42f3-914e-09acf2d7ed74\", \"3a459cfa-8984-45f1-a5d4-819cc5044aa9\": \"3a459cfa-8984-45f1-a5d4-819cc5044aa9\", \"660b852a-0985-4490-aad3-e7b3ccfb829c\": \"660b852a-0985-4490-aad3-e7b3ccfb829c\", \"464a4c61-76db-4671-84b1-48da946f5f78\": \"464a4c61-76db-4671-84b1-48da946f5f78\", \"5948f425-654c-4cee-98e0-b64a0fb4bbe5\": \"5948f425-654c-4cee-98e0-b64a0fb4bbe5\", \"3f9412e4-a749-4bff-8739-4606b31ea8f1\": \"3f9412e4-a749-4bff-8739-4606b31ea8f1\", \"be0a3801-aaf8-41f3-9996-6218b1366d18\": \"be0a3801-aaf8-41f3-9996-6218b1366d18\", \"248058b8-0d54-48db-9a21-55b77aa1eb04\": \"248058b8-0d54-48db-9a21-55b77aa1eb04\", \"59c02e3e-4304-4e19-bab8-b92039c0a2e8\": \"59c02e3e-4304-4e19-bab8-b92039c0a2e8\", \"a45af541-a681-431f-8e18-14c46748011c\": \"a45af541-a681-431f-8e18-14c46748011c\", \"9800400e-4b08-40de-8eab-a8030438fdea\": \"9800400e-4b08-40de-8eab-a8030438fdea\", \"8d110233-ce34-468f-904d-59986c253e79\": \"8d110233-ce34-468f-904d-59986c253e79\", \"3654c353-73a0-4429-8b80-706b16bf79e3\": \"3654c353-73a0-4429-8b80-706b16bf79e3\", \"8c681b3e-fbde-4214-adaf-f9d1300c9aee\": \"8c681b3e-fbde-4214-adaf-f9d1300c9aee\", \"8defb448-9071-4fc8-85d7-1c8c7994b068\": \"8defb448-9071-4fc8-85d7-1c8c7994b068\", \"6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a\": \"6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a\", \"8a42847e-d34b-4214-83fd-6613a4b84086\": \"8a42847e-d34b-4214-83fd-6613a4b84086\", \"46465398-05f7-49ec-bc8c-c6f1d9696bcc\": \"46465398-05f7-49ec-bc8c-c6f1d9696bcc\", \"66035af3-6ef1-495b-a24c-4e6642d277f4\": \"66035af3-6ef1-495b-a24c-4e6642d277f4\", \"c3def67b-d763-4f94-9a2b-53b81a1be41b\": \"c3def67b-d763-4f94-9a2b-53b81a1be41b\", \"36bb8e59-f2dd-4374-897e-a97830ae042b\": \"36bb8e59-f2dd-4374-897e-a97830ae042b\", \"c1505c31-0d44-4e42-964c-1889324dc33b\": \"c1505c31-0d44-4e42-964c-1889324dc33b\", \"bc137aa3-66e7-417d-951c-5d12b6ca21e9\": \"bc137aa3-66e7-417d-951c-5d12b6ca21e9\", \"b5804993-458b-4b01-b13c-ad4cb9ea1c30\": \"b5804993-458b-4b01-b13c-ad4cb9ea1c30\", \"b7cf44ff-494b-4b14-90d2-f358a2dbea32\": \"b7cf44ff-494b-4b14-90d2-f358a2dbea32\", \"3a60dc4d-a8c5-4b8a-8389-dc972fdab765\": \"3a60dc4d-a8c5-4b8a-8389-dc972fdab765\", \"655b870a-ed3a-476f-a19f-b05285203802\": \"655b870a-ed3a-476f-a19f-b05285203802\", \"6e24f274-bc98-41ba-bba6-1275248af13c\": \"6e24f274-bc98-41ba-bba6-1275248af13c\", \"9ec6ef83-6a88-429a-ad72-d3cdaf84ad70\": \"9ec6ef83-6a88-429a-ad72-d3cdaf84ad70\", \"45053040-3fa3-4bb5-aa00-7a11811e4098\": \"45053040-3fa3-4bb5-aa00-7a11811e4098\", \"959cccdc-8990-470a-a8e8-64ef3ca824bd\": \"959cccdc-8990-470a-a8e8-64ef3ca824bd\", \"3c0babf6-7299-46e3-8b25-a99533bce746\": \"3c0babf6-7299-46e3-8b25-a99533bce746\", \"80c4a719-ec82-4874-b183-7aef4ca5dceb\": \"80c4a719-ec82-4874-b183-7aef4ca5dceb\", \"e3602a25-424c-4f8a-9898-c34357bd7420\": \"e3602a25-424c-4f8a-9898-c34357bd7420\", \"8875d27e-0ca8-4ae5-82bf-284d04df8f36\": \"8875d27e-0ca8-4ae5-82bf-284d04df8f36\", \"0f8f3308-6725-46c7-84bd-19d9d9f68ceb\": \"0f8f3308-6725-46c7-84bd-19d9d9f68ceb\", \"eee0cc8b-2935-4cba-b198-f2213e577473\": \"eee0cc8b-2935-4cba-b198-f2213e577473\", \"c82bed89-8f47-4ba3-98c6-40149c08d156\": \"c82bed89-8f47-4ba3-98c6-40149c08d156\", \"7fc185be-53f4-469d-8b85-7384546f2dae\": \"7fc185be-53f4-469d-8b85-7384546f2dae\", \"f395dbda-eaef-4363-890a-e136eb12c483\": \"f395dbda-eaef-4363-890a-e136eb12c483\", \"edae333f-d2c1-4fc5-b558-50faf36e419a\": \"edae333f-d2c1-4fc5-b558-50faf36e419a\", \"359df20b-7775-474e-b3a4-bfbbc0e8a56c\": \"359df20b-7775-474e-b3a4-bfbbc0e8a56c\", \"2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e\": \"2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e\", \"f8a816c2-2836-40c3-b2e7-5e2ea5584eab\": \"f8a816c2-2836-40c3-b2e7-5e2ea5584eab\", \"faba4ae7-0c67-498f-a704-eabd35773868\": \"faba4ae7-0c67-498f-a704-eabd35773868\", \"00b14091-118e-4451-ad88-dd7db709b135\": \"00b14091-118e-4451-ad88-dd7db709b135\", \"ebc2df6e-9ad0-494f-b5bd-1e02d342a82b\": \"ebc2df6e-9ad0-494f-b5bd-1e02d342a82b\", \"31aa5116-27d2-4e25-9ea7-e39a90baf975\": \"31aa5116-27d2-4e25-9ea7-e39a90baf975\", \"bfda4cdd-355f-44cd-a333-592fb7cbade4\": \"bfda4cdd-355f-44cd-a333-592fb7cbade4\", \"7517e8c9-e829-47be-a792-3bb7aedb40a7\": \"7517e8c9-e829-47be-a792-3bb7aedb40a7\", \"eeeefeaf-d448-4ed2-967b-ac85b7dc012e\": \"eeeefeaf-d448-4ed2-967b-ac85b7dc012e\", \"7fd9dd64-d020-4c02-8c3e-7e498557b7e6\": \"7fd9dd64-d020-4c02-8c3e-7e498557b7e6\", \"78fce47a-97ce-40a1-a41d-45c29ec1c6ff\": \"78fce47a-97ce-40a1-a41d-45c29ec1c6ff\", \"270fc7ae-49fc-4d87-a3e7-04ec0577a426\": \"270fc7ae-49fc-4d87-a3e7-04ec0577a426\", \"d37333a6-d060-47f4-9e0e-29273ac89aa1\": \"d37333a6-d060-47f4-9e0e-29273ac89aa1\", \"97c67d12-52ac-46ba-8df3-c740bb16e497\": \"97c67d12-52ac-46ba-8df3-c740bb16e497\", \"1f9270dc-5439-4eb4-b6a8-bee468243ae9\": \"1f9270dc-5439-4eb4-b6a8-bee468243ae9\", \"bf7b3e64-7e63-4c9a-b611-622581711e8d\": \"bf7b3e64-7e63-4c9a-b611-622581711e8d\", \"00b4a5d7-9bbd-4055-a1cf-f54e5357911b\": \"00b4a5d7-9bbd-4055-a1cf-f54e5357911b\", \"cf0db177-d4a6-45eb-838d-074b79670592\": \"cf0db177-d4a6-45eb-838d-074b79670592\", \"fd76a23c-a4e7-463d-a4e4-2a999724795f\": \"fd76a23c-a4e7-463d-a4e4-2a999724795f\", \"0fa3b23a-2ac3-472d-a1dd-269b7d89e86b\": \"0fa3b23a-2ac3-472d-a1dd-269b7d89e86b\", \"932ade67-eecb-47cd-b5fe-567427a3003a\": \"932ade67-eecb-47cd-b5fe-567427a3003a\", \"e4bfdcf8-2f57-43ae-8958-1dff3c0ba935\": \"e4bfdcf8-2f57-43ae-8958-1dff3c0ba935\", \"4a21db87-f1d9-4f48-97ed-ef89e1c22707\": \"4a21db87-f1d9-4f48-97ed-ef89e1c22707\", \"ff5d255c-4788-45d5-b921-9cca84b2584a\": \"ff5d255c-4788-45d5-b921-9cca84b2584a\", \"9e3a1ee4-9a16-458d-9d23-3a155e95ef79\": \"9e3a1ee4-9a16-458d-9d23-3a155e95ef79\", \"a5376a45-de84-4321-b327-d9e9c6742a8c\": \"a5376a45-de84-4321-b327-d9e9c6742a8c\", \"87d37a51-fbbf-4575-a224-dfbce78025c6\": \"87d37a51-fbbf-4575-a224-dfbce78025c6\", \"ddbf5900-58bf-41be-acf1-43b900410da6\": \"ddbf5900-58bf-41be-acf1-43b900410da6\", \"98b2ce96-a564-4c85-8471-1014e50c45b1\": \"98b2ce96-a564-4c85-8471-1014e50c45b1\", \"1146c533-2788-4aa9-a68e-2f129677a095\": \"1146c533-2788-4aa9-a68e-2f129677a095\", \"5501c185-c58a-4ee2-8d66-f373eb14f7f4\": \"5501c185-c58a-4ee2-8d66-f373eb14f7f4\", \"7ce69457-887b-4129-bc12-be646345587b\": \"7ce69457-887b-4129-bc12-be646345587b\", \"a19ef6b2-886a-49f0-972c-adb25d81ea44\": \"a19ef6b2-886a-49f0-972c-adb25d81ea44\", \"914c76dc-6aab-47cf-9ab6-731981d942fe\": \"914c76dc-6aab-47cf-9ab6-731981d942fe\", \"935bce25-2dce-433f-a117-7583d47ec888\": \"935bce25-2dce-433f-a117-7583d47ec888\", \"51d8576b-7e29-4750-b6b9-0f17693077d5\": \"51d8576b-7e29-4750-b6b9-0f17693077d5\", \"55da5c49-c77a-4ce6-bd25-70b055db9658\": \"55da5c49-c77a-4ce6-bd25-70b055db9658\", \"ba390c38-cbab-4d5e-8737-21c68d6599e7\": \"ba390c38-cbab-4d5e-8737-21c68d6599e7\", \"dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107\": \"dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107\", \"b62efdf3-cde0-49ba-a7d5-68d8a09f3118\": \"b62efdf3-cde0-49ba-a7d5-68d8a09f3118\", \"63f94e80-9f22-4700-ae0d-393029b21a47\": \"63f94e80-9f22-4700-ae0d-393029b21a47\", \"51feec6d-2627-4b9e-a339-7524953b135c\": \"51feec6d-2627-4b9e-a339-7524953b135c\", \"02835535-81cb-4b99-9c36-7f722fe56e53\": \"02835535-81cb-4b99-9c36-7f722fe56e53\", \"97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b\": \"97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b\", \"d428515b-e422-458d-bb7c-b19c19acc64f\": \"d428515b-e422-458d-bb7c-b19c19acc64f\", \"4dc159c0-87f3-4130-8b29-fa95cb66e1bc\": \"4dc159c0-87f3-4130-8b29-fa95cb66e1bc\", \"8b135e07-e798-40ba-af9c-57338f8631ef\": \"8b135e07-e798-40ba-af9c-57338f8631ef\", \"c2d8f160-644e-487d-a842-4813e7c6728d\": \"c2d8f160-644e-487d-a842-4813e7c6728d\", \"7c41061f-967d-433f-978a-b0172c1cb3cd\": \"7c41061f-967d-433f-978a-b0172c1cb3cd\", \"74be3d9d-1ed6-45ea-a122-395f60330929\": \"74be3d9d-1ed6-45ea-a122-395f60330929\", \"31272119-3229-40a3-86bb-2282ac6d6fe3\": \"31272119-3229-40a3-86bb-2282ac6d6fe3\", \"27c585f2-eae8-4e0d-a64f-18a6221e0644\": \"27c585f2-eae8-4e0d-a64f-18a6221e0644\", \"e4ea8093-4e35-4b68-86b8-5e5d52df3c5e\": \"e4ea8093-4e35-4b68-86b8-5e5d52df3c5e\", \"efb2b508-2e2f-4b13-8294-bb36a71e2634\": \"efb2b508-2e2f-4b13-8294-bb36a71e2634\", \"b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e\": \"b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e\", \"aec60a8e-dde5-4c5d-884a-af18bb204b1e\": \"aec60a8e-dde5-4c5d-884a-af18bb204b1e\", \"35a31964-52f0-4c13-bab7-e0ab575a3d7f\": \"35a31964-52f0-4c13-bab7-e0ab575a3d7f\", \"23d3f456-47be-4dd3-8b8c-6c00f1d47889\": \"23d3f456-47be-4dd3-8b8c-6c00f1d47889\", \"ff51296b-eafb-4862-88aa-ff2bae8c82eb\": \"ff51296b-eafb-4862-88aa-ff2bae8c82eb\", \"4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd\": \"4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd\", \"ce31c578-fc0a-442c-acfd-232fb07ca028\": \"ce31c578-fc0a-442c-acfd-232fb07ca028\", \"4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b\": \"4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b\", \"6429847b-17f8-4e4e-8ec9-289a9f5b74d1\": \"6429847b-17f8-4e4e-8ec9-289a9f5b74d1\", \"f0c1b955-6d27-4187-9c51-1f2a8be6bbcd\": \"f0c1b955-6d27-4187-9c51-1f2a8be6bbcd\", \"3f2a1579-dc10-4d61-84ec-282a3582fe16\": \"3f2a1579-dc10-4d61-84ec-282a3582fe16\", \"b84c306f-9568-4e43-93d6-8e8a7e64cc3a\": \"b84c306f-9568-4e43-93d6-8e8a7e64cc3a\", \"8e899819-777f-4540-b925-c8eaa4b25258\": \"8e899819-777f-4540-b925-c8eaa4b25258\", \"a12a726d-e5d7-4615-8f14-60665e34ec67\": \"a12a726d-e5d7-4615-8f14-60665e34ec67\", \"523b9723-f604-4ad0-9140-1f46a38c90fd\": \"523b9723-f604-4ad0-9140-1f46a38c90fd\", \"97f8d001-26d2-4042-87a6-da4c7e9df3d1\": \"97f8d001-26d2-4042-87a6-da4c7e9df3d1\", \"aacf5ef9-6dbd-40de-991b-a512b0552188\": \"aacf5ef9-6dbd-40de-991b-a512b0552188\", \"decefc81-7ed0-450c-b7ad-bbc3f17b4994\": \"decefc81-7ed0-450c-b7ad-bbc3f17b4994\", \"1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6\": \"1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6\", \"c3556ce3-e8dc-44df-9263-115d43ae8b65\": \"c3556ce3-e8dc-44df-9263-115d43ae8b65\", \"b7618784-7da4-4ea7-a537-e13e4e6958a4\": \"b7618784-7da4-4ea7-a537-e13e4e6958a4\", \"015f77e0-1857-45de-9299-ae361ba2bb5a\": \"015f77e0-1857-45de-9299-ae361ba2bb5a\", \"c8f16d49-c530-47af-a49c-3e0f2e6edac3\": \"c8f16d49-c530-47af-a49c-3e0f2e6edac3\", \"751318bf-7121-43da-88b3-b0c3e382e2f8\": \"751318bf-7121-43da-88b3-b0c3e382e2f8\", \"0938a373-57be-4f0f-bb30-8bd66beac402\": \"0938a373-57be-4f0f-bb30-8bd66beac402\", \"b8d3d508-5cbc-4dc0-b528-dc4943c195cc\": \"b8d3d508-5cbc-4dc0-b528-dc4943c195cc\", \"d67269bf-5add-49da-8086-3ce46606e311\": \"d67269bf-5add-49da-8086-3ce46606e311\", \"9efa0d03-95f2-447c-99c0-3085b92d0f82\": \"9efa0d03-95f2-447c-99c0-3085b92d0f82\", \"f301d3a7-e76e-456d-9b46-6b971f9d23b2\": \"f301d3a7-e76e-456d-9b46-6b971f9d23b2\", \"4c2e44e7-e40e-4937-96de-44c0628f61f4\": \"4c2e44e7-e40e-4937-96de-44c0628f61f4\", \"7a406987-eba0-4222-a34f-7ad3724a5604\": \"7a406987-eba0-4222-a34f-7ad3724a5604\", \"ec793519-e044-423d-ba4b-21c3ec916891\": \"ec793519-e044-423d-ba4b-21c3ec916891\", \"83808199-cb49-4a60-bcfe-27a4b9d3b685\": \"83808199-cb49-4a60-bcfe-27a4b9d3b685\", \"3363e09a-1ab4-4c17-bb8a-e6752917130a\": \"3363e09a-1ab4-4c17-bb8a-e6752917130a\", \"476b4f33-d161-4cbe-a216-dbfa745ef944\": \"476b4f33-d161-4cbe-a216-dbfa745ef944\", \"479ce05c-61fd-4bea-8a73-e26b16cd3e70\": \"479ce05c-61fd-4bea-8a73-e26b16cd3e70\", \"47ee3c46-bad3-4aac-99eb-11a0b98ebf20\": \"47ee3c46-bad3-4aac-99eb-11a0b98ebf20\", \"20146fda-7b8b-4d03-adb9-1c79e9d87125\": \"20146fda-7b8b-4d03-adb9-1c79e9d87125\", \"ff608a4c-36da-45aa-ad71-ea74392d397c\": \"ff608a4c-36da-45aa-ad71-ea74392d397c\", \"7a9c5d00-cd62-4a4e-9607-bd6caef08515\": \"7a9c5d00-cd62-4a4e-9607-bd6caef08515\", \"f620bea9-7052-4504-ade1-ba5cf9d769a4\": \"f620bea9-7052-4504-ade1-ba5cf9d769a4\", \"4ade5e33-06eb-4908-ba7c-ff1047dc4cb7\": \"4ade5e33-06eb-4908-ba7c-ff1047dc4cb7\", \"9936a434-0aae-4070-99e6-d1abeb440546\": \"9936a434-0aae-4070-99e6-d1abeb440546\", \"278d2c56-536c-4910-9fcb-daa1088cb994\": \"278d2c56-536c-4910-9fcb-daa1088cb994\", \"c89bbe3f-202d-4a25-b59a-7b19e3f67aa3\": \"c89bbe3f-202d-4a25-b59a-7b19e3f67aa3\", \"df1de581-9827-42fd-b1ed-e2fc4ca4899b\": \"df1de581-9827-42fd-b1ed-e2fc4ca4899b\", \"bb687d40-1093-4eaf-90c9-d0eb2e3dade1\": \"bb687d40-1093-4eaf-90c9-d0eb2e3dade1\", \"9f7ff698-db2b-41ab-9c8e-c255d8e3a586\": \"9f7ff698-db2b-41ab-9c8e-c255d8e3a586\", \"d665cef5-0e08-47bb-9e34-0b0767c0f1ff\": \"d665cef5-0e08-47bb-9e34-0b0767c0f1ff\", \"0e222bbb-583f-4ab9-84e6-79c3709b03e8\": \"0e222bbb-583f-4ab9-84e6-79c3709b03e8\", \"3b555f83-9634-48a7-b8c0-a207c923d7bf\": \"3b555f83-9634-48a7-b8c0-a207c923d7bf\", \"45498fda-c622-4a9a-a1bc-4d2124f9b64d\": \"45498fda-c622-4a9a-a1bc-4d2124f9b64d\", \"53b70118-7161-41bf-9e8c-8c33daf2307b\": \"53b70118-7161-41bf-9e8c-8c33daf2307b\", \"a0fa9976-9308-4e10-bcbc-a24ff57cef61\": \"a0fa9976-9308-4e10-bcbc-a24ff57cef61\", \"50ce3962-d5f7-44be-81d3-35dfd06afa74\": \"50ce3962-d5f7-44be-81d3-35dfd06afa74\", \"5cabf076-22d0-4480-a111-3d87c6574c5b\": \"5cabf076-22d0-4480-a111-3d87c6574c5b\", \"bb0b0bea-16f6-4e6f-95e0-1ab943aaa021\": \"bb0b0bea-16f6-4e6f-95e0-1ab943aaa021\", \"e79cb32e-d193-420b-9804-a5e004fdb394\": \"e79cb32e-d193-420b-9804-a5e004fdb394\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/storage/vector_store.json b/sciphi/data/stock_raw/learning_with_python/storage/vector_store.json deleted file mode 100644 index 893f148..0000000 --- a/sciphi/data/stock_raw/learning_with_python/storage/vector_store.json +++ /dev/null @@ -1 +0,0 @@ -{"embedding_dict": {"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f": [-0.020444389432668686, 0.02928672917187214, -0.006223429925739765, -0.03489063307642937, 0.009039461612701416, 0.030018897727131844, -0.011390848085284233, -0.012580621056258678, 0.010405236855149269, -0.027920953929424286, 0.023710986599326134, 0.0007686886237934232, -0.03846699371933937, 0.016656827181577682, 0.0027544309850782156, -0.000563206325750798, 0.0011862532701343298, 0.019247576594352722, 0.01399567723274231, -0.014685604721307755, -0.005589822772890329, 0.01954326033592224, 0.003974124789237976, -0.003984684590250254, -0.015614895150065422, 0.0118202930316329, 0.005621503107249737, -0.010489718057215214, -0.0034214784391224384, 0.02130327932536602, 0.0062163895927369595, -0.00782856810837984, -0.017980361357331276, 0.0012504940386861563, -0.028427839279174805, -0.02544284611940384, -0.010891002602875233, -0.0010621718829497695, 0.008969061076641083, -0.0015400173142552376, -0.008511455729603767, -0.006864076945930719, -0.005853825714439154, -0.0026118692476302385, -0.008659297600388527, 0.032102759927511215, -0.002860032021999359, -0.042015191167593, 0.0014203359605744481, 0.01551633421331644, 0.015474094077944756, 0.011348607018589973, -0.006832396611571312, -0.014150558970868587, -0.005223738495260477, -0.001531217247247696, 0.017093311995267868, 0.010722040198743343, -0.01909269392490387, -0.03224356099963188, 0.011883653700351715, -0.011918853968381882, -0.019571419805288315, -0.012453899718821049, -0.0036080405116081238, 0.00253266841173172, -0.0008382094092667103, 0.021289199590682983, 0.006688075140118599, -0.01679762825369835, 0.03567912057042122, 0.03241252526640892, 0.0015109769301488996, 0.009285864420235157, 0.020697832107543945, -0.011376767419278622, -0.02544284611940384, -0.009194343350827694, 0.0015320972306653857, 0.00233378610573709, 0.01334798987954855, -0.004804853815585375, -0.011116284877061844, 0.013861916027963161, 0.00531525956466794, -0.03779114410281181, 0.009870191104710102, 0.03553831949830055, -0.03069474548101425, -0.02461211569607258, 0.01305230613797903, 0.020458469167351723, 0.015614895150065422, 0.014333601109683514, -0.00975754950195551, 0.03922732174396515, -0.003692521480843425, 0.01792404055595398, 0.004871734883636236, -0.018642129376530647, 0.019867103546857834, -0.008490335196256638, -0.00014487162115983665, -0.009546346962451935, 0.005878466181457043, -0.013446550816297531, 0.015699375420808792, -0.0008113691001199186, 0.01950101926922798, -0.014615204185247421, -0.023879949003458023, 0.038241710513830185, 0.017909960821270943, -0.043507687747478485, 0.0355946384370327, -0.0067091952078044415, 0.01077836100012064, 0.01156685035675764, -0.01683986932039261, -0.009581547230482101, -0.002337306272238493, 0.010391157120466232, 0.02627357468008995, -0.014115358702838421, 0.0230632983148098, 0.0036608411464840174, 0.02535836398601532, -0.023795466870069504, -0.021782005205750465, -0.0004862054483965039, 0.03255332633852959, 0.009405545890331268, 0.010933242738246918, 0.008786018937826157, -0.016910269856452942, 0.003611560445278883, -0.008096090517938137, 0.005924226716160774, -0.013425431214272976, -0.015023528598248959, -0.001188893336802721, 0.03964972496032715, -0.010693879798054695, -0.0036467609461396933, -0.0040726857259869576, 0.014418082311749458, 0.027850553393363953, -0.028709443286061287, -0.029596492648124695, 0.012263817712664604, -0.007772247307002544, -0.01962774060666561, 0.021289199590682983, -0.0008558096014894545, -0.012383499182760715, 0.015347372740507126, -0.027216944843530655, 0.008096090517938137, -0.006508552934974432, -0.0013032946735620499, 0.0051885382272303104, 0.01820564456284046, 0.011369727551937103, -0.0011572130024433136, 0.02852640114724636, 0.02452763542532921, 0.033736057579517365, 0.017557956278324127, -0.01612178049981594, -0.02176792360842228, 0.009940591640770435, 0.023330822587013245, -0.026217253878712654, 0.02226072922348976, 0.024119310081005096, 0.016938429325819016, 0.021444080397486687, 0.00693447794765234, -0.006177669391036034, 0.0018621009076014161, -0.009243623353540897, -0.015108009800314903, -0.008694497868418694, 0.04736565053462982, -0.031849317252635956, -0.008807138539850712, 0.027977274730801582, -0.008919780142605305, 0.004347248934209347, -0.0015083369798958302, -0.000839089450892061, 0.022570492699742317, 0.00820873212069273, -0.007638485636562109, -0.6123179197311401, -0.019289815798401833, -0.0010375316487625241, -0.03229988366365433, 0.007427283562719822, 0.00273155071772635, 0.017980361357331276, 0.010468597523868084, -0.03646760806441307, 0.05235002934932709, -0.011616130359470844, -0.010229234583675861, -0.009159143082797527, -0.0021841845009475946, -0.008532576262950897, -0.030976347625255585, 0.005290619563311338, -0.02756894938647747, -0.027456307783722878, 0.005984066985547543, -0.005484221503138542, 0.013587352819740772, -0.017191873863339424, 0.012643981724977493, 0.00896202027797699, -0.000489725498482585, 0.025823010131716728, 0.004481010138988495, 0.02894880436360836, 0.024161551147699356, -0.011454208754003048, 0.01930389739573002, -0.013059346936643124, 0.014896807260811329, 0.05150521919131279, 0.0020662632305175066, -0.02723102644085884, 0.034355584532022476, 0.0153755322098732, 0.04102957993745804, -0.0513925775885582, -0.02723102644085884, 0.013446550816297531, 0.02710430510342121, 0.010250355117022991, 0.006948558147996664, 0.03689001500606537, -0.004424689803272486, -0.013749274425208569, -0.0264847781509161, -0.0019113814923912287, 0.005688383709639311, 0.004481010138988495, -0.029089607298374176, 0.026681900024414062, -0.01345359068363905, 0.024077070876955986, -0.012284938246011734, -0.005688383709639311, -0.00925066415220499, -0.0043296488001942635, 0.032187242060899734, 0.014939047396183014, -0.008497375063598156, -0.00603686785325408, -0.008180571720004082, -0.008701537735760212, -0.0084762554615736, 0.006255110260099173, -0.0006199669442139566, -0.0038544433191418648, 0.0077863275073468685, 0.00038852434954605997, -0.020725993439555168, 0.017557956278324127, 0.02242969162762165, -0.011869573034346104, -0.0006300871027633548, -0.003622120711952448, 0.00870857760310173, 0.01307342667132616, 0.009194343350827694, -0.029934415593743324, 0.011411968618631363, 0.06403655558824539, -0.004861174616962671, -0.004833014216274023, -0.009039461612701416, 0.0072020008228719234, 0.00022550253197550774, 0.011243006214499474, 0.036157846450805664, -0.01334798987954855, -0.02535836398601532, -0.018951892852783203, -0.00989835150539875, 0.005325819831341505, 0.01322126854211092, -0.02452763542532921, -0.017783239483833313, 0.0054243807680904865, 0.012291978113353252, 0.002293305704370141, 0.006258630193769932, 0.01447440218180418, 0.011834372766315937, -0.029962576925754547, 0.016656827181577682, 0.02752670831978321, -0.03252516686916351, -0.03624232858419418, -0.028301117941737175, 0.0055792625062167645, -0.0032894769683480263, 0.02347162365913391, -0.035988885909318924, 0.029596492648124695, 0.0005847665597684681, 0.015431853011250496, -0.012390539050102234, -0.000695647788234055, 0.013735194690525532, -0.023696906864643097, -0.024569876492023468, 0.027259185910224915, 0.026921262964606285, 0.013678873889148235, -0.027963193133473396, -0.003907243721187115, -0.018867412582039833, -0.013059346936643124, 0.001722179353237152, 0.03246884420514107, -0.0023126660380512476, -0.007392082829028368, 0.005343419965356588, 0.01629074290394783, -0.010362996719777584, -0.019444698467850685, 0.004079725593328476, -0.02427419275045395, 0.012066695839166641, -0.005808065179735422, -0.02886432409286499, 0.0001841420744312927, -0.027090223506093025, -0.023908108472824097, -0.01255246065557003, -0.002414747141301632, 0.02845599874854088, -0.0004796053981408477, -0.00519205816090107, -0.0025942691136151552, -0.0034478786401450634, 0.008793058805167675, -0.01737491600215435, -0.003095874795690179, 0.009130982682108879, 0.005769344978034496, -0.011813252232968807, 0.00820873212069273, 0.02580893039703369, -0.02973729372024536, -0.008434014394879341, -0.01820564456284046, -0.010165873914957047, -0.014826406724750996, 0.010722040198743343, 0.00875081866979599, -0.045422591269016266, 0.02055703103542328, -0.0022317050024867058, 0.008736738003790379, 0.001281294389627874, -0.01267918199300766, 0.0012284937547519803, 0.001174813136458397, 0.003949484322220087, -0.002889952389523387, -0.004002284724265337, 0.014115358702838421, 0.01115148514509201, -0.00738504296168685, 0.008011610247194767, 0.03224356099963188, -0.01025739498436451, 0.014699685387313366, -0.015305131673812866, 0.003643241012468934, 0.011221885681152344, -0.014854567125439644, 0.0011528129689395428, 0.015502254478633404, -0.00912394281476736, 0.015643056482076645, 0.037199776619672775, 0.00017677198047749698, 0.042043350636959076, -0.008898659609258175, 0.01503760926425457, 0.020528869703412056, -0.002506268210709095, 0.01603730022907257, -0.018318286165595055, 0.0005654063425026834, -0.03246884420514107, 0.014143519103527069, -0.024837398901581764, 0.023612424731254578, 0.011207805946469307, 0.015319212339818478, -0.022317050024867058, -0.03905835747718811, 0.007145680021494627, 0.03779114410281181, 0.03593256324529648, -0.0008434894843958318, 0.04139566421508789, -0.02121879905462265, -0.008567776530981064, 0.01745939627289772, -0.009180262684822083, 0.023161860182881355, -0.0037594023160636425, -0.0018163403728976846, 0.002455227542668581, 0.007779287174344063, -0.012327178381383419, -0.01529105193912983, -0.04331056773662567, -0.019655900076031685, -0.0011809732532128692, -0.0028142717201262712, -0.015023528598248959, 0.030863706022500992, 0.018346445634961128, 0.004350768867880106, 6.121568731032312e-05, 0.01926165632903576, -0.025076761841773987, -0.009166182950139046, 0.012714383192360401, 0.03491879254579544, -0.03553831949830055, 0.0020873835310339928, 0.027892792597413063, 0.03246884420514107, 0.017403075471520424, -0.02631581574678421, 0.024823319166898727, -0.02213400788605213, 0.04322608560323715, 0.0016940190689638257, -0.00048136539408005774, 0.007001358550041914, -0.006930958013981581, 0.029709134250879288, 0.010032112710177898, 0.02820255607366562, 0.00781448744237423, 0.022992897778749466, -0.00023980269907042384, 0.024696597829461098, 0.019824862480163574, 0.003497159341350198, -0.010820601135492325, -0.026118693873286247, -0.018557649105787277, -0.031764835119247437, -0.023823628202080727, -0.0012566541554406285, -0.008631137199699879, -0.004604211542755365, -0.006688075140118599, 0.023246340453624725, -0.000504245690535754, 0.003072994528338313, 0.013805595226585865, -0.00044924503890797496, 0.024006670340895653, -0.0236405860632658, -0.005097017157822847, 0.02043030969798565, 0.007554004900157452, 0.023823628202080727, 0.011721732094883919, 0.01733267493546009, 0.003298277035355568, 0.016178101301193237, 0.011144445277750492, -0.0031187550630420446, -0.0076948064379394054, 0.038748595863580704, 0.007624405436217785, 0.011749891564249992, -0.025823010131716728, 0.016318902373313904, -0.014171679504215717, -0.0034144383389502764, 0.01013067364692688, 0.0009917711140587926, 0.009623788297176361, -0.02903328649699688, -0.00588902598246932, 0.036777373403310776, 0.00023298260930459946, 0.0017019391525536776, -0.012819983996450901, 0.012651022523641586, -0.012883344665169716, 0.01422095950692892, -0.004385969135910273, -0.016389304772019386, -0.008504415862262249, 0.02009238488972187, -0.01434768084436655, -0.005737664643675089, -0.01909269392490387, 0.02017686702311039, 0.02393626794219017, -0.03238436207175255, -0.03536935895681381, -0.011081084609031677, 0.017177792266011238, 0.017107391729950905, 0.022584574297070503, -0.010750200599431992, -0.005160377826541662, -0.010940282605588436, -0.015136170201003551, -0.04595763608813286, -0.006325511261820793, 0.0021630642004311085, -0.003949484322220087, 0.008363613858819008, 0.014023837633430958, -0.003541159676387906, -0.014671524986624718, 0.03182115778326988, 0.010454517789185047, 0.00870857760310173, -0.007870808243751526, -0.0035904403775930405, -0.012812944129109383, 0.011228926479816437, 0.004921015352010727, 0.00045232506818138063, -0.026498857885599136, 0.0071492004208266735, -0.0036538010463118553, 0.011609090492129326, 0.004825974348932505, -0.0057728649117052555, 0.0013622553087770939, -0.024752918630838394, 0.006184709258377552, 0.036017045378685, 0.03320101276040077, -0.03249700367450714, -0.005484221503138542, 0.025738529860973358, 0.008096090517938137, 0.012284938246011734, 0.0019817822612822056, 0.010144754312932491, 0.0153755322098732, 0.007103439886122942, -0.01954326033592224, 0.010665719397366047, -0.01930389739573002, -0.03880491480231285, 0.010165873914957047, -0.01771283894777298, -0.014530722983181477, 0.027597110718488693, -0.014699685387313366, -0.020824553444981575, -0.024330513551831245, 0.002800191519781947, 0.00900426134467125, -0.01771283894777298, -0.006124868988990784, -0.009328104555606842, -0.0228520967066288, 0.0027245106175541878, -0.037988267838954926, 0.020993515849113464, -0.016530105844140053, -0.0006890477379783988, -0.014981288462877274, -0.01077836100012064, -0.009539307095110416, -0.008011610247194767, -0.013333910144865513, -0.0009398505790159106, -0.030272340402007103, -0.02945569157600403, -0.009018341079354286, -0.018698450177907944, 0.007969369180500507, 0.001564657548442483, -0.00039666445809416473, 0.017008831724524498, -0.006381831597536802, -0.025344284251332283, -0.01875477097928524, -0.000905530177988112, -0.01737491600215435, 0.009701228700578213, -0.005005496088415384, 0.008722658269107342, -0.025344284251332283, 0.0024781078100204468, -0.007476564031094313, 0.022950658574700356, 0.0004430849803611636, -0.008363613858819008, -0.030553942546248436, 0.013214228674769402, 0.017473476007580757, 0.02302105911076069, 0.03007521852850914, 0.005230778828263283, -0.0002785231336019933, 0.002060983097180724, -0.01551633421331644, -0.0029216327238827944, -0.02047255076467991, -0.002974433358758688, -0.010179954580962658, -0.00334227760322392, 0.0032085159327834845, -0.03508775308728218, -0.0109262028709054, 0.041001420468091965, -0.02143000066280365, 0.009194343350827694, 0.023739146068692207, 0.025794848799705505, 0.014446241781115532, -0.014164638705551624, 0.027920953929424286, 0.01194701436907053, 0.0026523498818278313, 0.01157389022409916, -0.01562897488474846, 0.012327178381383419, 0.014143519103527069, -0.0034725191071629524, 0.026963502168655396, 0.004910455085337162, -0.033060211688280106, -0.011095164343714714, 0.01369999349117279, -0.005969987250864506, 0.020542951300740242, -0.006814796477556229, -0.017403075471520424, -0.010334836319088936, 0.005156857892870903, -0.0009451305959373713, -0.00910282228142023, -0.022232569754123688, -0.012087815441191196, -0.0035534799098968506, -0.015685295686125755, -0.008328413590788841, 0.025555487722158432, 0.02276761643588543, -0.01971222087740898, 0.020458469167351723, 0.0015840177657082677, 0.010919163003563881, 0.0019377818098291755, 0.004336688667535782, -0.003176835598424077, -0.019149014726281166, -0.0038931637536734343, -0.025555487722158432, -0.058122891932725906, -0.0323280431330204, 0.005149818025529385, 0.0030536341946572065, 0.017135553061962128, 0.0024376274086534977, 0.00024750278680585325, -0.002867072122171521, 0.0063853515312075615, 0.0008175291586667299, 0.014727845788002014, 0.020740073174238205, -0.006790156476199627, -0.025006361305713654, 0.011081084609031677, 0.021711604669690132, 0.02431643381714821, 0.019444698467850685, -0.008511455729603767, -0.004336688667535782, 0.025372445583343506, -0.007849687710404396, -0.011637250892817974, 0.01883925125002861, -0.031060827895998955, 0.01775508001446724, -0.004428209736943245, 0.00977163016796112, 0.015812017023563385, -0.038326188921928406, -0.02886432409286499, 0.01896597258746624, 0.015896499156951904, 0.020373988896608353, -0.00046948526869527996, 0.011376767419278622, -0.023908108472824097, 0.02544284611940384, 0.028427839279174805, 0.02213400788605213, -0.02406299114227295, 0.01436880137771368, -0.01883925125002861, 0.0075399246998131275, 0.005596862640231848, 0.002518588211387396, 0.0044211698696017265, 0.02238745056092739, 0.029709134250879288, -0.0192194152623415, 0.01267918199300766, 0.009342185221612453, -0.015108009800314903, 0.0018357005901634693, -0.0115316491574049, -0.014784165658056736, -0.021373679861426353, -0.014354721643030643, -0.01165837049484253, -0.008828259073197842, -0.01820564456284046, 0.007483603898435831, 0.027723832055926323, -0.008286173455417156, -0.010609399527311325, 0.0016148181166499853, 0.005558142438530922, 0.05325115844607353, -0.013883035629987717, 0.015220650471746922, 0.03255332633852959, -0.020585190504789352, -0.0018128203228116035, 0.03131427243351936, 0.032440684735774994, 0.013460631482303143, -0.003974124789237976, 0.033736057579517365, 0.018360525369644165, 0.007363922894001007, -0.01658642664551735, 0.016769468784332275, -0.02109207771718502, -0.02076823264360428, 0.031933799386024475, 0.003611560445278883, 0.009827950038015842, -0.014587043784558773, 0.014192799106240273, -0.015445933677256107, 0.0012680942891165614, -0.004097326193004847, 0.014756005257368088, 0.00558630283921957, -0.023922188207507133, -0.01896597258746624, 0.00052976596634835, -0.005185018293559551, 0.006293830461800098, 0.006079108454287052, -0.007793367374688387, -0.021359600126743317, -0.04271920025348663, -0.030553942546248436, 0.025625888258218765, -0.006047428119927645, 0.021317359060049057, 0.004185326863080263, 0.007018958684056997, -0.004224047530442476, 0.006997838616371155, -0.00937738548964262, 0.0015382572310045362, 0.009222503751516342, 0.023330822587013245, 0.0026928302831947803, 0.003991724923253059, -0.027414068579673767, -0.008574816398322582, 0.011897733435034752, 0.012172296643257141, -0.01209485623985529, 0.0009583307546563447, -0.009588588029146194, -0.011067003943026066, 0.008180571720004082, -0.008701537735760212, -0.014354721643030643, -0.008250972256064415, -0.020078305155038834, -0.0015215370804071426, 0.01603730022907257, -0.00224578520283103, 0.03111714869737625, -0.04139566421508789, -0.002933952957391739, 0.0013261749409139156, -0.01905045472085476, -0.002800191519781947, 0.015713457018136978, -0.0006859676796011627, 0.010715000331401825, 0.041001420468091965, -0.007004878483712673, 0.013164947740733624, -0.008384734392166138, -0.0033633976709097624, -0.027920953929424286, 0.01447440218180418, -0.011510529555380344, -0.0207963939756155, 0.01833236590027809, -0.014699685387313366, 0.0008694497519172728, -0.004987895954400301, 0.008067931048572063, -0.0034056382719427347, 0.02561180852353573, -0.03291941061615944, 0.039114680141210556, 0.0031205150298774242, 0.017065152525901794, -0.009081701748073101, -0.03610152378678322, 0.006033347919583321, -0.015882417559623718, -9.850610513240099e-05, 0.01426320057362318, 0.009194343350827694, -0.0013860155595466495, -0.020824553444981575, 0.009454825893044472, 0.010496757924556732, -0.025865251198410988, -0.008849379606544971, -0.008011610247194767, 0.027005743235349655, -0.011376767419278622, -0.020697832107543945, -0.00015950179658830166, 0.020852714776992798, -0.020289508625864983, 0.018022602424025536, 0.014488482847809792, -0.0008698897436261177, -0.004129006527364254, 0.026794541627168655, -0.002597789280116558, 0.006329031195491552, -0.019979745149612427, 0.009236583486199379, 0.018515408039093018, -0.016473785042762756, -0.02130327932536602, -0.026541098952293396, -0.031483232975006104, 0.024161551147699356, 0.016825789585709572, -0.040579017251729965, 0.004442289937287569, -0.025344284251332283, -0.03905835747718811, -0.004065645858645439, -0.020148705691099167, -0.003453158773481846, 0.024823319166898727, 0.01399567723274231, 0.003777002450078726, 0.012158216908574104, -0.016614586114883423, 0.03367973864078522, -0.00910282228142023, 0.009419625625014305, -0.004509170539677143, 0.02565404772758484, -0.03787562623620033, -0.001778499921783805, -0.029878094792366028, -0.0023936268407851458, 0.01971222087740898, -0.00045540512655861676, 0.0014194559771567583, 0.027850553393363953, -0.016276663169264793, -0.01905045472085476, 0.014432162046432495, -0.004607731942087412, 0.00032516365172341466, -0.012503180652856827, 0.0033581177704036236, -0.04322608560323715, 0.006022787652909756, 0.021120237186551094, 0.012066695839166641, -0.004924535285681486, -0.029962576925754547, -0.01591057889163494, -0.004818934015929699, -0.02578076906502247, -0.01767059788107872, -0.00973642896860838, 0.005582782905548811, -0.005769344978034496, 0.015206570737063885, -0.03748138248920441, -0.013981596566736698, 0.022415611892938614, 0.030103377997875214, 0.00015257170889526606, -0.02013462595641613, 0.006008707452565432, -0.02962465211749077, -0.0010876922169700265, 0.029089607298374176, -0.019867103546857834, 0.003352837637066841, -0.009363304823637009, 0.027245106175541878, -0.029765455052256584, 0.012960785999894142, -0.015558574348688126, -0.008124250918626785, -0.011292287148535252, 0.007244241423904896, 0.04987192153930664, -0.0049315751530230045, 0.0021630642004311085, -0.01412239857017994, 0.007568085100501776, 0.011207805946469307, 0.0023320261389017105, -0.020782314240932465, -0.0284841600805521, 0.01805076189339161, 0.009236583486199379, 0.003386277938261628, -0.009546346962451935, -0.024372754618525505, 0.016769468784332275, -0.003956524655222893, 0.017529796808958054, 0.19329240918159485, -0.005544062238186598, 0.05158969759941101, 0.06505033373832703, -0.014572964049875736, 0.01524881087243557, 0.0008263292838819325, -0.013467671349644661, 0.020078305155038834, 0.020993515849113464, -0.020937195047736168, -0.0037242018152028322, 0.0004298848216421902, -0.0040938057936728, 0.0004756453272420913, -0.020711911842226982, -0.027751991525292397, -0.035650961101055145, -0.020754152908921242, -0.012545420788228512, -0.002974433358758688, 0.0019061013590544462, 0.0016174581833183765, -0.021204717457294464, 0.003326437436044216, 0.0039283642545342445, -0.02030358836054802, 0.006406472064554691, 0.037368740886449814, -0.014326561242341995, -0.0207963939756155, -0.008025689981877804, -0.01140492781996727, 0.014129438437521458, -0.007624405436217785, 0.01486864686012268, 0.00875081866979599, -0.010771321132779121, 0.021782005205750465, -0.009349225088953972, 0.00963082816451788, -0.018445007503032684, -0.020416229963302612, -0.039875008165836334, -0.02552732639014721, 0.004118446260690689, -0.009159143082797527, -0.024077070876955986, 0.012629901990294456, 0.008947940543293953, -0.026175014674663544, 0.005924226716160774, 0.02644253708422184, 0.00756104476749897, -0.0007246881141327322, 0.006857037078589201, -0.007152720354497433, -0.025851169601082802, 0.024457234889268875, 0.01436880137771368, 0.005544062238186598, 0.02894880436360836, -0.016135862097144127, 0.005097017157822847, -0.00020328228129073977, 0.02066967263817787, 0.005290619563311338, -0.021063916385173798, 0.00506533682346344, -0.010292595252394676, -0.002638269681483507, -0.028188476338982582, 0.0035024392418563366, 0.0246402770280838, -0.025639967992901802, -0.040438212454319, 0.009461866691708565, 0.030384982004761696, 0.022838016971945763, 0.03286308795213699, -0.0014740165788680315, -0.02276761643588543, -0.012862224131822586, -0.016276663169264793, -0.0031275551300495863, -0.038579631596803665, 0.011968133971095085, -0.0006749675958417356, -0.011961094103753567, -0.0007700086571276188, 0.004685172811150551, -0.008419934660196304, -0.013446550816297531, 0.017684679478406906, 0.009391465224325657, -0.009018341079354286, -0.010461557656526566, 0.008588896133005619, 0.0009266504202969372, 0.00985611043870449, -0.03781930357217789, 0.03781930357217789, 0.04699956625699997, 0.0027843513526022434, 0.006835916545242071, -0.001972982194274664, 0.022317050024867058, -0.0008188491920009255, 0.025175321847200394, -0.026766380295157433, -0.015769777819514275, -0.021232878789305687, 0.008722658269107342, -0.00910282228142023, -0.005403260700404644, 0.03246884420514107, 0.026625579223036766, -0.008166491985321045, -0.0182197242975235, 0.009053541347384453, 0.021908726543188095, 0.027414068579673767, 0.013038226403295994, 0.0169525109231472, -0.006923917680978775, -0.014277280308306217, -0.028258876875042915, 0.03821354731917381, -0.023626504465937614, -0.004224047530442476, 0.02673822082579136, -0.008222812786698341, 0.031933799386024475, 0.0008276493172161281, -0.0035693200770765543, -0.00723720109090209, 0.013129747472703457, 0.01438992191106081, -0.019374297931790352, -0.007751127239316702, -0.0190082136541605, 0.014699685387313366, -0.003446118673309684, -0.005734144244343042, 0.020740073174238205, -0.010700920596718788, 0.005350460298359394, 0.008814179338514805, 0.007610325235873461, -0.03500327467918396, -0.027878712862730026, 0.0064099919982254505, 0.006124868988990784, -0.006205829791724682, 0.004921015352010727, -0.036523930728435516, -0.012207496911287308, -0.03931180015206337, 0.024091150611639023, 0.014756005257368088, -0.04745013266801834, -0.010229234583675861, 0.02435867302119732, -0.0018269005231559277, -0.021711604669690132, -0.031398750841617584, -0.18067659437656403, 0.0060615078546106815, 0.018642129376530647, -0.019247576594352722, 0.005818625446408987, -0.0041501265950500965, 0.03508775308728218, 0.012580621056258678, -0.008905700407922268, -0.016825789585709572, -0.008159451186656952, 0.010208114981651306, -0.02193688601255417, 0.018036682158708572, -0.004368369001895189, 0.002263385336846113, -0.00711399968713522, 0.014615204185247421, 0.0323280431330204, 0.013812635093927383, 0.021190637722611427, -0.0246402770280838, 0.010637558996677399, 0.015065768733620644, -0.01117260567843914, -0.0050090160220861435, -0.00045144505565986037, 0.002562588779255748, -0.023922188207507133, -0.02661149948835373, -0.013636632822453976, -0.002226425101980567, 0.01913493499159813, 0.013179028406739235, 0.029174087569117546, -0.0230632983148098, -0.001848020707257092, 0.01010955311357975, -0.028315197676420212, 0.009722349233925343, 0.006899277679622173, 0.015319212339818478, 0.002196504734456539, -0.001965942094102502, -0.02164120227098465, 0.02965281344950199, 0.01624850183725357, 0.004906935151666403, 0.009820910170674324, 0.007272401824593544, 0.01892373338341713, -0.03973420709371567, 0.010046192444860935, -0.013179028406739235, 0.018360525369644165, -0.015319212339818478, 0.001445856294594705, 0.009891310706734657, 0.018233804032206535, 0.012974865734577179, 0.0025221083778887987, -0.040325574576854706, 0.012784783728420734, 0.011735811829566956, -0.02911776676774025, -0.0347498320043087, -0.026343975216150284, -0.004276847932487726, 0.002337306272238493, 0.018571728840470314, -0.006705675274133682, -0.002793151419609785, -0.0269071813672781, -0.009370345622301102, 0.014319520443677902, 0.008905700407922268, -0.027977274730801582, 0.0013367349747568369, 0.020979436114430428, -0.002189464634284377, 0.0032331563998013735, 0.03266596794128418, -0.013601432554423809, -0.003910764120519161, 0.019247576594352722, -0.00371716171503067, 0.008722658269107342, -0.011890693567693233, 0.001203853520564735, -0.015727536752820015, -0.009701228700578213, -0.024499475955963135, -0.012207496911287308, 0.01591057889163494, 0.006473352666944265, 0.008574816398322582, 0.02999073639512062, -0.0030853147618472576, -0.0014194559771567583, -0.022542333230376244, 0.011095164343714714, -0.016487864777445793, -0.028709443286061287, -0.0006243670359253883, -0.0015303371474146843, 0.028371518477797508, -0.0032049959991127253, 0.02168344333767891, 0.026794541627168655, 0.00718440068885684, -0.024752918630838394, 0.028413759544491768, 0.005265979096293449, 0.014129438437521458, -0.011735811829566956, 0.01850132830440998, 0.008441055193543434, -0.004488050471991301, -0.007701846305280924, 0.014756005257368088, 0.01641746424138546, -0.008222812786698341, -0.002182424534112215, 0.024795157834887505, 0.026090532541275024, -0.03528487682342529, -0.10577014833688736, -0.018740691244602203, 0.022654974833130836, 0.05806657299399376, -0.004818934015929699, 0.015079849399626255, -0.01434768084436655, 0.0018128203228116035, 0.016149941831827164, 0.03069474548101425, 0.019768541678786278, -0.013798555359244347, 0.008969061076641083, -0.005829185247421265, 0.009426665492355824, 0.009215463884174824, 0.0010568918660283089, -0.03812906891107559, -0.02172568440437317, 0.013291669078171253, -0.004917495418339968, 0.012615821324288845, 0.005385660566389561, -0.024668436497449875, -0.029314888641238213, 0.0030976347625255585, -0.003910764120519161, 0.008666337467730045, 0.002476347843185067, -0.004519730806350708, 0.006378311663866043, -0.009996912442147732, -0.01460112351924181, 0.0007541684899479151, -0.03300388902425766, 0.010510837659239769, -0.01775508001446724, -0.040832459926605225, 0.018149323761463165, -0.004818934015929699, 0.0012707342393696308, -0.012580621056258678, 0.021317359060049057, -0.01144716888666153, -0.021838326007127762, -0.019163094460964203, -0.014727845788002014, 0.010194034315645695, -0.003025474026799202, -0.025837089866399765, -0.01809300296008587, -0.012545420788228512, -0.01157389022409916, -0.024964120239019394, 0.019810782745480537, -0.023739146068692207, 0.0007378882728517056, 0.029680972918868065, -0.01779731921851635, 0.020909035578370094, -0.03413030505180359, -0.004452850203961134, -0.011010684072971344, 0.025161242112517357, -0.01284110452979803, 0.006864076945930719, -0.014199839904904366, -0.04215599223971367, 0.04038189351558685, -0.012559501454234123, -0.009081701748073101, 0.01696659065783024, -0.03252516686916351, 0.015206570737063885, -0.011454208754003048, -0.0084762554615736, 0.005445501301437616, -0.016234422102570534, 0.023950349539518356, -0.0031486754305660725, -0.01284110452979803, -0.03024417906999588, -0.011109245009720325, -0.013509911485016346, 0.023006977513432503, -0.004516210872679949, -0.010947322472929955, 0.0018744210246950388, -0.014023837633430958, -0.014741925522685051, 0.006219909992069006, 0.0046957326121628284, 0.0026417896151542664, -0.00655783386901021, -0.015840178355574608, -0.006445192266255617, 0.01954326033592224, -0.017093311995267868, -0.014784165658056736, 0.013819674961268902, -0.0545465312898159, -0.03522855415940285, -0.07282257825136185, -0.006420552264899015, 0.012249737977981567, -0.03810090944170952, 0.0014669764786958694, -0.01917717605829239, -0.01629074290394783, -0.0004532050807029009, 0.010510837659239769, -0.009623788297176361, -0.040916938334703445, -0.00910986214876175, -0.011390848085284233, -0.0027773112524300814, -0.015980979427695274, -0.023837707936763763, 0.022880256175994873, 0.020275427028536797, 0.0030817945953458548, -0.0010463317157700658, 0.004378929268568754, -0.015051688998937607, -0.025245724245905876, 0.02506268210709095, -0.01841684617102146, 0.016853949055075645, -0.003692521480843425, 0.03215908259153366, -0.0030078738927841187, -0.018036682158708572, -0.0021877046674489975, -0.009391465224325657, -0.0030571543611586094, -0.01813524402678013, -0.0046429322101175785, -0.004959735553711653, -0.012137096375226974, 0.003139875363558531, 0.0043050083331763744, 0.005529982037842274, -0.00975050963461399, -0.01645970530807972, -0.004051565658301115, -0.0388612374663353, 0.005037176422774792, 0.008645216934382915, -0.015643056482076645, 0.00820873212069273, 0.021289199590682983, -0.004488050471991301, 0.01737491600215435, 0.007194960955530405, -0.017642438411712646, -0.026963502168655396, 0.011496448889374733, -0.029934415593743324, 0.024006670340895653, -0.02739998698234558, 0.03579176217317581, -0.016276663169264793, 0.043592169880867004, 0.029061445966362953, -0.005452541168779135, -0.013193108141422272, 0.025963811203837395, -0.005544062238186598, -0.0076948064379394054, -0.020148705691099167, -0.0077863275073468685, -0.01624850183725357, -0.025513246655464172, -0.00908874161541462, 0.017952201887965202, -0.0009944111807271838, 0.008666337467730045, -0.0004092046001460403, -0.029849935322999954, 0.014953128062188625, 0.002969153458252549, 0.012130056507885456, -0.01270030252635479, -0.005885506048798561, -0.0017591397045180202, 0.03610152378678322, 0.031595874577760696, 0.006758475676178932, -0.00998283177614212, 0.007025999017059803, -0.01002507284283638, 0.0012311338214203715, -0.02761119045317173, -0.030187858268618584, -0.015234731137752533, -0.02259865403175354, 0.010729080066084862, 0.012615821324288845, 0.012115975841879845, 0.003164515597745776, -0.014094238169491291, 0.011806212365627289, 0.0023971470072865486, -0.01503760926425457, -0.006519113201647997, -0.014629283919930458, -0.01875477097928524, 0.016009138897061348, -0.022950658574700356, -0.038664113730192184, 0.013235348276793957, 0.009067622013390064, 0.012087815441191196, 0.025287963449954987, 0.003886123653501272, 0.028836164623498917, -0.017572037875652313, 0.020444389432668686, -0.027090223506093025, -0.03829802945256233, -0.0259074904024601, 0.05567294359207153, 0.02234521135687828, 0.025302045047283173, 0.017234113067388535, -0.005755264777690172, 0.03796010464429855, 0.004752053413540125, 0.022838016971945763, -0.0055264621041715145, 0.01244685985147953, -0.009349225088953972, -0.02686494216322899, 0.028019513934850693, 0.0011932933703064919, -0.014284320175647736, -0.011939974501729012, 0.0073709627613425255, -0.00014564163575414568, 0.023457543924450874, -0.003599240444600582, 0.08059482276439667, 0.02104983665049076, -0.019233496859669685, -0.0028864324558526278, -0.0024657875765115023, -0.008778978139162064, 0.016445625573396683, 0.01645970530807972, -0.007624405436217785, -0.03182115778326988, -0.008117211051285267, 0.02561180852353573, 0.023626504465937614, -0.02259865403175354, 0.003618600545451045, -0.012798863463103771, -0.04331056773662567, 0.021880565211176872, -0.015431853011250496, 0.010250355117022991, 0.02480923943221569, 0.017614277079701424, 0.005026616621762514, 0.0013525751419365406, -0.017022911459207535, -0.019909342750906944, 0.0655008926987648, 0.008293213322758675, -0.017656518146395683, -0.019106773659586906, -0.023035138845443726, 0.023626504465937614, 0.0055264621041715145, -0.016009138897061348, 0.007546964567154646, 0.017149632796645164, 0.003025474026799202, -0.012369418516755104, 0.041170381009578705, 0.007962329313158989, -0.012101896107196808, -0.009989872574806213, -0.005529982037842274, -0.026836780831217766, 0.019979745149612427, -0.010771321132779121, -0.016614586114883423, -0.01079948153346777, -0.016783548519015312], "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec": [0.008581197820603848, 0.019098524004220963, -0.0015895268879830837, -0.04657772183418274, -0.008276949636638165, 0.008062592707574368, -0.014465645886957645, 0.0006218948401510715, -0.01883576437830925, -0.02440904825925827, 0.022790998220443726, 0.010939125902950764, -0.027382388710975647, 0.02551540732383728, -0.0047538867220282555, -0.013082697056233883, 0.014154482632875443, -0.0018929113866761327, 0.007751428987830877, -0.0008427345310337842, -0.02006658911705017, 0.015184779651463032, -0.004377033561468124, -0.0017675815615803003, -0.029152562841773033, 0.012612494640052319, 0.012093888595700264, -0.016899636015295982, -0.02873767912387848, -0.009168951772153378, 0.03219505026936531, -0.024865422397851944, -0.007620048709213734, -0.004785003140568733, -0.017051760107278824, 0.014590111561119556, -0.009272672235965729, 0.0020018185023218393, 0.0046570803970098495, -0.009120548143982887, 0.03413118049502373, 0.02447819523513317, 0.0008876803331077099, -2.9279621230671182e-05, 0.014216715469956398, 0.03191846236586571, 0.031752508133649826, -0.01115348283201456, -0.005877532996237278, -0.008926935493946075, 0.02893129177391529, 0.03012062795460224, -0.011250289157032967, 0.010102441534399986, -0.008491306565701962, 0.0035541788674890995, 0.0001495313481427729, 0.009991806000471115, 0.022348454222083092, -0.0055974856950342655, -0.004916383419185877, 0.00439432030543685, -0.0065378909930586815, -0.0044876690953969955, 0.0013812202960252762, 0.004598305094987154, 0.00947319995611906, 0.009127463214099407, -0.012605579569935799, -0.0329141840338707, -0.0018254925962537527, -0.0022196329664438963, -0.015240097418427467, 0.0026120448019355536, 0.025667531415820122, -0.008062592707574368, -0.01981765776872635, -0.01157528255134821, -0.0009775720536708832, 0.01168591808527708, 0.0018894539680331945, 0.0019447719678282738, -0.03410352021455765, 0.018462367355823517, -0.003443542867898941, -0.029678083956241608, 0.01676134020090103, 0.010171589441597462, -0.03352268040180206, -0.015779446810483932, -0.006569007411599159, 0.017964506521821022, 0.013698109425604343, 0.006534433923661709, -0.0028817197307944298, 0.014244373887777328, -0.005836044438183308, 0.022638874128460884, -0.027036651968955994, -0.017383668571710587, 0.017480473965406418, -0.005241376347839832, -0.015240097418427467, 0.005469562951475382, -0.0017995622474700212, -0.011941763572394848, 0.025709019973874092, 0.0036060393322259188, 0.010600303299725056, 0.0012861425057053566, -0.012882169336080551, 0.030397217720746994, -0.008518964983522892, -0.005632059648633003, 0.02887597307562828, -0.0009041028679348528, 0.007419520989060402, -0.029733402654528618, -0.03667580708861351, -0.008498221635818481, 0.02420160546898842, 0.006164494901895523, -0.005829129833728075, 0.00554216792806983, 0.006783364340662956, -0.016083696857094765, -0.011250289157032967, -0.0025117809418588877, -0.0019914463628083467, -0.015613493509590626, 0.035929013043642044, 0.0039414046332240105, 0.015336903743445873, 0.017964506521821022, -0.02550157904624939, 0.017535792663693428, -0.04630113020539284, 0.013414604589343071, 0.012038570828735828, -0.024685638025403023, 0.01658155769109726, 0.008221630938351154, -0.02113145962357521, 0.01490818988531828, -0.0036924737505614758, 0.014673087745904922, -0.0012048942735418677, 0.004885267000645399, 0.0018185778753831983, 0.004114273004233837, -0.003037301590666175, -0.0038238537963479757, -0.013608217239379883, 0.007274311501532793, -0.002283594338223338, 0.023814380168914795, -0.013324713334441185, 0.004895639140158892, 0.01218377985060215, -0.021712297573685646, 0.022528238594532013, 0.01104284729808569, -0.003389953635632992, 0.005780726671218872, 0.0005514508811756968, 0.04566497355699539, 0.025847315788269043, 0.014866701327264309, 0.015157120302319527, -0.003341550240293145, -0.008207801729440689, 0.015350732952356339, -0.009507773444056511, 0.02237611450254917, 0.02121443673968315, 0.001093394006602466, 0.005282864905893803, 0.004587932955473661, -0.01219069492071867, -0.002736510243266821, 0.020661257207393646, -0.005224089603871107, 0.01648475043475628, 0.00744717987254262, -0.028378112241625786, 0.004110815469175577, 0.018573004752397537, 0.005307066719979048, -0.006817938294261694, 0.01158219762146473, 0.008657259866595268, 0.019292138516902924, -0.009749789722263813, 0.002264578826725483, -0.6332799792289734, -0.016194332391023636, -0.04101826623082161, -0.018531516194343567, -0.03006530925631523, 0.018628321588039398, 0.0052102599292993546, 0.017383668571710587, -0.04137783125042915, 0.01998361200094223, 0.012916742824018002, -0.004892182070761919, 0.00558019895106554, -0.02901426889002323, 0.004114273004233837, -0.009528517723083496, -0.01432735100388527, -0.01439649797976017, -0.021947398781776428, 0.028281304985284805, -0.012965146452188492, 0.01322099193930626, -0.020232543349266052, -0.019430432468652725, 1.912359039124567e-05, 0.008975338190793991, 0.013442263938486576, -0.002356199314817786, 0.025957951322197914, 0.05108613520860672, -0.01879427582025528, -0.025128182023763657, 0.009549262002110481, 0.007288140710443258, 0.05858171731233597, -0.009466285817325115, -0.011250289157032967, 0.007571645546704531, 0.02315056510269642, 0.031392939388751984, -0.034933291375637054, -0.007654622197151184, 0.03473967686295509, 0.01652623899281025, 0.029180223122239113, 0.003910288214683533, -0.010856148786842823, -0.0017874614568427205, 0.004224909003823996, -0.0087886406108737, -0.00691820215433836, 0.005296694580465555, -0.003778907936066389, -0.0007264803862199187, 0.012322074733674526, -0.0029646968469023705, 0.014742235653102398, -0.013525240123271942, 0.005320895928889513, -0.01978999935090542, -0.009922659024596214, 0.015461369417607784, -0.0047054835595190525, -0.02121443673968315, -0.006136836018413305, -0.0007908738916739821, -0.014424157328903675, -0.026939844712615013, 0.007101442664861679, -0.007737599313259125, 0.027105798944830894, 0.023039929568767548, -0.04884575679898262, -0.023053757846355438, 0.00992957316339016, 0.04442032054066658, 0.0116236861795187, -0.0044911266304552555, 0.000411427317885682, 0.0016500309575349092, -0.013781086541712284, -0.008228546008467674, -0.007951956242322922, -0.02211335301399231, 0.022998441010713577, -0.017508134245872498, -0.01999744214117527, 0.007585474755614996, -0.004138474818319082, 0.02232079580426216, -0.009535432793200016, 0.010067868046462536, -0.0059328507632017136, -0.03438011184334755, -0.015226267278194427, 0.011665173806250095, 0.010669451206922531, -0.0006664085085503757, -0.01871129870414734, -0.018116630613803864, -0.004463467746973038, -0.013891722075641155, -0.018047483637928963, -0.0007130830199457705, 0.01772940531373024, 0.0277281254529953, -9.648229752201587e-05, 0.004791918210685253, 0.03670346364378929, -0.015807107090950012, -0.011768895201385021, -0.03435245156288147, -0.002805657684803009, 0.011312521994113922, 0.008698748424649239, -0.020633598789572716, 0.0035680083092302084, 0.009984890930354595, 0.0073849475011229515, -0.010531156323850155, 0.022486750036478043, -0.0019413145491853356, -0.014202885329723358, 0.00015039570280350745, 0.03363331779837608, 0.004041668027639389, 0.006963147781789303, -0.008221630938351154, -0.006783364340662956, -0.002973340218886733, -0.020758062601089478, 0.008795554749667645, 0.01902937702834606, 0.001695841085165739, -0.021753786131739616, -0.020771892741322517, 0.01988680474460125, -0.014202885329723358, -0.0033813100308179855, -0.014645429328083992, -0.02207186445593834, -0.014175226911902428, 0.023800551891326904, -0.004131559748202562, -0.018407050520181656, -0.010323713533580303, -0.02779727429151535, -0.029207881540060043, 0.005417702253907919, 0.02327503077685833, 0.0011945221340283751, 0.0167336817830801, -0.027354730293154716, 0.039331067353487015, -7.768283103359863e-05, -0.014244373887777328, 0.028253646567463875, -0.012736959382891655, -0.01214229129254818, -0.017051760107278824, 0.010904552415013313, 0.026068586856126785, -0.017508134245872498, 0.004038210958242416, 0.0016768255736678839, -0.01564115285873413, -0.008491306565701962, 0.04674367234110832, -0.05426691472530365, -0.037090688943862915, 0.014673087745904922, 0.006161037366837263, 0.004933670163154602, 0.005082337185740471, 0.007945041172206402, 0.020799551159143448, -0.015848595649003983, 0.005324353463947773, -0.005037391558289528, -0.020744234323501587, 0.008719492703676224, 0.01559966430068016, 0.008491306565701962, -0.029290858656167984, 0.002316439524292946, 0.03238866478204727, 0.023925015702843666, 0.0006093618576414883, 0.012280586175620556, 0.004235281143337488, 0.00043670934974215925, 0.028129180893301964, -0.024865422397851944, -0.014673087745904922, -0.012301330454647541, 0.0506989061832428, -0.008470562286674976, 0.01227367203682661, -0.016069866716861725, 0.03313545510172844, 0.01660921610891819, -0.011775810271501541, 0.0009343548445031047, -0.023620767518877983, -0.004636336117982864, -0.04347991570830345, 0.008878531865775585, -0.01107742078602314, 0.0021055396646261215, 0.0005358927301131189, 0.012999719940125942, 0.012384307570755482, -0.016152843832969666, -0.01669219322502613, 0.017300691455602646, 0.04112889990210533, -0.010254566557705402, 0.02673240192234516, -0.017051760107278824, -0.014465645886957645, 0.020481472834944725, -0.0012532974360510707, 0.013055037707090378, 0.00668310048058629, 0.01391246635466814, 0.008028018288314342, 0.0031946119852364063, -0.007855149917304516, -0.00996414665132761, -0.03847363963723183, 0.015973059460520744, 0.0022403772454708815, 0.029041927307844162, 0.011851872317492962, 0.01645709201693535, 0.012861425057053566, 0.017190055921673775, -0.01227367203682661, 0.04884575679898262, -0.005020104814320803, -0.020910188555717468, 0.012287501245737076, -0.0004310911172069609, -0.027327070012688637, -0.010959870181977749, 0.0063200765289366245, 0.039358727633953094, 0.023579278960824013, 0.005697749555110931, 0.03205675631761551, -0.014175226911902428, 0.01276461873203516, -0.02205803617835045, -0.015198608860373497, -4.9429618229623884e-05, 0.02557072602212429, 0.013926295563578606, 0.004249110817909241, 0.014714576303958893, 0.0029093788471072912, 0.0033121625892817974, 0.0016050850972533226, 0.014230544678866863, 0.006247472018003464, -0.005116911139339209, 0.00221790443174541, -0.02992701530456543, -0.028212158009409904, -0.015364562161266804, 0.006641612388193607, -0.019610214978456497, -0.009715216234326363, -0.03404820337891579, 0.00041293990216217935, 0.024090969935059547, 0.011091249994933605, 0.001732143573462963, 0.015004996210336685, 0.0209378469735384, -0.006192153785377741, -0.015959231182932854, -0.019209161400794983, 0.028544066473841667, 0.024630321189761162, -0.0017390582943335176, -0.00944554153829813, -0.012522602453827858, 0.007509412709623575, -0.005065050441771746, 0.003023472148925066, -0.0210069939494133, -0.010614133439958096, -0.004982073325663805, 0.00013570186274591833, -0.0007429028628394008, -0.011775810271501541, 0.029097246006131172, -0.026137735694646835, 0.005742695648223162, 0.01779855228960514, -0.0021245554089546204, 0.01279919221997261, -0.04436499997973442, 0.01564115285873413, 0.05968807637691498, 0.0002443930134177208, -0.001209215959534049, -0.006548263132572174, 0.0026794634759426117, -0.017452815547585487, 0.0027140371967107058, 0.007972700521349907, -0.01876661740243435, -0.007440265268087387, 0.01990063488483429, -0.009016826748847961, 0.012176865711808205, 0.005307066719979048, 0.027880249544978142, 0.011443902738392353, -0.004034753423184156, -0.028627043589949608, 0.007696110755205154, 0.006734961178153753, 0.042567167431116104, 0.02449202537536621, -0.021836763247847557, -0.004408149514347315, 0.007035752758383751, -0.001511736074462533, -0.008263119496405125, -0.003262030892074108, 0.029705742374062538, -0.011354010552167892, 0.0033017906825989485, 0.012080058455467224, 0.01558583416044712, -0.012432711198925972, 0.010351372882723808, 0.022583555430173874, 0.019693192094564438, 0.0015739687951281667, 0.020910188555717468, -0.016069866716861725, 0.004684739280492067, 0.0019395858980715275, 0.020868699997663498, -0.005535253323614597, -0.014230544678866863, -5.985575990052894e-05, 0.014562452211976051, -0.003391682170331478, -0.01760493963956833, -0.007882809266448021, -0.015157120302319527, 0.028004715219140053, 0.018227266147732735, 0.04076933488249779, -0.00951468851417303, 0.043839480727910995, 0.020619768649339676, 0.02226547710597515, 0.017176225781440735, -0.01878044568002224, 0.01866981014609337, 0.009279587306082249, 0.016180502250790596, -0.020329348742961884, 0.004380490630865097, -0.006741876248270273, -0.015461369417607784, 0.01786769926548004, -0.01656772755086422, -0.019057035446166992, 0.01678900048136711, -0.006119548808783293, -0.029180223122239113, -0.024851592257618904, 0.017065590247511864, -0.0012740417150780559, 0.002202346222475171, -0.0006685693515464664, -0.014230544678866863, -0.02200271748006344, -0.003070146543905139, -0.010351372882723808, 0.027479195967316628, 0.0059847114607691765, -0.0021401133853942156, 0.006427254993468523, 0.008346096612513065, 0.018600663170218468, -0.036011990159749985, -0.004916383419185877, 0.0053347256034612656, -0.02445053681731224, -0.04400543496012688, -0.016291137784719467, -0.009245013818144798, 0.00829769391566515, 0.00642034038901329, -0.006454914342612028, -0.00420416472479701, 0.01210080273449421, -0.026234541088342667, -0.043756503611803055, -0.01449330523610115, -0.02313673496246338, -0.007931211963295937, 0.02666325494647026, 0.0035299770534038544, 0.0060331146232783794, -0.018448539078235626, 0.014216715469956398, 0.012398136779665947, -0.0058187576942145824, -0.011955593712627888, -0.02453351393342018, -0.009493944235146046, 0.013691194355487823, 0.02219633013010025, 0.04544370248913765, 0.027091968804597855, -0.02445053681731224, 0.010911467485129833, 0.004411607049405575, -0.03338438645005226, -0.01497733686119318, -0.013843318447470665, 0.002195431385189295, -0.012978975661098957, -5.990978024783544e-05, -0.0003975978179369122, -0.007786002475768328, 0.042816098779439926, -0.029318517073988914, 0.019610214978456497, 0.013628961518406868, 0.037284303456544876, 0.014140652492642403, 0.008422158658504486, 0.015074143186211586, 0.031503576785326004, -0.02204420603811741, 0.00035956670762971044, -0.06123697757720947, 0.011796554550528526, 0.025045204907655716, -0.012985890731215477, 0.034712016582489014, 0.009673727676272392, -0.027230264618992805, -0.034905631095170975, 0.009113633073866367, 0.01057955902069807, 0.02440904825925827, -0.027368558570742607, -0.027977056801319122, -0.019430432468652725, 0.0057184938341379166, -0.014811382628977299, 0.0067107598297297955, -0.013532155193388462, -0.0023873155005276203, 0.011886445805430412, 0.009687556885182858, -0.00037512488779611886, 0.00032931470195762813, -0.009106718935072422, -0.03255461901426315, 0.00443580886349082, 0.0008945951121859252, 0.020578280091285706, 0.029041927307844162, 0.002637975150719285, 0.00695969071239233, -0.018254926428198814, -0.00019944716768804938, 0.007170590106397867, -0.009258843027055264, -0.012086973525583744, 0.012778447940945625, 0.0309503972530365, 0.016844317317008972, 0.01443798653781414, -0.004594848025590181, 0.03587369620800018, 0.033937565982341766, -0.027963226661086082, 0.03432479128241539, -0.0156826414167881, -0.013705023564398289, -0.0025152384769171476, -0.0016059494810178876, 0.001714856713078916, -0.01978999935090542, 0.024768615141510963, -0.02893129177391529, 0.0075993044301867485, 0.03623326122760773, 0.0015489028301090002, 0.015226267278194427, -0.0018842678982764482, -0.029678083956241608, -0.019112354144454002, 0.018047483637928963, -0.0053831287659704685, 0.02450585551559925, -0.02539094164967537, 0.004024381283670664, 0.009293416514992714, -0.004086614120751619, -0.014112994074821472, 0.011271033436059952, 0.007170590106397867, -0.01268164161592722, 0.013559814542531967, 0.038418322801589966, 0.017162395641207695, -0.020841039717197418, -0.021283583715558052, -0.029152562841773033, -0.004017466679215431, 0.0013233092613518238, 0.020647427067160606, 0.03576305881142616, 0.00580838555470109, 0.019402774050831795, -0.013131099753081799, 0.014299691654741764, 0.013227906078100204, -0.024893080815672874, 0.011976337991654873, -0.03200143948197365, -0.019707022234797478, -0.025736680254340172, -0.0018047483172267675, 0.014617769978940487, 0.0019862602930516005, -6.315106293186545e-05, 0.00997797679156065, 0.0330524779856205, -0.026096247136592865, -0.019015546888113022, -0.014036932028830051, -0.02882065623998642, 0.01898788847029209, -0.009735960513353348, 0.009217354469001293, 0.022846316918730736, 0.002784913405776024, -0.019803829491138458, 0.006084975320845842, 0.027091968804597855, -0.00139591412153095, 0.033688634634017944, -0.010856148786842823, -0.011208801530301571, -0.0058153001591563225, -0.00882321409881115, -0.003262030892074108, 0.012073144316673279, -0.015530516393482685, 0.008359926752746105, 0.019665533676743507, 0.006479115691035986, -0.0242292657494545, 0.01676134020090103, -0.015834765508770943, 0.017300691455602646, -0.00469511142000556, 0.019361285492777824, -0.020329348742961884, -0.0018393220379948616, -0.0012550262035802007, 0.02427075430750847, -0.0005371892475523055, 0.015917742624878883, 0.006437627132982016, 0.0007308020722121, -0.005514509044587612, -0.017328349873423576, -0.0094870300963521, 0.016415603458881378, -0.00045939834672026336, 0.020771892741322517, -0.03316311538219452, 0.009604580700397491, 0.02111762948334217, 0.002453005639836192, -0.016304967924952507, -0.022611215710639954, -0.01338003110140562, 0.028516406193375587, -0.020315520465373993, 0.011554538272321224, -0.010150845162570477, 0.0002530364436097443, -0.00030684180092066526, 0.008809384889900684, -0.0020917102228850126, -0.021809104830026627, -0.008767896331846714, -0.012218354269862175, 0.02893129177391529, 0.021822934970259666, 0.017466645687818527, 0.02104848250746727, -0.0016491665737703443, -0.018351731821894646, 9.74546856014058e-05, -0.02445053681731224, 0.008698748424649239, -0.038363002240657806, -0.000696228351444006, -0.028143011033535004, 0.006347735412418842, 0.0018946400377899408, 0.024989888072013855, -0.02221016027033329, 0.003893001237884164, 0.027008993551135063, -0.008512050844728947, 0.015572004951536655, -0.007723769638687372, -0.016028378158807755, -0.015779446810483932, 0.013276309706270695, -0.005452276207506657, -0.019803829491138458, 0.014313521794974804, -0.010137015953660011, -0.007398776710033417, -0.01984531804919243, 0.00664506945759058, 0.00041293990216217935, -0.007108357734978199, -0.026068586856126785, 0.025805827230215073, -0.011208801530301571, 0.013801829889416695, -0.00607460318133235, -0.011022103019058704, 0.03000999242067337, -0.018407050520181656, -0.0058187576942145824, 0.020550621673464775, 0.0027330529410392046, 0.014576281420886517, -0.006022742483764887, -0.012584835290908813, -0.0021280127111822367, -0.011181142181158066, -0.015074143186211586, 0.011706662364304066, -0.005732323508709669, 0.00305804586969316, 0.014230544678866863, -0.022887805476784706, 0.008843958377838135, -0.0028143010567873716, -0.008926935493946075, 0.0066519845277071, 0.022472919896245003, -0.003827311098575592, 0.03219505026936531, -0.010420519858598709, 0.021477196365594864, -0.010683280415832996, -0.01880810596048832, -0.0025757423136383295, -0.012488028965890408, -0.028267476707696915, -0.0022576642222702503, -0.0210069939494133, 0.04890107363462448, 0.0008029747405089438, -0.01663687638938427, -0.020633598789572716, -0.001612864201888442, -0.000164009106811136, -0.019665533676743507, 0.019140012562274933, 0.014797553420066833, 0.031614214181900024, 0.02453351393342018, -0.01325556542724371, 0.05880298838019371, -0.03225037083029747, 0.02646964229643345, -0.006292417645454407, -4.532399179879576e-05, 0.010282224975526333, 0.04079699516296387, -0.014811382628977299, -0.007986529730260372, 0.0016007634112611413, -0.037201326340436935, 0.0219888873398304, 0.005078880116343498, -0.0018375933868810534, 0.007066869176924229, 0.00784132070839405, -0.00883012916892767, 0.0027468823827803135, -0.017093248665332794, -0.014465645886957645, 0.004940585233271122, -0.011810383759438992, -0.04768408089876175, 0.006499859970062971, 0.00275206845253706, 0.00345910107716918, -0.008484391495585442, 0.005901734344661236, 0.007274311501532793, -0.017037929967045784, 0.00771685503423214, -0.00829769391566515, 0.00721899326890707, 0.005704664159566164, -0.025072863325476646, 0.008318438194692135, -0.019679363816976547, -0.0018756245262920856, 0.026137735694646835, 0.0007770444499328732, -0.0032153562642633915, -0.032637596130371094, -0.0012316888896748424, -0.02442287839949131, 0.006821395829319954, 0.012709300965070724, -0.01271621510386467, -0.013760342262685299, -0.010330628603696823, 0.02678772062063217, -0.018476197496056557, 0.009079059585928917, -0.045941565185785294, -0.008837043307721615, -0.02764514833688736, 0.015323074534535408, -0.002252478152513504, -0.01211463287472725, -0.020730404183268547, -0.008346096612513065, 0.0026103160344064236, -0.007032295223325491, -0.012861425057053566, -0.018490027636289597, -0.020564449951052666, 0.014382668770849705, 0.0019067408284172416, -0.008926935493946075, 0.006945861037820578, -0.012328989803791046, 0.012252927757799625, -0.024989888072013855, 0.0017502947011962533, 0.18476197123527527, -0.004843778442591429, 0.020453814417123795, 0.03407585993409157, -0.002314710756763816, 0.01116039790213108, 0.011436987668275833, -0.011547623202204704, -0.008173228241503239, 0.014839041978120804, 0.005856788717210293, 0.02212718315422535, -0.020633598789572716, 0.004639793653041124, -0.003505775472149253, 0.0223346259444952, -0.01886342279613018, -0.0463564470410347, -0.026110075414180756, -0.0030960768926888704, 0.00753015698865056, 0.01676134020090103, -0.019485751166939735, -0.02669091522693634, 0.04237355664372444, -0.007080698385834694, 0.006558635272085667, 0.01792301796376705, 0.03404820337891579, -0.020426155999302864, -0.02790790982544422, 0.0008945951121859252, -0.007744513917714357, 0.022929294034838676, -0.011457731947302818, -0.008346096612513065, 0.02126975543797016, -0.0018566088983789086, 0.04137783125042915, -0.016014548018574715, 0.023800551891326904, -0.01333854254335165, -0.013352371752262115, -0.020329348742961884, 0.00439432030543685, 0.0355694480240345, -0.007730684708803892, -0.015157120302319527, -0.006434170063585043, 0.010932211764156818, -0.02532179467380047, 0.009162036702036858, 0.01558583416044712, 0.025861145928502083, 0.0017243644688278437, -0.013566728681325912, -0.00531052378937602, 0.016263479366898537, 0.01387789286673069, 0.019734680652618408, -0.02097933553159237, 0.026206882670521736, -0.014728406444191933, 0.0313652828335762, -0.01763259805738926, 0.00033233992871828377, -0.030618488788604736, 0.0031859686132520437, 0.012868340127170086, -0.03465669974684715, -0.0023752148263156414, -0.005611315369606018, -0.005791098810732365, -0.0008803334203548729, -0.008062592707574368, -0.0020709659438580275, 0.012826851569116116, 0.011485391296446323, -2.8577343982760794e-05, 0.02764514833688736, -0.014161396771669388, -0.017065590247511864, -0.0029456813354045153, -0.008560453541576862, -0.020564449951052666, -0.04184803366661072, 0.024837762117385864, -0.019112354144454002, 0.0028436887077987194, -0.02976106107234955, -0.009957232512533665, -0.00447038235142827, -0.00041596509981900454, 0.021670809015631676, 0.02320588380098343, 0.006821395829319954, -0.006088432855904102, 0.02976106107234955, -0.002102082362398505, -0.014202885329723358, -0.023593109101057053, 0.06909213215112686, 0.020661257207393646, 0.015074143186211586, 0.004197250120341778, 0.01329705398529768, -0.009203525260090828, -0.0023319977335631847, -0.0004498905618675053, -0.0070945280604064465, -0.011367839761078358, -0.011865701526403427, 0.009383308701217175, -0.015392221510410309, 0.012169950641691685, 0.025999439880251884, -0.00779291708022356, -0.024879250675439835, 0.0003491945972200483, -0.003574922913685441, -0.0006188696715980768, -0.01324865035712719, -0.021684639155864716, 0.012667812407016754, -0.016028378158807755, -0.010662536136806011, -0.009528517723083496, -0.0070945280604064465, -0.005175686441361904, -0.011264119297266006, 0.02981637977063656, -0.029484471306204796, 0.005555997136980295, -0.013698109425604343, 0.016415603458881378, -0.007903553545475006, -0.0016517596086487174, -0.032831206917762756, -0.019098524004220963, 0.012128462083637714, -0.013573643751442432, 0.011423158459365368, -0.006800651550292969, -0.016858147457242012, -0.005030476953834295, -0.012985890731215477, -0.005320895928889513, -0.002368299989029765, -0.012564091011881828, -0.019402774050831795, -0.009756704792380333, 0.008774811401963234, 0.015129460953176022, -0.003540349192917347, 0.011900275945663452, -0.021546345204114914, -0.014023101888597012, -0.011208801530301571, -0.0062025259248912334, -0.0008111859788186848, -0.05542859435081482, 0.012923657894134521, 0.027465365827083588, -0.0009758433443494141, -0.018282584846019745, -0.011409328319132328, -0.1764642894268036, -0.0012991076800972223, -0.020592110231518745, -0.015101802535355091, 0.031724847853183746, 0.02451968379318714, 0.024671809747815132, -0.0026293315459042788, -0.001276634749956429, 0.01005403883755207, -0.01990063488483429, -0.014949677512049675, -0.03352268040180206, 0.003175596473738551, -0.008463647216558456, 0.018642151728272438, 0.012377392500638962, 0.0064894878305494785, 0.040326789021492004, 0.013103441335260868, 0.023551620543003082, -0.02551540732383728, 0.014673087745904922, -0.008449818007647991, -0.010261480696499348, 0.03847363963723183, 0.0013380030868574977, -0.004024381283670664, -0.008518964983522892, -0.03675878420472145, 0.006835225038230419, -0.007889723405241966, 0.02097933553159237, -0.0007446315721608698, 0.016097525134682655, -0.010143930092453957, -0.03626092150807381, -0.014756064862012863, -0.030618488788604736, -0.002468563849106431, 0.0070426673628389835, 0.04223525896668434, 0.01279227714985609, 0.0005817029159516096, 0.007163675501942635, 0.028170669451355934, 0.021352730691432953, -0.02901426889002323, 0.018130460754036903, -0.019541068002581596, 0.029733402654528618, -0.022708021104335785, -0.008712578564882278, 0.004238738678395748, 0.027354730293154716, -0.0058153001591563225, -0.02115911804139614, 0.01785387098789215, -0.005362384486943483, 0.0058187576942145824, -0.008498221635818481, -0.04104592278599739, -0.0062751309014856815, 0.00833918247371912, -0.002466835081577301, 0.0014408598653972149, -0.019416602328419685, 0.007163675501942635, -0.04735217243432999, 0.019568728283047676, -0.011181142181158066, -0.0018082057358697057, 0.00030986699857749045, 0.011388584040105343, -0.0017874614568427205, 0.004729685373604298, -0.029733402654528618, -0.008173228241503239, -0.002539440058171749, -0.027271753177046776, 0.012086973525583744, 0.006900914944708347, 0.012453455477952957, 0.002095167525112629, -0.019444262608885765, -0.013691194355487823, 0.010137015953660011, 0.011851872317492962, -0.0026950216852128506, -0.034712016582489014, 0.0253494530916214, -0.022846316918730736, -0.0087886406108737, 0.0011271033436059952, -0.005836044438183308, 0.013552899472415447, 0.009708301164209843, -0.021560173481702805, 0.004525700584053993, 0.0001966380514204502, 0.013594388030469418, -0.014520963653922081, -0.050422318279743195, 0.002821215894073248, 0.02753451280295849, 0.010828490369021893, -0.038252368569374084, 0.004888724535703659, 0.046135175973176956, 0.01792301796376705, -0.0275898315012455, 0.008021104149520397, -0.004850693512707949, 0.018503855913877487, 0.006295875180512667, 0.024768615141510963, 0.0032482012175023556, -0.016042208299040794, 0.005590571090579033, -0.005618229974061251, 0.04414372891187668, -0.009576921351253986, -0.00882321409881115, 0.009217354469001293, 0.009500859305262566, -0.017411326989531517, -0.124907948076725, -0.015350732952356339, -0.01655389927327633, 0.022708021104335785, -0.00261895963922143, 0.013711938634514809, -0.012930572964251041, 0.006994264200329781, -0.0035472640302032232, 0.02895895019173622, -0.00935564935207367, -0.007205164059996605, -0.009189696051180363, -0.012951316311955452, -0.03576305881142616, -0.0020778807811439037, -0.012218354269862175, -0.006983892060816288, -0.018531516194343567, 0.04569263383746147, 0.016263479366898537, 0.008401414379477501, -0.015737958252429962, -0.005614772439002991, -0.024823933839797974, 0.002186788013204932, -0.0310886912047863, 0.004342459607869387, 0.009818937629461288, 0.015226267278194427, 0.006247472018003464, -0.018531516194343567, 0.005289779510349035, -0.011803468689322472, 0.02125592529773712, -0.018476197496056557, 0.0012481113662943244, -0.025183500722050667, 0.03438011184334755, -0.013974699191749096, 0.0014676545979455113, 0.0109944436699152, 0.024893080815672874, -0.003931032493710518, -0.007855149917304516, -0.0034539150074124336, -0.04793300852179527, 0.020799551159143448, 0.0033778527285903692, -0.027188776060938835, -0.03974595293402672, -0.004854150582104921, -0.03971829265356064, -0.0029232082888484, 0.028571724891662598, -0.004342459607869387, -0.003778907936066389, 0.013075781986117363, 0.000470202649012208, 0.002131470013409853, -0.009058315306901932, -0.00305631710216403, 0.007543986197561026, 0.01551668718457222, 0.01063487771898508, -0.007910467684268951, -0.032665252685546875, -0.006641612388193607, 0.02876533754169941, -0.022984610870480537, 0.005154942162334919, 0.005327810533344746, -0.021919740363955498, 0.01445181667804718, -0.020412325859069824, 0.0017010271549224854, -0.003730504773557186, 0.009376393631100655, -0.0010778357973322272, 0.003253387287259102, -0.016913466155529022, -0.026995163410902023, -0.029235539957880974, -0.002366571454331279, 0.009321075864136219, 0.0276589784771204, 0.002015648176893592, -0.0012005725875496864, 0.013739597983658314, -0.03009296953678131, 0.025833485648036003, 0.015973059460520744, 0.00026103161508217454, 0.009072145447134972, -0.007543986197561026, -0.006295875180512667, 0.015876254066824913, -0.029097246006131172, 0.007115272339433432, 0.024976057931780815, -0.01981765776872635, -0.01338003110140562, -0.046052198857069016, 0.007008093874901533, -0.009556177072227001, -0.010821575298905373, -0.0003695066552609205, -0.005023561883717775, 0.0001392672857036814, -0.00022170400188770145, -0.012999719940125942, 0.020550621673464775, -0.031531237065792084, -0.018655981868505478, -0.006046944297850132, 0.009729045443236828, -0.009528517723083496, -0.023772891610860825, -0.007709940429776907, -0.008104080334305763, 0.0074333506636321545, 0.013310883194208145, 0.010987529531121254, -0.017217714339494705, -0.0061506652273237705, 0.020564449951052666, -0.0020070045720785856, -0.007931211963295937, -0.010455094277858734, 0.016069866716861725, -0.006631240248680115, -0.02785259112715721, -0.008850873447954655, -0.0015670539578422904, 0.006458371412009001, -0.0026621767319738865, -0.03321843221783638, 0.01760493963956833, -0.004511870909482241, 0.023648425936698914, 0.029429152607917786, 0.04762876033782959, -0.0016500309575349092, -0.016083696857094765, 0.018213437870144844, -0.03255461901426315, -0.003305247984826565, -0.017273033037781715, -0.03189080208539963, 0.006714216899126768, 0.008837043307721615, 0.014576281420886517, 0.021491026505827904, 0.016111355274915695, -0.01654006913304329, -0.015959231182932854, -0.01554434560239315, -0.023081418126821518, -0.01985914632678032, -0.008691834285855293, -0.002539440058171749, -0.027091968804597855, 0.027188776060938835, -0.004055497702211142, 0.004249110817909241, -0.011720492504537106, 0.011478476226329803, 0.0033294495660811663, -0.022445261478424072, 0.02439521998167038, 0.009576921351253986, -0.011236459948122501, -0.02551540732383728, 0.008975338190793991, 0.011865701526403427, 0.005957052577286959, 0.0331907756626606, 0.002553269499912858, -0.029041927307844162, 0.01386406272649765, -0.00947319995611906, 0.022984610870480537, 0.026372836902737617, 0.014548623003065586, -0.012985890731215477, 0.02111762948334217, 0.027257923036813736, 0.0015731044113636017, 0.003893001237884164, 0.004072784446179867, 0.0031479375902563334, 0.00015990347310435027, -0.01386406272649765, -0.002112454501911998, -0.01108433585613966, -0.004733142908662558, 0.0021781446412205696, -0.0003375259693711996, 0.0006858562119305134, 0.01441032811999321, 0.0013812202960252762, 0.005839501973241568, 0.010033294558525085, -0.020509133115410805, -0.00043152327998541296, -0.016125185415148735, -0.0574200414121151, 0.015212438069283962, 0.0012074873084202409, -0.033688634634017944, 0.010856148786842823, 0.02201654762029648, -0.01658155769109726, 0.02653878927230835, 0.025778168812394142, 0.013407689519226551, -0.0357077419757843, 0.001977616921067238, -0.022694192826747894, -0.019222989678382874, -0.021670809015631676, 0.021338902413845062, -0.0017165853641927242, 0.012536431662738323, 0.028115352615714073, -0.002539440058171749, 0.019278308376669884, 0.010710939764976501, 0.02646964229643345, -0.016802828758955002, 0.0033277207985520363, 0.01447947509586811, -0.013815660029649734, 0.0057219513691961765, -0.01157528255134821, 0.0014114722143858671, -0.011098165065050125, -0.008885446935892105, 0.016221990808844566, 0.0034867599606513977, 0.01678900048136711, 0.08574283123016357, 0.02659410797059536, -0.000521198904607445, -0.013227906078100204, -0.00833918247371912, -0.010614133439958096, 0.013995443470776081, 0.0016699108527973294, 0.010572644881904125, -0.036011990159749985, 0.028156839311122894, -0.0027658978942781687, 0.005919021554291248, -0.04135017469525337, -0.003073604078963399, 0.015157120302319527, -0.000973250309471041, -0.004809204954653978, 0.006900914944708347, 0.0009274401236325502, 0.016194332391023636, 0.01501882541924715, 0.022998441010713577, 0.012619408778846264, -0.019624045118689537, -0.003841140540316701, 0.03587369620800018, 0.010655621066689491, -0.012660897336900234, -0.03518221899867058, -0.010565729811787605, -0.019388943910598755, -0.015945401042699814, -0.027147287502884865, 0.0057219513691961765, 0.011831128038465977, -0.017369838431477547, -0.002119369339197874, 0.012405051849782467, 0.0005354605382308364, 0.030618488788604736, -0.006230184808373451, -0.019222989678382874, -0.040520403534173965, -0.012439625337719917, -0.0021089971996843815, -0.014009272679686546, 0.006575922016054392, -0.03335672989487648], "43e2934d-8b5a-4253-a65c-6963192bf333": [0.001457583624869585, 0.008480486460030079, -0.0009831737261265516, -0.01965693011879921, -0.026697827503085136, 0.005882683210074902, -0.002512736711651087, -0.03931386023759842, -0.01908109523355961, -0.005254499148577452, 0.024119654670357704, 0.01088852621614933, -0.016502922400832176, 0.015102595090866089, 0.007610189728438854, -0.018007947131991386, 0.025389110669493675, 0.005526057910174131, 0.01999719627201557, -0.015900911763310432, -0.019643843173980713, 0.0002695139264687896, -0.012040196917951107, -0.006432344205677509, -0.009390044957399368, 0.018439823761582375, 0.005028745159506798, -0.026593130081892014, -0.01015564426779747, -0.017314326018095016, 0.0011410376755520701, -0.009298434481024742, -0.02745688334107399, -0.02664547972381115, -0.027195140719413757, 0.0036774948239326477, -0.0016015424625948071, -0.012877775356173515, 0.0023900445085018873, -0.007695256266742945, 0.03541388362646103, 0.014265015721321106, 0.006792241707444191, -0.0027172237168997526, -0.021449873223900795, 0.03394811972975731, 0.03130451217293739, -0.03046693280339241, -0.01208600215613842, 0.030440758913755417, 0.03507361561059952, 0.019486796110868454, -0.006451975088566542, -0.008159850724041462, 0.0033486797474324703, -0.0014813040615990758, -0.017013320699334145, 0.02282402478158474, 0.011706474237143993, -0.007040897849947214, 0.01328347809612751, 0.008022435940802097, 0.0008670250535942614, 0.007669081911444664, -0.017471373081207275, 0.007040897849947214, 0.024302875623106956, 0.014382800087332726, -0.010666043497622013, -0.017314326018095016, 0.008755316957831383, -0.010371582582592964, -0.008696424774825573, -0.004227156285196543, 0.034968920052051544, -0.0065435850992798805, -0.0072306618094444275, -0.007531666662544012, 0.007152138743549585, 0.0008809301652945578, 6.640716310357675e-05, -0.011673755943775177, -0.03112129122018814, 0.011392381973564625, 0.01625426486134529, -0.013191867619752884, 0.016751578077673912, -0.002406403422355652, -0.012517878785729408, -0.041146062314510345, 0.01803412102162838, 0.021017996594309807, 0.0039948588237166405, -0.011111008003354073, -0.005267586093395948, -0.003870530752465129, -0.015495209954679012, 0.019866324961185455, -0.012131807394325733, -0.004227156285196543, 0.0010207992745563388, -0.0027155878487974405, -0.013172237202525139, -0.005215237382799387, -0.012249591760337353, 0.010384669527411461, 0.023962609469890594, 0.009108670987188816, 0.02761393040418625, -0.00092428142670542, -0.009651788510382175, 0.04876279830932617, -0.009573264978826046, -0.02332133799791336, 0.020481422543525696, -0.0066319238394498825, 0.01815190538764, -0.02923673950135708, -0.028163591399788857, -0.0008249006932601333, 0.01237391959875822, -0.006330918520689011, -0.001671068137511611, -0.02046833373606205, 0.03337228298187256, -0.01884552463889122, -0.007459687069058418, 0.00418135104700923, -0.01686936244368553, -0.00930497795343399, 0.02907969243824482, 0.007813041098415852, 0.02312503010034561, 0.008441224694252014, -0.01668614149093628, 0.008748773485422134, -0.02957700565457344, -0.005908857565373182, -0.0013471606653183699, -0.011268054135143757, 0.02385791204869747, 0.012059827335178852, -0.0009390044724568725, 0.02108343131840229, 0.01478850282728672, -0.001064968528226018, -0.006363636814057827, -0.014644543640315533, 0.008179481141269207, -0.004354755859822035, 0.0051301708444952965, -6.46690241410397e-05, -0.029053518548607826, -0.028242113068699837, -0.018256602808833122, 0.0231642909348011, -0.0027155878487974405, 0.003939238376915455, 0.016594532877206802, -0.005840149708092213, 0.036513205617666245, 0.02648843266069889, 0.0021381163969635963, 0.013924749568104744, -0.028713252395391464, 0.036853473633527756, 0.017170367762446404, -0.014971722848713398, -0.02551998198032379, 0.01609721966087818, 0.010299603454768658, 0.014029446989297867, -0.024420659989118576, 0.017510633915662766, 0.017248891294002533, -0.012210329994559288, -0.004076653625816107, 0.010122925974428654, -0.024616967886686325, -0.009965880773961544, 0.008277635090053082, -0.000567656010389328, 0.02127973921597004, 0.0316709540784359, -0.0303098876029253, -0.0069100260734558105, 0.009095583111047745, 0.01613648049533367, 0.015063333325088024, 0.011909324675798416, 0.011405468918383121, 0.045857444405555725, -0.006379995495080948, -0.022182753309607506, -0.6357223987579346, -0.001457583624869585, -0.01208600215613842, -0.006733349058777094, -0.018282776698470116, 0.01694788597524166, 0.002123393351212144, 0.012589857913553715, -0.03352933004498482, 0.019512971863150597, -0.006962374784052372, 0.013676092959940434, 0.007014723494648933, -0.001354522188194096, 0.01702640950679779, -0.015887824818491936, 0.017078757286071777, -0.03763870149850845, -0.03133068606257439, 0.020101893693208694, 0.016921712085604668, 0.042768873274326324, -0.013015191070735455, -0.011078289709985256, 0.00048095351667143404, -0.010770740918815136, -0.004295863676816225, -0.008624445647001266, 0.009226455353200436, 0.054809071123600006, -0.015298902057111263, -0.009547091089189053, 0.01864921860396862, -0.022339800372719765, 0.037167564034461975, 0.006137882824987173, -0.007675625383853912, 0.009409675374627113, 0.01137275155633688, 0.033921945840120316, -0.021188128739595413, 0.0072306618094444275, 0.01876700296998024, 0.0036644076462835073, 0.02957700565457344, -0.024185091257095337, -0.008585183881223202, 0.005372283514589071, -0.0007128418073989451, -0.017733115702867508, 0.0016620706301182508, -0.0023147931788116693, -0.0013741529546678066, 0.020703904330730438, 0.0156391691416502, 0.012727273628115654, 0.003867258783429861, -0.0010347043862566352, -0.011438187211751938, -0.01761533133685589, -0.01202710997313261, 0.017811639234423637, 0.009082496166229248, -0.013911662623286247, -0.0016162655083462596, 0.004793175961822271, -0.008696424774825573, -0.023255901411175728, -0.015652256086468697, -0.01305445283651352, 0.015181117691099644, 0.0067268055863678455, -0.03842393308877945, -0.014696892350912094, -0.007466230541467667, 0.031801823526620865, 0.013309651985764503, -0.005087637342512608, 0.008172937668859959, 0.008735686540603638, -0.0040406640619039536, 0.016633793711662292, -0.03012666665017605, -0.03004814311861992, 0.028215939179062843, -0.016620706766843796, -0.019211966544389725, -0.010934330523014069, 0.0025961673818528652, 0.011693386361002922, -0.0017913064220920205, 0.005807431880384684, -0.001917270477861166, -0.0366964265704155, -0.007970087230205536, -0.002406403422355652, -0.01629352755844593, -7.335972622968256e-05, -0.0030329518485814333, -0.027640104293823242, -0.015848563984036446, -0.03625146299600601, -0.016385138034820557, -0.002249357523396611, 0.02714279107749462, 0.0003112292615696788, 0.008644076064229012, 0.013237672857940197, 0.02787567302584648, -0.002304977970197797, -0.004057022742927074, -0.050411779433488846, 0.001887824386358261, -0.014592194929718971, 0.004498715046793222, -0.022771677002310753, 0.011052115820348263, -0.010901613160967827, 0.022339800372719765, -0.008925450034439564, 0.013047909364104271, -0.006177144590765238, -0.013558308593928814, -0.01603178307414055, 0.006772610824555159, -0.008199112489819527, 0.008408507332205772, 0.0019712550565600395, -0.016803927719593048, -0.0056536574847996235, 0.005990652367472649, -0.004390745889395475, 0.005283945240080357, -0.00552278570830822, -0.023046506568789482, -0.013623744249343872, 0.015037158504128456, -0.008401963859796524, -0.010450105182826519, 0.0012146530207246542, -0.004230428021401167, 0.001065786462277174, 0.024957234039902687, 0.013427437283098698, 0.012838514521718025, -0.021541481837630272, -0.030571630224585533, -0.025925684720277786, -0.013303108513355255, 0.012812339700758457, -0.012622576206922531, 0.008761860430240631, -0.016084132716059685, 0.03376489877700806, -0.029472308233380318, -0.012557139620184898, 0.015612994320690632, 0.004292591940611601, -0.00924608577042818, -0.014566021040081978, -0.0005831970483995974, 0.03151390701532364, -0.01388548780232668, -0.0002183921606047079, -0.0017487731529399753, -0.01849217154085636, -0.025964945554733276, 0.031487733125686646, -0.02777097560465336, -0.05695536732673645, 0.0023573266807943583, 0.005440990906208754, -0.005581678356975317, 0.006713718641549349, 0.009056322276592255, 0.0017160552088171244, -0.02834681048989296, 0.002412947127595544, -0.003628418082371354, -0.014853938482701778, 0.008820752613246441, 0.03140920773148537, 0.0021512035746127367, -0.023687778040766716, 0.012112176045775414, 0.01605795882642269, 0.019761627539992332, -0.010319233871996403, 0.005035288631916046, 0.03201121836900711, 0.016162656247615814, 0.014356626197695732, -0.031723301857709885, -0.015416686423122883, -0.003621874377131462, 0.011300771497189999, -1.4045703210285865e-05, 0.02432904951274395, -0.01688244938850403, 0.014094882644712925, 0.02664547972381115, 0.0028186494018882513, 0.012877775356173515, -0.03625146299600601, -0.012236504815518856, -0.039758823812007904, 0.01625426486134529, -0.01702640950679779, -0.0015033887466415763, -0.02460388094186783, 0.011326946318149567, 0.01185697689652443, -0.007714887149631977, -0.004557607229799032, 0.021763963624835014, 0.016437485814094543, -0.0004858612082898617, 0.02618742734193802, -0.0029200748540461063, -0.004021033179014921, 0.0037494744174182415, -0.002025239635258913, 0.025454547256231308, 0.006949287373572588, 0.013322739861905575, 0.01583547703921795, 0.0011140453862026334, -0.02023276500403881, -0.006494508124887943, -0.0162150040268898, 0.014212667010724545, -0.014880112372338772, 0.025153541937470436, 0.00026010751025751233, 0.029262913390994072, -0.00624585198238492, 0.03865950182080269, -0.016895536333322525, 0.02389717288315296, 0.0023246086202561855, -0.00016543001402169466, 0.018374387174844742, 0.0007161136018112302, -0.006252395920455456, 0.022235102951526642, 0.016005609184503555, 0.059677496552467346, 0.012635663151741028, -0.004825894255191088, 0.030074317008256912, 0.006016826722770929, 0.0011819350766018033, -0.042611826211214066, -0.010993223637342453, -0.00682495953515172, -0.01376770343631506, 0.01567842997610569, 0.005506427027285099, 0.02131900005042553, 0.007171769626438618, -0.007158682215958834, -0.017510633915662766, 0.007636364083737135, 0.0056045809760689735, 0.0015287450514733791, 0.0036742230877280235, -0.02771862782537937, -0.029786400496959686, -0.0008833840256556869, 0.008022435940802097, -0.028137415647506714, -0.03154008090496063, -0.027326012030243874, -0.013872400857508183, 0.03441925719380379, -0.0031392849050462246, -0.012439355254173279, 0.03617293760180473, 0.019787801429629326, -0.010508998297154903, -0.02664547972381115, -0.008984342217445374, 0.034733351320028305, 0.002125029219314456, 0.0009766301373019814, -0.02729983814060688, -0.04148633033037186, -0.002620705869048834, -0.003837812691926956, 0.018780089914798737, -0.01688244938850403, -0.015691516920924187, -0.001912362757138908, 0.006772610824555159, 0.011058659292757511, 0.006206590682268143, 0.030100492760539055, 0.009082496166229248, 0.034000467509031296, 0.004649217240512371, 0.004371115006506443, -0.013355457223951817, -0.005094181280583143, 0.011058659292757511, 0.0606197752058506, 0.00348445912823081, 0.01183734554797411, -0.0156391691416502, -0.007871933281421661, 0.0008064968860708177, -4.759435978485271e-05, 0.009638700634241104, -0.020245851948857307, -0.0066940877586603165, 0.006000467576086521, 0.005254499148577452, 0.014840851537883282, -0.004845524672418833, 0.018675392493605614, 0.004367843270301819, -0.005349380895495415, -0.020363638177514076, 0.008421594277024269, 0.003167095361277461, 0.04606683924794197, 0.015927085652947426, 0.010338864289224148, -0.0014330451376736164, 0.0001934447354869917, -0.014029446989297867, -0.01799486018717289, -0.036591727286577225, 0.019931761547923088, -0.01442206185311079, 0.0009520916501060128, -0.004096284508705139, 0.02027202770113945, 0.002808833960443735, 0.02777097560465336, 9.718246292322874e-05, 0.017942510545253754, -0.01143164373934269, 0.009769572876393795, -0.021057257428765297, 0.02108343131840229, 0.011608320288360119, 0.022850200533866882, -0.005840149708092213, 0.0013267119647935033, -0.0015115682035684586, 0.022078055888414383, -0.015743866562843323, 0.01656835712492466, -0.012465530075132847, -0.007269923109561205, 0.019840151071548462, 4.992039976059459e-05, 0.020206591114401817, 3.614308297983371e-05, 0.0324300080537796, 0.01442206185311079, 0.030362235382199287, 0.0016563449753448367, -0.012930124066770077, 0.04174807295203209, 0.022235102951526642, 0.0038410844281315804, -0.01583547703921795, -0.008814209140837193, 0.001388058066368103, -0.015887824818491936, 0.0065566725097596645, -0.00177167565561831, -0.020638467743992805, -0.00026153892395086586, 0.0060070110484957695, -0.030728675425052643, -0.00884038396179676, 0.0041028279811143875, 0.000888291688170284, 0.014683805406093597, -0.020376725122332573, -0.011444730684161186, -0.01575695350766182, 0.015089507214725018, -0.01838747411966324, 0.01807338185608387, -0.0027908391784876585, -0.0156391691416502, -0.01698714680969715, -0.0012645478127524257, 0.011915869079530239, -0.025153541937470436, -0.01243281178176403, 0.017157280817627907, -0.023727040737867355, -0.013872400857508183, -0.01583547703921795, -0.002759756986051798, 0.018753916025161743, 0.008630989119410515, -0.014265015721321106, -0.0016980604268610477, 0.020455246791243553, -0.004495442844927311, -0.028085067868232727, -0.015089507214725018, -0.0011892965994775295, -0.017445197328925133, 0.012223416939377785, 0.0049469503574073315, 0.005045104306191206, -0.027509232982993126, 0.03905211761593819, -0.008500116877257824, 0.01009675208479166, -0.019971022382378578, -0.02610890567302704, 0.0026730545796453953, 0.01683010160923004, 0.0015786399599164724, 0.03549240529537201, 0.008329983800649643, -0.011915869079530239, 0.004910960793495178, -0.0033895771484822035, -0.01857069507241249, -0.013348913751542568, -0.013060996308922768, 0.011974761262536049, 0.002669782843440771, 0.03690582141280174, -0.0024423932190984488, 0.005539144854992628, 0.032534707337617874, -0.03575414791703224, 0.00765599450096488, 0.028948821127414703, 0.012982472777366638, 0.028477683663368225, -0.003579341107979417, 0.02915821596980095, 0.018439823761582375, -0.027404535561800003, 0.001603996381163597, -0.03735078498721123, 0.015547558665275574, 0.010842720977962017, 0.004138817545026541, 0.01888478733599186, 0.018086468800902367, -0.015966348350048065, -0.018374387174844742, -0.0016849732492119074, 0.006484692916274071, 0.016437485814094543, 0.03248235583305359, -0.020834775641560555, -0.02092638611793518, 0.0032537977676838636, -0.026619303971529007, 0.003345408011227846, -0.005306847859174013, 2.494741784175858e-05, 0.01430427748709917, -0.0036153309047222137, -0.006628651637583971, -0.030519282445311546, -0.01799486018717289, -0.03248235583305359, -0.008500116877257824, 0.007191400043666363, 0.008513204753398895, 0.017275065183639526, 0.004377658478915691, 0.03345080837607384, -0.03452395647764206, -0.019015658646821976, 0.018937135115265846, 0.00021532484970521182, -0.014631456695497036, 0.02506193146109581, 0.027273662388324738, 0.029629353433847427, 0.00919373705983162, 0.00944239366799593, 0.03703669086098671, 0.01160177681595087, 0.005967749748378992, 0.02459079399704933, -0.0002768754493445158, -0.013859313912689686, -0.03248235583305359, -0.008833840489387512, -0.005123627372086048, -0.004158448427915573, 0.005169432144612074, -0.02143678441643715, -0.006278569810092449, 0.02440757304430008, 0.00475064292550087, 0.004858612082898617, -0.01985323801636696, -0.02482636272907257, -0.020128067582845688, 0.022562282159924507, 0.003131105564534664, 0.021371349692344666, -0.01995793543756008, -0.007407338358461857, 0.010849264450371265, -0.006347277667373419, -0.0014011452440172434, 0.008205655962228775, 0.01645057275891304, 0.003988315351307392, 0.0054213604889810085, 0.011817715130746365, 0.01795559749007225, -0.016921712085604668, -0.00889927614480257, -0.029289087280631065, 0.002337695797905326, -0.008637532591819763, 0.016398224979639053, 0.021502221003174782, -0.028058893978595734, 0.021541481837630272, -0.022994158789515495, 0.027901846915483475, 0.01633278839290142, 0.004066838417202234, 0.02169852890074253, -0.019015658646821976, -0.015521383844316006, -0.024185091257095337, -0.0032472540624439716, 0.00961252674460411, -0.004485627636313438, -0.0010371583048254251, 0.020573031157255173, 0.007590558845549822, -0.023334424942731857, -0.026436084881424904, -0.0006887123454362154, -0.03533536195755005, 0.03502126783132553, 0.00030223184148781, 0.030493106693029404, 0.02220892906188965, 0.03193269670009613, -0.008159850724041462, 0.00019385371706448495, 0.008310353383421898, 0.0008134494419209659, 0.02803271822631359, -0.009488198906183243, -0.010050946846604347, -0.005876139737665653, -0.013545221649110317, -0.023386772722005844, -0.01571769081056118, -0.01845291070640087, 0.024800188839435577, -0.00459686852991581, -0.005656929221004248, -0.018295863643288612, 0.004731012042611837, -0.035152141004800797, 0.01698714680969715, -0.013623744249343872, 0.022562282159924507, -0.016751578077673912, -0.012210329994559288, -0.023779388517141342, 0.022915635257959366, -0.001032250584103167, 0.012367376126348972, 0.009697593748569489, 0.0033863054122775793, -0.03617293760180473, 0.0027139519806951284, -0.019238140434026718, 0.028320636600255966, 0.021017996594309807, 0.02761393040418625, -0.03622528910636902, 0.006219677627086639, 0.023386772722005844, 0.013728441670536995, 0.0002875087666325271, -0.009887357242405415, -0.0008093597134575248, 0.02436831220984459, -0.013754616491496563, -0.02143678441643715, -0.0029397057369351387, -0.017131106927990913, 0.00475064292550087, 0.013754616491496563, -0.0063734520226716995, -0.01690862514078617, 0.0074335127137601376, -0.0032554336357861757, 0.035152141004800797, 0.04768965020775795, -0.0036316898185759783, 0.005264314357191324, -0.003899976843968034, 0.0034582847729325294, -0.00950128585100174, 0.002344239503145218, 0.0024227623362094164, -0.019133443012833595, -0.024917973205447197, -0.021096518263220787, -0.0006866674521006644, -0.0007880930206738412, 0.010659500025212765, 0.0011958401883020997, 0.010044403374195099, 0.034393083304166794, -0.011405468918383121, 0.003481187392026186, -0.02506193146109581, 0.017209628596901894, -0.00630474416539073, 0.021332086995244026, -0.024158917367458344, -0.034576304256916046, 0.012020566500723362, 0.0032210799399763346, -0.01591399870812893, 0.006105164997279644, 0.007682168856263161, 0.0162150040268898, 0.009259172715246677, -0.006046272814273834, 0.047637298703193665, 0.009880813769996166, -0.0067268055863678455, -0.012269222177565098, -0.020756252110004425, 0.026056556031107903, -0.021724702790379524, 0.020219678059220314, 0.00017821045184973627, -0.015102595090866089, -0.01664688065648079, 0.002066137036308646, 0.008990885689854622, 0.01160177681595087, -0.013754616491496563, -0.023033419623970985, 0.022967984899878502, -0.0006633559823967516, 0.013047909364104271, 0.0019598037470132113, -0.030100492760539055, -0.008022435940802097, -0.002275531878694892, 0.016228090971708298, 0.005447534844279289, 0.009821921586990356, -0.003549895016476512, 0.039366208016872406, -0.0028317365795373917, 0.03305819258093834, -0.025690115988254547, -0.002844823757186532, -0.012216873466968536, 0.006144426763057709, -0.020612293854355812, -0.021633092314004898, -0.01973545365035534, 0.05548960343003273, 0.010849264450371265, -0.02498340792953968, -0.0245253574103117, -0.02583407424390316, 0.0029691518284380436, -0.01117644365876913, 0.004551063757389784, 0.014016359113156796, 0.0424809567630291, 0.022025708109140396, -0.0177592895925045, 0.06229493021965027, -0.0072502922266721725, 0.014081795699894428, -0.03389577195048332, -0.00853283517062664, 0.0059448471292853355, 0.04138163477182388, -0.005090909544378519, -0.002339331666007638, 0.0035302641335874796, -0.008349615149199963, 0.010567890480160713, 0.005519513972103596, 0.0105220852419734, -0.00017248481162823737, 0.017641505226492882, -0.009763029403984547, -0.019604580476880074, 0.002517644315958023, 0.013296565040946007, 0.003342136275023222, -0.005509698763489723, -0.039863523095846176, -0.009206824004650116, 0.00930497795343399, -0.013702267780900002, -0.01830895058810711, 0.017667680978775024, 0.015181117691099644, -0.02517971582710743, 0.007577471900731325, 7.888087566243485e-05, -0.025546155869960785, -0.02777097560465336, -0.04564804956316948, 0.024917973205447197, -0.005892498418688774, -0.004452909808605909, 0.0015042066806927323, -0.02811124175786972, -0.010561347007751465, -0.03575414791703224, 0.01353213470429182, -0.012131807394325733, 0.007773779332637787, 0.010456649586558342, -0.008127132430672646, -0.04420846328139305, -0.00818602554500103, 0.029838748276233673, -0.023923346772789955, -0.007237205281853676, -0.006344005931168795, 0.0030345877166837454, -0.02603038214147091, 0.007793410215526819, 0.007171769626438618, -0.010109839029610157, 0.01212526299059391, 0.0038607153110206127, -0.0017536808736622334, 0.020285114645957947, -0.04101519286632538, -0.032953497022390366, -0.03263940289616585, 0.02915821596980095, -0.005352652631700039, 0.016673054546117783, -0.01098667923361063, -0.004547791555523872, 0.015704603865742683, -0.02915821596980095, 0.008794578723609447, 0.18437205255031586, 0.011196074075996876, 0.012727273628115654, 0.02460388094186783, -0.0021953729446977377, -0.007178313098847866, 0.0120663708075881, -0.013453611172735691, -0.028660902753472328, 0.010718392208218575, -0.013806965202093124, 0.02387099899351597, -0.004397289361804724, -0.0034975463058799505, 0.0019041833002120256, 0.012347745709121227, -0.022719327360391617, -0.03389577195048332, -0.03093807026743889, -0.0016751578077673912, -0.0132245859131217, 0.01845291070640087, -0.0401514396071434, -0.0009635429014451802, 0.0339742936193943, 0.005961206275969744, -0.021986447274684906, 0.028896471485495567, 0.02521897666156292, -0.020834775641560555, -0.03070250153541565, 0.005395186133682728, -0.020101893693208694, 0.0029675159603357315, -0.024630054831504822, -0.020769339054822922, 0.021096518263220787, 0.012033653445541859, 0.03379107266664505, -0.008120588958263397, 0.003661135910078883, -0.0034222949761897326, -0.019107269123196602, -0.020258940756320953, 0.008349615149199963, 0.013015191070735455, -0.0030280440114438534, -0.019133443012833595, -0.0078195845708251, 0.024512270465493202, -0.009488198906183243, -0.013859313912689686, 0.021868661046028137, 0.008860014379024506, -0.0010600608075037599, -0.01202710997313261, 0.0024309419095516205, 0.012485160492360592, 0.003621874377131462, 0.01232157088816166, -0.024774013087153435, 0.029105866327881813, 0.003257069503888488, 0.035937368869781494, -0.02096564695239067, 0.008951624855399132, -0.017968684434890747, -0.01075765397399664, 0.005457350052893162, -0.007799953687936068, -0.005620939657092094, 0.005813975352793932, -0.009403131902217865, -0.003510633483529091, 0.009187193587422371, -0.0020088807214051485, 0.010149100795388222, -0.00011113870277768001, -0.007799953687936068, 0.013623744249343872, -0.004609955940395594, -0.010967048816382885, -0.003162187524139881, -0.005189063027501106, -0.035701800137758255, -0.03447160869836807, 0.027587754651904106, -0.011091376654803753, -0.007243748754262924, -0.017863987013697624, -0.014958635903894901, -0.03499509394168854, 0.004659032914787531, 0.009128301404416561, 0.0030035055242478848, 0.016398224979639053, -0.008055153302848339, 0.044888995587825775, 0.001881280797533691, -0.00013925567327532917, -0.02181631326675415, 0.06229493021965027, 0.003021500539034605, 0.014526759274303913, -0.006622108165174723, 0.0012236504117026925, 0.009213368408381939, -0.007518579252064228, -0.002905351808294654, -0.0029266185592859983, -0.006222949363291264, -0.03216826543211937, 0.011307314969599247, 0.0028628185391426086, -0.004119187127798796, 0.009684505872428417, -0.004462725017219782, -0.03119981475174427, -0.0025356393307447433, 0.017733115702867508, -0.0034484693314880133, -0.018976397812366486, -0.005061462987214327, -0.004099556244909763, 0.0047146533615887165, -0.0066319238394498825, -0.026501519605517387, 0.01637205109000206, -0.007577471900731325, -0.011326946318149567, 0.018740827217698097, -0.047323208302259445, 0.008990885689854622, -0.008120588958263397, -0.005359196104109287, -0.017589157447218895, 0.005951390601694584, -0.02042907290160656, 0.008172937668859959, 0.008035522885620594, -0.0019794346299022436, 0.02080860175192356, -0.0032816079910844564, -0.00022493574942927808, 0.017078757286071777, -0.012694555334746838, 0.006010283250361681, -0.01734050177037716, 0.0007046623504720628, -0.012890863232314587, -0.018544521182775497, 0.018701566383242607, 0.01868847943842411, -0.01772002875804901, 0.021031083539128304, -0.04567422345280647, -0.018937135115265846, -0.019591493532061577, -0.008087871596217155, 0.024774013087153435, -0.0432400107383728, 0.013388175517320633, -4.774772241944447e-05, -0.01001822855323553, -0.010234166868031025, -0.015573732554912567, -0.1633278876543045, 0.00498948385939002, -0.007053984794765711, -0.037481654435396194, 0.02231362648308277, 0.023072682321071625, 0.0187277402728796, 0.0006645828834734857, -0.0007942276424728334, 0.00546389352530241, -0.012668381445109844, -0.03735078498721123, -0.02981257438659668, 0.004590325057506561, 0.0038116383366286755, 0.005980836693197489, 0.006550129037350416, 0.011713017709553242, 0.054704371839761734, 0.017196541652083397, 0.016162656247615814, -0.02247067168354988, 0.027980370447039604, 0.002448936691507697, 0.0025274597574025393, 0.010338864289224148, -0.009638700634241104, 0.009272260591387749, -0.003194905584678054, -0.009605983272194862, 0.00552278570830822, 0.013676092959940434, -0.00013199637760408223, -0.00872914306819439, 0.02216966636478901, -0.016516009345650673, -0.0028889928944408894, -0.02996961958706379, -0.022365974262356758, -0.014435148797929287, 0.0216200053691864, 0.020494509488344193, 0.008820752613246441, -0.002447300823405385, 0.0008923814166337252, 0.02308576926589012, 0.020821688696742058, -0.028451507911086082, 0.027561580762267113, 0.0002723767247516662, 0.021763963624835014, -0.006707174703478813, -0.01413414441049099, -0.004737555515021086, 0.01690862514078617, 0.007381164003163576, -0.020991820842027664, 0.022889461368322372, -0.0016849732492119074, -0.004364571534097195, 0.0058990418910980225, -0.043187662959098816, -0.016921712085604668, 0.013218042440712452, -0.005542416591197252, 0.0038149103056639433, 0.006559944245964289, 0.0029936903156340122, -0.04782051965594292, 0.02850385755300522, -0.009664875455200672, -0.01830895058810711, 0.012138350866734982, -0.0009856275282800198, 0.00907595269382, -0.019630756229162216, -0.01799486018717289, 0.015887824818491936, -0.011817715130746365, -0.031644776463508606, -0.0068642208352684975, 0.02320355363190174, 0.011169900186359882, 0.010999767109751701, -0.003867258783429861, 0.010423931293189526, 0.017078757286071777, 0.010613695718348026, -0.01039121299982071, -0.03523066267371178, 0.006478149443864822, -0.005539144854992628, -0.018950222060084343, 0.008526291698217392, -0.00027483058511279523, 0.008506660349667072, 0.013977098278701305, -0.000603645748924464, 0.0032783362548798323, -0.013132975436747074, 0.010829633101820946, 0.0045314328745007515, -0.03426221385598183, 0.0011516710510477424, 0.051380231976509094, 0.019329750910401344, -0.029550831764936447, 0.005169432144612074, 0.015063333325088024, 0.010862351395189762, -0.00932460930198431, 0.015037158504128456, -0.0052610426209867, 0.03486422076821327, -0.005156345199793577, 0.018753916025161743, 0.002028511371463537, -0.02401495724916458, 0.02213040553033352, -0.008401963859796524, 0.02444683387875557, -0.005077822133898735, -0.021750876680016518, 0.010024772956967354, 0.021371349692344666, -0.0009398224065080285, -0.11579528450965881, -0.03193269670009613, -0.0005983290611766279, -0.018400561064481735, -0.0034190232399851084, -0.0032407105900347233, -0.006851133890450001, 0.028085067868232727, 0.009370413608849049, 0.018465997651219368, -0.0007189764291979373, 0.00417153537273407, 0.006442159879952669, -0.015181117691099644, -0.024028044193983078, 0.005139986053109169, 0.00828417856246233, 0.011510166339576244, -0.04522925987839699, 0.021829400211572647, 0.006062631495296955, -0.004485627636313438, -0.017314326018095016, 0.016319701448082924, -0.00567656010389328, 0.01973545365035534, -0.04206216707825661, -0.0031540081836283207, 0.004433278925716877, 0.0038803459610790014, 0.008689881302416325, -0.0028709981124848127, 0.010770740918815136, -0.0015328348381444812, 0.019722366705536842, 0.006029913667589426, -0.014775415882468224, -0.026396822184324265, 0.028058893978595734, 0.0009553634445182979, 0.0014829400461167097, -0.0003787099849432707, 0.012406637892127037, -0.006478149443864822, 0.02761393040418625, -0.002560177817940712, -0.03520448878407478, 0.006301472429186106, 0.006550129037350416, -0.01614956744015217, -0.03915681317448616, 0.009677962400019169, -0.023727040737867355, -0.008912363089621067, 0.03452395647764206, 0.006445431616157293, 0.014513672329485416, 0.034236036241054535, -0.006798785179853439, 0.015783127397298813, 0.000372779875760898, -7.070139690767974e-05, 0.0007721430738456547, 0.030833372846245766, 0.008035522885620594, 0.006569759454578161, -0.016817014664411545, -0.008552465587854385, 0.061143260449171066, -0.045046038925647736, -0.0177592895925045, 0.012524422258138657, -0.024381399154663086, 0.017209628596901894, -0.008598270826041698, -0.0008833840256556869, 0.0030722133815288544, 0.016790838912129402, 0.009854638949036598, 0.019369011744856834, -0.012805796228349209, -0.0040897405706346035, -0.007112876977771521, -0.001845291000790894, 0.016201917082071304, 0.05376209691166878, 0.023884085938334465, -0.015547558665275574, 0.03015284053981304, -0.012753447517752647, 0.0194998849183321, 0.016790838912129402, 0.0026370647829025984, -0.0011034120107069612, -0.004560878966003656, -0.006785697769373655, 0.007224117871373892, -0.02387099899351597, 0.0026779621839523315, 0.015207292512059212, -0.02555924467742443, -0.011634494177997112, -0.02729983814060688, 0.02074316516518593, -0.021881749853491783, -0.02551998198032379, -0.0012907221680507064, -0.009933162480592728, 0.013047909364104271, -0.00568637577816844, -0.01686936244368553, 0.005143257789313793, -0.0312783382833004, -0.002599439350888133, -0.010260341688990593, -0.010299603454768658, 0.0018518345896154642, -0.0007242931169457734, -0.008624445647001266, 0.0040275766514241695, 0.012288853526115417, -0.02116195484995842, 0.0053886426612734795, -0.029524656012654305, 0.004115914925932884, 0.01803412102162838, -0.01430427748709917, 0.006936200428754091, -0.021528394892811775, 0.027483057230710983, 0.0007574199698865414, -0.032848797738552094, 0.0029020800720900297, -0.005758354905992746, -0.0005455714417621493, 0.004204253666102886, -0.010024772956967354, 0.008945081382989883, 0.011032484471797943, 0.030911896377801895, 0.03779574856162071, 0.03523066267371178, -0.015626082196831703, -0.0007537392084486783, 0.01726197823882103, 0.005434447433799505, -0.010240711271762848, -0.02559850551187992, -0.02965552918612957, -0.003296331036835909, 0.0048847864381968975, 0.004158448427915573, 0.02529750019311905, 0.026082729920744896, -0.010207992978394032, -0.00924608577042818, -0.03339846059679985, -0.03889507055282593, 0.011483992449939251, -0.017785465344786644, -0.02147604711353779, -0.03159242868423462, 0.015168030746281147, -0.009213368408381939, 0.003589156549423933, -0.019787801429629326, 0.017772378399968147, -0.012256135232746601, -0.03499509394168854, 0.013872400857508183, -0.012419724836945534, -0.0003787099849432707, -0.015887824818491936, 0.0053461091592907906, 0.019486796110868454, 0.003893433138728142, 0.037978969514369965, 0.004897873383015394, -0.028215939179062843, 0.026265950873494148, -0.008539378643035889, 0.012786165811121464, 0.03468100354075432, 0.0023344240617007017, -0.015469035133719444, 0.008977798745036125, 0.03331993520259857, -0.012838514521718025, -0.006759523414075375, -0.00887964479625225, -0.023661604151129723, 0.01977471448481083, -0.01726197823882103, -0.005709277931600809, -0.017157280817627907, 0.002280439483001828, 0.016516009345650673, 0.008382332511246204, -0.0013627016451209784, 0.018583782017230988, 0.01641131192445755, 0.010338864289224148, 0.025048844516277313, -0.018780089914798737, -0.016581444069743156, -0.013610657304525375, -0.04515073820948601, -0.003667679615318775, -0.010083665139973164, -0.034393083304166794, -0.01934283785521984, 0.01876700296998024, -0.013113345019519329, 0.022156579419970512, 0.04206216707825661, 0.0030280440114438534, -0.026501519605517387, -0.007374620530754328, -0.00547370919957757, -0.019251227378845215, -0.013977098278701305, -0.0024423932190984488, 0.024276701733469963, 0.0045314328745007515, 0.03507361561059952, -0.020677728578448296, 0.011366207152605057, -0.0025340034626424313, 0.0005443444824777544, -0.013466698117554188, -0.0030264081433415413, -2.0397581465658732e-05, -0.03038840927183628, -0.01029305998235941, -0.024263614788651466, 0.004868427291512489, -0.006000467576086521, -0.020049545913934708, 0.016201917082071304, -0.007924281992018223, 0.01688244938850403, 0.0633419081568718, -0.023046506568789482, 0.012746904045343399, -0.012746904045343399, 0.007446600124239922, 0.018322039395570755, 0.009828465059399605, 0.008598270826041698, -0.01152979675680399, -0.006085534114390612, 0.011313858442008495, -0.012020566500723362, 0.004966581240296364, -0.03792662173509598, -0.003939238376915455, 0.011274597607553005, -0.009579808451235294, -0.010070577263832092, -0.008506660349667072, 0.012838514521718025, 0.03478569909930229, 0.019604580476880074, 0.018465997651219368, 0.008873101323843002, -0.01942136138677597, 0.012472073547542095, 0.041146062314510345, 0.006507595535367727, -0.014225753955543041, -0.029995795339345932, 0.002475111046805978, -0.00553260138258338, -0.007505492307245731, -0.016044871881604195, 0.00016440758190583438, 0.018819350749254227, -0.014147231355309486, 0.02011498063802719, 0.01753680780529976, -0.005853237118571997, 0.02563776634633541, 0.005369011778384447, -0.03460247814655304, -0.06339425593614578, -0.03004814311861992, 0.006641739048063755, 0.018465997651219368, -0.005139986053109169, -0.03523066267371178], "e6412f55-0e69-40ea-9d17-2ba2dc205df8": [-0.017295049503445625, -0.012790169566869736, -0.010524557903409004, 0.01792731322348118, -0.022563913837075233, 0.0022211559116840363, 0.0028353079687803984, -0.0200085137039423, -0.010043773800134659, -0.005502671003341675, 0.01604369282722473, -0.002096020383760333, 0.016438858583569527, 0.015964660793542862, -0.007593751419335604, -0.014120558276772499, 0.025369584560394287, 0.00356306997127831, 0.016017349436879158, -0.020166579633951187, -0.005143729504197836, 0.018849363550543785, -0.016768163070082664, -0.034537408500909805, -0.013290711678564548, 0.018164411187171936, 0.01584611088037491, -0.0171501561999321, 0.029057789593935013, -0.019297217950224876, 0.008555319160223007, 0.006882454734295607, -0.014542067423462868, -0.006190916523337364, -0.008957070298492908, -0.009253444150090218, -0.0034412273671478033, -0.009549818001687527, -0.002069676062092185, -0.011104132980108261, 0.03214007616043091, -0.000626500986982137, -0.015635356307029724, -0.022471709176898003, -0.011176579631865025, 0.03920035436749458, 0.02278784103691578, -0.022774668410420418, -0.004788081161677837, 0.01299433782696724, 0.03685570880770683, -0.008990000933408737, -0.008983414620161057, 0.00159218511544168, 0.030796514824032784, 0.0028616522904485464, 0.0012892254162579775, 0.01923135668039322, -0.0013946027029305696, 0.000920404854696244, 0.016517892479896545, 0.008364323526620865, -0.009339063428342342, 0.018138067796826363, -0.0029917273204773664, -0.005193124990910292, 0.00987253524363041, 0.003783703548833728, -0.004290831740945578, -0.0036519819404929876, 0.02359134331345558, 0.012750653550028801, -0.025606684386730194, 0.005805630702525377, 0.02903144620358944, -0.0014703426277264953, 0.0029538574162870646, 0.01829613372683525, 0.010471869260072708, 0.01621493138372898, 0.012941649183630943, -0.019389422610402107, -0.01152564212679863, 0.017914140596985817, 0.009003172628581524, -0.015213847160339355, -0.004979077260941267, 0.01689988374710083, 0.005407172720879316, -0.03356267139315605, 0.012322558090090752, 0.01555632334202528, 0.006902213208377361, 0.021338902413845062, 0.014186418615281582, -0.020732983946800232, 0.0005470563773997128, 0.001918196096085012, -0.005999919958412647, -0.010195253416895866, -0.02497442066669464, 0.015398257412016392, -0.013778082095086575, -0.0025339946150779724, -0.0036783262621611357, 0.001918196096085012, 0.008002088405191898, 0.008627766743302345, 0.027845950797200203, -0.01657058112323284, -0.020825188606977463, 0.034458376467227936, 0.008324806578457355, -0.018177583813667297, 0.019534315913915634, -0.01451572310179472, 0.023367416113615036, -0.01161784678697586, -0.03103361465036869, -0.007923055440187454, 0.01967921108007431, -0.012236938811838627, -0.0070734512992203236, 0.0050614033825695515, 0.01967921108007431, 0.013488294556736946, -0.021523313596844673, -0.02755616419017315, 0.005301795434206724, -0.0017914141062647104, 0.022419020533561707, 0.020074374973773956, 0.013152403756976128, -0.0011657363502308726, 0.004033974837511778, 0.00394176971167326, -0.011459780856966972, 0.003307859180495143, 0.010978997685015202, -0.016952572390437126, 0.029189512133598328, 0.02037733420729637, -0.0033885387238115072, 0.003974699880927801, 0.002736516762524843, 0.009049275889992714, -0.0034412273671478033, -0.025435445830225945, 0.002599855652078986, -0.003151439828798175, -0.01941576786339283, -0.00910196453332901, -0.012236938811838627, -0.014436690136790276, -0.023472793400287628, 0.017650697380304337, 0.008114052005112171, -0.01502943690866232, -0.018072206526994705, -0.01638616994023323, 0.0016168829752132297, 0.0265287347137928, -0.0030164250638335943, 0.02426312305033207, -0.0152928801253438, 0.03793582692742348, 0.030533071607351303, -0.0007384643540717661, -0.014858199283480644, 0.025870127603411674, -0.0023923940025269985, 0.018164411187171936, -0.026581423357129097, 0.003355608321726322, -0.002683828119188547, -0.008344564586877823, 0.0035334324929863214, -0.00459379144012928, -0.0026673628017306328, 0.007178828585892916, 0.0002517117827665061, -0.004119593650102615, 0.008818762376904488, 0.03856809064745903, -0.035406772047281265, -0.00045649774256162345, 0.02141793631017208, 0.005943938158452511, 0.02071981132030487, 0.03174491226673126, 0.004827597644180059, 0.02356499806046486, -0.008917554281651974, 0.02850455977022648, -0.6288917064666748, -0.0019132565939798951, -0.014976748265326023, -0.009727641940116882, -0.020772499963641167, 0.0064280154183506966, -0.0034115901216864586, 0.008357737213373184, -0.022827357053756714, 0.023538654670119286, -0.006487289909273386, 0.02365720272064209, 0.01958700455725193, -0.01803269051015377, 0.021378420293331146, -0.013205092400312424, -0.00011083139543188736, -0.026818523183465004, -0.036197103559970856, 0.012250110507011414, 0.006125055253505707, 0.03977993130683899, -0.02339375950396061, -0.014489378780126572, -8.560618880437687e-06, 0.005436810199171305, 0.022603429853916168, -0.014067869633436203, 0.017821935936808586, 0.0450487956404686, 0.012197421863675117, -0.009115136228501797, 0.007745231501758099, -0.0011476246872916818, 0.04697193205356598, -0.009734228253364563, 0.026107225567102432, 0.007429099641740322, -0.015477290377020836, 0.04288855940103531, -0.020561745390295982, 0.00023318843159358948, 0.03416858986020088, 0.001807879307307303, 0.021892134100198746, -0.006612425670027733, -0.003197542391717434, 0.009174411185085773, -0.0008808883721940219, -0.015569495968520641, 0.00987912155687809, -0.007415927480906248, -0.008502630516886711, 0.011742983013391495, 0.016438858583569527, -0.018085379153490067, 0.018743986263871193, -0.004178868606686592, 0.003549897810444236, -0.02496124804019928, 0.02575157769024372, 0.03311481699347496, 0.0028616522904485464, -0.005934059154242277, -0.015055781230330467, 0.025369584560394287, -0.02401285246014595, -0.023459620773792267, -0.0029999599792063236, -0.006250191014260054, 0.03656592220067978, 0.01689988374710083, -0.02556716650724411, -0.0018325770506635308, -0.0006952431867830455, 0.020588088780641556, -0.00045896752271801233, 0.015885626897215843, 0.009530059061944485, 0.016596924513578415, 0.012151319533586502, 0.004126179963350296, -0.022076543420553207, -0.015977833420038223, 0.0403595045208931, -0.0028171963058412075, 0.005647564772516489, -0.005594876129180193, -0.0074488576501607895, -0.0010611823527142406, -0.008897795341908932, 0.014094213955104351, -0.016162242740392685, -0.03833099082112312, 0.0024961247108876705, 0.0026327860541641712, -0.008002088405191898, 0.01218425016850233, -0.023604514077305794, -0.037830449640750885, -0.004162403289228678, -0.03664495423436165, -0.03303578495979309, -0.0007182944682426751, 0.01383077073842287, 0.007534476928412914, -0.004946147091686726, 0.009931810200214386, 0.040701981633901596, 0.016702301800251007, 0.0030164250638335943, -0.02747713029384613, 0.0028484801296144724, -0.015003092586994171, 0.003347375662997365, -0.022919561713933945, 0.006128348410129547, -0.015582667663693428, 0.005469740368425846, -0.0024944781325757504, 0.03451106697320938, 0.005361069925129414, 0.005324846599251032, -0.0030921651050448418, 0.020943738520145416, -0.004448897670954466, 0.029874464496970177, -0.022419020533561707, -0.03946379944682121, -0.008298462256789207, -0.014634272083640099, -0.015635356307029724, 0.018045863136649132, -0.01758483611047268, -0.020680295303463936, -0.00656632287427783, 0.019428938627243042, -0.004040560685098171, 0.03382611274719238, -0.03335191681981087, -0.02062760666012764, 0.009411510080099106, 0.02504028007388115, -0.00771230086684227, 0.002263965317979455, -0.026199430227279663, -0.019481627270579338, -0.021431108936667442, 0.003655275097116828, -0.0061448137275874615, -0.006082246080040932, -0.008640938438475132, 0.004577326588332653, 0.032719649374485016, -0.005179952830076218, -0.014726477675139904, 0.03474816307425499, -0.00676390528678894, -0.01273748092353344, -0.010024015791714191, -0.003172844648361206, 0.032377175986766815, -0.021009599789977074, 0.02280101366341114, -0.01890205219388008, -0.00656302971765399, -0.009727641940116882, 0.023802097886800766, -0.035933658480644226, -0.03356267139315605, -0.0059274728409945965, -0.0031432071700692177, -0.004310590215027332, 0.01657058112323284, 0.007132725790143013, 0.01148612517863512, -0.02168137952685356, 0.012671620585024357, -0.029005100950598717, 0.0007285852334462106, 0.023854786530137062, 0.023103972896933556, 0.015319224447011948, -0.01593831554055214, 0.01217766385525465, 0.009266615845263004, 0.033509980887174606, -0.011301714926958084, 0.0012538251467049122, 0.012105217203497887, 0.013633187860250473, 0.021352075040340424, -0.040254127234220505, 0.00026406068354845047, -0.005934059154242277, 0.012823100201785564, -0.013382917270064354, 0.0009549817768856883, 0.004432432819157839, 0.043125659227371216, 0.02451339364051819, 0.013343400321900845, -0.0026525442954152822, -0.0050745755434036255, -0.023696720600128174, -0.011551986448466778, 0.01896791346371174, -0.00617445120587945, 0.03208738565444946, -0.03174491226673126, -0.0076925428584218025, 0.0018194048898294568, -0.003569656051695347, -0.013922975398600101, 0.02357817068696022, 0.05437468737363815, 0.0015584314242005348, 0.02486904338002205, 0.007429099641740322, 0.02477683685719967, 0.010129393078386784, 0.020298302173614502, 0.02868896909058094, 0.014976748265326023, 0.021457452327013016, -0.018217099830508232, -0.009773744270205498, 0.012783583253622055, 0.00325023103505373, -0.011156821623444557, 0.014792338013648987, -0.0053083812817931175, -0.0029752622358500957, -0.008910967968404293, 0.018875708803534508, 0.021813100203871727, 0.03382611274719238, -0.010728726163506508, 0.045812781900167465, -0.014397173188626766, 0.003128388663753867, 0.018480543047189713, 0.03103361465036869, -0.023472793400287628, 0.030216939747333527, 0.010794587433338165, 0.050739169120788574, -0.007606923580169678, -0.010544315911829472, 0.01966603845357895, 0.0001271936926059425, 0.02615991421043873, -0.036091726273298264, 0.0059801614843308926, -0.010946067050099373, 0.0014991567004472017, 0.01759800873696804, -0.011762741021811962, 0.021944822743535042, -0.0010496566537767649, -0.0028731778729707003, -0.0006767198210582137, 0.021720895543694496, -0.010847276076674461, 0.0005178306601010263, -0.011275370605289936, 0.003681619418784976, -0.034273967146873474, -0.01958700455725193, 0.010564073920249939, -0.01716332696378231, -0.04273049533367157, -0.010886792093515396, -0.013238023035228252, 0.055586524307727814, 0.002237620996311307, 0.01941576786339283, 0.01654423587024212, 0.026831693947315216, -0.002626199973747134, -0.02556716650724411, -0.030638448894023895, 0.029927153140306473, 0.013349986635148525, -0.007080037146806717, -0.03403686732053757, -0.017558492720127106, -0.003688205499202013, -0.005756234750151634, 0.011703466065227985, -0.024645116180181503, -0.008417012169957161, -0.0090624475851655, 0.013896631076931953, -0.007988916710019112, 0.003087225602939725, 0.03077017143368721, 0.008818762376904488, 0.02174724079668522, 0.001089173136278987, -0.008647524751722813, -0.008469700813293457, -0.022432193160057068, 0.003549897810444236, 0.04022778198122978, -0.013672704808413982, 0.026673628017306328, -0.03311481699347496, 0.013922975398600101, -0.01576707884669304, -0.01287578884512186, -0.00785060878843069, -0.010511385276913643, -0.01879667490720749, 0.007830850780010223, 0.002593269571661949, 0.012013011611998081, 0.005789165385067463, 0.01663644053041935, 0.02306445688009262, 0.0007228223839774728, -0.006974659860134125, -0.00810087937861681, -0.010623348876833916, 0.046234291046857834, 0.0221819207072258, -0.01896791346371174, -0.005993333645164967, -0.017466288059949875, -0.008594836108386517, -0.002395686926320195, -0.019705554470419884, 0.023169834166765213, -0.026660457253456116, 0.009503714740276337, -0.006533392705023289, 0.008996587246656418, 0.00922709982842207, -0.0046892897225916386, 0.005394000560045242, 0.014133729971945286, -0.018493715673685074, 0.008509216830134392, -0.024026023223996162, 0.008779246360063553, -0.01750580407679081, 0.0010364844929426908, 0.01705794967710972, 0.0031827236525714397, 0.009674953296780586, 0.016610097140073776, 0.005249106790870428, 0.006862696725875139, -0.038278304040431976, -0.006154692731797695, -0.004778201691806316, 0.027345409616827965, 0.01638616994023323, -0.026107225567102432, 0.01621493138372898, 0.004587205592542887, 0.014568411745131016, 0.0007252921932376921, -0.015187502838671207, -0.008937312290072441, 0.019442111253738403, 0.009418096393346786, -0.009088791906833649, 0.004369864705950022, 0.007369824685156345, -0.0292158555239439, 0.02452656626701355, -0.008067949675023556, -0.01638616994023323, 0.026634112000465393, -0.007824264466762543, -0.043204691261053085, -0.002761214505881071, 0.011189752258360386, -0.0008808883721940219, -0.01585928350687027, -0.015806594863533974, -0.014845026656985283, -0.01880984753370285, -0.015661701560020447, -0.026660457253456116, 0.030717482790350914, -0.0036124654579907656, 0.005775993224233389, -0.0077188871800899506, -0.005772700067609549, 0.016491547226905823, -0.01879667490720749, -0.002272197976708412, 0.031165335327386856, -0.020311474800109863, -0.03374708071351051, -0.0004976607742719352, 0.005397293716669083, 0.030980926007032394, -0.004254608415067196, 0.002812256570905447, -0.004863820970058441, -0.0016926229000091553, -0.013139232061803341, -0.027450786903500557, -0.009457612410187721, -0.023815268650650978, -0.003707963740453124, 0.0029258665163069963, 0.00030584115302190185, 0.021536486223340034, -0.01794048584997654, 0.01916549541056156, -0.004228264093399048, 0.018006345257163048, 0.0042513152584433556, -0.01888888143002987, -0.0027710937429219484, 0.0076661985367536545, -0.010761656798422337, 0.008344564586877823, 0.004590498749166727, -0.005772700067609549, 0.014805510640144348, -0.02262977510690689, -0.039226699620485306, -0.0022623189724981785, -0.030664794147014618, -9.513799886917695e-05, 0.000243067552219145, 0.013027268461883068, -0.013119474053382874, -0.007811092305928469, 0.03208738565444946, -0.03235083073377609, 0.010610177181661129, 0.020732983946800232, 0.0063654473051428795, 0.037487972527742386, 0.020640779286623, 0.007468616124242544, -0.004448897670954466, -0.014792338013648987, -0.0012867555487900972, -0.02348596602678299, 0.02193165011703968, 0.02407871186733246, -0.01933673396706581, 0.0076925428584218025, 0.007738645188510418, -0.022392675280570984, -0.010188667103648186, -0.010491627268493176, -0.003205775050446391, 0.02090422250330448, 0.00028793522506020963, -0.04188747704029083, -0.03677667677402496, -0.0012184249935671687, -0.03793582692742348, -0.002682181540876627, 0.0034379344433546066, -0.0018490422517061234, 0.010610177181661129, 0.0048572346568107605, 0.0004577326471917331, -0.010649693198502064, 0.018585920333862305, -0.03553849458694458, -0.007942813448607922, 0.00413935212418437, 0.00137072813231498, 0.0034050040412694216, 0.017914140596985817, 0.006177743896842003, -0.01655740849673748, -0.005143729504197836, 0.018072206526994705, -0.008337979204952717, 0.0020663829054683447, 0.017268704250454903, 0.010985583066940308, 0.017308222129940987, 0.013606843538582325, 0.011723224073648453, 0.032034698873758316, 0.010425766929984093, 0.001364965341053903, 0.008957070298492908, -0.006902213208377361, -0.012454279698431492, -0.010972411371767521, 0.013804426416754723, -0.004152524285018444, -0.008904381655156612, 0.017295049503445625, -0.03872615844011307, 0.004804546013474464, 0.014449861831963062, 0.018480543047189713, -0.002036745660007, -0.03050672821700573, -0.02131255902349949, -0.024381672963500023, -0.013778082095086575, -0.004445604979991913, 0.017742902040481567, -0.004804546013474464, -0.005729890428483486, 0.01217107754200697, -0.008397253230214119, 0.0025109434500336647, 0.026120398193597794, 0.001801293226890266, -0.02270880714058876, 0.01576707884669304, -0.001931368256919086, 0.014542067423462868, -0.01394931972026825, 0.003268342697992921, -0.03935842216014862, 0.010188667103648186, 0.0011500944383442402, -0.014265451580286026, 0.012678205966949463, -0.03572290390729904, 0.0029011687729507685, -0.03240351751446724, 0.00561134098097682, -0.008179912343621254, -0.004132765810936689, 0.023288382217288017, -0.016399342566728592, -0.025461789220571518, -0.008127223700284958, 2.8659744202741422e-05, 0.001318039488978684, -0.007824264466762543, 0.014331312850117683, 0.016939401626586914, 0.011683708056807518, -0.03387880325317383, -0.000789506477303803, 0.0032271798700094223, -0.0173213928937912, 0.01950797252357006, 0.02087787725031376, 0.03920035436749458, 0.029400266706943512, 0.010794587433338165, -0.019112806767225266, -0.006148106884211302, 0.014594756066799164, 0.016056865453720093, 0.04394233226776123, -0.010096462443470955, -0.008515803143382072, -0.01724236086010933, -0.01578024961054325, 0.005904421675950289, -0.014041525311768055, -0.026120398193597794, 0.023024939000606537, 0.014528894796967506, -0.009971327148377895, -0.023077627643942833, 0.009727641940116882, -0.04178209975361824, 0.009174411185085773, -0.006487289909273386, 0.04122886806726456, -0.02079884521663189, -0.024144573137164116, -0.028030361980199814, 0.017453115433454514, -0.004033974837511778, 0.004116300493478775, 0.01230938546359539, 0.007152484264224768, -0.03917400911450386, -0.018704470247030258, -0.012329143472015858, 0.02642335742712021, 0.0034972091671079397, 0.024289466440677643, -0.016926229000091553, -0.027503475546836853, 0.016517892479896545, -0.029927153140306473, -0.008351150900125504, -0.025027109310030937, 0.008990000933408737, 0.024065541103482246, 0.00015147986414376646, -0.012803342193365097, -0.017110638320446014, -0.0050877477042376995, -0.007080037146806717, -0.019218184053897858, -0.0014481146354228258, 0.006088831927627325, 0.011189752258360386, -0.011703466065227985, 0.009016345255076885, 0.012763825245201588, 0.016333481296896935, -0.002904461696743965, -0.0036849123425781727, -0.0011607968481257558, -0.017966829240322113, 0.0033720736391842365, 0.019652865827083588, -0.021957995370030403, -0.033404603600502014, -0.0436788909137249, 0.00961567834019661, 0.0027892054058611393, -0.012315971776843071, -0.021194009110331535, 0.01803269051015377, 0.04533858224749565, -0.010728726163506508, 0.02062760666012764, -0.02104911580681801, -0.0029472713358700275, -0.002670655958354473, 0.010847276076674461, -0.00521946931257844, -0.013152403756976128, 0.01300092414021492, -0.004099835641682148, -0.014765993691980839, -0.021786756813526154, -0.0033572549000382423, 0.02617308683693409, -0.006418135948479176, -0.0036256376188248396, 0.015279708430171013, 0.003786996705457568, 0.014199591241776943, -0.02685803920030594, -0.014449861831963062, 0.04496976360678673, -0.01408104132860899, 0.0012875788379460573, 0.003984578885138035, 0.004590498749166727, -0.008496045134961605, -0.0034807438496500254, 0.01135440357029438, 0.0066223046742379665, -0.00758057925850153, -0.001650636550039053, -0.0008800650830380619, -0.006658528000116348, -0.007066864985972643, -0.009865949861705303, -0.035064294934272766, -0.010978997685015202, -0.007429099641740322, 0.03709280863404274, -0.02288004569709301, 0.01546411868184805, -0.038251958787441254, 0.027266375720500946, -0.0063786194659769535, 0.007099795620888472, -0.013725393451750278, 0.017545320093631744, 0.012665034271776676, 0.002054857322946191, -0.038172926753759384, -0.023077627643942833, -0.016359824687242508, 0.05695642903447151, 0.022142404690384865, -0.014094213955104351, 0.006003213115036488, -0.005166780669242144, -0.01620175875723362, -0.004705755040049553, 0.008094293996691704, 0.018322477117180824, 0.026805350556969643, 0.009694711305201054, -0.01907329075038433, 0.04143962264060974, 0.010024015791714191, 0.028214771300554276, -0.005654150620102882, -0.0030625276267528534, 0.00948395673185587, 0.04610256850719452, -0.023512309417128563, -0.01261893194168806, 0.0077188871800899506, -0.017545320093631744, 0.012981166131794453, -0.006115176249295473, 0.006312758661806583, 0.008146982640028, 0.00547961937263608, 0.006928557530045509, -0.020298302173614502, -0.028530903160572052, 0.014199591241776943, -0.01555632334202528, -0.015240191482007504, -0.018585920333862305, 0.003661861177533865, 0.006668407004326582, 0.002310067880898714, -0.00796915777027607, 0.011156821623444557, -0.01356732752174139, -0.015147986821830273, -0.0015716035850346088, -0.01977141574025154, -0.010478455573320389, 0.004294124897569418, -0.024855870753526688, 0.026410184800624847, -0.0128626162186265, -0.003816633950918913, 0.015371913090348244, -0.005018593743443489, -0.013376330956816673, -0.018783504143357277, 0.01759800873696804, -0.01916549541056156, 0.004837476648390293, 0.018059033900499344, -0.01339608896523714, -0.05727256089448929, -0.0099186385050416, 0.04022778198122978, -0.017110638320446014, -0.00796915777027607, -0.01925770193338394, -0.008199671283364296, -0.053241878747940063, 0.020232440903782845, -0.016452031210064888, -0.006154692731797695, -0.006167864892631769, 0.011980081908404827, 0.015622184611856937, 0.01725553348660469, -0.022063372656702995, -0.034352999180555344, -0.026818523183465004, 0.022563913837075233, 0.0015946548664942384, 0.016596924513578415, 0.01559584029018879, 0.008364323526620865, 0.00919416919350624, -0.005008714739233255, 0.009971327148377895, 0.20063838362693787, 0.009325890801846981, 0.009898879565298557, 0.010208426043391228, -0.016056865453720093, 0.015411430038511753, 0.015266535803675652, -0.010083289816975594, -0.012144733220338821, 0.004956026095896959, -0.01795365661382675, -0.01192080695182085, -0.028320148587226868, 0.004577326588332653, -0.004735392518341541, -0.017281876876950264, -0.007080037146806717, -0.03677667677402496, -0.02010072022676468, -0.01801951788365841, 0.0048440624959766865, 0.0147791663184762, -0.034273967146873474, -0.008311634883284569, 0.03975358605384827, -0.002023573499172926, -0.026660457253456116, 0.004913216456770897, 0.007923055440187454, 0.002061443403363228, -0.029452955350279808, -0.005367656238377094, -0.017545320093631744, 0.0049593192525208, -0.03675033152103424, -0.0034214691258966923, 0.039569176733493805, -0.003935183398425579, 0.03970089554786682, -0.021365247666835785, 0.0030592347029596567, 0.008035019040107727, -0.009635436348617077, 0.004386330023407936, 0.016847195103764534, 0.01734773814678192, 0.002224448835477233, -0.019810931757092476, -0.014950403943657875, 0.025553995743393898, -0.021338902413845062, -0.028583591803908348, 0.023433277383446693, 0.024460704997181892, 0.0017041484825313091, -0.003734308062121272, -0.021338902413845062, 0.0076661985367536545, 0.003235412295907736, 0.0004704931634478271, -0.01343560591340065, 0.04022778198122978, 0.002049917820841074, 0.014765993691980839, -0.024500221014022827, 0.00797574408352375, -0.033246539533138275, 0.020653950050473213, 0.00013295651297084987, -0.0014579937560483813, 0.0005235934513621032, 0.003197542391717434, 0.009312719106674194, -0.019205013290047646, -0.013540983200073242, -0.005723304580897093, 0.005423638038337231, 0.017663870006799698, 0.02313031628727913, 0.014897715300321579, 0.0006306172581389546, -0.021892134100198746, 0.001089173136278987, -0.029268544167280197, -0.048578932881355286, -0.002726637525483966, 0.03369439020752907, 0.009075620211660862, 0.005314967595040798, -0.016333481296896935, -0.017439942806959152, -0.0014736356679350138, -0.0018638609908521175, -0.0008817116031423211, 0.006744147278368473, 0.019020602107048035, -0.010024015791714191, 0.009016345255076885, -0.0027496889233589172, -0.006948315538465977, -0.034879885613918304, 0.035406772047281265, -0.003780410625040531, 0.008990000933408737, 0.010603590868413448, 8.41783476062119e-05, -0.011670535430312157, 0.014660616405308247, -0.0033243244979530573, -0.053531669080257416, 0.008976828306913376, -0.024684632197022438, 0.009635436348617077, -0.011742983013391495, 0.001057066023349762, -0.004155817441642284, -0.020245613530278206, -0.009635436348617077, 0.005209590308368206, 0.01001742947846651, -0.01612272672355175, -0.018480543047189713, -0.004435725510120392, -0.012283041141927242, -0.016491547226905823, -0.003307859180495143, -0.012546484358608723, -0.0009179350454360247, 0.00375735922716558, -0.012809927575290203, 0.015898799523711205, -0.030480382964015007, -0.02262977510690689, -0.012856030836701393, 0.003335850080475211, -0.012658447958528996, -0.02792498469352722, -0.005203003995120525, -0.02070663869380951, 0.000323335436405614, -0.03179759904742241, 0.006493876222521067, -0.020996427163481712, 0.01716332696378231, 0.004590498749166727, -0.030190596356987953, 0.01786145195364952, -0.006619011517614126, -0.011202923953533173, -0.015991004183888435, -0.01699209026992321, -0.0063621546141803265, -0.0029818483162671328, 0.005127264186739922, 0.011854945681989193, -0.04473266378045082, -0.020337818190455437, -0.011216096580028534, -0.002054857322946191, 0.01546411868184805, -0.045812781900167465, 0.013712220825254917, 0.006572909187525511, 0.013896631076931953, -0.02028512954711914, -0.006022971123456955, -0.16417783498764038, -0.01716332696378231, 0.0042117987759411335, -0.020416852086782455, 0.04323103651404381, 0.014160074293613434, 0.025514477863907814, 0.001442351727746427, -0.014304968528449535, 0.006325930822640657, -0.011545400135219097, 0.000920404854696244, -0.023551825433969498, 0.0017700092867016792, -0.009273202158510685, -0.016359824687242508, 0.02937392145395279, 0.023854786530137062, 0.05052841454744339, 0.01570121757686138, 0.02530372329056263, -0.03798851743340492, 0.0068165939301252365, 0.013224851340055466, -0.014199591241776943, -0.025672543793916702, -0.007501546293497086, -0.007804505992680788, -0.000691538501996547, -0.030216939747333527, -0.0034379344433546066, 0.01568804495036602, 0.016083210706710815, -0.011064616031944752, 0.011189752258360386, 0.009576162323355675, 0.015609011985361576, -0.01031380333006382, 2.1996482246322557e-05, -0.007106381468474865, 0.014186418615281582, 0.02286687307059765, -0.0066354768350720406, 0.00515690166503191, 0.006948315538465977, 0.013106301426887512, 0.011960322968661785, -0.029426610097289085, 0.007606923580169678, -0.007909883745014668, 0.035828281193971634, -0.024724148213863373, -0.018915224820375443, -0.0015872456133365631, 0.0068297660909593105, -0.033325571566820145, -0.006543271709233522, 0.004373157862573862, -0.0084038395434618, 0.015543151646852493, 0.00420521292835474, -0.027714230120182037, -0.013112887740135193, 0.006493876222521067, -0.0034313483629375696, -0.011440022848546505, -0.011077788658440113, 0.02157600224018097, -0.029163166880607605, 0.009826432913541794, -0.00137072813231498, -0.004274366889148951, 0.019705554470419884, -0.004159110132604837, -0.0019988755229860544, 0.012006426230072975, 0.009437854401767254, 0.017136983573436737, -0.019573833793401718, -0.02359134331345558, -0.002145415870472789, 0.032535240054130554, 0.002224448835477233, -0.0132643673568964, -0.00515690166503191, -0.000776334316469729, 0.004435725510120392, 0.01741359941661358, -0.029795430600643158, -0.040333159267902374, 0.03161318972706795, -0.009997671470046043, -0.0016284085577353835, 0.0023084215354174376, 0.02208971604704857, 0.0032403520308434963, 0.011677121743559837, -0.01974507048726082, 0.013475121930241585, 0.010215011425316334, 0.006223846692591906, 0.010919722728431225, -0.020943738520145416, -0.012421349063515663, 0.05018593743443489, 0.004909923300147057, -0.027108309790492058, 0.02634432539343834, 0.03345729410648346, -0.0009492189274169505, -0.001807879307307303, 0.010801172815263271, 0.017374081537127495, 0.02393381856381893, 0.0031810773070901632, 0.02062760666012764, 0.009543231688439846, -0.008640938438475132, -0.0011443316470831633, 0.004603670910000801, 0.032904062420129776, -0.010649693198502064, -0.023117145523428917, 0.016056865453720093, -0.027002932503819466, -0.0023742823395878077, -0.12139464914798737, -0.03005887381732464, -0.005400586407631636, -0.0007915646419860423, 0.00745544396340847, 0.008489458821713924, -0.014133729971945286, 0.007896711118519306, -0.011117304675281048, 0.014660616405308247, -0.0014777519972994924, -0.02565937303006649, -0.011163407936692238, -0.005983454640954733, -0.03390514478087425, -0.008212842978537083, -0.0063884989358484745, 0.004557568114250898, -0.015898799523711205, 0.03163953498005867, 0.00883852131664753, -0.007811092305928469, -0.01165077742189169, 0.00534789776429534, -0.025461789220571518, 0.023709891363978386, -0.017281876876950264, -0.008608007803559303, -0.006296293810009956, 0.014700133353471756, -0.003635516855865717, 0.008311634883284569, 0.0010142565006390214, -0.01751897670328617, 0.017031606286764145, -0.013033854775130749, -0.021615518257021904, -0.02176041156053543, 0.04143962264060974, -0.0028748244512826204, -0.0064280154183506966, 0.017031606286764145, 0.033325571566820145, 0.005881370510905981, 0.025013936683535576, 0.0036651541013270617, -0.04331006854772568, 0.03282502666115761, -0.00857507809996605, -0.02288004569709301, -0.06907481700181961, -0.006681579165160656, -0.012856030836701393, 0.01014256477355957, 0.036539576947689056, -0.016781335696578026, 0.011176579631865025, 0.02417091839015484, -0.01916549541056156, 0.01801951788365841, -0.022827357053756714, 0.0009121722541749477, -0.021549656987190247, 0.020601261407136917, 0.013198507018387318, 0.01447620615363121, -0.025172002613544464, -0.00758057925850153, 0.03719818592071533, -0.002655837219208479, -0.013053612783551216, 0.006493876222521067, -0.027582507580518723, 0.03559118136763573, -0.017479458823800087, 0.015385085716843605, 0.0015411429340019822, 0.003773824544623494, 0.009688124991953373, 0.01907329075038433, -0.02087787725031376, -0.003931890241801739, -0.010939480736851692, -0.00988570787012577, 0.0034741577692329884, 0.008377495221793652, 0.0033243244979530573, 0.008008674718439579, 0.00010609765013214201, -0.014950403943657875, 0.0002650897658895701, 0.011084374971687794, 0.015108469873666763, -0.0017189672216773033, -0.0017897675279527903, 0.011479539796710014, 0.01244110707193613, -0.0015716035850346088, -0.0018177584279328585, 0.0021832860074937344, -0.04309931397438049, -0.005805630702525377, -0.0278986394405365, 0.025013936683535576, 0.0003445343754719943, -0.017874624580144882, -0.006707923486828804, -0.02037733420729637, 0.015661701560020447, -0.001410244614817202, -0.006783663760870695, -0.0014209470245987177, -0.018006345257163048, 0.026107225567102432, 0.015793422237038612, -0.0023841613437980413, 0.0007285852334462106, 0.005604755133390427, -0.000391666020732373, -0.004369864705950022, -0.005647564772516489, 0.009240271523594856, -0.013356572948396206, -0.006882454734295607, -0.0015699571231380105, 0.0004692582879215479, 0.00637203361839056, 0.006954901851713657, -0.00029740273021161556, 0.02705562114715576, -0.0051140920259058475, -0.033773425966501236, 0.018954740837216377, -0.009602506645023823, 0.005374242085963488, 0.0035861211363226175, -0.004860527813434601, 0.004682703875005245, 0.033325571566820145, 0.02168137952685356, 0.0336153581738472, 0.03119168058037758, -0.0017963536083698273, -0.02477683685719967, 0.009727641940116882, -0.03509064018726349, 0.015977833420038223, -0.0025619855150580406, -0.00935882143676281, -6.725006096530706e-05, -0.01434448454529047, 0.01394931972026825, 0.036539576947689056, 0.014976748265326023, -0.025619855150580406, -0.01974507048726082, -0.009964740835130215, -0.028741657733917236, -0.007896711118519306, -0.026199430227279663, -0.007797920145094395, -0.015411430038511753, 0.025791093707084656, -0.013455363921821117, 0.02037733420729637, -0.012553070671856403, 0.009108549915254116, -0.014291795901954174, -0.028030361980199814, 8.268619421869516e-05, -0.010656279511749744, -0.0008858279325067997, -0.007890124805271626, -0.013093129731714725, 0.02538275718688965, 0.011479539796710014, 0.04344179108738899, 0.013988836668431759, -0.024210434406995773, 0.016675958409905434, -0.018059033900499344, 0.025409100577235222, 0.02027195692062378, -0.006701337639242411, -0.02070663869380951, -0.019876793026924133, 0.04151865467429161, -0.009069033898413181, 0.013178748078644276, 0.01890205219388008, 0.013455363921821117, 0.0007462853100150824, -0.01570121757686138, 0.00465965224429965, -0.015793422237038612, -0.01217766385525465, 0.019955825060606003, 0.02313031628727913, -0.022050200030207634, 0.00857507809996605, -0.005838560871779919, 0.02208971604704857, 0.021694552153348923, 0.004280952736735344, -0.014858199283480644, -0.005216176155954599, -0.02168137952685356, 0.012243525125086308, -0.0014398819766938686, -0.03069113753736019, -0.024579254910349846, 0.016320308670401573, -0.00771230086684227, 0.02626529149711132, 0.027450786903500557, 0.01855957694351673, -0.013415846973657608, 0.003994458355009556, -0.007369824685156345, -0.041729409247636795, -0.003635516855865717, 0.014054697006940842, 0.023815268650650978, 0.001605357276275754, 0.011736396700143814, -0.012421349063515663, 0.01178249903023243, 0.030401350930333138, 0.024579254910349846, -0.03198200836777687, 0.0034082969650626183, -0.01924452930688858, -0.024987591430544853, 0.02615991421043873, -0.02739809826016426, -0.01261234562844038, -0.002054857322946191, -0.03569655865430832, 0.00922709982842207, 0.0031497932504862547, -0.00022330931096803397, 0.05321553722023964, -0.008812176994979382, -0.012236938811838627, 0.010215011425316334, -0.00331444526091218, 0.0033062128350138664, 0.04072832688689232, 0.005571824498474598, -0.016083210706710815, -0.024658286944031715, 0.011947151273488998, -0.015227019786834717, 0.0025043573696166277, -0.0436788909137249, 0.010722139850258827, 0.0034445205237716436, 0.0017551906639710069, 0.01699209026992321, -0.022234609350562096, 0.02356499806046486, 0.03474816307425499, 0.01775607466697693, 0.02002168633043766, 0.0017436649650335312, -0.009391752071678638, 0.014002008363604546, 0.045970845967531204, 0.018401511013507843, -0.02124669775366783, -0.025633027777075768, 0.0053182607516646385, -0.015753906220197678, 0.013936148025095463, -0.03174491226673126, 0.008871451020240784, 0.04246705025434494, -0.0067902496084570885, 0.020350990816950798, 0.031086303293704987, 0.008825348690152168, -0.0007713947561569512, -0.0030065460596233606, -0.03322019428014755, -0.06043387949466705, -0.014423517510294914, 0.01853323169052601, 0.007231517229229212, -0.007811092305928469, -0.037145499140024185], "30edcd48-606d-40a4-b815-a31a30ffd824": [-0.011638767085969448, -0.0040094307623803616, 0.016736183315515518, -0.014372164383530617, -0.016830207780003548, -0.0005267834640108049, 0.0011501089902594686, -0.024083448573946953, -0.01494973711669445, -0.009294895455241203, 0.013969206251204014, -0.0030356161296367645, -0.017192870378494263, 0.0011744543444365263, 0.008710606023669243, 0.0005784124368801713, 0.030194977298378944, 0.0022985388059169054, 0.021356767043471336, -0.018455469980835915, -0.015782516449689865, 0.016575001180171967, 0.005456721410155296, -0.006360018625855446, -0.010792555287480354, 0.025063980370759964, 0.0007840888574719429, -0.018133103847503662, 0.004775051027536392, -0.026460900902748108, 0.02952338010072708, -0.005849605426192284, -0.007897973991930485, -0.01717943698167801, -0.03371414169669151, 0.01595713198184967, 0.004241131711751223, -0.012095452286303043, -0.011665630154311657, -0.009845604188740253, 0.029147285968065262, 0.02474161423742771, -0.002051727147772908, -0.001631979364901781, 0.008455399423837662, 0.04513128101825714, 0.02272682450711727, -0.030033793300390244, -0.0006548065575771034, -0.0014372164150699973, 0.03169935196638107, 0.010288857854902744, -0.023935697972774506, -0.02221641130745411, 0.025816168636083603, -0.006910727825015783, -0.0053089698776602745, 0.0031380343716591597, 0.020779194310307503, 0.003955703228712082, 0.01559447031468153, 0.0171525739133358, -0.016883935779333115, 0.009791876189410686, -0.016575001180171967, -0.0039859251119196415, 0.023438716307282448, 0.006789840292185545, -0.00028668774757534266, -0.0143990283831954, 0.018777837976813316, 0.0019174079643562436, -0.006601793225854635, 0.0071995141915977, 0.023425284773111343, -0.0069913193583488464, -0.015057193115353584, 0.0006212267326191068, 0.02067173831164837, 0.008535991422832012, 0.007924837991595268, -0.0028777909465134144, -0.029415925964713097, 0.0011610223446041346, 0.026863858103752136, -0.00497317174449563, 0.001285267760977149, 0.011947700753808022, -0.025977350771427155, -0.01743464358150959, 0.008227056823670864, 0.008878504857420921, 9.89555410342291e-05, 0.003609830979257822, 0.009832172654569149, 0.018133103847503662, -0.01973150484263897, 0.02772350236773491, -0.015648197382688522, -0.0286368727684021, 0.000865519919898361, 0.00258060940541327, -0.010201550088822842, -0.0030809487216174603, -0.008616582490503788, 0.004056442528963089, 0.016601864248514175, 0.014990032650530338, 0.008562854491174221, 0.007172650191932917, -0.013149858452379704, 0.055339548736810684, 0.014452756382524967, -0.03062479943037033, 0.03030243329703808, 0.006235773209482431, 0.029792020097374916, -0.02247161790728569, -0.014452756382524967, 0.007179366424679756, 0.020819490775465965, -0.016091451048851013, -0.01598399505019188, 0.0005452524055726826, 0.02322380617260933, -0.005322401877492666, -0.013781159184873104, -0.018213696777820587, 0.0025671774055808783, -0.01347222551703453, 0.024902796372771263, 0.0070920586585998535, 0.02212238684296608, 0.003764298278838396, -0.011161933653056622, -0.011551459319889545, -0.023438716307282448, 0.0041068121790885925, -0.008542707189917564, -0.022458186373114586, 0.03100089356303215, 0.01143728755414486, 0.003881827462464571, -0.0027149287052452564, 0.008603150956332684, 0.030141249299049377, -0.006319722626358271, -0.008535991422832012, 0.005282106343656778, 0.0012097131693735719, -0.003164898371323943, 9.486300405114889e-05, -0.03924809768795967, -0.026044510304927826, 0.00378780416212976, 0.0036299789790064096, -0.007434573024511337, -0.00240767328068614, -0.0006963615887798369, -0.029147285968065262, 0.039946556091308594, 0.023170078173279762, 0.018039081245660782, 0.018294287845492363, -0.0047616190277040005, 0.0421762578189373, 0.018925588577985764, -0.011927553452551365, -0.01736748404800892, 0.0024580431636422873, 0.005409709643572569, 0.01750180311501026, -0.038603365421295166, 0.02231043390929699, 0.013062551617622375, -0.01042989268898964, -0.0003758841485250741, 0.015970563516020775, -0.019597183912992477, 0.005238452460616827, 0.010047082789242268, -0.00018804700812324882, 0.010376165620982647, 0.019812095910310745, -0.030141249299049377, -0.011820097453892231, 0.02212238684296608, -0.0018116314895451069, 0.027642911300063133, 0.009973207488656044, 0.007367413025349379, 0.023559603840112686, -0.01649440824985504, -0.01257228571921587, -0.6335572600364685, -0.0009553459822200239, -0.001111492165364325, -0.02533261850476265, -0.005775729659944773, 0.021074697375297546, -0.003948986995965242, 0.01013439055532217, -0.027642911300063133, 0.035863250494003296, -0.014009501785039902, 0.025534097105264664, 0.004103454295545816, -0.023049190640449524, 0.02102096937596798, -0.025158002972602844, 0.013848318718373775, -0.03323059156537056, -0.017703283578157425, 0.013747579418122768, 0.000511672580614686, 0.03546029329299927, -0.009637408889830112, -0.009912763722240925, -0.0058227414265275, 0.012411102652549744, 0.01496316958218813, -0.028932375833392143, 0.027011610567569733, 0.04255235195159912, -0.016763048246502876, -0.007152502425014973, -0.0013171685859560966, -0.0003278230142313987, 0.03521851822733879, -0.0010065551614388824, 0.007891258224844933, 0.021356767043471336, 0.016951095312833786, 0.04588346928358078, -0.029066694900393486, -0.012545421719551086, 0.028287643566727638, 0.01145743578672409, 0.04056442528963089, -0.015648197382688522, -0.0106985317543149, -0.00203829538077116, 0.015809381380677223, -0.007353981491178274, 0.0013583038235083222, 0.0038952594622969627, 0.0010753938695415854, -0.007662915624678135, 0.027172792702913284, 0.00019497284665703773, 0.0069174435921013355, -0.0016168685397133231, 0.01055749598890543, -0.03597070649266243, 0.00428814347833395, 0.017609259113669395, 0.013002107851207256, 0.011121637187898159, -0.017448076978325844, 0.031242666766047478, 0.003687064629048109, -0.0003334896173328161, -0.0019929625559598207, -0.033123139292001724, 0.02823391556739807, 0.004989961627870798, -0.03583638742566109, -0.031296394765377045, 0.01708541437983513, 0.03288136422634125, -0.001371735823340714, 0.00415382394567132, 0.0020097524393349886, -8.345766673301114e-07, -0.0015757331857457757, 0.013297609984874725, -0.026662379503250122, -0.031645625829696655, 0.01727346144616604, 0.0016051155980676413, -0.018133103847503662, -0.0007631015032529831, -0.011094773188233376, 0.0013247240567579865, -0.00040526650263927877, 0.011101489886641502, -0.009247883222997189, -0.013586396351456642, -0.012142464518547058, -0.003337834496051073, 0.0008373968303203583, -0.008932232856750488, -0.008912084624171257, -0.034412603825330734, -0.021329903975129128, -0.013552816584706306, -0.010443325154483318, -0.009576965123414993, 0.033472366631031036, 0.010208265855908394, 0.011652198620140553, 0.005973850376904011, 0.03849590942263603, 0.017770443111658096, -0.012075304053723812, -0.02111499197781086, 0.008314364589750767, -0.01708541437983513, 0.027669774368405342, -0.024271495640277863, 0.005698496010154486, -0.007474868558347225, -0.0037475081626325846, -0.005973850376904011, 0.02652806043624878, 0.020282212644815445, -0.005946986842900515, -0.011396992020308971, 0.017730146646499634, 0.014546778984367847, 0.03309627249836922, -0.00756889209151268, -0.030866572633385658, -0.004828778561204672, 0.0008663594489917159, -0.007951701991260052, 0.006759618408977985, -0.009865752421319485, -0.0027988783549517393, -0.0051108491607010365, 0.017300324514508247, -0.007280105724930763, 0.00018374458886682987, -0.008918801322579384, -0.0046877432614564896, -0.009409066289663315, 0.017743578180670738, -0.0082606365904212, 0.0019660985562950373, 0.0020366162061691284, -0.01626606658101082, -0.01339163351804018, 1.7931100956047885e-05, 0.00013883158680982888, -0.004197477828711271, -0.010920158587396145, -0.009409066289663315, 0.027387704700231552, 0.0007379166199825704, -0.0031598613131791353, 0.01611831597983837, -0.014224412851035595, -0.006715964525938034, -0.015460150316357613, 0.0029617403633892536, 0.020228484645485878, -0.019744936376810074, 0.004620583727955818, -0.00494966609403491, -0.018925588577985764, -0.024526702240109444, 0.038657091557979584, -0.023653628304600716, -0.041746437549591064, 0.004580287728458643, 0.0019056550227105618, -0.01790476217865944, 0.012330510653555393, -0.0035695352125912905, 0.019838958978652954, -0.016642160713672638, 0.009147143922746181, -0.017004823312163353, -0.0231297817081213, -0.0015404743608087301, 0.027307111769914627, 0.008878504857420921, -0.03301568329334259, 0.004922802094370127, 0.013190154917538166, 0.010060515254735947, -0.0021172077395021915, 0.0031430714298039675, 0.03688407689332962, 0.019033044576644897, 0.015889972448349, -0.03873768448829651, -0.005245168227702379, -0.015540742315351963, 0.0150303291156888, 0.008737470023334026, 0.015043760649859905, 0.009147143922746181, 0.035352837294340134, 0.02769663743674755, 0.013136426918208599, 0.014936305582523346, -0.0286368727684021, -0.004613867495208979, -0.021343335509300232, 0.016789911314845085, -0.022646233439445496, 0.0023724145721644163, -0.038603365421295166, 0.007891258224844933, 0.0003979208995588124, -0.02130303904414177, -0.011182080954313278, 0.025440074503421783, 0.034224554896354675, -0.0014783517690375447, 0.03876454755663872, 0.009261315688490868, -0.002246490214020014, -0.0012223055819049478, 0.009597113355994225, 0.021692566573619843, -0.0002717867027968168, 0.0007903850637376308, -0.007911406457424164, -0.0064137461595237255, -0.010369449853897095, 0.019677776843309402, -0.022162683308124542, 0.011316400021314621, -0.007750223390758038, 0.02570871263742447, 0.00020630603830795735, 0.03454692289233208, -0.0025184866972267628, 0.04386867955327034, -0.022256705909967422, 0.0418538898229599, -0.008213624358177185, -0.014331868849694729, 0.004543350078165531, -0.004090022295713425, -0.015043760649859905, 0.030571071431040764, 0.013210302218794823, 0.047280389815568924, 0.0035359554458409548, -0.01532583124935627, 0.03320372849702835, 0.0010577643988654017, 0.00040526650263927877, -0.04655506834387779, -0.004241131711751223, -0.013109562918543816, -0.004224341828376055, -0.0008088540052995086, -0.004197477828711271, 0.02521173097193241, 0.0058899009600281715, -0.0025587824638932943, -0.002570535521954298, 0.01431843638420105, -0.0009788518073037267, 0.017004823312163353, -0.0048623583279550076, -0.013794591650366783, -0.02474161423742771, -0.006037652026861906, 0.006497695576399565, -0.012229771353304386, -0.039355553686618805, -0.02809959650039673, 0.0005884863785468042, 0.057166289538145065, 0.00706519465893507, -0.007192797958850861, 0.02347901277244091, 0.02291487157344818, -0.0050571211613714695, -0.021894045174121857, -0.008455399423837662, 0.040080875158309937, 0.014681098982691765, 0.0013608223525807261, -0.040268924087285995, -0.013660271652042866, -0.0004785124910995364, -0.018106240779161453, 0.0033999572042375803, -0.023465581238269806, -0.013861751183867455, -0.010329153388738632, 0.014976601116359234, 0.008898653090000153, 0.004348587244749069, 0.034923017024993896, -0.011793233454227448, 0.02407001703977585, 0.0015253634192049503, 0.00016443619097117335, 0.012283499352633953, -0.013606544584035873, 0.0019056550227105618, 0.05136369913816452, 0.0016067945398390293, 0.017354052513837814, -0.036776620894670486, -0.0056582000106573105, -0.025090843439102173, 0.004899295978248119, -0.021450791507959366, -0.007985281758010387, -0.030517343431711197, 0.00046214231406338513, -0.013210302218794823, 0.008992676623165607, 0.005930196959525347, 0.020443396642804146, 0.011511163786053658, -0.007145786192268133, -0.018804701045155525, -0.01540642324835062, -0.012605865485966206, 0.03473496809601784, 0.023089487105607986, 0.0023522665724158287, -0.006924159359186888, -0.014116957783699036, -0.010483620688319206, -0.015352695249021053, -0.02354617230594158, 0.035299111157655716, -0.009993355721235275, 0.01169249415397644, 0.005446647293865681, 0.03253213316202164, 0.018576357513666153, 0.011658914387226105, 0.008173328824341297, 0.014990032650530338, -0.012975243851542473, 0.010389597155153751, -0.011175365187227726, 0.034923017024993896, 0.01088657882064581, 0.01368713565170765, 0.00033726735273376107, -0.00019088030967395753, 0.01540642324835062, 0.021880613639950752, -0.009718000888824463, 0.020161325111985207, -0.02861000970005989, -0.006497695576399565, 0.015312399715185165, 0.010127674788236618, 0.028368234634399414, -0.005745507776737213, 0.04255235195159912, 0.022955168038606644, 0.02596391923725605, 0.011114921420812607, -0.006098095793277025, 0.006272710859775543, 0.016601864248514175, 0.0034923015628010035, -0.012988675385713577, -0.015621333383023739, -0.007293537724763155, -0.013223734684288502, 0.016575001180171967, -0.007132354658097029, -0.011873825453221798, 0.009435930289328098, 0.0056380522437393665, -0.03527224808931351, -0.004781766794621944, 0.022632800042629242, -0.006672310642898083, -0.0020181473810225725, -0.014748258516192436, -0.03215603902935982, -0.011477584019303322, 0.007730075158178806, -0.012800628319382668, -0.0038583215791732073, -0.009597113355994225, -0.007676347624510527, -0.011215660721063614, 0.011826814152300358, 0.03637366369366646, -0.017394348978996277, 0.0037240025121718645, 0.016924230381846428, -0.034573785960674286, -0.02231043390929699, -0.017166005447506905, 0.013445361517369747, 0.025601256638765335, 0.0051914406940341, 0.0015152895357459784, 0.018925588577985764, -6.364425644278526e-05, -0.0038986175786703825, -0.044325366616249084, -0.0066085089929401875, -0.02791154943406582, -0.009765012189745903, 0.002656164113432169, 0.009274747222661972, -0.005627978593111038, -0.03417082875967026, 0.03634680062532425, 0.00431836536154151, 0.017166005447506905, -0.019341977313160896, -0.008099453523755074, 0.004929517861455679, 0.011403707787394524, -0.00818004459142685, 0.03411709889769554, 0.006809988059103489, -0.01008737925440073, 0.009234451688826084, -0.008670310489833355, -0.03884514048695564, -0.016642160713672638, -0.02687728963792324, -0.0007345586200244725, -0.005047047510743141, 0.005503733176738024, 0.009375486522912979, -0.009731432422995567, 0.03226349502801895, -0.0387108214199543, 0.015554173849523067, 0.019556889310479164, 0.024056585505604744, 0.03645425662398338, 0.011746222153306007, 0.028019003570079803, -0.0005939431139267981, -0.009617261588573456, 0.0013566248817369342, -0.02577587217092514, 0.026608651503920555, 0.019650911912322044, 0.0036736326292157173, 0.012605865485966206, 0.0052317362278699875, -0.021638838574290276, -0.026823563501238823, -0.007293537724763155, 0.013082698918879032, 0.012820776551961899, 0.021423926576972008, -0.023720787838101387, -0.026568356901407242, 0.012390954419970512, -0.029281605035066605, 0.0034654377959668636, -0.008509127423167229, -0.0006128317909315228, -0.002060122089460492, 0.0058227414265275, -0.019436001777648926, -0.0074614365585148335, -0.0022632800973951817, -0.030356159433722496, -0.014909441582858562, -0.00045122887240722775, 0.009274747222661972, 0.01961061730980873, 0.0218671802431345, -0.0033898830879479647, -0.0443790927529335, -0.01947629824280739, 0.029496517032384872, -0.008408388122916222, -0.008287500590085983, 0.033338047564029694, 0.025829600170254707, 0.00989933218806982, 0.020470259711146355, -0.0025470296386629343, 0.03435887396335602, 0.0020802700892090797, -0.005446647293865681, 0.027051905170083046, -0.01797192171216011, -0.003952345345169306, -0.009859035722911358, -0.002980209421366453, -0.0027048548217862844, -0.010053799487650394, 0.009570249356329441, -0.013358053751289845, -0.011235808953642845, 0.009664272889494896, -0.002501696813851595, 0.01607801951467991, -0.021262744441628456, -0.01916736364364624, -0.011255957186222076, 0.012142464518547058, -0.014116957783699036, 0.024553567171096802, -0.011041046120226383, 0.023156646639108658, 0.014224412851035595, -0.01513778418302536, -0.0015345979481935501, 0.012236487120389938, 0.0003624522069003433, -0.015527309849858284, -0.003087664721533656, 0.02369392290711403, 0.0009561854531057179, -0.01607801951467991, -0.012545421719551086, -0.03739449009299278, -0.005913407076150179, -0.001964419614523649, 0.010362733155488968, 0.014264709316194057, -0.03468124195933342, 0.0182539913803339, -0.022995462641119957, 0.021692566573619843, 0.0003691681777127087, -0.008039009757339954, 0.03159189596772194, -0.0006883863825351, -0.04034951701760292, -0.02407001703977585, -0.0069174435921013355, -0.0075151645578444, -0.00598056660965085, 0.006269352976232767, 0.021155288442969322, 0.012404386885464191, -0.034251417964696884, -0.012176044285297394, -0.014842282049357891, -0.008139749057590961, 0.020685171708464622, 0.018106240779161453, 0.042847853153944016, 0.021423926576972008, 0.00043317972449585795, -0.011826814152300358, -0.009832172654569149, 0.01145743578672409, 0.0042579215951263905, 0.03895259648561478, -0.008885221555829048, -0.02108812890946865, -0.01605115458369255, -0.004392240662127733, 0.0040094307623803616, -0.01579594798386097, -0.025856463238596916, 0.025453506037592888, 0.013928910717368126, -0.02137019857764244, -0.019153930246829987, 0.006235773209482431, -0.02354617230594158, 0.031081484630703926, -0.01846890337765217, 0.021598542109131813, -0.01721973344683647, -0.012088736519217491, -0.009301611222326756, 0.008381524123251438, -0.003844889812171459, 0.02552066557109356, 0.01326403021812439, 0.0049362340942025185, -0.027535455301404, -0.009106848388910294, -0.008294216357171535, 0.003262279788032174, -0.0038348159287124872, 0.014801986515522003, -0.01605115458369255, -0.00870389025658369, 0.02373421937227249, -0.0017024970147758722, -0.005527238827198744, -0.03409023582935333, -0.010356017388403416, 0.02936219796538353, -0.009993355721235275, -0.004026220645755529, -0.013586396351456642, 0.008462115190923214, -0.011027613654732704, 0.015339263714849949, -7.23540288163349e-05, -0.0074614365585148335, 0.0032253419049084187, -0.002839174121618271, 0.008824777789413929, 0.024983389303088188, -0.007629335857927799, 0.0014204265316948295, -0.007468152791261673, -0.005930196959525347, -0.022270139306783676, 0.007810666691511869, -0.00963069312274456, -0.014264709316194057, -0.026138534769415855, -0.027401136234402657, 0.01633322611451149, 0.0019375558476895094, -0.005305611994117498, -0.020967241376638412, 0.020403100177645683, 0.035325974225997925, -0.015191512182354927, 0.007662915624678135, -0.003529239445924759, -0.01076569128781557, -0.016655592247843742, 0.023452147841453552, -0.005497016943991184, -0.009973207488656044, 0.018576357513666153, -0.006363376509398222, -0.017864465713500977, -0.010617939755320549, -0.006672310642898083, 0.02593705616891384, 0.015661628916859627, -0.01239767111837864, 0.025654984638094902, 0.01752866804599762, 0.003023863071575761, -0.017461508512496948, -0.0011719358153641224, 0.01961061730980873, -0.00534926587715745, 0.00813303329050541, 0.004748187027871609, 0.006094737909734249, -0.010409745387732983, -0.006074590142816305, 0.02218954637646675, 0.009825455956161022, -0.006296216975897551, -0.012223055586218834, 0.0027250025887042284, -0.0003257242788095027, 0.011799950152635574, -0.013693852350115776, -0.022337298840284348, -0.012115600518882275, -0.017380915582180023, 0.02634001336991787, -0.01567506231367588, 0.0016781516605988145, -0.032961953431367874, 0.03468124195933342, 0.007045046892017126, 0.023371556773781776, -0.007938270457088947, 0.002496659755706787, -0.01045004092156887, 0.0015908441273495555, -0.019409138709306717, -0.02791154943406582, -0.0022817489225417376, 0.04803257808089256, 0.013049119152128696, -0.006074590142816305, -0.011672346852719784, -0.02420433610677719, 0.0003185885725542903, -0.023962561041116714, 0.005399635527282953, 0.0014430929441004992, 0.03597070649266243, 0.02036280557513237, -0.015889972448349, 0.03811981528997421, 0.00045248810783959925, 0.01982552744448185, -0.014815418049693108, -0.011746222153306007, -0.009798591956496239, 0.03817354142665863, -0.02177315764129162, -0.00875090155750513, 0.010362733155488968, -0.013821455650031567, 0.00513099692761898, -0.010631372220814228, 0.014748258516192436, 0.003025542013347149, 0.005742149893194437, -0.007857678458094597, -0.03008752129971981, -0.01233722735196352, 0.005067195277661085, -0.004016146995127201, -0.015043760649859905, -0.03685721382498741, -0.007239809725433588, 0.013492372818291187, -0.002666237996891141, -0.015889972448349, -0.0036534848622977734, 0.008804629556834698, -0.019127067178487778, 0.003505733562633395, -0.005480227060616016, -0.004338513128459454, 0.0005838691722601652, -0.02668924257159233, 0.030785981565713882, -0.00010582891263766214, 0.00931504275649786, 0.028932375833392143, -0.013525952585041523, 0.001796520547941327, -0.034063372761011124, 0.016789911314845085, -0.00465752137824893, 0.01068509928882122, 0.009529953822493553, -0.0165212731808424, -0.03811981528997421, -0.005654842127114534, 0.020497124642133713, -0.014063229784369469, 0.007300253491848707, -0.004771692678332329, -0.00843525119125843, -0.03578266128897667, 0.011766370385885239, -0.0013633407652378082, 0.003423463087528944, 0.007333833258599043, -0.0003979208995588124, -0.03250527009367943, 0.008220341056585312, -0.02791154943406582, -0.027468295767903328, -0.024365520104765892, 0.023331260308623314, 0.0029449504800140858, 0.009845604188740253, -0.0011056156363338232, -0.009885899722576141, 0.018213696777820587, -0.0273742713034153, 0.0008248044177889824, 0.19653598964214325, -0.008045725524425507, -0.0005221662577241659, 0.027293680235743523, -0.0009133712155744433, 0.01150444708764553, 0.004120244178920984, -0.01759582757949829, -0.02423120103776455, 0.02181345224380493, -0.0008218661532737315, 0.018804701045155525, -0.024902796372771263, 0.0032102311961352825, -0.015742221847176552, 0.015231807716190815, -0.0333649106323719, -0.03151130676269531, -0.029147285968065262, 0.012787196785211563, 0.005597756709903479, 0.017649555578827858, -0.039543598890304565, -0.021638838574290276, 0.05136369913816452, 0.008005429990589619, 0.0026242632884532213, 0.01450648345053196, 0.027360839769244194, -0.026071375235915184, -0.021665701642632484, 0.005567534826695919, -0.006833494175225496, 0.008408388122916222, -0.027857821434736252, -0.0012298610527068377, 0.031645625829696655, 0.004902654327452183, 0.03803922235965729, -0.01654813624918461, 0.009288178756833076, -0.007971850223839283, 0.005225020460784435, -0.023331260308623314, 0.0058227414265275, 0.007797235157340765, -0.013633408583700657, -0.014922873117029667, -0.008334511891007423, 0.027535455301404, -0.0218671802431345, -0.01850919798016548, 0.009617261588573456, 0.014331868849694729, 0.0037475081626325846, -0.011658914387226105, -0.0057119280099868774, 0.0021205658558756113, 0.005816025193780661, 0.01642724871635437, -0.024352088570594788, 0.024943092837929726, -0.003878469578921795, 0.022955168038606644, -0.039946556091308594, 0.013888615183532238, -0.014116957783699036, 0.0184151753783226, 0.012243203818798065, -0.029603973031044006, 0.0015983995981514454, 0.009697852656245232, 0.005769013427197933, 0.0025487085804343224, -0.01496316958218813, 0.0014489693567156792, 0.004832136444747448, 0.0067831240594387054, 0.01734062097966671, 0.009402350522577763, -0.0013885257067158818, -0.02347901277244091, -0.006497695576399565, -0.0038348159287124872, -0.04445968568325043, -0.02668924257159233, 0.011168649420142174, -0.0032051941379904747, 0.008314364589750767, -0.02221641130745411, -0.01170592661947012, -0.00553059671074152, 0.00036602007457986474, -0.013237166218459606, 0.0008814703323878348, 0.025843031704425812, 0.0015052155358716846, 0.021141856908798218, -0.004429178778082132, 0.009368770755827427, -0.029254741966724396, 0.04349258542060852, 0.016736183315515518, 0.004926159977912903, 0.008710606023669243, -0.002730039646849036, -0.012975243851542473, 0.012659593485295773, 0.014479619450867176, -0.022552208974957466, -0.0047616190277040005, -0.035890113562345505, 0.020094165578484535, 0.003878469578921795, 0.018710676580667496, 0.006924159359186888, -0.02772350236773491, -0.029980065301060677, -0.0039657773450016975, 0.011403707787394524, 0.010517200455069542, -0.01661529578268528, -0.013680419884622097, -0.007508448325097561, 0.005238452460616827, -0.00706519465893507, -0.006628657225519419, 0.00701146712526679, -0.003097738604992628, -0.017139142379164696, 0.014237845316529274, -0.03967791795730591, -0.0031615402549505234, -0.01362669188529253, -0.004670953378081322, -0.02073889970779419, -0.01938227377831936, -0.02612510323524475, 0.005389561410993338, -0.003178330371156335, -0.013102847151458263, -0.0019140499643981457, -0.01818683184683323, -0.0009226056281477213, -0.011135069653391838, -0.015204943716526031, 0.003955703228712082, -0.024943092837929726, 0.00893894862383604, -0.01727346144616604, -0.022955168038606644, 0.004170613829046488, 0.0038280999287962914, -0.007676347624510527, 0.027992140501737595, -0.020134462043642998, -0.01299539115279913, -0.0471998006105423, -0.007058478891849518, 0.02055085264146328, -0.030759118497371674, 0.006930875591933727, 0.013378201983869076, 0.011282820254564285, -0.020349372178316116, -0.012901367619633675, -0.16913485527038574, 0.003979208879172802, -0.007051762659102678, -0.0237610824406147, 0.03118894062936306, 0.02901296690106392, 0.014707962982356548, -0.002291823038831353, 0.0020785911474376917, 0.005255242343991995, -0.016467545181512833, -0.018334584310650826, -0.025104274973273277, 0.010832850821316242, -0.008186761289834976, -0.011242524720728397, 0.006739470642060041, 0.018173400312662125, 0.0497250035405159, 0.03728703409433365, 0.017958490177989006, -0.019959846511483192, 0.042686671018600464, 0.0092075876891613, 0.0031514663714915514, 0.021598542109131813, -0.00043569819536060095, 0.0014405744150280952, 0.0075151645578444, -0.03814667835831642, 0.004771692678332329, 0.01431843638420105, 0.0022280211560428143, -0.004721323028206825, 0.020121030509471893, -0.009852319955825806, 0.000780311122070998, -0.02413717657327652, 0.002508412813767791, -0.0020903439726680517, 0.03508419916033745, 0.02807273156940937, 0.01120222918689251, 0.003185046138241887, -0.013808023184537888, 0.013982638716697693, 0.016669023782014847, -0.008166613057255745, 0.011491015553474426, 0.002939913421869278, 0.02539977803826332, -0.005275390110909939, -0.01907333917915821, 0.007743507158011198, 0.01935541070997715, 0.0020215052645653486, -0.024217767640948296, 0.009200871922075748, -0.01567506231367588, 0.003791162045672536, -0.008905368857085705, -0.04591033607721329, 0.0031346764881163836, 0.01954345777630806, -0.01881813257932663, -0.008643446490168571, -0.006202193442732096, 0.020000142976641655, -0.03940927982330322, 0.020792625844478607, -0.01063808798789978, -0.018482334911823273, 0.021329903975129128, 0.02486250177025795, -0.0048388526774942875, 0.007400993257761002, -0.0011719358153641224, 0.01649440824985504, -0.02882491983473301, -0.023962561041116714, -0.004278069362044334, 0.016910798847675323, 0.007273389492183924, -0.0005036973743699491, 0.001377612235955894, -0.012988675385713577, 0.006873789709061384, 0.02045682817697525, -0.023640194907784462, -0.04104797542095184, 0.02687728963792324, -0.021329903975129128, -0.006830135826021433, 0.0016882256604731083, 0.024432679638266563, 0.013680419884622097, 0.02354617230594158, -0.0051108491607010365, 0.010349301621317863, -0.02155824564397335, 0.010832850821316242, -0.002147429622709751, -0.014385595917701721, 0.009664272889494896, 0.0601213164627552, 0.00584624707698822, -0.01916736364364624, 0.013257314451038837, 0.031618762761354446, 0.0037542241625487804, -0.018992748111486435, 0.01708541437983513, 0.0010267030447721481, 0.03315000236034393, -0.010362733155488968, 0.012881220318377018, 0.017568962648510933, -0.011094773188233376, 0.00849569495767355, 0.003515807446092367, 0.018777837976813316, -0.0176226906478405, -0.00635666074231267, 0.010309006087481976, 0.003033936955034733, -0.010651519522070885, -0.1312030851840973, -0.03315000236034393, -0.004808630794286728, -0.004244489595293999, -0.00944264605641365, -0.0024446111638098955, -0.019301682710647583, 0.02167913317680359, -0.0024412530474364758, 0.01856292597949505, -0.009785160422325134, -0.00950308982282877, -0.0019258029060438275, 0.00060275784926489, -0.04241803288459778, -0.013821455650031567, -0.007709927391260862, 0.013096131384372711, -0.021880613639950752, 0.01220962405204773, 0.0012474904069676995, -0.007864394225180149, 0.008280784823000431, 0.013969206251204014, -0.023277534171938896, 0.004677669145166874, -0.023492444306612015, -0.02221641130745411, -0.007360697258263826, -0.001538795419037342, -0.005886543076485395, -0.0031967991963028908, 0.0011559854028746486, -0.022350730374455452, 0.0321023091673851, 0.008737470023334026, -0.02568184956908226, -0.020537419244647026, 0.028583144769072533, -0.0011484299320727587, -0.005335833877325058, -0.0012684778776019812, 0.01586310938000679, 0.0005607830244116485, 0.02001357451081276, 0.0010560854570940137, -0.03537970036268234, 0.03379473462700844, 0.00434187101200223, -0.0184151753783226, -0.05764983966946602, 0.01008737925440073, -0.01828085631132126, -0.010161254554986954, 0.02662208303809166, 0.006370092276483774, 0.0163600891828537, 0.010000071488320827, -0.007609188091009855, 0.005436573177576065, -0.007125638425350189, -0.005117564927786589, 0.008898653090000153, 0.021638838574290276, 0.003948986995965242, 0.0007845085929147899, -0.014372164383530617, 0.010174686089158058, 0.05544700473546982, -0.03468124195933342, -0.015876540914177895, -0.00013127611600793898, -0.04282099008560181, 0.025735575705766678, -0.014896010048687458, 0.01611831597983837, -0.012236487120389938, 0.006924159359186888, 0.007542028091847897, -0.0016840281896293163, -0.010900010354816914, -0.012202907353639603, -0.02067173831164837, -0.014439323917031288, -0.0004157601797487587, 0.03795863315463066, 0.019059907644987106, -0.003609830979257822, -0.010671667754650116, -0.011282820254564285, 0.00648426404222846, 0.004805272910743952, 0.009100131690502167, -0.006440610159188509, -0.0018787911394611, -0.0007610027678310871, 0.014412459917366505, -0.010926874354481697, -0.0012500089360401034, 0.0008063354762271047, -0.027145929634571075, -0.016924230381846428, -0.03376787155866623, 0.011403707787394524, -0.012814060784876347, -0.023519307374954224, 0.002662879880517721, -0.011672346852719784, 0.03320372849702835, -0.021343335509300232, -0.004926159977912903, 0.00137509370688349, -0.020940378308296204, 0.016642160713672638, 0.008502411656081676, 0.00537277152761817, 0.003764298278838396, -0.005298896227031946, -0.0014665988273918629, -0.0022078733891248703, 0.013129711151123047, -0.0051914406940341, -0.009294895455241203, -0.013848318718373775, 0.00944264605641365, 0.003522523446008563, 0.011108205653727055, -0.004775051027536392, 0.004869074560701847, 0.039355553686618805, -0.024634158238768578, -0.051256243139505386, 0.012807345017790794, -0.004049726761877537, 0.002496659755706787, 0.001373414765112102, -0.014493051916360855, 0.015822812914848328, 0.019624048843979836, 0.01040302962064743, 0.035702068358659744, 0.016561569646000862, -0.02278055250644684, -0.008992676623165607, 0.015634765848517418, -0.02917415089905262, 0.0038919015787541866, -0.021947773173451424, -0.01755553111433983, 0.003092701779678464, -0.007454720791429281, 0.011632050387561321, 0.0012432929361239076, 0.026863858103752136, -0.011034330353140831, 0.0013247240567579865, -0.018119672313332558, -0.022162683308124542, -0.0165212731808424, -0.020913513377308846, -0.0057152858935296535, -0.025829600170254707, 0.01143728755414486, -0.012773764319717884, 0.0021843675058335066, -0.02319694124162197, 0.022068660706281662, -0.03043675236403942, -0.017864465713500977, -0.014909441582858562, -0.008831493556499481, 0.00987918395549059, -0.0008336190949194133, -0.0021121709141880274, 0.03282763436436653, 0.01118879672139883, 0.04182702675461769, 0.035514019429683685, -0.025695281103253365, 0.008569571189582348, -0.017233164981007576, 0.030006930232048035, 0.033284321427345276, 0.005164576694369316, -0.038254134356975555, 0.001977851614356041, 0.03503047302365303, -0.001964419614523649, -0.005261958111077547, -0.008844925090670586, 0.0009738148655742407, 0.015849675983190536, -0.007474868558347225, -0.004667595494538546, -0.010060515254735947, -0.020685171708464622, -0.0025554245803505182, 0.018683813512325287, -0.009852319955825806, 0.005047047510743141, 0.006306290626525879, 0.004247847478836775, 0.00969113688915968, -0.013848318718373775, -0.015782516449689865, -0.02668924257159233, -0.03465437889099121, 0.013808023184537888, -0.004492980428040028, -0.03188740089535713, -0.00870389025658369, 0.02102096937596798, -0.024217767640948296, 0.01233722735196352, 0.02722652070224285, 0.010537348687648773, -0.025037115439772606, -0.02061801217496395, -0.009778444655239582, -0.0020299002062529325, -0.02177315764129162, 0.0119611332193017, 0.02861000970005989, 0.004946307744830847, 0.015473582781851292, -0.0014321794733405113, 0.020497124642133713, 0.024875933304429054, 0.016857070848345757, -0.02788468450307846, -0.013767727650702, -0.006746186409145594, -0.015527309849858284, -0.005322401877492666, -0.03508419916033745, -0.001803236547857523, 0.004096738528460264, -0.021235879510641098, 0.015043760649859905, 0.01126938872039318, 0.011182080954313278, 0.0679655596613884, -0.019624048843979836, 0.005050405394285917, -0.010288857854902744, 0.0022951809223741293, -0.007320401258766651, 0.03594384342432022, -0.0113298324868083, -0.0032051941379904747, -0.01860322244465351, 0.031323257833719254, -0.014613939449191093, 0.0001821705373004079, -0.04021519795060158, -0.008314364589750767, 0.01202157698571682, -0.006679026875644922, 0.006984603125602007, -0.011712642386555672, 0.03597070649266243, 0.026393741369247437, 0.024902796372771263, 0.02200149931013584, 0.0015262030065059662, -0.028851784765720367, 0.017757009714841843, 0.019368842244148254, 0.014613939449191093, -0.035863250494003296, -0.022511914372444153, -0.006702532526105642, -0.013297609984874725, -0.009335190989077091, -0.02017475850880146, -0.002170935506001115, 0.013525952585041523, -0.007172650191932917, 0.010013503022491932, 0.010947022587060928, 0.0027837674133479595, 0.0077703711576759815, -0.019691208377480507, -0.03640052676200867, -0.06533290445804596, -0.014976601116359234, 0.005332475993782282, 0.012411102652549744, -0.004019504878669977, -0.04642074927687645], "08affb40-2cbf-4b09-aa2b-e31dde7a6daa": [-0.005097704939544201, 0.00026574922958388925, 0.008350208401679993, -0.024214934557676315, -0.0056860302574932575, 0.015978381037712097, -0.0004792678519152105, -0.01513600628823042, -0.02027048170566559, -0.03118124231696129, 0.010823848657310009, 0.017155030742287636, -0.014159920625388622, 0.0035767504014074802, -0.006745684426277876, -0.019936205819249153, 0.03963173180818558, 0.013143721967935562, 0.01724862866103649, -0.01958855800330639, -0.00016045235679484904, -0.0026123649440705776, -0.017221886664628983, -0.011873474344611168, -0.02476314827799797, 0.009513488039374352, 0.015978381037712097, -0.020524531602859497, -0.02319873683154583, -0.010309063829481602, 0.02180814929306507, -0.02365335263311863, -0.01547028124332428, -0.019869349896907806, -0.010429403744637966, 0.01908046007156372, -0.005274871364235878, -0.004967337474226952, -0.0032876019831746817, -0.02390740066766739, 0.017101546749472618, 0.020618127658963203, -0.0052314153872430325, -0.01351811084896326, 0.0074476636946201324, 0.036930784583091736, 0.024415500462055206, -0.030860336497426033, -0.02089891955256462, 0.004736687522381544, 0.030325496569275856, 0.0256857480853796, -0.006886080373078585, 0.01770324446260929, 0.009994844906032085, -0.0005615832633338869, 0.00392439728602767, 0.013558223843574524, 0.04187806695699692, -0.005271528381854296, 0.0009451646474190056, 0.0008532388601452112, -0.004987393971532583, 0.008958590216934681, -0.004368984140455723, -0.010897389613091946, 0.017195144668221474, 2.266807496198453e-05, 0.0032307750079780817, -0.021072743460536003, 0.010763678699731827, 0.016700416803359985, -0.002619050443172455, 0.01342451386153698, 0.034550741314888, -0.008784766308963299, -0.009907932952046394, 0.0013730375794693828, 0.005191302392631769, 0.006578546483069658, 3.0319853976834565e-05, -0.0039444537833333015, -0.035379745066165924, 0.01263562310487032, 0.010456145741045475, -0.01353816781193018, 0.01091744564473629, 0.002249675802886486, 0.012876302003860474, -0.01639288291335106, 0.0052280728705227375, 0.00698636332526803, 0.009961416944861412, -0.004228588193655014, 0.012361517176032066, 0.014721503481268883, -0.0042419591918587685, 0.01616557501256466, -0.01592489704489708, 0.0106834527105093, 0.012555397115647793, 0.010095127858221531, -0.018238084390759468, 0.0011382088996469975, 0.0005611653905361891, 0.010863961651921272, 0.012007185257971287, 0.003767287591472268, 0.025752604007720947, -0.01453430950641632, -0.005087676923722029, 0.03775978833436966, -0.004897139500826597, -0.013264061883091927, 0.03711798042058945, 0.0011499085230752826, 0.015965009108185768, -0.013030068948864937, -0.018077632412314415, 0.005124447401612997, 0.016473108902573586, -0.003600149881094694, 0.004255330190062523, -0.004118277225643396, 0.026100249961018562, -0.021928489208221436, -0.023345818743109703, -0.006284384056925774, -0.01512263435870409, -0.02571249008178711, 0.015095892362296581, 0.020979145541787148, 0.015483652241528034, 0.006157359108328819, -0.011077898554503918, 0.016085349023342133, -0.02749083749949932, 0.009747480973601341, 0.0031639200169593096, -0.022356361150741577, 0.022423217073082924, 0.006745684426277876, -0.008764710277318954, 0.00415839022025466, 0.015416797250509262, 0.005131132900714874, -0.00665542995557189, 0.0013429528335109353, 0.009620456025004387, 0.003509895410388708, -0.004175104200839996, -0.0009861134458333254, -0.04198503494262695, -0.01933450996875763, 0.0024368702434003353, 0.039658475667238235, -0.004576235078275204, 0.0007880550692789257, -0.004198503214865923, -0.019053718075156212, 0.012648994103074074, 0.026875769719481468, -0.004298786167055368, 0.015537137165665627, 0.001800074940547347, 0.041931550949811935, 0.0014524281723424792, -0.016486478969454765, -0.0041483622044324875, -0.003941111266613007, -0.009954731911420822, 0.04153041914105415, -0.012675736099481583, 0.017155030742287636, 0.00887167826294899, -0.004382355138659477, 0.0073340097442269325, 0.007955762557685375, -0.015363313257694244, -0.013110294938087463, 0.012856245040893555, 0.001124837901443243, 0.013785531744360924, 0.020979145541787148, -0.013785531744360924, -0.008457176387310028, 0.0327322818338871, 0.017435822635889053, 0.021286679431796074, 0.009252753108739853, 0.028293099254369736, 0.022369733080267906, -0.007013105321675539, -0.008457176387310028, -0.6392421722412109, 0.0037940298207104206, -0.0013755446998402476, -0.02069835364818573, -0.03572739288210869, 0.010322434827685356, 0.01159268245100975, 0.01421340461820364, -0.027210045605897903, 0.025752604007720947, -0.003957824781537056, 0.017877066507935524, -0.010743622668087482, -0.026274073868989944, 0.01660681888461113, -0.012542026117444038, 0.0007705055759288371, -0.029897622764110565, -0.026474639773368835, 0.018692700192332268, 0.02072509564459324, 0.027624547481536865, -0.012314718216657639, -0.015109263360500336, -0.002237976063042879, -0.0047534010373055935, -0.0011825005058199167, -0.0068793948739767075, 0.022396475076675415, 0.06621333956718445, -0.016740528866648674, 0.001327074714936316, 0.0021276650950312614, 0.00734069524332881, 0.04928561672568321, 0.008811508305370808, 0.01686086878180504, 0.009132413193583488, 0.006749027408659458, 0.04484643414616585, -0.03267879784107208, -0.00745434919372201, 0.03291947394609451, 0.01777009852230549, 0.02957671880722046, -0.0027594463899731636, -0.007494462188333273, -0.013270746916532516, -0.0034263264387845993, -0.009607085026800632, 0.0030001248233020306, -0.0037204890977591276, -0.0038040580693632364, 0.021915117278695107, 0.013290803879499435, 0.0013830659445375204, 0.013471312820911407, -0.01974901184439659, 0.005909995175898075, -0.011204923503100872, -0.009627141058444977, 0.010482887737452984, -0.0006593589205294847, -0.023947514593601227, -0.007227041758596897, 0.014801730401813984, 0.0031020790338516235, -0.01730211265385151, -0.015189490281045437, -0.03112775832414627, 0.003750573843717575, 0.027704773470759392, -0.03570064902305603, -0.01567084714770317, 0.020190255716443062, 0.03021852672100067, 0.011987128295004368, 0.0064348080195486546, 0.0040012807585299015, 0.009259438142180443, -0.010095127858221531, 0.0023800432682037354, -0.026447897776961327, -0.030111558735370636, 0.034711193293333054, -0.02682228572666645, -0.014694761484861374, -0.007073274813592434, 0.0015092550311237574, 0.009299551136791706, -0.008497289381921291, 0.007982504554092884, -0.007247098255902529, -0.026929253712296486, 0.014815101400017738, 0.0002958340337499976, 0.0006806689780205488, 0.011719707399606705, 0.0026056794449687004, -0.027597805485129356, -0.012107467278838158, -0.025872942060232162, 0.0021878348197788, 0.010342491790652275, 0.027624547481536865, 0.017609646543860435, 0.011318576522171497, -0.004522751085460186, 0.0363692007958889, -0.00551220728084445, 0.0077551971189677715, -0.0409153513610363, -0.008229868486523628, -0.007293896749615669, -0.0018970149103552103, -0.015844671055674553, 0.008330151438713074, -0.0032792449928820133, 0.013116979971528053, -0.01818460039794445, 0.005909995175898075, -0.005585747770965099, 0.012889673002064228, -0.01637951098382473, 0.02406785450875759, 0.0033477717079222202, 0.005274871364235878, -0.023599868640303612, -0.009379777126014233, -0.005401895847171545, 0.006735656410455704, -0.003546665655449033, 0.013758789747953415, -0.00326754548586905, -0.016767270863056183, -0.014948811382055283, 0.013825644738972187, -0.01822471432387829, -0.004188475199043751, 0.006508348975330591, -0.005358440335839987, 0.0011540870182216167, 0.011204923503100872, 0.02208894118666649, -0.0009217654005624354, -0.03324038162827492, -0.038053952157497406, -0.0234126728028059, -2.2981457732385024e-05, 0.008376950398087502, -0.009881190955638885, 0.0007354066474363208, -0.022677266970276833, 0.044231366366147995, -0.020083287730813026, -0.01952170394361019, 0.0017198487184941769, -0.01275596208870411, -0.025418328121304512, -0.022463330999016762, 0.01633939892053604, 0.026314185932278633, -0.030084816738963127, 0.00738080870360136, -0.0028146018739789724, -0.012267920188605785, -0.01611209101974964, 0.03321363776922226, -0.046370729804039, -0.037652820348739624, -0.005569033790379763, 0.016927724704146385, 0.003048594808205962, 0.005064277444034815, -0.0012526983628049493, 0.01363176479935646, -0.024936970323324203, -0.013116979971528053, -0.013524796813726425, -0.01887989416718483, -0.0027962166350334883, 0.026060137897729874, -0.001605359255336225, -0.015764445066452026, 0.023760320618748665, 0.017676500603556633, 0.03570064902305603, 0.003289273241534829, -0.0020825378596782684, 0.02345278672873974, 0.022864460945129395, 0.019869349896907806, -0.019855979830026627, -0.018091004341840744, -0.002368343761190772, 0.021487245336174965, 0.008791452273726463, -0.006926193367689848, -0.018572360277175903, 0.04428485035896301, 0.03270553797483444, -0.0029265841003507376, -0.006060419138520956, -0.01815785840153694, -0.026915883645415306, -0.01730211265385151, 0.006926193367689848, -0.01149908546358347, -0.01032912079244852, -0.019040346145629883, 0.00817638449370861, -0.0010955887846648693, -0.0034330119378864765, -0.012702478095889091, 0.023265592753887177, 0.011739764362573624, 0.007748511619865894, 0.033962417393922806, -0.017315484583377838, 0.004867054987698793, 0.0056492602452635765, -0.02092566154897213, 0.016780642792582512, 0.0047868285328149796, 0.018799668177962303, 0.002727690152823925, 0.00817638449370861, 0.009961416944861412, 0.020150141790509224, -0.024468984454870224, 0.007935706526041031, 0.013691934756934643, 0.029710428789258003, 0.01513600628823042, 0.03487164527177811, -0.0035834359005093575, 0.015617363154888153, -0.008704540319740772, 0.03554019704461098, 0.009139099158346653, -0.009934674948453903, 0.030860336497426033, 0.0007354066474363208, -0.009693996980786324, 0.01933450996875763, 0.010202095843851566, 0.06813877075910568, -0.007293896749615669, 0.006685514934360981, 0.029148845002055168, -0.015617363154888153, 0.012120838277041912, -0.030539432540535927, -0.01044277474284172, -0.014801730401813984, 0.012067354284226894, 0.010055014863610268, -0.005909995175898075, 0.026046765968203545, 0.014066323637962341, 0.007033161818981171, 0.006444836501032114, 0.0010187053121626377, -0.013986097648739815, -0.0011072884080931544, -0.010937502607703209, -0.016232430934906006, -0.010663396678864956, -0.02001643180847168, 0.000274732883553952, -0.006150673609226942, -0.025779346004128456, -0.04281403869390488, -0.00896527525037527, 0.03564716503024101, 0.006408066023141146, 0.0012409987393766642, 0.025124164298176765, 0.030405722558498383, -0.0029566690791398287, -0.020110029727220535, -0.0037037753500044346, 0.044445302337408066, 0.017810212448239326, -0.002132679335772991, -0.012789390049874783, -0.01730211265385151, -0.0055021787993609905, -0.012695793062448502, 0.006738998927175999, -0.02572586201131344, -0.0011515798978507519, -0.00805604550987482, 0.018077632412314415, -0.011746449396014214, 0.01952170394361019, 0.022102313116192818, -0.0019504990195855498, 0.007862165570259094, 0.018064260482788086, -0.012809447012841702, 0.0014139864360913634, -0.029951106756925583, -0.011191551573574543, 0.04439181834459305, 0.018117746338248253, 0.005074305925518274, -0.03369499370455742, -0.0012134209973737597, -0.00013914228475186974, -0.000372299604350701, 0.023533012717962265, -0.0007462705834768713, -0.0037572593428194523, -0.000696964911185205, 0.0047166310250759125, -0.00676908390596509, 0.011204923503100872, 0.0234126728028059, 0.022877832874655724, -0.002152735833078623, -0.026929253712296486, 0.013584966771304607, -0.00315890577621758, 0.051959823817014694, 0.015149377286434174, -0.0009426575852558017, -0.0008866664138622582, 0.002906527603045106, -0.013491368852555752, -0.03404264152050018, -0.026434525847434998, 0.03588784486055374, -0.026742059737443924, 0.0015535465208813548, -0.00014937946980353445, 0.012147580273449421, -0.02230287715792656, 0.00032591886701993644, 0.00687270937487483, 0.025592152029275894, 0.00035683935857377946, -0.004382355138659477, -0.023359188809990883, 0.009760851971805096, -0.010248894803225994, 0.01307686697691679, 0.016245801001787186, -0.0019705556333065033, 0.016219059005379677, 0.009205954149365425, -0.011993814259767532, 0.02021699771285057, -0.019254282116889954, -0.020604757592082024, 0.015737703070044518, 0.014467454515397549, 0.017649758607149124, -0.0053784968331456184, 0.020150141790509224, 0.02346615679562092, 0.028293099254369736, 0.0031020790338516235, -0.02319873683154583, 0.009673940017819405, 0.010262265801429749, 0.00347312493249774, -0.01680738478899002, -0.015537137165665627, -0.0052280728705227375, 0.0077752540819346905, 0.03393567353487015, -0.015015666373074055, -0.018545618280768394, -0.0055957757867872715, 0.005361782852560282, -0.023252220824360847, -0.03094056248664856, 0.007995875552296638, -0.005401895847171545, -0.0020674956031143665, -0.02071172557771206, -0.024214934557676315, -0.008898420259356499, 0.005458722822368145, -0.008269982412457466, 0.004566206596791744, -0.012555397115647793, -0.0026073509361594915, -0.007407550700008869, 0.011011043563485146, 0.02730364352464676, -0.03179631009697914, -0.0014281931798905134, -0.0014616206753998995, -0.019267654046416283, -0.02933603897690773, -0.019147314131259918, 0.007574688643217087, 0.01953507401049137, 0.012983269989490509, -0.012882987037301064, 0.003389555960893631, 0.0038274573162198067, -0.03072662651538849, -0.03179631009697914, -0.0024953684769570827, -0.015055779367685318, -0.017917180433869362, 0.009038816206157207, 0.00785547960549593, -0.008089473471045494, -0.028694231063127518, 0.03166259825229645, 0.000338872050633654, 0.01953507401049137, -0.01033580582588911, -0.027811741456389427, -0.0015259687788784504, 0.014494196511805058, 0.003580093150958419, 0.04714624956250191, -0.0003121299669146538, -0.01557725016027689, 0.005572376772761345, -0.0024702977389097214, -0.0372784323990345, -0.02593979798257351, -0.0009861134458333254, -0.0036970898509025574, -0.0018920007860288024, -0.0010329120559617877, -0.0005987714393995702, -0.004556178580969572, 0.030084816738963127, -0.03225092589855194, -0.0014273574342951179, 0.015309829264879227, 0.03706449642777443, -0.002087552100419998, 0.018920008093118668, 0.03754585236310959, 0.015309829264879227, -0.008423748426139355, -0.003023524070158601, -0.035379745066165924, 0.021460503339767456, 0.011392117477953434, -0.005579062271863222, 0.0012777691008523107, 0.005779627710580826, -0.007554631680250168, -0.03190327808260918, -0.00032633671071380377, 0.005552320275455713, 0.02976391278207302, 0.004462581127882004, -0.025872942060232162, -0.019026976078748703, 0.0033694994635879993, -0.007053218316286802, 0.0007893086294643581, 0.004489323124289513, 0.0007997547509148717, 0.016459736973047256, 0.0014382214285433292, -0.011438916437327862, -0.03067314252257347, 0.01024220883846283, -0.03431006148457527, -0.00887167826294899, 0.01615220494568348, 0.01706143468618393, 0.02615373395383358, 0.01453430950641632, 0.0073340097442269325, -0.024682920426130295, -0.004987393971532583, 0.01728874072432518, -0.027865225449204445, -0.005665973760187626, 0.026434525847434998, 0.015430168248713017, 0.024201564490795135, 0.021674439311027527, 0.0026892484165728092, 0.023038284853100777, 0.020056545734405518, -0.009613770060241222, 0.00698636332526803, -0.006498320493847132, -0.015309829264879227, -0.009921303950250149, 0.013177149929106236, -0.005719458218663931, -0.01307686697691679, 0.014668019488453865, -0.006932878866791725, 0.014413970522582531, 0.021754665300250053, -0.005361782852560282, 0.00966056901961565, -0.018518876284360886, -0.04479295015335083, -0.01409306563436985, 0.012796076014637947, -0.006334525533020496, 0.018585732206702232, -0.014146549627184868, 0.008911791257560253, 0.004228588193655014, -0.01845202036201954, -0.0017215200932696462, 0.010228837840259075, 0.008470547385513783, -0.004977365955710411, 0.000501831469591707, 0.014066323637962341, 0.01274927705526352, -0.011873474344611168, -0.0197757538408041, -0.025552038103342056, 0.023599868640303612, 0.0011565941385924816, 0.01409306563436985, 0.011372060514986515, -0.001127344905398786, 0.03206373006105423, -0.01679401285946369, 0.03390893340110779, 0.022369733080267906, -0.02088554948568344, 0.011866789311170578, -0.01591152511537075, -0.02020362578332424, -0.028507035225629807, 0.0001324567710980773, 0.0023416015319526196, -0.007527889683842659, 0.018960120156407356, 0.001327074714936316, 0.006030334625393152, -0.016499850898981094, -0.024963712319731712, -0.013879128731787205, -0.02936278097331524, 0.032438118010759354, 0.016526592895388603, 0.04123625531792641, 0.03340083360671997, -0.002749417908489704, -0.01633939892053604, -0.019374622032046318, 0.028079163283109665, 0.006755712907761335, 0.02180814929306507, -0.01502903737127781, -0.013444570824503899, -0.0015585606452077627, 0.015336571261286736, -0.016098719090223312, -0.018772926181554794, -0.01889326609671116, 0.016914352774620056, 0.008336837403476238, -0.0175026785582304, -0.015095892362296581, 0.0016880924813449383, -0.03214395418763161, 0.014601164497435093, -0.01091744564473629, 0.017368968576192856, -0.02708970569074154, -0.017449194565415382, 0.007601430639624596, 0.005522235296666622, 0.00014175381511449814, 0.010957558639347553, 0.01260888110846281, -0.00427204417064786, -0.022342991083860397, -0.0016997922211885452, -0.010021586902439594, 0.032865989953279495, 0.02343941479921341, 0.02797219529747963, -0.02618047595024109, -0.010977615602314472, 0.02339930273592472, -0.0006042034365236759, 0.007668285630643368, -0.018706070259213448, -0.010369233787059784, 0.026688575744628906, -0.008062731474637985, -0.019000234082341194, -0.0052615003660321236, -0.0010813820408657193, 0.008844936266541481, 0.004489323124289513, 0.007180243264883757, -0.023773690685629845, 0.011565940454602242, 0.006341211032122374, 0.020805321633815765, 0.026688575744628906, 0.016994578763842583, 0.013825644738972187, -0.005896624177694321, -0.0019755696412175894, -0.005485464818775654, -0.011746449396014214, -0.006204158067703247, -0.007681656628847122, -0.021072743460536003, -0.023292334750294685, -0.010583169758319855, 0.013371029868721962, 0.005532263778150082, -0.02228950709104538, 0.007086645811796188, 0.030780110508203506, -0.015764445066452026, 0.017181772738695145, -0.00398122426122427, -0.012100782245397568, -0.01639288291335106, 0.013705305755138397, -0.009593714028596878, -0.03067314252257347, 0.012388259172439575, -0.007728455122560263, -0.020631499588489532, -0.024870116263628006, 0.001200885628350079, 0.02662171982228756, 0.0016070306301116943, -0.011646167375147343, 0.018786296248435974, 0.0021393648348748684, 0.011191551573574543, -0.018746184185147285, -0.0218215212225914, 0.021273309364914894, -0.02778499945998192, 0.01866595819592476, 0.004633062053471804, -0.008383635431528091, -0.004863712005317211, -0.012949842028319836, -0.0013947655679658055, 0.0028480293694883585, -0.02045767568051815, -0.006207500584423542, 0.009413205087184906, 0.012134209275245667, 0.0018752869218587875, -0.0032625312451273203, -0.015644105151295662, -0.010456145741045475, -0.011077898554503918, 0.019735639914870262, -0.011445601470768452, 0.0032474889885634184, -0.01611209101974964, 0.020069915801286697, 0.007674971129745245, 0.010904074646532536, -0.014360486529767513, 0.0029115418437868357, -0.013384400866925716, 0.009032130241394043, -0.036048296838998795, -0.017422452569007874, -0.023145252838730812, 0.06792483478784561, 0.006886080373078585, -0.01953507401049137, -0.018545618280768394, -0.009393148124217987, -0.014427341520786285, -0.020350707694888115, 0.015456910245120525, 0.019708897918462753, 0.053350407630205154, 0.007507833186537027, -0.01193364430218935, 0.05487470701336861, -0.009152470156550407, -0.011713022366166115, -0.022637153044342995, -0.017409080639481544, 0.0021961915772408247, 0.03144866228103638, -0.016994578763842583, -0.0073005822487175465, 0.0006355417426675558, -0.018772926181554794, 0.02684902772307396, 0.004773457534611225, 1.2241543117852416e-05, 0.008015932515263557, -0.0011373732704669237, -0.010850590653717518, -0.009433262050151825, -0.007915649563074112, 0.008397006429731846, -0.008276667445898056, -0.005415267311036587, -0.046959057450294495, -0.003013495821505785, 0.007407550700008869, -0.013250690884888172, -0.031716082245111465, -0.0031338350381702185, 0.019361251965165138, -0.0240945965051651, 0.0008135436219163239, -0.01115143857896328, 0.001917071407660842, -0.008778081275522709, -0.04393720254302025, 0.02092566154897213, -0.016727158799767494, -0.005311641842126846, 0.031234726309776306, -0.01885315217077732, 0.0038709130603820086, -0.04415114223957062, -0.0063077835366129875, -0.00851734634488821, 0.0011992142535746098, 0.013691934756934643, -0.010516314767301083, -0.034657709300518036, -0.018091004341840744, 0.013203891925513744, -0.021086113527417183, -0.005154531914740801, -0.026314185932278633, 0.0088649932295084, -0.021727923303842545, 0.009687311016023159, -0.007440978195518255, 0.007801996078342199, 0.010529685765504837, -0.00854408834129572, 0.00046798604307696223, 0.01033580582588911, -0.03361476957798004, -0.006093847099691629, -0.014841843396425247, 0.029255812987685204, -0.015069150365889072, 0.0027962166350334883, 0.0030118245631456375, -0.007213670760393143, 0.027704773470759392, -0.023934142664074898, 0.01184004731476307, 0.18901288509368896, 0.005311641842126846, -0.0005323341465555131, 0.027865225449204445, 0.0022463330533355474, -0.00784879457205534, 0.028079163283109665, 0.006678829435259104, -0.019936205819249153, -0.008417063392698765, 0.0019304424058645964, 0.007654914632439613, -0.014748246408998966, 0.0018101031892001629, 0.010382604785263538, -0.0018151173135265708, -0.03594132885336876, -0.031742826104164124, -0.029469748958945274, -0.0065350909717381, -0.00460966257378459, 0.01170633640140295, -0.03179631009697914, -0.017368968576192856, 0.039471279829740524, -0.017609646543860435, -0.014587793499231339, 0.020150141790509224, 0.02093903347849846, -0.021032629534602165, -0.033561285585165024, 0.01307686697691679, 0.014106436632573605, 0.009827706962823868, -0.03848182410001755, -0.007728455122560263, 0.01814448833465576, 0.0011532512726262212, 0.019882721826434135, -0.005154531914740801, 0.010081756860017776, -0.011405488476157188, -0.0038274573162198067, -0.019936205819249153, 0.0025237819645553827, 0.017181772738695145, -0.005311641842126846, -0.004977365955710411, 0.0015944952610880136, 0.022784234955906868, -0.0300045907497406, -0.01751604862511158, 0.010629968717694283, 0.015456910245120525, 0.0031187927816063166, -0.0030268668197095394, -0.005756228230893612, 0.0027126476634293795, 0.015804557129740715, 0.025578780099749565, -0.03505884110927582, 0.01478835940361023, -0.0010813820408657193, 0.042840778827667236, -0.025819458067417145, 0.01686086878180504, -0.01928102597594261, 0.02840006723999977, 0.0032240895088762045, -0.01679401285946369, 0.008697855286300182, -0.003031881060451269, -0.00127944047562778, 0.0030218528117984533, -0.0038441710639744997, 0.00020881788805127144, 0.016219059005379677, 0.01976238191127777, 0.014801730401813984, 0.020404191687703133, -0.012796076014637947, -0.021928489208221436, -0.008343522436916828, -0.016018493101000786, -0.02778499945998192, -0.01703469268977642, 0.027330385521054268, -0.013986097648739815, -0.011552569456398487, -0.022423217073082924, -0.003937768284231424, -0.01974901184439659, 0.003150549018755555, 0.0018234741874039173, 0.002333244774490595, 0.015242974273860455, -0.00510773342102766, 0.01679401285946369, -0.0018485449254512787, -0.0018936721608042717, -0.01656670682132244, 0.06835270673036575, -0.0018569017993286252, 0.023158622905611992, 0.008891735225915909, 0.015603992156684399, -0.003570064902305603, -0.0031472062692046165, -0.009112357161939144, -0.016098719090223312, -0.013036753982305527, -0.048750776797533035, 0.010001529939472675, -0.003379527712240815, 0.0008461354882456362, 0.015510394237935543, -0.009319608099758625, -0.03714472055435181, -0.004940595477819443, -0.0005841468810103834, 0.007233727257698774, -0.004950623959302902, -0.008109529502689838, 0.022356361150741577, 0.002980068325996399, -0.01591152511537075, -0.0019571844022721052, -0.007367437239736319, -0.004081506747752428, -0.0049004824832081795, 0.011452287435531616, -0.028827941045165062, 0.007815366610884666, 0.014520938508212566, -0.0006840117275714874, -0.014935440383851528, 0.0042051887139678, -0.010696823708713055, -0.009319608099758625, 0.010810477659106255, -0.022917944937944412, 0.007440978195518255, -0.018772926181554794, 0.005274871364235878, -0.004071478731930256, -0.016967836767435074, 0.012107467278838158, 0.008450491353869438, -0.00323913199827075, -0.0023031597957015038, 4.230677404848393e-06, -0.0031187927816063166, 0.01708817668259144, -0.0001642129645915702, 0.01890663616359234, -0.016232430934906006, -0.0028380011208355427, -0.015831299126148224, -0.01374541874974966, 0.012314718216657639, -0.04024679958820343, 0.018692700192332268, 0.022102313116192818, 0.012301347218453884, 0.0010111841838806868, -0.019615299999713898, -0.16815407574176788, -0.013732047751545906, 0.0026006652042269707, -0.0322776660323143, 0.013919241726398468, 0.02253018505871296, 0.018371794372797012, -0.024281790480017662, -0.011679594404995441, 0.020337335765361786, -0.025578780099749565, -0.0211395975202322, -0.022409847006201744, -0.016499850898981094, -0.0036034926306456327, 0.011993814259767532, -0.0004943102831020951, 0.006143988110125065, 0.04067467153072357, 0.017409080639481544, 0.024482356384396553, -0.044445302337408066, 0.02162095531821251, 0.001317882095463574, -0.009119042195379734, 0.03789350017905235, 0.0018535590497776866, 0.012816132046282291, -0.016312656924128532, -0.02840006723999977, 0.005732829216867685, -0.007915649563074112, 0.02134016342461109, 0.011973757296800613, 0.015269716270267963, 0.001357995206490159, -0.005488807801157236, -0.016727158799767494, -0.03176956623792648, -0.002428513253107667, 0.013504739850759506, 0.02976391278207302, 0.002468626480549574, -0.004596291575580835, 0.004298786167055368, 0.00539855333045125, 0.02477651834487915, -0.01513600628823042, 0.004760086536407471, -0.01775672845542431, 0.0177299864590168, -0.0064214370213449, -0.02160758338868618, 0.001498391036875546, 0.019936205819249153, -0.013986097648739815, -0.004519408103078604, 0.034470513463020325, -0.017636388540267944, -0.0016747214831411839, -0.01389249972999096, -0.05118430405855179, -0.0064882924780249596, 0.013812273740768433, -0.02135353535413742, -0.015590621158480644, -0.003767287591472268, 0.010536371730268002, -0.05556999891996384, 0.009974787943065166, -0.018759554252028465, -0.0009769208263605833, 0.013157092966139317, 0.017663130536675453, 0.01146565843373537, -0.008049359545111656, -0.017623016610741615, 0.0002918645041063428, -0.009834392927587032, -0.01399946864694357, 0.024856744334101677, 0.013932612724602222, 0.012154266238212585, -0.003677033120766282, -0.0035834359005093575, -0.013691934756934643, 0.014186662621796131, 0.018599102273583412, -0.01633939892053604, -0.0300045907497406, 0.025110794231295586, -0.022583669051527977, 0.01683412678539753, -0.018505506217479706, 0.006795825902372599, 0.0007663271389901638, 0.008537402376532555, -0.015269716270267963, 0.0027744886465370655, -0.012348146177828312, 0.01149908546358347, 0.011672909371554852, -0.0304592065513134, 0.011077898554503918, 0.035834360867738724, 0.01795729249715805, -0.03249160200357437, 0.0010287335608154535, 0.029737170785665512, 0.009633827023208141, -0.031716082245111465, 0.004806885030120611, 0.005401895847171545, 0.026942625641822815, 0.004118277225643396, 0.00722035625949502, 0.007180243264883757, -0.017315484583377838, 0.005208016373217106, -0.004248644690960646, 0.026100249961018562, -0.021901747211813927, -0.0062542990781366825, 0.02138027735054493, 0.008657742291688919, -0.017890438437461853, -0.13980749249458313, -0.05019484460353851, -0.013524796813726425, 0.02023036777973175, 0.0019321137806400657, 0.008557459339499474, -0.00042390343151055276, 0.02708970569074154, 0.003030209569260478, 0.022155797109007835, -0.029255812987685204, -0.015363313257694244, 0.008156328462064266, -0.01658007688820362, -0.04813570901751518, 0.007815366610884666, -0.00453612208366394, 0.023238850757479668, -0.013110294938087463, 0.03800046816468239, 0.0005022492841817439, 0.0012526983628049493, -0.009419890120625496, 0.003546665655449033, -0.0009677282650955021, 0.018064260482788086, -0.01633939892053604, -0.008597572334110737, 0.01374541874974966, 0.00887167826294899, -0.009707367978990078, -0.01228797622025013, -0.002692591166123748, -0.004653118550777435, 0.012936471030116081, -0.005518892779946327, -0.02001643180847168, -0.02274412102997303, 0.028507035225629807, 0.01193364430218935, -0.007073274813592434, 0.010716880671679974, 0.009185897186398506, -0.005438666325062513, 0.006234242580831051, 0.003183976514264941, -0.047895029187202454, 0.028533777222037315, 0.002832986880093813, -0.032865989953279495, -0.05589090660214424, 0.013457941822707653, -0.0070264763198792934, -0.0076281726360321045, 0.04294774681329727, 0.0035767504014074802, 0.009767537005245686, 0.019695527851581573, -0.012027241289615631, -0.008911791257560253, -0.016553334891796112, 0.0029900965746492147, 0.021112855523824692, 0.01839853636920452, 0.00427204417064786, 0.004435839131474495, -0.021901747211813927, -0.0018318310612812638, 0.03754585236310959, -0.029897622764110565, 0.00831009540706873, -0.01036254782229662, -0.017663130536675453, 0.006060419138520956, -0.017422452569007874, -0.008477233350276947, -0.006010278128087521, 0.000879980914760381, 0.011438916437327862, 0.008938533253967762, -0.03027201257646084, -0.012294662185013294, -0.010161982849240303, -0.00807610247284174, 0.018304940313100815, 0.033320605754852295, 0.0009192582801915705, -0.00392439728602767, 0.015603992156684399, -0.0033995844423770905, 0.0085240313783288, 0.02206219919025898, 0.0056860302574932575, -0.007681656628847122, 0.0050843339413404465, 0.002878114115446806, -0.0043756696395576, -0.020323965698480606, 0.014614535495638847, 0.019000234082341194, -0.03048594854772091, -0.015242974273860455, -0.010716880671679974, 0.017877066507935524, -0.01126509252935648, -0.015991751104593277, -0.00207919511012733, -0.001800074940547347, 0.017890438437461853, 0.01476161740720272, -0.012622252106666565, 0.02454921044409275, -0.03337408974766731, -0.007434292696416378, 0.005034192930907011, -0.009058873169124126, -0.008249925449490547, 0.013177149929106236, -0.006926193367689848, -0.010583169758319855, 0.005211358889937401, 0.0011306877713650465, -0.007233727257698774, -0.01512263435870409, -0.007634858135133982, 0.03612852096557617, -0.0020039831288158894, -0.018719442188739777, -0.01821134239435196, 0.00042870864854194224, -0.009941360913217068, -0.02365335263311863, 0.008503975346684456, -0.0005411088932305574, 0.008918477222323418, 0.007601430639624596, -0.0017449194565415382, 0.011853418312966824, 0.009667254984378815, 0.024910228326916695, 0.021968601271510124, 0.05329692363739014, -0.008590886369347572, -0.0025956511963158846, 0.0009125727810896933, -0.027410611510276794, -0.004823599010705948, -0.017235256731510162, -0.03388218954205513, 0.009834392927587032, 0.013143721967935562, 0.0150022953748703, 0.01747593656182289, 0.01616557501256466, -0.031101016327738762, -0.016312656924128532, -0.03754585236310959, -0.056746650487184525, -0.016058607026934624, 0.004178446717560291, -0.03259856998920441, -0.02890816703438759, 0.023827174678444862, -0.0044792951084673405, 0.017863696441054344, -0.0354599729180336, 0.009493431076407433, -0.02001643180847168, 0.003941111266613007, 0.020631499588489532, 0.0012067354982718825, -0.0017048063455149531, -0.018358424305915833, -0.010282321833074093, 0.01468139048665762, -0.0004211874329484999, 0.019869349896907806, -0.0006773262284696102, -0.01889326609671116, 0.011713022366166115, 0.0011331947753205895, 0.020551273599267006, 0.0263676717877388, 0.012160951271653175, -0.018933378159999847, 0.004088192246854305, 0.026046765968203545, -0.018037518486380577, 0.007641543634235859, 0.0038374855648726225, -0.013491368852555752, 0.0030736655462533236, -0.004342242144048214, -0.0014749917900189757, -0.007166871801018715, 0.0023884002584964037, -0.007394179701805115, -0.002328230533748865, -0.0010228838073089719, 0.005682687740772963, 0.024468984454870224, 0.0009426575852558017, 0.0036502911243587732, -0.004322185181081295, 0.005124447401612997, -0.02501719631254673, -0.04933910071849823, 0.00630109803751111, -0.013257375918328762, -0.03358802571892738, -0.004679860547184944, 0.020110029727220535, -0.030512690544128418, 0.007621487136930227, 0.023827174678444862, 0.0034213121980428696, -0.011960386298596859, 0.005612489767372608, -0.01272253505885601, -0.018986862152814865, -0.03660988062620163, 0.01635276898741722, 0.012508598156273365, -0.0041851322166621685, 0.026421155780553818, 0.010984300635755062, 0.034711193293333054, 0.039685215801000595, 0.028934909030795097, -0.027704773470759392, -0.014922069385647774, -0.010609911754727364, 0.003543322905898094, -0.02254355698823929, -0.010489572770893574, -0.0010429403046146035, -0.00019252194033470005, -0.01640625298023224, 0.011171495541930199, 0.0037739730905741453, 0.021915117278695107, 0.06262990087270737, -0.004439182113856077, 0.008798137307167053, -0.01863921619951725, -0.0008436284260824323, 0.00608381861820817, 0.022810976952314377, 0.0025689091999083757, 0.010309063829481602, -0.005014136433601379, 0.03660988062620163, -0.023065026849508286, 0.007354066241532564, -0.039685215801000595, 0.006137302611023188, 0.006688857916742563, -0.02794545330107212, 0.006508348975330591, 0.003222418250516057, 0.01679401285946369, 0.031716082245111465, 0.009018759243190289, 0.02322547882795334, 0.009366406127810478, -0.019949575886130333, 0.01683412678539753, 0.015751073136925697, 0.021554099395871162, -0.027571063488721848, -0.03495187312364578, 0.00613061711192131, -0.003419640939682722, -0.010375918820500374, -0.0231853649020195, 0.005585747770965099, 0.012802761048078537, -0.009279495105147362, 0.006939564365893602, 0.009119042195379734, 0.012695793062448502, 0.018345052376389503, 0.022383103147149086, -0.026688575744628906, -0.061774156987667084, -0.012408316135406494, 0.01663356088101864, 0.0033979129511862993, -0.013250690884888172, -0.03949802368879318], "a7c1cef1-ba90-4dd4-a366-05c37ea5289f": [-0.02797243557870388, 0.020904570817947388, 0.01866188272833824, -0.008630950935184956, -0.023500651121139526, 0.0027048175688833, -0.011159071698784828, -0.023378321900963783, -0.016133761033415794, -0.02568897046148777, 0.016432786360383034, -0.0005687422817572951, -0.015957064926624298, 0.012300803326070309, 0.004838769324123859, 0.00396887818351388, 0.026545269414782524, 0.003734415164217353, 0.008794055320322514, -0.012593032792210579, -0.0038839278277009726, 0.004848963115364313, -0.01088043488562107, -0.03485001251101494, -0.02339191548526287, 0.005171774420887232, 0.012164883315563202, -0.017030837014317513, -0.00544361537322402, -0.014190098270773888, 0.02680351957678795, -0.0047640129923820496, -0.018362857401371002, -0.012864873744547367, -0.03441506624221802, 0.00234462833032012, -0.006880974397063255, -0.010472672991454601, 0.002485645702108741, -0.0011272905394434929, 0.05184007063508034, -0.004692654591053724, -0.008155228570103645, 0.006711073685437441, -0.006174187641590834, 0.03789462894201279, 0.009018324315547943, -0.03933538869023323, -0.01343573909252882, 0.025933627039194107, 0.0475177988409996, 0.020333703607320786, -0.01505998894572258, -0.00774746760725975, -0.0002620716695673764, 0.011172663420438766, 0.028162723407149315, 0.025281209498643875, -0.0012946425704285502, -0.00610622763633728, 0.008617358282208443, 0.009745498187839985, -0.005616914015263319, 0.00542662525549531, 0.0009675839100964367, -0.0022511829156428576, 0.02059195190668106, -0.0002792740997392684, 0.001924973796121776, -0.02125796303153038, 0.02922290377318859, 0.002434675581753254, -0.005956714972853661, 0.016065800562500954, 0.022426879033446312, -0.013170694932341576, -0.01639200933277607, 0.007373685948550701, 0.003839753568172455, -0.00345917628146708, 0.010323160327970982, -0.01084645465016365, -0.018852170556783676, 0.009881419129669666, 0.01999390311539173, -0.005348470993340015, 0.005966909229755402, 0.018553145229816437, -0.011383340694010258, -0.03137044608592987, 0.01669103465974331, 0.006068849470466375, -0.011906634084880352, 0.013775540515780449, 0.014937660656869411, -0.007081456948071718, -0.004471783991903067, 0.035312142223119736, -0.01829489693045616, -0.01387068536132574, 0.00459751021116972, 0.010309568606317043, -0.01675899513065815, -0.005654292181134224, -0.00756397470831871, 0.020252151414752007, 0.00019166911079082638, -0.010547429323196411, -0.0035441266372799873, -0.010357140563428402, 0.0011340865166857839, 0.03860141709446907, 0.006830004043877125, -0.022019118070602417, 0.023147257044911385, -0.016038617119193077, 0.027578266337513924, -0.018729841336607933, -0.026613229885697365, -0.008624154143035412, 0.016772586852312088, -0.003737813327461481, 0.017139572650194168, -0.014054177328944206, 0.02627342939376831, -0.0014305630465969443, -0.014393978752195835, -0.019830798730254173, -0.0216385405510664, -0.02753748930990696, 0.028380196541547775, 0.01660948246717453, -0.008406681939959526, 0.003690241137519479, -0.009065896272659302, 0.00888919923454523, -0.03400730341672897, -0.004342659376561642, 0.00031028097146190703, -0.011104702949523926, 0.011376543901860714, 0.019395852461457253, -0.00468925666064024, 0.00945326965302229, -0.012164883315563202, 0.011981390416622162, 0.021461844444274902, 0.009398900903761387, -0.005956714972853661, -0.01955895684659481, -0.006051859352737665, -0.007577566895633936, -0.012769728899002075, -0.0027829718310385942, 0.006928546354174614, 0.011376543901860714, -0.017628885805606842, 0.010914414189755917, -0.02282104827463627, -0.020238559693098068, 0.031343262642621994, 0.02583848312497139, 0.003262091428041458, 0.017588110640645027, -0.005379052832722664, 0.024683158844709396, 0.017098795622587204, 0.009867826476693153, -0.0019504588562995195, 0.017397820949554443, -0.014584267511963844, 0.013259042985737324, -0.015481342561542988, 0.0048727490939199924, 0.022848233580589294, -0.013123122043907642, 0.00613001361489296, 0.0025009368546307087, 7.937543705338612e-05, 0.00021439332340378314, 0.012409539893269539, -0.005164978094398975, 0.018784210085868835, 0.02245406247675419, -0.013782336376607418, -0.025743339210748672, 0.01837644912302494, 0.0013371177483350039, 0.010968782939016819, -0.008270760998129845, 0.00599749106913805, 0.015263870358467102, -0.02325599454343319, -0.0029443774838000536, -0.6241468191146851, -0.0020133221987634897, 0.0006808766629546881, -0.014081361703574657, -0.017153164371848106, 0.005453809164464474, 0.0020303120836615562, 0.025444313883781433, -0.032077234238386154, 0.03667134419083595, -0.0011833576718345284, 0.01376874465495348, 0.005898948758840561, -0.00892997533082962, 0.02200552634894848, -0.021679317578673363, 0.010792085900902748, -0.028108354657888412, -0.014842516742646694, 0.005892152898013592, 0.006762044038623571, 0.041890691965818405, -0.018702657893300056, 0.016487155109643936, -0.00926977675408125, -0.009534821845591068, 0.007597954943776131, -0.017452189698815346, -0.0020693892147392035, 0.02930445596575737, 0.0024839467369019985, -0.009990155696868896, -0.013123122043907642, 0.007040680851787329, 0.06284963339567184, 0.011566832661628723, -6.6566526584210806e-06, 0.00117231416516006, 0.006313506513834, 0.0283530130982399, -0.03653542697429657, -0.010228016413748264, 0.03321896493434906, -0.011274604126811028, -0.0020422053057700396, -0.004831972997635603, 0.008902791887521744, 0.002866223221644759, -0.007108641322702169, -0.009283368475735188, 0.0022222998086363077, 0.007441646419465542, -0.009317348711192608, 0.009582393802702427, 0.011301787570118904, -0.012579440139234066, 0.009895010851323605, -0.009025120176374912, -0.00752999447286129, -0.02229095809161663, -0.002774476772174239, 0.024560831487178802, -0.0007016894523985684, 0.008556194603443146, -0.000515223597176373, 0.01972206123173237, -0.011797897517681122, -0.009827050380408764, -0.02095893770456314, -0.011607608757913113, 0.0031312680803239346, 0.035828638821840286, -0.023120073601603508, 0.00381936552003026, 0.024764711037278175, 0.013265838846564293, 0.023826859891414642, -0.01051344908773899, 0.010391120798885822, 0.015984248369932175, 0.025797707960009575, -0.0038091714959591627, -0.04490812495350838, -0.007237765472382307, 0.048088666051626205, -0.0003134666185360402, -0.00892997533082962, 0.01741141267120838, -0.004961097612977028, 0.012192066758871078, 0.0015953666297718883, 0.02287541702389717, 0.013775540515780449, -0.04126545786857605, -0.0071969893760979176, -0.004254310857504606, -0.01970846951007843, 0.01523668598383665, 0.00940569769591093, -0.03740531578660011, -0.011240623891353607, -0.03697036951780319, 0.002886611269786954, 0.0029664644971489906, 0.00527711259201169, 0.0075707705691456795, -0.014475530944764614, 0.021964749321341515, 0.026327796280384064, -0.014434754848480225, -0.015263870358467102, -0.02273949608206749, -0.00808726903051138, -0.0022053096909075975, -0.006486805155873299, -0.024927815422415733, 0.020999714732170105, -0.022685127332806587, 0.0040708184242248535, -0.017805583775043488, 0.021747276186943054, -0.005494585260748863, 0.0012317793443799019, -0.02857048436999321, 0.052737146615982056, -0.0020507003646343946, 0.012049350887537003, -0.024044333025813103, -0.014094953425228596, -0.0018451205687597394, 0.010989170521497726, -0.0027676806785166264, -0.0004111594462301582, -0.014162913896143436, -0.006096033379435539, -0.008685318753123283, 0.009799866937100887, -0.00041158421663567424, -0.0071154371835291386, -0.021162819117307663, -0.015087173320353031, 0.016120169311761856, 0.03194131329655647, 0.013428943231701851, 0.003472768235951662, -0.02628702111542225, -0.01376194879412651, 0.0034897583536803722, 0.008311537094414234, 0.025063736364245415, 0.0047911969013512135, -0.00601448118686676, -0.013191082514822483, -0.003180539235472679, 0.0071154371835291386, -0.00239050155505538, 0.008352313190698624, -3.934260894311592e-05, -0.0040708184242248535, -0.009167836047708988, -0.005083425901830196, 0.05270996317267418, -0.02560741826891899, -0.0018145383801311255, -0.020564768463373184, -0.00018540403107181191, -0.022698720917105675, 0.05197599157691002, -0.033110227435827255, -0.03933538869023323, -0.007842611521482468, -0.012681380845606327, 0.020564768463373184, 0.0034438851289451122, -0.043141160160303116, 0.018281305208802223, -0.02568897046148777, -0.01372796855866909, -0.025213249027729034, -0.01601143181324005, 0.014353202655911446, 0.014217282645404339, 0.011553240939974785, -0.016405602917075157, 0.04621296375989914, 0.01579396054148674, 0.03077239729464054, 0.0043732416816055775, -0.023745307698845863, 0.015440566465258598, 0.024316173046827316, 0.019735652953386307, -0.022753087803721428, -0.0036426689475774765, -0.011070722714066505, 0.023432690650224686, 0.013700784184038639, 0.01092800684273243, 0.017751215025782585, 0.05194880813360214, 0.01535901427268982, -0.010397916659712791, -0.01066975761204958, -0.013863888569176197, -0.01660948246717453, -0.03683444857597351, 0.002827146090567112, -0.003187335329130292, 0.01184546947479248, -0.0273200161755085, -0.0068164123222231865, -0.006316904444247484, -0.006092635449022055, 7.778262079227716e-05, 0.018920131027698517, 0.020279334858059883, 0.0002958394179586321, 0.026993807405233383, 0.016962876543402672, 0.01527746208012104, 0.005307694897055626, -0.00391111196950078, 0.025335578247904778, 0.006374670658260584, 0.004050430376082659, -0.016446378082036972, 0.014326018281280994, -0.01580755226314068, 0.0061673917807638645, -0.03433351218700409, 0.012742545455694199, -0.005759630352258682, 0.011804693378508091, 0.0004226277524139732, 0.005362063180655241, 0.005134396255016327, 0.029413191601634026, -0.011655181646347046, 0.02665400691330433, 0.0025281209964305162, -0.03648105636239052, 0.0208909772336483, 0.016487155109643936, -0.016446378082036972, 0.021298740059137344, 0.019246339797973633, 0.04349455237388611, -0.007625138852745295, 0.007964939810335636, 0.030908316373825073, -0.0014526501763612032, 0.01258623693138361, -0.02132592350244522, 0.00914744846522808, -0.011464892886579037, 0.01207653433084488, 0.018852170556783676, 0.014393978752195835, 0.04588675498962402, 0.030881132930517197, -0.004692654591053724, -0.002585887210443616, 0.006972720846533775, -0.006099431775510311, 0.011675569228827953, 0.0005967758479528129, -0.0020490011665970087, -0.028108354657888412, -0.018349265679717064, 0.006602337118238211, -0.006449426990002394, -0.03324614837765694, -0.01809101551771164, -0.012232842855155468, 0.04099361598491669, 0.003345342818647623, -0.012749341316521168, 0.01402699388563633, 0.026382165029644966, -0.0004100975638721138, -0.020782241597771645, -0.015549303032457829, 0.015331829898059368, 0.03169665485620499, 0.0027846707962453365, -0.009867826476693153, 0.010642573237419128, -0.003450681222602725, -0.005593127571046352, 0.019083235412836075, -0.012198863551020622, 0.005613515619188547, 0.00675184978172183, 0.003972276113927364, -0.021910380572080612, 0.008610562421381474, 0.03846549615263939, 0.0015979151939973235, 0.00012816877278964967, -0.004947505425661802, -0.007536790799349546, 0.00275069079361856, 0.0014874797780066729, -0.013102734461426735, 0.03523058816790581, 0.01510076504200697, 0.004988281521946192, -0.02435695007443428, 0.005266918800771236, 0.008529010228812695, -0.014149322174489498, -0.0015214598970487714, -0.0063304961659014225, -0.028026802465319633, 0.012674584984779358, 0.008481438271701336, -0.015440566465258598, -0.0015970655949786305, 0.03419759124517441, 0.01631045714020729, 0.0043256692588329315, -0.013972625136375427, 0.0054843914695084095, 0.004220331087708473, 0.05159541592001915, 0.012858077883720398, -0.02797243557870388, 0.0030106387566775084, -0.006347486283630133, -0.006211565807461739, -0.0065411729738116264, -0.030092794448137283, 0.04659353941679001, -0.005324685014784336, 0.019545365124940872, -0.016133761033415794, 0.013388167135417461, -0.0024618597235530615, 0.0008626703056506813, -0.0033487407490611076, 0.009093079715967178, 0.0039077140390872955, -0.005063037853688002, 0.004366445355117321, 0.005909143015742302, -0.006500396877527237, -0.012939630076289177, 0.011023150756955147, 0.01332020666450262, 0.024452093988656998, 0.008923179470002651, -0.002196814864873886, 0.013197878375649452, -0.029657848179340363, -0.03150636702775955, 0.009657150134444237, 0.008189208805561066, 0.033762648701667786, -0.008202801458537579, 0.02982095256447792, 0.018553145229816437, 0.03854704648256302, -0.006316904444247484, -0.015005621127784252, 0.013116326183080673, 0.03485001251101494, 0.00782222393900156, -0.022413287311792374, 0.008352313190698624, -0.0033946139737963676, -0.004736828617751598, 0.013211471028625965, -0.03359954431653023, -0.008073676377534866, 0.0024448696058243513, -0.010160055942833424, -0.023269586265087128, -0.01402699388563633, 0.003323255805298686, 0.019912350922822952, -0.01056102104485035, -0.020795833319425583, -0.012966813519597054, -0.01874343492090702, -0.006082441657781601, -0.020184190943837166, 0.002103369450196624, 0.009867826476693153, 0.00044089206494390965, -0.017438597977161407, -0.014135729521512985, 0.011580425314605236, -0.030147163197398186, -0.0067960238084197044, 0.0076727112755179405, -0.0242753978818655, -0.042488742619752884, -0.011655181646347046, 0.0019368669018149376, 0.012205659411847591, 0.0008605465409345925, -0.010058115236461163, 0.019830798730254173, 0.007910571992397308, -0.019871573895215988, -0.04311397671699524, -0.012355172075331211, -0.02185601368546486, 0.0015809250762686133, 0.0029800564516335726, 0.00926298089325428, -0.0004918622435070574, -0.023854045197367668, 0.022399695590138435, 0.008202801458537579, 0.009018324315547943, -0.008719298988580704, -0.026531677693128586, -0.006914954632520676, 0.011254215613007545, -0.0010805678321048617, 0.020537585020065308, 0.006986312568187714, -0.01684054732322693, 0.016269681975245476, -0.006639715284109116, -0.023949189111590385, -0.020564768463373184, 0.004189748782664537, -0.00870570633560419, 0.017166756093502045, 0.0023718124721199274, -0.014557083137333393, -0.023446282371878624, 0.030962685123085976, -0.03479564189910889, -0.003900917712599039, 0.021570580080151558, 0.026925846934318542, 0.016650259494781494, 0.007394073996692896, 0.02488704025745392, 0.012314395979046822, 0.004101400729268789, -0.011016354896128178, -0.039471305906772614, 0.02606954798102379, 0.014788147993385792, -0.01609298400580883, 0.01785995066165924, 0.003805773565545678, -0.03555679693818092, -0.01777839846909046, 0.0012895455583930016, 0.01207653433084488, 0.0026317602023482323, 0.0021237574983388186, -0.020564768463373184, -0.039607226848602295, -0.013327003456652164, -0.013177490793168545, -0.005735844373703003, 0.00756397470831871, -0.007434850092977285, 0.005287306848913431, 0.009201816283166409, 0.0022749691270291805, -0.008800851181149483, 0.019205564633011818, -0.03860141709446907, -0.015739591792225838, -0.007074661087244749, 0.008134840987622738, 0.022617168724536896, -0.014013401232659817, -0.010350344702601433, -0.023011337965726852, 0.003156753256917, 0.0037106291856616735, -0.02973940037190914, 0.011974594555795193, 0.008094064891338348, 0.005069833714514971, 0.023595795035362244, 0.042189717292785645, 0.018498776480555534, 0.014190098270773888, 0.02494140900671482, -0.023949189111590385, 0.0033385467249900103, 0.003166947280988097, -0.017302677035331726, -0.021380292251706123, -0.0026725365314632654, 0.0029205912724137306, 0.0053926450200378895, 0.0022443868219852448, -0.011648384854197502, -0.003870335640385747, 0.02148902788758278, 0.011328971944749355, 0.00919502042233944, -0.015739591792225838, -0.03813928738236427, -0.013265838846564293, 0.011689160950481892, -0.005732446443289518, 0.02908698283135891, -0.013143510557711124, -0.001180809224024415, 0.017180347815155983, 0.0046280925162136555, 0.010989170521497726, 0.004808187019079924, 0.0034897583536803722, -0.01221245527267456, 0.007108641322702169, 0.021978341042995453, 0.001443305634893477, -0.017098795622587204, -0.02021137624979019, -0.02029292844235897, -0.005345073062926531, 0.0065513672307133675, 0.011702753603458405, 0.016283273696899414, -0.01947740465402603, 0.02052399329841137, -0.031180158257484436, 0.0067960238084197044, -0.015590079128742218, 0.005817396566271782, 0.007536790799349546, -0.017683254554867744, -0.0040232460014522076, -0.023786084726452827, -0.008297945372760296, 0.003284178674221039, -0.010826066136360168, 0.00903871189802885, -0.0014331116108223796, 0.014203689992427826, -0.025036552920937538, -0.023718124255537987, 0.0071969893760979176, -0.021733684465289116, 0.027999619022011757, 0.01631045714020729, 0.034741275012493134, 0.02746952883899212, -0.004995077848434448, -0.02148902788758278, -0.007536790799349546, 0.01697646826505661, 0.019830798730254173, 0.014706595800817013, 0.011335767805576324, -0.010418305173516273, 0.000902172178030014, 0.006666899658739567, -0.0024414716754108667, -0.04199942946434021, -0.0391450971364975, 0.018784210085868835, -0.00380237540230155, -0.013598844408988953, -0.015005621127784252, 0.00793775636702776, -0.05194880813360214, 0.01380952075123787, -0.010336752980947495, 0.00269292457960546, -0.01206973847001791, -0.011702753603458405, -0.0139182573184371, -0.004767410922795534, 0.009854234755039215, 0.02127155475318432, -0.0030802979599684477, 0.022848233580589294, -0.02384045161306858, -0.01538619864732027, -0.019368669018149376, 0.029467560350894928, 0.023527834564447403, 0.019735652953386307, -0.012912445701658726, 0.004349455237388611, 0.013129918836057186, -0.007210581563413143, 0.0073261139914393425, -0.024261806160211563, -0.0075707705691456795, 0.03169665485620499, -0.027483120560646057, -0.0004706246545538306, -0.0025977801997214556, -0.001992934150621295, -0.002991949673742056, -0.00756397470831871, -0.016786178573966026, 0.0006439232965931296, 0.0037989774718880653, 0.008950363844633102, 0.0250229611992836, -0.00011478909436846152, -0.018933722749352455, -0.004862555302679539, -0.011770714074373245, 0.01970846951007843, -0.01699005998671055, -0.007448442280292511, -0.002937581390142441, -0.03194131329655647, -0.02132592350244522, -0.02487344853579998, 0.010092095471918583, 0.022834639996290207, 0.0046994504518806934, -0.016065800562500954, 0.01037073228508234, 0.03533932566642761, -0.011757121421396732, 0.036943186074495316, 0.00032366064260713756, -0.0031856363639235497, -0.01221245527267456, 0.03639950603246689, -0.00782901979982853, -0.0032145194709300995, 0.02990250661969185, -0.02000749483704567, -0.003540728474035859, -0.02619187720119953, 0.0034065069630742073, 0.022984152659773827, 0.004583918023854494, 0.009670741856098175, 0.0014687906950712204, 0.00793096050620079, 0.01875702664256096, -0.013061958365142345, -0.010064912028610706, -0.004383435472846031, -0.013422147370874882, 0.0062591382302343845, 0.012987202033400536, -0.02037448063492775, 0.02309289015829563, -0.013592047616839409, 0.006235352251678705, 0.0036358728539198637, -0.0242210291326046, -0.005114008206874132, -0.003314760746434331, 0.019151195883750916, -0.017506558448076248, -0.026898663491010666, -0.024696750566363335, -0.004142176825553179, -0.006836800370365381, 0.04928476735949516, 0.012565848417580128, 0.0020540982950478792, -0.021094858646392822, 0.04857797920703888, -0.0029426785185933113, 0.006401854567229748, -0.01992594264447689, -0.0010007144883275032, -0.020034678280353546, -0.004220331087708473, -0.018729841336607933, -0.00623875018209219, -0.014461939223110676, 0.044609103351831436, 0.005073232110589743, -0.018430817872285843, -0.01925993151962757, -0.005280510522425175, -0.02538994513452053, -0.021937565878033638, 0.010751309804618359, 0.015957064926624298, 0.05048086494207382, -0.008243577554821968, -0.00614700373262167, 0.034442249685525894, 0.008121248334646225, 0.007135825231671333, -0.013048365712165833, 0.005725650116801262, 0.011396932415664196, 0.026531677693128586, -0.014489123597741127, -0.01229400746524334, -0.011193051934242249, -0.035176221281290054, 0.004777604714035988, 0.007924163714051247, -0.00908628385514021, 0.02687147818505764, 0.006391660775989294, -0.0023412301670759916, -0.01711238920688629, -0.013360983692109585, 0.019885165616869926, 0.014856108464300632, -0.0062965163961052895, -0.031125789508223534, -0.0026419542264193296, 0.003285877639427781, -0.0027235066518187523, -0.017832767218351364, 0.000443440570961684, 0.01711238920688629, -0.0242210291326046, 0.0003790907212533057, -0.012171679176390171, -0.013666803948581219, -0.018838578835129738, -0.03514903783798218, 0.01817256771028042, -0.027510305866599083, -0.002698021475225687, 0.031995680183172226, -0.010601797141134739, 0.012939630076289177, -0.026817111298441887, -0.0016064101364463568, -0.008583378046751022, -0.009059100411832333, 0.01516872551292181, 0.002426180522888899, -0.035257771611213684, -0.005851376801729202, 0.023894820362329483, -0.02333754673600197, 0.0024227825924754143, -0.028325827792286873, 0.018063832074403763, -0.02547149732708931, 0.010758105665445328, 0.015739591792225838, -0.032811205834150314, 0.004176156595349312, 0.007767855655401945, -0.00782222393900156, 0.007815428078174591, -0.02325599454343319, -0.005035853944718838, -0.0066057355143129826, 0.028543300926685333, -0.006337292492389679, 0.02297056093811989, -0.01195420604199171, -0.003450681222602725, 0.01890653930604458, -0.0015376004157587886, -0.012606624513864517, 0.21790771186351776, -0.005450411234050989, -0.0023429293651133776, 0.01601143181324005, -0.0004956850316375494, 0.004743624944239855, 0.014149322174489498, -0.004016450140625238, -0.01561726350337267, -0.0012394249206408858, -0.0002822473761625588, -0.002020118059590459, -0.04634888470172882, 0.002359919250011444, 0.0013439137255772948, -0.02495500072836876, -0.033844199031591415, -0.0056950682774186134, -0.01771043799817562, -0.018716249614953995, 0.013564864173531532, 0.0014551986241713166, -0.03240344300866127, 0.00116636767052114, 0.028380196541547775, -0.031044237315654755, -0.0030921909492462873, -0.0019453618442639709, 0.0076727112755179405, -0.01387068536132574, -0.025417130440473557, -0.0032434025779366493, 0.003226412460207939, 0.01107751950621605, -0.029793769121170044, -0.0033980119042098522, 0.01066975761204958, 0.012810504995286465, 0.03433351218700409, -0.003781987354159355, 0.0034744672011584044, -0.023894820362329483, -0.009201816283166409, -0.019681286066770554, 0.016922099515795708, 0.009494045749306679, 0.013673600740730762, -0.02797243557870388, -0.01645996980369091, 0.011145479045808315, -0.03283838927745819, -0.0345509871840477, 0.002585887210443616, 0.020483216270804405, -0.0047538187354803085, 0.0011748626129701734, 0.01734345406293869, 0.0088959950953722, 0.008583378046751022, 0.03033745102584362, -0.009718314744532108, 0.016949284821748734, -0.01074451394379139, 0.03490437939763069, -0.028543300926685333, 0.0183084886521101, -0.014244466088712215, 0.02649090252816677, -0.01380952075123787, -0.012926037423312664, 0.005701864138245583, -0.005497983656823635, 0.012966813519597054, 0.0013124821707606316, -0.025009367614984512, -0.004441201686859131, 0.008039696142077446, 0.0008405832340940833, 0.009759090840816498, 0.024452093988656998, -0.009881419129669666, -0.03919946774840355, -0.011967798694968224, -0.02665400691330433, -0.03721502795815468, -0.028380196541547775, 0.018770618364214897, -0.0035984946880489588, -0.006965924520045519, -0.01510076504200697, 0.007985328324139118, -0.009996951557695866, -0.005977103020995855, -0.007434850092977285, 0.0006333044730126858, 0.02509091980755329, 0.004308679141104221, 0.018689066171646118, -0.026545269414782524, -0.009908602572977543, -0.019871573895215988, 0.025376353412866592, 0.0016276477836072445, 0.0025502080097794533, 0.0038227634504437447, -0.008406681939959526, -0.0004181678523309529, -0.009813458658754826, 5.8602431636245456e-06, -0.011791101656854153, -0.012769728899002075, -0.031017053872346878, -0.018471593037247658, -0.02339191548526287, 0.006833401974290609, 0.0022273969370871782, 0.005107211880385876, 0.008726094849407673, 0.007298929616808891, -0.0035305344499647617, 0.03300149366259575, -0.00801251269876957, 0.0044989679008722305, 0.006439232733100653, 0.014883292838931084, -0.02022496797144413, -0.03683444857597351, -0.013850296847522259, -0.002789767924696207, -0.016500746831297874, 0.020904570817947388, -0.031180158257484436, 0.009466861374676228, -0.012830893509089947, 0.007774651516228914, -0.019912350922822952, -0.019518181681632996, -0.025349169969558716, -0.0008146733744069934, 0.004961097612977028, -0.005661088041961193, 0.02102689817547798, -0.003676648950204253, -0.005487789399921894, -0.0061673917807638645, -0.016555113717913628, 0.005164978094398975, 0.010092095471918583, -0.0021985138300806284, -0.019980311393737793, -0.0064324368722736835, -0.0006672845920547843, 0.008467845618724823, -0.01697646826505661, 0.021720092743635178, -0.02127155475318432, -0.017968688160181046, -0.022331735119223595, 0.012538664042949677, -0.002164533594623208, -0.03993343561887741, 0.02280745655298233, 0.0031737431418150663, -0.002218901878222823, -0.02200552634894848, -0.023052113130688667, -0.17234717309474945, -0.003058210713788867, 0.015766775235533714, -0.042814951390028, 0.018063832074403763, 0.010255199857056141, 0.025009367614984512, 0.002998745534569025, -0.014679412357509136, -0.006126615684479475, 0.0044547938741743565, -0.005548953544348478, -0.02273949608206749, -0.017384229227900505, -0.01794150285422802, 0.0013651513727381825, -0.007693099323660135, 0.035121850669384, 0.04126545786857605, 0.02865203656256199, 0.04118390381336212, -0.024615198373794556, 0.03577427193522453, 0.01505998894572258, -0.003669853089377284, 0.005752834491431713, -0.00018349265155848116, 0.0036868429742753506, -0.02377249114215374, -0.03832957521080971, 0.005005271639674902, -0.007543586660176516, 0.02339191548526287, -0.0013362682657316327, 0.00544361537322402, 0.007298929616808891, -0.005895550828427076, -0.007883387617766857, -0.01875702664256096, -0.006058655213564634, 0.03979751840233803, 0.019355077296495438, -0.017995871603488922, -0.0004638286482077092, -0.019531773403286934, 0.0180774237960577, 0.011859062127768993, -0.01889294758439064, 0.010160055942833424, -0.010472672991454601, 0.019137604162096977, -0.02119000256061554, 0.009643558412790298, -0.0017236416460946202, 0.023786084726452827, -0.014380387030541897, -0.006846994161605835, 0.028026802465319633, -0.01942303590476513, 0.013959033414721489, 0.014978436753153801, -0.020537585020065308, -0.004923719447106123, 0.023147257044911385, 0.0013099336065351963, -0.006170789711177349, -0.002562100999057293, 0.03107142262160778, -0.032294705510139465, 0.00945326965302229, -0.01510076504200697, 0.007319317664951086, 0.011757121421396732, 0.003238305449485779, 0.00793096050620079, 0.02664041332900524, -0.005797008518129587, -0.016405602917075157, -0.018729841336607933, -0.013959033414721489, 0.0025722950231283903, 0.022793864831328392, 0.01486970018595457, -0.004903331398963928, -0.0047096447087824345, -0.0018009464256465435, 0.0026028770953416824, -0.0021917177364230156, 0.006524182856082916, -0.04278776794672012, 0.03463253751397133, -0.021298740059137344, -0.010764902457594872, -0.012171679176390171, 0.012457111850380898, 0.02177446149289608, 0.017506558448076248, -0.007781447377055883, 0.022195814177393913, -0.013972625136375427, 0.018689066171646118, -0.011763917282223701, -0.02333754673600197, 0.010506653226912022, 0.030283082276582718, 0.003263790626078844, -0.020755058154463768, 0.006952332798391581, 0.038492679595947266, -0.014312426559627056, -0.03359954431653023, -0.010758105665445328, 0.006571755278855562, 0.03843831270933151, -0.010160055942833424, 0.03528495505452156, -0.0090115275233984, -0.002653847448527813, 0.019219156354665756, -0.006646511610597372, 0.025743339210748672, 0.0051819682121276855, -0.009127059951424599, 0.007761059328913689, 0.010051319375634193, 0.005331480875611305, -0.14200972020626068, -0.0506167858839035, -0.016351234167814255, -0.0066329194232821465, 0.0011476785875856876, 0.0024227825924754143, -0.020034678280353546, 0.02973940037190914, -0.005586331710219383, 0.03851986303925514, -0.021815236657857895, -0.01777839846909046, 0.009514433331787586, -0.020999714732170105, -0.01794150285422802, -0.003751405281946063, -0.004726634826511145, -0.0010729222558438778, 0.008121248334646225, 0.049420688301324844, 0.0019725458696484566, -0.0052193463779985905, -0.017465781420469284, -0.00028373399982228875, -0.00037378130946308374, 0.02045603282749653, -0.03128889575600624, 0.007842611521482468, 0.0059940931387245655, 0.030609292909502983, -0.00686738220974803, -0.006065451540052891, 0.012164883315563202, -0.016718219965696335, 0.0018383244751021266, -0.008365905843675137, -0.010431896895170212, 0.0005768125411123037, 0.01942303590476513, -0.017533741891384125, 0.009385309182107449, 0.007815428078174591, -0.0003387393371667713, -0.009956175461411476, -0.006673695519566536, 0.016650259494781494, -0.011464892886579037, 0.03816647082567215, -0.012864873744547367, -0.013293023221194744, -0.060783639550209045, -0.018770618364214897, -0.02147543616592884, 0.011831877753138542, 0.0433858186006546, -0.008229984901845455, 0.012871669605374336, 0.004991679452359676, 0.0032417033798992634, -0.0049271173775196075, 0.0043630474247038364, -0.003962081857025623, 0.00016915728338062763, 0.017153164371848106, 0.030826764181256294, 0.0211764108389616, 0.005069833714514971, -0.010710533708333969, 0.017520150169730186, -0.026749150827527046, -0.014638635329902172, 0.004002857953310013, -0.025661787018179893, 0.031098606064915657, -0.018104607239365578, 0.0021764265839010477, 0.0011238924926146865, -0.01516872551292181, 0.010860046371817589, 0.00789698027074337, -0.013293023221194744, -0.018838578835129738, 0.024411318823695183, -0.007618342991918325, 0.01919197104871273, 0.017316268756985664, 0.003578106639906764, -0.007108641322702169, -0.005552351474761963, -0.02074146457016468, -0.00045958111877553165, 0.025865666568279266, 0.018689066171646118, -0.0401780940592289, -0.0027795739006251097, -0.008664930239319801, 0.0009947679936885834, -0.01984439045190811, 0.012606624513864517, 0.020863793790340424, -0.013795929029583931, 0.004916923586279154, -0.01889294758439064, 0.016296865418553352, -0.010044523514807224, -0.01829489693045616, 0.02700739912688732, -0.021407475695014, 0.019898759201169014, 0.0037615993060171604, -0.013524088077247143, -0.017017243430018425, -0.02067350596189499, 0.009364920668303967, -0.0012071437668055296, -0.00956200622022152, -0.0007208032766357064, -0.015005621127784252, 0.01839004084467888, -0.035312142223119736, -0.004383435472846031, 0.02295696921646595, -0.019137604162096977, -0.012620216235518456, 0.01947740465402603, 0.0014373591402545571, 0.0023735114373266697, 0.0010261996649205685, -0.01860751397907734, 0.030092794448137283, -0.017003651708364487, -0.039308201521635056, 2.2803846150054596e-05, -0.024900631979107857, 0.008236780762672424, 0.025797707960009575, -0.003690241137519479, -0.014896884560585022, 0.027659818530082703, 0.022997746244072914, 0.008610562421381474, 0.03213160112500191, -0.022834639996290207, -0.023731715977191925, 0.008032900281250477, -0.017696846276521683, 0.03137044608592987, -0.008406681939959526, -0.03243062645196915, 0.014760964550077915, 0.016120169311761856, 0.025525866076350212, 0.04379357770085335, 0.01232798770070076, -0.019830798730254173, -0.017452189698815346, -0.016718219965696335, -0.02916853502392769, -0.012056146748363972, 0.0012198863551020622, -0.02517247386276722, -0.0049543012864887714, 0.007761059328913689, 0.005069833714514971, 0.025050144642591476, -0.048605162650346756, 0.01727549359202385, -0.014353202655911446, -0.010397916659712791, 0.01972206123173237, 0.012674584984779358, 0.008420273661613464, 0.006602337118238211, -0.01565803959965706, 0.001337967230938375, 0.0016183032421395183, 0.0432770811021328, -0.0016692733624950051, -0.013530883938074112, -0.0033130617812275887, -0.0026725365314632654, 0.012130903080105782, 0.03452380374073982, -0.0005347621627151966, -0.0009820255218073726, 0.004261107183992863, 0.03232188895344734, 0.00937851332128048, -0.012606624513864517, -0.0016106576658785343, -0.012124107219278812, 0.005858172662556171, 0.0003769669565372169, -0.0016582298558205366, -0.020551176741719246, -0.008359109982848167, 0.01817256771028042, 0.027863698080182076, -0.02097252942621708, -0.0027116136625409126, 0.01417650654911995, 0.03381701558828354, 0.00038503724499605596, 0.00518536614254117, -0.015821143984794617, -0.0007845160434953868, -0.024302581325173378, 0.019504588097333908, -0.0022460860200226307, 0.0013736463151872158, 0.007203785702586174, 0.036807265132665634, 0.009575597941875458, 0.004899933468550444, 0.022426879033446312, 0.01099596731364727, -0.005586331710219383, 0.015223094262182713, -0.01699005998671055, -0.019749246537685394, -0.02280745655298233, 0.02060554549098015, 0.007584362756460905, -0.0033249547705054283, 0.03077239729464054, -0.012158086523413658, 0.025131696835160255, 0.0206599123775959, 0.03697036951780319, -0.02635498158633709, -0.003272285684943199, -0.020428847521543503, 0.004444599617272615, -0.010506653226912022, -0.030881132930517197, -0.005249928683042526, -0.0036868429742753506, -0.035828638821840286, 0.0047538187354803085, 0.022848233580589294, -0.0038601416163146496, 0.07171164453029633, 0.010472672991454601, -0.0032790815457701683, 0.01486970018595457, 0.006585347466170788, 0.010302772745490074, 0.021937565878033638, -0.005110610276460648, 0.014964845031499863, -0.029576295986771584, 0.023663755506277084, -0.016215313225984573, 0.011689160950481892, -0.05069833993911743, -0.004227126948535442, 0.008732890710234642, -0.01993953436613083, 0.015413382090628147, -0.017302677035331726, -0.006361078470945358, 0.0382208377122879, 0.02095893770456314, 0.038193654268980026, 0.00937851332128048, -0.03917228430509567, -0.00299025047570467, 0.015399790368974209, 0.009983358904719353, -0.02857048436999321, -0.03430632874369621, 0.0010848153615370393, -0.014665819704532623, -0.028760774061083794, -0.01586192101240158, -0.004036838188767433, 0.017887135967612267, -0.005854774732142687, 0.0017193941166624427, 0.019803613424301147, 0.013863888569176197, 0.004312077071517706, 0.006412048824131489, -0.020537585020065308, -0.031261712312698364, -0.01565803959965706, -0.010194036178290844, 0.000800656562205404, 0.013496903702616692, -0.06535056978464127], "ad10fe86-f437-47cb-873c-2c6cd3329369": [-0.002080627717077732, 0.002318701008334756, 0.02160767838358879, -0.014056392014026642, -0.002322054235264659, 0.024115832522511482, 0.0053113847970962524, -0.015746377408504486, -0.030258797109127045, -0.01445876993238926, 0.019729916006326675, -0.013070566579699516, 0.008885839022696018, 0.009321748279035091, -0.02302941307425499, -0.00773906335234642, 0.03369241952896118, 0.007336685433983803, 0.02822008542716503, -0.021500378847122192, -0.031465932726860046, -0.00595183577388525, 0.005935070104897022, -0.009831426665186882, -0.015330587513744831, -0.003819234436377883, 0.01606827974319458, -0.012802314944565296, 0.006069195922464132, -0.021580854430794716, 0.026986125856637955, -0.006337447557598352, 0.0016229230677708983, -0.013023622334003448, -0.025403441861271858, -0.001186175737529993, 0.0025953357107937336, -0.012748664245009422, 0.0035342168994247913, -0.02361956611275673, 0.03999633714556694, 1.2993444215680938e-05, -0.007651881314814091, 0.0011727631790563464, -0.006914189085364342, 0.03862825408577919, 0.016685258597135544, -0.03886967897415161, -0.009978964924812317, 0.02416948229074478, 0.024545036256313324, -0.003611339256167412, -0.014029567129909992, 0.010300867259502411, 0.00036800786620005965, -0.0026406031101942062, 0.003386678406968713, 0.012433469295501709, 0.01630970649421215, -0.004395975731313229, -0.0019163234392181039, 0.001221383805386722, -7.22498371032998e-05, 0.018791034817695618, -0.0054488638415932655, -0.008496874012053013, 0.01217192318290472, -0.012272518128156662, -0.004697758704423904, -0.02089681103825569, 0.01160859502851963, 0.0027445508167147636, -0.0023941469844430685, 0.026047244668006897, 0.01880444772541523, -0.006511811167001724, -0.011977440677583218, 0.007283035200089216, 0.01672549732029438, 0.018616672605276108, 0.00459716422483325, 0.01217192318290472, -0.04581740126013756, 0.016054866835474968, 0.006256971973925829, 0.0026355735026299953, 0.0026707814540714025, 0.007725650444626808, -0.0069208950735628605, -0.017543664202094078, -0.007906720042228699, 0.026275258511304855, -0.004164608661085367, 0.003428592812269926, -0.0014619720168411732, -0.009100440889596939, -0.015102573670446873, 0.03278036415576935, -0.02606065757572651, -0.00928151048719883, -0.016108518466353416, 0.0013940708013251424, -0.02905166521668434, 0.006337447557598352, -0.008141440339386463, 0.014485594816505909, 0.013379056006669998, -0.01683279685676098, -0.00019406338105909526, -0.007611643522977829, -0.0019381189486011863, 0.04053283855319023, 0.0017159729031845927, -0.011762839742004871, 0.027106840163469315, -0.004013716708868742, 0.010884314775466919, -0.03052704967558384, -0.015639077872037888, 0.017999691888689995, 0.010092971846461296, -0.020011581480503082, 0.005123608745634556, -0.0028937659226357937, 0.011186097748577595, -0.0017821976216509938, -0.04340313374996185, 0.009643650613725185, -0.007162321824580431, -0.01987745426595211, 0.028059134259819984, 0.029373567551374435, 0.009100440889596939, -0.00013873646093998104, -0.006226793862879276, 0.008590762503445148, -0.03023197315633297, -0.004292028024792671, 0.008731594309210777, -0.026986125856637955, 0.023539092391729355, 0.014270992949604988, 0.003034597961232066, 0.008409692905843258, -0.008838895708322525, -0.0009221154032275081, -0.007195853162556887, -0.011373874731361866, -0.00030911824433133006, -0.0028283793944865465, -0.0036281049251556396, -0.024062182754278183, -0.016738910228013992, -0.01714128628373146, -0.005536045413464308, 0.03291448950767517, -0.007236090954393148, -0.004174667876213789, -0.011528119444847107, -0.014713608659803867, 0.016645021736621857, 0.025094952434301376, 0.03017832152545452, 0.01130681112408638, -0.005666818469762802, 0.04096204414963722, -0.0007997255306690931, -0.00684377271682024, 0.019260475412011147, 0.014512419700622559, -0.011977440677583218, 0.03717969357967377, -0.015987804159522057, 0.015665901824831963, 0.028300561010837555, -0.005666818469762802, 0.013922265730798244, 0.02469257451593876, 0.011782958172261715, -0.01279560849070549, 0.015250111930072308, 0.00776588823646307, 0.03160005807876587, 0.018254531547427177, -0.02308306284248829, 0.010072853416204453, 0.02945404313504696, -0.0002755867608357221, 0.00809449702501297, -0.00625026598572731, 0.012460294179618359, 0.02190275490283966, -0.01596098020672798, -0.002333790296688676, -0.6450918316841125, -0.02100411243736744, -0.016323119401931763, -0.013338818214833736, -0.007678706664592028, 0.01101173460483551, -0.006461514160037041, 0.006082608364522457, -0.015612252056598663, 0.03296814113855362, -0.008335922844707966, 0.018616672605276108, -0.010408167727291584, -0.012748664245009422, 0.0005457246443256736, -0.014378294348716736, -0.000792180944699794, -0.030097847804427147, -0.022627035155892372, 0.002218106761574745, 0.016457244753837585, 0.019314127042889595, -0.012279223650693893, -0.010106384754180908, 0.018469132483005524, -0.005552811548113823, 0.016940098255872726, -0.034658126533031464, 0.009757657535374165, 0.03565065935254097, -0.0021577500738203526, 0.005623227450996637, -0.013191279955208302, -0.008288979530334473, 0.05499161034822464, -0.008818776346743107, 0.005720468703657389, -0.0028518515173345804, 0.003795762313529849, 0.04654167965054512, -0.018522784113883972, -0.021688153967261314, 0.0421423502266407, 0.015075748786330223, 0.020789511501789093, -0.004426153842359781, 0.003054716857150197, -0.0005499161197803915, -0.015276937745511532, 0.006615758873522282, 0.014378294348716736, 0.0004727937048301101, -0.021433314308524132, 0.015746377408504486, -0.012990090996026993, -0.026167958974838257, 0.0016807649517431855, -0.02171497978270054, 0.0088120698928833, 0.0005096783279441297, -0.0023673216346651316, 0.025604629889130592, -0.009838133119046688, -0.01109891664236784, -0.006609052419662476, 0.0022080473136156797, -0.021326014772057533, -0.021473553031682968, -0.007289741653949022, -0.025148602202534676, 0.002042066538706422, 0.02107117511332035, -0.03296814113855362, 0.002298582112416625, 0.002384087536484003, 0.014874559827148914, 0.009315041825175285, -0.007423867471516132, -0.013157748617231846, 0.009750951081514359, -0.001651424914598465, -0.0032056085765361786, -0.018482545390725136, -0.016041455790400505, 0.042169176042079926, 0.0011895288480445743, -0.017664378508925438, -0.03125132992863655, -0.012902908958494663, -0.0013965857215225697, -0.0019381189486011863, 0.0071422029286623, -0.0050263674929738045, -0.007886601611971855, 0.005140374414622784, 0.006401157472282648, -0.006434688810259104, 0.00479164719581604, 0.020494434982538223, -0.028488336130976677, -0.017838742583990097, -0.017154699191451073, 0.008195091038942337, 0.005465629510581493, 0.027925007045269012, 0.014270992949604988, -0.012399937026202679, -0.005978661123663187, 0.04396646097302437, -0.0018710560398176312, -0.0018844685982912779, -0.018522784113883972, -0.0021292483434081078, -0.008785245008766651, 0.0025919824838638306, -0.02207711897790432, -0.007296447642147541, -0.008765125647187233, -0.009898489341139793, -0.025738755241036415, 0.028407860547304153, -0.0039265351369977, -0.006672762334346771, -0.007068433798849583, 0.024236546829342842, 0.003728699404746294, -0.0072495038621127605, 0.010971496812999249, -0.004583751782774925, -0.012943146750330925, -0.015934154391288757, -0.010515469126403332, 0.014740433543920517, 0.00011777928739320487, -0.007819538936018944, -0.011219630017876625, 0.008932783268392086, -0.02595335803925991, -8.0318350228481e-05, -0.013540007174015045, -0.013533300720155239, -0.005130314733833075, 0.00874500721693039, 0.018160643056035042, 0.0013538331259042025, -0.025564393028616905, -0.03492637723684311, -0.018817860633134842, 0.0036985210608690977, 0.008000608533620834, -0.013157748617231846, -0.011675657704472542, -0.00792013294994831, 0.02648986130952835, 0.002214753534644842, -0.010777014307677746, 0.027147077023983, -0.02612772025167942, -0.025899706408381462, -0.040801092982292175, 0.0004032159049529582, 0.031626880168914795, -0.021352840587496758, -0.00012595258885994554, -0.007759182248264551, -0.019770154729485512, -0.002400853205472231, 0.0314122810959816, -0.024866938591003418, -0.03463130071759224, 0.006961132865399122, 0.0008139763958752155, -0.017516840249300003, 0.026382559910416603, -0.0054421573877334595, 0.022533146664500237, -0.01214509829878807, 0.0025802466552704573, -0.006210028193891048, -0.006370979361236095, 0.0156524907797575, 0.02822008542716503, 0.004338972270488739, -0.027039777487516403, 0.0190995242446661, 0.0039634197019040585, 0.014418532140552998, 0.012010972015559673, -0.010347811505198479, 0.01482090912759304, 0.02344520390033722, 0.01653772033751011, -0.013218104839324951, -0.002731138141825795, -0.005009601358324289, 0.03495320305228233, 0.0102338045835495, 0.005090076941996813, -0.005512573756277561, 0.04332266002893448, 0.03648223727941513, 0.006588933523744345, 0.004057307727634907, -0.023793930187821388, -0.0021912814117968082, -0.039540309458971024, 0.004915713332593441, -0.020159119740128517, 0.006759944371879101, -0.010381342843174934, -0.008885839022696018, -0.02368663065135479, 0.008952902629971504, -0.01547812670469284, 0.025671692565083504, 0.03736747056245804, 0.008382867090404034, 0.04536137357354164, -0.003378295572474599, 0.010777014307677746, 0.010763601399958134, 0.01098490972071886, 0.030929427593946457, -0.013164455071091652, 0.017476601526141167, 0.02529614046216011, 0.016028042882680893, 0.0211784765124321, 0.021621091291308403, -0.009234566241502762, 0.014566070400178432, 0.018495958298444748, 0.013472944498062134, 0.007222678512334824, 0.038896504789590836, -0.00406066095456481, 0.027053190395236015, -0.016913272440433502, 0.03449717536568642, 0.0015382561832666397, -0.022828225046396255, 0.009241272695362568, 0.001261621480807662, -0.0030446574091911316, 0.023056238889694214, 0.02100411243736744, 0.06432677060365677, -9.031229637912475e-06, 0.003909769468009472, 0.039298880845308304, 0.00290885497815907, 0.020910223945975304, -0.017811916768550873, 0.006887363735586405, -0.018777623772621155, 0.007128790486603975, 0.0075378743931651115, -0.0031989021226763725, 0.030097847804427147, 0.008349335752427578, 0.010314280167222023, 0.013540007174015045, 0.006588933523744345, -0.026972714811563492, 0.009415636770427227, -0.01404297910630703, 0.006273738108575344, -0.02553756721317768, -0.011977440677583218, -0.005935070104897022, -0.0009313365444540977, -0.009429048746824265, -0.024384085088968277, 0.0027730525471270084, 0.042464252561330795, 0.009945433586835861, -0.006253619212657213, 0.007383629679679871, 0.01897881180047989, 0.0003294466878287494, -0.044181063771247864, -0.00489559443667531, 0.028300561010837555, 0.01940801367163658, 0.0005972792860120535, -0.013345524668693542, -0.012037797830998898, -0.005623227450996637, -0.007115377578884363, -0.0058981855399906635, -0.03385337069630623, -0.01431123074144125, -0.02225148305296898, 0.018616672605276108, 0.009268098510801792, -0.007329978980123997, 0.040210939943790436, -0.018402069807052612, 0.01897881180047989, -0.0006232662126421928, -0.0001886145182652399, -0.00673982547596097, -0.019984755665063858, -0.02433043345808983, 0.036509063094854355, 0.016926685348153114, 0.012138391844928265, -0.036213986575603485, 0.0020470961462706327, -0.018415482714772224, 0.006810241378843784, -0.008845601230859756, -8.319995686179027e-05, -0.020320070907473564, 0.012487119063735008, -0.009724126197397709, -0.010126504115760326, 0.02214418165385723, 0.02155402861535549, 0.012809021398425102, 0.02034689486026764, -0.018777623772621155, -0.0011342020006850362, 0.0023119947873055935, 0.055313512682914734, 0.03307544067502022, -0.010669713839888573, 0.011400699615478516, 0.008798657916486263, -0.01270842645317316, -0.0299368966370821, -0.034738603979349136, 0.036777313798666, -0.0182813573628664, 0.027120253071188927, -0.002005181973800063, 0.016269469633698463, -0.00847675558179617, 0.009844839572906494, 0.004758115392178297, 0.012983384542167187, -0.011863433755934238, -0.007423867471516132, -0.00492577301338315, -0.003708580508828163, 0.013224811293184757, 0.01665843464434147, -0.0008391250157728791, 0.007336685433983803, 0.014431944116950035, 0.0176241397857666, 0.010092971846461296, 0.03921840712428093, -0.0037219931837171316, -0.012071329168975353, 0.02065538428723812, 0.009100440889596939, 0.014069804921746254, -0.015102573670446873, 0.04112299531698227, -0.009462581016123295, 0.024652335792779922, 0.004355737939476967, -0.020601734519004822, 0.00171848782338202, 0.007873188704252243, -0.0004317176644690335, -0.011622007004916668, -0.00901325885206461, 0.002035360084846616, -0.0035174512304365635, 0.03154640644788742, -0.013258342631161213, -0.021768629550933838, 0.020802924409508705, 0.011957322247326374, -0.010663007386028767, 0.008242035284638405, 0.006464867386966944, 0.003886297345161438, -0.025041300803422928, -0.0036683427169919014, -0.027817707508802414, -0.016631608828902245, -0.015451300889253616, -0.02101752534508705, 0.011407406069338322, -0.016631608828902245, -0.009315041825175285, -0.02439749799668789, 0.015813440084457397, 0.01677914708852768, -0.028059134259819984, -0.01341929379850626, 0.0008332570432685316, -0.028407860547304153, -0.028595637530088425, -0.002972564660012722, -0.0003866597544401884, 0.03449717536568642, 0.008329217322170734, -0.002940709935501218, -0.007430573459714651, 0.006686174776405096, -0.011300105601549149, -0.033048614859580994, 0.016564546152949333, -0.02131260186433792, -0.009858251549303532, 0.03076847642660141, 0.007283035200089216, -0.009885077364742756, -0.02159426547586918, 0.03768937289714813, -0.007464105263352394, 0.030205147340893745, -0.010072853416204453, -0.019729916006326675, -0.003016155678778887, 0.002558451145887375, 0.004007010720670223, 0.031573232263326645, -0.004919066559523344, -0.020749272778630257, 0.008684650994837284, -0.01939460262656212, -0.00922786071896553, -0.023807343095541, -0.024384085088968277, 0.00709525914862752, 0.02112482488155365, -0.0005314737791195512, -0.016175581142306328, -0.007014783564954996, 0.03337051719427109, -0.03052704967558384, -0.004808412864804268, 0.021983230486512184, 0.013070566579699516, 0.02581923082470894, 0.016095105558633804, 0.028300561010837555, 0.019649440422654152, -3.0492679798044264e-05, -0.03624081239104271, -0.04351043328642845, 0.02969546988606453, 0.0142844058573246, -0.02058832161128521, 0.01606827974319458, 0.013244930654764175, -0.026261847466230392, -0.008704769425094128, -0.0005679392488673329, -0.009033378213644028, 0.03135862946510315, -0.004151195753365755, -0.028541985899209976, -0.039298880845308304, 0.008677944540977478, 0.00782624538987875, 0.007511049043387175, -0.019300714135169983, 0.0013471267884597182, 0.010012497194111347, -0.004687699489295483, 0.0010076207108795643, -0.008644413203001022, 0.012715132907032967, -0.03570430725812912, 0.002689223736524582, -0.0009455874096602201, 0.00538515392690897, 0.028139609843492508, -0.0035643952433019876, -0.016738910228013992, -0.01714128628373146, -0.006246912758797407, 0.01154823787510395, -0.030017372220754623, -0.002518213354051113, 0.016041455790400505, 0.013674133457243443, 0.014700195752084255, 0.017396125942468643, -0.006454807706177235, 0.01377472747117281, -0.002120865508913994, -0.0028987955302000046, 0.015813440084457397, -0.018495958298444748, -0.013519888743758202, -0.002964181825518608, 0.00865782517939806, 0.02017253264784813, -0.008879133500158787, 0.013654014095664024, -0.012822434306144714, 0.005821063183248043, 0.007578112185001373, -0.010884314775466919, -0.00700807711109519, -0.006159730721265078, -0.04506629332900047, 0.0026942535769194365, 0.000390222470741719, -0.025859469547867775, 0.029614994302392006, 0.005140374414622784, 0.019609203562140465, 0.021647917106747627, -0.011065385304391384, 0.013171161524951458, 0.012024384923279285, 0.009046790190041065, -0.006444748491048813, -0.008496874012053013, 0.0037152867298573256, 0.01098490972071886, -0.028649287298321724, -0.004932479001581669, -0.031278155744075775, -0.005100136622786522, -0.0020521259866654873, 0.031278155744075775, 0.011776251718401909, -0.015612252056598663, 0.007323272991925478, -0.026047244668006897, 0.02742874249815941, -0.007926839403808117, -0.011689070612192154, 0.021165063604712486, -0.003909769468009472, -0.001166895148344338, -0.01956896483898163, -0.0011836608173325658, 0.020266419276595116, -0.013090685941278934, 0.0012046180199831724, 0.011836608871817589, -0.0032022553496062756, -0.022117357701063156, -0.03766254708170891, -0.003842706326395273, -0.03648223727941513, 0.023968294262886047, 0.017583902925252914, 0.03366559371352196, 0.03286084160208702, 0.01136716827750206, -0.017127875238656998, -0.0043825628235936165, 0.017516840249300003, 0.006468220613896847, 0.030929427593946457, 0.0015323881525546312, -0.02666422538459301, -0.0062133814208209515, 0.005676877684891224, -0.003125132992863655, -0.01968967914581299, -0.013841790147125721, 0.009569881483912468, 0.014928210526704788, -0.007906720042228699, -0.022103944793343544, 0.004613930359482765, -0.024008532986044884, 0.02333790250122547, -0.008738300763070583, 0.03363877162337303, -0.01174942683428526, -0.006300562992691994, -0.0014619720168411732, 0.01863008365035057, -0.013540007174015045, 0.017999691888689995, 0.009154091589152813, 0.0075378743931651115, -0.019005637615919113, -0.016645021736621857, 0.01250053197145462, 0.020132293924689293, 0.002471269341185689, 0.004530101548880339, -0.027817707508802414, 0.009858251549303532, -0.011045265942811966, 0.023552503436803818, -0.01380155235528946, -0.03334369137883186, 0.009958846494555473, 0.024384085088968277, -0.013714371249079704, -0.013218104839324951, -0.007397042121738195, -0.004422800615429878, -0.0030396278016269207, -0.009207741357386112, -0.011622007004916668, -0.013352231122553349, 0.0066291713155806065, -0.007685412652790546, 0.022747749462723732, 0.01270842645317316, -0.014592895284295082, 0.0019817098509520292, 0.0019012342672795057, -0.005525986198335886, -0.011736013926565647, 0.01584026589989662, -0.007953664287924767, -0.015679314732551575, -0.0029490927699953318, -0.02921261638402939, 0.006702940911054611, 0.004781587515026331, -0.0010436669690534472, -0.03286084160208702, 0.013466238044202328, 0.017946042120456696, -0.01743636466562748, 0.020977286621928215, 0.0022482851054519415, -0.012755370698869228, -0.021674741059541702, 0.011957322247326374, -0.0019180000526830554, -0.032056085765361786, 0.019649440422654152, -0.007564699277281761, 0.0013270078925415874, -0.025725344195961952, -0.008818776346743107, 0.01749001443386078, -0.020548084750771523, -0.01336564403027296, 0.016162168234586716, 0.01047523133456707, 0.013935678638517857, -0.013385762460529804, -0.02195640653371811, 0.03232433646917343, -0.01672549732029438, 0.0037622309755533934, 0.0004765659978147596, -0.005978661123663187, -0.012104860506951809, -0.02095046266913414, 0.01425758097320795, 0.005995426792651415, -0.02636914700269699, -0.02356591634452343, -0.010555706918239594, 0.00343697564676404, -0.005297972355037928, -0.024920588359236717, -0.013975916430354118, -0.014686783775687218, -0.007484224159270525, 0.0010554030304774642, -0.011326930485665798, 0.010092971846461296, -0.023726867511868477, 0.014539245516061783, -0.01285596564412117, -0.0004409388347994536, -0.01341929379850626, 0.024625511839985847, -0.02827373519539833, -0.0018190821865573525, -0.024370672181248665, -0.007839657366275787, -0.03219021111726761, 0.05126291140913963, 0.012480412609875202, -0.029910070821642876, -0.008805363439023495, -0.012493825517594814, -0.014700195752084255, 0.0003709418815560639, 0.014069804921746254, -0.010106384754180908, 0.04096204414963722, 0.01695351116359234, -0.016390182077884674, 0.03868190199136734, -0.011689070612192154, 0.01036122441291809, -0.010408167727291584, -0.023673217743635178, -0.009408930316567421, 0.030258797109127045, -0.013841790147125721, -0.010810545645654202, -0.014163692481815815, -0.008342629298567772, 0.002846821676939726, 0.019649440422654152, -0.006411217153072357, 0.005177258979529142, 0.004459685645997524, 0.004888888448476791, -0.00854381825774908, -0.010126504115760326, 0.034792251884937286, -0.0003221116785425693, -0.022868461906909943, -0.04077426716685295, -0.0018324947450309992, 0.022881874814629555, -0.007638468872755766, -0.030097847804427147, -0.007618349976837635, 0.026825174689292908, -0.0189922247081995, 0.0020320070907473564, -0.027240965515375137, 0.00644139526411891, -0.010709951631724834, -0.03779667243361473, 0.007786007132381201, -0.013922265730798244, 0.009241272695362568, 0.018616672605276108, -0.018053343519568443, -0.004070720169693232, -0.00736351078376174, -0.0020320070907473564, -0.007182440720498562, 0.0015868768095970154, 0.025752168148756027, -0.01726200059056282, -0.040023162961006165, 0.002263374160975218, 0.015223287045955658, -0.022935524582862854, 0.007269622758030891, -0.002920591039583087, 0.019126350060105324, -0.013553420081734657, 0.02297576330602169, 0.008081084117293358, 0.005800944287329912, -0.004647461697459221, -0.0006890717195346951, -0.009771070443093777, 0.018844686448574066, -0.03052704967558384, -0.029534518718719482, -0.02284163609147072, 0.031224504113197327, -0.008369455114006996, -0.0019062639912590384, -0.007189147174358368, 0.0035576887894421816, 0.03280718997120857, -0.0015625664964318275, -0.014887972734868526, 0.23241332173347473, 0.0003973479033447802, 0.007504343055188656, 0.03492637723684311, -0.0029239440336823463, 0.009529643692076206, 0.02237219549715519, -0.007819538936018944, -0.026570336893200874, -0.001639688853174448, 0.01252735685557127, 0.005428744945675135, -0.028193259611725807, 0.003886297345161438, 0.004815118853002787, -0.012581007555127144, -0.024612098932266235, -0.030151497572660446, -0.025604629889130592, 0.00018358479428570718, 0.010508762672543526, 0.015518364496529102, -0.047346435487270355, -0.016819385811686516, 0.03881602734327316, 0.0014527508756145835, -0.0078530702739954, 0.013083979487419128, 0.03288766369223595, -0.012681601569056511, -0.015008686110377312, -0.01526352483779192, 0.009335161186754704, 0.009234566241502762, -0.031465932726860046, -0.004027129616588354, 0.015639077872037888, 0.00892607681453228, 0.024866938591003418, 0.013224811293184757, 0.0066627031192183495, -0.011689070612192154, 0.008060965687036514, -0.012688308022916317, 0.01026062946766615, 0.01773144118487835, -0.016564546152949333, -0.01374790258705616, 0.004053954500705004, 0.02565827965736389, -0.023056238889694214, -0.014351468533277512, 0.010267335921525955, 0.01850937120616436, 0.011789664626121521, 0.0026774879079312086, -0.00449321698397398, 0.0017805210081860423, -0.004191433545202017, 0.000508840021211654, -0.016323119401931763, 0.021701566874980927, 0.004362444393336773, 0.025148602202534676, -0.020306657999753952, 0.02072244882583618, -0.006578874308615923, 0.03320956602692604, 0.0054388041608035564, -0.02600700780749321, 0.014767259359359741, 0.002254991326481104, 0.0035409231204539537, 4.421962512424216e-05, -0.009844839572906494, -0.007155615370720625, -0.004620636347681284, 0.00809449702501297, 0.02416948229074478, 0.007678706664592028, -0.016685258597135544, -0.02178204245865345, -0.013949091546237469, -0.028139609843492508, -0.03374607115983963, -0.0244645606726408, 0.009737539105117321, 0.006511811167001724, -0.0015659196069464087, -0.018603259697556496, -0.021084588021039963, -0.027710406109690666, 0.0031553113367408514, -0.01092455256730318, -0.0017151347128674388, 0.02529614046216011, -0.004322206601500511, 0.026583749800920486, -0.0023656452540308237, -0.01077030785381794, -0.007792713586241007, 0.03610668703913689, -0.015303762629628181, 0.014083216898143291, 0.0028987955302000046, 0.01174942683428526, -0.014230755157768726, -0.002684194128960371, 0.013083979487419128, 0.0020320070907473564, -0.006568814627826214, -0.013882027938961983, 0.011917084455490112, -0.012292636558413506, -0.004902300890535116, 0.020440783351659775, 0.00024373186170123518, -0.02403535693883896, -0.0042551434598863125, -0.012648070231080055, 0.01508916076272726, -0.00614296505227685, -0.019126350060105324, 0.01873738504946232, -0.0015717876376584172, -0.014955035410821438, -0.00709525914862752, -0.000140936957905069, -0.004469744861125946, -0.012896203435957432, 0.014056392014026642, -0.03374607115983963, -0.01011979766190052, -0.018549608066678047, -0.0032190210185945034, -0.02482669986784458, 0.0012901233276352286, -0.008999845944344997, -0.013868615962564945, -0.008356042206287384, 0.0004698597185779363, 0.006837066728621721, -0.008973021060228348, 0.0012171923881396651, -6.219039642019197e-05, -0.006334094796329737, 0.005633286666125059, -0.004070720169693232, 0.004342325497418642, -0.0022080473136156797, -0.006082608364522457, -0.0030245385132730007, -0.00549245486035943, -0.0015935830306261778, 0.013493062928318977, -0.0049525978974998, -0.019434839487075806, -0.013654014095664024, -0.010320986621081829, 0.005686937365680933, -0.0355701819062233, 0.03712604194879532, 0.04297393187880516, 0.0028015542775392532, -0.005422038491815329, -0.025376616045832634, -0.17039351165294647, 0.003162017557770014, 0.003527510678395629, -0.028971189633011818, 0.029722293838858604, 0.003728699404746294, 0.02029324509203434, 0.005398566368967295, -0.020078644156455994, 0.017101049423217773, -0.028649287298321724, -0.021795455366373062, -0.031385455280542374, -0.010046028532087803, -0.013533300720155239, -0.0009397194371558726, 0.011836608871817589, 0.01999816857278347, 0.0464075542986393, 0.02875658869743347, 0.020843161270022392, -0.03803809732198715, 0.023378141224384308, 0.0042283181101083755, -0.006803534924983978, 0.028837064281105995, -0.008852307684719563, 0.0009833103977143764, -0.013439413160085678, -0.03696509078145027, -0.004852003417909145, 0.005566223990172148, 0.0013747902121394873, 0.008248741738498211, 0.009288216941058636, -0.014753846451640129, -0.0035610420163720846, 0.0030882484279572964, -0.015545189380645752, 0.015303762629628181, 0.001809022738598287, 0.04337630793452263, 0.007779300678521395, 0.015585427172482014, -0.001005105790682137, 0.007832950912415981, 0.011467762291431427, -0.028434686362743378, 7.481709326384589e-05, -0.001450236071832478, 0.015075748786330223, -0.025403441861271858, -0.01244017481803894, -1.3857928024663124e-05, 0.01684620976448059, -0.020507846027612686, -0.023780517280101776, 0.020749272778630257, -0.0011937202652916312, 0.0029105315916240215, 0.0029608288314193487, -0.040854740887880325, 0.0003610920102801174, 0.019448252394795418, -0.016993748024106026, -0.023244014009833336, 0.0010612710611894727, 0.01857643388211727, -0.02618137188255787, 0.0009019965073093772, -0.0005721307243220508, -0.013814965263009071, 0.011648832820355892, -0.002377381082624197, -0.012788902036845684, -0.003567748237401247, -0.019005637615919113, -0.002783111995086074, -0.014096629805862904, -0.016564546152949333, 0.004033835604786873, 0.009113853797316551, 0.004858709871768951, 0.0038762378972023726, -0.00928151048719883, -0.003440328873693943, -0.008195091038942337, -0.0028199965599924326, -0.00551927974447608, -0.023109888657927513, 0.026261847466230392, -0.01724858768284321, -0.02915896661579609, -0.0014007771387696266, 0.007189147174358368, 0.0012591066770255566, 0.01809358038008213, -0.01404297910630703, 0.011474468745291233, -0.005435451399534941, 0.010160035453736782, 0.00025253387866541743, -0.03581161051988602, 0.01083066500723362, 0.05289924517273903, -0.012674895115196705, -0.00736351078376174, 0.0072159720584750175, 0.031814657151699066, 0.0011031853500753641, -0.030124671757221222, 0.03409479930996895, -0.00782624538987875, 0.01660478301346302, -0.00024142657639458776, 0.020454196259379387, 0.029722293838858604, -0.006582227535545826, -0.016457244753837585, -0.004000304266810417, 0.01809358038008213, -0.007437279913574457, -0.024558447301387787, 0.009301629848778248, 0.009576587937772274, -0.0029826241079717875, -0.1248980164527893, -0.03790397197008133, 0.0027613164857029915, 0.006461514160037041, -0.006699587684124708, 0.015665901824831963, -0.00608596159145236, 0.019716503098607063, -0.001652263104915619, 0.028434686362743378, -0.025135189294815063, -0.020266419276595116, -0.007175734266638756, -0.013600364327430725, -0.030553875491023064, -0.014753846451640129, -0.010709951631724834, 0.023887818679213524, -0.028434686362743378, 0.030339272692799568, 0.008758420124650002, -0.02469257451593876, 0.009328454732894897, -0.0022164301481097937, -0.009543056599795818, 0.004788293968886137, -0.028300561010837555, -0.0026791642885655165, 0.0060222516767680645, 0.004852003417909145, -0.002570187207311392, -0.005036426708102226, 0.0004032159049529582, -0.028998015448451042, 0.02280139923095703, -0.011910378001630306, -0.015545189380645752, -0.02505471371114254, 0.03420209884643555, -0.007443986367434263, -0.002987653948366642, 0.0013186250580474734, 0.0006526062497869134, -0.038118574768304825, 0.010891021229326725, 0.005375094711780548, -0.028166433796286583, 0.05426732823252678, -0.0055997553281486034, -0.0126145388931036, -0.06550707668066025, 0.017878979444503784, -0.018053343519568443, -0.01993110589683056, 0.033826544880867004, 0.005931716877967119, 0.00427190912887454, 0.02266727387905121, -0.009978964924812317, -0.005857947748154402, -0.008054259233176708, 0.0015147841768339276, -0.007819538936018944, 0.010267335921525955, 0.0198103915899992, -0.004007010720670223, -0.025081539526581764, -0.009771070443093777, 0.024652335792779922, -0.02654351107776165, -0.021473553031682968, 0.002543361857533455, -0.027656756341457367, 0.031144028529524803, -0.03111720271408558, 0.01154823787510395, -0.010213685221970081, -0.011829902417957783, 0.012829139828681946, 0.010609356686472893, 0.0018542902544140816, -0.020507846027612686, -0.019005637615919113, -0.007799419574439526, -0.0032022553496062756, 0.0111928042024374, 0.010790427215397358, -0.008027433417737484, 0.0010889344848692417, -0.018764210864901543, 0.011266573332250118, 0.0017369301058351994, 0.00987837091088295, 0.0030949546489864588, -0.0033967378549277782, 0.0049995421431958675, 3.916370769729838e-05, -0.013057154603302479, 0.005593048874288797, 0.022600211203098297, -0.008946196176111698, -0.008369455114006996, -0.01085748989135027, 0.012178629636764526, -0.015464713796973228, -0.02339155226945877, 0.01922023855149746, 0.008235328830778599, 0.02701295167207718, 0.007484224159270525, 0.0002684613282326609, 0.0019951225258409977, -0.03135862946510315, 0.019488489255309105, -0.0017117814859375358, -0.01401615422219038, -0.0017704615602269769, 0.00857064314186573, -0.001541609293781221, -0.00865782517939806, -0.010166741907596588, 0.0008843925315886736, -0.007960370741784573, -0.024303609505295753, 0.007423867471516132, 0.014485594816505909, 0.02159426547586918, 0.002375704701989889, -0.004409388173371553, 0.014324643649160862, -0.020092057064175606, -0.016323119401931763, 0.01207803562283516, 0.00014869110600557178, 0.004221612121909857, 0.01455265749245882, -0.011575063690543175, 0.0005197377759031951, 0.010200273245573044, 0.008563937619328499, 0.02226489596068859, 0.04141807183623314, -0.007209266070276499, -0.0003185489622410387, 0.031170854344964027, -0.03522145375609398, -0.017114462330937386, -0.014673370867967606, -0.02095046266913414, 0.014069804921746254, -0.005324797239154577, 0.00782624538987875, 0.024424321949481964, 0.012607832439243793, -0.027710406109690666, -0.00010866291995625943, -0.013499769382178783, -0.028193259611725807, -0.024652335792779922, 0.00812132190912962, -0.01821429468691349, -0.022157594561576843, 0.028461510315537453, 0.0011702482588589191, -0.0011844991240650415, -0.004459685645997524, 0.01419051829725504, -0.003732052631676197, 0.0036046330351382494, 0.023820756003260612, 0.001111568184569478, -0.0018341713584959507, 0.017932629212737083, 0.0035442763473838568, -0.003346440615132451, -0.005552811548113823, 0.04879499599337578, 0.00654869619756937, -0.01684620976448059, 0.0019096172181889415, 0.0036985210608690977, 0.03672366589307785, 0.021634504199028015, -0.0019364423351362348, -0.001695015816949308, -0.014378294348716736, 0.02886388823390007, -0.015344000421464443, 0.0176241397857666, 0.007014783564954996, -0.018710559234023094, 0.01571955345571041, -0.003121779765933752, 0.00027893990045413375, -0.0003223212552256882, -0.0054455106146633625, -0.0019582377281039953, -0.011212923564016819, -0.020695623010396957, 0.019139762967824936, 0.018965398892760277, 0.010535587556660175, 0.0075311679393053055, -0.000965706305578351, 0.006538636516779661, -0.02243926003575325, -0.040076810866594315, 0.012406643480062485, 0.0009715743362903595, -0.012010972015559673, -0.007122084032744169, 0.03516780585050583, -0.006377685349434614, -0.0028719704132527113, 0.023941468447446823, 0.009543056599795818, -0.012205454520881176, 0.016913272440433502, 0.004929125774651766, -0.024920588359236717, -0.02160767838358879, 0.006609052419662476, 0.019555553793907166, 0.00776588823646307, 0.02422313392162323, -0.008892545476555824, 0.01672549732029438, 0.002555097918957472, 0.02547050453722477, -0.03607986122369766, 0.0017721381736919284, -0.009556468576192856, -0.013231517747044563, 0.006934307981282473, -0.01217192318290472, -0.018469132483005524, 0.0012155157746747136, -0.008396279998123646, 0.01208474114537239, -0.0010621092515066266, 0.0056031085550785065, 0.08267518877983093, 0.002984300721436739, -0.017235174775123596, -0.003554335795342922, -0.002928973874077201, -0.007658587768673897, 0.01885809749364853, -0.007772594690322876, 0.025430265814065933, -0.005985367111861706, 0.03184148296713829, -0.005522632971405983, 0.006226793862879276, -0.011179392226040363, 0.012547476217150688, 0.0020118881948292255, 0.005036426708102226, 0.008852307684719563, -0.012674895115196705, 0.01956896483898163, 0.02784453146159649, 0.01927388831973076, 0.02237219549715519, 0.022627035155892372, -0.015598839148879051, 0.007913426496088505, 0.028354210779070854, 0.00484865065664053, -0.01999816857278347, -0.005757353268563747, -0.002488035010173917, 0.013499769382178783, -0.01601462997496128, -0.018710559234023094, 0.01207803562283516, 0.003354823449626565, -0.01887151040136814, 0.0012917998246848583, 0.028998015448451042, 0.010515469126403332, 0.006806888151913881, -0.0049961889162659645, -0.04423471540212631, -0.03685779124498367, -0.020856574177742004, 0.006934307981282473, 0.004231671337038279, 0.0031704003922641277, -0.03487272933125496], "a49e389c-f457-4114-bb4a-7ab41ec6490c": [0.010198515839874744, 0.02379201166331768, 0.00145474832970649, -0.043265607208013535, -0.0040637897327542305, -0.0015727238496765494, -0.017246492207050323, -0.00492950901389122, -0.02567961812019348, -0.027974624186754227, -0.0004782676405739039, 0.02138836681842804, -0.02301795594394207, 0.014666307717561722, 0.011991064995527267, 0.011773786507546902, 0.0030979181174188852, -0.004165638703852892, 0.003372911363840103, 0.010130616836249828, 0.01624157838523388, 0.01946001872420311, 0.006233180873095989, -0.005418385844677687, -0.030201731249690056, 0.016703294590115547, 0.012215133756399155, -0.01907978020608425, -0.010422584600746632, 0.00034034662530757487, 0.018034126609563828, -0.0056560346856713295, -0.026168495416641235, -0.01709711365401745, -0.017260070890188217, 0.0029332616832107306, -0.009533099830150604, 0.02399570867419243, 0.014652728103101254, -0.023805590346455574, 0.026521572843194008, 0.009017063304781914, -0.0008869381854310632, 0.006436879746615887, -0.00018916396948043257, 0.022990796715021133, 0.010707763023674488, -0.029115337878465652, -0.010266415774822235, -0.0045390864834189415, 0.03308067098259926, 0.03655713051557541, -0.011115160770714283, -0.019473597407341003, -0.015277404338121414, -0.006701687816530466, -0.005418385844677687, 0.011610827408730984, -0.010782452300190926, -0.0011169479694217443, -0.0032048600260168314, 0.016065038740634918, -0.01582060009241104, -0.026806751266121864, -0.023887069895863533, 0.002327258000150323, -0.003941570408642292, 0.01362744439393282, -0.011868845671415329, 0.0010057624895125628, 0.01118985004723072, 0.01049727387726307, -0.01912051998078823, 0.003636022098362446, 0.040305186063051224, -0.0024851243942976, -0.02293647639453411, -0.0002843294641934335, -0.0018366834847256541, -0.01816992647945881, 0.010510854423046112, -0.020668629556894302, -0.019650137051939964, 0.0025886711664497852, 0.008847314864397049, -0.009471990168094635, -0.013960152864456177, 0.02542160078883171, 0.005642454605549574, -0.01633663848042488, 0.006290895398706198, 0.006060036830604076, 0.014625567942857742, 0.029332615435123444, 0.0087454654276371, 0.021700704470276833, 0.008025730028748512, 0.010646653361618519, -0.007828820496797562, -0.03471026197075844, -0.004012865014374256, 0.01482926681637764, -0.012995978817343712, -0.00930224172770977, -0.002542839152738452, -0.0018417759565636516, 0.022406859323382378, -0.008630035445094109, 0.013450905680656433, 0.0006942731561139226, -0.018672382459044456, 0.024946304038167, 0.002272938145324588, -0.020804429426789284, 0.020899489521980286, -0.009607790037989616, -0.0006934244302101433, -0.01360707450658083, -0.020301973447203636, -0.018183505162596703, 0.011441078037023544, 0.03047332912683487, 0.013294736854732037, 0.008562136441469193, 0.015019386075437069, -0.0033847938757389784, 0.012194763869047165, -0.012140443548560143, -0.010918251238763332, -0.0068884119391441345, 0.04744822159409523, 0.012215133756399155, 0.004678280558437109, 0.007312783971428871, -0.017300810664892197, 0.015915660187602043, -0.026779592037200928, 0.016784774139523506, -0.030935045331716537, -0.020668629556894302, 0.03248315677046776, 0.007115875370800495, -0.0018791207112371922, -0.0022865182254463434, 0.00013410166138783097, 0.011312069371342659, 0.015589741989970207, 0.012133654206991196, -0.0074282134883105755, 0.0003002434386871755, -0.0012485034530982375, 0.016323057934641838, 0.013464485295116901, -0.007523272652179003, 0.008331277407705784, 0.015358883887529373, -0.0036665769293904305, 0.00681372219696641, 0.02906101755797863, 0.015779860317707062, 0.02391423098742962, 0.02198588289320469, -0.009723219089210033, 0.008215848356485367, -0.002524166600778699, 0.03758920356631279, 0.03381398692727089, 0.007889930158853531, -0.004135083872824907, 0.014734207652509212, 0.0005678102024830878, 0.012187973596155643, -0.014068791642785072, 0.01937853917479515, 0.015929240733385086, 0.010700972750782967, 0.0017008843133226037, -0.013450905680656433, -0.00708192540332675, 0.000617886136751622, 0.0032455995678901672, -0.003782006213441491, 0.0129688186571002, 0.035389259457588196, -0.03351522982120514, 0.002520771697163582, 0.024240147322416306, -0.0027448402252048254, -0.006735637784004211, 0.00706155551597476, 0.0021524166222661734, 0.03025604970753193, -0.010042347013950348, 0.006345215253531933, -0.6231551170349121, -0.011264539323747158, -0.017029212787747383, -0.029631374403834343, -0.025312962010502815, 0.00044898592750541866, 0.009044223465025425, -0.003189582610502839, -0.030201731249690056, 0.033325109630823135, 0.008996693417429924, -0.002867059549316764, 0.020980969071388245, -0.019622977823019028, -0.003951755352318287, -0.03060912899672985, 0.022732777521014214, -0.015508262440562248, -0.05013704672455788, 0.007536852732300758, 0.0042606983333826065, 0.010205306112766266, -0.03780648484826088, 0.002257660962641239, 0.004101134371012449, 0.020478511229157448, -0.005139997694641352, 0.022257480770349503, 0.02679317258298397, 0.018495844677090645, -0.033107832074165344, -0.020845169201493263, -0.0021524166222661734, -0.006389350164681673, 0.04742106422781944, -0.005931027699261904, 0.0017076743533834815, 0.01307066809386015, 0.032211557030677795, 0.022298220545053482, -0.026670953258872032, -0.006871436722576618, 0.03126096352934837, 0.028816578909754753, 0.02554382011294365, -0.012316983193159103, 0.011556508019566536, 0.022827837616205215, 0.01163798663765192, -0.013308316469192505, -0.017246492207050323, 0.01572554185986519, -0.002125256694853306, -0.018102025613188744, 0.019595816731452942, -0.013899043202400208, 0.020899489521980286, -0.005900472868233919, -0.001021039905026555, -0.02254265919327736, -0.007869560271501541, 0.003585097612813115, -0.005961582530289888, -0.017029212787747383, 0.0012306798016652465, 0.009336191229522228, -0.024633966386318207, 0.003765031462535262, 0.006864646915346384, -0.00926150195300579, -0.0011500490363687277, 0.04084838554263115, -0.008467077277600765, -0.020600730553269386, 0.011800945736467838, 0.03476458042860031, 0.0325917974114418, -0.01886250264942646, 0.011644776910543442, 0.0104836942628026, 0.004213168751448393, -0.01582060009241104, -0.017626728862524033, -0.00863682571798563, 0.031396761536598206, 0.005751093849539757, -0.01542678289115429, 0.01367497444152832, 0.012934869155287743, 0.019364958629012108, -0.018319305032491684, 0.029631374403834343, 0.005404806230217218, -0.025666039437055588, -0.011420708149671555, 0.025435181334614754, 0.007468953263014555, -0.023126594722270966, -0.019527917727828026, -0.036801569163799286, -0.011692306958138943, -0.020858749747276306, 0.010191726498305798, 0.0072313048876821995, 0.009207182563841343, 0.024538906291127205, -0.0009242829401046038, 0.044134724885225296, 0.03663861006498337, -0.028870899230241776, -0.027186989784240723, -0.01882176287472248, -0.01489716675132513, 0.03530777990818024, 0.012079333886504173, -0.015304564498364925, 0.009478780440986156, 0.02824622206389904, 0.004430447239428759, -0.02100812830030918, 0.01693415455520153, 0.025231482461094856, -0.011712676845490932, 0.0024834268260747194, 0.012948448769748211, 0.012914499267935753, -0.006742427591234446, -0.0010762083111330867, -0.03544357791543007, -0.01180773600935936, -0.004987223539501429, 0.009159652516245842, 0.01125095970928669, -0.014435449615120888, -0.006901991553604603, -0.01294165849685669, 0.003866880666464567, -0.012527471408247948, 0.0013333779061213136, -0.028273383155465126, -0.028191903606057167, -0.020003214478492737, -0.001260385848581791, -0.012310192920267582, -0.015440363436937332, -0.0032286248169839382, -0.011963904835283756, -0.005173947662115097, 0.00803930964320898, 0.004515321925282478, -0.004029839765280485, -0.00681372219696641, -0.03389546647667885, 0.022366119548678398, -0.005364066455513239, -0.014408289454877377, 0.029712853953242302, -0.021021708846092224, -0.014408289454877377, -0.01482926681637764, -0.008922004140913486, 0.0162008386105299, -0.02460680529475212, -0.007577592507004738, -0.0072652543894946575, -0.00459680100902915, -0.02176860347390175, 0.026440095156431198, -0.03704600781202316, -0.03905583545565605, 0.00018905787146650255, -0.008025730028748512, -0.009492360055446625, 0.0051332078874111176, 0.00925471168011427, 0.03389546647667885, -0.02490556426346302, 0.011576876975595951, 0.006827302277088165, -0.03297203406691551, -0.0006942731561139226, -0.017137853428721428, -0.012391672469675541, -0.017898328602313995, 0.011318858712911606, 0.012228713370859623, 0.019785935059189796, 8.280565089080483e-05, -0.022610558196902275, 0.006980076432228088, 0.011298488825559616, 0.0271326694637537, -0.007604752201586962, -0.0019062805222347379, -0.007957830093801022, 0.04598159343004227, 0.002644688356667757, 0.018319305032491684, 0.015752701088786125, 0.04351004585623741, 0.019269898533821106, -0.005537210498005152, -0.0019453228451311588, -0.007326364051550627, 0.012866969220340252, -0.02387349121272564, 0.020709369331598282, 0.006121146492660046, 0.005645849741995335, 0.006066827103495598, 0.0031556326430290937, -0.010531224310398102, -0.04505815729498863, -0.027784505859017372, 0.02391423098742962, 0.035171978175640106, -0.007516482844948769, 0.0237512718886137, 0.012602160684764385, -0.012812649831175804, -0.001441168482415378, 0.01419101096689701, 0.009051012806594372, 0.020288392901420593, 0.018251406028866768, -0.010734922252595425, -0.000720584241207689, -0.0036292322911322117, -0.01482926681637764, -0.061272576451301575, -0.0017042793333530426, -0.02383275143802166, 0.003058875910937786, 0.0008054586942307651, 0.035253457725048065, 0.02186366356909275, 0.005791833624243736, -0.016811935231089592, 0.04997408762574196, -0.003252389607951045, -0.01060591358691454, 0.00012158267782069743, 0.018971141427755356, -0.0379694402217865, -0.010218885727226734, -0.0026124361902475357, -1.2359844731690828e-05, 0.03862127661705017, -0.006477619521319866, 0.03278191387653351, 0.0016745732864364982, 0.012011434882879257, -0.028898058459162712, 0.005808808375149965, 0.003386491211131215, 0.010891092009842396, 0.02202662266790867, 0.014068791642785072, 0.004427052102982998, 0.010205306112766266, -0.006100776605308056, 0.03031037002801895, 0.033922627568244934, 8.261999028036371e-06, -0.0019504153169691563, 0.017518090084195137, -0.01047690398991108, -0.03286339342594147, -0.0173958707600832, 0.015087285079061985, -0.044596441090106964, -0.041092824190855026, -0.0129212886095047, 0.007387473713606596, 0.01667613536119461, -0.0006539577734656632, -0.003467970760539174, 0.011033681221306324, 0.03215723857283592, -0.018292145803570747, -0.01761315017938614, -0.008365227840840816, 0.0034340210258960724, 0.03373250737786293, 0.020899489521980286, -0.012126863934099674, -0.016920574009418488, 0.006053247023373842, -0.0017738763708621264, 0.019948894158005714, -0.011006521061062813, -0.01283980906009674, 0.012092914432287216, -0.0036292322911322117, -0.0031335654202848673, -0.020668629556894302, 0.0209673885256052, -0.008691145107150078, -0.025951217859983444, 0.028789419680833817, -0.0028619670774787664, 0.018034126609563828, -0.03291771188378334, -0.013742873445153236, 0.07745983451604843, -0.0022406859789043665, 0.013763243332505226, 0.00018258619820699096, -0.0006896050763316453, -0.03204859793186188, 0.01846868358552456, -0.00737389363348484, -0.03579665720462799, -0.004518716596066952, 0.030962206423282623, -0.031532563269138336, 0.03261895477771759, -0.009471990168094635, 0.03174984082579613, -0.0005873313057236373, 0.0013537477934733033, -0.00388385565020144, -0.011794156394898891, 0.019989633932709694, 0.03593245521187782, 0.01898472011089325, -0.021157506853342056, -0.00328464200720191, -0.035552218556404114, 0.010510854423046112, 0.009886178188025951, -0.016350217163562775, 0.019405698403716087, -0.0014360760105773807, 0.017857588827610016, 0.009784328751266003, 0.014408289454877377, 0.01185526605695486, 0.0028908243402838707, 0.01907978020608425, -0.0012306798016652465, -0.007258464582264423, 0.001768783899024129, -0.02134762704372406, 0.010117036290466785, 0.0011551415082067251, 0.025408020243048668, 0.021116767078638077, 0.005639059469103813, -0.008392387069761753, 0.010117036290466785, 0.013858303427696228, -0.010952201671898365, -0.02524506114423275, 0.00399588979780674, 0.018495844677090645, 0.016309477388858795, 0.015969980508089066, 0.004932904150336981, 0.028056103736162186, 0.015331723727285862, 0.01723291166126728, 0.019813096150755882, -0.012581790797412395, 0.011841685511171818, 0.01679835468530655, 0.014028051868081093, -0.004807289689779282, -0.01787116751074791, 0.008358437567949295, -0.013593494892120361, 0.007604752201586962, -0.004471187014132738, -0.02049209177494049, 0.003978915046900511, -0.01993531547486782, -0.03126096352934837, -0.012737960554659367, 0.0014768157852813601, 0.0032014648895710707, -0.00943125132471323, -0.02152416482567787, -0.03663861006498337, -0.016309477388858795, -0.03625837340950966, -0.004688465502113104, 0.02884374000132084, 0.0006700839148834348, -0.0005139149143360555, 0.009852228686213493, -0.01283980906009674, 0.01731439121067524, -0.03218439966440201, -0.0054930755868554115, 0.017545249313116074, -0.03085356578230858, -0.04467792063951492, -0.014041632413864136, 0.0015268917195498943, 0.0022016437724232674, 0.0048548197373747826, 0.0030520858708769083, -0.011794156394898891, 0.009499150328338146, -0.01434039045125246, -0.04367300495505333, -0.015521842986345291, -0.031396761536598206, -0.014598408713936806, 0.016051460057497025, -0.0004651120980270207, 0.01808844693005085, -0.00816831924021244, 0.025666039437055588, -0.006290895398706198, -0.00322013720870018, 0.002687125699594617, -0.01560332253575325, 0.007557222619652748, 0.030663447454571724, 0.010361474938690662, 0.011441078037023544, 0.015997139737010002, -0.007272044196724892, 0.0020284997299313545, 0.000847471586894244, -0.010578753426671028, -0.023072276264429092, 0.01598355919122696, 1.1477945918159094e-05, -0.01659465581178665, -0.0032235323451459408, -0.0196772962808609, -0.019690876826643944, 0.032428838312625885, -0.01419101096689701, 0.029386935755610466, 0.02679317258298397, 0.012092914432287216, 0.010639863088726997, 0.0036156524438410997, 0.016744034364819527, 0.008772624656558037, -0.031804159283638, 0.025190742686390877, -0.054373979568481445, 0.0035749126691371202, 0.024104349315166473, -0.010470114648342133, 0.04937656968832016, 0.007143035065382719, -0.03552505746483803, -0.0186859630048275, -0.011468238197267056, 0.013036718592047691, 0.011963904835283756, -0.020111853256821632, -0.025095682591199875, -0.0015481102745980024, 0.00717019522562623, -0.023764850571751595, -0.008270167745649815, -0.021619224920868874, 0.018848922103643417, 0.005564370192587376, 3.23583917634096e-05, 0.011026890948414803, -0.01689341478049755, -0.01659465581178665, -0.03813239932060242, -0.006684713065624237, 0.00534709170460701, 0.01834646426141262, 0.027838826179504395, -0.003060573246330023, 0.011013311333954334, -0.014367549680173397, 0.01427249051630497, 0.014652728103101254, -0.018699543550610542, -0.0068884119391441345, -0.011352809146046638, 0.025190742686390877, 0.0234525129199028, 0.040305186063051224, 0.003252389607951045, 0.02023407258093357, 0.030500488355755806, -0.012310192920267582, 0.02224390022456646, -0.008854104205965996, -0.01427249051630497, -0.02043777145445347, -0.008460287004709244, 0.02091306820511818, 0.018495844677090645, 0.017069952562451363, 1.594048626429867e-05, 0.00521808210760355, 0.018020547926425934, 0.008922004140913486, 0.0162008386105299, -0.0129212886095047, -0.023167334496974945, 0.0005852094618603587, 0.006579468958079815, -0.01984025537967682, 0.020369872450828552, -0.031396761536598206, -0.01804770715534687, 0.026847491040825844, -0.00017632670642342418, -0.009913337416946888, -0.008263378404080868, -0.00791030004620552, -0.007815240882337093, -0.0003626261604949832, 0.02413150854408741, 0.03484605997800827, -0.028925219550728798, -0.008541766554117203, -0.02413150854408741, 0.031179483979940414, 0.002602251246571541, 0.011556508019566536, 0.029006699100136757, 0.028056103736162186, -0.007536852732300758, -0.026209235191345215, 0.006158491596579552, -0.020111853256821632, -0.033841148018836975, 0.0023255604319274426, -0.013512015342712402, -0.026467254385352135, -0.030962206423282623, -0.018998300656676292, -0.0027431428898125887, -0.002306888112798333, 0.022271061316132545, 0.003683551913127303, 0.02558455988764763, -0.006800142582505941, -0.025448760017752647, 0.006742427591234446, -0.0028195297345519066, 0.04196193814277649, -0.016309477388858795, 0.013790403492748737, 0.020777270197868347, 0.001539622899144888, -0.016227997839450836, -0.005499865394085646, 0.014734207652509212, -0.005961582530289888, 0.031233804300427437, -0.014625567942857742, -0.013410165905952454, 0.0017772713908925653, -0.02212168090045452, 0.012208343483507633, -0.012615741230547428, -0.026996871456503868, 0.00432859780266881, 0.021795762702822685, 0.004233538638800383, -0.01774894818663597, 0.01933779940009117, -0.029332615435123444, 0.025570979341864586, 0.01191637571901083, -0.018061287701129913, -0.02808326482772827, 0.0015837575774639845, -0.029006699100136757, 0.010205306112766266, 0.01641811616718769, 0.022664878517389297, 0.0006624452071264386, -0.0024104348849505186, 0.0008691145339980721, -0.006453854497522116, -0.04842597618699074, 0.006691502872854471, -0.013002768158912659, 0.010904671624302864, -0.01041579432785511, -0.00019160410738550127, 0.02657589316368103, -0.0035681226290762424, -0.01906619966030121, -0.004712230525910854, -0.008276958018541336, 0.028409181162714958, -0.005357276648283005, -0.0025173767935484648, -0.010259625501930714, 0.02009827457368374, -0.03511765971779823, 0.008195478469133377, -0.022854996845126152, -0.014041632413864136, -0.007604752201586962, -0.02009827457368374, 0.018156345933675766, -0.01071455329656601, -0.004769945051521063, -0.010911461897194386, -0.0009302241960540414, -0.011128740385174751, 0.0036529970820993185, -0.0237512718886137, -0.0026260160375386477, -0.03484605997800827, -0.02383275143802166, -0.01180773600935936, 0.0005919993855059147, 0.0025513265281915665, 0.016268737614154816, -0.024117927998304367, 0.027227729558944702, 0.04799141734838486, -0.02430804818868637, 0.008222638629376888, -0.009098542854189873, 0.000529616663698107, -0.04397176578640938, 0.013043507933616638, 0.0026039485819637775, -4.804027412319556e-06, 0.01924273930490017, -0.014408289454877377, -0.008813364431262016, -0.02271919697523117, -0.013987312093377113, -0.0037955862935632467, -0.02275993674993515, -0.012731170281767845, 0.00619244109839201, 0.018957560881972313, 0.029386935755610466, -0.02121182717382908, -0.009981237351894379, 0.018590902909636497, 0.00983864814043045, 0.008521396666765213, 0.0008080049301497638, -0.004966853652149439, 0.01288054883480072, -0.016879834234714508, -0.008344857953488827, 0.007054765708744526, -0.02927829697728157, -0.012866969220340252, -0.0014496558578684926, 0.020383452996611595, -0.021279726177453995, 0.012106494046747684, -0.036367010325193405, 0.004301438108086586, -0.017463769763708115, -0.003471365664154291, -0.01114231999963522, 0.001250200904905796, 0.00615170132368803, 0.015318144112825394, 0.011461447924375534, 0.02323523350059986, -0.03729044646024704, -0.030799247324466705, -0.018400784581899643, 0.0011670239036902785, -0.026209235191345215, -0.006426694802939892, -0.013552755117416382, 0.04945804923772812, 0.011108370497822762, -0.00870472565293312, -0.02220316044986248, 0.00028517821920104325, -0.010327525436878204, -0.011889215558767319, 0.023167334496974945, 0.0035511476453393698, 0.011020100675523281, 0.020125433802604675, -0.010429374873638153, 0.019514337182044983, -0.03177700191736221, 0.028300542384386063, -0.00921397190541029, 0.017137853428721428, 0.004895559512078762, 0.028816578909754753, -0.005459125619381666, -0.0058631282299757, -0.007618332281708717, -0.03278191387653351, 0.02794746495783329, -0.013844722881913185, 0.020071113482117653, 0.005228267051279545, 0.013932992704212666, -0.012058963999152184, -0.005723934154957533, 0.007564012426882982, 0.0013002768391743302, 0.0025869738310575485, 0.007781291380524635, -0.002559813903644681, -0.017518090084195137, 0.006433484610170126, 0.03528061881661415, 0.0026463859248906374, -0.01419101096689701, -0.01659465581178665, -0.021958721801638603, 0.02198588289320469, 0.009017063304781914, -0.013803983107209206, 0.014082372188568115, -0.021931562572717667, 0.020084694027900696, -0.017477350309491158, 0.005513445474207401, 0.03921879455447197, -0.0038295360282063484, 0.010823192074894905, -0.01298918854445219, 0.018930401653051376, -0.01709711365401745, 0.0010787544306367636, 0.01902545988559723, 0.00022788794012740254, 0.006155096460133791, -0.012690430507063866, 0.03226587921380997, -0.03185848146677017, 0.011963904835283756, -0.023887069895863533, -0.006436879746615887, -0.019039040431380272, 0.032428838312625885, 0.02045135200023651, -0.008623246103525162, -0.011624407023191452, -0.012072544544935226, 0.003887250553816557, 0.00028051011031493545, -0.017287231981754303, 0.009628159925341606, 0.0009828463662415743, -0.01047690398991108, 0.013383005745708942, -0.01796622760593891, -0.0033627264201641083, -0.00494987890124321, 0.005523630417883396, -0.01478852704167366, -0.0015133117558434606, 0.1973976492881775, 0.0005045786965638399, 0.02323523350059986, 0.055188775062561035, -0.010660232976078987, 0.02846350148320198, 0.006885016802698374, -0.020152593031525612, -0.01860448345541954, 0.007312783971428871, -0.016255158931016922, 0.012099703773856163, -0.027445007115602493, 0.006399535108357668, 0.0013367729261517525, 0.01916125975549221, 0.005292771849781275, -0.03655713051557541, 0.0023951574694365263, 0.011570087634027004, -0.00101000617723912, 0.0009531402611173689, -0.019514337182044983, -0.01191637571901083, 0.03313499316573143, -0.014842847362160683, -0.010069507174193859, -0.007367103826254606, 0.04160885885357857, -0.001500580576248467, -0.012663270346820354, 0.009906548075377941, 0.016227997839450836, 0.016268737614154816, -0.046144552528858185, -0.00687822699546814, 0.02979433350265026, 0.0036394172348082066, 0.025666039437055588, -0.00625694589689374, 0.01493790652602911, -0.020519251003861427, -0.02747216820716858, -0.02671169303357601, 0.024973463267087936, 0.02168712392449379, -0.004569641314446926, -0.030527649447321892, -0.003315196605399251, 0.020736530423164368, -0.009641739539802074, -0.0015506565105170012, 0.01309782825410366, 0.027526486665010452, 0.008113998919725418, -0.007401053793728352, -0.002281425753608346, 0.016132939606904984, 0.018034126609563828, 0.014449029229581356, -0.008541766554117203, 0.020410612225532532, -0.012154024094343185, 0.0234525129199028, 0.004009469877928495, 0.006616813596338034, -0.03927311301231384, 0.02057357132434845, 0.007238094694912434, -0.012907708995044231, -0.03400410711765289, 0.002125256694853306, -0.007007236126810312, -0.00596837280318141, -0.01497864630073309, -0.019772356376051903, 0.0007749039214104414, 0.01954149827361107, 0.0026973106432706118, 0.05374930426478386, -0.043700166046619415, -0.02734994888305664, -0.008324488066136837, 0.029767174273729324, -0.017341550439596176, -0.030717767775058746, 0.028191903606057167, -0.015521842986345291, 0.006497989408671856, -0.01603787951171398, -0.006565888877958059, 0.014924326911568642, 0.011026890948414803, 0.00108809070661664, 0.010096666403114796, 0.018237825483083725, -0.0141638508066535, 0.02476976439356804, -0.010639863088726997, 0.005907263141125441, -0.017137853428721428, 0.040576785802841187, 0.023411773145198822, 0.020206913352012634, 0.001691548153758049, -0.017518090084195137, -0.004223353695124388, 0.00563566479831934, -0.0023000980727374554, -0.03316215053200722, -0.013681763783097267, 0.0024766370188444853, 0.002337442943826318, -0.00882694497704506, 0.0024987042415887117, -0.011013311333954334, -0.008847314864397049, -0.02023407258093357, 0.0007031849818304181, -0.008813364431262016, -0.014571248553693295, -0.010137406177818775, -0.03223871812224388, 0.0010448046959936619, -0.02100812830030918, -0.0002378607023274526, -0.020383452996611595, 0.001924952957779169, -0.011373179033398628, 0.0011890912428498268, 0.03978915140032768, -0.03775216266512871, -0.004664700943976641, -0.014150271192193031, -0.0005130661302246153, 0.0018943981267511845, -0.015073705464601517, -0.03107084520161152, -0.01313856802880764, -0.007176985032856464, -0.009336191229522228, 0.005720539018511772, -0.002553024096414447, -0.012425621971487999, 0.012187973596155643, -0.03908299654722214, -0.004484767094254494, -0.010863931849598885, 0.006623603403568268, -0.010700972750782967, -0.006735637784004211, 0.005333511624485254, 0.008426337502896786, -0.01637737825512886, 0.0018706332193687558, -0.014951486140489578, -0.006973286159336567, -0.031098004430532455, 0.016947733238339424, -0.015277404338121414, -0.021401945501565933, 0.016920574009418488, 0.03775216266512871, 0.005920842755585909, -0.02049209177494049, -0.012907708995044231, -0.17165012657642365, 0.010925041511654854, -0.014286070130765438, -0.002344232751056552, 0.02339819259941578, -0.008473866619169712, 0.03313499316573143, -0.006080406717956066, 0.007353523746132851, -0.010741712525486946, 0.002186366356909275, 0.0059887426905334, -0.00799177959561348, -0.02409076876938343, -0.020288392901420593, 0.013702133670449257, -0.013165727257728577, -0.0023849725257605314, 0.04527543485164642, 0.016648976132273674, 0.03193996101617813, -0.022108102217316628, 0.028517821803689003, 0.017925487831234932, -0.001006611157208681, 0.01560332253575325, 0.0038397209718823433, 0.009037433192133904, -0.020559990778565407, -0.03973482921719551, 0.015060125850141048, 0.010150986723601818, 0.010700972750782967, -0.024036448448896408, 0.007855980657041073, -0.010558383539319038, -0.007299204356968403, -0.033325109630823135, -0.03009309060871601, 0.01298918854445219, 0.007740551605820656, 0.030120251700282097, 0.014109531417489052, -0.026249974966049194, -0.005825783591717482, 0.02164638414978981, 0.019147679209709167, -0.04166317731142044, 0.013865092769265175, -0.015100865624845028, 0.03297203406691551, -0.02965853363275528, 0.006891806609928608, -0.003683551913127303, 0.0056085046380758286, -0.018183505162596703, -0.03639417141675949, 0.020329132676124573, -0.006732242647558451, 0.005381041206419468, -0.0012977306032553315, -0.01556258276104927, 0.004444027319550514, 0.024498166516423225, 0.0015829087933525443, -0.025774678215384483, -0.034221384674310684, 0.017260070890188217, -0.05154935643076897, -0.002984186401590705, -0.016390956938266754, -0.0013503527734428644, 0.00388385565020144, -0.008270167745649815, -0.0007536852499470115, 0.04163601994514465, 0.0012204948579892516, 0.006470829248428345, 0.009166442789137363, -0.015698380768299103, -0.00719056511297822, 0.007550432812422514, -0.004382917657494545, -0.012378092855215073, 0.013274366967380047, -0.012289823032915592, -0.008161528967320919, 0.013450905680656433, 0.003170910058543086, -0.039164476096630096, 0.0271326694637537, -0.036448489874601364, -0.012025014497339725, 0.004715625662356615, 0.004875189624726772, 0.016445277258753777, 0.0038193510845303535, -0.029169656336307526, 0.016350217163562775, -0.030065931379795074, 0.018278565257787704, -0.0033457514364272356, -0.03938175365328789, 0.0007846644730307162, 0.023547573015093803, 0.0162958987057209, -0.03786080330610275, 0.008901634253561497, 0.035389259457588196, -0.007903510704636574, -0.014625567942857742, 0.010707763023674488, -0.0018689357675611973, 0.01230340264737606, -0.004284463357180357, 0.010646653361618519, -0.006056642159819603, -0.013579915277659893, 0.008344857953488827, 0.010266415774822235, 0.058828189969062805, 0.005876708310097456, -0.002009827410802245, 0.022189581766724586, -0.0010677208192646503, -0.007285624276846647, -0.1236315444111824, -0.036801569163799286, -0.0043761273846030235, 0.024851243942975998, -0.010354684665799141, 0.03381398692727089, -0.012948448769748211, 0.004471187014132738, -0.016879834234714508, 0.026372194290161133, 0.012758330442011356, -0.023343874141573906, -0.015277404338121414, 0.011013311333954334, 0.005350486375391483, -0.012289823032915592, -0.014286070130765438, -0.011692306958138943, -0.0021693913731724024, 0.02456606552004814, 0.011882425285875797, 0.00399588979780674, 0.0019860626198351383, 0.019826674833893776, 0.0007193111232481897, -0.00623657600954175, -0.029930131509900093, 0.018373625352978706, 0.009757168591022491, 0.01624157838523388, -0.0034374159295111895, -0.02592405676841736, 0.004814079962670803, -0.00925471168011427, 0.0018689357675611973, -0.00677298242226243, -0.022067362442612648, -0.007047975901514292, 0.04456927999854088, -0.019609397277235985, 0.00656928401440382, 0.015318144112825394, -0.00721093500033021, 0.01493790652602911, -0.01039542444050312, 0.0010473509319126606, -0.0347917415201664, 0.03031037002801895, 0.004892164375633001, -0.03978915140032768, -0.040278028696775436, -0.01311819814145565, -0.02267845720052719, -0.008752254769206047, 0.0039992849342525005, -0.028354862704873085, 0.005275797098875046, -0.017246492207050323, 0.0019690876360982656, -0.0005639908486045897, -0.01582060009241104, -0.00656928401440382, -0.024145089089870453, 0.018699543550610542, 0.009906548075377941, 0.013729293830692768, -0.01683909446001053, -0.006423299666494131, 0.014394709840416908, -0.024633966386318207, 0.002990976208820939, 0.0022797281853854656, -0.022909317165613174, 0.016214419156312943, -0.0047359950840473175, 0.007740551605820656, 0.0005491378251463175, 0.0028382022865116596, -0.007577592507004738, 0.0039042255375534296, -0.02516358159482479, -0.017640309408307076, -0.007530062925070524, -0.0124731520190835, 0.018156345933675766, 0.011705886572599411, 0.013362635858356953, 0.02592405676841736, 0.011054051108658314, -0.02228463999927044, 5.559277633437887e-05, 0.020288392901420593, 0.006980076432228088, 0.0012162511702626944, -0.001094880630262196, -0.0011305279331281781, 0.016390956938266754, 0.001394487451761961, -0.001899490598589182, 0.013817563652992249, -0.0417446568608284, -0.0026480834931135178, -0.05106047913432121, 0.009295451454818249, -0.008344857953488827, -0.026589473709464073, 0.02615491673350334, -0.0038465107791125774, 0.006949521601200104, -0.013851513154804707, 0.0022899131290614605, 0.003870275802910328, -0.023859910666942596, -0.0017535064835101366, -0.01067381352186203, -0.01047690398991108, -0.016906993463635445, -0.03655713051557541, 0.010938621126115322, -0.0025801837909966707, 0.018373625352978706, 0.02053283154964447, 0.021198246628046036, -0.0030741533264517784, -0.0005737514002248645, 0.018916821107268333, -0.02524506114423275, -0.008324488066136837, -0.007502902764827013, 0.032809074968099594, -0.013091037981212139, -0.00228821556083858, -0.002522469265386462, -0.009241132065653801, -0.018332885578274727, 0.015358883887529373, -0.0029587240424007177, 0.01442187000066042, 0.008813364431262016, 0.013899043202400208, -0.0015846063615754247, 0.02349325269460678, 0.0013868488604202867, -0.0246475450694561, 0.009892967529594898, -0.010768872685730457, 0.0030351108871400356, -0.008113998919725418, -0.008582506328821182, 0.00581899331882596, 0.020682210102677345, 0.030446169897913933, 0.03430286422371864, 0.008263378404080868, -0.022732777521014214, -0.029767174273729324, -0.006650763098150492, -0.016214419156312943, -0.0006403778679668903, -0.013444115407764912, 0.0007447734824381769, 0.0058699180372059345, 0.03047332912683487, -0.010802822187542915, 0.0017535064835101366, -0.002863664645701647, -0.009682479314506054, -0.018672382459044456, -0.019405698403716087, 0.01800696738064289, 0.01850942336022854, -0.013206467032432556, 0.006864646915346384, 0.02361547201871872, -0.0035443578381091356, 0.006450459361076355, 0.020899489521980286, 0.005812203511595726, -0.02250191941857338, -0.002093004295602441, -0.00857571605592966, 0.02524506114423275, 0.03661144897341728, 0.015331723727285862, -0.013708923943340778, 0.024335207417607307, 0.02506852336227894, 0.0008928793831728399, 0.013987312093377113, 0.00194192782510072, 0.02065505087375641, -0.002761815208941698, -0.00308603560552001, 0.009641739539802074, -0.01659465581178665, 0.0037582414224743843, 0.009023853577673435, 0.00814115907996893, -0.01367497444152832, 0.014000892639160156, 0.005024568643420935, -0.0028840345330536366, 0.005992137361317873, -0.024416686967015266, 0.018876081332564354, 0.0033355664927512407, -0.04079406335949898, 0.007319574244320393, -0.007957830093801022, -0.019473597407341003, -0.008752254769206047, 0.03509049862623215, -0.004219958558678627, 0.01060591358691454, 0.0196772962808609, 0.006077012047171593, -0.02554382011294365, 0.013484855182468891, -0.006742427591234446, -0.01184847578406334, -0.016567496582865715, 0.019962474703788757, -0.012439201585948467, 0.006117751821875572, 0.01723291166126728, 0.012955239042639732, 0.012928078882396221, 0.021755022928118706, 0.02635861560702324, -0.013810773380100727, -0.008093629032373428, 0.014000892639160156, -0.0054285707883536816, 0.005089072976261377, -0.01129169948399067, -0.01598355919122696, 0.0009845438180491328, -0.019514337182044983, 0.01127132959663868, 0.0059174480848014355, 0.0068239071406424046, 0.07311426103115082, 0.019527917727828026, 0.002987581305205822, -0.0007575046038255095, 0.005527025554329157, 0.012289823032915592, 0.021157506853342056, -0.02027481235563755, -0.0032642721198499203, -0.032130077481269836, 0.014679888263344765, 0.014286070130765438, -0.03549789637327194, -0.0335967093706131, 0.00293156411498785, 0.03691020980477333, -0.025489499792456627, -0.0006297685322351754, -0.017287231981754303, 0.006715267896652222, -0.007387473713606596, 0.014055212028324604, 0.008976323530077934, 0.010768872685730457, -0.024837663397192955, -0.002553024096414447, 0.02182292379438877, 0.007502902764827013, -0.030228890478610992, -0.03511765971779823, -0.016214419156312943, -0.014965065754950047, -0.014883587136864662, -0.02974001318216324, -0.0059513975866138935, 0.016825513914227486, -0.00872509554028511, -0.0015616902383044362, 0.01770820841193199, -0.011739836074411869, -0.00324220466427505, 0.004491556901484728, -0.02284141629934311, -0.03278191387653351, 0.004691860638558865, 0.006749217864125967, -0.005360671319067478, 0.008854104205965996, -0.05190243571996689], "c381a8cb-0c74-4ec8-9dd4-326416f7bc32": [0.019243182614445686, 0.017883898690342903, -0.002420390024781227, -0.05106639489531517, -0.002350426744669676, -0.011493937112390995, -0.018257036805152893, -0.012080294080078602, -0.019816214218735695, -0.029984183609485626, -0.0006242540548555553, 0.01701769046485424, -0.013079767115414143, -0.007735919207334518, 0.0019772902596741915, 0.019869519397616386, 0.008362255990505219, 0.000289430667180568, -0.000634248775895685, 0.0001385727373417467, 0.004974042996764183, 0.031316813081502914, -0.0017823930829763412, -0.02016269788146019, -0.04128488898277283, 0.030757108703255653, 0.00111524504609406, -0.010214611887931824, 0.00020437136117834598, -0.005946862976998091, -0.0012776593212038279, 0.0016208116430789232, -0.03510148450732231, -0.00011233657278353348, -0.024840230122208595, 0.002920126309618354, 0.011607210151851177, 0.005017353221774101, 0.0035048178397119045, -0.02726561762392521, 0.030117446556687355, -0.01715095341205597, 0.001608318299986422, 0.010261253453791142, -0.012979819439351559, 0.017137626186013222, 0.009814823046326637, -0.03568784147500992, -0.007629308849573135, -0.013819376938045025, 0.03342236950993538, 0.05314530059695244, -0.009415033273398876, -0.027612101286649704, -0.004231101367622614, -0.0007987453136593103, -0.004987369291484356, 0.020322613418102264, -0.010567759163677692, 0.00810239277780056, 0.0066731465049088, 0.009968074969947338, -0.030677150934934616, -0.008682087063789368, -0.04528278112411499, 0.008295624516904354, 0.02192176878452301, -0.015778344124555588, -0.012759936042129993, 0.01162053644657135, 0.033075883984565735, 0.0009245123364962637, -0.015191986225545406, -0.003588107181712985, 0.030197404325008392, -0.012646662071347237, -0.021148843690752983, 0.003758017672225833, -0.00045892459456808865, -0.010907579213380814, 0.013512872159481049, -0.020136045292019844, -0.011347347870469093, 0.00253699510358274, 0.033182498067617416, 0.0017540747066959739, -0.011234073899686337, 0.012460093945264816, 0.023640863597393036, -0.01669785939157009, 0.023281052708625793, -0.009708212688565254, 0.01897665672004223, 0.01640467904508114, -0.0022538111079484224, 0.02141536958515644, 0.0003629335551522672, 0.036780599504709244, -0.0035048178397119045, -0.025279998779296875, -0.011107474565505981, 0.006073462776839733, 0.011347347870469093, -0.005823594518005848, -0.03166329860687256, -0.015511817298829556, 0.026079576462507248, -0.01966962404549122, 0.014485691674053669, -0.010674369521439075, -0.012480083853006363, 0.012873209081590176, 0.0023004531394690275, -0.03486160933971405, 0.01425914466381073, -0.01808379404246807, 0.003654738888144493, 0.0021638586185872555, -0.028065195307135582, -0.012260199524462223, 0.00505733210593462, -0.00012087373761460185, 0.020749054849147797, 0.013559513725340366, 0.018856719136238098, -0.004940727259963751, 0.027238965034484863, -0.004424332641065121, -0.020122718065977097, -0.022081684321165085, 0.018297014757990837, 0.027425533160567284, -0.0059635210782289505, 0.004194454289972782, -0.018576867878437042, -0.009228465147316456, -0.01120742131024599, 0.006556541193276644, -0.04560261219739914, 0.0025220029056072235, 0.03097032941877842, 0.0207357294857502, -0.007749245502054691, -0.0033115865662693977, -0.008868655189871788, 0.035074830055236816, 0.006743109785020351, 0.002183848060667515, -0.010008053854107857, -0.015791669487953186, 0.003174991812556982, 0.013872682116925716, 0.015245291404426098, -0.005706989672034979, 0.03051723539829254, 0.000745023658964783, -0.008722065947949886, 0.00873539224267006, 0.019176550209522247, 0.009161833673715591, 0.012933177873492241, 0.014672260731458664, -0.015431859530508518, 0.010221274569630623, -0.010161306709051132, 0.024587029591202736, 0.014045923948287964, -0.0015541801694780588, -0.017190931364893913, 0.008315613493323326, 0.018510235473513603, 0.008715402334928513, -0.014499018900096416, 0.0401921309530735, 0.00212887697853148, -0.015804996713995934, 0.005663678981363773, -0.027905279770493507, -0.015685059130191803, 0.00566701078787446, -0.0007083763484843075, 0.0003677227068692446, 0.002437047893181443, 0.036594029515981674, -0.0232410728931427, -0.010960884392261505, 0.02036259137094021, 0.0031983128283172846, -0.0038912806194275618, -0.0016966050025075674, -0.005673673935234547, 0.019709603860974312, -0.002980094635859132, -0.006526557262986898, -0.5978713035583496, 0.006436604540795088, -0.015565122477710247, 0.00035293883411213756, -0.014618955552577972, 0.004124491009861231, 0.03592771664261818, -0.0038546333089470863, -0.04802799969911575, 0.04341709613800049, -0.011447294615209103, 0.017484109848737717, -0.0020056087523698807, -0.00687637273222208, 0.01708432100713253, -0.025773070752620697, -0.00011733394057955593, -0.012133599258959293, -0.058635737746953964, 0.0007750078220851719, 0.0037513545248657465, 0.00758266681805253, -0.026772543787956238, 0.033875465393066406, 0.00032732734689489007, 0.010401180014014244, 0.014992091804742813, -0.00047766469651833177, 0.026865828782320023, 0.008109055459499359, -0.029984183609485626, 0.00042269370169378817, -0.0028101843781769276, -0.009461675770580769, 0.038219839334487915, 0.0004024960217066109, -0.017284216359257698, 0.04176463559269905, 0.012326830998063087, 0.01156056858599186, -0.01791055127978325, -0.018923351541161537, 0.040352046489715576, -0.0027602105401456356, 0.0223082322627306, -0.009494991041719913, 0.014019271358847618, 0.035074830055236816, 0.01747078448534012, -0.011800441890954971, -0.019429750740528107, 0.027532143518328667, -0.005457121413201094, -0.0083222771063447, 0.021308759227395058, -0.012813241221010685, 0.01479219738394022, 0.012366809882223606, -0.009188486263155937, -0.019123245030641556, -0.015964912250638008, 0.017417479306459427, 0.006823067553341389, 0.003741359803825617, -0.004457648377865553, 0.015178659930825233, -0.02249480038881302, 0.011407315731048584, 0.0021655242890119553, 0.00013732339721173048, -0.014005945064127445, 0.025266671553254128, 0.0009994728025048971, -0.0041045015677809715, 0.01230684109032154, 0.03408868610858917, 0.021575285121798515, -0.008522171527147293, 0.02361421100795269, 0.018190404400229454, 0.024760272353887558, -0.015098702162504196, -0.037340302020311356, -0.01940309815108776, 0.03179655969142914, 0.0125600416213274, -0.014898807741701603, 0.027665406465530396, 0.04219107702374458, 0.01105416938662529, -0.001578334136866033, 0.02963769994676113, 0.006869709584861994, -0.025173388421535492, -0.006609846837818623, 0.019483055919408798, -0.006246705073863268, -0.012146925553679466, 0.0027851974591612816, -0.020709075033664703, -0.013086429797112942, -0.033582285046577454, 0.02285461127758026, -0.00659652054309845, 0.00272356322966516, 0.022095011547207832, -0.002307116286829114, 0.033182498067617416, 0.03632750362157822, -0.023827431723475456, -0.029291216284036636, -0.016124827787280083, 0.011533915996551514, 0.021308759227395058, 0.007529361639171839, -0.02380077913403511, 0.00788250844925642, 0.010454485192894936, 0.00505400076508522, -0.033822160214185715, -0.0026519345119595528, 0.011987010017037392, -0.001175213372334838, -0.01303312461823225, 0.02134873904287815, -0.006103447172790766, -0.003821317572146654, -0.0048707639798521996, -0.011487273499369621, 2.6353285647928715e-05, 0.004101169761270285, -0.015032070688903332, -0.011687167920172215, -0.016737837344408035, 0.00882867630571127, 0.00557705806568265, -5.564772800425999e-05, -0.00555706862360239, 0.0027568789664655924, -0.0028068528044968843, 0.007442740723490715, 0.0040678540244698524, 0.02028263360261917, -0.00760265626013279, 0.0049907006323337555, -0.012953166849911213, 0.00151503412052989, 0.0005738639738410711, -0.001175213372334838, -0.003684723051264882, 0.0062800208106637, -0.011867073364555836, -0.01042116992175579, 0.005706989672034979, 0.0012668317649513483, -0.007309477776288986, 0.009874790906906128, -0.003601433476433158, -0.01206030510365963, -0.00797579251229763, 0.004364364314824343, 0.019136572256684303, -0.0414448045194149, -0.0063566467724740505, -0.022095011547207832, 0.010820958763360977, -0.028811467811465263, 0.008675423450767994, -0.012706630863249302, -0.024280525743961334, -0.01393931359052658, -0.0059735155664384365, -0.006336657330393791, -0.01789722591638565, -0.006759767420589924, 0.01688442751765251, -0.024653661996126175, 0.01014798041433096, -0.006533220410346985, -0.011533915996551514, 0.008562150411307812, 0.006583194248378277, -0.018230384215712547, 0.007096256595104933, 0.01084094773977995, 0.00212887697853148, 0.019309813156723976, -0.010714348405599594, -0.028758162632584572, 0.02493351511657238, 0.022134991362690926, 0.019696276634931564, 0.007189540658146143, 0.014059250243008137, 0.004837448243051767, 0.0021988400258123875, 0.009854801930487156, 0.022334884852170944, 0.03097032941877842, 0.04938727989792824, 0.012460093945264816, -0.0037346966564655304, 0.008961939252912998, -0.020882317796349525, 0.017230911180377007, 0.0018140431493520737, 0.01669785939157009, -0.0046442169696092606, 0.028811467811465263, -0.012593356892466545, -0.009341739118099213, -0.007795887533575296, -0.03153003379702568, -0.023027852177619934, 0.01796385832130909, 0.017604047432541847, -0.01701769046485424, 0.008022435009479523, 0.028918078169226646, -0.004490964580327272, -0.012413451448082924, 0.006110110320150852, 0.008275634609162807, 0.013272998854517937, -0.011860410682857037, -0.015471838414669037, 0.005014021880924702, -0.025959638878703117, 0.0022271585185080767, -0.03931259736418724, -0.02092229761183262, -0.0034015390556305647, 0.004117827862501144, 0.009435023181140423, 0.041364844888448715, 0.02336101047694683, 0.0251200832426548, -0.019109919667243958, 0.048827577382326126, -0.003086704993620515, 0.004947390407323837, 0.023694168776273727, 0.021082213148474693, -0.036514073610305786, -0.005263890139758587, -0.007476056460291147, 0.00850884523242712, 0.021775180473923683, 0.0020272638648748398, 0.029557742178440094, 0.012273525819182396, 0.015351901762187481, -0.012053641490638256, 0.005177268758416176, -0.0007129572331905365, 0.014019271358847618, 0.00791582465171814, 0.012513399124145508, 0.006300010252743959, 0.01984286680817604, -0.0013118080096319318, 0.020176023244857788, 0.031076939776539803, -0.009814823046326637, 0.012420115061104298, 0.01435242872685194, -0.006943004205822945, -0.0358211025595665, -0.01928316056728363, -0.005160611122846603, -0.05250563845038414, -0.05133292078971863, -0.008822012692689896, -0.0011502265697345138, 0.0004020795749966055, 0.01357284002006054, -0.01569838635623455, 0.028784815222024918, 0.014432386495172977, -0.027558796107769012, -0.031929824501276016, -0.0027668739203363657, 0.019176550209522247, 0.018376972526311874, 0.008275634609162807, -0.006753104273229837, 0.004387685563415289, -0.0014309118269011378, -0.002885144669562578, 0.01796385832130909, -0.0048241219483315945, 0.013306314125657082, 0.017684005200862885, -0.014272470958530903, -0.026146207004785538, 0.007429414428770542, 0.007922487333416939, 0.007989118807017803, -0.004334380384534597, 0.02348094806075096, -0.021082213148474693, 0.008115719072520733, -0.013139735907316208, -0.002965102670714259, 0.04141815006732941, 0.015391880646348, 0.012893198989331722, -0.025080103427171707, 0.014845502562820911, -0.004394348710775375, 0.02109553851187229, -0.021828485652804375, -0.029877573251724243, 0.01721758395433426, 0.028998037800192833, -0.024520399048924446, 0.03603432700037956, -0.005213916301727295, 0.012113610282540321, -0.006883035879582167, 0.0034481810871511698, -0.0027135685086250305, -0.012600020505487919, -0.004277743399143219, 0.03760682791471481, 0.025586502626538277, -0.003404870629310608, 0.024666987359523773, -0.03667398914694786, 0.005820263177156448, 0.015005418099462986, -0.02907799556851387, 0.004134485498070717, -0.019922824576497078, 0.0055304160341620445, -0.027851974591612816, 0.01275327242910862, 0.01651128940284252, 0.0197762344032526, 0.028225110843777657, -0.006936341058462858, 0.00708293030038476, -0.010820958763360977, 0.006050141993910074, 0.049467239528894424, -0.01845693029463291, 0.02022932842373848, 0.026665933430194855, 0.008802023716270924, -0.0024120609741657972, 0.015032070688903332, -0.0022488138638436794, -0.012833230197429657, -0.02838502638041973, 0.0049807061441242695, 0.0067897518165409565, -0.007056277710944414, 0.03235626593232155, 0.012766598723828793, 0.03672729432582855, 0.019869519397616386, 0.010594411753118038, 0.029744310304522514, -0.021068885922431946, 0.0050873165018856525, 0.03435521200299263, -0.003684723051264882, 0.0018023825250566006, -0.006223383825272322, -0.002502013463526964, -0.03248952701687813, 0.0049807061441242695, -0.01777728833258152, 3.4382905141683295e-05, -0.020802360028028488, -0.017377499490976334, -0.04552265256643295, -0.02819845825433731, 0.00037167893606238067, 0.0022488138638436794, -0.01589827984571457, -0.029664352536201477, -0.0332891084253788, -0.006290015298873186, -0.02550654485821724, -0.007989118807017803, 0.015871627256274223, 0.0031333472579717636, 0.002365418942645192, -0.0006892197416163981, -0.030304014682769775, 0.006546546705067158, -0.03041062504053116, -0.0009111860417760909, 0.014672260731458664, -0.024347156286239624, -0.007869182154536247, -0.012420115061104298, 0.024040652438998222, 0.009088539518415928, -0.005920210387557745, 0.00313168135471642, -0.008615455590188503, -0.001510869711637497, 0.00023570899793412536, -0.027039069682359695, -0.012380136176943779, -0.032382916659116745, -0.02261473797261715, 0.009475002065300941, 0.005203921813517809, 0.010674369521439075, -0.03795331344008446, 0.022334884852170944, -0.001997279701754451, 0.0013626145664602518, 0.01384602952748537, -0.021908443421125412, 0.0032499523367732763, 0.025972966104745865, 0.0020039428491145372, 0.007342793513089418, 0.03102363459765911, -0.003383215283975005, 0.00015044146857690066, 0.0067297834903001785, -0.0030800418462604284, -0.030197404325008392, 0.008635444566607475, -0.02657265029847622, -0.003204975975677371, -0.006753104273229837, -0.028278416022658348, -0.004894085228443146, 0.012553378008306026, -0.01030123233795166, 0.0232410728931427, 0.015551796182990074, 0.0036580704618245363, 0.009428359568119049, -0.005900220945477486, 0.02582637593150139, -0.0015716709895059466, -0.025013472884893417, 0.024547051638364792, -0.03949916362762451, 0.0067897518165409565, 0.00405119638890028, -0.003451512660831213, 0.011733810417354107, -0.018003836274147034, -0.04251090809702873, -0.009954748675227165, 0.011127463541924953, 0.013925987295806408, -0.005080653354525566, 0.0031250182073563337, -0.008822012692689896, -0.011307368986308575, 0.02036259137094021, -0.025226693600416183, -0.0038446385879069567, -0.0026402738876640797, 0.02619951218366623, -0.0009778175735846162, 0.0014842171221971512, 0.01564508117735386, -0.0358211025595665, -0.016444658860564232, -0.03560788184404373, -0.004017880652099848, 0.034515127539634705, 0.01889669895172119, 0.008861991576850414, -0.0005755297606810927, -0.0105211166664958, -0.019936149939894676, 0.030570540577173233, -0.012486746534705162, 0.025213366374373436, 0.004540937952697277, 0.003263278631493449, 0.03304923325777054, 0.025853028520941734, 0.028491636738181114, 0.005490437150001526, 0.02329437807202339, 0.015991564840078354, 0.004724174737930298, 0.0024270531721413136, -0.01952303573489189, -0.008648770861327648, -0.02437380887567997, 0.0029018025379627943, 0.036220893263816833, 0.018883371725678444, 0.0017674010014161468, 0.011167442426085472, 0.001276826485991478, 0.04517617076635361, 0.008209003135561943, 0.02833172120153904, -0.01940309815108776, 0.0026052924804389477, 0.01909659244120121, -0.002250479534268379, -0.019376445561647415, 0.007576003670692444, -0.03598102182149887, -0.01922985538840294, 0.006606515031307936, 0.025853028520941734, 0.0015525143826380372, 0.012200230732560158, -0.003331576008349657, -0.00878869742155075, -0.01469891332089901, 0.01828368939459324, 0.014032597653567791, -0.028438331559300423, -0.00870207604020834, -0.03059719316661358, -0.0027985237538814545, -0.012606683187186718, -0.006923014763742685, 0.019762909039855003, 0.021282106637954712, -0.012540051713585854, -0.04235099256038666, 0.0065731992945075035, -0.010361201129853725, -0.04101836308836937, -0.002838502638041973, -0.022961221635341644, -0.0301440991461277, -0.009994727559387684, -0.008189013227820396, -0.020962275564670563, 0.015112028457224369, 0.018950004130601883, -0.01030123233795166, 0.015498491004109383, -0.003847970161587, -0.011673841625452042, -0.007456067018210888, 0.0204158965498209, 0.06812406331300735, -0.011587221175432205, 0.019802886992692947, 0.026665933430194855, 0.01669785939157009, -0.020495854318141937, 0.0022654717322438955, -0.0010860937181860209, 0.004307727795094252, 0.025160061195492744, 0.00425442261621356, -0.013312977738678455, 0.006636499427258968, -0.019256507977843285, -0.00900858175009489, -0.03933924809098244, -0.02266804315149784, 0.009721538983285427, 0.019269835203886032, 0.009081875905394554, -0.001021960866637528, 0.009375054389238358, -0.02706572227180004, 0.03600767254829407, -0.013712766580283642, -0.027478838339447975, -0.0163247212767601, -0.03227630630135536, -0.05767624080181122, 0.02097560279071331, 0.03291596844792366, 0.015058723278343678, 0.0035048178397119045, -0.007456067018210888, 0.001030289800837636, -0.01747078448534012, -0.055117592215538025, 0.012826567515730858, -0.0133462930098176, 0.03619424253702164, -0.012853220105171204, -0.006599851883947849, 0.0251200832426548, -0.005317195318639278, -0.026079576462507248, -0.013766071759164333, -0.017790615558624268, 0.02782532200217247, -0.011807105503976345, 0.006709794048219919, -0.02425387315452099, 0.022081684321165085, 0.00023050341405905783, 0.010034706443548203, -0.022841284051537514, -0.027185659855604172, 0.0025903002824634314, -0.006090120878070593, 0.007709266617894173, 0.007069604005664587, -0.04000556468963623, -0.0012668317649513483, -0.01102751586586237, 0.02172187529504299, 0.0041144960559904575, -0.023880736902356148, 0.000855382124427706, -0.03222300112247467, -0.04477638006210327, -0.026772543787956238, 0.018376972526311874, -0.008242318406701088, 0.01435242872685194, -0.021561959758400917, 0.026799196377396584, 0.050160206854343414, -0.02707904949784279, 0.031556688249111176, -0.002158861141651869, -0.009508317336440086, -0.027425533160567284, 0.026852501556277275, 0.017497437074780464, -0.015178659930825233, 0.015391880646348, -0.005886894650757313, -0.016231438145041466, -0.011100810952484608, -0.017124300822615623, 0.008455540053546429, -0.024573704227805138, -0.016724511981010437, -0.0034115337766706944, 0.015365228056907654, 0.026292797178030014, -0.035714492201805115, -0.007476056460291147, 0.01928316056728363, 0.0009511649259366095, 0.0033132522366940975, 0.03603432700037956, 0.006516562309116125, 0.01093423180282116, -0.002698576543480158, -0.004021211992949247, -0.003259947057813406, -0.010654379613697529, -0.013352956622838974, -0.004477637819945812, 0.0030650498811155558, 0.0004268581687938422, 0.013459566980600357, -0.04602905362844467, -0.0018989982781931758, -0.010787642560899258, 0.013013135641813278, -0.009768180549144745, -0.007829203270375729, -0.0022121663205325603, -0.016004890203475952, 0.009315086528658867, 0.038406405597925186, -0.049840375781059265, -0.01871013082563877, -0.0005426304414868355, 0.004887422081083059, 0.006313336547464132, -0.025466566905379295, -0.006943004205822945, 0.029611047357320786, 0.008268970996141434, 0.008568813093006611, -0.01789722591638565, -0.008215665817260742, -0.01960299350321293, -0.03334241360425949, 0.0008033262565732002, 0.017430804669857025, 0.009461675770580769, 0.008335603401064873, -0.018750108778476715, 0.006503236014395952, 0.000927843910176307, 0.0364074632525444, -0.004540937952697277, 0.02461368218064308, -0.0010377858998253942, 0.01684444770216942, -0.019616318866610527, -0.014472365379333496, -0.003917933441698551, -0.023947367444634438, 0.014059250243008137, -0.010041370056569576, 0.03987229987978935, 0.01111413724720478, 0.019309813156723976, -0.02569311298429966, -0.02643938735127449, 0.013712766580283642, 0.013299651443958282, 0.0069096884690225124, 0.01801716350018978, -0.010561095550656319, -0.041178278625011444, 0.026972439140081406, 0.03837975487112999, -0.026905806735157967, 0.004221106879413128, 0.017803940922021866, -0.016591249033808708, 0.04075183719396591, 0.012699967250227928, -0.02249480038881302, 0.011647189036011696, -0.051279615610837936, 0.02300119958817959, -0.005950194783508778, 0.023507600650191307, 0.03355563431978226, -0.009548296220600605, 0.014592302963137627, -0.024733619764447212, 0.020509181544184685, -0.007316140923649073, -0.02224160172045231, 0.026932459324598312, 0.0013851027470082045, -0.000723784847650677, -0.01708432100713253, 0.033449023962020874, -0.00791582465171814, 0.014832176268100739, 0.00606013648211956, 0.017350846901535988, -0.0023304373025894165, 0.01958966627717018, 0.008582139387726784, -0.017750635743141174, 0.03129016235470772, 0.007102919742465019, -0.007309477776288986, 0.0034781652502715588, -0.03795331344008446, 0.005503763444721699, 0.022827958688139915, 0.01297315675765276, -0.007089593447744846, -0.003801328130066395, -0.020442549139261246, -0.001885671983473003, -0.0003477332356851548, -0.019509708508849144, 0.02425387315452099, 0.17739975452423096, -0.005317195318639278, 0.007962466217577457, 0.03184986487030983, -0.005916879046708345, 0.014285797253251076, 0.011547242291271687, -0.018310341984033585, -0.008135708048939705, -0.0009411702048964798, -0.02494684047996998, 0.0008487189770676196, -0.021975073963403702, 0.013392935506999493, 0.005123963579535484, 0.009874790906906128, -0.014139208011329174, -0.022974546998739243, 0.019816214218735695, 0.030890371650457382, -0.004730837885290384, -0.011320695281028748, -0.03129016235470772, -0.021561959758400917, 0.03336906433105469, -0.008388908579945564, -0.021628590300679207, 0.002153863897547126, 0.010127990506589413, -0.02318776771426201, -0.019736256450414658, 0.012899861671030521, 0.011453958228230476, 0.026079576462507248, -0.06433939188718796, -0.0131930410861969, 0.0339021161198616, -0.010281243361532688, 0.015365228056907654, 0.0015675064641982317, 0.011347347870469093, -0.01293984055519104, -0.020056087523698807, 0.0009644912206567824, 0.024067305028438568, 0.014099229127168655, -0.010088011622428894, -0.009728201664984226, -0.002408729400485754, 0.018950004130601883, -0.023134462535381317, -0.02417391538619995, 0.0005417975480668247, 0.02456037700176239, -0.003071713028475642, -0.001416752696968615, 0.013766071759164333, 0.008528834208846092, 0.032889317721128464, 0.03656737878918648, -0.001864016754552722, 0.009934759698808193, -0.020429223775863647, 0.03989895433187485, -0.016418006271123886, 0.020189350470900536, -0.044882990419864655, 0.016911080107092857, -0.01046114880591631, -0.0244937464594841, -0.02361421100795269, 0.004890753421932459, -0.014658934436738491, -0.013199703767895699, -0.008268970996141434, -0.01362614519894123, 0.01174047403037548, 0.007802550680935383, -0.004301064647734165, 0.039232637733221054, -0.03907272219657898, -0.020962275564670563, 0.003248286433517933, 0.03366224467754364, -0.05013355612754822, -0.0111474534496665, 0.003804659703746438, 0.012173578143119812, 0.016791142523288727, -0.015005418099462986, -0.017803940922021866, 0.017537415027618408, 0.006156752351671457, -0.008129045367240906, -0.001298481714911759, 0.02298787422478199, -0.0014625617768615484, 0.008915296755731106, -0.021655242890119553, 0.010101337917149067, -0.02078903466463089, 0.04997364059090614, 0.011274052783846855, 0.0010910910787060857, 0.00518393237143755, -0.02687915414571762, 0.005630363244563341, 0.01497876551002264, -0.005770289339125156, -0.03675394505262375, -0.01055443286895752, -0.010947558097541332, -0.01677781715989113, 0.0011485607828944921, 0.01651128940284252, -0.025093430653214455, -0.010534442961215973, -0.01234015729278326, -0.003911270294338465, 0.0006475750706158578, -0.008568813093006611, -0.010221274569630623, -0.009275107644498348, -0.01852356269955635, 0.007029625121504068, -0.006036815699189901, -0.03600767254829407, 0.0048674326390028, 0.009848138317465782, -0.004407675005495548, 0.041311539709568024, -0.029051342979073524, 0.005297205876559019, -0.0004476805042941123, -0.0013701105490326881, -0.011567231267690659, -0.029744310304522514, -0.028251763433218002, -0.0014733894495293498, 0.005213916301727295, 0.006326662842184305, 0.024720292538404465, -0.01985619217157364, -0.00425775395706296, 0.0036647336091846228, -0.03283601254224777, -0.009441685862839222, 0.01563175395131111, 0.0370737761259079, -0.013859355822205544, -0.005190595518797636, 7.855231524445117e-05, 0.018323667347431183, -0.017324194312095642, -0.002450374187901616, -0.03145007789134979, -0.011447294615209103, -0.03662068396806717, 0.03560788184404373, -0.012866546399891376, -0.015511817298829556, -0.012400125153362751, -0.012086957693099976, -0.02066909708082676, -0.023387663066387177, -0.004430995788425207, -0.16492633521556854, 0.007909161038696766, 0.0006663152016699314, 0.004301064647734165, -0.0029417816549539566, -0.027025744318962097, 0.030863719061017036, -0.01488548144698143, -0.020455876365303993, -0.03808657452464104, 0.0066231731325387955, 0.005810268223285675, -0.012766598723828793, -0.01306644082069397, -0.005034011323004961, -0.0034148653503507376, -0.03222300112247467, 0.004141148645430803, 0.03227630630135536, 0.018923351541161537, 0.051039744168519974, -0.023347683250904083, 0.03925929218530655, 0.007749245502054691, 0.013432914391160011, -0.02172187529504299, -0.005876900162547827, 0.009021908044815063, -0.004604238085448742, -0.025240018963813782, 0.011107474565505981, 0.017177606001496315, 0.009721538983285427, -0.04112497344613075, 0.0210422333329916, 7.496045873267576e-05, -0.009148507378995419, -0.015378554351627827, -0.010294569656252861, 0.003103362862020731, 0.02266804315149784, 0.03283601254224777, 0.00011473114864202216, -0.011973683722317219, -0.020255981013178825, 0.03824649006128311, 0.037660133093595505, -0.0414714589715004, 0.006366641726344824, -0.0015591775299981236, 0.032622791826725006, -0.011587221175432205, 0.024587029591202736, 0.0019606323912739754, 0.03208974003791809, -0.04072518274188042, -0.021002255380153656, 0.015725038945674896, -0.011940368451178074, 0.00708293030038476, 0.002493684645742178, -0.027185659855604172, 0.015325249172747135, 0.015098702162504196, -0.013559513725340366, -0.029557742178440094, -0.018630173057317734, 0.01529859658330679, -0.04125823453068733, 0.0013901001075282693, -0.028811467811465263, 0.02405397780239582, 0.008368918672204018, -0.0029884236864745617, 0.01080096885561943, 0.043310485780239105, 0.011120800860226154, 0.013766071759164333, 0.0005284712533466518, -0.017110973596572876, -0.01407257653772831, 0.023640863597393036, 0.008055750280618668, -0.008228992111980915, 0.004294401500374079, -0.014752218499779701, 0.00020988928736187518, 0.0008670426323078573, -0.011533915996551514, -0.019243182614445686, 0.02292124181985855, -0.03459508344531059, -0.010374527424573898, 0.01252672541886568, 0.027931932359933853, 0.00892196036875248, 0.006819735746830702, -0.03981899470090866, 0.034648388624191284, -0.03648741915822029, 0.0044876327738165855, -0.011420642025768757, -0.014392407611012459, 0.0024920187424868345, 0.04861435666680336, 0.007069604005664587, -0.013233019970357418, 0.005320526659488678, 1.9169576262356713e-05, -0.029157953336834908, -0.00016595413035247475, -0.020202675834298134, -0.003153336700052023, -0.007869182154536247, -0.010967548005282879, -0.001285988255403936, 0.011613873764872551, -0.02117549628019333, 0.021082213148474693, 0.018683478236198425, 0.056130390614271164, 0.018376972526311874, 0.004627558868378401, 0.009428359568119049, -0.010354537516832352, -0.0013126409612596035, -0.12036317586898804, -0.028624899685382843, 0.002502013463526964, 0.0061300997622311115, -0.014712239615619183, 0.025546524673700333, -0.02662595547735691, -0.0160182174295187, -0.015112028457224369, 0.038912806659936905, 0.010661043226718903, -0.010354537516832352, -0.011853747069835663, 0.022708021104335785, 0.003056720830500126, 0.006256699562072754, 0.007749245502054691, 0.005044005811214447, -0.014965439215302467, 0.01764402538537979, -0.00485077453777194, -0.0009553293930366635, 0.02236153744161129, 0.02053583413362503, 0.005553737282752991, 0.00365140731446445, -0.028678204864263535, 0.026412734761834145, -0.011260726489126682, 0.02300119958817959, 0.012460093945264816, -0.022601410746574402, 0.013079767115414143, -0.017364174127578735, -0.0014833841705694795, 0.013632808811962605, -0.022374864667654037, -0.007309477776288986, 0.016124827787280083, -0.00970154907554388, -3.6829529562965035e-05, -0.004877427127212286, -0.03680725023150444, 0.01684444770216942, 0.015978237614035606, 0.0020455876365303993, -0.011853747069835663, 0.005953526124358177, 0.0039046069141477346, -0.046828631311655045, -0.043630316853523254, -0.014565650373697281, -0.019109919667243958, -0.0016416340367868543, 0.008262308314442635, -0.024706967175006866, 0.003671396756544709, -0.010354537516832352, -0.013832703232765198, -0.012573367916047573, -0.013819376938045025, -0.0018773430492728949, -0.01784392073750496, 0.014565650373697281, 0.018230384215712547, 0.018936676904559135, 0.00106360565405339, -0.021215476095676422, 0.005457121413201094, -0.02801189012825489, 0.004111164715141058, 0.003418196924030781, -0.02342764101922512, 0.029344521462917328, -0.025546524673700333, 0.014645608142018318, -0.010434496216475964, -0.0026019609067589045, 0.00800910871475935, 0.007855855859816074, -0.024826902896165848, -0.0033715548925101757, 0.010701022110879421, -0.006823067553341389, 0.021815158426761627, 0.006449930835515261, 0.015311922878026962, 0.017230911180377007, 0.013965966179966927, -0.021402044221758842, -0.01745745725929737, -0.0006888033240102232, 0.03342236950993538, -0.031183550134301186, 0.002556984545662999, -0.0020455876365303993, 0.011453958228230476, -0.01328632514923811, 0.012046978808939457, 0.022774653509259224, -0.05058664828538895, -0.0005492935888469219, -0.049787070602178574, 0.026479365304112434, -0.01965629868209362, -0.013039788231253624, 0.010374527424573898, -0.0037979965563863516, 0.029131300747394562, -0.026679260656237602, 0.016111500561237335, 0.002660263329744339, -0.005990173667669296, 0.005933536682277918, 0.005883563309907913, -0.009028570726513863, -0.01803048886358738, -0.029850920662283897, 0.0008753715665079653, -0.007349456660449505, 0.029611047357320786, 0.016298068687319756, -0.0027851974591612816, 0.0027252291329205036, 0.01001471746712923, 0.0006763099227100611, -0.0033865468576550484, 0.019549688324332237, 0.0057469685561954975, 0.019642971456050873, -0.014205839484930038, 0.012520062737166882, -0.004660874605178833, -0.007316140923649073, -0.028731510043144226, 0.020242655649781227, 0.0033432363998144865, -0.014059250243008137, 0.021948421373963356, 0.02173520065844059, 0.006962993647903204, -0.0014275802532210946, 0.0039012753404676914, -0.01384602952748537, 0.0035014862660318613, 0.012366809882223606, 0.016591249033808708, -0.01608484797179699, -0.0006559040048159659, 0.015152007341384888, 0.007995782420039177, 0.028411678969860077, 0.042990654706954956, 0.004447653889656067, -0.011553904972970486, -0.017923878505825996, -0.004281075205653906, -0.025386609137058258, 0.0005672008264809847, -0.030010836198925972, 0.00983481202274561, -0.011407315731048584, 0.005543742328882217, 0.002362087368965149, -0.00293678417801857, -0.013672787696123123, -0.020829012617468834, -0.038539670407772064, -0.010940895415842533, 0.01014798041433096, -0.006736446637660265, -0.01703101582825184, 0.002420390024781227, 0.008802023716270924, 0.008495518937706947, -0.001264333026483655, 0.02090897038578987, -9.427318582311273e-05, -0.021961748600006104, -0.007022961974143982, 0.004341043531894684, 0.011493937112390995, 0.03904607146978378, 0.0008753715665079653, -0.02092229761183262, 0.030304014682769775, 0.008075740188360214, 0.002148866420611739, -0.011354010552167892, 0.010607738047838211, 0.00046183972153812647, 0.009634917601943016, 0.012400125153362751, 0.014099229127168655, -0.012286852113902569, -0.01764402538537979, -0.004430995788425207, 0.020695749670267105, -0.01871013082563877, 0.029744310304522514, 0.021468674764037132, 0.02117549628019333, 0.005473779048770666, -0.013166388496756554, -0.0040445332415401936, -0.004687527194619179, -0.056503526866436005, 0.015991564840078354, -0.008768707513809204, -0.025453239679336548, -0.02046920172870159, 0.03510148450732231, 0.009541633538901806, 0.03379550576210022, 0.02134873904287815, -0.008995255455374718, -0.01033454854041338, 0.0026702580507844687, 0.0012226883554831147, 0.007922487333416939, -0.017417479306459427, 0.012266862206161022, -0.02066909708082676, 0.004564259201288223, 0.014285797253251076, 0.021188823506236076, 0.01564508117735386, 0.010914242826402187, 0.020775707438588142, -0.029477784410119057, 0.006260031368583441, 0.020935622975230217, -0.01174047403037548, -0.018043816089630127, -0.010900916531682014, -0.01827036216855049, -0.015325249172747135, -0.01469891332089901, 0.021588612347841263, 6.230437179510773e-07, 0.002102224389091134, 0.07761239260435104, -0.007336130365729332, -0.01651128940284252, 0.008002445101737976, 0.018496910110116005, 0.01684444770216942, 0.040618572384119034, -0.036833904683589935, -0.02054915949702263, -0.04624227434396744, 0.005533747840672731, 0.024013999849557877, -0.016617901623249054, -0.01889669895172119, -0.00394125422462821, 0.023947367444634438, -0.020389243960380554, 0.01162053644657135, -0.02537328191101551, -0.0054238056764006615, 0.004787474405020475, 0.0031166893895715475, 0.0024786924477666616, 0.004117827862501144, -0.00494405860081315, -0.013506208546459675, 0.02505345083773136, 0.008582139387726784, -0.017110973596572876, -0.04168467968702316, -0.0194697305560112, 0.00011650104715954512, -0.03160999342799187, -0.032063085585832596, 0.0033265785314142704, -0.009568286128342152, 0.003927927929908037, 0.019389772787690163, 0.021388716995716095, 0.0007329466752707958, -0.02537328191101551, 0.006836393848061562, -0.003378218039870262, -0.022148316726088524, 0.011267390102148056, -0.010661043226718903, -0.0076159825548529625, 0.010900916531682014, -0.04482968524098396], "6d7285c2-c06b-4c3e-9c04-eb4cb0482338": [0.006375045981258154, 0.019556021317839622, 0.009153738617897034, -0.041093431413173676, -0.011372621171176434, -0.020003870129585266, -0.008766960352659225, -0.016448229551315308, -0.02311166189610958, -0.012078320607542992, -0.010727991349995136, 0.017737489193677902, -0.030290799215435982, 0.015118257142603397, 0.00690771359950304, 0.018348190933465958, 0.012492240406572819, 0.009065525606274605, -0.0034097505267709494, 6.90220040269196e-05, 0.021958114579319954, 0.027155864983797073, -0.00798662006855011, -0.01551182009279728, -0.03262503445148468, 0.03153934329748154, 0.004149377811700106, 0.0016505906824022532, 0.012057963758707047, -0.0028719939291477203, 0.010239429771900177, 0.0063445111736655235, -0.032977886497974396, -0.02586660534143448, -0.008475180715322495, 0.01441255770623684, -0.017099644988775253, 0.017357496544718742, 0.008061260916292667, -0.017262497916817665, 0.030616506934165955, -0.01605466566979885, -0.015878241509199142, 0.003099310677498579, -0.02353236824274063, -0.00745734479278326, 0.008203757926821709, -0.05173321068286896, -0.021374555304646492, 0.010232644155621529, 0.023681649938225746, 0.04386194422841072, -0.013632216490805149, -0.02189025841653347, -0.005679524969309568, 0.011080841533839703, 0.008061260916292667, 0.01901317574083805, -0.007104495074599981, 0.010158003307878971, -0.0004084066895302385, -0.008671962656080723, -0.025540897622704506, -0.009581229649484158, -0.05083751305937767, 0.005116322077810764, 0.029313676059246063, -0.0031824337784200907, -0.004159556236118078, 0.03409072011709213, 0.03476927801966667, -0.0025988745037466288, 0.003128149313852191, -0.00830554123967886, 0.03447071090340614, -0.019746018573641777, -0.0042240191251039505, -0.001786302193067968, -0.005611669272184372, -0.0037693858612328768, -0.0035149268805980682, -0.014371844008564949, 0.0018405867740511894, 0.01371364388614893, 0.03542069345712662, -0.016081808134913445, -0.018456758931279182, 0.02890654280781746, 0.020180294290184975, -0.008841602131724358, 0.0169096477329731, 0.006303797475993633, 0.015959668904542923, 0.02822798490524292, -0.0073827034793794155, 0.010537995025515556, 0.0008286881493404508, 0.048530418425798416, -0.009588015265762806, -0.027373002842068672, -0.0011306460946798325, 0.017696775496006012, -0.0037693858612328768, -0.017886770889163017, -0.017181070521473885, -0.0035386765375733376, 0.017167501151561737, -0.012512597255408764, 0.0010873881401494145, -0.01134547870606184, -0.028173699975013733, 0.027793707326054573, -0.004332588519901037, -0.014656838029623032, 0.016624653711915016, -0.012214032001793385, 0.009493016637861729, 0.0005114625673741102, -0.023803791031241417, -0.009370876476168633, 0.0074369884096086025, 0.01779177226126194, 0.01352364756166935, 0.009737297892570496, 0.019841015338897705, 0.004417408257722855, 0.035474978387355804, -0.0035658187698572874, -0.0240887850522995, -0.029015110805630684, 0.020682428032159805, 0.0367778055369854, -0.0018575506983324885, 0.014955403283238411, -0.005475957412272692, 0.0028550298884510994, -0.01377471350133419, -0.014751836657524109, -0.05045752227306366, -0.009282664395868778, 0.013367579318583012, 0.015498248860239983, -0.007654126733541489, 0.010212287306785583, -0.008733033202588558, 0.03034508414566517, 0.021645978093147278, 0.00893659982830286, -0.008760174736380577, -0.009683012962341309, 0.006005232222378254, 0.03240789845585823, 0.012865446507930756, -0.012370100244879723, 0.007939120754599571, -0.006527721416205168, 0.008753389120101929, 0.006178264506161213, 0.006758430972695351, 0.0342264324426651, 0.004471692722290754, 0.008441253565251827, -0.01559324748814106, 0.00409848615527153, 0.005258819088339806, 0.021822404116392136, 0.0037083157803863287, -0.01303508598357439, -0.026395879685878754, -0.006792358588427305, 0.021523838862776756, -0.0049398974515497684, 0.006517542991787195, 0.017208212986588478, 0.015647532418370247, -0.012648308649659157, -0.0028584226965904236, -0.018687468022108078, -0.01952887885272503, -0.008529465645551682, 0.025839462876319885, -0.002174776280298829, 0.005777915474027395, 0.036614954471588135, -0.02273167110979557, -0.03892204910516739, 0.02083170972764492, -0.004800793249160051, 0.004926326218992472, 0.006100230384618044, -0.0051739998161792755, 0.01609537936747074, -0.006232548970729113, -0.010911202058196068, -0.5914848446846008, -0.00830554123967886, -0.02678944356739521, -0.02814655750989914, -0.018701039254665375, 0.01071442011743784, 0.026993010193109512, -0.005163821391761303, -0.03726636990904808, 0.02944938838481903, -0.012831519357860088, 0.02061457186937332, 0.002546286443248391, -0.002357986755669117, 0.00031786170438863337, -0.01733035407960415, 0.01337436493486166, -0.01673322357237339, -0.061287298798561096, 0.0002033551427302882, -0.002045850269496441, 0.027101580053567886, -0.03482356294989586, 0.01825319230556488, 0.027359431609511375, -0.004050987306982279, 0.019678162410855293, 0.004736329894512892, 0.02988366410136223, -0.007213064469397068, -0.009913722053170204, -0.012241174466907978, 0.00038126439903862774, -0.011515118181705475, 0.03726636990904808, 0.006378438789397478, -0.013157226145267487, 0.02890654280781746, 0.02920510806143284, 0.008013761602342129, -0.020316006615757942, -0.009058739989995956, 0.04581619054079056, 0.0016913041472434998, 0.01529468223452568, -0.011182624846696854, 0.028092272579669952, 0.027875134721398354, 0.012519382871687412, -0.027820849791169167, -0.014968974515795708, 0.0388677641749382, -0.005194356199353933, -0.007294491399079561, 0.019338883459568024, -0.017805343493819237, 0.015946097671985626, 0.00604255311191082, -0.002788870595395565, -0.024278780445456505, -0.025432327762246132, 0.00024894572561606765, -0.00228164903819561, -0.01386292651295662, -0.013828998431563377, -0.0051739998161792755, -0.012987587600946426, 0.018836751580238342, 0.01935245469212532, 0.008034118451178074, -0.023437369614839554, 0.014100421220064163, 0.0042240191251039505, -0.0015047008637338877, 0.03058936446905136, 0.018646754324436188, 0.029313676059246063, -0.011209767311811447, 0.010286929085850716, 0.02125241607427597, 0.025065908208489418, -0.03482356294989586, -0.022677386179566383, -0.018755324184894562, 0.02501162327826023, 0.0008371701114811003, 0.000985604478046298, 0.037076372653245926, 0.023233802989125252, -0.00019020809850189835, -0.0035658187698572874, 0.03992631286382675, -0.006178264506161213, -0.013788284733891487, 0.004047594498842955, 0.026653731241822243, -0.011202981695532799, -0.01703178882598877, -0.0041222358122467995, -0.03034508414566517, -0.013516861945390701, -0.030942214652895927, 0.010680492036044598, -0.00919445138424635, -0.004261340014636517, 0.0009805153822526336, -0.008950171060860157, 0.02155098132789135, 0.037836357951164246, -0.025337330996990204, -0.02768513932824135, -0.04017059504985809, 0.0023478083312511444, 0.03495927155017853, 0.005401316098868847, -0.02493019588291645, 0.013706858269870281, -0.00916730985045433, 0.012689022347331047, -0.031213637441396713, -0.004746508318930864, 0.032733604311943054, -0.014887548051774502, 0.015172542072832584, 0.007104495074599981, -0.005720238201320171, -0.0035793897695839405, -0.01307579968124628, -0.0049059693701565266, -0.011962966062128544, 0.010280143469572067, -0.0008363219094462693, 0.004984003491699696, -0.011671186424791813, 0.002144241239875555, -0.004230804741382599, -0.009594800882041454, -0.007823766209185123, -0.001294348039664328, -0.01783248595893383, -0.0002570035867393017, 0.009968006983399391, 0.027413716539740562, 0.006697360891848803, 0.005218105856329203, 0.00923516508191824, -0.0164753720164299, 0.010449782945215702, -0.004257947206497192, -0.0027634247671812773, -0.001847372273914516, -0.0061104088090360165, -0.01533539593219757, 0.000254459009738639, -0.011793326586484909, -0.02023457922041416, 0.02100813388824463, -0.004359730985015631, -0.015579676255583763, -0.004926326218992472, 0.013503290712833405, 0.031295064836740494, -0.033357877284288406, -0.00267860502935946, -0.018538186326622963, -0.006531114224344492, -0.01803605444729328, -0.005825414787977934, -0.019108174368739128, -0.0257716067135334, -0.017968198284506798, -0.028852257877588272, 0.0007960325456224382, -0.015525391325354576, 0.02189025841653347, 0.0243059229105711, -0.02586660534143448, 0.015389679931104183, -0.010884059593081474, -0.018646754324436188, -0.013421864248812199, 0.00045039242831990123, -0.03248932585120201, -0.0021374556235969067, 0.02235167846083641, 0.021998828276991844, 0.03417214751243591, -0.014466841705143452, -0.01104691345244646, 0.016896076500415802, 0.025839462876319885, -0.0005284264916554093, 0.02121170237660408, -0.0010729688219726086, 0.00755234295502305, 0.012566881254315376, 0.01661108247935772, -0.01422256138175726, 0.025337330996990204, 0.03664209693670273, 0.02730514667928219, 0.020899565890431404, 0.006731288507580757, -0.008441253565251827, 0.016461800783872604, -0.0022392391692847013, 0.02421092614531517, -0.001034799963235855, 0.028960825875401497, -0.013001157902181149, -0.006181657314300537, -0.018646754324436188, -0.018063195049762726, -0.01551182009279728, 0.019664591178297997, 0.023993786424398422, -0.007335204631090164, 0.0007883987855166197, 0.018863894045352936, 0.007504844106733799, -0.011426905170083046, 0.012180103920400143, 0.012607594951987267, 0.01813105121254921, 0.016461800783872604, -0.015525391325354576, -0.009357305243611336, 0.003942417912185192, -0.002339326310902834, -0.02730514667928219, -0.009099453687667847, -0.001586975995451212, 0.003955989144742489, -0.005034895148128271, 0.031132210046052933, -0.006534507032483816, -0.0014605945907533169, -0.011019770987331867, 0.048530418425798416, -0.002264684997498989, -0.013272581622004509, 0.017099644988775253, 0.027183005586266518, -0.024862339720129967, 0.007464130409061909, 0.0008880618843249977, 0.01969173364341259, 0.024780914187431335, 0.004916147794574499, 0.03341216221451759, 0.019759589806199074, 0.019786732271313667, -0.021835975348949432, 0.02421092614531517, -0.009160524234175682, -0.004281696863472462, 0.01593252643942833, 0.007328419014811516, 0.014860405586659908, 0.02636873722076416, -0.005421672947704792, 0.022202394902706146, 0.009187665767967701, -0.020343149080872536, 0.0035217124968767166, 0.0019491559360176325, -0.00563202565535903, -0.05189606547355652, -0.005309711210429668, -0.0021815618965774775, -0.025513755157589912, -0.022799525409936905, -0.015376108698546886, 0.0010593975894153118, 0.00834625493735075, 0.0055675627663731575, -0.016203949227929115, 0.025418756529688835, 0.03468785062432289, -0.02860797755420208, -0.02877083048224449, -0.006554863881319761, 0.033357877284288406, 0.016122521832585335, 0.00902481283992529, -0.01115548238158226, 0.00524864112958312, 0.004359730985015631, -0.0010441300692036748, 0.03531212359666824, -0.012851875275373459, -0.0050416807644069195, 0.01695036143064499, 0.010395498014986515, -0.011983321979641914, 0.00853625126183033, -0.0033028777688741684, 0.006595577113330364, -0.011359049938619137, 0.003024669364094734, -0.020424574613571167, 0.0041833058930933475, -0.01049728225916624, 0.010531209409236908, 0.04179913178086281, -0.00889588613063097, 0.024414492771029472, -0.024862339720129967, -0.0033062705770134926, 0.005608276464045048, 0.003633674466982484, -0.013401507399976254, -0.02692515403032303, 0.021116703748703003, 0.05184178054332733, -0.03034508414566517, 0.023885218426585197, 0.006117194425314665, 0.006375045981258154, -0.007192707620561123, -0.004637939389795065, 0.003922061529010534, -0.01982744410634041, -0.018008911982178688, 0.0540945902466774, 0.02594803273677826, -0.013856140896677971, 0.015661103650927544, -0.032055046409368515, 0.006626112386584282, 0.0028702975250780582, -0.021374555304646492, 0.00978479627519846, -0.014873976819217205, 0.0023749505635350943, -0.029557956382632256, 0.011623687110841274, 0.01765606179833412, 0.021455982699990273, 0.021360984072089195, -0.00952694471925497, -0.0020102260168641806, -0.019081031903624535, -0.009133381769061089, 0.03580068424344063, -0.017099644988775253, 0.01885032281279564, 0.03134934976696968, -0.0009389537153765559, 0.00853625126183033, 0.016298945993185043, 0.0013036782620474696, 0.0008999366546049714, -0.027440859004855156, 0.0032452004961669445, 0.013347222469747066, -0.016787508502602577, 0.03186505287885666, 0.0033961792942136526, 0.02944938838481903, 0.025839462876319885, 0.016706081107258797, 0.026477307081222534, -0.003633674466982484, 0.012173318304121494, 0.023355942219495773, -0.00609683757647872, -0.0015496553387492895, -0.011053699068725109, -0.0009686405537649989, -0.03238075599074364, -0.0006976417498663068, -0.01779177226126194, -0.019461024552583694, -0.010476925410330296, -0.0008134205709211528, -0.020967422053217888, -0.045110490173101425, -0.004637939389795065, -0.015348966233432293, -0.02624659799039364, -0.029937949031591415, -0.01445327140390873, -0.014141134917736053, -0.01842961646616459, -0.008000191301107407, 0.023355942219495773, 5.311831409926526e-05, 0.0032401112839579582, -0.0002922037383541465, -0.033276449888944626, -0.0014563536969944835, -0.02688444033265114, -0.00345385679975152, 0.015525391325354576, -0.020723139867186546, -0.002339326310902834, -0.026314452290534973, 0.028716545552015305, 0.008400539867579937, 0.007518415339291096, 0.0014003727119415998, 0.005849163979291916, 0.0021934364922344685, 0.006127372849732637, -0.02053314447402954, -0.007816980592906475, -0.025988744571805, -0.02915082313120365, 0.020017441362142563, 0.01041585486382246, 0.01657037064433098, -0.04931754618883133, 0.018986033275723457, -0.030453652143478394, -0.00212388439103961, 0.007939120754599571, -0.01445327140390873, 0.00400348799303174, 0.022405963391065598, -0.0060323746874928474, -0.0028109236154705286, 0.037374936044216156, 0.0032740391325205564, -0.0006344511057250202, 0.007077353075146675, -0.00696199806407094, -0.022935237735509872, 0.024618059396743774, -0.026463735848665237, -0.004865256138145924, -0.016298945993185043, -0.04027916118502617, -0.011664400808513165, 0.020858852192759514, -0.012600809335708618, 0.021903829649090767, 0.02273167110979557, 0.00524864112958312, 0.016963932663202286, -0.007525200489908457, 0.008176615461707115, -0.0023155768867582083, -0.02844512276351452, 0.00690771359950304, -0.021360984072089195, -0.0007375070126727223, 0.008916242979466915, -0.006239334587007761, 0.03794492408633232, -0.013632216490805149, -0.031376492232084274, -0.04122914373874664, 0.003789742710068822, 0.004369908943772316, 0.004909362178295851, -0.002420753240585327, -0.0018422831781208515, -0.021415269002318382, 0.005513278301805258, -0.010239429771900177, 0.007321633398532867, -0.021265987306833267, 0.026938725262880325, -0.006283440627157688, -0.0021645978558808565, 0.03012794442474842, -0.00471258070319891, -0.01939316838979721, -0.031213637441396713, -0.008040904067456722, 0.01956959255039692, -0.008115545846521854, 0.008563393726944923, 0.010293714702129364, -0.010924773290753365, -0.01096548605710268, 0.031593628227710724, 0.013795070350170135, 0.014385415241122246, -0.016448229551315308, 0.01422256138175726, 0.027400145307183266, 0.03341216221451759, 0.019746018573641777, 0.014371844008564949, 0.013849355280399323, 0.016624653711915016, -0.008074832148849964, 0.017058931291103363, -0.01803605444729328, 0.0019627271685749292, -0.02222953736782074, -0.004729544743895531, 0.03278788924217224, 0.020397434011101723, -0.0029822594951838255, 0.011569402180612087, 0.03799920901656151, 0.0270472951233387, 0.013991852290928364, 0.00764734111726284, -0.005085787270218134, -0.011169053614139557, 0.018565328791737556, 0.006510757375508547, -0.01905388943850994, -0.0034080541227012873, -0.03292360156774521, -0.01086370274424553, 0.008773745968937874, 0.02792941965162754, 0.009649084880948067, -0.0043190172873437405, 0.0070909238420426846, 0.013313294388353825, -0.003501355880871415, 0.018823180347681046, 0.011277622543275356, -0.029042253270745277, -0.016326088458299637, -0.03482356294989586, 0.010300500318408012, -0.016000382602214813, -0.015416822396218777, 0.018443187698721886, 0.031756483018398285, -0.019936013966798782, -0.047689009457826614, 0.01703178882598877, -0.014480412937700748, -0.05268318951129913, -0.0029602062422782183, -0.019718876108527184, -0.0046481178142130375, -0.011956180445849895, -0.026097314432263374, -0.004529369994997978, 0.01090441644191742, 0.023260945454239845, -0.02349165454506874, 0.0164753720164299, -0.0006535355350933969, 0.0017574634402990341, -0.0073419902473688126, 0.01358471717685461, 0.04242340475320816, 0.0002703626814763993, 0.013795070350170135, 0.02619231306016445, 0.010727991349995136, -0.02552732639014721, -0.013544004410505295, 8.839799193083309e-06, 0.0005648989463225007, 0.021917400881648064, 0.013164011761546135, -0.021021705120801926, 0.0027362823020666838, -0.021062418818473816, -0.009988363832235336, -0.03143077343702316, -0.005581133998930454, -0.004868648946285248, 0.018280334770679474, 0.031295064836740494, -0.010985842905938625, 0.013767927885055542, -0.001693848753347993, 0.032977886497974396, 0.0053707812912762165, -0.02083170972764492, -0.018904607743024826, -0.031675055623054504, -0.04668474569916725, 0.021740976721048355, 0.025174476206302643, 0.02619231306016445, 0.0017761237686499953, 0.012668665498495102, 0.003715101396664977, -0.014588982798159122, -0.05433886870741844, 0.005706666968762875, -0.02045171707868576, 0.02201239950954914, -0.015918955206871033, -0.018606042489409447, 0.04296625033020973, -0.021496696397662163, -0.013700072653591633, -0.02467234432697296, -0.01589181274175644, 0.029042253270745277, -0.0029042253736406565, -0.007464130409061909, -0.01597324013710022, 0.018660325556993484, -0.006123980041593313, 0.012363314628601074, -0.027902277186512947, -0.00026294097187928855, -0.015905383974313736, 0.013326865620911121, 0.01352364756166935, -0.01506397221237421, -0.02548661269247532, 0.02404807135462761, -9.72775524132885e-05, 0.016638224944472313, 0.00542845856398344, -0.02099456451833248, -0.0073419902473688126, -0.023722363635897636, -0.045273344963788986, -0.022446677088737488, -0.004661688581109047, 0.015118257142603397, -0.0072809201665222645, -0.012587238103151321, 0.013279367238283157, 0.034117862582206726, -0.033737871795892715, 0.041473422199487686, 0.009798367507755756, 0.007097709458321333, -0.024360207840800285, 0.016108950600028038, 0.011501546949148178, -0.02522876113653183, 0.014738265424966812, 0.005991660989820957, -0.03495927155017853, -0.018728181719779968, -0.010476925410330296, 0.009750869125127792, 0.0013045264640823007, -0.0006662584492005408, 0.006639683619141579, -0.005608276464045048, 0.027020152658224106, -0.02619231306016445, -0.027183005586266518, 0.00022222752158995718, 0.020818138495087624, 0.005394530948251486, 0.019637448713183403, -0.01030728593468666, 0.021143846213817596, -0.006802537012845278, -0.0069111064076423645, 0.014018994756042957, -0.009737297892570496, 0.01329293753951788, -0.0006887356867082417, 0.022324535995721817, -0.03666923940181732, 0.011528688482940197, -0.032977886497974396, -0.009031597524881363, -0.00986622367054224, 0.023165946826338768, -0.03216361626982689, -0.026002315804362297, -0.005923805292695761, -0.022080255672335625, -0.010001935064792633, 0.01677393727004528, -0.016963932663202286, -0.028580835089087486, -0.005133286118507385, 0.01685536466538906, -0.002354593947529793, -0.03197362273931503, -0.001631930354051292, 0.02552732639014721, 0.009513373486697674, -0.0016005471115931869, -0.009493016637861729, -0.014195418916642666, -0.00656164949759841, -0.00853625126183033, -0.00872624758630991, 0.02248738892376423, 0.01707250252366066, 0.004851684905588627, -0.0209131371229887, 0.05165178328752518, -0.004050987306982279, 0.038813479244709015, -0.02201239950954914, 0.01536253746598959, -0.0008761871722526848, 0.01178654097020626, -0.02037029154598713, -0.011535474099218845, -0.02024815045297146, -0.012349743396043777, 0.013937567360699177, -0.009832295589148998, 0.020885994657874107, 0.0038100993260741234, 0.012926517054438591, -0.02061457186937332, 0.00023325407528318465, 0.014236132614314556, -0.0031468095257878304, -0.0019186207791790366, 0.014466841705143452, -0.017045360058546066, -0.04334624111652374, 0.02315237559378147, 0.034416425973176956, -0.030480794608592987, -0.0194338820874691, -0.006843250710517168, -0.027983704581856728, 0.0371849425137043, 0.006968783680349588, -0.02459091693162918, 0.010585494339466095, -0.040252018719911575, 0.013007943518459797, 0.00011917162919417024, 0.009588015265762806, 0.04272196814417839, -0.0019372811075299978, 0.008997670374810696, -0.021374555304646492, 0.022066684439778328, -0.01914888806641102, -0.027522284537553787, 0.01699107512831688, 0.0008710979600436985, -0.012458312325179577, -0.01711321622133255, 0.03303217142820358, -0.014439700171351433, 0.013896853663027287, -0.00446829991415143, -0.006432723253965378, 0.003871169639751315, 0.02982937917113304, 0.006039160303771496, -0.041473422199487686, 0.026178741827607155, 0.011426905170083046, 0.004675259813666344, 0.018728181719779968, -0.056347399950027466, 0.004407229833304882, -0.0008999366546049714, -0.011379405856132507, -0.004020452033728361, -0.004471692722290754, -0.01737106777727604, -0.004169734660536051, 0.00705699622631073, -0.001219706842675805, -0.005418280139565468, 0.17305925488471985, -0.011874753050506115, 0.014249703846871853, 0.04201626777648926, 0.002050939481705427, 0.016380373388528824, 0.014236132614314556, -0.007735553663223982, -0.000269726529950276, 0.007267348933964968, -0.0038609912153333426, 0.017479635775089264, -0.03596353903412819, 0.008563393726944923, -0.0014368451666086912, 0.02450949139893055, -0.005031502339988947, -0.03612639009952545, 9.441489237360656e-05, 0.028472265228629112, -0.008923028595745564, 0.002044153865426779, -0.037972066551446915, -0.01799534074962139, 0.03248932585120201, -0.022541673853993416, -0.021645978093147278, -0.011433690786361694, 0.010483711026608944, -0.02653159201145172, -0.018619613721966743, -0.009262307547032833, 0.009655870497226715, 0.020126009359955788, -0.07491272687911987, -0.02003101259469986, 0.018226049840450287, 0.0005288505926728249, 0.017018217593431473, 0.023939501494169235, 0.012953659519553185, -0.02531018853187561, -0.025934461504220963, -0.013272581622004509, 0.010789061896502972, 0.01665179617702961, 0.006761823780834675, -0.011637258343398571, 0.0036879591643810272, 0.03818920627236366, -0.013164011761546135, -0.03647924214601517, 0.008217329159379005, 0.0164753720164299, -0.017683204263448715, 0.01441255770623684, 0.013204725459218025, 0.011610115878283978, 0.031457915902137756, 0.02391236089169979, 0.001525905798189342, 0.02700658142566681, -0.0181717649102211, 0.04087629169225693, -0.015376108698546886, 0.020003870129585266, -0.03916632756590843, 0.02640945091843605, -0.008841602131724358, -0.03384643793106079, -0.02552732639014721, -0.012790805660188198, -0.02286738157272339, 0.001217162236571312, 0.0057643442414700985, -0.006052731536328793, 0.015661103650927544, -0.0016896077431738377, 0.004597225692123175, 0.025744464248418808, -0.019501738250255585, -0.02294880896806717, 0.00678218062967062, 0.0034148397389799356, -0.030372226610779762, -0.014290417544543743, 0.01460255403071642, 0.028499407693743706, 0.003316449001431465, -0.01576967164874077, 0.01333365123718977, 0.013449005782604218, 0.014385415241122246, 0.009113024920225143, 0.011257265694439411, 0.018646754324436188, 0.00978479627519846, 0.010368355549871922, -0.013238653540611267, 0.0077287680469453335, -0.006514150183647871, 0.03639781475067139, 0.02594803273677826, -0.0026107493322342634, 0.00548274302855134, -0.023233802989125252, -0.0014453270705416799, 0.011426905170083046, 7.453528087353334e-05, -0.03474213555455208, -0.021184559911489487, 0.001602243515662849, -0.0121461758390069, -0.005910234060138464, 0.019596735015511513, -0.006968783680349588, 0.0015742529649287462, -0.0047261519357562065, -0.02205311320722103, -0.003928846679627895, -0.004651510622352362, -0.01863318495452404, -0.01597324013710022, -0.006704146508127451, -0.009920507669448853, 0.008549822494387627, -0.017588205635547638, -0.011739041656255722, 0.016027523204684258, -0.022365249693393707, 0.03960060700774193, -0.039274897426366806, -0.004817756824195385, -0.001448719878681004, -0.006548078265041113, -0.006174871698021889, -0.004984003491699696, -0.024658773094415665, -0.005146857351064682, 0.004403837025165558, 7.294490933418274e-05, 0.02277238294482231, -0.009533730335533619, -0.005540420766919851, 0.005988268181681633, -0.03808063641190529, -0.004943290259689093, 0.003218058031052351, 0.00760662741959095, -0.012797591276466846, -0.007688054349273443, 0.018687468022108078, 0.010789061896502972, -0.022758811712265015, -0.0002756639150902629, -0.04383480176329613, -0.011182624846696854, -0.03536640852689743, 0.04277625307440758, -0.020275292918086052, -0.01804962567985058, -0.004882219713181257, 0.0016455014701932669, -0.03512212634086609, -0.022120969370007515, 0.005557384341955185, -0.16893362998962402, -0.002093349350616336, -0.009628728032112122, -0.0004974673502147198, -0.009900151751935482, -0.0243059229105711, 0.03520355373620987, -0.014127563685178757, -0.014955403283238411, -0.018307477235794067, 0.023993786424398422, -0.011650829575955868, -0.02898796834051609, -0.014100421220064163, -0.021143846213817596, 0.0014605945907533169, -0.026938725262880325, -0.0025513754226267338, 0.05105465278029442, 0.03514926880598068, 0.05105465278029442, -0.017696775496006012, 0.035909254103899, 0.041473422199487686, 0.01548467855900526, 0.004203662741929293, -0.006293619051575661, -0.01601395197212696, -0.022283822298049927, -0.02721014805138111, 0.007450559642165899, 0.02332880161702633, 0.00011259810707997531, -0.02045171707868576, 0.021903829649090767, -0.008108760230243206, -0.008264828473329544, 0.0038949190638959408, -0.002944938838481903, -0.001416488434188068, 0.023545939475297928, 0.024645201861858368, -0.006622719578444958, -0.0032435040920972824, -0.009547301568090916, 0.0435362383723259, 0.027617283165454865, -0.0367778055369854, -0.006286833435297012, 0.006025589071214199, 0.02806513011455536, -0.026436593383550644, 0.020506002008914948, -0.020044583827257156, 0.01724892668426037, -0.018063195049762726, -0.029177965596318245, 0.018321048468351364, -0.01597324013710022, 0.014711122959852219, 0.01307579968124628, -0.025296617299318314, 0.04239626228809357, 0.01174582727253437, 0.0017226873897016048, -0.027020152658224106, -0.021333841606974602, 0.0029686882626265287, -0.026558734476566315, -0.015009688213467598, -0.018117479979991913, 0.001168814953416586, 0.00034691242035478354, -0.0005615061963908374, 0.01259402371942997, 0.04939897358417511, -0.018185336142778397, 0.0014359969645738602, 0.0014682284090667963, -0.03300502896308899, -0.0032129688188433647, 0.029042253270745277, -0.017221784219145775, -0.011481190100312233, -0.009805153124034405, -0.02540518529713154, 0.006548078265041113, -0.01407327875494957, 0.0020882601384073496, -0.04133771359920502, 0.02248738892376423, -0.025920890271663666, -0.013055442832410336, 0.012057963758707047, -0.002605660120025277, -0.001724383793771267, 0.01400542352348566, -0.03197362273931503, 0.025934461504220963, -0.03457928076386452, 0.0023647723719477654, 0.003871169639751315, -0.01673322357237339, -0.006921284832060337, 0.042070552706718445, 0.009180880151689053, -0.026423022150993347, -0.027101580053567886, -0.0070909238420426846, -0.012254745699465275, 0.006778787821531296, -0.010795846581459045, -0.006456472910940647, -0.00857696495950222, -0.027698710560798645, 0.010822989046573639, -0.010931558907032013, -0.010639779269695282, 0.01307579968124628, -0.0014911297475919127, 0.05433886870741844, 0.03058936446905136, -0.010639779269695282, 0.03270646184682846, -0.009072311222553253, -0.022446677088737488, -0.1136719211935997, -0.016176806762814522, -0.003966167569160461, 0.04277625307440758, -0.00830554123967886, 0.021944543346762657, -0.026613017544150352, -0.012499026022851467, -0.0033334128092974424, 0.037592075765132904, 0.012600809335708618, -0.020085297524929047, -0.016678938642144203, 0.03498641401529312, 0.012879017740488052, 0.0060154106467962265, 0.004604011308401823, -0.012756877578794956, -0.007138423155993223, 0.022758811712265015, 0.004329195711761713, -0.0015428697224706411, 0.048991840332746506, 0.008855173364281654, 0.0058186291716992855, 0.008773745968937874, -0.020383862778544426, 0.014683980494737625, -0.0017761237686499953, 0.027332289144396782, 0.025540897622704506, -0.022378820925951004, 0.014982545748353004, -0.004464907106012106, -0.011148696765303612, 0.002880475949496031, -0.03072507493197918, -4.402670674608089e-05, 0.039112042635679245, -0.014331130310893059, 0.0002839338267222047, -0.009669441729784012, -0.03856919705867767, 0.020166723057627678, 0.0018100516172125936, 0.006215584930032492, -0.009140167385339737, 0.011956180445849895, 0.008705890737473965, -0.03004651889204979, -0.032896459102630615, -0.0037015301641076803, -0.008549822494387627, 0.01011728961020708, 0.002266381401568651, -0.009099453687667847, 0.017181070521473885, -0.022066684439778328, -0.005540420766919851, -0.018307477235794067, -0.01863318495452404, 0.0015140310861170292, -0.00828518532216549, 0.021876687183976173, 0.02459091693162918, 0.009248736314475536, 0.0008685533539392054, 0.02138812653720379, 0.021360984072089195, -0.022853810340166092, 0.01643465831875801, 0.0061884429305791855, 0.001508941873908043, 0.024998052045702934, -0.03238075599074364, 0.023695221170783043, -0.028255127370357513, -0.03118649497628212, 0.019922442734241486, 0.002773602958768606, -0.04125628620386124, 0.00701628252863884, -0.0020000478252768517, -0.016923218965530396, 0.025595182552933693, 0.007952691987156868, -0.002076385309919715, 0.00039822832331992686, 0.013720429502427578, -0.026083743199706078, -0.01282473374158144, 0.00535721005871892, 0.04386194422841072, -0.019895300269126892, 0.0026684266049414873, 0.003983131609857082, 0.007803409360349178, -0.025174476206302643, 0.011379405856132507, 0.0016005471115931869, -0.048747558146715164, -0.0026599448174238205, -0.04372623562812805, 0.01096548605710268, -0.012899374589323997, -0.0243059229105711, 0.016448229551315308, -0.016678938642144203, 0.02003101259469986, -0.031159352511167526, 0.008509108796715736, 0.0027651211712509394, -0.008176615461707115, 0.009208022616803646, -0.002171383472159505, -0.006239334587007761, -0.010802632197737694, -0.029856521636247635, 0.019243884831666946, -0.011386191472411156, 0.03162077069282532, 0.017479635775089264, -0.006710932124406099, -0.008203757926821709, 0.016746794804930687, 0.008088403381407261, -0.001341847120784223, 0.017045360058546066, 0.009608372114598751, 0.027278004214167595, -0.010761919431388378, 0.0012366707669571042, 0.015728957951068878, 0.00397295318543911, -0.019081031903624535, 0.014711122959852219, 0.025283046066761017, -0.007335204631090164, -0.004539548419415951, 0.021781690418720245, -0.01056513749063015, 0.006405581254512072, -0.0029941340908408165, -0.0048856125213205814, 0.008739817887544632, -0.003745636437088251, 0.01956959255039692, -0.010992628522217274, -0.007172350771725178, 0.023559510707855225, 0.011189410462975502, 0.015959668904542923, 0.03322216495871544, -0.0016692510107532144, -0.004393658600747585, -0.022025970742106438, -0.008943385444581509, -0.032217901200056076, -0.014371844008564949, -0.03292360156774521, 0.0050179315730929375, -0.021835975348949432, 0.013055442832410336, -0.005184177774935961, 0.003650638507679105, -0.0007116369670256972, -0.008359826169908047, -0.04103914648294449, -0.01589181274175644, 0.027739424258470535, 0.00878731720149517, -0.029992233961820602, 0.0005237614386714995, 0.010877273976802826, 0.005252033472061157, -0.016163235530257225, -0.0009584622457623482, -0.0019203171832486987, -0.006419152487069368, -0.012465097941458225, 0.003820277750492096, 0.007165565155446529, 0.03582782670855522, 0.007932335138320923, -0.01935245469212532, 0.027318717911839485, 0.030372226610779762, 0.01859247125685215, -0.02860797755420208, 0.007559128571301699, 0.03246218338608742, 0.01204439252614975, -0.005146857351064682, 0.009920507669448853, -0.0012553310953080654, -0.00022031908156350255, -0.006534507032483816, 0.02298952266573906, -0.014181847684085369, 0.010422640480101109, 0.007409845944494009, 0.012790805660188198, -0.00372867239639163, -0.00912659615278244, -0.009079096838831902, 0.01297401636838913, -0.05091894045472145, 0.02265024371445179, -0.012811162509024143, -0.03680494800209999, -0.02057385817170143, 0.03935632482171059, 0.00912659615278244, 0.03536640852689743, 0.011508332565426826, 0.012770448811352253, -0.009208022616803646, -0.012159747071564198, 0.0017277766019105911, 0.0017761237686499953, -0.012967230752110481, 0.0020000478252768517, 0.006354689132422209, 0.02488948218524456, 0.040252018719911575, 0.018402474001049995, 0.027454430237412453, 0.01728964038193226, 0.007531986106187105, -0.024577345699071884, -0.013605074025690556, 0.02142884023487568, -0.012600809335708618, -0.02298952266573906, -0.004695616662502289, -0.014724694192409515, -0.017466066405177116, -0.009445518255233765, 0.012112248688936234, 0.00868553388863802, -0.006734681315720081, 0.06362153589725494, 0.01548467855900526, -0.001927102799527347, 0.013937567360699177, 0.01001550629734993, 0.01567467488348484, 0.04125628620386124, -0.00849553756415844, 0.0036438528914004564, -0.053687456995248795, 0.0015759493689984083, 0.026056600734591484, -0.027739424258470535, -0.02569018118083477, -0.002066207118332386, 0.012987587600946426, -0.020519573241472244, 0.0016073326114565134, -0.026979438960552216, 0.018456758931279182, -0.004549726843833923, -0.001325731398537755, -0.0013206421863287687, 0.010504066944122314, -0.015389679931104183, 0.005458993837237358, 0.005228284280747175, 0.008997670374810696, -0.028797972947359085, -0.04638617858290672, -0.02213454060256481, -0.00461758254095912, -0.03710351511836052, -0.023355942219495773, -0.004339374136179686, 0.0011196195846423507, -0.002707443665713072, 0.007884835824370384, 0.0162718053907156, 0.006045945920050144, -0.018497472628951073, -0.0030416331719607115, -0.0071859220042824745, -0.02243310585618019, 0.00785769335925579, -0.010632993653416634, -0.00656164949759841, -0.007911978289484978, -0.033276449888944626], "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9": [0.0109397629275918, 0.038489777594804764, 0.002753329696133733, -0.03396943584084511, -0.004139189142733812, -0.0076431226916611195, -0.02158530242741108, -0.00756287993863225, -0.01879017986357212, -0.027443023398518562, 0.006228844169527292, 0.01496527437120676, 0.0020294731948524714, 0.012832154519855976, -0.0021230897400528193, 0.02520960010588169, 0.016677120700478554, 0.004326422233134508, 0.008692965842783451, 0.019980447366833687, 0.0194187480956316, 0.01694459654390812, -0.005332800094038248, -0.029877053573727608, -0.02257496304810047, 0.00023404137755278498, 0.010257699526846409, 0.003301655175164342, 0.01864306814968586, -0.0110935615375638, 0.009435211308300495, -0.014537313021719456, -0.025704430416226387, -0.007569566834717989, -0.009428524412214756, 0.03790133073925972, 0.012731851078569889, 0.007623062003403902, 0.0017101737903431058, -0.02328377403318882, 0.01380175445228815, -0.027817489579319954, -0.01048505399376154, 0.027790741994976997, -0.03204360976815224, 0.017305688932538033, 0.018830301240086555, -0.03811531141400337, -0.013775006867945194, 0.005958024878054857, 0.012812093831598759, 0.018148237839341164, -0.008940380997955799, -0.01810811646282673, 0.0017218758584931493, -0.004784474615007639, 0.01117380429059267, 0.024166444316506386, -0.007221848238259554, 0.01551359985023737, 0.0006394344964064658, -0.008438863791525364, -0.026787707582116127, -0.014095977880060673, -0.03185637667775154, 0.006981119979172945, 0.0045470898039639, -0.018201733008027077, -0.005760761443525553, -0.008124579675495625, 0.044053275138139725, 0.028566421940922737, 0.0032448165584355593, -0.004607271868735552, 0.030813219025731087, -0.0164631400257349, -0.006359238643199205, 0.0006202096701599658, 0.0003525248321238905, -0.005760761443525553, 0.010204204358160496, 0.008967128582298756, -0.013393853791058064, 0.003440408268943429, 0.034611377865076065, -0.018001126125454903, -0.01426983717828989, 0.01349415723234415, -0.005212435964494944, -0.011421219445765018, 0.013153125531971455, 0.012404193170368671, 0.011929423548281193, 0.022374356165528297, -0.015740955248475075, 0.004209401551634073, -0.029823558405041695, 0.0062188138253986835, -0.0008726399973966181, -0.027496518567204475, -0.006295713130384684, 0.025316590443253517, 0.024072827771306038, -0.004379917401820421, -0.021331200376152992, -0.025798046961426735, -0.009495393373072147, -0.035547543317079544, 0.010919702239334583, 0.00031867242068983614, -0.009294786490499973, 0.03696516528725624, -0.003099376568570733, -0.015192628838121891, 0.0151257598772645, -0.03423691168427467, 0.011073500849306583, 0.011588391847908497, -0.012484435923397541, 0.003480529645457864, -0.0015446731122210622, 0.012123343534767628, 0.013788380660116673, -0.007121544796973467, 0.013026074506342411, 0.0070546758361160755, -0.011320916004478931, -0.0036142675671726465, -0.013788380660116673, -0.015460104681551456, 0.0529334731400013, 0.011066813953220844, -0.015246124006807804, 0.012865589000284672, 0.009990223683416843, 0.01772027648985386, 0.01527287159115076, 0.016035178676247597, -0.03544055297970772, -0.02336401678621769, 0.02074275352060795, 0.0021364635322242975, -0.000738066213671118, 0.0034119889605790377, -0.012303889729082584, 0.031909871846437454, 0.0025560662616044283, 0.007315464783459902, 0.0053929821588099, -0.007221848238259554, 0.008117892779409885, 0.008639470674097538, 0.04367880895733833, 0.011220612563192844, 0.041030798107385635, -0.014523939229547977, 0.018669815734028816, 0.009756182320415974, -0.009328220970928669, 0.003687823424115777, -0.029128121212124825, 0.0026931476313620806, 0.00042587172356434166, -0.015286245383322239, -0.006068358663469553, 0.0257579255849123, 0.025008993223309517, 0.006740391720086336, -0.008285065181553364, 0.0036844799760729074, 0.001243762788362801, -0.005717296618968248, -0.027870984748005867, 0.011347663588821888, 0.0019040937768295407, 0.0032197406981140375, 0.009227917529642582, -0.01903090812265873, 0.00586106488481164, 0.010451619513332844, -0.002288590418174863, 0.014443696476519108, 0.0034738427493721247, 0.009843111969530582, -0.028994383290410042, 0.00839205551892519, 0.019980447366833687, 0.0161555428057909, -0.007509384769946337, -0.011461340822279453, -0.03134817257523537, -0.0016332744853571057, -0.017051586881279945, 0.006914251018315554, -0.6029976010322571, -0.0017151889624074101, -0.012457688339054585, -0.002225064905360341, -0.018923917785286903, -0.0029121434781700373, 0.0100169712677598, 0.02050202526152134, -0.020167680457234383, 0.02808496542274952, 0.015299619175493717, 0.02220049686729908, -0.006887503433972597, -0.020782874897122383, 0.015232750214636326, -0.03287278488278389, 0.013855249620974064, -0.013166499324142933, -0.02040840871632099, -0.006777169648557901, -0.04445448890328407, -0.00438994774594903, -0.01749292202293873, 0.018348844721913338, 0.021384695544838905, 0.01148808840662241, 0.01879017986357212, -0.028566421940922737, 0.017359184101223946, 0.006753765512257814, -0.0055768718011677265, -0.01233732420951128, -0.004426725674420595, 0.03118768520653248, 0.042662400752305984, -0.011213925667107105, -0.010471680201590061, 0.010933076031506062, 0.016596877947449684, 0.016035178676247597, -0.03094695694744587, 0.003147856565192342, 0.03335424140095711, -0.011882615275681019, 0.018602946773171425, -0.0032832662109285593, 0.0100169712677598, 0.016810858622193336, -0.0014426979469135404, -0.007823669351637363, -0.007462576497346163, -0.004048916045576334, 0.00019559172505978495, -0.006121853832155466, 0.01925826258957386, -0.010197517462074757, 0.026867950335144997, 0.008064397610723972, -0.01163520012050867, -0.021250957623124123, -0.006215470377355814, 0.0007125724223442376, -0.006523067597299814, 0.0014401903608813882, 0.0034303779248148203, 0.025584066286683083, -0.021612050011754036, -0.008432176895439625, 0.009354968555271626, 0.0037747530732303858, 0.018081368878483772, 0.02079624868929386, -0.005834317300468683, -0.01879017986357212, 0.02281569130718708, 0.015219376422464848, 0.021638797596096992, -0.024942124262452126, -0.00609176279976964, 0.004961677361279726, 0.007883851416409016, -0.00015129103849176317, -0.020635763183236122, -0.001984336646273732, 0.022401103749871254, 0.024326929822564125, 0.0007539475918747485, 0.01457743439823389, 0.023150036111474037, 0.02599865384399891, 0.013788380660116673, 0.026627222076058388, 0.01903090812265873, -0.0161555428057909, 0.01388199720531702, 0.011374411173164845, -0.02040840871632099, -0.03423691168427467, 0.008091145195066929, -0.049777258187532425, -0.015473478473722935, -0.04999123886227608, 0.011247360147535801, -0.021866152063012123, 0.011748877353966236, 0.01879017986357212, -0.004406664986163378, 0.030866714194417, 0.04081681743264198, -0.03110744245350361, -0.01801449991762638, -0.014630929566919804, -0.001855613780207932, 0.024340303614735603, 0.0068072606809437275, -0.02522297389805317, -0.01527287159115076, 0.01202972698956728, -0.006974433083087206, -0.040656331926584244, 0.006158631760627031, 0.019298383966088295, -0.027015062049031258, -0.008947067894041538, 0.015312992967665195, 0.0007894717273302376, 0.005078698042780161, 0.006974433083087206, -0.025316590443253517, -0.01600843109190464, 0.011508149094879627, -0.007389020640403032, 0.010144022293388844, -0.0103245684877038, 0.034771863371133804, -0.01218352559953928, 0.0017026510322466493, -0.031214432790875435, -0.001761997235007584, -0.021638797596096992, 0.011521522887051105, -0.0002327875845367089, 0.012471062131226063, -0.017118455842137337, -0.0034504386130720377, -0.011889302171766758, -0.005640397313982248, 0.01418959442526102, 0.0023136662784963846, 0.00041876689647324383, 0.005516689736396074, -0.003641015151515603, -0.005309395957738161, 0.009388403035700321, 0.006727017927914858, -0.01133428979665041, 0.02397921122610569, -0.0070546758361160755, -0.020849743857979774, -0.015192628838121891, 0.019672850146889687, 0.043277595192193985, -0.03998764231801033, -0.0025711117777973413, -0.025784673169255257, 0.007088110316544771, -0.008806643076241016, 0.028807150200009346, -0.039960894733667374, -0.019392000511288643, -0.0004538731009233743, -0.004613958764821291, 0.010886267758905888, 0.0009110896498896182, 0.03172263875603676, 0.0312679298222065, -0.030572490766644478, 0.002706521423533559, -0.011675321497023106, -0.003371867584064603, 0.0161555428057909, -0.02399258501827717, -0.02506248839199543, -0.011126996017992496, 0.018857048824429512, 0.007047988940030336, 0.03640346601605415, -0.014363453723490238, -0.021371321752667427, -0.017185324802994728, 0.000699616561178118, 0.01948561705648899, -0.009642505086958408, -0.015058890916407108, 0.010077153332531452, 0.016904475167393684, 0.034156668931245804, 0.0017369213746860623, 0.011755564250051975, 0.05095415189862251, 0.02150505967438221, -0.010063779540359974, 0.006576562765985727, -0.0032214124221354723, 0.01749292202293873, -0.016449766233563423, 0.013694764114916325, -0.009869859553873539, 0.013313611038029194, 0.010665600188076496, -0.0010373048717156053, -0.029689820483326912, -0.01586131937801838, -0.01764003373682499, 0.01358108688145876, 0.01857619918882847, -0.001863972400315106, 0.019766466692090034, 0.015032143332064152, -0.003681136528030038, 0.014376827515661716, 0.01793425716459751, 0.01686435379087925, 0.002186615252867341, -0.01662362553179264, -0.009990223683416843, 0.0006925117340870202, -0.014925152994692326, 0.006068358663469553, -0.05258575454354286, -0.01535311434417963, 0.006352551747113466, -0.003152871737256646, -0.009381716139614582, 0.020542146638035774, 0.017599912360310555, 0.0033601655159145594, 0.01623578555881977, 0.02861991710960865, -0.03410317376255989, -0.015419983305037022, 0.014109351672232151, 0.0248351339250803, -0.024487415328621864, -0.006686896551400423, 0.0002323696535313502, 0.030278267338871956, 0.022695327177643776, 0.003657732391729951, 0.04793167486786842, 0.022454598918557167, 0.021010229364037514, -0.02894088812172413, 0.009776243008673191, 0.012618173845112324, -0.014844910241663456, 0.012611486949026585, 0.020234549418091774, 0.017452800646424294, 0.024554284289479256, -0.001198626239784062, 0.0318831242620945, 0.004968364257365465, 0.00023989241162780672, 0.005713953170925379, -0.01303944829851389, 0.0100169712677598, -0.030973704531788826, -0.016302654519677162, -0.016650373116135597, -0.008592662401497364, -0.04349157586693764, -0.010271073319017887, 0.007315464783459902, 0.010531862266361713, -0.0019592607859522104, -0.006044954527169466, -0.011381098069250584, 0.025971906259655952, 0.006820634473115206, -0.030305014923214912, -0.009769556112587452, 0.017961004748940468, 0.01957923360168934, -0.013908744789659977, -0.016690494492650032, -0.009883233346045017, 0.007261969614773989, -0.003911834675818682, 0.01864306814968586, -0.015727581456303596, 0.015032143332064152, -0.003945269156247377, 0.02443392015993595, -0.016356149688363075, -0.021317826583981514, -0.002642995910719037, 0.011434593237936497, -0.015139133669435978, 0.005222466308623552, -0.001414278638549149, -0.01118049118667841, -0.020836370065808296, 0.019285010173916817, 0.06242886558175087, 0.01578107662498951, 0.03915846720337868, -0.009836425073444843, 0.012664982117712498, -0.006329147610813379, 0.0009553903364576399, -0.010525175370275974, 0.008826703764498234, 0.021518433466553688, 0.01280540693551302, -0.02273544855415821, 0.011320916004478931, -0.016182290390133858, 0.02660047449171543, -0.005148910451680422, 0.01520600263029337, 0.018362218514084816, -0.016302654519677162, -0.021130593493580818, 0.038784001022577286, 0.023016298189759254, -0.012063161469995975, 0.0076431226916611195, -0.032765794545412064, 0.037633854895830154, 0.021224210038781166, -0.028352441266179085, 0.011294168420135975, 0.015794450417160988, 0.0034671558532863855, -0.010230951942503452, 0.01901753433048725, 0.008572601713240147, 0.018281975761055946, 0.020074063912034035, -0.001414278638549149, 0.012939144857227802, -0.01864306814968586, 0.009080805815756321, 0.009716060943901539, -0.007168353069573641, 0.03271229937672615, 0.0104783670976758, -0.01909777708351612, 0.023150036111474037, 0.03273904696106911, 0.004717605654150248, -0.019833335652947426, -0.01380175445228815, -0.00632580416277051, -0.0027784055564552546, -0.000628150359261781, 0.038168806582689285, -0.0017151889624074101, 0.020074063912034035, 0.020756127312779427, 0.01864306814968586, 0.024661274626851082, -0.02312328852713108, -0.010571983642876148, 0.009348281659185886, -0.010913015343248844, -0.0008132937946356833, 0.008565914817154408, 0.0030726289842277765, -0.0027483145240694284, 0.01256467867642641, -0.0075963144190609455, -0.027710499241948128, -0.0009838097030296922, -0.024781638756394386, -0.040174875408411026, 0.003570802742615342, 0.024487415328621864, 0.00033789724693633616, -0.024968871846795082, -0.018990786746144295, -0.012992640025913715, -0.02010081149637699, -0.01948561705648899, -0.009956789202988148, 0.01793425716459751, -0.015486852265894413, 0.01202304009348154, 0.004954990465193987, -0.008505732752382755, -0.003239801386371255, -0.026092270389199257, -0.022494720295071602, -0.014978648163378239, -0.014564060606062412, -0.020822996273636818, -0.027710499241948128, 0.017680155113339424, 0.031080694869160652, 0.02257496304810047, 0.018215106800198555, -0.004443442914634943, 0.004827939439564943, -0.005426416639238596, -0.02931535430252552, -0.007623062003403902, -0.022227244451642036, -0.001623244141228497, 0.028486179187893867, 0.016516635194420815, 0.0074960109777748585, -0.04504293575882912, 0.0337287075817585, -0.012277142144739628, -0.002674758667126298, 0.007589627522975206, -0.0098631726577878, 0.001537986216135323, 0.025396833196282387, -0.010692347772419453, -0.0013156469212844968, 0.015419983305037022, -0.019766466692090034, 0.009294786490499973, -0.002719895215705037, 0.0004985917476005852, -0.008458924479782581, 0.017198698595166206, -0.01527287159115076, -0.002032816642895341, 0.0017076662043109536, -0.025650935247540474, -0.005583558697253466, 0.014751293696463108, -0.02700168825685978, -0.0026480110827833414, -0.010725782252848148, 0.0008993875817395747, -0.001817164127714932, 0.014925152994692326, 0.012578052468597889, -0.008967128582298756, -0.025704430416226387, 0.0017369213746860623, -0.023377390578389168, -0.0018656441243365407, 0.021999889984726906, -0.028325693681836128, 0.024166444316506386, -0.03212385252118111, -0.029502587392926216, -0.017359184101223946, 0.01009721402078867, 0.014697798527777195, 0.00756287993863225, 0.0014635944971814752, -0.005951337981969118, -0.025182852521538734, 0.01365464273840189, 0.023457633331418037, 0.005713953170925379, -0.02281569130718708, 0.02436705119907856, 0.030305014923214912, 0.00374131859280169, -0.015660712495446205, -0.00993672851473093, -0.015553721226751804, -0.03498584404587746, -0.010491740889847279, 0.0022384386975318193, 0.0036744496319442987, 0.0015471806982532144, -0.0058944993652403355, -0.013708137907087803, -0.007462576497346163, -0.00978961680084467, 9.565396612742916e-05, 0.011287481524050236, 0.004175967071205378, 0.017653407528996468, 0.02273544855415821, 0.024781638756394386, 0.0502854622900486, 0.004791161511093378, 0.02792447991669178, 0.019512364640831947, 8.672069270687643e-06, -0.01559384260326624, -0.006961059290915728, 0.018201733008027077, -0.03602899983525276, 0.01940537430346012, 0.032444823533296585, 0.004677484277635813, -0.00140759174246341, 0.022093506529927254, -0.0058008828200399876, 0.014403575100004673, 0.006934311706572771, 0.006914251018315554, -0.006115166936069727, -0.021531807258725166, -0.0003872131055686623, -0.010311194695532322, 0.000273535872111097, 0.0019107806729152799, -0.030813219025731087, -0.0215719286352396, 0.017987752333283424, 0.023390764370560646, 0.005045263562351465, -0.00900724995881319, -0.000977122806943953, -0.004751040134578943, -0.014283210970461369, 0.019525738433003426, 0.052559006959199905, -0.02220049686729908, -0.013627895154058933, -0.013935492374002934, 0.01749292202293873, -0.021799283102154732, -0.017145203426480293, 0.023791978135704994, 0.01741267926990986, -0.022173749282956123, -0.02561081387102604, 0.008539167232811451, -0.01980658806860447, -0.028138460591435432, 0.00601152004674077, -0.02097010798752308, -0.01426983717828989, 0.005891155917197466, 0.00624556140974164, 0.00012443897139746696, -0.011080187745392323, 0.017733650282025337, -0.008713026531040668, 0.02204001136124134, 0.0023320552427321672, -0.011822433210909367, -0.013440662063658237, 0.0197263453155756, 0.04169948771595955, -0.0007426634547300637, 0.03672443702816963, 0.0029271889943629503, 0.0062890262342989445, -0.014309958554804325, 0.003457125509157777, -0.009120927192270756, 0.01102000568062067, 0.02506248839199543, 0.005620336625725031, -0.011909362860023975, -0.016677120700478554, -0.01917801983654499, -0.011936110444366932, -0.01810811646282673, 0.0005750731215812266, 0.014871657826006413, 0.028486179187893867, 0.01318656001240015, -0.003286609658971429, 0.005530063528567553, -0.01794763095676899, 0.03402293100953102, 0.011441280134022236, -0.018857048824429512, -0.021331200376152992, -0.02204001136124134, -0.04317060485482216, 0.011147056706249714, 0.011113622225821018, 0.02870015986263752, -0.020635763183236122, -0.01710508204996586, 0.01925826258957386, -0.029743315652012825, -0.03110744245350361, 0.02645336277782917, -0.02158530242741108, 0.022106880322098732, -0.020836370065808296, -0.025316590443253517, 0.03455788269639015, -0.02321690507233143, -0.013567713089287281, -0.01608867384493351, -0.01870993711054325, 0.025169478729367256, -0.00010286327596986666, -0.029877053573727608, -0.004704231861978769, 0.01465767715126276, -0.026587100699543953, 0.015888066962361336, -0.031214432790875435, 0.005098758731037378, -0.013948866166174412, -0.006834008265286684, -0.0019592607859522104, -0.024634527042508125, -0.03404967859387398, 0.01287896279245615, -0.009368342347443104, 0.001925826189108193, -0.019311757758259773, -0.015460104681551456, 0.019365252926945686, -0.0260655228048563, 0.0022434538695961237, -0.04004113748669624, -0.0029422345105558634, 0.012243707664310932, -0.01249112281948328, 0.005369578022509813, -0.005296022165566683, 0.03185637667775154, -0.007556193042546511, 0.04228793457150459, 0.01048505399376154, -0.0004923227825202048, -0.03838278725743294, -0.001960932509973645, 0.022722074761986732, -0.01600843109190464, 0.028726907446980476, -0.01225708145648241, 0.0018489268841221929, -0.015366488136351109, -0.019298383966088295, -0.02250809408724308, -0.01925826258957386, -0.020528772845864296, -0.035547543317079544, 0.027897732332348824, 0.02282906509935856, -0.018816927447915077, -0.00011587137851165608, 0.009261352010071278, 0.01226376835256815, 0.002611233154311776, 0.03605574741959572, -0.010210891254246235, 0.020515399053692818, -0.014711172319948673, -0.012404193170368671, 0.009956789202988148, -0.009488706476986408, 0.00815801415592432, -0.018549451604485512, 0.018268601968884468, -0.012096595950424671, -0.01639627106487751, -0.037018660455942154, 0.002201660769060254, -0.012892336584627628, 0.008599349297583103, -0.011595078743994236, -0.013855249620974064, -0.003299983451142907, -0.0008053531055338681, -0.011541583575308323, 0.003022477263584733, -0.03145516291260719, -0.03511958196759224, -0.02537008561193943, -0.004289644304662943, -0.004975051153451204, -0.028058217838406563, -0.005657114554196596, 0.02692144550383091, 0.00748263718560338, 0.0013850234681740403, 0.003493903437629342, -0.0058242869563400745, -0.01670386828482151, -0.03466487303376198, -0.0095555754378438, -0.001074918662197888, -0.003269892418757081, 0.03265880420804024, -0.00963581819087267, 0.02474151737987995, -0.0007777696591801941, 0.029021130874753, -0.015460104681551456, 0.038944486528635025, 0.0164631400257349, 0.02443392015993595, -0.006175349000841379, -0.021464938297867775, -0.008746461011469364, 0.002596187638118863, 0.023577997460961342, 0.012778659351170063, 0.008646157570183277, -0.0033818979281932116, 0.016061926260590553, 0.00823157001286745, -0.007168353069573641, 0.0029405627865344286, 0.04228793457150459, 0.0015948248328641057, -0.0035072772298008204, -0.02352450229227543, -0.023176783695816994, -0.0023554593790322542, 0.03033176250755787, -0.027977975085377693, -0.02837918885052204, -0.01971297152340412, -0.0406830795109272, 0.02389896847307682, 8.708638051757589e-05, -0.018081368878483772, 0.009542201645672321, -0.022414477542042732, 0.012999326921999454, 0.010525175370275974, 0.0071549792774021626, 0.031000452116131783, -0.008244943805038929, 0.013460722751915455, -0.011982918716967106, 0.006546471733599901, -0.029288606718182564, -0.01187592837959528, 0.020368287339806557, 0.0024290152359753847, -0.022026637569069862, -0.02955608256161213, 0.03790133073925972, -0.017185324802994728, 0.016743989661335945, -0.019860083237290382, 0.006161975208669901, -0.01927163638174534, 0.024728143587708473, 0.015072264708578587, 0.0014786400133743882, 0.03209710493683815, 0.006449511740356684, 0.00015264931425917894, 0.020047316327691078, -0.05702585354447365, 0.004881434608250856, -0.020234549418091774, -0.031000452116131783, -0.006874129641801119, -0.010458306409418583, -0.010772590525448322, -0.02344425953924656, 0.010979884304106236, -0.005520033184438944, 0.01647651381790638, 0.20948709547519684, -0.011387784965336323, 0.017680155113339424, 0.03881074860692024, -0.019605981186032295, 0.0254503283649683, 0.01126073393970728, 0.003915178123861551, -0.018362218514084816, 0.0013131393352523446, -0.016904475167393684, 0.0013724855380132794, -0.04239492490887642, 0.016342775896191597, 0.004674140829592943, -0.012237020768225193, -0.01764003373682499, -0.030438752844929695, 0.003995420876890421, 0.01749292202293873, 0.0007217669044621289, 0.011655260808765888, -0.02019442804157734, -0.014751293696463108, 0.006680209655314684, -0.018348844721913338, -0.01357439998537302, -0.0032498317304998636, 0.02646673657000065, -0.0029322041664272547, -0.013855249620974064, 0.011588391847908497, 0.004162593279033899, 0.0368046797811985, -0.061144981533288956, 0.003945269156247377, 0.016971344128251076, -0.019311757758259773, 0.015165881253778934, 0.02080962248146534, -0.0011401158990338445, -0.04292987659573555, -0.03308676555752754, -0.004363200161606073, 0.007027928251773119, 0.0037145710084587336, -0.0004847999953199178, -0.033915940672159195, 0.012899023480713367, 0.013708137907087803, -0.039024729281663895, -0.004373230505734682, 0.008873512037098408, 0.019766466692090034, -0.017827266827225685, 6.368224421748891e-05, -0.005152253899723291, 0.011942797340452671, 0.027870984748005867, 0.010103900916874409, -0.01194948423653841, 0.013748259283602238, -0.003129467600956559, 0.02468802221119404, 0.01879017986357212, 0.023618118837475777, -0.05788177624344826, -0.006737048272043467, -0.0013323641614988446, -0.024647900834679604, 0.001303108991123736, 0.021237583830952644, -0.0312679298222065, 0.014697798527777195, -0.015312992967665195, -0.010083840228617191, 0.007723365444689989, 0.0005650427774526179, 0.015553721226751804, 0.0376071073114872, -0.021010229364037514, 0.012477749027311802, 0.000505696574691683, 0.0010122290113940835, -0.023925716057419777, -0.007770173717290163, -0.0060951062478125095, 0.031000452116131783, -0.002434030408039689, -0.00862609688192606, -0.00219330214895308, 0.012838841415941715, 0.006757108960300684, 0.011895989067852497, 0.010953136719763279, 0.036938417702913284, -0.019392000511288643, 0.007810295093804598, -0.00663005793467164, 0.02002056874334812, -0.02435367740690708, 0.020395034924149513, -0.0003999600012321025, 0.00792397279292345, 0.007429142016917467, -0.025156104937195778, -0.004680827725678682, 0.0071014841087162495, 0.0218795258551836, -0.0361894853413105, -0.02050202526152134, -0.011240673251450062, 0.005048607010394335, -0.015727581456303596, 0.007402394432574511, -0.007964094169437885, 0.008452237583696842, -0.0161555428057909, -0.016917848959565163, 0.008492358960211277, 0.008846764452755451, -0.02583816833794117, -0.018442461267113686, 0.008425489999353886, -0.012638234533369541, -0.0036142675671726465, -0.031749386340379715, -0.012865589000284672, -0.00892700720578432, -0.006419420707970858, 0.022454598918557167, -0.029288606718182564, 0.005245870444923639, -0.004303018096834421, -0.026707464829087257, -0.0030174620915204287, -0.014443696476519108, -0.011695382185280323, -0.01426983717828989, -0.009428524412214756, -0.014229715801775455, 0.020622389391064644, 0.00709479721263051, -0.008826703764498234, 0.024072827771306038, -0.01957923360168934, 0.0148181626573205, 0.0024089545477181673, -0.007168353069573641, -0.009488706476986408, -0.009174422360956669, -0.006406046915799379, 0.010224265046417713, -0.02351112850010395, 0.020542146638035774, -0.019445495679974556, -0.01594156213104725, -0.024420546367764473, 0.013219994492828846, -0.018295349553227425, -0.0027767338324338198, -0.0017586537869647145, 0.000809532415587455, -0.007088110316544771, -0.005663801450282335, -0.010117274709045887, -0.16626299917697906, 0.01840233989059925, 0.0032130538020282984, -0.0034370648209005594, 0.01772027648985386, -0.0037078841123729944, 0.03394268825650215, 0.0058476910926401615, -0.016998091712594032, -0.030973704531788826, 0.024728143587708473, -0.007415768224745989, -0.011815746314823627, -0.0025560662616044283, -0.027817489579319954, 0.008893572725355625, -0.03241807594895363, 0.0007363944896496832, 0.030732976272702217, 0.03819555416703224, 0.04445448890328407, -0.02853967435657978, 0.008659531362354755, 0.040576089173555374, 0.01663699932396412, -0.004904838744550943, -0.0094017768278718, -0.004175967071205378, -0.0032966400031000376, -0.030198024585843086, 0.005991459358483553, 0.010358002968132496, 0.0063425214029848576, -0.016489887610077858, -0.003184634493663907, 0.0048112221993505955, 0.0015179255278781056, -0.009000563062727451, -0.01117380429059267, 0.02321690507233143, 0.014216342009603977, 0.037928078323602676, 0.018429087474942207, -0.0010439917678013444, -0.012939144857227802, 0.0337287075817585, 0.00381821789778769, -0.037794340401887894, 0.01342728827148676, 0.018308723345398903, 0.03247157111763954, -0.012658295221626759, 0.013179873116314411, -0.001471953117288649, 0.027188921347260475, -0.018281975761055946, -0.018308723345398903, 0.024393798783421516, -0.009722747839987278, 0.0042461794801056385, 0.028994383290410042, -0.025624187663197517, 0.03196336701512337, 0.011447967030107975, 0.012792033143341541, -0.013748259283602238, -0.021545181050896645, 0.0005006814026273787, -0.03370195999741554, 0.0026162483263760805, -0.010645539499819279, -0.005914560053497553, -0.0013323641614988446, 0.006643431726843119, 0.025624187663197517, 0.04739672318100929, -0.015486852265894413, 0.016342775896191597, 0.0036911668721586466, -0.022080132737755775, -0.010083840228617191, -0.004129158798605204, 0.012150091119110584, -0.006549815181642771, 0.009120927192270756, -0.03132142499089241, -0.00816470105201006, -0.03124118037521839, -0.012230333872139454, -0.02273544855415821, 0.02590503729879856, -0.03324725106358528, 0.0022451255936175585, 0.007703304756432772, 0.007315464783459902, 0.0027232386637479067, -0.006763795856386423, -0.03683142736554146, 0.013601147569715977, -0.042662400752305984, -0.021478312090039253, 0.006596623454242945, -0.025584066286683083, 0.016195664182305336, 0.056651387363672256, 0.013895370997488499, -0.02313666231930256, -0.01396223995834589, -0.005299365613609552, -0.014309958554804325, 0.013046135194599628, 0.009502080269157887, -0.019365252926945686, 0.011936110444366932, -0.01559384260326624, 0.00978961680084467, 0.01249112281948328, -0.006225500721484423, 0.014604181982576847, 0.0025142731610685587, 0.048841092735528946, 0.0015973324188962579, 0.006656805519014597, 0.004299674648791552, -0.018683189526200294, -0.013146438635885715, -0.12271792441606522, -0.02181265689432621, -0.012156778015196323, 0.041565749794244766, 0.013922118581831455, 0.03287278488278389, -0.024955498054623604, -0.012872275896370411, -0.0200339425355196, 0.04424050822854042, -0.01024432573467493, -0.0006139407050795853, -0.01654338277876377, 0.03217734768986702, 0.014323332346975803, 0.0023303835187107325, -0.003961986396461725, -0.01396223995834589, -0.008753147907555103, 0.019351879134774208, -0.0033350896555930376, -0.013400540687143803, 0.040790069848299026, 0.015326366759836674, 0.01404248271137476, -0.009107553400099277, -0.006603310350328684, 0.022615084424614906, 0.010063779540359974, 0.03568128123879433, 0.01210996974259615, -0.014256463386118412, 0.01764003373682499, -0.020140932872891426, -0.01856282539665699, -0.031829629093408585, -0.021143967285752296, -0.00947533268481493, 0.04070982709527016, -0.008806643076241016, 0.0007627241429872811, -0.02182603068649769, -0.016730615869164467, -0.017920883372426033, 0.02002056874334812, 0.007288717199116945, -0.011227299459278584, 0.026667343452572823, -0.003162902081385255, -0.01373488549143076, -0.05159609392285347, -0.004694201517850161, -0.017426053062081337, 0.0054531642235815525, 0.009729434736073017, 0.0009487034403719008, 0.02234760858118534, -0.02397921122610569, -0.018843675032258034, -0.035387057811021805, -0.0006544800125993788, -0.012136717326939106, -0.01949899084866047, 0.002054549055173993, 0.031588900834321976, 0.009227917529642582, -0.012544617988169193, 0.00870633963495493, 0.002357131103053689, -0.04054934158921242, 0.006482946220785379, 0.026827828958630562, -0.018054621294140816, 0.036082495003938675, -0.03528006747364998, 0.01647651381790638, -0.009829738177359104, -0.004506968427449465, 0.029128121212124825, 0.026707464829087257, -0.00978292990475893, -0.007235222030431032, -0.00831849966198206, -0.021919647231698036, 0.024099575355648994, 0.007295404095202684, 0.025945158675312996, 0.012624860741198063, -0.008251630701124668, -0.031669143587350845, -0.020782874897122383, 0.027870984748005867, 0.036938417702913284, -0.01602180488407612, 0.009522140957415104, 0.01457743439823389, 0.002449075924232602, -0.007582940626889467, -0.011768938042223454, 0.011595078743994236, -0.03544055297970772, 0.005496629048138857, -0.04787817969918251, 0.01933850534260273, -0.013179873116314411, -0.010351316072046757, 0.010083840228617191, -0.006125197280198336, 0.040950555354356766, -0.020247923210263252, 0.001198626239784062, -0.016182290390133858, -0.014590808190405369, -0.0005504151922650635, -0.005212435964494944, -0.016302654519677162, -0.02870015986263752, -0.023417511954903603, 0.02915486879646778, -0.012076535262167454, 0.026587100699543953, 0.011989605613052845, -0.004500281531363726, -0.0024708083365112543, 0.007656496483832598, 0.01271847728639841, 0.009281412698328495, 0.0016558427596464753, 0.0048112221993505955, 0.029957296326756477, -0.014684424735605717, -0.003841622034087777, -0.004797848407179117, -0.017519669607281685, -0.014390201307833195, 0.02792447991669178, 0.03172263875603676, 0.00047727723722346127, 0.00877320859581232, 0.002572783501818776, 0.0023387421388179064, 0.011889302171766758, -0.021545181050896645, 0.0014092634664848447, 0.006914251018315554, -0.008371994830667973, 0.029128121212124825, -0.008592662401497364, -0.011427906341850758, 0.005673831794410944, -0.004376573953777552, 0.033140260726213455, 0.027657004073262215, -0.004139189142733812, -0.006028237286955118, -0.011581704951822758, 0.018857048824429512, -0.0263731200248003, -0.01623578555881977, -0.021839404478669167, -0.008873512037098408, -0.02320353128015995, 0.00978961680084467, 0.0004559627559501678, 0.0032598620746284723, -0.01133428979665041, -0.010999944992363453, -0.03410317376255989, -0.01856282539665699, 0.004894808400422335, -0.003091017948463559, -0.02498224563896656, 0.011728816665709019, -0.011006631888449192, -0.0029405627865344286, 0.017372557893395424, 0.01148140151053667, -0.011006631888449192, -0.0017686841310933232, 6.467483035521582e-05, -0.012511183507740498, 0.020475277677178383, 0.016957970336079597, -0.0061419145204126835, -0.012464375235140324, 0.018281975761055946, 0.031669143587350845, -0.009254665113985538, 0.016035178676247597, -0.018041247501969337, 0.007837043143808842, 0.014323332346975803, 0.011895989067852497, 0.014617555774748325, -0.001909108948893845, -0.002079624915495515, 0.003811531001701951, 0.038249049335718155, 0.0031194372568279505, -0.008104518987238407, 0.00030049242195673287, 0.01710508204996586, -0.011962858028709888, -0.0023387421388179064, 0.009301473386585712, 0.0011576690012589097, -0.02784423716366291, 0.019552486017346382, 0.00555012421682477, -0.027657004073262215, -0.028994383290410042, 0.027523266151547432, 0.018549451604485512, 0.0331135131418705, -0.0008826703415252268, -0.0014752965653315187, -0.0010013628052547574, -0.00028084966470487416, 0.024942124262452126, 0.010571983642876148, -0.01654338277876377, 0.04795842245221138, -0.027202295139431953, 0.021558554843068123, 0.003463812405243516, 0.016690494492650032, 0.028325693681836128, -0.001205313135869801, 0.004109098110347986, -0.024487415328621864, 0.016302654519677162, -0.005423073191195726, -0.01801449991762638, 0.004814565647393465, 0.0022367669735103846, -0.01559384260326624, 0.014871657826006413, -0.016382897272706032, 0.0076966178603470325, -0.0069075641222298145, -0.037928078323602676, 0.06842032819986343, 0.005673831794410944, -0.014523939229547977, 0.018990786746144295, 0.01725219376385212, 0.010571983642876148, 0.024153070524334908, -0.024728143587708473, -0.004991768393665552, -0.04731648042798042, -0.0027784055564552546, 0.023564623668789864, -0.04159249737858772, -0.013828502036631107, 0.014069230295717716, 0.016035178676247597, -0.01786738820374012, 0.015834571793675423, -0.02993054874241352, -0.0019509020494297147, 0.011916049756109715, 0.017813893035054207, 0.014590808190405369, -0.004272927064448595, -0.007830356247723103, -0.020929986611008644, 0.016356149688363075, 0.007061362732201815, -0.015139133669435978, -0.01987345702946186, -0.007315464783459902, 0.006021550390869379, -0.03324725106358528, -0.032525066286325455, -0.002489197300747037, -0.012123343534767628, 0.009756182320415974, -0.011227299459278584, 0.022775569930672646, 0.01087289396673441, -0.03605574741959572, -0.007368959952145815, -0.027015062049031258, -0.026359746232628822, -0.00924129132181406, -0.012845528312027454, -0.004978394601494074, 0.004503624979406595, -0.04913531616330147], "209fc505-f77b-42eb-a0ec-3c89bc7993dd": [0.009521962143480778, 0.020916443318128586, 0.0028785010799765587, -0.023572498932480812, -0.001817738520912826, -0.004887143615633249, -0.01168000791221857, -0.01229754090309143, -0.009800847619771957, -0.035352110862731934, -0.014860634692013264, 0.016454268246889114, -0.002116544870659709, -0.0022958286572247744, 0.010677346028387547, 0.03285541757941246, 0.0004967655404470861, -8.414303010795265e-05, 0.002498352900147438, -0.018672075122594833, 0.010006692260503769, 0.028658846393227577, -0.019933702424168587, -0.037609755992889404, -0.0375300757586956, 0.029827512800693512, -0.00415008794516325, -0.00111471361014992, 0.0035491553135216236, -0.0030079837888479233, 0.005501356441527605, -0.004229769576340914, -0.05123532563447952, 0.010458221659064293, -0.007715843617916107, -0.008054490201175213, -0.024077150970697403, 0.015325444750487804, 0.012244419194757938, -0.011122236028313637, 0.008333376608788967, 0.008486099541187286, -0.0007395456777885556, 0.014223181642591953, -0.013472845777869225, 0.017954939976334572, 0.020836761221289635, -0.027357378974556923, -0.017769016325473785, 0.0023605700116604567, 0.023094410076737404, 0.0416204035282135, -0.021301571279764175, -0.018844719976186752, -0.000898079015314579, -0.015471527352929115, 0.017861979082226753, 0.017078442499041557, -0.008672024123370647, 0.017808856442570686, -0.004551816266030073, 0.0019356010016053915, -0.018592393025755882, 0.0022144869435578585, -0.0331210233271122, -0.0023589099291712046, 0.014037257060408592, -0.00563083915039897, -0.008366577327251434, 0.006122209597378969, 0.03856593742966652, 0.02090316265821457, -0.0067762634716928005, 0.0034927139058709145, 0.025896549224853516, -0.017609653994441032, -0.030358722433447838, 0.0031756472308188677, 0.006421016063541174, -0.010969512164592743, 0.006201891228556633, -0.014103658497333527, -0.019057203084230423, 0.009216515347361565, 0.024701323360204697, 0.008519300259649754, -0.003479433711618185, 0.02852604351937771, 0.013492765836417675, -0.014050537720322609, 0.019907141104340553, 0.005873204208910465, 0.011859291233122349, 0.02285536378622055, -0.013472845777869225, 0.008027929812669754, -0.00024527020286768675, 0.036494214087724686, -0.0016509050037711859, -0.01466143038123846, 0.0118792112916708, 0.024953648447990417, 0.006281572859734297, -0.012304180301725864, -0.0019090404966846108, 0.004638138227164745, 0.00456509692594409, -0.02337329462170601, -0.006022607441991568, 0.0003438347775954753, -0.022881925106048584, 0.014143499545753002, 0.012244419194757938, -0.029694709926843643, 0.01617538183927536, -0.025006769225001335, -0.003076045075431466, -0.005610919091850519, -0.02167341858148575, -0.00476762093603611, 0.009395798668265343, -0.008439619094133377, 0.040026769042015076, -0.01945561170578003, 0.02251007780432701, -0.012642827816307545, 0.0068592652678489685, -0.015219202265143394, -0.011241758242249489, -0.015444966964423656, 0.03505994379520416, 0.031208660453557968, 0.007370556239038706, 0.017437009140849113, 0.0060690888203680515, -0.005434955004602671, -0.025179414078593254, 0.0009271296439692378, -0.02310768887400627, -0.0068526254035532475, 0.016148822382092476, 0.012543225660920143, -0.017171403393149376, 0.002456852002069354, -0.004236409906297922, 0.009415719658136368, 0.020889881998300552, 0.01592305675148964, -0.01936265081167221, -0.01583009585738182, -0.007908407598733902, 0.0228952057659626, 0.005348633509129286, -0.006311453878879547, 0.026892568916082382, -0.002300808671861887, -0.003356591099873185, 0.0016641853144392371, 0.002154725603759289, -0.0005606768536381423, 0.007005348335951567, 0.020836761221289635, -0.004239729605615139, 0.01689251698553562, -0.007284234277904034, 0.011925692670047283, 0.026998812332749367, -0.002632815856486559, -0.026746487244963646, 0.017742455005645752, 0.015936337411403656, 0.002045163419097662, -0.013393163681030273, 0.02285536378622055, 0.004209849052131176, -0.01953529380261898, 0.019561855122447014, -0.008572421967983246, -0.02030554972589016, 0.0021646858658641577, 0.018353348597884178, 0.012423703446984291, 0.005388474091887474, 0.0300134364515543, -0.03280229493975639, -0.025139572098851204, 0.019907141104340553, 0.01257642637938261, -0.004674659110605717, 0.003871202003210783, 0.00563083915039897, 0.012496745213866234, -0.015219202265143394, 0.00456509692594409, -0.5983563661575317, -0.02055787481367588, -0.009183314628899097, -0.006112249568104744, -0.011899132281541824, 0.029163498431444168, 0.033864717930555344, 0.001990382093936205, -0.0416204035282135, 0.04209849238395691, 0.007264313753694296, 0.005962846335023642, -0.005952886305749416, -0.01652066968381405, 0.00032163181458599865, -0.025059891864657402, 0.013798212632536888, -0.005594318732619286, -0.04124855250120163, -0.0022227871231734753, 0.0022061867639422417, 0.015418406575918198, -0.02932286076247692, 0.03142114728689194, -0.005637479480355978, 0.012768990360200405, 0.015644172206521034, 0.00024298764765262604, 0.006992068141698837, 0.012948274612426758, -0.01936265081167221, -0.002065083710476756, -0.0016733154188841581, 0.0037085185758769512, 0.04273594543337822, -0.015405126847326756, -0.01487391535192728, 0.012104976922273636, 0.010610944591462612, 0.024701323360204697, -0.028579166159033775, -0.0007910067797638476, 0.04512639716267586, 0.008353296667337418, 0.027078494429588318, -0.016374586150050163, 0.0119788134470582, 0.027224576100707054, 0.007901767268776894, -0.02136797271668911, -0.005637479480355978, 0.005909725092351437, -0.0034429130610078573, 0.01259634643793106, 0.026892568916082382, -0.028844771906733513, 0.007656082045286894, 0.0060989693738520145, -0.01487391535192728, 0.001166174653917551, -0.003861241741105914, 0.008293535560369492, -0.014475506730377674, -0.01586993597447872, -0.0028303598519414663, 0.012377222068607807, -0.03081025369465351, 0.0009304496925324202, 0.004930304363369942, -0.004163368139415979, 0.008140812627971172, 0.022868644446134567, -0.008871227502822876, -0.003977444488555193, 0.02873852849006653, 0.03625516965985298, 0.036069244146347046, -0.02897757478058338, 0.01727764680981636, 0.01053790282458067, 0.035856761038303375, -0.014568468555808067, -0.027941711246967316, -0.014953596517443657, 0.03822065144777298, 1.3565600056608673e-05, 0.008632183074951172, 0.016016019508242607, 0.04735748469829559, 0.015179361216723919, -0.021939024329185486, 0.036972302943468094, -0.005332033149898052, -0.025816867128014565, 0.0021812862250953913, 0.01872519589960575, -0.020956283435225487, -0.009986771270632744, 0.009448920376598835, -0.03381159529089928, 0.0032769094686955214, -0.026892568916082382, 0.009741086512804031, 0.010737107135355473, -0.027251137420535088, 0.02426307462155819, 0.006533898413181305, 0.0475965291261673, 0.0332803837954998, -0.033519431948661804, -0.03184611350297928, -0.035139624029397964, 0.003364891279488802, 0.02059771679341793, 0.010318778455257416, -0.03593644127249718, 0.008784906007349491, 0.01775573566555977, 0.013652129098773003, -0.03187267482280731, -0.00022742482542525977, 0.016919078305363655, -0.005840003956109285, -0.014528627507388592, 0.03171331062912941, -0.002138125244528055, 0.005936285946518183, 0.0062649729661643505, -0.010796869173645973, 0.003798160469159484, 0.014780953526496887, 0.0016434348654001951, -0.0021646858658641577, -0.0025979550555348396, -0.01183273084461689, 0.0050033461302518845, -0.007556479889899492, -0.014236461371183395, -0.014170059934258461, -0.01536528579890728, -0.0070783901028335094, 0.002901741536334157, 0.0124701838940382, -0.01629490591585636, -0.014834074303507805, -0.008891148492693901, -0.003605596488341689, 0.01727764680981636, -0.007928327657282352, 0.007583040744066238, 0.00032785694929771125, 0.007954888977110386, -0.03221796080470085, 0.006122209597378969, -0.002423651283606887, -0.009913730435073376, -0.003519274527207017, -0.007264313753694296, -0.005674000363796949, -0.0035856759641319513, -0.008247055113315582, 0.0353255495429039, -0.04440926015377045, -0.002775578759610653, -0.022456955164670944, 0.010604304261505604, -0.007563120219856501, 0.008120891638100147, -0.00863882340490818, -0.04491391032934189, -0.0065206182189285755, -0.0017314166761934757, 0.005278911907225847, -0.008439619094133377, -3.62873324775137e-05, 0.03171331062912941, -0.03022591955959797, 0.01638786680996418, 0.0004664698790293187, -0.0033582511823624372, 0.0103652598336339, 0.01208505593240261, -0.018313508480787277, -0.003778239944949746, 0.01500671822577715, 0.016666753217577934, 0.017078442499041557, -0.001392769510857761, -0.015418406575918198, 0.028499484062194824, -0.003003003541380167, 0.01126167830079794, 0.0020103026181459427, 0.0011919052340090275, -0.009555162861943245, 0.01872519589960575, 0.014820793643593788, 0.014555188827216625, 0.04286874830722809, 0.03997364640235901, 0.007569760549813509, -0.007695923093706369, 0.006504017859697342, -0.013213880360126495, 0.006401095539331436, -0.011102315038442612, 0.023612340912222862, 0.006517298053950071, 0.024369316175580025, 0.0007154751801863313, -0.0029980235267430544, -0.008200573734939098, -0.021885903552174568, -0.03405063971877098, 0.020013384521007538, 0.01294163428246975, -0.005683960393071175, 0.02924317866563797, 0.00743695767596364, -0.00431941170245409, -0.0006333034252747893, 0.012144817039370537, 0.013094357214868069, 0.023187370970845222, 0.00966140441596508, -0.026613684371113777, -0.0002639455778989941, -0.025803586468100548, -0.00794160831719637, -0.04873863235116005, -0.00951532181352377, -0.019136885181069374, 0.00427625048905611, -0.012025294825434685, 0.035166185349226, 0.019296249374747276, 0.04900423809885979, -0.016879238188266754, 0.024276355281472206, 0.0008756685419939458, -0.01208505593240261, 0.029004134237766266, 0.013247081078588963, -0.026826167479157448, -0.004203209187835455, 0.006762983277440071, 0.017596373334527016, 0.029163498431444168, -0.010803508572280407, 0.02847292274236679, 0.017091721296310425, 0.022762402892112732, -0.008691944181919098, 0.011646807193756104, 0.010345338843762875, 0.011314800009131432, 0.01466143038123846, 0.018871279433369637, 0.0018310188315808773, 0.01982746087014675, 0.0012450263602659106, 0.018074462190270424, 0.00974772684276104, -0.011932333000004292, 0.014382544904947281, -0.006527258083224297, -0.012676028534770012, -0.05197902023792267, -0.019442331045866013, 0.012549865990877151, -0.04472798854112625, -0.04124855250120163, -0.008054490201175213, -0.005222470499575138, 0.0030810253228992224, 0.011533924378454685, 0.00032266933703795075, 0.008930989541113377, 0.03638797253370285, -0.021633578464388847, -0.014050537720322609, -0.015285603702068329, 0.03559115529060364, 0.0353255495429039, 0.003036204259842634, 0.01121519785374403, -0.017569812014698982, 0.014993437565863132, -0.0012118256418034434, 0.042496901005506516, -0.023174090310931206, -0.013758371584117413, 0.005674000363796949, 0.00489378347992897, -0.005511316936463118, 0.0015421726275235415, 0.0055976384319365025, 0.00458501698449254, -0.018446311354637146, 0.012676028534770012, -0.007503359112888575, 0.001074042753316462, -0.035909879952669144, 0.004568416625261307, 0.03766287863254547, 0.009860608726739883, 0.011221838183701038, -0.01363884937018156, -0.0025630942545831203, 0.004239729605615139, 0.014037257060408592, -0.00476762093603611, -0.04188600927591324, 0.010657425969839096, 0.024568520486354828, -0.013678689487278461, 0.029774390161037445, -0.012144817039370537, 0.021699979901313782, 0.0005768622504547238, 0.006112249568104744, 0.0036288369446992874, -0.021514056250452995, -0.02958846651017666, 0.03553803265094757, 0.02932286076247692, -0.020996125414967537, 0.016361307352781296, -0.04395773261785507, 0.004067086149007082, 0.0012790571199730039, -0.022722560912370682, 0.022974886000156403, -0.014568468555808067, 0.0119788134470582, -0.02642776072025299, 0.02239055372774601, 0.009435639716684818, 0.015617610886693, 0.022589758038520813, -0.009800847619771957, 0.0025547940749675035, 0.008486099541187286, 0.006168690510094166, 0.002073383890092373, -0.01932280883193016, 0.02575046569108963, 0.01087655033916235, -0.018313508480787277, 0.019654816016554832, 0.010591024532914162, 0.01621522381901741, -0.009455560706555843, -0.011082394979894161, -0.0021763062104582787, 0.013393163681030273, 0.013154118321835995, 0.011799530126154423, -0.003169007133692503, 0.024488838389515877, 0.028340119868516922, 0.02204526774585247, 0.02132813259959221, -0.02996031567454338, 0.00018250012362841517, 0.032669492065906525, 0.003449553158134222, 0.007583040744066238, -0.004943584557622671, 0.004751020576804876, -0.016746435314416885, 0.01596289873123169, -0.028924452140927315, -0.01377165224403143, -0.020584436133503914, -0.006733102723956108, -0.03442249074578285, -0.014834074303507805, -0.005053147207945585, 0.017808856442570686, -0.03657389432191849, -0.005816763266921043, -0.021978866308927536, -0.017941659316420555, -0.037131667137145996, -0.001899080234579742, 0.02422323264181614, -0.007729123812168837, 0.0028851411771029234, -0.008519300259649754, -0.02749018184840679, -0.0024535320699214935, -0.04316091537475586, 0.005707201082259417, 0.011779609136283398, 0.0016915758606046438, -0.014037257060408592, -0.026573842391371727, 0.0069190263748168945, 0.02320065163075924, 0.011593685485422611, 0.0028735208325088024, -0.010179335251450539, -0.01515280082821846, -0.008911068551242352, -0.039522118866443634, 0.0017197964480146766, -0.026706645265221596, -0.004196568857878447, 0.018021341413259506, 0.00033470458583906293, 0.02549814060330391, -0.031819555908441544, 0.03734415024518967, 0.0237584225833416, 0.0020468232687562704, -0.009063792414963245, -0.0010914731537923217, 0.011288239620625973, 0.02047819457948208, 0.010909751057624817, 0.01112887542694807, 0.0063247340731322765, -0.007091670297086239, -0.011274958960711956, -0.0009960210882127285, 0.0023904505651444197, -0.014395824633538723, 0.017251085489988327, -0.02150077559053898, -0.017596373334527016, 0.0038247210904955864, -0.03731758892536163, -0.015245762653648853, 0.010650785639882088, -0.01630818471312523, 0.01843303069472313, 0.02260303869843483, -0.0022974887397140265, 0.015577769838273525, -0.022842083126306534, 0.02030554972589016, -0.026122312992811203, -0.03205860033631325, 0.013731811195611954, -0.014422385953366756, 0.01219129841774702, 0.016122261062264442, -0.012649468146264553, 0.013944295234978199, -0.02634807862341404, -0.0435062013566494, -0.0018941001035273075, 0.021142207086086273, 0.0030013436917215586, -0.018207265064120293, -0.0015230822609737515, 0.002186266239732504, -0.021699979901313782, 0.0156574510037899, -0.023545939475297928, 0.01903064362704754, -0.0027988192159682512, 0.01673315465450287, 0.01061758492141962, 0.005016626324504614, 0.008220493793487549, -0.029641587287187576, -0.010810148902237415, -0.032377324998378754, -0.024395877495408058, 0.01957513391971588, 0.003645437303930521, 0.0055146366357803345, 0.0015911436639726162, -0.01779557764530182, -0.017808856442570686, 0.034714654088020325, 0.0023489496670663357, -0.0026676764246076345, -0.01268266886472702, 0.01690579764544964, 0.026507440954446793, 0.03136802464723587, 0.017171403393149376, 0.009807487949728966, 0.013678689487278461, 0.019867300987243652, 0.025179414078593254, 0.009727805852890015, 0.00806777086108923, -0.005889804568141699, -0.010398460552096367, 0.0025630942545831203, 0.02383810468018055, -0.0002784708922263235, -0.0054847560822963715, 0.014369264245033264, 0.008884508162736893, 0.048924557864665985, -0.0024634920991957188, 0.016188662499189377, -0.02225775085389614, -0.001229256042279303, 0.03264293074607849, -0.010398460552096367, -0.011779609136283398, 0.021354692056775093, -0.041089192032814026, -0.013486125506460667, -0.002692576963454485, 0.014966877177357674, -0.001889119972474873, -0.010378539562225342, -0.01061758492141962, -0.003768279915675521, -0.004794181790202856, 0.00853258091956377, 0.02235071361064911, -0.03150082752108574, 0.0034628333523869514, -0.02783546969294548, -0.001682445639744401, -0.020703958347439766, -0.017224524170160294, 0.02370530180633068, 0.019522013142704964, -0.015498088672757149, -0.03455529361963272, -0.004216489382088184, -0.009754366241395473, -0.03163363039493561, 0.0012151456903666258, -0.026361359283328056, 0.0029581827111542225, -0.01787525787949562, -0.0280479546636343, -0.013691970147192478, -0.007423677481710911, 0.018738476559519768, -0.013001395389437675, 0.011055834591388702, -0.016998760402202606, -0.016826117411255836, 0.0003679053043015301, 0.004674659110605717, 0.055139727890491486, -0.008525940589606762, 0.021208608523011208, 0.015298884361982346, -0.014329423196613789, -0.015604330226778984, -0.002498352900147438, -0.005517956800758839, 0.00015853335207793862, 0.0217132605612278, 0.009369238279759884, -0.01731748692691326, 0.017609653994441032, -0.00842633843421936, 0.002581354696303606, -0.031607069075107574, -0.01843303069472313, 0.005338673014193773, 0.008592342026531696, 0.014953596517443657, -0.014595028944313526, 0.006155410315841436, -0.021421093493700027, 0.03699886426329613, 0.0098738893866539, -0.03264293074607849, -0.026799608021974564, -0.025551261380314827, -0.04095638915896416, 0.01487391535192728, 0.0217531006783247, 0.021607017144560814, 0.012012014165520668, -0.0019654815550893545, 0.0010142815299332142, -0.014714552089571953, -0.04204536974430084, 0.011075754649937153, -0.013041236437857151, 0.04180632531642914, -0.026082472875714302, -0.01391773484647274, 0.026414480060338974, 0.0027506782207638025, -0.02897757478058338, -0.028074514120817184, -0.02532549574971199, 0.031128980219364166, 0.016799556091427803, -0.0006623540539294481, -0.023001447319984436, 0.004903743974864483, -0.012649468146264553, 0.018539272248744965, -0.0239177867770195, -0.013140838593244553, 0.014223181642591953, 0.0038180809933692217, 0.00757640041410923, 0.00023468746803700924, -0.029136937111616135, -0.011414402164518833, -0.011806170456111431, 0.016361307352781296, -0.0020484833512455225, -0.02694569155573845, -0.006749703083187342, -0.021646859124302864, -0.02953534573316574, -0.028286999091506004, 0.009900449775159359, -0.00012948273797519505, 0.010119574144482613, -0.015617610886693, 0.023984188213944435, 0.04095638915896416, -0.03086337447166443, 0.031819555908441544, -0.001724776579067111, 0.0008242074400186539, -0.049137040972709656, 0.012642827816307545, 0.0008756685419939458, -0.012536585330963135, 0.03142114728689194, 0.000361057638656348, -0.013838052749633789, -0.04541856050491333, 0.004455534275621176, 0.013678689487278461, -0.027649546042084694, -0.023120969533920288, 0.00832009594887495, 0.0217531006783247, 0.019548574462532997, -0.03885810449719429, -0.012782271020114422, 0.017888538539409637, -0.00610892940312624, 0.009442280046641827, 0.04183288663625717, 0.003990724682807922, 0.02167341858148575, -0.018247107043862343, -0.019349370151758194, 0.01353260688483715, 0.003281889483332634, -0.011022633872926235, -0.01209169626235962, 0.015099680051207542, -0.006225131917744875, -0.011082394979894161, -0.031474266201257706, 0.004037205595523119, -0.0019472212297841907, 0.007503359112888575, -0.024847406893968582, -0.010245736688375473, 0.01498015783727169, -0.012178017757833004, -0.03505994379520416, 0.03240388631820679, -0.03877842053771019, -0.01868535578250885, -0.002528233453631401, -0.0038778421003371477, 0.00422644941136241, -0.013486125506460667, -0.0006034228135831654, 0.028419801965355873, 0.017344048246741295, 0.013054516166448593, -0.013652129098773003, -0.01690579764544964, -0.027383940294384956, -0.0045053353533148766, -0.022031987085938454, 0.03221796080470085, 0.002332349307835102, 0.006334694102406502, -0.008984110318124294, 0.009734446182847023, -0.015099680051207542, 0.035352110862731934, -0.029721269384026527, 0.02221791073679924, 0.008160732686519623, 0.023731863126158714, -0.004369212780147791, -0.02460836060345173, -0.0021846063900738955, -0.024794286116957664, 0.0353255495429039, 0.0004585847200360149, 0.03864561766386032, 0.007636161986738443, 0.007483438588678837, -0.0239576268941164, 0.0008474479545839131, 0.0005756171885877848, 0.027994833886623383, 0.032881975173950195, -0.0012417063117027283, -0.015776975080370903, -0.008466179482638836, 0.01796822063624859, 0.02600279077887535, -0.013247081078588963, 0.006826064549386501, 0.00507638743147254, -0.01834006793797016, 0.02974783070385456, -0.0108566302806139, -0.032324206084012985, 0.01038517989218235, -0.024568520486354828, 0.01466143038123846, 0.0012840372510254383, 0.016440987586975098, 0.03264293074607849, -0.01681283675134182, 0.011314800009131432, -0.03306790068745613, 0.028446363285183907, -0.0009478800930082798, -0.0034628333523869514, 0.009774287231266499, 0.01596289873123169, -0.0069721476174890995, -0.0176229327917099, 0.02652072161436081, -0.010126214474439621, 0.013021315447986126, -0.007237753365188837, 0.006998708471655846, -0.023718582466244698, 0.021354692056775093, 0.008997390978038311, -0.005743721500039101, 0.02839324250817299, 0.009521962143480778, 0.01694563962519169, -0.004883823450654745, -0.03383815661072731, 0.015325444750487804, 0.023931067436933517, 0.0014367604162544012, -0.034581851214170456, 0.0022493477445095778, -0.019163446500897408, -0.023346735164523125, -0.009555162861943245, -0.0039940448477864265, 0.0023290293756872416, 0.1977168321609497, 0.008014650084078312, -0.001464981003664434, 0.04706531763076782, -0.0093825189396739, -0.01160032581537962, 0.02158045768737793, -0.008930989541113377, -0.020199308171868324, 0.0008125872118398547, -0.013200599700212479, 0.006082369014620781, -0.028074514120817184, 0.015033278614282608, 0.010265657678246498, -0.0017629573121666908, -0.003562435507774353, -0.027078494429588318, 0.02213822863996029, 0.006885826122015715, -0.0034860738087445498, 7.532409654231742e-05, -0.02320065163075924, -0.017251085489988327, 0.038751859217882156, -0.013944295234978199, -0.016932358965277672, -0.007164711598306894, 0.012383862398564816, -0.009654765017330647, -0.014913756400346756, 0.0028336800169199705, 0.012921714223921299, 0.017184684053063393, -0.07112918794155121, -0.015471527352929115, 0.019681377336382866, -0.0013271981151774526, 0.012463544495403767, 0.01796822063624859, -0.00603256793692708, -0.024701323360204697, -0.02183278277516365, -0.0041666883043944836, 0.007994729094207287, 0.020066505298018456, 0.0006781243719160557, -0.015803534537553787, 0.008964190259575844, 0.041726645082235336, -0.030279042199254036, -0.006992068141698837, 0.0032370686531066895, 0.0119788134470582, -0.008831387385725975, -0.0034196723718196154, 0.011288239620625973, -0.012709229253232479, 0.0352458655834198, 0.004399093333631754, 0.0035956362262368202, 0.01893768087029457, -0.01498015783727169, 0.04491391032934189, -0.006082369014620781, 0.022749122232198715, -0.04456862434744835, 0.014276302419602871, -0.0026278356090188026, -0.024422436952590942, -0.005325392819941044, 0.0033698712941259146, -0.027808908373117447, -0.009701245464384556, -0.010059813037514687, -0.009083712473511696, 0.0011246738722547889, 0.013479485176503658, 0.016148822382092476, 0.030624328181147575, -0.01306779682636261, 0.002569734351709485, -0.005252351053059101, 0.03822065144777298, -0.025086451321840286, -0.00391768291592598, 0.013200599700212479, 0.007071749772876501, 0.014156780205667019, -0.010099654085934162, -0.008831387385725975, 0.01268266886472702, 0.014316143468022346, 0.0003129166434518993, 0.010683986358344555, 0.011779609136283398, 0.0021016045939177275, 0.01621522381901741, -0.016746435314416885, 0.014342703856527805, -0.011407761834561825, 0.03442249074578285, 0.01209169626235962, 0.008691944181919098, -0.007071749772876501, -0.03081025369465351, 0.0013413084670901299, 0.004419013857841492, 0.006198571529239416, -0.03915026783943176, -0.014927036128938198, -0.016972199082374573, -0.02605591155588627, -0.011514004319906235, 0.01571057364344597, -0.006985427811741829, -0.011421041563153267, -0.005202550441026688, 0.0010458221659064293, -0.022456955164670944, -0.00012782271369360387, 0.0014624909963458776, -0.007556479889899492, -0.005494716577231884, 0.0026759766042232513, -0.0109562324360013, -0.03158050775527954, 0.004668018780648708, 0.013838052749633789, -0.015444966964423656, 0.05519285053014755, -0.042417217046022415, 0.003678638022392988, 0.0016384547343477607, 0.009262995794415474, -0.023506097495555878, -0.01668003387749195, -0.030358722433447838, -0.012151457369327545, 0.010451581329107285, 0.007244393695145845, 0.014435665681958199, -0.011460882611572742, 0.007350635714828968, 0.00542831514030695, -0.02383810468018055, -0.017636213451623917, 0.0017994780791923404, 0.018950961530208588, 0.004193248692899942, 0.00421316921710968, -0.005999367218464613, 0.016494110226631165, -0.017038600519299507, 0.009887169115245342, -0.026534002274274826, 0.006042527966201305, -0.032032039016485214, 0.04047829657793045, -0.009063792414963245, -0.03038528375327587, -0.0004560946545097977, -0.009136833250522614, -0.004744380712509155, -0.01889784075319767, -0.0016600352246314287, -0.16456924378871918, 0.002822059905156493, 0.015073119662702084, 0.016055859625339508, 0.0013678689720109105, -0.006138809956610203, 0.039601799100637436, -0.03784880042076111, -0.002941582351922989, -0.025352057069540024, 0.013439645059406757, -0.011188637465238571, -0.014170059934258461, -0.01049142237752676, -0.02937598153948784, -0.0031092457938939333, -0.027251137420535088, -0.003243708750233054, 0.04061109945178032, 0.016268344596028328, 0.061779867857694626, -0.02337329462170601, 0.023081129416823387, 0.023559218272566795, 0.017596373334527016, -0.005355273373425007, -0.0028320199344307184, 0.017503410577774048, -0.004199889022856951, -0.017423728480935097, 0.013984136283397675, -0.0019256408559158444, 0.002118204953148961, -0.016613632440567017, 2.4200200641644187e-05, -0.004412373527884483, -0.030039995908737183, -0.017729176208376884, -0.005438275169581175, 0.00842633843421936, 0.023864666000008583, 0.024754444137215614, 0.0022078468464314938, -0.025657502934336662, -0.0031341463327407837, 0.01779557764530182, 0.02528565563261509, -0.036919184029102325, 0.020717239007353783, -0.016626913100481033, 0.021487494930624962, -0.011248398572206497, 0.014382544904947281, -0.00868530385196209, 0.0416204035282135, -0.0300134364515543, -0.015723852440714836, 0.012828751467168331, -0.019389210268855095, 0.006331373937427998, 0.012622907757759094, -0.0269058495759964, 0.015617610886693, 0.010836709290742874, -0.0024136912543326616, -0.03795504570007324, -0.028207316994667053, -0.0031042657792568207, -0.03899090737104416, -0.008559141308069229, -0.000722115277312696, 0.01440910529345274, 0.028286999091506004, -0.004013964906334877, 0.007948248647153378, 0.04932296648621559, -0.002777238842099905, 0.0031822873279452324, 0.0022111667785793543, -0.010962871834635735, -0.006766303442418575, 0.0035259146243333817, -0.007768964394927025, -0.008247055113315582, 0.01911032572388649, -0.005132828839123249, -0.0037317590322345495, -0.0064674969762563705, -0.013798212632536888, -0.02345297671854496, 0.014395824633538723, -0.027012092992663383, -0.018446311354637146, 0.009196595288813114, -0.0005693920538760722, 0.004531896207481623, 0.0049502248875796795, -0.03633484989404678, 0.023227212950587273, -0.026201995089650154, 0.009986771270632744, -0.009628203697502613, 0.013008035719394684, -0.005262311547994614, 0.040079887956380844, 0.0021729860454797745, -0.030039995908737183, 0.00794160831719637, 0.01911032572388649, -0.014395824633538723, 0.009601643308997154, -0.004970145411789417, -0.0007495058816857636, 0.002747358288615942, -0.02536533772945404, 0.005624199286103249, 0.0014766012318432331, -0.007071749772876501, 0.031686753034591675, -0.00913019385188818, 0.05123532563447952, 0.01211161632090807, -0.017954939976334572, 0.01646754890680313, -0.0018077782588079572, -0.009834048338234425, -0.10857958346605301, -0.04629506170749664, 0.011294879019260406, 0.0332803837954998, -0.005361913703382015, 0.020252428948879242, -0.025763746351003647, -0.011062473990023136, -0.03022591955959797, 0.03851281479001045, 0.020278990268707275, -0.03314758092164993, -0.019654816016554832, 0.02243039570748806, -0.008081051521003246, -0.017569812014698982, -0.019522013142704964, -0.007729123812168837, 0.006351294461637735, 0.02545829862356186, 0.006616900209337473, 0.008346657268702984, 0.00250001298263669, 0.029986875131726265, 0.0034429130610078573, 0.0015305523993447423, -0.021699979901313782, 0.02183278277516365, -0.004286210983991623, 0.031128980219364166, -0.004425653722137213, -0.011361280456185341, 0.019043924286961555, -0.009714526124298573, -0.019907141104340553, 0.00913019385188818, -0.03179299458861351, -0.022709280252456665, 0.03519274666905403, -0.015949618071317673, -0.008120891638100147, -0.00018312262545805424, -0.01897752285003662, 0.004093646537512541, -0.0005918025271967053, 0.0013711890205740929, 0.0017114962683990598, 0.010166055522859097, -0.025869987905025482, -0.02528565563261509, -0.04010644927620888, -0.017596373334527016, 0.009223155677318573, -0.003046164521947503, 0.02617543376982212, -0.04217817261815071, 0.00353255495429039, -0.025644224137067795, -0.003602276323363185, -0.007237753365188837, -0.010212535969913006, 0.008114252239465714, -0.005511316936463118, 0.019548574462532997, 0.010391820222139359, 0.010444940999150276, 0.005451555363833904, -0.012762350030243397, 0.005325392819941044, -0.02711833454668522, 0.007875206880271435, 0.025551261380314827, -0.014355984516441822, 0.04159384220838547, -0.033386629074811935, 0.007111590821295977, -0.014448946341872215, -0.030889933928847313, 0.011042553931474686, -0.01051134243607521, -0.019269688054919243, 0.013784931972622871, 0.0103652598336339, -0.010710546746850014, 0.015776975080370903, 0.0016766354674473405, -0.006470817141234875, 0.015484808012843132, 0.006421016063541174, -0.025564542040228844, 0.0017812177538871765, 0.002259307773783803, 0.05742393806576729, -0.03984084352850914, -0.005043186713010073, 0.00964148435741663, 0.005053147207945585, -0.011786249466240406, 0.0035059943329542875, -0.010624225251376629, -0.0413016751408577, -0.0056806402280926704, -0.0434265211224556, 0.028632286936044693, -0.017556531354784966, -0.020239148288965225, 0.005966166500002146, -0.005295512266457081, 0.023014727979898453, -0.03163363039493561, 0.014050537720322609, -0.007463518064469099, -0.02213822863996029, 0.006284893024712801, -0.00301628396846354, -0.00915011391043663, -0.032457008957862854, -0.041726645082235336, 0.001972121885046363, -0.01025901734828949, 0.023174090310931206, 0.02698553167283535, 0.00902395136654377, -0.013705250807106495, 0.016281625255942345, 0.009375878609716892, 0.003047824604436755, -0.009601643308997154, 0.0007611261098645627, 0.02320065163075924, -0.022018706426024437, 0.004681298974901438, 0.005946245975792408, -0.0013803192414343357, -0.007463518064469099, 0.019946983084082603, 0.016494110226631165, 0.00040753863868303597, 0.01149408333003521, 0.02243039570748806, 0.014608309604227543, 0.010630865581333637, 0.001661695190705359, -0.012636187486350536, 0.007861926220357418, -0.0013404784258455038, -0.0020800239872187376, -0.006689941510558128, -0.003970804158598185, 0.016401147469878197, 0.013904454186558723, 0.02575046569108963, 0.0539710633456707, 0.0035690756049007177, -0.008008009754121304, -0.031128980219364166, -0.003562435507774353, -0.028021393343806267, -0.008778265677392483, -0.03646765276789665, -0.0004996705683879554, 0.002704197308048606, 0.021487494930624962, 0.004306131042540073, 0.009927010163664818, -0.013731811195611954, -0.0066335005685687065, -0.03030560165643692, -0.013459565117955208, 0.02252335660159588, -0.016401147469878197, 0.00142348010558635, 0.015949618071317673, 0.014462226070463657, 0.009561802260577679, 0.0013894494622945786, 0.021275009959936142, -0.01087655033916235, -0.003253669012337923, -0.020066505298018456, -0.0015355325303971767, 0.006925666704773903, 0.04520607739686966, 0.014966877177357674, -0.02937598153948784, 0.03413032367825508, 0.029004134237766266, -0.022576479241251945, -0.030889933928847313, 0.0024734523613005877, 0.005590998567640781, 0.003107585944235325, -0.0021198648028075695, 0.007463518064469099, -0.014568468555808067, -0.008008009754121304, 0.0001707761111902073, 0.03269605338573456, -0.017543252557516098, 0.029774390161037445, 0.012974835000932217, 0.013120917603373528, -0.012058495543897152, -0.003871202003210783, -0.00038243058952502906, 0.004326051566749811, -0.030119678005576134, 0.010624225251376629, -0.009282916784286499, -0.029296301305294037, -0.014249742031097412, 0.039947085082530975, 0.02336001582443714, 0.018632235005497932, 0.006258332636207342, -0.007098310627043247, -0.0124303437769413, 0.008014650084078312, -0.017171403393149376, 0.009681325405836105, -0.017556531354784966, 0.02094300463795662, -0.019654816016554832, 0.002000342356041074, 0.02413027174770832, 0.020783640444278717, 0.0064907376654446125, 0.0124303437769413, 0.02783546969294548, -0.019694657996296883, -0.0016973859164863825, 0.020916443318128586, -0.00720455264672637, -0.008778265677392483, -0.0017280966276302934, -0.020159468054771423, -0.021009404212236404, -0.027224576100707054, 0.009442280046641827, 0.0011786249233409762, -0.025431739166378975, 0.07118231058120728, 0.028021393343806267, 0.005647439509630203, -0.00010644975554896519, 0.01872519589960575, 0.01812758482992649, 0.01814086362719536, -0.03593644127249718, -0.014329423196613789, -0.058592602610588074, 0.0015504728071391582, 0.009482121095061302, -0.0375300757586956, -0.027516743168234825, -0.006560458801686764, 0.015033278614282608, -0.031235221773386, -0.01234402135014534, -0.024847406893968582, -0.014382544904947281, -0.005298832431435585, 0.019933702424168587, 0.01306779682636261, 0.004850622732192278, -0.009634844027459621, -0.012078415602445602, 0.011507363989949226, 0.013154118321835995, -0.026666805148124695, -0.041142310947179794, -0.008731785230338573, -0.02055787481367588, -0.04031893610954285, -0.030464965850114822, 0.018154144287109375, -0.003954203799366951, -0.0004992556059733033, 0.001217635814100504, 0.017583092674613, 0.01487391535192728, -0.011666727252304554, 0.017290925607085228, -0.01808774285018444, -0.02996031567454338, 0.007058469578623772, 0.006367894820868969, 0.00048473026254214346, 0.014634869992733002, -0.039309632033109665], "38d0187e-fd3c-40fe-84c5-6038c6db529f": [0.0003510740934871137, 0.027839919552206993, 0.004745906684547663, -0.0062834578566253185, -0.013011096976697445, -0.015348173677921295, -0.024464141577482224, -0.0017750170081853867, -0.02148471027612686, -0.040509339421987534, 0.019680650904774666, 0.02428646944463253, -0.019106632098555565, 0.007933761924505234, -0.0024122463073581457, 0.02332977205514908, 0.01575818844139576, -0.007503248285502195, 0.0053848447278141975, -0.0020107747986912727, 0.01057835016399622, 0.023794453591108322, -0.012519080191850662, -0.03329310193657875, -0.016537213698029518, 0.012348241172730923, 0.02688322216272354, -0.0015247379196807742, 0.0089656300842762, -0.007967930287122726, -0.0032835251186043024, -0.00855561625212431, -0.013058931566774845, 0.006116035394370556, -0.0006227080593816936, 0.01086535956710577, -0.011412044055759907, -0.02048701047897339, -0.008008931763470173, -0.01686522364616394, 0.02138904109597206, -0.015402842313051224, 0.006362043786793947, 0.01801326312124729, 0.0018177267629653215, 0.01113186776638031, 0.027047228068113327, -0.020938025787472725, -0.01245757844299078, 0.022195400670170784, 0.0141181331127882, 0.033129096031188965, -0.008569283410906792, -0.017029229551553726, 0.004465730860829353, -0.0007798799779266119, -0.021020028740167618, 0.016058864071965218, 0.0035261164885014296, 0.003949797246605158, -0.008043099194765091, -0.007318742107599974, -0.030860353261232376, 0.0033791949972510338, -0.018136266618967056, -0.004650237038731575, -0.008972463198006153, -0.0038165429141372442, -0.005388261284679174, -0.018614616245031357, 0.025666847825050354, 0.03668254613876343, 0.013318606652319431, 0.0025489176623523235, 0.022919757291674614, -0.030286334455013275, -0.007291407790035009, -0.0037140394560992718, -0.008521448820829391, 0.002935013733804226, 0.013598782941699028, 0.011500880122184753, -0.0019219384994357824, -0.0007798799779266119, 0.011794723570346832, -0.009279973804950714, -4.227597401040839e-06, -0.006659303326159716, -0.017862923443317413, -0.021908391267061234, 0.011651218868792057, 0.015922192484140396, 0.016086198389530182, 0.024259135127067566, -0.0175485797226429, 0.0186966173350811, -0.0021371955517679453, 0.016783220693469048, -0.003227148437872529, -0.015088498592376709, -0.006631969474256039, 0.013995129615068436, 0.014036131091415882, -0.010079500265419483, -0.008480447344481945, -0.003929296508431435, 0.00233024382032454, -0.024259135127067566, 0.00826177280396223, 0.003748207353055477, -0.017808254808187485, 0.03676454722881317, 0.007489581126719713, -0.021703384816646576, 0.017616916447877884, -0.016031529754400253, 0.02848227508366108, 0.006597801577299833, -0.00268729729577899, -0.009792490862309933, 0.013216103427112103, 0.0007264927844516933, 0.03832260146737099, -0.0043803113512694836, 0.01600419543683529, 0.0033279433846473694, -0.01797226071357727, 0.009170636534690857, -0.011090866290032864, -0.01493816077709198, 0.038568608462810516, 0.023917457088828087, -0.007523748558014631, 0.032172396779060364, 0.006724222097545862, 0.025133831426501274, -0.010223004966974258, 0.022865088656544685, -0.016304872930049896, -0.02688322216272354, 0.004752740263938904, 0.024218134582042694, -0.011159202083945274, -0.02004966326057911, 0.002085943939164281, 0.026855887845158577, 0.011364209465682507, 0.0018160183681175113, 0.018628282472491264, -0.007489581126719713, 0.0003843877057079226, 0.011740054935216904, 0.05026766285300255, 0.0026035860646516085, 0.05450446903705597, -0.008131935261189938, 0.00971048790961504, 0.0008781123906373978, -0.0002079964615404606, -0.005405345465987921, -0.014705820009112358, 0.0008443716797046363, -0.002718048170208931, 0.014883492141962051, -0.001541821751743555, 0.023726116865873337, -0.0007047107792459428, 0.0017229111399501562, -0.0055898516438901424, -0.004721989389508963, 0.004404229111969471, 0.005979364272207022, -0.03367577865719795, 0.029329637065529823, -0.00947131309658289, 0.011015697382390499, 0.006201454903930426, -0.0031314785592257977, -0.026814887300133705, 0.008992964401841164, -0.004554567392915487, 0.00023575779050588608, 0.01980365440249443, 0.029220299795269966, -0.043106090277433395, -0.007715088315308094, 0.023575779050588608, 0.040837351232767105, -0.0025865021161735058, -0.01060568355023861, -0.026760218665003777, 0.010769689455628395, 0.002285825554281473, 0.010031664744019508, -0.6341543197631836, 0.005357510410249233, -0.0036320367362350225, -0.011268539354205132, 0.011487212963402271, 0.012245737947523594, 0.009833491407334805, 0.027115562930703163, -0.002815426327288151, 0.023193100467324257, 0.012881259433925152, 0.005077334586530924, -0.02207239717245102, -0.010250339284539223, 0.005200338549911976, -0.03373044729232788, -0.010571516118943691, 0.00797476340085268, -0.016400542110204697, -0.015129500068724155, -0.03485115244984627, -0.002321701729670167, -0.022291069850325584, 0.0020107747986912727, 0.007024899125099182, 0.014992829412221909, 0.025912856683135033, -0.0023866205010563135, -0.0019270636839792132, -0.006478214170783758, -0.012922260910272598, -0.026104196906089783, -0.004137719981372356, 0.02138904109597206, 0.04477348178625107, 0.002576251747086644, -0.016837889328598976, 0.005562517326325178, 0.002205531345680356, 0.017466576769948006, -0.032691746950149536, 0.0007764631882309914, 0.03575318306684494, -0.025912856683135033, 0.015102165751159191, 0.011842558160424232, 0.00325789931230247, 0.01132320798933506, -0.011459878645837307, -0.0286189466714859, -0.00860345084220171, -0.010120500810444355, -0.0025865021161735058, 0.006765223573893309, 0.0190792977809906, -0.02245507575571537, 0.024450475350022316, -0.005460013635456562, 0.00035961606772616506, -0.018915291875600815, 0.009785656817257404, 0.01571718603372574, -0.03203572705388069, -0.006659303326159716, -0.012177402153611183, 0.0095874834805727, -0.043871451169252396, -0.0036764550022780895, 0.0225097443908453, 0.021963059902191162, -0.0007982451352290809, 0.011070366017520428, 0.005989614874124527, -0.020664682611823082, 0.007496414706110954, 0.007154736667871475, 0.008992964401841164, -0.029958324506878853, -0.009437145665287971, 0.018395941704511642, 0.02207239717245102, -0.006536299362778664, -0.012703586369752884, -0.009867659769952297, 0.03176238387823105, 0.013188769109547138, 0.00010047467367257923, 0.01585385762155056, 0.025803519412875175, 0.016755888238549232, 0.0044862315990030766, 0.025188500061631203, -0.0032971922773867846, -0.028536943718791008, 0.012778756208717823, 0.012560081668198109, -0.015471178106963634, -0.023644115775823593, 0.008589783683419228, -0.01999499462544918, 0.0051388368010520935, -0.04201272130012512, 0.005610352382063866, 0.005477097816765308, 0.012355075217783451, 0.030477674677968025, -0.020022328943014145, 0.030805684626102448, 0.046714212745428085, -0.023890122771263123, -0.02829093486070633, -0.012300406582653522, -0.0010480971541255713, 0.0026035860646516085, 0.004896245431154966, -0.019885657355189323, 0.005237923003733158, -0.0004315819824114442, -0.004534066654741764, -0.017138566821813583, 0.0010028248652815819, 0.015539513900876045, -0.024163465946912766, -0.005975947715342045, 0.008951962925493717, 0.009867659769952297, 0.01816360093653202, 0.0005684667266905308, -0.00975832249969244, -0.0095874834805727, 0.017999595031142235, -0.012361908331513405, 0.015088498592376709, -0.0011480379616841674, 0.03460514545440674, -0.0026394622400403023, 0.01074918918311596, -0.024122463539242744, -0.014213803224265575, -0.03629986569285393, 0.009730988182127476, -0.0070112319663167, 0.011049865745007992, -0.022687416523694992, -0.015922192484140396, -0.013673951849341393, -0.02037767320871353, -0.0041343034245073795, 0.010810690931975842, 0.0024002876598387957, -0.00649188132956624, 0.006324459332972765, -0.002217489993199706, 0.029384305700659752, 0.014842490665614605, -0.014569148421287537, -0.01395412813872099, -0.007646752987056971, -0.005343843251466751, -0.017616916447877884, 0.018081597983837128, 0.043543439358472824, -0.031106362119317055, 0.0030135996639728546, -0.022537078708410263, -0.00692581245675683, -0.022045062854886055, 0.03266441449522972, -0.023767119273543358, -0.011685386300086975, -0.001980023691430688, -0.0031178114004433155, -0.005480514373630285, -0.009901827201247215, 0.020104331895709038, 0.029356971383094788, -0.030915021896362305, 0.001158288330771029, -0.012689919210970402, 0.006485047750174999, 0.022619081661105156, -0.00809776782989502, -0.02684222161769867, -0.0076399194076657295, 0.009765156544744968, -0.007380243856459856, 0.011248038150370121, -0.020514344796538353, -0.003073393367230892, -0.02322043478488922, 0.0005530912312678993, 0.03271908313035965, -0.00814560241997242, -0.01161021739244461, -0.007667253725230694, 0.01594952680170536, 0.018477944657206535, 0.0003457354032434523, 0.012484912760555744, 0.042286064475774765, 0.030997024849057198, -0.020309338346123695, -0.0061775376088917255, -0.01671488583087921, 0.02086969092488289, -0.03206305950880051, 0.02211339771747589, -0.004182138480246067, 0.010899526998400688, 0.006430379115045071, -0.011528214439749718, -0.016209201887249947, -0.01286759227514267, 0.0018587281228974462, 0.0030563094187527895, 0.0454021692276001, -0.019830988720059395, 0.030833018943667412, 0.011726387776434422, -0.008849459700286388, 0.016168201342225075, -0.0035158663522452116, 0.026104196906089783, -0.01445981115102768, -0.03430446609854698, 0.007188904564827681, 0.005565933883190155, -0.018122598528862, -0.008904127404093742, -0.02785358764231205, -0.009970162995159626, -0.00439739553257823, 0.012020230293273926, -0.008364276960492134, 0.006461130455136299, 0.01743924245238304, 0.009293640963733196, 0.007667253725230694, 0.03367577865719795, -0.022769419476389885, -0.012942761182785034, 0.021840054541826248, 0.02313843183219433, -0.025789853185415268, -0.009935995563864708, -0.018382273614406586, 0.046386200934648514, 0.021184034645557404, -0.0029213465750217438, 0.02129337005317211, -0.008883627131581306, 0.029411640018224716, -0.03542517125606537, 0.012976928614079952, 0.017698919400572777, 0.005934946238994598, 0.02207239717245102, 0.02173071913421154, 0.017466576769948006, 0.03031366877257824, -0.003666204633191228, 0.0060477000661194324, 0.011500880122184753, 0.0017733086133375764, 0.004018133040517569, 0.007749256212264299, 0.00020297805895097554, -0.040700677782297134, -0.02848227508366108, -0.014801489189267159, 0.012997429817914963, -0.021812722086906433, -0.023876456543803215, 0.009047632105648518, -0.0015196127351373434, 0.001318876980803907, -0.015812857076525688, 0.0038302100729197264, 0.009635319001972675, 0.009375642985105515, -0.014336807653307915, -0.010680853389203548, 0.016263870522379875, 0.019735319539904594, -0.01187672559171915, -0.010947361588478088, -0.0004843285132665187, 0.008371110074222088, -0.007168403826653957, 0.020541679114103317, -0.011015697382390499, 0.03463247790932655, 0.02669188193976879, 0.0070932344533503056, -0.006854060105979443, -0.016168201342225075, 0.01873761974275112, 0.012724087573587894, -0.02033667266368866, 0.0225097443908453, -0.0012787297600880265, -0.014049798250198364, -0.0009524273336865008, 0.009532814845442772, 0.04346143826842308, 0.025461841374635696, 0.005678687710314989, 0.001021617092192173, -0.0012864174786955118, 0.004417896270751953, -0.00988132692873478, -0.013626117259263992, -0.011275372467935085, -0.013981462456285954, 0.0226054135710001, -0.0021166950464248657, 0.009724155068397522, -0.00663880305364728, 0.016660217195749283, 0.00533700967207551, 0.019639648497104645, 0.0180269293487072, 0.005425846204161644, -0.015935860574245453, 0.022277403622865677, 0.03971664607524872, -0.03468714654445648, 0.006051116622984409, -0.029985658824443817, 0.020131666213274002, 0.002073985291644931, -0.017575914040207863, 0.003240815596655011, 0.0019475644221529365, 0.017985928803682327, -0.03610852733254433, 0.023794453591108322, -0.013653451576828957, 0.0186966173350811, 0.00692581245675683, -0.012279906310141087, 0.007592084351927042, 0.0024874156806617975, 0.010639851912856102, 0.03135237097740173, -0.0026480043306946754, 0.01619553565979004, 0.025625847280025482, -0.030587011948227882, -0.0006141661433503032, 0.017029229551553726, 0.003126353258267045, -0.021074697375297546, -0.011979229748249054, -0.0090134646743536, 0.019407307729125023, -0.008528281934559345, 0.021512044593691826, -0.009737822227180004, 0.00657730083912611, 0.027429906651377678, 0.014828823506832123, 0.018587281927466393, -0.011459878645837307, -0.012689919210970402, 0.01749391108751297, 0.003293775487691164, 0.0047971587628126144, 0.015307173132896423, -0.010332341305911541, -0.0185052789747715, 0.016496211290359497, -0.004503315780311823, -0.017985928803682327, 0.010571516118943691, -0.027265900745987892, -0.02563951350748539, 0.00015898702258709818, -0.00011403502139728516, -0.011193370446562767, -0.011459878645837307, -0.006198038347065449, -0.018860623240470886, -0.024587146937847137, -0.005805108696222305, -0.013687619008123875, 0.013209270313382149, -0.015211503021419048, -0.008992964401841164, -0.006426962558180094, -0.005921279080212116, -0.0010925153037533164, -0.0237534511834383, -0.006297125015407801, -0.02949364110827446, -0.03159837797284126, -0.010708187706768513, -0.02207239717245102, 0.020418675616383553, 0.010352842509746552, 0.00997699610888958, -8.088158210739493e-05, -0.0060477000661194324, 0.019243303686380386, -0.01245757844299078, -0.029602978378534317, -0.011945061385631561, -0.02077401988208294, 0.01927063800394535, 0.0017955177463591099, 0.0005445492570288479, 0.014364141970872879, -0.029657647013664246, 0.016318539157509804, -0.008063600398600101, -0.004100135527551174, -0.02771691605448723, -0.02086969092488289, -0.0056240190751850605, 0.024983493611216545, 0.01864195056259632, -0.018477944657206535, 0.02399946004152298, -0.023056428879499435, -0.011220704764127731, 0.013216103427112103, -0.01951664499938488, -0.029466306790709496, 0.01999499462544918, -0.018573613837361336, 0.015539513900876045, 0.016728553920984268, -0.013421110808849335, -0.015771854668855667, 0.000582133827265352, -0.018532613292336464, -0.006092118099331856, -0.01691989228129387, -0.005456597078591585, 0.013250271789729595, 0.03151637688279152, 0.013181935995817184, -0.0028649696614593267, -0.038623277097940445, 0.00422655651345849, -0.020104331895709038, -0.003474864875897765, 0.021115697920322418, -0.014104465954005718, 0.025311503559350967, -0.03966197744011879, -0.027361571788787842, -0.02886495366692543, 0.015307173132896423, 0.006696888245642185, 0.017220569774508476, -0.014541814103722572, -0.0021371955517679453, -0.021525710821151733, 0.00018354512576479465, 0.012655751779675484, 0.02332977205514908, -0.00797476340085268, 0.0053609274327754974, 0.010728687979280949, -0.002383203711360693, -0.01600419543683529, -0.0028256766963750124, -0.00116512191016227, -0.02674655057489872, 0.0016503045335412025, -0.00785859301686287, 0.01691989228129387, 0.02911096252501011, -0.009860825724899769, -0.003635453525930643, -0.011473545804619789, 0.007557916454970837, 0.008658119477331638, -0.008152436465024948, -0.020541679114103317, -0.008207105100154877, 0.016988229006528854, 0.03266441449522972, 0.0541764572262764, -0.0004757865681312978, 0.009628484956920147, 0.016209201887249947, 0.007462246809154749, 0.002475456800311804, -0.0012795840157195926, -0.02592652477324009, -0.03977131471037865, 0.022619081661105156, 0.027293235063552856, 0.003980548121035099, 0.019680650904774666, 0.004776658024638891, 0.004434979986399412, 0.019202301278710365, -0.003126353258267045, -0.01252591423690319, 0.0048039923422038555, -0.029903655871748924, -0.011931394226849079, -0.008958796039223671, 0.002419079886749387, -0.004431562963873148, -0.02943897247314453, -0.03189905360341072, 0.021238701418042183, 0.014637484215199947, 0.02259174734354019, -0.021279703825712204, 0.020610013976693153, -0.009601150639355183, -0.012150068767368793, 0.007079567294567823, 0.04663220793008804, -0.01303843129426241, -0.008268606849014759, -0.009990663267672062, 0.012730920687317848, -0.007052232977002859, -0.0185052789747715, 0.019721651449799538, 0.017657916992902756, -0.03315642848610878, -0.017903925850987434, -0.004455480724573135, -0.030423006042838097, -0.018860623240470886, 0.025858188048005104, -0.0457848459482193, -0.006044283043593168, -0.002890595467761159, -0.016263870522379875, -0.0004552858881652355, 0.01166488602757454, 0.00833694264292717, -0.025284169241786003, 0.015088498592376709, -0.00712056877091527, -0.018819622695446014, -0.02220906689763069, -0.007004398386925459, 0.03198105841875076, -0.016796888783574104, 0.03045034036040306, -0.01657821424305439, 0.00439739553257823, -0.03575318306684494, -0.0017408492276445031, -0.008664953522384167, 0.0034219047520309687, 0.024272803217172623, -0.006433796137571335, -0.001690451754257083, -0.0179312601685524, -0.00017906060384120792, -0.020541679114103317, 0.006895061116665602, -0.022496076300740242, -0.0033484441228210926, 0.029466306790709496, 0.0036012856289744377, 0.007380243856459856, 0.013550948351621628, -0.006262957118451595, 0.018833288922905922, 0.014323140494525433, -0.006280040834099054, -0.02071935124695301, -0.022373072803020477, -0.024710150435566902, 0.008159269578754902, -0.0012676252517849207, 0.036983221769332886, -0.010311841033399105, -0.010154669173061848, 0.006139953155070543, -0.04122002795338631, -0.022619081661105156, 0.03829526528716087, -0.023767119273543358, 0.02216806635260582, -0.007660420145839453, -0.03750257194042206, 0.022086063399910927, -0.00642354553565383, -0.005306258797645569, -0.007810758426785469, -0.006816475186496973, 0.023261435329914093, -0.0051559205166995525, -0.022865088656544685, -0.0010617643129080534, 0.00975832249969244, 0.005104668904095888, 0.00378920859657228, -0.023630447685718536, -0.0047971587628126144, -0.02091069146990776, -0.00010132887109648436, 0.011931394226849079, -0.006198038347065449, -0.035971857607364655, -0.0009438853594474494, 9.668418351793662e-05, -0.007366576697677374, -0.03282842040061951, -0.016222869977355003, 0.04173938184976578, -0.03244573995471001, -0.002104736166074872, -0.02352111041545868, -0.011384709738194942, 0.01797226071357727, -0.00751691497862339, -0.010332341305911541, -0.001976607134565711, 0.023480109870433807, -0.0003213908348698169, 0.03651854023337364, 0.0010890985140576959, -0.009273139759898186, -0.02134803868830204, 0.015047497116029263, 0.017124898731708527, -0.03228173404932022, 0.036600545048713684, -0.011863058432936668, 0.005559100303798914, -0.01903829537332058, -0.015607849694788456, -0.010769689455628395, -0.020008660852909088, 0.003497073892503977, -0.009867659769952297, 0.006580717395991087, 0.008002097718417645, 0.0003579076728783548, -0.012614750303328037, 0.0360538586974144, 0.007154736667871475, 0.009225305169820786, 0.04756157100200653, -0.0114940470084548, 0.009662652388215065, -0.016837889328598976, -0.016400542110204697, -0.010209337808191776, -0.028536943718791008, -0.029001625254750252, -0.003177605103701353, 0.007872260175645351, -0.011637551710009575, -0.008849459700286388, -0.003573951544240117, 0.0007653586217202246, -0.010619350709021091, 0.015922192484140396, -0.019830988720059395, 0.0050602504052221775, 0.03203572705388069, -0.0048210760578513145, -0.018778620287775993, 0.010967862792313099, -0.031161030754446983, -0.013045264407992363, -0.012136401608586311, -0.009225305169820786, -0.01734357327222824, 0.0002272158453706652, -0.015279838815331459, 0.01452814694494009, 0.012396076694130898, 0.0017630582442507148, -0.012894926592707634, 0.0028871786780655384, -0.02891962230205536, -0.021990394219756126, -0.0025489176623523235, 0.008828958496451378, 0.008084100671112537, 0.02419080026447773, -0.014377809129655361, 0.03340243920683861, -0.0015811148332431912, 0.026719216257333755, -0.012963262386620045, 0.038049258291721344, 0.016591882333159447, 0.0135441143065691, 0.021566713228821754, -0.03113369643688202, -0.003966880962252617, -0.026582544669508934, 0.021853722631931305, 0.0021816138178110123, 0.027443574741482735, 0.01976265385746956, -0.00804993323981762, 0.012027064338326454, -0.012348241172730923, -0.004452063702046871, 0.017083898186683655, 0.0001291969820158556, 0.009286806918680668, -0.023411773145198822, -0.006215122062712908, -0.005883694626390934, 0.011275372467935085, -0.02535250410437584, -0.018723951652646065, -0.013728620484471321, -0.022441409528255463, 0.022564413025975227, 0.011746888048946857, -0.008746955543756485, 0.01875128597021103, -0.016550879925489426, -0.0012351658660918474, 0.013140934519469738, 0.013462111353874207, 0.027347903698682785, 0.005723105743527412, 0.014295806176960468, 0.0036183695774525404, -0.010243505239486694, -0.02563951350748539, -0.014774154871702194, 0.023493776097893715, 0.012942761182785034, -0.007885927334427834, -0.0275665782392025, 0.031680379062891006, -0.01783558912575245, 0.011917727068066597, -0.021621381863951683, 0.03326576575636864, -0.018833288922905922, 0.014077131636440754, 0.023193100467324257, 0.0014888617442920804, 0.016441544517874718, 0.020459676161408424, 0.0010942236986011267, 0.014692152850329876, -0.020787687972187996, 0.003734540194272995, -0.01028450671583414, -0.00046852591913193464, -0.007496414706110954, -0.0016246787272393703, -0.011644384823739529, -0.012539581395685673, -0.002815426327288151, 0.0012659168569371104, 0.021744385361671448, 0.18969960510730743, -0.01481515634804964, 0.03340243920683861, 0.029466306790709496, -0.01980365440249443, 0.01783558912575245, 0.031871721148490906, -0.01888795755803585, -0.0053609274327754974, 0.016796888783574104, -0.01701556332409382, 0.015621516853570938, -0.021744385361671448, 0.009621651843190193, -0.0005671854014508426, -0.0364365391433239, -0.03870527818799019, -0.027334237471222878, -0.006809641607105732, 0.0068643102422356606, 0.01195189543068409, 0.020227335393428802, -0.028946956619620323, -0.025174831971526146, 0.018559947609901428, -0.013967795297503471, 0.002835927065461874, 0.007373410277068615, 0.023671450093388557, 0.012273072265088558, -0.013632950372993946, 0.0019543978851288557, 0.012074898928403854, 0.02240040712058544, -0.03744790330529213, 0.007346076425164938, 0.010769689455628395, -0.032172396779060364, 0.006799391470849514, 0.028318269178271294, 0.007380243856459856, -0.023056428879499435, -0.03353910893201828, -0.012833423912525177, 0.029766984283924103, 0.020446009933948517, 0.003973714541643858, -0.022687416523694992, 0.016373207792639732, -0.0002466487931087613, -0.04217672720551491, 0.008282274007797241, 0.017575914040207863, 0.034577809274196625, -0.006608051713556051, 0.013147767633199692, -0.00999749731272459, -0.0007354618282988667, 0.04163004457950592, 0.009696820750832558, -0.01671488583087921, 0.014186468906700611, -0.01570351980626583, 0.03531583398580551, 0.020692016929388046, 0.04042733833193779, -0.04480081424117088, -0.012860758230090141, -0.01344161108136177, -0.04581218212842941, 0.012471245601773262, -0.0036935387179255486, -0.03646387159824371, 0.004732239991426468, -0.0016562839737161994, -0.0006171558052301407, 0.006860893685370684, 0.02115670032799244, 0.005388261284679174, 0.02867361530661583, -0.0282362662255764, -0.002767591504380107, -0.014883492141962051, -0.022755753248929977, -0.019830988720059395, -0.004851826932281256, -0.006987314205616713, 0.020104331895709038, -0.015211503021419048, -0.016810555011034012, 0.002712923102080822, -0.0057709407992661, -0.006765223573893309, -0.0008319858461618423, 0.02197672612965107, 0.015334507450461388, -0.012095400132238865, -0.010017997585237026, 0.009730988182127476, 0.004995331633836031, -0.006519215647131205, 0.07489580661058426, 0.016783220693469048, 0.011500880122184753, 0.01137104257941246, -0.008582950569689274, -0.00799526460468769, 0.003479989944025874, 0.017029229551553726, -0.04679621383547783, -0.005460013635456562, -0.01801326312124729, 0.006139953155070543, -0.017370907589793205, -0.009901827201247215, -0.0007589521701447666, -0.0032476489432156086, -4.049417839269154e-05, -0.014323140494525433, 0.010332341305911541, 0.0225097443908453, -0.013619283214211464, -0.01720690168440342, 0.009560149163007736, -0.01980365440249443, -0.004301725421100855, -0.03031366877257824, -0.008801624178886414, 0.002285825554281473, -0.03897862136363983, 0.034905821084976196, -0.02987632155418396, 0.01753491349518299, -0.003980548121035099, -0.0024720400106161833, 0.004448647145181894, 0.015484845265746117, -0.018054263666272163, -0.014282139018177986, -0.01182889100164175, -0.013468945398926735, 0.02062368206679821, 0.0010976404882967472, 0.010141002014279366, 0.012314073741436005, -0.026568878442049026, 0.006259540095925331, 0.014049798250198364, -0.009307308122515678, -0.015812857076525688, -0.027921922504901886, -0.010031664744019508, 0.017029229551553726, -0.02149837836623192, 0.0051730042323470116, 0.012191069312393665, -0.024587146937847137, -0.026965225115418434, 0.02207239717245102, 0.00804993323981762, -0.022140732035040855, -0.018054263666272163, 0.009389310143887997, -0.009389310143887997, 0.005145669914782047, -0.01493816077709198, -0.17395508289337158, 0.027429906651377678, 0.007947429083287716, -0.014131800271570683, 0.015744520351290703, 0.004810825921595097, 0.017753586173057556, -0.001362440874800086, -0.005671854130923748, -0.015238837338984013, 0.022974425926804543, -0.006081867963075638, -0.01879228837788105, 0.0011907477164641023, -0.01033917535096407, 0.005460013635456562, -0.025120163336396217, 0.014227470383048058, 0.024901490658521652, 0.039880651980638504, 0.042040057480335236, -0.03386712074279785, -0.006959979888051748, 0.01315460167825222, 0.009464479982852936, 0.00917746964842081, -0.018204601481556892, 0.028208931908011436, 0.004762990865856409, -0.044500138610601425, -0.011856225319206715, -0.014623817056417465, 0.004206055775284767, -0.009840325452387333, -0.0006496152491308749, 0.01571718603372574, 1.3633751223096624e-05, -0.00243958062492311, -0.008787957020103931, 0.006358626764267683, 0.015689851716160774, 0.030559677630662918, -0.0014564023585990071, 0.0026172532234340906, 0.006754973437637091, 0.03501515835523605, -0.014992829412221909, -0.034769151359796524, -0.00038609610055573285, 0.023835454136133194, 0.04542950168251991, -0.009307308122515678, 0.006932646036148071, -0.010838025249540806, 0.034905821084976196, -0.010346008464694023, -0.016783220693469048, 0.021744385361671448, -0.024177132174372673, -0.0037721246480941772, 0.014992829412221909, -0.019981326535344124, 0.019530313089489937, -0.00466048764064908, 0.02842760644853115, -0.017261570319533348, -0.02481948770582676, -0.01894262619316578, -0.03315642848610878, 0.006727639120072126, -0.01623653620481491, -0.0006265519768930972, 0.01361245010048151, 0.004756157286465168, 0.027211232110857964, 0.028782950714230537, -0.013175101950764656, 0.01932530477643013, -0.012560081668198109, -0.03195372223854065, -0.012922260910272598, -0.00045614008558914065, 0.01137104257941246, -0.008371110074222088, 0.005244756583124399, -0.02829093486070633, -0.014582815580070019, -0.015498512424528599, 0.005993031430989504, -0.0011779348133131862, 0.028946956619620323, -0.029657647013664246, 0.001157434075139463, 0.004540900234133005, 0.0014376100152730942, 0.010434845462441444, -0.004728822968900204, -0.022291069850325584, 0.005811942275613546, -0.037037890404462814, -0.005791441537439823, -0.00797476340085268, -0.013407443650066853, -0.01221840362995863, 0.04523816332221031, 0.01783558912575245, -0.003908795770257711, -0.01711123250424862, 0.0038848784752190113, -0.0052789244800806046, -0.0018194351578131318, -0.004270974546670914, 0.0019338972633704543, 0.015635183081030846, -0.015730854123830795, 0.007106901612132788, 0.009314141236245632, -0.01522517018020153, 0.007537415716797113, -0.013188769109547138, 0.051197025924921036, 0.0035910354927182198, 0.009115967899560928, 0.0019099798519164324, -0.004680987913161516, -0.0006342396955005825, -0.12125467509031296, -0.020856022834777832, -0.00028081657364964485, 0.027648581191897392, -0.00804993323981762, 0.04187605157494545, -0.0377759151160717, -0.014883492141962051, -0.014842490665614605, 0.0461675263941288, -0.014719486236572266, 0.003240815596655011, -0.0269925594329834, 0.025366172194480896, -0.009197970852255821, 0.009662652388215065, -0.0010164919076487422, -0.02630920335650444, -0.01481515634804964, 0.02312476374208927, -0.003932713530957699, -0.022045062854886055, 0.016947226598858833, -0.002923055086284876, -0.010885859839618206, 0.0042333900928497314, -0.005904195364564657, 0.012888092547655106, 0.010346008464694023, 0.020405007526278496, -0.007728755474090576, -0.001424797112122178, 0.011685386300086975, -0.016250204294919968, -0.02332977205514908, -0.026773884892463684, -0.02384912222623825, -0.011815223842859268, 0.016400542110204697, -0.0011283914791420102, -0.005425846204161644, -0.008118268102407455, -0.008787957020103931, 0.0031468539964407682, 0.01623653620481491, 0.009286806918680668, -0.004219722934067249, 0.01308626588433981, -0.02954830974340439, -0.018300272524356842, -0.03966197744011879, -0.009785656817257404, -0.048162925988435745, -0.011617050506174564, 0.014828823506832123, 0.014582815580070019, 0.026473209261894226, 0.010093167424201965, -0.02192205749452114, -0.017425576224923134, 0.0007653586217202246, -0.0020210251677781343, -0.024464141577482224, 0.009655819274485111, 0.012614750303328037, 0.010448511689901352, -0.021361706778407097, -0.01599052920937538, 0.0027402571868151426, -0.04217672720551491, 0.004513565916568041, 0.019120298326015472, -0.03731123358011246, 0.020924357697367668, -0.02091069146990776, 0.02727956883609295, -0.011159202083945274, -0.0022379907313734293, 0.04704222083091736, 0.0021201118361204863, -0.005678687710314989, -0.026637213304638863, 0.005760690663009882, 0.0007952554733492434, 0.0014265055069699883, 0.00442131282761693, 0.0242318008095026, 0.008131935261189938, -0.007844925858080387, -0.023001760244369507, -0.01004533190280199, 0.027019893750548363, 0.020801354199647903, -0.031543709337711334, -1.887236794573255e-05, 0.006194621324539185, 0.014787822030484676, -0.009143302217125893, -0.013858458027243614, 0.00542242918163538, -0.02625453472137451, 0.002805176191031933, -0.05185304954648018, 0.03143437206745148, -0.012758255004882812, -0.0021081529557704926, -0.005470264237374067, 0.0070932344533503056, 0.024204466491937637, -0.0050500002689659595, 0.005917862523347139, -0.012799256481230259, -0.03580785170197487, 0.0007879948243498802, -0.005022665951400995, -0.019625982269644737, -0.03397645801305771, -0.027675915509462357, -0.00094730214914307, 0.010906361043453217, 0.012252571992576122, 0.013585115782916546, 0.0011061824625357985, -0.013209270313382149, 0.01223890483379364, 0.03479648381471634, 0.012232070788741112, 0.0015307172434404492, 0.00048262011841870844, 0.020117998123168945, -0.01395412813872099, -0.004496482200920582, -0.004267557989805937, -0.018901625648140907, -0.0068574766628444195, 0.012771922163665295, 0.010585183277726173, 0.008350609801709652, 0.005798275116831064, 0.02535250410437584, 0.011125034652650356, 0.029329637065529823, -0.010462178848683834, -0.01845061033964157, 0.0012052690144628286, -0.007106901612132788, 0.012443911284208298, -0.0226054135710001, -0.021430041640996933, 0.00821393821388483, 0.02384912222623825, 0.010544181801378727, 0.045320164412260056, 0.0070112319663167, -0.002762466436251998, -0.01749391108751297, -0.002378078643232584, -0.029329637065529823, 0.0013820873573422432, -0.014637484215199947, 0.015867523849010468, -0.020117998123168945, 0.035917188972234726, -0.002892303979024291, 0.01739824190735817, -0.026760218665003777, 0.006659303326159716, -0.021430041640996933, -0.02760757878422737, 0.00668663764372468, 0.008699120953679085, -0.02993099018931389, -0.006133119575679302, -0.0020159000996500254, -0.0013222937704995275, 0.01701556332409382, 0.005654770415276289, -0.025188500061631203, -0.011883559636771679, 0.0008704246138222516, -0.004978247918188572, -0.0002750507555902004, 0.028700949624180794, -0.008446278981864452, 0.006341543048620224, 0.018341273069381714, 0.02029567025601864, -0.00038737739669159055, -0.004950913600623608, 0.003741373773664236, 0.010974695906043053, 0.025625847280025482, 0.01753491349518299, 0.018149932846426964, -0.010366509668529034, -0.009724155068397522, 0.01787659153342247, 0.02043234184384346, -0.010660352185368538, 0.018286604434251785, 0.00655338354408741, 0.029411640018224716, 0.015416509471833706, 0.010182003490626812, -0.004079634789377451, -0.00850778166204691, -0.013270772062242031, 0.013926793821156025, -0.017985928803682327, -0.02442314103245735, -0.004841576796025038, 0.039579976350069046, 0.012416576966643333, 0.03244573995471001, -0.009717321023344994, 0.013776455074548721, -0.01594952680170536, 0.016564548015594482, 0.012758255004882812, -0.014159134589135647, -0.017698919400572777, 0.03977131471037865, -0.02954830974340439, 0.018559947609901428, -0.0038233764935284853, 0.010038498789072037, 0.035452503710985184, 0.0021594048012048006, 0.0046980720944702625, -0.03075101599097252, 0.02384912222623825, -0.004732239991426468, -0.025311503559350967, 0.006666136905550957, 0.010366509668529034, -0.01600419543683529, 0.002509624697268009, -0.00751691497862339, 0.008528281934559345, 0.013147767633199692, -0.029520975425839424, 0.07391177862882614, 0.032992422580718994, -0.015826523303985596, -0.0074212453328073025, 0.007284574210643768, -0.0005987906479276717, 0.014733153395354748, -0.007325575686991215, 0.011466712690889835, -0.027962924912571907, 0.02230473794043064, 0.020213669165968895, -0.028509609401226044, -0.014131800271570683, -0.009874492883682251, 0.0013837957521900535, -0.010940528474748135, 0.025311503559350967, -0.006666136905550957, -0.004390561953186989, 0.008733288384974003, 0.011507714167237282, 0.021744385361671448, -0.006901894696056843, -0.013742287643253803, -0.03094235621392727, -0.0014786113752052188, -0.00642354553565383, -0.013236604630947113, 0.0011232662945985794, 0.019092964008450508, 0.016058864071965218, -0.04269607737660408, -0.018122598528862, 0.009935995563864708, -0.005319925956428051, 0.011343708261847496, -0.01182889100164175, 0.02129337005317211, -0.006016948726028204, -0.010004330426454544, -0.01743924245238304, -0.011275372467935085, -0.02516116574406624, -0.00010597355867503211, -0.025407172739505768, -0.012040731497108936, -0.01743924245238304, -0.01575818844139576], "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21": [0.019275596365332603, 0.01581517979502678, 0.007197934668511152, -0.031873669475317, 0.0008820004295557737, 0.00032314672716893256, 0.0029906912241131067, -0.008353658951818943, -0.018140146508812904, -0.02343890815973282, 0.025331323966383934, 0.013990351930260658, -0.015882765874266624, 0.040254365652799606, 0.005224416498094797, -0.0036327603738754988, 0.00045409504673443735, 0.00624834792688489, -0.018599733710289, 0.0243851151317358, 0.025344841182231903, 0.013219868764281273, 0.01432828325778246, -0.016734352335333824, -0.007867038249969482, 0.006001658271998167, 0.007191176060587168, -0.01987035572528839, 0.008630762808024883, -0.008738900534808636, 0.03060304932296276, -0.014841938391327858, -0.02073545940220356, -0.004295105580240488, -0.022533252835273743, 0.011259867809712887, -0.0062213134951889515, 0.007961658760905266, 0.010962488129734993, 0.006907313596457243, 0.016436973586678505, 0.03211698308587074, -0.005711037199944258, 0.02499339170753956, -0.006163865327835083, 0.0028504496440291405, 0.036739882081747055, -0.03117077425122261, -0.02114097587764263, 0.0019110009307041764, 0.013064420782029629, 0.04298485070466995, -0.008853797800838947, -0.021222079172730446, 0.0008397590136155486, -0.011165247298777103, 0.0034806914627552032, 0.02879173867404461, -0.007691313978284597, -0.025344841182231903, 0.02397959865629673, -0.006319313310086727, -0.028251048177480698, -0.02949463576078415, -0.011915454640984535, -0.009306625463068485, -0.010482626035809517, 0.006589658558368683, -0.003825381165370345, 0.0066876583732664585, 0.0006492503453046083, 0.020221803337335587, -0.013348282314836979, 0.002147552790120244, 0.048175472766160965, 0.007096555083990097, -0.008772694505751133, 0.017829250544309616, -0.019424285739660263, 0.006616692990064621, 0.010137936100363731, -0.0061233132146298885, -0.013713248074054718, -0.0030667255632579327, 0.0038726916536688805, -0.022614356130361557, 0.012902213260531425, 0.026007184758782387, -0.02595311589539051, -0.009468832053244114, 0.009820280596613884, 0.02114097587764263, 0.0037476569414138794, 0.035063743591308594, 0.0031106567475944757, 0.025425944477319717, 0.0023942426778376102, 0.018369941040873528, -0.0050148991867899895, -0.04474209249019623, 0.0011633281828835607, 0.013922765851020813, -0.003112346399575472, -0.0075899348594248295, -0.00010919402120634913, -0.023884978145360947, 0.024723047390580177, -0.00994193647056818, -0.0069749001413583755, 0.003825381165370345, -0.024452701210975647, 0.02496635727584362, -0.013733523897826672, -0.0170722845941782, 0.022884700447320938, -0.005518416408449411, 0.005062209442257881, -0.023303736001253128, -0.014936558902263641, -0.019221527501940727, 0.021924976259469986, 0.03117077425122261, -0.0014277592999860644, 0.004562071058899164, 0.01889711245894432, -0.008150900714099407, 0.018667319789528847, -0.011753247119486332, -0.0007366900099441409, -0.019437802955508232, 0.02906208299100399, 0.0002722458157222718, 0.0021644493099302053, 0.010935453698039055, -0.008874073624610901, 0.008177935145795345, -0.01007710862904787, 0.00670455489307642, -0.031657394021749496, -0.021235596388578415, 0.021830355748534203, 0.019086353480815887, 0.005758347921073437, -0.0021137597505003214, -0.00040593984886072576, 0.008198210969567299, 0.0024381736293435097, 0.013368558138608932, -0.0017487939912825823, 0.01326042041182518, 0.01431476604193449, -0.0014294489519670606, 0.002389173721894622, 0.012719730846583843, -0.011611316353082657, 0.02835918590426445, -0.024479735642671585, 0.02001904509961605, 0.03538815677165985, -0.01665324904024601, 0.017180422320961952, 0.012212833389639854, -0.011246350593864918, -0.010692142881453037, -0.004704002290964127, 0.023884978145360947, 0.04063284769654274, 0.02326318435370922, 0.014341800473630428, 0.020208286121487617, 0.00740745197981596, -0.012037109583616257, -0.0012689316645264626, 0.0057684858329594135, 0.023046908900141716, 0.020776011049747467, 0.0037240018136799335, -0.01001628115773201, -0.014341800473630428, -0.02031642384827137, 0.012814351357519627, -0.013098213821649551, 0.00888759084045887, 0.04384995251893997, -0.020356975495815277, 0.0038625537417829037, 0.017261525616049767, -0.01290897186845541, 0.021249113604426384, 0.010252832435071468, 0.018802491948008537, 0.026345117017626762, 0.007434486411511898, 0.004629657603800297, -0.6297956109046936, -0.028007738292217255, -0.037875328212976456, -0.031549256294965744, 0.007880555465817451, 0.011618074961006641, 0.01678842306137085, -0.006582899950444698, -0.038713399320840836, 0.028386220335960388, 0.005048692226409912, 0.0002234570129076019, 0.023533528670668602, -0.0038321397732943296, -0.0028267945162951946, -0.03157629072666168, 0.009455314837396145, -0.024074219167232513, -0.040281400084495544, 0.01776166446506977, -0.010421798564493656, 0.017667043954133987, -0.015477249398827553, 0.004666829947382212, 0.02172221802175045, 0.01649104245007038, -0.008772694505751133, 0.009455314837396145, 0.01595035195350647, 0.023939047008752823, -0.010908419266343117, -0.013456420972943306, 0.0159368347376585, 0.0011996558168902993, 0.05133850872516632, -0.01651807688176632, -0.004538415931165218, 0.014341800473630428, 0.023195598274469376, 0.04122760519385338, -0.034360844641923904, -0.014531041495501995, 0.012577799148857594, 0.00789407268166542, 0.014071455225348473, -0.03149518743157387, 0.004818899091333151, 0.0102393152192235, -0.007799452170729637, -0.020384009927511215, 0.009604005143046379, 0.001302724820561707, 0.007177658844739199, -0.020546216517686844, 0.01595035195350647, -0.00019589449220802635, 0.012503454461693764, 0.0013855178840458393, -0.006177382543683052, -0.039416294544935226, 0.002066449262201786, 0.00016569189028814435, 0.004751312546432018, -0.019532423466444016, -0.012767041102051735, 0.004849312826991081, -0.025209667161107063, 0.007042486220598221, 0.009786487556993961, -0.0033995879348367453, 0.005974623840302229, 0.016720835119485855, -0.02270897664129734, -0.008914625272154808, 0.01242235116660595, 0.04731036722660065, 0.009989246726036072, -0.02116801030933857, 0.0003273708571214229, 0.011455867439508438, 0.01791035383939743, -0.01007710862904787, -0.014841938391327858, -0.008874073624610901, 0.045769400894641876, 0.002238794229924679, -0.007583176251500845, 0.002548001240938902, 0.0007894917507655919, 0.02369573526084423, -0.0062213134951889515, 0.029413532465696335, -0.01695062965154648, -0.01276028249412775, -0.008076556026935577, 0.022195320576429367, 0.009894625283777714, -0.012097937054932117, -0.017721112817525864, -0.025169115513563156, -0.011104419827461243, -0.02625049650669098, 0.0009563452913425863, 7.112395542208105e-05, 0.008624004200100899, 0.003098829183727503, -0.0008038538508117199, 0.022668424993753433, 0.026912841945886612, -0.01903228461742401, -0.03671284765005112, -0.03468525782227516, -0.016044974327087402, 0.01876194030046463, -0.007900831289589405, -0.02583146095275879, 0.010685384273529053, -0.002297932282090187, 0.00303293252363801, -0.0070897964760661125, 0.00027541394229047, 0.02299284003674984, -0.000764146912842989, 0.0006146123632788658, 0.01977573335170746, 0.02018125168979168, 0.006454485934227705, -0.011030074208974838, -0.03530705347657204, -0.013145524077117443, 0.0118546262383461, 0.0023401735816150904, 0.016031457111239433, -0.018694354221224785, -0.009394487366080284, -0.009894625283777714, 0.03260360285639763, -0.021235596388578415, 0.0021813458297401667, -0.008907866664230824, -0.017545389011502266, -0.006457865238189697, 0.003984208684414625, -0.009326901286840439, -0.010901660658419132, -0.012375040911138058, -0.004214002285152674, -0.014706766232848167, 0.0004333967808634043, -0.008603728376328945, -0.003784829517826438, -0.015585387125611305, -0.028548428788781166, 0.01635587029159069, 0.012516971677541733, -0.009306625463068485, 0.030819326639175415, -0.013368558138608932, -9.836965909926221e-05, -0.020424561575055122, 0.0061097959987819195, 0.03609105199575424, -0.020911183208227158, 0.0032272429671138525, 0.002710208296775818, -0.0054947612807154655, -0.01305090356618166, 0.06412582844495773, -0.028737669810652733, -0.050851888954639435, -0.004656692035496235, -0.007150624413043261, -0.0024618287570774555, -0.012016833759844303, -0.009245797991752625, 0.023371322080492973, -0.006508554797619581, -0.00020920053066220134, -0.005907037295401096, -0.01805904321372509, 0.0043390365317463875, -0.0002060324331978336, 0.007623727899044752, -0.022046631202101707, 0.005275106057524681, 0.01000276394188404, 0.014639180153608322, -0.004920278210192919, -0.0440121591091156, -0.01155724748969078, 0.01834290660917759, 0.00550151988863945, -0.006684279069304466, -0.0021441734861582518, -0.0016262938734143972, 0.03963256999850273, 0.005116278305649757, 0.007948141545057297, 0.017396697774529457, 0.026872288435697556, 0.014152558520436287, -0.011834350414574146, -0.008008969947695732, -0.026547875255346298, 0.015369110740721226, -0.039848849177360535, 0.014166075736284256, -0.015761110931634903, 0.011178764514625072, 0.009637798182666302, 0.00112784537486732, 0.011597799137234688, -0.037604983896017075, -0.027196703478693962, 0.029305394738912582, 0.03192773833870888, -0.008765935897827148, 0.008198210969567299, -0.010759729892015457, 0.0013872075360268354, 0.01778869889676571, 0.010144694708287716, 0.0008021641988307238, -0.0009867590852081776, 0.02100580371916294, 0.013273937627673149, 0.019424285739660263, 0.006444348022341728, -0.014355317689478397, -0.04693188518285751, -0.015206904150545597, -0.028872841969132423, 0.018126629292964935, -0.005440692417323589, 0.03514484688639641, 0.01974869892001152, 0.032955050468444824, -0.009380970150232315, 0.037604983896017075, -0.009610763750970364, -0.024871736764907837, -0.014260697178542614, 0.009827039204537868, -0.05285244062542915, -0.023384839296340942, 0.013098213821649551, 0.03784829378128052, 0.01148966047912836, 0.0043863472528755665, 0.02819697931408882, 0.00790758989751339, 0.00451138149946928, -0.024506770074367523, 0.014787869527935982, -0.0003732027835212648, 0.0028538289479911327, 0.005775244440883398, 0.004744553938508034, 0.010570487938821316, 0.016599180176854134, -0.008468556217849255, -0.0004773278196807951, 0.035631466656923294, 0.005460968241095543, 0.011199040338397026, 0.00021099580044392496, -0.026872288435697556, -0.040686916559934616, -0.008765935897827148, -0.006907313596457243, -0.040578778833150864, -0.014612145721912384, -0.009218763560056686, 0.014247179962694645, 0.03149518743157387, 0.008292831480503082, 0.014571593143045902, 0.015828697010874748, 0.02187090739607811, -0.005335933528840542, -0.019383734092116356, -0.008603728376328945, 0.009759453125298023, 0.028521394357085228, 0.00783324521034956, -0.00620441697537899, -0.025006908923387527, -0.009901383891701698, 0.004207243677228689, 0.013442903757095337, -0.016477525234222412, -0.004301864188164473, 0.0007569658919237554, 0.004190347157418728, -0.010915177874267101, -0.013077937997877598, 0.021411320194602013, -0.01580166257917881, -0.01044207438826561, 0.01446345541626215, -0.016044974327087402, 0.00818469375371933, -0.034198638051748276, 0.003129242919385433, 0.04785105958580971, -0.01862676814198494, 0.022330494597554207, -0.017288560047745705, 0.0007223279681056738, -0.009745935909450054, 0.020519182085990906, -0.011070625856518745, -0.02583146095275879, 0.005085864569991827, 0.019113389775156975, -0.01919449307024479, 0.018870078027248383, -0.024466218426823616, 0.021532976999878883, -0.0006851555081084371, -0.0121925575658679, -0.015233938582241535, -0.03622622415423393, 0.0007962504168972373, 0.0306300837546587, 0.024736564606428146, -0.014531041495501995, 0.0017775181913748384, -0.03311725705862045, -0.01446345541626215, 0.00638689985498786, -0.01931614801287651, 0.027399461716413498, -0.0016583973774686456, -0.01481490395963192, 0.015531318262219429, -0.003021104959771037, 0.010631315410137177, 0.010834074579179287, 0.01396331749856472, 0.0022911736741662025, -0.01459862757474184, 0.014274214394390583, -0.019262079149484634, 0.005406899377703667, 0.018721388652920723, 0.04552609100937843, 0.016166629269719124, -0.004494484979659319, -0.016274766996502876, 0.018275318667292595, 0.01255752332508564, -0.005805658176541328, -0.02000552788376808, -0.009435039013624191, 0.017464283853769302, 0.02593959867954254, 0.02653435803949833, -0.007110072765499353, 0.031143739819526672, 0.02327670156955719, 0.015260973013937473, 0.024304011836647987, -0.004504622891545296, 0.02908911742269993, 0.008441521786153316, 0.015193386934697628, -0.013361799530684948, -0.008847039192914963, 0.00507572665810585, 0.005082485266029835, 0.0009098797454498708, -0.017166905105113983, -0.027575185522437096, 0.004244416020810604, -0.026034219190478325, -0.031062636524438858, -0.02215476892888546, 0.0061233132146298885, -0.003141070483252406, -0.00055082788458094, -0.026426220312714577, -0.017139870673418045, -0.008894349448382854, -0.026750633493065834, -0.013868696987628937, 0.022073665633797646, 0.014531041495501995, 0.01496359333395958, 0.010131177492439747, -0.002216828754171729, 0.009272832423448563, -0.04355257377028465, 0.006626830901950598, 0.031549256294965744, -0.006802555173635483, -0.032928016036748886, -0.014585110358893871, 0.004021381493657827, -0.00014446559362113476, -0.010259591042995453, -0.0021644493099302053, -0.029170220717787743, 0.023803874850273132, -0.005244692321866751, -0.04355257377028465, -0.016693800687789917, -0.010171729139983654, 0.009103866294026375, 0.018721388652920723, 0.02045159600675106, 0.015585387125611305, 0.014625662937760353, 0.021249113604426384, 0.008252279832959175, -0.008603728376328945, 0.01396331749856472, -0.02962980791926384, -0.004994623363018036, 0.00965131539851427, -0.012753523886203766, 0.02581794373691082, 0.018518630415201187, -0.007711590267717838, 0.017112836241722107, -0.010685384273529053, -0.00458910595625639, -0.013077937997877598, -0.018734905868768692, -0.0027085186447948217, -0.0037510364782065153, 0.014368834905326366, -0.02160056307911873, 0.0033607259392738342, 0.04390402138233185, -0.01778869889676571, 0.021086907014250755, 0.007583176251500845, 0.01846456155180931, 0.005349450744688511, -0.0114288330078125, 0.0044640712440013885, -0.0008887590956874192, -0.018004974350333214, 0.0005305520026013255, -0.04190346971154213, -0.001529983477666974, 0.031549256294965744, -0.00340634654276073, 0.03146815299987793, 0.009326901286840439, -0.01874842308461666, -0.026439737528562546, 0.005515037104487419, 0.01515283528715372, 0.005508278496563435, -0.014003869146108627, -0.01623421534895897, -0.019086353480815887, 0.014166075736284256, -0.023776840418577194, -0.00024605615180917084, -0.008002211339771748, 0.004717519506812096, 0.007339865900576115, 0.011732971295714378, 0.007549383211880922, -0.006501796189695597, -0.016883043572306633, -0.03146815299987793, -0.007143865805119276, -0.01367269642651081, 0.022654907777905464, 0.023452425375580788, 0.011476143263280392, -0.0026223461609333754, -0.0059442101046442986, 0.008204969577491283, 0.00437282957136631, -0.009408004581928253, -0.010475867427885532, -0.006593037862330675, 0.029440566897392273, 0.015355593524873257, 0.016991181299090385, -0.005866485647857189, 0.023601114749908447, 0.024033667519688606, -0.0015925008337944746, 0.015747593715786934, -0.0030971395317465067, 0.009043038822710514, -0.023912012577056885, -0.00391662260517478, 0.017166905105113983, 0.004524898715317249, 0.022357529029250145, -0.013841662555932999, 0.004362691659480333, 0.03273877501487732, 0.01609904319047928, 0.015112283639609814, -0.01666676625609398, -0.039010778069496155, -0.012800834141671658, 0.022803597152233124, -0.004984485451132059, 0.023952564224600792, -0.022533252835273743, -0.019640561193227768, 0.03411753475666046, 0.0067991758696734905, -0.0031207946594804525, 0.015504283830523491, 0.012827868573367596, -0.011503178626298904, 0.014206627383828163, 0.035198915749788284, 0.03484746441245079, -0.02497987449169159, 0.005575865041464567, -0.03203587979078293, 0.020830079913139343, 0.005923933815211058, -0.009002487175166607, 0.015382627956569195, 0.0035246224142611027, 0.0077791763469576836, -0.019681112840771675, 0.0003018148127011955, -0.0015418111579492688, -0.03076525591313839, 0.0059340717270970345, -0.014612145721912384, -0.01708580181002617, -0.02581794373691082, -0.024304011836647987, -0.0060084168799221516, 0.010888143442571163, 0.002431415021419525, 0.012645385228097439, 0.023601114749908447, -0.02795366942882538, -0.02270897664129734, 0.02101932093501091, -0.017423732206225395, 0.03711836412549019, -0.001168397138826549, 0.03287394717335701, 0.033928293734788895, 0.005356209818273783, 0.0011895177885890007, 0.0036597950384020805, -0.004474209155887365, 0.00833338312804699, 0.03468525782227516, 0.023871460929512978, -0.024222908541560173, 0.019518906250596046, -0.023763323202729225, 0.023452425375580788, -0.017464283853769302, -0.017950905486941338, 0.020519182085990906, 0.011165247298777103, 0.008867315016686916, -0.032657671719789505, 0.02061380259692669, -0.03171146288514137, 0.007218210492283106, -0.016328835859894753, 0.0038895881734788418, -0.006893796380609274, -0.005967865232378244, -0.02623697929084301, 0.024574358016252518, 0.017383180558681488, 0.03725353628396988, 0.015761110931634903, 0.0009825349552556872, 0.013774075545370579, -0.011435591615736485, -0.033928293734788895, 0.00917821191251278, -0.02339835651218891, 0.00859696976840496, -0.029305394738912582, -0.0010442073689773679, 0.03103560209274292, -0.010286625474691391, -0.029251325875520706, -0.020221803337335587, 0.007549383211880922, 0.024912288412451744, -0.025507047772407532, -0.009637798182666302, -0.022046631202101707, 0.00046212092274799943, 0.0014708455419167876, 0.005974623840302229, -0.020965252071619034, 0.0008008969598449767, 0.00040087089291773736, -0.013936283066868782, 0.014504007063806057, 0.008482073433697224, 0.016883043572306633, -0.012915730476379395, 0.003249208442866802, -0.0069749001413583755, 0.00729931378737092, -0.0039368984289467335, -0.012199316173791885, -0.05209547281265259, -0.010293384082615376, -0.02015421725809574, 0.00021110140369273722, 0.007008693180978298, 0.017153387889266014, -0.00798193458467722, 0.01467973180115223, 0.02962980791926384, -0.004122760612517595, 0.020816562697291374, -0.009691867046058178, 0.011618074961006641, -0.0364154651761055, 0.0028538289479911327, -0.002509139245375991, -0.0030295532196760178, 0.03541519120335579, -0.006326071918010712, -0.008529383689165115, -0.021681666374206543, -0.01044207438826561, 0.005947589408606291, -0.013713248074054718, -0.018275318667292595, -0.001049276441335678, 0.015747593715786934, 0.014612145721912384, -0.013699730858206749, -0.02822401374578476, 0.014206627383828163, 0.014571593143045902, -0.004653312731534243, 0.0009757763473317027, -0.01691007800400257, 0.0231415294110775, -0.0025463115889579058, -0.026980428025126457, 0.006802555173635483, -0.025033943355083466, 0.005978003144264221, 0.0004895778256468475, -0.0007692159269936383, 0.002831863472238183, 0.01988387294113636, -0.03030567057430744, -0.010550212115049362, -0.019694630056619644, 0.0011346039827913046, -0.016815457493066788, 0.008651038631796837, -0.009212004952132702, 0.030440842732787132, 0.00464993342757225, 0.008225245401263237, -0.018018491566181183, -0.00894841831177473, 0.007934624329209328, 0.010097384452819824, -0.01531504187732935, -0.014301248826086521, -0.0105772465467453, 0.030413808301091194, 0.006464623846113682, -0.024858219549059868, 0.001114328159019351, -4.015572994831018e-05, -0.022222356870770454, -0.017139870673418045, 0.020275872200727463, 0.011584281921386719, 0.007873796857893467, 0.025790909305214882, -0.004241036716848612, 0.04644526541233063, -0.023182081058621407, 0.018559182062745094, -0.010388005524873734, 0.02046511322259903, 0.0031866913195699453, 0.024885253980755806, -0.001704862923361361, -0.0066099343821406364, 0.0051771062426269054, -0.022249391302466393, 0.017261525616049767, 0.0046904850751161575, 0.0039368984289467335, -0.0019785871263593435, 0.010969246737658978, -0.020965252071619034, 0.009428280405700207, -0.01663973182439804, -0.008657797239720821, -0.0011531902709975839, 0.0038152432534843683, -0.015436697751283646, -0.0036192431580275297, 7.687934703426436e-05, 0.02383090928196907, 0.005893520079553127, -0.006832968909293413, -0.006238210014998913, -0.008792970329523087, 0.016423456370830536, -0.0020242079626768827, -0.013077937997877598, 0.011847867630422115, -0.01734262891113758, 0.02453380450606346, -0.01411200687289238, 0.003926760517060757, 0.03847008943557739, 0.0118546262383461, -0.0025327943731099367, -0.020640837028622627, 0.02581794373691082, -0.04487726464867592, -0.014139041304588318, 0.018707871437072754, 0.0023131391499191523, 0.015585387125611305, -0.011340971104800701, 0.035631466656923294, -0.038416020572185516, 0.006714692804962397, -0.03555036336183548, -0.008792970329523087, -0.03655063733458519, 0.02273601107299328, 0.032225120812654495, -0.02226290851831436, 0.015869248658418655, -0.005021657794713974, 0.020640837028622627, -0.003933519124984741, -0.018302353098988533, -0.00824552122503519, -0.0012435868848115206, -0.0016491042915731668, 0.01311173103749752, -0.010340695269405842, -0.010759729892015457, -0.007170900236815214, 0.015571869909763336, -0.031008567661046982, -0.014585110358893871, 0.18902519345283508, 0.014409386552870274, 0.012881937436759472, 0.04157905653119087, 0.00840097013860941, 0.027629254385828972, 0.01411200687289238, -0.0074142105877399445, -0.018369941040873528, 0.01355104148387909, -0.01847807876765728, 0.014639180153608322, -0.0003812286304309964, 0.002161070005968213, -0.01136800553649664, 0.017545389011502266, 0.015085249207913876, -0.038172706961631775, -0.010388005524873734, -0.004653312731534243, -0.00528862327337265, 0.00824552122503519, -0.014693249017000198, -0.03400939702987671, 0.02776442840695381, -0.025169115513563156, -0.012854903005063534, 0.004440416116267443, 0.026561392471194267, -0.004122760612517595, -0.007069520652294159, 0.027872566133737564, -0.003514484502375126, 0.005761727225035429, -0.04106539860367775, 0.005315657705068588, 0.04176829755306244, -0.002480414928868413, 0.041957538574934006, -0.01960000954568386, 0.012185798957943916, -0.024723047390580177, -0.03514484688639641, -0.028872841969132423, 0.010638074018061161, 0.017599457874894142, -0.007143865805119276, -0.010827315971255302, -0.014193110167980194, 0.02635863423347473, -0.017829250544309616, -0.023209115490317345, 0.007319590076804161, -0.0057549686171114445, 0.0015511042438447475, -0.012638626620173454, -0.0029856222681701183, 0.006373382639139891, 0.01355104148387909, -0.013098213821649551, -5.59170548513066e-05, 0.017139870673418045, -0.01432828325778246, 0.014585110358893871, -0.006711313501000404, 0.0010509660933166742, -0.04693188518285751, -0.008177935145795345, -0.007420969195663929, -0.020059596747159958, -0.017410214990377426, -0.018032008782029152, 0.006268623750656843, 0.010921936482191086, -0.03268470615148544, -0.026453254744410515, 0.016964146867394447, 0.008117107674479485, 0.0038625537417829037, 0.029170220717787743, -0.02241159789264202, -0.022681942209601402, -0.016585662961006165, 0.0029450703877955675, -0.008367176167666912, -0.05317685380578041, 0.037604983896017075, -0.021073389798402786, -0.0028808636125177145, -0.0059442101046442986, -0.013226627372205257, 0.0010298453271389008, -0.0017808974953368306, 0.012854903005063534, 0.013787592761218548, 0.008407728746533394, -0.010043315589427948, 0.03176553174853325, -0.015098766423761845, 0.010259591042995453, -0.01722097396850586, 0.01248317863792181, 0.016261249780654907, 0.0028605875559151173, 0.00412951922044158, -0.012260143645107746, 0.00980000477284193, 0.004704002290964127, 0.015031180344522, -0.028872841969132423, -0.027331875637173653, 0.001409173128195107, 0.004727657418698072, -0.010354212485253811, -0.006018554791808128, -0.004950691945850849, -0.002808208344504237, -0.00370372598990798, 0.014760835096240044, 0.008299590088427067, 0.004102484788745642, -0.013361799530684948, -0.028169944882392883, 0.0008477849187329412, 0.003043070435523987, -0.026480289176106453, -0.02750759944319725, -0.016977664083242416, -0.0028910015244036913, -0.00041269848588854074, 0.03019753284752369, -0.031008567661046982, -0.00641731359064579, -0.005724554415792227, -0.0071371071971952915, 0.0048526921309530735, -0.006018554791808128, 0.00021500872389879078, -0.012476420029997826, -0.0032694844994693995, -0.018261801451444626, 0.017261525616049767, -0.015504283830523491, -0.007961658760905266, -0.0001530194713268429, -0.036875054240226746, -0.00840097013860941, 0.0015063283499330282, -0.013010350987315178, -0.02862953208386898, -0.006927589885890484, 0.001087293610908091, 0.002372276969254017, -0.02721022069454193, -0.003355656750500202, -0.017099319025874138, -0.02230346016585827, -0.02679118514060974, 0.01397683471441269, -0.010043315589427948, -0.03214401751756668, 0.0002967458276543766, 0.023939047008752823, -0.007644003722816706, -0.02695339359343052, 0.005694140680134296, -0.1708580106496811, -0.004845933523029089, 0.0022641390096396208, -0.004072071053087711, 0.003930139821022749, 0.014071455225348473, 0.03417160362005234, 0.002090104389935732, 0.008806487545371056, -0.01444993820041418, -0.005450830329209566, 0.016815457493066788, -0.0032289326190948486, -0.007488555274903774, -0.021614080294966698, 0.009921659715473652, -0.019126906991004944, -0.005379864946007729, 0.04471505805850029, 0.012239867821335793, 0.029143186286091805, -0.024641944095492363, 0.03103560209274292, 0.023912012577056885, -0.020978769287467003, 0.014368834905326366, 0.0008507418096996844, -0.017315594479441643, -0.020830079913139343, -0.027426496148109436, 0.02242511510848999, -0.0065592448227107525, 0.01708580181002617, -0.014139041304588318, 0.014409386552870274, -0.020559733733534813, -0.0014590179780498147, -0.017315594479441643, -0.02906208299100399, 0.007535865996032953, 0.0025463115889579058, 0.021411320194602013, 0.02679118514060974, -0.005339312832802534, -0.009563453495502472, 0.01676138862967491, 0.028521394357085228, -0.03898374363780022, 0.0029721050523221493, -0.03995698690414429, 0.02510152943432331, -0.0220060795545578, -0.0036023466382175684, 0.0032863810192793608, 0.018586216494441032, -0.011969523504376411, -0.026574909687042236, 0.016247732564806938, 0.00246858736500144, 0.0013475007144734263, 0.005930692423135042, -0.018734905868768692, 0.0002188104554079473, 0.016301801428198814, 0.011732971295714378, -0.020681390538811684, -0.02327670156955719, 0.022681942209601402, -0.037740156054496765, 0.005413657985627651, 0.007948141545057297, -0.014733800664544106, 0.0029687255155295134, -0.0013770696241408587, 0.002090104389935732, 0.03049491159617901, -0.011915454640984535, 0.0018451043870300055, 0.007380417548120022, -0.01934318244457245, -0.020992286503314972, 0.016883043572306633, -0.0033759328071027994, 0.0006230606813915074, 0.0030244842637330294, -0.014625662937760353, -0.005890140775591135, -0.00875917635858059, -0.000509853707626462, -0.03552332893013954, 0.025331323966383934, -0.037199467420578, -0.01565297320485115, -0.006373382639139891, 0.003653036430478096, 0.01832938939332962, 0.021397802978754044, -0.015774628147482872, 0.020127182826399803, -0.011861384846270084, 0.006968141533434391, -0.005687382072210312, -0.03684801980853081, -0.016883043572306633, 0.014368834905326366, 0.019694630056619644, -0.04184940084815025, 0.015031180344522, 0.030819326639175415, 0.015125800855457783, -0.027899600565433502, -0.005153450649231672, 0.003382691415026784, 0.01326042041182518, -0.017694078385829926, 0.03711836412549019, -0.01431476604193449, -0.004322140011936426, 0.01666676625609398, 0.011915454640984535, 0.046201955527067184, -0.012388558126986027, -0.007495313882827759, 0.029008014127612114, -0.006582899950444698, -0.011814074590802193, -0.11603205651044846, -0.01764000952243805, -0.003808484645560384, 0.025790909305214882, -0.007015451788902283, 0.03303615376353264, -0.01820773258805275, 0.010725936852395535, -1.8903027012129314e-05, 0.014030903577804565, 0.021938493475317955, -0.03441491350531578, -0.024020150303840637, 0.01620718091726303, -0.009401245974004269, -0.020478630438447, -0.015774628147482872, -0.005558968521654606, -0.03522595018148422, 0.02992718666791916, 0.025439461693167686, 0.00011162290320498869, 0.0028217255603522062, 0.005173726938664913, -0.01862676814198494, 0.008090073242783546, -0.04271450266242027, 0.02583146095275879, 0.005082485266029835, 0.03538815677165985, 0.008313107304275036, -0.013794351369142532, 0.0025074495933949947, -0.0039504156447947025, -0.0031985188834369183, -0.004960829857736826, -0.010962488129734993, -0.025899047031998634, 0.03979478031396866, -0.0231415294110775, -0.009712142869830132, 0.002818346256390214, 0.007725107483565807, -0.005589382257312536, -0.009982488118112087, -0.004136277828365564, -0.04187643527984619, 0.019505389034748077, 0.014355317689478397, -0.024006633087992668, -0.009205246344208717, -0.012375040911138058, -0.030846361070871353, -0.00539676146581769, 0.014558075927197933, 0.0015333627816289663, -0.002091794041916728, -0.006995175965130329, 0.01677490584552288, -0.003825381165370345, -0.018721388652920723, 0.0034384499303996563, -0.023182081058621407, 0.025709806010127068, 0.01607200875878334, 0.00973917730152607, -0.013179317116737366, 0.02173573523759842, 0.011800557374954224, -0.02101932093501091, 0.009279591031372547, 0.014990627765655518, -0.020816562697291374, 0.04176829755306244, -0.023668700829148293, 0.016599180176854134, 0.011739729903638363, 0.00016231258632615209, 0.007623727899044752, 0.011949247680604458, -0.02692635916173458, -0.011847867630422115, -0.027818497270345688, -0.0017724491190165281, 0.0030498290434479713, 0.02269545942544937, -0.0006990951951593161, 0.023803874850273132, 0.03144111856818199, -0.017680561169981956, 0.01946483738720417, 0.029954221099615097, 0.027007462456822395, 0.01677490584552288, 0.014044420793652534, 0.001437897328287363, -0.0014412766322493553, -0.0126183507964015, -0.0006357330712489784, 0.020640837028622627, -0.05004085227847099, -0.01268593780696392, -0.06223341077566147, -0.0017352767754346132, -0.010455591604113579, -0.028386220335960388, 0.01846456155180931, -0.0025446219369769096, 0.010070350021123886, 0.008103590458631516, 0.002238794229924679, -0.010212280787527561, -0.012503454461693764, -0.019153941422700882, -0.0027541392482817173, 0.0013872075360268354, 0.0007388020749203861, -0.012794075533747673, 0.02806180715560913, -0.01751835271716118, 0.011530213057994843, 0.004568829666823149, 0.020221803337335587, -0.01919449307024479, 0.002901139436289668, 0.022398080676794052, -0.0214383564889431, 0.00370372598990798, 0.0037814502138644457, 0.02258732169866562, -0.021059872582554817, -0.019518906250596046, 0.007529107388108969, 0.014355317689478397, -0.009718901477754116, 0.01876194030046463, -0.01580166257917881, 0.005031795706599951, -0.008482073433697224, 0.009745935909450054, 0.008130624890327454, 0.003953794948756695, -0.01834290660917759, -0.017288560047745705, 0.007934624329209328, -0.031549256294965744, -0.0017555525992065668, -0.0033370705787092447, -0.0126183507964015, 0.0070762792602181435, 0.008880832232534885, 0.013456420972943306, 0.012104695662856102, 0.007366900332272053, -0.037469811737537384, -0.018586216494441032, 0.014152558520436287, -0.020424561575055122, -0.006113175302743912, -0.020397527143359184, -0.0007345779449678957, -0.018437527120113373, 0.026128841564059258, 0.005511657800525427, 0.010029798373579979, 0.009117383509874344, -0.0029163463041186333, -0.0034840707667171955, -0.031387049704790115, 0.007556141819804907, 0.004453933332115412, -0.008651038631796837, -0.008238762617111206, -0.0010974316392093897, 0.012929247692227364, 0.022073665633797646, 0.014084972441196442, -0.02103283815085888, -0.021532976999878883, -0.008914625272154808, -0.008137383498251438, 0.02001904509961605, 0.037037260830402374, 0.02215476892888546, -0.020140700042247772, 0.008955176919698715, 0.041146501898765564, 0.02806180715560913, -0.01638290472328663, -0.010198763571679592, 0.017248008400201797, -0.001880587195046246, 0.0020748975221067667, -0.007420969195663929, -0.010178487747907639, 0.004389726556837559, 0.004254553932696581, 0.021086907014250755, 0.0025885531213134527, -4.472308137337677e-05, -0.018586216494441032, 0.00018924147298093885, 0.0026003806851804256, -0.032387327402830124, 0.01822124980390072, 0.007495313882827759, -0.0491216816008091, 0.016301801428198814, -0.008651038631796837, -0.03160332515835762, -0.004541795235127211, 0.028115876019001007, 0.00560965808108449, 0.008144142106175423, 0.020262354984879494, 0.008792970329523087, -0.03771312162280083, 0.015355593524873257, -0.01530152466148138, -0.0006990951951593161, -0.016883043572306633, 0.020343458279967308, -0.014531041495501995, 0.00847531482577324, 0.04474209249019623, 0.00021986648789606988, 0.019924424588680267, 0.007211451884359121, 0.02526373602449894, -0.0037780709099024534, -0.010306901298463345, 0.019802767783403397, -0.014652697369456291, 0.00415993295609951, -0.019005250185728073, -0.010834074579179287, -0.020694907754659653, -0.009637798182666302, 0.009468832053244114, 0.014422903768718243, -0.014639180153608322, 0.07942734658718109, 0.025452978909015656, 0.0022928633261471987, 0.006194279063493013, -0.012571040540933609, -0.0006336210062727332, 0.015288007445633411, -0.012530488893389702, -0.027129117399454117, -0.03738870844244957, 0.0025784149765968323, 0.01565297320485115, -0.0214383564889431, -0.0398218147456646, 0.006424072198569775, 0.011043591424822807, 0.0007704831659793854, 0.01190869603306055, -0.016274766996502876, 0.02862953208386898, 0.013206351548433304, 0.011861384846270084, 0.008265797048807144, 0.020492147654294968, -0.023749804124236107, -0.0012968110386282206, 0.022100700065493584, 0.015896283090114594, -0.016328835859894753, -0.04176829755306244, 0.003264415543526411, -0.001892414758913219, -0.034766361117362976, -0.019126906991004944, -0.011063867248594761, 0.023668700829148293, -0.007948141545057297, -0.012253385037183762, 0.01596386916935444, 0.003232311923056841, 0.0014742248458787799, 0.010462350212037563, -0.02072194218635559, -0.011395039968192577, -0.012449385598301888, -0.0023418632335960865, -0.018545664846897125, 0.004301864188164473, -0.03936222568154335], "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5": [-0.017995057627558708, -0.008909516967833042, -0.011150436475872993, -0.01563904620707035, -0.013228872790932655, 0.01026354730129242, -0.001921029994264245, -0.005944191478192806, -0.004938824102282524, -0.022043608129024506, -0.005676770582795143, -0.0019819613080471754, -0.019254306331276894, 0.011631117202341557, 0.020567715167999268, 0.026606688275933266, 0.009789636358618736, 0.015043272636830807, -0.0034933972638100386, 0.007582567632198334, -0.0034290808252990246, 0.008293433114886284, -0.021799882873892784, -0.03046567365527153, -0.02219255082309246, 0.011042114347219467, 0.013905887492001057, -0.00698002427816391, 0.011854532174766064, 0.004959134850651026, 0.029734497889876366, 0.007291451562196016, -0.006736299023032188, -0.03734414651989937, -0.024291297420859337, -0.004410752560943365, -0.008158030919730663, 0.0015004344750195742, -0.016668109223246574, 0.02074373885989189, 0.010087523609399796, 0.0020767434034496546, -0.004505534656345844, 0.025740109384059906, -0.023505959659814835, 0.02074373885989189, 0.0022036838345229626, -0.03761495277285576, -0.008652251213788986, 0.030005304142832756, 0.03609843924641609, 0.008246042765676975, -0.012748192064464092, -0.01933554746210575, -0.012788812629878521, -0.016004635021090508, -0.0016823821933940053, 0.01910536363720894, -0.0058629498817026615, -0.01567966677248478, 0.0021546001080423594, -0.004062090069055557, -0.01707431860268116, 0.007528406567871571, -0.020283369347453117, 0.010500502772629261, 0.007237290032207966, 0.004163641948252916, 0.00718989921733737, 0.006418101955205202, 0.03964599594473839, 0.03244255855679512, -0.021840503439307213, 0.020323989912867546, 0.024629805237054825, -0.0015833687502890825, -0.005930651444941759, 0.006712603382766247, -0.04446634277701378, -0.011448323726654053, 0.001159388106316328, -0.020865602418780327, -0.016140036284923553, -0.010101063176989555, 0.021447835490107536, 0.011881613172590733, 0.023248694837093353, 0.013181481510400772, 0.002833307720720768, -0.04127083346247673, 0.014691225253045559, 0.026850413531064987, -0.005578603595495224, 0.013702782802283764, -0.029815739020705223, 0.030817721039056778, -0.02621402032673359, 0.028624193742871284, -0.007717970758676529, -0.04641614854335785, 0.017480526119470596, 0.015016192570328712, 0.004888048395514488, -0.008212191984057426, -0.020892681553959846, -0.003811594331637025, 0.0008945060544647276, -0.012734651565551758, 0.01022969651967287, 0.010134913958609104, -0.0055650630965828896, 0.03125101327896118, 0.005016680806875229, -0.03872525691986084, 0.0013379508163779974, -0.009694854728877544, 0.020134424790740013, -0.02615985833108425, -0.010927021503448486, 0.0026471286546438932, 0.0047255647368729115, -0.0011060732649639249, 0.013716323301196098, -0.001104380702599883, 0.012179499492049217, 0.012558627873659134, -0.0032395166344940662, -0.006590740755200386, 0.014325637370347977, -0.014163153246045113, 0.043383121490478516, -0.008225732482969761, -0.005510902032256126, -0.01336427591741085, 0.005537982564419508, -0.008604860864579678, 0.026403583586215973, 0.018008599057793617, -0.010899941436946392, -0.02816382236778736, -0.014528741128742695, 0.007481015753000975, -0.010195845738053322, -0.01938970945775509, 0.015002652071416378, 0.021149948239326477, 0.002208761405199766, 0.0031599674839526415, 0.0033021406270563602, -0.000434558984125033, 0.005670000333338976, 0.007589337881654501, -0.01066298596560955, -0.007521636318415403, -0.005030221305787563, 0.003659266047179699, -0.012017016299068928, 0.0019159524235874414, 0.009227714501321316, -0.0021529076620936394, 0.01179360132664442, 0.018428348004817963, 0.016735810786485672, -0.01681705191731453, -0.013513218611478806, 0.019565733149647713, 0.02733786404132843, -0.00024436009698547423, 0.009417278692126274, 0.017805494368076324, -0.003645725781098008, -0.009870878420770168, -0.010087523609399796, 0.006638132035732269, 0.017236800864338875, -0.011820681393146515, 0.006712603382766247, 0.00013021960330661386, -0.05470281094312668, -0.014731845818459988, 0.013120550662279129, -0.011163976974785328, 0.0199042409658432, 0.0358276329934597, -0.014840167947113514, -0.022707082331180573, 0.0013819568557664752, 0.0020682807080447674, 0.003757433034479618, 0.004072245210409164, 0.016681648790836334, 0.01853667013347149, 0.0011060732649639249, 0.02020212635397911, -0.605305552482605, -0.005978042259812355, -0.008185110986232758, -0.004932054318487644, 0.007866914384067059, 0.004444603342562914, 0.0299240630120039, 0.02159677818417549, -0.010480191558599472, 0.041162509471178055, -0.012118567712605, -0.014758926816284657, 0.01818462274968624, 0.006245463155210018, -0.0016730732750147581, -0.0324154756963253, 0.03845445066690445, -0.02075727842748165, -0.022314414381980896, 0.02133951149880886, -0.013655392453074455, 0.03225299343466759, -0.008476227521896362, -0.004363361746072769, -0.022896647453308105, 0.01738574542105198, -0.0019125672988593578, -0.016031714156270027, 0.0213936734944582, 0.0122268907725811, -0.005179164465516806, 0.007866914384067059, 0.0073456126265227795, -0.0021292120218276978, 0.03964599594473839, -0.013492908328771591, -0.013269493356347084, 0.031846784055233, 0.0035678688436746597, 0.033769506961107254, -0.013608001172542572, 0.01125198882073164, 0.0007400619797408581, -0.02476520836353302, 0.02307267114520073, -0.0027300629299134016, 0.008747033774852753, 0.026241101324558258, -0.0009664389071986079, 0.007453934755176306, 0.008246042765676975, -0.034825649112463, 0.011929003521800041, -0.009234484285116196, 0.004803421441465616, -0.0034189256839454174, 0.008916287682950497, -0.0022036838345229626, 0.007826292887330055, -0.015232836827635765, -0.015463022515177727, 0.029680335894227028, 0.0027943793684244156, -0.049395013600587845, -0.011428012512624264, 0.007724741008132696, -0.010866090655326843, 0.001956573221832514, 0.0026014300528913736, -0.034825649112463, -0.024575643241405487, -0.006167606450617313, -0.018658533692359924, -0.025970295071601868, 0.015408860519528389, 0.007711200509220362, 0.026065077632665634, -0.007352382875978947, -0.0159910935908556, 0.010209386236965656, 0.020093804225325584, 0.004549540579319, -0.02018858678638935, -0.02450794167816639, 0.03872525691986084, -0.021745720878243446, -0.01394650898873806, 0.023533040657639503, -0.016004635021090508, 0.028840838000178337, 0.02075727842748165, 0.045982856303453445, 0.01565258577466011, 0.005747857037931681, 0.008367905393242836, 0.02365490421652794, -0.010067212395370007, -0.008902747184038162, -0.008564239367842674, -0.02789301797747612, -0.00291793467476964, -0.00633009010925889, 0.01481308788061142, -0.005490591283887625, -0.022598760202527046, 0.0016476851888000965, -0.007054496090859175, 0.020581254735589027, 0.026701470836997032, -0.026985816657543182, -0.017859654501080513, -0.03566515073180199, -0.01508389413356781, 0.02532036043703556, -0.01562550663948059, -0.028597112745046616, 0.0052536362782120705, 0.00924802478402853, 0.007792442571371794, -0.03501521423459053, 0.012585708871483803, 0.02192174457013607, 0.009437588974833488, -0.018969960510730743, 0.011394161731004715, -0.00021114404080435634, 0.0013032538117840886, -0.009884418919682503, -0.025726569816470146, -0.020405231043696404, 0.040837544947862625, -0.013580920174717903, 0.020933303982019424, -0.023275775834918022, 0.006661827210336924, -0.019254306331276894, 0.014339176937937737, 0.010304167866706848, 0.013296574354171753, 0.011116585694253445, 0.012802353128790855, 0.017033696174621582, -0.01053435355424881, -0.00953237060457468, -0.03079064190387726, -0.02102808468043804, -0.004992985632270575, -0.0036931168287992477, -0.031196851283311844, 0.004590161610394716, -0.004932054318487644, -0.0111233564093709, -0.029517853632569313, -0.007643498945981264, -0.0003596642054617405, -0.007569027598947287, -0.006025433540344238, 0.012633099220693111, -0.005954346619546413, -0.015341159887611866, 0.012409684248268604, 0.01023646630346775, -0.04980122298002243, -0.0034392361994832754, -0.007941385731101036, -0.01823878288269043, -0.01627543941140175, 0.030330270528793335, -0.008164800703525543, -0.059360671788454056, -0.008963678032159805, 0.0059915827587246895, 0.01196285430341959, -0.009336036629974842, -0.045982856303453445, 0.021488456055521965, -0.03590887412428856, -0.00648918841034174, -0.013059618882834911, 0.004038394428789616, 0.008564239367842674, -0.013343965634703636, -0.011813911609351635, -0.014907869510352612, 0.015760907903313637, 0.002135982271283865, 0.036856696009635925, 0.0030330270528793335, -0.03951059281826019, -0.0035780242178589106, 0.017886735498905182, -0.0008107254398055375, -0.00912616215646267, -0.006340245250612497, -0.006492573767900467, 0.018983500078320503, 0.014704765751957893, 0.006655057426542044, 0.021190568804740906, 0.027446188032627106, 0.015598425641655922, 0.0003186201793141663, -0.017832575365900993, -0.01876685582101345, 0.001126383664086461, -0.0045563108287751675, 0.022964349016547203, 0.0011306150117889047, 0.035123538225889206, 0.005869719665497541, 0.025848431512713432, -0.015110974200069904, -0.01790027692914009, -0.0236007422208786, 0.03761495277285576, 0.023167451843619347, -0.016735810786485672, 0.012606019154191017, 0.01680351234972477, -0.003791283816099167, 0.017507607117295265, -0.0059103406965732574, 0.024006951600313187, -0.0006960560567677021, 0.008015857078135014, -0.008862125687301159, 0.018198162317276, -0.008862125687301159, -0.006814155727624893, -0.05605684220790863, -0.01539532095193863, -0.0253068208694458, 0.0007315993425436318, -0.008320514112710953, 0.024629805237054825, 0.017250342294573784, 0.05351126566529274, -0.0095256008207798, 0.021569697186350822, 0.004434448201209307, -0.0032175136730074883, 0.026904575526714325, 0.0044682989828288555, -0.02590259350836277, 0.03555682674050331, -0.0036795763298869133, 0.013987129554152489, 0.016708729788661003, -0.0021766030695289373, 0.04462882876396179, -0.003926686942577362, -0.001470815041102469, -0.018617911264300346, 0.015002652071416378, -0.010629135183990002, -0.02305912971496582, 0.013459057547152042, 0.01266018021851778, 0.017764873802661896, 0.02449440211057663, 0.015124514698982239, 0.0006558582535944879, 0.014325637370347977, -0.008807964622974396, 0.03718166425824165, -0.0275815911591053, -0.007629958912730217, -0.03504229709506035, -0.003490012139081955, -0.008036168292164803, -0.025537004694342613, -0.019538652151823044, -0.041731204837560654, 0.0010561433155089617, 0.020581254735589027, 0.02813674323260784, 0.009099081158638, -0.018022138625383377, 0.020648956298828125, 0.00768411997705698, -0.004874507896602154, -0.03125101327896118, 0.010175535455346107, 0.008787654340267181, -0.0010578358778730035, -0.031142689287662506, -0.026674389839172363, -0.0065230391919612885, -0.024034032598137856, 0.055054858326911926, -0.014867248944938183, -0.011631117202341557, 0.005619224160909653, 0.0039876182563602924, 0.021231189370155334, -0.008428836241364479, 0.029788659885525703, -0.00568692572414875, 0.011218138039112091, 0.018198162317276, -0.00035500971716828644, -0.02305912971496582, -0.010757767595350742, -0.017846114933490753, 0.04124375432729721, 0.03209051117300987, -0.0036965017206966877, 0.016140036284923553, -0.012199809774756432, -0.011414472945034504, 0.011428012512624264, 0.012199809774756432, -0.010683296248316765, 0.0019582659006118774, 0.026620229706168175, -0.002929782262071967, 0.0032919852528721094, -0.02276124432682991, 0.0014538896502926946, 0.007914304733276367, -0.009471439756453037, -0.011130126193165779, -0.010019822046160698, -0.0018634836887940764, 0.044547587633132935, -0.0018634836887940764, -0.015341159887611866, -0.00014619292051065713, -0.029842820018529892, -0.02848879061639309, 0.006858161650598049, -0.02705351822078228, 0.010859319940209389, 0.008564239367842674, 0.010310938581824303, -0.0159910935908556, -0.005954346619546413, 0.01855020970106125, 0.01712847873568535, 0.006140525918453932, -0.026538986712694168, 0.012700800783932209, 0.028299225494265556, -0.026972277089953423, 0.012220120057463646, 0.00839498545974493, -0.0018279404612258077, 0.05066780000925064, -0.005812173709273338, 0.002078436082229018, 0.01710139773786068, 0.0034730867482721806, 0.025157876312732697, -0.010994723066687584, -0.028028421103954315, 0.0003101574839092791, 0.014122532680630684, 0.040025126188993454, -0.024589184671640396, 0.020689578726887703, 0.024345459416508675, 0.039104387164115906, 0.013066389597952366, 0.000922432926017791, 0.030817721039056778, -0.013662162236869335, -0.008740263059735298, -0.019728217273950577, 0.00469848420470953, 0.01481308788061142, 0.008367905393242836, -0.006739683914929628, 0.0007523329113610089, -0.04980122298002243, 0.006110060028731823, -0.012599248439073563, -0.03339038044214249, -0.0005462664412334561, 0.04649738967418671, -0.006045743823051453, -0.014894329942762852, -0.017588850110769272, 0.010426030494272709, -0.01125198882073164, -0.0035340182948857546, -0.0019582659006118774, 0.01825232431292534, 0.016600407660007477, 0.006289469078183174, -0.010568203404545784, -0.025198496878147125, 0.023749684914946556, -0.055406905710697174, 0.003594949608668685, 0.024088192731142044, -0.018387727439403534, -0.014637064188718796, -0.014027750119566917, 0.011759750545024872, 0.0058189439587295055, 0.024683965370059013, 0.005541367456316948, 0.02705351822078228, 0.0073049915954470634, 0.018008599057793617, -0.030032385140657425, 0.0005280716577544808, -0.028651274740695953, 0.012680490501224995, -0.019701136276125908, 0.004238113760948181, 0.028299225494265556, 0.011637887917459011, 0.01520575676113367, 0.001589292660355568, 0.006292854435741901, 0.0026454359758645296, -0.01184099167585373, 0.0034392361994832754, 0.018171081319451332, -0.010960872285068035, -0.01437979843467474, 0.008929827250540257, -0.014122532680630684, -0.0026572837959975004, 0.003980848006904125, -0.012172729708254337, -0.016451464965939522, 0.005399194546043873, -0.04495379328727722, 0.003432465950027108, 0.018103379756212234, -0.024006951600313187, 0.010913481935858727, 0.02927412837743759, -0.02476520836353302, 0.013716323301196098, 0.0199042409658432, 0.0021901435684412718, 0.015408860519528389, -0.01508389413356781, 0.03325497731566429, -0.011109815910458565, -0.017155559733510017, 0.007751821540296078, -0.008787654340267181, 0.006753224413841963, 0.002222301671281457, -0.009322496131062508, 0.04362684488296509, -0.00454615568742156, -0.0352589413523674, -0.01466414425522089, -0.002459256909787655, 0.018387727439403534, 0.013296574354171753, -0.017033696174621582, -0.028840838000178337, -0.029463691636919975, 0.016627488657832146, 0.01903766207396984, -0.01850958913564682, 0.0029771733097732067, -0.004583391360938549, -0.00869964249432087, -0.02045939303934574, -0.009701624512672424, 0.018103379756212234, 0.003220898797735572, -0.025171417742967606, -0.021285351365804672, 0.007230519782751799, -0.010561433620750904, 0.018116921186447144, -0.013696013018488884, 0.005341648124158382, -0.02534744143486023, -0.0002008830342674628, -0.0010121373925358057, -0.004532615188509226, -0.007393003441393375, 0.009850568138062954, 0.025713028386235237, 0.031440574675798416, 0.020554175600409508, 0.0036017196252942085, 0.013580920174717903, -0.012023786082863808, 0.01853667013347149, -0.011042114347219467, 0.0021122866310179234, 0.02159677818417549, -0.0228154044598341, -0.01151602528989315, -0.017466986551880836, 0.01167850848287344, 0.011969625018537045, 0.01619419828057289, 0.005988197401165962, 0.02449440211057663, 0.008510078303515911, 0.03125101327896118, -0.021705100312829018, -0.016343140974640846, -0.00270467484369874, -0.004732334520667791, -0.005114848259836435, 0.03219883143901825, -0.017737792804837227, -0.020364610478281975, 0.028109662234783173, -0.006844621617347002, -0.014041290618479252, -0.015381780453026295, -0.0065602753311395645, -0.010073983110487461, 0.010744228027760983, 0.026715010404586792, 0.010473421774804592, 0.02081144042313099, 0.010453111492097378, -0.03948351368308067, 0.0066482871770858765, -0.024426700547337532, -0.007122197654098272, 0.027554510161280632, 0.0027859166730195284, -0.006072824355214834, -0.012592478655278683, 0.015449482016265392, -0.024859990924596786, -0.006539964582771063, 0.026335882022976875, -0.00013984591350890696, -0.002288310555741191, -0.010899941436946392, -0.017507607117295265, -0.024589184671640396, 0.005602298770099878, -0.00470186909660697, -0.028976241126656532, 0.0259432140737772, -0.03019486740231514, -0.022693542763590813, -0.006225152872502804, 0.012355523183941841, 0.05578603595495224, 0.008130949921905994, 0.02819090336561203, 0.020012563094496727, -0.007318532094359398, -0.019741756841540337, -0.007968466728925705, 0.006451952736824751, 0.008747033774852753, 0.028109662234783173, 0.03674837201833725, -0.032009270042181015, 0.02418297529220581, -0.007941385731101036, -0.0039436123333871365, -0.02247689664363861, -0.021745720878243446, 0.029382450506091118, 0.027554510161280632, -0.002724985359236598, -0.02109578624367714, 0.009051689878106117, -0.0312780924141407, 0.003967307973653078, -0.000697748560924083, -0.02848879061639309, -0.004525844939053059, -0.037994079291820526, -0.01654624566435814, 0.023248694837093353, 0.02422359585762024, 0.035475585609674454, 0.0020090420730412006, -0.03550266474485397, 0.0037743584252893925, 0.0027859166730195284, -0.007156048435717821, 0.03160306066274643, -0.015300538390874863, 0.019430330023169518, -0.00703418580815196, -0.03398615121841431, 0.024047572165727615, -0.006018663290888071, 0.011015033349394798, -0.0020665882620960474, 0.009884418919682503, 0.028082581236958504, -0.010602054186165333, -0.00740654394030571, -0.009965660981833935, 0.01497557107359171, 0.0033664570655673742, 0.020648956298828125, -0.01707431860268116, 0.012768502347171307, -0.02024274878203869, -0.01906474120914936, 0.00022087614343035966, 0.009566221386194229, 0.009478209540247917, -0.003754048142582178, -0.0020344299264252186, -0.009038150310516357, -0.013770484365522861, -0.012606019154191017, 0.014149612747132778, -0.036044277250766754, -0.03978139907121658, -0.026349423453211784, 0.0011450016172602773, -0.013039308600127697, 0.009742246009409428, -0.0025811195373535156, 0.027540968731045723, 0.037967000156641006, -0.013587690889835358, 0.029219966381788254, -0.014691225253045559, -0.0024507942143827677, -0.022937268018722534, 0.012457075528800488, -0.0034392361994832754, -0.007501326035708189, 0.03125101327896118, -0.004532615188509226, -0.017710711807012558, -0.009721934795379639, -0.011197827756404877, 0.01081192959100008, -0.005324722733348608, -0.002479567425325513, -0.008916287682950497, -0.012524777092039585, 0.02959909476339817, -0.0029737884178757668, -0.025983834639191628, 0.021285351365804672, -0.014799547381699085, -0.023289315402507782, 0.007230519782751799, -0.030059464275836945, 0.0036017196252942085, -0.005927266087383032, 0.0024914152454584837, 0.025753650814294815, -0.03645048663020134, -0.024250676855444908, -0.036017198115587234, -0.006611051503568888, -0.0058189439587295055, -0.015611965209245682, -0.030519835650920868, 0.008618400432169437, -0.004190722946077585, 0.015381780453026295, -0.004769570659846067, -0.014691225253045559, 0.007115427404642105, 0.038048241287469864, 0.004356591496616602, -0.004657863173633814, 0.0008606552728451788, 0.026403583586215973, -0.025685949251055717, 0.01966051571071148, -0.005419504828751087, -0.01108950562775135, 0.0012905597686767578, 0.01963343471288681, 0.006218382623046637, -0.0025151106528937817, -0.012592478655278683, 0.010629135183990002, -0.03409447520971298, -0.014718305319547653, 0.02018858678638935, 0.04774309694766998, 0.020554175600409508, 0.018157541751861572, 0.008279893547296524, 0.019741756841540337, -0.010405720211565495, -0.0012964836787432432, -0.019430330023169518, 0.012030555866658688, 0.005873105023056269, 0.02077081985771656, -0.006631361786276102, -0.024386079981923103, -0.01310023944824934, -0.002005656948313117, -0.006042358931154013, 0.00026445896946825087, -0.01903766207396984, 0.025550546124577522, 0.015544263646006584, -0.019728217273950577, -0.020310450345277786, 0.0042550391517579556, 0.008259582333266735, 0.014745386317372322, 0.002843462862074375, -0.00044767616782337427, -0.019850078970193863, 0.008442376740276814, 0.0011560030980035663, -0.033769506961107254, -0.00040451643872074783, 0.0042990450747311115, -0.015056813135743141, 0.023153912276029587, -0.01624836027622223, -0.035394344478845596, 0.003855600254610181, -0.012186269275844097, 0.004610471893101931, -0.012795583344995975, -0.028326306492090225, 0.04557664692401886, -0.00405531981959939, 0.008577779866755009, 0.002831615274772048, 0.016167117282748222, -0.008787654340267181, -0.005974657367914915, 0.007711200509220362, -0.010602054186165333, -0.01082546915858984, -0.0159910935908556, 0.009545911103487015, -0.02735140547156334, 0.0018821016419678926, -0.005534597672522068, 0.0016485315281897783, -0.011617576703429222, 0.02079790085554123, 0.0023881704546511173, 0.002521880902349949, 0.04980122298002243, 0.0037506630178540945, -0.0063504003919661045, 0.016708729788661003, -0.049124207347631454, -0.0014479657402262092, -0.00351709290407598, 0.006228537764400244, 0.01623481884598732, 0.012727881781756878, -0.025564085692167282, 0.0051250034011900425, 0.023993410170078278, -0.03840028867125511, -0.01238937396556139, 0.1889142543077469, -0.017453446984291077, 0.0051656244322657585, 0.01653270609676838, -0.00259635248221457, -0.004305815324187279, 0.019836539402604103, -0.020432312041521072, -0.007244060281664133, 0.010310938581824303, -0.02135305292904377, -0.00983025785535574, -0.01466414425522089, 0.0038082092069089413, -0.012145648710429668, -0.000858962768688798, -0.032307155430316925, -0.048528432846069336, -0.01070360653102398, -0.008212191984057426, 0.004397212527692318, -0.024670425802469254, -0.03236131742596626, -0.01964697428047657, 0.01620773784816265, -0.007365922909229994, -0.010744228027760983, -0.004278734792023897, 0.029247047379612923, 0.001363338902592659, -0.024088192731142044, -0.008950138464570045, -0.027689913287758827, 0.002674209186807275, -0.017155559733510017, -0.020581254735589027, 0.031413495540618896, 0.016613947227597237, 0.016641028225421906, -0.01879393681883812, 0.0022900032345205545, -0.029138725250959396, -0.013614770956337452, -0.028949160128831863, -0.00540934968739748, 0.029734497889876366, -0.012863284908235073, -0.0014640449080616236, 0.003390152473002672, 0.004197492729872465, -0.021556157618761063, -0.02588905207812786, 0.0020648955833166838, -0.00035712539101950824, -0.010466651991009712, 0.0028688509482890368, 0.021149948239326477, -0.0009359731920994818, 0.010683296248316765, 0.0011323075741529465, -0.001020600087940693, 0.038887739181518555, -0.02280186489224434, 0.017223261296749115, -0.00953237060457468, 0.02305912971496582, -0.04349144175648689, -0.0019193374319002032, -0.0037405078765004873, -0.015828609466552734, -0.026931656524538994, -0.024250676855444908, -0.011509254574775696, -0.010358328931033611, -0.016925374045968056, -0.026308802887797356, 0.037425387650728226, -0.015747368335723877, 0.011292610317468643, 0.014691225253045559, 0.004014698788523674, -0.00855069886893034, -0.009275104850530624, 0.028055500239133835, -0.020933303982019424, -0.04010636731982231, 0.011353541165590286, 0.00352047779597342, -0.0023340091574937105, -0.011421242728829384, 0.011285839602351189, -0.0027537583373486996, 0.005548137705773115, 0.004722179379314184, 0.015611965209245682, 0.025794271379709244, 0.02932828851044178, 0.04584745317697525, -0.0005598067655228078, -0.0006406254251487553, -0.01791381649672985, 0.03807532414793968, 0.0028062271885573864, -0.012335212901234627, -0.004434448201209307, -0.018171081319451332, 0.010737457312643528, 0.023519501090049744, -0.003581409342586994, -0.007501326035708189, -0.0061202156357467175, -0.03441944345831871, -0.004150101915001869, 0.0004379440797492862, 0.006929248105734587, 0.009545911103487015, -0.005571833346039057, -0.002845155540853739, 0.008198651485145092, -0.003432465950027108, 0.0011001493548974395, -0.003594949608668685, 0.0023272389080375433, 0.008875666186213493, 0.03019486740231514, -0.02280186489224434, -0.04127083346247673, 0.006946173496544361, 0.025103716179728508, -0.0035475585609674454, 0.03528602048754692, -0.045657891780138016, -0.0058189439587295055, 0.00762318866327405, -0.006854776758700609, 0.0026589762419462204, -0.013621541671454906, -0.01367570273578167, -0.0014098837273195386, -0.026105698198080063, -0.0007650269544683397, 0.029436610639095306, -0.0066889082081615925, 0.006181146949529648, 0.0199719425290823, -0.01876685582101345, -0.003335991408675909, -0.014880789443850517, 0.016112957149744034, -0.0034273883793503046, -0.003909761551767588, 0.012125338427722454, -0.004079015459865332, -0.0267962533980608, 0.011103046126663685, -0.017250342294573784, 2.980452700285241e-05, -0.017182640731334686, 0.0228154044598341, 0.032848767936229706, -0.020960383117198944, 0.01238260418176651, 0.003818364581093192, -0.014366257935762405, 0.00362541526556015, -0.013255953788757324, -0.17049945890903473, 0.002640358405187726, 0.0230320505797863, -0.011976394802331924, 0.012917445972561836, -0.015327619388699532, 0.03154889866709709, 0.009586532600224018, 0.012423224747180939, -0.02618693932890892, 0.018360646441578865, -0.003005946520715952, 0.004668018314987421, -0.025184957310557365, -0.022043608129024506, 0.0014555822126567364, -0.005707236472517252, -0.0052942573092877865, 0.012335212901234627, 0.03672129288315773, 0.03793992102146149, -0.016140036284923553, 0.01520575676113367, 0.026254640892148018, 0.0025421911850571632, -0.01140770222991705, 0.006685522850602865, 0.0025049555115401745, -0.012308131903409958, -0.029707416892051697, -0.001716232975013554, 0.006773534696549177, 0.007812753319740295, -0.0052942573092877865, 0.006878472398966551, 0.0065602753311395645, 0.0182658638805151, 0.003991003148257732, -0.010344789363443851, -0.0012930986704304814, 0.004035009071230888, 0.014122532680630684, 0.006225152872502804, -0.01798151805996895, -0.013723094016313553, 0.016722269356250763, -0.002047970425337553, -0.005456740967929363, -0.011238448321819305, -0.03192802518606186, 0.001513128518126905, -0.005473666358739138, 0.022680001333355904, -0.00281130475923419, 0.04462882876396179, 0.0036863465793430805, -0.01423085480928421, 0.0023424718528985977, 0.012802353128790855, 0.016437923535704613, -0.01253831759095192, -0.0122268907725811, -0.0018550209933891892, 0.02304559014737606, -0.021745720878243446, -0.01410899218171835, -0.029734497889876366, 0.041704121977090836, -0.038021162152290344, 0.016316061839461327, -0.00047687243204563856, -0.01069006696343422, 0.014325637370347977, -0.0039436123333871365, -6.955271237529814e-05, 0.018617911264300346, -0.010615594685077667, -0.0028045345097780228, 0.0003380843554623425, -0.017548227682709694, -0.00955268181860447, 0.062231216579675674, 0.026417125016450882, -0.0051216185092926025, 0.03387783095240593, 0.007264370564371347, -0.02935536950826645, -0.02706705965101719, -0.009918269701302052, -0.035773470997810364, 0.03991680219769478, -0.0329841710627079, -0.009789636358618736, -0.009038150310516357, 0.00547028100118041, 0.009464669041335583, 0.010839009657502174, -0.03125101327896118, 0.021732181310653687, -0.034879811108112335, 0.01595047302544117, -0.009187093004584312, -0.004288889933377504, 0.001943032955750823, 0.03780451789498329, -0.0023881704546511173, -0.005091152619570494, 0.01933554746210575, 0.031494736671447754, -0.0012093180557712913, 0.02331639640033245, 0.005984812509268522, 0.016573326662182808, 0.02561824768781662, 0.0027114450931549072, 0.026268180459737778, -0.01647854410111904, -0.019254306331276894, 0.013919427990913391, -0.01855020970106125, 0.0329841710627079, 0.017521148547530174, -0.01712847873568535, 0.018062759190797806, 0.021136406809091568, -0.011292610317468643, -0.09873586148023605, -0.024954771623015404, -0.0031328867189586163, 0.033742427825927734, -0.02364136278629303, 0.025537004694342613, -0.011637887917459011, 0.02472458779811859, 0.008909516967833042, 0.017236800864338875, 0.004072245210409164, -0.019755296409130096, -0.018712693825364113, -0.008719952777028084, -0.0016307597979903221, -0.007230519782751799, -0.012429995462298393, -0.011604037135839462, -0.02163739874958992, 0.01195608451962471, -0.01406837161630392, -0.00655011972412467, -0.011082734912633896, -0.008598090149462223, -0.01737220399081707, 0.007277911063283682, -0.026268180459737778, 0.01053435355424881, 0.018347106873989105, 0.023208074271678925, 0.015056813135743141, -0.0018651762511581182, -0.02418297529220581, 0.00411963602527976, -0.028867918998003006, 0.00796169601380825, -0.006428257096558809, -0.024981852620840073, 0.04403305426239967, -0.020147966220974922, 0.014366257935762405, 0.0033613794948905706, 0.014894329942762852, -0.02846170961856842, 0.0023323167115449905, -0.0014318866888061166, -0.033796586096286774, 0.025415142998099327, 0.004288889933377504, -0.019525112584233284, 0.0014352718135342002, -0.008049707859754562, -0.007853373885154724, 0.00654673483222723, 0.034609004855155945, -0.0010773000540211797, 0.026403583586215973, -0.008042938075959682, 0.0014936643419787288, -0.013817875646054745, 0.013330425135791302, 0.006103290244936943, -0.013533529825508595, 0.01850958913564682, 0.032875847071409225, 0.013702782802283764, -0.021813422441482544, 0.00980994664132595, 0.03902314230799675, -0.02307267114520073, 0.00925479456782341, -0.003454468911513686, -0.029544934630393982, 0.022869566455483437, 0.008212191984057426, 0.023533040657639503, -0.012585708871483803, -0.014718305319547653, 0.020310450345277786, -0.0007815291755832732, -0.023722605779767036, 0.007413314189761877, -0.011184287257492542, -0.003980848006904125, 0.032036349177360535, 0.014637064188718796, -0.011631117202341557, 0.024020491167902946, -0.01520575676113367, -0.027405565604567528, 0.004624012392014265, 0.007690890226513147, 0.0479055792093277, -0.010209386236965656, -0.0016045254888013005, 0.013540299609303474, -0.01368247251957655, -0.018428348004817963, -0.006804000586271286, 0.006089749746024609, -0.0358276329934597, -0.0199719425290823, -0.06266450881958008, 0.03737122565507889, -0.03244255855679512, -0.010161994956433773, 0.0044242930598556995, -0.018915798515081406, 0.018008599057793617, -0.018157541751861572, 0.013215332292020321, -0.016722269356250763, -0.030817721039056778, -0.006255618296563625, -0.012477385811507702, 0.014352717436850071, 0.002855310682207346, -0.0073049915954470634, 0.03282168507575989, -0.017304502427577972, 0.022436276078224182, 0.010574974119663239, -0.02026982791721821, -0.0037946689408272505, 0.028867918998003006, 0.012071177363395691, -0.014853708446025848, -0.0014962031273171306, 0.015002652071416378, 0.02244981750845909, 0.004410752560943365, -0.024900611490011215, 0.023776765912771225, -0.006323319859802723, 0.006150681059807539, 0.012849744409322739, 0.011387391947209835, 0.0051216185092926025, 0.005771552678197622, 0.004630782641470432, 0.015882771462202072, -0.002608200302347541, -0.012369063682854176, -0.01853667013347149, 0.0030245643574744463, 0.005707236472517252, -0.023438258096575737, -0.002684364328160882, -0.038319047540426254, 0.014000670053064823, 0.024426700547337532, -0.0077450512908399105, 0.03818364441394806, 0.01081869937479496, -0.0399438850581646, -0.020391691476106644, -0.012897135689854622, -0.006455337628722191, 0.0244537815451622, -0.022084228694438934, -0.0038725256454199553, -0.037723273038864136, -0.01352675911039114, -0.007298221345990896, -0.007582567632198334, -0.012917445972561836, -0.007596108131110668, -0.009315726347267628, -0.003402000293135643, 0.013188252225518227, -0.004241498652845621, 0.012585708871483803, 0.01167173869907856, -0.006049128714948893, -0.007731511257588863, -0.006445182487368584, 0.019741756841540337, 0.005114848259836435, -0.00426857965067029, -0.0069123231805861, -0.03536726161837578, 0.008029397577047348, 0.02339763753116131, 0.008313744328916073, -0.026863954961299896, 6.280900834099157e-06, 0.04175828397274017, 0.0031904331408441067, -0.006451952736824751, 0.018942879512906075, 0.006841236259788275, -0.020933303982019424, -0.011597266420722008, 0.01569320820271969, -0.018049219623208046, 0.007636729162186384, 0.02301850914955139, 0.06293531507253647, -0.007210209500044584, -0.003444313770160079, 0.010927021503448486, 0.027161840349435806, 0.019755296409130096, -0.0007785672205500305, -0.011015033349394798, -0.014853708446025848, -0.013154401443898678, -0.0219623651355505, -0.003273367416113615, -0.0043870569206774235, -0.006370711140334606, -0.0019819613080471754, 0.028272146359086037, 0.014894329942762852, 0.005277331918478012, 0.010331248864531517, -0.002831615274772048, -0.0190512016415596, -0.018035678192973137, -0.0009072000975720584, -0.03891482204198837, 0.003058415139093995, 0.010073983110487461, 0.03154889866709709, 0.019484492018818855, -0.01266695000231266, 0.033742427825927734, 0.008367905393242836, 0.008435606956481934, -0.0058663347736001015, 0.002857003128156066, 0.00691570807248354, -0.016329601407051086, -0.002576041966676712, -0.020892681553959846, -0.004962519742548466, 0.0010654523503035307, -0.04988246411085129, -0.0019481106428429484, 0.00925479456782341, -0.018834557384252548, 0.08135011792182922, 0.024575643241405487, -0.00020331605628598481, 0.013601231388747692, 0.012050867080688477, 0.024900611490011215, 0.023776765912771225, -0.03623384237289429, -0.02875959686934948, -0.008767344057559967, -0.011861302889883518, -0.007711200509220362, 0.014312096871435642, -0.046876516193151474, 0.001579137402586639, 0.023858007043600082, -0.030871883034706116, 0.023289315402507782, -0.0068175410851836205, 0.018387727439403534, 0.02362782321870327, 0.009539141319692135, 0.018712693825364113, 0.000858116487506777, -0.004068859852850437, -0.0013582613319158554, 0.011935774236917496, -0.010439570993185043, -0.045712050050497055, -0.03896898403763771, 0.008009087294340134, -0.005284101702272892, -0.024697506800293922, -0.011766520328819752, 0.002071665832772851, 0.04473714902997017, 0.0002236265136161819, 0.012314902618527412, -0.006066054105758667, 0.009965660981833935, -0.04248946160078049, 0.01991778053343296, -0.0405125766992569, -0.04300399124622345, -0.0015317463548853993, 0.014637064188718796, -0.01136708166450262, 0.0022375346161425114, -0.06418102234601974], "d2c42aad-be12-4391-9d49-6f98b336a7aa": [-0.02168148197233677, 0.01694035530090332, -0.0036339578218758106, -0.017470166087150574, -0.01266790833324194, 0.01541884895414114, -0.01499771699309349, 0.003939617890864611, 0.005821124650537968, -0.010528288781642914, 0.0006707538850605488, 0.005036597605794668, -0.013136587105691433, 0.016478469595313072, 0.01480752881616354, 0.018706392496824265, 0.0050332010723650455, 0.020051294937729836, 0.013272436335682869, 0.0009059422882273793, 0.010317723266780376, 0.004761503543704748, -0.00883696973323822, -0.03347316384315491, -0.01780978962779045, 0.006225275341421366, 0.0145630007609725, -0.012654324062168598, 0.021599972620606422, 0.006969047710299492, 0.022700348868966103, -0.008443008176982403, -0.00901357363909483, -0.032848261296749115, -0.02683015540242195, -0.0035965992137789726, 0.003061694325879216, 0.009006781503558159, -0.015676962211728096, 0.02352902665734291, 0.029941095039248466, 0.0031805620528757572, -0.012511682696640491, 0.011424891650676727, -0.031625621020793915, 0.044531263411045074, -0.019100353121757507, -0.023719215765595436, -0.014427151530981064, 0.02253733016550541, 0.02265959419310093, 0.008429422974586487, 0.008456593379378319, 7.47699523344636e-05, 0.004238485358655453, -0.0028884869534522295, 0.016505640000104904, 0.023963743820786476, -0.005844898521900177, -0.02097506821155548, 0.012613569386303425, 0.00688414229080081, -0.01631545089185238, -0.03252222388982773, 0.00014900925452820957, 0.012661116197705269, 0.016858845949172974, 0.007471688557416201, 0.011126023717224598, 0.007444519083946943, 0.036081463098526, 0.010378855280578136, -0.004866786301136017, 0.03374486416578293, 0.013849793933331966, -0.02121959626674652, -0.008544894866645336, -0.01042640209197998, -0.03714108467102051, 0.00463244691491127, -0.01376828458160162, -0.025987891480326653, -0.022401481866836548, 0.009366780519485474, 0.030321471393108368, -0.002722072182223201, 0.003990561235696077, 0.024221856147050858, 0.0005026409053243697, -0.038092028349637985, -0.000911036622710526, 0.007607537787407637, -0.011744135990738869, 0.008225650526583195, -0.019562238827347755, 0.04993804916739464, -0.025322232395410538, 0.03570108860731125, -0.008171310648322105, -0.015391678549349308, 0.0002837968058884144, 0.023257330060005188, -0.008633196353912354, -0.0038886743132025003, -0.018095072358846664, -0.007899613119661808, 0.004744522273540497, -0.013075455091893673, 0.016410546377301216, 0.009054328314960003, -0.022727519273757935, 0.04070032760500908, 0.01109885424375534, -0.03371769189834595, 0.0005769332638010383, -0.01692677102982998, 0.0024249025154858828, -0.016505640000104904, -0.0065988595597445965, -0.0049415030516684055, 0.014522246085107327, 0.016546394675970078, 0.01975242793560028, 0.005148672964423895, 0.005739615298807621, 0.014861867763102055, -0.010643760673701763, 0.0001781955361366272, 0.00031606093398295343, -0.007675461936742067, 0.04684069752693176, -0.006075841374695301, -0.0204860121011734, 0.0008218857692554593, 0.0005909426836296916, 0.0009611308923922479, 0.012294324114918709, -0.01029734592884779, -0.0151743208989501, -0.031734298914670944, -0.006952066905796528, 0.009794704616069794, 0.00993055384606123, -0.013027908280491829, 0.009910176508128643, 0.012470928020775318, 0.004364145454019308, 0.013007530942559242, -0.025199968367815018, -0.009292064234614372, -0.0024486761540174484, 0.0027543362230062485, -0.010215836577117443, -0.025186384096741676, 0.005664898548275232, -0.004384522791951895, -0.009774327278137207, -0.0007518386701121926, 0.005984143353998661, -0.010738854296505451, -0.008904894813895226, 0.013693567365407944, 0.0023705631028860807, -0.004252070095390081, -0.011968286707997322, 0.025132043287158012, 0.005722634494304657, -0.022836197167634964, -0.0007127821445465088, 0.027346380054950714, 0.010616590268909931, 0.0254580806940794, -0.03377203270792961, 0.011139608919620514, 0.025308648124337196, 0.005118106957525015, 0.014155454002320766, 0.014712434262037277, -0.04048296809196472, -0.03896145895123482, 0.004061881918460131, -0.0010579231893643737, 0.013476209715008736, 0.033092789351940155, -0.02487393096089363, -0.011241495609283447, -0.00865357369184494, 0.007668669801205397, 0.008191687986254692, -0.0004826880758628249, 0.009115460328757763, 0.024914685636758804, -0.019317710772156715, -0.0022347141057252884, -0.5920838117599487, -0.0027696192264556885, -0.0266807209700346, 0.004269051365554333, 0.011988664045929909, 0.011757721193134785, 0.018815070390701294, 0.015935074537992477, -0.00627282215282321, 0.02779468148946762, -0.009163007140159607, 0.00573282316327095, 0.009298856370151043, 0.02073054015636444, 0.0038920706138014793, -0.04208598658442497, 0.04080900549888611, -0.02073054015636444, -0.03580976650118828, 0.013978850096464157, -0.005821124650537968, 0.031136564910411835, -0.01999695599079132, -0.012043003924190998, -0.013428662903606892, 0.00014816019393038005, -0.0038411272689700127, -0.027129022404551506, 0.0009135837899520993, 0.021762991324067116, 0.010806779377162457, -0.0229312926530838, 0.01079319417476654, 0.006435840856283903, 0.04390636086463928, -0.00017288893286604434, -0.028093550354242325, 0.027455059811472893, -0.008850554935634136, 0.01863846741616726, -0.01924978755414486, -0.02096148394048214, -0.02035016380250454, -0.01620677299797535, 0.010996967554092407, -0.029886754229664803, -0.006388294044882059, 0.013190926983952522, 0.001562262186780572, -0.01779620349407196, 0.005318483803421259, -0.030674679204821587, -0.012980361469089985, -0.025254307314753532, -0.00524376705288887, 0.0019443371566012502, 0.02583845891058445, -0.020866388455033302, 0.0012676399201154709, -0.03170713037252426, 0.010161496698856354, 0.03703240677714348, 0.005233578383922577, -0.015935074537992477, -0.022387895733118057, 0.0045815035700798035, -0.011553947813808918, 0.0020699973683804274, 0.0005790558643639088, -0.02265959419310093, -0.01389734074473381, -0.012382625602185726, -0.02279544249176979, -0.00722036836668849, 0.012172060087323189, 0.009373573586344719, 0.018978089094161987, 0.005600370466709137, -0.013435455039143562, 0.029832415282726288, 0.036135803908109665, -0.009332818910479546, -0.020431673154234886, -0.0007093859021551907, 0.04594409465789795, 0.004605277441442013, -0.009366780519485474, 0.031381092965602875, -0.010209043510258198, 0.009414328262209892, 0.02597430720925331, 0.016043754294514656, -0.008144141174852848, -0.001401790650561452, -0.006262633483856916, 0.041135042905807495, -0.024697327986359596, -0.001033300650306046, -0.011384136974811554, -0.05105201154947281, 0.005678483285009861, -0.004146787337958813, 0.011445268988609314, -0.0034624484833329916, -0.02169506810605526, 0.01645130105316639, -0.017646770924329758, 0.021599972620606422, 0.021151671186089516, -0.02536298707127571, -0.03415241092443466, -0.03265807405114174, 0.0007790084346197546, 0.03374486416578293, -0.016994696110486984, -0.026653552427887917, 0.009373573586344719, 0.019548654556274414, 0.017823373898863792, -0.018706392496824265, 0.011207533068954945, 0.027645248919725418, -0.0019273561192676425, -0.026884494349360466, 0.024099592119455338, -0.010895080864429474, -0.011533570475876331, -0.018448278307914734, -0.011044514365494251, -0.028827134519815445, 0.04083617404103279, -0.01511998102068901, 0.02108374796807766, -0.02145054005086422, 0.012735833413898945, -0.009910176508128643, 0.01780978962779045, 0.005868671927601099, 0.02693883515894413, 0.008755460381507874, 0.007756971288472414, 0.017144128680229187, -0.003219618694856763, -0.010276968590915203, -0.020418087020516396, -0.026626382023096085, 0.006778859533369541, -0.009794704616069794, -0.028935812413692474, 0.0034811277873814106, 0.001956223975867033, -0.008028669282793999, -0.018339600414037704, 0.010018855333328247, 0.007240745704621077, -0.0071184816770255566, -0.0018305637640878558, 0.021178841590881348, 0.011879985220730305, -0.03708674758672714, 0.007349424995481968, 0.03181580826640129, -0.05556219443678856, 0.011601494625210762, -0.0067754629999399185, -0.021165257319808006, -0.0024249025154858828, 0.024941856041550636, -0.01744299754500389, -0.051867105066776276, -0.01668224297463894, -0.010310930199921131, -0.017089789733290672, -0.008667158894240856, -0.01291243638843298, 0.006833198945969343, -0.011825645342469215, 0.00019178041839040816, -0.013442247174680233, 0.012844512239098549, -0.007444519083946943, 0.002893581287935376, 0.008572064340114594, -0.022768273949623108, 0.008069423958659172, -0.004255466163158417, 0.048307865858078, -0.007879235781729221, -0.021980348974466324, 0.019521484151482582, 0.006646406836807728, 0.014956962317228317, -0.016790922731161118, -0.014182623475790024, -0.004316598176956177, 0.035755425691604614, 0.012124513275921345, 0.00499923899769783, 0.030892036855220795, 0.021396199241280556, 0.033092789351940155, -0.002163393422961235, -0.01377507671713829, -0.006228671409189701, -0.01060979813337326, -0.0217086523771286, 0.029044492170214653, 0.00027764117112383246, 0.042194664478302, -0.0069962176494300365, 0.0027662229258567095, -0.012593192048370838, -0.005461125168949366, -0.013041493482887745, 0.031136564910411835, 0.0307290181517601, -0.00938036572188139, 0.00036233445280231535, -0.0019477334572002292, 0.016641488298773766, -0.0030294302850961685, 0.004961880389600992, 0.02120601199567318, -0.0037392405793070793, 0.004218108020722866, -0.010827156715095043, 0.03314713016152382, 0.008415838703513145, -0.015812810510396957, -0.03768448159098625, -0.013231681659817696, -0.011268665082752705, -0.0009025460458360612, 0.002243204740807414, 0.02241506613790989, 0.015133566223084927, 0.048226356506347656, -0.003138109343126416, 0.03714108467102051, 0.005963766016066074, -0.01948072947561741, 0.03377203270792961, -0.0017066015861928463, -0.026531288400292397, 0.046378809958696365, 0.013048285618424416, 0.03347316384315491, 0.01511998102068901, 0.0020649030338972807, 0.039559196680784225, 0.0032450903672724962, 0.013449040241539478, -0.013238473795354366, 0.014834698289632797, -0.014658095315098763, -0.015432433225214481, 0.004584900103509426, 0.013449040241539478, 0.010752439498901367, 0.029180340468883514, 0.01668224297463894, 0.031109394505620003, -0.0046867867931723595, -0.0029156566597521305, 0.01505205687135458, -0.003015845315530896, 0.00803546141833067, -0.026259589940309525, 0.00846338551491499, -0.0047479188069701195, -0.024656573310494423, -0.01414186879992485, -0.04034711793065071, -0.00533546507358551, 0.024086007848381996, 0.015554697252810001, 0.023107895627617836, 0.007023387588560581, 0.03513052314519882, -0.015568282455205917, -0.021640727296471596, -0.03265807405114174, 0.012307909317314625, 0.014304887503385544, 0.0034624484833329916, -0.013876963406801224, -0.028229398652911186, -0.007193198427557945, -0.03801051899790764, 0.033092789351940155, -0.03023996204137802, 0.012939606793224812, 0.008381876163184643, -1.5521796740358695e-05, -0.0026966005098074675, -0.009054328314960003, 0.04512900114059448, -0.005746407900005579, 0.02134186029434204, 0.008198480121791363, -0.0151743208989501, -0.01041960995644331, -0.019929030910134315, -0.014345642179250717, 0.04548220708966255, 0.013000738807022572, -0.0016649978933855891, 0.015187905170023441, -0.00993055384606123, -0.0025352798402309418, 0.004462636075913906, -0.008212065324187279, -0.00017087243031710386, -0.011010551825165749, 0.016111677512526512, 0.009523007087409496, 0.012817342765629292, 0.00011961069685639814, 0.004051693249493837, 0.02229280211031437, -0.01128225028514862, -0.0009781119879335165, -0.027713172137737274, 0.0009466969058848917, 0.05803464353084564, 0.008246027864515781, -0.01570413075387478, 0.005155465099960566, -0.025036949664354324, -0.03140826150774956, -0.0050094276666641235, -0.012504889629781246, 0.022469405084848404, 0.013483001850545406, -0.004700371529906988, -0.02447996847331524, -0.0037154669407755136, 0.021178841590881348, 0.021722236648201942, -0.003729051910340786, -0.013992435298860073, -0.0001476295292377472, 0.0316527895629406, -0.03336448594927788, 0.013238473795354366, 0.011581117287278175, -0.008667158894240856, 0.02499619498848915, -0.007261123042553663, 0.00545772910118103, 0.019426390528678894, -0.015269414521753788, 0.038336556404829025, -0.020173558965325356, 0.003119430039077997, 0.0096316859126091, 0.023366007953882217, 0.03689655661582947, -0.023012802004814148, 0.026531288400292397, 0.030049772933125496, 0.03170713037252426, 0.02217053808271885, -0.01729356311261654, 0.035510897636413574, -0.009237724356353283, 0.0020224503241479397, -0.013075455091893673, 0.025933552533388138, 0.023855064064264297, 0.019195448607206345, -0.01012074202299118, 0.008076216094195843, -0.04811767488718033, 0.024833176285028458, -0.007172821089625359, -0.0336361825466156, -0.015160735696554184, 0.042466361075639725, -0.004472824744880199, -0.013822624459862709, -0.011458853259682655, 0.011696589179337025, -0.012083758600056171, 0.002878298284485936, -0.022360727190971375, 0.01814941130578518, 0.008721498772501945, 0.018991675227880478, -0.01327922847121954, -0.02168148197233677, 0.0201056357473135, -0.0406731553375721, 0.008945649489760399, 0.012246777303516865, 0.011424891650676727, -0.015622622333467007, -0.0011759418994188309, 0.020676201209425926, 0.008578857406973839, 0.01793205365538597, 0.0025352798402309418, 0.02669430710375309, 0.01744299754500389, 0.021871671080589294, -0.03434259817004204, -0.0014034888008609414, -0.03108222596347332, -0.006306784693151712, 0.008015084080398083, 0.012097343802452087, 0.015527527779340744, 0.0029496189672499895, 0.033826373517513275, 0.018937334418296814, -0.008327537216246128, 0.003093958366662264, -0.018950920552015305, 0.0068060290068387985, 0.017959222197532654, -0.004082259256392717, -0.01048753410577774, -0.0038105612620711327, 0.0016607526922598481, 0.0014501868281513453, -0.0037664102856069803, 0.009455082938075066, -0.008993196301162243, -0.01805431768298149, -0.043444473296403885, 0.005644521210342646, 0.043471645563840866, -0.0356195792555809, 0.01560903713107109, 0.03146260231733322, -0.019086768850684166, 0.018679222092032433, 0.0064460295252501965, -0.01866563782095909, 0.03667920082807541, 0.0025098081678152084, 0.01828525960445404, 0.0015800923574715853, -0.03146260231733322, 0.011105646379292011, -0.01631545089185238, 0.013381115160882473, -0.006921500898897648, -0.022618839517235756, 0.01669582910835743, -0.004303013440221548, -0.05048144608736038, 0.0031907507218420506, 0.021246766671538353, 0.016301866620779037, 0.004554334096610546, 0.005685275886207819, -0.01692677102982998, -0.016913186758756638, 0.018230920657515526, 0.0017032054020091891, -0.008123763836920261, 0.014236963354051113, -0.0029801849741488695, -0.016981109976768494, -0.016736581921577454, -0.00859244167804718, 0.0004103060928173363, -0.0016836771974340081, -0.032467883080244064, -0.023107895627617836, 0.02742788940668106, -0.0007098104106262326, 0.017728280276060104, 0.012022626586258411, -0.00016599036462139338, -0.016301866620779037, 0.015622622333467007, -0.004099240060895681, 0.017877712845802307, 0.0010078289778903127, 0.02108374796807766, 0.01230111625045538, 0.012165267951786518, 0.03132675215601921, -0.01297356840223074, 0.02655845694243908, -0.020200729370117188, -0.003915844019502401, -0.00709810433909297, -0.014712434262037277, -0.010202251374721527, -0.013286021538078785, -0.01790488325059414, -0.0011504702270030975, 0.006269426085054874, 0.017728280276060104, 0.007267915643751621, -0.011452061124145985, 0.021138086915016174, -0.003824146231636405, 0.00032900902442634106, -0.02972373552620411, -0.023814309388399124, -0.00651735020801425, 0.008021877147257328, -0.002701694844290614, 0.006632822100073099, -0.0188829954713583, -0.005719237960875034, 0.03811919689178467, -0.012688285671174526, -0.016777336597442627, -0.0084090456366539, -0.017592430114746094, -0.019575824961066246, 0.006201501470059156, 0.0276724174618721, 0.002822260605171323, 0.010270175524055958, 0.010012063197791576, -0.03230486437678337, 0.014291303232312202, -0.019059598445892334, -0.018964504823088646, 0.018448278307914734, 0.0046256547793745995, -0.0007178764790296555, -0.04042862728238106, 0.01596224494278431, -0.02024148404598236, -0.003105845069512725, 0.016179602593183517, -0.015785640105605125, -0.01164904236793518, -0.024235442280769348, -0.017361488193273544, -0.012525266967713833, 0.021056577563285828, -0.0004474522720556706, -0.023338839411735535, 0.031516943126916885, -0.026273174211382866, -0.027088267728686333, 0.011105646379292011, -0.00908149778842926, 0.0496935211122036, -0.0064901807345449924, 0.030022604390978813, 0.019236203283071518, 0.01072527002543211, -0.021858086809515953, 0.002924147294834256, 0.00962489377707243, 0.01048074197024107, 0.014834698289632797, 0.027509398758411407, -0.023243743926286697, 0.011126023717224598, -0.020513182505965233, 0.005315087735652924, -0.026368269696831703, -0.010406024754047394, 0.02486034668982029, 0.0385267436504364, -0.012124513275921345, -0.02814788930118084, 0.0018356580985710025, -0.037005238234996796, -0.00968602579087019, 0.0045339567586779594, -0.015282999724149704, 0.010623383335769176, -0.03121807426214218, -0.04216749593615532, 0.00591621920466423, 0.016057338565587997, 0.015092811547219753, 0.002066601300612092, -0.0168180912733078, -0.0014909415040165186, -0.0096316859126091, -0.01816299557685852, 0.022985631600022316, -0.014726019464433193, 0.021409785374999046, -0.026735061779618263, -0.035755425691604614, 0.030185623094439507, -0.022985631600022316, -0.000773489591665566, -0.006136973388493061, 0.012491305358707905, 0.025770533829927444, -0.009781119413673878, -0.0018899976275861263, -0.013571303337812424, -0.0006147162057459354, -0.005386408418416977, 0.01461734063923359, -0.01164904236793518, 0.014399982057511806, -0.0287456251680851, -0.009781119413673878, 0.016261111944913864, -0.00013828992086928338, 0.01438639685511589, 0.0024826384615153074, -0.013184134848415852, 0.007104896940290928, -0.01407394465059042, -0.003019241616129875, 0.00852451752871275, -0.0303486417979002, -0.03692372888326645, -0.03461429476737976, -0.003790183924138546, -0.013319983147084713, 0.01793205365538597, -0.015446018427610397, 0.027101851999759674, 0.04594409465789795, -0.01975242793560028, 0.022523745894432068, -0.03257656469941139, -0.02082563377916813, -0.016424130648374557, 0.012165267951786518, 0.019236203283071518, 0.008422630839049816, 0.026395438238978386, -0.00853130966424942, -0.021545633673667908, -0.002847732277587056, -0.013564511202275753, 0.019820353016257286, 0.021015822887420654, -0.01768752560019493, 0.0017999977571889758, -0.008612819015979767, 0.031109394505620003, 0.018556958064436913, -0.013910925947129726, 0.0254580806940794, -0.016994696110486984, -0.025553176179528236, 0.0069894250482320786, -0.007349424995481968, 0.014889038167893887, 0.0011971683707088232, -0.0030990527011454105, 0.02280902862548828, -0.027006758376955986, -0.02475166693329811, -0.019562238827347755, -0.015160735696554184, -0.0204860121011734, 0.0033486750908195972, -0.0287456251680851, 0.0046867867931723595, 0.0009976403089240193, 0.03282109275460243, -0.0007204236462712288, -0.026762230321764946, 0.014413567259907722, 0.02631392888724804, 0.007016594987362623, 0.016886016353964806, -0.0036882972344756126, 0.01376828458160162, -0.01407394465059042, 0.021735822781920433, -0.0145630007609725, -0.000643159553874284, -0.007763763889670372, 0.03518486022949219, -0.00038716933340765536, -0.010168288834393024, -0.012892059050500393, 0.0064154635183513165, -0.03839089721441269, -0.025648269802331924, 0.023719215765595436, 0.01793205365538597, 0.017008280381560326, 0.022768273949623108, -0.012335078790783882, 0.026599211618304253, -0.007138859014958143, -0.001974903279915452, -0.026150910183787346, -0.0019732050132006407, 2.4158283849828877e-05, 0.020431673154234886, -0.02972373552620411, -0.014821113087236881, -0.02695241943001747, -0.01608450897037983, 0.011519985273480415, 0.003034524619579315, -0.0164377149194479, 0.017334317788481712, -0.00017108468455262482, -0.022741103544831276, -0.024656573310494423, -0.019331296905875206, 0.025417326018214226, -0.007940367795526981, -0.008055838756263256, -0.00027509400388225913, -0.01499771699309349, 0.011913947761058807, 0.007668669801205397, -0.03396221995353699, -0.00475471094250679, -0.013048285618424416, -0.017959222197532654, 0.019412806257605553, -0.008762253448367119, -0.036027126014232635, 0.01839393936097622, -0.036027126014232635, 0.019942617043852806, -0.0130347004160285, -0.02620525099337101, 0.055507853627204895, -0.01669582910835743, 0.01767393946647644, -0.012892059050500393, 0.024072423577308655, -0.017864128574728966, -0.016274696215987206, 0.000784527335781604, 0.0002294572623213753, -0.009726780466735363, -0.025919968262314796, 0.022387895733118057, -0.02131468988955021, 0.010589420795440674, 0.003576221875846386, 0.00478527694940567, -0.012022626586258411, 0.018733561038970947, -0.008972818963229656, -0.021015822887420654, 0.03023996204137802, -0.00036849011667072773, -0.004133202601224184, 0.011153193190693855, -0.037494294345378876, -0.011492815800011158, -0.003445467445999384, 0.0048260316252708435, 0.020567521452903748, 0.017578845843672752, -0.014236963354051113, -0.006079237908124924, 0.01103772222995758, -0.006238860078155994, -0.0011436778586357832, 0.1924706995487213, -0.005858483258634806, -0.005899237934499979, 0.0343969389796257, -0.013510172255337238, 0.01768752560019493, 0.004241881426423788, -0.028935812413692474, -0.0014943378046154976, -0.00901357363909483, -0.014698849990963936, -0.000620235048700124, -0.030511660501360893, 0.005026408936828375, -0.016722997650504112, 0.004129806067794561, -0.0331742987036705, -0.04472145438194275, -0.0008630649535916746, -0.002737354952841997, -0.003729051910340786, -0.00019761767180170864, -0.03629882261157036, -0.021871671080589294, 0.02314865030348301, -0.0010502816876396537, -0.014956962317228317, -0.000731036823708564, 0.018461864441633224, -0.0032637694384902716, -0.033935051411390305, -0.00019942192011512816, -0.027101851999759674, -0.013374323025345802, -0.0282837375998497, -0.027129022404551506, 0.015812810510396957, 0.032956939190626144, 0.015106395818293095, -0.01560903713107109, 0.010385647416114807, -0.039070140570402145, -0.010100364685058594, -0.016913186758756638, -0.004241881426423788, 0.023080725222826004, -0.01060979813337326, -0.022034689784049988, 0.011336589232087135, -0.008150933310389519, -0.006167539395391941, -0.04042862728238106, 0.0018933938117697835, -0.0023026387207210064, -0.0065750861540436745, 0.012701870873570442, 0.00981508195400238, 0.036760710179805756, 0.02509128861129284, 0.020309409126639366, 0.006785651668906212, 0.027251286432147026, -0.010840740986168385, 0.031625621020793915, -0.005141880363225937, 0.018353184685111046, -0.016886016353964806, -0.000643159553874284, -0.010032440535724163, 1.3797152860206552e-05, -0.01658714935183525, -0.03719542548060417, -0.006435840856283903, -0.0025064118672162294, -0.01901884377002716, -0.022279217839241028, 0.030158452689647675, -0.01492979284375906, 1.2875131687906105e-05, 0.01999695599079132, -0.011146401055157185, -0.00670074624940753, -0.028555436059832573, -0.007390179671347141, -0.033581845462322235, -0.03507618233561516, 0.01972525753080845, -0.01158791035413742, -0.018135827034711838, -0.008972818963229656, 0.0024979214649647474, -0.022360727190971375, 0.007240745704621077, 0.01695394143462181, 0.013965265825390816, 0.03939617797732353, 0.017959222197532654, 0.02547166682779789, 0.005420370493084192, 0.016994696110486984, -0.01266790833324194, 0.018448278307914734, -0.00030035339295864105, -0.008850554935634136, -0.006962255574762821, -0.018475448712706566, -0.00502980500459671, 0.01461734063923359, -0.003847919637337327, -0.020187145099043846, 0.003372448729351163, -0.02646336331963539, -0.01219923049211502, -0.006622633431106806, -0.004859993699938059, 0.011295834556221962, 0.024833176285028458, 0.018719976767897606, 0.003197543090209365, -0.0009628289844840765, 0.008246027864515781, -0.009169800207018852, 0.010079987347126007, 0.005447540432214737, 0.014603755436837673, -0.032956939190626144, -0.028555436059832573, 0.0006847633048892021, 0.022401481866836548, -0.01706261932849884, 0.03129958361387253, -0.03871693089604378, -0.025811288505792618, 0.004109428729861975, -0.005386408418416977, 0.016030168160796165, -0.008945649489760399, -0.01695394143462181, -0.005926407873630524, -0.024412045255303383, -0.000792593345977366, 0.03219618648290634, -0.005291314329952002, 0.024113178253173828, 0.021491294726729393, -0.021735822781920433, 0.010935835540294647, -0.008286782540380955, 0.01938563585281372, -0.0182716753333807, -0.01370715256780386, 0.02400449849665165, 0.0033435807563364506, -0.030565999448299408, 0.017633184790611267, -0.007532820571213961, -0.005787162575870752, -0.0117713063955307, 0.02839241735637188, 0.0010112251620739698, -0.03268524259328842, 0.004289428703486919, 0.009923760779201984, -0.018923750147223473, -0.015568282455205917, -0.02268676459789276, -0.17073488235473633, 0.013150172308087349, 0.023243743926286697, -0.036733537912368774, -0.004370938055217266, -0.015894319862127304, 0.04080900549888611, 0.020526766777038574, -0.00027955154655501246, -0.026504117995500565, 0.00040988155524246395, -0.0028732039500027895, 0.0004920276696793735, -0.01597582921385765, -0.026544872671365738, -0.000342593906680122, -0.005889049265533686, 0.008857347071170807, 0.029343359172344208, 0.032495055347681046, 0.01938563585281372, -0.030756188556551933, 0.021273935213685036, 0.02888147346675396, 0.000758206588216126, -0.01048074197024107, -0.012280738912522793, -0.012878474779427052, -0.03181580826640129, -0.03475014492869377, -0.008932064287364483, 0.019766012206673622, 0.01444073673337698, -0.004615466110408306, -0.001091036363504827, 0.003100750735029578, 0.0406731553375721, -0.02145054005086422, 0.00499923899769783, 0.008334329351782799, 0.00673131225630641, 0.02181733213365078, 0.0017032054020091891, -0.00554942712187767, -0.0025709401816129684, 0.026381853967905045, 0.0013007530942559242, -0.012763002887368202, -0.01480752881616354, -0.013686775229871273, 0.0035082974936813116, -0.02290412224829197, 0.029642226174473763, -0.011173570528626442, 0.03667920082807541, 0.008517725393176079, 0.006218482740223408, 0.01999695599079132, -0.000734857574570924, 0.020010540261864662, 0.0046732015907764435, 0.001822073245421052, -0.032603733241558075, 0.02390940487384796, 0.004299617372453213, -0.01779620349407196, -0.016886016353964806, 0.029913924634456635, -0.02996826358139515, 0.020621860399842262, -0.02742788940668106, -0.020078465342521667, 0.014359227381646633, 0.005715841893106699, 0.02534940280020237, 0.01596224494278431, 0.00496867299079895, 0.015378094278275967, 0.013231681659817696, -0.029913924634456635, -0.016668658703565598, 0.0606972835958004, 0.01499771699309349, -0.009916968643665314, 0.02499619498848915, -0.01524224504828453, -0.01383620873093605, -0.021138086915016174, 0.0012005645548924804, -0.036624860018491745, 0.0279033612459898, -0.044802963733673096, -0.017375072464346886, -0.028066379949450493, 0.013007530942559242, 0.011105646379292011, 0.008809800259768963, -0.018597712740302086, 0.019820353016257286, -0.035157691687345505, 0.029832415282726288, -0.00859244167804718, -0.001879808958619833, 0.011472438462078571, 0.03939617797732353, -0.003545655868947506, -0.01444073673337698, -0.0002445279969833791, 0.042113155126571655, 0.00037273537600412965, 0.0033435807563364506, 0.00019262947898823768, 0.02253733016550541, 0.042710889130830765, -0.0001991035242099315, 0.017144128680229187, -0.015282999724149704, -0.02329808473587036, -0.0010366968344897032, 0.0007051406428217888, 0.024819592013955116, 0.01487545296549797, 0.02412676252424717, 0.018950920552015305, -0.00545772910118103, -0.015649791806936264, -0.08292216062545776, -0.026028646156191826, -0.001439998159185052, 0.020934313535690308, -0.02158638834953308, 0.021518463268876076, -0.015446018427610397, 0.027142606675624847, 0.01961657963693142, 0.012871681712567806, -0.0002466506266500801, -0.0036781085655093193, -0.00840225350111723, -0.0015792433405295014, 0.02082563377916813, -0.0030956564005464315, -0.029642226174473763, -0.006795840337872505, -0.013557719066739082, 0.004224900156259537, -0.00852451752871275, 0.011268665082752705, -0.032712411135435104, -0.026368269696831703, -0.008870932273566723, -0.012124513275921345, -0.02352902665734291, 0.035049013793468475, 0.002684713574126363, 0.011594702489674091, -0.004313202109187841, -0.00944149773567915, -0.012464134953916073, 0.004099240060895681, -0.02035016380250454, -0.006938481703400612, 0.010263383388519287, -0.01468526478856802, 0.048443712294101715, -0.023556197062134743, 0.018448278307914734, 0.008327537216246128, -0.008517725393176079, -0.012457342818379402, 0.00703697232529521, -0.011139608919620514, -0.01321809645742178, 0.013353945687413216, -0.010127534158527851, -0.026531288400292397, -0.00920376181602478, -0.00493810698390007, -0.00454074889421463, 0.0023094310890883207, 0.037249766290187836, -0.005379615817219019, 0.00542716309428215, -0.009217347018420696, -0.025689024478197098, -0.015989413484930992, 0.0111599862575531, -0.016627904027700424, -0.0068433876149356365, 0.0019918843172490597, 0.024955440312623978, 0.003034524619579315, -0.03306562080979347, 0.007729801815003157, 0.04366183280944824, -0.019290542230010033, 0.019222617149353027, -0.004255466163158417, -0.041488248854875565, 0.021504878997802734, 0.0034284861758351326, 0.033826373517513275, -0.012695078738033772, 0.0046188621781766415, 0.02597430720925331, -0.005613955203443766, -0.023121479898691177, 0.007593952585011721, -0.0018713184399530292, -0.010861118324100971, 0.05586106330156326, 0.00533546507358551, -0.009733572602272034, 0.021885255351662636, -0.006877349689602852, -0.029805244877934456, 0.008415838703513145, 0.007858858443796635, 0.036760710179805756, -0.01266790833324194, -0.00621169013902545, 0.02793053165078163, -0.015595451928675175, -0.018461864441633224, -0.009523007087409496, 0.030158452689647675, -0.04488447308540344, -0.03214184567332268, -0.054774269461631775, 0.018842240795493126, -0.027101851999759674, -0.006374708842486143, 0.0015741490060463548, -0.022754687815904617, 0.016858845949172974, -0.014304887503385544, 0.003143203677609563, -0.02582487277686596, -0.008558480069041252, -0.002503015799447894, -0.0010001874761655927, 0.012226399965584278, 0.011119231581687927, -0.007994706742465496, 0.04895993694663048, -0.004116221331059933, 0.03420674800872803, 0.005294710397720337, -0.004072070587426424, -0.0010265081655234098, 0.031761471182107925, 0.0182716753333807, -0.007750179152935743, -0.020078465342521667, 0.004051693249493837, 0.015459603630006313, 0.001286319107748568, -0.017347902059555054, 0.01407394465059042, -0.0127290403470397, 0.008246027864515781, 0.018733561038970947, 0.018353184685111046, -0.029044492170214653, 0.014209793880581856, -0.006439237389713526, 0.005464521702378988, 3.390915662748739e-05, -0.009353196248412132, -0.003469240851700306, -0.0071184816770255566, 0.014182623475790024, -0.010433194227516651, 0.0024520724546164274, -0.005692068487405777, 0.01377507671713829, -0.001451035961508751, 0.00889130961149931, 0.025770533829927444, 0.004262258764356375, -0.02195318043231964, -0.027821851894259453, 0.008728290908038616, -0.02241506613790989, 0.026490533724427223, -0.022958461195230484, -0.02047242783010006, -0.025526005774736404, 0.005236974451690912, 0.003219618694856763, -1.101782254409045e-05, 0.0014960358384996653, 0.01463092491030693, -0.026028646156191826, 0.010046024806797504, 0.018869411200284958, -0.0037392405793070793, 0.005026408936828375, 0.005630936473608017, -0.008049046620726585, -0.027618078514933586, -0.003973579965531826, 0.03811919689178467, 0.009971308521926403, -0.010276968590915203, -0.012830927036702633, -0.022021103650331497, -0.0038615046069025993, 0.024181101471185684, -0.0010613193735480309, -0.03803768754005432, -0.003793580224737525, 0.03657051920890808, 0.016668658703565598, -0.013021116144955158, -0.0010579231893643737, 0.01878790184855461, -0.014467906206846237, 0.015337339602410793, 0.0207169558852911, -0.004683390259742737, -6.702232349198312e-05, 0.01011394988745451, 0.03374486416578293, -0.002075091702863574, -0.0021718840580433607, 0.005997728556394577, 0.015255830250680447, 0.011907154694199562, 0.012009041383862495, -0.012043003924190998, -0.00791319739073515, -0.016899600625038147, -0.00657848222181201, -0.0035049011930823326, 0.008252820000052452, -0.014101114124059677, 0.010684515349566936, 0.04059164598584175, 0.009156215004622936, 0.008103386498987675, 0.015092811547219753, -0.009217347018420696, -0.028854303061962128, -0.0025233931373804808, -0.01961657963693142, -0.04939465597271919, 0.011193947866559029, 0.011438475921750069, 0.013693567365407944, 0.019711673259735107, -0.01915469393134117, 0.02572977915406227, 0.012756210751831532, 0.026164496317505836, -0.012627153657376766, 0.009849044494330883, -0.0015597150195389986, -0.018502619117498398, 0.0025166005361825228, -0.056730493903160095, -0.008313952013850212, 0.005450936499983072, -0.02533581666648388, 0.007274707779288292, 0.0093260258436203, -0.017646770924329758, 0.07172821462154388, 0.009278479032218456, -0.027767512947320938, 0.008191687986254692, -0.017116960138082504, 0.014101114124059677, 0.02972373552620411, -0.027224116027355194, -0.017728280276060104, -0.025064120069146156, -0.007790933828800917, 0.012959984131157398, 0.026979589834809303, -0.019290542230010033, 0.005362635012716055, 0.0024945251643657684, -0.01607092283666134, 0.032848261296749115, -0.007417349144816399, 0.020744124427437782, 0.029343359172344208, 0.010738854296505451, 0.011445268988609314, -0.011839230544865131, -0.0023756574373692274, -0.0013041492784395814, 0.003976976033300161, -0.013632435351610184, -0.01706261932849884, -0.025172797963023186, 0.015106395818293095, 0.007716216612607241, -0.03542938828468323, -0.009516214951872826, 0.0011029231827706099, 0.03377203270792961, -0.0028426379431039095, -0.013965265825390816, 0.009332818910479546, 0.010528288781642914, -0.05156823620200157, 0.011472438462078571, -0.047492772340774536, -0.061621055006980896, -0.011513193137943745, 0.0051248990930616856, -0.007519235834479332, -0.008191687986254692, -0.052464839071035385], "9447d812-d668-42d7-860b-27936468ab3d": [-0.002952026901766658, 0.0027926412876695395, -0.010444851592183113, -0.012160791084170341, -0.0020126686431467533, -0.008043891750276089, -0.008328751660883427, -0.013313794508576393, -0.013903860934078693, -0.005636150483042002, -0.013815689831972122, 0.01957392320036888, 0.003382707480341196, 0.026885319501161575, 0.0179732833057642, -0.02535250224173069, 0.014500709250569344, -0.008918818086385727, 0.005459808744490147, 0.017769811674952507, 0.005520849954336882, 0.01696949265897274, -0.018610825762152672, -0.030059468001127243, 0.010634757578372955, 0.018312402069568634, 0.029788173735141754, -0.01338840089738369, 0.028730124235153198, -0.020211465656757355, 0.02057771384716034, -0.008640740998089314, -0.013096758164465427, -0.031660109758377075, -0.006290649063885212, -0.01578935980796814, -0.02011651173233986, -0.0005205469788052142, -0.008308404125273228, -0.0017752855783328414, 0.036706190556287766, 0.014609226956963539, -0.0010572021128609776, -0.0029859389178454876, -0.01351048331707716, 0.025189725682139397, -0.0037981278728693724, -0.02916419506072998, -0.008776388131082058, -0.01543667633086443, 0.013781778514385223, 0.007976068183779716, -0.010858575813472271, -0.004089769907295704, -0.00585318636149168, 0.01652185618877411, 0.013347706757485867, 0.02938123233616352, -0.005904053803533316, -0.030412152409553528, 0.035539623349905014, 0.0012810203479602933, -0.03681471198797226, -0.012554168701171875, -0.006053266115486622, 0.02371116913855076, 0.009176547639071941, -0.007731902878731489, 0.004615403711795807, -0.009529231116175652, 0.02650550566613674, 0.015938572585582733, -0.025054078549146652, 0.010499110445380211, 0.02367047592997551, -0.005317378789186478, 0.0001947812270373106, 0.01814962550997734, -0.03258251026272774, 0.00825414527207613, -0.0004701030848082155, -0.016928797587752342, -0.01339518278837204, 0.022992238402366638, 0.03746581822633743, -0.0013564742403104901, 0.023616215214133263, 0.016643939539790154, -0.002745164791122079, -0.027441473677754402, 0.015613018535077572, -0.006355081684887409, 0.004940957296639681, 0.01362578384578228, -0.011557159945368767, 0.04728669300675392, -0.022191917523741722, 0.04443809390068054, -0.010533022694289684, -0.035729531198740005, -0.020184336230158806, 0.01265590451657772, -0.016101349145174026, -0.002463696291670203, -0.017050880938768387, 0.005697191692888737, 0.0010088776471093297, -0.016847409307956696, 0.032419733703136444, 0.005341117270290852, -0.03616360202431679, 0.05762302502989769, 0.01694236323237419, -0.03629925101995468, 0.0024365668650716543, -0.0006277931970544159, 0.03640776872634888, -0.003201279090717435, -0.011869149282574654, -0.03374907746911049, 0.010499110445380211, 0.0030588493682444096, 0.04205070063471794, -0.028404569253325462, 0.019709570333361626, -0.007223225198686123, -0.005948139354586601, -0.015423111617565155, -0.007955721579492092, -0.011740284040570259, 0.024579312652349472, 0.01866508461534977, -0.001352235209196806, -0.006351690739393234, 0.010336333885788918, 0.013089976273477077, 0.0038829075638204813, -0.004483147524297237, -0.02155437506735325, -0.016074219718575478, 0.004527232609689236, 0.02197488211095333, 0.007168966345489025, -0.005341117270290852, 0.016576115041971207, 0.03635350987315178, 0.01764773018658161, 0.007399566937237978, -0.018122496083378792, -0.007399566937237978, -0.01135368924587965, -0.005507285241037607, -0.004649315495043993, -0.004472973756492138, -0.008525440469384193, 0.00610752496868372, -0.010804316960275173, 0.003750651143491268, 0.01843448542058468, 0.003303014673292637, -0.0006756937364116311, 0.013639348559081554, -0.013422312214970589, -0.010159991681575775, -0.02729226090013981, 0.03421027958393097, 0.008701781742274761, -0.0004904501838609576, -0.012716946192085743, 0.017607035115361214, 0.013137453235685825, 0.013666477985680103, -0.004595056641846895, 0.01531459391117096, 0.029733914881944656, 0.01938401721417904, 0.008952729403972626, 0.014866957440972328, -0.030900482088327408, -0.012737292796373367, 0.004805309697985649, -0.02079474925994873, 0.015395982190966606, 0.04750372841954231, -0.043407175689935684, -0.012398174032568932, -0.0019126286497339606, -0.014894086867570877, 0.009685225784778595, -0.0033182750921696424, 0.036190733313560486, 0.03448157384991646, -0.028513088822364807, -0.011299430392682552, -0.6037937998771667, -0.014093766920268536, -0.017824070528149605, -0.01721365749835968, 0.008430487476289272, 0.01481269858777523, 0.007175748702138662, -0.008457616902887821, 0.0014285369543358684, 0.0060363104566931725, -0.013727518729865551, 0.02269381284713745, 0.024443665519356728, 0.015518064610660076, -0.006616203114390373, -0.011258736252784729, 0.020889703184366226, -0.016657503321766853, 0.00046925529022701085, -0.007575908675789833, -0.014446450397372246, 0.018298836424946785, -0.033830467611551285, 0.0020381025969982147, -0.005144428461790085, 0.017078010365366936, -0.0020686232019215822, -0.013076411560177803, -0.0020940571557730436, 0.006253346335142851, -0.022056270390748978, -0.006494120229035616, -0.02053701877593994, 0.03366769105195999, 0.05097630247473717, 0.0023806123062968254, -0.013171364553272724, 0.012269309721887112, -0.006731503177434206, 0.04281032457947731, 0.01051945798099041, -0.009651314467191696, 0.0045814914628863335, -0.0025060861371457577, -0.009135853499174118, -0.033559173345565796, 0.022558165714144707, 0.017349304631352425, 0.010343115776777267, -0.041453853249549866, -0.002144924830645323, -0.010349898599088192, 0.013368053361773491, 0.009807308204472065, 0.01206583809107542, -0.008905253373086452, 0.01938401721417904, -0.025908658280968666, 0.002858769381418824, -0.04831761121749878, 0.012716946192085743, 0.011774196289479733, 0.004734095185995102, -0.008172756992280483, -0.012045491486787796, 0.006931583397090435, -0.01747138798236847, 0.004093160852789879, -0.004896871745586395, -0.019940171390771866, 0.0062160431407392025, 0.0017990239430218935, -0.024321582168340683, 0.018298836424946785, 0.015572324395179749, 0.03228408470749855, 0.02178497612476349, -0.007074012886732817, -0.0067993272095918655, 0.020659102126955986, 0.01017355639487505, 0.005534414667636156, -0.005178340245038271, -0.009305412881076336, 0.04207783192396164, 0.01040415745228529, -0.006792544852942228, -0.01496191043406725, 0.009237589314579964, 0.009135853499174118, -0.0025145639665424824, 0.017512083053588867, -0.0125406039878726, -0.013564742170274258, -0.03521407023072243, 0.03106326051056385, -0.018054671585559845, 0.007026536390185356, 0.0062770843505859375, -0.029354102909564972, -0.031415943056344986, -0.009753049351274967, 0.010600846260786057, -0.01937045156955719, -0.00919689517468214, 0.02490486577153206, 0.013598654419183731, -0.0016074219020083547, 0.013490135781466961, -0.03277241811156273, -0.030520670115947723, -0.02722443826496601, 0.002328048925846815, 0.025691621005535126, -0.0010283769806846976, -0.01768842339515686, 0.022341130301356316, 0.004947739653289318, 0.0051071252673864365, -0.01622343249619007, -0.00039910015766508877, 0.02892003022134304, 0.024457229301333427, -0.014989039860665798, 0.014270109124481678, -0.010682234540581703, -0.005531023722141981, -0.014351497404277325, -0.03366769105195999, -0.009868349879980087, 0.00014582097355742007, -0.006816282868385315, 0.02007581852376461, -0.036000825464725494, 0.024321582168340683, -0.02200201153755188, 0.006134654860943556, -0.0053105964325368404, 0.019085591658949852, -0.006833238992840052, -0.012465998530387878, 0.010126080363988876, 0.0004807005461771041, -0.02004868909716606, -0.034318797290325165, -0.021690022200345993, -0.010431286878883839, -0.005961704067885876, -0.02008938230574131, 0.001643029390834272, -0.012248962186276913, -0.013646130450069904, -0.023372050374746323, 0.007562343962490559, 0.008430487476289272, 0.00019774850807152689, 0.004262720234692097, 0.013944555073976517, 0.015328158624470234, -0.018312402069568634, -0.004089769907295704, 0.021595070138573647, -0.03277241811156273, 0.012635556980967522, -0.025678057223558426, -0.018543003126978874, -0.021188126876950264, 0.023046497255563736, -0.03521407023072243, -0.031117519363760948, -0.02603073976933956, 0.0023348312824964523, -0.015002604573965073, -0.0179732833057642, -0.003862560261040926, 0.0018397181993350387, -0.004042292945086956, 0.004683227278292179, -0.023073626682162285, 0.007162183988839388, 0.0016311602666974068, 0.0029113327618688345, 0.005564935505390167, -0.014826263301074505, 0.019940171390771866, 0.005157993175089359, 0.019234804436564445, -0.013768212869763374, -0.016386209055781364, -0.0012301525566726923, 0.016142042353749275, 0.009922608733177185, -0.015979265794157982, -0.011679243296384811, -0.017864765599370003, 0.038849420845508575, 0.011421512812376022, -0.0007854833384044468, 0.024457229301333427, 0.029815303161740303, 0.018990639597177505, 0.013788560405373573, 0.0024535227566957474, -0.03138881176710129, -0.0024806521832942963, -0.00933932512998581, 0.007392784580588341, 0.0005129168275743723, 0.012174355797469616, 0.007358872797340155, 0.008213451132178307, -0.017037315294146538, -0.02580013871192932, -0.009156201034784317, -0.002924897475168109, 0.025691621005535126, 0.002429784508422017, 0.008586482144892216, 0.01724078692495823, 0.00027659357874654233, -0.020211465656757355, 0.011360471136868, 0.01099422387778759, 0.004225417040288448, -0.02417237125337124, -0.005473373457789421, -0.003467487171292305, 0.01671176217496395, -0.018936380743980408, -0.058219872415065765, 3.6322777305031195e-05, -0.005490329582244158, 0.019994430243968964, 0.003413228318095207, 0.05157314985990524, 0.02293797954916954, 0.06093282252550125, -0.00943427812308073, 0.04373272880911827, -0.0014471884351223707, -0.02202914096415043, 0.03412889316678047, 0.021934188902378082, -0.013327359221875668, 0.031198907643556595, 0.008308404125273228, 0.04527910798788071, -0.003964296076446772, -0.023724734783172607, 0.01446001511067152, 0.014175155200064182, 0.017552776262164116, -0.016087783500552177, 0.00018217024626210332, -0.007236789911985397, -0.014012378640472889, 0.006351690739393234, 0.005449634976685047, 0.03543110564351082, 0.009047683328390121, 0.0033894898369908333, 0.011686025187373161, 0.002219530986621976, 0.019451839849352837, 0.014921216294169426, -0.001388690434396267, -0.008227015845477581, -0.043841246515512466, 0.010709363967180252, 0.00025921373162418604, -0.041752275079488754, -0.04639142006635666, -0.024050287902355194, -0.004283067304641008, 0.028974289074540138, 0.012079402804374695, 0.00710792513564229, 0.02011651173233986, 0.03855099901556969, -0.014907651580870152, -0.006175349000841379, 0.0017320479964837432, 0.007535214070230722, 0.02459287829697132, -0.009746267460286617, -0.0031978879123926163, -0.004011772572994232, -0.0040762051939964294, 0.00969879049807787, 0.011530030518770218, -0.016182737424969673, 0.021513681858778, 0.0027417736127972603, 0.012038708664476871, -0.023073626682162285, -0.024497924372553825, 0.03133455291390419, 0.005069822538644075, 0.013741083443164825, -0.010539804585278034, -0.010709363967180252, 0.0036353508476167917, -0.0019516273168846965, 0.006585682276636362, 0.03562101349234581, 0.012377827428281307, -0.0026129083707928658, -0.012276091612875462, 0.006188913714140654, -0.008871341124176979, 0.0037201305385679007, -0.008152410387992859, -0.0005107973120175302, -0.02362978085875511, 0.024714959785342216, -0.013808907940983772, 0.02030641958117485, -0.004472973756492138, 0.013829254545271397, -0.002835031133145094, -0.032908063381910324, -0.014772004447877407, 0.00018683313101064414, 0.016589678823947906, 0.03277241811156273, 0.032148439437150955, -0.0013005196815356612, 0.018773602321743965, -0.010302421636879444, -0.023236403241753578, -0.010668669827282429, 0.005971877835690975, 0.024226630106568336, -0.01606065407395363, -0.0001292889501200989, -0.0005442852852866054, 0.006833238992840052, 0.0037777808029204607, -0.00021512832609005272, 0.004669662564992905, -0.0335320420563221, -0.03562101349234581, 0.016915233805775642, -0.027115918695926666, 0.02202914096415043, 0.0137546481564641, 0.021364469081163406, 0.030737705528736115, -0.011265518143773079, 0.025162596255540848, 0.009522449225187302, -0.01220826804637909, 0.043434303253889084, -0.016901668161153793, 0.0022517472971230745, 0.007487737573683262, 0.03464435040950775, 0.03510555252432823, -0.022748073562979698, 0.040775615721940994, 0.023127885535359383, 0.032392606139183044, 0.017403563484549522, -0.0021873146761208773, 0.02322283945977688, 0.008430487476289272, 0.01505686342716217, -0.008274492807686329, 0.03518694266676903, 0.008511875756084919, 0.017349304631352425, -0.0007117250934243202, -0.002484043361619115, -0.022870155051350594, 0.032419733703136444, -0.002731599844992161, -0.04706965386867523, -0.03323361650109291, 0.03174149617552757, 0.011455425061285496, -0.006795935798436403, -0.014351497404277325, -0.0003480204031802714, 0.0034200106747448444, -0.005788753740489483, -0.013483353890478611, 0.008939164690673351, -0.009040900506079197, 0.009922608733177185, -0.02174428105354309, 0.009868349879980087, 0.03532258793711662, -0.029788173735141754, -0.03760146349668503, 0.007691208738833666, 0.0008978163823485374, 0.0007202030392363667, -0.01410733163356781, 0.026912448927760124, 0.00054513307986781, 0.011631766334176064, 0.02989669144153595, 0.0029588094912469387, 0.021934188902378082, 0.017389999702572823, -0.04682549089193344, -0.010349898599088192, -0.024036722257733345, -0.005422505550086498, 0.010451633483171463, -0.002060145139694214, 0.003608221421018243, 0.007569126319140196, -0.007311395835131407, 0.0020872747991234064, -0.014514273963868618, -0.002824857598170638, -0.011631766334176064, -0.003801519051194191, 0.02582727000117302, 0.005724321119487286, -0.0018091974779963493, 0.016888104379177094, 0.004503494594246149, -0.017742682248353958, -0.01867865025997162, 0.011686025187373161, 0.006999406963586807, -0.03016798570752144, -0.035051293671131134, 0.011441860347986221, 0.02057771384716034, -0.024470794945955276, 0.021133868023753166, 0.05553405359387398, -0.02605786919593811, 0.007616602815687656, -0.007603038102388382, -0.007521649356931448, 0.02674967236816883, -0.011258736252784729, 0.03434592857956886, -0.006351690739393234, -0.02414524182677269, 0.016874538734555244, -0.013232406228780746, 0.007603038102388382, 0.023494133725762367, -0.010560152120888233, 0.02128308080136776, -0.019682440906763077, -0.03540397807955742, 0.002536606742069125, 0.00860682874917984, 0.012499909847974777, 0.01675245724618435, 0.019994430243968964, -0.020849008113145828, -0.025230420753359795, 0.03174149617552757, -0.018502308055758476, 0.006663679610937834, 0.010607628151774406, -0.01962818205356598, 0.0013920816127210855, -0.007562343962490559, 0.01338840089738369, -0.012310003861784935, -0.02706165984272957, -0.031931404024362564, -0.013225623406469822, -0.0032453646417707205, -0.0037201305385679007, 0.021120304241776466, 0.009291848167777061, 0.002931679831817746, -0.0262613408267498, -0.003689609933644533, -0.010329551063477993, -0.01962818205356598, 0.005781971383839846, 0.029028547927737236, 0.014785569161176682, 0.030249375849962234, 0.01694236323237419, 0.016114912927150726, 0.040287286043167114, -0.0075080846436321735, -0.012744075618684292, 0.000707486062310636, -0.007786162197589874, 0.000818971311673522, -0.01935688778758049, -0.018773602321743965, 0.010221033357083797, -0.01205905620008707, -0.012262526899576187, 0.015124687924981117, -0.013591871596872807, 0.01606065407395363, 0.0035166593734174967, -4.556905696517788e-05, -0.03369481861591339, -0.01458209753036499, -0.01720009371638298, 0.007982851006090641, 0.0012182834325358272, 0.018610825762152672, 0.004238981753587723, 0.008328751660883427, 0.02487773634493351, -0.01865152083337307, -0.011068829335272312, -0.004333935212343931, -0.0009325760183855891, -0.01696949265897274, 0.021852798759937286, 0.02459287829697132, 0.020686231553554535, -0.011570724658668041, 0.004771397914737463, -0.018760038539767265, -0.005541197024285793, -0.01696949265897274, -0.019492534920573235, 0.02367047592997551, -0.011530030518770218, 0.01038380991667509, -0.025908658280968666, 0.0032402777578681707, -0.009807308204472065, -0.019031332805752754, 0.043027363717556, -0.008552569895982742, -0.035024166107177734, -0.02007581852376461, -0.015016169287264347, -0.031443070620298386, 0.0018448049668222666, 0.0015802924754098058, -0.00501556321978569, 0.02244964800775051, -0.031470201909542084, -0.016440467908978462, 0.022124094888567924, -0.005822665523737669, 0.026654718443751335, 0.00526311993598938, 0.02889290079474449, 0.0573517307639122, 0.016101349145174026, -0.02821466326713562, -0.018488744273781776, 0.01087892334908247, -0.0034250973258167505, 0.010221033357083797, 0.03543110564351082, 0.0025739099364727736, 0.001504838583059609, -0.00669759139418602, 0.003309797029942274, -0.01985878311097622, -0.03686897084116936, 0.014541403390467167, 0.004405150189995766, -0.00016023351054172963, -0.032908063381910324, -0.022748073562979698, -0.016847409307956696, -0.0009876828407868743, -0.021391598507761955, -0.009502101689577103, -0.01839379034936428, -0.016562549397349358, -0.023602651432156563, 0.009868349879980087, 0.00042580574518069625, 0.019926605746150017, -0.0030011991038918495, -0.010872140526771545, 0.013049282133579254, -0.005473373457789421, -0.0179597195237875, 0.025298243388533592, -0.016847409307956696, 0.026179952546954155, -0.03857812657952309, -0.01268303394317627, 0.02438940666615963, -0.005286858417093754, -0.015613018535077572, -0.002972374204546213, 0.027834851294755936, 0.027305826544761658, 0.0025043904315680265, 0.0038761249743402004, -0.0310903899371624, -0.01790545880794525, 0.012493127956986427, 0.016331950202584267, -0.021513681858778, -0.004032119642943144, -0.011089176870882511, -0.0067993272095918655, 0.03198566287755966, 0.020292853936553, 0.013110322877764702, -4.2999174183933064e-05, -0.004805309697985649, -0.008620393462479115, -0.014663486741483212, -0.007250354625284672, 0.007596255745738745, -0.017037315294146538, -0.040585707873106, -0.015884313732385635, -0.01339518278837204, 0.00513086374849081, -0.004537406377494335, -0.015097558498382568, 0.01626412570476532, 0.038605257868766785, -0.01816318929195404, 0.028133274987339973, -0.015450241044163704, -0.014989039860665798, -0.008789952844381332, 0.02131021022796631, 0.004296632017940283, -0.0030198507010936737, 0.01374786626547575, -0.013774995692074299, -0.022897284477949142, -0.009753049351274967, -0.00849152822047472, 0.014134461060166359, 0.00010597454820526764, 0.0013463007053360343, 0.017634164541959763, 0.01469061616808176, 0.015504499897360802, 0.0037370864301919937, -0.02221904695034027, 0.019289063289761543, -0.003174149664118886, -0.02967965602874756, 0.006382211111485958, -0.011597855016589165, 0.016874538734555244, 0.0041982876136898994, 0.009773396886885166, 0.03754720464348793, -0.002016059821471572, -0.034318797290325165, -0.022191917523741722, -0.011875932104885578, -0.018488744273781776, -0.003913428168743849, -0.023019367828965187, -0.010492327623069286, -0.0149347810074687, 0.016155607998371124, -0.020252160727977753, -0.00019255575898569077, 0.0025383024476468563, 0.015070428140461445, 0.02654620073735714, 0.016155607998371124, -0.014527838677167892, -0.010539804585278034, -0.012255745008587837, 0.015029734000563622, -0.010017561726272106, -0.020157206803560257, 0.012574516236782074, 0.03770998492836952, 0.014744875021278858, -0.003360664937645197, -0.019994430243968964, 0.0017295046709477901, -0.005456417333334684, -0.018271706998348236, 0.02965252660214901, 0.025488151237368584, 0.02227330580353737, 0.024999819695949554, -0.0021025349851697683, 0.034047503024339676, 0.00491043645888567, 0.013605436310172081, -0.035539623349905014, 0.001609117491170764, -0.018068237230181694, 0.04137246310710907, 0.0011733501451089978, 0.004645924083888531, 0.012710163369774818, -0.03570239990949631, -0.016331950202584267, 0.013585089705884457, 0.009827655740082264, 0.02913706563413143, -0.01842091977596283, -0.008823865093290806, -0.028133274987339973, -0.003564136102795601, -0.0002789249992929399, -0.02057771384716034, -0.008444052189588547, 0.005100342910736799, -0.015585889108479023, -0.00496808672323823, 0.0038761249743402004, -0.0155451949685812, -0.028865771368145943, -0.0089866416528821, -0.002731599844992161, 0.006405949592590332, -0.004445844329893589, -0.03149733319878578, 0.022300435230135918, -0.019668875262141228, -0.0016591375460848212, -0.014772004447877407, -0.013300229795277119, 0.04725956171751022, -0.003784563159570098, -0.005120689980685711, -0.01606065407395363, 0.006246563978493214, -0.02227330580353737, 0.005585282575339079, 0.01816318929195404, 0.02889290079474449, 0.007168966345489025, -0.004591665230691433, 0.019478969275951385, -0.022354695945978165, 0.008179539814591408, -0.01764773018658161, -0.013646130450069904, -0.042484771460294724, 0.018936380743980408, -0.003067327430471778, -0.006585682276636362, 0.0007469085976481438, 0.020197901874780655, 0.003706565825268626, -0.010953529737889767, -0.046282898634672165, -0.029598267748951912, -0.006490729283541441, 0.0037404776085168123, -0.011842019855976105, 0.021364469081163406, 0.0004060944775119424, 0.005646323785185814, 0.006494120229035616, -0.023833252489566803, -0.006528032012283802, 0.18817010521888733, -0.00471374811604619, 0.002192401560023427, 0.013313794508576393, 0.01543667633086443, 0.031226037070155144, 0.024335147812962532, -0.012961111031472683, -0.0101464269682765, 0.007426696363836527, -0.028051886707544327, 0.013354488648474216, -0.017796941101551056, 0.0027824677526950836, -0.008532223291695118, -0.0037472599651664495, -0.020984655246138573, -0.0477750226855278, -0.017824070528149605, -0.013591871596872807, -0.0029859389178454876, 0.020699797198176384, -0.013890296220779419, -0.013903860934078693, 0.018000412732362747, -0.016589678823947906, -0.015301029197871685, -0.0053648557513952255, 0.024090982973575592, -0.0059515307657420635, -0.03567527234554291, 0.006965495180338621, -0.016888104379177094, -0.032419733703136444, -0.019967300817370415, -0.0049613043665885925, 0.04104690998792648, -0.0014158199774101377, -0.0014794047456234694, -0.01206583809107542, 0.014975475147366524, -0.04281032457947731, -0.018271706998348236, -0.006626376416534185, 0.005815883167088032, 0.004995216149836779, -0.0037879543378949165, -0.013680042698979378, -0.020876137539744377, 0.014256544411182404, -0.034562963992357254, -0.01937045156955719, 0.02943549118936062, 0.01767485961318016, -0.004534014966338873, 0.018054671585559845, 0.005798927508294582, -0.005971877835690975, 0.024063853546977043, 0.02824179269373417, 0.00919011328369379, 0.052956752479076385, -0.016331950202584267, -0.0006816282984800637, 0.005649715196341276, 0.000886794994585216, -0.043407175689935684, -0.012316785752773285, 0.024104546755552292, -0.009766614064574242, -0.004415323492139578, -0.0299238208681345, 0.007528431713581085, 0.022422518581151962, -0.03423741087317467, -0.01790545880794525, 0.028485959395766258, 0.005937966052442789, -0.000542589696124196, 0.03868664428591728, -0.01577579602599144, 9.246279660146683e-05, -0.011543595232069492, -0.00382864847779274, -0.015260335057973862, -0.030005209147930145, 0.0035268329083919525, -0.0002878268714994192, -0.013544394634664059, -0.021947752684354782, 0.0012708468129858375, -0.03440018743276596, -0.008376228623092175, -0.002384003484621644, 0.004354282282292843, 0.013720736838877201, -0.011502901092171669, 0.03011372685432434, -0.020360678434371948, 0.011048482730984688, -0.017824070528149605, 0.03176862746477127, 0.008165975101292133, 0.019072027876973152, -0.01840735599398613, 0.009725919924676418, 0.012167573906481266, 0.024294452741742134, -0.005727712530642748, -0.020387807860970497, -0.016196303069591522, -0.018312402069568634, -0.0027926412876695395, 0.00561580341309309, -0.0018397181993350387, -0.01230322103947401, -0.01772911846637726, -0.016874538734555244, 0.009983650408685207, -0.020442066714167595, 0.02371116913855076, -0.008172756992280483, 0.008477963507175446, -0.0077929445542395115, 0.02581370435655117, -0.011631766334176064, -0.04945705085992813, -0.00981409102678299, 0.02962539717555046, -0.017308611422777176, 0.03792702034115791, -0.03380333632230759, 0.004167767241597176, -0.0070672305300831795, 0.014731310307979584, -0.006392384879291058, -0.02364334650337696, -0.02362978085875511, -0.013734301552176476, -0.019031332805752754, 0.0019957127515226603, 0.02700740098953247, -0.024525053799152374, 0.00825414527207613, 0.050108157098293304, -0.006300822831690311, 0.02221904695034027, -0.012791551649570465, 0.003253842471167445, -0.009610619395971298, -0.04354282096028328, -0.0027197308372706175, 0.003967687021940947, -0.01698305644094944, -0.015178946778178215, -0.021649328991770744, -0.023236403241753578, -0.01623699627816677, 0.020726926624774933, -0.0033742296509444714, -0.02634272910654545, -0.010695799253880978, 0.0060702222399413586, -0.008627176284790039, -0.013666477985680103, -0.024714959785342216, -0.17080722749233246, 0.005564935505390167, 0.013700389303267002, -0.019953735172748566, 0.001596400630660355, 0.015531630255281925, 0.05070500448346138, 0.003879516152665019, 0.00734530808404088, -0.010858575813472271, 0.00013607132132165134, 0.007616602815687656, -0.03486138582229614, -0.011299430392682552, -0.014595662243664265, -0.002626473316922784, 0.0010995919583365321, 0.009407148696482182, 0.022558165714144707, 0.03179575502872467, 0.03377620875835419, -0.015301029197871685, 0.02725156769156456, 0.03136168420314789, -0.007433478720486164, 0.003523441730067134, -0.012635556980967522, -0.017091576009988785, -0.011862367391586304, -0.005544588435441256, -0.023141449317336082, 0.01885499246418476, 0.005297031719237566, -0.004205069970339537, 0.015273899771273136, 0.019696006551384926, 0.016440467908978462, -0.015450241044163704, -0.0050426931120455265, 0.0017922415863722563, 0.021350903436541557, 0.041236817836761475, 0.004679835867136717, 0.014134461060166359, 0.0015379026299342513, 0.02443009987473488, 0.023806123062968254, -0.02558310329914093, 0.00967166107147932, -0.009617402218282223, 0.02345343865454197, -0.026953142136335373, 0.017824070528149605, -0.004462799988687038, 0.016128478571772575, 0.0009851393988355994, -0.01266268640756607, 0.013429095037281513, 0.01516538206487894, 0.009841220453381538, 0.0002012456679949537, -0.01182845514267683, -0.015613018535077572, 0.012642339803278446, 0.001926193363033235, -0.017403563484549522, -0.025501715019345284, 0.04375986009836197, -0.031008999794721603, 0.005093560554087162, -0.029598267748951912, -0.0021669676061719656, 0.03369481861591339, 0.0004862112400587648, 0.005924401339143515, 0.020021559670567513, -0.00035904176183976233, 0.035485364496707916, -0.010960311628878117, -0.03250112384557724, 0.023738298565149307, 0.02581370435655117, -0.00013596533972304314, 0.013673259876668453, 0.012744075618684292, -0.0011343515943735838, 0.003608221421018243, -0.007915027439594269, 0.0006307605071924627, -0.0077725974842906, 0.020672667771577835, -0.027807721868157387, 0.0028146840631961823, -0.015721535310149193, 0.009644531644880772, 0.015111123211681843, 0.006650114897638559, -0.0015438372502103448, 0.015830054879188538, -0.02585439942777157, 0.015328158624470234, -0.020699797198176384, -0.027916239574551582, -0.020903266966342926, 0.02057771384716034, 0.009644531644880772, -0.013117105700075626, 0.022124094888567924, 0.028838641941547394, 0.0037981278728693724, -0.004445844329893589, -0.01064154040068388, 0.019044898450374603, 0.02821466326713562, -0.002704470418393612, 0.021635763347148895, -0.032365474849939346, -0.00979374349117279, -0.002587474649772048, -0.006144828163087368, 0.01962818205356598, 0.014025943353772163, 0.007860767655074596, 0.00872212927788496, 0.00046798359835520387, 0.0058972714468836784, -0.10081316530704498, -0.05876246467232704, 0.003016459522768855, 0.008532223291695118, -0.020157206803560257, 0.027427908033132553, -0.02889290079474449, 0.026695413514971733, 0.0013708868063986301, 0.02125595137476921, 0.0053682466968894005, 0.006670461967587471, -0.015341723337769508, 0.014975475147366524, 0.011157000437378883, 0.01653541997075081, -0.006819674279540777, 0.00872212927788496, -0.01934332214295864, 0.006049875169992447, 0.00471374811604619, 0.001657441956922412, -0.01325275283306837, 0.007080795243382454, -0.01772911846637726, 0.0215272456407547, -0.009807308204472065, 0.0014641443267464638, 0.02243608422577381, -0.019519664347171783, -0.01087892334908247, -0.013225623406469822, 0.011964102275669575, -0.009725919924676418, -0.010241379961371422, 0.03491564467549324, -0.020469196140766144, -0.010227815248072147, 0.03250112384557724, -0.003920210525393486, 0.008939164690673351, 0.00029588094912469387, -0.0077115558087825775, -0.005768406670540571, -0.01744425855576992, -0.030412152409553528, -0.015735100954771042, 0.012852593325078487, -0.012235397472977638, -0.016209866851568222, -0.014785569161176682, -0.012744075618684292, -0.00922402460128069, -0.015979265794157982, 0.034101761877536774, -0.02609856426715851, 0.009732702746987343, 0.010627975687384605, -0.004001598805189133, -0.016643939539790154, 0.01627769134938717, -0.0035912655293941498, -0.00467305351048708, 0.009088377468287945, 0.01220826804637909, 0.0023975681979209185, -0.003513268195092678, -0.007053665816783905, 0.019980864599347115, -0.01819031871855259, -0.005415723193436861, 0.004574709106236696, -0.00788789801299572, 0.034291669726371765, -0.010180339217185974, 0.010085386224091053, 0.010668669827282429, 0.016616808250546455, 0.018556566908955574, 0.009400365874171257, -0.022408954799175262, -0.014365062117576599, 0.0020296245347708464, -0.01458209753036499, 0.018298836424946785, -0.00236535188741982, -0.002546780277043581, -0.0007498759077861905, 0.015029734000563622, -0.018814297392964363, 0.017389999702572823, 0.00604309281334281, 0.04612012207508087, -0.013958119787275791, -0.011672460474073887, 0.005778579972684383, 0.011136652901768684, -0.0005519154365174472, -0.022666683420538902, 0.027102354913949966, -0.04666271433234215, -0.017607035115361214, -0.061583928763866425, 0.01720009371638298, -0.021907059475779533, -0.021513681858778, 0.01304249931126833, -0.011435077525675297, 0.03326074779033661, -0.01064832229167223, 0.012031926773488522, -0.012710163369774818, -0.045577533543109894, -0.0051647755317389965, -0.011916626244783401, 0.0014565142337232828, 0.0019465405493974686, -0.002943549072369933, 0.023548392578959465, -0.018000412732362747, 0.027604250237345695, -0.0005124929011799395, 0.007324960548430681, -0.012310003861784935, 0.02011651173233986, -0.009115506894886494, -0.027889110147953033, -0.0037642158567905426, 0.0036183949559926987, 0.040802743285894394, -0.006589073687791824, -0.009020553901791573, -0.0013920816127210855, -0.0012564342468976974, 0.008559352718293667, 0.011414730921387672, 0.018936380743980408, -0.013191712088882923, -0.0006502598407678306, 0.02441653609275818, 0.021581504493951797, 0.020130077376961708, -0.02125595137476921, -0.03225695714354515, 0.0018431093776598573, -0.02415880560874939, -0.02864873595535755, -0.004896871745586395, 0.0036556979175657034, 0.03231121599674225, 0.007752249948680401, -0.0021025349851697683, 0.04324439913034439, 0.006853586062788963, -0.006100742612034082, -0.03483425825834274, 0.02894715964794159, -0.039853211492300034, 0.010899269953370094, -0.027644945308566093, -0.024280888959765434, 0.0023026149719953537, 0.01603352464735508, -0.00507321348413825, 0.01766129396855831, -0.00489348080009222, 0.015043298713862896, -0.02818753384053707, -0.019709570333361626, -0.0034352708607912064, 0.00484600430354476, -0.011801325716078281, -0.012343915179371834, -0.012886504642665386, 0.019709570333361626, 0.004907045513391495, 0.01984521746635437, -0.02148655243217945, -0.05046084150671959, -0.009244372136890888, -0.02293797954916954, 0.009298630990087986, 0.05238703265786171, -0.009447842836380005, -0.0037472599651664495, 0.010682234540581703, 0.05149175971746445, 0.018095366656780243, -0.02797049842774868, -0.013659695163369179, 0.013713954016566277, 0.0028502915520220995, -0.009413931518793106, 0.015857184305787086, -0.012669469229876995, 0.004378020763397217, 0.006375428754836321, 0.00812528096139431, -0.025271113961935043, -0.013205276802182198, 0.010248162783682346, 0.016359079629182816, 0.013293446972966194, -0.00263155996799469, -0.007053665816783905, -0.0022568339481949806, -0.03895793855190277, 0.002587474649772048, -0.015070428140461445, 0.012872939929366112, -0.039771825075149536, 0.01934332214295864, -0.0179732833057642, -0.004150811117142439, 0.013117105700075626, 0.021133868023753166, -0.02296510897576809, -0.008464398793876171, -0.009807308204472065, -0.00544285262003541, -0.011618201620876789, 0.011597855016589165, 0.00872212927788496, 0.0028943768702447414, 0.019763829186558723, -0.007297831121832132, 0.025935787707567215, 0.00614821957424283, 0.010275292210280895, -0.03874090313911438, -0.009047683328390121, -0.007596255745738745, -0.020618408918380737, 0.001017355709336698, -0.03437305614352226, -0.019994430243968964, 0.0029011592268943787, 0.0025535626336932182, 0.01606065407395363, 0.0019465405493974686, 0.0038591690827161074, 0.07574552297592163, -0.0005434374907054007, 0.0025823877658694983, 0.004486538469791412, 0.014148025773465633, 0.026166386902332306, 0.011916626244783401, -0.009759832173585892, 0.011007788591086864, -0.025935787707567215, 0.028296051546931267, -0.0018431093776598573, 0.02487773634493351, -0.03871377557516098, -0.004703574348241091, 0.0167388916015625, -0.01005147397518158, 0.01821744814515114, -0.013890296220779419, 0.02126951515674591, 0.010899269953370094, -0.004086378496140242, 0.01574866659939289, -0.0008516114903613925, -0.045441884547472, 0.0035573537461459637, 0.002965591847896576, 0.00872891116887331, 0.0051071252673864365, -0.0549643337726593, 0.018054671585559845, 0.017986848950386047, -0.037682853639125824, -0.02225974202156067, -0.005171557888388634, 0.019790958613157272, -0.014283673837780952, -0.010736493393778801, 0.029272712767124176, 0.009210459887981415, -0.018990639597177505, 0.021133868023753166, -0.050081029534339905, -0.042403385043144226, -0.008383010514080524, -0.01622343249619007, -0.012818681076169014, -0.007277484051883221, -0.03518694266676903], "b8d382cd-0334-429b-9834-99a34e818741": [0.0011765180388465524, 0.02215956337749958, -0.020852135494351387, 0.0021879400592297316, 0.0036721371579915285, -0.0012248795246705413, -0.007864576764404774, -0.021305732429027557, -0.013541214168071747, 0.0004907022230327129, -0.02259982004761696, 0.024160727858543396, -0.007651119492948055, 0.016076022759079933, 0.01973148249089718, -0.01402149349451065, 0.015622424893081188, -0.0016676371451467276, 0.0014733574353158474, 0.008544973097741604, 0.017436815425753593, 0.01157340221107006, -0.012700725346803665, -0.012980887666344643, 0.023800518363714218, 0.010379374027252197, 0.024214092642068863, -0.016489597037434578, 0.0406903475522995, 0.0004631862393580377, 0.014048175886273384, -0.0019127798732370138, -0.02292000502347946, -0.034179892390966415, -0.008284821175038815, -0.01650293730199337, -0.0018310656305402517, -6.14420059719123e-05, 0.01854412630200386, -0.01427497435361147, 0.046613793820142746, 0.010152575559914112, -0.012040340341627598, 0.008584996685385704, -0.01747683808207512, 0.021132297813892365, -0.03474021703004837, -0.050909627228975296, -0.01838403195142746, -0.023306896910071373, 0.015315580181777477, 0.01914447546005249, -0.01807718724012375, -0.005062946584075689, -0.0049061886966228485, 0.011159827932715416, -0.0005590753862634301, 0.02396061085164547, -0.021652601659297943, -0.015622424893081188, 0.025134628638625145, -0.008898512460291386, -0.035754140466451645, -0.04042352735996246, -0.008564984425902367, 0.01666303165256977, 0.0074576735496521, 0.0055498965084552765, -0.0025097939651459455, -0.011586743406951427, 0.026628831401467323, 0.02940377965569496, -0.0091186398640275, 0.016823124140501022, 0.0258550476282835, -0.004092381801456213, -0.023547036573290825, 0.01427497435361147, -0.023853883147239685, 0.009645613841712475, -0.00019063177751377225, -0.012914182618260384, -0.021225687116384506, 0.010973053053021431, 0.03935623914003372, 0.0038522419054061174, 0.02139911986887455, 0.0279629398137331, -0.020665360614657402, -0.024907829239964485, -0.0011848562862724066, -0.0031718460377305746, -0.007864576764404774, 0.021132297813892365, -0.0074576735496521, 0.03655460849404335, -0.024667689576745033, 0.036367833614349365, -0.005679972469806671, -0.037114933133125305, -0.015115463174879551, 0.019558049738407135, -0.015502355061471462, -0.006843983195722103, -0.007184180896729231, -0.00809804629534483, 0.0045659905299544334, -0.01590258814394474, 0.002809968777000904, 0.004812800791114569, -0.019571390002965927, 0.05379130691289902, 0.012760760262608528, -0.020091693848371506, 0.0014333341969177127, -0.009999152272939682, 0.021305732429027557, -0.005910106003284454, 0.0036020963452756405, -0.018797606229782104, 0.015889247879385948, -0.0018093863036483526, 0.046907298266887665, -0.010179257020354271, 0.011493355967104435, 0.012327173724770546, -0.008071363903582096, -0.008858488872647285, -0.004072370007634163, -0.021946106106042862, 0.02817639894783497, 0.018744241446256638, -0.011580072343349457, 0.008471596986055374, 0.011733495630323887, 0.025908412411808968, 0.014795277267694473, 0.0015342262340709567, -0.02532140351831913, -0.017530202865600586, -0.010739583522081375, 0.02653544396162033, -0.004479273688048124, -0.00438922131434083, 0.020998887717723846, 0.013201016001403332, 0.015288897790014744, 0.020091693848371506, -0.009665625169873238, -0.01534226257354021, -0.009392132982611656, -0.0026498755905777216, 0.005163004621863365, 0.001637619687244296, 0.0027966275811195374, -0.013794695027172565, -0.004485944285988808, 0.0086316904053092, 0.016903171315789223, -0.00991243589669466, 0.006320344749838114, 0.015248874202370644, -0.015155486762523651, -0.007010746747255325, -0.02396061085164547, 0.023800518363714218, 0.017196673899888992, 0.002419741591438651, -0.006904018111526966, 0.013554555363953114, 0.018330667167901993, 0.005413150414824486, -0.0028466566000133753, 0.015942610800266266, 0.003522049868479371, 0.03623441979289055, 0.013534543104469776, 0.011413308791816235, -0.008104716427624226, -0.013607919216156006, -0.007110804785043001, -0.01534226257354021, 0.01349452044814825, 0.03935623914003372, -0.034713536500930786, -0.017970457673072815, 0.004555984865874052, 0.004569326061755419, 0.009011911228299141, 0.014034834690392017, 0.015969293192029, 0.027829529717564583, -0.030204245820641518, -0.0013566229026764631, -0.6075001955032349, 0.004679389763623476, -0.017143310979008675, -0.017903752624988556, 0.020985545590519905, 0.016556302085518837, 0.020185081288218498, -0.0001616565859876573, 0.01250727940350771, 0.02191942371428013, -0.022733230143785477, 0.04848155006766319, 0.020598655566573143, 0.012714065611362457, 0.0021679282654076815, -0.01958473213016987, 0.0427982397377491, -0.018864311277866364, -0.01420826930552721, -0.010005823336541653, -0.009065276011824608, 0.02849658392369747, -0.01966477744281292, -0.01431499794125557, 0.013741330243647099, 0.0009889088105410337, -0.008584996685385704, -0.010926359333097935, 0.008431573398411274, 0.008104716427624226, -0.01416824571788311, -0.011173169128596783, -0.0028516596648842096, 0.042398009449243546, 0.05005579814314842, -0.004869500640779734, -0.024894488975405693, 0.002314680488780141, -0.013054263778030872, 0.04439917206764221, -0.008151411078870296, -0.03172513097524643, -0.020171739161014557, -0.006360368337482214, -0.01299422886222601, -0.03932955488562584, 0.009445496834814548, 0.005339774303138256, -0.0007558565703220665, -0.045413095504045486, 0.0028299803379923105, -0.0034953674767166376, -0.0032268778886646032, -0.014982052147388458, 0.004662713501602411, -0.006563819944858551, 0.017276721075177193, -0.004939541220664978, 0.015875905752182007, -0.042611464858055115, 0.006727248430252075, 0.01348784938454628, 0.015395626425743103, -0.006560484878718853, -0.01250727940350771, 0.011106464080512524, -0.018597489222884178, -0.0011089787585660815, 0.005236380733549595, -0.03204531595110893, 0.009031923487782478, 0.0012273809406906366, -0.01179353054612875, 0.006357032805681229, 0.004402562044560909, 0.028576631098985672, 0.032525595277547836, -0.003158504841849208, -0.015355603769421577, -0.00017166241013910621, 0.015862565487623215, -0.011406638659536839, 0.012934193946421146, -0.023853883147239685, 0.04906855523586273, 0.003642119700089097, -0.011093122884631157, -0.012907511554658413, 0.013741330243647099, 0.01809052750468254, 0.014261633157730103, 0.023613743484020233, -0.03015088103711605, 0.0009964131750166416, -0.023947270587086678, 0.0299107413738966, -0.01666303165256977, 0.003665466560050845, -0.004712742753326893, -0.02924368530511856, -0.03551400080323219, -0.010846312157809734, 0.0017943775746971369, -0.013027581386268139, -0.013754671439528465, 0.0338863879442215, 0.021639259532094002, -0.013781353831291199, 0.02222626842558384, -0.02013171650469303, -0.0183973740786314, -0.027536025270819664, 0.004639366641640663, 0.027242520824074745, -0.0016843135235831141, -0.015875905752182007, 0.03148499131202698, 0.014355020597577095, -0.005459844134747982, -0.023640424013137817, 0.012880830094218254, 0.04762771725654602, 0.021826036274433136, -0.012573984451591969, 0.02026512660086155, -0.0010522790253162384, 0.00495621794834733, -0.000410447217291221, -0.039516329765319824, -0.006877335719764233, 0.004309174604713917, -0.017223356291651726, 0.007410979829728603, -0.032152045518159866, 0.01628948003053665, -0.008911852724850178, 0.013834718614816666, -0.006577161140739918, 0.027455978095531464, -0.005509873386472464, -4.041414649691433e-05, -0.0086316904053092, -0.0012490602675825357, 0.004399226978421211, -0.020318491384387016, -0.010319339111447334, -0.018957700580358505, -0.013100957497954369, -0.024360844865441322, 0.0036721371579915285, -0.010719572193920612, -0.002571496646851301, -0.024761077016592026, -0.006904018111526966, -0.0006862326990813017, -0.011966964229941368, -0.008985228836536407, 0.007684472016990185, 0.01367462519556284, -0.010712901130318642, 0.0007170839817263186, 0.028656678274273872, -0.025361426174640656, 0.01559574343264103, -0.019704801961779594, -0.014395044185221195, -0.020078351721167564, 0.019571390002965927, -0.03580750524997711, -0.01628948003053665, -0.010679548606276512, -0.0002501455892343074, -0.010205939412117004, -0.027402615174651146, 0.008998570032417774, -0.008124728687107563, -0.015502355061471462, 0.004212451633065939, -0.01172015443444252, 0.00017312158888671547, -0.0030784583650529385, 0.006286992225795984, 0.0017593572847545147, -0.017903752624988556, 0.026188574731349945, 0.011526708491146564, 0.01679644174873829, -0.0038255597464740276, -0.017463495954871178, -0.002858330262824893, 0.0058067128993570805, -0.006557149346917868, -0.026508761569857597, 0.0012765763094648719, -0.03369961306452751, 0.037275027483701706, 0.013768012635409832, 0.0005657459259964526, 0.01846407912671566, 0.024094022810459137, 0.027989622205495834, -0.0063336859457194805, 0.008771771565079689, -0.01793043501675129, 0.006870665121823549, -0.008131398819386959, 0.008818465285003185, 0.0006191103020682931, 0.011913600377738476, 0.01472857128828764, 0.0007900430937297642, -0.021879399195313454, -0.02162591926753521, 0.00991243589669466, 0.008598336949944496, 0.020918840542435646, -0.007004076149314642, -0.005343109369277954, 0.018477419391274452, 0.005980147048830986, -0.0031851870007812977, 0.00742432102560997, -0.015062099322676659, -0.02246640808880329, 0.00160676846280694, -0.0008217282011173666, 0.013087616302073002, 0.03172513097524643, -0.02862999588251114, -0.03345947340130806, 0.006170257460325956, 0.0062736510299146175, 0.020785430446267128, 0.006977394223213196, 0.046613793820142746, 0.02298671193420887, 0.04485277086496353, -0.0008046349394135177, 0.05661961808800697, -0.010185928083956242, -0.011093122884631157, 0.03196527063846588, 0.02668219432234764, -0.0325789600610733, 0.028523266315460205, 0.008431573398411274, 0.03506040573120117, 0.00979903619736433, -0.010419397614896297, 0.02169262431561947, 0.02366710640490055, 0.025428131222724915, 0.0027232514694333076, 0.003415320999920368, -0.004889512434601784, -0.0161293875426054, 0.01651627942919731, 0.0009413812076672912, 0.01815723441541195, 0.01153337862342596, 0.016983216628432274, 0.00459934351965785, -0.013768012635409832, 0.015942610800266266, 0.018063846975564957, 0.0002747432154137641, 0.006413732655346394, -0.04045020788908005, 0.02449425496160984, -0.012800782918930054, -0.04920196905732155, -0.03044438548386097, -0.017957117408514023, -0.005656625144183636, 0.02940377965569496, 0.014675207436084747, 0.006547143682837486, 0.011019746772944927, 0.0257750004529953, -0.01153337862342596, -0.008544973097741604, -0.028683360666036606, 0.01146000251173973, 0.010919688269495964, -0.007784530520439148, -0.008398220874369144, 0.0015450658975169063, -0.008865159004926682, -0.005082958377897739, 0.020505266264081, -0.013507861644029617, 0.01484864205121994, -0.006286992225795984, 0.011486684903502464, -0.01360124908387661, -0.01739679090678692, 0.027309225872159004, -0.012573984451591969, 0.022026151418685913, -0.009992482140660286, -0.01672973670065403, -0.0011723489733412862, -0.008411562070250511, 0.005730001255869865, 0.027309225872159004, 0.0008705066284164786, 0.007971305400133133, -0.005683307535946369, -0.0017626924673095345, -0.0001429998956155032, -0.00735094491392374, -0.028896817937493324, 0.011480014771223068, -0.009885753504931927, 0.022359680384397507, -0.009478850290179253, 0.033566202968358994, -0.0016109375283122063, 0.005296415649354458, 0.003251892514526844, -0.027696117758750916, -0.005573243368417025, -0.00589342974126339, 0.0039256177842617035, 0.0492820143699646, 0.0411706268787384, -0.005986817646771669, 0.015008734539151192, -0.004449256230145693, -0.03772862255573273, -0.016849806532263756, 0.008238127455115318, 0.010059187188744545, -0.020745405927300453, -0.014141563326120377, -0.008578325621783733, 0.0015834214864298701, 0.023186827078461647, 0.024600984528660774, 0.0014892000472173095, -0.040717028081417084, -0.04762771725654602, -0.009458838030695915, -0.033939752727746964, 0.030844617635011673, 0.010486102662980556, 0.020625336095690727, 0.02063867822289467, -0.0031951928976923227, 0.035754140466451645, 0.020692043006420135, -0.010819629766047001, 0.047734446823596954, -0.013661283999681473, 0.009525544010102749, 0.007764518726617098, 0.026642171666026115, 0.024320820346474648, -0.015248874202370644, 0.024280797690153122, 0.030177563428878784, 0.016769759356975555, 0.01111980527639389, 0.012934193946421146, 0.016823124140501022, 0.0020128381438553333, 0.019718142226338387, -0.009558896534144878, 0.01966477744281292, 0.009405474178493023, 0.02186605893075466, -0.009091958403587341, -0.007277568802237511, -0.022626500576734543, 0.02758939005434513, 0.0006658041384071112, -0.036901477724313736, -0.019624754786491394, 0.04674720764160156, 0.0021879400592297316, -0.0340464822947979, -0.00740430923178792, 0.0017193339299410582, -0.018037164583802223, -0.011266556568443775, -0.0298306941986084, 0.001680144458077848, -0.009465509094297886, 0.016849806532263756, -0.014675207436084747, 0.011013075709342957, 0.025828365236520767, -0.03882259503006935, -0.024921169504523277, 0.009218698367476463, -0.004052358213812113, -0.004746095277369022, -0.019984964281320572, 0.020852135494351387, 0.0025331408251076937, 0.028683360666036606, 0.01364127267152071, -0.006000158842653036, 0.027015723288059235, 0.008618349209427834, -0.047174122184515, 0.010919688269495964, -0.002386388834565878, 0.0003820973797701299, 0.01854412630200386, -0.0006232794257812202, 0.02412070520222187, -0.004836147651076317, 0.00399232329800725, 0.0001920909562613815, -0.003572078887373209, -0.0010447746608406305, -0.009278733283281326, -0.010125893168151379, 0.037275027483701706, -0.012620678171515465, -0.009218698367476463, 0.017743660137057304, -0.0003055945271626115, -0.019558049738407135, -0.014741912484169006, 0.01217375136911869, -0.0010956376791000366, -0.0040123350918293, -0.028283126652240753, 0.01733008585870266, 0.030417703092098236, -0.01763693057000637, 0.008258139714598656, 0.03028429113328457, -0.027002381160855293, -0.003331939224153757, -0.0017410132568329573, -0.004332521464675665, 0.025521520525217056, 0.004529302474111319, 0.02147916704416275, -0.011286568827927113, -0.017770342528820038, 0.005926782730966806, -0.02049192599952221, 0.013621260412037373, 0.021519189700484276, -0.007704483810812235, 0.0172633808106184, -0.015235533006489277, -0.029563872143626213, 0.003735507372766733, 0.0054098148830235004, 0.008991899900138378, 0.006747260224074125, 0.012020329013466835, -0.01899772323668003, -0.023080099374055862, 0.01182688307017088, -0.005383132956922054, 0.011526708491146564, 0.007324262522161007, -0.008418232202529907, -0.015062099322676659, -0.00036020964034833014, 0.01246725581586361, -0.012113716453313828, -0.016262797638773918, -0.03172513097524643, -0.013627931475639343, 0.005246386397629976, 0.006493779364973307, 0.02292000502347946, 0.020024986937642097, -0.01213372778147459, -0.036074329167604446, -0.0031868547666817904, -0.018063846975564957, 0.009572237730026245, 0.011393297463655472, 0.016396209597587585, 0.02201281115412712, 0.02191942371428013, 0.02079877071082592, 0.005773359909653664, 0.03527386114001274, -0.012147068977355957, -0.0017226692289113998, 0.003261898411437869, 0.0019161151722073555, 0.009919106028974056, -0.007144157774746418, -0.013741330243647099, 0.016316162422299385, -0.009392132982611656, -0.008271480910480022, 0.02178601175546646, -0.007871247828006744, 0.01536894403398037, -0.0056065963581204414, -0.007097464054822922, -0.03340610861778259, -0.03164508193731308, -0.022479750216007233, 0.010446079075336456, -0.006240298505872488, 0.01221377495676279, 0.0055465614423155785, 0.012447244487702847, 0.0080246701836586, -0.010752924717962742, -0.014475090429186821, -0.008031340315937996, 0.0012523955665528774, -0.014555137604475021, 0.02638869173824787, 0.02005166932940483, 0.020892158150672913, 0.0006078537553548813, -0.002694901777431369, -0.01642289198935032, 0.010926359333097935, -0.01001916453242302, -0.03700820356607437, 0.01679644174873829, -0.011493355967104435, -0.00881179515272379, -0.020091693848371506, 0.019651437178254128, -0.014861982315778732, -0.023400284349918365, 0.03735507279634476, -0.015035416930913925, -0.024147385731339455, -0.008678384125232697, -0.00399232329800725, -0.02373381331562996, 0.006930700037628412, 0.019691459834575653, -0.015075440518558025, 0.024160727858543396, -0.020825453102588654, -0.02013171650469303, 0.029030228033661842, -0.003622107906267047, 0.03700820356607437, 0.004779448267072439, 0.0004877838655374944, 0.04357202351093292, 0.004142410587519407, -0.02721583843231201, -0.004302504006773233, 0.020545290783047676, 0.006843983195722103, -0.008638360537588596, 0.027776164934039116, 0.0015525702619925141, 0.004035681951791048, -0.01310762856155634, 0.006770607084035873, -0.03647455945611, -0.030844617635011673, 0.014595161192119122, 0.018237279728055, -0.0034586796537041664, -0.03247223049402237, -0.029377097263932228, -0.028283126652240753, -0.009658955037593842, -0.005940123926848173, 0.012787441723048687, -0.0008571654907427728, -0.01186690665781498, -0.038635820150375366, 0.02063867822289467, 0.005243051331490278, 0.027642754837870598, 0.009645613841712475, -0.008785112760961056, 0.010446079075336456, 0.00805802270770073, -0.03610100969672203, 0.0073175919242203236, -0.014675207436084747, 0.03135157749056816, -0.03687479346990585, -0.022132880985736847, 0.03385970741510391, -0.022506430745124817, -0.012600666843354702, -0.021826036274433136, 0.03551400080323219, 0.03081793524324894, -0.018290644511580467, 0.0002557738625910133, -0.022479750216007233, 0.0009930779924616218, -0.01431499794125557, 0.019704801961779594, -0.02953718975186348, -0.0027982951141893864, -0.020331833511590958, -0.015088781714439392, 0.013768012635409832, 0.01356122549623251, 0.00795796513557434, -0.003393641673028469, -0.0018060511210933328, -0.0086316904053092, -0.031538356095552444, -0.0009322091937065125, 0.022039493545889854, -0.026575466617941856, -0.04493281617760658, -0.005313091911375523, -0.004866165108978748, 0.02027846872806549, 0.009238709695637226, -0.01672973670065403, -0.0023547036107629538, 0.05635279789566994, -0.02336026169359684, 0.013461166992783546, -0.01688982918858528, -0.016449572518467903, -0.020145056769251823, -6.264062540140003e-05, 0.012147068977355957, 0.007204192690551281, -0.00030997206340543926, -0.01990491710603237, -0.01741013303399086, -0.011313250288367271, -0.01555571984499693, 0.013241039589047432, 0.006236962974071503, 0.0058700828813016415, 0.01356789655983448, 0.01799714006483555, 0.010225951671600342, 0.013287733308970928, -0.040877122431993484, 0.02969728410243988, -0.00019657272787299007, -0.023693788796663284, 0.021225687116384506, -0.018810948356986046, 0.011286568827927113, 0.005626607686281204, 0.0006899848813191056, 0.022132880985736847, -0.0343666672706604, -0.044132351875305176, -0.030044151470065117, -0.005406479816883802, -0.00589342974126339, -0.008344856090843678, -0.02081211283802986, -0.011553390882909298, -0.020678700879216194, 0.01168680191040039, -0.029670601710677147, 0.000752938212826848, -0.01175350695848465, 0.01555571984499693, 0.008011328987777233, -0.004532638005912304, -0.011293238960206509, 0.00020105451403651386, -0.020091693848371506, 0.026121869683265686, -0.00029871551669202745, -0.015168827958405018, 0.0003272737958468497, 0.02381385862827301, 0.021292392164468765, -0.018290644511580467, -0.019504684954881668, -0.005579913966357708, -0.021425802260637283, -0.027375932782888412, 0.011853565461933613, 0.012500608339905739, 0.014101539738476276, 0.022626500576734543, -0.024894488975405693, 0.03762189671397209, 0.02420075051486492, -0.001709328149445355, -0.03151167184114456, -0.001560074626468122, -0.021585896611213684, 0.032525595277547836, -0.017676955088973045, 0.005699983797967434, 0.009538885205984116, -0.03516713157296181, -0.013087616302073002, 0.020758748054504395, -0.0006303668487817049, 0.017530202865600586, 0.0036487902980297804, -0.011413308791816235, -0.020758748054504395, 0.0031718460377305746, 0.012720736674964428, 0.004545979201793671, -0.010159245692193508, 0.003285245271399617, -0.020398538559675217, 0.0012507279170677066, 0.01658298447728157, -0.016169410198926926, -0.02373381331562996, -0.008078034967184067, 0.0026031816378235817, 0.01236052718013525, -0.023333579301834106, -0.041490811854600906, 0.025081263855099678, -0.036581289023160934, 0.0050862934440374374, -0.008391550742089748, -0.01567578874528408, 0.03647455945611, -0.01476859487593174, -0.004696066491305828, -0.008164751343429089, 0.03111143968999386, -0.03340610861778259, 0.02780284732580185, 0.0053064217790961266, 0.024360844865441322, 0.005469849798828363, -0.017103286460042, 0.03458012640476227, -0.012547302059829235, 0.015969293192029, -0.005223039537668228, -0.0029834029264748096, -0.0359942801296711, 0.027989622205495834, -0.016916511580348015, -0.017770342528820038, 0.00023722139303572476, 0.012674042955040932, 0.01292085275053978, 0.013087616302073002, -0.03799544647336006, -0.02095886506140232, -0.0070574404671788216, 0.008658371865749359, 0.00147836038377136, 0.020305151119828224, -0.01001916453242302, -0.005830059759318829, 0.005099634639918804, -0.021212344989180565, -0.011953623034060001, 0.1762092113494873, -0.004375880118459463, 0.006283657159656286, 0.024387527257204056, 0.006310339085757732, 0.018183916807174683, 0.020838795229792595, -0.01484864205121994, -0.026482079178094864, -0.002304674591869116, -0.023346921429038048, 0.008111387491226196, -0.024841124191880226, 0.006086875684559345, 0.0028733389917761087, 0.014181586913764477, -0.028309809044003487, -0.03916946426033974, -0.024694371968507767, 0.004132404923439026, 0.0025848376099020243, 0.013140981085598469, -0.016262797638773918, -0.016302822157740593, 0.013541214168071747, -0.010065858252346516, -0.0074576735496521, 0.006830641999840736, 0.02540145069360733, -0.0020478584337979555, -0.030177563428878784, 0.004055693745613098, -0.01620943285524845, -0.02849658392369747, -0.012540631927549839, 0.003678807755932212, 0.04754767194390297, -0.0020261791069060564, 0.013114298693835735, -0.008131398819386959, 0.025228016078472137, -0.04242468997836113, -0.009685636498034, -0.008164751343429089, 0.004539308603852987, 0.018704218789935112, 0.006870665121823549, 0.0085916668176651, -0.012300492264330387, 0.03279241919517517, -0.026775583624839783, -0.01349452044814825, 0.03324601426720619, -0.000818809843622148, -0.013968128710985184, 0.017530202865600586, 0.003858912503346801, -0.0029350414406508207, 0.030657842755317688, 0.029590554535388947, 0.0016834797570481896, 0.044879451394081116, -0.011946952901780605, 0.014114880934357643, -0.00395897077396512, 0.00844491459429264, -0.04741426184773445, -0.005329768639057875, 0.013467838056385517, -0.006253639701753855, -0.0029267033096402884, -0.020905500277876854, 0.00121070456225425, 0.021879399195313454, -0.015582402236759663, -0.02676224149763584, 0.007571072783321142, -0.005399809218943119, 0.0017293398268520832, 0.026201914995908737, 0.0041824341751635075, 0.0004402562335599214, -0.02133241482079029, -0.013127639889717102, -0.021439144387841225, -0.02336026169359684, 0.016542961820960045, 0.0037788657937198877, -0.0046427021734416485, -0.023013392463326454, 0.00612356374040246, -0.026241939514875412, 0.01583588309586048, 0.006957382429391146, 0.004135740455240011, 0.032739054411649704, -0.012647360563278198, 0.028203079476952553, -0.017383450642228127, 0.005803377367556095, -0.020678700879216194, 0.024454232305288315, 0.013888082467019558, 0.00821144599467516, -0.013120969757437706, -0.0029617235995829105, 0.0028566624969244003, 0.018584148958325386, -0.00500958226621151, -0.036047644913196564, -0.010032505728304386, -0.020692043006420135, -0.005006246734410524, 0.005763354245573282, 0.0043291859328746796, -0.01921118050813675, -0.003016755683347583, -0.010626183822751045, 0.0036254432052373886, 0.012627349235117435, 0.02065201848745346, -0.013307744637131691, 0.008131398819386959, -0.008458255790174007, 0.0012582322815433145, -0.025414790958166122, -0.050829581916332245, -0.0033536183182150126, 0.014221609570086002, -0.015529037453234196, 0.04090380668640137, -0.03300587460398674, -0.024507597088813782, -0.01111980527639389, 0.00205286149866879, 0.004309174604713917, -0.026428714394569397, -0.01598263531923294, -0.030124198645353317, -0.012607336975634098, 0.006503785029053688, 0.003230213187634945, -0.025815023109316826, -0.019117793068289757, 0.047200802713632584, -0.02772280015051365, 0.007971305400133133, -0.029483824968338013, -0.0017877070931717753, -0.020678700879216194, -0.03180517628788948, 0.003358621383085847, 0.008605008013546467, -0.019464660435914993, -0.00736428564414382, -0.0429583340883255, -0.023333579301834106, -0.023773835971951485, 0.03188522160053253, -0.013941447250545025, -0.02449425496160984, -0.017823705449700356, 0.0020828789565712214, -0.016369527205824852, -0.0183973740786314, -0.019718142226338387, -0.16692380607128143, 0.016556302085518837, 0.0149553706869483, -0.022426385432481766, -0.0020728730596601963, -0.004876171238720417, 0.05125649645924568, 0.019024405628442764, -0.009652283973991871, -0.00138914177659899, 0.000853830249980092, 0.01032600924372673, -0.02637534961104393, -0.00586007721722126, -0.026028482243418694, -0.014101539738476276, -0.012654030695557594, -0.0004087795678060502, 0.02932373248040676, 0.030417703092098236, 0.018197257071733475, -0.026095187291502953, 0.03564741089940071, 0.03295250982046127, -0.006463761907070875, -0.0008680051541887224, -0.012193763628602028, -0.013954788446426392, -0.010426067747175694, -0.019704801961779594, -0.03623441979289055, 0.019491342827677727, -0.0008221451425924897, 0.0027916247490793467, 0.02170596644282341, 0.01619609259068966, 0.028283126652240753, -0.014755253680050373, 0.010799618437886238, 0.0025898406747728586, 0.026335326954722404, 0.029430462047457695, 0.009465509094297886, 0.01567578874528408, 0.013928106054663658, 0.022052833810448647, 0.017089946195483208, -0.020158398896455765, -0.009038593620061874, -0.012794112786650658, 0.021665941923856735, -0.020932182669639587, 0.000504460243973881, -0.003882259363308549, 0.013100957497954369, -0.0014933691127225757, -0.02320016920566559, -0.0006899848813191056, 0.00733093312010169, 0.0061302343383431435, 0.001839403877966106, -0.014515114016830921, -0.008998570032417774, 0.011439991183578968, -0.008885171264410019, -0.016249457374215126, -0.014608501456677914, 0.03490031138062477, -0.02772280015051365, 0.013327756896615028, -0.01770363561809063, -0.023173486813902855, 0.024080680683255196, 0.01688982918858528, -0.006884006317704916, 0.03887595981359482, -0.005139657761901617, 0.02494785189628601, -0.003908941522240639, -0.03706156834959984, -0.001313264248892665, 0.032125361263751984, -0.013120969757437706, 0.007097464054822922, 0.012787441723048687, 0.004869500640779734, -0.00036583791370503604, -0.02079877071082592, 0.0033619566820561886, -0.022399703040719032, 0.025147968903183937, -0.03724834322929382, 0.000149878891534172, -0.02373381331562996, -0.0012724071275442839, 0.019918259233236313, -0.0018694213358685374, 0.006884006317704916, 0.012067022733390331, -0.03882259503006935, 0.009985811077058315, -0.013087616302073002, -0.026468737050890923, -0.029056910425424576, 0.018130552023649216, 0.011926941573619843, -0.01566244848072529, 0.006100216880440712, 0.03415320813655853, 0.008084705099463463, -0.015609083697199821, 0.009972470812499523, -0.01194028276950121, 0.0256949532777071, -0.00291002681478858, 0.01695653423666954, -0.027082428336143494, -0.00961226038634777, 0.018971040844917297, -0.006820636335760355, 0.012333844788372517, -0.008791782893240452, 0.009685636498034, 0.0074376617558300495, -0.025147968903183937, 0.009705648757517338, -0.09568235278129578, -0.04869500547647476, 0.0007133317994885147, 0.006353697739541531, -0.0061502461321651936, 0.035540685057640076, -0.01472857128828764, 0.03340610861778259, 0.005599925760179758, 0.013314415700733662, -0.004089046269655228, -0.00617692805826664, -0.008911852724850178, 0.019091110676527023, 0.01974482461810112, 0.003158504841849208, -0.021158980205655098, -0.0010898009641095996, -0.03948964923620224, 0.0018927681958302855, 0.017983799800276756, 0.005826724227517843, 0.0012232118751853704, -0.012040340341627598, -0.015849223360419273, 0.013621260412037373, -0.01583588309586048, -0.0014033167390152812, 0.02509460411965847, -0.01172015443444252, -0.007797871716320515, 0.0010939700296148658, 0.007210863288491964, 0.002266319002956152, -0.008051352575421333, 0.030551113188266754, 0.004195775371044874, -0.0002718248579185456, 0.042638149112463, -0.005116310901939869, -0.005469849798828363, -0.00011871492461068556, 0.0014249959494918585, 0.004639366641640663, -0.016449572518467903, -0.016836464405059814, -0.010672878473997116, 0.04666715860366821, -0.018143892288208008, -0.011760177090764046, -0.01107978168874979, 0.0009121975745074451, -0.006770607084035873, -0.01065953727811575, 0.022479750216007233, -0.017970457673072815, 0.010519455187022686, 0.006660542916506529, -0.0077578481286764145, -0.01036603283137083, 0.003822224447503686, -0.006467096973210573, -0.014555137604475021, 0.027936257421970367, 0.011139816604554653, 0.004079040605574846, -0.010866324417293072, 0.012980887666344643, 0.009218698367476463, -0.035087086260318756, -0.007257557008415461, 0.026562124490737915, -0.01799714006483555, 0.019944941624999046, -0.008718407712876797, 0.01168013084679842, -3.700070010381751e-05, 0.006310339085757732, 0.016676371917128563, 0.00027516012778505683, -0.020545290783047676, -0.012327173724770546, -0.010452750138938427, -0.02668219432234764, 0.014675207436084747, 0.018704218789935112, -0.007290909998118877, -0.010859653353691101, 0.021599236875772476, -0.01575583592057228, 0.0036521253641694784, 0.016996558755636215, 0.02215956337749958, -0.012527290731668472, -0.010993064381182194, 0.03044438548386097, 0.015649108216166496, 0.0014149901689961553, 0.006437079515308142, 0.023693788796663284, -0.05056275799870491, -0.00783789437264204, -0.06110222637653351, 0.010112551972270012, -0.01679644174873829, -0.014194928109645844, 0.014154904522001743, -0.002219625050202012, 0.043065063655376434, -0.006186934188008308, 0.01854412630200386, -0.00991243589669466, -0.014595161192119122, 0.00035270527587272227, 0.010672878473997116, -0.003060114337131381, 0.0061902692541480064, -0.016076022759079933, 0.035300545394420624, -0.004756101407110691, 0.02977732941508293, 0.011900259181857109, 0.0013491185382008553, -0.014902005903422832, 0.02548149600625038, -0.005249721929430962, -0.01157340221107006, -0.017356768250465393, 0.025214673951268196, 0.009959129616618156, 0.0025214673951268196, -0.018797606229782104, 0.0013257715618237853, 0.006040181964635849, 0.01472857128828764, 0.020438561215996742, 0.022786594927310944, 0.008931864984333515, -0.004812800791114569, 0.007130816578865051, 0.02125236764550209, 0.010025834664702415, -0.004515961743891239, -0.02282661758363247, 0.023600401356816292, -0.011666789650917053, -0.02908359281718731, 0.005436497274786234, 0.0038422360084950924, 0.026495419442653656, 0.007484355941414833, -0.0013591243186965585, 0.03377965837717056, 0.017143310979008675, 0.014741912484169006, -0.019237862899899483, 0.01664968952536583, -0.04543977975845337, -0.011806871742010117, -0.025054581463336945, -0.025734977796673775, -0.013661283999681473, 0.02433416247367859, -0.0038956005591899157, 0.00523971626535058, 0.012240457348525524, 0.0077578481286764145, -0.03759521245956421, -0.02999078668653965, -0.001121486071497202, 0.0028083010111004114, -0.008224786259233952, -0.00787791796028614, -0.020478583872318268, 0.01929122768342495, -0.002951717935502529, 0.035007040947675705, -0.016903171315789223, -0.04725416749715805, -0.010706230998039246, -0.007517708465456963, 0.010279315523803234, 0.042611464858055115, -0.01210037525743246, -0.013234368525445461, -0.0010230954503640532, 0.041864365339279175, 0.016596324741840363, -0.015795860439538956, -0.004035681951791048, 0.008651701733469963, 0.0013999814400449395, -0.01635618507862091, 0.017757000401616096, 0.0047060721553862095, 0.014515114016830921, 0.01703658141195774, 0.03196527063846588, -0.007110804785043001, -0.009478850290179253, 0.004375880118459463, 0.010205939412117004, -0.0028399862349033356, 0.0010022500064224005, -0.007711154408752918, -0.016703054308891296, -0.03367292881011963, 0.004425908904522657, -0.024854464456439018, 0.012080363929271698, -0.036581289023160934, 0.031991951167583466, 0.011860235594213009, 0.004109058063477278, 0.01299422886222601, 0.01725003868341446, -0.02645539678633213, 0.0015267218695953488, 0.010712901130318642, 0.0018143892521038651, -0.028469901531934738, 0.023773835971951485, 0.008304833434522152, 0.002563158283010125, 0.007444332353770733, -0.008158081211149693, 0.023013392463326454, 0.023186827078461647, 0.0038889299612492323, -0.03295250982046127, -0.013327756896615028, -0.010746253654360771, -0.005963470786809921, -0.009512202814221382, -0.04581332951784134, -0.021425802260637283, 0.020465243607759476, -0.003383635776117444, 0.028976863250136375, -0.0003251892630942166, 0.010139234364032745, 0.08319508284330368, -0.002314680488780141, -0.008131398819386959, 0.02344030886888504, 0.0053064217790961266, 0.036367833614349365, 0.02854994870722294, -0.009892423637211323, 0.005519879050552845, -0.03097802773118019, 0.010779607109725475, -0.001585089135915041, 0.014581819996237755, -0.031618401408195496, -0.008198104798793793, 0.003285245271399617, -0.009578907862305641, 0.020625336095690727, -0.02420075051486492, 0.018490761518478394, 0.016089363023638725, -0.019397955387830734, 0.02373381331562996, -0.0235870610922575, -0.04079707711935043, -0.00011829801223939285, -0.0031668429728597403, 0.008411562070250511, 0.002049526199698448, -0.04768108204007149, 0.02110561728477478, 0.013407803140580654, -0.03807549178600311, -0.021385779604315758, -0.008378209546208382, 0.015489013865590096, -0.015248874202370644, -0.026321984827518463, 0.014368361793458462, 0.004139075521379709, -0.019197840243577957, 0.016302822157740593, -0.04015670344233513, -0.034019798040390015, -0.018971040844917297, 0.010566148906946182, -0.020225103944540024, -0.0022713218349963427, -0.03135157749056816], "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e": [-0.00781660433858633, -0.011528179049491882, -0.021456316113471985, 0.018387380987405777, -0.015751244500279427, 0.010295359417796135, -0.013456100597977638, -0.020275956019759178, -0.0007631353219039738, -0.007882179692387581, 0.016157813370227814, 0.01955462619662285, -0.03276154026389122, 0.01896444521844387, 0.007613319903612137, 0.0026017094496637583, 0.02170550264418125, 0.012636406347155571, 0.0019525116076692939, -0.0011270795948803425, -0.0029754899442195892, 0.01813819445669651, -0.01534467563033104, -0.022610444575548172, 0.0023508830927312374, -0.014413502998650074, 0.020551374182105064, -0.014334812760353088, 0.016341423615813255, -0.003973877523094416, 0.024118682369589806, -0.018544761463999748, -0.028695855289697647, -0.027804028242826462, 0.008905158378183842, -0.02516789175570011, -0.012019995599985123, -0.01645945943892002, 0.006508372258394957, 0.0004655863158404827, 0.03806004300713539, 0.000373575632693246, -0.011200301349163055, -0.01819065399467945, 0.005698514170944691, 0.034912414848804474, 0.007718240842223167, -0.05476868897676468, -0.003514848882332444, 0.005350963678210974, 0.001216426258906722, 0.0025541672948747873, -0.010905211791396141, 0.010701927356421947, -0.01534467563033104, 0.022492408752441406, 0.011600312776863575, 0.015580747276544571, 0.0035935393534600735, -0.008072348311543465, 0.02154812216758728, -0.0017000457737594843, -0.012846248224377632, 0.003990271594375372, 0.000685674196574837, 0.0188070647418499, 0.03071558102965355, 0.004901771433651447, 0.007462496403604746, -0.005475557409226894, 0.031869709491729736, 0.023856380954384804, -0.009055981412529945, 0.042151954025030136, 0.025692496448755264, -0.027751566842198372, -0.003059098729863763, -0.006482142023742199, -0.037194445729255676, -0.003057459369301796, -0.004446021281182766, -0.007698568049818277, -0.02519412152469158, 0.026649897918105125, 0.0355944000184536, 0.016262732446193695, 0.031738560646772385, 0.04301755130290985, -0.0027902391739189625, -0.03074181266129017, 0.03226316347718239, -0.0021148109808564186, 0.007364132907241583, 0.005826386623084545, -0.02741057425737381, 0.020984172821044922, -0.0056821200996637344, 0.036748532205820084, -0.01291838102042675, -0.04259786754846573, -0.010544546879827976, 0.024538366124033928, -0.007488726172596216, -0.004026337992399931, -0.02234814316034317, 0.0006459190626628697, 0.024066222831606865, 0.009928136132657528, 0.03289268910884857, -0.03215824440121651, -0.014361042529344559, 0.06840839982032776, 0.019108710810542107, -0.03572555258870125, 0.014806956052780151, -0.004711602348834276, 0.011272435076534748, 0.00244760699570179, 0.0031705773435533047, 0.009541240520775318, 0.01457088440656662, -0.01026912871748209, 0.02045956812798977, -0.038742028176784515, 0.014859416522085667, 0.01062979456037283, 0.010072402656078339, -0.02250552363693714, -0.03239431604743004, -0.020144805312156677, 0.033338602632284164, 0.01870214380323887, -0.01541025098413229, 0.0006049343501217663, 0.0012705260887742043, 0.018977560102939606, 0.013324948959052563, 0.025587575510144234, -0.013036416843533516, -0.031817249953746796, 0.005131285637617111, 0.0018049667123705149, 0.0025672821793705225, 0.008492032065987587, 0.010144535452127457, 0.023738345131278038, 0.025272812694311142, 0.016000431030988693, -0.012997071258723736, 0.0006963302148506045, -0.006455911789089441, 0.007167406380176544, -0.0030263110529631376, -0.00803300365805626, 0.0031410681549459696, -0.0015721735544502735, -0.026308905333280563, -0.003564030397683382, -0.01563320867717266, 0.012544600293040276, 0.00500013493001461, 0.018557876348495483, -0.01691848784685135, 0.004678814671933651, -0.013456100597977638, 0.03887317702174187, 0.014885647222399712, 0.023935072124004364, -0.01573812961578369, 0.00861662533134222, 0.0009393695509061217, 0.015829935669898987, -0.008013330399990082, 0.006282136309891939, 0.016879143193364143, 0.019161172211170197, 0.02320062555372715, -0.01105603575706482, -0.016105351969599724, -0.00647230539470911, -0.015265985392034054, 0.00809857901185751, 0.01382332295179367, 0.02741057425737381, -0.021994035691022873, -0.025508884340524673, -0.015790589153766632, 0.006078852340579033, 0.020892366766929626, -0.00932484120130539, 0.03087296336889267, 0.02940407022833824, -0.006321481894701719, -0.010537988506257534, -0.6043441295623779, -0.004928001668304205, 0.0023492437321692705, -0.00820349995046854, 0.02410556748509407, 0.015082373283803463, -0.011088822968304157, 0.005268994253128767, -0.024420330300927162, 0.026859739795327187, -0.010813405737280846, 0.013134780339896679, 0.02061694860458374, -0.007698568049818277, 0.017141444608569145, -0.021456316113471985, 0.018479187041521072, -0.015987316146492958, -0.033705826848745346, 0.019266093149781227, 0.00893794558942318, 0.04167981073260307, -0.0323418565094471, -0.00685920100659132, -0.008026446215808392, 0.008669085800647736, 0.017482439056038857, -0.012085571885108948, 0.008288747631013393, 0.01782343164086342, -0.013324948959052563, -0.00642640283331275, -0.008918273262679577, 0.018820179626345634, 0.052145667374134064, 0.016800452023744583, -0.013600366190075874, 0.01739063300192356, -0.023135049268603325, 0.043699536472558975, -0.015475827269256115, -0.018597222864627838, 0.022741597145795822, -0.004475530236959457, -0.00320336502045393, -0.001882017939351499, 0.003970598801970482, 0.011462603695690632, 0.007954312488436699, -0.028249941766262054, -0.015908624976873398, -0.007875622250139713, -0.005337848793715239, -0.011744578368961811, 0.01617092825472355, 0.004334542900323868, 0.016774222254753113, -0.008249402977526188, 0.011987208388745785, -0.03467634320259094, 0.0006147706881165504, 0.007160848472267389, 0.03926663100719452, 0.019593970850110054, -0.03635507822036743, 0.036984603852033615, -0.005596871953457594, -0.011567524634301662, -0.005724744405597448, -0.02756795659661293, 0.019134942442178726, 0.024367868900299072, -0.024302294477820396, -0.005373915191739798, 0.0029017175547778606, 0.017836546525359154, 0.03129264712333679, 0.005400145426392555, 0.01609223708510399, 0.021298933774232864, 0.005268994253128767, 0.0036066544707864523, -0.035069797188043594, -0.045404501259326935, 0.03934532403945923, -0.02392195537686348, 0.0034558307379484177, -0.003583703190088272, 0.020761216059327126, 0.014924992807209492, 0.011311780661344528, 0.01609223708510399, -0.013095434755086899, 0.004537827335298061, -0.03302384167909622, -0.009023194201290607, -0.00914778746664524, 0.006846086122095585, 0.0005176368867978454, -0.03960762545466423, -0.008006772957742214, -0.013469215482473373, 0.013082319870591164, -0.010905211791396141, -0.020957941189408302, 0.037010833621025085, 0.022387487813830376, -0.008564164862036705, 0.011069150641560555, -0.0308467335999012, -0.03242054581642151, -0.05865076184272766, 0.0004905869718641043, 0.009908463805913925, -0.006423124112188816, -0.021141553297638893, 0.014308582060039043, -0.003744363086298108, -0.00269351527094841, -0.02131205052137375, -0.00777725875377655, 0.010078960098326206, 0.013154452666640282, 0.006301809102296829, 0.03583047538995743, -0.009285496547818184, 0.007567416876554489, -0.0012729851296171546, 0.00910844188183546, 0.012629848904907703, -0.01976446621119976, -0.005308339837938547, 0.008741219528019428, -0.029981136322021484, 0.017469322308897972, -0.0072198668494820595, 0.038637105375528336, -0.010852751322090626, -0.007226424291729927, -0.003077132161706686, 0.006190330721437931, 0.008321535773575306, -0.004383724648505449, -0.015279100276529789, -0.02735811471939087, -0.005947701167315245, -0.014885647222399712, -0.008288747631013393, -0.047188155353069305, 0.01017732359468937, -0.022977668792009354, -0.020315300673246384, -0.028223711997270584, 0.009029751643538475, 0.005747695919126272, -0.011698676273226738, 0.019213631749153137, 0.007377247791737318, 0.010544546879827976, 0.0030509019270539284, -0.008557607419788837, 0.026203984394669533, -0.019292322918772697, 0.021023517474532127, -0.021771078929305077, -0.02937784045934677, 0.0034263217821717262, 0.015606977976858616, -0.017220135778188705, -0.043935611844062805, -0.015069258399307728, -0.019134942442178726, 0.015357790514826775, -0.0038951868191361427, -0.014269237406551838, 0.011987208388745785, -0.007357575464993715, -0.01899067498743534, -0.012262625619769096, 0.007455938495695591, -0.020066114142537117, 0.022846518084406853, 0.02503674104809761, -0.03134510666131973, 0.012098686769604683, 0.002301701344549656, 0.0204333383589983, 0.012701981700956821, -0.013377409428358078, 0.024380985647439957, 0.028145020827651024, 0.029981136322021484, -0.013561021536588669, 0.014623344875872135, 0.0006184593075886369, 0.01651192083954811, 0.011475719511508942, 0.02674170397222042, 0.00042747054249048233, 0.039974845945835114, 0.0010664222063496709, 0.011862615123391151, 0.013279045931994915, 0.001386922667734325, 0.009783870540559292, -0.003809938672930002, 0.010485528036952019, -0.009069097228348255, 0.016472574323415756, -0.0007282983278855681, 0.016656186431646347, -0.010124863125383854, -0.01681356690824032, 0.007488726172596216, 0.01963331550359726, 0.0023508830927312374, -0.005128006916493177, 0.02160058170557022, 0.015436481684446335, 0.007987100630998611, -0.005216533783823252, 0.011174071580171585, 0.017718510702252388, -0.006688704714179039, -0.016420114785432816, -0.0004676355456467718, -0.015567632392048836, 0.004164046607911587, -0.01723325066268444, -0.046952083706855774, 0.005708350334316492, -0.00685920100659132, 0.01624961756169796, 0.017377518117427826, 0.04286017268896103, 0.00031537734321318567, 0.05099153891205788, -0.015856165438890457, 0.052145667374134064, 0.011364240199327469, -0.010354377329349518, 0.04272902011871338, 0.01242656446993351, -0.022177645936608315, 0.04078798368573189, 0.006131312809884548, 0.033495984971523285, 0.005446048453450203, -0.005823107901960611, 0.013967589475214481, -0.009547797963023186, 0.0077116833999753, -0.02167927287518978, -0.004659141879528761, 0.00822972971946001, 0.012760999612510204, 0.017036525532603264, 0.005213255062699318, 0.03061066009104252, 0.01651192083954811, 0.0054329331032931805, 0.010406837798655033, 0.012610175646841526, 0.014400388114154339, 0.008157596923410892, -0.0014352846192196012, -0.017469322308897972, -0.03905678912997246, 0.015882395207881927, -0.019239863380789757, -0.0020590717904269695, -0.03651246055960655, -0.009980596601963043, 0.012701981700956821, 0.029692603275179863, 0.019357899203896523, 0.016236502677202225, 0.021731732413172722, 0.025902336463332176, -0.018977560102939606, -0.012682309374213219, -0.00805923342704773, 0.02080056071281433, 0.015606977976858616, 0.004029616713523865, 0.00577392615377903, 0.0037410843651741743, -0.016210272908210754, 0.005911634769290686, 0.019449705258011818, -0.008741219528019428, 0.022754712030291557, 0.007010024972259998, 0.004682093393057585, -0.012059341184794903, -0.031791020184755325, 0.028328632935881615, -0.015265985392034054, 0.02767287753522396, 0.007429708261042833, -0.02591545321047306, 0.020603833720088005, -0.01834803633391857, -0.0018229999113827944, 0.05670972540974617, 0.010806848295032978, -0.030243437737226486, -0.014321696944534779, 0.0031672983895987272, 0.007055927999317646, 0.003339434275403619, -0.01108226552605629, -0.0029000781942158937, -0.006465747952461243, 0.029561452567577362, -0.016747992485761642, 0.014256121590733528, -0.0037935448344796896, 0.013482330366969109, 0.010124863125383854, -0.03265661746263504, -0.010360934771597385, 0.002221371280029416, 0.01383643876761198, 0.03945024311542511, 0.040420763194561005, -0.004668978042900562, 0.013364294543862343, -0.0323418565094471, -0.01784966140985489, -0.03572555258870125, 0.017010293900966644, 0.004672257229685783, -0.00487554119899869, 0.013029859401285648, -0.01824311539530754, 0.009442877024412155, -0.019331667572259903, 0.009639604017138481, -0.0027476151008158922, -0.02885323576629162, -0.014334812760353088, 0.006478863302618265, -0.0013574135955423117, 0.0258367620408535, 0.020236611366271973, -0.00016936931933742017, 0.00942976213991642, -0.006485420744866133, 0.0068526435643434525, 0.011915075592696667, 0.006678868550807238, 0.025613805279135704, -0.026833510026335716, -0.0046656993217766285, 0.007593647111207247, 0.011560967192053795, 0.0029853263404220343, -0.0003080001042690128, 0.021128438413143158, 0.019134942442178726, 0.022767826914787292, 0.02767287753522396, 0.004911607597023249, 0.015226639807224274, 0.0177972000092268, 0.002513182582333684, -0.028249941766262054, 0.008242844603955746, 0.0075608594343066216, -0.00624606991186738, 0.0018426725873723626, -0.003718133084475994, -0.029692603275179863, 0.012203607708215714, 0.006095246411859989, -0.03887317702174187, 0.004200113005936146, 0.021666157990694046, 0.005426375661045313, -0.01530533004552126, -0.01601354591548443, 0.014085625298321247, -0.005937865003943443, 0.010951114818453789, -0.037194445729255676, 0.023003898561000824, -0.011672445572912693, 0.0048001292161643505, -0.005190304014831781, -0.002231207676231861, 0.013390524312853813, -0.03572555258870125, -0.019449705258011818, 0.011980650946497917, -0.011947862803936005, -0.013679057359695435, -0.03918794170022011, 0.019292322918772697, 0.011783923953771591, 0.010321589186787605, 0.01365282665938139, 0.024092452600598335, 0.020866135135293007, 0.00816415436565876, -0.052512891590595245, -0.014229891821742058, -0.009174018166959286, -0.003190249903127551, 0.012793787755072117, -0.015961086377501488, 0.0016484051011502743, -0.013744632713496685, 0.003213201416656375, -0.015580747276544571, 0.015620092861354351, -0.012505254708230495, -0.015174179337918758, 0.007246097084134817, 0.021246474236249924, -0.00626574270427227, 0.013259373605251312, 0.009088769555091858, -0.0015459433197975159, -0.019436588510870934, -0.011606870219111443, -0.016341423615813255, -0.006721492391079664, -0.02322685532271862, -0.009705179370939732, 0.0020361205097287893, -0.006118197459727526, -0.009849445894360542, -0.002831223886460066, 0.042125724256038666, -0.01457088440656662, 0.007154291030019522, -0.007160848472267389, 0.004098471254110336, 0.00048157034325413406, -0.00424273731186986, 0.03614523634314537, -0.00914778746664524, -0.02397441677749157, 0.004698487464338541, -0.008367438800632954, 0.01371840201318264, 0.0005041119293309748, -0.020446453243494034, 0.024564595893025398, -0.020393991842865944, -0.02725319378077984, 0.01069536991417408, 0.000373575632693246, 0.009672392159700394, 0.008583838120102882, 0.03596162423491478, -0.02940407022833824, -0.04527335241436958, 0.01986938714981079, -0.0035541942343115807, 0.008465802296996117, -0.005078825168311596, 0.007088715676218271, 0.0015811901539564133, 0.003237792057916522, -0.0006840348360128701, -0.014911876991391182, -0.0016885701334103942, -0.02756795659661293, -0.0068526435643434525, -0.0008065791334956884, 0.0016885701334103942, 0.015764359384775162, 0.0058001563884317875, -0.000634033465757966, -0.0018852966604754329, 0.016315193846821785, -0.021456316113471985, -0.045876644551754, 0.0036066544707864523, 0.018413610756397247, 0.022610444575548172, 0.02554822899401188, 0.009849445894360542, 0.002434491878375411, 0.025233466178178787, 0.005268994253128767, -0.016315193846821785, 0.017115214839577675, 0.0013828241499140859, -0.005875568371266127, -0.034912414848804474, -0.007803488988429308, -0.0025344945024698973, -0.013469215482473373, 0.007383805699646473, 0.009560913778841496, 0.011167514137923717, 0.006531323306262493, -0.022282566875219345, 0.009692064486443996, -0.007364132907241583, -0.0005274732247926295, -0.012111801654100418, 0.008426456712186337, -0.020171035081148148, 0.014833186753094196, -0.00033382046967744827, -0.01369217224419117, 0.027122043073177338, -0.001724636647850275, 0.0021590746473520994, 0.000391403998946771, -0.002886963076889515, -0.02895815670490265, 0.009272380731999874, -0.004527990706264973, 0.02133828029036522, -0.008996963500976562, 0.0010229783365502954, -0.031607408076524734, -0.017508668825030327, -0.017679164186120033, -0.0070428126491606236, 0.03457142412662506, 0.003914859611541033, -0.009836331009864807, -0.03826988488435745, 0.00035390298580750823, 0.007783816196024418, 0.0026328577660024166, 0.026964660733938217, -0.007134618703275919, -0.016629956662654877, -0.022308798506855965, -0.009226477704942226, -0.021994035691022873, 0.007069042883813381, 0.004019780550152063, -0.0034361581783741713, 0.01611846685409546, -0.0273318849503994, -0.042073264718055725, 0.021298933774232864, -0.014439733698964119, 0.05156860128045082, 0.016852913424372673, 0.009010079316794872, 0.040683064609766006, 0.004390282090753317, -0.006091967225074768, 0.0023394073359668255, 0.014387273229658604, -0.012616733089089394, -0.005036201328039169, 0.012564272619783878, 0.012413449585437775, -0.009810100309550762, -0.009849445894360542, 0.02030218578875065, -0.0431487038731575, -0.015239754691720009, -0.009783870540559292, 0.008669085800647736, 0.023607194423675537, -0.026085948571562767, 0.001544303959235549, -0.03764035925269127, 0.006544438656419516, -0.013423312455415726, 0.012623290531337261, -0.024276064708828926, -0.037037063390016556, -0.028145020827651024, 0.0024885917082428932, 0.006547717377543449, 0.020997287705540657, -0.012629848904907703, 0.010623237118124962, 0.0045509422197937965, 0.000490996812004596, -0.016669301316142082, 0.010170766152441502, 0.021744849160313606, 0.025259697809815407, -0.03310253098607063, 0.0021967804059386253, 0.023803919553756714, -0.015725014731287956, -0.01375774759799242, -0.015200410038232803, 0.007632992696017027, 0.033600904047489166, -0.0040951925329864025, -0.010747830383479595, -0.03648623079061508, 0.0009401892893947661, -0.0071411761455237865, 0.01552828773856163, -0.008314978331327438, -0.005741138476878405, -0.011521621607244015, -0.001116423518396914, 0.024918703362345695, 0.01450530905276537, 0.006531323306262493, 0.016131581738591194, -0.009796985425055027, 0.018020158633589745, -0.012695424258708954, -0.019620200619101524, 0.019489049911499023, -0.026912201195955276, -0.0376141294836998, 0.011134725995361805, -0.00861662533134222, 0.003711575409397483, -0.007567416876554489, -0.005577199626713991, 0.008787121623754501, 0.03396812826395035, -0.024341639131307602, 0.02074809931218624, -0.008983848616480827, -0.013029859401285648, -0.00647230539470911, -0.015134833753108978, 0.008957618847489357, -0.0020164477173238993, 0.015213524922728539, -0.02885323576629162, -0.012413449585437775, -0.016000431030988693, 0.0019295602105557919, 0.004226343240588903, -0.002152516972273588, 0.008183826692402363, 0.02725319378077984, 0.028354862704873085, 0.024039991199970245, -0.0004434545699041337, -0.03079427219927311, -0.0009606816456653178, 0.0029000781942158937, -0.03139756619930267, 0.011849499307572842, -0.015947971493005753, 0.01834803633391857, 0.0028328632470220327, 0.016157813370227814, 0.033522214740514755, -0.030007366091012955, -0.03441404178738594, -0.0029164720326662064, 0.028800776228308678, -0.01656438037753105, 0.0005143581074662507, -0.03569932281970978, -0.012885592877864838, -0.016656186431646347, 0.0290893092751503, -0.0290893092751503, -0.01624961756169796, 0.020734984427690506, 0.03745674714446068, 0.012859363108873367, 0.013534790836274624, -0.01632830873131752, -0.02157435193657875, -0.026912201195955276, 0.02330554649233818, -0.011816712096333504, -0.040420763194561005, 0.002501706825569272, 0.030217207968235016, 0.035279639065265656, -0.01917428709566593, -0.022335028275847435, -0.007311672437936068, -0.04097159579396248, -0.026964660733938217, -0.0074690538458526134, 0.007836276665329933, 0.020734984427690506, 0.02743680402636528, -0.015856165438890457, 0.03619769588112831, -0.020144805312156677, 0.02490558847784996, -0.04283394291996956, -0.008754334412515163, -0.005278830882161856, 0.031659871339797974, -0.005052595399320126, 0.008570722304284573, 0.004600123967975378, -0.02777779847383499, -0.0068526435643434525, -0.015121718868613243, 0.007239539176225662, 0.028276171535253525, -0.028407322242856026, 0.006249348632991314, -0.01382332295179367, -0.008373996242880821, -0.0029574567452073097, 0.007567416876554489, -0.014872532337903976, -0.011049478314816952, -0.0055673629976809025, -0.0024721978697925806, 0.0033017282839864492, -0.02464328706264496, -0.02351538836956024, 0.004383724648505449, -0.01790212094783783, 0.027987640351057053, 0.008419899269938469, -0.0156856682151556, 0.00781660433858633, -0.0264531709253788, 0.01470203511416912, -0.00981665775179863, -0.02051202766597271, 0.018400495871901512, -0.007855948992073536, -0.0010024859802797437, -0.013469215482473373, 0.0007196915103122592, -0.028066329658031464, 0.012964284047484398, 0.010905211791396141, 0.007600205019116402, 0.021771078929305077, -0.014138085767626762, 0.020656295120716095, -0.018177539110183716, 0.011324895545840263, -0.017692280933260918, 0.003316482761874795, -0.018020158633589745, 0.034361582249403, -0.008105136454105377, -0.02221699245274067, -0.01193474791944027, 0.01994807831943035, 0.001972184283658862, 0.02413179725408554, -0.05133252963423729, -0.027148272842168808, -0.01171834859997034, 0.0010951114818453789, -0.008944503031671047, 0.025561343878507614, 0.0011311779962852597, -0.0208267904818058, 0.019803812727332115, -0.02927291952073574, -0.005383751820772886, 0.18591976165771484, -0.030427049845457077, 0.007377247791737318, -0.00679362565279007, 0.014111855998635292, 0.04742422699928284, 0.019134942442178726, 0.01259706076234579, -0.006278857588768005, -0.017429977655410767, -0.019318552687764168, 0.025220351293683052, -0.022820286452770233, 0.0033541887532919645, -0.0006438698037527502, 0.0021033354569226503, -0.0027558119036257267, -0.03265661746263504, -0.002086941385641694, 0.012636406347155571, -0.01707587018609047, -0.0060690161772072315, -0.004724717698991299, -0.010636352002620697, 0.01811196282505989, -0.012328200973570347, -0.008839582093060017, -0.0008250222308561206, 0.011318338103592396, -0.014583999291062355, -0.02929914928972721, 0.019134942442178726, -0.024433445185422897, -0.02650563232600689, -0.002950899302959442, -0.0017967696767300367, 0.020984172821044922, 0.01645945943892002, -0.0005258338642306626, -0.021115323528647423, 0.026912201195955276, -0.036932144314050674, -0.008531377650797367, -0.0017885727575048804, -0.014033164829015732, 0.020157920196652412, 0.008996963500976562, -0.017508668825030327, -0.005662447772920132, 0.043463464826345444, -0.03134510666131973, -0.009436319582164288, 0.01624961756169796, 0.002804993651807308, -0.0002700892509892583, 0.014216776937246323, 0.0014475799398496747, -0.0017525062430649996, 0.03816496208310127, 0.01197409350425005, -0.01320035569369793, 0.04251917824149132, 0.011692117899656296, 0.0034000915475189686, -0.01446596346795559, 0.007764143869280815, -0.025823647156357765, 0.012859363108873367, 0.010885539464652538, -0.007495284080505371, 0.006819855887442827, -0.01947593502700329, -0.0063345967791974545, 0.021430086344480515, -0.02482689917087555, -0.03068935126066208, 0.03402058780193329, 0.013482330366969109, -0.00575425336137414, 0.012406892143189907, 0.0036066544707864523, 0.0009811739437282085, -0.011344567872583866, -0.006337875500321388, -0.04270279034972191, -0.01341019757091999, 0.012905266135931015, 0.008642856031656265, -0.011213417164981365, -0.022925207391381264, -0.012977398931980133, -0.012334758415818214, 0.001369709032587707, 0.010557661764323711, -0.014164316467940807, 0.0171807911247015, -0.010616679675877094, 0.00975108239799738, -0.029666373506188393, -0.013482330366969109, -0.013134780339896679, 0.020971056073904037, 0.003767314599826932, 0.031686101108789444, -0.026217099279165268, 0.02160058170557022, 0.00665263831615448, 0.004059125669300556, 0.010472413152456284, -0.012072456069290638, -0.0034197643399238586, -0.024525251239538193, -0.005511623807251453, -0.0008672364638186991, 0.0005151777877472341, -0.02325308509171009, -0.012682309374213219, -0.005354242864996195, -0.013416755013167858, -0.00017203332390636206, 0.01787589117884636, -0.018256230279803276, -0.0005065710283815861, 0.01080029085278511, 0.015869280323386192, -0.014583999291062355, -0.0416535809636116, -0.006485420744866133, 0.012439679354429245, 0.004813244566321373, 0.013456100597977638, -0.04456513375043869, 0.0033673038706183434, 0.005606708582490683, 0.0023836707696318626, 0.0008483835263177752, -0.029613912105560303, -0.0027902391739189625, -0.022610444575548172, -0.017941467463970184, 0.024354754015803337, 0.010229784063994884, -0.028276171535253525, -0.004849310964345932, 0.05434900522232056, 0.006036228034645319, 0.014938107691705227, -0.014898762106895447, -0.011541294865310192, -0.009285496547818184, -0.045220889151096344, 0.012052783742547035, 0.011141283437609673, -0.022807171568274498, 0.0029246690683066845, -0.052539121359586716, -0.024144912138581276, -0.021561237052083015, 0.013095434755086899, -0.008669085800647736, -0.038768257945775986, 0.012197050265967846, -0.0026410548016428947, -0.026964660733938217, -0.01800704188644886, -0.011233089491724968, -0.16252240538597107, 0.001081996364519, 0.015947971493005753, -0.02769910730421543, 0.016210272908210754, 0.02397441677749157, 0.04498481750488281, 0.00021906328038312495, 0.006705098785459995, 0.007528071757405996, 0.009219920262694359, 0.017587359994649887, -0.03669607266783714, 0.015606977976858616, -0.0055312965996563435, -0.00032213982194662094, -0.007410035934299231, 0.009377301670610905, 0.023738345131278038, 0.012905266135931015, 0.015397136099636555, -0.03430912271142006, 0.024276064708828926, 0.03139756619930267, 0.0005791139556095004, 0.007029697764664888, -0.017049640417099, -0.030217207968235016, -0.0026787607930600643, -0.010741272941231728, -0.0258367620408535, 0.017915237694978714, -0.01362659689038992, -0.012334758415818214, 0.028197480365633965, -0.004141095094382763, 0.02038087695837021, -0.03766658902168274, -0.007698568049818277, 0.02604660391807556, 0.018072618171572685, 0.03606654703617096, 0.015764359384775162, 0.01609223708510399, -0.003008277853950858, 0.00859039556235075, 0.016131581738591194, 0.004475530236959457, 0.0005455064820125699, -0.023135049268603325, 0.01116095669567585, -0.025299042463302612, -0.013849553652107716, -0.0034328794572502375, 0.02400064654648304, -0.0104133952409029, -0.020171035081148148, 0.028669625520706177, 0.005491951480507851, -0.006036228034645319, 0.014177431352436543, -0.026833510026335716, -0.01624961756169796, 0.016052892431616783, 0.009095326997339725, -0.010052730329334736, -0.0177972000092268, 0.023738345131278038, -0.035410791635513306, 0.008826467208564281, -0.022977668792009354, 0.009849445894360542, 0.04312247410416603, -0.013154452666640282, 0.004255852196365595, 0.018570993095636368, 0.0009557634475640953, 0.007869064807891846, -0.004413233604282141, -0.04632255807518959, 0.004219785798341036, 0.014885647222399712, 0.0008041200344450772, 0.0036722300574183464, -0.002954178024083376, 0.007803488988429308, -0.01450530905276537, -0.012328200973570347, -0.008570722304284573, -0.020105460658669472, 0.017967697232961655, -0.02472197823226452, -0.014269237406551838, -0.025456422939896584, 0.007495284080505371, 0.03441404178738594, 0.010164208710193634, -0.020341532304883003, 0.013941359706223011, -0.025325272232294083, 0.0034558307379484177, -0.011803597211837769, -0.011128168553113937, 0.011423259042203426, 0.030217207968235016, 0.016734877601265907, -0.01808573305606842, 0.020367762073874474, 0.01632830873131752, 0.01206589862704277, -0.010419952683150768, 0.031869709491729736, 0.01541025098413229, 0.04406676068902016, -0.00585917429998517, 0.01635453850030899, -0.043804459273815155, -0.016184043139219284, 0.01365282665938139, -0.0018049667123705149, 0.001031995052471757, 0.0029722112230956554, -0.01189540233463049, 0.01805950328707695, 0.01739063300192356, 0.00775758596137166, -0.10182569175958633, -0.061011478304862976, 0.009501894935965538, 0.010111748240888119, -0.012380661442875862, 0.006046064663678408, -0.01725948229432106, 0.028538474813103676, -0.018715258687734604, 0.020813675597310066, -0.0008713349816389382, 0.0003707067226059735, 0.0010401919716969132, -0.011698676273226738, -0.0006356728845275939, 0.018951330333948135, -0.003721411805599928, 0.015921739861369133, -0.02418425865471363, 0.0012918381253257394, -0.0044591366313397884, -0.010616679675877094, -0.0036000970285385847, -0.007593647111207247, -0.01653815060853958, 0.011101938784122467, -0.01958085596561432, -0.004291919060051441, 0.009174018166959286, -0.0073051149956882, -0.017784085124731064, -0.0021803865674883127, 0.024118682369589806, -0.010196995921432972, 0.005846058949828148, 0.03724690526723862, -0.028774546459317207, -0.01997430808842182, 0.026190869510173798, 0.0036263272631913424, -0.016984064131975174, -0.011593755334615707, -0.011003575287759304, 0.0046656993217766285, 0.02916799858212471, -0.015869280323386192, -0.016590610146522522, 0.007449381053447723, 0.0008664167835377157, -0.007449381053447723, -0.016367653384804726, -0.01614469662308693, -0.023646539077162743, -0.009875675663352013, 0.04448644444346428, -0.004068962298333645, 0.004865705035626888, 0.0146102299913764, 0.011475719511508942, 0.003452552016824484, -0.004108307417482138, -0.00035636205575428903, 0.004105028696358204, 0.02735811471939087, 0.017941467463970184, 0.010131420567631721, -0.005659169051796198, 0.018256230279803276, 0.029954904690384865, -0.02240060269832611, -0.01446596346795559, -0.00043074932182207704, -0.0018328363075852394, 0.012151147238910198, -0.0012770836474373937, 0.0010926524410024285, 0.0012500337325036526, 0.0004139455850236118, 0.024708863347768784, -0.015397136099636555, -0.014990568161010742, -0.02175796404480934, -0.001544303959235549, -0.011698676273226738, -0.0077903736382722855, 0.012295412831008434, -0.0011688839877024293, -0.0073051149956882, 0.00681329844519496, -0.00953468307852745, 0.00494111655279994, 0.004675535950809717, 0.012406892143189907, -0.018400495871901512, -0.02139073982834816, 0.0008975651580840349, 3.49906986230053e-05, -0.008655970916152, 0.011698676273226738, 0.001859066542237997, -0.03895187005400658, -0.02213830128312111, -0.05099153891205788, 0.03625015541911125, -0.0022476015146821737, -0.037010833621025085, 0.02945653162896633, 0.0004569795273710042, 0.02751549519598484, -0.0007791193784214556, 0.050598084926605225, 0.002291864948347211, -0.020079229027032852, 0.003950926009565592, -0.011069150641560555, 0.007003467530012131, 0.009213362820446491, -0.0006319842650555074, 0.006547717377543449, -0.012183934450149536, 0.021141553297638893, -0.004373888485133648, -0.00735101755708456, 0.0038755142595618963, 0.010137978009879589, -0.018321804702281952, -0.02658432349562645, 0.0012590503320097923, -0.03438781201839447, 0.028722085058689117, -0.0023295709397643805, -0.006885431241244078, -0.00950845330953598, -0.00901663675904274, -0.010419952683150768, 0.025299042463302612, 0.010997017845511436, -0.01912182755768299, -0.0007307573687285185, 0.013534790836274624, 0.011593755334615707, 0.024761322885751724, -0.022098956629633904, -0.017862776294350624, 0.004950953181833029, -0.024630172178149223, -0.012583945877850056, -0.01681356690824032, 0.0010688812471926212, 0.029823753982782364, 0.006272300146520138, -0.00552801787853241, 0.033286143094301224, 0.007160848472267389, -0.002167271450161934, -0.01059044897556305, 0.008373996242880821, -0.048735737800598145, 0.029928674921393394, -0.030269667506217957, -0.00891171582043171, -0.01749555394053459, 0.030374588444828987, -0.01648568920791149, 0.016052892431616783, -0.0007016582530923188, -0.0025082642678171396, -0.03221070393919945, -0.027095811441540718, 0.005268994253128767, 0.0018115242710337043, -0.008518262766301632, -0.0263220202177763, 0.008301863446831703, 0.014006935060024261, 0.00900352094322443, 0.021994035691022873, -0.004891935270279646, -0.041889652609825134, 0.005236206576228142, -0.017482439056038857, 0.03430912271142006, 0.035096026957035065, 0.027043351903557777, -0.018046388402581215, -0.009731410071253777, 0.05875568091869354, 0.026912201195955276, -0.012072456069290638, -0.013547905720770359, 0.00640673004090786, -0.00538703054189682, 0.0033509100321680307, -0.000619688828010112, -0.024459674954414368, 0.001054946449585259, 0.015987316146492958, 0.010256013832986355, 0.00949533749371767, -0.015147949568927288, 0.012098686769604683, 0.018741488456726074, 0.035174719989299774, -0.01710209995508194, -0.0018459514249116182, -0.01038716547191143, -0.014413502998650074, -0.0028558147605508566, -0.018846409395337105, -0.027226964011788368, -0.03399435803294182, 0.001791851595044136, -0.00575425336137414, 0.008170711807906628, -0.005465721245855093, -0.001020519295707345, -0.03095165453851223, 0.009154344908893108, 0.00028258957900106907, -0.013639711774885654, -0.03821742162108421, 0.031633637845516205, 0.004078798461705446, -0.0020787445828318596, 0.02229568362236023, -0.002752533182501793, 0.014872532337903976, 0.028249941766262054, 0.02139073982834816, -0.04826359450817108, 0.01872837357223034, -0.016669301316142082, -0.019436588510870934, 0.02549576945602894, -0.03459765389561653, -0.011869172565639019, 0.018505416810512543, 0.0043607731349766254, 0.004200113005936146, -0.004072241019457579, 0.01382332295179367, 0.05508344992995262, -0.007331345230340958, -0.00330664636567235, 0.027908949181437492, 0.005783762317150831, 0.0338369756937027, 0.010446183383464813, 0.0102822445333004, -0.006082131061702967, -0.02581053227186203, 0.015895510092377663, 0.0038164963480085135, 0.02059071883559227, -0.03276154026389122, 0.0003782888816203922, 0.012019995599985123, -0.008347765542566776, 0.006232955027371645, -0.031423795968294144, -0.00726576941087842, 0.033443525433540344, 0.0032082831021398306, 0.001595944631844759, -0.00691821938380599, -0.05382440239191055, -0.01291838102042675, -0.0006946908542886376, 0.0007479710038751364, -0.010124863125383854, -0.0611688606441021, 0.0026656456757336855, 0.000508210388943553, -0.03737805783748627, -0.015134833753108978, -0.005505066365003586, 0.004750947467982769, -0.023751460015773773, -0.0016836519353091717, 0.03992238640785217, 0.01739063300192356, -0.017377518117427826, -0.0010131420567631721, -0.03499110788106918, -0.037089522927999496, -0.02405310794711113, -0.0016664383001625538, -0.016629956662654877, -0.004787014331668615, -0.03252546489238739], "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f": [0.00951967854052782, 0.023329008370637894, -0.017609473317861557, -0.0267169326543808, -0.002846886171028018, -0.0059868344105780125, -0.005165616981685162, -0.012501823715865612, -0.017660999670624733, -0.020546531304717064, -0.006031920667737722, 0.02396021969616413, -0.01727454550564289, 0.019181057810783386, 0.005500544793903828, 0.022130997851490974, 0.013422875665128231, -0.004312195349484682, 0.016913853585720062, 0.003494198666885495, 0.042561594396829605, 0.02170589752495289, -0.007297561503946781, -0.018704429268836975, -0.019322756677865982, 0.03524471074342728, -0.006704996805638075, -0.007271797861903906, 0.006621264852583408, 0.0024990765377879143, 0.005903102457523346, -0.00173421751242131, -0.042741939425468445, -0.012076723389327526, -0.005771063733845949, 0.007960976101458073, -0.0053878286853432655, 0.02384428307414055, 0.009113900363445282, -0.01679791696369648, 0.03295174241065979, 0.010827184654772282, -0.006872460711747408, 0.025454511865973473, -0.00844404473900795, 0.02180895209312439, 0.016501635313034058, -0.025879614055156708, -0.021667251363396645, 0.017055554315447807, 0.029499409720301628, 0.029499409720301628, 0.0074585843831300735, -0.016385698691010475, -0.013081506825983524, -0.016462989151477814, 0.004611697979271412, 0.01854984648525715, -0.006640587467700243, 0.00303850369527936, -0.0044506751000881195, -0.008083353750407696, -0.047302111983299255, -0.00845048576593399, -0.034652143716812134, 0.019258348271250725, 0.015664314851164818, 0.005336301401257515, -0.02180895209312439, 0.0034265690483152866, 0.014878523536026478, 0.009448828175663948, -0.004366943147033453, -0.004837130196392536, 0.04549865424633026, -0.001033767475746572, -0.023457827046513557, 0.011587213724851608, -0.008482690900564194, -0.0139639126136899, 0.008682359009981155, 0.009088137187063694, -0.027180679142475128, 0.008830499835312366, 0.02841733582317829, 0.015187687240540981, -0.002077196491882205, 0.02795358933508396, 0.01715860888361931, -0.03006621077656746, 0.022968318313360214, -0.014659532345831394, 0.02189912460744381, 0.038104478269815445, -0.0035199623089283705, 0.013590339571237564, -0.0026762019842863083, 0.017029790207743645, 0.01938716694712639, -0.03205001354217529, -0.0056197019293904305, 0.0188590120524168, 0.00941662397235632, -0.014904286712408066, -0.022349989041686058, -0.004608477465808392, 0.007200947497040033, -0.034961309283971786, 0.01959327608346939, -0.010653280653059483, -0.03166355937719345, 0.018704429268836975, 0.006363627966493368, -0.021667251363396645, 0.011393985711038113, -0.024372437968850136, 0.01290760189294815, 0.01058243028819561, -0.01178688183426857, -0.018601374700665474, 0.003706749062985182, -0.010910917073488235, 0.04225242882966995, 0.01753218285739422, 0.022246934473514557, -0.007922330871224403, -0.01169026829302311, -0.0083925174549222, -0.03413687273859978, 0.000276355684036389, 0.04735363647341728, 0.020495004951953888, 0.0019371064845472574, 0.0001364669733447954, -0.0009339333046227694, 0.008901350200176239, -0.016656216233968735, 0.009152546525001526, -0.03756343945860863, -0.012740137986838818, 0.026304714381694794, 0.016540279611945152, 0.0019354962278157473, -0.005642245057970285, -0.0022317785769701004, 0.021113332360982895, 0.011574331670999527, 0.014363249763846397, 0.00424778601154685, -0.008160644210875034, -0.000541037181392312, 0.019606158137321472, 0.033827707171440125, -0.0036133555695414543, 0.02162860706448555, 0.005948188714683056, 0.013628984801471233, -0.005899881944060326, 0.011239403858780861, 0.025660621002316475, -0.0026681507006287575, 0.012076723389327526, 0.020482122898101807, -0.0015546769136562943, -0.02135808765888214, 0.01570296101272106, 0.018691547214984894, -0.02358664572238922, -0.013023538514971733, 0.01726166345179081, 0.002202794421464205, 0.00794165302067995, -0.009487474337220192, 0.036816295236349106, 0.031251341104507446, 0.015161924064159393, 0.008753209374845028, -0.026613878086209297, -0.02245304360985756, 0.011503481306135654, -0.022234052419662476, -0.0061317551881074905, -0.005600379314273596, 0.04379824921488762, -0.04122188314795494, -0.01048581674695015, 0.019696330651640892, 0.0047147530131042, -0.0003290907188784331, -0.0003689439035952091, -0.0091010183095932, 0.006808051373809576, -0.0019612598698586226, -0.007097892928868532, -0.6179160475730896, -0.0023831401485949755, 0.0006465072510764003, -0.01661757193505764, 0.0014983188593760133, -0.0008977031102403998, 0.03478096425533295, 0.014298840425908566, -0.029344826936721802, 0.02394733764231205, 0.008882027119398117, 0.01892342045903206, -0.021770305931568146, -0.0019612598698586226, -0.005593938287347555, -0.03413687273859978, 0.01706843636929989, -0.014917168766260147, -0.0505225695669651, -0.0069239879958331585, 0.0022237272933125496, 0.010518020950257778, -0.011625858955085278, 0.029757047072052956, 0.012727255932986736, 0.011155672371387482, 0.0009105849312618375, -0.011509922333061695, 0.021757425740361214, 0.0032591051422059536, -0.01754506304860115, -0.016012124717235565, 0.0029789251275360584, 0.009171868674457073, 0.04374672472476959, -0.020726878196001053, -0.013680512085556984, 0.005004594102501869, 0.019193939864635468, 0.020263131707906723, -0.02347070910036564, 0.0032349517568945885, 0.02653658762574196, 0.0033750415313988924, 0.018601374700665474, 0.0017197254346683621, -0.015097514726221561, 0.03534776344895363, -0.0003339214017614722, -0.011548568494617939, -0.015149042010307312, 0.0017326072556897998, 6.752901390427724e-05, 0.010518020950257778, 0.011387544684112072, -0.0010434288997203112, 0.015471087768673897, 0.0006114847492426634, -0.023161545395851135, -0.020842814818024635, -0.030864885076880455, 0.004698650445789099, 0.015561260282993317, -0.008753209374845028, 0.013229647651314735, 0.015844661742448807, -0.009989866055548191, -0.00017008051509037614, 0.019464457407593727, -0.002648828085511923, -0.011999431997537613, 0.004383045714348555, -0.005394269712269306, -0.015934834256768227, 0.01893630251288414, 0.0256090946495533, 0.029447881504893303, -0.02746407873928547, 0.015896188095211983, 0.008154204115271568, 0.024642957374453545, -0.024939239025115967, -0.023187309503555298, -0.007593843620270491, 0.003397584892809391, -0.010472934693098068, 0.00510764867067337, 0.01625688001513481, 0.013004215434193611, 0.0020401610527187586, -0.013023538514971733, 0.021203506737947464, 0.010447170585393906, 0.004898319020867348, 0.0018421028507873416, 0.01744200848042965, -0.00643125781789422, -0.03434298187494278, -0.007465025410056114, -0.02607284113764763, 0.005806488450616598, -0.034471798688173294, -0.0028678192757070065, -0.004183377139270306, -0.0057871658354997635, 0.03310632333159447, 0.00013062989455647767, 0.04202055558562279, 0.015728725120425224, -0.022903908044099808, -0.03217883035540581, -0.02347070910036564, -0.004241345450282097, 0.015393796376883984, 0.0014033152256160975, -0.019052239134907722, 0.017583709210157394, 0.015715843066573143, 0.01845967397093773, -0.011851291172206402, -0.0012422922300174832, 0.02062382362782955, -0.0019306655740365386, -0.004688989371061325, 0.03194696083664894, 0.011471277102828026, -0.011265167966485023, -0.002618233673274517, -0.03928960859775543, -0.024475492537021637, 0.010659720748662949, -0.015432442538440228, 0.014170021750032902, -0.015818897634744644, 0.027257969602942467, 0.014273077249526978, 0.008147763088345528, -0.003484537359327078, -0.006627705879509449, 0.0011344068916514516, -0.009815961122512817, 0.0021448261104524136, 0.0017873550532385707, 0.002594080287963152, 0.005967511795461178, -0.003048165002837777, 0.01679791696369648, 0.0012978451559320092, -0.003935401793569326, -0.005233246833086014, -0.005458679050207138, 0.004643902648240328, -0.022891025990247726, 0.009120341390371323, 0.0018743075197562575, -0.025583330541849136, 0.01286251563578844, -0.002560265362262726, -0.001408951124176383, -0.02563485875725746, 0.029473645612597466, 0.03395652398467064, -0.04743092879652977, 0.007645370904356241, -0.0061993845738470554, 0.006659910548478365, -0.02960246428847313, 0.009210514836013317, -0.041531044989824295, -0.02674269676208496, -0.006775847170501947, -0.00031822166056372225, -0.009719346649944782, -0.010241061449050903, 0.020533651113510132, 0.030761830508708954, -0.017699645832180977, 0.0209716334939003, -0.021577078849077225, -0.02098451554775238, 0.0013598391087725759, -0.007200947497040033, -0.04372096061706543, -0.01893630251288414, 0.018871892243623734, 0.0029708740767091513, 0.025132466107606888, -0.011709591373801231, -0.028700735419988632, -0.004032015334814787, 0.0050078146159648895, 0.00956476479768753, -0.004656784702092409, -0.0034072462003678083, -0.005226805806159973, 0.02580232173204422, 0.011110585182905197, 0.018498320132493973, 0.016295526176691055, 0.03501283749938011, 0.02396021969616413, 0.018691547214984894, 0.008379635401070118, -0.010962444357573986, 0.014157140627503395, -0.012031637132167816, 0.027232205495238304, -0.005729197524487972, 0.014170021750032902, 0.023444944992661476, -0.01183840911835432, -0.029190246015787125, -0.034111108630895615, -0.010556666180491447, 0.04225242882966995, 0.0038548901211470366, -0.01652739942073822, 0.02738678827881813, 0.01442765910178423, -0.00848913099616766, -0.008849822916090488, 0.019812267273664474, 0.004837130196392536, 0.015110396780073643, -0.0022140659857541323, -0.001940326881594956, -0.00021516696142498404, 0.0019274450605735183, -0.0023976322263479233, -0.04807502031326294, -0.013680512085556984, -0.017751174047589302, 0.004569832235574722, -0.007954535074532032, 0.028726499527692795, 0.012920483946800232, 0.034755200147628784, 0.008379635401070118, 0.027979353442788124, -0.03199848532676697, -0.0006352356285788119, -0.005114089697599411, 0.025364339351654053, -0.025583330541849136, 0.004895098507404327, -0.00997698400169611, 0.002569926669821143, 0.03591456636786461, -0.003990149591118097, 0.025274166837334633, 0.021770305931568146, 0.008340990170836449, -0.02728373371064663, -7.588208245579153e-05, -0.0019515985623002052, -0.009622733108699322, 0.01549685187637806, 0.01902647502720356, -0.005912763997912407, 0.013551694341003895, 0.002547383541241288, 0.040242861956357956, -0.00836031325161457, -0.0009315179195255041, 0.026794223114848137, 0.00308520020917058, -0.009584087878465652, -0.049981534481048584, -0.02321307174861431, -0.01021529734134674, -0.03452332690358162, -0.043772485107183456, -0.017751174047589302, 0.016849445179104805, -0.004940184764564037, 0.0015361591940745711, -0.0033782620448619127, 0.02098451554775238, 0.008579304441809654, -0.009848165325820446, -0.02320019155740738, 0.0005309732514433563, 0.0179959274828434, 0.028236988931894302, 0.019709212705492973, -0.031612031161785126, 0.004631021060049534, 0.008373195305466652, 0.0020466020796447992, 0.03534776344895363, -0.011432631872594357, 0.013577457517385483, 0.014389012940227985, 0.0033363960683345795, -0.0034233485348522663, 0.001123135327361524, -0.005529528949409723, -0.0025989108253270388, -0.006337864324450493, 0.04016557335853577, -0.029344826936721802, -0.0070334835909307, -0.002602131338790059, 0.009068814106285572, 0.039212316274642944, 0.0046406821347773075, 0.017673881724476814, -0.0006110821850597858, 0.013628984801471233, -0.014118494465947151, 0.03825905919075012, -0.010034952312707901, -0.01884612999856472, 0.02254321798682213, 0.023097136989235878, -0.007355529814958572, 0.029344826936721802, -0.012868956662714481, 0.018768837675452232, -0.01941293105483055, 0.0009749941527843475, -0.007039924617856741, -0.018266446888446808, -0.021976416930556297, 0.039856407791376114, 0.01857561059296131, -0.0055520725436508656, 0.0008365144021809101, -0.024076156318187714, -0.0017309969989582896, 0.005300876684486866, -0.014247313141822815, 0.011844850145280361, -0.0044732182286679745, 0.011870614252984524, -0.008411840535700321, 0.019722094759345055, 0.022852381691336632, 0.015509732998907566, 0.015277860686182976, -0.00941662397235632, -0.005278333090245724, 0.00881117768585682, -0.002061094157397747, 0.030220793560147285, 0.013191002421081066, 0.011677386239171028, 0.01848543807864189, -0.009120341390371323, 0.003697087522596121, 0.011174994520843029, 0.013654748909175396, -0.00895287748426199, -0.007162302266806364, 0.006225148215889931, 0.0016730288043618202, -0.01616670750081539, 0.013294056989252567, 0.013255411759018898, 0.009030168876051903, 0.024101918563246727, 0.00104986981023103, 0.01679791696369648, 0.0008952877833507955, 0.015471087768673897, 0.020172959193587303, -0.0038291264791041613, -0.012514705769717693, -0.0034394508693367243, 0.006453800946474075, -0.009165427647531033, -0.0032172391656786203, -0.003993370104581118, -0.013641866855323315, -0.013770685531198978, 0.00419947924092412, -0.04771433025598526, -0.00561648141592741, 0.006827374454587698, -0.012688610702753067, -0.036893583834171295, -0.017686763778328896, -0.030684538185596466, -0.007149420212954283, -0.04044897109270096, -0.023818518966436386, 0.029344826936721802, 0.002896803431212902, 0.013513048179447651, -0.003626237390562892, -0.029911627992987633, 0.0014910728204995394, -0.03483249247074127, -0.010801421478390694, 0.021370969712734222, -0.030839120969176292, 0.006962633691728115, -0.018807483837008476, -0.006250911857932806, 0.0167850349098444, 0.0017438788199797273, 0.009390859864652157, -0.0072846794500947, 0.004611697979271412, -0.0009162207716144621, -0.030607247725129128, 0.006647028494626284, -0.030684538185596466, -0.014723940752446651, 0.01921970210969448, 0.017300309613347054, 0.019838031381368637, -0.022105233743786812, 0.015252096578478813, -0.011767559684813023, 0.007696898188441992, 0.02988586574792862, -0.02393445558845997, -0.004743737168610096, 0.01284963358193636, -0.009229836985468864, -0.03212730586528778, 0.025866732001304626, 0.0012616150779649615, -0.007806394249200821, -0.015419560484588146, -0.005326640326529741, -0.0145693589001894, 0.020817050710320473, -0.014801232144236565, -0.0003683400573208928, -0.00470831198617816, -0.04312839359045029, 0.005703433882445097, 0.014775468967854977, -0.009732228703796864, 0.003252664115279913, -0.004424911458045244, -0.00013787591888103634, -0.0028050201945006847, -0.0068917833268642426, 0.015934834256768227, -0.011413308791816235, -0.04779161885380745, 0.011799763888120651, -0.0279278252273798, 0.010872271843254566, 0.011806204915046692, -0.020907223224639893, 0.028365807607769966, -0.018408147618174553, -0.026897277683019638, -0.01921970210969448, 0.011419749818742275, -0.0007604309939779341, -0.00351674179546535, 0.006647028494626284, -0.01597348041832447, -0.011819086968898773, 0.008888468146324158, -0.0002779659116640687, 0.005716315936297178, 0.002156097674742341, 0.019812267273664474, -0.007516552694141865, -0.020726878196001053, 0.0024829744361341, -0.019090885296463966, -0.016836563125252724, -0.031792376190423965, -0.004392706789076328, 0.019065121188759804, 0.008849822916090488, 0.0014757756143808365, 0.02301984466612339, 0.001813118695281446, -0.014002557843923569, 0.020662467926740646, 0.006254132371395826, -0.007993180304765701, -0.007355529814958572, -0.001065972144715488, 0.0059868344105780125, 0.022027943283319473, 0.04954354837536812, 0.02645929530262947, 0.006614823825657368, 0.013281174935400486, 0.005155955906957388, 0.008849822916090488, -0.005668008700013161, -0.0056100403890013695, -0.025853849947452545, 0.021100450307130814, 0.03756343945860863, 0.014105613343417645, 0.011664504185318947, 0.017042672261595726, -0.01392526738345623, 0.022440161556005478, 0.01745489053428173, 0.008418281562626362, -0.022891025990247726, -0.00997698400169611, 0.01508463267236948, -0.0006758939707651734, -0.012682169675827026, 0.012540469877421856, -0.019168175756931305, -0.00830234494060278, -0.00029628229094669223, -0.010962444357573986, -0.015535497106611729, -0.005027137231081724, -0.005336301401257515, -0.01284963358193636, 0.003222069703042507, -0.005165616981685162, 0.03063301183283329, -0.022130997851490974, -0.013229647651314735, -0.00591920455917716, 0.020082786679267883, -0.007774189580231905, -0.0140669671818614, 0.019052239134907722, 0.005046460311859846, -0.01504598744213581, -0.0430511049926281, -0.0027953588869422674, -0.024617193266749382, -0.027257969602942467, 0.021564196795225143, -0.005632583983242512, -0.0032252902165055275, -0.0038291264791041613, -0.017879990860819817, -0.0156771969050169, 0.0015136159490793943, 0.007252474781125784, -0.008643713779747486, 0.01724878139793873, 0.002067534951493144, -0.008534218184649944, 0.0012157234596088529, 0.014311722479760647, 0.0492086224257946, -0.0052171447314321995, 0.0074907890520989895, 0.018987828865647316, -0.0040481179021298885, -0.02831428125500679, -0.011129908263683319, -0.01883324794471264, -0.0018565949285402894, 0.02265915274620056, -0.004128629341721535, -8.569441706640646e-05, 0.020005494356155396, -0.015483969822525978, 0.0134615208953619, -0.02580232173204422, -0.02746407873928547, 0.02551892213523388, 0.01959327608346939, 0.019271230325102806, -0.003222069703042507, 0.013822212815284729, -0.013938149437308311, 0.036610186100006104, 0.002006346359848976, -0.03248799592256546, -0.027335260063409805, -0.027232205495238304, -0.05977173149585724, 0.02634335868060589, 0.012984893284738064, 0.021834716200828552, 0.007310443092137575, -0.01504598744213581, 0.0070785703137516975, -0.010389202274382114, -0.037176985293626785, 0.014414777047932148, -0.018060337752103806, 0.03387923538684845, -0.00835387222468853, -0.024204974994063377, 0.03230765089392662, 0.002449159510433674, -0.012559792026877403, -0.0016810798551887274, 3.8997754018055275e-05, 0.029009899124503136, 0.010994648560881615, -0.013397111557424068, -0.019941085949540138, 0.016218233853578568, -0.00876609142869711, 0.01522633247077465, -0.010518020950257778, -0.0025506040547043085, 0.013487285003066063, 0.00012851646170020103, 0.012076723389327526, -0.004212361294776201, -0.03338972479104996, -0.0034233485348522663, -0.01326829381287098, 0.004492541309446096, 0.002474923152476549, -0.021113332360982895, 0.003230120986700058, -0.025080939754843712, -0.035141654312610626, -0.02942211925983429, -0.006994838360697031, 0.001941937138326466, 0.0013042861828580499, -0.011426190845668316, 0.011980109848082066, 0.04977542161941528, -0.04269041121006012, 0.03676476702094078, -0.019812267273664474, 0.012604879215359688, -0.04652919992804527, 0.015934834256768227, 0.017029790207743645, 0.00480492552742362, 0.02423073723912239, 0.0039450628682971, 0.014273077249526978, -0.02034042216837406, -0.03269410505890846, 0.004370163660496473, -0.00723959319293499, -0.005658347625285387, -0.008173526264727116, 0.018987828865647316, 0.019245466217398643, -0.0032494436018168926, -0.013680512085556984, 0.016179589554667473, 0.02402462810277939, 0.007825716398656368, 0.003999810665845871, -0.005455458536744118, 0.01977362111210823, -0.0034491121768951416, -0.0014226380735635757, 0.02542874962091446, -0.023148663341999054, -0.002862988505512476, -0.019258348271250725, 0.021847598254680634, -0.018253564834594727, -0.0063539668917655945, -0.017094198614358902, -0.0038516696076840162, -0.016578925773501396, 0.013216766528785229, -0.024926356971263885, -0.0065343123860657215, 0.024372437968850136, -0.004943405278027058, -0.024578547105193138, 0.0167850349098444, -0.028082408010959625, -0.027773244306445122, -0.045910872519016266, 0.01286251563578844, -0.001217333716340363, 0.0002817902131937444, -0.004592375364154577, 0.036146439611911774, -0.0028758703265339136, -0.011342458426952362, -0.022259816527366638, -0.013133034110069275, -0.013487285003066063, -0.002028889488428831, -0.001766422064974904, 0.015483969822525978, -0.0008904570713639259, 0.010968885384500027, -0.010595312342047691, 0.016308408230543137, 7.95679989096243e-06, 0.039779115468263626, -0.0292417723685503, 0.03194696083664894, -5.604354555543978e-06, 0.021757425740361214, -0.003030452411621809, -0.03480672836303711, 0.004972389433532953, -0.02311001718044281, 0.01661757193505764, 0.011316695250570774, 0.026588113978505135, -0.001987023511901498, 0.017042672261595726, -0.01007359754294157, -0.01606365293264389, -0.001774473232217133, 0.022143879905343056, 0.01397679466754198, 0.03704816848039627, 0.011503481306135654, -0.030942175537347794, -6.013201709720306e-05, 0.031045230105519295, -0.022787971422076225, -0.003964385949075222, -0.010691925883293152, -0.008482690900564194, 0.02738678827881813, 0.0016013735439628363, -0.022015061229467392, 0.01681079901754856, -0.026871515437960625, 0.016965381801128387, 0.012585556134581566, 0.013513048179447651, 0.03527047485113144, 0.0015361591940745711, 0.007246034219861031, -0.007246034219861031, 0.020456358790397644, -0.01791863702237606, -0.001645654789172113, 0.012276391498744488, 0.019528867676854134, 0.009107459336519241, -0.009081696160137653, 0.022105233743786812, -0.024449728429317474, 0.01669486239552498, -0.005632583983242512, 0.0037808194756507874, -0.024346673861145973, 0.027824770659208298, 0.03228188678622246, -0.00941662397235632, 0.02857191674411297, 0.001503149513155222, 0.005365285556763411, 0.013654748909175396, -0.041273411363363266, 0.0040384563617408276, -0.01848543807864189, -0.012018755078315735, -0.014981578104197979, -0.0014830216532573104, -0.0012447076151147485, -0.01299777440726757, 0.010975326411426067, 0.0067436425015330315, 0.009094578213989735, 0.20786134898662567, 0.0009959271410480142, 0.030323848128318787, 0.057040780782699585, -0.004788823425769806, 0.035038601607084274, 0.015728725120425224, -0.0038323469925671816, -0.020739760249853134, 0.022981200367212296, -0.024449728429317474, 0.018768837675452232, -0.02423073723912239, 0.004785602912306786, -0.02070111408829689, 0.009648497216403484, -0.004592375364154577, -0.026382004842162132, 0.01597348041832447, 0.008134881034493446, 0.013706276193261147, -0.011052616871893406, -0.022903908044099808, -0.029576700180768967, 0.03655865788459778, -0.03323514387011528, -0.018807483837008476, -0.0134615208953619, 0.0350901260972023, -0.0031447787769138813, -0.003967605996876955, 0.015844661742448807, 0.018047455698251724, 0.014221549965441227, -0.049981534481048584, -0.006112432107329369, 0.013680512085556984, -0.006595501210540533, 0.013017097488045692, 0.020276013761758804, 0.0038291264791041613, -0.024076156318187714, -0.029293300583958626, -0.027773244306445122, 0.0211777426302433, 0.013435757718980312, 0.0003635093744378537, -0.01625688001513481, 0.0033524984028190374, 0.03527047485113144, -0.017145726829767227, -0.005194601137191057, -0.006859579123556614, 0.006608383264392614, -0.001471749972552061, 0.009906133636832237, 0.01109126303344965, -0.011020412668585777, 0.014955813996493816, -0.024256501346826553, 0.006192943546921015, 0.02562197670340538, -0.007052806671708822, 0.021950652822852135, -0.007819276303052902, 0.016926735639572144, -0.04974966123700142, 0.02173166163265705, -0.014723940752446651, -0.006640587467700243, -0.015909070149064064, 0.021048923954367638, -0.041634101420640945, -0.00016957732441369444, -0.0073233251459896564, -0.020160077139735222, -0.004122188314795494, 0.010988208465278149, 0.019876675680279732, 0.029963156208395958, -0.02542874962091446, 0.00044200808042660356, -0.005506985820829868, 0.017094198614358902, -0.056473977863788605, -0.038748569786548615, 0.0061768414452672005, 0.006444139406085014, -0.01165806408971548, -0.02523552067577839, 0.0013075065799057484, -0.0018163392087444663, 0.016089415177702904, 0.010756335221230984, -0.009287805296480656, 0.018176274374127388, -0.03733156621456146, 0.02767018787562847, -0.007638930343091488, 0.013732039369642735, -0.013345584273338318, 0.014324604533612728, -0.0076582529582083225, -0.0007946484256535769, -0.003358939429745078, -0.024539902806282043, -0.02014719508588314, 0.014041204005479813, 0.0037808194756507874, -0.03591456636786461, -0.02663964219391346, 0.003700308036059141, -0.0025248404126614332, -0.008192849345505238, 0.007767748553305864, -0.018343737348914146, -0.022620508447289467, -0.031045230105519295, 0.002433057175949216, 0.0010949563002213836, 0.006846697069704533, -0.00836031325161457, -0.01836950145661831, 0.0013340753503143787, -0.0028517169412225485, -0.01894918456673622, -0.017854228615760803, -0.007664693985134363, 0.01165806408971548, -0.01753218285739422, 0.029499409720301628, -0.05224873498082161, -0.006846697069704533, -0.012044519186019897, 0.01006715651601553, 0.0030755389016121626, -0.018408147618174553, -0.016102297231554985, -0.007980299182236195, -0.006479564588516951, -0.0028130714781582355, 0.008283021859824657, -0.017892872914671898, -0.008276580832898617, 0.013912385329604149, -0.03740885853767395, 0.007593843620270491, -0.0052171447314321995, 0.001122330198995769, 0.015831779688596725, -0.008167085237801075, 0.0013662800192832947, 0.02124215103685856, -0.03217883035540581, 0.0025103483349084854, -0.021577078849077225, -0.010730571113526821, -0.02980857342481613, 0.013152357190847397, 0.006898224353790283, -0.0291387178003788, -0.020765522494912148, -0.0022543217055499554, -0.015986360609531403, -0.015535497106611729, -0.006189723499119282, -0.1599408984184265, 0.007162302266806364, 0.005210703704506159, 0.005474781151860952, -0.0007129292353056371, -0.02152555249631405, 0.027773244306445122, -0.009964101947844028, -0.018150510266423225, -0.02785053476691246, 0.001566753606311977, -0.0280308797955513, 0.005858016200363636, -0.013158798217773438, -0.030143501237034798, -0.004115747287869453, -0.05157887935638428, -0.011999431997537613, 0.03725427761673927, 0.02978280931711197, 0.041737157851457596, -0.035785745829343796, 0.031019465997815132, 0.03854246065020561, 0.008598627522587776, 0.0008461757679469883, -0.01280454732477665, 0.017467772588133812, -0.005432915408164263, -0.029009899124503136, 0.0006175230955705047, 0.013513048179447651, -0.0016859106253832579, -0.008096235804259777, 0.01508463267236948, 0.004189817700535059, 0.009326450526714325, -0.008695241063833237, -0.03490978106856346, 0.014092731289565563, 0.02839157171547413, 0.0377180241048336, 0.003755055833607912, 0.0029241773299872875, -0.0009331281762570143, 0.035141654312610626, 0.01178688183426857, -0.02774748019874096, 0.005349183455109596, -0.007529434282332659, 0.02526128478348255, -0.02403751015663147, 0.0221825260668993, -0.00789656676352024, 0.019271230325102806, -0.02411480061709881, -0.037460386753082275, 0.022259816527366638, 0.0056100403890013695, -5.318790135788731e-05, 0.0010369879892095923, -0.010131565853953362, 0.03279716148972511, 0.02171877957880497, -0.011007530614733696, -0.010852948762476444, -0.022324224933981895, -0.0007958560599945486, -0.026227422058582306, 0.0011360171483829618, -0.008340990170836449, 0.0026472178287804127, 0.018163392320275307, 0.010569548234343529, 0.006205825600773096, 0.035502348095178604, -0.006576178595423698, 0.02256898023188114, -0.001144873327575624, -0.024179210886359215, -0.029190246015787125, 0.01708131842315197, 0.006820933427661657, -0.01017021108418703, 0.010601753368973732, -0.013693394139409065, -0.011168553493916988, -0.03807871416211128, -0.0018952405080199242, -0.030864885076880455, 0.0315605029463768, -0.024797538295388222, -0.016385698691010475, -0.0015015392564237118, -0.0008719394099898636, -0.0007233957294374704, 0.0024539902806282043, -0.012637083418667316, 0.019709212705492973, -0.05420677736401558, 0.0010563107207417488, -0.012991334311664104, -0.019644804298877716, -0.012534028850495815, 0.029937392100691795, -0.005732418037950993, -0.025299930945038795, 0.0017986266175284982, -0.0052074831910431385, -0.021667251363396645, 0.019747858867049217, -0.012430974282324314, -0.009088137187063694, 0.0067436425015330315, -0.01941293105483055, 0.006795169785618782, -0.01995396800339222, -0.019284112378954887, 0.02134520560503006, 0.006051243748515844, 0.052480608224868774, 0.012411651201546192, 0.015071750618517399, 0.011625858955085278, -0.012418092228472233, -0.0020498225931078196, -0.07672423124313354, -0.039212316274642944, -0.01499446015805006, 0.03217883035540581, -0.0015796354273334146, 0.029937392100691795, -0.012334359809756279, -0.0023525457363575697, -0.020932987332344055, 0.013951030559837818, 0.03480672836303711, -0.0011666114442050457, -0.015316505916416645, 0.0290356632322073, 0.0011601705336943269, -0.0004150367167312652, 0.016913853585720062, -0.0032027470879256725, -0.01558702439069748, 0.005674449726939201, -0.0008622780442237854, -0.0076904576271772385, 0.01504598744213581, 0.019825149327516556, -0.003032062668353319, -0.014363249763846397, -0.03230765089392662, 0.011484159156680107, 0.006064125336706638, 0.030658775940537453, -0.0010321573354303837, -0.027051860466599464, 0.004682548344135284, -0.0041028656996786594, -0.026433533057570457, 0.006015818566083908, -0.03248799592256546, -0.01221198309212923, 0.05199109762907028, -0.015007341280579567, -0.0011497040977701545, -0.0019532088190317154, -0.014646650291979313, -0.006270234938710928, 0.0035618282854557037, 0.0018260006327182055, -0.00839895848184824, 0.020739760249853134, 0.0033943643793463707, -0.02774748019874096, -0.02970551885664463, -0.026317596435546875, -0.028365807607769966, -0.009571205824613571, 0.018820365890860558, -0.03323514387011528, 0.022053707391023636, -0.011967227794229984, -0.010556666180491447, -0.006096330005675554, -0.001790575566701591, -0.00023992423666641116, -0.02451413869857788, 0.006762965116649866, 0.00758740259334445, 0.009770873934030533, -0.012282832525670528, -0.008727445267140865, 0.015561260282993317, -0.03349278122186661, 0.0014105612644925714, 0.014930050820112228, -0.009861047379672527, 0.03413687273859978, -0.01401543989777565, 0.010228179395198822, -0.011342458426952362, -0.01669486239552498, 0.009654938243329525, 0.008205731399357319, -0.027799006551504135, -0.008064030669629574, -0.0007797537837177515, 0.0009975373977795243, 0.02524840272963047, 0.008379635401070118, 0.004959507845342159, 0.017429126426577568, -0.0007580156670883298, -0.0021448261104524136, -0.0007539900834672153, 0.0030175705906003714, 0.03387923538684845, -0.008566422387957573, 0.011123467236757278, 0.014363249763846397, 0.007465025410056114, -0.0015337439253926277, 0.006750083062797785, 0.010363439098000526, -0.045447126030921936, -0.002243050141260028, -0.061678241938352585, 0.013203884474933147, 0.004785602912306786, -0.017789818346500397, 0.013822212815284729, -0.010801421478390694, 0.021113332360982895, -0.01865290105342865, 0.015432442538440228, -0.010266825556755066, -0.010015629231929779, 0.009596969932317734, -0.0027551031671464443, -0.004853232763707638, -0.016656216233968735, -0.032539524137973785, 0.016192471608519554, 0.0027937486302107573, 0.03836211562156677, -0.00042147765634581447, -0.008089794777333736, -0.007065688259899616, 0.008012503385543823, 0.023715464398264885, 0.0017052333569154143, 0.018356619402766228, 0.006704996805638075, 0.016411462798714638, -0.010936681181192398, -0.00278569757938385, -0.0013026759261265397, -0.008121998980641365, -0.021886242553591728, 0.021924888715147972, 0.018691547214984894, -0.009861047379672527, 0.012624201364815235, 0.02634335868060589, -0.0036681033670902252, -0.010994648560881615, -0.0096034100279212, 0.00561326090246439, 0.013203884474933147, -0.0023976322263479233, 0.00835387222468853, -0.006060904823243618, -0.011625858955085278, 0.01049225777387619, 0.01950310356914997, 0.020301777869462967, 0.03405958041548729, 0.0016416292637586594, -0.008592186495661736, 0.001647265045903623, -0.016823681071400642, -0.03679053112864494, -0.00901084579527378, -0.009088137187063694, 0.005400710739195347, -0.014492068439722061, 0.007426379714161158, -0.01715860888361931, 0.003529623616486788, -0.026948805898427963, -0.0066792331635952, -0.04405588656663895, -0.024823302403092384, -0.011728913523256779, 0.017557945102453232, -0.02115197852253914, -0.0048628938384354115, 0.004032015334814787, 0.019464457407593727, 0.0035553874913603067, 0.013448638841509819, 0.013178120367228985, 0.0055520725436508656, -0.02906142733991146, -0.010414966382086277, 0.016965381801128387, 0.049517787992954254, 0.009332891553640366, -0.03073606640100479, 0.013474402949213982, 0.03140592202544212, 0.010253943502902985, -0.017931519076228142, -0.021100450307130814, 0.03228188678622246, -0.00047219989937730134, 0.012218423187732697, 0.012418092228472233, 0.00240246276371181, -0.0015474308747798204, -0.00027736209449358284, 0.01866578310728073, 0.007246034219861031, 0.020932987332344055, 0.0028919726610183716, 0.024527020752429962, -0.0042381249368190765, -0.019786503165960312, 0.008617949672043324, 0.00132924469653517, -0.041350699961185455, 0.014608005061745644, -0.018498320132493973, -0.03470367193222046, -0.038748569786548615, 0.020482122898101807, 0.013075065799057484, 0.027695951983332634, 0.0222855806350708, 0.003490978153422475, -0.01173535455018282, 0.002919346559792757, -0.00048145870096050203, 0.0049659488722682, -0.01549685187637806, 0.012282832525670528, -0.011812645941972733, 0.0375119149684906, 0.0281339343637228, 0.011445512995123863, 0.02618877775967121, -0.005297656171023846, 0.014170021750032902, -0.006015818566083908, -0.005323419813066721, -0.015161924064159393, -0.017802700400352478, -0.024063274264335632, -0.0011344068916514516, -0.024630075320601463, 0.012134691700339317, -0.010363439098000526, 0.007130097597837448, -0.011574331670999527, -0.03127710521221161, 0.0772395059466362, 0.01579313352704048, 0.004193038213998079, 0.011323136277496815, 0.028932608664035797, 0.007246034219861031, 0.024256501346826553, -0.02025024965405464, -0.0048081460408866405, -0.0315605029463768, 0.003803362837061286, -0.004634241107851267, -0.020662467926740646, -0.023148663341999054, -0.009094578213989735, 0.02906142733991146, -0.01605077087879181, 0.00039470757474191487, -0.02756713330745697, 0.024385320022702217, 0.00668567419052124, 0.010878712870180607, 0.015007341280579567, 0.012108927592635155, -0.009944778867065907, -0.002767984988167882, 0.0034330098424106836, -0.0004778356815222651, -0.027902061119675636, -0.019657684490084648, -0.004949846304953098, 0.0005108453915454447, -0.03442027047276497, -0.03295174241065979, -0.006614823825657368, 0.004933744203299284, -0.000946815125644207, 0.012972011230885983, 0.01947733946144581, 0.0056068203411996365, -0.03890315070748329, 0.004508643411099911, -0.01857561059296131, -0.028340043500065804, 0.00027595311985351145, 0.01350016612559557, -0.014543595723807812, 0.007593843620270491, -0.03205001354217529], "28a02a3b-dde7-460a-9f99-bcb347d728bb": [0.011716842651367188, 0.006122375838458538, -0.0007370161474682391, -0.03373134508728981, -0.002821229165419936, 0.012484710663557053, -0.0041170064359903336, -0.01598810777068138, -0.009166424162685871, -0.015412207692861557, 0.010990110225975513, 0.014987137168645859, -0.02542191557586193, 0.03392330929636955, -0.003859907854348421, -0.007582696154713631, 0.01598810777068138, -0.007226186338812113, -0.011058670468628407, -0.006242355331778526, 0.004329541232436895, 0.011833393946290016, 0.021993933245539665, -0.01400673482567072, -0.017386725172400475, 0.024256400763988495, 0.01014682650566101, -0.027108483016490936, -0.025997815653681755, -0.014589491300284863, 0.0278763510286808, -0.015384783037006855, -0.01589212566614151, -0.005974972620606422, -0.019032156094908714, 0.004041590727865696, 0.0025384207256138325, -0.0010609604651108384, 0.0020327933598309755, -0.01338969822973013, 0.014027302153408527, 0.03693993389606476, -0.005848137196153402, 0.0048917303793132305, 0.001546019921079278, 0.0015314510092139244, 0.0132731469348073, -0.028877321630716324, -0.008583666756749153, 0.0031400315929204226, 0.010441632941365242, 0.036034949123859406, -0.00733588170260191, -0.008604235015809536, -0.002483573043718934, 0.015576750040054321, -0.013499393127858639, 0.022885208949446678, -0.009612062014639378, -0.015549326315522194, 0.019402379170060158, 0.009378958493471146, -0.011449459940195084, -0.020526757463812828, 0.0005279092583805323, 0.0014303255593404174, -0.018086032941937447, 0.0024784309789538383, -0.0075895520858466625, -0.009385814890265465, 0.020334789529442787, 0.030111394822597504, -0.013622800819575787, 0.005745297763496637, 0.052352141588926315, -0.0043535372242331505, -0.02070501074194908, 0.0017062780680134892, -0.012580693699419498, 0.003191451309248805, -0.01620749942958355, -0.019333818927407265, -0.01549447886645794, 0.018332848325371742, -0.0023310277611017227, -0.01846996694803238, 0.002713247900828719, 0.021980220451951027, -0.030934110283851624, -0.022583546116948128, -0.007041075266897678, 0.018730493262410164, 0.0027680955827236176, 0.02778036706149578, -0.004531792365014553, 0.013855903409421444, -0.003654228989034891, 0.01400673482567072, 0.00041135784704238176, -0.019306395202875137, 0.006365762557834387, 0.015823565423488617, -0.011970513500273228, -0.0015331649919971824, -0.03005654737353325, -0.012491567060351372, 0.01343083381652832, -0.0013180590467527509, 0.019635481759905815, 0.013259435072541237, -0.026326902210712433, 0.04439922422170639, -0.009831452742218971, -0.040669579058885574, 0.004919154103845358, -0.017770659178495407, -0.0012640684144571424, -0.025243660435080528, -0.016769688576459885, -0.011977368965744972, 0.016276059672236443, 0.0022093344014137983, 0.006430894136428833, 0.004377533216029406, 0.018936172127723694, 0.0062766349874436855, 0.009838308207690716, -0.006698276847600937, -3.706505594891496e-05, -0.02513396367430687, 0.02583327330648899, 0.012649253942072392, -0.0004177853115834296, 0.003403986105695367, -0.019608058035373688, 0.007260465994477272, -0.03005654737353325, -0.009063584730029106, -0.013170307502150536, -0.023132022470235825, 0.027410143986344337, 0.01886761374771595, -0.009872588329017162, -0.005683594383299351, -0.005851565394550562, 0.026793107390403748, 0.010386785492300987, -0.009303543716669083, -0.012854932807385921, 0.014959713444113731, 0.0068765319883823395, -0.014850018545985222, -0.01097639836370945, 0.004679195582866669, 0.011031245812773705, 0.013115459121763706, -0.01793520152568817, 0.012985195964574814, 0.03976459056138992, -0.010283946059644222, 0.023721635341644287, 0.005381932016462088, -0.00018736063793767244, 0.0015117400325834751, -0.004744327161461115, 0.026642275974154472, 0.04113578423857689, 0.012059641070663929, -0.003561673453077674, 0.0076649677939713, -0.005697306245565414, 0.008165453560650349, -0.0032411569263786077, 0.014959713444113731, 0.027245601639151573, -0.00525852432474494, 0.0003562958736438304, 0.0018408263567835093, -0.01742786169052124, -0.003767352318391204, 0.024050721898674965, -0.014973425306379795, -0.002452721120789647, 0.03957262635231018, -0.028548235073685646, -0.008885329589247704, 0.0025984104722738266, -0.006430894136428833, -0.0019522358197718859, 0.015247664414346218, 0.0053579360246658325, 0.022583546116948128, -0.006348622962832451, -0.013321137987077236, -0.6375498175621033, -0.00684225233271718, -0.020375926047563553, -0.03608979657292366, -0.0016951371217146516, 0.010811855085194111, 0.0049637178890407085, 0.024023298174142838, -0.02326914295554161, 0.03770780190825462, 0.007425009272992611, -0.004939722362905741, 0.0172358937561512, -0.012944060377776623, -0.01219676062464714, -0.01631719432771206, 0.007095922715961933, -0.027506127953529358, -0.02665598876774311, -0.001314631081186235, -0.007041075266897678, 0.020238805562257767, -0.012498422525823116, 0.0036816527135670185, 0.015768717974424362, 0.022172188386321068, 0.007356449496001005, 0.0013360560405999422, 0.019128140062093735, 0.04080669954419136, -0.018634511157870293, 0.004473516717553139, 0.01184710580855608, -0.013581665232777596, 0.04533163458108902, -0.01641317829489708, -0.01035250537097454, 0.006283490918576717, 0.026299478486180305, 0.03905156999826431, -0.01805860921740532, -0.008144885301589966, 0.028740201145410538, 0.027533551678061485, 0.010215386748313904, -0.0010223956778645515, 0.0007918638293631375, 0.012292743660509586, -0.00774723943322897, 0.005899556912481785, 0.015604174695909023, 0.020554181188344955, -0.002989200409501791, -0.03957262635231018, 0.01885390095412731, 0.0042506977915763855, 0.027108483016490936, 0.002829799195751548, 0.0014834592584520578, -0.00907044019550085, 0.010880415327847004, 0.022994903847575188, -0.0027475275564938784, -0.010757007636129856, -0.014424948953092098, 0.004175282083451748, -0.026176070794463158, -0.011031245812773705, 0.011401467956602573, -0.01317716296762228, 0.022405290976166725, 0.005292804446071386, -0.018840190023183823, -0.01785293035209179, -0.006266351323574781, 0.03496541827917099, 0.01967661641538143, -0.020938115194439888, -0.007301601581275463, 0.020595315843820572, 0.004452948924154043, 0.007925494574010372, -0.0005973258521407843, -0.015905836597085, 0.041903652250766754, 0.008501395583152771, -0.024366095662117004, -0.0022127623669803143, 0.001042106538079679, 0.01866193488240242, -0.009351534768939018, 0.0069690877571702, -0.019827447831630707, -0.035651013255119324, -0.012909780256450176, 0.021514015272259712, -0.0007537275669164956, -0.01487744227051735, -0.02182938903570175, -0.024146705865859985, -0.0004602065891958773, -0.01888132467865944, -0.012121344916522503, -0.011867674067616463, 0.025490473955869675, -0.013286858797073364, 0.006413754541426897, 0.016125228255987167, 0.03016624227166176, -0.01231331191956997, -0.021171217784285545, -0.02032107673585415, -0.0007194477366283536, 0.007733527570962906, 0.027204465121030807, -0.01845625601708889, 0.00584470946341753, 0.004627775866538286, 0.013766775839030743, -0.007616976276040077, 0.0076649677939713, 0.027437567710876465, -0.031098652631044388, -0.01240243948996067, 0.019032156094908714, 0.012279031798243523, 0.010139971040189266, -0.021664846688508987, -0.01948465034365654, -0.008809913881123066, -0.014630627818405628, -0.008789345622062683, 0.014644339680671692, -0.004236985929310322, 0.0038084881380200386, -0.006242355331778526, 0.016879383474588394, -0.01937495544552803, 0.002965204417705536, -0.019950855523347855, -0.03905156999826431, -0.014781458303332329, 0.017414148896932602, -0.02779407799243927, 0.006561157759279013, -0.027533551678061485, -0.02173340693116188, 0.0013849047245457768, 0.00692452397197485, -0.004048446658998728, 0.012409294955432415, -0.00985202006995678, -0.008295716717839241, 0.030906686559319496, 0.005937264766544104, 0.000939267105422914, 0.017085062339901924, -0.006753124762326479, -0.01885390095412731, -0.006708560977131128, -0.01400673482567072, 0.020129110664129257, -0.010887270793318748, 0.01168941892683506, -0.014356388710439205, -0.0022658961825072765, -0.0034691179171204567, 0.05229729413986206, -0.019923431798815727, -0.05484771355986595, 0.012532702647149563, -0.01866193488240242, 0.012614973820745945, 0.02614864706993103, -0.01102439034730196, 0.0011518020182847977, -0.014726610854268074, 0.015467055141925812, 0.005676738452166319, -0.026217207312583923, -0.014150709845125675, 0.0020053694024682045, 0.011730554513633251, -0.011579723097383976, 0.012889212928712368, 0.004672339651733637, -0.0016300054267048836, -0.0001634718937566504, -0.01522024068981409, -0.015768717974424362, 0.010839278809726238, 0.02103409729897976, -0.02717704139649868, 0.0004619205719791353, -0.011511163786053658, 0.03340225666761398, 0.00841226801276207, 0.020746147260069847, 0.016358330845832825, 0.04226016253232956, 0.019018445163965225, -0.006516593974083662, 0.0046860515139997005, -0.02923383191227913, -0.009324111044406891, -0.04256182536482811, 0.023735348135232925, -0.012848076410591602, 0.002786949509754777, 0.004943150095641613, 0.010256522335112095, -0.008240869268774986, -0.011154653504490852, -0.03013881854712963, 0.006619433406740427, 0.02931610308587551, -0.010832423344254494, 0.004041590727865696, -0.010462201200425625, 0.015055697411298752, 0.02439352124929428, 0.015755005180835724, 0.012649253942072392, 0.013711928389966488, -0.001617150497622788, 0.006993083283305168, 0.007527848705649376, 0.00779523141682148, -0.01343083381652832, -0.041492294520139694, -0.012752093374729156, -0.009509222581982613, 0.02931610308587551, 0.0054299235343933105, 0.021884238347411156, 9.121646144194528e-05, 0.009612062014639378, -0.02265210635960102, 0.028438538312911987, -0.0019385238410905004, -0.00841226801276207, 0.003254869021475315, 0.007726671639829874, -0.020746147260069847, -0.006646857131272554, 0.005639030598104, 0.03765295445919037, 0.019004732370376587, -0.02133576013147831, 0.03499284014105797, -0.006890243850648403, 0.011243781074881554, -0.011456316336989403, 0.012224184349179268, 0.010071411728858948, 0.002444151323288679, 0.012011649087071419, 0.006369190756231546, 0.015028273686766624, 0.013567953370511532, -0.006369190756231546, -0.012224184349179268, 0.029069287702441216, 0.007418153341859579, 0.011627715080976486, -0.00856995489448309, -0.008144885301589966, -0.038338553160429, -0.012710957787930965, -0.0017636967822909355, -0.028959592804312706, -0.029590340331196785, 0.007575840223580599, -0.0010172537295147777, 0.030221089720726013, 0.006225215271115303, 0.004264409653842449, 0.018634511157870293, 0.005453919526189566, 0.002008797600865364, -0.009447518736124039, -0.03257954120635986, 0.012299600057303905, 0.008165453560650349, -0.0034057002048939466, -0.009605205617845058, -0.014740322716534138, 0.020142823457717896, -0.010119402781128883, -0.00033465673914179206, -0.014959713444113731, 0.0014594633830711246, -0.0007280177087523043, -0.013444545678794384, -0.007377017289400101, -0.015768717974424362, 0.023845043033361435, -0.013286858797073364, -0.005861849524080753, 0.0008021477842703462, 0.006485742051154375, 0.010448489338159561, -0.04236985743045807, -0.006372618488967419, 0.06899842619895935, -0.0025384207256138325, 0.017688388004899025, -0.004199278075248003, 0.0024287253618240356, -0.03672054409980774, 0.0032051631715148687, -0.00831628404557705, -0.00014247550279833376, -0.02953549288213253, 0.018319135531783104, -0.02450321614742279, 0.027026209980249405, 0.016591433435678482, 0.030303360894322395, -0.002654972020536661, -0.018524814397096634, -0.024996845051646233, -0.013458257541060448, 0.011346620507538319, 0.05218759924173355, 0.012477854266762733, -0.02287149615585804, 0.000941838079597801, -0.014020446687936783, -0.012361302971839905, -0.025572746992111206, -0.016591433435678482, 0.030906686559319496, -0.011819682084023952, -0.011908809654414654, 0.013403410091996193, 0.009043016470968723, -0.0031366036273539066, 0.016947943717241287, 0.01420555729418993, 0.005248240660876036, -0.010510193184018135, -0.004130718298256397, -0.025874407961964607, 0.012059641070663929, 0.017592404037714005, 0.022473851218819618, 0.0018699641805142164, 0.007733527570962906, -0.0005116263055242598, 0.027972333133220673, 0.010023419745266438, -0.01092840638011694, -0.03310059383511543, -0.005447063595056534, 0.011140941642224789, 0.015247664414346218, 0.04574299231171608, -0.017510132864117622, 0.03290862962603569, 0.011065525934100151, 0.02890474535524845, 0.009543501771986485, -0.00927611906081438, 0.010873558931052685, 0.005834425333887339, 0.013629656285047531, -0.010023419745266438, 0.0018305424600839615, -0.005289376247674227, -0.007877502590417862, 0.029974274337291718, -0.01441123615950346, -0.02081470750272274, 0.011600291356444359, -0.01487744227051735, -0.022432714700698853, -0.006821684073656797, 0.002180196577683091, -0.007918638177216053, -0.0012743523111566901, -0.002157914685085416, -0.0018082605674862862, -0.03551389276981354, -0.0004434951697476208, 0.0026052664034068584, 0.00018682502559386194, 0.0062046474777162075, 0.004346681293100119, -0.0035479613579809666, 0.006735984701663256, 0.017606114968657494, -0.012443575076758862, -0.0033662784844636917, 0.016262346878647804, -0.0350751131772995, -0.03853051736950874, -0.005193392746150494, 0.015974396839737892, 0.008590523153543472, 0.005453919526189566, 0.009063584730029106, -0.01005769893527031, -0.001818544464185834, -0.020938115194439888, -0.043549083173274994, -0.010846135206520557, -0.016797112300992012, -0.003873619716614485, 0.011278061196208, 0.0035136817023158073, 0.010873558931052685, -0.010071411728858948, 0.023817619308829308, 0.004812886938452721, 0.0032085911370813847, -0.006064100190997124, -0.023447398096323013, 0.005045989528298378, 0.03310059383511543, 0.00836427602916956, 0.02431124821305275, 0.01752384379506111, -0.027464991435408592, 0.00489515857771039, -0.014644339680671692, -0.0023018899373710155, -0.026943938806653023, -0.016851959750056267, 0.00800091028213501, 0.0036747967824339867, 0.009385814890265465, -0.012896068394184113, -0.007178194355219603, 0.04472830891609192, -0.016344618052244186, 0.03356679901480675, 0.025051692500710487, 0.020129110664129257, 0.023625653237104416, 0.0034382659941911697, 0.013327994383871555, 0.021966509521007538, -0.029096711426973343, 0.01338284183293581, -0.054710593074560165, -0.00779523141682148, 0.03976459056138992, -0.014781458303332329, 0.015741294249892235, 0.00811060518026352, -0.029151558876037598, -0.026601141318678856, -0.019457226619124413, 0.01908700354397297, 0.012841220945119858, -0.02111637033522129, -0.017688388004899025, -0.009968572296202183, 0.009687477722764015, -0.021280912682414055, -0.009056728333234787, -0.03151001036167145, 0.00800091028213501, -0.001381476758979261, -0.009132144041359425, 0.013341706246137619, -0.013513104990124702, -0.0119430897757411, -0.030001699924468994, -0.004572927951812744, 0.0038770476821810007, 0.021815678104758263, 0.023543380200862885, 0.01441123615950346, 0.004442664794623852, -0.00994114764034748, -0.00497057382017374, 0.010139971040189266, -0.005608178675174713, -0.0051282611675560474, -8.216444257413968e-05, 0.04023079574108124, 0.02562759444117546, 0.02431124821305275, -0.0073838732205331326, 0.025298507884144783, 0.009550358168780804, -0.013903895393013954, 0.013471969403326511, 0.002522994764149189, 0.020979249849915504, -0.008446548134088516, -0.0014920291723683476, 0.009365246631205082, -0.004867734387516975, 0.003938751295208931, 0.0012092206161469221, 0.019155563786625862, 0.046922218054533005, -0.0021596287842839956, -0.002289891941472888, -0.006883387919515371, -0.03167455270886421, -0.016742264851927757, 0.027917485684156418, 0.00422670179978013, 0.041464872658252716, -0.021376896649599075, 0.0012229325948283076, 0.03403300419449806, 0.013581665232777596, -0.007157626561820507, 0.007116490975022316, -4.191243715467863e-05, -0.012854932807385921, 0.02030736580491066, 0.041272904723882675, 0.03633660823106766, -0.03444436192512512, 0.007020507473498583, -0.04001140594482422, 0.01343083381652832, 0.007116490975022316, 0.019868584349751472, 0.026683412492275238, 0.008076325990259647, 0.01660514436662197, -0.002759525552392006, -0.007562128361314535, 0.014246693812310696, -0.025257371366024017, -0.0016394323902204633, -0.007959774695336819, -0.02348853275179863, -0.03630918636918068, -0.012299600057303905, 0.013746208511292934, -0.0166325680911541, 0.005292804446071386, 0.017194757238030434, 0.02276180125772953, -0.014397524297237396, -0.035842981189489365, 0.01649544946849346, -0.024187840521335602, 0.046922218054533005, 0.004699763376265764, 0.030742142349481583, 0.03197621554136276, 0.011058670468628407, -0.0062354994006454945, 0.00476832315325737, 0.012875501066446304, 0.01742786169052124, 0.03274408355355263, 0.028987016528844833, -0.009721756912767887, -0.014863730408251286, -0.02049933187663555, 0.013465113937854767, -0.005440207663923502, -0.02706734649837017, 0.01619378663599491, 0.020238805562257767, 0.00771295977756381, -0.0286030825227499, 0.01703021489083767, -0.03002912364900112, 0.030687294900417328, -0.0003123748756479472, -0.005639030598104, -0.0060298205353319645, -0.006033248268067837, -0.01683824695646763, 0.011929377913475037, 0.010948974639177322, 0.007219330407679081, -0.0010592464823275805, 0.010852991603314877, -0.004459804855287075, -0.023419972509145737, -0.031948793679475784, 0.0068045444786548615, 0.0020979249384254217, 0.013300570659339428, -0.012861788272857666, -0.001614579581655562, 0.019457226619124413, -0.003258296987041831, -0.006677709054201841, 0.001747413887642324, 0.010071411728858948, 0.03252469375729561, -0.015946973115205765, 0.0036816527135670185, -0.02624463103711605, -0.004360393155366182, 0.0012229325948283076, -0.006297203246504068, 0.0009281261591240764, -0.0029720603488385677, -0.021102657541632652, -0.028548235073685646, 0.0016848532250151038, 0.012368159368634224, -0.0014500364195555449, 0.009303543716669083, 0.0010155396303161979, 0.0018236864125356078, 0.012745236977934837, -0.0036816527135670185, 0.008597378619015217, -0.036775391548871994, 0.0010609604651108384, -0.012327023781836033, -0.0038496239576488733, -0.010400497354567051, 0.01970404013991356, -0.01441123615950346, 0.011394612491130829, 0.034828297793865204, 0.006708560977131128, 0.03140031546354294, 0.012724669650197029, 0.013506249524652958, -0.03510253503918648, 0.0007674394873902202, -0.008967600762844086, -0.019978279247879982, 0.019937144592404366, -0.0008887043222784996, -0.0029086428694427013, -0.013753063976764679, 0.009255551733076572, 0.011051814071834087, -0.0005759010091423988, -0.027506127953529358, 0.003287434810772538, 0.020060550421476364, 0.0037125046364963055, 0.0027303877286612988, -0.02747870422899723, 0.017263317480683327, -0.012937203980982304, -0.0029772024136036634, 0.016385754570364952, 0.0028092314023524523, 0.008926465176045895, -0.00612923176959157, -0.016577720642089844, -0.009385814890265465, -0.03118092566728592, -0.001643717405386269, -0.014274117536842823, -0.007644400000572205, 0.015192816033959389, 0.00745928892865777, -0.032058488577604294, -0.00819973275065422, -0.04080669954419136, -0.0037193605676293373, 0.0031451734248548746, 0.02182938903570175, -0.008021477609872818, 0.0433022677898407, 0.007233042269945145, 0.0014731752453371882, -0.015960684046149254, -0.003962747287005186, -0.004939722362905741, -0.0011706558289006352, -0.03159228339791298, 0.011956801638007164, -0.030632447451353073, 0.04878704249858856, 0.01752384379506111, -0.036254338920116425, -0.011195789091289043, -0.006341767031699419, -0.038091737776994705, -0.013204586692154408, 0.01420555729418993, 0.021966509521007538, 0.015727581456303596, -0.001144945970736444, 0.0003235157928429544, 0.04412498325109482, -0.018195729702711105, 0.01908700354397297, -0.01123006921261549, 0.009091008454561234, -0.006502882111817598, 0.022227035835385323, -0.008988169021904469, 0.007267321925610304, -0.024873437359929085, -0.03044048137962818, 0.018003761768341064, -0.015549326315522194, -0.01400673482567072, 0.009550358168780804, 0.014219269156455994, -0.008131173439323902, 0.0002948064648080617, -0.02113008126616478, -0.0025846983771771193, -0.007774663157761097, 0.006413754541426897, -0.011038102209568024, 0.004775179084390402, 0.007404441479593515, -0.0004503511299844831, 0.005364791955798864, -0.01379419956356287, -0.0008608520147390664, 0.00592355290427804, 0.005375076085329056, -0.008234012871980667, -0.024242689833045006, 0.022542409598827362, -0.001779122743755579, 0.018511103466153145, -0.030303360894322395, 0.0016899951733648777, 0.01888132467865944, -0.003657656954601407, -0.006012680474668741, -0.020773570984601974, 0.008899041451513767, -0.023735348135232925, -0.015549326315522194, 0.03403300419449806, -0.012649253942072392, -0.00546420319005847, -0.0052859485149383545, 0.03414270281791687, -0.01693423092365265, 0.008439691737294197, -0.03661084920167923, -0.009762892499566078, -0.02697136253118515, 0.01660514436662197, 0.02983715571463108, -0.0020567893516272306, -0.00646174605935812, -0.003945607226341963, 0.006201219744980335, -0.026011528447270393, -0.02326914295554161, -0.021280912682414055, -0.016536585986614227, 0.008282004855573177, 0.025175100192427635, -0.0010275376262143254, 0.007411297410726547, -0.01322515495121479, 0.0278763510286808, -0.024146705865859985, -0.0028383692260831594, 0.20480136573314667, 0.0005878989468328655, 0.03844824805855751, 0.0377352274954319, 0.00907044019550085, 0.028795048594474792, 0.023762771859765053, 0.006749696563929319, -0.011888241395354271, 0.005477915517985821, -0.020691299811005592, 0.01908700354397297, -0.013855903409421444, -0.002658399986103177, 0.00964634120464325, 0.019553210586309433, 0.00053819315508008, -0.053394246846437454, -0.01661885716021061, 0.00774723943322897, 0.01918298751115799, 0.012073352932929993, -0.02780779078602791, -0.02049933187663555, 0.018401408568024635, -0.0005913269123993814, -0.008076325990259647, 0.008268292993307114, 0.024996845051646233, 0.0018442543223500252, -0.007260465994477272, 0.020033126696944237, -0.008288860321044922, -0.0016351474914699793, -0.03087926283478737, -0.003122891765087843, 0.023502245545387268, -0.0020225094631314278, 0.04080669954419136, -0.030193665996193886, -0.002382447477430105, -0.007219330407679081, -0.029370950534939766, -0.021815678104758263, 0.003907899372279644, 0.016865672543644905, -0.018949884921312332, -0.016687417402863503, -0.008391699753701687, 0.015576750040054321, -0.0069176675751805305, -0.008796202018857002, 0.033895887434482574, 0.02182938903570175, -0.016879383474588394, -0.02265210635960102, -0.013773632235825062, 0.016152651980519295, 0.015206528827548027, 0.018332848325371742, -0.024324961006641388, 0.019443513825535774, -0.0030440480913966894, 0.030001699924468994, -0.004278121516108513, -0.00831628404557705, -0.02852081134915352, 0.010599320754408836, -0.009838308207690716, -0.020979249849915504, -0.0053270841017365456, -0.012587550096213818, 0.004806031007319689, -0.008288860321044922, -0.03279893100261688, -0.017194757238030434, 0.01693423092365265, 0.010688448324799538, 0.012388727627694607, 0.027656959369778633, -0.02132204920053482, -0.01712619885802269, -0.0019230978796258569, 0.0022384722251445055, -0.012039072811603546, -0.03331998735666275, 0.027643246576189995, -0.024174129590392113, -0.0012949202209711075, -0.0057075899094343185, -0.018305424600839615, -0.002178482711315155, -0.001042106538079679, 0.00012180049088783562, 0.022693241015076637, 0.011991080828011036, -0.019237834960222244, 0.024983134120702744, -0.009262407198548317, 0.0030406201258301735, -0.023337701335549355, 0.053366824984550476, 0.011086094193160534, 0.008384844288229942, 0.00836427602916956, -0.013609088957309723, 0.006040104199200869, 0.00933096744120121, 0.012004793621599674, -0.018607087433338165, -0.0050665573216974735, -0.013931319117546082, 0.011874529533088207, -0.021212352439761162, -0.0020019414369016886, 0.016989078372716904, -0.0067428406327962875, -0.008693362586200237, -0.0019402378238737583, 0.012155624106526375, -0.023090887814760208, -0.015631597489118576, -0.019100716337561607, -0.009756037034094334, -0.015261376276612282, -0.010194818489253521, -0.024750029668211937, -0.003664512885734439, -0.012621830217540264, 0.0029446366243064404, 0.03477345034480095, -0.045989807695150375, -0.01400673482567072, 0.0019419518066570163, -0.0027800933457911015, -0.009248695336282253, -0.009824596345424652, -0.029919426888227463, -0.008727642707526684, 0.0011363760568201542, -0.01652287319302559, 0.0031537434551864862, -0.010743295773863792, -0.011367188766598701, 0.012361302971839905, 0.0018973880214616656, -0.007301601581275463, 0.004778606817126274, 0.009255551733076572, 0.004315829370170832, -0.015398495830595493, 0.0022024784702807665, 0.0013729068450629711, -0.019224124029278755, -0.004134146496653557, -0.021568862721323967, -0.004500940442085266, -0.02203506790101528, 0.010037131607532501, -0.004010738804936409, -0.03159228339791298, 0.012395583093166351, 0.026189783588051796, 0.0005639030714519322, -0.013362274505198002, -0.029069287702441216, -0.17507390677928925, 0.021102657541632652, -0.0020002275705337524, -0.030632447451353073, 0.03938065841794014, 0.012189904227852821, 0.03137289360165596, 0.010702160187065601, 0.010393641889095306, 0.0005129118217155337, 0.003057759953662753, 0.005477915517985821, -0.015302511863410473, -0.0034142702352255583, 0.005793289747089148, 0.0119430897757411, -0.00021157076116651297, 0.022556122392416, 0.02801346965134144, 0.012128200381994247, 0.013444545678794384, -0.015357359312474728, 0.019347529858350754, 0.006838824134320021, -0.0021699126809835434, 0.018620798364281654, -0.0038873315788805485, -0.016125228255987167, -0.01549447886645794, -0.036062370985746384, 0.02165113389492035, 0.02625834196805954, 0.020636452361941338, -0.009159567765891552, 0.027135906741023064, -0.009392671287059784, 0.001244357437826693, -0.034416940063238144, -0.028657929971814156, 0.012244751676917076, 0.030934110283851624, 0.03641888126730919, 0.03869505971670151, -0.001612008549273014, -0.011915666051208973, 0.028328843414783478, 0.014150709845125675, -0.03392330929636955, 0.006900527980178595, -0.022624680772423744, 0.03493799269199371, -0.0011295201256871223, 0.004164998419582844, -0.004555788356810808, 0.010119402781128883, -0.009721756912767887, -0.01897730864584446, 0.002653258154168725, 0.003433123929426074, -0.00035586737794801593, 0.011668850667774677, -0.027725519612431526, -0.0051522571593523026, -0.0031057517044246197, 0.003527393564581871, -0.021760830655694008, -0.014383812434971333, 0.024366095662117004, -0.03480087220668793, 0.006975943688303232, 0.010530760511755943, 0.0008835623739287257, 0.004713475238531828, -0.007089066784828901, -0.003068043850362301, 0.020129110664129257, -0.0068456800654530525, 0.002522994764149189, 0.006787404417991638, -0.010935262776911259, 0.0015014561358839273, 0.018799053505063057, -0.0032462989911437035, -0.006403470411896706, -0.009104720316827297, -0.0178392194211483, -0.0024612911511212587, 0.007644400000572205, -0.0007083067903295159, -0.023543380200862885, 0.025586457923054695, -0.023749059066176414, -0.020458197221159935, -0.00754156056791544, 0.023310277611017227, 0.025723576545715332, 0.01672855205833912, -0.020965538918972015, 0.01173741091042757, -0.0014337535249069333, 0.02317315898835659, -0.0042198458686470985, -0.035952676087617874, -0.024859726428985596, 0.039929136633872986, 0.02206249162554741, -0.037790074944496155, 0.01153173204511404, 0.015864700078964233, 0.006550873629748821, -0.019566921517252922, -0.004254125524312258, 0.006238927133381367, 0.010037131607532501, -0.016468025743961334, 0.043329693377017975, -0.0003260867961216718, -0.015604174695909023, 0.006783976685255766, -0.0033731344155967236, 0.02492828480899334, 0.008905897848308086, -0.004987713880836964, 0.008494539186358452, -0.007404441479593515, -0.014328964985907078, -0.11342506855726242, -0.022336730733513832, 0.002617264399304986, 0.0076032644137740135, 0.009063584730029106, 0.022281883284449577, -0.00974232517182827, 0.003945607226341963, 0.004127290565520525, 0.030824415385723114, 0.005759010091423988, -0.03252469375729561, -0.0063074869103729725, -0.0132731469348073, -0.024174129590392113, -0.019128140062093735, 0.0076512559317052364, -0.00774723943322897, -0.018072322010993958, 0.014767746441066265, 0.018332848325371742, 0.007534704636782408, 3.079827729379758e-05, 0.010002851486206055, -0.005652742460370064, -0.0011535160010680556, -0.030796991661190987, 0.011888241395354271, 0.010133114643394947, 0.001308632199652493, -0.002080785110592842, -0.008576811291277409, -0.001953949686139822, -0.020567892119288445, 0.004785462748259306, -0.010887270793318748, -0.01794891431927681, -0.020252518355846405, 0.04028564691543579, -0.01102439034730196, -0.011634571477770805, -0.004216418135911226, -0.007987198419868946, -0.014246693812310696, -0.02768438309431076, 0.0017568408511579037, -0.041793957352638245, 0.017373012378811836, 0.029562916606664658, -0.045770417898893356, -0.03669311851263046, -0.014699187129735947, -0.04162941500544548, 0.004809458740055561, 0.020046839490532875, 0.006118948105722666, 0.0018751062452793121, -0.010414209216833115, 0.010667880065739155, 0.020759860053658485, -0.008425979875028133, -0.009509222581982613, -0.020554181188344955, 0.019553210586309433, 0.017592404037714005, 0.0062354994006454945, -0.004785462748259306, -0.018497390672564507, 0.01837398298084736, -0.014946001581847668, 0.015563038177788258, 0.007767807226628065, -0.0321681834757328, 0.029672613367438316, -0.01866193488240242, -0.004991142079234123, -0.006406898610293865, 0.019854871556162834, 0.010277090594172478, 0.0012580694165080786, -0.012244751676917076, -0.021404320374131203, -0.030906686559319496, -0.02326914295554161, 0.021472878754138947, 0.023776482790708542, 0.002317315898835659, 0.0265462938696146, 0.01682453602552414, -0.025819560512900352, 0.008425979875028133, 0.02789006195962429, 0.014575779438018799, 0.018236864358186722, 0.01148374006152153, 0.0021373468916863203, 0.007431865204125643, -0.00750728091225028, 0.0026481160894036293, 0.029261255636811256, -0.044646039605140686, 0.0025452766567468643, -0.051447153091430664, -0.008679650723934174, -0.02307717502117157, -0.022912632673978806, 0.006430894136428833, -0.011538587510585785, 0.0006843109149485826, -0.014397524297237396, -0.0004201420524623245, -0.002207620535045862, -0.041190631687641144, -0.012436718679964542, -0.014644339680671692, -0.003633660962805152, -0.009324111044406891, -0.016975367441773415, 0.00038457673508673906, -0.005042561795562506, 0.018812766298651695, 0.009639485739171505, 0.013698216527700424, -0.018305424600839615, 0.017071351408958435, -0.009776605293154716, -0.03438951447606087, -0.0015357359079644084, -0.01579614169895649, 0.03545904532074928, -0.013293714262545109, -0.02011539787054062, 0.0055327629670500755, -0.0017414148896932602, -0.014959713444113731, -0.009612062014639378, -0.028219148516654968, 0.004476944450289011, -0.013492537662386894, 0.019402379170060158, 0.009783460758626461, 0.03762553259730339, -0.011764834634959698, -0.015480767004191875, 0.006040104199200869, -0.033703919500112534, -0.0004872019635513425, -0.005916696973145008, -0.009008737280964851, -0.00011815825564553961, 0.019978279247879982, 0.010894127190113068, 0.02442094497382641, 0.003323428565636277, -0.012279031798243523, -0.011545443907380104, 0.023310277611017227, -0.002420155331492424, -0.005961260758340359, -0.023968450725078583, -0.00784322340041399, -0.01409586239606142, 0.024887150153517723, 0.011216357350349426, 0.0042198458686470985, -0.00559103861451149, 0.013060611672699451, -0.00973546877503395, -0.025065405294299126, 0.0008955603116191924, 0.0003663655952550471, -0.015631597489118576, -0.028383690863847733, -0.004566072020679712, 0.015480767004191875, 0.022103628143668175, 0.02173340693116188, -0.002387589542195201, -0.03578813374042511, 0.011456316336989403, -0.01251213438808918, 0.01866193488240242, 0.022720664739608765, 0.023707924410700798, -0.03938065841794014, 0.005964688956737518, 0.04368620365858078, -0.003157171420753002, 0.008391699753701687, -0.014959713444113731, 0.010496481321752071, 0.008686506189405918, 0.01400673482567072, -0.014850018545985222, -0.009927435778081417, -0.007774663157761097, 0.0013009192189201713, 0.001681425143033266, -0.010647312738001347, 0.001308632199652493, -0.01148374006152153, -0.0011363760568201542, 0.01938866637647152, -0.026080086827278137, 0.003955891355872154, -0.01405472680926323, -0.04689479619264603, 0.009001880884170532, 0.0048368824645876884, -0.02399587444961071, -0.0012006507022306323, 0.029809731990098953, -0.010619888082146645, 0.01867564581334591, 0.025723576545715332, 0.0045592160895466805, -0.03499284014105797, 0.021705983206629753, -0.025901831686496735, -0.009091008454561234, -0.02318686991930008, 0.01825057715177536, -0.012073352932929993, 0.014644339680671692, 0.035842981189489365, -0.004610635805875063, -0.005820713471621275, 0.02092440240085125, 0.031098652631044388, -0.013609088957309723, 0.0025949825067073107, -0.0017979765543714166, -0.029069287702441216, -0.0045592160895466805, -0.019004732370376587, -0.002552132587879896, 0.006180651485919952, -0.041903652250766754, 0.004596923943608999, 0.009831452742218971, 0.019525784999132156, 0.07097294181585312, 0.03282635658979416, -0.014424948953092098, -0.0062766349874436855, -0.016577720642089844, -0.019251547753810883, 0.0038119161035865545, -0.0020722150802612305, 0.010791287757456303, -0.026614852249622345, -0.0013540529180318117, 0.01825057715177536, 0.005529335234314203, -0.031235773116350174, -0.006633145269006491, 0.02451692707836628, -0.011922521516680717, 0.01772952266037464, -0.006763408426195383, 0.018113456666469574, 0.010606176219880581, -0.0047888909466564655, -0.0024013014044612646, -0.006022964604198933, -0.030824415385723114, 0.011901953257620335, 0.034087855368852615, -0.0038050601724535227, -0.007987198419868946, -0.038311127573251724, -0.002380733611062169, 0.0005776149919256568, -0.009687477722764015, -0.02429753728210926, 0.0043226853013038635, 0.007390729151666164, 0.0023036040365695953, -0.015302511863410473, 0.006622861139476299, 0.010338793508708477, 0.009701189585030079, 0.0016925660893321037, -0.033594224601984024, -0.02491457387804985, -0.01970404013991356, 0.0076923915185034275, -0.019141850993037224, -0.008288860321044922, -0.026998786255717278], "741aa787-463c-4189-b641-510278e53f0f": [0.008449098095297813, 0.007714984938502312, 0.013057696633040905, -0.018760668113827705, -0.0052441502921283245, -0.0066885859705507755, 0.0019967197440564632, -0.03877204656600952, -0.01533480640500784, -0.0411103330552578, 0.012935345061123371, 0.01984824240207672, -0.017278846353292465, 0.015212454833090305, -0.0041191899217665195, 0.00911523774266243, 0.036569707095623016, 0.005774343386292458, -0.008136420510709286, -0.0015370493056252599, -0.00037300423718988895, 0.013948149047791958, 0.0017622113227844238, -0.024647166952490807, -0.001825086772441864, 0.011399145238101482, 0.020337652415037155, -0.04067530483007431, -0.018665505573153496, -0.021724309772253036, 0.028630411252379417, 0.0009601247729733586, 0.0010510392021387815, 0.0003972197591792792, -0.03368763253092766, 0.021493200212717056, 0.013642268255352974, 0.003155666636303067, 0.012622666545212269, -0.01208567712455988, 0.03673284500837326, 0.04062092304229736, -0.013526713475584984, -0.00687551312148571, 0.003670565551146865, 0.0062059746123850346, 0.007449888624250889, -0.034013908356428146, -0.020745491608977318, 0.020147325471043587, 0.014478341676294804, 0.016857411712408066, 0.00040019358857534826, -0.022376853972673416, -0.010637842118740082, 0.016068920493125916, -0.007674200925976038, 0.02736610546708107, 0.00637930678203702, 0.004894087091088295, 0.02156117372214794, 0.0023739722091704607, -0.008700599893927574, -0.013200441375374794, -0.009794971905648708, -0.0031148826237767935, 0.00043418031418696046, -0.008245177567005157, -0.005913688801229, -0.001434239442460239, 0.0052339546382427216, 0.023953838273882866, -0.011541889049112797, 0.021139739081263542, 0.031376536935567856, -0.011854566633701324, -0.019508374854922295, 0.02273031696677208, 0.005155785009264946, 0.00010806714271893725, -0.014505530707538128, -0.029908310621976852, 0.0023943642154335976, -0.008428705856204033, 0.006348718889057636, 0.006022446323186159, -0.015076507814228535, 0.0108553571626544, -0.009319158270955086, -0.01794498600065708, -0.0008526417659595609, 0.021697120741009712, 0.006246758624911308, 0.014070500619709492, -0.014954155310988426, 0.014464747160673141, -0.02890230529010296, 0.030071446672081947, -0.016938980668783188, -0.016680680215358734, 0.007035250309854746, 0.00036408271989785135, -0.008952101692557335, -0.006236562505364418, -0.02147960476577282, 0.0028395901899784803, 0.035645268857479095, 0.022879857569932938, 0.009896932169795036, 0.0056146057322621346, -0.022376853972673416, 0.040566544979810715, -0.007823741994798183, -0.05293771252036095, 0.019657917320728302, -0.01840720698237419, 0.002013712888583541, -0.03230097517371178, -0.012044892646372318, -0.010678626596927643, 0.0323825441300869, 0.0001305302430409938, 0.011800188571214676, -0.008245177567005157, 0.018910208716988564, 0.010603855364024639, -0.0034037698060274124, -0.028739167377352715, -0.0165583286434412, -0.01874707266688347, 0.016123298555612564, 0.010916533879935741, 0.02392664924263954, -0.008578247390687466, -0.011093264445662498, 0.006831330247223377, -0.019277265295386314, -0.006804140750318766, -0.006562835071235895, -0.024320894852280617, 0.019046155735850334, 0.02213215082883835, 0.0005284934304654598, -0.01980745978653431, 0.011473915539681911, 0.02092222310602665, 0.0011224113404750824, -0.00036004677531309426, -0.009828958660364151, 0.013975338079035282, 0.02138444222509861, -0.0053970906883478165, -0.004999446216970682, 0.015797026455402374, 0.018488774076104164, -0.006678389851003885, -0.0031590652652084827, 0.01228959672152996, 0.033415742218494415, -0.016938980668783188, 0.006403097417205572, 0.016952574253082275, 0.003697754815220833, 0.0038472963497042656, -0.018475178629159927, 0.01678943820297718, 0.05467782914638519, -0.00604283856227994, -0.007144007831811905, 0.0036161867901682854, 0.0015328009612858295, 0.008598639629781246, -0.009074453264474869, 0.023450834676623344, 0.02119411714375019, -0.00010174773342441767, 0.007354725617915392, 0.007239170838147402, -0.004554220009595156, 0.0011275094002485275, 0.039859622716903687, -0.009054061956703663, 0.0044828481040894985, 0.047662973403930664, -0.0158242154866457, 0.0004936570767313242, -0.0010255492525175214, 0.007048845291137695, 0.013118873350322247, 0.006005452945828438, 0.01371024176478386, 0.025775525718927383, -0.02300221100449562, -0.015429969877004623, -0.637753963470459, 0.0021360651589930058, -0.00637930678203702, -0.02593866176903248, 0.02180587872862816, 0.0009567260858602822, 0.009896932169795036, 0.01563389040529728, -0.01169143058359623, 0.029908310621976852, 0.0032168428879231215, -0.0010255492525175214, 0.022607963532209396, -0.01523964386433363, -0.014505530707538128, -0.018339233472943306, 0.011562281288206577, -0.03920707851648331, -0.011637051589787006, 0.007823741994798183, 0.012792600318789482, 0.03015301562845707, -0.02152038924396038, -0.0012626065872609615, 0.016259245574474335, 0.005098007619380951, -0.003058804664760828, 0.0003957328444812447, 0.031104642897844315, 0.02630571834743023, -0.012826587073504925, 0.011623457074165344, 0.018937399610877037, -0.018679099157452583, 0.03692317008972168, 0.00757224066182971, -0.013438347727060318, 0.028168192133307457, 0.02207777090370655, 0.040756870061159134, -0.030397720634937286, -0.005373300053179264, 0.011827377602458, 0.023858675733208656, -0.0013773117680102587, 0.0007957140333019197, 0.017550740391016006, 0.019277265295386314, -0.017047736793756485, -0.008700599893927574, 0.005121798254549503, 0.009523077867925167, -0.012765411287546158, -0.03618905693292618, 0.004887289833277464, -0.003381678368896246, 0.024783113971352577, -0.01178659312427044, -0.0031216798815876245, -0.018162501975893974, 0.0029840338975191116, -0.0009108440135605633, 0.004418273456394672, -0.005570422857999802, -0.0009856148390099406, 0.006518652196973562, -0.00026870748843066394, -0.02165633626282215, 0.004357097204774618, -0.02703983150422573, 0.012493517249822617, 0.02032405696809292, -0.0158242154866457, -0.01632721908390522, -0.011949730105698109, 0.03442174568772316, 0.030370529741048813, -0.02078627608716488, -0.009033669717609882, 0.012445935979485512, 0.0002580866275820881, 0.014070500619709492, -0.014383179135620594, -0.024470437318086624, 0.03580840677022934, 0.00451003760099411, -0.026795128360390663, -0.004673173651099205, 0.012112866155803204, 0.02319253608584404, -0.0036025920417159796, 0.012792600318789482, -0.0181896910071373, -0.011412739753723145, -0.014614288695156574, 0.011473915539681911, -0.0024096581619232893, -0.003748734947293997, -0.011827377602458, -0.033796392381191254, -0.008313151076436043, -0.017047736793756485, -0.01615048758685589, -0.026455260813236237, 0.017428388819098473, -0.024239325895905495, 0.012928547337651253, 0.017170090228319168, 0.029609227553009987, -0.006036040838807821, -0.012140055187046528, -0.027583619579672813, 0.0019763275049626827, -0.0051761772483587265, 0.015715457499027252, -0.023505214601755142, -0.003391874488443136, 0.0015990750398486853, 0.01148071326315403, -0.006382705643773079, 0.019127724692225456, 0.021316468715667725, -0.03336136043071747, -0.01855674758553505, 0.0020918825175613165, 0.0021972411777824163, 0.0023807694669812918, -0.0048363097012043, -0.02124849520623684, -0.011650647036731243, -0.0016033233841881156, -0.03390514850616455, 0.0028327929321676493, -0.012180839665234089, -0.002630571834743023, 0.0029381518252193928, 0.028630411252379417, -0.02267593704164028, 0.004401280079036951, -0.003497233148664236, -0.010862154886126518, -0.012208028696477413, 0.015932973474264145, -0.015130886808037758, 0.011983716860413551, -0.02684950642287731, -0.027311725541949272, 0.0011631953530013561, -0.006233164109289646, -0.014614288695156574, 0.008245177567005157, -0.007694592699408531, -0.01196332462131977, 0.024647166952490807, -0.007776160724461079, 0.012731424532830715, -0.007708187680691481, 0.026033826172351837, -0.012377962470054626, -0.014124879613518715, -0.014043311588466167, 0.03260006010532379, -0.02203698828816414, 0.008992885239422321, -0.009183211252093315, -0.020745491608977318, 0.003259326098486781, 0.054813776165246964, -0.018380016088485718, -0.045841284096241, -0.005064020864665508, -0.003969648387283087, 0.028494464233517647, 0.010909736156463623, -0.026523234322667122, 0.0028565835673362017, -0.01148071326315403, 0.005685977637767792, -0.002467435784637928, 0.008938506245613098, -0.005407286807894707, 0.00936673954129219, -0.0035584094002842903, -0.0029228576458990574, 0.03548213467001915, -0.0013977037742733955, 0.014342394657433033, -0.0056587886065244675, -0.01795858144760132, -0.006715775467455387, 0.018842235207557678, 0.006008851807564497, -0.025585200637578964, 0.006573031190782785, -0.009196805767714977, 0.007320738863199949, 0.021724309772253036, 0.0037691269535571337, 0.018121717497706413, 0.04007713869214058, 0.03211065009236336, 0.00959784910082817, -0.00555342948064208, -0.025340495631098747, 0.005002844613045454, -0.03923426568508148, 0.03056085668504238, -0.010834965854883194, 0.006906101014465094, 0.01215364970266819, 0.009584254585206509, 0.003599193412810564, -0.011820579878985882, -0.011650647036731243, 0.00038638649857603014, 0.031240589916706085, -0.024783113971352577, 0.007293549366295338, -0.01886942610144615, 0.007395509630441666, 0.018583936616778374, 0.01674865372478962, 0.021234901621937752, 0.009169616736471653, -0.0063691106624901295, 0.02890230529010296, 0.017265252768993378, -0.00021124868362676352, -0.026455260813236237, -0.02629212476313114, -0.017877012491226196, -0.007735376711934805, 0.01980745978653431, -0.013044102117419243, 0.029255766421556473, 0.00766740320250392, 0.008408313617110252, -0.027950676158070564, 0.02931014448404312, 0.013608281500637531, -0.0017927993321791291, 0.026659181341528893, -0.005373300053179264, -0.023219725117087364, 0.010420328006148338, 0.012072081677615643, 0.02207777090370655, 0.011603065766394138, 0.0023552794009447098, 0.016775842756032944, 0.0029330537654459476, -0.0024096581619232893, -0.025585200637578964, 0.0054276785813272, -0.0029398510232567787, -0.0006933290278539062, 0.005040230229496956, 0.006708978209644556, 0.02630571834743023, 0.0061413999646902084, -0.009842553175985813, -0.026428071781992912, 0.02369553968310356, 0.005199967883527279, 0.020188109949231148, 0.0057097687385976315, -0.013900567777454853, -0.027583619579672813, -0.022091366350650787, -0.009910526685416698, -0.04758140444755554, -0.03983243182301521, -0.004472651984542608, -0.0003360436821822077, 0.03325260430574417, 0.011698228307068348, -0.013200441375374794, 0.015973757952451706, 0.0014503832207992673, 0.007946094498038292, -0.023953838273882866, -0.025435660034418106, 0.00837432686239481, 0.0014809712301939726, -0.00651525380089879, -0.012106068432331085, -0.01786341890692711, -0.010943722911179066, -0.014002527110278606, 0.007137210574001074, -0.0020935817155987024, 0.013852985575795174, -0.0018913608510047197, 0.0017860019579529762, -0.005172778386622667, -0.004353698343038559, 0.014043311588466167, -0.004513435997068882, 0.0016322120791301131, 0.002571095246821642, 0.0042721303179860115, 0.0038710872177034616, -0.031104642897844315, -0.0009397327085025609, 0.030044257640838623, -0.007782958447933197, 0.009509483352303505, -0.008170407265424728, -0.0007995375199243426, -0.028222570195794106, 0.009060858748853207, -0.006542443297803402, -0.010977709665894508, -0.02328769862651825, 0.015756241977214813, -0.014736640267074108, 0.02824975922703743, 0.01122241374105215, 0.027624404057860374, -0.011718620546162128, -0.01289456058293581, -0.011242805980145931, -0.00791210774332285, -0.005801532883197069, 0.07074674963951111, -0.0008666613139212132, -0.007966486737132072, 0.009054061956703663, -0.008238379843533039, -0.030506476759910583, -0.03572683781385422, -0.022472018375992775, 0.011752607300877571, -0.007823741994798183, -0.01753714680671692, 0.018216880038380623, -0.00839471910148859, 0.0021037778351455927, 0.022526396438479424, 0.00510140648111701, 0.0022414240520447493, -0.02213215082883835, -0.0077625662088394165, -0.03673284500837326, 0.01952197030186653, 0.02472873590886593, 0.016680680215358734, 0.011874958872795105, 0.009339549578726292, -0.010175622999668121, 0.034394558519124985, 0.012459530495107174, -0.0009839155245572329, -0.02969079650938511, -0.02421213686466217, 0.0028141001239418983, 0.022811884060502052, 0.016531139612197876, -0.01804015040397644, 0.050490666180849075, 0.02069111354649067, 0.04578690603375435, -0.008360732346773148, -0.008285962045192719, 0.04752702638506889, 0.010263988748192787, 0.004418273456394672, -0.001009405474178493, 0.0037759242113679647, -0.0307511817663908, -0.018475178629159927, 0.025245333090424538, -0.025354091078042984, -0.029772363603115082, 0.0030231184791773558, 0.005750552751123905, 0.01054947730153799, 0.011412739753723145, -0.0026526632718741894, -0.011433131992816925, -0.009312360547482967, 0.006562835071235895, -0.021969014778733253, -0.008836546912789345, 0.0020154123194515705, -0.016204867511987686, 0.00936673954129219, -0.0036875589285045862, -0.002171751344576478, -0.0034258610103279352, 0.00980856642127037, 0.02844008430838585, -0.029989879578351974, 0.0006975773721933365, 0.018203286454081535, -0.03240973502397537, -0.028086623176932335, -0.009679417125880718, 0.02505500800907612, 0.017822634428739548, 0.017278846353292465, 0.02384508028626442, -0.00734113110229373, 0.008469490334391594, -0.00862582866102457, -0.024062596261501312, 0.00837432686239481, -0.046357881277799606, -0.010325164534151554, 0.00013212335761636496, 0.004764937795698643, 0.010610653087496758, -0.0073751178570091724, 0.030452098697423935, 0.004503239877521992, -0.008265569806098938, -0.013560700230300426, -0.012785803526639938, 0.008986088447272778, 0.017142899334430695, -0.002700244775041938, 0.0323825441300869, 0.02351880818605423, -0.016871007159352303, 0.00734113110229373, -0.009849350899457932, -0.011045683175325394, -0.0322737880051136, -0.017754660919308662, 0.0201337318867445, 0.015253238379955292, 0.02273031696677208, -0.012935345061123371, 0.016721464693546295, 0.01563389040529728, -0.024742329493165016, 0.013764620758593082, 0.04021308571100235, 0.0011088167084380984, 0.018162501975893974, -0.012554693035781384, -0.006770153995603323, 0.008877330459654331, -0.024280110374093056, 0.005685977637767792, -0.04494403675198555, -0.012187636457383633, 0.009665822610259056, -0.02221371792256832, 0.01702054776251316, -0.0019253474893048406, -0.026509638875722885, -0.00732753612101078, -0.01590578444302082, 0.015185264870524406, 0.03094150684773922, 0.007239170838147402, -0.017509955912828445, -0.005339313298463821, -0.004312914330512285, -0.021030981093645096, 0.01138555072247982, -0.02500062994658947, 0.011174832470715046, 0.011725417338311672, 0.002127568470314145, 0.00569277536123991, -0.021126143634319305, -0.006987669039517641, -0.03197470307350159, -0.023396456614136696, -0.012887762859463692, 0.005383496172726154, 0.028820736333727837, 0.02374991774559021, -0.0017205775948241353, -0.005318921059370041, 0.008020865730941296, 0.020745491608977318, -0.006787147372961044, 0.011161237955093384, -0.005424280185252428, 0.030968697741627693, 0.03811950236558914, 0.0378476083278656, -0.014233637601137161, 0.019426807761192322, 0.009998892433941364, -0.019589943811297417, 0.01150110550224781, 0.0033799789380282164, 0.018570343032479286, -0.0229206420481205, -0.01623205654323101, 0.02175149880349636, -0.008204394020140171, -0.0043740905821323395, 0.007939296774566174, 0.02490546740591526, 0.0323825441300869, 0.028548842296004295, -0.011242805980145931, -0.020704708993434906, -0.024320894852280617, -0.012466328218579292, 0.02955484949052334, 0.00218534586019814, 0.042469803243875504, -0.01646316610276699, -0.013886972330510616, 0.040838439017534256, -0.005189771763980389, -0.018339233472943306, -0.0013662660494446754, 0.019821053370833397, -0.034122664481401443, 0.008401516824960709, 0.02077268250286579, 0.027284536510705948, -0.025761932134628296, 0.01651754416525364, -0.049974068999290466, -0.010746600106358528, 0.0024521416053175926, -0.001002608216367662, 0.012208028696477413, -0.0004928074195049703, -0.005267941392958164, -0.017129305750131607, -0.002499723108485341, 0.0022975020110607147, -0.019168509170413017, -0.004292522557079792, 0.0010697318939492106, -0.015130886808037758, -0.02922857739031315, -0.0116166602820158, 0.013785012997686863, -0.004747944418340921, 0.004173568915575743, 0.013152859173715115, 0.020201705396175385, -0.014369583688676357, -0.0005926433950662613, 0.01619127206504345, -0.018298448994755745, 0.06759278476238251, 0.008666613139212132, 0.02421213686466217, 0.024266516789793968, 0.020419219508767128, 0.0017639106372371316, -0.003915269859135151, 0.0012592078419402242, 0.0024334490299224854, 0.027202969416975975, 0.03703192621469498, -0.007198386825621128, -0.008782167918980122, -0.0012073781108483672, -0.008238379843533039, -0.008544260635972023, -0.03599873185157776, 0.018053743988275528, 0.007103223819285631, -0.012235218659043312, -0.04440024867653847, 0.002853184938430786, -0.024919060990214348, 0.007891715504229069, 0.005550031084567308, -0.0006601919885724783, -0.014763830229640007, 0.0044760508462786674, -0.01646316610276699, 0.022186528891324997, -0.003510827897116542, 0.007626619189977646, -0.005274738650768995, 0.016966169700026512, -0.002438546856865287, -0.021438822150230408, -0.026971857994794846, 0.01039313804358244, -0.00165260408539325, 0.03273600712418556, 0.0015591406263411045, 0.016857411712408066, 0.018257664516568184, -0.0014095990918576717, 0.01124960370361805, -0.001503912266343832, 0.010712613351643085, 0.031023075804114342, -0.011494307778775692, -0.01855674758553505, -0.0033731816802173853, -0.011609862558543682, -0.00037109246477484703, -0.024089785292744637, -0.010216407477855682, -0.015593105927109718, -0.030316151678562164, -0.014614288695156574, -0.0027495254762470722, 0.0053461105562746525, 0.002319593448191881, 0.007504267152398825, 0.0038201070856302977, -0.007123616058379412, -0.016204867511987686, 0.002513317856937647, 0.00037916432484053075, -0.03319822624325752, -0.002866779686883092, -0.02003856934607029, -0.004955263342708349, -0.023736324161291122, 0.004238143563270569, -0.002261816058307886, 0.002615277888253331, 0.03197470307350159, -0.011949730105698109, 0.02198260836303234, -0.0009218897321261466, 0.009448307566344738, -0.013091683387756348, 0.008850141428411007, -0.010495098307728767, -0.010936925187706947, 0.022050581872463226, 0.0004409776593092829, -0.007973283529281616, -0.02467435598373413, -0.009584254585206509, 0.001921948860399425, -0.0018029953353106976, 0.0044250707142055035, 0.0355365127325058, 0.018991777673363686, 0.012867371551692486, -0.01851596310734749, -0.023831486701965332, 0.01560670044273138, -0.015443564392626286, -0.0028259954415261745, 0.007402306888252497, -0.003707950934767723, -0.01757792942225933, -0.01604173146188259, -0.007470280397683382, -0.019304456189274788, -0.020663924515247345, 0.0018556747818365693, -0.00707603432238102, 0.002775015542283654, 0.015171670354902744, 0.007055642548948526, -0.024144163355231285, -0.0026203759480267763, -0.023736324161291122, 0.016395192593336105, -0.01619127206504345, 0.02111254818737507, -0.01721087284386158, 0.044780898839235306, 0.02319253608584404, 0.0052373530343174934, -0.007884918712079525, -0.006607017945498228, -0.002504821168258786, -0.0007812696858309209, -0.03681441396474838, 0.009013277478516102, -0.019086940214037895, 0.04507998004555702, 0.006705579347908497, -0.029201388359069824, 0.0018046946497634053, -0.011453523300588131, -0.03270881623029709, -0.021139739081263542, 0.008265569806098938, 0.026740748435258865, 0.035183049738407135, 0.001703584217466414, 0.004557618871331215, 0.022975020110607147, -0.006573031190782785, 0.005794735159724951, -0.010094054974615574, 0.01491337176412344, 0.006107413209974766, 0.03540056571364403, -0.0033799789380282164, -0.011834175325930119, -0.020120136439800262, -0.01500853430479765, 0.02268953248858452, -0.011052480898797512, -0.008612234145402908, 0.0034938345197588205, 0.009312360547482967, -0.02871197834610939, -0.008251975290477276, -0.02607460878789425, 0.0006096367142163217, 0.0004826113872695714, -0.001060385606251657, -0.011664241552352905, -0.008775370195508003, -0.0032610255293548107, -0.00851027388125658, -0.01984824240207672, -0.010338759049773216, 0.008761775679886341, 0.011208819225430489, 0.005342712160199881, -0.005179575644433498, -0.031050264835357666, 0.026278529316186905, -0.002062993822619319, 0.009108440019190311, -0.024062596261501312, -9.919873264152557e-05, 0.002817498752847314, -0.01245273370295763, -0.008319948799908161, -0.013581092469394207, 0.009985297918319702, -0.018080933019518852, -0.005597612354904413, 0.01627284102141857, 0.0019967197440564632, -0.01897818222641945, -0.00195423630066216, 0.018203286454081535, -0.016531139612197876, -0.0021377645898610353, -0.017849823459982872, -0.004571213386952877, -0.021588362753391266, 0.014954155310988426, 0.025802716612815857, -0.017985770478844643, 0.008992885239422321, 0.012180839665234089, 0.031131833791732788, -0.022064177319407463, -0.031566862016916275, -0.02709421142935753, -0.03588997200131416, 0.014396773651242256, 0.007477077655494213, 0.005947675555944443, 0.00013382270117290318, -0.023722728714346886, 0.019086940214037895, -0.04067530483007431, -0.019182102754712105, 0.18097247183322906, -0.005985060706734657, 0.020895034074783325, 0.03841858357191086, 0.021398037672042847, 0.017591524869203568, 0.018339233472943306, 0.0015701863449066877, -0.0038778844755142927, 0.005804931279271841, -0.022893453016877174, 0.0038472963497042656, -0.025435660034418106, 0.0004532978346105665, -0.007429496385157108, 0.0026764539070427418, -0.004241542425006628, -0.03988680988550186, -0.0120380949229002, 0.000671662506647408, -0.011997311376035213, 0.004611997399479151, -0.014478341676294804, 0.0033476916141808033, -0.0037759242113679647, 0.012840181589126587, -0.016639897599816322, 0.01678943820297718, 0.019957000389695168, 0.0054480708204209805, -0.0096726194024086, 0.0018556747818365693, -0.011725417338311672, -0.020663924515247345, -0.03444893658161163, 0.003402070375159383, 0.03673284500837326, 0.0030876933597028255, 0.03817388042807579, -0.02592506818473339, -0.017645902931690216, -0.010726207867264748, -0.014858992770314217, -0.017292441800236702, -0.013798607513308525, 0.026781532913446426, -0.027434078976511955, -0.013132467865943909, -0.018611125648021698, 0.023029400035738945, -0.009332752786576748, -0.0084898816421628, 0.03042490966618061, 0.0212892796844244, -0.008265569806098938, -0.012269205413758755, 0.012024500407278538, 0.02286626398563385, -0.010223204270005226, 0.005580618977546692, -0.01683022268116474, 0.023899460211396217, 0.0022924041841179132, 0.02759721502661705, -0.0006793095380999148, -0.0016500551719218493, -0.02207777090370655, 0.011630254797637463, 0.004353698343038559, -0.01836642250418663, -9.112688712775707e-05, -0.01180698536336422, -0.0058864993043243885, -0.00021464735618792474, -0.019793864339590073, -0.022947831079363823, 0.031050264835357666, 0.015062913298606873, -0.0009626737446524203, 0.03474802151322365, -0.00722557632252574, -0.038799237459897995, 0.007103223819285631, 0.0003182006475981325, -0.013785012997686863, -0.02156117372214794, 0.03776603937149048, -0.03352449834346771, -0.0013773117680102587, 0.011276792734861374, -0.012561490759253502, -0.023763513192534447, 0.010114447213709354, -0.006464273668825626, 0.014410368166863918, 0.008564652875065804, -0.017509955912828445, 0.008211190812289715, -0.003779323073104024, 0.004982452839612961, -0.014886181801557541, 0.03224659711122513, 0.005115000996738672, -0.002146261278539896, -0.0015370493056252599, -0.03287195414304733, 0.008190798573195934, 0.007504267152398825, 0.014437557198107243, -0.0053461105562746525, -0.0006576429586857557, -0.010699018836021423, 0.0055568283423781395, -0.013037304393947124, -0.0037623296957463026, 0.016109703108668327, -0.007680998183786869, -0.018108123913407326, -0.0019491382408887148, 0.015035723336040974, -0.024796709418296814, -0.028141001239418983, -0.003504030639305711, -0.004598402883857489, -0.008591841906309128, 0.00508101424202323, -0.05087132006883621, -0.006059831473976374, -0.017822634428739548, -0.009468699805438519, 0.04537906497716904, -0.0371134951710701, -0.004258535802364349, 0.0029806350357830524, 0.0029551449697464705, -0.026237746700644493, -0.008530666120350361, -0.012459530495107174, 0.005961270071566105, -0.006664795335382223, -0.010046473704278469, -0.0032610255293548107, -0.002589787822216749, 0.0008186550694517791, 0.01715649478137493, -0.007735376711934805, 0.00390847260132432, 0.012017703615128994, -0.0018998575396835804, -0.01576983742415905, -0.007286752108484507, 0.008116028271615505, 0.0025354090612381697, -0.019318049773573875, -0.005866107530891895, -0.048641789704561234, -0.01528042834252119, -0.0410015769302845, 0.009190008044242859, 0.0002797531778924167, -0.047200754284858704, 0.01338396966457367, 0.026699965819716454, 0.01192254014313221, -0.00874138344079256, -0.02898387238383293, -0.17259813845157623, 0.011487510055303574, 0.007368320133537054, -0.050354719161987305, 0.034992724657058716, 0.022879857569932938, 0.018679099157452583, 0.019222887232899666, 0.0034666452556848526, 0.004676572512835264, -0.003116582054644823, 0.0050232368521392345, -0.006151595618575811, -0.017170090228319168, 0.007245968095958233, 0.00923079252243042, 0.002334887394681573, 0.009468699805438519, 0.028956683352589607, 0.010243596509099007, 0.031376536935567856, -0.018611125648021698, -0.001413847436197102, 0.012690640054643154, 0.017238063737750053, 0.013988932594656944, -0.011915743350982666, -0.017469173297286034, -0.004999446216970682, -0.00839471910148859, 0.0464666411280632, 0.02194182388484478, -0.0127993980422616, -0.0072799548506736755, 0.030316151678562164, 0.0158242154866457, 0.01636800356209278, -0.002261816058307886, -0.01409769058227539, 0.011514700017869473, 0.022811884060502052, 0.026373691856861115, 0.03303508833050728, -0.003650173544883728, -0.00874138344079256, 0.00722557632252574, 0.017333226278424263, -0.027801135554909706, 0.002800505608320236, -0.006154994480311871, 0.04312234744429588, 0.002691748086363077, -0.013649065978825092, -0.013696647249162197, 0.012303191237151623, -0.013288806192576885, -0.020568761974573135, -0.0015540426829829812, 0.0034360571298748255, -0.00266115996055305, 0.014668666757643223, -0.03382357954978943, -0.006015649065375328, 0.017822634428739548, -0.013513118959963322, -0.04323110356926918, -0.021180521696805954, 0.008619031868875027, -0.0363793820142746, 0.013465537689626217, 0.006375908385962248, 0.0020086150616407394, 0.021071765571832657, -0.013016913086175919, -0.009652228094637394, 0.006674991454929113, 0.005115000996738672, 1.3966417100164108e-05, -0.0010569868609309196, -0.003080895869061351, 0.013438347727060318, 0.030588045716285706, 0.008829749189317226, -0.0041395821608603, 0.0002778414054773748, -0.01600094698369503, -0.0037385388277471066, -0.019603539258241653, -0.0031726600136607885, -0.0043231104500591755, 0.029418902471661568, -0.039125509560108185, -0.0200793519616127, 0.0017571132630109787, 0.014491936191916466, 0.01790420338511467, 0.008870533667504787, -0.031294967979192734, 0.010984507389366627, -0.019916215911507607, 0.011011696420609951, 0.007048845291137695, -0.003388475626707077, -0.015620294958353043, 0.0481523796916008, 0.01976667530834675, -0.01905975118279457, 0.023681944236159325, 0.031294967979192734, 0.010331962257623672, -0.015062913298606873, 0.027665188536047935, 0.001273652189411223, 0.03493834659457207, 0.0007761716842651367, 0.029853932559490204, -0.0024827297311276197, -0.01590578444302082, 0.00936673954129219, 0.007993675768375397, 0.027801135554909706, -0.0003670565492939204, 0.0050232368521392345, 0.007157602813094854, 0.018815046176314354, 0.0013280309503898025, -0.10342837870121002, -0.021873850375413895, 0.0036229840479791164, 0.010950520634651184, 0.005730160512030125, 0.032491300255060196, -0.018719883635640144, 0.025639578700065613, -0.015457158908247948, 0.029527660459280014, 0.02273031696677208, -0.015878593549132347, -0.006233164109289646, 0.0051183998584747314, 0.001202280167490244, -0.011072872206568718, -0.00011969696788582951, 0.001677244552411139, -0.030207393690943718, 0.017890607938170433, 0.015103696845471859, -0.004758140537887812, 0.00825877208262682, 0.013180049136281013, -0.012425543740391731, -0.00015548923693131655, -0.0527745746076107, 0.0011411040322855115, 0.006766755599528551, -0.0038676883559674025, -0.008775370195508003, -0.017985770478844643, -0.005910289939492941, -0.03186594694852829, 0.003471743082627654, 0.003949256613850594, -0.0177138764411211, -0.005182974506169558, 0.03890799358487129, -0.016938980668783188, -0.022784695029258728, -0.0016831922112032771, 0.018815046176314354, 0.002142862416803837, 0.00627394812181592, -0.0002478906244505197, -0.059218455106019974, 0.003055405803024769, 0.034992724657058716, -0.027896298095583916, -0.02124849520623684, 0.0016024736687541008, -0.01886942610144615, -0.001877766102552414, 0.016300030052661896, 0.0014028017176315188, 0.012119662947952747, 1.3110110330671887e-06, 0.007721782196313143, 0.02259436994791031, -0.01734681986272335, -0.0018811648478731513, -0.012078879401087761, 0.015497943386435509, 0.027012642472982407, 0.008782167918980122, -0.013662660494446754, -0.024198543280363083, 0.0252861175686121, -0.05005563795566559, -0.0049722567200660706, 0.031104642897844315, -0.037684470415115356, 0.021139739081263542, -0.033877961337566376, 0.026373691856861115, -0.004030824638903141, 0.009196805767714977, 0.02638728730380535, -0.008707396686077118, -0.013465537689626217, -0.011161237955093384, -0.026142582297325134, -0.025340495631098747, 0.02194182388484478, 0.02217293530702591, 0.008381124585866928, 0.01665349118411541, 0.011297184973955154, -0.031159022822976112, 0.008924911729991436, 0.003458148567005992, 0.02207777090370655, 0.022811884060502052, 0.012072081677615643, -0.00046434352407231927, 0.0024606382939964533, 0.003402070375159383, 0.005138791631907225, 0.01491337176412344, -0.028412895277142525, 0.012819789350032806, -0.054895345121622086, 0.001473324140533805, -0.017931392416357994, -0.021316468715667725, 0.01576983742415905, -0.0018522761529311538, 0.010597058571875095, -0.016531139612197876, -0.004686768166720867, -0.000588395050726831, -0.039914000779390335, -0.00628414424136281, -0.013880175538361073, -0.014736640267074108, -0.00046009517973288894, 0.0005225457716733217, -0.004020628519356251, -0.011079669930040836, 0.029391713440418243, 0.011168035678565502, 0.006440483033657074, -0.007735376711934805, 0.019318049773573875, -0.001716329250484705, -0.018529558554291725, 0.02022889442741871, -0.011419537477195263, 0.009516281075775623, -0.019046155735850334, -0.006188981235027313, 0.009081250987946987, -0.004829512443393469, -0.001298292656429112, -0.005719964392483234, -0.005257745273411274, -0.0023671749513596296, -0.008333543315529823, 0.014383179135620594, 0.015593105927109718, 0.0433126725256443, -0.013778215274214745, -0.006348718889057636, -0.0042653330601751804, -0.03654251992702484, -0.004404678475111723, -0.009679417125880718, 0.0014019521186128259, -0.007232373580336571, 0.009291968308389187, 0.011072872206568718, 0.025082197040319443, 0.01465507224202156, -0.017523551359772682, -0.010766992345452309, 0.014641477726399899, 0.0024453443475067616, -0.005883100908249617, -0.005957871675491333, -0.012704234570264816, 0.0037419376894831657, 0.01990262232720852, 0.0018947594799101353, 0.022907046601176262, -0.015538726933300495, -0.0028752763755619526, -0.030995886772871017, -0.02732532098889351, -0.02824975922703743, 0.01113404892385006, -0.021126143634319305, 0.001433389843441546, -0.019875431433320045, 0.019725890830159187, 0.016680680215358734, -0.0026016831398010254, -0.01638159714639187, -0.023301294073462486, 0.01684381626546383, -0.017278846353292465, 0.013411158695816994, 0.021466011181473732, 0.025666769593954086, -0.028276948258280754, 0.00231279619038105, 0.028548842296004295, -0.02786910906434059, 0.0009720200905576348, -0.03066961281001568, 0.0033969723153859377, 0.015837810933589935, 0.020582355558872223, 0.0035923959221690893, -0.014736640267074108, -0.010053271427750587, 0.0032168428879231215, -0.0027087414637207985, -0.017278846353292465, -0.022254502400755882, -0.004669774789363146, 0.002178548602387309, 0.015661079436540604, -0.017836229875683784, -0.009183211252093315, -0.00853746384382248, -0.02561238966882229, -0.003561808029189706, -0.006216170731931925, -0.038282640278339386, -0.02936452440917492, 0.025068603456020355, -0.0015540426829829812, 0.014886181801557541, 0.02819538116455078, 0.0021190717816352844, -0.023110967129468918, -0.000308429473079741, -0.02088143862783909, -0.0026832513976842165, -0.01567467488348484, 0.014532720670104027, -0.0031454707495868206, 0.026876695454120636, 0.03670565411448479, -0.006508456543087959, 0.024592788890004158, 0.01707492768764496, 0.034013908356428146, 0.0048125190660357475, 0.00829955656081438, 0.0007893415167927742, -0.02629212476313114, -0.010019284673035145, -0.02519095502793789, -0.01432880014181137, 0.011609862558543682, -0.03172999992966652, 0.0007226425805129111, 0.01245273370295763, -0.002989131724461913, 0.06878911703824997, 0.0069502838887274265, -0.02578912116587162, 0.006355516146868467, -0.034340180456638336, 0.01333638746291399, 0.013315996155142784, -0.013329590670764446, 0.017781849950551987, -0.024008216336369514, 0.0018505767220631242, 0.008054851554334164, -0.0039526550099253654, -0.040104325860738754, -0.009013277478516102, 0.02273031696677208, -0.016803033649921417, 0.03205627202987671, -0.0051183998584747314, 0.00686531700193882, 0.012656653299927711, 0.010073662735521793, -0.008911317214369774, 0.007157602813094854, -0.02040562592446804, 0.028467275202274323, 0.04875054582953453, 0.010012486949563026, 0.005621402990072966, -0.03809231147170067, -0.01794498600065708, -0.0021649538539350033, -0.026455260813236237, -0.020024973899126053, 0.012534301728010178, 0.004496442619711161, 0.009516281075775623, -0.012765411287546158, 0.006080223713070154, -0.008809356950223446, 0.004153176676481962, 0.005128595512360334, -0.019413212314248085, -0.03719506412744522, -0.02852165326476097, 0.01990262232720852, -0.03047928772866726, 0.001240515150129795, -0.03727663308382034], "3fa2421e-8b56-472f-bdf8-db7bd95d817d": [-0.0008992804796434939, -0.009910226799547672, -0.021838434040546417, -0.007878422737121582, 0.0016992167802527547, 0.0036005773581564426, -0.02129938453435898, -0.03261943534016609, -0.018977323547005653, -0.026344340294599533, -0.0020836354233324528, -0.004664855543524027, -0.006223262753337622, 0.019364332780241966, -0.00724261999130249, 0.010663514025509357, 0.013116882182657719, -0.00019631267059594393, -0.019281402230262756, -0.006060856860131025, -0.028362320736050606, 0.017926866188645363, 0.0045922910794615746, -0.04254348203539848, -0.005473430268466473, 0.013849437236785889, 0.02264009788632393, -0.03339345380663872, 0.010801732540130615, -0.0009182854555547237, 0.0369318351149559, -0.028694044798612595, -0.015024290420114994, -0.006762312725186348, -0.016461756080389023, -0.003973765764385462, 0.011568841524422169, 0.005041499622166157, 0.008714641444385052, 0.004948202054947615, 0.04483789950609207, -0.0038631914649158716, -0.016212964430451393, -0.008507314138114452, -0.01632353849709034, 0.01774718426167965, 0.024091387167572975, -0.028154995292425156, -0.01879763975739479, 0.01331038773059845, 0.027685053646564484, 0.01712520234286785, -0.01586741954088211, 0.008845948614180088, 0.01295793242752552, 0.00897725485265255, 0.025418279692530632, -0.006793411914259195, 0.018217124044895172, -0.013296565972268581, 0.008534957654774189, 0.00417418172582984, -0.010421632789075375, 0.0038113596383482218, -0.01328965462744236, -0.012584743089973927, -0.00956468190997839, -0.010165929794311523, -0.004063607659190893, -0.017885401844978333, 0.02729804255068302, 0.0231100395321846, -0.03358696028590202, -0.011223296634852886, 0.039198607206344604, -0.023054752498865128, -0.025984972715377808, 0.025183308869600296, 0.013925457373261452, 0.004353865049779415, -0.0097512761130929, -0.012024960480630398, -0.005362856201827526, 0.00642713438719511, -0.005787876434624195, -0.004298578016459942, -0.012073337100446224, 0.026261407881975174, 0.0018521203892305493, -0.01505193393677473, -0.007214976474642754, 0.01628207415342331, 0.0071251350454986095, 0.03361460193991661, 0.00889432430267334, 0.00398758752271533, -0.021879900246858597, 0.01892203651368618, -0.014008387923240662, -0.009557770565152168, -0.0005468247109092772, -0.0029146708548069, -0.006116143893450499, -0.011430623941123486, -0.02222544513642788, 4.114143303013407e-05, 0.014416131190955639, 0.013828705064952374, 0.021492889150977135, 0.008154858835041523, -0.00992404855787754, 0.02930220402777195, 0.020248929038643837, -0.03132018446922302, -0.027767984196543694, -0.02185225673019886, 0.014581993222236633, -0.021382315084338188, 0.011693237349390984, -0.023386474698781967, 0.006285460665822029, 0.019018787890672684, 0.008030462078750134, 0.0033897950779646635, 0.018700886517763138, 0.01590888574719429, -0.035052068531513214, -0.011776168830692768, -0.012785159982740879, -0.028362320736050606, 0.018452094867825508, 0.023414120078086853, -0.007152778562158346, 0.001919501693919301, -0.02552885375916958, 0.006903985980898142, -0.011492821387946606, 0.0067830453626811504, -0.015176329761743546, -0.02164492942392826, 0.01027650386095047, 0.004149993881583214, -0.01268149632960558, -0.006368391681462526, -0.0017216772539541125, 0.018369164317846298, 0.012951021082699299, 0.0284728966653347, -0.007926799356937408, 0.013386407867074013, -0.009046364575624466, 1.8424560039420612e-05, -0.014091319404542446, 0.020248929038643837, 0.001423644833266735, -0.00037966741365380585, -0.004699409939348698, 0.004070518538355827, -0.0365171805024147, -0.023966990411281586, 8.050115138757974e-05, 0.03842458873987198, 0.0075743431225419044, -0.016351182013750076, 0.004837627988308668, 0.021921364590525627, 0.031292542815208435, 0.023414120078086853, 0.0025311161298304796, 0.004087795503437519, -0.014623458497226238, 0.00956468190997839, -0.0223913062363863, 0.01212171372026205, 0.0060677677392959595, -0.005933004897087812, -0.0037491617258638144, 0.012881912291049957, -0.00973054300993681, -0.010698068886995316, 0.03151369094848633, -0.006534253247082233, 0.030242085456848145, 0.04450617730617523, -0.03386339545249939, 0.0006859065033495426, 0.03206656128168106, 0.0137734180316329, 0.00193850661162287, 0.005898450501263142, -0.01550805289298296, 0.03051852062344551, -0.017277242615818977, 0.013400229625403881, -0.6351391077041626, -0.0006673334864899516, -0.009868760593235493, -0.03270236402750015, 0.00018443456792738289, -0.010815554298460484, 0.0033310523722320795, 0.014416131190955639, -0.003887379541993141, 0.009419552981853485, 0.014720210805535316, 0.00455082580447197, 0.01431937888264656, -0.0032982255797833204, -0.001657751388847828, -0.005038043949753046, 0.011859099380671978, -0.04403623566031456, -0.016005637124180794, 0.037899360060691833, -0.00357984472066164, 0.023759664967656136, -0.011085079051554203, -0.015646271407604218, 0.0061576091684401035, 0.04373215511441231, 0.011209474876523018, -0.012564010918140411, 0.01255709957331419, 0.03648953512310982, -0.004948202054947615, -0.0018849471816793084, 0.001986882882192731, 0.01975134387612343, 0.04262641444802284, 0.009288245812058449, 0.005380133166909218, 0.018852926790714264, 0.010214305482804775, 0.04655180126428604, -0.0017631426453590393, -0.018452094867825508, 0.03220478072762489, 0.00645823311060667, -0.0031721016857773066, 0.019696056842803955, 0.009889493696391582, -0.004022141918540001, -0.016586152836680412, -0.01912936381995678, -0.007470679935067892, 0.012584743089973927, 0.015715379267930984, 0.0014124145964160562, 0.02084326557815075, -0.0002567830088082701, 0.017843935638666153, 0.0013657660456374288, -0.005221182946115732, -0.002674517221748829, 0.01163795031607151, 0.009585414081811905, -0.008217056281864643, 0.009682166390120983, -0.005511440336704254, -0.0013165258569642901, -0.010470009408891201, 0.0008863225230015814, -0.003177284961566329, -0.0009485206101089716, 0.02059447392821312, 0.01838298700749874, -0.015010468661785126, -0.01661379635334015, 0.017318708822131157, 0.016586152836680412, 0.00499312300235033, 0.009516305290162563, -0.015259260311722755, 0.028072062879800797, -0.002320333616808057, -0.010815554298460484, -0.020940018817782402, -0.004678677301853895, 0.036600109189748764, -0.002311695134267211, -0.032287709414958954, -0.0007278038538061082, 0.01807890646159649, -0.001624060794711113, -0.005604737438261509, 0.024796297773718834, -0.0023134227376431227, -0.032287709414958954, 0.014720210805535316, 0.009046364575624466, -0.009122383780777454, 0.03035265952348709, 0.014077497646212578, -0.05899141728878021, -0.021990474313497543, -0.029025766998529434, 0.0032308443915098906, -0.0011644861660897732, -0.0057602329179644585, 0.012964842841029167, 0.00011381383228581399, -0.0008141900761984289, 0.048625070601701736, 0.00048635437269695103, -0.02414667420089245, -0.017526034265756607, -0.0041672708466649055, -0.014429952949285507, 0.01347624883055687, -0.028859905898571014, 0.007035293150693178, -0.016586152836680412, -0.003211839357391, -0.009053274989128113, 0.03237064182758331, 0.004436796065419912, 0.0005744683439843357, -0.0007494004094041884, 0.0077402046881616116, 0.017443103715777397, 0.018023619428277016, -0.037070050835609436, -0.03433333709836006, -0.0001334667031187564, -0.005152073688805103, 0.014927537180483341, 0.016627619042992592, -0.006707025691866875, 0.024920694530010223, 1.1135723099187089e-07, 0.025459744036197662, -0.023137683048844337, 0.018742352724075317, -0.03101610578596592, -0.021285563707351685, 0.009039453230798244, 0.011679415591061115, -0.009156938642263412, -0.011734703555703163, -0.02416049689054489, -0.046358298510313034, -0.008320719934999943, -0.005898450501263142, -0.00767109589651227, -0.003443354507908225, -0.0052350047044456005, -0.016945520415902138, 0.0037940824404358864, -0.01824476756155491, -0.012584743089973927, 0.016710549592971802, -0.011292405426502228, -0.01121638622134924, -0.02139613777399063, 0.01615767739713192, 0.019267581403255463, -0.027367152273654938, 0.002560487249866128, -0.0031582799274474382, -0.003051161067560315, -0.03759527951478958, 0.034637417644262314, -0.019267581403255463, -0.021188810467720032, -0.009136205539107323, -0.025888219475746155, 0.005362856201827526, 0.00775402644649148, -0.00826543290168047, 0.02653784491121769, -0.017512213438749313, -0.009619968943297863, -0.026178477331995964, -0.017733361572027206, 0.012944109737873077, 0.004115439020097256, -0.010711890645325184, -0.012895734049379826, 0.03671068698167801, 0.003052888670936227, 0.025169486179947853, -0.010131374932825565, 0.021589642390608788, 0.019226115196943283, 0.015383657068014145, 0.04080193489789963, -0.02013835310935974, 0.005183172877877951, 0.002057719510048628, 0.009329711087048054, -0.005463064182549715, -0.009806563146412373, 0.0024948338977992535, 0.05647585168480873, 0.031624265015125275, -0.0029613194055855274, -0.014678745530545712, -0.001105743576772511, 0.01019357331097126, -0.019875740632414818, 0.024685723707079887, -0.016088567674160004, 0.01657233200967312, -0.01611621119081974, -0.0018590312683954835, -0.013255100697278976, -0.010511474683880806, -0.009350443258881569, -0.004460983909666538, 0.034305691719055176, 0.008749195374548435, 0.022957999259233475, -0.0034174385946244, 0.006430589593946934, 0.02360762469470501, 0.016765836626291275, 0.028666401281952858, -0.004163815639913082, 0.006005569361150265, 0.019861917942762375, -0.0038597360253334045, 0.026219943538308144, -0.002230491954833269, -0.025252418592572212, -0.0002978164702653885, 0.021285563707351685, 0.016392648220062256, 0.0010349068325012922, 0.021409958600997925, 0.008776838891208172, 0.009004899300634861, -0.012294486165046692, 0.03245357424020767, -0.008714641444385052, -0.012481080368161201, 0.028030598536133766, 0.00998624600470066, -0.015812132507562637, 0.035190287977457047, 0.0046510337851941586, 0.024561328813433647, 0.007339372765272856, -0.00952321570366621, 0.028389964252710342, -0.014049854129552841, 0.020608294755220413, -0.028694044798612595, 0.006637916434556246, 0.005093330983072519, 0.0007925935206003487, 0.014416131190955639, 0.0033051364589482546, 0.028362320736050606, 0.010138286277651787, -0.007477590814232826, 0.006133421324193478, 0.008472760207951069, -0.004647578112781048, -0.004530093166977167, -0.014056764543056488, 0.015010468661785126, -0.009232958778738976, -0.029495708644390106, 0.0002615342673379928, -0.006893619894981384, -0.041133660823106766, -0.01962694711983204, -0.00374225084669888, 0.030877888202667236, 0.005228093825280666, 0.019405798986554146, 0.016986984759569168, 0.0062750945799052715, 0.0032861316576600075, -0.00990331545472145, -0.020940018817782402, 0.02129938453435898, 0.00057317252503708, 0.002230491954833269, -0.00935735460370779, -0.0013597189681604505, -0.009343532845377922, -0.012750605121254921, -0.01431937888264656, -0.00656189676374197, 0.016682906076312065, -0.002840378787368536, 0.0007852506823837757, -0.0159918162971735, -0.0013139343354851007, 0.01762278750538826, -0.00027578798471949995, -0.018092729151248932, -0.011050524190068245, 0.004115439020097256, 7.942132651805878e-05, -0.007601986639201641, -0.005311024375259876, 0.036102525889873505, -0.001353672007098794, -0.007290996611118317, -0.029440421611070633, 0.0012880184222012758, -0.01640646904706955, 0.0031202700920403004, -0.0015618627658113837, -0.011769257485866547, -0.02286124788224697, 0.003044250188395381, 0.008887413889169693, -0.017885401844978333, 0.0016637984663248062, 0.03101610578596592, 0.006876342464238405, -0.005836252588778734, -0.014941359870135784, -0.003614399116486311, -0.0007709969650022686, 0.07624101638793945, -0.0014668379444628954, -0.027187468484044075, 0.009239869192242622, 0.003780260682106018, 0.007277174387127161, -0.013372586108744144, -0.029412778094410896, 0.009011809714138508, -0.00523154903203249, -0.0014564715093001723, -0.024174317717552185, 0.006634461227804422, 0.00021445377205964178, 0.0008465849095955491, 0.010497652925550938, -0.009343532845377922, -0.027491549029946327, -0.006140332203358412, -0.018369164317846298, 0.0035452900920063257, 0.025929685682058334, 0.01825859025120735, 0.024257248267531395, -0.0008504722500219941, -0.031237253919243813, 0.016351182013750076, 0.017360173165798187, -9.993804997066036e-05, -0.05567418783903122, -0.010995237156748772, 0.006872887257486582, 0.01783011481165886, 0.031541332602500916, -0.006078133825212717, 0.024754833430051804, 0.014374665915966034, 0.039198607206344604, -0.003610943676903844, -0.016337361186742783, 0.008154858835041523, 0.011015970259904861, 0.004523182287812233, -0.019309045746922493, -0.00153853849042207, -0.004322766326367855, -0.006195619236677885, 0.03391868248581886, -0.01687641069293022, -0.01921229436993599, 0.012750605121254921, -0.011866009794175625, -0.008597156032919884, 0.014084408059716225, 0.005273014307022095, -0.0050587765872478485, -0.028528183698654175, -0.0014772042632102966, -0.006679382175207138, -0.01423644833266735, -0.01770571805536747, -0.01534219179302454, 0.019820453599095345, -0.008251611143350601, 0.016890231519937515, -0.007436125073581934, -0.018617955967783928, -0.009094740264117718, -0.025086555629968643, 0.010027711279690266, -0.0008595428080298007, -0.04425738379359245, -0.05362856015563011, -0.019861917942762375, 0.033421099185943604, 0.019778987392783165, 0.02276449464261532, 0.019032610580325127, -0.0018987689400091767, 0.0031237255316227674, 0.00605049030855298, -0.04964788258075714, -0.015563339926302433, -0.0435386523604393, 0.00864553265273571, -0.010103731416165829, 0.003814815077930689, 0.005435420665889978, -0.014844606630504131, 0.04469968378543854, -0.0013934095622971654, -0.009122383780777454, -0.008396740071475506, -0.009454106912016869, -0.0002911215415224433, 0.009806563146412373, 0.010393989272415638, 0.024395465850830078, 0.0035936664789915085, -0.01842445135116577, 0.014830784872174263, -0.011513554491102695, -0.015286903828382492, -0.018009798601269722, -0.006188708357512951, 0.006337292492389679, -0.006382213439792395, -0.00917076040059328, -0.02185225673019886, -0.00927442405372858, 0.03181777149438858, -0.016420291736721992, 0.014008387923240662, 0.030877888202667236, 0.009702899493277073, 0.021119700744748116, 0.004467894788831472, 0.014443774707615376, 0.007933709770441055, -0.029606282711029053, 0.00836909655481577, -0.010020800866186619, 0.013427873142063618, 0.005456153303384781, -0.026758993044495583, 0.0019264125730842352, 0.0025984973181039095, -0.032287709414958954, -0.008189412765204906, -0.005497618578374386, 0.0017812837613746524, 0.026800459250807762, -0.012411970645189285, -0.031873058527708054, -0.02921927347779274, -0.010020800866186619, -0.02674517221748829, 0.016710549592971802, -0.013455516658723354, -0.006803778000175953, 0.005255737341940403, 0.009868760593235493, 0.006306193768978119, -0.010241948999464512, -0.02277831733226776, -0.03026972897350788, 0.00021942098101135343, -0.0063925799913704395, -0.015895063057541847, 0.019032610580325127, 0.021617285907268524, 0.007059481460601091, 0.02796148881316185, -0.005449242424219847, 0.0038459142670035362, -0.021907543763518333, -0.0015705013647675514, 0.014734032563865185, 0.022280732169747353, 0.02616465650498867, 0.048542141914367676, 0.011057435534894466, 0.027436261996626854, 0.009654522873461246, -0.011105811223387718, -0.0008046875591389835, 0.00799590814858675, -0.014664923772215843, -0.018051262944936752, 0.00032718779402785003, 0.007560521364212036, -0.011686326935887337, -0.0004239403351675719, -0.01073953416198492, 0.01331038773059845, 0.02269538678228855, -0.013420961797237396, -0.013268922455608845, -0.025224775075912476, -0.021755503490567207, -0.014388487674295902, 0.010732622817158699, 0.0015108948573470116, 0.005563272163271904, -0.01590888574719429, -0.00018972571706399322, 0.037761140614748, 0.02222544513642788, 0.0032653987873345613, 0.018977323547005653, 0.020083066076040268, -0.017982153221964836, 0.0036005773581564426, 0.019557839259505272, 0.015646271407604218, -0.02398081310093403, -0.006326926406472921, -0.04077429324388504, 0.0005766279646195471, 0.029523352161049843, 0.011285495012998581, 0.015107220970094204, -0.0069592734798789024, -0.012038782238960266, -0.023593802005052567, 0.0004768518847413361, -0.0016067835967987776, -0.007760937325656414, 0.009640701115131378, -0.012218466028571129, -0.02398081310093403, -0.01071880105882883, 0.006765768397599459, -0.0021631107665598392, -0.009868760593235493, 0.0013960012001916766, -0.014651102013885975, 0.0016145582776516676, -0.02503126859664917, -0.012529456056654453, 0.017056094482541084, -0.0037906270008534193, 0.04917794466018677, 0.016351182013750076, 0.02812735177576542, -0.002278868341818452, -0.015369835309684277, 0.014029121026396751, 0.005656569264829159, -0.000621548795606941, 0.001694033620879054, 0.0315689779818058, -0.0006928174407221377, -0.010988326743245125, -0.031237253919243813, -0.012930287979543209, -0.011513554491102695, -0.03165190666913986, -0.02247423678636551, 0.001701808418147266, 0.021589642390608788, -0.0015506325289607048, -0.018479738384485245, 0.010857019573450089, -0.029246916994452477, 0.02201811783015728, -0.006786501035094261, 0.01741546019911766, -0.008196324110031128, 0.002845561830326915, -0.021285563707351685, -0.010850108228623867, -0.004924014210700989, 0.015604805201292038, -0.016945520415902138, 0.004989667795598507, 0.013179080560803413, -0.021700216457247734, -0.01791304536163807, 0.015397478826344013, -0.0025673983618617058, 0.025763824582099915, -0.005749866366386414, -0.0010772360255941749, 0.019917204976081848, -0.009226047433912754, -0.00809957180172205, -0.006254361942410469, -0.0046337563544511795, 0.026026438921689987, 0.0012560555478557944, -0.012197732925415039, -0.0035383792128413916, 0.01147208921611309, -0.00046950907562859356, -0.022418949753046036, -0.018562668934464455, -0.014250270090997219, 0.007056025788187981, -0.008714641444385052, 0.008113393560051918, -0.010995237156748772, 0.017235776409506798, 0.021866077557206154, 0.016807300969958305, -0.004820350557565689, -0.005646202713251114, -0.01883910596370697, 0.017733361572027206, -0.046192437410354614, -0.015328370034694672, -0.02523859590291977, 0.01017284020781517, 0.01925375871360302, -0.011803812347352505, -0.004429885186254978, 0.011866009794175625, 0.036987122148275375, -0.020497720688581467, 0.015812132507562637, 0.005183172877877951, -0.0025069278199225664, -0.018604135140776634, 0.01970987766981125, -0.001653432147577405, 0.004212191794067621, 0.023414120078086853, -0.008009729906916618, -0.003780260682106018, -0.02461661584675312, -0.0009139661560766399, 0.02121645398437977, -0.0015394022921100259, -0.017056094482541084, -0.010241948999464512, -0.016295894980430603, 0.022805960848927498, -0.005981381516903639, -0.01783011481165886, 0.005259192548692226, 0.014982825145125389, 0.007290996611118317, 0.010559850372374058, 0.0023687100037932396, 0.011105811223387718, 0.00224949698895216, 0.011990406550467014, -0.0064927879720926285, -0.03604723885655403, 0.007449946831911802, -0.0019799720030277967, 0.004661399871110916, -0.012543277814984322, -0.002778180642053485, -0.037899360060691833, 0.0035314683336764574, -0.010497652925550938, 0.012757515534758568, -0.012280664406716824, 0.0005088148172944784, -0.02286124788224697, 0.04262641444802284, 0.00710440194234252, 0.0181618370115757, -0.01603328064084053, 0.003310319734737277, -0.009239869192242622, 0.028583470731973648, -0.05434729531407356, -0.013787239789962769, 0.0006729486049152911, 0.04005555808544159, 0.016268251463770866, -0.01349698193371296, -0.0008807074627839029, 0.009661434218287468, -0.012722961604595184, -0.012881912291049957, 0.012999397702515125, 0.013358764350414276, 0.02800295501947403, 0.01700080744922161, -0.0009096467983908951, 0.03214949369430542, -0.003680052701383829, 0.006551530212163925, -0.022847425192594528, 0.0035902110394090414, -0.006928174290806055, 0.021382315084338188, -0.0033569682855159044, -0.014056764543056488, -0.013047773391008377, -0.01496900338679552, 0.00981347355991602, 0.006838332861661911, -0.0065238866955041885, 0.0038977458607405424, 0.00647896621376276, -0.011548109352588654, 0.002755720168352127, -0.02804441936314106, -0.011997316963970661, -0.008617888204753399, 0.0032342998310923576, -0.018106549978256226, -0.00011057435040129349, -0.007629630155861378, -0.004042874556034803, -0.021672572940587997, -0.007899154908955097, -0.01657233200967312, -0.0275468360632658, 0.00805810559540987, -0.03579844534397125, -0.011271673254668713, -0.004257112741470337, -0.0070905801840126514, 0.015231616795063019, -0.013801061548292637, 0.012930287979543209, 0.025777645409107208, 0.008417472243309021, 0.003488275222480297, -0.0026313241105526686, 0.006627550348639488, -0.01859031245112419, -0.012750605121254921, 0.02381495200097561, -0.00458538020029664, -0.01695934124290943, -0.013255100697278976, 0.024271070957183838, 0.00664482731372118, -0.0041672708466649055, -0.016392648220062256, 0.0019989770371466875, -0.028307033702731133, 0.022128691896796227, -0.0015653182053938508, 0.008465848863124847, 0.02076033502817154, 0.0032377552706748247, 0.018493561074137688, 0.008742284961044788, -0.00490673677995801, -0.01255709957331419, -0.012266842648386955, 0.001116973697207868, 0.008797571994364262, 0.010995237156748772, 0.012875000946223736, -0.006986916996538639, -0.0034986415412276983, -0.015273082070052624, -0.007767848204821348, 0.20721633732318878, -0.012951021082699299, -0.010076087899506092, 0.03510735556483269, -0.015107220970094204, 0.023870239034295082, -0.0028991212602704763, 0.000275572034297511, -0.03286822512745857, 0.0024792843032628298, -0.017636610195040703, -0.004004864953458309, -0.028998123481869698, 8.222887845477089e-05, 0.002218398032709956, -0.026275230571627617, 0.00114634505007416, -0.039917342364788055, -0.008942700922489166, -0.024810120463371277, 0.02729804255068302, 0.0005109744379296899, -0.02273685112595558, -0.017816292122006416, 0.01758132129907608, -0.0033275969326496124, -0.017857758328318596, 0.00710440194234252, 0.024934517219662666, 0.009440285153687, 0.005331757012754679, -0.010235038585960865, -0.021188810467720032, -0.014132784679532051, -0.02674517221748829, 0.004727053456008434, 0.0022097593173384666, 0.0004936971818096936, 0.036904189735651016, 0.005660024471580982, -0.006765768397599459, -0.004111983813345432, 0.004920558538287878, -0.0003975925501435995, 0.029191629961133003, 0.006554985884577036, -0.022156335413455963, -0.013897813856601715, 0.011534287594258785, 0.006112688221037388, -0.026344340294599533, -0.005663480143994093, 0.010076087899506092, 0.03883923962712288, -0.006123054772615433, -0.011140366084873676, -0.009177671745419502, -0.010870841331779957, -0.008452027104794979, 0.016973163932561874, -0.01249490212649107, 0.02921927347779274, -0.013386407867074013, -0.007719472050666809, -0.000991713721305132, 0.010891573503613472, -0.03889453038573265, 0.049620240926742554, -0.006848698947578669, -0.014416131190955639, 0.01006917655467987, -0.0077402046881616116, 0.004927469417452812, -0.007899154908955097, -0.022073404863476753, -0.013718130998313427, 0.03867337852716446, 0.005124430172145367, 0.02649637870490551, 0.029357491061091423, -0.008763017132878304, -0.003984132315963507, -0.007940621115267277, -0.031375471502542496, -0.0093366215005517, -0.02938513457775116, 0.026841923594474792, 0.007615808397531509, -0.012564010918140411, -0.00618525268509984, -0.0033085918985307217, -0.021866077557206154, -0.006779590155929327, 0.0005947690806351602, 0.021078236401081085, 0.007657274138182402, -0.008887413889169693, 0.01966841332614422, -0.012163178995251656, 0.012156267650425434, -0.004004864953458309, 0.03809286281466484, -0.007505234330892563, 0.012930287979543209, 0.002519021974876523, -0.005729133728891611, 0.010615137405693531, -0.0006876342813484371, 0.033006444573402405, -0.030297372490167618, -0.024008456617593765, -0.009502483531832695, 0.008175591006875038, -0.006955817807465792, 0.01065660361200571, 0.010511474683880806, 0.008548779413104057, 0.006313104648143053, -0.0038113596383482218, 0.0010383622720837593, -0.031375471502542496, -0.02432635799050331, -0.002980324439704418, 0.018825283274054527, -0.025473566725850105, -0.003842458827421069, -0.003607488237321377, 0.006997283082455397, -0.003994498401880264, -0.008382918313145638, 0.013448605313897133, -0.028307033702731133, -0.0006504881894215941, -0.029993293806910515, 0.0020058879163116217, -0.011796901002526283, -0.014720210805535316, -0.027809450402855873, -0.017387816682457924, 9.070552187040448e-05, -0.021879900246858597, 0.006364936009049416, 0.009806563146412373, 0.014347022399306297, 0.004194914363324642, -0.026800459250807762, 0.00879066064953804, 0.012363594956696033, -0.015494231134653091, -0.03977912291884422, 0.006295827217400074, -0.002085363259539008, -0.013897813856601715, -0.029716856777668, 0.017678074538707733, -0.024506041780114174, -0.012564010918140411, -0.028859905898571014, 0.008756106719374657, -0.016268251463770866, -0.03018679842352867, 0.024893051013350487, 0.03496913984417915, 0.01138915866613388, -0.023635268211364746, -0.014291735365986824, -0.17714011669158936, 0.006596451159566641, -0.003070166101679206, -0.03574315831065178, 0.05072598531842232, -0.007947531528770924, 0.034803278744220734, 0.01237050537019968, -0.01708373799920082, 0.012315218336880207, -0.01640646904706955, 0.026316696777939796, -0.034222763031721115, -0.020732691511511803, 0.002612319076433778, 0.006112688221037388, -0.0027989132795482874, 0.013780328445136547, 0.04868035763502121, 0.03278529644012451, 0.021962830796837807, -0.03867337852716446, 0.021755503490567207, 0.01904643140733242, 0.006057401187717915, 0.0068003227934241295, 0.016834944486618042, 0.015895063057541847, -0.003669686382636428, -0.02913634106516838, 0.005860440898686647, 0.03358696028590202, 0.015245438553392887, -0.00990331545472145, -0.0010755083058029413, 0.003911567851901054, 0.010283415205776691, -0.009723632596433163, -0.017608964815735817, -0.010331790894269943, 0.03483092039823532, 0.016268251463770866, 0.010262682102620602, 0.011237118393182755, 0.00485490495339036, 0.02335883118212223, 0.014595814980566502, -0.03076731413602829, 0.001413278398104012, -0.009606147184967995, 0.01892203651368618, -0.02570853754878044, 0.01712520234286785, -0.00992404855787754, 0.004827261436730623, -0.017595143988728523, -0.0032463939860463142, 0.018313877284526825, -0.010331790894269943, -0.009198403917253017, -0.004785796161741018, -0.026261407881975174, 0.016420291736721992, 0.018493561074137688, -0.007187332957983017, -0.024920694530010223, -0.015038112178444862, 0.010746444575488567, -0.0447826124727726, 0.011707060039043427, -0.0074914125725626945, 0.007401570677757263, -9.189333650283515e-05, -0.012432703748345375, 0.003177284961566329, 0.025224775075912476, -0.004699409939348698, 0.014637280255556107, -0.006883253343403339, -0.0016266524326056242, -0.0026831557042896748, 0.03767821192741394, 0.018977323547005653, -0.009454106912016869, 0.02348322793841362, -0.011375336907804012, 0.0008444252307526767, 0.006610272917896509, -0.02591586485505104, -0.020829442888498306, 0.019599303603172302, -0.034139830619096756, -0.002441274467855692, 0.00577750988304615, 0.020414790138602257, 0.020953839644789696, 0.018410630524158478, -0.024768654257059097, 0.015024290420114994, -0.022363662719726562, 0.010407811030745506, 0.0014936176594346762, -0.024671902880072594, 0.0017951055197045207, 0.04442324489355087, 0.015812132507562637, 0.0006897939019836485, 0.009239869192242622, 0.04605421796441078, 0.00707330321893096, -0.036185458302497864, 0.0020801799837499857, 0.021161166951060295, 0.020152175799012184, -0.004699409939348698, 0.03109903633594513, 0.013600645586848259, 0.0017726450460031629, 0.006344203371554613, -0.00019555678591132164, 0.0670633465051651, 0.013047773391008377, -0.026689885184168816, 0.01477549783885479, -0.006209440995007753, -0.009177671745419502, -0.12240581214427948, -0.015162508003413677, -0.02356615848839283, 0.0067830453626811504, 0.013794150203466415, 0.016047103330492973, -0.018617955967783928, 0.029329847544431686, -0.009426463395357132, 0.038148149847984314, -0.009772008284926414, -0.02979978732764721, -0.023621445521712303, -0.007539788726717234, -0.00775402644649148, -0.007138956803828478, 0.0021060958970338106, -0.019143184646964073, 0.0024119031149894, 0.02038714662194252, -0.0036938744597136974, -0.007187332957983017, 0.013711219653487206, 0.003258487908169627, -0.006358025129884481, -0.013517715036869049, -0.013137615285813808, 0.02152053266763687, 0.009281334467232227, 0.021658752113580704, -0.004191459156572819, 0.0010685974266380072, -0.00031876511638984084, -0.03538379445672035, 0.019557839259505272, -0.03018679842352867, -0.0045335483737289906, -0.0035383792128413916, 0.014623458497226238, -0.006530797574669123, 0.010587493889033794, -0.0011791718425229192, 0.020083066076040268, -0.011631039902567863, 0.0024758288636803627, -0.004664855543524027, -0.033172305673360825, 0.036821261048316956, 0.020083066076040268, -0.014844606630504131, -0.03502442687749863, -0.007214976474642754, -0.028141172602772713, 0.00023497050278820097, 0.029855074360966682, -0.0037146070972085, 0.010670425370335579, -0.0016249247128143907, -0.019778987392783165, 0.005711856298148632, 0.013379496522247791, -0.00860406644642353, 0.004785796161741018, 0.007498323451727629, 0.024271070957183838, 0.006631005555391312, -0.04088486731052399, -0.015936529263854027, 0.019101720303297043, -0.030297372490167618, -0.004467894788831472, 0.022570990025997162, -0.030048580840229988, 0.010684247128665447, -0.004184548277407885, 0.0049101924523711205, -0.007304818369448185, -0.0015307636931538582, 0.015549518167972565, 0.0007783398032188416, -0.0042363801039755344, -0.0235246941447258, 0.007899154908955097, -0.020608294755220413, 0.02113352343440056, 0.016641439869999886, -0.011969673447310925, 0.0159918162971735, 0.005390499718487263, -0.017139025032520294, -0.00818250235170126, 0.016558509320020676, 0.009765097871422768, -0.02595732919871807, -0.013904725201427937, 0.006955817807465792, -0.0026278686709702015, -0.01937815546989441, -0.006230173632502556, 0.025141842663288116, -0.049786102026700974, -0.0005856985226273537, -0.04840392246842384, 0.02030421607196331, -0.012384327128529549, -0.016005637124180794, 0.007601986639201641, 0.0006081589381210506, 0.01758132129907608, -0.010684247128665447, -0.019778987392783165, -0.014388487674295902, -0.02519713155925274, 0.002852472709491849, -0.00925369095057249, -0.02092619612812996, -0.012861179187893867, -0.032425928860902786, -0.004357320722192526, -0.014029121026396751, -0.009308977983891964, 0.019184650853276253, 0.0051002418622374535, 0.009094740264117718, 0.02356615848839283, 0.008044283837080002, -0.004761607851833105, -0.028998123481869698, -0.015618626959621906, 0.024312535300850868, -0.019447265192866325, -0.022667741402983665, 0.021548176184296608, -0.000888050242792815, 0.019875740632414818, 0.005089875776320696, -0.015203973278403282, 0.01194894127547741, 0.014637280255556107, 0.008085749112069607, 0.03344874083995819, 0.05484487861394882, -0.007885333150625229, -0.031209610402584076, 0.0030010570771992207, -0.031983632594347, 0.01984809711575508, 0.007477590814232826, 0.012384327128529549, -0.00014242927136365324, -0.0010642781853675842, 0.01521779503673315, 0.014540527015924454, 0.007816224358975887, -0.013904725201427937, -0.018949680030345917, -0.00046303009730763733, -0.02579146809875965, -0.012944109737873077, 0.0011904019629582763, -0.0013657660456374288, -0.005856985226273537, 0.017526034265756607, 0.008742284961044788, 0.018949680030345917, -0.003991043195128441, -0.003614399116486311, 0.0014556077076122165, -0.033891040831804276, 0.007228798232972622, 0.014844606630504131, -0.0137734180316329, -0.016254430636763573, -0.007429214194417, 0.009032542817294598, 0.02762976661324501, 0.010787909850478172, -0.019281402230262756, -0.00992404855787754, 0.007118224166333675, -0.011244029738008976, 0.009046364575624466, 0.006022846791893244, -0.0026088636368513107, -0.015148686245083809, 0.004460983909666538, 0.023828772827982903, -0.014194982126355171, 0.0066240946762263775, -0.003248121589422226, 0.01534219179302454, 0.0050587765872478485, 0.010317969135940075, 0.002759175607934594, -0.029827430844306946, -0.0015324914129450917, -0.011541198007762432, 0.016351182013750076, -0.04052549973130226, 0.004067062865942717, 0.011168009601533413, 0.02490687370300293, 0.02709071710705757, 0.008921967819333076, -0.0034018890000879765, -0.03223242238163948, -0.024851586669683456, 0.019986314699053764, 0.0041188946925103664, -0.019060254096984863, 0.013524625450372696, 0.028832262381911278, 0.0042087361216545105, 0.012418881990015507, -0.004136171657592058, -0.004561191890388727, -0.017650431022047997, 0.020870909094810486, -0.006060856860131025, -0.029108697548508644, -0.01025577075779438, 0.024257248267531395, 0.010186661966145039, 0.009606147184967995, 0.014623458497226238, -0.007588164880871773, 0.037152983248233795, 0.008479670621454716, 0.04315163940191269, -0.0050000338815152645, -0.0030096955597400665, -0.025501210242509842, -0.00879066064953804, 0.0014305557124316692, -0.009993157349526882, -0.01791304536163807, -0.00036498173722065985, -0.02344176359474659, -0.012951021082699299, 0.017277242615818977, -0.02717364765703678, 0.08447880297899246, 0.0067001148127019405, 0.008313809521496296, 0.01383561547845602, -0.03289587050676346, 0.0036420426331460476, 0.017553677782416344, 0.022833604365587234, 0.005418143235146999, -0.036434248089790344, 0.023372653871774673, -0.0008478806703351438, 0.003970310557633638, -0.04135480895638466, 0.008472760207951069, 0.004388419445604086, -0.011900564655661583, 0.03201127424836159, -0.021465245634317398, 0.009571592323482037, 0.016834944486618042, 0.010096821002662182, 0.026510201394557953, 0.006986916996538639, -0.010933038778603077, -0.006047035101801157, 0.023828772827982903, 0.01615767739713192, -0.009074008092284203, -0.011451356112957, -0.009958602488040924, 0.008051195181906223, -0.01559098344296217, -0.03331052511930466, 0.00816176924854517, -0.008044283837080002, 0.0026088636368513107, -0.02226690948009491, 0.019115541130304337, 0.002600224921479821, -0.032121848315000534, -0.010131374932825565, -0.03391868248581886, -0.01921229436993599, -0.034388624131679535, 0.007608897518366575, -0.02738097496330738, -0.005670391023159027, -0.03753999248147011], "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c": [0.017304552718997, 0.014101999811828136, 0.002728225663304329, -0.024920709431171417, 0.007804541848599911, 0.02517637424170971, -0.012877494096755981, -0.013496474362909794, -0.012763116508722305, -0.038000043481588364, 0.015999309718608856, 0.02687184512615204, -0.03331732004880905, 0.017102710902690887, -0.002751773688942194, 0.0025398400612175465, 0.025041813030838966, -0.001855260692536831, -0.009298169054090977, 0.007710348814725876, -0.00397964334115386, 0.015837837010622025, 0.02863459475338459, -0.012285425327718258, -0.019605547189712524, 0.008510987274348736, 0.028553858399391174, -0.027114054188132286, -0.00836969818919897, -0.0020352359861135483, 0.022646626457571983, -0.004279041662812233, -0.01296495832502842, 0.006246997509151697, -0.024167167022824287, -0.007151920348405838, -0.005136868450790644, 0.0020436460617929697, -0.00495184725150466, -0.008611908182501793, 0.03918418288230896, 0.022579345852136612, -0.005947599187493324, 0.015649450942873955, 0.012924590148031712, 0.0118346456438303, 0.006526211742311716, -0.014250016771256924, -0.009506738744676113, 0.00041524702101014555, 0.02185271680355072, 0.026791106909513474, -0.01836758479475975, -0.0019292692886665463, -0.02022452838718891, -0.00591059448197484, -0.012514178641140461, 0.005150324665009975, 0.008860846050083637, -0.01589166186749935, 0.00562801631167531, 0.0063546462915837765, -0.007817997597157955, 0.001677808235399425, 0.011686628684401512, -0.011949022300541401, -0.017977358773350716, 0.011370410211384296, -0.01877126842737198, -0.01667211577296257, -0.0064757512882351875, 0.020399456843733788, -0.01525922492146492, 0.01188174169510603, 0.042305998504161835, 0.00933853816241026, -0.01450568251311779, 0.0063546462915837765, -0.01394052617251873, 0.0035322278272360563, -0.002344726584851742, -0.00454479968175292, -0.006583400070667267, -0.004023375920951366, -0.003683609189465642, -0.030599186196923256, 0.005335346329957247, 0.014451858587563038, -0.025580057874321938, -0.031191254034638405, 0.0015339960809797049, 0.010065167210996151, -0.0015415651723742485, 0.02656235359609127, 0.0008389041176997125, 0.02135484106838703, 0.012211416848003864, 0.004114204552024603, -0.008174584247171879, -0.015165031887590885, -0.0019057210301980376, 0.0001890162384370342, -0.0120701277628541, -0.0034649474546313286, -0.010044983588159084, -0.006223449017852545, 0.010589955374598503, 0.015716731548309326, 0.022377504035830498, -0.01629534550011158, -0.00432613817974925, 0.047742266207933426, 0.002921657171100378, -0.030222414061427116, 0.02253897860646248, -0.02078968472778797, -0.0011992754880338907, -0.025593513622879982, -0.01480171736329794, -0.0011765683302655816, 0.018730899319052696, 0.0076027000322937965, -0.006771785672754049, 0.007050999905914068, 0.01478826068341732, -0.001184978405945003, 0.00471636513248086, -0.010758156888186932, -0.0199015811085701, -0.02091078832745552, 0.014438401907682419, -0.014519138261675835, -0.01116184052079916, 0.012547818943858147, -0.01770823635160923, -0.0018889008788391948, -0.023400168865919113, 0.011195480823516846, -0.0076834368519485, -0.01726418361067772, 0.01965937204658985, -0.0003214747994206846, -0.004174756817519665, -0.009910422377288342, 0.0008178789867088199, 0.008100575767457485, 0.010038255713880062, 0.0016147327842190862, -0.021085718646645546, 0.013072607107460499, -0.0026912211906164885, -0.005913958884775639, -0.00932508148252964, 0.0018367584561929107, 0.00995079055428505, 0.025391671806573868, -0.01404817495495081, 0.02166433073580265, 0.024167167022824287, -0.007279753684997559, 0.021368296816945076, 0.006347917951643467, 0.002983891637995839, -0.005375714506953955, 0.00025398400612175465, 0.03770400956273079, 0.044566623866558075, 0.026548897847533226, 0.016120415180921555, 0.005015763454139233, 0.0037643457762897015, 0.017600586637854576, -0.02882297895848751, 0.028338558971881866, 0.022835012525320053, -0.007804541848599911, 0.00022686153533868492, -0.009405817836523056, -0.009722037240862846, -0.0034582193475216627, 0.0240191500633955, -0.007710348814725876, 0.006808789912611246, 0.025660794228315353, -0.030814483761787415, 0.0059745111502707005, 0.024261359125375748, 0.006929894909262657, 0.01383287739008665, 0.008753197267651558, 0.0032328295055776834, 0.037219591438770294, -0.01296495832502842, -0.005103228148072958, -0.6398647427558899, -0.029334312304854393, -0.028930628672242165, -0.03167567402124405, -0.006751601118594408, 0.01394052617251873, 0.0017509758472442627, 0.0015180170303210616, -0.026427792385220528, 0.043409399688243866, 0.01865016296505928, -0.01940370537340641, 0.014492226764559746, -0.03433998301625252, -0.022875379770994186, -0.014424946159124374, -0.0046087163500487804, -0.02150285802781582, -0.021718155592679977, 0.007656524423509836, -0.015313048847019672, 0.014451858587563038, -0.0243690088391304, -0.00398637168109417, 0.0027500917203724384, 0.01918840780854225, 0.014182736165821552, 0.0058130379766225815, 0.013617579825222492, 0.04957229644060135, -0.025539690628647804, -0.017277641221880913, -0.003089858451858163, -0.003808078123256564, 0.04577767476439476, -0.0035120437387377024, 0.004601988475769758, 0.008490802720189095, 0.032967459410429, 0.032106269150972366, -0.03412468731403351, -0.01641644909977913, 0.013341729529201984, 0.03450145572423935, 0.014317297376692295, 0.0016298708505928516, -0.0023329523392021656, -0.00642865477129817, -0.023319432511925697, -0.019928492605686188, -0.005924050696194172, 0.011175296269357204, 0.000833858095575124, -0.011605891399085522, 0.0014885817654430866, -0.005597740411758423, 0.03431307151913643, -0.02687184512615204, -0.0024506933987140656, -0.02470541186630726, 0.009802773594856262, 0.007831454277038574, -0.00591732282191515, -0.00523442542180419, -0.025230199098587036, 0.009365449659526348, -0.020708948373794556, -0.021260647103190422, -0.002114290604367852, -0.011801005341112614, 0.014734436757862568, 0.023682747036218643, -0.014357665553689003, -0.02267353981733322, 0.01028046477586031, 0.020668579265475273, 0.010791797190904617, -0.015568714588880539, -0.00027500916621647775, 0.006216721143573523, 0.008780109696090221, -0.00201673386618495, -0.015017014928162098, -0.0197804756462574, 0.02630668692290783, 0.0071788327768445015, -0.015420697629451752, -0.006869342178106308, 0.010885990224778652, 0.014559507369995117, 0.00045792810851708055, 0.029307398945093155, 0.0023295884020626545, -0.04295189306139946, -0.00034165894612669945, 0.019107671454548836, -0.010307377204298973, -0.014128911308944225, -0.007125008385628462, -0.021745067089796066, -0.0010958316270262003, -0.020103422924876213, 0.005204149056226015, 0.00933853816241026, 0.018448321148753166, -0.001474284683354199, 0.00971530843526125, 0.020762771368026733, 0.035900890827178955, -0.020641667768359184, -0.01865016296505928, -0.019645914435386658, -0.0062570893205702305, 0.020103422924876213, 0.021529769524931908, -0.01433075312525034, 0.01007862389087677, 0.011848101392388344, 0.007252841256558895, -0.022902293130755424, 0.024543937295675278, 0.010919630527496338, -0.01018627267330885, 0.0026441249065101147, 0.013146615587174892, 0.026858387514948845, 0.006189808715134859, -0.013779052533209324, -0.025136006996035576, 0.0020251439418643713, 0.0001418147439835593, 0.004501067567616701, 0.026387425139546394, -0.0034363530576229095, -0.009439458139240742, -0.013617579825222492, 0.018407953903079033, -0.009412546642124653, 0.0017257456202059984, -0.01667211577296257, -0.0177755169570446, -0.014761348254978657, 0.0057154810056090355, -0.009775861166417599, -0.004154572729021311, -0.016712484881281853, -0.02847312018275261, -0.005890410393476486, 0.012379617430269718, 0.006950078997761011, -0.0053925346583127975, -0.01030064933001995, -0.020264895632863045, 0.028957540169358253, -0.003152092918753624, -0.00233127037063241, 0.03713885322213173, -0.01211722381412983, -0.019645914435386658, -0.018542515113949776, -0.0025432039983570576, 0.018798179924488068, -0.023400168865919113, -0.0015550212701782584, -0.010482306592166424, 0.0027080413419753313, -0.003461583284661174, 0.03584706783294678, -0.042279087007045746, -0.05293632298707962, 0.018596338108181953, -0.002573480363935232, 0.008860846050083637, 0.02251206524670124, -0.010697604157030582, 0.018421409651637077, -0.015905117616057396, 0.011262760497629642, 0.015313048847019672, -0.03299437090754509, -0.0043093180283904076, -0.003093222388997674, 0.007003903388977051, -0.017627499997615814, 0.014155823737382889, 0.01996886171400547, 0.018327217549085617, 0.011242576874792576, -0.0004297544073779136, -0.008436978794634342, 0.020830051973462105, 0.02423444762825966, -0.011861558072268963, -0.006159532815217972, -0.00801983941346407, 0.03716576471924782, 0.01262182742357254, 0.009681668132543564, 0.005490091163665056, 0.03840372711420059, 0.017008518800139427, -0.0009368814062327147, -0.0101257199421525, -0.013859789818525314, 0.0039493669755756855, -0.036842819303274155, 0.010959998704493046, -0.007414314430207014, 0.003969551529735327, -0.007373946253210306, 0.007044271565973759, -0.012978414073586464, -0.011760637164115906, -0.030599186196923256, -0.0012043215101584792, 0.03937256708741188, -0.0018081642920151353, 0.025014901533722878, -0.010966726578772068, -0.002876242622733116, 0.018448321148753166, -0.013207168318331242, 0.014936277642846107, -0.011996118351817131, 0.020682035014033318, 0.0227273628115654, 0.005365622229874134, 0.0005235266289673746, -0.02288883738219738, -0.0520482175052166, 0.013274448923766613, -0.020574387162923813, 0.006405106745660305, 0.010576499626040459, 0.009917150251567364, 0.025916460901498795, 0.009076143614947796, -0.02119336649775505, 0.04066435247659683, 8.940952102420852e-05, -0.018703987821936607, 0.010132447816431522, 0.00046045114868320525, -0.042332910001277924, -0.008315873332321644, 0.012251785025000572, 0.03662751987576485, 0.021529769524931908, 0.008894486352801323, 0.03808078169822693, -0.008214952424168587, 0.015999309718608856, -0.02225640043616295, -0.0031386367045342922, 0.012406529858708382, 0.008659004233777523, 0.005843314342200756, 0.009210704825818539, 0.024476656690239906, 0.015972398221492767, -0.01346956193447113, 0.004171392880380154, 0.02305031009018421, 0.009271257556974888, -0.00393254728987813, -0.0012472128728404641, -0.004961939062923193, -0.039480216801166534, -0.023776939138770103, -0.012931318022310734, -0.02901136502623558, -0.016443362459540367, 0.004430423025041819, 0.009351993910968304, 0.017129622399806976, 0.006031699478626251, -0.010933086276054382, 0.017654411494731903, 0.023898044601082802, 0.011875013820827007, -0.021152999252080917, -0.003320294199511409, 0.009641299955546856, 0.023279063403606415, 0.0071990168653428555, -0.013583939522504807, -0.030222414061427116, 0.0057154810056090355, 0.003683609189465642, -0.0072999377734959126, -0.02517637424170971, 0.011478058993816376, -0.001270761014893651, 0.006929894909262657, -0.008961766958236694, -0.01585129275918007, 0.023117590695619583, -0.013967438600957394, -0.0017812520964071155, 0.0019090850837528706, -0.016335712745785713, -0.00015453496598638594, -0.03754253685474396, -0.030276238918304443, 0.07029470056295395, -0.020386001095175743, 0.00568184070289135, 0.000515537045430392, 0.004484247416257858, -0.020883876830339432, -0.005170508753508329, -0.0009074461413547397, -0.013819420710206032, -0.014882453717291355, 0.03285980969667435, -0.028230911120772362, 0.008295689709484577, 0.017533306032419205, 0.028715331107378006, 2.814744038914796e-05, -0.006058611907064915, -0.014411489479243755, 0.008288961835205555, 0.015582171268761158, 0.06814172118902206, 0.0026239408180117607, -0.027585018426179886, 0.0024120069574564695, -0.006509391590952873, -0.007811269722878933, -0.015487978234887123, -0.028150174766778946, 0.034555282443761826, -0.0019023569766432047, 0.007945830933749676, 0.025593513622879982, -0.006620404310524464, -0.0063546462915837765, 0.009695124812424183, 0.017627499997615814, 0.008470619097352028, -0.006509391590952873, -0.005197421181946993, -0.021301016211509705, 0.004861018620431423, 0.014438401907682419, 0.023602010682225227, -0.0022808099165558815, -0.00819476880133152, -0.015501433983445168, 0.019201863557100296, 0.010307377204298973, -0.021301016211509705, -0.02103189378976822, -0.0016736031975597143, 0.026064477860927582, 0.020291808992624283, 0.01515157613903284, -0.012803484685719013, 0.040260668843984604, 0.010711060836911201, 0.020009230822324753, 0.021260647103190422, -0.012453625909984112, 0.028177086263895035, 0.012520906515419483, 0.02841929718852043, -0.020237984135746956, 0.000413775269407779, 0.003582688281312585, -0.0009251073352061212, 0.034393806010484695, -0.025162918493151665, -0.030733747407794, 0.019363336265087128, -0.01525922492146492, -0.023992236703634262, -0.00979604572057724, -0.0034060769248753786, 4.697810709330952e-06, 0.014667156152427197, -0.008564811199903488, -0.012561275623738766, -0.023588554933667183, -0.021583594381809235, -0.019565178081393242, 0.008571540005505085, 8.809544669929892e-05, -0.001986457733437419, 0.014007806777954102, -0.001020982046611607, 0.007421042770147324, -0.011498242616653442, 0.008201496675610542, 0.0017442477401345968, -0.04235982149839401, -0.07153265923261642, -0.012433442287147045, -0.007548875641077757, 0.0056952969171106815, -0.004585168324410915, -0.014478770084679127, -0.012816941365599632, 0.008443706668913364, -0.03285980969667435, -0.05420119687914848, -0.00393254728987813, -0.030222414061427116, -0.0006702822865918279, -0.00455152802169323, -0.006872706115245819, 0.004245401360094547, -0.014855541288852692, 0.010004615411162376, 0.00893485452979803, 0.00235818256624043, -0.00236322870478034, -0.008410066366195679, -0.018219567835330963, 0.03089522011578083, 0.011282945051789284, 0.023790396749973297, 0.02790796384215355, -0.030195502564311028, 0.00563474465161562, -0.01782933995127678, -0.003680245019495487, -0.021798891946673393, -0.002632350893691182, 0.0017164945602416992, 0.01620115153491497, 0.005049403756856918, -0.0166048351675272, -0.01959209144115448, 0.028365472331643105, -0.025849180296063423, 0.044566623866558075, 0.028230911120772362, 0.023117590695619583, 0.008443706668913364, -0.0013170164311304688, -0.0010302331065759063, 0.05121393874287605, -0.025728074833750725, 0.011141655966639519, -0.050218187272548676, 0.012305608950555325, 0.023534730076789856, -0.02439592033624649, 0.007266297470778227, 0.020480193197727203, -0.019888125360012054, -0.03358644247055054, -0.001655101077631116, -8.431091555394232e-05, 0.025391671806573868, -0.02496107667684555, -0.023036854341626167, -0.005167144816368818, -0.003241239581257105, -0.0174256581813097, 0.004171392880380154, -0.02611830271780491, 0.004675996955484152, 0.014828628860414028, -0.002856058534234762, -0.000544972310308367, 0.005604468286037445, -0.007925646379590034, -0.03339805454015732, -0.0009604296064935625, 0.0028678325470536947, 0.004279041662812233, 0.019847756251692772, 0.00979604572057724, 0.0025667522568255663, -0.015366873703897, 0.0018569426611065865, 0.017815884202718735, -0.03547029569745064, -0.014761348254978657, -0.007326849736273289, 0.031245078891515732, 0.011390593834221363, 0.016806676983833313, -0.011343497782945633, 0.01190192624926567, 0.01601276732981205, -0.014142367988824844, 0.00927798543125391, 0.009594203904271126, 0.0013086063554510474, -0.007360490038990974, 0.012016302905976772, 0.030464624986052513, 0.0014364393427968025, 0.007373946253210306, -0.007892006076872349, 0.004137752577662468, 0.03573941811919212, 0.009069415740668774, 0.0027399996761232615, -0.008968494832515717, -0.021839261054992676, -0.00832260213792324, 0.015003558248281479, 0.0013237444218248129, 0.03240230306982994, -0.0024052790831774473, -0.003079766407608986, 0.01975356414914131, -0.0033472063951194286, 0.0037407975178211927, 0.02182580530643463, 0.009399089962244034, -0.0033707546535879374, -0.007979471236467361, 0.03576632961630821, 0.019565178081393242, -0.02681802026927471, -0.0031184526160359383, -0.029522696509957314, 0.033102020621299744, 0.02357509732246399, 0.01667211577296257, 0.021247191354632378, 0.008685916662216187, -0.007185560651123524, 0.00035742780892178416, 0.007669980637729168, -0.008786837570369244, -0.0199015811085701, 0.00791219063103199, -0.012561275623738766, -0.012023030780255795, -0.029872555285692215, -0.013005326502025127, 0.005971147213131189, -0.020695490762591362, 0.006243633106350899, 0.02276773191988468, 0.022740820422768593, -0.02630668692290783, -0.03240230306982994, 0.00893485452979803, -0.020668579265475273, 0.03350570425391197, -0.022619714960455894, 0.040045373141765594, 0.02093770168721676, 0.016658660024404526, 0.0049484833143651485, 0.0022454876452684402, 0.02138175256550312, 0.010240096598863602, 0.028553858399391174, 0.001665193121880293, -0.006405106745660305, -0.0026256227865815163, -0.01764095574617386, 0.0024574215058237314, -0.003276561852544546, -0.03606236353516579, 0.004090656526386738, 0.009109783917665482, 0.003989735618233681, -0.025485865771770477, 0.019511353224515915, -0.025862636044621468, 0.013395553454756737, 0.00984314177185297, 0.003549047978594899, -0.024382464587688446, -0.003838354256004095, -0.005385806318372488, 0.012372889555990696, 0.025822268798947334, 0.011605891399085522, 0.014667156152427197, 0.010623595677316189, -0.006290729623287916, -0.008046751841902733, -0.022094925865530968, 0.014519138261675835, 0.008228409104049206, 0.01721036061644554, -0.019847756251692772, 0.01554180309176445, 0.002830828307196498, 0.004887930583208799, -0.014236560091376305, 0.013523386791348457, 0.008295689709484577, 0.028930628672242165, -0.010697604157030582, -0.0017997542163357139, -0.0036735169123858213, 0.015124663710594177, -0.013516658917069435, -0.002221939619630575, -0.01326772104948759, -0.005284885875880718, -0.0008923080749809742, -0.009372178465127945, 0.022027645260095596, 5.169562791706994e-05, 0.010717788711190224, 0.0042689498513937, 0.007010631263256073, -0.0028224182315170765, 0.019605547189712524, -0.005722209345549345, 0.011740452609956264, -0.034958962351083755, 0.0005172190722078085, -0.0060956161469221115, 0.002909882925450802, 0.01348301861435175, 0.013388825580477715, -0.00276354793459177, 0.006869342178106308, 0.0301416777074337, -0.012130679562687874, 0.011114743538200855, -0.004800465889275074, 0.010421753861010075, -0.03011476621031761, 0.022525520995259285, -0.013059151358902454, -0.013509931042790413, 0.04085274040699005, -0.01773514784872532, 0.009392362087965012, -0.008140943944454193, -0.005281521938741207, -0.0034918596502393484, -0.02279464341700077, -0.0350935235619545, 0.0021681152284145355, 0.01517848763614893, 0.011343497782945633, -0.011767365038394928, -0.005210876930505037, 0.011390593834221363, -0.005739029496908188, -0.009661484509706497, 0.016335712745785713, 0.002189981285482645, 0.010502491146326065, -0.01638953760266304, -0.0029065189883112907, -0.013442650437355042, -0.034797489643096924, -0.016968149691820145, 0.0033118841238319874, 0.009284713305532932, 0.004638992715626955, 0.0005912276683375239, -0.024907251819968224, 0.00767670851200819, -0.01716999150812626, -0.0052916137501597404, 0.0033707546535879374, 0.007811269722878933, 0.004830742254853249, 0.031218167394399643, 0.015528346411883831, 0.0030713563319295645, -0.03950712829828262, -0.012103768065571785, 0.0033640265464782715, -0.014667156152427197, -0.04766152799129486, 0.005157052539288998, -0.0243690088391304, 0.03904962167143822, 0.003922455012798309, -0.011713540181517601, -0.014586418867111206, -0.004198305308818817, -0.03404394909739494, -0.015124663710594177, 0.00893485452979803, 0.011484786868095398, 0.015595627017319202, 0.0164837297052145, -0.002058784244582057, 0.04610062018036842, -0.026670003309845924, 0.00786509457975626, -0.010421753861010075, 0.005937506910413504, -0.004383326508104801, 0.02571461908519268, -0.01721036061644554, 0.0023750027175992727, -0.0001490684226155281, -0.03506661206483841, 0.03111051768064499, -0.018973110243678093, -0.0001557964860694483, 0.01975356414914131, 0.0074479547329247, -0.011141655966639519, 0.007353762164711952, -0.000761531526222825, -0.001008366933092475, -0.010098807513713837, 0.005106592550873756, -0.01239980198442936, 0.0026575808878988028, 0.011155111715197563, -0.00032063378603197634, 0.0020991526544094086, -0.007024087477475405, -0.015999309718608856, -0.01324753649532795, 0.0027231795247644186, -0.010603412054479122, -0.014451858587563038, 0.022929204627871513, -0.00814767275005579, 0.024557393044233322, -0.0317833237349987, -0.0028913808055222034, 0.01971319504082203, 0.008470619097352028, -0.014344208873808384, -0.02251206524670124, 0.0010024799266830087, -0.02253897860646248, -0.009829686023294926, 0.021610505878925323, -0.005140232387930155, -0.0037912579718977213, -0.0041512087918818, 0.0320255346596241, -0.03377482667565346, 0.005442995112389326, -0.047015637159347534, 0.003552412148565054, -0.019672827795147896, 0.029630346223711967, 0.01246708258986473, 0.004548164084553719, -0.011417506262660027, -0.02270045131444931, 0.009769133292138577, -0.011343497782945633, -0.010845622047781944, 0.0005416082567535341, -0.005039311945438385, 0.014828628860414028, 0.0161338709294796, -0.00814767275005579, 0.0014885817654430866, -0.019417161121964455, 0.033667176961898804, -0.025956828147172928, -0.008228409104049206, 0.20194923877716064, -0.00378789403475821, 0.018663618713617325, 0.029172837734222412, -0.0026575808878988028, 0.02373657189309597, 0.016995063051581383, 0.010899445973336697, -0.021906541660428047, 0.001986457733437419, -0.023319432511925697, 0.015272680670022964, -0.025876091793179512, 0.0030579001177102327, 0.007690164726227522, 0.004366506356745958, 0.016147326678037643, -0.05597740039229393, -0.015514890663325787, -0.0030326698906719685, 0.0024254631716758013, 0.009446186944842339, -0.017667867243289948, -0.018798179924488068, 0.024786148220300674, -0.0021664330270141363, -0.0025886185467243195, 0.014357665553689003, 0.04066435247659683, -0.01120893657207489, -0.01371850073337555, 0.019632458686828613, 0.0032294655684381723, 0.008268777281045914, -0.02442283369600773, 0.004480883479118347, 0.011195480823516846, -0.004501067567616701, 0.03170258551836014, -0.03433998301625252, 0.007266297470778227, -0.0034952235873788595, -0.01676630787551403, -0.026952581480145454, 0.014398033730685711, 0.03299437090754509, -0.015555258840322495, -0.019955405965447426, -0.012043215334415436, 0.018421409651637077, -0.005776033736765385, 0.01535341702401638, 0.03245612978935242, 0.03234848007559776, -0.0012228236300870776, -0.00011574353993637487, -0.0019259052351117134, 0.014572963118553162, 0.0016542600933462381, 0.009930606000125408, -0.011303129605948925, 0.02790796384215355, -0.004302590154111385, 0.016241520643234253, 0.00960765965282917, 0.011895198374986649, -0.03377482667565346, 0.009412546642124653, -0.004787009675055742, -0.010145904496312141, -0.013711771927773952, -0.013361913152039051, -0.0012488948414102197, 0.0018821728881448507, -0.021516313776373863, -0.015017014928162098, 0.025849180296063423, 0.010764884762465954, 0.008436978794634342, 0.03146037831902504, -0.02178543619811535, -0.021771980449557304, -0.010246824473142624, -0.012298881076276302, 0.0071788327768445015, -0.026481617242097855, 0.03660060837864876, -0.038861233741045, -0.005083044059574604, -0.00880702119320631, -0.008093847893178463, -0.0077641732059419155, -0.0040334677323699, -0.0041882130317389965, 0.024718867614865303, 0.0021159728057682514, -0.019269144162535667, 0.020359089598059654, -0.007353762164711952, 0.004242037422955036, -0.021798891946673393, 0.03751562535762787, 0.011525155045092106, 0.04109494760632515, 0.01679322123527527, -0.0018233023583889008, 0.0055943760089576244, 0.0024355552159249783, 0.006566579919308424, -0.015501433983445168, -0.005685205105692148, -0.005372350569814444, 0.00432613817974925, -0.017250727862119675, -0.004346322268247604, 0.01817919872701168, -0.00030591615359298885, -0.01337536983191967, 0.00444387923926115, -0.005382442381232977, -0.00927798543125391, -0.006640588399022818, -0.020547473803162575, 0.012877494096755981, -0.007488323375582695, -0.014599875546991825, -0.02627977542579174, 0.0028577405028045177, -0.04141789674758911, 0.006109072361141443, 0.030195502564311028, -0.03294054791331291, 0.0036398768424987793, -0.013752141036093235, 0.0004310159129090607, -0.009022319689393044, -0.0015146529767662287, -0.025136006996035576, -0.01980738900601864, -0.009156879968941212, -0.02300994098186493, -0.0010815345449373126, -0.011410778388381004, 0.003680245019495487, 0.016241520643234253, -0.012742932885885239, -0.004430423025041819, 0.009789316914975643, -0.014599875546991825, -0.017102710902690887, 0.0017644319450482726, 0.0038820866029709578, -0.004023375920951366, -0.01846177689731121, 0.010684148408472538, -0.007986199110746384, -0.009224160574376583, -0.028500033542513847, 0.009264528751373291, -0.009802773594856262, -0.04112185910344124, 0.013119704090058804, 0.032509952783584595, 0.002879606792703271, -0.011262760497629642, -0.024153711274266243, -0.17040812969207764, -0.0064757512882351875, -0.003680245019495487, -0.02103189378976822, 0.03218700736761093, 0.020978068932890892, 0.027329351752996445, 0.011807733215391636, 0.0057356650941073895, -0.0010167770087718964, -0.021771980449557304, -0.0032984281424432993, -0.02263317070901394, -0.007024087477475405, -0.003834990318864584, 0.00304107996635139, -0.007380674127489328, 0.01028046477586031, 0.03670825809240341, 0.009641299955546856, 0.021327927708625793, -0.022781187668442726, 0.010092079639434814, 0.009351993910968304, -0.004527979996055365, 0.010892718099057674, -0.014169279485940933, -0.006260453257709742, -0.021045349538326263, -0.03143346309661865, 0.01792353391647339, 0.007589243818074465, -0.0020705582574009895, -0.009587476029992104, 0.02847312018275261, -0.007589243818074465, -0.01921531930565834, -0.010381385684013367, -0.0350935235619545, 0.0066170403733849525, 0.0063546462915837765, 0.031944796442985535, 0.027746491134166718, 0.0010663964785635471, -0.011720268987119198, 0.022175664082169533, 0.013953981921076775, -0.030841395258903503, 0.017412202432751656, -0.02788105234503746, 0.04096038639545441, -0.022875379770994186, -0.017412202432751656, 0.0024153711274266243, 0.026172127574682236, -0.017102710902690887, -0.016847044229507446, 0.02395186945796013, -0.013106247410178185, 0.007656524423509836, -0.0016542600933462381, -0.03576632961630821, -0.002344726584851742, 0.014371121302247047, 0.003690337063744664, -0.02442283369600773, -0.016725940629839897, 0.01667211577296257, -0.04152554273605347, -0.0033472063951194286, 0.0024406013544648886, -0.004416966810822487, 0.008988679386675358, -0.011659716255962849, -0.009049231186509132, 0.011047462932765484, -0.006421926897019148, -0.008618636056780815, 0.002290902193635702, -0.0098902378231287, 0.012971686199307442, 0.0015979126328602433, 0.0035894163884222507, -0.019740108400583267, -0.012736205011606216, -0.034609105437994, 0.00024305091938003898, -0.006216721143573523, -0.013119704090058804, -0.03670825809240341, 0.0269660372287035, -0.030087852850556374, -0.028715331107378006, -0.007454683072865009, 0.019363336265087128, 0.015501433983445168, 0.0080669354647398, -0.018569426611065865, 0.003251331625506282, -0.004995579365640879, 0.018703987821936607, -0.015810925513505936, -0.046611953526735306, -0.01450568251311779, 0.018878916278481483, 0.017318008467555046, -0.024880340322852135, 0.0066170403733849525, 0.03170258551836014, 0.0035120437387377024, -0.033451881259679794, 0.0012177776079624891, 0.002193345222622156, 0.02216220647096634, -0.0036432407796382904, 0.029899468645453453, -0.0041512087918818, -0.025983741506934166, 0.00455152802169323, 0.01149151474237442, 0.04149863123893738, -0.018609795719385147, -0.024247903376817703, 0.01848869025707245, 0.014290384948253632, -0.003538955934345722, -0.12304263561964035, -0.022619714960455894, -0.01281021349132061, 0.01834067329764366, 0.01252763532102108, 0.024180622771382332, -0.01566290855407715, 0.014626787975430489, -0.014317297376692295, 0.034393806010484695, -0.00028720375848934054, -0.020103422924876213, -0.008706101216375828, -0.017439113929867744, -0.023023398593068123, -0.018165742978453636, -0.012796756811439991, -0.014720980077981949, -0.002745045581832528, 0.03468984365463257, 0.004884566646069288, 0.006573307793587446, 0.0020150518976151943, 0.008544627577066422, -0.017439113929867744, 0.016900869086384773, -0.0227273628115654, 0.011848101392388344, 0.01575710065662861, 0.005002307705581188, 0.0021327929571270943, -0.022054558619856834, -0.002403596881777048, -0.010711060836911201, 0.022377504035830498, -0.001460828585550189, -0.0029082009568810463, -0.03035697527229786, 0.04241364821791649, -0.011276217177510262, -0.004359778482466936, -0.004787009675055742, 0.0009108101949095726, -0.017250727862119675, 0.0026979492977261543, 0.005264701787382364, -0.04731167107820511, 0.01296495832502842, 0.0007821361650712788, -0.029253575950860977, -0.03490513935685158, -0.02385767735540867, -0.04222526028752327, 0.005187328904867172, 0.019040390849113464, 0.005564100109040737, -0.004696181043982506, 0.010065167210996151, -0.0031167706474661827, 0.010637052357196808, -0.022337136790156364, -0.00910305604338646, -0.021906541660428047, 0.023184871301054955, 0.008699372410774231, -0.007010631263256073, -0.030787570402026176, -0.012480538338422775, 0.008645548485219479, -0.023696202784776688, 0.011713540181517601, 0.02109917439520359, -0.041148774325847626, 0.022861924022436142, -0.009674940258264542, 0.008813749998807907, 0.005665020551532507, 0.022969573736190796, 0.00201673386618495, -0.0015710004372522235, -0.029657257720828056, -0.025028357282280922, -0.008080392144620419, -0.023588554933667183, 0.007791085634380579, 0.012177776545286179, 0.007838182151317596, 0.0021916632540524006, 0.02408643066883087, -0.02828473597764969, 0.016214607283473015, 0.036277662962675095, 0.00677514960989356, 0.010764884762465954, 0.014384577982127666, -0.012413257732987404, 0.0025230199098587036, -0.01895965449512005, -0.0064185624942183495, 0.020978068932890892, -0.01667211577296257, -0.0020840144716203213, -0.03372100368142128, 0.0009831368224695325, -0.02385767735540867, -0.018407953903079033, 0.014572963118553162, -0.0007472343859262764, -0.0005201626336202025, -0.005826494190841913, 0.008733012713491917, 0.0006807948811911047, -0.034797489643096924, -0.002655898919329047, -0.012924590148031712, -0.005846678279340267, -0.013570482842624187, -0.009473098441958427, 0.0034985875245183706, 0.007185560651123524, 0.003838354256004095, 0.015124663710594177, 0.008699372410774231, -0.025485865771770477, 0.012648739852011204, 0.021260647103190422, -0.01543415430933237, -0.001165635185316205, 0.000968839623965323, 0.037381064146757126, -0.005335346329957247, -0.010320833884179592, 0.0113636814057827, 0.01252763532102108, -0.006839065812528133, 0.006936622783541679, -0.021960364654660225, 0.020426370203495026, 0.003734069410711527, 0.014357665553689003, 0.01268238015472889, 0.054174285382032394, -0.011982662603259087, -0.0174256581813097, -0.0025095639284700155, -0.019363336265087128, 0.008638820610940456, 0.0015491342637687922, -0.019296055659651756, 0.003966187126934528, 0.024786148220300674, 0.009775861166417599, 0.026347056031227112, 0.016349168494343758, -0.007353762164711952, -0.03146037831902504, 0.0028863348998129368, -0.0066136764362454414, -0.01808500662446022, -0.012433442287147045, -0.002889698836952448, -0.0004919889033772051, 0.03277907520532608, 0.0007724646129645407, 0.0017408838029950857, -0.0086522763594985, 0.0037374335806816816, -0.002627304755151272, -0.013065879233181477, 0.024907251819968224, 0.0007320962613448501, -0.017183447256684303, -0.014357665553689003, 0.0051536886021494865, 0.008410066366195679, 0.018192656338214874, 0.015205400064587593, -0.002993983682245016, -0.02216220647096634, 0.01733146421611309, -0.012144136242568493, 0.017035430297255516, 0.014061630703508854, 0.01971319504082203, -0.0005399262881837785, 0.025068726390600204, 0.036869730800390244, 0.004430423025041819, 0.017533306032419205, -0.007192288991063833, 0.01839449815452099, 0.004517887718975544, 0.010959998704493046, 0.005567464046180248, -0.02084350772202015, 0.008033295162022114, 0.007387402467429638, 0.015407241880893707, -0.012083583511412144, -0.001838440541177988, 0.0038989067543298006, -0.015393785201013088, 0.017560219392180443, -0.01688741333782673, 0.005449722986668348, 0.0009923878824338317, -0.04187540337443352, 0.016443362459540367, -0.007609427906572819, -0.023036854341626167, -0.0040267398580908775, 0.02015724778175354, -0.0027652299031615257, 0.01632225699722767, 0.038000043481588364, 0.0013910250272601843, -0.03318275883793831, 0.006395014468580484, -0.01867707632482052, -0.0230772215873003, -0.028796067461371422, 0.01999577321112156, -0.014276929199695587, 0.016658660024404526, 0.04978759214282036, 0.0032328295055776834, 0.00871282909065485, 0.022835012525320053, 0.020480193197727203, -0.017062343657016754, -0.005924050696194172, 0.004692817106842995, -0.001237961812876165, 0.011713540181517601, -0.0166048351675272, -0.007892006076872349, -0.0010588273871690035, -0.025109093636274338, 0.012224872596561909, 0.011330041103065014, 0.003969551529735327, 0.07190943509340286, 0.01508429553359747, 0.001086580567061901, 0.013348457403481007, -0.006485843099653721, 0.0011774093145504594, 0.006990447174757719, -0.0002754296874627471, 0.008739740587770939, -0.03582015633583069, 0.024826515465974808, 0.006943350657820702, -0.00033514114329591393, -0.03826916590332985, -0.0007821361650712788, 0.02806943841278553, -0.019955405965447426, 0.015407241880893707, -0.013873245567083359, -0.013429193757474422, 0.008140943944454193, 0.008463891223073006, 0.00039485262823291123, 0.0019612275063991547, -0.03716576471924782, -0.009311625733971596, 0.03918418288230896, -0.0026609450578689575, -0.006469022948294878, -0.03229465335607529, -0.010495763272047043, 0.008336057886481285, -0.023682747036218643, -0.030464624986052513, 0.006314277648925781, 0.019538266584277153, -0.010051711462438107, -0.02941504865884781, 0.007387402467429638, 0.006855885963886976, 0.021045349538326263, 0.005305069964379072, -0.025485865771770477, -0.043059539049863815, -0.008813749998807907, 0.010670692659914494, -0.009937334805727005, 0.005685205105692148, -0.029872555285692215], "b7059d13-4bf1-4044-b228-2d2a847e89a2": [-0.007349452003836632, -0.0040786853060126305, 0.0017656928393989801, -0.015676224604249, -0.010750528424978256, 0.01383886206895113, 0.00895225815474987, -0.020627982914447784, -0.005329655949026346, -0.035548415035009384, 0.020771324634552002, 0.02697405219078064, -0.017409341409802437, -0.0173181239515543, -0.01867334172129631, -0.0018552805995568633, 0.021461963653564453, -0.005297078751027584, 0.007251719944179058, 0.0033114885445684195, -0.021292561665177345, 0.02314295619726181, 0.007186565548181534, -0.026361599564552307, -0.01785239204764366, 0.019820064306259155, -0.004287180490791798, -0.030440283939242363, -0.0044142319820821285, -0.01463374961167574, -0.009089083410799503, 0.005029944237321615, -0.014125542715191841, -0.015506822615861893, -0.019181549549102783, 0.0005367120029404759, -0.004489160142838955, -0.016314741224050522, -0.01946822926402092, 0.008600423112511635, 0.02994510903954506, 0.005977945402264595, 0.0011011146707460284, 0.002202229341492057, 0.006394935306161642, 0.023559946566820145, 0.007753411307930946, -0.027886219322681427, -0.018399693071842194, 0.02541033923625946, 0.006841245107352734, 0.017682990059256554, -0.020015528425574303, -0.011030693538486958, 0.012405457906425, 0.01785239204764366, -0.023807533085346222, 0.011128425598144531, -0.0006605059606954455, -0.01004685740917921, 0.0030736736953258514, 0.0031697771046310663, -0.010450816713273525, -0.0003007297345902771, -0.006587142124772072, 0.024876071140170097, 0.014125542715191841, 0.020041590556502342, 0.0023211368825286627, -0.024524236097931862, 0.003375014290213585, 0.01935095153748989, -0.00863951537758112, 0.023716317489743233, 0.043783970177173615, -0.009036959148943424, -0.01050294004380703, 0.021370748057961464, -0.007759926840662956, 0.011864674277603626, 0.003990726545453072, -0.04117778316140175, -0.006665327586233616, -0.002242951188236475, 0.004108004737645388, -0.020419487729668617, -0.004922438878566027, 0.003603055840358138, -0.021996231749653816, -0.028225023299455643, 0.015624101273715496, 0.01351308822631836, 0.006052873097360134, 0.03679938614368439, -0.014711935073137283, 0.021461963653564453, 0.0032691380474716425, 0.019689755514264107, -0.022738996893167496, 0.003892994485795498, -0.0037920046597719193, 0.0073689986020326614, -0.02986692264676094, -0.008678608573973179, -0.025970671325922012, 0.03294222429394722, 0.010561579838395119, 0.020549798384308815, 0.01273123174905777, -0.017005382105708122, -0.019142456352710724, 0.05618942901492119, -0.0017966413870453835, -0.058691371232271194, 0.023677224293351173, -0.0028765806928277016, 0.0010180424433201551, -0.0329943485558033, -0.011063271202147007, -0.0016557442722842097, -0.0006482894532382488, 0.010411723516881466, 0.01009898167103529, -0.0054892851039767265, 0.02991904690861702, 0.012170901522040367, -0.003674726001918316, -0.01948126032948494, -0.009695022366940975, -0.019585508853197098, 0.01428191363811493, -0.005424130242317915, -0.007681741379201412, 0.005756419152021408, -0.01647111214697361, -0.0014537646202370524, -0.005701037589460611, 0.012066653929650784, -0.006241822149604559, 0.006854276172816753, 0.024172401055693626, -0.005306851584464312, 0.005701037589460611, 0.0040786853060126305, 0.006026811432093382, 0.008763309568166733, 0.022230789065361023, 0.01197543740272522, -0.02310386300086975, 0.002200600691139698, 0.013539150357246399, -0.004218767862766981, 0.006932462099939585, -0.012835479341447353, 0.008294195868074894, 0.013187314383685589, 0.010007764212787151, 0.024120276793837547, 0.00785114336758852, -0.0032512203324586153, 0.018373630940914154, 0.0275734756141901, -0.003879963420331478, 0.003355467924848199, 0.0024986835196614265, 0.023546915501356125, 0.02401602827012539, 0.02031524106860161, -0.019572477787733078, 0.0028830962255597115, 0.01195589080452919, 0.015402575023472309, -0.04023955389857292, 0.016679607331752777, 0.017813298851251602, -0.009818815626204014, 0.00430672662332654, -0.0019872188568115234, -0.014503439888358116, 0.0018943734467029572, 0.01946822926402092, -0.017682990059256554, -0.0064666057005524635, 0.04102141037583351, -0.033202845603227615, -0.009225907735526562, 0.005600047763437033, 0.009975187480449677, 0.02028917893767357, 0.0005916862864978611, 0.0005753975710831583, 0.0446961373090744, 0.0010318878339603543, -0.010691889561712742, -0.6425818800926208, -0.0029694263357669115, -0.007564462721347809, -0.0477193146944046, 0.00729081267490983, 0.009206361137330532, 0.006776090711355209, -0.003935344982892275, -0.01935095153748989, 0.032551296055316925, -0.009519103914499283, 0.010353084653615952, 0.03599146753549576, -0.027078300714492798, -0.01933792047202587, -0.01303745899349451, 0.012008014135062695, -0.031873688101768494, -0.021474994719028473, -0.006495925132185221, 0.00503971753641963, 0.008750278502702713, 0.005065779201686382, -0.0089718047529459, 0.0037659427616745234, 0.010418239049613476, 0.005697779823094606, -0.013187314383685589, 0.02994510903954506, 0.06432073563337326, -0.00893922708928585, -0.016106246039271355, -0.00041739741573110223, -0.02025008574128151, 0.031065769493579865, 0.0019139198120683432, 0.007460215128958225, 0.011662694625556469, 0.009975187480449677, 0.031117893755435944, -0.016288679093122482, 0.006046357564628124, -0.0032056120689958334, 0.016249585896730423, 0.009571228176355362, -0.021852891892194748, 0.00012837514805141836, 0.0024579616729170084, -0.0030915914103388786, -0.01492043025791645, 0.00409171637147665, 0.003358725691214204, 0.018451815471053123, -0.013995232991874218, -0.002555693732574582, 0.012092715129256248, 0.020667076110839844, -0.008046607486903667, -0.01195589080452919, -0.021970171481370926, 0.010164136067032814, 0.015024677850306034, 0.005104871932417154, -0.007564462721347809, -0.004339304286986589, 0.010170651599764824, -0.010476878844201565, -0.004502191208302975, -0.030492408201098442, -0.009343186393380165, 0.02546246349811554, 0.007766442373394966, -0.028016528114676476, -0.03132638707756996, 0.004906150046736002, 0.03137851133942604, -0.004560830071568489, -0.019911281764507294, 0.009577743709087372, 0.009056505747139454, 0.009063021279871464, -0.0020409715361893177, -0.02981479838490486, -0.026400690898299217, 0.021878954023122787, -0.021514087915420532, -0.007694771979004145, 0.004404458682984114, 0.008157370612025261, 0.005143965128809214, -0.003164890455082059, 0.03372408077120781, -0.001198846846818924, -0.03440169245004654, -0.006860791705548763, 0.02320810966193676, -0.011317374184727669, -0.009558197110891342, -0.00785765890032053, -0.024224523454904556, -0.007010647561401129, -0.0008022174588404596, 0.0020474870689213276, 0.004609696101397276, 0.016210494562983513, 0.01118706539273262, -0.004495675675570965, 0.01572834886610508, 0.03494898974895477, -0.005600047763437033, -0.014021295122802258, -0.015611070208251476, -0.004834480118006468, 0.013219892047345638, 0.014529502019286156, -0.015337420627474785, 0.023025676608085632, 5.5941432947292924e-05, 0.019807033240795135, -0.026609186083078384, 0.016653545200824738, -0.008040091954171658, 0.003974437713623047, -0.01387795526534319, 0.013565212488174438, 0.019181549549102783, 0.005743388552218676, -0.019051238894462585, -0.02754741534590721, -0.005124418530613184, 0.004088458605110645, 0.008424504660069942, 0.0061668939888477325, 0.004013530444353819, -0.017774207517504692, 0.008235556073486805, 0.020067652687430382, -0.008698155172169209, -0.00031437151483260095, -0.0024726216215640306, -0.008769825100898743, 0.0030508695635944605, 0.009838362224400043, -0.007388544734567404, 0.01084826048463583, -0.03945769742131233, -0.02542337030172348, 0.0007830782560631633, 0.0006454389076679945, -0.007056255824863911, 0.013304593041539192, -0.020641013979911804, -0.011297827586531639, 0.02845958061516285, 0.00861996877938509, 0.002295074984431267, 0.0042513455264270306, 0.00762961758300662, 0.002101239748299122, -0.014086449518799782, 0.0004198407114017755, 0.018347568809986115, -0.024276647716760635, -0.000770454527810216, 0.001290877815335989, 1.978820000658743e-05, -0.022113511338829994, 0.030336037278175354, -0.023794502019882202, -0.05089886486530304, 0.02765166200697422, 0.020641013979911804, 0.013682490214705467, 0.022817181423306465, -0.0006478822324424982, 0.013102613389492035, -0.01351308822631836, -0.014268883503973484, 0.00708231795579195, -0.02754741534590721, -0.012262118048965931, 0.01954641565680504, -0.0007863360224291682, -0.012229540385305882, 0.0020067652221769094, 0.011845127679407597, 0.00785114336758852, -0.007153987884521484, -0.001791754737496376, 0.027469228953123093, 0.03158700838685036, 0.036252085119485855, -0.012457582168281078, 0.017070535570383072, -0.006186440587043762, 0.025814298540353775, -0.009545166045427322, 0.02022402361035347, 0.018490908667445183, 0.02247837744653225, 0.021970171481370926, 0.009629867039620876, -0.004792129620909691, -0.020771324634552002, -0.00636235810816288, -0.031039707362651825, 0.020706169307231903, -0.0035216123796999454, 0.013890985399484634, -0.020367365330457687, 0.002081693150103092, 5.578872514888644e-05, -0.012613953091204166, -0.02388571947813034, 0.011213126592338085, 0.025944609194993973, 0.013695521280169487, 0.02537124790251255, 0.010014279745519161, -0.007017163094133139, -0.005257985554635525, -0.005293820984661579, 0.022817181423306465, -0.013434902764856815, 0.01873849704861641, 0.036199960857629776, -0.00299711711704731, -0.0006368873873725533, -0.037815798074007034, -0.04122990369796753, 0.01729206182062626, -0.024406956508755684, 0.004766067489981651, 0.0016068782424554229, 0.049647893756628036, 0.012972304597496986, 0.021123159676790237, -0.02689586766064167, 0.025801267474889755, 0.005202603992074728, -0.00895877368748188, 0.018412722274661064, 0.00977320782840252, -0.04438339173793793, 0.00974714569747448, 0.025970671325922012, 0.04417489841580391, -0.0034238803200423717, -0.0011214755941182375, 0.013180799782276154, 0.0028830962255597115, 0.004928954411298037, -0.03226461634039879, 0.012802901677787304, 0.00504623306915164, 0.002081693150103092, 0.016132308170199394, 0.0023993225768208504, 0.026322506368160248, 0.0024872813373804092, -0.01566319353878498, -0.012008014135062695, 0.0007423565839417279, 0.021514087915420532, -0.006925946567207575, -0.010959023609757423, -0.01350005716085434, -0.030883336439728737, -0.011030693538486958, -0.019689755514264107, -0.040291678160429, -0.024081183597445488, 0.0032251584343612194, 0.010372631251811981, 0.03140457347035408, 0.011812550015747547, -0.01653626747429371, 0.03447987511754036, 0.027964403852820396, 0.009206361137330532, -0.03828491270542145, -0.011806034483015537, 0.02838139422237873, 0.006821698974817991, 0.005538151133805513, -0.021318623796105385, -0.04844904690980911, -0.015585008077323437, 0.0021761676762253046, 0.004391428083181381, -0.027495291084051132, 0.006150605157017708, -0.009988218545913696, 0.016171401366591454, -0.0016728474292904139, 0.01785239204764366, 0.017826329916715622, -0.013180799782276154, 0.004567345604300499, -0.00364866410382092, 0.005521862301975489, -0.011525869369506836, -0.012841994874179363, -0.007030194159597158, 0.07193081080913544, -0.007251719944179058, 0.02318204939365387, -0.012907149270176888, 0.011525869369506836, -0.02388571947813034, -0.014073419384658337, 0.0059486255049705505, -0.002944993320852518, -0.028954757377505302, 0.0433148555457592, -0.028120776638388634, 0.002664827974513173, 0.013167768716812134, 0.031717315316200256, 0.009512588381767273, -0.004547799471765757, -0.007557947188615799, 0.004407716449350119, 0.006710935849696398, 0.04693745821714401, -0.002855405444279313, -0.008704670704901218, 0.0011377643095329404, -0.03964012861251831, -0.023755410686135292, -0.027521353214979172, -0.011890736408531666, 0.014412223361432552, 0.009851393289864063, -0.0043327887542545795, 0.019116394221782684, 0.0048963772132992744, 0.012809417210519314, 0.006176667287945747, 0.018946992233395576, 0.02078435570001602, -0.027964403852820396, 0.011362982913851738, -0.03150882199406624, 0.022908398881554604, 0.018946992233395576, 0.0179436095058918, -0.007349452003836632, 0.005199346225708723, -0.024954257532954216, 0.034792620688676834, -0.01116751879453659, 0.0022869305685162544, -0.025032442063093185, -0.016197463497519493, 0.011656179092824459, 0.026048855856060982, 0.027391042560338974, 0.015454699285328388, 0.030466346070170403, -0.0005004697013646364, 0.01348702609539032, 3.204288805136457e-05, -0.012053622864186764, 0.03664301335811615, -0.010294445790350437, 0.014842244796454906, -0.012457582168281078, -0.0022413223050534725, 0.008417989127337933, 0.006078935228288174, 0.03275979310274124, -0.0036877570673823357, -0.01575441099703312, 0.013669460080564022, -0.009825331158936024, -0.039353448897600174, 0.014998615719377995, -0.012535767629742622, -0.004430520813912153, -0.006098481360822916, -0.02464151382446289, -0.020445549860596657, -0.016106246039271355, -0.004925696644932032, -0.016914164647459984, 0.004775840789079666, -0.011584509164094925, -0.011701786890625954, -0.01565016247332096, 0.010945992544293404, 0.006108254659920931, 0.0019367239437997341, 0.015415606088936329, 0.01537651289254427, -0.050560060888528824, -0.04722413793206215, -0.010906899347901344, -0.01161057036370039, 0.019025176763534546, 0.0007692328654229641, 0.004564087837934494, -0.005880213342607021, -0.002668085740879178, -0.02986692264676094, -0.051837094128131866, -0.0011206611525267363, -0.043679721653461456, -0.023703286424279213, 0.005368748679757118, 0.0035476742777973413, -0.008027060888707638, -0.02157924324274063, 0.021957140415906906, -0.009206361137330532, 0.00015514966798946261, -0.015298327431082726, -0.004384912550449371, -0.010587641969323158, 0.04323666915297508, 5.268369568511844e-05, 0.011512838304042816, 0.03166519105434418, -0.013434902764856815, 0.0009968671947717667, -0.015428637154400349, 0.002664827974513173, -0.024146338924765587, 0.015246204100549221, -0.010476878844201565, 0.00898483581840992, 0.025553680956363678, -0.021839860826730728, -0.006802152376621962, 0.02926749922335148, -0.024393925443291664, 0.024068152531981468, 0.0298408605158329, 0.028225023299455643, 0.0003616086905822158, -0.0034792618826031685, 0.016158370301127434, 0.025227906182408333, -0.019103363156318665, 0.007655679248273373, -0.02382056415081024, 0.027834095060825348, 0.007720834109932184, 0.0038441282231360674, 0.010333538055419922, 0.01191028207540512, -0.021149221807718277, -0.020432518795132637, 0.005284047685563564, 0.01780026964843273, 0.011871189810335636, -0.010607187636196613, 0.0023439410142600536, 0.005042975302785635, 0.0004959902726113796, -0.01579350419342518, -0.002588271163403988, -0.02759953774511814, 0.011480261571705341, 0.022973554208874702, -0.017761176452040672, 0.007199596147984266, -0.0058704400435090065, -0.01875152811408043, -0.02692192979156971, 0.009030443616211414, 0.014425254426896572, 0.014881337061524391, 0.02087557129561901, 0.013343686237931252, 0.0024693638551980257, -0.032420989125967026, -0.021292561665177345, 0.03500111401081085, -0.019246703013777733, -0.008750278502702713, 0.00544041907414794, 0.026635248214006424, 0.02094072662293911, 0.007134441751986742, 0.006626234855502844, 0.0021289302967488766, 0.004404458682984114, -0.01227514911442995, 0.0013373005203902721, -0.009349701926112175, -0.013278531841933727, -0.005746645852923393, -0.0010123414685949683, 0.005332913715392351, -0.003622602205723524, 0.0019236929947510362, 0.0070236786268651485, -0.015285296365618706, 0.03051847033202648, -0.0025084565859287977, 0.015585008077323437, -0.018152104690670967, 9.742666588863358e-05, -0.01307655218988657, 0.015962906181812286, 0.0003151859564241022, 0.01572834886610508, 0.01116751879453659, -0.00014517286035697907, 0.020510705187916756, -0.0163668654859066, 0.0029401066713035107, 0.011376013979315758, -0.011845127679407597, -0.008867557160556316, 0.016835978254675865, 0.01651020534336567, 0.004586892202496529, -0.02326023392379284, 0.010913414880633354, -0.022230789065361023, 0.033254966139793396, -0.0037952621933072805, 0.019272765144705772, 0.02316901832818985, -0.003272395581007004, 0.004127551335841417, -0.014737997204065323, 0.019259734079241753, -0.0061668939888477325, -0.015311358496546745, 0.00168587826192379, -0.0008592278463765979, -0.032551296055316925, -0.03690363094210625, -0.011128425598144531, -0.007935844361782074, -0.03221249207854271, 0.01228166464716196, 0.025149721652269363, 0.02019796334207058, -0.01495952345430851, -0.004801902454346418, 0.01639292761683464, -0.03367195650935173, 0.050507936626672745, -0.012190447188913822, 0.04983032867312431, 0.03140457347035408, 0.03515748679637909, -0.00929106306284666, -0.008795887231826782, 0.01643201895058155, 0.00449241790920496, 0.022817181423306465, 0.00676305964589119, -0.007238689344376326, -0.01083522941917181, 0.002542662899941206, 0.014399192295968533, -0.0063851624727249146, -0.034844741225242615, 0.009571228176355362, -0.019012145698070526, -0.01726599968969822, -0.025214875116944313, 0.02402905933558941, -0.022986583411693573, 0.009681991301476955, -0.0261270422488451, -0.0021647654939442873, -0.016132308170199394, -0.010665827430784702, -0.006300461012870073, 0.025566712021827698, 0.0005167583585716784, -0.0039516338147223, 0.019715817645192146, 0.011362982913851738, -0.02078435570001602, -0.00708883348852396, -0.03510536253452301, 0.022087449207901955, 0.0037398808635771275, 0.00861996877938509, 0.0016182803083211184, 0.005134191829711199, 0.022243820130825043, 0.014216759242117405, -0.008326772600412369, 0.020002497360110283, 0.013180799782276154, 0.02479788474738598, -0.007909783162176609, -0.019689755514264107, 0.013643397949635983, 0.023025676608085632, 0.00042594896513037384, 0.01383886206895113, -0.0036910148337483406, -0.018256351351737976, -0.006919431034475565, 0.00043287166045047343, 0.015194079838693142, 0.011082817800343037, -0.008274649269878864, -0.011304343119263649, 7.126296986825764e-05, -0.012855025939643383, -0.015676224604249, 0.003984211012721062, 0.01639292761683464, -0.016249585896730423, -0.019911281764507294, -0.002054002368822694, 0.012008014135062695, 0.00135033146943897, 0.011812550015747547, 0.0038017777260392904, 0.015936844050884247, 0.037789735943078995, -0.023390542715787888, -0.0018324764678254724, 0.0019416105933487415, 0.017604805529117584, -0.013656429015100002, 0.014360100030899048, -0.011128425598144531, -0.0029287044890224934, 0.039327386766672134, -0.01566319353878498, -0.013324139639735222, -0.011115394532680511, 0.008300711400806904, 0.016731731593608856, 0.0023797759786248207, -0.019611569121479988, 0.009382279589772224, 0.009923063218593597, 0.005163511261343956, -0.013408840633928776, -0.0028570343274623156, 0.0029026425909250975, -0.0008559700800105929, 0.01866031065583229, 0.011434652842581272, 0.007238689344376326, -0.009636382572352886, -0.018503939732909203, 0.011141456663608551, -0.00020605178724508733, -0.02997116930782795, -0.006561079993844032, 0.00674351304769516, 0.016575360670685768, 0.018933961167931557, 0.010678858496248722, -0.025058504194021225, -0.008437535725533962, -0.010105496272444725, 0.015181048773229122, -0.01004685740917921, 0.0094148563221097, -0.001409785239957273, 0.03244704753160477, 0.0275734756141901, 0.022921429947018623, -0.016314741224050522, -0.005903017241507769, -0.0023032191675156355, -0.018451815471053123, -0.04365365952253342, -0.011128425598144531, -0.0217225831001997, 0.052592888474464417, -0.0017265999922528863, -0.0328640379011631, -0.013604304753243923, -0.015141956508159637, -0.045321621000766754, 0.014047357253730297, 0.009486527182161808, 0.027469228953123093, 0.03729455918073654, 0.030362097546458244, -5.965728996670805e-05, 0.031847625970840454, -0.0014586512697860599, 0.01463374961167574, -0.017591774463653564, -0.017331155017018318, 0.006280914880335331, 0.01383886206895113, -0.019963406026363373, 0.014724966138601303, -0.00896528922021389, -0.022035324946045876, 0.004508706275373697, -0.019103363156318665, 0.012613953091204166, 0.008867557160556316, -0.0010742384474724531, -0.013643397949635983, -0.007036709692329168, -0.0033945608884096146, 0.0066848741844296455, 0.006665327586233616, -0.006333038676530123, -0.01537651289254427, 0.0044142319820821285, 0.02326023392379284, -0.002081693150103092, 0.0021582499612122774, -0.026570092886686325, -0.01490739919245243, -0.022126542404294014, -0.0047530364245176315, -0.015493791550397873, -0.019298827275633812, 0.0055283778347074986, -0.008359350264072418, 0.028668075799942017, -0.012164385989308357, -0.002091466449201107, 0.017709052190184593, -0.01716175302863121, -0.013213376514613628, -0.03072696551680565, 0.0012525994097813964, -0.03380226716399193, -0.002194085158407688, 0.009890486486256123, 0.008105247281491756, -0.028876570984721184, -0.030362097546458244, 0.025201844051480293, -0.04769325256347656, 0.006629492621868849, 0.0022967038676142693, 0.008398443460464478, -0.011239188723266125, 0.0157413799315691, 0.019272765144705772, 0.001798270153813064, 0.003580251708626747, -0.004899634979665279, 0.006144090089946985, -0.003000374650582671, -0.01868637278676033, -0.014373131096363068, -0.0038245818577706814, 0.026335537433624268, 0.002681116573512554, 0.014360100030899048, -0.011232673190534115, -0.004212252330034971, 0.030987583100795746, -0.027234671637415886, 0.012815932743251324, 0.19358769059181213, 0.0014252593973651528, 0.022035324946045876, 0.033307090401649475, 0.003987468779087067, 0.0033847875893115997, 0.006036584731191397, -0.003593282774090767, -0.012483644299209118, 0.007688256446272135, -0.022230789065361023, 0.016822947189211845, 0.0009333413327112794, 0.009466980583965778, 0.015532884746789932, -0.02088860236108303, -0.00708883348852396, -0.031065769493579865, -0.007219142746180296, 0.012972304597496986, -0.009695022366940975, -0.002668085740879178, -0.03208218142390251, -0.017722083255648613, 0.02619219571352005, 0.007167018949985504, -0.004987593740224838, 0.029684489592909813, 0.025605803355574608, -0.026374628767371178, -0.012372881174087524, 0.021227406337857246, -0.005140707362443209, -0.002104497281834483, -0.016223523765802383, -0.0031958390027284622, 0.015311358496546745, 0.0048898616805672646, 0.01785239204764366, -0.008137824013829231, 0.00488660391420126, -0.001231424161233008, -0.022282913327217102, -0.03570478409528732, 0.012411973439157009, 0.01708356663584709, -0.030257850885391235, -0.021852891892194748, -0.012672592885792255, 0.02765166200697422, -0.003622602205723524, -0.014321006834506989, 0.02026311680674553, 0.02775591053068638, 0.005424130242317915, -0.010724466294050217, -0.007610070984810591, 0.009232423268258572, 0.015115894377231598, 0.019963406026363373, -0.01493346132338047, 0.04388821870088577, -0.02830320969223976, 0.021957140415906906, -0.009825331158936024, 0.011571478098630905, 0.0021289302967488766, 0.027234671637415886, 0.003401076188310981, -0.00899786688387394, 0.006841245107352734, 0.02174864523112774, -0.0006185626261867583, -0.008593907579779625, -0.009102114476263523, -0.01572834886610508, 0.02466757595539093, 0.0029368489049375057, 0.02402905933558941, 0.025071535259485245, -0.016223523765802383, -0.011695271357893944, -0.01308306772261858, -0.011271766386926174, -0.014490408822894096, -0.02926749922335148, 0.029710551723837852, -0.028850508853793144, -0.013011396862566471, 0.008404958993196487, 0.004254602827131748, -0.03309859707951546, 0.011336920782923698, -0.012021045200526714, 0.018399693071842194, 0.0037724580615758896, -0.029293561354279518, 0.00676305964589119, -0.018308475613594055, -0.0009545166394673288, -0.021162252873182297, 0.05962959676980972, 0.009642898105084896, 0.005707553122192621, 0.012653046287596226, -0.005691264756023884, 0.001643527764827013, 0.0025068277027457952, 0.006789121776819229, -0.006662069819867611, 0.008880588226020336, -0.021891985088586807, 0.014099480584263802, -0.021996231749653816, 0.0058704400435090065, 0.0026371371932327747, -0.02326023392379284, -0.039900749921798706, 0.0031795501708984375, 0.0031306841410696507, -0.006284172646701336, -0.0029124158900231123, -0.01352611929178238, -0.015949875116348267, 0.002611075295135379, -0.006075677461922169, -0.010483394376933575, 0.0004699284036178142, -0.035522352904081345, 0.03208218142390251, 0.011806034483015537, -0.03072696551680565, 0.031743377447128296, -0.002023054054006934, -0.010476878844201565, -0.012008014135062695, -0.0004682995204348117, -0.00731687480583787, -0.005082068033516407, 0.0020996108651161194, -0.016588391736149788, 0.0021615077275782824, -0.028928695246577263, 0.010190198197960854, 0.021422870457172394, -0.0012990222312510014, 0.0038734478875994682, -0.011310858651995659, 0.008665577508509159, -0.015285296365618706, -0.016314741224050522, 0.00048092324868775904, 0.010313991457223892, -0.019637631252408028, 0.02156621217727661, -0.016275648027658463, -0.004238314460963011, -0.015246204100549221, 0.009903516620397568, 0.006420997437089682, -0.036278147250413895, -0.001311238738708198, 0.01881668157875538, 0.013167768716812134, -0.008893619291484356, -0.024302709847688675, -0.16252192854881287, -0.007655679248273373, -0.01494649238884449, -0.02856382727622986, 0.029632365331053734, 0.008463597856462002, 0.002081693150103092, 0.006789121776819229, 0.009883970953524113, -0.00782508123666048, -0.0094148563221097, 0.005850893445312977, -0.022048356011509895, -0.005326398182660341, 0.0006955265998840332, 0.01118054986000061, -0.00544041907414794, 0.016145339235663414, 0.040708668529987335, 0.009844877757132053, 0.039874687790870667, -0.014737997204065323, 0.025045473128557205, 0.010959023609757423, 0.0053492020815610886, -0.00029889727011322975, -0.011506322771310806, 0.008131308481097221, -0.022569594904780388, -0.04109959676861763, 0.012685623951256275, 0.04245481267571449, -0.029319623485207558, -0.007968422025442123, 0.01876455917954445, -0.005466480739414692, -0.0016158369835466146, -0.007616586517542601, -0.019898250699043274, 0.005779223516583443, 0.015037708915770054, 0.013434902764856815, -0.011121910065412521, 0.0044565824791789055, -0.00448590237647295, 0.0027218384202569723, 0.02169652096927166, -0.017604805529117584, 0.012431520037353039, 0.007167018949985504, 0.026413721963763237, -0.01718781515955925, -0.021097097545862198, -0.02307780086994171, 0.038519468158483505, -0.010548548772931099, 0.006232048850506544, 0.008548298850655556, -0.010385662317276001, -0.003190952353179455, -0.001949754892848432, -0.03195187449455261, -0.0027576733846217394, 0.010685374028980732, -0.0025149721186608076, -0.0283292718231678, 0.004961531609296799, 0.018960023298859596, -0.029736613854765892, 0.012633499689400196, 0.0005228666123002768, -0.004202479496598244, 0.0073624830693006516, 0.006945492699742317, 0.0009854651289060712, 0.005743388552218676, 0.0020377137698233128, 0.021331654861569405, 0.008066154085099697, -0.0055739860981702805, 0.006489410065114498, 0.009480011649429798, -0.0013250840129330754, -0.006502440664917231, 0.013232923112809658, -0.02391178160905838, 0.006329780910164118, 0.03507930040359497, -0.01080265175551176, -0.035652659833431244, 0.0001367231016047299, -0.023546915501356125, 0.0005827274871990085, -0.009160753339529037, 0.022830212488770485, 0.001992105506360531, -0.0011605684412643313, -0.014112511649727821, 0.01194285973906517, -0.020667076110839844, 0.025110628455877304, -0.004955016076564789, -0.01936398260295391, -0.006518729496747255, 0.03244704753160477, 0.0342453196644783, -0.034662310034036636, 0.007616586517542601, 0.03216036781668663, 0.015624101273715496, -0.0361478365957737, 0.012131808325648308, 9.218374179909006e-05, 0.03072696551680565, 0.0015571977710351348, 0.006486152298748493, 0.009108629077672958, -0.011323889717459679, -0.0014464347623288631, 0.000849454605486244, 0.01571531780064106, -0.010353084653615952, 0.0013462593778967857, 0.028720200061798096, 0.009160753339529037, -0.022673841565847397, -0.11467230319976807, -0.02845958061516285, 0.003401076188310981, 0.016822947189211845, 0.02161833457648754, 0.023533884435892105, -0.0005094284424558282, 0.03348952531814575, 0.010411723516881466, 0.007942359894514084, -0.002304848050698638, -0.013734614476561546, 0.0035085815470665693, -0.026609186083078384, -0.017396310344338417, -0.004147097934037447, 0.014099480584263802, -0.003697530133649707, -0.018399693071842194, 0.021839860826730728, -0.005075552500784397, 0.007929328829050064, -0.004948501009494066, -0.0005534078809432685, -0.0036812415346503258, 0.016184432432055473, -0.019233671948313713, -0.01579350419342518, -0.005365490913391113, 0.0021191572304815054, 0.009069536812603474, -0.01648414321243763, -0.001326712896116078, -0.004883346147835255, 0.015428637154400349, 0.005111387465149164, -0.011766942217946053, -0.019285796210169792, 0.029371745884418488, 0.003401076188310981, -0.004622727166861296, -0.015285296365618706, -0.008398443460464478, -0.0017103112768381834, 0.008229040540754795, 0.0011402075178921223, -0.04185539111495018, -0.0030020035337656736, -0.009349701926112175, -0.0238596573472023, -0.04618166387081146, -0.010972054675221443, -0.046103477478027344, 0.004808417987078428, 0.01799573376774788, 0.012529252097010612, -0.0015319503145292401, 0.0025931578129529953, -0.006056130863726139, -0.003576993942260742, -0.030127542093396187, 0.0023797759786248207, -0.014229790307581425, 0.003866932587698102, -0.010542033240199089, 0.012366365641355515, -0.02393784373998642, -0.014294944703578949, 0.025214875116944313, -0.009453949518501759, -0.007616586517542601, 0.02694799192249775, -0.02843351848423481, 0.0037659427616745234, -0.03364589437842369, 0.003329406026750803, 0.0021647654939442873, 0.008528752252459526, -0.0034760041162371635, -0.0003495957935228944, -0.03216036781668663, -0.018881836906075478, -0.00892619602382183, -0.02468060702085495, 0.00596817210316658, 0.01568925566971302, 0.03291616216301918, -0.021370748057961464, 0.025657927617430687, -0.014360100030899048, 0.0025068277027457952, 0.008776340633630753, 0.0005892429617233574, -0.012477128766477108, 0.019103363156318665, -0.026400690898299217, 0.002694147638976574, -0.009701537899672985, -0.02160530351102352, 0.023038707673549652, -0.016992351040244102, -0.014829213730990887, -0.0358872190117836, -0.00011208647629246116, -0.008795887231826782, -0.018920930102467537, 0.0079032676294446, -0.014790120534598827, 0.016705669462680817, -0.028772322461009026, -0.003203983185812831, 0.003866932587698102, -0.04464401304721832, 0.013682490214705467, -0.016288679093122482, -0.013265500776469707, -0.007688256446272135, -0.007505823392421007, -0.008834979496896267, 0.005375264212489128, 0.008848010562360287, -0.005140707362443209, 0.005502315703779459, -0.03427138179540634, 0.020641013979911804, -0.0011336921015754342, -0.039223138242959976, 0.0034727463498711586, -0.0073624830693006516, 0.03872796520590782, -0.011591024696826935, -0.04036986455321312, 0.00011055941286031157, 0.008815432898700237, 0.00543390354141593, 0.009681991301476955, -0.016692638397216797, 0.019246703013777733, 0.007610070984810591, 0.02465454488992691, 0.031769439578056335, 0.041412338614463806, -0.018907899037003517, -0.02705223858356476, 0.000571325421333313, -0.006095223594456911, 0.0046325004659593105, -0.006668585352599621, -0.00929757859557867, -0.012353334575891495, 0.012868057005107403, 0.005743388552218676, 0.028798384591937065, 0.01538954395800829, -0.00816388614475727, -0.017474494874477386, 0.008476628921926022, -0.02765166200697422, -0.0041568707674741745, -0.014816182665526867, -0.005720584187656641, -0.004287180490791798, 0.03828491270542145, -0.003886478953063488, -0.0010815683053806424, -0.013904016464948654, 0.009388795122504234, -0.014698904007673264, -0.018099980428814888, -0.004104746971279383, -0.016197463497519493, -0.003375014290213585, -0.016301710158586502, -0.015402575023472309, 0.03361983597278595, -0.010678858496248722, 0.037007879465818405, -0.0064698634669184685, -0.014412223361432552, 0.018178166821599007, -0.018334537744522095, 0.027417104691267014, 0.01652323640882969, 0.004163386300206184, -0.022595655173063278, 0.019285796210169792, 0.024211492389440536, 0.003866932587698102, -0.003270766930654645, -0.02249140851199627, -0.037033941596746445, 0.006104996893554926, 0.008417989127337933, -0.0030850758776068687, -0.014881337061524391, 0.004961531609296799, 0.021357716992497444, 0.004805160220712423, -0.0006116399308666587, -0.006873822771012783, -0.016757793724536896, -0.003109508892521262, 0.020406456664204597, -0.008320257067680359, -0.0031632615718990564, -0.004919181112200022, -0.035548415035009384, 0.015363482758402824, -0.03361983597278595, -0.03734668344259262, -0.021292561665177345, 0.04764112830162048, -0.015050739981234074, 0.010724466294050217, 0.036252085119485855, -0.005668460391461849, -0.027260733768343925, -0.009968671947717667, -0.015428637154400349, -0.024902133271098137, -0.01497255451977253, 0.0127507783472538, 0.01644505001604557, 0.02471970021724701, 0.04427914693951607, -0.006717451382428408, 0.011239188723266125, 0.0010880838381126523, 0.01490739919245243, -0.011310858651995659, -0.006232048850506544, -0.0015197338070720434, -0.0004585263377521187, 0.0009569599060341716, -0.02913719043135643, -0.006219017785042524, -0.013011396862566471, -0.018907899037003517, 0.006440544035285711, 0.004749779123812914, 0.017578743398189545, 0.052827443927526474, -0.005284047685563564, -0.0063851624727249146, -0.0041177780367434025, -0.0010253724176436663, 0.011851643212139606, 0.020354334264993668, 0.008092216216027737, -0.0037431386299431324, -0.024941226467490196, 0.004586892202496529, -0.0033684989903122187, 0.0011467230506241322, -0.04644228145480156, -0.0013389294035732746, 0.0141646359115839, -0.012776840478181839, 0.016953257843852043, -0.042194195091724396, 0.015298327431082726, 0.025214875116944313, 0.014842244796454906, 0.0008527123718522489, -0.010763559490442276, -0.030805150046944618, 0.018099980428814888, 0.02610098011791706, -0.0024986835196614265, -0.01563713140785694, -0.04031774029135704, 0.0024579616729170084, 0.00783159676939249, -0.0039972420781850815, -0.012223024852573872, 0.0024123534094542265, 0.011297827586531639, -0.008326772600412369, -0.02022402361035347, 0.02163136564195156, 0.02084950916469097, 0.00976669229567051, -0.0017445175908505917, -0.03953588381409645, -0.05634579807519913, -0.018477877601981163, 0.033281028270721436, -0.00263387942686677, -0.0011133311782032251, -0.04208994656801224], "44d86782-fbbf-4972-bfa0-f05631ace2d2": [-0.0011115680681541562, -0.0029631159268319607, 0.005868695676326752, -0.026952529326081276, -0.012638792395591736, 0.015061707235872746, -0.000662465812638402, -0.017606087028980255, -0.020853687077760696, -0.03554460406303406, 0.0010436433367431164, 0.014793205074965954, -0.038894493132829666, -0.00018099939916282892, -0.011309065856039524, -0.019881965592503548, 0.02800096571445465, -0.017388727515935898, 0.0082852179184556, -0.01804080605506897, -0.030685991048812866, 0.001767640933394432, 0.0006976268487051129, -0.011347423307597637, -0.016020644456148148, 0.00895647332072258, 0.0005645742639899254, -0.02351314015686512, -0.007927214726805687, -0.008822222240269184, 0.004810668528079987, -0.024433720856904984, -0.004078679718077183, 0.008994830772280693, -0.008572898805141449, 0.004788293037563562, -0.007255958393216133, -0.008847793564200401, -0.02100711688399315, -0.00749249616637826, 0.04306267201900482, 0.027310531586408615, -0.0007092139567248523, 0.005107938777655363, -0.008675185032188892, 0.010708131827414036, 0.017746731638908386, -0.03418930619955063, -0.00512711750343442, 0.0036631401162594557, 0.01965181902050972, 0.02539265714585781, -0.030583703890442848, -0.007888856343925, -0.008438647724688053, 0.011488067917525768, -0.0014767632819712162, 0.0033275121822953224, 0.02626209333539009, -0.009774766862392426, 0.0007427767850458622, 0.003858124138787389, -0.009237761609256268, -0.009883446618914604, 0.004251288250088692, -0.008438647724688053, 0.0009573389543220401, 0.015598711557686329, -0.0035704427864402533, -0.024945152923464775, 0.00410105474293232, 0.012849758379161358, -0.01089352648705244, 0.02114776149392128, 0.038996778428554535, -0.010183913633227348, 0.0031692874617874622, 0.009877053089439869, 0.000991700915619731, 0.0259935911744833, 0.0005717662861570716, -0.005862302612513304, -0.012152930721640587, -0.003130930010229349, -0.0029215619433671236, -0.021186118945479393, -0.0001119758962886408, 0.00037338616675697267, -0.007792963180691004, -0.028410112485289574, 0.014217842370271683, 0.0069746701046824455, -0.0007811342948116362, 0.001621403032913804, 0.00996016152203083, 0.020239967852830887, -0.011647890321910381, 0.025712303817272186, -0.011673462577164173, 0.0006808454054407775, -0.0007092139567248523, -0.0013329227222129703, -0.020176038146018982, -0.004717971198260784, -0.012280789203941822, 0.014473559334874153, 0.00863682758063078, 0.003055813256651163, 0.03521217405796051, -0.011878035962581635, -0.011769356206059456, 0.03856206312775612, 0.0004069489659741521, -0.017695587128400803, 0.03237371891736984, -0.001101179514080286, 0.04053108021616936, -0.036746472120285034, -0.019511176273226738, -0.0026035145856440067, 0.015240708366036415, 0.003976393025368452, 0.0030622060876339674, 0.01077206153422594, 0.023449210450053215, -0.018066376447677612, -0.012657971121370792, -0.008975652046501637, -0.003743051551282406, -0.02526479959487915, 0.010151948779821396, 0.010522738099098206, 0.016276361420750618, 0.01901252754032612, -0.026159806177020073, 0.009857874363660812, -0.037897199392318726, 0.03160656988620758, -0.0004918548511341214, -0.023219065740704536, 0.027898680418729782, 0.002504424424842, -0.021710338070988655, -0.0010867954697459936, 0.024957939982414246, 0.01668550819158554, 0.016596006229519844, 0.010855169035494328, -0.004996062722057104, 0.008451432920992374, 0.023206280544400215, 0.03083942085504532, -0.019229887053370476, -0.007607568521052599, -0.00442070048302412, 0.0206746868789196, -0.010874347761273384, 0.014447987079620361, -0.0024532810784876347, -0.008713542483747005, 0.042372237890958786, 0.02573787420988083, -0.0021560105960816145, 0.02039339765906334, -0.007773784454911947, 0.037897199392318726, 0.013680837117135525, -0.010746489278972149, -0.00146957125980407, -0.001657363143749535, -0.00926972646266222, 0.009129081852734089, -0.04715413972735405, 0.01249814871698618, 5.7935791119234636e-05, 0.002601916203275323, 0.003781409002840519, 0.021211691200733185, -0.010669774375855923, 0.02064911462366581, 0.013706409372389317, -0.01914038695394993, 0.013885410502552986, 0.02402457408607006, -0.03170885890722275, -0.010062447749078274, 0.040352076292037964, 0.024165216833353043, 0.01865452527999878, 0.004941723309457302, 0.010426843538880348, 0.02589130401611328, -0.0067061674781143665, -0.0034617632627487183, -0.6362228989601135, 0.001876320457085967, -0.005328494589775801, -0.036644186824560165, -0.016020644456148148, 0.014102770015597343, 0.012082608416676521, 0.010599453002214432, -0.026926957070827484, 0.024932367727160454, 0.008413075469434261, 0.005008848849684, 0.014089983887970448, -0.025213655084371567, -0.0017388728447258472, -0.006949098315089941, 0.0030909741763025522, -0.0263899527490139, -0.027821965515613556, 0.01548363920301199, -0.01618685945868492, 0.03124856762588024, -0.028205540031194687, -0.008624042384326458, 0.0026978100650012493, 0.020853687077760696, 0.005632157903164625, -0.014665346592664719, 0.012990402989089489, 0.04605455696582794, -0.008477005176246166, -0.02240077406167984, 0.00315490341745317, 0.0073646376840770245, 0.033882446587085724, 0.004008357413113117, 0.0008326771203428507, 0.003781409002840519, 0.015355781652033329, 0.02116054855287075, -0.022055555135011673, -0.013872625306248665, 0.030072271823883057, 0.011615926399827003, 0.025034654885530472, -0.013642479665577412, -0.0054691387340426445, -0.005919839255511761, -0.011539211496710777, -0.01300318818539381, 0.008707149885594845, -0.005024830810725689, -0.0054691387340426445, 0.015739355236291885, -0.004522987175732851, -0.0003160497290082276, 0.000459890317870304, -0.023922286927700043, 0.001650970196351409, -0.013514622114598751, 0.013604122214019299, 0.01631471887230873, -0.002475656336173415, -0.004059500992298126, -0.0061212158761918545, 0.0076778908260166645, -0.0029151691123843193, -0.012587648816406727, -0.020431755110621452, -0.004513397812843323, 0.020572399720549583, 0.010036876425147057, -0.01815587840974331, -0.03163214027881622, 0.0017244888003915548, 0.020355040207505226, 0.02887040376663208, -0.0026994082145392895, 0.010043269023299217, -0.009314476512372494, -0.012095394544303417, -0.0047211674973368645, -0.017836231738328934, -0.030634846538305283, 0.029586410149931908, -0.01348904985934496, -0.015496425330638885, 0.004545362200587988, 0.006268253084272146, 0.012926473282277584, 0.012197681702673435, 0.014153913594782352, 0.002472459804266691, -0.04776785895228386, -0.004986473359167576, 0.010420450940728188, 0.0015151207335293293, -0.012082608416676521, 0.010100805200636387, -0.025699516758322716, 0.0017436675261706114, -0.0139237679541111, 0.00020387404947541654, 0.039763931185007095, 0.009877053089439869, 0.020968759432435036, 0.017951304093003273, 0.0017580515705049038, 0.039866216480731964, 0.003084581345319748, 0.010426843538880348, -0.027336103841662407, -0.003634372027590871, -0.0016230011824518442, 0.005232600495219231, -0.017375942319631577, 0.01752937212586403, -0.01051634456962347, 0.019242674112319946, -0.01954953372478485, 0.021850982680916786, -0.02751510590314865, -0.0038165701553225517, -0.0039444281719625, 0.015585926361382008, 0.007613961584866047, 0.00871993601322174, -0.0035033172462135553, -0.023052850738167763, -0.013936554081737995, 0.0019290620693936944, -0.004075482953339815, -0.0035033172462135553, -0.006642238236963749, -0.01853945292532444, -0.016007859259843826, 0.00765231903642416, -0.015956714749336243, 0.006674203090369701, -0.014013268984854221, 0.0016222021076828241, -0.009659694507718086, 0.01743987202644348, 0.011596747674047947, 0.005408405791968107, -0.022106699645519257, -0.03692547604441643, -0.033396586775779724, 0.017094653099775314, -0.0008254850981757045, 0.005453156307339668, 0.0009421558352187276, 0.0031820733565837145, 0.02439536340534687, 0.0026274879928678274, -0.005398816429078579, 0.002167198108509183, -0.006149983964860439, -0.017491014674305916, -0.012613221071660519, 0.0009149858960881829, 0.013156618922948837, -0.033677875995635986, -0.005184653680771589, 0.0029982770793139935, -0.0184243805706501, -0.016634363681077957, 0.02424193173646927, -0.037897199392318726, -0.05068302899599075, 0.037283480167388916, 0.01195475086569786, -0.005370048340409994, 0.023334138095378876, 0.0030414292123168707, 0.03288515284657478, -0.02204276993870735, 0.01579049974679947, 0.0010820007883012295, -0.02164640836417675, 0.002389351837337017, 0.005833534523844719, -0.02339806780219078, -0.014141127467155457, 0.009109903126955032, 0.018232593312859535, 0.028537971898913383, 0.0018907045014202595, 0.016250789165496826, 0.011724605225026608, 0.033652301877737045, 0.029790982604026794, -0.01518956571817398, -0.004612488206475973, -0.014665346592664719, 0.022669276222586632, 0.007307101506739855, 0.003896481590345502, -0.002724980004131794, 0.037155620753765106, 0.03774376958608627, -0.010235056281089783, -0.00025252014165744185, -0.009557407349348068, -0.019332174211740494, -0.02710595913231373, 0.01536856684833765, -0.03505874425172806, 0.003311529755592346, -0.029151691123843193, 0.010279807262122631, -0.00550429942086339, -0.01411555614322424, -0.016020644456148148, 0.018194235861301422, 0.03707890585064888, -0.0067061674781143665, 0.051194462925195694, -0.027182674035429955, -0.006146787665784359, 0.004302431829273701, -0.002971107140183449, 0.01680058054625988, -0.022055555135011673, -0.01306072436273098, 0.03692547604441643, 0.008585684932768345, 0.008668792434036732, -0.012037858366966248, -0.04252566769719124, 0.016097359359264374, -0.004395128693431616, 0.0033786555286496878, 0.011929178610444069, 0.011302673257887363, 0.028179967775940895, 0.013898196630179882, -0.028282254934310913, 0.03646518662571907, 0.0020441345404833555, -0.033166442066431046, 0.01928103156387806, -0.004091465380042791, -0.034138165414333344, 0.026773527264595032, 0.0041745733469724655, 0.06265056133270264, 0.013022366911172867, 0.005430781282484531, 0.015342995524406433, 0.0014072404010221362, 0.002060116734355688, -0.04242338240146637, -0.019869178533554077, -0.01902531459927559, -0.0019226691219955683, 0.009372012689709663, 0.007876071147620678, 0.032399293035268784, 0.018718454986810684, -0.006399307865649462, -0.0017500603571534157, -0.005648140329867601, 0.007690676487982273, -0.007038599345833063, 0.0036631401162594557, 0.003493727883324027, -0.03610718250274658, -0.01729922741651535, -0.002502826042473316, -0.0024884419981390238, -0.036772046238183975, -0.04180966317653656, 0.0061819483526051044, 0.025546086952090263, 0.0064952014945447445, -0.020879259333014488, 0.02651781029999256, 0.022694846615195274, 0.009531836025416851, -0.020124895498156548, -0.002026553964242339, 0.024842865765094757, 0.027566248551011086, -0.00802310835570097, -0.020086538046598434, -0.025354299694299698, -0.017695587128400803, -0.0017708373488858342, -0.01077206153422594, -0.03817848861217499, 0.014268985949456692, -0.011526425369083881, 0.024689435958862305, -0.008534541353583336, -0.0021080635488033295, 0.025789018720388412, 0.0041426089592278, -0.005990161094814539, -0.0005553844384849072, -0.01779787428677082, 0.002796900225803256, -0.01412834133952856, -0.01655764877796173, 0.05508135259151459, 0.013910982757806778, 0.003006268059834838, -0.030583703890442848, 0.012958438135683537, 0.00042393014882691205, -0.0018811151385307312, 0.0013521014479920268, 0.0046540419571101665, 0.000440711562987417, 0.031939003616571426, -0.005376441404223442, -0.0012202475918456912, 0.008214895613491535, 0.023078422993421555, 0.019089244306087494, 0.0016829348169267178, -0.011417745612561703, 0.020687472075223923, 0.008195716887712479, 0.05234518647193909, 0.015291851945221424, -0.008106215856969357, 0.0030318398494273424, -0.0041809664107859135, -3.970599209424108e-05, -0.027438389137387276, -0.017695587128400803, 0.032527148723602295, -0.005766408983618021, 0.012351111508905888, 0.014511916786432266, 0.028052110224962234, -0.01249814871698618, -0.005980571731925011, 0.006878776475787163, 0.022093912586569786, -0.002865623915567994, 0.02352592535316944, -0.020572399720549583, 0.02425471879541874, -0.00420014513656497, 0.01902531459927559, -0.0008582487935200334, -0.013073510490357876, -0.012204074300825596, 0.003410619916394353, -0.013073510490357876, 2.6046132916235365e-05, -0.01605900190770626, -0.016327504068613052, 0.03048141673207283, 0.006623059511184692, 0.011309065856039524, 0.004957705270498991, 0.04628470167517662, 0.016276361420750618, 0.03022570163011551, -0.006188341416418552, -0.004315217491239309, 0.01591835729777813, 0.009129081852734089, 0.013425121083855629, -0.019830821081995964, -0.008988438174128532, 0.007422173861414194, -0.0007459732587449253, 0.022439131513237953, -0.007716248277574778, -0.007697069551795721, -0.0037366587202996016, 0.008240466937422752, -0.014537488110363483, -0.011596747674047947, 0.011494460515677929, -0.006885169073939323, 0.010222271084785461, 0.0008111010538414121, -0.03600489720702171, -0.04781900346279144, 0.00337226246483624, -0.008310789242386818, 0.017375942319631577, -0.02015046775341034, -0.005437173880636692, 0.0003911664825864136, 0.005756819620728493, 0.022490274161100388, -0.009320870041847229, 0.016391433775424957, 0.001360891736112535, -0.037027761340141296, -0.048330433666706085, -0.01901252754032612, 0.001140336156822741, 0.014000482857227325, 0.00721760094165802, -0.01493384875357151, -0.010963848792016506, 0.024075716733932495, -0.02141626365482807, -0.0556950718164444, 0.008119001984596252, -0.03623504191637039, -0.006229895632714033, -0.005967786069959402, -0.002867222297936678, -0.001836364739574492, -0.02897268906235695, 0.018360450863838196, -0.015406924299895763, 0.009410370141267776, -0.01855223812162876, -0.011302673257887363, -0.021071046590805054, 0.019383316859602928, 0.00506638502702117, 0.03546788915991783, 0.019881965592503548, -0.026799097657203674, 0.0002133635280188173, -0.010279807262122631, -0.021582480520009995, -0.027591820806264877, 0.008681578561663628, -0.006367343012243509, 0.003343494376167655, 0.010215877555310726, -0.007051385007798672, -0.02797539532184601, 0.013974911533296108, -0.04416225478053093, 0.025814589112997055, 0.026287665590643883, 0.038741063326597214, 0.006814847234636545, 0.015240708366036415, 0.008681578561663628, 0.029177263379096985, -0.014051626436412334, -0.012268003076314926, -0.026415523141622543, 0.012977616861462593, 0.00996016152203083, -0.012331932783126831, 0.008451432920992374, 0.010062447749078274, -0.03595375269651413, -0.0193961039185524, 0.002279074164107442, 0.013361191377043724, 0.03048141673207283, -0.027591820806264877, -0.00895647332072258, -0.01568821258842945, -0.015458067879080772, -0.025776231661438942, 0.016723865643143654, 0.0009357628878206015, 0.012657971121370792, 0.011417745612561703, 0.0015119243180379272, 0.0010100805666297674, -0.004008357413113117, -0.001794810756109655, -0.034291595220565796, -0.0067125605419278145, 0.00404671486467123, 0.014307343401014805, 0.03810176998376846, 0.016365861520171165, 0.01306072436273098, -0.02117333374917507, -0.023116780444979668, 0.02116054855287075, -0.011903607286512852, -0.03308972716331482, 0.004756328649818897, 0.026645667850971222, 0.04083793982863426, 0.013182190246880054, -0.0060093398205935955, 0.007351852022111416, 0.011468889191746712, -0.0011595148826017976, 0.020252753049135208, -0.004593309015035629, -0.021735910326242447, -0.010931883938610554, -0.0008214895497076213, 0.00597737543284893, -0.01518956571817398, 0.005098349414765835, -0.006814847234636545, -0.004005161114037037, 0.02039339765906334, 0.018322093412280083, 0.006316199898719788, -0.011034171096980572, -0.0011515237856656313, -0.006460040342062712, 0.01120677962899208, 0.004171377047896385, 0.03311529755592346, -0.00721760094165802, 0.006319396197795868, -0.010318164713680744, -0.019830821081995964, 0.013437907211482525, 0.022809918969869614, 0.005334887187927961, -0.00884140096604824, -0.006840418558567762, 0.012670757248997688, 0.014805990271270275, -0.015854429453611374, -0.014473559334874153, -0.03915020823478699, 0.027694106101989746, 0.006265056319534779, 0.007550032343715429, 0.0071856360882520676, -0.00926972646266222, 0.0036119967699050903, -0.01915317215025425, 0.004586916416883469, -0.003273172304034233, -0.00907154567539692, 0.019575104117393494, -0.017721159383654594, -0.015509211458265781, -0.0184243805706501, -0.0064952014945447445, 0.006485612131655216, -0.012370290234684944, 0.013246119022369385, 0.021109404042363167, 0.01728644222021103, -0.020457327365875244, -0.01603342965245247, -0.01455027423799038, -0.028461256995797157, 0.029407408088445663, -0.00441750418394804, 0.04400882497429848, 0.029790982604026794, 0.02536708489060402, -0.0004491022555157542, -0.003161296248435974, 0.006418486591428518, 0.014895491302013397, 0.035646893084049225, -0.01754215732216835, -0.001801203703507781, -0.005644943565130234, 0.005242189858108759, -0.012613221071660519, -0.0005226208013482392, -0.03150428459048271, 0.001837963005527854, 0.000918981502763927, -0.01077206153422594, -0.0009445531759411097, 0.00889254454523325, -0.024088501930236816, 0.021582480520009995, -0.014268985949456692, 0.015534782782196999, -0.017721159383654594, -0.01653207838535309, 0.0006896356935612857, 0.010343736037611961, -0.013872625306248665, -0.004788293037563562, 0.009480692446231842, -0.0041426089592278, -0.022720418870449066, -0.009090724401175976, -0.021710338070988655, 0.025073012337088585, 0.00950626377016306, 0.005871891975402832, -0.023295780643820763, -0.005923035554587841, 0.012702721171081066, 0.012581256218254566, -0.0021064653992652893, -0.00038637177203781903, 0.0020073752384632826, 0.02512415498495102, -0.011667069047689438, -0.017849018797278404, -0.00023853563470765948, 0.012025072239339352, -0.003426602343097329, 0.015534782782196999, -0.006955491378903389, -0.03260386362671852, 0.0001429415715392679, -0.006399307865649462, 0.02002260833978653, 0.031529854983091354, 0.010548309423029423, 0.01914038695394993, 0.004775507375597954, -0.012018679641187191, 0.015330209396779537, -0.0036663366481661797, 0.02922840602695942, -0.018565025180578232, -0.013182190246880054, -0.015125636011362076, 0.012453397735953331, 0.0059486073441803455, 0.002681827638298273, -0.006060482934117317, -0.009122689254581928, 0.025942448526620865, -0.024727793410420418, -0.004701988771557808, -0.01628914661705494, 0.008694363757967949, -0.013949340209364891, 0.011794927529990673, -0.02523922733962536, -0.025341514497995377, 0.03096727840602398, -0.011564782820641994, -0.015982287004590034, -0.01082959771156311, -0.0008103019208647311, 0.0010492370929569006, -0.020879259333014488, -0.027821965515613556, 0.030813848599791527, -0.02264370396733284, -0.0038741063326597214, -0.021735910326242447, -0.00038177688838914037, 0.010938277468085289, -0.0084066828712821, 0.01499777752906084, 0.00398598238825798, -0.0006049295770935714, 0.01655764877796173, -0.007850498892366886, 1.5283061657100916e-05, -0.008445040322840214, -0.02204276993870735, -0.0067125605419278145, 0.01654486358165741, 0.012415040284395218, 0.012715507298707962, 0.0016102154040709138, -0.028307827189564705, 0.0064504509791731834, -0.009998518973588943, 0.016647150740027428, -0.013757552951574326, 0.01642979122698307, -0.022707633674144745, 0.03319201245903969, 0.006853204686194658, 0.014384058304131031, -0.01577771268785, -0.0030909741763025522, -0.008272431790828705, -0.019460031762719154, -0.04538969323039055, -0.012485362589359283, -0.029714267700910568, 0.05462106317281723, 0.0021879749838262796, -0.0019290620693936944, -0.013770338147878647, 0.004928937181830406, -0.01653207838535309, -0.01088713388890028, 0.025661159306764603, 0.022937778383493423, 0.03035355918109417, 0.01853945292532444, -0.0039124637842178345, 0.04728199914097786, -0.010062447749078274, 0.017248084768652916, -0.02190212532877922, -0.009614943526685238, -0.0017101046396419406, 0.025034654885530472, -0.013220547698438168, -0.006146787665784359, 0.005203832406550646, -0.017849018797278404, 0.013501835986971855, -0.034649599343538284, 0.007172850426286459, 0.002868820447474718, -0.006287431810051203, -0.016826150938868523, -0.01411555614322424, 0.007466924376785755, -0.0013752757804468274, 0.011488067917525768, 0.005251779220998287, -0.029688695445656776, -0.0024133252445608377, -0.0026210949290543795, -0.02549494430422783, -0.01752937212586403, -0.0044974153861403465, 0.0010348530486226082, -0.03505874425172806, 0.0017868196591734886, 0.0033243156503885984, -0.003202850231900811, -0.010209484957158566, -0.01793851889669895, 0.02626209333539009, -0.0164170041680336, 0.002343003172427416, 0.019370531663298607, -0.01704351045191288, -0.018692882731556892, -0.0390990674495697, -0.009845088236033916, -0.025111369788646698, 0.009551014751195908, -0.0005182256572879851, 0.010541916824877262, -0.027796393260359764, -0.02040618471801281, 0.02935626357793808, -0.01889745518565178, -0.010720917955040932, 0.0026674435939639807, 0.01057388074696064, -0.022208984941244125, 0.01337397750467062, 0.0005206229980103672, 0.017094653099775314, 0.008477005176246166, -0.00040914653800427914, -0.0023110387846827507, 0.00895008072257042, -0.015828857198357582, -0.013616908341646194, -0.0025603624526411295, 0.03493088483810425, 0.0026690419763326645, 0.005545853637158871, -0.001579849049448967, 0.009474299848079681, 0.04127265885472298, -0.029432980343699455, 0.0024484863970428705, 0.186673104763031, -0.0040243398398160934, 0.008585684932768345, 0.02823111228644848, 0.0031117512844502926, 0.00797196477651596, 0.007044991943985224, -0.0038165701553225517, -0.021620837971568108, -0.013949340209364891, -0.012920080684125423, 0.01914038695394993, -0.01603342965245247, 0.017465442419052124, 0.01915317215025425, 0.0032284220214933157, -0.0017852213932201266, -0.04009636119008064, -0.016838937997817993, -5.8235458709532395e-05, 0.005849516950547695, 0.008355539292097092, -0.03370344638824463, -0.013668051920831203, 0.04692399501800537, 0.010810418985784054, -0.012689935974776745, 0.02897268906235695, 0.03383130580186844, -0.006140394601970911, -0.01878238283097744, -0.0005901459371671081, 0.00374624808318913, 0.015726570039987564, -0.01868009753525257, 0.01007523387670517, 0.01926824450492859, 0.007543639279901981, 0.02204276993870735, -0.0014815579634159803, -0.002747355028986931, 0.012811400927603245, 0.0038773028645664454, -0.032297004014253616, 0.02812882512807846, 0.03112070821225643, -0.008329967968165874, -0.028282254934310913, -0.020431755110621452, 0.021595265716314316, -0.02436979115009308, -0.00593582121655345, 0.023589855059981346, 0.029458550736308098, -0.0008990036440081894, 0.0050887600518763065, -0.02126283384859562, 0.01562428381294012, 0.012427826412022114, 0.011488067917525768, -0.023717714473605156, 0.024331433698534966, -0.015560354106128216, 0.03610718250274658, -0.008866972289979458, 0.0037366587202996016, -0.020188825204968452, 0.03408702090382576, -0.0036631401162594557, -0.015176779590547085, -0.005517085548490286, 0.0003158499312121421, -0.008035893552005291, -0.010554702021181583, 0.017708374187350273, -0.009953767992556095, 0.017887376248836517, 0.025443799793720245, 0.0016325905453413725, 0.013233333826065063, -0.018871884793043137, -0.008662399835884571, -0.006770096719264984, -0.018884669989347458, -0.011168422177433968, -0.007044991943985224, 0.029202833771705627, -0.024433720856904984, -0.01618685945868492, -0.018462738022208214, -0.00011037766671506688, -0.01530463807284832, -0.011647890321910381, -0.011948357336223125, 0.02935626357793808, 0.009915410540997982, -0.012242431752383709, 0.017235297709703445, -0.0037238728255033493, -0.00382615951821208, -0.010433237068355083, 0.058661386370658875, -0.004628470167517662, 0.04531297832727432, 0.01942167431116104, -0.002101670717820525, -0.0035192996729165316, 0.0003054614644497633, 0.0013393156696110964, -0.009167439304292202, -0.0003857724368572235, -0.021748695522546768, 0.019089244306087494, -0.0221322700381279, -0.007089742459356785, 0.024689435958862305, -0.014588631689548492, -0.03150428459048271, -0.006073269061744213, 0.003455370431765914, -0.02150576561689377, -0.01045241579413414, -0.03012341447174549, 0.008662399835884571, 0.005923035554587841, -0.03124856762588024, -0.021620837971568108, 0.005232600495219231, -0.02800096571445465, -0.009972946718335152, 0.0168133657425642, -0.032655008137226105, 0.005354065913707018, -0.004890579730272293, -0.006344967987388372, -0.032169148325920105, -0.0008015116909518838, -0.006680595688521862, -0.013668051920831203, 0.020725829526782036, -0.008540933951735497, 0.008266039192676544, -0.02488122321665287, 0.018884669989347458, 0.010426843538880348, -0.012689935974776745, 0.0003452173841651529, 0.008125394582748413, -0.010586666874587536, -0.02513694018125534, -0.0042193238623440266, -0.006827632896602154, 0.01604621671140194, -0.016608793288469315, 0.003867713501676917, -0.010043269023299217, -0.01475484762340784, -0.016468148678541183, -0.01530463807284832, -0.023078422993421555, -0.05676908418536186, 0.001030857558362186, 0.03311529755592346, 0.003388244891539216, -0.0034873350523412228, -0.006517576519399881, -0.1574191302061081, -0.009199404157698154, -0.012415040284395218, -0.005130314268171787, 0.03206685930490494, 0.01068895310163498, 0.009857874363660812, -0.006140394601970911, -0.006565523333847523, 0.0007419776520691812, -0.013182190246880054, -0.02573787420988083, -0.03175999969244003, -0.014665346592664719, 0.00976198073476553, 0.006571916397660971, 0.013604122214019299, 0.024587150663137436, 0.05262647569179535, 0.016966795548796654, 0.024190789088606834, -0.018373236060142517, 0.024727793410420418, 0.0071984222158789635, 0.005814355798065662, 0.02401178702712059, -0.006386521738022566, 0.012485362589359283, -0.010995813645422459, -0.03127413988113403, 0.005926231853663921, 0.0018155877478420734, 0.0008178935386240482, 0.012958438135683537, 0.019856393337249756, -0.010919098742306232, -0.007115314248949289, -0.007569211069494486, -0.03426602482795715, -0.004558148328214884, 0.023577069863677025, 0.02973983995616436, -0.001437606755644083, 0.004459057934582233, 0.014972206205129623, 0.019102029502391815, 0.01579049974679947, -0.026645667850971222, 0.01755494438111782, -0.005040813237428665, 0.0341125912964344, -0.020367827266454697, -0.013182190246880054, -0.013220547698438168, 0.03321758657693863, -0.01891024224460125, -0.03357558697462082, 0.019562318921089172, -0.035135459154844284, 0.008170144632458687, -0.016468148678541183, -0.03989178687334061, -0.005296529736369848, 0.009595764800906181, -0.002649863250553608, -0.0010804026387631893, -0.005855910014361143, 0.0038709098007529974, -0.04802357405424118, -0.003522495971992612, 0.008796650916337967, -0.012478969991207123, 0.014013268984854221, 0.01288172323256731, -0.01691565290093422, 0.00029986765002831817, -0.009308083914220333, 0.007371030747890472, -0.004334396217018366, -0.015112850815057755, 0.026313237845897675, 0.01876959763467312, 0.02163362316787243, -0.01566264033317566, 0.003787802066653967, -0.0010915901511907578, 0.010471594519913197, 0.016020644456148148, 0.0021943680476397276, -0.03222028911113739, 0.017989661544561386, -0.02365378476679325, -0.009077939204871655, 0.014972206205129623, 0.013540193438529968, 0.0011483272537589073, 0.0022630917374044657, -0.015036135911941528, 0.0025971215218305588, -0.02797539532184601, 0.018641740083694458, 0.006236288230866194, -0.028307827189564705, 0.0079655721783638, 0.040991369634866714, 0.007102528121322393, -0.012920080684125423, 0.0082085020840168, 0.033882446587085724, 0.015879999846220016, -0.04030093550682068, 0.01952396146953106, 0.007767391391098499, 0.046463705599308014, 0.012376682832837105, 0.022937778383493423, 0.0015374959912151098, -0.015074493363499641, 0.013885410502552986, 0.0007927214028313756, 0.03730905055999756, 0.0024420933332294226, -0.0012018679408356547, 0.029765410348773003, -0.001329726306721568, -0.008694363757967949, -0.12202795594930649, -0.02800096571445465, -0.02838454209268093, 0.005782391410320997, 0.005270958412438631, 0.015023349784314632, -0.018386023119091988, 0.021799840033054352, 0.004622077569365501, 0.027182674035429955, -0.02076418697834015, -0.023564282804727554, -0.000772344006691128, -0.019945893436670303, -0.03843420371413231, 0.00727513711899519, -0.005517085548490286, -0.006517576519399881, -0.008969259448349476, 0.0284868273884058, 0.003525692503899336, -0.00404351856559515, -0.020355040207505226, 0.0022231361363083124, -0.012421432882547379, 0.029074976220726967, -0.005609782878309488, -0.023346925154328346, 0.01605900190770626, 0.020009823143482208, -0.013220547698438168, -0.017388727515935898, -0.0029455353505909443, -0.023474782705307007, 0.030916135758161545, -0.0008262842311523855, -0.012555684894323349, -0.02389671467244625, 0.039124637842178345, 0.004244895186275244, -0.003167689312249422, -0.005299726501107216, 0.028691401705145836, -0.0014424014370888472, 0.0209176167845726, -0.0057983738370239735, -0.04022422060370445, 0.0084066828712821, -0.013156618922948837, -0.020086538046598434, -0.03628618270158768, -0.033780161291360855, -0.03163214027881622, -0.004820257890969515, 0.020879259333014488, 0.006623059511184692, 0.0042193238623440266, 0.007773784454911947, -0.01967739127576351, -0.012395861558616161, -0.019945893436670303, 0.005472335033118725, -0.004401521757245064, 0.013156618922948837, -0.010420450940728188, -0.006335378624498844, -0.038638778030872345, -0.011372995562851429, 0.044980548322200775, -0.025840161368250847, -0.009896231815218925, 0.015700997784733772, -0.031529854983091354, -0.0029695089906454086, -0.00038777024019509554, 0.007518067955970764, -0.007313494570553303, 0.006156377028673887, 0.02177426777780056, -0.007588389795273542, -0.018744025379419327, -0.02154412306845188, 0.0057919807732105255, -0.008106215856969357, 0.008259645663201809, 0.019933108240365982, 0.01369362324476242, -0.015381352975964546, 0.021313978359103203, -0.017005153000354767, 0.015176779590547085, 0.01668550819158554, 0.0050440095365047455, -0.012555684894323349, 0.007716248277574778, -0.01306072436273098, 0.013297262601554394, -0.022592561319470406, -0.0032156361266970634, 0.013450692407786846, -0.0049896701239049435, 0.0017324798973277211, -0.02549494430422783, 0.00971083715558052, -0.00565772969275713, -0.020329467952251434, 0.007530853617936373, -0.0019306602189317346, 0.021211691200733185, -0.025584444403648376, -0.012018679641187191, 0.01804080605506897, -0.037999484688043594, 0.0011187600903213024, -0.0055746217258274555, -0.011142849922180176, -0.02884483151137829, 0.00382615951821208, -0.02191491238772869, -0.012005893513560295, 0.009148260578513145, 0.0028448470402508974, -0.013680837117135525, -0.019383316859602928, 0.007511674892157316, 0.01792573370039463, 0.01325890514999628, -0.016365861520171165, -0.011053349822759628, 0.006239484995603561, -0.01449913065880537, -0.03260386362671852, 0.013783124275505543, 0.0016701489221304655, 0.015649855136871338, 0.006872383411973715, -0.02140347845852375, 0.03127413988113403, 0.015176779590547085, 0.02674795500934124, 0.02651781029999256, 0.06525887548923492, -0.016365861520171165, -0.02838454209268093, 0.002988687716424465, -0.018705667927861214, -0.0022566989064216614, -0.026287665590643883, -0.015713784843683243, -0.0032188326586037874, 0.004708381835371256, -0.007524460554122925, 0.03968721628189087, 0.022733204066753387, -0.010855169035494328, -0.007837713696062565, -0.018066376447677612, -0.035135459154844284, -0.008572898805141449, -0.011545604094862938, -0.009966554120182991, -0.009685265831649303, 0.03797391429543495, 0.008687971159815788, 0.008176538161933422, -0.03585146740078926, 0.004999259486794472, -0.02015046775341034, -0.007959178648889065, 0.019958680495619774, -0.011334638111293316, 0.0016110144788399339, -0.004785096738487482, 0.0005693689454346895, 0.013910982757806778, -0.014000482857227325, 0.028537971898913383, -0.010369307361543179, -0.023986216634511948, 0.017388727515935898, -0.0048330435529351234, 0.0020489292219281197, 0.04380425065755844, 0.02163362316787243, -0.004328003153204918, 0.017964091151952744, 0.02651781029999256, -0.005670515354722738, 0.008822222240269184, 0.0025283978320658207, -0.02054682746529579, 0.005763212684541941, -0.008783864788711071, 0.014921062625944614, -0.008617648854851723, 0.013271691277623177, -0.002875213511288166, -0.002170394640415907, 0.012472576461732388, 0.004679613746702671, 0.002355789067223668, 0.0051558855921030045, 0.0035416746977716684, -0.028589114546775818, -0.009359227493405342, -0.02925397828221321, -0.03848534822463989, -0.0036215861327946186, -0.015573140233755112, -0.01980525068938732, -0.004526183474808931, 0.02961198054254055, -0.017606087028980255, 0.01644257642328739, 0.034035876393318176, -0.0019210708560422063, -0.005871891975402832, 0.009755588136613369, -0.013271691277623177, -0.020367827266454697, -0.025469372048974037, 0.015215137042105198, 0.0074157812632620335, 0.006028518546372652, 0.04776785895228386, 0.004356771241873503, 0.023334138095378876, 0.013514622114598751, 0.011021384969353676, -0.01655764877796173, -0.006885169073939323, 0.005731247831135988, -0.009723623283207417, 0.004500612150877714, -0.014102770015597343, 0.004532576538622379, -0.009870660491287708, -0.01980525068938732, 0.0007659511175006628, 0.008847793564200401, 0.015547568909823895, 0.05968425050377846, 0.010861562564969063, 0.01977967843413353, 0.006242681294679642, 0.014256199821829796, 0.001319337752647698, 0.023231852799654007, 0.004689203109592199, 0.011564782820641994, -0.01106613501906395, 0.02948412299156189, -0.012242431752383709, -0.000696028582751751, -0.02489401027560234, 0.00609244778752327, 0.004903365392237902, -0.028333397582173347, 0.024676650762557983, -0.026799097657203674, 0.00749249616637826, 0.026594525203108788, 0.017580514773726463, 0.019958680495619774, 0.005136706866323948, -0.019063672050833702, 0.007211207877844572, 0.02291220612823963, 0.008611256256699562, -0.006018929183483124, -0.02774525061249733, 0.0020713044796139, -0.004088269080966711, -0.00062650564359501, -0.029177263379096985, 0.01755494438111782, 0.0014136332320049405, -0.0018891063518822193, -0.014805990271270275, 0.021211691200733185, 0.005427584517747164, 0.03436831012368202, -0.011296280659735203, -0.04339510574936867, -0.049097586423158646, -0.018322093412280083, 0.006351360585540533, -0.0009709239238873124, -0.007428566925227642, -0.02415243163704872], "c127a5a8-e5bd-4e52-98f2-f01c12db95b3": [-0.0019072286086156964, 0.006964941509068012, -5.176703052711673e-05, -0.03325285390019417, -0.02353716641664505, 0.009295621886849403, -0.02035280503332615, -0.007893148809671402, -0.015542388893663883, -0.036450762301683426, 0.010366109199821949, 0.006392434239387512, -0.03159969672560692, -0.0016472289571538568, -0.02435019426047802, -0.01704649068415165, 0.04317179694771767, -0.01307620294392109, 0.008252236060798168, -0.006162076257169247, -0.021328439936041832, 0.004600384272634983, -0.006219665519893169, -0.011714381165802479, -0.018211830407381058, 0.006013020873069763, 0.011619527824223042, -0.022886743769049644, -0.0143770482391119, 0.0028066409286111593, 0.002909963484853506, 0.002317130332812667, 0.0002879474777728319, 0.004549570381641388, -0.005752174183726311, 0.0036078125704079866, -0.011240114457905293, -0.014011185616254807, -0.00335204740986228, -0.01058291643857956, 0.045556679368019104, 0.02365911938250065, 0.0041362810879945755, -0.006368720903992653, -0.01031868252903223, 0.023442313075065613, 0.006836211774498224, -0.024716056883335114, 0.00391269801184535, -0.0027168691158294678, 0.016707729548215866, 0.02298159711062908, -0.030298849567770958, 0.01115881185978651, -0.00913301669061184, -0.008760378696024418, 0.021355539560317993, -0.00016599326045252383, 0.018916456028819084, -0.008821356110274792, -0.008076080121099949, -0.005227093584835529, -0.01982433721423149, 0.013719850219786167, -0.0013787603238597512, 0.005735236220061779, -0.004166769329458475, 0.019228115677833557, -0.01733105070888996, -0.029756831005215645, 0.008326763287186623, 0.01724974811077118, -0.008570672012865543, 0.021734952926635742, 0.03826652467250824, -0.008726502768695354, -0.010115426033735275, -0.007506960071623325, 0.015068122185766697, 0.010969105176627636, 0.014038287103176117, -0.010874251835048199, -0.02122003585100174, 0.0004344619228504598, 0.011016531847417355, 0.0077847447246313095, -0.0119582898914814, 0.011524674482643604, 0.01235125306993723, -0.014458350837230682, 0.0057555618695914745, 0.01878095045685768, -0.0019309419440105557, 0.010921678505837917, 0.0005627679638564587, -0.0021189546678215265, -0.005664096213877201, 0.018415087834000587, -0.021667201071977615, 0.004366639070212841, -0.011694055050611496, 0.00463087297976017, -0.00934982392936945, -0.0010806499049067497, -0.016992289572954178, 0.026423415169119835, 0.015284929424524307, 0.01149079855531454, 0.018767399713397026, -0.002891331445425749, -0.019146813079714775, 0.027751361951231956, 0.0035773240961134434, -0.02788686752319336, 0.022683486342430115, -0.004292111378163099, 0.03170809894800186, -0.027358397841453552, -0.024214688688516617, 0.008550346828997135, 0.026978984475135803, -0.00908559001982212, 0.019959842786192894, -0.002427227795124054, 0.02223632112145424, -0.015203626826405525, -0.002804947318509221, -0.004685075022280216, -0.021951761096715927, -0.025271626189351082, 0.007330804131925106, 0.008922983892261982, 0.027548104524612427, 0.018076326698064804, -0.03208751231431961, 0.033876173198223114, -0.02298159711062908, 0.0014414312317967415, -0.018509941175580025, -0.017114242538809776, 0.021030329167842865, -0.0009891842491924763, -0.019959842786192894, 0.0018293134635314345, 0.012283501215279102, 0.004197258036583662, 0.013604671694338322, 0.02791396714746952, -0.010718422010540962, -0.015230728313326836, 0.007974451407790184, 0.0005403249524533749, -0.015786297619342804, -0.0064567988738417625, 0.009160117246210575, 0.01362499687820673, -0.011456921696662903, 0.011816009879112244, -6.394127558451146e-05, 0.002996347611770034, 0.012933922931551933, 0.013286235742270947, -0.008380965329706669, -0.005098364315927029, 0.008286111988127232, 0.041464436799287796, 0.013313336297869682, -0.0015481411246582866, -0.004407290369272232, -0.008794254623353481, -0.01153822522610426, 0.01722264662384987, -0.025325827300548553, 0.014810663647949696, 0.019837887957692146, 0.0023662508465349674, 0.028510188683867455, 0.01811697892844677, -0.02046120911836624, -0.0022205831483006477, 0.014417699538171291, 0.025000616908073425, 0.012676464393734932, 0.016599325463175774, -0.031816501170396805, -0.007954125292599201, 0.014485452324151993, 0.010589691810309887, 0.009315948002040386, 0.011192687787115574, 0.010183177888393402, 0.020935475826263428, -0.014824213460087776, 0.004075303673744202, -0.6426174640655518, -0.008563896641135216, -0.005796213634312153, -0.01669417880475521, -0.020325705409049988, 0.01577274687588215, 0.006870088167488575, 0.0175614096224308, -0.03628815710544586, 0.046911727637052536, -0.0019292481010779738, -0.007174973841756582, 0.006782010197639465, -0.02643696591258049, -0.007547611836344004, -0.006507613230496645, -0.0010035816812887788, -0.022629285231232643, 0.008746827952563763, 0.017845967784523964, 0.004278560634702444, 0.022656384855508804, -0.034309789538383484, -0.01855059340596199, 0.020298603922128677, 0.001536284456960857, 0.01796792261302471, -0.027615856379270554, 0.0012297051725909114, 0.03317154943943024, -0.010162852704524994, -0.027399050071835518, -0.0039093103259801865, 0.0026067716535180807, 0.045990295708179474, -0.0031843604519963264, 0.002850680146366358, 0.009803764522075653, 0.013130404986441135, 0.01733105070888996, -0.02063736505806446, 0.0003988919488620013, 0.033849071711301804, 0.012913597747683525, -0.0048205796629190445, -3.1176667107502e-05, 0.008990736678242683, -0.008563896641135216, -0.017141344025731087, -0.02002759464085102, 0.011152036488056183, -0.009708911180496216, 0.002847292460501194, 0.0040075513534247875, 0.00526096997782588, -0.013814703561365604, -0.004851068370044231, -0.03875434398651123, 0.008651974610984325, -0.009078814648091793, 0.004956084303557873, 0.009105915203690529, -0.0077847447246313095, -0.012222523801028728, -0.02043410763144493, 0.0074798595160245895, 0.0014871640596538782, -0.013387864455580711, -0.01319138240069151, 0.015637241303920746, 0.02014954760670662, 0.02918771095573902, -0.027141591534018517, -0.024133386090397835, 0.0016243625432252884, 0.02063736505806446, 0.020935475826263428, -0.019986942410469055, 0.01893000677227974, 0.02483801171183586, 0.004336150363087654, -0.006389046553522348, -0.029458722099661827, -0.022547980770468712, 0.04577348753809929, -0.03276503458619118, -0.01771046407520771, 0.01623346284031868, 0.011348518542945385, 0.007628914434462786, 0.009471778757870197, 0.0038720467127859592, 0.0017734176944941282, -0.043551210314035416, 0.00634161988273263, 0.024539900943636894, -0.007859272882342339, 0.006419535260647535, 0.009539530612528324, -0.02246667817234993, -0.007168198470026255, -0.02788686752319336, 0.015759196132421494, 0.02994653768837452, -0.008550346828997135, 0.025325827300548553, 0.007120771799236536, 0.00033622104092501104, 0.05452708899974823, -0.0070191435515880585, -0.010460962541401386, -0.022100815549492836, -0.008238685317337513, -0.00798800215125084, 0.0023628631606698036, -0.016883885487914085, 0.008821356110274792, -0.0007219859398901463, 0.01651802286505699, -0.03772450610995293, 0.017032939940690994, -0.002281560329720378, -0.002100322861224413, -0.011287541128695011, 0.0099866958335042, -0.003057324793189764, 0.007791520096361637, -0.01137561909854412, -0.004085466731339693, -0.001744622946716845, -0.0018818214302882552, -0.003665402065962553, 0.006443248130381107, -0.0064872875809669495, -0.014227992855012417, -0.008401291444897652, 0.014810663647949696, -0.005830089561641216, -0.006385658867657185, -0.005169504322111607, -0.007452758494764566, -0.006450023502111435, 0.009790214709937572, 0.004166769329458475, -0.019810786470770836, -0.03032595105469227, -0.03761610388755798, -0.016992289572954178, 0.016829682514071465, 0.020678017288446426, 0.002447553677484393, 0.009614057838916779, -0.015948902815580368, 0.026884131133556366, -0.013279460370540619, -0.003804294392466545, -0.00263048498891294, -0.00592155521735549, -0.012019266374409199, -0.011192687787115574, -0.014431250281631947, 0.033144447952508926, -0.019322969019412994, -0.00866552535444498, -0.005227093584835529, -0.017060041427612305, 0.003128464799374342, 0.016219912096858025, -0.034797605127096176, -0.03748060017824173, 0.005667483899742365, 0.006822661496698856, -0.011978615075349808, -0.0037670305464416742, -0.005406637210398912, 0.028184976428747177, -0.025515533983707428, 0.006002858281135559, -0.013042327016592026, -0.009688585996627808, 0.019580429419875145, 0.009485328570008278, -0.008042204193770885, -0.0015752421459183097, 0.018225381150841713, 0.029079308733344078, 0.038103919476270676, 0.014241543598473072, 0.01340818963944912, 0.03173520043492317, 0.019350070506334305, 0.01386890560388565, -0.015542388893663883, -0.010460962541401386, -0.0006563508650287986, 0.009343048557639122, 0.0022680098190903664, -0.008340314030647278, -0.003628138219937682, 0.043497007340192795, 0.03636946156620979, 0.008882332593202591, 0.006365333218127489, -0.007412106730043888, -0.005894454196095467, -0.023320358246564865, -0.005467614624649286, -0.015081672929227352, 0.00447843037545681, -0.021667201071977615, 0.00021416094386950135, -0.008990736678242683, -0.0033215589355677366, -0.014458350837230682, -0.006175626534968615, 0.02069156803190708, -0.00529145821928978, 0.03506861627101898, -0.017236197367310524, 0.001027295016683638, 0.004214196000248194, -0.015555939637124538, 0.012459657154977322, 4.872346471529454e-05, -0.015162975527346134, 0.008313213475048542, 0.008557121269404888, 0.012202197685837746, -0.005006898660212755, -0.03658626973628998, 0.02533937804400921, 0.00468846270814538, 0.00532533461228013, 0.003963512368500233, 0.02231762371957302, 0.020312154665589333, 0.02580009400844574, -0.007005592808127403, 0.05043485015630722, 0.0021545246709138155, -0.02231762371957302, 0.017995024099946022, 0.01235125306993723, -0.011240114457905293, 0.012147996574640274, -0.004207420628517866, 0.05455419048666954, -0.00032754027051851153, 0.004305661655962467, 0.01722264662384987, -0.00026211689691990614, 0.0053930869325995445, -0.04371381551027298, -0.020962577313184738, 0.0003008627681992948, 0.00348924589343369, 0.021518146619200706, 0.004393739625811577, 0.02954002469778061, 0.02791396714746952, -0.0008426698623225093, -0.005721685942262411, 0.0026525044813752174, 0.008428392000496387, -0.0015896394615992904, 0.00030065103783272207, -0.012886496260762215, -0.013001675717532635, -0.012784868478775024, 6.8969777203165e-05, -0.007730543147772551, -0.018211830407381058, -0.034363992512226105, 0.00866552535444498, 0.01082682516425848, 0.007771194446831942, -0.005569242872297764, 0.018848704174160957, 0.036396563053131104, 0.009600508026778698, -0.024865111336112022, -0.002749051433056593, 0.022507330402731895, 0.029919438064098358, -0.009315948002040386, -0.0030471619684249163, -0.00018388411263003945, -0.019146813079714775, -0.006433085538446903, -0.015786297619342804, -0.020962577313184738, -0.014770012348890305, -0.010291581973433495, 0.0008388587739318609, -0.01643672026693821, -0.004956084303557873, 0.010399985127151012, -0.0023560880217701197, -0.009532755240797997, -0.0009095752611756325, 0.011673729866743088, 0.005006898660212755, -0.024770257994532585, -0.00471895094960928, 0.04200645536184311, 0.013055877760052681, -0.012906822375953197, -0.011653403751552105, 0.0013677505776286125, 0.000498826673720032, -0.009851191192865372, 0.022886743769049644, -0.008916209451854229, -0.004925595596432686, 0.028049472719430923, 0.014051836915314198, -0.005670871585607529, 0.015948902815580368, 0.026342112571001053, 0.017398802563548088, -0.006903964094817638, -0.014702259562909603, 0.014471901580691338, 0.01542043499648571, 0.03582744300365448, 0.017574958503246307, 0.002943839645013213, 0.011673729866743088, 0.0009654709720052779, 0.009471778757870197, -0.031138978898525238, -0.011524674482643604, 0.03761610388755798, -0.013442065566778183, -0.0008680769824422896, 0.010969105176627636, 0.019634630531072617, -0.01199894119054079, -0.012012491002678871, 0.009641159325838089, 0.015230728313326836, -0.009166892617940903, 0.027087388560175896, -0.015474636107683182, -0.006331456825137138, -0.015257828868925571, 0.00369927822612226, -0.01298812497407198, 0.003136933781206608, 0.009736012667417526, 0.013150731101632118, -0.0052406443282961845, 0.0013203239068388939, -0.03376777097582817, -0.021789155900478363, 0.03482470661401749, 0.014959719032049179, -0.01010187529027462, 0.004888331983238459, 0.04170834645628929, 0.02449924871325493, 0.019729483872652054, 0.0006271326565183699, -0.02918771095573902, 0.002948920940980315, 0.014810663647949696, 0.010271255858242512, 0.0007423116476275027, -0.004190482664853334, -0.0066261799074709415, -0.009024612605571747, 0.028537290170788765, -0.02414693683385849, -0.010840375907719135, -0.007777969818562269, -0.006727808155119419, -0.02104387991130352, -0.030136244371533394, 0.00895686075091362, -0.002388270338997245, 0.011673729866743088, 0.010833600535988808, -0.04200645536184311, -0.029729731380939484, -0.011741481721401215, -0.025515533983707428, 0.03246692568063736, -0.018740300089120865, -0.007107221521437168, -0.025745892897248268, 0.0020850785076618195, 0.01500037033110857, -0.013618222437798977, 0.00110351643525064, -0.003213155083358288, -0.03696568310260773, -0.048483580350875854, -0.012581611052155495, 0.0038889849092811346, -0.006175626534968615, -0.0038923723623156548, -0.016043756157159805, 0.010962329804897308, 0.025705240666866302, -0.024512799456715584, -0.04832097515463829, 0.00791347399353981, -0.02272413857281208, -0.013835029676556587, 0.0056031192652881145, 0.0013719850685447454, -0.004393739625811577, -0.024282442405819893, 0.01707359217107296, 0.005606506951153278, 0.006585528142750263, -0.02626080997288227, -0.012906822375953197, -0.007791520096361637, 0.015664342790842056, 0.004068528767675161, 0.031924907118082047, 0.023957230150699615, -0.02880829945206642, -0.0066092414781451225, -0.0046105473302304745, -0.02628791145980358, -0.027358397841453552, 0.010657444596290588, -0.022276971489191055, -0.011497573927044868, 0.0015947208739817142, -0.019986942410469055, -0.012717115692794323, 0.006182401906698942, -0.04501466080546379, 0.014444801025092602, 0.028970904648303986, 0.04168124496936798, -0.006192564498633146, 0.005515041295439005, 0.032223016023635864, 0.01501392014324665, -0.03046145662665367, -0.01349626760929823, -0.048890095204114914, 0.020393457263708115, 0.014986819587647915, -0.0007761878659948707, 0.0016243625432252884, 0.023469412699341774, -0.040136490017175674, -0.027439700439572334, -0.0036010374315083027, -0.0036620143800973892, 0.03197911009192467, -0.028916701674461365, -0.01440414972603321, -0.009614057838916779, -0.010813274420797825, -0.014214443042874336, -0.0006643964443355799, -0.009736012667417526, 0.005599731579422951, 0.016450271010398865, 0.014729361049830914, 0.009092365391552448, -0.01031868252903223, 0.006351782474666834, -0.0325753279030323, -0.017195546999573708, 0.004339538048952818, -0.0006826049066148698, 0.024567002430558205, -0.005135627929121256, 0.013862130232155323, -0.0164096187800169, -0.006270479876548052, 0.0013669036561623216, -0.0333341546356678, -0.015068122185766697, 0.006050284951925278, 0.028239179402589798, 0.03609845042228699, 0.00760858878493309, -0.0040786913596093655, 0.015718545764684677, 0.02379462495446205, -0.01811697892844677, 0.024282442405819893, -0.005853802897036076, -0.0031199955847114325, -0.010813274420797825, 0.005857190582901239, 0.015583040192723274, -0.0019648182205855846, -0.008170933462679386, -0.018970657140016556, 0.012439331039786339, 0.030895071104168892, -0.003706053365021944, -8.00324633019045e-05, -0.0035671612713485956, -0.02020375058054924, 0.0007846569060347974, 0.01962107978761196, -0.004156606737524271, 0.022913843393325806, 0.00577588751912117, 0.0037670305464416742, 0.0038720467127859592, -0.004834129940718412, 0.004254847299307585, 0.0022290523629635572, 0.01497326884418726, -0.008590998128056526, -0.006876863539218903, 0.018835153430700302, 0.021260686218738556, -0.012269950471818447, -0.019282318651676178, -0.026328561827540398, 0.0087129520252347, 0.016477370634675026, 0.002777846297249198, 0.013462391681969166, -0.0038889849092811346, 0.0119582898914814, -0.016368966549634933, 0.01018995326012373, 0.005708135198801756, -0.017412353307008743, 0.007459533400833607, -0.018157629296183586, -0.009126241318881512, -0.02061026357114315, -0.007500185165554285, -0.0034418192226439714, -0.0026914619375020266, 0.01936362124979496, 0.015759196132421494, 0.00661601684987545, -0.015732094645500183, -0.015366232953965664, -0.003196217119693756, -0.03300894424319267, 0.040163591504096985, 0.0020749156828969717, 0.03238562121987343, 0.013875680975615978, 0.005467614624649286, -0.014499003067612648, -0.0011263828491792083, 0.034336891025304794, 0.00043530884431675076, 0.025122571736574173, -0.018767399713397026, -0.006290805526077747, 0.013211707584559917, 0.007283377461135387, -0.011355293914675713, -0.02206016518175602, -0.014932617545127869, 0.014363497495651245, -0.00842161662876606, 0.004265010356903076, -0.012439331039786339, 0.009620833210647106, -0.05092266574501991, 0.023645570501685143, -0.0027134816627949476, 0.006595691200345755, -0.03122028149664402, 0.002489898819476366, 0.004220971371978521, 0.03609845042228699, -0.0015125712379813194, 0.01292714849114418, 0.006985267158597708, 0.011721156537532806, -0.011395945213735104, -0.014526103623211384, -0.024065634235739708, 0.022818991914391518, 0.013550469651818275, 0.03748060017824173, -0.03829362615942955, -0.00018758932128548622, 0.014268645085394382, 0.026802828535437584, 0.012114119715988636, -0.0036552392411977053, -0.018198281526565552, 0.029079308733344078, -0.006202727556228638, 0.006294193211942911, 0.0015786297153681517, 0.015623691491782665, 0.0051017520017921925, 0.014946168288588524, -0.005335497669875622, -0.029296115040779114, -0.010962329804897308, -0.0023730259854346514, 0.02130133844912052, 0.020705116912722588, 0.00469523761421442, 0.012385128997266293, 0.0017132875509560108, 0.003628138219937682, -0.010643893852829933, -0.019648181274533272, 0.011782133020460606, -0.015515287406742573, -0.018401537090539932, -0.027087388560175896, 0.006927677430212498, 0.01867254637181759, -0.007080120500177145, -0.016938086599111557, -0.006040121894329786, 0.0407056100666523, -0.013774052262306213, 0.016829682514071465, -0.006985267158597708, 0.009851191192865372, -0.003023448633030057, 0.016097957268357277, -0.01252063363790512, -0.02796817012131214, 0.038076821714639664, -0.01704649068415165, -0.013929883018136024, -0.022371824830770493, 0.013137180358171463, 0.010210279375314713, -0.0005665789940394461, -0.02701963670551777, 0.036396563053131104, 0.0004215466324239969, 0.003885597223415971, -0.013306560926139355, -0.017493655905127525, 0.019472025334835052, -0.020108897238969803, 0.005735236220061779, 0.015298480167984962, -0.0028574552852660418, -0.00018621310300659388, -0.013157506473362446, -0.015122324228286743, -0.016274115070700645, -0.017141344025731087, -0.019905639812350273, 0.011592427268624306, 0.016924535855650902, -0.006175626534968615, -0.008834905922412872, -0.029892336577177048, -0.017005840316414833, -0.017398802563548088, 0.019444923847913742, -0.004620710387825966, 0.015474636107683182, -0.0004041850916109979, 0.022913843393325806, 0.01826603338122368, 0.011185912415385246, -0.02470250613987446, -0.01413313951343298, -0.004796866327524185, -0.020447658374905586, -0.04279238358139992, -0.011009756475687027, -0.02954002469778061, 0.03972997888922691, 0.011504348367452621, -0.023808175697922707, -0.012215748429298401, 0.00399400107562542, -0.023930128663778305, -0.009695361368358135, -0.0006944615743122995, 0.014770012348890305, 0.04214195907115936, 0.019702382385730743, -0.024390844628214836, 0.045258570462465286, -0.027399050071835518, 0.015108773484826088, -0.027182241901755333, -0.0021934823598712683, -0.013503042981028557, 0.02440439537167549, 0.002847292460501194, -0.011775358580052853, 0.0004378495505079627, 0.0006483052857220173, 0.01803567446768284, -0.029404519125819206, -0.0035705487243831158, 0.018415087834000587, -0.00955308135598898, -0.003929636441171169, -0.014634507708251476, 0.012310601770877838, 0.007120771799236536, 0.0062874178402125835, 0.023645570501685143, -0.0175614096224308, 0.0034096369054168463, 0.005487940274178982, -0.011951514519751072, -0.02052896097302437, -0.0010145914275199175, 0.010271255858242512, -0.037236690521240234, 0.009918943978846073, -0.0005471002077683806, 0.002100322861224413, 0.003196217119693756, -0.019173914566636086, 0.01689743623137474, -0.005914779845625162, -0.006693932227790356, 0.012358028441667557, -0.005572630558162928, 0.005972369574010372, -0.036803074181079865, -0.011605977080762386, -0.020312154665589333, 0.003668789751827717, 0.004641036037355661, 0.0031792789231985807, -0.024539900943636894, -0.02603045292198658, 0.013171056285500526, -0.011341743171215057, -0.009058489464223385, -0.02313065156340599, 0.014539654366672039, -0.011734706349670887, 0.012744217179715633, -0.0036891154013574123, -0.014255094341933727, -0.0019783684983849525, -0.009302397258579731, -0.002845598617568612, 0.004756215028464794, -0.021558796986937523, -0.020447658374905586, -0.00047850096598267555, 0.018428638577461243, -0.008015102706849575, -0.0014329621335491538, -0.02359136752784252, 0.005806376226246357, 0.03116608038544655, -0.021816255524754524, -0.0008011715253815055, 0.20108896493911743, -0.021152283996343613, -0.001854720525443554, 0.01712779328227043, 0.0007846569060347974, 0.007147872820496559, 0.0041769323870539665, -0.003709441050887108, -0.0229002945125103, 0.006433085538446903, -0.0037670305464416742, 0.011057183146476746, -0.038131020963191986, 0.003780581057071686, 0.013631772249937057, -0.006643117871135473, -0.007222400512546301, -0.03336125612258911, -0.020244400948286057, -0.02275123819708824, -0.004759602714329958, 0.013394638895988464, -0.021491045132279396, -0.007174973841756582, 0.01597600430250168, -0.008875557221472263, 0.007235950790345669, 0.009241420775651932, 0.027141591534018517, -0.009431126527488232, -0.03463499993085861, 0.005233868956565857, 0.016138609498739243, 0.006104486528784037, -0.009417576715350151, -0.005484552588313818, 0.017087142914533615, 0.005748786963522434, 0.013475942425429821, -0.001462603802792728, 0.012405455112457275, -0.00989861786365509, -0.0016684015281498432, -0.035231221467256546, 0.022358275949954987, 0.023293256759643555, -0.014322846196591854, 0.00020706812210846692, 0.0073511297814548016, 0.017629161477088928, -0.02962132729589939, -0.0006440707365982234, 0.032277218997478485, 0.02368622086942196, 0.005972369574010372, 0.003838170552626252, -0.0006351782940328121, 0.005847027525305748, 0.00866552535444498, 0.023211954161524773, -0.02783266454935074, 0.019932741299271584, -0.0033046207390725613, 0.045583780854940414, -0.008977185934782028, 0.01722264662384987, -0.01791372150182724, 0.02284609153866768, -0.012601937167346478, -0.010704871267080307, -0.008604547940194607, -0.0010958942584693432, -0.01626056432723999, -0.017412353307008743, -0.013997634872794151, -0.013591120950877666, 0.019295869395136833, 0.021612999960780144, 0.013577570207417011, 0.02791396714746952, -0.021802706643939018, -0.011829559691250324, 0.003516346914693713, -0.015406884253025055, -0.02962132729589939, -0.0053930869325995445, 0.01977013610303402, -0.017791766673326492, -0.0073511297814548016, -0.023781074211001396, -0.012629037722945213, -0.01745300553739071, -0.011280765756964684, 0.0033926989417523146, 0.01887580379843712, 0.0012432555668056011, 0.007845722138881683, 0.01887580379843712, -0.011084284633398056, 0.0027202568016946316, -0.015135874971747398, 0.07843011617660522, 0.007473084144294262, 0.03195200860500336, 0.011111385188996792, 0.013780827634036541, -0.0012432555668056011, -0.016992289572954178, -0.0024069021455943584, -0.0015591508708894253, 0.0077034421265125275, -0.026748627424240112, 0.0011594120878726244, -0.01727684959769249, -0.014255094341933727, 0.024445047602057457, -0.019472025334835052, -0.03734509274363518, 0.002323905471712351, 0.005609894637018442, -0.0028964129742234945, -0.008543571457266808, -0.008455493487417698, 0.02266993559896946, -0.01391633227467537, -0.026965435594320297, -0.02052896097302437, 0.009024612605571747, -0.03382197394967079, -0.010725196450948715, 0.009614057838916779, -0.023618469014763832, 0.026965435594320297, -0.005908004939556122, -0.0009570019319653511, -0.02066446654498577, -0.01281196903437376, -0.015989555045962334, -0.026545369997620583, 0.013970534317195415, -0.013902781531214714, 0.004624097608029842, -0.013475942425429821, 0.0031386276241391897, 0.014919066801667213, -0.013421740382909775, -0.011944739148020744, 0.0026541983243077993, -0.014309296384453773, -0.012310601770877838, -0.008035428822040558, 0.0015456004766747355, 0.009661484509706497, -0.015989555045962334, 0.01811697892844677, -0.011592427268624306, -0.013164280913770199, -0.0045394073240458965, 0.014024736359715462, -0.009275296702980995, -0.050597455352544785, 0.006883638445287943, 0.030298849567770958, 0.0016243625432252884, -0.02084062248468399, -0.023604918271303177, -0.17236196994781494, -0.0071410974487662315, 0.0007046243990771472, -0.019201016053557396, 0.019837887957692146, 0.024336643517017365, 0.01979723572731018, 0.0062061152420938015, -0.010271255858242512, 0.00913301669061184, -0.0026575857773423195, -0.01880805194377899, -0.033876173198223114, -0.015962453559041023, 0.0029319829773157835, 0.009309172630310059, 0.007554386742413044, 0.022276971489191055, 0.04818547144532204, -0.0009121159673668444, 0.022818991914391518, -0.024539900943636894, 0.01391633227467537, 0.007595038507133722, 0.006361945532262325, 0.03650496527552605, 0.0056336079724133015, 0.00156338547822088, -0.0185776948928833, -0.02066446654498577, 0.005975757259875536, -0.0016861865296959877, -0.00049628596752882, 0.0008926371810957789, 0.01579984836280346, 0.011687279678881168, -0.01745300553739071, -0.007838946767151356, -0.02223632112145424, 0.006917514838278294, 0.003345272270962596, 0.02313065156340599, -0.009939269162714481, -0.009498879313468933, -0.008225135505199432, 0.014444801025092602, 0.024716056883335114, -0.02351006492972374, 0.028943803161382675, 0.0005339732160791755, 0.035962946712970734, -0.024661855772137642, -0.006565202493220568, -0.0002782080846372992, 0.025298727676272392, -0.0010112038580700755, -0.027995269745588303, 0.026504719629883766, -0.025922048836946487, 0.020718667656183243, 0.00046198631753213704, -0.037697408348321915, -0.00022337102564051747, 0.015162975527346134, 0.012188647873699665, -0.021111631765961647, -0.018184730783104897, 0.005609894637018442, -0.0521693080663681, -0.004281948320567608, 0.000766024983022362, -0.01416024100035429, 0.01620636135339737, 0.003394392551854253, -0.009065263904631138, 0.004475042689591646, 0.002943839645013213, -0.002025795169174671, -0.005321946926414967, -0.0036416887305676937, 0.03593584522604942, 0.004834129940718412, 0.005935105960816145, -0.02536647953093052, 0.004702012985944748, -0.009234645403921604, 0.0046918499283492565, 0.02333390899002552, -0.013022001832723618, -0.025027718394994736, 0.016396068036556244, -0.011267215944826603, -0.005667483899742365, 0.001384688657708466, -0.00010977997590089217, 0.007439207751303911, 0.011727931909263134, -0.012981349602341652, -0.0001355046988464892, -0.020949026569724083, 0.014173791743814945, -0.009620833210647106, -0.013997634872794151, 0.010271255858242512, 0.021341990679502487, 0.01053548976778984, -0.015339131467044353, -0.0007537448545917869, 0.04000098630785942, 0.016789032146334648, -0.04154574126005173, -0.0011280765756964684, -0.0014846232952550054, 0.04547537490725517, -0.011978615075349808, 0.012317377142608166, 0.00038957601645961404, -0.01237835455685854, 0.01608440838754177, -0.00904493872076273, 0.043063391000032425, -0.008157382719218731, -0.00013730436330661178, 0.02829338051378727, 0.01814407855272293, -0.027412600815296173, -0.12444751709699631, -0.04151863977313042, -0.02435019426047802, 0.01684323325753212, 0.007832171395421028, 0.01651802286505699, -0.01311685424298048, 0.03376777097582817, -0.012622262351214886, 0.03211461380124092, -0.020949026569724083, -0.0071410974487662315, 0.01803567446768284, -0.023266157135367393, -0.04574638605117798, 0.02513612061738968, -0.00213419902138412, -0.00012026041804347187, -0.01252063363790512, 0.05048904940485954, 0.004112567752599716, -0.006223053205758333, -0.02371332235634327, 0.004681687336415052, -0.015691444277763367, 0.010772623121738434, -0.02243957854807377, -0.002605077810585499, 0.023320358246564865, 0.009708911180496216, 0.006334844511002302, -0.011307867243885994, 0.010874251835048199, -0.018713198602199554, 0.010040897876024246, -0.011179137974977493, 0.009708911180496216, -0.01661287620663643, 0.021545246243476868, 0.007716992404311895, 0.0048612309619784355, 0.0056742592714726925, 0.019783684983849525, 0.0020037756767123938, 0.019079061225056648, 0.0044411662966012955, -0.026274360716342926, 0.03075956553220749, -0.015962453559041023, -0.019729483872652054, -0.07181748747825623, -0.015474636107683182, -0.021951761096715927, 0.0025424067862331867, 0.028537290170788765, 0.020095346495509148, 0.014241543598473072, -0.002242602640762925, -0.020108897238969803, -0.022304072976112366, -0.015379782766103745, 0.0063585578463971615, 0.007439207751303911, 0.004200645722448826, 0.010542265139520168, 0.0016074244631454349, -0.020935475826263428, -0.02104387991130352, 0.0254477821290493, -0.01791372150182724, 3.329392711748369e-05, 0.003265663282945752, -0.023117100819945335, -0.007927024737000465, -0.0197159331291914, 0.008435167372226715, -0.0007016602321527898, 0.006839599460363388, 0.021843357011675835, -0.01307620294392109, -0.02351006492972374, -0.028943803161382675, 0.011673729866743088, -0.024824460968375206, 0.02014954760670662, 0.014986819587647915, 0.018049225211143494, -0.014173791743814945, 0.02313065156340599, -0.015989555045962334, -0.006307743489742279, 0.026477618142962456, 0.0031132204458117485, -0.0038313954137265682, -0.00831998884677887, 0.0021104856859892607, 0.018211830407381058, -0.033578064292669296, 0.007222400512546301, 0.014512552879750729, -0.016789032146334648, -0.009641159325838089, -0.02150459587574005, 0.012601937167346478, 0.00943790189921856, -0.010067999362945557, 0.007669565733522177, -0.00831998884677887, -0.0046918499283492565, -0.014526103623211384, 0.0070597948506474495, 0.02025795169174671, -0.043930623680353165, -0.010027348063886166, -0.007669565733522177, -0.032277218997478485, -0.02626080997288227, -0.0072698271833360195, -0.001250030822120607, -0.0009036469273269176, 0.00249667395837605, -0.006751521490514278, -0.0038178449030965567, -0.008983961306512356, 0.011585651896893978, 0.015162975527346134, 0.01095555443316698, -0.009200768545269966, -0.012114119715988636, -0.007513735443353653, -0.009227870032191277, -0.022547980770468712, 0.008198034018278122, -0.009153341874480247, 0.011063958518207073, 0.006046897266060114, -0.019878538325428963, 0.005047549959272146, 0.009105915203690529, 0.020298603922128677, 0.027060288935899734, 0.06910739839076996, -0.007920249365270138, -0.020881274715065956, 0.003099669935181737, -0.004193870350718498, -0.010250930674374104, -0.029892336577177048, -0.022615734487771988, 0.0033926989417523146, 0.014824213460087776, -0.0030759565997868776, 0.027087388560175896, 0.01577274687588215, -0.017791766673326492, -0.0231577530503273, -0.02298159711062908, -0.016219912096858025, -0.011152036488056183, 0.01745300553739071, -0.010691320523619652, 0.0008943310240283608, 0.048131268471479416, 0.002413677517324686, 0.027439700439572334, -0.03336125612258911, 0.014241543598473072, -0.012798418290913105, -0.006582140456885099, 0.013794378377497196, 0.003811069531366229, -0.009383699856698513, -0.020068245008587837, 0.0076966667547822, 0.020921925082802773, 0.011321417056024075, 0.02577299252152443, 0.0008134516538120806, -0.015759196132421494, 0.009891842491924763, -0.01577274687588215, 0.021843357011675835, 0.02165365032851696, 0.005765724927186966, 0.0008151454385370016, 0.01142304576933384, 0.03197911009192467, -0.008048978634178638, -0.014322846196591854, 0.01788662001490593, -0.005057713016867638, 0.011849885806441307, 0.013123629614710808, 0.015162975527346134, -0.0174259040504694, 0.010711646638810635, 0.0002682569611351937, -0.0010569366859272122, 0.0036112002562731504, -0.010637118481099606, 0.016707729548215866, 0.00862487405538559, 0.01806277595460415, -0.01197183970361948, 0.0026474229525774717, -0.02234472520649433, -0.027209343388676643, 0.01018995326012373, -0.014038287103176117, -0.01298812497407198, 0.010745522566139698, 0.029052207246422768, -0.008326763287186623, -0.00613158755004406, 0.02203306369483471, 0.0035129592288285494, -0.01115881185978651, 0.02684348076581955, -0.01356402039527893, -0.015447535552084446, -0.03818522393703461, 0.030949272215366364, 0.006910739466547966, -0.007296927738934755, 0.0427381806075573, -0.005999470595270395, 0.0254477821290493, 0.005782662890851498, 0.03360516577959061, -0.03417428582906723, -0.009166892617940903, -0.006944615859538317, -0.0009883374441415071, 0.0015396721428260207, -0.000765178061556071, -0.0044005149975419044, -0.0013016919838264585, -0.014227992855012417, 0.01145014725625515, -0.00968181062489748, 0.019729483872652054, 0.06043509393930435, 0.026274360716342926, 0.009498879313468933, 0.012290275655686855, 0.019675282761454582, 0.013780827634036541, 0.012690015137195587, 0.012493533082306385, 0.015813399106264114, -0.027290645986795425, 0.04159994050860405, -0.03149129077792168, 0.014146690256893635, -0.01982433721423149, -0.0029319829773157835, 0.007093670777976513, -0.0065516522154212, 0.029783932492136955, -0.009891842491924763, -0.013679198920726776, 0.03214171528816223, 0.025285176932811737, 0.01817118003964424, 0.01748010516166687, -0.015325581654906273, -0.0059655942022800446, 0.02159944921731949, 0.025935599580407143, -0.006846374832093716, -0.01750720664858818, 0.0063585578463971615, -0.017290398478507996, -0.028022371232509613, -0.02409273572266102, -0.00391269801184535, 0.003385923570021987, -0.01149079855531454, -0.004163381643593311, 0.011646628379821777, 0.011368843726813793, 0.029052207246422768, 0.013794378377497196, -0.029729731380939484, -0.0615733340382576, -0.016626426950097084, 0.01517652627080679, 0.007195299491286278, -0.007452758494764566, -0.044310037046670914], "ea53cead-3e5e-49cf-9c71-78029f117c0a": [0.01914997212588787, 0.007798454258590937, 0.0006604846566915512, -0.005803121253848076, -0.0012621870264410973, 0.007902956567704678, -0.009986463002860546, -0.016602739691734314, 0.00015246664406731725, -0.02480613812804222, 0.011331924237310886, 0.031716328114271164, -0.01977698504924774, 0.014303697273135185, -0.012017718516290188, -0.006061110179871321, 0.03106318973004818, 0.00270072091370821, 0.009823178872466087, -0.0008392808958888054, -0.005548397544771433, -0.009450890123844147, -0.006759966723620892, -0.0038143193814903498, -0.011051075533032417, 0.00389269576407969, 0.023970123380422592, -0.02361742965877056, -0.012984360568225384, 0.001261370605789125, 0.00876509677618742, -0.007844173349440098, -0.027562376111745834, 0.0016671319026499987, -0.00770701514557004, 0.0075894505716860294, -0.012612072750926018, -0.014734767377376556, -0.012383474968373775, -0.007458823267370462, 0.04684297740459442, 0.01361137256026268, 0.0051499842666089535, -0.0209656935185194, 0.00770701514557004, 0.027092117816209793, 0.011331924237310886, -0.009797053411602974, -0.027118243277072906, -0.000985420192591846, 0.01977698504924774, 0.023643555119633675, -0.04634659364819527, 1.528238135506399e-05, -0.018771152943372726, -0.011168640106916428, 0.002214133972302079, 0.007053878158330917, 0.008706314489245415, -0.019084658473730087, 0.022454844787716866, 0.0008784690871834755, 0.002155351685360074, 0.013872627168893814, -0.005839043762534857, 0.001180544844828546, -0.006404006853699684, 0.004624208901077509, -0.02287285402417183, -0.010737570002675056, 0.022258903831243515, 0.02029949426651001, -0.023839496076107025, 0.03323160484433174, 0.03866570442914963, -0.0026941895484924316, -0.005404707510024309, -0.017595507204532623, -0.0012295302003622055, 0.015897352248430252, 0.009313731454312801, -0.01828783191740513, -0.012148345820605755, 0.019437354058027267, 0.023957060649991035, -0.014238383620977402, 0.00017900032980833203, 0.026883114129304886, -0.00743922870606184, -0.015897352248430252, -0.003185675013810396, 0.020286431536078453, -0.00022043369244784117, 0.005669227801263332, -0.005548397544771433, 0.010626536794006824, -0.010319562628865242, 0.0024655917659401894, 0.01208956353366375, -5.033746128901839e-05, -0.006345224566757679, 0.013702811673283577, -0.015583845786750317, -0.003889430081471801, 0.0025325382594019175, 0.01918916031718254, 0.0032362930942326784, 0.007752734702080488, 0.015805913135409355, -0.004235592670738697, -0.004255186766386032, 0.051101427525281906, 0.008582218550145626, -0.02798038348555565, 0.017556319013237953, -0.007269413210451603, 0.03652341291308403, -0.02536783553659916, -0.014695579186081886, -0.00872590858489275, 0.019136909395456314, -0.0008368316339328885, 0.014486575499176979, -0.018274769186973572, 0.031167691573500633, -0.016668053343892097, -0.0008531600469723344, -0.017033809795975685, -0.029234405606985092, -0.020795878022909164, 0.006234191358089447, 0.013199896551668644, 0.008934912271797657, -0.004046183079481125, -0.011312330141663551, 0.043551165610551834, -0.015936540439724922, 0.01212875172495842, -0.02619078755378723, -0.008575687184929848, 0.023970123380422592, 0.008641000837087631, -0.004366219975054264, -0.0070930663496255875, 0.01895403116941452, 0.00653789984062314, 0.02191927284002304, 0.01388568989932537, 0.005966405384242535, -0.014591077342629433, 0.025472337380051613, 0.012102626264095306, -0.017556319013237953, -0.0048332130536437035, 0.0055777886882424355, 0.024910639971494675, 0.002857473911717534, 0.022768350318074226, 0.025145769119262695, 0.013781188055872917, 0.022572409361600876, 0.02892090007662773, 0.008549561724066734, -0.014578014612197876, -0.005238157697021961, 0.03613153100013733, 0.02722274512052536, 0.004519707057625055, -0.012043843977153301, -0.023852558806538582, -0.017347315326333046, 0.024348942562937737, -0.02920828014612198, 0.005603914149105549, 0.01464332826435566, 0.005620242562144995, 0.03722880035638809, 0.005274080205708742, -0.023173296824097633, -0.006825280375778675, 0.004960574675351381, 0.007550262380391359, 0.02638673037290573, 0.040860243141651154, -0.025198020040988922, 0.005212032236158848, -0.0043564229272305965, 0.005404707510024309, 0.01563609577715397, -0.004072308540344238, 0.011273141950368881, 0.026243038475513458, 0.012514102272689342, -0.0013340320438146591, -0.6533458828926086, -0.015074399299919605, 0.013069268316030502, -0.0036673634313046932, 0.005966405384242535, 0.014695579186081886, -0.0073347268626093864, 0.01811801642179489, -0.006655464880168438, 0.04650334641337395, -0.008621406741440296, -0.0059827337972819805, 0.018013514578342438, -0.005590851418673992, -0.0157928504049778, 0.0037130829878151417, 0.001389548648148775, -0.015322591178119183, -0.015244214795529842, 0.020521560683846474, 0.014290634542703629, 0.04167013242840767, -0.034955885261297226, -0.027196619659662247, -0.0013381141470745206, 0.008151148445904255, 0.010032182559370995, -0.02398318611085415, -0.008752034045755863, 0.02599484659731388, -0.03046230413019657, -0.00939863920211792, 0.01729506440460682, 0.009143915958702564, 0.042088139802217484, 0.005773730110377073, 0.014160007238388062, 0.010554691776633263, 0.014708641916513443, 0.019358977675437927, -0.023290861397981644, 0.005803121253848076, 0.01365056075155735, -0.007857236079871655, 0.010201998054981232, -0.010162809863686562, -0.0002969731576740742, -0.0024410991463810205, -0.011051075533032417, -0.017347315326333046, 0.0008058075909502804, -0.00774620333686471, 0.0050748735666275024, 0.0049246521666646, 0.016328422352671623, -0.0007735589751973748, 0.018379271030426025, -0.026321416720747948, -0.009098196402192116, -0.018065765500068665, 0.02714436873793602, 0.0004669928748626262, -0.01483926922082901, -0.013506870716810226, -0.015479343943297863, 0.015466281212866306, -0.011756463907659054, 0.01749100536108017, -0.019293664023280144, -0.01594960317015648, 0.004297640640288591, 0.03145506978034973, -0.017582444474101067, -0.03169020265340805, -0.015544657595455647, -0.0012401436688378453, 0.014473512768745422, -0.011286204680800438, 0.020208055153489113, 0.022585472092032433, 0.004490315914154053, -0.006495445966720581, -0.045092567801475525, -0.03145506978034973, 0.015387904830276966, -0.02421831525862217, -0.02133144997060299, 0.01024771761149168, 0.014865394681692123, -0.00010817579459398985, 0.013056205585598946, 0.01709912344813347, -0.011756463907659054, -0.027248870581388474, -0.012318161316215992, 0.015361779369413853, -0.01819639280438423, 0.0082883071154356, 0.015623033978044987, -0.026295289397239685, -0.025380898267030716, -0.01840539649128914, 0.012540227733552456, 0.007027752697467804, 0.021592704579234123, 0.003817585064098239, 0.040180981159210205, 0.017190562561154366, 0.02928665652871132, -0.014721704646945, 0.006328896153718233, -0.026256101205945015, -0.006090501323342323, -0.010900854133069515, -0.004451127722859383, -0.02306879498064518, 0.01950266771018505, -0.0008196867420338094, 0.014695579186081886, -0.014316760003566742, 0.01483926922082901, 0.022167464718222618, -0.011344986967742443, -0.021749457344412804, 0.010639599524438381, 0.009823178872466087, -0.0045229727402329445, -0.007622107397764921, -0.015845101326704025, 0.00458175502717495, 0.007680889684706926, 0.012076500803232193, 0.03461625427007675, 0.0004092310555279255, -0.004464190453290939, -0.001962676178663969, 0.010306499898433685, 0.00291299051605165, 0.0015544657362625003, 0.005701885093003511, -0.026739424094557762, -0.010940042324364185, 0.00036902233841829, -0.007772328797727823, -0.014538826420903206, -0.039789099246263504, -0.05029153823852539, -0.003299974137917161, -0.0018581743352115154, 0.017125248908996582, -0.008680189028382301, -0.012487976811826229, -0.015178901143372059, -0.0011013520415872335, -0.028581269085407257, -0.002968507120385766, 0.010698381811380386, -0.01811801642179489, -0.01256635319441557, -0.010855134576559067, -0.004745039157569408, 0.026216913014650345, -0.011514803394675255, 0.006714247167110443, 0.0003486117930151522, -0.026687173172831535, 0.02255934663116932, 0.011057606898248196, -0.02295123040676117, -0.041722383350133896, 0.026478169485926628, 0.0042649838142097, -0.013741999864578247, 0.004274780862033367, -0.0055973827838897705, 0.03014879859983921, -0.04308090731501579, -0.019097721204161644, -0.0033538579009473324, -0.0044478620402514935, 0.018313957378268242, 0.006929782219231129, -0.003032187931239605, 0.011540928855538368, 0.013924878090620041, 0.021984586492180824, 0.021396763622760773, 0.005590851418673992, -0.008856535889208317, 0.017974326387047768, 0.037646807730197906, 0.01803964003920555, -0.02125307358801365, 0.004794024396687746, -0.01560997124761343, 0.000506997515913099, -0.0016385570634156466, 0.013389306142926216, 0.0010450190166011453, 0.019594106823205948, 0.023094920441508293, 0.019633295014500618, -0.0042649838142097, -0.027849756181240082, 0.007870298810303211, -0.017673883587121964, 0.012540227733552456, -0.019332852214574814, -0.0036510350182652473, -0.0024296692572534084, -0.00010368548100814223, -0.02199764922261238, -0.02033868245780468, -0.01264472957700491, -0.007863767445087433, 0.018418459221720695, 0.003032187931239605, 0.021814770996570587, -0.020939568057656288, 0.0017993920482695103, 0.008216462098062038, -0.010502440854907036, 0.01645904965698719, 0.009065539576113224, -0.01460414007306099, 0.012501039542257786, -0.00793561339378357, 0.007883361540734768, -0.0009609276312403381, -0.04697360470890999, 0.0070930663496255875, 0.005234892014414072, 0.006626073736697435, 0.013167239725589752, -0.0007919284398667514, 0.015009085647761822, 0.029234405606985092, -0.01116210874170065, 0.03067130781710148, -0.005976202432066202, -0.018065765500068665, 0.014107756316661835, 0.0013209693133831024, -0.036105405539274216, 0.03806481510400772, -0.014212258160114288, 0.04545832425355911, 0.02069137617945671, -0.002578257815912366, 0.012141814455389977, 0.014146944507956505, -0.0035628615878522396, -0.03038392774760723, -0.00849077943712473, -0.0008572421502321959, -0.013323992490768433, 0.010489378124475479, 0.010979230515658855, 0.0174518171697855, 0.027039866894483566, 0.007191036827862263, -0.02148820273578167, -0.0011201297165825963, 0.00969255156815052, 0.013180302456021309, 0.0003326915903016925, -0.011384175159037113, -0.01638067327439785, -0.024087687954306602, -0.0011723806383088231, -0.016393736004829407, -0.022716099396348, -0.012102626264095306, 0.00033003822318278253, 0.013023548759520054, 0.021501265466213226, -0.01587122678756714, 0.013343586586415768, 0.032343339174985886, 0.013467682525515556, -0.0035987840965390205, -0.0056724934838712215, 0.015662221238017082, 0.017242813482880592, -0.006423600949347019, -0.03312710300087929, -0.026883114129304886, -0.026099348440766335, -0.01317377109080553, -0.021579641848802567, -0.047940246760845184, -0.005414504557847977, -0.014290634542703629, -2.1341757019399665e-05, -0.028973150998353958, 0.018653588369488716, 0.021671080961823463, 0.0029309517703950405, 0.015270340256392956, 0.01681174337863922, -0.009816647507250309, -0.005711682140827179, -0.02798038348555565, -0.025929532945156097, 0.05149330943822861, -0.007981332950294018, -0.0035987840965390205, -0.016524363309144974, 0.01240306906402111, -0.015623033978044987, -0.008660594932734966, 0.012670855037868023, -0.024871451780200005, -0.005767198745161295, 0.018888717517256737, 0.0178436990827322, -0.010515503585338593, 0.03263071924448013, 0.04666009917855263, 0.006599948275834322, 0.008314432576298714, -0.017308127135038376, 0.02361742965877056, 0.02045624703168869, 0.05899132043123245, 0.010045245289802551, -0.0020933037158101797, 0.002881966531276703, -0.003664097748696804, -0.014617202803492546, -0.022703036665916443, -0.02899927645921707, 0.008347089402377605, -0.006534634158015251, -0.016602739691734314, -0.005195703823119402, 0.004937714897096157, 0.0036216438747942448, 0.018536023795604706, 0.006759966723620892, -0.0007123273680917919, -0.017830636352300644, 0.006929782219231129, -0.006152549292892218, 0.012677386403083801, -0.0016614169580861926, 0.013755062595009804, -0.0014818042982369661, -0.006436663679778576, -0.0046340059489011765, 0.004059245809912682, -0.012886390089988708, 0.011821777559816837, -0.027875881642103195, 0.005532069131731987, 0.000982970930635929, -0.00391882099211216, 0.002405176404863596, -0.010397939011454582, 0.03135056793689728, 0.02936503291130066, 0.014982960186898708, -0.0036934888921678066, -0.02029949426651001, 0.009881961159408092, 0.014212258160114288, -0.0019790048245340586, -0.014329822733998299, -0.0035269390791654587, 0.005358987953513861, 0.0021569845266640186, 0.009274543263018131, 0.0031693466007709503, -0.027954258024692535, 0.004023323301225901, -0.002029622904956341, -0.0360792800784111, -0.01272310595959425, 0.00900022592395544, 0.005251220427453518, 0.012292035855352879, 0.00481688417494297, -0.02402237430214882, -0.02299041859805584, -0.003980869427323341, -0.039789099246263504, 0.009744802489876747, -0.01962023228406906, -0.01024771761149168, -0.01529646571725607, -0.007537199649959803, -0.0022533221635967493, -0.010992293246090412, -0.005643102340400219, 0.012690449133515358, -0.027640752494335175, -0.04859338328242302, -0.0031922063790261745, 0.020861191675066948, -0.0011846269480884075, -0.0036510350182652473, -0.015087462030351162, 0.023512927815318108, 0.011619305238127708, -0.025576839223504066, -0.02999204583466053, 0.00848424807190895, -0.012096094898879528, -0.00809236615896225, 0.008072772063314915, -0.024544883519411087, 0.005950076971203089, -0.023800307884812355, 0.02195846103131771, -0.0075894505716860294, 0.027353372424840927, -0.017517130821943283, -0.004473987501114607, 0.00458175502717495, 0.03082806058228016, 0.003958009649068117, 0.01487845741212368, 0.0043564229272305965, -0.01938510313630104, -0.011998124420642853, -0.010894322767853737, -0.014212258160114288, -0.03989360108971596, 0.011671556159853935, -0.005636570975184441, 0.022010711953043938, 0.0002667655935510993, -0.011135983280837536, -0.012174471281468868, 0.016250045970082283, -0.030357802286744118, 0.010979230515658855, 0.033336106687784195, 0.020586874336004257, 0.0006380330887623131, 0.005535334814339876, 0.03398924320936203, 0.024780012667179108, -0.027431748807430267, -0.0209656935185194, -0.04783574491739273, 0.02259853482246399, -0.001592837506905198, -0.022023774683475494, 0.026452044025063515, 0.0025276397354900837, 0.006929782219231129, -0.03030555136501789, 0.0002861555840354413, -0.01287985872477293, 0.030566805973649025, 0.012056906707584858, -0.00774620333686471, -0.022663848474621773, 0.017347315326333046, -0.018784215673804283, -0.020521560683846474, -0.02433587983250618, 0.02659573405981064, 0.009463952854275703, 0.002068811096251011, 0.00040657768840901554, -0.011958936229348183, 0.007863767445087433, -0.02683086320757866, -0.026138536632061005, 0.008836941793560982, -0.007765797432512045, 0.03304872661828995, -0.016315359622240067, 0.01032609399408102, -0.0033293652813881636, -0.007132254540920258, 0.028267763555049896, -0.032264962792396545, -0.014943771995604038, 0.016903182491660118, 0.02714436873793602, 0.020273368805646896, 0.017464879900217056, -0.007654764223843813, 0.016707241535186768, 0.017242813482880592, -0.030932562425732613, 0.025851156562566757, -0.012004655785858631, -0.014094693586230278, -0.02299041859805584, 0.012821076437830925, 0.009921149350702763, -0.007922550663352013, -0.0007298804703168571, -0.02215440198779106, -0.0034877508878707886, 0.04472681134939194, -0.00036412381450645626, 0.003566127270460129, -0.017713071778416634, -0.009875429794192314, -0.007680889684706926, 0.032421715557575226, -0.012154877185821533, 0.029469534754753113, 0.004444596357643604, 0.0025880548637360334, -0.006518305744975805, -0.01557078305631876, 0.007700483780354261, 0.0008490779437124729, 0.02920828014612198, -0.01583203859627247, 0.00019971700385212898, -0.008627938106656075, 0.010188935324549675, -0.015139712952077389, 0.011625836603343487, -0.016877057030797005, 0.032369464635849, 0.007347789593040943, 0.003664097748696804, 0.016589676961302757, -0.0036151125095784664, -0.00043311138870194554, -0.011344986967742443, 0.0019447150407359004, 0.001792860683053732, 0.001297293114475906, 0.00973173975944519, -0.011135983280837536, -0.017556319013237953, -0.01803964003920555, 0.00084091373719275, -0.011710744351148605, 0.007661295589059591, -0.0006290524615906179, 0.005538600496947765, 0.01368974894285202, -0.022494032979011536, -0.051623936742544174, -0.01483926922082901, -0.04020710662007332, 0.04190526157617569, -0.0012564720818772912, 0.02845064178109169, 0.004761367570608854, 0.005450427066534758, 0.001882667071186006, 0.006753435358405113, 0.011567054316401482, -0.0032199646811932325, 0.010593879967927933, -0.015126650221645832, -0.005594117101281881, -0.0038143193814903498, 0.00018379680113866925, 0.014447387307882309, -0.03082806058228016, -0.023800307884812355, 0.010515503585338593, 0.001662233378738165, -0.0050389510579407215, 0.001796126365661621, 0.009150447323918343, -0.037019796669483185, 0.010659193620085716, 0.007700483780354261, 0.0026941895484924316, -0.0378296859562397, 0.014813143759965897, -0.009248417802155018, 0.02821551263332367, -0.008431997150182724, 0.01583203859627247, 0.0013707709731534123, 0.003922086674720049, 0.010750632733106613, 0.004849541466683149, -0.00907860230654478, 0.017360378056764603, 0.008203399367630482, 0.03299647569656372, -0.041095372289419174, 0.011567054316401482, 0.005329596810042858, 0.020038239657878876, 0.0023643553722649813, 0.007680889684706926, -0.009176572784781456, 0.025811968371272087, 0.0017079529352486134, 0.00221086828969419, 0.008360152132809162, 0.03558289632201195, 0.005306737031787634, -0.0039155553095042706, -0.006165612023323774, -0.02084812894463539, -0.009960337541997433, -0.00458175502717495, 0.03059293143451214, 0.010953105054795742, 0.0078964252024889, 0.01272310595959425, 0.0036216438747942448, -0.014238383620977402, 0.01460414007306099, -0.007818047888576984, 0.008281775750219822, -0.016432924196124077, -0.04308090731501579, 0.015126650221645832, 0.008510373532772064, 0.0055777886882424355, 0.0024166065268218517, -0.0060578444972634315, -0.00021349411690607667, 0.04888076335191727, -0.003226496046409011, 0.00011501331755425781, -0.02279447577893734, 0.001561813522130251, -0.01840539649128914, 0.01614554412662983, -0.01024771761149168, -0.014199195429682732, 0.03751618042588234, -0.008079303428530693, -0.01236388087272644, 0.007151848636567593, 0.019215285778045654, -0.000860507832840085, -0.00653789984062314, 0.004016791936010122, 0.027327246963977814, -0.002999531105160713, -0.008392808958888054, 0.0007180423708632588, -0.00590435741469264, 7.838918463676237e-06, -0.01598879136145115, 0.004199670162051916, 0.023003481328487396, -0.008151148445904255, -0.010201998054981232, -8.7714237452019e-05, 0.0023284328635782003, -0.015662221238017082, -0.007406571879982948, -0.014695579186081886, 0.009379045106470585, 0.005068342201411724, -0.002720315009355545, -0.019398165866732597, -0.023669680580496788, -0.007145317271351814, -0.010633068159222603, 0.019515730440616608, -0.0020573812071233988, -0.016354547813534737, 0.007563325110822916, 0.027039866894483566, 0.044256553053855896, -0.0011021684622392058, -0.023173296824097633, -0.028320014476776123, -0.005750870332121849, 0.003990666475147009, -0.01899321936070919, -0.027431748807430267, -0.02615159936249256, 0.060088593512773514, -0.00010077697515953332, -0.020547686144709587, -0.012233253568410873, -0.0006151733105070889, -0.04313315823674202, -0.012847201898694038, -0.007942144758999348, 0.011867497116327286, 0.04530157148838043, 0.026530420407652855, 0.002921154722571373, 0.04906364157795906, -0.023604366928339005, 0.013598309829831123, -0.02041705884039402, -0.0003088112862315029, -0.010809415020048618, 0.015596908517181873, -0.00787683017551899, -0.003683691844344139, 0.008268713019788265, -0.01638067327439785, 0.01848377287387848, -0.02449263259768486, 0.015283402986824512, 0.03652341291308403, 0.003840444842353463, -0.014695579186081886, -0.023316986858844757, 0.013898752629756927, 0.00977092795073986, 0.00092990358825773, -0.0003243232786189765, -0.009992994368076324, -0.006015390623360872, -0.004787493031471968, -0.018379271030426025, -0.03746392950415611, 0.02228502929210663, 0.009307200089097023, -0.01749100536108017, -0.0034877508878707886, -0.015479343943297863, -0.025472337380051613, -0.018823403865098953, -0.01353299617767334, 0.03566127270460129, -0.01541403029114008, -0.006501977331936359, 0.01606716774404049, -0.0015267074340954423, -0.0007956023328006268, -0.03208208456635475, -0.013663623481988907, -0.014029379934072495, 0.003510610666126013, 0.01815720461308956, -0.0010254249209538102, -0.0045425668358802795, -0.01702074706554413, 0.009065539576113224, -0.030958687886595726, -0.0019022611668333411, -0.016641927883028984, 0.018901780247688293, -0.01692930795252323, 0.024819200858473778, 0.008262181654572487, -0.007765797432512045, 0.007289007306098938, -0.018470710143446922, 0.0170599352568388, 0.010861665941774845, -0.019685545936226845, -0.009463952854275703, -0.02357824146747589, 0.023708868771791458, -0.00156507920473814, 0.00028472684789448977, 0.00969255156815052, 0.018131079152226448, 0.019280599430203438, -0.0319775827229023, 0.003762068459764123, 0.1776532232761383, -0.02318635955452919, 0.009914617985486984, 0.011645430698990822, 0.00010174647468375042, -0.0031971049029380083, -0.0007666193996556103, -0.0007404939387924969, -0.029547911137342453, -0.00844505988061428, -0.012292035855352879, 0.004751570522785187, -0.042244892567396164, 0.0011438059154897928, 0.013637498021125793, -0.003035453613847494, -0.022768350318074226, -0.036706291139125824, -0.019332852214574814, -0.02413993887603283, -0.0035040793009102345, -0.0055973827838897705, -0.01560997124761343, -0.005790058523416519, 0.020403996109962463, 0.002725213533267379, 0.018666651099920273, -0.007811516989022493, 0.015309528447687626, 0.014826206490397453, -0.017869824543595314, -0.0043923454359173775, 0.009424764662981033, 0.008588749915361404, -0.016158606857061386, 0.007798454258590937, 0.009659894742071629, 0.03338835760951042, 0.03189920634031296, -0.014408199116587639, 0.0015544657362625003, -0.009392107836902142, -0.021906210109591484, -0.03443337604403496, 0.008902255445718765, 0.029887543991208076, -0.011331924237310886, -0.00965336337685585, 0.01361137256026268, 0.03328385576605797, -0.023042669519782066, 0.012383474968373775, 0.029260531067848206, 0.01946347951889038, 0.013167239725589752, 0.008601812645792961, -0.02445344440639019, 0.010313031263649464, -0.0012401436688378453, 0.010535097680985928, -0.020952630788087845, 0.042323268949985504, 0.006364818662405014, 0.033414483070373535, -0.0012956602731719613, 0.015727534890174866, -0.014538826420903206, -0.006753435358405113, 0.0004837294982280582, -0.009274543263018131, -0.009901555255055428, 0.002338229911401868, -0.010371813550591469, -0.008183805271983147, -0.013167239725589752, -0.020586874336004257, 0.015596908517181873, 0.010032182559370995, 0.012533696368336678, 0.021827833727002144, -0.02160576730966568, -0.011860965751111507, 0.011599711142480373, -0.00876509677618742, -0.022885916754603386, -0.020116616040468216, 0.01776532270014286, -0.008347089402377605, -0.00536225363612175, -0.014747830107808113, 0.009045945480465889, -0.014003254473209381, -0.013402368873357773, 0.0012687183916568756, 0.019646357744932175, 0.007386977784335613, -0.005976202432066202, 0.032500091940164566, -0.023878684267401695, 0.0013340320438146591, -0.016210857778787613, 0.0479663722217083, 0.024126876145601273, 0.05658777803182602, -0.0038241164293140173, 0.015048273839056492, 0.002865638118237257, -0.002736643422394991, -0.001871237182058394, -0.009522735141217709, -0.0050454824231565, -0.02492370270192623, 0.0018189861439168453, -0.010907385498285294, -0.02342148870229721, -0.00484627578407526, -0.023682743310928345, -0.025942595675587654, -0.01028690580278635, -0.014734767377376556, -0.030279425904154778, -0.0047091166488826275, 0.011527866125106812, 0.022624660283327103, 0.004153950605541468, -0.005078139249235392, -0.02860739454627037, 0.007177974097430706, -0.02461019717156887, 0.01626310870051384, 0.000559656647965312, -0.0419313870370388, 0.014904582872986794, -0.0011127819307148457, -0.00642033526673913, 0.0026043832767754793, -0.014160007238388062, -0.007393509149551392, -0.01365056075155735, 0.008660594932734966, -0.002503147115930915, -0.0005796589539386332, -0.01107720099389553, 0.011488677933812141, 0.019280599430203438, -0.0013495440362021327, -0.005267548840492964, -0.010319562628865242, -0.012631666846573353, -0.007262881845235825, -0.01903240755200386, -0.016485175117850304, -0.0029505458660423756, -0.040651239454746246, 0.005277345888316631, -0.022611597552895546, -0.021697206422686577, -0.019358977675437927, 0.006136220879852772, -0.0058325123973190784, -0.04783574491739273, 0.014982960186898708, 0.013990191742777824, -0.00013123969256412238, -0.013088862411677837, -0.014630265533924103, -0.16385897994041443, 0.003781662555411458, 0.009065539576113224, -0.010835540480911732, 0.02041705884039402, 0.03252621740102768, 0.020795878022909164, 0.010110558941960335, -0.0046731941401958466, 0.001300558797083795, -0.008699783124029636, -0.01772613450884819, -0.03150732070207596, -0.022258903831243515, -0.0191107839345932, -0.009450890123844147, -0.010424064472317696, 0.013441557064652443, 0.043028656393289566, 0.0036379722878336906, 0.0111163891851902, -0.032369464635849, 0.010855134576559067, 0.007778860162943602, -0.003107298631221056, 0.00618194043636322, -0.016798680648207664, 0.01891484297811985, -0.0258380938321352, -0.004823416005820036, -0.005110796075314283, 0.014016317203640938, -0.01095963642001152, -0.02868577092885971, -0.0004722996091004461, 0.002191274194046855, -0.0003667771816253662, -0.029338907450437546, -0.01157358568161726, 0.01240306906402111, 0.040102604776620865, 0.014316760003566742, -0.010770226828753948, -0.036549538373947144, -0.006675058975815773, 0.00469931960105896, 0.02782363072037697, -0.006707715801894665, 0.044779062271118164, -0.00622112862765789, 0.009548860602080822, -0.004353157244622707, 0.0073739150539040565, -0.011749932542443275, 0.010345688089728355, 0.0060578444972634315, -0.03722880035638809, 0.03216046094894409, -0.014734767377376556, 0.010972699150443077, 0.0032118004746735096, -0.037490054965019226, -0.006377881392836571, 0.023356175050139427, 0.0011634000111371279, -0.010541629046201706, 0.0019985989201813936, 3.117708183708601e-05, -0.041408877819776535, 0.012161408551037312, -0.004013526253402233, -0.01950266771018505, 0.006531368475407362, -0.024192189797759056, 0.008431997150182724, 0.017308127135038376, 0.004078839905560017, -0.0032722156029194593, -0.014290634542703629, -0.00029860599897801876, 0.003716348670423031, 0.011057606898248196, 0.0019316523103043437, -0.008164211176335812, 0.012788419611752033, -0.01815720461308956, 0.01737344078719616, 0.017660820856690407, -0.003938415087759495, -0.029547911137342453, 0.0014320026384666562, -0.009300668723881245, -0.0005167945637367666, -0.005456958431750536, 0.01056775450706482, 0.010476315394043922, 0.006524837110191584, -0.02449263259768486, 0.0023872151505202055, -0.024793075397610664, 0.014773955568671227, -0.0067403726279735565, -0.0013103558449074626, 0.006501977331936359, 0.03067130781710148, 0.01709912344813347, -0.0019136910559609532, 0.0073608523234725, 0.034485626965761185, 0.005156515631824732, -0.016041042283177376, 0.003840444842353463, 0.006462789140641689, 0.031089315190911293, -0.0027627688832581043, 0.018496835604310036, -0.0047842273488640785, -0.03573964908719063, 0.010339156724512577, -0.016563551500439644, 0.03720267489552498, 0.007772328797727823, 0.0014638430438935757, 0.012625135481357574, 0.01337624341249466, -0.018274769186973572, -0.12571577727794647, -0.0360792800784111, -0.023970123380422592, 0.004536035470664501, 0.014225320890545845, 0.008784690871834755, -0.0071126604452729225, 0.03806481510400772, 0.008895724080502987, 0.022089088335633278, 0.004157216288149357, -0.01380731351673603, 0.008216462098062038, -0.023761119693517685, -0.017621632665395737, 0.01329786702990532, 0.024009311571717262, -0.02564215287566185, -0.005192438140511513, 0.05107530206441879, -0.0004380099126137793, -0.0116519620642066, -0.02425750344991684, -0.00010960453073494136, -0.008634469471871853, 0.007184505462646484, -0.019959863275289536, -0.006227659992873669, 0.009137384593486786, 0.013911815360188484, -0.0034289686009287834, -0.010084433481097221, 0.007987864315509796, 0.0036347066052258015, 0.018705839291214943, -0.0013323992025107145, -0.011266610585153103, -0.006495445966720581, 0.010953105054795742, 0.015845101326704025, 0.006423600949347019, -0.010659193620085716, 0.008177273906767368, -0.01232469268143177, 0.026438981294631958, 0.00014001621457282454, -0.017935138195753098, 0.03466850519180298, -0.023565178737044334, -0.03398924320936203, -0.03216046094894409, -0.02236340567469597, -0.017595507204532623, -0.014003254473209381, 0.04454393312335014, 0.008791222237050533, 0.009496609680354595, 0.009672957472503185, -0.007530668284744024, -0.0010115457698702812, -0.004771164618432522, -0.006544431205838919, -0.019855361431837082, 0.017504068091511726, 0.029077652841806412, 0.010620005428791046, -0.035948652774095535, -0.023290861397981644, 0.023917872458696365, -0.018549086526036263, -0.007955207489430904, 0.00473850779235363, -0.010587348602712154, 0.013017017394304276, 0.006681590341031551, -0.0068709999322891235, -0.015544657595455647, 0.015035211108624935, -0.004839744418859482, -0.020991818979382515, -0.021148571744561195, -0.034720756113529205, 0.025655215606093407, -0.009823178872466087, 0.005594117101281881, 0.020430121570825577, 0.027875881642103195, -0.008895724080502987, 0.014251446351408958, 0.0031138299964368343, 0.01824864372611046, 0.022572409361600876, 0.015152775682508945, -0.004869135562330484, -0.017504068091511726, 0.0018924641190096736, 0.0010254249209538102, -0.02410075068473816, -0.0047646332532167435, 0.011364581063389778, -0.01895403116941452, -0.027196619659662247, -0.008836941793560982, 0.01116210874170065, -0.010574285872280598, -0.01994680054485798, -0.008177273906767368, 0.001962676178663969, -0.004327031783759594, -0.0138465017080307, -0.0015054804971441627, 0.007680889684706926, -0.0475744903087616, -0.0043923454359173775, -0.005855372175574303, -0.03150732070207596, -0.014290634542703629, -0.000988685991615057, -0.0002094120136462152, -0.01120129693299532, -0.007987864315509796, -0.013441557064652443, -0.0007792739197611809, -0.013108456507325172, 0.012892921455204487, 0.020482372492551804, 0.008758565410971642, -0.0021145306527614594, -0.031637951731681824, 0.005365519318729639, 0.0007262065773829818, -0.022820603102445602, 0.0017275470308959484, -0.014382073655724525, 0.0011593179078772664, 0.016445986926555634, -0.013180302456021309, 0.021553516387939453, 0.014186132699251175, 0.015897352248430252, 0.02500207908451557, 0.04308090731501579, -0.03438112512230873, -0.018104953691363335, -0.003553064540028572, 0.002697455231100321, -0.0006323181441985071, -0.017700009047985077, -0.007210630923509598, -0.009751333855092525, 0.026086285710334778, -0.010038713924586773, 0.029312781989574432, 0.02421831525862217, -0.006890594027936459, -0.00997340027242899, -0.018653588369488716, -0.006482383236289024, 0.006792623549699783, 0.01606716774404049, -0.017425691708922386, -0.006237457040697336, 0.03890083357691765, 0.0008996960241347551, 0.029783040285110474, -0.029652412980794907, 0.007158380001783371, -0.008543030358850956, -0.020390933379530907, 0.010430595837533474, -0.007471885997802019, 0.0007870299159549177, -0.026373667642474174, 0.017556319013237953, 0.022128276526927948, 0.015231152065098286, 0.036340534687042236, 0.0035008136183023453, -0.032500091940164566, 0.0004020873748231679, -0.005966405384242535, 0.02564215287566185, 0.027666877955198288, 0.006315833423286676, -0.007184505462646484, 0.005816183984279633, 0.046555597335100174, -0.004470721818506718, 0.014499638229608536, 0.0013960800133645535, -0.0024410991463810205, 0.026203850284218788, 0.014747830107808113, -0.005332862492650747, -0.010665724985301495, 0.02476694993674755, 0.009013288654386997, -0.0033065055031329393, 0.004656865727156401, -0.013990191742777824, 0.027248870581388474, 0.008719377219676971, 0.01796126365661621, -0.010136684402823448, -0.019842298701405525, -0.01848377287387848, -0.005623508244752884, 0.010633068159222603, -0.012834139168262482, -0.03192533180117607, 0.012768825516104698, 0.014225320890545845, -0.011011887341737747, 0.009104727767407894, 0.03127219155430794, 0.0010686952155083418, -0.0187189020216465, 0.022167464718222618, 0.00547981821000576, -0.017086060717701912, -0.024753887206315994, 0.012109157629311085, 0.014982960186898708, 0.013369712047278881, 0.05711028724908829, -0.00997340027242899, 0.0075894505716860294, 0.017072997987270355, 0.007295538671314716, -0.022572409361600876, 0.013245616108179092, -0.022089088335633278, -0.0068514058366417885, -0.002645204309374094, -0.018026577308773994, -0.005581054370850325, -0.023160234093666077, -0.0040755742229521275, 6.077234502299689e-05, -0.0036118468269705772, 0.0038110536988824606, 0.06029759719967842, 0.014538826420903206, 0.010397939011454582, 0.004284577909857035, 0.011358049698174, 0.015035211108624935, 0.005417770240455866, 0.0038861643988639116, -0.00010337932326365262, -0.026856988668441772, 0.02287285402417183, -0.01036528218537569, 0.008425465784966946, -0.04854113236069679, -0.012847201898694038, 0.024636322632431984, -0.012102626264095306, -0.004839744418859482, -0.027118243277072906, 0.011312330141663551, 0.03597477823495865, -0.004323766101151705, 0.014773955568671227, 0.01700768433511257, -0.03814319148659706, -0.0003549390530679375, 0.0339369922876358, 0.006211331579834223, -0.007289007306098938, -0.017477942630648613, 0.009953806176781654, -0.003455094061791897, -0.02745787426829338, -0.031246067956089973, 0.013069268316030502, 0.004320500418543816, -0.012912515550851822, -0.0027186821680516005, 0.0034354999661445618, 0.01357218436896801, 0.017895950004458427, 0.005656165070831776, -0.028006508946418762, -0.045327696949243546, -0.004163747653365135, 0.018627462908625603, 0.0023039402440190315, -0.0070016272366046906, -0.031794704496860504], "447c0f42-0e4f-435d-97c3-e88d6657386c": [0.004916703794151545, 0.007592800538986921, 0.004072320647537708, -0.009042213670909405, -0.009035564959049225, 0.018536539748311043, -0.011409146711230278, -0.020810389891266823, -0.02327040396630764, -0.03590290993452072, 0.011488931253552437, 0.026741018518805504, -0.033509381115436554, 0.001722009852528572, -0.007014364469796419, -0.0011435741325840354, 0.029573358595371246, -0.007107446435838938, 0.018257293850183487, 0.003026814665645361, -0.008217777125537395, 0.012466288171708584, 0.01017913967370987, -0.012718938291072845, -0.013962242752313614, 0.014015431515872478, 0.006329549942165613, -0.022871483117341995, 0.011109955608844757, 0.01310456171631813, -0.009999625384807587, -0.002597974380478263, -0.008124695159494877, 0.0016364080365747213, -0.01735307276248932, 0.0008335791062563658, -0.024201219901442528, -0.005142759066075087, 0.003759832354262471, 0.011528822593390942, 0.038642168045043945, 0.012944993562996387, 0.010425141081213951, 0.021967262029647827, -0.005136110354214907, 0.012971588410437107, 0.01886897347867489, -0.016927557066082954, -0.0015183938667178154, 0.021422069519758224, 0.02707345224916935, 0.01308461558073759, -0.0309296902269125, 0.00010908002150245011, -0.008516968227922916, 0.013004831038415432, -0.007087500300258398, 0.012925047427415848, 0.022286398336291313, -0.012080663815140724, 0.013304022140800953, 0.0019746599718928337, -0.014214892871677876, 0.01015919353812933, -0.015026031993329525, 0.004032428376376629, 0.0061234403401613235, 0.009314809925854206, -0.01945405825972557, -0.015145708806812763, -0.001196763594634831, 0.01731318049132824, -0.020690713077783585, 0.003138180123642087, 0.02248585969209671, 0.0024101489689201117, -0.009973030537366867, 0.016209498047828674, -0.008543562144041061, 0.00895578134804964, 0.0013779402943328023, -0.012027474120259285, -0.009168539196252823, -0.013011479750275612, 0.040131472051143646, -0.010026219300925732, -0.004707270301878452, 0.018922163173556328, -0.01546484511345625, -0.03071693331003189, 0.00597716961055994, 0.024533653631806374, 0.0016463811043649912, 0.024959171190857887, -0.008224425837397575, 0.020504551008343697, -0.01314445398747921, 0.03252537548542023, -0.025717120617628098, -0.019201407209038734, -0.014760084450244904, -0.0009682149975560606, -0.007898639887571335, -0.009328107349574566, -0.00216414756141603, 0.025132035836577415, -0.004753811284899712, 0.020597631111741066, 0.021648123860359192, -0.006027034483850002, -0.015371764078736305, 0.057338275015354156, 0.009607352316379547, -0.04584934562444687, 0.021209310740232468, -0.006502415519207716, 0.01958703063428402, -0.029041463509202003, -0.006302955094724894, 0.003028476843610406, 0.017140313982963562, 8.160224388120696e-05, 0.0032445592805743217, -0.011701689101755619, 0.020810389891266823, -0.001929781399667263, -0.01878918893635273, -0.028988273814320564, -0.018257293850183487, -0.020424766466021538, 0.022339588031172752, -0.005116164684295654, 0.009481027722358704, -0.00434159254655242, -0.021222608163952827, 0.01195433922111988, -0.040929317474365234, 0.005162705201655626, -0.01655523106455803, -0.02239277772605419, 0.013762781396508217, -0.005362166091799736, 0.004896757658571005, 0.0035969396121799946, 0.015597819350659847, -0.004800351802259684, 0.012665748596191406, 0.003872859990224242, -0.001720347674563527, -0.005904033780097961, -0.0017652263632044196, 0.0010687763569876552, -0.006735119968652725, 0.0016280971467494965, 0.009248323738574982, 0.02090347185730934, 0.0014834882458671927, 0.028722327202558517, 0.009215080179274082, 0.006056953687220812, 0.006116792093962431, 0.018190806731581688, 0.002280499553307891, -0.0013987175188958645, -0.00863664411008358, 0.03013184852898121, 0.03709967061877251, 0.018603025004267693, -0.0041255103424191475, 0.0018549836240708828, -0.009953084401786327, 0.01312450785189867, -0.03132861107587814, 0.02255234494805336, 0.017406262457370758, -0.0004961582599207759, 0.015145708806812763, 0.0041288346983492374, -0.020438063889741898, 0.008550210855901241, 0.0011153172235935926, -0.004218591842800379, -0.0067118494771420956, 0.045397233217954636, -0.028110647574067116, 0.013722889125347137, 0.016236092895269394, 0.010584709234535694, 0.024972468614578247, 0.007798909675329924, 0.01731318049132824, 0.040264446288347244, -0.01276547834277153, -0.003259518649429083, -0.6455076932907104, -0.013284076005220413, -0.012951642274856567, -0.01874929666519165, 0.011781472712755203, 0.006848147604614496, 0.0037997246254235506, 0.012532774358987808, -0.008237723261117935, 0.04736524447798729, 0.013736186549067497, 0.005574923940002918, -0.003060057992115617, -0.024653330445289612, 0.005372139159590006, 0.00023436620540451258, 0.0035105065908282995, -0.03819005563855171, -0.01345029380172491, 0.0004720567667391151, 0.001840024022385478, 0.016701500862836838, -0.01279207319021225, -0.011528822593390942, 0.001936429995112121, 0.024413978680968285, 0.003444019705057144, -0.023709217086434364, 0.012200340628623962, 0.04193991795182228, -0.011774824000895023, -0.01464040856808424, -0.004371511749923229, 0.007479772437363863, 0.03547739237546921, 0.016023335978388786, -0.003882833058014512, 0.0073999883607029915, 0.013476887717843056, 0.04228564724326134, -0.022937970235943794, -0.004816973581910133, -0.0023004456888884306, 0.02099655382335186, 0.013058020733296871, -0.003803048748522997, 0.012266826815903187, -0.006625416222959757, -0.01885567605495453, -0.021581636741757393, 0.0012715613702312112, 0.00563143752515316, 0.010770872235298157, 0.002504892647266388, -0.0028389892540872097, 0.004062347579747438, 0.02188747748732567, -0.026794208213686943, -0.00715398695319891, -0.029147842898964882, -0.004793703090399504, 0.010285518132150173, 0.017552534118294716, -0.003849589731544256, -0.023576242849230766, 0.02549106441438198, -0.0071672843769192696, -0.006671957205981016, -0.0026611369103193283, -0.006725146900862455, -0.009939786978065968, 0.011907798238098621, -0.021488556638360023, -0.004620837513357401, 0.01735307276248932, 0.03361576050519943, 0.016382364556193352, -0.017645614221692085, 0.011435741558670998, 0.006565578281879425, 0.013383806683123112, 0.0028672462794929743, -0.012074015103280544, -0.022366182878613472, 0.023496458306908607, -0.008231074549257755, -0.007572854403406382, 0.006688578985631466, 0.021461961790919304, 0.012147150933742523, 0.016714798286557198, 0.01886897347867489, -0.004750486928969622, -0.020092330873012543, 0.004850217141211033, 0.011003576219081879, -0.010298815555870533, -0.005455247592180967, 0.007772314827889204, -0.032738134264945984, -0.015079221688210964, -0.02096995897591114, 0.01587706431746483, 0.023682622238993645, 0.025956474244594574, 0.010352005250751972, 0.002155836671590805, 0.026448477059602737, 0.0069478778168559074, -0.004062347579747438, -0.03077012300491333, -0.014121810905635357, -0.015916956588625908, 0.0036168855149298906, 0.01789826527237892, -0.013829268515110016, 0.02781810611486435, -0.009314809925854206, 0.014334568753838539, -0.01789826527237892, 0.02263212949037552, -0.0026644612662494183, 0.0028107324615120888, 0.007247068453580141, 0.012599261477589607, 0.002938719466328621, -0.007599449250847101, -0.0005289861583150923, -0.024919278919696808, -0.0018150914693251252, -0.0016214485513046384, 0.012333313934504986, 0.01652863621711731, -0.0005140266148373485, -0.01049162819981575, -0.018549835309386253, 0.01469359826296568, -0.002396851545199752, 0.009328107349574566, -0.00830420944839716, -0.003806373104453087, -0.013629808090627193, 0.0041720508597791195, -0.018403565511107445, 0.000703929690644145, -0.05638086423277855, -0.026741018518805504, -0.011156496591866016, 0.0007567036664113402, 0.005890736356377602, 0.0039027791935950518, -0.01013924740254879, -0.02094336412847042, 0.03989212214946747, -0.002943706000223756, -0.0017685507191345096, -0.0009424513555131853, -0.003332654247060418, -0.005488491151481867, -0.014494136907160282, -0.001291507389396429, 0.01011930126696825, -0.016116416081786156, -0.012433044612407684, 0.0053322468884289265, -0.024892684072256088, -0.02249915711581707, 0.03616885468363762, -0.042365431785583496, -0.05632767453789711, 0.008264318108558655, 0.01642225682735443, 0.004251835402101278, 0.016861069947481155, -0.016369067132472992, 0.030530769377946854, -0.019188109785318375, -0.013323968276381493, -0.00022273100330494344, -0.011828013695776463, -0.004015807062387466, 0.013882458209991455, -0.01044508721679449, -0.00902226846665144, 0.004019130952656269, 0.01735307276248932, 0.01315110269933939, -0.004870163276791573, 0.013237535022199154, -0.008929186500608921, 0.0285627581179142, 0.03215304762125015, -0.014866463840007782, 0.010737629607319832, -0.011415795423090458, 0.011548768728971481, -0.007193879224359989, 0.018177509307861328, 0.00021774449851363897, 0.03757837787270546, 0.03233921155333519, 0.02090347185730934, -0.018376970663666725, -0.02696707285940647, -0.006954526528716087, -0.01944076083600521, 0.020730605348944664, -0.00584419583901763, 0.0017053881892934442, -0.025198522955179214, 0.013869160786271095, -0.011070063337683678, -0.005475193727761507, -0.00580762792378664, 0.006166656967252493, 0.03311046212911606, 0.011495579965412617, 0.025371389463543892, -0.024387383833527565, -0.004996488336473703, 0.02239277772605419, -0.005076272413134575, 0.012712289579212666, -0.003879508702084422, -0.0054452745243906975, 0.02102314680814743, -0.0036767239216715097, 0.0021375527139753103, -0.018443457782268524, -0.027951078489422798, -0.005136110354214907, -0.021249203011393547, 0.021953964605927467, 0.006502415519207716, -0.002376905642449856, 0.019321084022521973, 0.051487430930137634, -0.028908491134643555, 0.03244559094309807, 0.014826571568846703, -0.012000879272818565, 0.008277615532279015, 0.004078969359397888, -0.02840319089591503, 0.012984884902834892, 0.02184758521616459, 0.050636399537324905, -0.00415875343605876, 0.00734679913148284, 0.033482786267995834, 0.003118234220892191, 0.003892806125804782, -0.024427276104688644, 0.0028855300042778254, -0.004946622997522354, -0.008477075956761837, 0.012113907374441624, 0.0045809452421963215, 0.026475070044398308, 0.020584333688020706, 1.1635202099569142e-05, -0.009860002435743809, 0.00859010312706232, 0.03236580640077591, 0.009381297044456005, -0.024400681257247925, -0.016914259642362595, -0.025836797431111336, -0.00216082320548594, -0.01046503335237503, -0.018549835309386253, -0.040211256593465805, -0.01008605770766735, -0.0013330617221072316, 0.014427650719881058, 0.005860817618668079, -0.019095027819275856, 0.025158630684018135, 0.018363673239946365, 0.01196098793298006, -0.02845637872815132, 0.002579690422862768, 0.015424953773617744, 0.011369254440069199, -0.0036434803623706102, -0.028190432116389275, -0.03694010525941849, -0.008337453007698059, -0.016182903200387955, 0.011887852102518082, -0.02622242085635662, 0.016821177676320076, -0.006273035891354084, -0.006106819026172161, -0.004650756251066923, -0.006116792093962431, 0.03236580640077591, -0.008390642702579498, 0.009281566366553307, -0.0011685066856443882, -0.01660841889679432, -0.004999812692403793, -0.017432857304811478, -0.027219723910093307, 0.051487430930137634, -0.009387945756316185, 0.017539236694574356, -0.020677415654063225, 0.005425328388810158, -0.0172599907964468, -0.0037398862186819315, 0.0006557267624884844, -0.013669700361788273, -0.015105816535651684, 0.03438700735569, -0.014760084450244904, 0.014068621210753918, 0.013350563123822212, 0.023656027391552925, 0.0011809730203822255, 0.0015291980234906077, -0.01162190455943346, 0.021555041894316673, -0.008031614124774933, 0.0435887910425663, 0.012366557493805885, -0.012034122832119465, 0.005162705201655626, -0.0328977033495903, 0.00563808623701334, -0.029546763747930527, -0.013556672260165215, 0.02622242085635662, -0.0034739389084279537, 0.010963684879243374, 0.008802860975265503, 0.005864141974598169, 0.009926489554345608, 0.008197830989956856, 0.009959733113646507, 0.0034041276667267084, -0.023070942610502243, 0.011149847880005836, -0.029014868661761284, 0.014334568753838539, 0.006688578985631466, 0.007619394920766354, 0.011462336406111717, -0.010750927031040192, -0.011435741558670998, 0.01960032805800438, -0.015611116774380207, 0.01046503335237503, -0.008270966820418835, -0.017459452152252197, 0.017047233879566193, 0.019294489175081253, 0.006140062119811773, -0.0019048487301915884, 0.040477205067873, 0.027419185265898705, 0.019946061074733734, 0.017605721950531006, -0.01312450785189867, 0.009846705012023449, 0.026767613366246223, 0.006775011774152517, -0.016289282590150833, -0.01160195842385292, 0.00598381832242012, -0.005548329092562199, 0.042338836938142776, -0.02034498192369938, -0.017672209069132805, 0.007818855345249176, -0.009268269874155521, -0.03632842376828194, -0.017858373001217842, -0.032684944570064545, -0.0013222575653344393, 0.0004778743605129421, -0.02936060167849064, -0.014560624025762081, -0.023868786171078682, -0.008337453007698059, -0.026634639129042625, 0.0028838678263127804, -0.002588001312687993, -0.012718938291072845, -0.02029179222881794, -0.006412658374756575, 0.00581760099157691, -0.011442390270531178, 0.02638198994100094, -0.005392084829509258, -0.050636399537324905, -0.04284413903951645, -0.009387945756316185, -0.005594870075583458, -0.0011776486644521356, -0.00980681274086237, -0.009068808518350124, 0.019347678869962692, 0.008497022092342377, -0.029865901917219162, -0.04723227024078369, -0.006233144085854292, -0.032711539417505264, 0.007506367284804583, -0.005757762584835291, -0.02263212949037552, 0.0003904025652445853, -0.03755178302526474, 0.021555041894316673, -0.01196098793298006, 0.008530265651643276, -0.0255841463804245, -0.01017913967370987, -0.015637710690498352, 0.018323780968785286, 0.0026295555289834738, 0.01789826527237892, 0.015291979536414146, -0.012978237122297287, -0.004421376623213291, -0.01009935513138771, -0.02553095668554306, -0.026794208213686943, 0.010544816963374615, -0.006389387883245945, 0.01315110269933939, 0.007247068453580141, -0.008729726076126099, -0.015983443707227707, 0.02323051169514656, -0.02771172672510147, 0.01663501374423504, 0.031807318329811096, 0.012260178104043007, 0.003872859990224242, -0.0046906485222280025, 0.025703823193907738, 0.032711539417505264, -0.034280627965927124, 0.0015508062206208706, -0.0452110692858696, 0.027339400723576546, 0.016940854489803314, -0.008922537788748741, 0.020717307925224304, 0.019108325242996216, -0.019015245139598846, -0.025171928107738495, -0.0032844513189047575, -0.0019946061074733734, 0.01646214909851551, 0.0042884028516709805, -0.006525686010718346, -0.003374208463355899, 0.001355501008220017, -0.00833080429583788, 0.005046353209763765, -0.03880173712968826, 0.010830710642039776, 0.011109955608844757, 0.0006174967857077718, -0.015012734569609165, 0.015145708806812763, -0.009328107349574566, -0.028137242421507835, -0.007745719980448484, -0.003212977899238467, 0.0011892839102074504, 0.01952054537832737, 0.0003972590493503958, 0.003543750150129199, -0.01945405825972557, -0.0022273100912570953, 0.02319061942398548, -0.01952054537832737, -0.02562403865158558, 0.008430534973740578, 0.02779151126742363, 0.006213197950273752, 0.012007527984678745, -0.0019979304634034634, 0.01954713836312294, -0.0012266826815903187, -0.005043028853833675, 0.013569969683885574, -0.008875996805727482, -0.01125622633844614, -0.019374273717403412, -0.01273888349533081, 0.01648874394595623, 0.0009499311563558877, -0.009753623977303505, -0.00734015041962266, 0.009175187908113003, 0.02103644423186779, 0.008457129821181297, 0.020557738840579987, -0.02331029623746872, -0.022352885454893112, -0.018283888697624207, 0.003560371696949005, 0.01724669337272644, 0.015398358926177025, 0.001924794865772128, -0.014573921449482441, 0.019374273717403412, -0.01733977533876896, 0.00281571876257658, 0.019813086837530136, 0.01799134723842144, -0.008231074549257755, 0.001294831745326519, 0.021355582401156425, 0.0066054705530405045, -0.022844888269901276, 0.0015200560446828604, -0.031142449006438255, 0.012698992155492306, 0.005877438932657242, 0.0028439757879823446, 0.009374648332595825, -0.01788496784865856, 0.0036135613918304443, -0.01430797390639782, 0.02172790840268135, -0.0005235840799286962, -0.019746599718928337, 0.03002546913921833, -0.0029536790680140257, -0.016900962218642235, -0.01642225682735443, -0.0008593427482992411, 0.005880763288587332, -0.01166844554245472, 0.0013513455633074045, 0.021275797858834267, 0.012320016510784626, -0.03683372586965561, -0.03175412863492966, -0.0030401120893657207, -0.01277212705463171, 0.046168480068445206, -0.01808442734181881, 0.0449451245367527, 0.028190432116389275, 0.013370509259402752, -0.006246441043913364, -0.0012507842620834708, 0.00982675887644291, 0.0014768395340070128, 0.018443457782268524, 0.0025231766048818827, -0.016940854489803314, 0.0036168855149298906, 0.00365012907423079, 0.012333313934504986, -0.027897890657186508, -0.04412068426609039, 0.006725146900862455, -0.010624601505696774, -0.01869610697031021, -0.027977673336863518, 0.012260178104043007, -0.02483949437737465, 0.02624901570379734, -0.0056247892789542675, 0.006229819729924202, -0.031860508024692535, -0.00431832205504179, 0.010511573404073715, 0.01578398235142231, 0.0018865648889914155, 0.021368879824876785, 0.020571036264300346, -0.003995860926806927, -0.01587706431746483, 0.00103968835901469, -0.013609861955046654, 0.03084990754723549, -0.002250580582767725, 0.01954713836312294, -0.034972093999385834, -0.0019946061074733734, 0.02699366770684719, 0.011136550456285477, -0.002601298736408353, 0.0009698771755211055, 0.02787129580974579, 0.027233021333813667, -0.011921095661818981, -0.0014037040527909994, 0.008762969635426998, 0.01585046947002411, 0.01017913967370987, -0.004191996995359659, -0.012306719087064266, -0.029812712222337723, -4.9319751269649714e-05, 0.007014364469796419, 0.023762406781315804, 0.028722327202558517, 0.01546484511345625, -0.004846892785280943, -0.0051460834220051765, -0.007652638480067253, 0.015172303654253483, -0.004717243369668722, 0.006153359543532133, -0.012452990747988224, -0.0285627581179142, -0.017592424526810646, -0.009434486739337444, 0.019693410024046898, 0.006342847365885973, -0.011502227745950222, 0.02410813793540001, 0.04869498312473297, -0.01876259408891201, -0.0032079913653433323, -0.026049554347991943, 0.0037332377396523952, -0.010039516724646091, 0.008064856752753258, -0.004092266783118248, 0.0036168855149298906, 0.04303029924631119, -0.01885567605495453, -0.002592987846583128, -0.0076260436326265335, -0.016169605776667595, 0.014081918634474277, -0.012054068967700005, -0.026142636314034462, 0.008144641295075417, 0.007499718572944403, 0.007439880631864071, 0.002169134095311165, -0.005292354617267847, 0.026421882212162018, -0.0033941545989364386, 0.0053322468884289265, -0.003457317128777504, -0.013523428700864315, 0.01464040856808424, -0.013018128462135792, 0.008736374787986279, -0.009254972450435162, -0.04284413903951645, -0.009461081586778164, -0.0004167895531281829, 0.014720192179083824, -0.006362793501466513, -0.015930254012346268, -0.04566318169236183, -0.01315775141119957, -0.005272408481687307, 0.010996928438544273, 0.007645989768207073, 0.004647431895136833, 0.001948065240867436, 0.04199310764670372, 0.021927369758486748, 0.013516779989004135, -0.00584419583901763, -0.021980559453368187, 0.005222543608397245, -0.009042213670909405, -0.02543787658214569, -0.012020825408399105, -0.007858747616410255, 0.052950140088796616, 0.010298815555870533, -0.01727328822016716, -0.021501854062080383, 0.004444647114723921, -0.02989249676465988, 0.0028755569364875555, -0.00583089841529727, 0.013749483972787857, 0.032684944570064545, 0.025331497192382812, -0.006635389290750027, 0.03888152167201042, -0.01050492562353611, 0.02624901570379734, -0.022007152438163757, 0.0002233543200418353, 0.007526313420385122, 0.014786679297685623, -0.01429467648267746, -0.0035869665443897247, 0.004793703090399504, -0.00583422277122736, 0.010631250217556953, -0.01882908120751381, 0.0004014144651591778, 0.026741018518805504, 0.003876184346154332, -0.017459452152252197, -0.03279132395982742, 0.007619394920766354, 0.004863514564931393, -0.005601518787443638, -0.003111585509032011, -0.008184533566236496, -0.0035071822348982096, -0.0009756947983987629, -0.0060802241787314415, -0.00598714267835021, 0.005481842439621687, 0.0005929797771386802, -0.014121810905635357, -0.014494136907160282, -0.012552720494568348, -0.02698037028312683, 0.018310483545064926, -0.015105816535651684, 0.03513165935873985, -0.0046939728781580925, -0.005322273820638657, 0.020039141178131104, -0.01313115656375885, -0.0044014304876327515, -0.012286772951483727, -0.01046503335237503, -0.024480463936924934, -0.003766481066122651, 0.020584333688020706, 0.004428025335073471, -0.01127617247402668, -0.02327040396630764, 0.028217026963829994, -0.02481289952993393, -0.0011527161113917828, -0.019706707447767258, 0.0007961802184581757, -0.024507058784365654, 0.03834962472319603, 0.006206549238413572, -0.005249138455837965, 0.015651008114218712, -0.01045173592865467, -0.00564473494887352, 0.01870940439403057, -0.01660841889679432, -0.022007152438163757, -0.004969893489032984, 0.04491852968931198, 0.006731795612722635, 0.013297373428940773, -0.003557047341018915, -0.00022002997866366059, 0.021235905587673187, -0.01314445398747921, 0.005249138455837965, 0.17392964661121368, -0.01589036174118519, 0.011528822593390942, 0.01957373321056366, 0.0027675158344209194, 0.013330616988241673, 0.012978237122297287, -0.013776078820228577, -0.006106819026172161, 0.014334568753838539, -0.03321683779358864, 0.012552720494568348, -0.006628740578889847, 0.007047608029097319, 0.015052626840770245, 0.009035564959049225, 0.0009175188024528325, -0.03760497272014618, -0.03151477500796318, -0.004205294419080019, -0.014813274145126343, -0.003447344060987234, -0.021541744470596313, -0.008131343871355057, 0.0226055346429348, 0.00283234054222703, -0.0007093317690305412, -0.002697704592719674, 0.033429596573114395, -0.0012823655270040035, -0.01737966760993004, 0.005305652040988207, 0.017525939270853996, 0.0049200281500816345, -0.0033941545989364386, -0.00182672671508044, 0.013815971091389656, 0.022379480302333832, 0.022804995998740196, -0.0011635201517492533, 0.0009665528195910156, -0.01279872190207243, 0.006429280154407024, -0.049173686653375626, 0.01573079265654087, 0.022219911217689514, 0.002388540655374527, -0.019360976293683052, 0.00365012907423079, 0.03475933521986008, -0.007373393513262272, 0.009607352316379547, 0.03305727243423462, 0.022140126675367355, 0.0066486867144703865, -0.0002782059891615063, -0.01789826527237892, 0.009108700789511204, -0.00580430356785655, 0.005578248295933008, -0.007253717165440321, 0.04255159571766853, -0.018656214699149132, 0.015385061502456665, -0.01877589151263237, 0.026022959500551224, -0.026421882212162018, 0.01011930126696825, -0.021395474672317505, -0.009946435689926147, 0.0027542184107005596, 0.0010903846705332398, -0.0020162141881883144, 0.007612746208906174, -0.02261883206665516, -0.016887664794921875, 0.013696295209228992, 0.002041146857663989, 0.013922350481152534, 0.02627561055123806, -0.017858373001217842, -0.01468030083924532, -0.013410401530563831, -0.01281201932579279, -0.03207326680421829, -0.034041278064250946, 0.017831778153777122, -0.008357399143278599, -0.03077012300491333, -0.023802299052476883, -0.00012040356523357332, -0.006921282969415188, -0.011934393085539341, -0.013350563123822212, 0.01347023993730545, -0.001720347674563527, -0.02768513187766075, 0.003139842301607132, -0.020105628296732903, -0.014440948143601418, -0.005860817618668079, 0.02938719652593136, -0.0027575427666306496, 0.040929317474365234, 0.013948945328593254, -0.0004454620066098869, -0.002712664194405079, 0.004969893489032984, -0.0027758267242461443, -0.018908865749835968, -0.007745719980448484, -0.004973217844963074, 0.006588848773390055, -0.01168839167803526, -0.013377157971262932, 0.000295451027341187, -0.013962242752313614, -0.02553095668554306, -0.0008024133858270943, 0.002701028948649764, 0.00902226846665144, -0.013589915819466114, -0.007366744801402092, -4.451503627933562e-05, 0.004953271709382534, -0.008098100312054157, -0.023536350578069687, 0.006635389290750027, -0.0377645418047905, -0.012539423070847988, 0.01311121042817831, -0.04574296623468399, 0.013357211835682392, -0.021475259214639664, -0.01282531674951315, 0.0015200560446828604, -0.01942746341228485, -0.019813086837530136, -0.025690525770187378, 0.0041288346983492374, -0.007499718572944403, 0.018656214699149132, -0.02630220539867878, -0.0052192192524671555, 0.02768513187766075, -0.007047608029097319, 0.0036468047183007, -0.0012599261244758964, 0.002272188663482666, -0.007778963539749384, -0.016940854489803314, -0.0013131157029420137, 0.009208431467413902, -0.03207326680421829, 0.0048036761581897736, -0.014746787026524544, -0.02696707285940647, -0.023456567898392677, 0.008217777125537395, 0.019041838124394417, -0.03983893245458603, 0.025876689702272415, 0.016355769708752632, 0.009367999620735645, -0.012532774358987808, -0.022951267659664154, -0.1674405336380005, 0.011336010880768299, 0.004723892081528902, -0.016954151913523674, 0.029520168900489807, 0.0255176592618227, 0.024467168375849724, 0.01813761703670025, 7.142144022509456e-05, 0.0012241894146427512, -0.01808442734181881, -0.01941416598856449, -0.017858373001217842, -0.009121998213231564, -0.013197643682360649, -0.01736637018620968, 0.0019114974420517683, 0.012958290986716747, 0.04337603226304054, 0.029546763747930527, 0.03840281441807747, -0.013230886310338974, 0.023403378203511238, 0.016861069947481155, 0.006023710127919912, 0.0033559247385710478, -0.0027808132581412792, 0.01731318049132824, -0.012579315342009068, -0.02861594781279564, 0.01045838464051485, 0.02623571828007698, -0.0016796245472505689, 0.0028589353896677494, 0.020597631111741066, 0.019228002056479454, -0.010644547641277313, -0.024400681257247925, -0.018390268087387085, -0.002039484679698944, 0.01965351775288582, 0.024254409596323967, 0.0166483111679554, -0.01315110269933939, -0.029094653204083443, 0.031222233548760414, 0.024613438174128532, -0.007586151827126741, 0.005096218548715115, 0.009547513909637928, 0.03071693331003189, -0.01426808163523674, -0.0031614506151527166, -0.0003573669237084687, 0.031833913177251816, -0.004594242665916681, -0.016874367371201515, 0.012871857732534409, -0.022725211456418037, 0.0209832563996315, 0.005681302864104509, -0.03680713102221489, -0.01546484511345625, 0.02938719652593136, 0.006632064934819937, -0.016209498047828674, -0.019879573956131935, 0.004404754843562841, -0.03225942701101303, -0.0048070005141198635, -0.009846705012023449, -0.031195638701319695, 0.0048768119886517525, -0.0012416422832757235, -0.016728095710277557, 0.012918398715555668, 0.0012050744844600558, 0.015198898501694202, -0.012725587002933025, -0.009753623977303505, 0.017805183306336403, -0.008277615532279015, 0.012419747188687325, -0.004983190912753344, 0.011136550456285477, -0.0008456298382952809, -0.0021824315190315247, 0.00977356918156147, -0.007273663301020861, -0.03284451365470886, 0.023110834881663322, -0.016023335978388786, -0.011090009473264217, 0.008490373380482197, 0.02928081713616848, 0.007021013181656599, -0.004112212918698788, 0.009181836619973183, -0.012286772951483727, -0.020039141178131104, 0.037232644855976105, -0.00830420944839716, -0.019015245139598846, -0.01815091446042061, 0.024573545902967453, 0.006615443155169487, -0.022379480302333832, 0.00901561975479126, 0.03462636098265648, 0.018523242324590683, -0.03954638913273811, 0.010066111572086811, 0.006169981323182583, 0.023403378203511238, 0.002386878477409482, 0.032684944570064545, -0.003989212214946747, -0.026608044281601906, 0.007872045040130615, 0.02102314680814743, 0.030264822766184807, -0.01651533879339695, -0.012639153748750687, 0.007991721853613853, 0.01462711114436388, -0.0078055583871901035, -0.12903770804405212, -0.03249878063797951, 1.612826054042671e-05, 0.01008605770766735, -0.01466700341552496, 0.02944038435816765, -0.004683999810367823, 0.02864254266023636, 0.010046165436506271, 0.021262500435113907, 0.004112212918698788, 0.012260178104043007, -0.005518409889191389, -0.018470052629709244, -0.013829268515110016, 0.0026112718041986227, -0.014760084450244904, -0.0004620837280526757, -0.024281004443764687, 0.029679737985134125, -0.001563272438943386, -0.010897197760641575, 0.003264505183324218, 0.018230699002742767, -0.012333313934504986, 0.006678605917841196, -0.0293074119836092, -0.0017901589162647724, 0.008024965412914753, 0.003763156710192561, -0.009992976672947407, -0.01651533879339695, 0.002129242056980729, -0.01168174296617508, 0.00901561975479126, 0.0040091583505272865, -0.024892684072256088, -0.00734679913148284, 0.030610553920269012, 0.003550398861989379, 0.023855488747358322, 0.0046906485222280025, 0.012891803868114948, -0.02183428779244423, 0.023137429729104042, 0.007951829582452774, -0.03507847338914871, 0.012080663815140724, -0.011828013695776463, -0.012878506444394588, -0.05547664314508438, -0.014773381873965263, -0.03606247901916504, -0.009926489554345608, 0.014055323787033558, -0.011881203390657902, 0.004378160461783409, 0.02018541283905506, -0.001684610964730382, 0.010199085809290409, -0.012087312527000904, 0.0005659694434143603, -0.017007341608405113, 0.017712101340293884, 0.012366557493805885, 0.010564763098955154, -0.01872270181775093, -0.030530769377946854, 0.03622204437851906, -0.009886597283184528, -0.020783795043826103, 0.028669137507677078, -0.010870602913200855, 0.010903846472501755, -0.009574108757078648, 0.01808442734181881, -0.0005260773468762636, 0.013556672260165215, 0.016834475100040436, -0.01050492562353611, -0.016063228249549866, -0.012532774358987808, -0.003226275322958827, -0.021395474672317505, 0.002356959506869316, 0.03576993569731712, 0.008816158398985863, 0.001843348378315568, 0.0119476905092597, -0.020464658737182617, 0.006312928162515163, 0.019081730395555496, 0.011382551863789558, -0.009713731706142426, 0.026647936552762985, -0.011149847880005836, 0.012093961238861084, -0.0075130159966647625, 0.005322273820638657, 0.011774824000895023, -0.0239618681371212, -0.005451923236250877, -0.030610553920269012, 0.00447789067402482, -0.029466979205608368, -0.04276435449719429, 0.004733865149319172, -0.007719125598669052, -0.0014793328009545803, -4.0853065002011135e-05, -0.005076272413134575, -0.002790786325931549, -0.04068996384739876, 0.01128946989774704, -0.007386690936982632, -0.01876259408891201, -0.023669324815273285, 0.006146710831671953, -0.010066111572086811, -0.0028755569364875555, 0.011149847880005836, 0.0052624354138970375, 0.0010953712044283748, -0.026554854586720467, 0.014201595447957516, 0.008703131228685379, -0.011482282541692257, 0.011741581372916698, -0.01872270181775093, 0.0316743440926075, 0.002393527189269662, -0.0388549268245697, 0.007665935903787613, -0.001234162482433021, 0.0007591969333589077, 0.016236092895269394, -0.01941416598856449, 0.02771172672510147, 0.0034805876202881336, 0.0013305684551596642, 0.025889987125992775, 0.05124807730317116, -0.03366895020008087, -0.007380042225122452, -0.0005854999762959778, -0.0165818240493536, 0.007911937311291695, -0.013882458209991455, -0.009108700789511204, 0.014135108329355717, 0.016369067132472992, 0.00023872940801084042, 0.02255234494805336, 0.02093006670475006, -0.01049162819981575, -0.022698616608977318, -0.0018516592681407928, -0.024653330445289612, -0.002996895695105195, -0.011741581372916698, -0.002287148265168071, -0.006253089755773544, 0.03523803874850273, -0.023110834881663322, 0.016049930825829506, -0.03499868884682655, 0.008869348093867302, -0.03135520592331886, -0.009574108757078648, -0.009946435689926147, -0.010338707827031612, 0.004248511046171188, -0.01466700341552496, -0.02700696513056755, 0.01311121042817831, 0.013895755633711815, 0.03396149352192879, -0.007486421149224043, -0.023882083594799042, 0.005159380845725536, -0.020438063889741898, 0.025065548717975616, 0.027312805876135826, 0.005960547830909491, -0.011109955608844757, 0.018376970663666725, 0.04973217844963074, 0.00712074339389801, 0.002388540655374527, -0.017073826864361763, 0.005119489040225744, 0.017565829679369926, 0.01570419780910015, 0.002579690422862768, -0.019174812361598015, 0.013357211835682392, 0.006046980619430542, 0.004906730726361275, 0.0027691780123859644, 0.00366675085388124, 0.003342627314850688, -0.002667785622179508, 0.025730418041348457, -0.013337265700101852, -0.012093961238861084, -0.01660841889679432, -0.03888152167201042, 0.02035827934741974, -0.016994044184684753, -0.021328987553715706, -0.014573921449482441, 0.023031050339341164, -0.0017984698060899973, 0.010431789793074131, 0.04795033112168312, -0.001613968750461936, -0.03622204437851906, -0.005820925347507, -0.009281566366553307, -0.0119809340685606, -0.02035827934741974, 0.015611116774380207, -0.0006573888822458684, 0.01546484511345625, 0.06834849715232849, -0.00978686660528183, 0.019228002056479454, -0.006116792093962431, 0.002483284566551447, -0.007080851588398218, -0.009361350908875465, -0.018935460597276688, -0.002376905642449856, -0.021900774911046028, -0.03005206398665905, 0.008782914839684963, -0.003463965840637684, -0.020797092467546463, -0.004411403555423021, 0.007393339648842812, 0.007067554164677858, 0.07271003723144531, 0.005545004736632109, 0.006243117153644562, 0.005408706609159708, 8.165418694261461e-05, 0.014853166416287422, 0.018350375816226006, -0.010923792608082294, 0.013350563123822212, -0.034280627965927124, 0.03914746642112732, -0.00732020428404212, 0.005372139159590006, -0.057444654405117035, -0.019799789413809776, -0.0019995926413685083, -0.017712101340293884, 0.023842191323637962, -0.029041463509202003, 0.01735307276248932, 0.02329699881374836, 0.014547326602041721, 0.006209873594343662, 0.0012748857261613011, -0.04560999199748039, -0.0034706145524978638, 0.02244596742093563, 0.011136550456285477, -0.016049930825829506, -0.01723339594900608, 0.005109515972435474, 0.0029703008476644754, -0.03132861107587814, -0.023124132305383682, 0.013051372021436691, 0.02022530511021614, -0.02466662786900997, -0.001342203700914979, 0.002704353304579854, -0.003889481769874692, 0.030982879921793938, 0.006907985545694828, -0.027206426486372948, -0.05175337940454483, -0.00868983380496502, -0.00864994153380394, -0.005282381549477577, 0.0066021461971104145, -0.04438663274049759], "26da9a8c-b014-4fbf-b7f5-47bf05613a9e": [0.007043885998427868, 0.01271603163331747, 0.009814800694584846, -0.016803817823529243, -0.019423840567469597, 0.006728385575115681, -0.019355254247784615, 0.000542694702744484, -0.020068559795618057, -0.034842200577259064, 0.008470496162772179, 0.02467760629951954, -0.031440284103155136, 0.01544579491019249, 0.004821666982024908, -0.007832636125385761, 0.003539089811965823, -0.01139916107058525, 0.012002727016806602, 0.0013957456685602665, -0.002942382823675871, 0.0015020555583760142, -0.009711920283734798, -0.019245514646172523, -0.02272973582148552, 0.018545927479863167, 0.007976668886840343, -0.020548667758703232, 0.002170778810977936, -0.02307266928255558, 0.023470474407076836, -0.009026050567626953, -0.01906718872487545, -0.0006001363508403301, -0.026172803714871407, -0.001959873829036951, -0.020644690841436386, 0.00047582239494659007, 0.008353897370398045, -0.0034104890655726194, 0.02886141464114189, 0.010589834302663803, 0.007654310204088688, -0.002537719439715147, 0.011035650037229061, 0.011844976805150509, 0.02772286906838417, -0.02067212574183941, 0.0010991068556904793, 0.014156359247863293, 0.035061679780483246, 0.03492450714111328, -0.023333299905061722, -0.016831252723932266, -0.011241410858929157, -0.003665975760668516, 0.005874477326869965, 0.010857324115931988, 0.0045953295193612576, -0.01391630433499813, 0.00472907442599535, -0.004931406117975712, -0.008209865540266037, -0.02718789130449295, -0.01292865164577961, -0.00011016788630513474, 0.0025702982675284147, 0.037969768047332764, -0.008038397878408432, 0.006526053883135319, -0.00814127828925848, 0.01344305370002985, -0.004447867628186941, 0.014430707320570946, 0.041207075119018555, -0.007921800017356873, -0.01563783921301365, 0.0033298993948847055, -0.0015929333167150617, 0.0032664563041180372, -0.002866937080398202, -0.006738673895597458, -0.017133034765720367, -0.0004813950799871236, 0.011261987499892712, -0.0075582885183393955, 0.00339334225282073, 0.022523974999785423, -0.020301755517721176, -0.021385429427027702, 0.014650185592472553, -0.006556918378919363, 0.004221530631184578, 0.025294888764619827, 0.01685868762433529, 0.012626868672668934, -0.00568243395537138, 0.015089142136275768, -0.012997237965464592, -0.01814812235534191, -0.002698898781090975, 0.012613151222467422, -0.019807929173111916, -0.007784625515341759, -0.010274333879351616, 0.005010281223803759, 0.013456771150231361, -0.001210560672916472, 0.012119324877858162, -0.009067202918231487, -0.01746225357055664, 0.03914946690201759, 0.003328184597194195, -0.00827845185995102, 0.02192040905356407, 0.002794920699670911, 0.015459512360394001, -0.012729749083518982, -0.02624139003455639, -0.006783255375921726, 0.008264734409749508, 0.004855960141867399, -0.004708498250693083, -0.001961588393896818, 0.016447164118289948, -0.017668014392256737, 0.006944434717297554, -0.017599426209926605, -0.017256490886211395, -0.014773641712963581, 0.022098734974861145, 0.0037619974464178085, 0.0017798328772187233, 0.008545941673219204, -0.009780507534742355, 0.017174188047647476, -0.03703698515892029, 0.02307266928255558, -0.017338795587420464, -0.020754428580403328, 0.016872404143214226, 0.003991764038801193, -0.014938251115381718, 0.005226330365985632, 0.013703684322535992, -0.0028806545305997133, 0.02684495598077774, 0.009293539449572563, -0.00896432250738144, 0.007647451478987932, -1.1051617548218928e-05, -0.0024091186933219433, 0.00899861566722393, 0.01485594641417265, 0.0005384080577641726, 0.005277770571410656, -0.02913576178252697, 0.014924533665180206, 0.029355240985751152, 0.003998622763901949, 0.023443039506673813, 0.03648829087615013, -0.011769531294703484, 0.01148146577179432, 0.01803838275372982, 0.0375308133661747, 0.0359121598303318, 0.007572005968540907, -0.001724105910398066, -0.002114194678142667, -0.017338795587420464, 0.019355254247784615, -0.019039753824472427, 0.012551423162221909, 0.02348419278860092, 0.020425211638212204, 0.014087771996855736, -0.00863510463386774, -0.018628232181072235, -0.006358015816658735, 0.010534964501857758, 0.00789436511695385, 0.01365567371249199, 0.033086374402046204, -0.021344278007745743, 0.007085038349032402, 0.022894343361258507, 0.017914926633238792, 0.0012379955733194947, 0.010267475619912148, 0.004341557621955872, 0.02082301676273346, -0.008676256984472275, 0.005366933532059193, -0.6421939134597778, -0.020315472036600113, -0.009355268441140652, -0.008923170156776905, 0.000724021636415273, 0.001298866467550397, 0.000459961622254923, 0.022290777415037155, -0.023237278684973717, 0.03508911281824112, 0.021371712908148766, -0.00684498343616724, 0.01365567371249199, -0.021179668605327606, 0.0017446820857003331, -0.023333299905061722, 0.007229070644825697, -0.015624120831489563, -0.01689983904361725, 0.03069954551756382, 0.0010999641381204128, 0.019917666912078857, -0.02142658270895481, 0.008779137395322323, 0.0027846326120197773, 0.018244145438075066, -0.00371741596609354, 0.011378585360944271, 0.0073045166209340096, 0.029355240985751152, -0.018779123201966286, -0.02532232366502285, 0.0005448380834423006, 0.02574756368994713, 0.04595329612493515, -0.002947526751086116, 0.0024742763489484787, -0.010480094701051712, 0.00901919137686491, 0.03714672476053238, -0.0412619449198246, -0.023785974830389023, 0.020123429596424103, 0.00985595304518938, 0.016570622101426125, -0.009348409250378609, -0.016529468819499016, 0.012379955500364304, -0.011378585360944271, -0.001954729901626706, -0.009506159462034702, 0.003919747658073902, 0.0005911343032494187, -0.015802446752786636, 0.02135799452662468, -0.006519195158034563, 0.029300371184945107, -0.010246898978948593, 0.004814808256924152, -0.020178297534585, 0.004146084655076265, 0.0030812714248895645, -0.01353907585144043, -0.008436202071607113, -0.00840876717120409, 0.012558281421661377, -0.0035836712922900915, 0.009314116090536118, 0.009142648428678513, 0.0024999964516609907, 0.013449912890791893, 0.026104215532541275, -0.02574756368994713, -0.02448556199669838, 0.006745532620698214, 0.03198898211121559, 0.0318792425096035, -0.019821645691990852, 0.004293547011911869, 0.008079550229012966, -0.00980108417570591, -0.0107955951243639, -0.030370328575372696, -0.018202992156147957, 0.016351142898201942, -0.0028343582525849342, -0.01077501941472292, 0.018010949715971947, -0.0010253757936879992, 0.01080931257456541, -0.0009782222332432866, 0.021138517186045647, -0.0006678660283796489, -0.03322354704141617, -0.009074061177670956, 0.02071327716112137, 0.01378598902374506, -0.014554163441061974, -0.024156345054507256, -0.01604936085641384, -0.003247594926506281, -0.0031910105608403683, 0.014499293640255928, 0.022976648062467575, 0.009862812235951424, 0.01788749173283577, 0.0005611274973489344, 0.02650202065706253, 0.031220806762576103, -0.01998625509440899, -0.019958820194005966, -0.01857336238026619, -0.015226316638290882, -0.008299028500914574, 0.01174209639430046, -0.019766775891184807, 0.012791477143764496, 0.007167342584580183, 0.0031618610955774784, -0.003796291071921587, 0.024842215701937675, 0.0297118928283453, -0.016296273097395897, 0.012530846521258354, 0.023813409730792046, 0.0018072676612064242, 0.0018930014921352267, -0.00498627545312047, -0.04046633467078209, -0.010404649190604687, 0.0047153569757938385, 0.021783234551548958, 0.013703684322535992, -0.008374474011361599, -0.021632343530654907, -0.021289408206939697, 0.010630986653268337, -0.015569251030683517, 0.0112482700496912, -0.010521247051656246, -0.023552779108285904, -0.011947857216000557, 0.007990386337041855, -0.010363496840000153, -0.006395738571882248, -0.031248241662979126, -0.0353085920214653, -0.011337433010339737, -0.0005311206332407892, 0.016076795756816864, 0.0094581488519907, 0.0017309646354988217, -0.0100891487672925, 0.023237278684973717, 0.005356645677238703, -0.01244854275137186, 0.015061707235872746, -0.01330588012933731, -0.0013331599766388535, -0.00923181138932705, -0.015720142051577568, 0.02844989113509655, -0.009958833456039429, -0.007770908065140247, 0.0053052050061523914, -0.0037277040537446737, -0.02067212574183941, 0.025720128789544106, -0.029849067330360413, -0.041700903326272964, 0.018902579322457314, -0.005394368432462215, -0.0041563729755580425, 0.013662531971931458, -0.022825757041573524, 0.034266069531440735, -0.02386827953159809, 0.017091883346438408, 0.005562406498938799, -0.029602153226733208, -0.0062482766807079315, -0.006680374965071678, 0.006412885617464781, -0.01945127546787262, 0.012764042243361473, 0.030781850218772888, 0.02489708550274372, 0.006169401574879885, 0.010630986653268337, -0.01067899726331234, 0.02932780608534813, 0.018052101135253906, -0.022565126419067383, -0.003016113769263029, -0.00377571489661932, 0.06139909103512764, -0.0007278796401806176, 0.007057603448629379, 0.010260616429150105, 0.03344302624464035, 0.025336042046546936, 0.009828518144786358, -0.0010785306803882122, -0.019437558948993683, -0.000881343090441078, -0.046584296971559525, 0.005188607145100832, 0.0014557592803612351, 0.01632370799779892, 0.003365907585248351, 0.017146753147244453, -0.01475992426276207, -0.04696838557720184, -0.007743473630398512, 0.012523988261818886, 0.028422456234693527, -0.0073045166209340096, 0.011200258508324623, 0.006039086263626814, -0.0024845644365996122, 0.009684485383331776, 0.004711927380412817, 0.016035642474889755, 0.014211228117346764, 0.006021939683705568, 0.011700944043695927, 0.012297650799155235, -0.006189977750182152, -0.04016455262899399, -0.042194727808237076, 0.014499293640255928, -0.021796951070427895, 0.030095979571342468, -0.0025017112493515015, 0.013662531971931458, 0.01363509800285101, 0.03780515864491463, -0.013600803911685944, 0.03089158982038498, 0.004602188244462013, -0.04965699464082718, 0.00980108417570591, 0.01043208409100771, -0.039533551782369614, -0.0129629448056221, -0.005730444565415382, 0.03286689519882202, 0.02600819431245327, -0.010212605819106102, 0.028614500537514687, 0.00030028249602764845, -0.0009473580867052078, -0.012743466533720493, 0.0054458086378872395, 0.0027983500622212887, 0.0012722890824079514, 0.007997245527803898, 0.006762679200619459, 0.0055864118039608, 0.01378598902374506, -0.0006524339551106095, 0.006735244300216436, 0.021838104352355003, 0.011412878520786762, 0.008854582905769348, 0.014252380467951298, -0.01917692832648754, -0.039341509342193604, -0.01696842536330223, -0.007626875303685665, -0.03160489350557327, -0.02543206326663494, -0.01613166555762291, 0.019135775044560432, 0.024650171399116516, -0.004660487174987793, -0.0010536679765209556, 0.008347039110958576, 0.020795581862330437, -0.006687233690172434, -0.018299013376235962, -0.023703670129179955, 0.00861452892422676, 0.02165977843105793, 0.00022612279281020164, -0.003239021636545658, -0.015651555731892586, 0.011838117614388466, -0.011241410858929157, 2.5505794837954454e-05, -0.015733860433101654, 0.0004706783511210233, 0.0022530832793563604, -0.0005384080577641726, 0.00557612394914031, -0.014485576190054417, 0.02727019600570202, -0.0016803817125037313, 0.004255823791027069, 0.019972536712884903, -0.003590530017390847, 0.01861451379954815, -0.01617281697690487, -0.009286681190133095, 0.06902596354484558, 0.0015337769873440266, -0.002644029213115573, 0.0036008181050419807, 0.006570635363459587, -0.014074054546654224, 0.008353897370398045, -0.021755799651145935, -0.038436159491539, -0.01803838275372982, 0.03423863649368286, -0.02170092985033989, 0.016735229641199112, -0.002259942004457116, 0.033772245049476624, 0.012174194678664207, -0.018408752977848053, -0.010685856454074383, -0.005925917532294989, 0.016995860263705254, 0.04504794999957085, 0.02399173565208912, -0.014320967718958855, -0.0030847007874399424, -0.01128942146897316, 0.0045747533440589905, -0.01853221096098423, -0.005836754571646452, 0.022249625995755196, -0.006954723037779331, 0.011179682798683643, 0.02787376008927822, 0.010692714713513851, -0.019396405667066574, 0.006255135405808687, 0.01662549190223217, -0.005857330746948719, -0.005541830323636532, 0.012475976720452309, -0.020205732434988022, 0.013251010328531265, 0.006327151786535978, 0.024458127096295357, 0.01598077267408371, -0.01716046966612339, -0.009471866302192211, 0.011227693408727646, 0.006193406879901886, -0.004708498250693083, -0.015665272250771523, -0.015610403381288052, 0.01792864501476288, 0.028971152380108833, 0.01056239940226078, -0.0021467735059559345, 0.03385454788804054, 0.005699580535292625, 0.015089142136275768, 0.017668014392256737, -0.013100119307637215, 0.01136486791074276, 0.006992445793002844, 0.019135775044560432, -0.011063084937632084, -0.027736587449908257, -0.00332304066978395, -0.008312745951116085, 0.02455415017902851, -0.005469813942909241, -0.006968440022319555, 0.01662549190223217, -0.02150888554751873, -0.0160905122756958, -0.02707815170288086, 0.008401908911764622, 0.003024687059223652, 0.013285303488373756, -0.015432077459990978, -0.022784605622291565, -0.0290534570813179, -0.013710543513298035, -0.014718771912157536, 0.026186520233750343, 0.0004732503730338067, -0.0012028446653857827, 0.0022565126419067383, 0.013662531971931458, 0.01271603163331747, -0.028696805238723755, 0.0069272881373763084, 0.008443061262369156, -0.03846359625458717, -0.04507538303732872, -0.019080907106399536, 0.011851835064589977, 0.016447164118289948, -0.006392309442162514, -0.012146759778261185, -0.0020987624302506447, 0.005442379042506218, -0.02886141464114189, -0.04765425622463226, -0.001319442642852664, -0.024622736498713493, -0.012798336334526539, -0.0005774169112555683, -0.007846353575587273, 0.02497938834130764, -0.00861452892422676, 0.004005481489002705, 0.0017283926717936993, 0.014087771996855736, -0.0059945047833025455, -0.027667999267578125, -0.011090519838035107, 0.03209872171282768, 0.003895742120221257, -0.0026114503853023052, 0.02459530159831047, -0.014039761386811733, 0.00743483193218708, 0.002515428699553013, -0.00877227820456028, -0.005456096492707729, 0.013984891586005688, 0.0022325071040540934, 0.0066460813395679, 0.009670768864452839, 0.001407748437486589, -0.034266069531440735, 0.020178297534585, -0.02540462836623192, 0.02711930312216282, 0.022181039676070213, 0.035528071224689484, 0.016255121678113937, 0.016296273097395897, 0.007146766409277916, 0.02230449579656124, -0.021152233704924583, 0.004859389737248421, -0.045514341443777084, 0.01724277436733246, 0.017379948869347572, 0.0034070597030222416, 0.040219422429800034, 0.019382689148187637, -0.021906690672039986, -0.01351850014179945, 0.014334685169160366, 0.020685842260718346, 0.015404642559587955, -0.020644690841436386, -0.010466378182172775, -0.016268838196992874, 0.0004290974757168442, -0.022674866020679474, -0.004567895084619522, -0.027201607823371887, -0.005521254148334265, -0.007654310204088688, 0.014609033241868019, -0.005785314366221428, -0.00958846416324377, -0.011694084852933884, -0.032400503754615784, 0.005785314366221428, 0.003425921080633998, 0.02768171764910221, 0.041810642927885056, 0.0011822686064988375, 0.015171446837484837, -0.012167335487902164, -0.0008487642626278102, 0.003475646721199155, -0.015569251030683517, -0.011577486991882324, -0.006676945369690657, 0.03412889689207077, -0.004718786105513573, 0.028395021334290504, 0.004519884008914232, 0.0256241075694561, 0.019821645691990852, -0.02127568982541561, 0.03421119973063469, -0.0011471176985651255, -0.014951968565583229, -0.010534964501857758, 0.0016306561883538961, 0.00628257030621171, 0.01043208409100771, 0.018943732604384422, -0.0024296948686242104, 0.0034276358783245087, 0.03901229053735733, 0.01812068745493889, 0.031824372708797455, -0.019931385293602943, -0.013285303488373756, -0.01355965156108141, 0.015336055308580399, -0.013930021785199642, 0.029492413625121117, -0.02281203866004944, -0.017709165811538696, 0.016447164118289948, -0.01153633464127779, -0.011577486991882324, 0.0009979410097002983, 0.010171453468501568, -0.03080928511917591, 0.013943739235401154, 0.02680380269885063, 0.02504797652363777, -0.018408752977848053, -0.004602188244462013, -0.020315472036600113, 0.020219450816512108, 0.01519888173788786, 0.019039753824472427, 0.02696841210126877, 0.00216392008587718, 0.009046626277267933, -0.014897098764777184, -0.013367608189582825, -0.02482849732041359, -0.01651575230062008, 0.007585723418742418, -0.024622736498713493, -0.022523974999785423, -0.036598026752471924, -0.020754428580403328, -0.005366933532059193, 0.0024039747659116983, 0.016611773520708084, 0.013868293724954128, 0.022057581692934036, -0.027338782325387, -0.024855932220816612, 0.010274333879351616, -0.012030161917209625, 0.028120674192905426, -0.0034036303404718637, 0.030150849372148514, 0.024238649755716324, -0.0041563729755580425, -0.027201607823371887, -0.0004925404791720212, 0.019163209944963455, 0.011323715560138226, 0.035034243017435074, -0.01570642553269863, -0.010514388792216778, -0.0005752735305577517, -0.005233189091086388, 0.010061714798212051, -0.006111102644354105, -0.03668033331632614, 0.00215363223105669, 0.006275711581110954, -0.008017821237444878, -0.024348389357328415, 0.014801076613366604, -0.03805207461118698, 0.013662531971931458, 0.0047462210059165955, 0.0016606629360467196, -0.020960189402103424, -0.006868989206850529, -0.0003052121901419014, 0.004286688286811113, -8.664468623464927e-05, 0.010438943281769753, 0.020836733281612396, 0.0033521901350468397, -0.002266800729557872, 0.0030778420623391867, -0.031934112310409546, 0.0022993795573711395, 0.007976668886840343, 0.0026011622976511717, -0.01268173847347498, 0.020192015916109085, 0.012174194678664207, 0.0028875130228698254, -0.024801062420010567, 0.006323722191154957, -0.0052229007706046104, 0.02604934573173523, -0.023923149332404137, 0.011577486991882324, 0.007318234071135521, -0.012030161917209625, -0.01692727394402027, -0.0025788715574890375, -0.012139900587499142, -0.01283262949436903, -0.014430707320570946, -0.02459530159831047, 0.034375809133052826, 0.015953337773680687, 0.005521254148334265, -0.002189640188589692, -0.0073868208564817905, -0.0010313771199434996, -0.003518513636663556, -0.028587065637111664, 0.018710536882281303, -0.025198867544531822, -0.010514388792216778, -0.013593945652246475, 0.013278445228934288, 0.01792864501476288, 0.004344987217336893, -0.00827845185995102, 0.024074040353298187, 0.04076812043786049, -0.007784625515341759, -0.004118649754673243, -0.018395036458969116, 0.005661857780069113, -0.022565126419067383, 0.015994491055607796, -0.007866930216550827, -0.005133737809956074, 0.006820978131145239, -0.015390925109386444, -0.006495189853012562, -0.027133021503686905, -0.004773655906319618, -7.308803469641134e-05, -0.02264743112027645, -0.02157747372984886, 0.01342247799038887, 0.02425236627459526, 0.015994491055607796, -0.002668034750968218, 0.002390257315710187, 0.03234563395380974, -0.014787359163165092, -0.007565147243440151, -0.0026474585756659508, -0.004567895084619522, 0.01021946407854557, 0.0019735912792384624, -0.011604921892285347, -0.003040119307115674, -0.021289408206939697, -0.015624120831489563, 0.0025823009200394154, 0.0010356638813391328, -0.010137160308659077, -0.003552807029336691, -0.029163196682929993, 0.00024434123770333827, -0.012818912044167519, 0.002266800729557872, -0.00045610361848957837, 0.003724274691194296, 0.004667345900088549, 0.030480068176984787, 0.013401901349425316, 0.01876540668308735, -0.016995860263705254, -0.02364880032837391, 0.005545259919017553, -0.009766790084540844, -0.017914926633238792, 0.0019444416975602508, -0.020534951239824295, 0.04606303572654724, -0.002616594545543194, -0.0024056893307715654, -0.032126154750585556, 0.00020629687060136348, -0.0032081573735922575, -0.02470504119992256, 0.00635115709155798, 0.015267468057572842, 0.022098734974861145, 0.027050716802477837, -0.019629601389169693, 0.047187864780426025, -0.03080928511917591, 0.019849080592393875, -0.03245537355542183, 0.00957474671304226, 0.0064506083726882935, 0.04801090806722641, -0.001192556694149971, 0.00665636919438839, 0.0004029486735817045, -0.03599446266889572, 0.02337445318698883, -0.012002727016806602, 0.019231798127293587, -0.002966388128697872, -0.004074068274348974, -0.019725624471902847, -0.010438943281769753, -0.006827836856245995, -0.016611773520708084, 0.012304509989917278, 0.011755813844501972, -0.010473236441612244, -0.0013991750311106443, -0.01604936085641384, 0.002338817110285163, -0.006203695200383663, -0.011337433010339737, -0.008230441249907017, -0.016145382076501846, 0.004705069120973349, 0.0037894323468208313, -0.0052949171513319016, 0.01827158033847809, -0.01496568601578474, 0.01658433862030506, -0.016844969242811203, 0.012249640189111233, 0.03492450714111328, 0.0019324390450492501, 0.010582976043224335, -0.015226316638290882, 0.01598077267408371, -0.023978019133210182, 0.004451296757906675, 0.01519888173788786, 0.013024672865867615, -0.011838117614388466, 0.007373103406280279, 0.029080891981720924, -0.021097363904118538, -0.004677634220570326, -0.030370328575372696, -0.008038397878408432, -0.026570606976747513, 0.018559643998742104, 0.0052743409760296345, -0.017750319093465805, -0.018161840736865997, -0.015185164287686348, 0.019780494272708893, -0.020068559795618057, -0.015733860433101654, -0.004252394661307335, -0.013052107766270638, -0.0035871006548404694, 0.018052101135253906, -0.005150884389877319, 0.011378585360944271, 0.006700950674712658, 0.02013714611530304, -0.027736587449908257, -0.012229063548147678, 0.1849105805158615, -0.0007707464974373579, 0.015240034088492393, 0.0341014601290226, -0.003621394047513604, 0.013847717083990574, 0.016186533495783806, -0.023401888087391853, -0.007064462173730135, 0.0017901209648698568, -0.009272963739931583, 0.028916282579302788, -0.010534964501857758, 0.0036042474675923586, 0.017914926633238792, 0.011954715475440025, -0.0019084335071966052, -0.050205692648887634, -0.034403245896101, 0.0016169387381523848, 0.004561036359518766, 0.003978046588599682, -0.012174194678664207, -0.031632330268621445, 0.02185182087123394, -0.020836733281612396, -0.0018844280857592821, -0.0014617606066167355, 0.036405984312295914, 0.002313097007572651, -0.022030146792531013, 0.009663909673690796, -0.005171460565179586, 0.007393679581582546, -0.0290534570813179, -0.015116577036678791, 0.015528098680078983, 0.0007686031749472022, 0.039341509342193604, -0.0001931152946781367, 0.022359365597367287, -0.029300371184945107, -0.055089086294174194, -0.020946472883224487, 0.019615884870290756, 0.01559668593108654, -0.022414235398173332, -0.02314125746488571, -0.010514388792216778, 0.027983499690890312, -0.012379955500364304, 0.012551423162221909, 0.003981475718319416, 0.012366238050162792, -0.002112479880452156, -0.013491065241396427, 0.005867618601769209, 0.005342928227037191, 0.012078172527253628, 0.01711931824684143, -0.0010828174417838454, 0.01895744912326336, 0.0035596657544374466, 0.01292865164577961, -0.004581612069159746, 0.006039086263626814, -0.03393685072660446, 0.01452672854065895, -0.00863510463386774, -0.01739366538822651, -0.0014017469948157668, 0.00509258545935154, -0.008717409335076809, 0.004506166558712721, -0.02299036644399166, -0.010898475535213947, 0.01956101506948471, 0.015034272335469723, -0.00838819146156311, 0.032400503754615784, -0.02669406495988369, -0.025802433490753174, -0.005154313985258341, 0.010171453468501568, -0.029108326882123947, -0.03610420227050781, 0.0375308133661747, -0.030919024720788002, -0.024622736498713493, -0.023443039506673813, -0.004883395042270422, -0.00568243395537138, -0.0013588800793513656, -0.005908770952373743, 0.01485594641417265, 0.018545927479863167, -0.010637844912707806, 0.025445781648159027, -0.02005484141409397, -0.01765429601073265, -0.007688603829592466, 0.0406583808362484, 0.028669370338320732, 0.02814810909330845, 0.00852536503225565, 0.013566510751843452, 0.0014377551851794124, -0.004194095730781555, -0.007352527696639299, -0.009451289661228657, -0.021673494949936867, 0.008285311050713062, 0.005620705429464579, -0.01834016665816307, 0.0020250314846634865, 0.004735933151096106, -0.017105599865317345, -0.01769544929265976, 0.013388184830546379, 0.005332639906555414, 0.0027846326120197773, -0.02142658270895481, -0.02661176025867462, -0.0018518492579460144, -0.012908075004816055, -0.0170507300645113, -0.033881984651088715, 0.007990386337041855, -0.02146773412823677, -0.009272963739931583, 0.019917666912078857, -0.03558294102549553, 0.0053052050061523914, -0.014897098764777184, -0.008813430555164814, -0.006155684124678373, -0.006783255375921726, -0.021385429427027702, -0.01773660071194172, 0.0026834667660295963, 0.0027229043189436197, -0.005150884389877319, -0.011330573819577694, -0.020164581015706062, -0.005209183320403099, -0.01391630433499813, 0.014403272420167923, -0.005799031816422939, -0.00688270665705204, -0.021632343530654907, -0.002661176025867462, -0.005510966293513775, -0.0034396385308355093, -0.030672110617160797, 0.025294888764619827, -0.007181060034781694, -0.006001363508403301, -0.009163224138319492, 0.005836754571646452, -0.009876529686152935, -0.041700903326272964, 0.01880655810236931, 0.021755799651145935, -0.0013288733316585422, -0.0227983221411705, -0.015157729387283325, -0.17525352537631989, 0.015363490208983421, -0.0242112148553133, -0.006426603067666292, 0.04282572865486145, 0.013456771150231361, 0.021138517186045647, -0.008347039110958576, 0.01971190609037876, -5.344964301912114e-05, -0.012057596817612648, -0.01294922735542059, -0.007805201690644026, -0.017187904566526413, -0.004204383585602045, 0.003923176787793636, -0.006021939683705568, 0.014705055393278599, 0.03580242022871971, 0.015857316553592682, 0.03780515864491463, -0.016913557425141335, 0.02131684310734272, 0.002433124231174588, -0.01330588012933731, 0.018587078899145126, 0.0016640922985970974, 0.004722215700894594, -0.02281203866004944, -0.04397799074649811, 0.025569237768650055, 0.0004134510818403214, 0.0220438651740551, -0.010898475535213947, 0.03237306699156761, 1.6691292330506258e-05, -0.015308620408177376, -0.022949213162064552, -0.018943732604384422, -0.003943752963095903, 0.019890232011675835, 0.026817521080374718, -0.003443067893385887, -0.01418379321694374, -0.007407397031784058, 0.02086416818201542, 0.008916310966014862, -0.025541802868247032, 0.011344291269779205, -0.01853221096098423, 0.039753030985593796, -0.03207128494977951, 0.003724274691194296, -0.0026114503853023052, 0.02558295428752899, 0.004396427422761917, -0.04079555347561836, 0.019849080592393875, -0.02071327716112137, 0.005370362661778927, -0.017681730911135674, -0.02105621248483658, 0.00031550024868920445, 0.022908061742782593, 0.003472217358648777, -0.008552799932658672, -0.021687213331460953, -0.0007197349332273006, -0.03196154534816742, 0.009135790169239044, 0.0035150842741131783, -0.020617255941033363, 0.0026337411254644394, -0.0074554081074893475, -0.0031292822677642107, 0.005795602221041918, -0.01986279897391796, 0.0025960183702409267, -0.015514381229877472, -0.0143758375197649, -0.005459526088088751, 0.01357336901128292, -0.0035665244795382023, -0.011844976805150509, -0.0021450587082654238, -0.005764738190919161, 0.007585723418742418, 0.025198867544531822, -0.006165971979498863, -0.0434841625392437, 0.01735251396894455, -0.022757170721888542, -0.021097363904118538, -0.0013511640718206763, -0.0035288017243146896, 0.018353883177042007, 0.015528098680078983, -0.005661857780069113, 0.01136486791074276, -0.02521258406341076, 0.01140601933002472, -0.027201607823371887, -0.03733876720070839, 0.007757190614938736, 0.00997255090624094, 0.012002727016806602, -0.03657059371471405, 0.015116577036678791, 0.03646085411310196, 0.019053472205996513, -0.04916317015886307, 0.004125508479773998, 0.0031052769627422094, 0.02943754382431507, 0.012976662255823612, 0.03336072340607643, -0.036323681473731995, -0.021001342684030533, 0.02718789130449295, 0.009293539449572563, 0.03879281133413315, -0.007626875303685665, -0.017475970089435577, 0.018943732604384422, 0.013264727778732777, -0.004142655525356531, -0.12060339748859406, -0.018395036458969116, -0.017517121508717537, 0.008703691884875298, 0.009348409250378609, 0.01639229618012905, -0.016104230657219887, 0.009924540296196938, 0.003624823410063982, 0.03179693967103958, -0.001632370869629085, -0.009499301202595234, -0.002289091469720006, -0.00041838077595457435, -0.02825784869492054, -0.021604908630251884, -0.025143997743725777, -0.012215346097946167, -0.005469813942909241, 0.04167346656322479, 0.011947857216000557, -0.007249646820127964, -0.015240034088492393, 0.009108355268836021, -0.004228389356285334, 0.0033264700323343277, -0.02219475619494915, 0.021152233704924583, 0.0011934139765799046, 0.008573376573622227, 0.004115220624953508, -0.02208501659333706, 0.006896423641592264, -0.0028840836603194475, 0.021454017609357834, -0.0012894357787445188, -0.011810682713985443, -0.017764035612344742, 0.03311380743980408, -0.018641948699951172, 0.014554163441061974, 0.012743466533720493, 0.003772285534068942, -0.0011676938738673925, -0.009252388030290604, -0.005394368432462215, -0.03508911281824112, 0.007647451478987932, -0.0020524663850665092, -0.027667999267578125, -0.04071325063705444, -0.013127553276717663, -0.03333328664302826, 0.012722890824079514, 0.006165971979498863, -0.008703691884875298, 0.013223575428128242, -0.0006194264278747141, 0.005438949912786484, 0.031111067160964012, -0.01617281697690487, -0.010061714798212051, -0.01451301109045744, 0.02227706089615822, -0.00031035623396746814, 0.01209188997745514, -0.030754415318369865, -0.00509258545935154, 0.027023281902074814, -0.02146773412823677, -0.003194439923390746, 0.009176941588521004, -0.030233154073357582, 0.03264741599559784, -0.004910829942673445, 0.01773660071194172, 0.005785314366221428, 0.006097385194152594, -0.002762341871857643, -0.00181412638630718, -0.026776369661092758, -0.028916282579302788, -0.021879255771636963, 0.003974617458879948, 0.03517141938209534, 0.020466363057494164, 0.015418360009789467, 0.006848413031548262, 0.02410147525370121, -0.010020562447607517, 0.01670779474079609, 0.023168692365288734, 0.02105621248483658, 0.0013005811488255858, -0.006954723037779331, -0.01100135687738657, 0.02174208126962185, -0.016844969242811203, -0.006790114101022482, 0.0034190623555332422, -0.04329212009906769, -0.00401234021410346, -0.040411464869976044, 0.004392997827380896, -0.017105599865317345, -0.01475992426276207, -0.00011488324525998905, -0.0020781864877790213, 0.005373792257159948, -0.0005697008455172181, -0.009012333117425442, -0.006385450717061758, -0.03942381218075752, -0.005188607145100832, -0.027023281902074814, 0.005346357356756926, -0.011200258508324623, -0.030068544670939445, 0.001698385807685554, -0.014320967718958855, 0.00709189660847187, 0.008724267594516277, 0.002217075088992715, -0.008004103787243366, -0.0036625463981181383, -0.0011436883360147476, -0.027366217225790024, -0.006752391345798969, -0.01731136068701744, 0.022167321294546127, -0.020384060218930244, -0.03481476753950119, -0.0012911504600197077, -0.007956093177199364, -0.007359385956078768, 0.013696826063096523, -0.011584346182644367, 0.02444441057741642, -0.0038408725522458553, 0.028998587280511856, 0.018737971782684326, 0.013388184830546379, -0.010665279813110828, -0.02729763090610504, -0.00109139084815979, -0.01964331977069378, 0.0009027765481732786, -0.0021244825329631567, -0.03292176499962807, 0.013696826063096523, 0.01273660734295845, 0.01754455640912056, 0.029464978724718094, 0.012462259270250797, -0.024951953440904617, -0.021522603929042816, -0.009403279051184654, -0.010377214290201664, 0.013737978413701057, -0.0080452561378479, 0.0032355922739952803, -0.00024112621031235904, 0.034074027091264725, 0.0016880978364497423, 0.007846353575587273, -0.010130301117897034, 0.003741421503946185, -0.013731119222939014, -0.009334691800177097, 0.0287516750395298, 0.023881996050477028, -0.022592561319470406, -0.012366238050162792, -0.008957463316619396, 0.009595322422683239, -0.004146084655076265, 0.03135798126459122, 0.012270215898752213, -0.010685856454074383, 0.018888862803578377, -0.005661857780069113, 0.02581615000963211, 0.03149515390396118, 0.01462275069206953, -0.01567899063229561, -0.0027863471768796444, 0.033388156443834305, 0.02208501659333706, 0.0005302632926031947, -0.00684498343616724, 0.01598077267408371, -0.005322352051734924, -0.003396771615371108, -0.0011514044599607587, -0.03355276584625244, -0.010582976043224335, 0.007661168929189444, -0.00012463545135688037, 0.004259253386408091, 0.010713291354477406, 0.0009267819696106017, -0.0039334651082754135, 0.009794224984943867, -0.016268838196992874, -0.007215353660285473, -0.00013353033864405006, -0.045788686722517014, 0.008395049721002579, -0.005425232462584972, -0.015390925109386444, 0.00718791875988245, 0.031220806762576103, -0.007962951436638832, 0.019890232011675835, 0.013257868587970734, 0.008792854845523834, -0.03920433670282364, 0.018696818500757217, -0.010020562447607517, -0.014252380467951298, -0.0203291904181242, 0.033964287489652634, -0.01983536407351494, 0.0069101410917937756, 0.04567894712090492, -0.012455401010811329, 0.018093252554535866, 0.010308627970516682, 0.010692714713513851, -0.01185869425535202, 0.007006163243204355, 0.025528084486722946, -0.018779123201966286, 0.005757879465818405, -0.021042494103312492, 0.003796291071921587, -0.012016444467008114, -0.023744823411107063, 0.008882017806172371, 0.00694100558757782, 0.014581598341464996, 0.08181058615446091, 0.015459512360394001, 0.007853212766349316, 0.0009765075519680977, -0.0006897281273268163, 0.010871040634810925, 0.024842215701937675, -0.004204383585602045, 0.003239021636545658, -0.03454041853547096, 0.02185182087123394, -0.009218093939125538, -0.012421107850968838, -0.03725646436214447, -0.011879269964993, 0.02489708550274372, -0.009320974349975586, 0.009163224138319492, -0.02886141464114189, 0.005462955217808485, 0.018395036458969116, 0.0058333249762654305, 0.02506169304251671, 0.019163209944963455, -0.027091868221759796, 0.004924547392874956, 0.025102846324443817, 0.006827836856245995, -0.03602189943194389, -0.04770912602543831, -0.006165971979498863, -0.020754428580403328, -0.02574756368994713, -0.02067212574183941, -0.0011616924311965704, 0.023058952763676643, -0.010521247051656246, -0.01758570969104767, 0.016954708844423294, -0.006443749647587538, 0.034842200577259064, -0.0019924526568502188, -0.030534936115145683, -0.02303151786327362, -0.008662539534270763, 0.007331951521337032, -0.026570606976747513, 0.0013168705627322197, -0.04167346656322479], "62c45f91-a5d5-4db9-997b-7f2538092433": [-0.013027464039623737, 0.0041427467949688435, 0.010196533054113388, -0.02201259322464466, -0.02334708161652088, -0.00416865898296237, -0.015391971915960312, 0.0029912639874964952, -0.010954471305012703, -0.030447082594037056, 0.0053541515953838825, 0.02330821380019188, -0.004797034896910191, 0.02124817669391632, -0.0029281023889780045, -0.003987272270023823, 0.020781753584742546, 0.002685173414647579, 0.028140878304839134, -0.022673359140753746, -0.002968590473756194, -0.006737226620316505, -0.0008389143040403724, -0.0036050640046596527, -0.025135038420557976, 0.021300001069903374, 0.003961359616369009, -0.01574178971350193, 0.017503833398222923, -0.02631405182182789, 0.00044455978786572814, -0.01508102286607027, -0.02276405319571495, -0.02899598702788353, -0.028944162651896477, 0.0021636863239109516, -0.016182299703359604, -0.022608578205108643, -0.0027127054054290056, 0.001272947178222239, 0.04192627966403961, 0.01724470965564251, 0.01184844970703125, 0.0019126598490402102, 0.001289952197112143, 0.016959672793745995, -0.010773085057735443, -0.03132810443639755, -0.006860310677438974, 0.023204563185572624, 0.02179233729839325, 0.04905219376087189, -0.049000367522239685, -0.019447263330221176, 0.006361496634781361, 0.006724270526319742, 0.01316350419074297, 0.0030965330079197884, 0.014860766939818859, -0.028529563918709755, -0.00042553036473691463, 0.003041469259187579, -0.008356752805411816, -0.010857299901545048, -0.02941058576107025, 0.012722993269562721, 0.014446169137954712, 0.037236135452985764, -0.006802007555961609, 0.011699452996253967, 0.021520256996154785, 0.019784124568104744, 0.0050885495729744434, 0.02176642417907715, 0.027182118967175484, 0.006044069770723581, 0.003912773914635181, 0.02347664348781109, -0.0038415149319916964, 0.020742883905768394, -0.0020049726590514183, -0.011770712211728096, -0.0199136883020401, 0.0142259132117033, 0.02613266557455063, -0.0022640968672931194, -0.022893615067005157, 0.03433394432067871, -0.003141879802569747, -0.03868722915649414, 0.019421352073550224, 0.005852965638041496, -0.003763777669519186, 0.010488048195838928, 0.0008049042662605643, 0.025303468108177185, -0.022621534764766693, 0.017516789957880974, -0.0018219663761556149, -0.011284854263067245, -0.004418065771460533, 0.013461497612297535, -0.021740512922406197, -0.009555201046168804, -0.007624726742506027, 0.026508396491408348, -0.005869160871952772, -0.0006704836268909276, 0.028892338275909424, -0.0077154203318059444, -0.015314234420657158, 0.04459525644779205, 0.0008891195757314563, -0.02329525724053383, 0.030058395117521286, -0.00987262837588787, 0.021131571382284164, -0.017944343388080597, -0.021675731986761093, 0.004243157338351011, 0.011990968137979507, 0.002299726475030184, 0.009373814798891544, -0.006283759605139494, 0.019486133009195328, -0.01860511116683483, 0.002519981935620308, 0.004246396478265524, -0.01971934363245964, -0.025251643732190132, -0.0023402145598083735, 0.011628193780779839, 0.010423267260193825, 3.3655767310847295e-06, -0.009619981981813908, 0.01071478147059679, -0.016039781272411346, 0.01613047532737255, -0.021675731986761093, -0.02692299522459507, 0.016013870015740395, 0.008317884057760239, -0.018721716478466988, 0.007171259727329016, 0.004324133507907391, 0.003822080558165908, 0.03321970999240875, 0.008842609822750092, -0.004042336251586676, 0.0047678835690021515, -0.003922491334378719, 0.004003467503935099, 0.004081204533576965, -0.012340785004198551, -0.010475091636180878, 0.0032665831968188286, -0.0008340557105839252, 0.01914927177131176, 0.0030220348853617907, -0.001302908407524228, 0.025342337787151337, 0.050347812473773956, -0.009218339808285236, -0.007074087858200073, 0.005862683057785034, 0.030058395117521286, 0.0008291971171274781, -0.011129380203783512, -0.017128102481365204, 0.0011393362656235695, -0.004790557082742453, 0.02444835938513279, -0.024616789072752, 0.024189235642552376, 0.0066983578726649284, 0.00863531045615673, 0.013150548562407494, 0.016441425308585167, -0.021287044510245323, 0.009548722766339779, 0.00021317006030585617, -0.0038706662598997355, 0.012476825155317783, 0.03500766679644585, -0.03127627819776535, -0.003954881802201271, 0.012826642952859402, -0.0046447995118796825, -0.007806113455444574, -0.001306957216002047, 0.021105658262968063, 0.035344526171684265, -0.005069115199148655, -0.0064554293639957905, -0.6496759653091431, 0.008920347318053246, -0.004716058727353811, -0.009639416821300983, -0.00291838520206511, -0.0019304745364934206, 0.010112318210303783, 0.02295839600265026, 0.0011919708922505379, 0.041433945298194885, -0.0007761576562188566, 0.0007138059008866549, 0.013111679814755917, 0.004158942028880119, -0.004667473025619984, -0.021870074793696404, -0.001208975911140442, -0.02998065948486328, -0.011867883615195751, -0.005597080569714308, 0.010805475525557995, 0.02216806635260582, -0.036873359233140945, 0.016830110922455788, 0.001992016565054655, 0.011207117699086666, -0.003779972903430462, 0.006131524220108986, 0.004201049450784922, 0.013020985759794712, -0.02234945446252823, -0.014368431642651558, -0.0026155340019613504, 0.003640693612396717, 0.02881460078060627, 0.013396715745329857, -0.0011709170648828149, 0.010986861772835255, 0.0027969207148998976, 0.03824671730399132, -0.02273814007639885, -0.016635768115520477, 0.008130018599331379, 0.004486085847020149, 0.02236241102218628, -0.01703741028904915, -0.00917947106063366, -0.0021539691369980574, 0.00593070313334465, -0.023593248799443245, -0.0036018250975757837, -0.005648905411362648, -0.0015677008777856827, -0.0036601279862225056, 0.012722993269562721, -0.0015409786719828844, 0.0237228125333786, -0.008667700923979282, -0.011045165359973907, -0.017361314967274666, 0.005684535019099712, -0.011984489858150482, -0.003919252194464207, -0.0026948906015604734, -0.003388047683984041, 0.02707846835255623, 0.002430907916277647, 0.019952556118369102, 0.00013482551730703562, -0.020924272015690804, 0.005480474792420864, 0.014109307900071144, -0.010287227109074593, -0.022336497902870178, 0.00785146001726389, 0.005188960116356611, 0.02348960004746914, -0.00920538417994976, 0.019848905503749847, -0.019654562696814537, 3.843842932838015e-05, -0.0071194348856806755, -0.03301241248846054, -0.015806570649147034, 0.029151462018489838, 0.016933759674429893, 0.010928559117019176, 0.010501004755496979, 0.008849088102579117, 0.003043088596314192, 0.01892901584506035, 0.02770036645233631, -0.012010402046144009, -0.022271716967225075, -0.02220693603157997, 0.03910182788968086, 0.003276300383731723, -0.010604653507471085, -0.003792928997427225, -0.009464507922530174, -0.011990968137979507, -0.006212500389665365, 0.01895492896437645, 0.02236241102218628, 0.005341195501387119, 0.013247719965875149, 0.004414827097207308, 0.01892901584506035, 0.019641607999801636, -0.023761680349707603, 0.017128102481365204, -0.00919242762029171, -0.009548722766339779, -0.01727062091231346, -0.009458029642701149, -0.021300001069903374, 0.018462592735886574, 0.003436633385717869, 0.0065007759258151054, 0.005843248683959246, 0.020885402336716652, 0.023541424423456192, -0.0036504107993096113, -0.013681752607226372, 0.01261934358626604, 0.005946898367255926, -0.015689965337514877, -0.016830110922455788, -0.04342919960618019, -0.0038123633712530136, 0.030472993850708008, 0.02689708210527897, -0.0018802692648023367, -0.0005376824992708862, -0.025342337787151337, -0.03643284738063812, -0.0010227304883301258, -0.005425410810858011, 0.0037605385296046734, -0.005428649950772524, -0.013694709166884422, 0.00531204417347908, 0.027337592095136642, -0.016000913456082344, -0.014433212578296661, -0.036873359233140945, -0.033064235001802444, -0.00956167932599783, -0.01003458071500063, 0.014536862261593342, 0.00974954478442669, -0.007624726742506027, 0.001987157855182886, 0.026586132124066353, 0.009846716187894344, -0.0021151003893464804, -0.017024453729391098, -0.004984899889677763, -0.0076765515841543674, -0.0022317063994705677, -0.026508396491408348, 0.024020804092288017, -0.015314234420657158, -0.03638102486729622, -0.01666167937219143, -0.019058577716350555, -0.015093979425728321, 0.014433212578296661, -0.03778029605746269, -0.04690146446228027, 0.01062408834695816, 0.014614599756896496, -0.004933075048029423, -0.0033297447953373194, -0.013552190735936165, 0.027208030223846436, -0.041770804673433304, 0.005253741052001715, 0.0008875000639818609, -0.02954014763236046, -0.011718887835741043, 0.0021928376518189907, -0.016026826575398445, -0.011906752362847328, 0.01574178971350193, 0.012204744853079319, 0.011958577670156956, 0.03868722915649414, 0.00814297515898943, -0.0012316493084654212, 0.026663869619369507, 0.02144251950085163, -0.006938047707080841, -0.001953147817403078, 0.00805875938385725, 0.01671350561082363, 0.0123343076556921, -0.003711952827870846, 0.009043430909514427, 0.033686134964227676, 0.037080660462379456, 0.01916222833096981, 0.013565147295594215, -0.03031752072274685, -0.017115147784352303, -0.02504434436559677, 0.016804197803139687, -0.011906752362847328, 0.026612045243382454, -0.008266058750450611, 0.024746352806687355, -0.026637958362698555, -0.01971934363245964, -0.026391789317131042, 0.031043067574501038, 0.01184844970703125, -0.013318979181349277, 0.023230476304888725, -0.009717154316604137, 0.001873791217803955, 0.01762043870985508, 0.006873266771435738, 0.015871351584792137, 0.006685401778668165, -0.02902190014719963, -0.0007676551467739046, 0.023787593469023705, -0.008019890636205673, -0.020924272015690804, -0.024124454706907272, -0.0033297447953373194, -0.02347664348781109, 0.010021625086665154, -0.01129133254289627, 0.024772264063358307, -0.0033329837024211884, 0.02159799449145794, -0.02197372354567051, 0.02006916143000126, 0.010546350851655006, -0.030213870108127594, 0.012139963917434216, 0.004725775681436062, -0.03182043880224228, 0.011984489858150482, -0.003663367126137018, 0.038039419800043106, 0.016156388446688652, -0.01571587659418583, 0.015508577227592468, -0.0016762090381234884, -0.01781478151679039, -0.01971934363245964, 0.002461679046973586, -0.010112318210303783, -0.005801140796393156, 0.014433212578296661, 0.00870656967163086, 0.012567519210278988, 0.013306022621691227, 0.018242336809635162, 0.0025766652543097734, 0.003906295634806156, 0.008538139052689075, 0.017672263085842133, 0.01725766621530056, -0.013565147295594215, -0.01613047532737255, -0.013746533542871475, -0.02082062140107155, -0.021675731986761093, -0.03236459940671921, -0.027467155829072, 0.01308576762676239, 0.019421352073550224, -0.02407262846827507, -0.019434308633208275, 0.02409854158759117, 0.021131571382284164, 0.02045784890651703, -0.012554562650620937, -0.00928312074393034, 0.0284518264234066, 0.01839781180024147, -0.0025572311133146286, -0.012664690613746643, -0.00881021935492754, 0.023398905992507935, -0.016791241243481636, 0.0080717159435153, -0.00312892347574234, 0.00739151518791914, -0.005169525742530823, -0.009671807289123535, 0.005736359860748053, -0.009930931031703949, 0.03871314227581024, -0.0074303834699094296, 0.013435584492981434, -0.0132801104336977, 0.018695803359150887, 0.00635177968069911, -0.008577007800340652, -0.004793795756995678, 0.036095988005399704, 0.011356113478541374, 0.022051461040973663, 0.000223089664359577, 0.0062934765592217445, -0.011971533298492432, 0.008842609822750092, -0.02181825041770935, -0.019822994247078896, -0.03482627868652344, 0.03700292110443115, 0.0072036501951515675, 0.026080841198563576, 0.002769388956949115, 0.0265602208673954, 0.006989872548729181, -0.012237136252224445, -0.006338823586702347, -0.0001789575908333063, 0.004382436629384756, 0.0454244539141655, -0.007190694101154804, -0.0009911496890708804, 0.021312957629561424, -0.021196352317929268, 0.008168887346982956, -0.01707627810537815, -0.023049088194966316, 0.03508540242910385, -0.0009943887125700712, -0.011822537519037724, 0.017737044021487236, 0.018708759918808937, -0.014640511944890022, 0.004790557082742453, 0.00587887829169631, -0.004110356327146292, -0.017542701214551926, -0.0014786269748583436, -0.03487810492515564, 0.017866607755422592, -0.0010931798024103045, 0.02938467264175415, 0.01666167937219143, -0.004780839662998915, -0.007210128009319305, 0.021312957629561424, 0.014459124766290188, 0.0013539234641939402, -0.01746496371924877, -0.009522810578346252, 0.01508102286607027, 0.01765930838882923, 0.011893796734511852, -0.001992016565054655, 0.02671569585800171, 0.003967837896198034, 0.01013823039829731, 0.006834398023784161, -0.011809580959379673, 0.02082062140107155, 0.02425401657819748, 0.001264849561266601, -0.0029459171928465366, -0.009827281348407269, 0.006082938518375158, 0.012904380448162556, 0.010973906144499779, -0.006222217343747616, -0.003362135263159871, -0.001983918948099017, 0.00227543362416327, -0.02977336011826992, -0.006802007555961609, 0.0008012602920643985, 0.00833731796592474, 0.02006916143000126, -0.019887775182724, -0.019408395513892174, -0.040475185960531235, -0.028685038909316063, -0.019965512678027153, 0.021895986050367355, -0.014925548806786537, 0.003903056727722287, -0.01798321306705475, -0.010002190247178078, 0.0006506444187834859, -0.018151642754673958, 0.017128102481365204, 0.013902008533477783, -0.036873359233140945, -0.0284259133040905, -0.027804017066955566, 0.015158760361373425, 0.007916240952908993, -0.012327829375863075, -0.005885356105864048, -0.00861587654799223, 0.011932664550840855, -0.022880658507347107, -0.03946460038423538, 0.00483914278447628, -0.016817154362797737, -0.0024292885791510344, 0.008214234374463558, 0.00277424743399024, 0.01241204421967268, -0.026845257729291916, 0.014187044464051723, 0.001116662984713912, 0.011984489858150482, -0.01949908956885338, -0.03259781375527382, -0.02044489234685898, 0.03435985743999481, -0.0006243271636776626, -0.017568614333868027, 0.01061113178730011, -0.0208335779607296, 0.0021928376518189907, -0.007799635641276836, -0.012010402046144009, -0.01798321306705475, -0.0013725479366257787, 0.00455086724832654, 0.015586314722895622, 0.028374088928103447, -0.013629928231239319, -0.011142336763441563, 0.022440146654844284, -0.03539635241031647, 0.027933578938245773, 0.01062408834695816, 0.02444835938513279, 0.011699452996253967, -0.008492792956531048, 0.007475730497390032, 0.00785146001726389, -0.013850183226168156, -0.015391971915960312, -0.019887775182724, 0.014497993513941765, 0.0018624544609338045, 0.007624726742506027, 0.01876058429479599, 0.01765930838882923, -0.008434489369392395, 0.01156989112496376, -0.005188960116356611, 0.0256144180893898, 0.001784717314876616, 0.012094617821276188, -0.0019288550829514861, -0.0005348483682610095, 0.013811314478516579, -0.008829654194414616, 0.012658212333917618, -0.022491972893476486, 0.010986861772835255, -0.006860310677438974, 0.011990968137979507, -0.0108896903693676, -0.0059501370415091515, -0.005882116965949535, -0.03013613261282444, -0.01707627810537815, 0.014187044464051723, 0.005655383691191673, 0.027570804581046104, 0.0026333488058298826, 0.018890148028731346, -0.024759307503700256, -0.012282482348382473, 0.01856624148786068, -0.0008093579672276974, -0.008596441708505154, -0.001818727352656424, 0.031379930675029755, 0.001852737390436232, 0.025329381227493286, 0.011965055949985981, 0.024305840954184532, 0.004738732241094112, -0.014161132276058197, 0.0341784693300724, -0.00455086724832654, -0.021688686683773994, -0.01860511116683483, 0.0023904198314994574, 0.019447263330221176, 0.011770712211728096, -0.0005255360738374293, -0.00967828556895256, 0.013966789469122887, 0.019045621156692505, 0.0146793806925416, 0.022867701947689056, -0.031379930675029755, -0.014757117256522179, 0.0031483578495681286, 0.02764854207634926, -0.0034236772917211056, 0.011109946295619011, -0.024383578449487686, -0.003430155338719487, -0.0008429631125181913, -0.0218052938580513, 0.0011109946062788367, -0.01307281106710434, 0.022414235398173332, -0.007378558628261089, 0.0010041058994829655, 0.02995474636554718, 0.02196076698601246, -0.02576989121735096, 0.0020827099215239286, -0.021494343876838684, 0.02728576771914959, 0.018294161185622215, 0.009276642464101315, 0.016972629353404045, -0.01703741028904915, 0.009600548073649406, -0.021701643243432045, -0.0036763232201337814, -0.018890148028731346, -0.0009951984975486994, 0.026236316189169884, -0.01421295665204525, -0.00833731796592474, -0.018229380249977112, -0.016363687813282013, -0.006646533031016588, 0.00030973428511060774, 0.011692975647747517, 0.008032847195863724, 0.014536862261593342, -0.03814306855201721, -0.030369345098733902, 0.016363687813282013, -0.00026823394000530243, 0.028918249532580376, 0.015340146608650684, 0.02444835938513279, 0.03166496381163597, 0.01609160751104355, -0.03031752072274685, -0.013228285126388073, 0.005273175425827503, 0.014795986004173756, 0.013604015111923218, -0.012139963917434216, 0.009147080592811108, -0.0010243499418720603, -0.0018980840686708689, 0.000380386074539274, -0.02106679044663906, -0.04827481880784035, 0.017542701214551926, 0.018631022423505783, -0.014705292880535126, -0.013448541052639484, 0.019252920523285866, -0.039905112236738205, 0.017879562452435493, 0.0006198734627105296, -0.013876095414161682, -0.008875000290572643, -0.00020648952340707183, 0.0005550924106501043, -0.020742883905768394, -0.007417427375912666, 0.006290237419307232, 0.005315283313393593, 0.005616514943540096, -0.008408577181398869, 0.006031113676726818, -0.026637958362698555, 0.001412226352840662, -0.0021960767917335033, 0.00611532898619771, -0.02106679044663906, 0.013552190735936165, 0.014200001023709774, 0.011330201290547848, -0.0032374318689107895, 0.005551734007894993, 0.02120930701494217, 0.02593832276761532, -0.02351551316678524, -0.013254198245704174, 0.018099818378686905, 0.007883850485086441, -0.016752373427152634, 0.00435328483581543, -0.018229380249977112, -0.022686315700411797, -0.011323723010718822, -0.00976897869259119, 0.038402192294597626, 0.013046898879110813, -0.015029197558760643, -0.008065237663686275, -0.005405976437032223, 0.009030475281178951, -0.0072036501951515675, -0.015223541297018528, -0.002439005533233285, -0.019460219889879227, -0.017179928719997406, -0.010410310700535774, 0.00785146001726389, 0.005872400011867285, 0.004463412798941135, -0.013020985759794712, 0.011356113478541374, 0.05190255865454674, -0.03171679005026817, 0.0013984603574499488, -0.02557554841041565, 0.015366059727966785, 0.0002554801758378744, 0.012120530009269714, -0.01155045721679926, 0.004884489346295595, 0.030395258218050003, -0.006189826875925064, 0.010112318210303783, -0.005273175425827503, -0.016830110922455788, 0.03962007537484169, -0.0036018250975757837, 0.0026187729090452194, 0.005610036663711071, 0.020794710144400597, 0.011854927986860275, -0.005810858216136694, -0.00023705806233920157, 0.01571587659418583, -0.015508577227592468, 0.014200001023709774, -0.001763663487508893, -0.02617153525352478, -0.004181615076959133, -0.001576608163304627, -6.548957026097924e-05, 0.010922080837190151, -0.02731168083846569, -0.006542883813381195, -0.0061801099218428135, 5.47602103324607e-05, -0.014005658216774464, -0.00322123640216887, -0.025860585272312164, -0.006763139273971319, -0.019965512678027153, 0.022777007892727852, -0.0189419724047184, -0.0015571739058941603, -0.008751916699111462, 0.025912409648299217, 0.040293797850608826, 0.003315168898552656, -0.012677647173404694, -0.023774636909365654, 0.020898358896374702, -0.019058577716350555, -0.009483941830694675, 0.0009790032636374235, -0.006763139273971319, 0.0208594910800457, 0.023839417845010757, -0.014575731009244919, -0.04000876098871231, -0.007436861749738455, -0.016221169382333755, -0.017348358407616615, -0.006254608277231455, 0.0040941606275737286, 0.04392153397202492, 0.030991243198513985, -0.005976049695163965, 0.02878868766129017, -0.006646533031016588, 0.007767245173454285, -0.03578503802418709, 0.012833121232688427, 0.00553877791389823, 0.03166496381163597, -0.0018997036386281252, 0.007566423621028662, -0.005405976437032223, -0.01949908956885338, -0.005176004022359848, -0.02637883462011814, 0.017309490591287613, 0.008803741075098515, -0.008771350607275963, -0.024111498147249222, -0.03674379736185074, 0.015430840663611889, -0.011699452996253967, 0.037054747343063354, 0.0170892346650362, -0.013565147295594215, -0.019227009266614914, -0.021831205114722252, 0.00805875938385725, -0.016532117500901222, 0.0005012431647628546, -0.0104167889803648, -0.01667463593184948, 0.018307117745280266, -0.012301917187869549, -0.01971934363245964, 0.016363687813282013, -0.010390876792371273, 0.02315273880958557, -0.0038415149319916964, 0.01571587659418583, 0.04420657083392143, -0.01098038349300623, 0.01969343237578869, -0.022310584783554077, 0.01651916094124317, -0.03197591379284859, 0.0011085652513429523, 5.592424713540822e-06, 0.012820164673030376, -0.016985585913062096, -0.01877354085445404, 0.030472993850708008, -0.011543978936970234, -0.002950775669887662, -0.002351551316678524, 0.0008713047718629241, -0.03283102437853813, 0.019382482394576073, -0.007644161116331816, -0.006312910933047533, -0.0063776918686926365, -0.005263458471745253, -0.011932664550840855, -0.0012170735280960798, -0.030550731346011162, 8.735316805541515e-05, -0.005833531264215708, 0.008291970938444138, 0.007942154072225094, 0.0046156481839716434, 0.00023685563064645976, 0.015664052218198776, 0.016078650951385498, -0.029073724523186684, 0.004832664504647255, 0.178277388215065, -0.008648267015814781, 0.009607026353478432, 0.023075001314282417, 0.012956204824149609, 0.012645256705582142, 0.01318941731005907, -0.027544891461730003, 0.0026576416566967964, -0.0026495440397411585, -0.014187044464051723, 0.029877008870244026, -0.019227009266614914, 0.0046836682595312595, 0.02424106001853943, -0.0017393705202266574, -0.003666606033220887, -0.042936865240335464, -0.016752373427152634, -0.0007117814966477454, -0.013681752607226372, 0.00474521005526185, -0.016817154362797737, -0.027804017066955566, 0.021196352317929268, -0.0009231296135112643, 0.0027888230979442596, 0.007683029863983393, 0.038376279175281525, 0.006782573647797108, -0.025821717455983162, -0.0011150434147566557, -0.003682801267132163, 0.004129790235310793, -0.025277556851506233, -0.024305840954184532, 0.015158760361373425, 0.0028195942286401987, 0.02974744699895382, -0.0179961696267128, 0.0005696681328117847, -0.02106679044663906, -0.02824452705681324, -0.02635292150080204, 0.035344526171684265, 0.0007032789872027934, -0.017724089324474335, -0.02028941735625267, -0.013228285126388073, 0.036147814244031906, 0.0050885495729744434, 0.0034528286196291447, 0.011310767382383347, 0.012366698123514652, -0.012392610311508179, -0.0017604243475943804, -0.004337089601904154, -0.0023321169428527355, 0.022077374160289764, 0.005266697611659765, -0.010066971182823181, 0.028866425156593323, -0.003951642662286758, 0.010824909433722496, 0.006951004266738892, 0.008842609822750092, -0.02082062140107155, 0.013539234176278114, -0.022686315700411797, 0.006267564371228218, 0.005224589724093676, -0.0005174384568817914, -0.0018511178204789758, -0.0010972286108881235, -0.01241204421967268, -0.026404745876789093, 0.0265602208673954, 0.02159799449145794, -0.000820289715193212, 0.023424819111824036, -0.024163322523236275, -0.017154015600681305, -0.0041427467949688435, -0.004971943795681, -0.03244233876466751, -0.012787774205207825, 0.019032664597034454, -0.014731205068528652, -0.03378978371620178, -0.03544817864894867, -0.012846077792346478, -0.01935657113790512, -0.010144708678126335, -0.00824662484228611, -0.010112318210303783, 0.03562956303358078, -0.004045574925839901, 0.01763339526951313, -0.02067810297012329, 0.011803102679550648, -0.020522629842162132, 0.04760109633207321, 0.02593832276761532, 0.026974819600582123, 0.02197372354567051, 0.010643522255122662, 0.0022057939786463976, -0.007916240952908993, -0.004181615076959133, -0.008032847195863724, 0.011161770671606064, -0.004822947550565004, 0.0033038323745131493, -0.008415055461227894, -0.011213595978915691, -0.005276414565742016, -0.029617885127663612, -0.028892338275909424, 0.0063323453068733215, -0.001551505527459085, 0.00845392420887947, -0.01508102286607027, -0.005788184702396393, -0.020198723301291466, 0.007197171915322542, -0.006355018820613623, -0.04532080516219139, 0.00021175298024900258, -0.020535584539175034, -0.0055161044001579285, 0.01240556687116623, -0.05322409048676491, 0.003964598756283522, -0.01666167937219143, -0.013137592002749443, -0.0146793806925416, -0.016013870015740395, -0.03635511174798012, -0.0090175187215209, 0.012470347806811333, 0.004495803266763687, -0.0024827327579259872, -0.01497737318277359, -0.01337080355733633, 0.021753467619419098, -0.025536680594086647, -0.002863321453332901, -0.015599271282553673, 0.027804017066955566, -0.02692299522459507, -0.025471899658441544, -0.0011822537053376436, 0.00372167001478374, -0.02860730141401291, 0.0048909676261246204, -0.005357390735298395, -0.00230134604498744, -0.028140878304839134, 0.0023580293636769056, 0.013604015111923218, -0.04589087888598442, 0.02009507454931736, 0.02084653452038765, -0.0012284101685509086, -0.016804197803139687, -0.033841606229543686, -0.16221168637275696, 0.015379015356302261, 0.0022883897181600332, -0.027544891461730003, 0.016454380005598068, 0.005959854461252689, 0.012671168893575668, -0.0004563013499137014, -0.0017814781749621034, -0.015508577227592468, -0.012237136252224445, -0.0033977648708969355, -0.004962226375937462, -0.017361314967274666, 0.005056159105151892, 0.00298478570766747, -0.0013587820576503873, 0.01155045721679926, 0.02613266557455063, 0.031043067574501038, 0.04192627966403961, -0.02713029459118843, 0.01987481862306595, 0.005678056739270687, -0.0005150091601535678, -0.0077154203318059444, -0.007404471281915903, 0.024396535009145737, -0.016532117500901222, -0.032520074397325516, 0.0010664575966075063, 0.009898540563881397, 0.0180091243237257, 0.004282025620341301, 0.038402192294597626, 0.0074303834699094296, -0.013681752607226372, -0.026871168985962868, -0.001539359102025628, 0.0014114165678620338, 0.023424819111824036, 0.0236968994140625, -0.0029588732868433, -0.017672263085842133, -0.014277738519012928, 0.0076765515841543674, 0.01221770141273737, -0.025122081860899925, 0.018333030864596367, -0.009917975403368473, 0.04006058722734451, -0.013616971671581268, -0.005966332275420427, -0.012548084370791912, 0.03316788375377655, -0.012288960628211498, -0.041796717792749405, 0.029332848265767097, -0.027959490194916725, 0.008285493589937687, 0.005435128230601549, -0.025458943098783493, -0.007171259727329016, 0.036484673619270325, 0.002981546800583601, -0.02219397947192192, -0.028918249532580376, 0.005341195501387119, -0.02540711872279644, -0.0021118614822626114, 0.0056229932233691216, -0.022984307259321213, 0.00956167932599783, 0.002477874280884862, 0.005065876059234142, -0.0007417427259497344, -0.021649818867444992, 0.02348960004746914, -0.020406022667884827, -0.02637883462011814, -0.007138869259506464, 0.025718066841363907, 0.006646533031016588, -0.023645075038075447, 0.02444835938513279, 0.0014178947312757373, -0.022077374160289764, 0.014847811311483383, -0.0029362000059336424, -0.0293587613850832, -0.0010154425399377942, -0.03316788375377655, -0.01098038349300623, -0.005179243162274361, -0.004479608032852411, -0.0021167199593037367, 0.01431660633534193, -0.009419160895049572, 0.0006368784816004336, -0.03259781375527382, 0.006144480314105749, -0.014653468504548073, -0.010280748829245567, 0.003171031130477786, 0.017711132764816284, 0.011492153629660606, -0.0284259133040905, 0.016739416867494583, 0.02122226357460022, 0.023606205359101295, -0.027907665818929672, 0.02310091443359852, 0.0041427467949688435, 0.03277919813990593, -0.0002769388956949115, 0.03832445666193962, -0.01401861384510994, -0.012956204824149609, 0.0189419724047184, 0.001974201761186123, 0.01951204426586628, 0.009036953561007977, -0.000934466312173754, 0.005927463993430138, 0.023994892835617065, -0.011725366115570068, -0.11784964054822922, -0.029099637642502785, -0.012625821866095066, 0.008117062970995903, 0.001179824466817081, 0.00029961223481222987, -0.010390876792371273, 0.02767445519566536, 0.016247080639004707, 0.027467155829072, -0.0015903741586953402, 0.00017430144362151623, 0.009697719477117062, -0.011129380203783512, -0.010066971182823181, -0.015651095658540726, -0.0142259132117033, 0.00798102281987667, -0.013798358850181103, 0.03733978420495987, 0.02405967377126217, -0.005069115199148655, -0.009982756339013577, 0.003501414554193616, -0.008279015310108662, 0.014692336320877075, -0.012748905457556248, 0.018047994002699852, 0.013182939030230045, -0.008123540319502354, 0.004431022331118584, -0.024500183761119843, 0.010617610067129135, -0.010863778181374073, 0.008816697634756565, 0.0021636863239109516, -0.03622554987668991, -0.017529746517539024, 0.03469671681523323, -0.022051461040973663, 0.020354198291897774, 0.012353741563856602, 0.0151717159897089, 0.0008591583464294672, 0.013293066062033176, -0.01118768285959959, -0.012198267504572868, 0.011407938785851002, -0.028866425156593323, -0.0052407849580049515, -0.04526898264884949, -0.024513140320777893, -0.02199963666498661, 0.008201277814805508, -0.0042107668705284595, -0.005337956361472607, 0.014847811311483383, -0.006199544295668602, -0.021377738565206528, 0.00842801108956337, -0.02389124222099781, 0.011770712211728096, -0.013202372938394547, 0.008078194223344326, -0.006594708655029535, 0.016817154362797737, -0.024979563429951668, -0.015871351584792137, 0.039309125393629074, -0.01930474489927292, -0.026871168985962868, 0.027467155829072, -0.014251825399696827, 0.015340146608650684, -0.011103468015789986, 0.027182118967175484, -0.005448084324598312, 0.009263686835765839, 0.025109125301241875, 0.00787737313657999, -0.027985403314232826, -0.023087957873940468, -0.0002463703276589513, -0.018060950562357903, 0.03049890697002411, 0.032727375626564026, 0.01594908908009529, 0.002228467259556055, 0.03293467313051224, -0.007670073304325342, -0.006154197268188, 0.01596204563975334, 0.02141660638153553, -0.025277556851506233, -0.006034352350980043, -0.007300821598619223, 0.02465565875172615, 0.0048132301308214664, -0.010352008044719696, -0.015197629109025002, -0.018656935542821884, -0.001336108660325408, -0.03241642564535141, 0.008259580470621586, -0.018825365230441093, -0.00635177968069911, -0.00017106239101849496, 0.0014405680121853948, 0.01421295665204525, -0.017866607755422592, -0.0011190922232344747, -0.026689782738685608, -0.03355657309293747, -0.0007903285440988839, -0.0006494297995232046, -0.0014510949840769172, -0.021494343876838684, -0.02140365168452263, 0.008758394978940487, -0.003951642662286758, 0.004466651938855648, -0.010274270549416542, -0.012340785004198551, 0.0019191378960385919, 0.0033329837024211884, 0.0033718524500727654, -0.011459763161838055, 0.004288503900170326, 0.003073859727010131, 0.020561497658491135, -0.01650620624423027, -0.03733978420495987, -0.006238412577658892, -0.015016241930425167, 0.0032617247197777033, 0.02273814007639885, -0.015417884103953838, 0.022802921012043953, 0.0019337136764079332, 0.039127741008996964, 0.021533213555812836, 0.026210403069853783, -0.009775456972420216, -0.03928321599960327, 0.022595621645450592, 0.0051565696485340595, -0.0021960767917335033, -0.016843067482113838, -0.011887318454682827, 0.020755840465426445, 0.0027191834524273872, -0.011867883615195751, 0.03767664358019829, 0.011712409555912018, -0.010306661017239094, -0.027052557095885277, -0.00975602213293314, -0.03298649936914444, 0.020626278594136238, -0.01837189868092537, -0.005746076814830303, -0.014757117256522179, 0.026974819600582123, -0.012224179692566395, 0.020133942365646362, -0.020237592980265617, 8.062201231950894e-05, -0.032727375626564026, -0.0022559992503374815, 0.01575474627315998, 0.02009507454931736, -0.027804017066955566, -0.02140365168452263, -0.014731205068528652, 0.020211679860949516, -0.01591021940112114, 0.04285912588238716, -0.0026495440397411585, -0.0118354931473732, 0.023243432864546776, -0.011867883615195751, 0.009043430909514427, 0.03889452666044235, 0.008356752805411816, -0.010792518965899944, 0.016946716234087944, 0.04848212003707886, 0.01763339526951313, -0.01841076835989952, -0.015456752851605415, -0.001450285199098289, 0.006970438174903393, 0.0038706662598997355, 0.012483303435146809, -0.036847446113824844, -0.018320074304938316, 0.007385036908090115, 0.020418979227542877, -0.006834398023784161, 0.0011701072799041867, 0.018345987424254417, 0.015042154118418694, 0.014109307900071144, -0.008875000290572643, -0.018527373671531677, -0.0038868614938110113, -0.03184635192155838, 0.010760128498077393, -0.012373176403343678, 0.0033427008893340826, -0.0011571510694921017, 0.03949051350355148, -0.002199315931648016, 0.022777007892727852, 0.031587228178977966, 0.0029718296136707067, -0.029125548899173737, 0.01270355936139822, -0.006374452728778124, -0.0037961681373417377, -0.019239963963627815, 0.014705292880535126, 0.004570301156491041, 0.014264781959354877, 0.044828470796346664, -0.010190055705606937, 0.018112774938344955, 0.00758585799485445, 0.015249453485012054, 0.005172764882445335, 0.0051177009008824825, -0.004903923720121384, 0.005192199256271124, 0.00985967181622982, -0.020431935787200928, 0.006925091613084078, -0.009600548073649406, -0.03550000116229057, 0.005739599000662565, 0.0028552236035466194, -0.009224818088114262, 0.07255475223064423, 0.012392610311508179, 0.0008053091005422175, 0.01251569390296936, 0.011343157850205898, 0.03889452666044235, 0.03106898069381714, 0.00985967181622982, -0.004084443673491478, -0.018864234909415245, 0.023398905992507935, -0.005422171670943499, -0.004087682813405991, -0.030654381960630417, -0.00025527772959321737, 0.005846487823873758, -0.011213595978915691, 0.03371204435825348, -0.044439785182476044, 0.01259990967810154, 0.013306022621691227, 0.0010008668759837747, 0.017400182783603668, -0.00038625687011517584, -0.013059854507446289, 0.0094709862023592, 0.029047811403870583, 0.011310767382383347, -0.03824671730399132, -0.02348960004746914, -0.020133942365646362, -0.0029021899681538343, -0.034800365567207336, -0.02483704499900341, 0.015275365673005581, 0.016739416867494583, -0.01099334005266428, -0.026210403069853783, 0.01646733656525612, 0.013357847929000854, 0.030783943831920624, 0.007806113455444574, -0.019447263330221176, -0.038739051669836044, -0.009049909189343452, -0.005172764882445335, -0.01952500082552433, 0.0038123633712530136, -0.061878837645053864], "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e": [-0.0017466172575950623, -0.00042976191616617143, 0.007427582982927561, -0.027971824631094933, -0.009710997343063354, 0.009451518766582012, -0.01606174372136593, -0.02016150951385498, -0.009983450174331665, -0.029217323288321495, 0.017904043197631836, 0.017891069874167442, -0.01239660382270813, 0.018669506534934044, -0.021108606830239296, -0.020771285519003868, 0.01756672002375126, -0.011585731990635395, 0.02328822948038578, -0.00870551634579897, 0.0017563477158546448, -0.005354995373636484, -0.013058274984359741, -0.007823288440704346, -0.02919137477874756, 0.018682479858398438, -0.009438544511795044, -0.012850691564381123, 0.009120683185756207, -0.007998436689376831, -0.0056890747509896755, -0.009068787097930908, -0.018669506534934044, -0.012234429828822613, -0.03723521903157234, 0.01095000933855772, -0.010333746671676636, -0.027219334617257118, 0.002098535420373082, -0.0020125831943005323, 0.0328240804374218, 0.024105587974190712, 0.0099639892578125, -0.0004188151506241411, -0.002995359478518367, 0.01780025102198124, 0.01510167121887207, -0.04159446433186531, -0.015854159370064735, 0.0369238443672657, 0.021056711673736572, 0.03754659369587898, -0.029243269935250282, -0.013635615818202496, -0.008757412433624268, 0.005507439374923706, 0.01711263321340084, 0.027893980965018272, -0.004946316126734018, -0.012714465148746967, 0.010813782922923565, 0.0006722125108353794, -0.01039212942123413, -0.015036801807582378, -0.03557455539703369, -0.005170116666704416, -0.0011919811367988586, 0.031656425446271896, -0.004401410464197397, 0.01231876015663147, 0.009003917686641216, 0.01977229118347168, 0.005805840250104666, 0.016347169876098633, 0.031760215759277344, -0.008296837098896503, -0.004064088221639395, 0.005056594964116812, -0.008770386688411236, 0.009243935346603394, 0.0029126505833119154, -0.023184439167380333, -0.01255229115486145, -0.0002732636930886656, 0.03259054943919182, -0.006169110536575317, -0.014206469058990479, 0.006130188703536987, -0.02490997314453125, -0.029710331931710243, 0.00633452832698822, 0.005546361207962036, 0.0026483063120394945, 0.014478921890258789, 0.00867308210581541, 0.014958958141505718, -0.0087898476049304, 0.019902030006051064, -0.0027861546259373426, -0.001723912893794477, -0.005595013499259949, -0.0039051573257893324, -0.01212415099143982, -0.006328041199594736, -0.018319210037589073, 0.02440398931503296, 0.0012706356355920434, 0.0022331401705741882, 0.02356068231165409, -0.019876083359122276, -0.02182217501103878, 0.04463036730885506, 0.003165642498061061, -0.04452657699584961, 0.02830914594233036, 0.005676100496202707, 0.013259370811283588, -0.028828104957938194, -0.03131910040974617, 0.010924060828983784, 0.01550386380404234, -0.010087241418659687, 0.0007082962547428906, -0.01734616421163082, 0.03186400607228279, -0.01610066555440426, -0.004754950758069754, -0.0072200000286102295, -0.00564690912142396, -0.027945876121520996, 0.01637311838567257, -0.008906613104045391, 0.025467852130532265, -0.003652165411040187, -0.012208481319248676, 0.005222012754529715, -0.01395996380597353, 0.017436981201171875, -0.005290125962346792, -0.015867134556174278, 0.013869146816432476, 0.006967008113861084, -0.0012827987084165215, 0.009788841009140015, 0.0038889397401362658, -0.006237223744392395, 0.01326585840433836, 0.0038824528455734253, -0.021912992000579834, 0.008160610683262348, 0.005734483245760202, 0.011533836834132671, 0.0003825286403298378, -0.004596019629389048, -0.005329047795385122, -0.0027261499781161547, -0.0004763870092574507, 0.013908068649470806, 0.005565822124481201, 0.013272345066070557, 0.027556657791137695, 0.03526318073272705, 0.003198077203705907, 0.009412596933543682, -0.002035287441685796, 0.03944079205393791, 0.017904043197631836, -0.00486522912979126, -0.022302210330963135, 0.012208481319248676, 0.005578795913606882, 0.011345714330673218, -0.04175015166401863, 0.0034316082019358873, 0.00890012551099062, 0.002043396234512329, -0.0022363837342709303, -0.000412733614211902, -0.01857868768274784, 0.015607655048370361, 0.010969470255076885, -0.014881114475429058, 0.005770161747932434, 0.03233106806874275, -0.024105587974190712, 0.014803270809352398, 0.005121464375406504, 0.0012406334280967712, 0.015633603557944298, 0.0013346945634111762, 0.026466846466064453, 0.04987184330821037, -0.007862210273742676, -0.006830781698226929, -0.6538867950439453, 0.00606207549571991, -0.0008076280355453491, -0.020252326503396034, 0.006954034324735403, -0.00035171551280654967, 0.010852704755961895, 0.016204455867409706, -0.007511913776397705, 0.03905157372355461, 0.012020359747111797, 0.006830781698226929, 0.013791303150355816, 0.005033890251070261, -0.0038110960740596056, -0.030307134613394737, 0.009088248014450073, -0.022600611671805382, -0.007978975772857666, 0.01376535464078188, 0.02352176047861576, 0.02734907530248165, -0.020563701167702675, 0.0031948338728398085, -0.004232749342918396, 0.027945876121520996, 0.001947713433764875, -0.010547816753387451, 0.01734616421163082, 0.039336998015642166, -0.013097196817398071, -0.012383629567921162, 0.008887152187526226, -0.01768348552286625, 0.03160452842712402, 0.02008366584777832, 0.0015106536448001862, 0.0023839622735977173, -0.0023336883168667555, 0.04343676567077637, -0.03339493274688721, -0.023690422996878624, 0.019162515178322792, 0.012130637653172016, 0.013557772152125835, -0.008815795183181763, -0.005896657705307007, 0.008731464855372906, -0.005585283041000366, -0.018786272034049034, -0.0010500786593183875, 0.004933342337608337, 0.0001282190642086789, -0.011196513660252094, 0.015400071628391743, 0.025805175304412842, -0.001209009438753128, -0.0022071923594921827, -0.002641819417476654, -0.023145517334342003, -0.009360700845718384, 0.00745353102684021, 0.014063755981624126, -0.0007322169840335846, -0.010534842498600483, 0.02467644214630127, -0.0028802156448364258, -0.012643109075725079, 0.005977744702249765, -0.019564708694815636, 0.0027391240000724792, 0.010346720926463604, -0.023962875828146935, -0.0339917354285717, 0.005633935332298279, 0.02394990064203739, 0.02846483327448368, -0.016866127029061317, 0.010943521745502949, 0.011572758667171001, -0.0010379155864939094, -0.0006847810000181198, -0.028335094451904297, -0.03448474407196045, 0.0247153639793396, -0.014063755981624126, -0.0028964329976588488, 0.006117214914411306, -0.004790628794580698, -0.003019685624167323, 0.015348176471889019, 0.022873064503073692, 0.0043138363398611546, -0.02375529147684574, -0.01648988388478756, 0.02116050384938717, -0.0055690654553473, -0.0021974619012326, -0.020291248336434364, -0.021069684997200966, -0.007388661149889231, -0.019123593345284462, -9.289546869695187e-05, 0.02231518365442753, 0.005212282296270132, -0.0026937152724713087, 0.0031413163524121046, 0.020797232165932655, 0.02066749334335327, -0.018877089023590088, -0.006032884120941162, -0.026856064796447754, -0.006512919906526804, -0.01517951488494873, 0.008647133596241474, -0.022418975830078125, 0.025000790134072304, -0.008575777523219585, 0.02502673864364624, 0.0032532166223973036, 0.018721401691436768, 0.026427924633026123, -0.012467960827052593, -0.01000291109085083, 0.03196780011057854, 0.00382407009601593, -0.0045052021741867065, -0.002977520227432251, -0.01942199468612671, -0.0077065229415893555, 0.021173477172851562, 0.019006827846169472, 0.00433329725638032, -0.0019379829755052924, -0.03484801575541496, -0.027478814125061035, 0.021069684997200966, -0.00560798728838563, 0.006863216403871775, -0.004482497926801443, -0.012091715820133686, 0.009419083595275879, 0.025195399299263954, -0.013324241153895855, -0.00433329725638032, -0.030540665611624718, -0.01981121301651001, -0.007330278400331736, -0.018565714359283447, 0.017631590366363525, 0.0008530368213541806, -0.0006016666884534061, -0.004047870635986328, 0.024391015991568565, -0.0010411590337753296, -0.00828386377543211, -0.018435975536704063, 0.015322227962315083, 0.004923611879348755, 0.0007727605407126248, -0.018448948860168457, 0.021912992000579834, -0.020797232165932655, -0.009062300436198711, -0.00745353102684021, -0.009892632253468037, -0.02225031517446041, 0.03129315376281738, -0.017826199531555176, -0.0468878336250782, 0.013155579566955566, 0.008484959602355957, -0.0003121855261269957, 0.00953584909439087, -0.0115273492410779, 0.012766361236572266, -0.023353099822998047, 0.013285319320857525, 0.013337214477360249, -0.019551733508706093, 0.006791859865188599, 0.01368751097470522, -0.0005842329119332135, -0.0191495418548584, 0.015828212723135948, 0.009821276180446148, 0.004628454800695181, 0.027219334617257118, -0.0005185523186810315, 0.008926074020564556, 0.014167547225952148, 0.013012866489589214, -0.010139137506484985, -0.0026710107922554016, 0.013012866489589214, 0.025325139984488487, 0.0016006603837013245, 0.012889613397419453, -0.007849236018955708, 0.03012549877166748, 0.028646469116210938, 0.02023935317993164, -0.002961302874609828, -0.033420879393815994, 0.0008214128320105374, -0.024806180968880653, 0.02252276800572872, -0.015205462463200092, 0.009256909601390362, -0.013830224983394146, 0.016892075538635254, -0.01645096205174923, -0.013220448978245258, -0.0031575337052345276, 0.007946540601551533, 0.012467960827052593, -0.008387655019760132, 0.0234439168125391, -0.006581033114343882, 0.004320323467254639, 0.0066621205769479275, 0.012214968912303448, 0.024896999821066856, 0.012506882660090923, -0.012909074313938618, -0.001347668468952179, 0.03085204027593136, -0.012305785901844501, -0.024027744308114052, -0.030981779098510742, 0.010800808668136597, -0.029243269935250282, 0.0115273492410779, 0.00020879942167084664, 0.02066749334335327, 0.0052155256271362305, 0.04481200501322746, -0.036404889076948166, 0.016230404376983643, 0.007518400903791189, -0.010761886835098267, 0.026285210624337196, 0.0064577809534966946, -0.025078633800148964, 0.013791303150355816, 0.011365175247192383, 0.044396836310625076, -0.00018041890871245414, -0.021912992000579834, 0.017787277698516846, 0.006574546452611685, -0.002883459208533168, -0.0067010424099862576, -0.009354214183986187, 0.0037851482629776, -0.004839281085878611, 0.019681474193930626, 0.011773854494094849, 0.0027456108946353197, 0.020252326503396034, -0.0011230570962652564, -0.009036351926624775, 0.003297003684565425, 0.018059730529785156, 0.02043396234512329, 0.01411565113812685, -0.019863108173012733, -0.02289901115000248, 0.0004962533712387085, -0.01451784372329712, -0.02166648767888546, -0.03897373005747795, -0.02004474401473999, 0.017709434032440186, 0.010982443578541279, -0.018059730529785156, -0.015049775131046772, 0.023430943489074707, 0.019876083359122276, 0.012338221073150635, -0.013402084819972515, -0.010320772416889668, 0.01656772755086422, 0.02116050384938717, 0.003742982866242528, -0.017021814361214638, -0.02062857151031494, -8.509083272656426e-05, -0.002750476123765111, 0.009062300436198711, -0.020823180675506592, -0.004184097051620483, -0.007914106361567974, -0.00305049866437912, 0.015231410972774029, -0.01015859842300415, 0.03521128371357918, -0.0024861320853233337, 0.022691428661346436, 0.005121464375406504, 0.011397610418498516, 0.01434918213635683, -0.007764905691146851, -0.010943521745502949, 0.04320323467254639, 0.007550835609436035, 0.006182084325700998, -0.01791701652109623, 0.030384978279471397, -0.0007265408639796078, 0.007018903736025095, -0.016437986865639687, -0.028412938117980957, -0.025818148627877235, 0.03606756404042244, -0.004686837550252676, 0.01918846368789673, -0.008990943431854248, 0.020446935668587685, 0.013791303150355816, -0.0115273492410779, -0.009659101255238056, -0.0035159389954060316, 0.010307799093425274, 0.045668285340070724, -0.003301868913695216, -0.00016592458996456116, 0.01803378202021122, -0.011345714330673218, 0.005757187958806753, -0.026311159133911133, -0.009879658930003643, 0.02413153648376465, -0.00816709827631712, -0.0056890747509896755, 0.01684018038213253, 0.002791019855067134, -0.0009949393570423126, 0.016425013542175293, 0.005342021584510803, -0.0012884748866781592, -0.008173584938049316, -0.005663126707077026, -0.03521128371357918, 0.015970924869179726, 0.008407115936279297, 0.019162515178322792, 0.006308580283075571, -0.001761212944984436, 0.0002254222781630233, 0.018046757206320763, -0.003092664061114192, 0.0057409703731536865, -0.022198418155312538, -0.016476908698678017, 0.0123576819896698, 0.01877329684793949, 0.01322693657130003, -0.004887933377176523, 0.026674428954720497, 0.01183872390538454, 0.01423241663724184, -0.003110503079369664, -0.017242372035980225, 0.03240891173481941, 0.022847115993499756, 0.008530368097126484, -0.014920036308467388, 0.0013663185527548194, 0.012844204902648926, 0.006094510201364756, 0.025000790134072304, 0.0037916351575404406, -0.003464043140411377, -0.0022590879816561937, -0.00932826567441225, -0.03502964973449707, -0.0061788409948349, -0.006574546452611685, 0.005037134047597647, 0.013441006653010845, -0.02467644214630127, -0.024300197139382362, -0.03669031336903572, -0.004138688091188669, -0.032850027084350586, 0.020991841331124306, -0.009205013513565063, -0.016749361529946327, -0.005854492541402578, -0.0023515273351222277, 0.02104373835027218, -0.025779226794838905, 0.013402084819972515, 0.011326253414154053, -0.03528912737965584, -0.022457897663116455, -0.01652880571782589, 0.007998436689376831, 0.013142605312168598, -0.020252326503396034, -0.009023378603160381, 0.002529919147491455, 0.018565714359283447, -0.029917916283011436, -0.02768639661371708, -0.004573315382003784, -0.030877986922860146, -0.010268877260386944, 0.008510907180607319, 0.00647724187001586, 0.013518850319087505, -0.022600611671805382, 0.025844097137451172, -0.01834515668451786, 0.004197070840746164, -0.0234439168125391, -0.03355062007904053, -0.01703478954732418, 0.03074824810028076, -0.010126163251698017, 0.0064188591204583645, 0.006120458245277405, -0.02193894051015377, 0.000880606472492218, 0.0028931896667927504, -0.01434918213635683, -0.011053800582885742, 0.0013874011347070336, -0.002865619957447052, 0.00976938009262085, 0.031215310096740723, -0.003691087244078517, 0.007447043899446726, 0.02235410548746586, -0.038792092353105545, 0.031656425446271896, 0.018435975536704063, 0.022652506828308105, 0.00753137469291687, 0.007622192148119211, 0.0009633153676986694, 0.012344707734882832, -0.031578581780195236, -0.0054458132945001125, -0.024546703323721886, 0.02035611867904663, 0.02602573297917843, 0.001210631220601499, 0.018046757206320763, 0.01455676555633545, -0.015750369057059288, -0.010528355836868286, -0.004112740512937307, 0.022873064503073692, 0.0020515050273388624, 0.000935745716560632, -0.010612686164677143, -0.0087444381788373, 0.0029337331652641296, -0.02893189527094364, 0.0014555143425241113, -0.020109614357352257, 0.009853710420429707, -0.005896657705307007, 0.010573764331638813, -0.009607206098735332, -0.016827205196022987, -0.025805175304412842, -0.030722299590706825, -0.024611571803689003, 0.00940610934048891, 0.007044851779937744, 0.026155471801757812, 0.008076280355453491, 0.02965843677520752, -0.020537754520773888, -0.003275920869782567, 0.028023719787597656, -0.0067529380321502686, 0.010242928750813007, 0.0049917250871658325, 0.03043687343597412, 0.015698472037911415, 0.00032901111990213394, -0.0017920261016115546, 0.024339118972420692, 0.0035159389954060316, 0.005601500626653433, 0.020187458023428917, -0.018435975536704063, -0.00692159915342927, -0.035937827080488205, -0.01204630732536316, 0.004028409719467163, 0.021536746993660927, -0.005419865250587463, -0.021329164505004883, 0.003151046810671687, 0.01930522918701172, 0.013908068649470806, 0.023885032162070274, -0.02498781681060791, -0.016658544540405273, -0.009003917686641216, 0.01734616421163082, 0.003762443782761693, 0.024001797661185265, -0.00973045825958252, -0.012286324985325336, 0.0032661904115229845, -0.021679461002349854, -0.015970924869179726, -0.009438544511795044, 0.006496702786535025, -0.005818814039230347, 0.0002096102834912017, 0.04333297535777092, 0.011060287244617939, -0.02727123163640499, 0.018358131870627403, -0.03295381739735603, 0.019214412197470665, 0.02047288417816162, 0.007466504815965891, 0.009639640338718891, -0.013389110565185547, -0.003353764535859227, -0.02016150951385498, -0.0042100450955331326, -0.01606174372136593, 0.0011563027510419488, 0.027400970458984375, -0.008997430093586445, -0.01438810396939516, -0.021368086338043213, -0.005056594964116812, -0.003820826532319188, -0.010820269584655762, 0.012390117160975933, 0.025636514648795128, 0.01818946935236454, -0.033265192061662674, -0.03557455539703369, 0.009269882924854755, -0.019992848858237267, 0.038247186690568924, 0.004479254130274057, 0.04177610203623772, 0.033083558082580566, 0.020732363685965538, -0.005620961543172598, -0.001180628896690905, -0.003710548160597682, -0.0009349348838441074, 0.025934914126992226, -0.0017466172575950623, 0.004420871380716562, -0.005757187958806753, -0.009341239929199219, -0.0031332075595855713, -0.017670512199401855, -0.04143877699971199, 0.023314177989959717, -0.0039667836390435696, -0.01885114051401615, -0.01896790601313114, 0.00893904734402895, -0.03163047507405281, 0.01988905668258667, -0.003632704494521022, 0.0075702965259552, -0.01846192218363285, 0.004621967673301697, -0.00211961823515594, 0.0006649146671406925, -0.0032661904115229845, -0.00745353102684021, 0.02830914594233036, -0.011047313921153545, -0.024222353473305702, 0.019837161526083946, -0.037520647048950195, 0.010774861089885235, -0.0028007503133267164, -0.0026434410829097033, -0.013116657733917236, 0.009166091680526733, 0.019175490364432335, 0.02043396234512329, -0.005666370037943125, 0.0023077402729541063, 0.00863416027277708, 0.021951913833618164, -0.02494889497756958, -0.018397053703665733, 0.014660556800663471, -0.005757187958806753, -0.0003768525493796915, 0.007927079685032368, -0.007661113981157541, -0.022769272327423096, -0.009827762842178345, -0.008919586427509785, 0.01834515668451786, 0.033187348395586014, 0.0018877089023590088, -0.011715471744537354, -0.012766361236572266, 0.009159605018794537, 0.009438544511795044, -0.0003373225627001375, -0.002401801524683833, -0.024806180968880653, -0.019084671512246132, -0.004651159048080444, 0.025636514648795128, -0.011767367832362652, 0.005199308041483164, -0.0033278167247772217, 0.01282474398612976, 0.04751058295369148, -0.008854717016220093, -0.0014555143425241113, -0.024689415469765663, 0.012007385492324829, -0.0052349865436553955, 0.022146522998809814, -0.010703504085540771, -0.01934415102005005, 0.02695985697209835, -0.016360143199563026, -0.0014214577386155725, -0.0175796952098608, -0.009951015003025532, 0.024533728137612343, 0.0006734288181178272, -0.010132650844752789, 0.007998436689376831, 0.022081652656197548, 0.02205570600926876, 0.008692543022334576, -0.017981886863708496, 0.01395996380597353, -0.023508787155151367, 0.010528355836868286, 0.0013330727815628052, -0.02529919147491455, -0.010586738586425781, -0.0042424798011779785, 0.013311266899108887, 0.003408903954550624, -0.03702763840556145, 0.0034348517656326294, -0.00047881962382234633, 0.017047762870788574, 0.0033002470154315233, 0.006603737827390432, -0.035937827080488205, -0.012000898830592632, -0.016982892528176308, 0.03225322440266609, 0.0029856290202587843, -0.005134438630193472, -0.002602897584438324, 0.02356068231165409, 0.02688201330602169, 0.018786272034049034, -0.0059128752909600735, -0.012493908405303955, 0.027245283126831055, -0.020693441852927208, -0.023067673668265343, -0.005779892206192017, 0.0024845104198902845, 0.046680252999067307, 0.017216423526406288, -0.010281850583851337, -0.03995974734425545, -0.01564657688140869, -0.016580700874328613, -0.00684375548735261, 0.0007938432390801609, 0.018864115700125694, 0.03085204027593136, 0.019006827846169472, -0.013518850319087505, 0.034510690718889236, -0.002954815747216344, 0.01892898418009281, -0.042502641677856445, 0.0051766037940979, 0.020771285519003868, 0.043774086982011795, 0.0033926863688975573, -0.0030423898715525866, -0.006230736616998911, -0.015322227962315083, -0.0013841576874256134, -0.0010006154188886285, 0.0017482390394434333, 0.008964995853602886, 0.0020693440455943346, -0.014128625392913818, -0.03995974734425545, 0.008121688850224018, -0.010405103676021099, 0.02035611867904663, 0.012610673904418945, -0.016619622707366943, -0.025130530819296837, -0.012571752071380615, 0.002768315374851227, -0.025623539462685585, 0.021770277991890907, -0.0035840522032231092, -0.02340499497950077, 0.016671517863869667, 0.00323862093500793, -0.01853976584970951, 0.02074533700942993, -0.017696460708975792, 0.02622034214437008, 0.0064512938261032104, 0.009548823349177837, 0.024507781490683556, -0.016892075538635254, 0.002213679254055023, -0.022107601165771484, 0.007868696935474873, -0.02981412410736084, 0.004583045840263367, 0.007985462434589863, 0.002680741250514984, -0.019979873672127724, -0.01648988388478756, 0.046057503670454025, -0.02213354967534542, -0.0014628121862187982, 0.00041638253605924547, -0.008530368097126484, -0.00637345016002655, 0.008958508260548115, -0.005095516797155142, 0.0006158569012768567, 0.005046864505857229, -0.005423108581453562, 0.0006243710522539914, 0.0016655301442369819, -0.02711554430425167, -0.03456258773803711, -0.015659550204873085, 0.028983792290091515, 0.005455543752759695, 0.013700485229492188, 0.006636172533035278, 0.014894087798893452, 0.02039504051208496, -0.033031661063432693, -0.010729451663792133, 0.18142764270305634, 0.002544514834880829, 0.01388212013989687, 0.02815345861017704, 0.008601725101470947, 0.023768266662955284, 0.006110727787017822, -0.02459859848022461, 0.0006036938284523785, 0.000916284800041467, -0.026207366958260536, 0.032694339752197266, -0.002619114937260747, 0.011008392088115215, 0.0223670806735754, 0.0025931671261787415, -0.0077908537350595, -0.03687195107340813, -0.018980881199240685, -0.013817250728607178, -0.010398616082966328, -0.00018173658463638276, -0.04125714302062988, -0.015309254638850689, 0.02622034214437008, 0.0006061264430172741, -0.012792308814823627, 0.020070692524313927, 0.021458903327584267, 0.0027553413528949022, -0.024001797661185265, 0.00408354913815856, -0.009334753267467022, 0.011274357326328754, -0.01576334238052368, -0.01911062002182007, 0.013934016227722168, 0.009788841009140015, 0.03220133110880852, -0.014180521480739117, -0.01156627107411623, -0.019629577174782753, -0.039414841681718826, -0.040219228714704514, 0.02151080034673214, -0.0007897888426668942, -0.009736944921314716, -0.01988905668258667, -0.0024699147325009108, 0.02680416963994503, 0.00498199462890625, -0.003892183303833008, 0.014582713134586811, 0.017242372035980225, -0.0039797574281692505, -0.006876190658658743, -0.01212415099143982, 0.015231410972774029, 0.01922738552093506, 0.01768348552286625, -0.008264402858912945, 0.047873854637145996, 0.0038629919290542603, 0.0291135311126709, -0.009230961091816425, 0.019331177696585655, -0.011118669994175434, 0.009795327670872211, -0.021147528663277626, 0.011741419322788715, -0.014011859893798828, 3.3397769584553316e-05, -0.0023304447531700134, 0.007284869905561209, -0.002437479794025421, -0.017748355865478516, 0.02324930764734745, 0.006538867950439453, 0.008880664594471455, 0.016243377700448036, -0.030073603615164757, -0.03331708908081055, -0.0012665813555940986, -0.015737393870949745, -0.036638420075178146, -0.01380427647382021, 0.019214412197470665, -0.012033333070576191, -0.01768348552286625, -0.021056711673736572, -0.015400071628391743, -0.02680416963994503, 0.002828319789841771, -0.012844204902648926, 0.02112158201634884, 0.014258365146815777, -0.016827205196022987, 0.024650493636727333, -0.0178780946880579, -0.003742982866242528, -0.031422894448041916, 0.04743273928761482, 0.01838407851755619, 0.02537703514099121, 0.006162623409181833, 0.01633419655263424, -0.0028331850189715624, 0.0014871383318677545, -0.01590605638921261, -0.010437537916004658, 0.00699944281950593, -0.016969919204711914, 0.014297286979854107, -0.010100215673446655, -0.01059971284121275, 0.0076740882359445095, -0.03393983840942383, -0.03471827507019043, 0.008043845184147358, 0.01027536392211914, 0.0003892183303833008, -0.013363162986934185, -0.015867134556174278, -0.007667601108551025, 0.009801815263926983, -0.008004923351109028, -0.03362846374511719, 0.00733676552772522, -0.030877986922860146, 0.0061561367474496365, -8.317768333654385e-06, -0.06590763479471207, 0.004420871380716562, -0.0001051092185662128, -0.0219778623431921, -0.02066749334335327, -0.01846192218363285, -0.03814339637756348, -0.011663575656712055, 0.020719388499855995, -0.002552623627707362, 0.00875092577189207, -0.01239660382270813, -0.01156627107411623, 0.020213404670357704, -0.03129315376281738, -0.0022217880468815565, -0.018864115700125694, 0.017320215702056885, -0.019162515178322792, -0.01861760951578617, -0.0009008782799355686, 0.005393917206674814, -0.02518242597579956, 0.005423108581453562, -0.008426576852798462, -0.010431051254272461, -0.028983792290091515, -0.00048409029841423035, 0.023534735664725304, -0.031267207115888596, 0.010690529830753803, 0.017709434032440186, -0.014569739811122417, -0.01853976584970951, -0.03710548207163811, -0.1625375747680664, 0.009230961091816425, 0.0010995417833328247, -0.017735382542014122, 0.021848121657967567, 0.004531150218099356, 0.002599654020741582, 0.008848230354487896, 0.0017579694977030158, -0.015867134556174278, 0.0011498158564791083, -0.006415615323930979, -0.004599263425916433, -0.011572758667171001, 0.018280288204550743, -0.012811769731342793, 0.0076935491524636745, 0.014141599647700787, 0.042113423347473145, 0.00897796917706728, 0.03440690040588379, -0.012156586162745953, 0.031838059425354004, 0.017047762870788574, 0.005624204874038696, -0.008763899095356464, -0.014219443313777447, 0.013324241153895855, -0.015672525390982628, -0.03448474407196045, -4.685316889663227e-05, 0.03336898609995842, 0.0003265785053372383, -0.0027488544583320618, 0.019331177696585655, 0.021108606830239296, -0.0007792475516907871, -0.022146522998809814, -0.030229290947318077, -0.008686055429279804, 0.03401768207550049, 0.012182533740997314, -0.012487421743571758, -0.02232815884053707, 0.0026823629159480333, 0.022380053997039795, 0.011903594247996807, -0.006902138236910105, 0.008076280355453491, -0.01179980207234621, 0.04213936999440193, -0.014478921890258789, -0.002429371001198888, -0.01019752025604248, 0.02903568744659424, -0.02420938014984131, -0.028127511963248253, 0.011287331581115723, -0.027167439460754395, 0.005429595708847046, 0.01889006234705448, -0.03445879742503166, -0.0091336565092206, 0.023923953995108604, -0.013570745475590229, -0.02363852597773075, -0.007875184528529644, -0.0034899909514933825, -0.030384978279471397, 0.006045857910066843, 0.010943521745502949, -0.010820269584655762, 0.0107943220064044, -0.008627672679722309, -0.01156627107411623, 0.003652165411040187, -0.01479029655456543, 0.013557772152125835, -0.023651501163840294, -0.010684043169021606, -0.01656772755086422, 0.0353669710457325, -0.0024845104198902845, -0.0028785939794033766, 0.02008366584777832, -0.0007301897858269513, 0.01594497822225094, 0.004287888761609793, -0.004764681216329336, -0.028568625450134277, 0.008504420518875122, -0.018358131870627403, -0.02154972217977047, -0.0006126134539954364, 0.009380161762237549, 0.0022380053997039795, 0.003151046810671687, -0.0027748022694140673, 0.01580226421356201, -0.02321038581430912, 0.009334753267467022, -0.02209462784230709, -0.032071590423583984, 0.015919029712677002, 0.023067673668265343, 0.015815237537026405, -0.01873437501490116, 0.034510690718889236, 0.01985013484954834, 0.024650493636727333, -0.0302811861038208, 0.008848230354487896, 0.013479928486049175, 0.03448474407196045, 0.005134438630193472, 0.014647583477199078, -0.010165085084736347, -0.025921940803527832, 0.02250979281961918, 0.022639533504843712, 0.008867691271007061, -0.005526900291442871, 0.01307124923914671, 0.0033245731610804796, 0.004339784383773804, -0.014336208812892437, -0.11313279718160629, -0.029762228950858116, 0.011676549911499023, 0.003483504056930542, 0.0195387601852417, 0.006422102451324463, -0.01869545318186283, 0.026596585288643837, 0.010288338176906109, 0.021718382835388184, 0.007596244569867849, 0.0032126728910952806, 0.0012544182827696204, -0.023041725158691406, -0.016749361529946327, 0.00038962377584539354, 9.705118281999603e-05, -0.0006243710522539914, -0.01834515668451786, 0.0414128303527832, 0.010859191417694092, -0.006509676575660706, -0.016074717044830322, -0.012636621482670307, -0.0033634949941188097, 0.008413602598011494, -0.03406957909464836, 0.010210494510829449, 0.008530368097126484, 0.00029556266963481903, -0.0025769497733563185, -0.01506274938583374, -0.008491446264088154, -0.013946990482509136, 0.019746342673897743, 0.018786272034049034, -0.0351593904197216, -0.017398059368133545, 0.027660449966788292, -0.01407672930508852, 0.014336208812892437, 0.013466954231262207, 0.017891069874167442, -0.015711447224020958, 0.012039820663630962, 0.005938822869211435, -0.024196406826376915, -0.005228499416261911, -0.016619622707366943, -0.008510907180607319, -0.0353669710457325, -0.0215886440128088, -0.0365346260368824, 0.0019250089535489678, 0.011164079420268536, 0.012072254903614521, 0.019279280677437782, 0.00866659451276064, -0.0011538701364770532, -0.00220557046122849, -0.017981886863708496, 0.004596019629389048, -0.0047095417976379395, 0.009127169847488403, -0.016866127029061317, 0.025156477466225624, -0.028516730293631554, -0.026324132457375526, 0.0494307279586792, -0.02695985697209835, -0.01711263321340084, 0.030696352943778038, -0.00992506742477417, 0.024896999821066856, -0.014920036308467388, 0.009834249503910542, -0.011345714330673218, 0.015970924869179726, 0.01733318902552128, -0.015750369057059288, -0.010340233333408833, -0.018565714359283447, -0.013428032398223877, -0.032850027084350586, 0.0254938006401062, 0.02348283864557743, 0.021951913833618164, -0.004777655005455017, 0.02885405160486698, -0.011657088994979858, 0.0032807860989123583, 0.013058274984359741, 0.017203450202941895, -0.0026888500433415174, 0.013583719730377197, -0.007427582982927561, 0.030073603615164757, -0.014167547225952148, -0.010891626589000225, -0.008653621189296246, -0.017813226208090782, -0.022003808990120888, -0.03489990904927254, -0.009464492090046406, -0.00012609052646439523, -0.00828386377543211, 0.005715022329241037, 0.00034887748188339174, 0.008180071599781513, -0.01711263321340084, -0.010216981172561646, -0.01853976584970951, -0.04255453869700432, 0.016982892528176308, -0.0164120402187109, -0.012422551400959492, -0.016853153705596924, -0.017475903034210205, 0.009756405837833881, -0.006778886076062918, 0.016580700874328613, 0.0008870934252627194, -0.02289901115000248, -0.008387655019760132, 0.016009846702218056, -0.00564690912142396, -0.019318202510476112, 0.010489434003829956, -0.01750185154378414, 0.00560798728838563, -0.012117664329707623, -0.04862634465098381, 0.011313279159367085, -0.0035516172647476196, -0.001852030516602099, 0.0168012585490942, -0.01594497822225094, -0.0021017789840698242, 0.01660664938390255, 0.025818148627877235, 0.031033674255013466, 0.017436981201171875, -0.02066749334335327, -0.023145517334342003, 0.01695694588124752, -0.004514932632446289, -0.002192596672102809, -0.013402084819972515, -0.01502382755279541, 0.003957053180783987, 0.00037766341120004654, -0.005462030414491892, 0.03004765510559082, 0.016347169876098633, 0.002062857151031494, -0.028802156448364258, 0.010424564592540264, -0.022652506828308105, 0.008141149766743183, -0.018448948860168457, -0.007284869905561209, -0.0171904768794775, 0.01580226421356201, -0.02629818581044674, 0.017047762870788574, -0.025636514648795128, 0.00576367462053895, -0.02799777127802372, -0.0013176662614569068, -0.004673863295465708, -0.004258697386831045, -0.013817250728607178, -0.017514824867248535, -0.013596693985164165, 0.012331734411418438, -0.005257690791040659, 0.04089387133717537, 0.009529362432658672, 0.00011007580906152725, 0.01568549871444702, -0.013123144395649433, 0.011112183332443237, 0.024118563160300255, 0.005601500626653433, -0.01772240735590458, -0.004774411674588919, 0.03990785405039787, 0.004268427845090628, -0.020109614357352257, -0.010865678079426289, -0.004994968418031931, 0.008614699356257915, 0.009399622678756714, -0.0004068547859787941, -0.03915536403656006, -0.00366838276386261, 0.012383629567921162, -0.0030959073919802904, -0.013466954231262207, 0.002246114192530513, 0.007667601108551025, 0.005578795913606882, 0.007245948072522879, -0.00663292920216918, -0.017398059368133545, -0.004346271511167288, -0.03726116940379143, -0.0029288679361343384, -0.006726989988237619, -0.001894195913337171, -0.0017871608724817634, 0.048833925276994705, -0.005860979203134775, 0.01384319830685854, 0.04216532036662102, 0.001601471216417849, -0.019759317860007286, 0.014608661644160748, -0.01746292971074581, -0.007849236018955708, -0.01311017107218504, 0.021225372329354286, 0.0022347618360072374, 0.0033667385578155518, 0.06684175878763199, -0.00692159915342927, 0.009003917686641216, 0.012883126735687256, 0.013609667308628559, 0.002249357523396611, 0.0006081536412239075, 0.004719272255897522, -0.009756405837833881, -0.007284869905561209, -0.03772823140025139, 0.009814788587391376, -0.0072394609451293945, -0.03954458236694336, 0.014621634967625141, 0.010139137506484985, 0.007901132106781006, 0.06274199485778809, -0.006126945372670889, -0.013985912315547466, 0.016243377700448036, 0.014608661644160748, 0.02854267694056034, 0.026700377464294434, -0.007583270315080881, -0.0025234322529286146, 0.0021309703588485718, 0.02020043134689331, 8.549626363674179e-05, 2.795289447021787e-06, -0.027011752128601074, -0.009555310010910034, 0.024429937824606895, -0.004213288426399231, 0.03510749340057373, -0.022886037826538086, 0.013739407062530518, 0.031656425446271896, 0.01772240735590458, 0.014167547225952148, -0.003616486908867955, -0.017514824867248535, 0.002585058333352208, 0.027816137298941612, -0.0017725651850923896, -0.023664474487304688, -0.027219334617257118, -0.012351195327937603, -0.007550835609436035, -0.014842192642390728, -0.007161617279052734, 0.02135511301457882, 0.019863108173012733, -0.0004674674419220537, -0.0022331401705741882, 0.010191033594310284, -0.0025201886892318726, 0.023547708988189697, -0.01263013482093811, -0.02248384617269039, -0.056255023926496506, -0.02869836427271366, -0.008932560682296753, -0.012896100990474224, 0.0033051122445613146, -0.04229505732655525], "95c352af-8078-4534-aad1-1124f88c56dd": [0.002896153135225177, 0.007415755186229944, 0.01447074394673109, -0.024278247728943825, -0.020055944100022316, -0.014096615836024284, -0.023209309205412865, -0.02474590763449669, -0.016728874295949936, -0.02819323167204857, -0.002846046583727002, 0.017624109983444214, -0.02811306156218052, 0.01896028220653534, -0.02048351801931858, 0.0011666453210636973, 0.007308861706405878, -0.019681815057992935, 0.000923628977034241, -0.005892519373446703, -0.004763453733175993, -0.0012150815455242991, -0.008604948408901691, -0.028513913974165916, -0.024986419826745987, 0.018412452191114426, -0.008838778361678123, -0.014430658891797066, 0.013101167976856232, -0.02602863311767578, -0.002607205882668495, -0.008317671716213226, -0.022501138970255852, -0.009526907466351986, -0.02311577834188938, 0.0172366201877594, -0.02741825208067894, -0.0086183100938797, 0.0006994025898166001, 0.015486234799027443, 0.047140154987573624, -0.00531462486833334, 0.0012392996577546, -0.0031099405605345964, -0.004863666370511055, 0.00870516151189804, 0.02614888921380043, -0.049732327461242676, -0.007155201863497496, 0.0226213950663805, 0.030731959268450737, 0.035274945199489594, -0.02363688498735428, -0.03115953505039215, 0.008778651244938374, 0.017677556723356247, 0.011263931170105934, 0.02244769223034382, -0.005034028552472591, 0.004015197511762381, 0.003477388061583042, -0.012693635188043118, -0.026977315545082092, -0.016782322898507118, -0.024812716990709305, 0.003270281245931983, 0.03604992479085922, 0.03337758034467697, -0.0009010810754261911, -0.0029462596867233515, 0.019427942112088203, 0.005625284742563963, 0.0027274612803012133, 0.014898319728672504, 0.039791207760572433, -0.018332282081246376, -0.00974737573415041, 0.0038615374360233545, -0.005414837505668402, 0.0051041776314377785, 0.005097496788948774, -0.016715513542294502, -0.013882828876376152, -0.0047434112057089806, 0.030438002198934555, -0.011136994697153568, -0.021191690117120743, 0.019895603880286217, -0.009981205686926842, -0.017022833228111267, 0.03682490438222885, -0.010983334854245186, 0.007315542548894882, 0.030277660116553307, 0.00036535956314764917, 0.014925043098628521, -0.015993980690836906, 0.024892887100577354, -0.01670215092599392, -0.02532046288251877, -0.011671463958919048, 0.01970853842794895, 0.0021245137322694063, -0.005915902089327574, -0.01520563941448927, 0.01974862441420555, 0.006306732539087534, -0.020042581483721733, 0.022233905270695686, -0.008498054929077625, -0.018652962520718575, 0.03578269109129906, -0.0026255783159285784, -0.043291978538036346, 0.03353792056441307, 0.004649878945201635, 0.017290066927671432, -0.012800528667867184, -0.03631715849041939, 0.0018673005979508162, 0.008685118518769741, -0.0013829381205141544, 0.020830923691391945, -0.023676970973610878, 0.044761765748262405, -0.021565819159150124, 0.019775347784161568, -0.01917407102882862, -0.03046472556889057, -0.0196684543043375, 0.017103003337979317, 0.017971515655517578, 0.001863960176706314, 0.008798693306744099, -0.017423685640096664, -0.003285313257947564, -0.024278247728943825, 0.005872476380318403, -0.011958740651607513, -0.007616181392222643, 0.018359005451202393, 0.00010110020957654342, -0.02125849947333336, -0.004643198102712631, -0.012259379029273987, 0.022808458656072617, 0.023743778467178345, 0.007135159336030483, -0.004168856889009476, 0.009653843939304352, 0.0049070920795202255, 0.014216871932148933, 0.0030698555056005716, -0.0034406431950628757, 0.01945466548204422, -0.0033003452699631453, -0.02028309367597103, 0.025601057335734367, 0.01630130037665367, -0.0036811542231589556, 0.037172310054302216, 0.02979663945734501, -0.015940533950924873, 0.005384773947298527, -0.01147103775292635, 0.033350855112075806, 0.03238881379365921, 0.0170762799680233, -0.03508787974715233, 0.015780193731188774, -0.014083254151046276, 0.018693048506975174, -0.019561560824513435, 0.015793554484844208, 0.011751634068787098, -0.01095661148428917, 5.052400956628844e-05, -0.001445571193471551, -0.026816975325345993, -0.0011599644785746932, 0.0004438596952240914, -0.00297632347792387, 0.0011115282541140914, 0.032656047493219376, -0.02105807326734066, -0.030518172308802605, 0.011170399375259876, 0.011751634068787098, -0.007362308446317911, 0.0037813670933246613, 0.0023900780361145735, 0.034580133855342865, -0.005682072136551142, -0.0021395457442849874, -0.6285353899002075, -0.02014947682619095, -0.014230233617126942, -0.0045229424722492695, -0.0023199289571493864, -0.00616643438115716, 0.007288819178938866, 0.013909552246332169, -0.026122165843844414, 0.03936363011598587, 0.0005353039596229792, 0.0032018024940043688, 0.015285809524357319, -0.008150650188326836, 0.02183305285871029, -0.029983703047037125, -0.0017553961370140314, -0.041394613683223724, -0.02101798728108406, 0.0004438596952240914, 0.00681447796523571, 0.03260260075330734, -0.009653843939304352, 0.012513251975178719, 0.0008313495782203972, 0.004088686779141426, 0.01018163189291954, -0.0024535460397601128, 0.014310403726994991, 0.02602863311767578, -0.003028100123628974, 0.0016743907472118735, -0.004920453764498234, 0.015419426374137402, 0.023864034563302994, 0.009099332615733147, -0.0018088429933413863, 0.004596432205289602, -0.00291452556848526, 0.04409367963671684, -0.025066589936614037, -0.005621944088488817, 0.03148021548986435, -0.009713971056044102, 0.008331033401191235, -0.02668335847556591, 0.011911974288523197, 0.008030395023524761, 0.004115410149097443, -0.010829675011336803, -0.01276712492108345, 0.013375082984566689, 0.011604654602706432, -0.015138830058276653, 0.02606871910393238, -0.001992566743865609, 0.014083254151046276, -0.005608582403510809, 0.003454004880040884, -0.03137332201004028, -0.007495925761759281, 0.005541773978620768, -0.006052859593182802, 0.005361390765756369, -0.007235371973365545, 0.028246678411960602, -0.005003964528441429, 0.014444020576775074, -0.0026940570678561926, 0.008070480078458786, 0.018399089574813843, 0.014029807411134243, -0.01628793776035309, -0.018505984917283058, 0.022474415600299835, 0.029288893565535545, 0.02240760624408722, -0.025093313306570053, 0.024558844044804573, 0.01731679029762745, 0.004479517228901386, -0.005364730954170227, -0.04454797878861427, -0.02014947682619095, 0.030598342418670654, -0.004015197511762381, -0.0028560678474605083, 0.019441304728388786, 0.013395125977694988, 0.010990016162395477, 0.02109815739095211, 0.05056075379252434, 0.007870053872466087, -0.027311358600854874, -0.004659900441765785, -0.006740988232195377, 0.001992566743865609, -0.0018121834145858884, 0.0021445562597364187, -0.02389075793325901, -0.0226213950663805, -0.02417135424911976, 0.04136788845062256, 0.011978783644735813, -0.005685412324965, 0.02470582351088524, -0.0008526448509655893, 0.022688202559947968, 0.016488363966345787, -0.01338176429271698, -0.021565819159150124, -0.009426694363355637, -0.008718523196876049, 0.00115495384670794, 0.005932604428380728, -0.02335628867149353, 0.032362088561058044, 0.007850010879337788, -0.0007340595475398004, -0.007749798242002726, 0.016140960156917572, 0.005281220190227032, -0.0004392665869090706, -0.014190148562192917, 0.01171822939068079, -0.009640482254326344, -0.0027274612803012133, -0.008224139921367168, -0.04740738868713379, -0.004462814889848232, 0.02080420032143593, 0.012058953754603863, -0.011544527485966682, -0.01757066324353218, -0.009192864410579205, -0.01781117543578148, -0.005698774009943008, -0.012727039866149426, 0.015780193731188774, -0.013495339080691338, -0.014216871932148933, 0.004158835858106613, 0.02006930485367775, -0.007181925233453512, 0.00397177180275321, -0.04152822867035866, -0.024652376770973206, 0.008685118518769741, -0.009520226158201694, 0.015820277854800224, 0.006928052753210068, -0.012713678181171417, -0.003276962088420987, 0.01741032302379608, 0.018412452191114426, -0.0008133947849273682, -0.01957492157816887, 0.004065303597599268, -0.00483360281214118, -0.01122384611517191, -0.015566405840218067, 0.03180089592933655, -0.022220542654395103, -0.01036201510578394, -0.01447074394673109, -0.0128472950309515, -0.03952397033572197, 0.020015858113765717, -0.020510243251919746, -0.04444108530879021, 0.002279843669384718, 0.006259966641664505, 0.011457676067948341, 0.011618017219007015, -0.01875985600054264, 0.03588958457112312, -0.02963629737496376, -0.000648878572974354, -0.002605535788461566, -0.01957492157816887, -0.005147603340446949, 0.014283680357038975, -0.006266647484153509, -0.011050143279135227, 0.017383599653840065, 0.02593510039150715, 0.012907423079013824, 0.008511416614055634, -0.0025587696582078934, -0.0025871633552014828, 0.030892299488186836, 0.0343129001557827, -0.02499978058040142, 0.014270318672060966, 0.002475258894264698, 0.0342327319085598, -0.004168856889009476, 0.015553044155240059, 0.02934234030544758, 0.047353941947221756, 0.027351444587111473, 0.018278835341334343, 0.004145474173128605, -0.02700403891503811, -0.014791425317525864, -0.027658764272928238, 0.013936275616288185, 0.006457051727920771, 0.027605315670371056, -0.009520226158201694, 0.01822538860142231, -0.03230864182114601, -0.028674254193902016, -0.012914103455841541, 0.00869848020374775, 0.0013553795870393515, -0.005391454789787531, 0.014390573836863041, -0.0022380882874131203, -0.0029295573476701975, 0.0009503524634055793, -0.00265731243416667, 0.02660318650305271, 0.00031525312806479633, -0.020456794649362564, 0.006487115751951933, 0.023757141083478928, -0.011163718067109585, -0.022060202434659004, -0.03246898204088211, 0.009633800946176052, -0.012072315439581871, 0.033564645797014236, -0.007936862297356129, 0.028086338192224503, 0.015138830058276653, 0.03613009303808212, -0.016448279842734337, 0.03420600667595863, 0.006229902617633343, -0.03837486356496811, 0.015820277854800224, 0.023717055097222328, -0.016140960156917572, 0.002035992220044136, 0.012987593188881874, 0.032121580094099045, 0.014844872057437897, 0.005060751922428608, 0.022501138970255852, 0.006373540963977575, -0.0018355664797127247, -0.0005762242362834513, 0.002537056803703308, -0.018946921452879906, 0.009613758884370327, 0.0035508775617927313, 0.014390573836863041, 0.019601644948124886, 0.005809008609503508, -0.0015649916604161263, -0.00030982491443865, 0.02335628867149353, 0.022033479064702988, 0.017129726707935333, 0.012099038809537888, -0.017209896817803383, -0.03872226923704147, -0.009546949528157711, -0.01137082464993, -0.031186258420348167, -0.03808090463280678, -0.0015324223786592484, 0.01389619056135416, 0.016314661130309105, -0.003079876769334078, -0.021619265899062157, 0.023997651413083076, 0.02971646934747696, -0.011871889233589172, -0.021004626527428627, 0.006330115720629692, 0.023797225207090378, 0.015553044155240059, 0.00023863199749030173, -0.015659937635064125, -0.010048014111816883, 0.004786836914718151, -0.00163931620772928, 0.014751340262591839, -0.015152191743254662, 0.009854269213974476, 0.00974737573415041, -0.001847257954068482, -0.007322223391383886, -0.019922327250242233, 0.024692460894584656, 0.010088100098073483, 0.006156413350254297, 0.010041333734989166, -0.00794354360550642, -0.0011491080513224006, 0.0020627158228307962, -0.001026347279548645, 0.05328654497861862, 0.004416048992425203, 0.02072403021156788, -0.03041127882897854, 0.019695177674293518, 0.0060361577197909355, -0.0066474564373493195, -0.01215248554944992, -0.03575596585869789, -0.02101798728108406, 0.036637838929891586, -0.01292746514081955, 0.008578225038945675, -0.005672050639986992, 0.03260260075330734, 0.012740401551127434, -0.007469202391803265, -0.0016877524321898818, -0.010502313263714314, -0.0003311201580800116, 0.044387638568878174, 0.013000954873859882, -0.0016192735638469458, 0.012833933345973492, -0.029502680525183678, -0.009553630836308002, -0.02520020678639412, -0.01847926154732704, 0.012820571660995483, 0.0064336690120399, 0.008224139921367168, -0.0126869548112154, 0.01576683111488819, -0.0026957273948937654, 0.009907716885209084, 0.009166141040623188, -0.02196666970849037, -0.017249982804059982, 0.007522649131715298, -0.018572792410850525, 0.03303017467260361, 0.013528742827475071, 0.01114367600530386, 0.002289864933118224, -0.017637472599744797, -0.013802657835185528, 0.015379341319203377, -0.007870053872466087, 0.0071952869184315205, -0.04019205644726753, -0.020456794649362564, 0.017971515655517578, 0.018238749355077744, 0.019788708537817, -0.00903252325952053, 0.021939946338534355, 0.02355671487748623, 0.029502680525183678, 0.01344189140945673, -0.020670583471655846, 0.002988015068694949, 0.024358417838811874, 0.0066006905399262905, -0.018973644822835922, -0.0337517075240612, -0.0059025404043495655, -0.0073289042338728905, 0.02642948552966118, -0.013502019457519054, 0.00016096698527690023, -0.004382644779980183, -0.009687247686088085, -0.03698524460196495, -0.022928714752197266, -0.013635636307299137, 0.012813891284167767, 0.003988473676145077, -0.023383012041449547, -0.02068394422531128, -0.03303017467260361, -0.008578225038945675, -0.015392703004181385, 0.023757141083478928, 0.005317965056747198, -0.0016935982275754213, -0.014363850466907024, -0.017637472599744797, 0.012934146448969841, -0.009713971056044102, 0.004409368149936199, 0.00870516151189804, -0.044307466596364975, -0.015873724594712257, -0.008765289559960365, 0.010148227214813232, 0.019628368318080902, -0.014337127096951008, -0.002971312729641795, 0.010081418789923191, 0.009326481260359287, -0.01765083335340023, -0.025667866691946983, -0.013602232560515404, -0.025387270376086235, -0.025627782568335533, -0.009440056048333645, -0.0033838560339063406, 0.012727039866149426, -0.025788122788071632, 0.014430658891797066, -0.010662653483450413, -0.00170111411716789, -0.006006093695759773, -0.03559562563896179, -0.0020860987715423107, 0.03482064604759216, -0.004890390206128359, 0.011183761060237885, 0.03516805171966553, -0.002213035011664033, -0.0013821030734106898, -0.018372366204857826, -0.0196684543043375, -0.007629543077200651, 0.01567329838871956, 0.003230196190997958, 0.00689464807510376, 0.011791719123721123, -0.006390243303030729, -0.020697306841611862, 0.006553924176841974, -0.023717055097222328, 0.013642317615449429, 0.025748036801815033, 0.02196666970849037, 0.004686623811721802, -0.008778651244938374, 0.021605903282761574, -0.004810219630599022, -0.007589457556605339, 0.005384773947298527, -0.02064386010169983, 0.014363850466907024, 0.009386609308421612, 0.00802371371537447, 0.011157037690281868, 0.0042289849370718, -0.026335952803492546, -0.0018222047947347164, 0.008391161449253559, 0.02085764706134796, 0.0053547099232673645, 0.007769841235131025, -0.0014071562327444553, -0.01970853842794895, 0.006249945145100355, -0.03629043698310852, 0.019628368318080902, -0.02212700992822647, -0.003200132166966796, -0.0039450484327971935, 0.002289864933118224, -0.011537846177816391, -0.018278835341334343, -0.0055350931361317635, -0.03198796138167381, -0.002273162826895714, 0.0060829236172139645, 0.026696719229221344, 0.003771345829591155, 0.003544196719303727, 0.02339637465775013, -0.03137332201004028, 0.0021445562597364187, -0.002533716382458806, -0.02422480098903179, -0.0025537589099258184, 0.010455546900629997, 0.04019205644726753, 0.01925424113869667, 0.00853813998401165, 0.0044928789138793945, 0.04083342105150223, 0.01884002797305584, 0.0046565597876906395, 0.019962411373853683, -0.010535717010498047, -0.009466779418289661, -0.010328610427677631, -0.005294582340866327, 0.012533294968307018, 0.01440393552184105, 0.0020309817045927048, -0.006981499493122101, 0.0013411827385425568, 0.034125834703445435, 0.02204683981835842, 0.027765657752752304, -0.016475003212690353, -0.002655642107129097, -0.004385984968394041, 0.018652962520718575, 0.008658395148813725, 0.02393084391951561, -0.01481814868748188, 0.010108142159879208, 0.02466573752462864, -0.0054883272387087345, -0.00185727933421731, -0.004365942440927029, -0.003891601460054517, -0.012827252969145775, 0.012219293974339962, 0.02369033172726631, 8.095324301393703e-05, -0.022995522245764732, -0.004840283654630184, -0.017022833228111267, 0.021245136857032776, 0.005201050080358982, -0.00010538013884797692, 0.028620807453989983, -0.02101798728108406, -0.0018439175328239799, -0.03276294097304344, 0.0031233024783432484, -0.0036110051441937685, -0.01050899364054203, 0.007034946233034134, -0.026456208899617195, -0.0231024157255888, -0.009306439198553562, -0.012553337030112743, -0.005545114167034626, -0.006256625987589359, 0.014003084041178226, 0.026950592175126076, 0.010482270270586014, -0.03329740837216377, -0.017423685640096664, 0.00872520450502634, 0.006186476908624172, 0.04609793797135353, 0.010475589893758297, 0.05213743820786476, 0.027738934382796288, 0.016140960156917572, -0.01258006040006876, -0.022380882874131203, 0.009954482316970825, 0.012660231441259384, 0.025707952678203583, -1.4770965208299458e-05, -0.011243888176977634, -0.0007946048863232136, -0.023048968985676765, 0.008812054991722107, -0.020830923691391945, -0.020536966621875763, 0.007956905290484428, -0.011437633074820042, -0.02196666970849037, -0.0198688805103302, 0.010615888051688671, -0.03546200692653656, 0.03316379338502884, -0.01378929615020752, -0.005000624340027571, -0.020536966621875763, -0.021766243502497673, -0.0013411827385425568, 0.014524191617965698, 0.0023750460240989923, 0.018078409135341644, 0.003594303037971258, -0.0006501312600448728, -0.02220718190073967, 0.00409536762163043, -0.05569165572524071, 0.030304383486509323, 0.003330409061163664, 0.008264224976301193, -0.025868292897939682, 0.013735849410295486, 0.016434917226433754, 0.00418555922806263, -0.014925043098628521, 0.0020744071807712317, -0.002774227410554886, 0.029369063675403595, -0.01612759754061699, -0.01884002797305584, 0.01268027350306511, -0.014697893522679806, -0.0068345204927027225, 0.01683576963841915, -0.022461052983999252, -0.00923294946551323, 0.001580858719535172, -0.011564569547772408, 0.03364481404423714, 0.019922327250242233, -0.02032317779958248, -0.006243264302611351, -0.011611335910856724, 0.020229646936058998, 0.003701196750625968, -0.029609574005007744, 0.011263931170105934, -0.015833640471100807, -0.030224213376641273, -0.012887380085885525, 0.014444020576775074, 0.02442522719502449, 0.011230526491999626, -0.012473166920244694, 0.006283349357545376, 0.03244226053357124, -0.005788965616375208, 0.016528449952602386, -0.006677520461380482, 0.010121503844857216, -0.0029980363324284554, 0.0059493063017725945, -0.019427942112088203, -0.007703032344579697, 0.025467440485954285, -0.024238161742687225, -0.007355627603828907, -0.018091769888997078, -0.002655642107129097, 0.029823362827301025, -0.012359592132270336, -0.024852801114320755, 0.012346230447292328, 0.033110346645116806, 0.018372366204857826, -0.008277586661279202, -0.0156198525801301, 0.013909552246332169, 0.0011666453210636973, 0.00235500349663198, 0.002184641547501087, -0.006714264862239361, 0.008838778361678123, -0.012246017344295979, 0.007215329445898533, 0.0128472950309515, 0.0037913883570581675, -0.0033020153641700745, -0.01731679029762745, 0.004145474173128605, -0.010301887057721615, 0.003413919825106859, -0.04043256863951683, -0.008090522140264511, -0.007522649131715298, 0.04409367963671684, 0.008812054991722107, -0.004930475261062384, 0.0073823509737849236, 0.022795096039772034, 0.0060829236172139645, 0.011050143279135227, 0.0005666204961016774, -0.012246017344295979, 0.008317671716213226, -0.023503268137574196, -0.002896153135225177, -0.024719184264540672, -0.007048307918012142, 0.04631172493100166, 0.025387270376086235, -0.019321048632264137, -0.027685487642884254, -0.02133866958320141, -0.020496880635619164, -0.021084796637296677, -0.01068937685340643, 0.024198077619075775, 0.0337517075240612, 0.022193819284439087, -0.02939578704535961, 0.03575596585869789, -0.009607077576220036, 0.027845827862620354, -0.04724704846739769, -0.0020543646533042192, 0.012673593126237392, 0.02512003667652607, -0.015566405840218067, -0.008397841826081276, -0.005294582340866327, -0.024812716990709305, 0.008999119512736797, -0.007589457556605339, 0.027899274602532387, 0.010976654477417469, -0.017276706174016, -0.013328317552804947, -0.02910182997584343, 0.001143262255936861, 0.013147934339940548, 0.015940533950924873, 0.00896571483463049, -0.010595845058560371, -0.0038014098536223173, -0.006540562491863966, 0.014109977521002293, -0.019401218742132187, 0.002907844725996256, 0.007936862297356129, -0.031132811680436134, -0.0005131736397743225, 0.013829382136464119, -0.013615594245493412, 0.008484693244099617, -0.032281920313835144, 0.02192658558487892, -0.010048014111816883, 0.0231024157255888, 0.04075324907898903, -0.01974862441420555, 0.011357462964951992, -0.022554585710167885, 0.012914103455841541, -0.025226930156350136, 0.0052678585052490234, 0.012312826700508595, 0.014537553302943707, -0.02113824337720871, -0.008912268094718456, 0.042463552206754684, -0.019802071154117584, 0.011163718067109585, -0.004058622755110264, -0.003415590152144432, -0.0257346760481596, 0.015873724594712257, 0.016394833102822304, -0.010990016162395477, 0.009607077576220036, 0.020430071279406548, 0.006310072727501392, 0.002906174398958683, -0.03866882249712944, -0.007616181392222643, -0.005070773418992758, 0.007990309037268162, 0.001012985478155315, 0.012640188448131084, 0.010903164744377136, 0.015446149744093418, 0.02524029091000557, -0.029422510415315628, 0.00677105225622654, 0.17958153784275055, -0.011891932226717472, 0.012072315439581871, 0.024291610345244408, 0.006179796066135168, 0.0030481426510959864, 0.014069892466068268, -0.01500521320849657, -0.005344688426703215, 0.011036781594157219, -0.01846589893102646, 0.02442522719502449, -0.013468614779412746, 0.00869848020374775, 0.0057689230889081955, -0.0043759639374911785, -0.001610087463632226, -0.02819323167204857, -0.013802657835185528, 0.010983334854245186, -0.008792012929916382, -0.004830262158066034, -0.018492622300982475, -0.012713678181171417, 0.01741032302379608, -0.011691506020724773, 0.007883415557444096, 0.015325894579291344, 0.011337420903146267, -0.0054883272387087345, -0.018786581233143806, 0.01674223691225052, -0.00982754584401846, -0.0027358124498277903, -0.016715513542294502, -0.010295206680893898, 0.024612290784716606, 0.005434880033135414, 0.0170361939817667, -0.0024585567880421877, 0.006587328854948282, -0.029369063675403595, -0.0226213950663805, -0.02355671487748623, 0.01822538860142231, -0.02757859230041504, -0.010729461908340454, -0.03559562563896179, -0.009012481197714806, 0.029983703047037125, -0.019681815057992935, -0.015072021633386612, 0.014871596358716488, 0.014631085097789764, -0.022554585710167885, -0.004937156103551388, 0.0022414287086576223, -0.0062332432717084885, 0.022020116448402405, 0.023503268137574196, 0.014003084041178226, 0.026041995733976364, -0.01102341990917921, 0.014003084041178226, -0.0026506315916776657, 0.019735261797904968, -0.03217502683401108, 0.014484105631709099, -0.04091358929872513, -0.004182218573987484, -0.0020627158228307962, 0.01520563941448927, -0.004479517228901386, -0.010188312269747257, -0.006203179247677326, -0.007502606604248285, 0.01553968247026205, 0.013415168039500713, 0.012038910761475563, 0.02478599362075329, -0.03180089592933655, -0.01319469977170229, -0.02028309367597103, 0.013962998986244202, -0.05574510246515274, -0.01604742743074894, 0.01896028220653534, -0.010435504838824272, -0.01604742743074894, -0.015953894704580307, -0.0006254955660551786, -0.017918068915605545, 0.00012798023817595094, -0.007495925761759281, 0.009840907528996468, 0.007983628660440445, 0.00358094135299325, 0.018572792410850525, -0.04043256863951683, -0.0031099405605345964, -0.010569121688604355, 0.04112737998366356, 0.01274708192795515, 0.017343513667583466, 0.0029830043204128742, -0.010495631955564022, 0.0076429047621786594, -0.01695602387189865, 0.003931686747819185, -0.01933441124856472, -0.010201673954725266, -0.013221423141658306, 0.005378093104809523, -0.011671463958919048, 0.017584025859832764, -0.007890096865594387, -0.017103003337979317, -0.026937229558825493, 0.006266647484153509, -0.0019558218773454428, 0.005672050639986992, -0.01551295816898346, -0.021859776228666306, -0.023610161617398262, 0.005244475789368153, -0.010061375796794891, -0.04198252782225609, 0.00043300329707562923, -0.0033003452699631453, 0.017022833228111267, 0.02606871910393238, -0.03896278142929077, 0.02125849947333336, -0.0065672858618199825, -0.00370453717187047, -0.024291610345244408, -0.020964540541172028, -0.01925424113869667, -0.0065305414609611034, 0.00421896344050765, -0.006493796594440937, 0.012760443612933159, -0.024371780455112457, -0.0019975772593170404, 0.015058659948408604, -0.006791094783693552, 0.019775347784161568, 0.0008259214228019118, -0.0006572296842932701, -0.02363688498735428, -0.015259086154401302, 0.011958740651607513, 0.004041920881718397, -0.04259716719388962, 0.023823948577046394, -0.026135526597499847, -0.019107261672616005, -0.006249945145100355, 0.013555466197431087, 0.003337089903652668, -0.033724986016750336, -0.000346360873663798, -0.008544821292161942, -0.01596725732088089, -0.01806504651904106, -0.009874312207102776, -0.16793011128902435, 0.004783496260643005, -0.018318919464945793, -0.011571250855922699, 0.02405109815299511, 0.005020666867494583, 0.026496293023228645, -0.00923963077366352, 0.005525071639567614, -0.013695764355361462, -0.01551295816898346, -0.012259379029273987, -0.017677556723356247, -0.02634931541979313, 0.007141840178519487, 0.005515050608664751, -0.0023867373820394278, 0.018078409135341644, 0.04203597456216812, 0.020844286307692528, 0.04938492178916931, 0.005889178719371557, 0.04337214678525925, 0.011524484492838383, -0.00767630897462368, -0.003654430853202939, -0.002988015068694949, -0.0029262169264256954, -0.016648704186081886, -0.022220542654395103, 0.015526319853961468, 0.02060377411544323, -0.006156413350254297, -0.0006568121025338769, 0.008137288503348827, -0.01666206680238247, -0.003828133223578334, -0.022073563188314438, -0.01814521849155426, -0.00780992629006505, 0.03968431428074837, 0.021031349897384644, -0.011524484492838383, -0.009780780412256718, -0.0019641730468720198, 0.013288231566548347, 0.019601644948124886, -0.028594084084033966, 0.011524484492838383, 0.007242052815854549, 0.03025093674659729, -0.012119080871343613, -0.0005582694429904222, -0.016328023746609688, 0.030972469598054886, 0.0013269860064610839, -0.027685487642884254, 0.022233905270695686, -0.01010146178305149, -0.007315542548894882, 0.009199544787406921, -0.020349901169538498, 0.010843036696314812, 0.019508114084601402, 0.006610711570829153, -0.010903164744377136, -0.011243888176977634, 0.015098745003342628, -0.0229821614921093, 0.007489244919270277, -0.0017069599125534296, -0.006831180304288864, 0.03714558482170105, -0.007963585667312145, -0.003286983584985137, 0.009693928994238377, 2.8993890737183392e-05, 0.019681815057992935, -0.01010146178305149, -0.02381058782339096, 0.012259379029273987, 0.02200675569474697, 0.005127560812979937, -0.00931980088353157, 0.016528449952602386, -0.00811056513339281, 0.014550914987921715, 0.02343645878136158, -0.02331620454788208, -0.021899862214922905, 0.024371780455112457, -0.01814521849155426, -0.01834564283490181, -0.003761324565857649, 0.02139211632311344, 0.006410285830497742, 0.01741032302379608, -0.011263931170105934, 0.027685487642884254, -0.030919022858142853, 0.01440393552184105, -0.03086557611823082, -0.018853388726711273, 0.003398887813091278, 0.031106088310480118, 0.016688790172338486, -0.021044710651040077, 0.01646164059638977, 0.012800528667867184, 0.010829675011336803, -0.047754790633916855, -0.00702826539054513, 0.012874018400907516, 0.034179285168647766, -0.0033638132736086845, 0.007081712130457163, -0.015339256264269352, -0.01600734144449234, 0.010896483436226845, 0.004977241158485413, 0.021980032324790955, 0.00890558771789074, -0.0044761765748262405, 0.02557433396577835, 0.0055350931361317635, -0.014150062575936317, -0.11309360712766647, -0.03193451464176178, -0.0016059118788689375, 0.009713971056044102, 0.021859776228666306, 0.0058858380652964115, -0.015219001099467278, 0.008812054991722107, 0.006156413350254297, 0.04136788845062256, -0.005578518845140934, 0.017223259434103966, 0.001393794547766447, 0.0017002790700644255, -0.01481814868748188, 0.001707795076072216, -0.013161296024918556, -0.003894941881299019, -0.014510829001665115, 0.01896028220653534, 0.02713765576481819, -0.007816607132554054, 0.009326481260359287, 0.020951179787516594, -0.0038047502748668194, 0.004669921472668648, -0.031426768749952316, 0.006620733067393303, -0.00542819919064641, 0.015579767525196075, 0.010275163687765598, -0.016314661130309105, 0.011704867705702782, -0.0069146910682320595, 0.014043169096112251, 0.0026305888313800097, -0.03278966620564461, -0.006961456965655088, 0.013415168039500713, -0.0035575584042817354, 0.014524191617965698, 0.003480728482827544, -0.021619265899062157, 0.01741032302379608, -0.0061998385936021805, 0.004770134575664997, -0.02113824337720871, -0.012038910761475563, -0.021886499598622322, -0.019147347658872604, -0.048823729157447815, -0.027471698820590973, -0.01945466548204422, 0.019815433770418167, 0.011377505958080292, 0.0013436881126835942, 0.00999456737190485, 7.776939310133457e-05, 0.00855818297713995, 0.00031170391594059765, -0.017597386613488197, 0.0009420013520866632, -0.025560973212122917, 0.010983334854245186, 0.006183136720210314, 0.02373041771352291, -0.019187431782484055, 0.005050730891525745, 0.011952060274779797, -0.020964540541172028, -0.020456794649362564, 0.008945672772824764, -0.0196684543043375, 0.026362676173448563, -0.015713384374976158, 0.014925043098628521, -0.0038481757510453463, 0.0010856398148462176, -0.0026957273948937654, 0.005378093104809523, -0.018091769888997078, -0.01258006040006876, 0.01149108074605465, -0.006867924705147743, 0.020844286307692528, 0.026950592175126076, 0.020697306841611862, -0.00496722012758255, 0.01994905062019825, -0.017757728695869446, 0.0017503855051472783, 0.0017754387808963656, 0.037172310054302216, -0.010288525372743607, -0.015219001099467278, -0.02151237241923809, 0.017022833228111267, -0.014884958043694496, -0.004803538788110018, -0.007482564076781273, -0.03188106790184975, -0.0019107261905446649, -0.034660305827856064, -0.005201050080358982, -0.02757859230041504, -0.016982747241854668, 0.01370912604033947, -0.0006409451016224921, 0.022567948326468468, -0.028994934633374214, 0.006213200278580189, -0.011157037690281868, -0.03348447382450104, 0.010475589893758297, -0.009947801940143108, -0.004115410149097443, -0.0024585567880421877, -0.030144043266773224, -0.0007829133537597954, -0.009921078570187092, 0.01389619056135416, 0.012212613597512245, -0.02450539730489254, -0.004980581812560558, 0.00890558771789074, -0.006477094255387783, -0.027845827862620354, 0.005802327301353216, 0.00025846579228527844, 0.02351662889122963, -0.027551868930459023, -0.04305146634578705, -0.003226855769753456, -0.010522355325520039, -0.015018574893474579, 0.012840614654123783, 0.006831180304288864, 0.0009069268126040697, 0.014417297206819057, 0.028700977563858032, 0.017249982804059982, 0.01584700122475624, -0.021071434020996094, -0.0335111990571022, -0.0061998385936021805, 0.006537222303450108, -0.002423482248559594, -0.018372366204857826, -0.018519345670938492, 0.006610711570829153, 0.004152155015617609, 0.02133866958320141, 0.04999956116080284, 0.008184053935110569, -0.012720358557999134, -0.00905256625264883, 0.016354747116565704, -0.028834594413638115, 0.005044050049036741, -0.022180456668138504, 0.008404523134231567, -0.021579179912805557, 0.042009253054857254, -0.008397841826081276, 0.002924546832218766, -0.02926217019557953, 0.014991851523518562, -0.024492034688591957, -0.01122384611517191, 0.0013879488687962294, -0.0025504184886813164, -0.010114823468029499, -0.011978783644735813, -0.004469495732337236, 0.015392703004181385, -0.013314954936504364, 0.046365171670913696, -0.016328023746609688, -0.02377050183713436, 0.016314661130309105, -0.007716394029557705, 0.00915277935564518, 0.04826253652572632, 0.010228397324681282, -0.018572792410850525, 0.012954188510775566, 0.03677145764231682, 0.012586741708219051, -0.028700977563858032, -0.015860363841056824, 0.011597974225878716, 0.007990309037268162, -0.005244475789368153, -0.006644115783274174, -0.050587479025125504, -0.008598268032073975, 0.016568534076213837, 0.006714264862239361, -0.005932604428380728, 0.006463732570409775, 0.0004872852878179401, 0.0072487336583435535, 0.027819104492664337, -0.010769547894597054, -0.03241553530097008, 0.001040544011630118, -0.0394170768558979, 0.010682696476578712, -0.011838485486805439, -0.016555173322558403, 0.003200132166966796, 0.061143238097429276, -0.009820865467190742, 0.030838852748274803, 0.022193819284439087, 0.004512921441346407, -0.021939946338534355, 0.008878864347934723, 0.0170762799680233, -0.011197122745215893, -0.005411497317254543, 0.01735687628388405, -0.01481814868748188, -0.0036043243017047644, 0.04639189690351486, -0.012012187391519547, 0.013522062450647354, -0.00740907434374094, 0.029155276715755463, -0.01670215092599392, 0.0019424603087827563, 0.00445279385894537, -0.01731679029762745, -0.017584025859832764, -0.0284871906042099, -0.017864622175693512, -0.014190148562192917, -0.028433743864297867, 0.01563321426510811, 0.003985133487731218, 0.006323434878140688, 0.08166684210300446, 0.01620776765048504, 0.009854269213974476, 0.014096615836024284, 0.000865171488840133, 0.034499965608119965, 0.020617136731743813, -0.004963879473507404, -0.012546656653285027, -0.04708670452237129, 0.010782909579575062, -0.011304016225039959, -0.022100286558270454, -0.033110346645116806, 0.0018171941628679633, 0.008157330565154552, 0.00595264695584774, 0.02369033172726631, -0.038107629865407944, -0.002365024760365486, 0.02654973976314068, -0.000539897067938, 0.015740107744932175, 0.01735687628388405, -0.027658764272928238, 0.015072021633386612, 0.026335952803492546, 0.006223221775144339, -0.038027457892894745, -0.050801265984773636, -0.012025549076497555, -0.019802071154117584, -0.045242790132761, -0.020096028223633766, -0.009901035577058792, 0.011397548019886017, -0.004098708275705576, -0.005849093664437532, 0.03086557611823082, 0.010348653420805931, 0.007823287509381771, 0.015178915113210678, -0.018693048506975174, -0.018131855875253677, -0.006734307389706373, 0.004112069960683584, -0.017757728695869446, 0.013842743821442127, -0.045296236872673035], "2cad634c-c9c9-4205-9361-baa79a34008c": [0.011042543686926365, 0.00452942680567503, 0.007326430641114712, -0.035547733306884766, -0.02213798649609089, 0.013687464408576488, -0.010387926362454891, -0.027507174760103226, -0.0341988243162632, -0.006126297637820244, 0.008146355859935284, 0.016596877947449684, -0.022627297788858414, 0.025668956339359283, -0.006341197527945042, 0.01897730678319931, 0.01393873244524002, -0.011822795495390892, -0.001286919228732586, 0.008979505859315395, 0.00033991364762187004, 0.009746532887220383, -0.017615173012018204, -0.027771668508648872, -0.02211153693497181, 0.017284557223320007, 0.00013110954023431987, -0.010249068029224873, 0.006284992676228285, -0.03620896488428116, 0.019506290555000305, 0.001704320777207613, -0.024412618950009346, -0.009653960354626179, -0.016676224768161774, 0.034595564007759094, -0.0008860484231263399, -0.016200140118598938, 0.008027334697544575, -0.007623984012752771, 0.041445907205343246, 0.0028465958312153816, -0.0022630603052675724, -0.00902579165995121, -0.016385283321142197, 0.0130857452750206, 0.018487995490431786, -0.0358915738761425, 0.0005269178072921932, 0.011049156077206135, 0.01909632794559002, 0.037637222558259964, -0.02322240360081196, -0.01703329011797905, -0.002225039526820183, 0.006681730970740318, 0.014771882444620132, 0.03721403330564499, -0.000981100252829492, 0.00010176745854550973, 0.007220633793622255, -0.010744990780949593, -0.009204324334859848, 0.0007711597136221826, 0.005180738400667906, 0.023248853161931038, 0.030443036928772926, 0.017337456345558167, -0.011617814190685749, 0.00527331093326211, 0.030548835173249245, 0.020260093733668327, -0.005306372418999672, -0.0026184716261923313, 0.03911837935447693, -0.013687464408576488, -0.005633681081235409, 0.013740363530814648, 0.01297333650290966, 0.01691426895558834, -0.009687022306025028, -0.02811550721526146, -0.00777606712654233, 0.005051798652857542, 0.016755573451519012, -0.026594677940011024, -0.0021556103602051735, 0.009158037602901459, 0.009270447306334972, -0.024862254038453102, 0.04178974777460098, 0.0030532304663211107, 0.01610756665468216, 0.022852115333080292, -0.002297774888575077, 0.015763727948069572, -0.011214463971555233, 0.042768366634845734, -0.0007542156963609159, -0.016610102728009224, -0.0029904134571552277, 0.012067451141774654, -0.009085303172469139, 0.0023738164454698563, -0.003921094816178083, 0.002506062388420105, 0.019757557660341263, -0.020312990993261337, -0.0032896201591938734, -0.019770782440900803, -0.022600848227739334, 0.04223938286304474, 0.006410626694560051, -0.040414389222860336, 0.010652418248355389, 0.0052534737624228, 0.02885608561336994, -0.011849245056509972, -0.02223055809736252, -0.005332821514457464, 0.02496805228292942, 0.00501212477684021, 0.02601279504597187, -0.02396298199892044, 0.04012344777584076, -0.02110646665096283, 0.026621127501130104, -0.026290511712431908, -0.012431127019226551, -0.018620241433382034, 0.033458247780799866, 0.01616046577692032, -0.008285214193165302, 0.021516429260373116, -0.003183823311701417, 0.015724053606390953, -0.010698704048991203, 0.0031788640189915895, -0.02700464054942131, -0.007061938289552927, 0.01393873244524002, -0.008364561945199966, 0.0038549720775336027, -0.01209389977157116, -0.005220412276685238, 0.037557873874902725, 0.016504304483532906, 0.013819711282849312, -0.0040500350296497345, 0.0024283677339553833, 0.014613186940550804, 0.010361476801335812, -0.01052678469568491, -0.0054452307522296906, 0.02618471533060074, -0.014957026578485966, -0.014242897741496563, 0.003043311880901456, 0.01004408672451973, -0.01151863019913435, 0.027454277500510216, 0.025258993729948997, -0.031686149537563324, 0.006387483794242144, 0.0032978856470435858, 0.03385498374700546, 0.025404464453458786, 0.019281473010778427, -0.03729338198900223, 0.004579018801450729, -0.017522599548101425, 0.0009835798991844058, -0.028247753158211708, 0.016213364899158478, 0.009243997745215893, -0.013217991217970848, 0.0006587505922652781, -0.005081553943455219, -0.024703560397028923, -0.006331278942525387, 0.009415918029844761, -0.014388368465006351, 0.010949972085654736, 0.02595989778637886, -0.03303505852818489, -0.03287636488676071, 0.009376243688166142, 0.035415489226579666, -0.0008112468058243394, -0.008734851144254208, 0.0006678425124846399, 0.01688781939446926, -0.029887603595852852, -0.009792818687856197, -0.6174302697181702, -0.02188671939074993, 0.0012637762119993567, -0.010467274114489555, -0.010883849114179611, 0.006942917127162218, 0.005646905861794949, 0.017496149986982346, -0.025708628818392754, 0.03202999010682106, 0.0005389025900512934, 0.01256998535245657, -0.0028664327692240477, -0.0074123903177678585, 0.03525679185986519, -0.030998470261693, 0.01103593222796917, -0.03284991532564163, -0.014322245493531227, 0.010764827020466328, 0.0011282239574939013, 0.01541988831013441, -0.01713908649981022, 0.004486446734517813, -0.0056072319857776165, -0.006122991442680359, 0.013608117587864399, -0.0017406884580850601, 0.009124976582825184, 0.02716333605349064, -0.018633466213941574, 0.012060838751494884, 0.00021366000873968005, 0.00672801723703742, 0.03599737212061882, -0.0011158259585499763, -0.00036243678187020123, 0.0230372603982687, -0.0025540015194565058, 0.03914482519030571, -0.007518187165260315, -0.0048600416630506516, 0.032373830676078796, -0.015697604045271873, 0.019400494173169136, -0.012530311942100525, 0.007452064193785191, 0.0012728681322187185, 0.009448979049921036, -0.018540894612669945, -0.004754244815558195, 0.015776952728629112, 0.008787749335169792, -0.013621341437101364, 0.03512454777956009, -0.011617814190685749, 0.023420773446559906, -0.011895530857145786, -0.00037876091664656997, -0.02016752026975155, 0.025391239672899246, 0.010401151143014431, -0.003950850572437048, -0.012722068466246128, -0.016662999987602234, 0.03882743790745735, -0.03382853791117668, 0.002747411374002695, -0.009448979049921036, -0.0032383748330175877, 0.021780923008918762, 0.01891118288040161, -0.007921537384390831, -0.004426936153322458, 0.0190566536039114, 0.04382633790373802, 0.025854099541902542, 0.00856293085962534, 0.015856299549341202, 0.024544864892959595, 0.0039177886210381985, 0.005081553943455219, -0.037769466638565063, -0.022719869390130043, 0.03128941357135773, 0.021794145926833153, -0.021529654040932655, 0.0319770909845829, 0.011822795495390892, 0.0017919337842613459, 0.02912057749927044, 0.011796346865594387, -0.004724489524960518, -0.03208288922905922, 0.013204766437411308, -0.007743005640804768, -0.021199040114879608, -0.0016076158499345183, 0.011697161942720413, -0.0383777990937233, -0.005438618361949921, -0.025629281997680664, 0.015142171643674374, -0.005256779957562685, 5.4138221457833424e-05, 0.01794578693807125, 0.006909855641424656, 0.020551033318042755, 0.02016752026975155, -0.015684379264712334, -0.014983476139605045, -0.010817726142704487, 0.015591807663440704, 0.008999343030154705, 0.008338112384080887, -0.020590707659721375, 0.017430027946829796, -0.0006513117114081979, -0.003092904109507799, -0.014970251359045506, -0.004754244815558195, 0.003248293185606599, -0.020260093733668327, -0.029834706336259842, 0.022349581122398376, -0.004185587167739868, 0.005058411043137312, 0.008139743469655514, 0.011624426580965519, 0.008906770497560501, -0.0037690119352191687, 0.008834035135805607, -0.013317176140844822, -0.0190566536039114, 0.015221518464386463, 0.0027193091809749603, 0.0042517101392149925, -0.008186029270291328, 0.015737278386950493, 0.0016679530963301659, -0.0021043650340288877, 0.00907869078218937, 0.02123871259391308, -0.005623762495815754, -0.014322245493531227, -0.030733978375792503, -0.020709728822112083, 0.016755573451519012, -0.01700684055685997, 0.013138643465936184, 0.0062155635096132755, -0.01598854549229145, -0.008027334697544575, 0.028565144166350365, 0.009389468468725681, 0.005878336261957884, -0.011326872743666172, 0.01453383918851614, -0.008291826583445072, -0.006298217456787825, -0.013198154047131538, 0.029623111709952354, -0.041472356766462326, -0.011102055199444294, -0.006397401914000511, -0.01588274911046028, -0.02814195677638054, 0.0019605474080890417, -0.010414374992251396, -0.01803835853934288, -0.011300424113869667, -0.01309897005558014, 0.010599520057439804, -0.005412169266492128, -0.021714799106121063, 0.019281473010778427, -0.03573288023471832, -0.012616272084414959, -0.00628829887136817, 0.0015290947631001472, 0.005395638290792704, 0.016385283321142197, -0.0038285227492451668, -0.003656602930277586, 0.028432898223400116, 0.022534724324941635, -0.0064635248854756355, -0.01720520853996277, -0.019413718953728676, 0.0074123903177678585, 0.02393653243780136, 0.03430462256073952, -0.002643267624080181, -0.00026697167777456343, 0.018487995490431786, 0.00856293085962534, 0.0013414707500487566, 0.007987660355865955, 0.016213364899158478, 0.03636765852570534, 0.01151863019913435, -0.0025209400337189436, 0.014864454977214336, -0.021397408097982407, -0.01586952432990074, 0.007921537384390831, 0.02111969143152237, -0.013819711282849312, 0.038642290979623795, -0.004774081986397505, -0.009501878172159195, -0.025470586493611336, -0.01799868606030941, -0.02814195677638054, 0.006605689413845539, 0.01609434187412262, -0.009336570277810097, 0.013297338970005512, 0.013039459474384785, 0.00950848963111639, -0.010209393687546253, 0.012166635133326054, 0.041445907205343246, 0.011068993248045444, -0.008463745936751366, -0.016596877947449684, 0.0400705486536026, -0.009911840781569481, -0.025801202282309532, -0.033669840544462204, 0.011300424113869667, 0.0010083760134875774, 0.02885608561336994, 0.0037458690349012613, 0.0319770909845829, 0.0073661040514707565, 0.03874808922410011, -0.002535817679017782, 0.01891118288040161, -0.002368857152760029, -0.008919995278120041, 0.023566244170069695, 0.0170994121581316, -0.011373159475624561, -0.003263171063736081, 0.0005541935679502785, 0.025761527940630913, 0.02615826576948166, -0.0020679973531514406, 0.01821027882397175, -0.0027424520812928677, -0.009111751802265644, -0.01711263693869114, -0.008417460136115551, -0.002844942966476083, 0.005865111947059631, 0.014348695054650307, 0.02090809866786003, 0.02221733331680298, 0.0031408434733748436, 0.003350784070789814, 5.8632518630474806e-05, 0.04221293330192566, 0.009839105419814587, 0.007134673651307821, 0.0050683291628956795, -0.010176332667469978, -0.042450979351997375, -0.01703329011797905, -0.02795681171119213, -0.050438638776540756, -0.039568014442920685, -0.009495265781879425, -0.009250610135495663, 0.006691649556159973, 0.0044137113727629185, -0.020749403163790703, 0.015102497301995754, 0.01502314954996109, -0.00338880461640656, -0.010235843248665333, -0.01405775360763073, 0.02606569416821003, 0.008232316002249718, -0.0076570454984903336, 0.009415918029844761, -0.009243997745215893, -0.005941153038293123, 0.011392995715141296, 0.006890018470585346, -0.017377128824591637, 0.014004855416715145, -0.0003204900131095201, 0.00843729730695486, -0.02795681171119213, -0.040202796459198, 0.010434212163090706, 0.015340540558099747, 0.01691426895558834, 0.011670712381601334, 0.025629281997680664, -0.00048352457815781236, -0.009905228391289711, -0.007610759232193232, 0.04435532167553902, 0.009111751802265644, 0.00622548209503293, -0.027718769386410713, 0.024253923445940018, -0.0071611227467656136, -0.017694519832730293, -0.004258322529494762, -0.035521283745765686, -0.0011745101073756814, 0.03015209548175335, 0.0018778936937451363, 0.008285214193165302, -0.024280373007059097, 0.03819265589118004, 0.016755573451519012, 0.010592907667160034, 0.003314416389912367, 0.014348695054650307, -0.004625305067747831, 0.040599532425403595, 0.010764827020466328, -0.009587837383151054, 0.00856954324990511, -0.02701786532998085, 0.0002560200518928468, -0.004813755862414837, -0.02305048331618309, 0.022971136495471, 0.004056646954268217, 0.0008364561945199966, 0.0027622890193015337, 0.0040467288345098495, 0.013429584912955761, 0.004479834344238043, 0.018395423889160156, -0.01457351353019476, 0.004668285138905048, 0.0072074090130627155, 0.00501873716711998, 0.015578582882881165, -0.005243555177003145, 0.018871508538722992, 0.015472786501049995, 0.010837562382221222, -0.00019247997261118144, 0.006440381985157728, -0.0013480830239132047, 0.0005732038989663124, -0.0442495234310627, -0.04834914952516556, 0.0065527912229299545, 0.019638536497950554, 0.0239497572183609, -0.0009934983681887388, 0.04499009996652603, 0.04797886312007904, 0.010216006077826023, 0.015366989187896252, -0.018726039677858353, 0.015234743244946003, 0.02197929099202156, -0.005627068690955639, -0.01821027882397175, -0.010361476801335812, 0.00654948502779007, -0.021741248667240143, 0.014943801797926426, 0.007709944155067205, 0.017588723450899124, -0.013766812160611153, -0.007452064193785191, -0.0417632982134819, -0.0230372603982687, 0.007438839413225651, 0.00844390969723463, 0.004896409343928099, -0.026555003598332405, -0.03486005589365959, -0.029332170262932777, -0.006708180066198111, -0.007809128612279892, 0.0338020883500576, 0.010573070496320724, 0.006625526584684849, -0.006592465098947287, -0.04004409909248352, 0.015446336939930916, -0.009958126582205296, -0.025232544168829918, 0.0044566914439201355, -0.026515331119298935, -0.023513345047831535, -0.005418781191110611, 0.007240470498800278, 0.018739262595772743, -0.003967381082475185, 0.020564258098602295, 0.0056039257906377316, -0.005891561042517424, -0.008893545717000961, -0.034727808088064194, -0.016186915338039398, -0.013608117587864399, 0.0013133684406057, 0.011359934695065022, 0.021556103602051735, -0.010143270716071129, -0.018884733319282532, 0.014679309912025928, 0.00043517211452126503, 9.696320921648294e-05, -0.003676439868286252, -0.016848145052790642, -0.0027771666646003723, 0.0362883135676384, -0.006635444704443216, 0.026356635615229607, 0.028247753158211708, -0.011287199333310127, -0.008853872306644917, -0.015102497301995754, -0.02693851850926876, 0.0018167298985645175, 0.008847259916365147, -0.02004849910736084, 0.004331057891249657, 0.012622884474694729, -0.009482041001319885, -0.0008794361492618918, -0.003954156301915646, -0.023500120267271996, 0.01598854549229145, 0.027427827939391136, 0.003712807549163699, 0.019770782440900803, -0.01004408672451973, 0.031474556773900986, 0.0058089070953428745, -0.018408648669719696, -0.0005740304477512836, -0.03195064142346382, 0.008754687383770943, -0.004797224886715412, 0.0056502120569348335, -0.0031656394712626934, -0.02409522794187069, -0.04575712978839874, -0.004932777024805546, 0.014983476139605045, 0.018461545929312706, 0.013535382226109505, -0.0005389025900512934, -0.006374259013682604, -0.024346495047211647, -0.0037194197066128254, -0.031448107212781906, -0.0010092025622725487, -0.013608117587864399, 0.011082218028604984, 0.005871723871678114, -0.009415918029844761, -0.011432670056819916, -0.03441041707992554, 0.01904342882335186, -0.029517315328121185, -0.03322020545601845, -0.0004715397662948817, -0.0018663222435861826, 0.015287641435861588, -0.007928149774670601, 0.01695394143462181, -0.025748303160071373, 0.005339433904737234, 0.0009786207228899002, -0.011941816657781601, -0.0008728238171897829, -0.002911065937951207, 0.02718978561460972, 0.048640090972185135, 0.03377563878893852, 0.005865111947059631, 0.0362883135676384, 0.01596209593117237, -0.00999779999256134, 0.013389911502599716, -0.014401593245565891, -0.02006172388792038, -0.02015429548919201, -0.003914482891559601, -0.0019043429056182504, 0.010169720277190208, 0.0030135565903037786, 0.0013340319273993373, 0.0024647354148328304, 0.0261714905500412, 0.015208294615149498, 0.010672255419194698, 0.0031342310830950737, -0.01999559998512268, 0.004360813181847334, 0.021780923008918762, -0.014401593245565891, 0.009984576143324375, -0.02716333605349064, 0.004942695610225201, 0.01110866665840149, 0.005554333329200745, -0.004073177929967642, 0.009759757667779922, 0.007339654956012964, -0.019360819831490517, 0.016848145052790642, 0.03840424865484238, 0.005918010137975216, -0.019400494173169136, -0.006810670718550682, -0.016610102728009224, 0.0028003097977489233, -0.014322245493531227, -0.010897072963416576, 0.02603924460709095, 0.007914924994111061, -0.018765712156891823, -0.02811550721526146, 0.001821689191274345, -0.01199471578001976, -0.015247968025505543, 0.010606132447719574, -0.028512245044112206, -0.016649775207042694, 0.001345603377558291, -0.011769897304475307, -0.019387269392609596, 0.006499892566353083, 0.005617150571197271, -0.00428807782009244, 0.01588274911046028, -0.0220586396753788, -0.023685265332460403, -0.003405335359275341, -0.011254137381911278, 0.05797666311264038, -0.011049156077206135, 0.02503417432308197, 0.030390139669179916, 0.03205643966794014, -0.011426057666540146, -0.004172362387180328, 0.0044137113727629185, 0.01002424955368042, 0.033511146903038025, -0.0012852661311626434, -0.00853648129850626, -0.01916244998574257, -0.03322020545601845, -0.0031540680211037397, -0.013846159912645817, -0.021318061277270317, 0.03128941357135773, -0.02096099592745304, -0.004869960248470306, -0.004129382316023111, 0.013356849551200867, -0.029570214450359344, 0.011941816657781601, -0.020339440554380417, -0.007425615098327398, -0.02305048331618309, -0.025497036054730415, -0.030601732432842255, 0.021675124764442444, -0.02007494866847992, 0.006923079956322908, -0.0030648019164800644, 0.010579682886600494, -0.00679744640365243, -0.01151201780885458, -0.03327310457825661, 0.03020499460399151, 0.005587395280599594, 0.0145206144079566, -0.0049493080005049706, 0.013224603608250618, 0.010156495496630669, -0.005590701010078192, -0.016821695491671562, -0.00853648129850626, -0.01100287027657032, 0.022587623447179794, -0.008291826583445072, -0.01444126758724451, -0.0007306593470275402, -0.018554119393229485, 0.0029061066452413797, 0.011849245056509972, -0.026819495484232903, -0.026700474321842194, -0.002043201355263591, -0.007848802022635937, 0.027480727061629295, 0.024505190551280975, -0.014824780635535717, -0.0058518871665000916, -0.016279486939311028, -0.0019588943105190992, 8.151728252414614e-05, -0.01914922520518303, 0.030628181993961334, -0.01992947794497013, -0.033669840544462204, -0.016742348670959473, 0.0074983504600822926, 0.010811113752424717, -0.027771668508648872, -0.0007380981696769595, 0.018223503604531288, 0.014176774770021439, 0.008986118249595165, 0.029649561271071434, -0.0005380760412663221, -0.006602383218705654, 0.001662167371250689, 0.020299766212701797, -0.0220586396753788, -0.02312983199954033, 0.01821027882397175, -0.008972893469035625, -0.010149883106350899, -0.006271768361330032, -0.002395306248217821, 0.01198810338973999, -0.007789291441440582, -0.01346925925463438, 0.0181441567838192, 0.025364790111780167, 0.011578140780329704, -0.012424515560269356, -0.01896408200263977, 0.03105136938393116, -0.003907870501279831, -0.017760641872882843, 0.018514445051550865, -0.003993830177932978, -0.0029342088382691145, -0.00039363859104923904, 0.00017068003944586962, -0.007200796622782946, -0.010903685353696346, -0.012774967588484287, -0.01622658781707287, 0.012860926799476147, 0.0017390353605151176, 0.008595992811024189, -0.031659699976444244, 0.0008794361492618918, 0.0011918673990294337, 0.037584323436021805, -0.0026267368812114, -0.002734186826273799, 0.004059953149408102, 0.014798331074416637, 0.012014552019536495, 0.024346495047211647, -0.017363904044032097, -0.031474556773900986, 0.0013158480869606137, 0.0035441936925053596, 0.0028532082214951515, -0.02912057749927044, -0.024558089673519135, 0.025814427062869072, 0.01712586171925068, 0.013965181075036526, -0.01821027882397175, -0.01051355991512537, -0.022627297788858414, -0.02790391445159912, -0.03401368111371994, 0.024597762152552605, 0.0463390126824379, 0.02104034461081028, -0.022481827065348625, 0.010665643028914928, 0.00042050107731483877, 0.02286534011363983, -0.038536496460437775, 0.010235843248665333, 0.004112851805984974, 0.020564258098602295, 0.004139300901442766, -0.014454491436481476, -0.003600398311391473, -0.036341212689876556, 0.00726691959425807, -0.012014552019536495, 0.02625083737075329, 0.03790171444416046, -0.004787306301295757, -0.0074586765840649605, -0.02711043693125248, 0.0060568684712052345, 0.03480715677142143, 0.018884733319282532, -0.008867097087204456, -0.01049372274428606, 0.005577476695179939, 0.005061717238277197, -0.0016125751426443458, -0.03829845041036606, -0.009726695716381073, 0.02208508737385273, -0.03681729733943939, 0.02500772476196289, 0.036447007209062576, 0.001306756166741252, 0.0027424520812928677, -0.024796131998300552, 0.009713470935821533, -0.007385941222310066, 0.008371174335479736, 0.018593791872262955, 0.0024647354148328304, 0.0026085530407726765, -0.016715899109840393, 0.014957026578485966, -0.03694954141974449, -0.005875030066817999, 0.016305936500430107, 0.0014158590929582715, -0.016464632004499435, -0.010963196866214275, 0.02221733331680298, -0.014864454977214336, -0.00527331093326211, -0.012847702018916607, 0.010645805858075619, -0.027745218947529793, 0.014322245493531227, 0.009197711944580078, -0.01359489280730486, -0.00239200028590858, -0.01001763716340065, 0.0065065049566328526, -0.006089929956942797, -0.037663672119379044, -0.016795245930552483, 0.003259864868596196, 0.013013009913265705, -0.008351337164640427, 0.002975535811856389, -0.0048633478581905365, 0.03221513330936432, 0.028776736930012703, -0.025219319388270378, 0.0030648019164800644, 0.1965705156326294, 0.0005108003388158977, 0.012014552019536495, 0.034622013568878174, 0.01256998535245657, 0.013925507664680481, 0.012160022743046284, 0.0025639201048761606, -0.01809125766158104, 0.009878778830170631, -0.03996475413441658, 0.018686365336179733, -0.02593344822525978, 0.0036103168968111277, 0.013489095494151115, 0.0026316961739212275, -0.0053625768050551414, -0.025417687371373177, -0.005451842676848173, -0.0074123903177678585, -0.0031491087283939123, -0.007928149774670601, -0.023738164454698563, 0.004284771624952555, 0.0191227775067091, 0.01609434187412262, 0.0008761300123296678, 0.004493059124797583, 0.01594887115061283, -0.013819711282849312, -0.021860269829630852, 0.007597534917294979, -0.012166635133326054, 0.01801191084086895, -0.02516642026603222, -0.011703774333000183, 0.02397620677947998, -0.0072536952793598175, 0.011862469837069511, -0.01307252049446106, 0.0009554775897413492, -0.008847259916365147, -0.02495482750236988, -0.010877236723899841, 0.016398508101701736, -0.012041001580655575, -0.022785991430282593, -0.011062380857765675, -0.012609659694135189, 0.028670940548181534, -0.027480727061629295, -0.023817511275410652, 0.0015588501701131463, 0.0021456920076161623, -0.008225703611969948, 0.0032350686378777027, 0.019532740116119385, 0.007875251583755016, 0.017747418954968452, 0.04916907474398613, -0.006995815318077803, 0.021582553163170815, -0.01199471578001976, 0.005865111947059631, -0.00696936622262001, -0.0014282572083175182, -0.04028214141726494, 0.029728909954428673, -0.02310338243842125, -0.004403793253004551, -0.014666085131466389, 0.005716335028409958, -0.002129161264747381, -0.004982369486242533, -0.027480727061629295, -0.011214463971555233, 0.03290281444787979, 0.002079569036141038, -0.00016282792785204947, 0.037663672119379044, -0.049486465752124786, -0.00854309368878603, -0.016186915338039398, 0.014864454977214336, -0.027851015329360962, -0.0006157706375233829, 0.016266262158751488, 0.005597313400357962, 0.0014604921452701092, -0.014599962159991264, -0.007088387385010719, -0.018580568954348564, -0.0154992351308465, 0.026793047785758972, -0.007524799555540085, -0.003911176696419716, 0.01052017230540514, 0.028300652280449867, -0.020379114896059036, -0.0070090400986373425, -0.021794145926833153, 0.04988320544362068, 0.02114614099264145, 0.013541994616389275, -0.008470358327031136, -0.026488881558179855, 0.017681295052170753, 0.0015720747178420424, 0.008397622965276241, -0.004893103148788214, -0.004264934454113245, -0.013965181075036526, -0.013343624770641327, -0.017443252727389336, -0.002727574435994029, 0.0035871737636625767, -0.011452507227659225, -0.004932777024805546, -0.0008170325309038162, -0.006876793690025806, -0.0067577725276350975, -0.037637222558259964, -0.012120349332690239, -0.008675339631736279, 0.00893983244895935, -0.009197711944580078, -0.05308355763554573, 0.0036268476396799088, 0.011789734475314617, -0.0014166856417432427, 0.015843074768781662, -0.02692529372870922, 0.029570214450359344, 0.009819268248975277, -0.0025573077145963907, -0.016543978825211525, -0.013151868246495724, -0.020696504041552544, 0.01054662186652422, 0.02319595403969288, 0.0006963580381125212, 0.011551691219210625, -0.011723611503839493, 0.005213799886405468, 0.025523485615849495, -0.02192639373242855, -0.006397401914000511, 0.000729832798242569, -0.0045029777102172375, -0.027374928817152977, -0.01555213425308466, -0.0023605916649103165, 0.014494165778160095, -0.053453847765922546, 0.001234847353771329, -0.03803395852446556, -0.018249953165650368, -0.025404464453458786, 0.009230772964656353, 0.0033061509020626545, -0.02510029822587967, -0.01405775360763073, -0.02508707344532013, -0.020498136058449745, -0.006129603832960129, -0.027374928817152977, -0.1652546525001526, 0.005164207890629768, 0.00012336076179053634, 0.0013745322357863188, 0.01145911868661642, 0.002914372133091092, 0.032532524317502975, -0.015446336939930916, 0.012424515560269356, -0.017562273889780045, 0.010579682886600494, 0.002496144035831094, -0.009581224992871284, -0.00726691959425807, -0.01407097838819027, 0.020365890115499496, 0.011756672523915768, 0.006341197527945042, 0.01586952432990074, 0.018646690994501114, 0.02619794011116028, 0.0031309248879551888, 0.020736178383231163, 0.0008653849945403636, -0.014110651798546314, -0.023460447788238525, -0.0121071245521307, 0.014189999550580978, -0.012047613970935345, -0.026555003598332405, -0.00999779999256134, 0.01503637433052063, 0.010381313972175121, -0.0084505220875144, 0.014771882444620132, -0.006883406080305576, -0.013211378827691078, -0.031236514449119568, -0.02204541489481926, -0.004377343691885471, 0.02311660721898079, 0.020524585619568825, -0.008708401583135128, -0.02490192838013172, 0.027533624321222305, 0.013819711282849312, 0.022415703162550926, -0.023473670706152916, 0.03687019646167755, 0.0024267148692160845, 0.04538683965802193, 0.008271989412605762, 0.026502106338739395, -0.02012784592807293, 0.012219534255564213, -0.014996700920164585, -0.020537810400128365, 0.007650433108210564, -0.02711043693125248, -0.009640736505389214, 0.014322245493531227, -0.025854099541902542, 0.020220419391989708, 0.02118581533432007, -0.0051146154291927814, -0.026726923882961273, -0.007795903831720352, 0.03515099734067917, -0.05496145412325859, 0.01197487860918045, -0.007828965783119202, 0.020603932440280914, 0.03105136938393116, -0.0171655360609293, 0.008357949554920197, 0.02385718561708927, -0.011935205198824406, 0.01297333650290966, -0.01795901171863079, -0.014269347302615643, -0.010216006077826023, 0.030257893726229668, 0.010672255419194698, 0.0094291428104043, 0.00387811497785151, -0.0024201024789363146, 0.014732208102941513, 0.03499229997396469, -0.011135116219520569, -0.023447223007678986, 0.025721853598952293, 0.004992288071662188, 0.005134452600032091, 0.0007405778160318732, 0.021212264895439148, 0.019466616213321686, 0.012874151580035686, -0.02409522794187069, 0.026383085176348686, -0.030681081116199493, 0.015393438749015331, -0.016292711719870567, -0.010202781297266483, 0.018342524766921997, 0.035679981112480164, 0.0338020883500576, -0.006192420609295368, -0.0060601746663451195, 0.023830736055970192, 0.0035607244353741407, -0.027745218947529793, -0.000853813486173749, 0.013608117587864399, 0.02893543243408203, 0.002101058838889003, 0.025430912151932716, -0.0069164675660431385, -0.00796121172606945, -0.01606789417564869, 0.032426729798316956, 0.023883633315563202, -0.004036810249090195, -0.0009372938075102866, 0.020617157220840454, -0.0008038079249672592, -0.011419445276260376, -0.11203884333372116, -0.03877453878521919, -0.006192420609295368, 0.006731323432177305, 0.002529205521568656, 0.0031821702141314745, -0.0027606359217315912, -0.0022349581122398376, -0.025735078379511833, 0.055490437895059586, 0.01493057794868946, -0.007180959917604923, -0.0004171949112787843, -0.008384399116039276, -0.002525899326428771, -0.013713913969695568, 0.014269347302615643, -0.019651761278510094, -0.020670056343078613, 0.024822581559419632, 0.008642278611660004, -0.013363461941480637, 0.02885608561336994, 0.005775845609605312, -0.011412832885980606, 0.006404014304280281, -0.02094777300953865, -0.007101612165570259, -0.004337669815868139, 0.011763284914195538, 0.010592907667160034, -0.007597534917294979, 0.005752702709287405, -0.011750060133635998, 0.009323345497250557, 0.014983476139605045, -0.036447007209062576, -0.013125418685376644, 0.02197929099202156, -0.006175890099257231, 0.004331057891249657, 0.005451842676848173, -0.019400494173169136, 0.02000882476568222, -0.0011216116836294532, -0.015380213968455791, -0.023738164454698563, 0.004741020500659943, -0.016848145052790642, -0.029702460393309593, -0.03374918922781944, -0.021503206342458725, -0.02589377388358116, 0.014361919835209846, -0.005693191662430763, -0.013231215998530388, 0.015142171643674374, -0.0020415482576936483, -0.009131588973104954, -0.02114614099264145, -0.003623541444540024, 0.01604144461452961, -0.02200574055314064, 0.002388694090768695, 0.026713699102401733, 0.009224161505699158, -0.015486011281609535, -0.022336356341838837, 0.005415474995970726, -0.006116379052400589, -0.014110651798546314, 0.013647790998220444, -0.0418955460190773, 0.018659915775060654, -0.033484697341918945, 0.01160458941012621, -0.009977963753044605, -0.006599077023565769, 0.02011462301015854, 0.019479840993881226, -0.009369631297886372, -0.012741905637085438, 0.014295796863734722, -0.013661015778779984, 0.015737278386950493, 0.002630043076351285, 0.016530754044651985, 0.010903685353696346, 0.013819711282849312, -0.02503417432308197, -0.0070090400986373425, 0.008609216660261154, 0.02402910403907299, -0.008827422745525837, -0.007782679051160812, 0.0029061066452413797, -0.0049096341244876385, -0.022190885618329048, 0.003944238182157278, 0.0051146154291927814, -0.03507164865732193, -0.012517087161540985, -0.0421600379049778, 0.023407548666000366, -0.02699141576886177, 0.0023771224077790976, 0.007022264413535595, -0.003106128890067339, 0.025536710396409035, -0.021767698228359222, 0.01552568469196558, -0.0003051990643143654, -0.03679084777832031, -0.008979505859315395, -0.01897730678319931, -0.03372273966670036, -0.022257007658481598, -0.024372944608330727, 0.009005955420434475, -0.0031408434733748436, 0.02320917882025242, 0.007828965783119202, -0.0249283779412508, 0.012126961722970009, 0.0031623332761228085, -0.00796121172606945, -0.014110651798546314, 0.006956141442060471, -0.006744547747075558, 0.01145911868661642, -0.029887603595852852, -0.012259207665920258, -0.0011778163025155663, -0.0053162905387580395, -0.007875251583755016, -0.002815187443047762, -0.007544636260718107, -0.012259207665920258, -0.0033590493258088827, 0.018726039677858353, 0.018382199108600616, 0.017337456345558167, 0.009138201363384724, -0.05903463065624237, -0.019532740116119385, -0.005398944485932589, 0.013991630636155605, -0.02098744548857212, -0.01809125766158104, 0.02016752026975155, 0.004126076120883226, 0.008391010574996471, 0.025430912151932716, -0.0009637430193834007, -0.0020646911580115557, -0.01453383918851614, 0.02298436127603054, -0.02790391445159912, 0.010804501362144947, -0.018276402726769447, -0.0013249400071799755, -0.02418779954314232, 0.03083977662026882, 0.0026085530407726765, 0.0027606359217315912, -0.02615826576948166, 0.02507384866476059, -0.022270232439041138, -0.014652861282229424, 0.010149883106350899, -0.02593344822525978, -0.0210800189524889, -0.0058122132904827595, 0.00011995128443231806, -0.0024845723528414965, 0.013013009913265705, 0.02803616039454937, 0.0017125861486420035, -0.016253037378191948, 0.02906767837703228, -0.01504959911108017, 0.01210051216185093, 0.022574398666620255, 0.013046071864664555, -0.013780036941170692, 0.010698704048991203, 0.039700258523225784, -0.00014505737635772675, -0.022521499544382095, -0.01001763716340065, -0.0019258329411968589, 0.026211164891719818, 0.012338555417954922, 0.004549263510853052, -0.03232093155384064, -0.018567344173789024, 0.019241798669099808, 0.004020279739052057, -0.0038152982015162706, 0.01307913288474083, 0.022495049983263016, 0.022481827065348625, 0.03134230896830559, -0.020551033318042755, -0.024796131998300552, -0.017297782003879547, -0.04488430544734001, 0.017615173012018204, -0.012318718247115612, -0.025867324322462082, -0.007584310136735439, 0.05004189908504486, 0.011921980418264866, 0.012609659694135189, 0.020352665334939957, -0.001965506700798869, 0.0010604478884488344, 0.028432898223400116, 0.0018233422888442874, -0.010586295276880264, -0.010725153610110283, 0.02695174142718315, -0.014824780635535717, -0.020511360839009285, 0.030363690108060837, -0.005051798652857542, 0.029490865767002106, -0.0018762405961751938, 0.024293597787618637, -0.036579255014657974, 0.028512245044112206, 0.0019539352506399155, -0.011908755637705326, -0.023328199982643127, -0.019717883318662643, -0.030548835173249245, -0.0191227775067091, -0.026462431997060776, 0.020709728822112083, 0.01506282389163971, 0.0159224234521389, 0.0801410973072052, 0.015618257224559784, 0.007987660355865955, 0.01713908649981022, 0.012669170275330544, 0.037637222558259964, 0.02593344822525978, -0.021728023886680603, 0.009237385354936123, -0.0357593297958374, 0.0178796648979187, -0.0037987674586474895, -0.02619794011116028, -0.022825665771961212, 0.01815738156437874, 0.0014282572083175182, -0.01705973781645298, 0.026264062151312828, -0.03803395852446556, -0.028327101841568947, 0.03314085677266121, 0.010255680419504642, 0.007571085821837187, 0.01196165382862091, -0.018805386498570442, -0.0003432197845540941, 0.030707528814673424, -0.0037524811923503876, -0.016610102728009224, -0.04969806224107742, -0.02593344822525978, -0.007895088754594326, -0.02708398923277855, -0.01555213425308466, -0.0031623332761228085, 0.002613512333482504, -0.007736393250524998, -0.00956800114363432, 0.03221513330936432, 0.01145911868661642, -0.022733094170689583, 0.009177874773740768, -0.017258107662200928, -0.032426729798316956, -0.004621998872607946, -0.008953056298196316, -0.018249953165650368, -0.000814966217149049, -0.04271547123789787], "74429688-a399-4fd6-87c6-98bf364281ed": [0.007995045743882656, 0.016467012465000153, 0.0127377575263381, -0.037305798381567, -0.008650812320411205, -0.0015665520913898945, -0.015658898279070854, -0.025210559368133545, -0.000777066161390394, -0.03394085913896561, 0.010777084156870842, 0.01116126962006092, -0.021103741601109505, -0.0001806047512218356, -0.0136452317237854, 0.009458927437663078, 0.022640487179160118, -0.0030652093701064587, 0.01252579316496849, 0.0032142470590770245, 0.0014920332469046116, -0.009140980429947376, -0.0021130237728357315, -0.024654151871800423, -0.02584645338356495, 0.01911657303571701, 0.031052839010953903, -0.018440935760736465, 0.00794867891818285, 0.0019457703456282616, 0.01673196814954281, -0.02273322083055973, -0.019805457442998886, 0.0014059225795790553, -0.009604653343558311, 0.012353572063148022, -0.008392480202019215, 0.0027936294209212065, 0.0007919699419289827, -0.010737339965999126, 0.0464467816054821, 0.00999546330422163, 0.009121108800172806, 0.0030387137085199356, 0.008988630957901478, 0.0163345355540514, 0.01825546659529209, -0.026204144582152367, -0.010551870800554752, 0.017977261915802956, 0.022998178377747536, 0.052938200533390045, -0.0419425293803215, -0.01388369221240282, -0.005424973089247942, 0.005762792192399502, 0.012784125283360481, 0.015274710953235626, 0.008372608572244644, -0.011889899149537086, -0.0029625387396663427, 0.011479216627776623, -0.015115737915039062, -0.014784542843699455, -0.027581915259361267, -0.01595034822821617, -0.0109228091314435, 0.023369116708636284, -0.011399730108678341, 0.0032208708580583334, 0.023408859968185425, 0.014400356449186802, 0.005362046416848898, 0.010962553322315216, 0.027396446093916893, -0.010849946178495884, 0.0015392284840345383, 0.01336702797561884, -0.00957153458148241, 0.005991316866129637, 0.004603609908372164, -0.012413186952471733, 0.00034589171991683543, 0.0036597042344510555, 0.020825538784265518, -0.017155898734927177, 0.004226047545671463, 0.007438638713210821, 0.00934632122516632, -0.02597893215715885, 0.029728058725595474, 0.003270550165325403, 0.0034245557617396116, 0.029781050980091095, 0.01319480687379837, 0.015075994655489922, -0.011479216627776623, 0.021249467507004738, -0.008293122053146362, -0.005729672499001026, -0.010611486621201038, 0.027396446093916893, -0.017818288877606392, -0.0036365205887705088, -0.011446097865700722, 0.012399938888847828, 0.009624524973332882, 0.0029542590491473675, 0.026137905195355415, -0.0023216765839606524, -0.013737966306507587, 0.04414166510105133, 0.008789913728833199, -0.02318364754319191, 0.01673196814954281, -0.001512732938863337, 0.01817597821354866, -0.03237761929631233, -0.017593076452612877, 0.005623690318316221, -0.003015530062839389, 0.008942264132201672, 0.016467012465000153, -0.018732385709881783, 0.041545093059539795, -0.0062728323973715305, 0.017937518656253815, -0.018904607743024826, -0.031556256115436554, -0.016705473884940147, 0.016705473884940147, 0.021011007949709892, -0.007822824642062187, 0.01587086170911789, -0.004176368471235037, 0.00885615311563015, -0.0267870482057333, 0.003311949549242854, -0.02633662335574627, -0.02313065528869629, 0.01588411070406437, -0.00043966129305772483, -0.023316124454140663, 0.006753065157681704, -0.0026180960703641176, 0.008942264132201672, 0.02821780927479267, 0.011684558354318142, -0.005838966928422451, 0.0030039381235837936, 0.014758046716451645, 0.007703594397753477, -0.005872086621820927, 0.003454363439232111, 0.009154228493571281, 0.0050076674669981, -0.0025849766097962856, 0.03378188610076904, 0.022110575810074806, 0.017831536009907722, 0.028986182063817978, 0.024799877777695656, -0.00018909161735791713, 0.02583320625126362, 0.0016501788049936295, 0.03356992080807686, 0.010975800454616547, -0.0028052213601768017, -0.018997343257069588, 0.01959349401295185, -0.0024591225665062666, 0.026972517371177673, -0.027449438348412514, 0.008889272809028625, 0.004590361844748259, 0.0204678475856781, 0.009015126153826714, -0.002740638330578804, -0.00727966520935297, -0.012770877219736576, 0.026469100266695023, -0.003494106698781252, 0.019315289333462715, 0.0352921336889267, -0.02959558181464672, -0.002472370397299528, 0.029675068333745003, 0.02371355891227722, 0.013896940276026726, 0.008299745619297028, 0.0035073545295745134, 0.04734763130545616, -0.004255854990333319, -0.007173682563006878, -0.6414054036140442, -0.0013992986641824245, -0.009770250879228115, -0.010942681692540646, 0.009213843382894993, -0.006117170676589012, 0.013141815550625324, 0.01682470366358757, -0.01520847249776125, 0.03396735340356827, 0.003888228675350547, -0.010154437273740768, 0.027012260630726814, -0.00023887435963843018, 0.002662807470187545, -0.03001951053738594, 0.007922183722257614, -0.03314599022269249, -0.03370239958167076, 0.0031198563519865274, -0.00716043496504426, 0.004441324155777693, -0.013989674858748913, 0.011015543714165688, 0.014016170054674149, -0.0033732205629348755, 0.005676681641489267, 0.0018199163023382425, 0.01026041992008686, 0.028959685936570168, -0.009988839738070965, -0.0186528991907835, -0.012366819195449352, 0.005706489086151123, 0.03539811819791794, 0.018507173284888268, 0.013161687180399895, 0.0025601370725780725, 0.01583111844956875, 0.03714682534337044, -0.03738528490066528, -0.008061285130679607, 0.02550201117992401, -0.0010018647881224751, 0.007173682563006878, -0.031609244644641876, 0.005941637326031923, 0.020083662122488022, -0.004928180947899818, -0.026151154190301895, -0.020534086972475052, 0.010167685337364674, 0.01678496040403843, 0.008485214784741402, -0.008975382894277573, -0.001033328240737319, 0.011081783100962639, -0.011412978172302246, -0.0022504697553813457, -0.019196059554815292, -0.005504460074007511, 0.008412351831793785, -0.009968968108296394, 0.0018762194085866213, -0.00837923213839531, 0.015115737915039062, -0.004308846313506365, -0.004232671577483416, 0.013287541456520557, 0.0018861552234739065, -0.018017005175352097, 0.018281960859894753, -0.018825121223926544, -0.020679812878370285, 0.015605906024575233, 0.01956699788570404, 0.025316542014479637, -0.020613573491573334, 0.010353154502809048, 0.021633654832839966, 0.013923435471951962, -0.015407188795506954, -0.023978514596819878, -0.032006680965423584, 0.04416815936565399, -0.0054746526293456554, -0.010048454627394676, 0.004173056222498417, 0.03505367413163185, -0.0022802772000432014, 0.009889481589198112, 0.03693486005067825, 0.0028267488814890385, -0.019447768107056618, -0.00704120472073555, 0.00906811747699976, 0.00013082200894132257, -0.00031028827652335167, 0.003613336943089962, -0.03084087371826172, -0.011512336321175098, -0.03282804414629936, 0.01116789411753416, 0.020335370674729347, -0.004487691447138786, 0.011870027519762516, -0.00353053817525506, 0.015751631930470467, 0.024455435574054718, -0.018427686765789986, -0.002965850755572319, -0.019752467051148415, -0.012399938888847828, -0.006650394760072231, 0.005607130471616983, -0.029383616521954536, 0.02454816922545433, 0.0013206398580223322, 0.0058588385581970215, -0.011227509006857872, -0.0033914363011717796, 0.0047261519357562065, -0.011770668439567089, 0.007663851138204336, 0.0024856182280927896, 0.006988213397562504, 0.020600326359272003, -0.004808950703591108, -0.035716064274311066, -0.00904824584722519, 0.02731695957481861, 0.01772555336356163, 0.003858421230688691, -0.005411725491285324, 0.001453117816708982, -0.02538278140127659, 0.003275518072769046, -0.016520004719495773, 0.019235802814364433, -0.026628073304891586, -0.010127942077815533, -0.00818713940680027, 0.012949722819030285, -0.021726388484239578, -0.0004570490273181349, -0.03256308659911156, -0.03176822140812874, -0.004719527903944254, -0.011605070903897285, 0.014824286103248596, 0.00498779583722353, -0.004547306802123785, -0.010558495298027992, 0.004997731652110815, 0.009432432241737843, 0.0011219228617846966, 0.004997731652110815, -0.006570907775312662, -0.014652065001428127, 0.0008014917839318514, -0.012413186952471733, 0.0168379507958889, -0.020110158249735832, -0.02493235655128956, -0.014930268749594688, -0.01337365247309208, -0.017500340938568115, 0.015566162765026093, -0.009273458272218704, -0.023885779082775116, 0.003967715427279472, -0.0005878710653632879, 0.01675846427679062, 0.001932522514835, -0.0095450384542346, 0.03921348229050636, -0.02676055207848549, -0.0002612300158943981, 0.0014398701023310423, -0.018281960859894753, -0.014784542843699455, -0.0016104354290291667, -0.032457105815410614, -0.015142233110964298, 0.02220330946147442, 0.009988839738070965, 0.03211266174912453, 0.024349452927708626, 0.007829449139535427, -0.006296016275882721, 0.03648443520069122, 0.007749961689114571, -0.009637773036956787, 0.021739637479186058, -0.007286288775503635, 0.033861372619867325, 0.001638586982153356, 0.01112152636051178, 0.02083878591656685, 0.031609244644641876, 0.035610079765319824, 0.0012577128363773227, 0.003927972167730331, -0.03603401035070419, 0.004053826443850994, -0.03272205963730812, 0.014387108385562897, -0.010459136217832565, 0.022070832550525665, -0.017593076452612877, 0.014334117993712425, -0.028085332363843918, -0.03184770792722702, -0.012406562454998493, 0.007836072705686092, 0.019355032593011856, -0.004100193735212088, 0.02768789790570736, -0.011923017911612988, 0.005570698995143175, 0.00107472762465477, 0.0013156719505786896, 0.02179262787103653, -0.012446306645870209, -0.02494560368359089, 0.017844783142209053, 0.008809785358607769, 0.001579799922183156, -0.021183229982852936, -0.04133313149213791, -0.0005953229265287519, -0.003320229472592473, 0.015380693599581718, -0.017036668956279755, 0.02277296409010887, 0.00906811747699976, 0.040670741349458694, -0.020626822486519814, 0.03696135804057121, 0.02502509020268917, -0.03174172341823578, 0.01341339573264122, 0.012234341353178024, -0.03444427624344826, 0.024852870032191277, -0.007319408468902111, 0.027396446093916893, 0.01455933041870594, 0.0014059225795790553, 0.03484170883893967, 0.014334117993712425, 0.00908798910677433, -0.018069997429847717, -0.0020881842356175184, 0.009472175501286983, 0.00019302456348668784, 0.008048037067055702, 0.006829239893704653, 0.017619570717215538, 0.01224758941680193, -0.010790331289172173, -0.004186304286122322, 0.005802535451948643, 0.0034079961478710175, -0.010750588029623032, -0.000308632297674194, -0.008465343154966831, -0.04037928953766823, -0.01948751136660576, -0.017487093806266785, -0.02049434371292591, -0.020547334104776382, -0.01457257755100727, 0.008743546903133392, 0.02495885081589222, -0.0009107860969379544, -0.023925524204969406, 0.02086528204381466, 0.030310962349176407, -0.0006060867453925312, -0.006458301562815905, -0.016215305775403976, 0.010916185565292835, 0.021487928926944733, -0.0014299341710284352, -0.012605279684066772, -0.028959685936570168, -0.008021541871130466, -0.005487900227308273, 0.01914306916296482, -0.018864864483475685, 0.007451886311173439, -0.005411725491285324, -0.0007493285811506212, 0.01297621801495552, -0.005587258841842413, 0.03447077050805092, -0.01644051820039749, 0.005537579767405987, 0.00706107635051012, 6.691172893624753e-05, 0.015566162765026093, 0.0008197075221687555, -0.007147186901420355, 0.056117672473192215, -0.010479007847607136, 0.0008375092293135822, -0.014148648828268051, 0.014943515881896019, -0.009670892730355263, 0.006256272550672293, -0.015539667569100857, -0.022905442863702774, -0.02136869914829731, 0.04941428825259209, -0.024375949054956436, 0.011691181920468807, 0.009061493910849094, 0.03950493410229683, 0.010373026132583618, 0.015632402151823044, -0.009598029777407646, 0.012777501717209816, 0.012499297969043255, 0.04758609086275101, 0.006464925594627857, -0.0061138588935136795, 0.0009621213539503515, -0.022150319069623947, -0.008670683950185776, -0.02265373431146145, -0.01641402207314968, 0.005371982231736183, -0.007266417145729065, 0.02314390242099762, -0.005302431061863899, 0.008962135761976242, -0.0030039381235837936, 0.011393106542527676, -0.004540682770311832, -0.008591197431087494, -0.020308874547481537, -0.016904190182685852, -0.038339126855134964, 0.03407333791255951, -0.01764606684446335, 0.029304130002856255, 0.021116990596055984, -0.005213008727878332, -0.013698223046958447, 0.019196059554815292, -0.010975800454616547, 0.001303252181969583, -0.02538278140127659, -0.0014746455708518624, 0.0259126927703619, 0.008783290162682533, -0.0012146574445068836, -0.01343326736241579, 0.024402443319559097, 0.02734345570206642, 0.04082971438765526, 0.004282350651919842, -0.01641402207314968, 0.005097090266644955, 0.026045171543955803, -0.0019573622848838568, -0.018003758043050766, -0.018772130832076073, 0.00670669786632061, -0.011949514038860798, 0.024455435574054718, -0.022428521886467934, 0.01002195943146944, 0.0033483810257166624, 0.009074741974473, -0.018043501302599907, -0.016016587615013123, -0.0032357745803892612, -0.0037259431555867195, 0.004739399999380112, -0.008948887698352337, -0.018056748434901237, -0.0463143028318882, -0.014585825614631176, -0.024216974154114723, 0.00814739614725113, -0.019792210310697556, -0.00692197447642684, -0.012539041228592396, -0.010055079124867916, 0.004924869164824486, -0.016957182437181473, 0.01092943362891674, 0.008120900020003319, -0.04228696972131729, -0.02914515510201454, -0.02318364754319191, 0.019328538328409195, 0.026906277984380722, -0.0033732205629348755, -0.013830700889229774, -0.0007787221111357212, 0.003111576661467552, -0.025091329589486122, -0.024203727021813393, -0.0007907279650680721, -0.026641322299838066, -0.0033483810257166624, -0.014055914245545864, -0.005222944542765617, 0.014135400764644146, -0.03349043428897858, 0.020335370674729347, -0.01295634638518095, 0.003888228675350547, -0.012903355062007904, -0.025091329589486122, -0.017897775396704674, 0.02991352789103985, 0.010684349574148655, 0.017619570717215538, 0.03001951053738594, -0.03346393629908562, 0.002233909908682108, -0.009697387926280499, -0.018970847129821777, -0.032987017184495926, 0.004375085234642029, -0.0059151416644454, 0.012201221659779549, 0.011220885440707207, -0.0005303259240463376, -0.016705473884940147, 0.015433684922754765, -0.023051168769598007, 0.02858874760568142, 0.035186152905225754, 0.028111828491091728, 0.01685119979083538, -3.462022141320631e-05, 0.006226465106010437, 0.006902102846652269, -0.033384449779987335, 0.0058886464685201645, -0.04395619407296181, -0.004447948187589645, 0.013963178731501102, 0.0007679582922719419, 0.028986182063817978, 0.019235802814364433, -0.021845618262887, -0.029224643483757973, 0.001024220371618867, 0.01960674114525318, 0.03086736984550953, -0.010346530005335808, -0.006763000972568989, -0.009399312548339367, 0.00524944020435214, -0.01765931397676468, 0.013221302069723606, -0.029648572206497192, 0.014744799584150314, 0.005143457558006048, 0.010280291549861431, 0.0011533864308148623, -0.012426435016095638, -0.02007041499018669, -0.03820664808154106, -0.004580426029860973, -0.00329373381100595, 0.00816064327955246, 0.031635742634534836, 0.0073392800986766815, 0.011538832448422909, -0.027369949966669083, -0.016003340482711792, 0.014016170054674149, 0.003792182309553027, -0.011638190597295761, 6.359977851388976e-05, 0.03961091488599777, 0.016692224889993668, 0.019845200702548027, 0.02225630171597004, 0.026548586785793304, 0.008332865312695503, 0.00019002310000360012, 0.018454182893037796, -0.001463053748011589, -0.004229359328746796, -0.03849809989333153, -0.0050209155306220055, 0.007008085027337074, 0.025064833462238312, -0.004335341975092888, 0.003722631372511387, 0.018851617351174355, 0.031582750380039215, 0.021501176059246063, 0.021474679931998253, -0.02217681333422661, -0.013989674858748913, -0.013188183307647705, 0.0290391743183136, 0.005848902743309736, 0.01776529662311077, -0.020282378420233727, 0.004385021049529314, 0.006289392244070768, 0.009929224848747253, 0.0032374307047575712, -0.0003510666429065168, 0.0054315971210598946, -0.0054746526293456554, 0.014983260072767735, 0.012777501717209816, 0.02095801569521427, -0.03046993538737297, 0.0016071235295385122, -0.03039044886827469, 0.01682470366358757, 0.009213843382894993, 0.002980754477903247, 0.018414439633488655, 0.0057263607159256935, -0.012572159990668297, -0.02991352789103985, -0.0010474040172994137, -0.02991352789103985, -0.010843322612345219, 0.010803579352796078, -0.012419810518622398, -0.010876442305743694, -0.015990091487765312, -0.0017172457883134484, -0.003497418714687228, -0.0118302833288908, 0.013280917890369892, 0.010684349574148655, 0.017102906480431557, -0.01497001200914383, -0.023448603227734566, -0.004997731652110815, -0.020626822486519814, 0.03449726477265358, 0.00300725013948977, 0.03309299796819687, 0.019302042201161385, 0.025303294882178307, -0.017354615032672882, 0.004957988392561674, -0.002421035198494792, 0.014214887283742428, 0.02544902078807354, 0.0071803065948188305, -0.011306995525956154, 0.012585408054292202, -0.003924660384654999, 0.012148231267929077, -0.02265373431146145, -0.030204979702830315, 0.0029857223853468895, 0.009770250879228115, -0.0032573023345321417, -0.033357955515384674, 0.018838368356227875, -0.036087002605199814, 0.01641402207314968, -0.001992137636989355, -0.024813124909996986, -0.018758881837129593, 0.004610233940184116, 0.01297621801495552, 0.014824286103248596, -0.0030652093701064587, -0.002545233117416501, 0.0117971645668149, 0.0034576752223074436, -0.016215305775403976, -0.013049080967903137, -0.03330496326088905, 0.00889589637517929, -0.00660733925178647, 0.025819959118962288, -0.02766140177845955, 0.01185677945613861, 0.028562253341078758, 0.008048037067055702, -0.01906358078122139, -0.0015226687537506223, 0.00023183647135738283, 0.02959558181464672, -0.010949305258691311, -0.0019457703456282616, 0.010081574320793152, -0.01090956199914217, 0.00398427527397871, 0.0014009546721354127, -0.03190069645643234, -0.02416398376226425, 0.0021477993577718735, -0.007624107878655195, 0.011075159534811974, 0.011008920148015022, -0.015990091487765312, -0.006604027468711138, 0.009081365540623665, -0.0003639004426077008, 0.008061285130679607, -0.018109740689396858, 0.0018414439400658011, -0.022468265146017075, -0.005067282821983099, -0.03182120993733406, -0.007173682563006878, 0.0177123062312603, 0.016943933442234993, -0.027012260630726814, 0.0072730411775410175, 0.041571591049432755, -0.008465343154966831, 0.013751214370131493, -0.016202056780457497, -0.004192928317934275, -0.01674521714448929, 0.016268296167254448, -0.01993793621659279, -0.01432086993008852, 0.027899863198399544, -0.015128985047340393, -0.0021544231567531824, -0.009121108800172806, -0.008107652887701988, 0.012751005589962006, -0.010704221203923225, -0.011465969495475292, 0.008365984074771404, 0.0020467848517000675, 0.00035851853317581117, -0.003672952065244317, 0.021063998341560364, 0.01857341267168522, -0.015327702276408672, 0.005683305207639933, 0.008915768004953861, -0.01768581010401249, 0.011717677116394043, -0.011426226235926151, 0.0008867745054885745, -0.005067282821983099, -0.01457257755100727, -0.0037590626161545515, -0.004842070396989584, 0.006299328058958054, 0.006789496634155512, 0.0007952818996272981, -0.03168873488903046, -0.007829449139535427, -0.01636102981865406, 0.02589944563806057, -0.018003758043050766, -0.013400147669017315, -0.00035624156589619815, 0.02684003859758377, 0.021633654832839966, 0.026230640709400177, -0.024389196187257767, -0.021183229982852936, -0.008014918304979801, -0.02629688009619713, -0.015817871317267418, -0.009392688982188702, 2.132067493221257e-05, 0.036616913974285126, 0.004004146903753281, -0.030575918033719063, -0.03182120993733406, -0.01296297088265419, -0.012684767134487629, -0.02951609343290329, 0.0036928236950188875, 0.012446306645870209, 0.012360195629298687, 0.018109740689396858, -0.021739637479186058, 0.05076556280255318, -0.00023059447994455695, 0.013976426795125008, -0.03545110672712326, -0.005083842668682337, -0.005196448881179094, 0.026588330045342445, 0.010962553322315216, -0.012234341353178024, -0.009465551935136318, -0.03145027160644531, 0.034311797469854355, -0.02269347757101059, 0.017460597679018974, 0.002050096867606044, 0.0015152168925851583, -0.014188392087817192, -0.03171522915363312, 0.0074717579409480095, -0.0013744590105488896, 0.014413604512810707, 0.009604653343558311, -0.014413604512810707, -0.012128358706831932, -0.008260002359747887, -0.005832342896610498, -0.01636102981865406, 0.011048663407564163, -0.009439055807888508, -0.02140844240784645, 0.012386690825223923, 0.007650603540241718, -0.011644814163446426, 0.0059151416644454, -0.02363407239317894, 0.015354198403656483, -0.004729463718831539, 0.009293329901993275, 0.038418613374233246, -0.0010772115783765912, 0.01776529662311077, -0.024813124909996986, 0.004875189624726772, -0.022190062329173088, -0.010916185565292835, 0.020732803270220757, 0.012274084612727165, -0.0240977443754673, -0.017182394862174988, 0.030681900680065155, -0.03174172341823578, -0.0003982619382441044, 0.006882231216877699, -0.006421870086342096, -0.007332656066864729, 0.011479216627776623, 0.014228135347366333, -0.005994628649204969, 0.01022067666053772, -0.007637355476617813, 0.012101863510906696, -0.007663851138204336, -0.025157568976283073, -0.0035835294984281063, 0.0030204979702830315, 0.015115737915039062, 0.019725970923900604, -0.0036431443877518177, 0.001655146828852594, 0.01388369221240282, 0.031052839010953903, -0.020759299397468567, -0.007332656066864729, 0.17031368613243103, -0.010598238557577133, 0.004941428545862436, 0.0328015498816967, 0.004789079073816538, 0.018984094262123108, -0.0018944351468235254, -0.002992346417158842, -0.013698223046958447, 0.008677307516336441, -0.027899863198399544, 0.0073127844370901585, -0.021540919318795204, 0.0034841708838939667, 0.006448365747928619, 0.0005684133502654731, -0.006226465106010437, -0.0319271944463253, -0.02589944563806057, 0.01204887218773365, 0.008101028390228748, -0.008968759328126907, -0.02544902078807354, -0.006908726878464222, 0.025581497699022293, -0.005838966928422451, 0.015592657960951328, 0.014585825614631176, 0.019924689084291458, 0.0057959118857979774, -0.018361447378993034, 0.013526001945137978, -0.007630731910467148, 0.003858421230688691, -0.023316124454140663, -0.0109228091314435, 0.014334117993712425, 0.0013314037350937724, 0.02405800111591816, 0.009823242202401161, 0.01276425365358591, -0.016625987365841866, -0.01991144008934498, -0.025713976472616196, 0.03168873488903046, 0.01634778268635273, -0.01993793621659279, -0.019712723791599274, -0.02041485719382763, 0.03590153157711029, -0.02040160819888115, 0.015314454212784767, 0.02040160819888115, 0.016705473884940147, -0.009717259556055069, 0.019699476659297943, -0.01993793621659279, -0.008306369185447693, 0.012035624124109745, 0.034338291734457016, -0.006269520614296198, 0.035186152905225754, -0.011485841125249863, 0.017142651602625847, -0.0037027595099061728, 0.008107652887701988, -0.018507173284888268, -0.004328717943280935, -0.017540084198117256, -0.019249049946665764, -0.011843531392514706, 0.002950947033241391, -0.003974339459091425, 0.0012221094220876694, -0.004090257454663515, -0.02268023043870926, 0.015791375190019608, 0.026535339653491974, 0.019302042201161385, 0.02673405595123768, -0.030151989310979843, -0.020534086972475052, -0.013161687180399895, 0.0010134566109627485, -0.02411099337041378, -0.001058167894370854, 0.03301351144909859, -0.024005010724067688, -0.023978514596819878, -0.03089386597275734, -0.012452930212020874, -0.0065874676220119, -0.008452095091342926, -0.017566580325365067, 0.015645649284124374, 0.016612738370895386, -0.02269347757101059, 0.019898192957043648, -0.031132325530052185, 0.01813623495399952, -0.019222555682063103, 0.046632248908281326, 0.02636311762034893, 0.04077672213315964, 0.018401190638542175, -0.005762792192399502, -0.015155481174588203, -0.00861769262701273, -0.0044313883408904076, -0.029860537499189377, -0.012148231267929077, -0.011393106542527676, 0.010041831061244011, -0.018348200246691704, 0.001588079845532775, -0.005398477893322706, -0.004838758148252964, -0.013088824227452278, -0.0040472024120390415, -0.004106817301362753, -0.009061493910849094, -0.021607158705592155, -0.0259126927703619, -0.016506755724549294, -0.00837923213839531, -0.014201639220118523, -0.04273739829659462, 0.005213008727878332, -0.02004391886293888, -0.010339906439185143, 0.037994686514139175, -0.042896371334791183, 0.016930686309933662, -0.015725135803222656, -0.0005742092616856098, -0.021222973242402077, 0.0020385049283504486, -0.02448193170130253, -0.013400147669017315, 0.010624733753502369, -0.0010805234778672457, 0.015764879062771797, -0.014479842968285084, 0.009750379249453545, 0.012307204306125641, -0.01999092660844326, -0.004712904337793589, 0.004663224797695875, 0.0020053854677826166, -0.027449438348412514, 0.0024475306272506714, 0.008577949367463589, 0.002243845723569393, -0.04480405151844025, 0.023779798299074173, -0.011035416275262833, 0.003022153861820698, -0.013168311677873135, 0.009412560611963272, -0.009458927437663078, -0.0304169449955225, -0.0033285091631114483, 0.02636311762034893, -0.002081560203805566, -0.013426643796265125, -0.008776666596531868, -0.16660431027412415, 0.008564701303839684, -0.012598656117916107, -0.009915976785123348, 0.021607158705592155, 0.0035007307305932045, 0.01719564199447632, -0.003987587057054043, 0.005282559432089329, -0.014466595835983753, -0.01722213812172413, -0.0031562878284603357, -0.017169145867228508, -0.02628363110125065, -0.005123585928231478, 0.0030867368914186954, -0.013082200661301613, 0.014652065001428127, 0.05399802327156067, 0.020679812878370285, 0.04265790805220604, -0.007551244925707579, 0.017155898734927177, 0.018785377964377403, -0.012161478400230408, 0.006620587315410376, 0.010200804099440575, 0.00859782099723816, -0.01592385396361351, -0.03494768962264061, 0.0029625387396663427, 0.01202900055795908, 0.011651438660919666, -0.010969176888465881, 0.007418767083436251, -0.0073127844370901585, -0.00524944020435214, -0.020547334104776382, -0.01991144008934498, -0.01951400749385357, 0.025819959118962288, 0.03084087371826172, -0.01457257755100727, -0.010995672084391117, -0.01360548846423626, 0.010127942077815533, 0.0200306698679924, -0.04848694056272507, 0.014016170054674149, -0.0006545240175910294, 0.014678560197353363, -0.022110575810074806, 0.005491212476044893, -0.012194598093628883, 0.024375949054956436, -0.015062746591866016, -0.04096219316124916, 0.022984929382801056, -0.032086167484521866, 0.01948751136660576, 0.00513020996004343, -0.03219214826822281, 0.0037789344787597656, 0.0213422030210495, 0.011081783100962639, -0.02776738442480564, -0.026455853134393692, 0.0033897804096341133, -0.03767673671245575, -0.0017189017962664366, 0.0010474040172994137, -0.005143457558006048, 0.00467647286131978, -0.00842559989541769, -0.005146769341081381, 0.023382363840937614, -0.019739219918847084, 0.01910332404077053, -0.003310293657705188, -0.010790331289172173, 0.02132895402610302, 0.015380693599581718, 0.011095031164586544, -0.017102906480431557, -0.0035735934507101774, -0.015632402151823044, 0.0042724148370325565, 0.0013264358276501298, 0.011896522715687752, -0.016096074134111404, 0.02007041499018669, -0.029198147356510162, -0.014360613189637661, 0.010147813707590103, -0.0017867967253550887, 0.004192928317934275, 0.001554132322780788, -0.011704429984092712, 0.013453138992190361, -0.03184770792722702, 0.016970429569482803, -0.025091329589486122, -0.014930268749594688, 0.004007459152489901, 0.02275971695780754, 0.016096074134111404, -0.012333700433373451, 0.014824286103248596, 0.03396735340356827, 0.009511918760836124, -0.030098997056484222, -0.007875815965235233, 0.017023419961333275, 0.039345961064100266, -0.0035404739901423454, 0.028111828491091728, -0.006176786031574011, -0.020626822486519814, 0.019355032593011856, 0.007769833784550428, 0.021275963634252548, -0.0025667608715593815, 0.006428494118154049, 0.01587086170911789, 0.002464090473949909, -8.367847476620227e-05, -0.12050197273492813, -0.019672980532050133, -0.012909979559481144, 0.017089659348130226, 0.017553333193063736, 0.022918689996004105, -0.01820247434079647, 0.013121943920850754, 0.006276144180446863, 0.03672289475798607, -0.00031856814166530967, 0.008432223461568356, -0.025117825716733932, -0.0140824094414711, -0.026270383968949318, 0.005891958251595497, -0.014506339095532894, -0.015155481174588203, -0.00431878212839365, 0.034788716584444046, 0.01246617827564478, -0.012393315322697163, -0.0145195871591568, -0.010531999170780182, -0.007889064028859138, 0.02494560368359089, -0.015327702276408672, 0.005421661306172609, -0.002126271603628993, 0.023488346487283707, 0.013227926567196846, -0.026270383968949318, -0.0007634043577127159, -0.0055276439525187016, 0.016241800040006638, -0.0022835892159491777, -0.02038836106657982, 4.745402839034796e-05, 0.02052083984017372, 0.005044098943471909, 0.014903772622346878, 0.012313827872276306, -0.01679820753633976, 0.0008453751215711236, 0.022534504532814026, -0.00973713118582964, -0.032086167484521866, 0.008922391571104527, -0.018387943506240845, -0.013751214370131493, -0.04215449467301369, -0.03001951053738594, -0.05322965234518051, -0.0050076674669981, 0.01632128655910492, -0.011704429984092712, 0.009140980429947376, 0.005077218636870384, -0.013314036652445793, -0.01520847249776125, -0.02776738442480564, -0.013135191984474659, -0.002033537020906806, 0.032907530665397644, -0.0016940621426329017, -0.0038120539393275976, -0.01911657303571701, -0.00037011035601608455, 0.018957599997520447, -0.03399385139346123, -0.021580662578344345, 0.03953142836689949, -0.01384394895285368, 0.023514840751886368, -0.00904824584722519, 0.01588411070406437, -0.010161060839891434, 0.017394358292222023, 0.016586244106292725, 0.008703803643584251, -0.022627240046858788, -0.023700309917330742, 0.017990509048104286, 0.0031612557359039783, 0.0263498704880476, 0.04040578380227089, 0.024005010724067688, -0.0038716690614819527, 0.019778963178396225, -0.016996925696730614, -0.004007459152489901, 0.019262298941612244, 0.037517763674259186, -0.006428494118154049, 0.0019225866999477148, -0.00670669786632061, 0.00410350551828742, -0.01779179275035858, -0.00957153458148241, 0.012187974527478218, -0.036060504615306854, 0.0017271817196160555, -0.035239141434431076, -0.011008920148015022, -0.007862567901611328, -0.028562253341078758, -0.0007642323616892099, 0.00814077164977789, 0.0059515731409192085, -0.015698641538619995, -0.0005261859623715281, -0.014811038039624691, -0.03802118077874184, 0.017089659348130226, -0.008034789934754372, -0.020732803270220757, -0.017129402607679367, -0.025515258312225342, -0.006425181869417429, 0.005332238506525755, 0.012658271007239819, 0.0015624122461304069, -0.02403150498867035, -0.009465551935136318, 0.0013968147104606032, 0.0018149483948946, 0.0002048233727691695, 0.003977651242166758, -0.009140980429947376, 0.023355867713689804, -0.029383616521954536, -0.03651093319058418, 0.010637981817126274, 0.005547515582293272, 0.008922391571104527, 0.0167717132717371, 0.006279456429183483, 0.021448185667395592, 0.01412215270102024, 0.028403278440237045, 0.027634907513856888, 0.01363198459148407, -0.016003340482711792, -0.04143911227583885, 0.0036034011282026768, -0.011373234912753105, -0.007008085027337074, -0.015817871317267418, -0.02086528204381466, 0.013088824227452278, 0.01339352410286665, 0.023051168769598007, 0.04491003602743149, 0.015089241787791252, -0.018361447378993034, -0.017367864027619362, -0.0005514395888894796, -0.031529758125543594, 0.010406145825982094, 0.0032225269824266434, -0.002493897918611765, -0.00341130793094635, 0.024455435574054718, -0.014360613189637661, 0.012115111574530602, -0.02371355891227722, 0.001555788330733776, -0.03195368871092796, -0.01477129478007555, 0.018719138577580452, 0.008260002359747887, -0.015195224434137344, -0.009704012423753738, -0.010830074548721313, 0.01116789411753416, -0.006365566980093718, 0.029648572206497192, -0.01246617827564478, -0.013764462433755398, 0.01587086170911789, -0.000827573414426297, 0.014691808260977268, 0.033384449779987335, 0.018030252307653427, -0.016069579869508743, 0.023355867713689804, 0.043797221034765244, 0.008823033422231674, -0.016559747979044914, -0.011995880864560604, -0.007776457350701094, 0.0100153349339962, -0.004948052577674389, -0.0002016149228438735, -0.030178483575582504, 0.00420286413282156, 0.017579827457666397, 0.012592032551765442, 0.0066603305749595165, 0.002260405570268631, 0.00341130793094635, 0.0031877513974905014, 0.008246754296123981, -0.0012212813599035144, -0.013241174630820751, 0.00670338561758399, -0.029701562598347664, 0.02266698330640793, -0.023766549304127693, -0.0072465455159544945, -0.01673196814954281, 0.04485704377293587, -0.011234132573008537, 0.01951400749385357, 0.029251137748360634, 0.005458092782646418, -0.01636102981865406, 0.01947426237165928, 0.0012287332210689783, -0.007518125232309103, -0.03219214826822281, 0.02187211439013481, -0.007345904130488634, 0.005292495246976614, 0.05259376019239426, -0.009611277841031551, 0.023859284818172455, 0.007736714091151953, 0.016520004719495773, -0.01185677945613861, 0.011426226235926151, 0.006451677531003952, 0.011227509006857872, 0.005713113117963076, -0.007749961689114571, -0.005318990908563137, -0.028350288048386574, -0.020626822486519814, 0.0031894072890281677, 0.02042810432612896, 0.007120691705495119, 0.08473291993141174, 0.00771021842956543, -0.01065122988075018, 0.010657853446900845, -0.0010523719247430563, 0.008458718657493591, 0.009240339510142803, -0.005789287853986025, -0.00334175699390471, -0.025170816108584404, 0.017169145867228508, 0.017632819712162018, -0.011472593061625957, -0.028853705152869225, -0.00019643999985419214, 0.0027936294209212065, -0.012903355062007904, 0.02412424050271511, -0.03876305744051933, 0.0019192748004570603, 0.003961091861128807, 0.006074115633964539, 0.006849111523479223, 0.013300789520144463, -0.035186152905225754, -0.004328717943280935, 0.025170816108584404, 0.01584436744451523, -0.03269556537270546, -0.024428939446806908, 0.001899403054267168, -0.015539667569100857, -0.03052292764186859, -0.028058836236596107, -0.003015530062839389, 0.018348200246691704, -0.012181350030004978, -0.02128921076655388, 0.012035624124109745, 0.009492047131061554, 0.01728837564587593, -0.019288793206214905, -0.03759725019335747, -0.041200652718544006, -0.029251137748360634, 0.0006176785682328045, -0.010611486621201038, 0.0018298521172255278, -0.05802535638213158], "5051091c-194f-49a1-8289-f686858300ec": [-0.027705522254109383, 0.01831657998263836, 0.004148365929722786, -0.015304519794881344, -0.02111155353486538, 0.010908540338277817, -0.03755577281117439, -0.01367637887597084, -0.028655270114541054, -0.03280702978372574, 0.009382158517837524, 0.01588793657720089, -0.0172854233533144, 0.019374869763851166, -0.012116078287363052, -0.006729647051542997, 0.015318087302148342, -0.01632210798561573, 0.01993115246295929, -0.015087434090673923, 0.010080902837216854, -0.007577636744827032, -0.02515476942062378, -0.021708538755774498, -0.02162713184952736, 0.033268336206674576, 0.003351255552843213, -0.016796981915831566, 0.007150250021368265, -0.00766582740470767, 0.0058986167423427105, -0.012007535435259342, -0.006580400746315718, -0.014246228151023388, -0.02279396541416645, 0.012638439424335957, -0.023513060063123703, -0.020338186994194984, -0.0040703509002923965, 0.004572360776364803, 0.05025526508688927, 0.011349495500326157, 0.0009209169074892998, 0.007041707169264555, 0.0030697230249643326, 0.01670200750231743, -0.009958791546523571, -0.042847227305173874, -0.008283164352178574, 0.021233664825558662, 0.01367637887597084, 0.0544341579079628, -0.04146330803632736, -0.014069846831262112, 0.004596104379743338, 0.021884920075535774, 0.00526092853397131, -0.0017053073970600963, -0.0015179016627371311, -0.011905776336789131, 0.006363315507769585, -0.007068842649459839, -0.0058986167423427105, -0.01830301061272621, -0.017380397766828537, 0.0009972359985113144, 0.01367637887597084, 0.03212863579392433, -0.018479393795132637, 0.008540952578186989, 0.01412411779165268, 0.02618592418730259, 0.008832661435008049, 0.027556275948882103, 0.026742205023765564, -0.01404271088540554, 0.0024727382697165012, 0.014639695174992085, -0.010046983137726784, 0.014273364096879959, -0.005040451418608427, -0.00881909392774105, -0.017339695245027542, 0.009205777198076248, 0.02567034587264061, -0.004636808298528194, -0.025344718247652054, 0.004121230449527502, -0.032399993389844894, -0.032834164798259735, 0.020908035337924957, 0.009076882153749466, 0.007523365318775177, 0.012455273419618607, -0.0014933099737390876, 0.02066381461918354, -0.013052258640527725, 0.021749241277575493, -0.0010498113697394729, -0.012339946813881397, -0.003910928964614868, 0.015508037060499191, -0.02066381461918354, -0.00024485704489052296, -0.009063314646482468, 0.010983163490891457, -0.015508037060499191, -0.008547737263143063, 0.012434922158718109, -0.026213059201836586, -0.025778889656066895, 0.040784917771816254, -0.003010363783687353, -0.021803513169288635, 0.026077382266521454, 0.004711430985480547, 0.03590049594640732, -0.019768336787819862, -0.011322359554469585, 0.0016646039439365268, 0.010277636349201202, -0.004928516689687967, 0.013235424645245075, -0.03318692743778229, 0.013330399058759212, -0.03367536887526512, 0.007910048589110374, -0.0007292712107300758, -0.02014823630452156, -0.027705522254109383, 0.011797233484685421, 0.0014347987016662955, 0.003056155052036047, 0.008961555548012257, -0.011614068411290646, 0.0062445965595543385, -0.014748238027095795, 0.016417082399129868, -0.00217933370731771, -0.03242712840437889, 0.02139647863805294, 0.005383038893342018, -0.024245724081993103, -0.008140701800584793, 0.00684158131480217, -0.0014551504282280803, 0.016199996694922447, 0.02141004614531994, -0.005969848018139601, 0.004786054138094187, -0.0076997471041977406, 0.01548090111464262, 0.002376067452132702, 0.004606280475854874, -0.0010345475748181343, 0.013323615305125713, -0.010318339802324772, 0.013961303979158401, 0.01059648022055626, -0.0013542396482080221, 0.0037786425091326237, 0.044665317982435226, -0.010352259501814842, 0.010236932896077633, -0.004952260293066502, 0.036958787590265274, 0.0016552760498598218, 0.011729395017027855, -0.021016579121351242, 0.008839445188641548, -0.007034923415631056, 0.026810044422745705, -0.03619898855686188, 0.014314067550003529, 0.0017994343070313334, 0.007923616096377373, 0.018737182021141052, -0.00871055107563734, -0.025711050257086754, 0.01757034845650196, 0.008378138765692711, -0.01033190730959177, 0.0202296432107687, 0.025100497528910637, -0.031803008168935776, 0.0003112122358288616, 0.031721603125333786, 0.029360797256231308, 0.0019452885026112199, 0.00860200822353363, 0.014693967066705227, 0.03315979242324829, 0.011749746277928352, -0.002771230647340417, -0.6312842965126038, 0.0013533916790038347, -0.013371102511882782, -0.021939191967248917, 0.016118589788675308, -0.0014314067084342241, -0.0021674619056284428, 0.015684418380260468, -0.00439597899094224, 0.01904924213886261, -0.005820601712912321, -0.012679142877459526, -0.001176161807961762, 0.0090022599324584, -0.015087434090673923, -0.024693462997674942, -0.013296479359269142, -0.02691858820617199, -0.012828389182686806, 0.0067364308051764965, -0.0020216077100485563, 0.015833664685487747, -0.0448552668094635, 0.003917712718248367, 0.006712687201797962, 0.02249547280371189, 0.003734546946361661, 0.015385926701128483, 0.0041517578065395355, 0.007204520981758833, -0.0009234608733095229, -0.008629144169390202, -0.0024422104470431805, 0.004307787865400314, 0.029442204162478447, 0.03348542004823685, -0.005210048984736204, -0.009422861970961094, 0.004100878722965717, 0.022468337789177895, -0.03419094905257225, -0.017895976081490517, 0.022848237305879593, 0.0022183412220329046, 0.014802509918808937, -0.005478013772517443, -0.0025168335996568203, 0.000772942672483623, -0.01713617704808712, -0.022020598873496056, -0.0042433408088982105, -0.0020504393614828587, 0.0039244964718818665, 0.017909543588757515, 0.013907032087445259, 0.002147110179066658, 0.0090022599324584, -0.0119532635435462, -0.0026033285539597273, -0.010460801422595978, 0.007455525919795036, -0.0019775121472775936, 0.005630651954561472, 0.009965576231479645, 0.009714570827782154, 0.014354771003127098, -0.003900752868503332, 0.0102979876101017, 0.007102762348949909, -0.008744470775127411, 0.006671983748674393, 0.020270347595214844, -0.013065826147794724, -0.017760297283530235, 0.008486681617796421, 0.026158789172768593, 0.024612056091427803, -0.003386871190741658, 0.023268839344382286, 0.004182285629212856, -0.0035412053111940622, -0.00680426973849535, -0.027814064174890518, -0.021599994972348213, 0.03728441521525383, 0.012333163060247898, 0.0024591702967882156, 0.01934773474931717, 0.007143465802073479, 0.007794721983373165, 0.0202296432107687, 0.029252255335450172, -0.0068178377114236355, -0.023553764447569847, -0.007550500798970461, 0.015603011474013329, -0.017665322870016098, 0.011030650697648525, -0.0006622800137847662, -0.010311556048691273, -0.013031906448304653, -0.004185677506029606, 0.013059042394161224, 0.028438184410333633, -0.006214069202542305, 0.04303717613220215, -0.006342963315546513, 0.011960048228502274, 0.007550500798970461, -0.006814445834606886, -0.007557285018265247, -0.019524116069078445, -0.014246228151023388, -0.02088090032339096, -0.011580148711800575, -0.031206022948026657, 0.0338110476732254, 0.0029272607062011957, -0.0008496857481077313, -0.005528893321752548, -0.0028051501139998436, 0.008005023933947086, -0.0007093434687703848, -0.011810801923274994, 0.018723614513874054, 0.002905213041231036, 0.01176331378519535, 0.004518089350312948, -0.016810549423098564, -0.005857913289219141, 0.028872355818748474, 0.031016074120998383, -0.0023302759509533644, 0.005861305166035891, -0.018642207607626915, -0.0529416985809803, -0.004389195237308741, 0.005586556624621153, -0.006512561347335577, -0.02470703050494194, -0.012760549783706665, 0.004796230234205723, 0.02786833606660366, -0.011179897002875805, -0.019076377153396606, -0.022685421630740166, -0.024001503363251686, -0.0052541447803378105, -0.02332311123609543, 0.03758290782570839, -0.017977382987737656, 0.003622612217441201, -0.0036429641768336296, 0.025534668937325478, 0.007910048589110374, -0.007557285018265247, -0.014069846831262112, -0.0012728326255455613, -0.0013194720959290862, -0.0068280138075351715, -0.015290951356291771, 0.01573869027197361, -0.021070849150419235, -0.024367833510041237, -0.009504269808530807, -0.02434069849550724, -0.01404271088540554, 0.019089946523308754, -0.019591955468058586, -0.03690451383590698, 0.01389346458017826, 0.008147485554218292, 0.004222989082336426, 0.00023764913203194737, -0.004836933687329292, 0.03153165057301521, -0.02699999511241913, 0.00896834023296833, 0.010352259501814842, -0.01617286168038845, -0.007123114075511694, 0.0007631907938048244, -0.012658791616559029, -0.011295223608613014, 0.01662059873342514, 0.024150749668478966, 0.02337738126516342, 0.03956381231546402, 0.02176280878484249, -0.005647611804306507, 0.021966326981782913, 0.02662009559571743, -0.0246391911059618, -0.005793466232717037, 0.0015959168085828424, 0.02617235668003559, -0.00860200822353363, 0.011498741805553436, -0.005450878292322159, 0.027339190244674683, 0.041951749473810196, 0.016729142516851425, 0.008371355012059212, -0.0235266275703907, -0.007197737228125334, -0.03258994221687317, 0.019442709162831306, -0.01058291271328926, 0.016715575009584427, -0.00540678296238184, 0.02750200405716896, -0.019971854984760284, -0.011593716219067574, 0.0006669439608231187, 0.003914320841431618, 0.02073165401816368, -0.01808592677116394, 0.026796476915478706, -0.0013923991937190294, -0.0027237432077527046, 0.011424118652939796, 0.0021403261926025152, 0.024679893627762794, 0.00856808852404356, -0.03212863579392433, -0.008554521016776562, 0.04347134754061699, -0.02046029642224312, -0.0367688350379467, -0.027841201052069664, -0.010013063438236713, -0.023146728053689003, 0.016308538615703583, -0.0106643196195364, -0.0036090444773435593, 0.010766077786684036, 0.03579195216298103, -0.021803513169288635, 0.03131456673145294, 0.001712091383524239, -0.016457784920930862, 0.0169190913438797, 0.015250247903168201, -0.03185727819800377, 0.01236029900610447, -0.011702259071171284, 0.04444823041558266, 0.011302007362246513, -0.022196980193257332, 0.021681401878595352, -8.140701538650319e-05, 0.0001046737379510887, -0.008249244652688503, -0.004446858540177345, -0.009470350109040737, 0.002691519446671009, 0.013798489235341549, 0.02052813582122326, 0.01853366382420063, 0.018628640100359917, 0.01227889209985733, -0.0017672106623649597, -0.010270852595567703, 0.016661303117871284, 0.018737182021141052, 0.01558944396674633, -0.022997483611106873, -0.008018591441214085, -0.01265200786292553, -0.018845723941922188, -0.006814445834606886, -0.01018266100436449, -0.022414065897464752, 0.01999898999929428, 0.006994219496846199, -0.02242763340473175, -0.020623112097382545, 0.022685421630740166, 0.011858289130032063, 0.014870348386466503, -0.029686426743865013, -0.013282911852002144, 0.021817080676555634, 0.02602311037480831, -0.009131154045462608, -0.0024727382697165012, 0.0010888188844546676, 0.009667083621025085, -0.004965828265994787, 0.021654266864061356, -0.01978190615773201, 0.007068842649459839, -0.006376883015036583, 0.0024405145086348057, 0.011980399489402771, -0.006634672172367573, 0.03948240354657173, -0.004555400926619768, 0.011105273850262165, 0.012143213301897049, 0.002109798602759838, 0.015833664685487747, 0.019320599734783173, -0.016159292310476303, 0.04184320569038391, 0.009198993444442749, -0.003073114901781082, 0.010840700939297676, 0.02139647863805294, 0.013920600526034832, 0.0003203281376045197, -0.018574368208646774, -0.03036481700837612, -0.04086632281541824, 0.03649748116731644, -0.013248992152512074, -0.00032732405816204846, -0.004063567146658897, 0.022753261029720306, 0.01934773474931717, -0.0027983663603663445, -0.008669847622513771, 0.005640828050673008, -0.018330147489905357, 0.013622107915580273, 0.012529896572232246, -0.01092210877686739, 0.019822608679533005, -0.018289443105459213, 0.0033834793139249086, -0.02367587387561798, -0.007380903232842684, 0.03139597177505493, -0.007075626868754625, 0.010908540338277817, -0.011227384209632874, 0.014002007432281971, -0.018113061785697937, 0.004741958808153868, -0.00626834062859416, -0.005087938625365496, -0.010101254098117352, 0.012631655670702457, -0.03576481714844704, 0.020541705191135406, 9.979779861168936e-05, 0.012116078287363052, 0.008059294894337654, -0.02484270930290222, -0.01913064904510975, -0.0028475497383624315, 0.020243212580680847, 0.012570600025355816, -0.016878388822078705, -0.015046730637550354, 0.0389939621090889, 0.019795473664999008, 0.005617084447294474, -0.007577636744827032, 0.022983914241194725, 0.013730650767683983, 0.030853260308504105, -0.008914068341255188, -0.019524116069078445, 0.014517584815621376, 0.03044622577726841, 0.0007322391611523926, -0.017081905156373978, -0.005949496291577816, -0.008242460899055004, -0.017244720831513405, 0.012828389182686806, 0.008561304770410061, 0.000635992328170687, -5.3370356908999383e-05, -0.008086430840194225, -0.03655175119638443, -0.017095474526286125, 0.0003822314029093832, 0.009137937799096107, 0.016715575009584427, 0.000838237872812897, -0.011017083190381527, -0.03329547122120857, -0.00894120428711176, -0.02523617632687092, 0.03052763268351555, -0.01430050004273653, -0.009144721552729607, -0.009741706773638725, -0.018479393795132637, -0.01261130440980196, -0.03245426341891289, 0.023662306368350983, 0.0020334795117378235, -0.021817080676555634, -0.02484270930290222, -0.008093214593827724, 0.007964319549500942, -0.005922360811382532, -0.02455778419971466, -0.015779394656419754, 0.003480150131508708, 0.025209039449691772, -0.04870853200554848, -0.03332260623574257, -0.002664383966475725, -0.024883411824703217, -0.010433666408061981, -0.000847565766889602, -0.009416078217327595, 0.02367587387561798, -0.004582536872476339, 0.005098114721477032, -0.0004973459872417152, 0.0032732405234128237, -0.021437181159853935, -0.04941406100988388, -0.007876128889620304, 0.025127632543444633, 0.008696983568370342, -0.005596732720732689, 0.013113314285874367, -0.025778889656066895, 0.0030001879204064608, -0.010318339802324772, -0.011797233484685421, -0.0209487397223711, 0.002803454175591469, -0.002252260921522975, 0.002698303433135152, 0.03508642315864563, -0.0012635047314688563, -0.0028119341004639864, -0.002856029663234949, -0.03294270858168602, 0.015250247903168201, 0.02322813682258129, 0.01758391596376896, 0.016457784920930862, 0.0004642744024749845, 0.01236029900610447, -0.0010532032465562224, -0.019578387960791588, 0.0011956655653193593, -0.01758391596376896, 0.004066959023475647, 0.0123128117993474, 0.0038837932515889406, 0.050282400101423264, 0.01018944475799799, -0.015630148351192474, -0.010793213732540607, 0.003091770689934492, 0.021518588066101074, 0.01582009717822075, -0.006149621680378914, -0.004881029017269611, -0.014517584815621376, 0.015304519794881344, -0.018221603706479073, 0.009904520586133003, -0.03638893738389015, -0.002801758237183094, -0.0010133477626368403, 0.015996478497982025, -0.016661303117871284, -0.01587436906993389, -0.00313417031429708, -0.028709542006254196, -0.035493459552526474, 0.009490701369941235, -0.0012685926631093025, 0.03440803289413452, 0.0007004395592957735, 0.015168840996921062, -0.01565728336572647, 0.015603011474013329, 0.01537235826253891, -0.019388439133763313, -0.01603718288242817, 0.005752762779593468, 0.02676934190094471, 0.007102762348949909, -0.006967084016650915, 0.005885049235075712, 0.029062306508421898, -0.002432034583762288, -0.00894120428711176, 0.01518240850418806, -0.00868341512978077, -0.01795024797320366, -0.033214062452316284, 0.002350627677515149, 0.019062809646129608, 0.016674870625138283, 0.0008717334712855518, -0.01554874051362276, 0.012923364527523518, 0.02117939293384552, 0.018642207607626915, 0.017190448939800262, -0.013296479359269142, -0.01713617704808712, 0.01010803785175085, 0.031206022948026657, 0.00619371747598052, 0.003047675359994173, -0.009952007792890072, -0.006431154441088438, -0.010284420102834702, -0.027922607958316803, 0.014666831120848656, -0.012685926631093025, 0.020541705191135406, -0.02523617632687092, 0.00544409453868866, 0.020039694383740425, 0.026972858235239983, -0.0069535160437226295, 0.013018338941037655, -0.02036532200872898, 0.02455778419971466, 0.022631151601672173, 0.019591955468058586, 0.0064718578942120075, -0.018370850011706352, 0.0012660487554967403, -0.024367833510041237, -0.020785925909876823, -0.01187864039093256, 0.0055187176913022995, 0.04656481370329857, -0.04244019091129303, -0.01963265985250473, -0.03413667529821396, -0.016362810507416725, 0.0009022611193358898, 0.002301444299519062, 0.015019594691693783, 0.0031375621911138296, 0.022698991000652313, -0.029008034616708755, -0.02345879003405571, 0.01051507331430912, -0.014666831120848656, 0.023648738861083984, -0.008235677145421505, 0.04111054539680481, 0.010793213732540607, 0.02588743157684803, -0.026864316314458847, 0.009443214163184166, 0.004646983928978443, 0.017760297283530235, 0.011478389613330364, -0.013289695605635643, -0.0037786425091326237, 0.018370850011706352, 0.00831029936671257, -0.0014305587392300367, -0.020188940688967705, -0.054461296647787094, -0.0045994967222213745, 0.014598991721868515, 0.0020012559834867716, -0.00875803828239441, 0.020161805674433708, -0.02330954372882843, 0.018425121903419495, 0.014829644933342934, 0.009802761487662792, -0.002944220555946231, -0.0028356777038425207, -0.00031312022474594414, -0.006512561347335577, -0.020351754501461983, -0.003012059722095728, 0.020840195938944817, -0.016729142516851425, -0.01368316262960434, 0.010650751180946827, -0.03193868696689606, 0.009680651128292084, 0.013581404462456703, 0.007754018530249596, -0.01919848844408989, 0.007041707169264555, 0.013771354220807552, 0.013215072453022003, -0.005087938625365496, 0.001178705831989646, 0.021803513169288635, 0.023106025531888008, -0.01876431703567505, -0.009226128458976746, 0.01970049925148487, -0.01037261076271534, 0.006536305416375399, 0.003771858522668481, -0.018954267725348473, -0.020175373181700706, -0.0015662370715290308, -0.012997987680137157, 0.017190448939800262, 0.024164317175745964, 0.004891205113381147, -0.011525876820087433, 0.011288439854979515, -0.006387059111148119, -0.001632380299270153, -0.005396606866270304, 0.011308792047202587, -0.01596934348344803, -0.030554767698049545, -0.019578387960791588, 0.0069535160437226295, 0.008378138765692711, 0.002357411663979292, -0.015752257779240608, 0.021884920075535774, 0.054461296647787094, -0.0014119029510766268, 1.5979307136149146e-05, -0.03302411362528801, 0.009775626473128796, -0.012746982276439667, 0.028926627710461617, -0.014259795658290386, -0.015060298144817352, 0.035113561898469925, -0.012367082759737968, -0.00904296338558197, -0.017760297283530235, -0.002920476719737053, 0.02683718129992485, -0.019008539617061615, 0.010392962954938412, 0.0051523856818675995, 0.009341455064713955, 0.01261130440980196, 0.008045727387070656, -0.0064718578942120075, 0.020283915102481842, -0.014883916825056076, -0.003337687812745571, -0.0003343199787195772, -0.02067738212645054, 0.005128642078489065, -0.0024778260849416256, 0.0004507065750658512, 0.012007535435259342, -0.026742205023765564, -0.009701003320515156, 0.004847109783440828, 0.00680426973849535, 0.00037375150714069605, 0.0005863849073648453, -0.026240196079015732, -0.015128137543797493, -0.007977887988090515, 0.02595527097582817, -0.009795977734029293, -0.0038498735520988703, 0.01187185663729906, 0.018113061785697937, 0.013723866082727909, 0.009300751611590385, -0.010894972831010818, -0.014069846831262112, 0.024137180298566818, -0.025276878848671913, -0.010121606290340424, -0.0020877509377896786, -0.003992335870862007, 0.033512555062770844, 0.022902507334947586, -0.0049454765394330025, -0.0389939621090889, 0.006146229803562164, -0.012489193119108677, -0.016444217413663864, 0.0038125619757920504, 0.011458037421107292, 0.01809949427843094, 0.011078138835728168, -0.013920600526034832, 0.045479387044906616, -0.02472059801220894, 0.014314067550003529, -0.030391953885555267, 0.010284420102834702, 0.018479393795132637, 0.028275370597839355, 0.002264132723212242, 0.004646983928978443, 0.0035581651609390974, -0.02242763340473175, -0.006095350719988346, 0.005657787900418043, 0.006783918011933565, 0.011159545741975307, -0.030419088900089264, -0.00770653085783124, -0.04165325686335564, 0.013466077856719494, -0.02876381389796734, 0.021640699356794357, 0.011851505376398563, -0.02941506914794445, -0.016389945521950722, -0.018940700218081474, -0.015779394656419754, -0.01596934348344803, 0.02368944324553013, -0.014897484332323074, -0.03044622577726841, 0.008066078647971153, 0.0020809669513255358, 0.005135426297783852, 0.009680651128292084, -0.015073866583406925, 0.007659043651074171, -0.005596732720732689, 0.019062809646129608, 0.05551958829164505, -0.014707534573972225, 0.015833664685487747, -0.013764570467174053, -0.004799622111022472, -0.037094466388225555, 0.001740075065754354, 0.007279144134372473, 0.025507532060146332, -0.0007788786315359175, -0.018438689410686493, 0.03183014318346977, -0.0242592915892601, -0.0013898552861064672, 0.009646731428802013, 0.0062072849832475185, -0.03169446438550949, 0.014829644933342934, -0.01419195719063282, -0.0012711366871371865, -0.016159292310476303, 0.002574496902525425, -0.014761806465685368, 0.004687687382102013, -0.015155273489654064, -0.006705902982503176, 0.0012058414286002517, 0.01096281222999096, 0.0046707275323569775, 0.0035344213247299194, 0.008099998347461224, 0.02287537232041359, 0.01349321287125349, -0.025711050257086754, -0.016077885404229164, 0.16118589043617249, 0.0029086049180477858, -0.003819345962256193, 0.0382612980902195, 0.008588440716266632, -0.001209233421832323, 0.01883215643465519, -0.02411004528403282, 0.0006470162188634276, 0.004301004111766815, -0.022251252084970474, 0.01876431703567505, -0.008011807687580585, 0.011057786643505096, 0.014843213371932507, -0.003386871190741658, -0.011051002889871597, -0.0360090397298336, -0.024435672909021378, -0.005745978560298681, 0.006492209620773792, 0.002808542223647237, -0.013452509418129921, -0.024232156574726105, 0.025575371459126472, -0.0013321919832378626, -0.0014983979053795338, 0.00904974713921547, 0.03229144960641861, 0.020392458885908127, -0.031016074120998383, 0.0010438754688948393, -0.0059087928384542465, 0.00039601122261956334, -0.007489445619285107, -0.020989442244172096, 0.004847109783440828, -0.01383240893483162, 0.031721603125333786, 0.00307820294983685, -0.00039813120383769274, -0.017692457884550095, -0.019537683576345444, -0.042765822261571884, 0.041219085454940796, 0.013581404462456703, -0.009734923020005226, -0.021152257919311523, -0.0021996854338794947, 0.015643715858459473, -0.01595577597618103, 0.01055577676743269, -0.0016120285727083683, 0.030717581510543823, -0.005651003681123257, 0.01913064904510975, -0.019944719970226288, 0.009958791546523571, 0.026877883821725845, 0.0034462304320186377, -0.011566580273211002, 0.03964521735906601, -0.009287184104323387, 0.020039694383740425, 0.00878517422825098, 0.005545853171497583, -0.0013864632928743958, 0.0010421794140711427, -0.013079394586384296, 0.009239696897566319, 0.0027915823739022017, -0.009090450592339039, -0.013371102511882782, -0.013194721192121506, -0.017895976081490517, -0.007224872708320618, 0.027488436549901962, 0.03712160140275955, -0.007930400781333447, 0.020487433299422264, -0.03267135098576546, -0.02735275775194168, -0.011742962524294853, -0.013486429117619991, -0.012733414769172668, -0.006539697293192148, 0.01986331306397915, -0.014327635057270527, -0.031585924327373505, -0.04073064401745796, -0.026077382266521454, -0.016783414408564568, -0.018710047006607056, -0.016064317896962166, 0.015277383849024773, 0.008832661435008049, -0.008357787504792213, 0.01918492093682289, -0.018655775114893913, 0.006885677110403776, 0.0005766330286860466, 0.07066129148006439, 0.02860100008547306, 0.0375014990568161, 0.02668793499469757, 0.024829139932990074, -0.0032562806736677885, -0.012950499542057514, -0.0006521041505038738, -0.01963265985250473, 0.00915828999131918, -0.004365451168268919, 0.0024981778115034103, -0.009782410226762295, -0.011898992583155632, -0.00012200453056721017, -0.02596883848309517, -0.02824823558330536, 0.001685803639702499, 0.0012728326255455613, 0.006668591406196356, -0.0030900747515261173, -0.01073894277215004, 0.004972612019628286, -0.010460801422595978, -0.018547233194112778, -0.03226431459188461, 0.0010913627920672297, -0.024299994111061096, -0.00526092853397131, 0.03619898855686188, -0.05104219913482666, 0.02199346199631691, -0.004803013987839222, -0.0012329771416261792, -0.024394970387220383, -0.015942208468914032, -0.03771858662366867, -0.02250904031097889, 0.023960798978805542, -0.00135169574059546, 0.02786833606660366, -0.005464446265250444, -0.002803454175591469, 0.02279396541416645, -0.016810549423098564, 0.009606027975678444, -0.005596732720732689, 0.0022539568599313498, -0.03910250589251518, -0.005606908351182938, -0.004538441076874733, 0.005881656892597675, -0.030337681993842125, 0.0032087932340800762, 0.005722234956920147, -0.002308228285983205, -0.007068842649459839, 0.011261303909122944, -0.004351883661001921, -0.052263304591178894, 0.01242813840508461, 0.01780100166797638, -0.0077811540104448795, -0.010352259501814842, -0.0062174610793590546, -0.17160598933696747, 0.01610502228140831, -0.0013364319456741214, -0.012624871917068958, 0.01773316226899624, 0.01554874051362276, 0.014951755292713642, -0.003395351115614176, -0.007448742166161537, -0.013154017738997936, -0.002939132507890463, 0.005776506382972002, -0.008038942702114582, -0.01054899301379919, -6.852817023172975e-05, -0.0017298992024734616, 0.01047436986118555, 0.020840195938944817, 0.03942813351750374, 0.022305523976683617, 0.04868139699101448, -0.017692457884550095, 0.013879897072911263, -0.009260048158466816, 0.0033054640516638756, 0.010861053131520748, -0.007252008654177189, 0.014666831120848656, -0.023268839344382286, -0.03429948911070824, 0.00045197855797596276, 0.0038905770052224398, 0.019985422492027283, 0.020690949633717537, 0.0015085737686604261, 0.012414569966495037, -0.031016074120998383, -0.021654266864061356, -0.01603718288242817, 0.0028543334919959307, 0.033512555062770844, 0.015603011474013329, -0.011851505376398563, -0.005121858324855566, -0.00041063904063776135, 0.011193465441465378, 0.01212964579463005, -0.025141200050711632, -0.003393655177205801, -0.01051507331430912, 0.03036481700837612, -0.008283164352178574, 0.0047724866308271885, -0.002555841114372015, 0.03473366051912308, -0.005193089600652456, -0.04287436231970787, 0.01386632863432169, -0.03370250388979912, 0.008656279183924198, 0.000956532487180084, -0.014273364096879959, -0.018994970247149467, 0.031667329370975494, 0.02044672891497612, -0.009402510710060596, -0.019958287477493286, 0.0007000155746936798, -0.038288433104753494, -0.004687687382102013, 0.0030408913735300303, -0.01758391596376896, 0.017977382987737656, 0.0024150749668478966, -0.005674747750163078, 0.009300751611590385, -0.008323867805302143, 0.018547233194112778, -0.023621603846549988, -0.03117888793349266, -0.002579584950581193, 0.02993064746260643, 0.007523365318775177, -0.023404518142342567, 0.027312055230140686, -0.0033733032178133726, -0.01054899301379919, 0.0031748737674206495, 0.006685551255941391, -0.03554772958159447, 0.009877384640276432, -0.027298487722873688, -0.012882661074399948, -0.0006690639420412481, -0.0019639444071799517, -0.0037108033429831266, -0.00338178314268589, -0.0139748714864254, 0.0002705087244976312, -0.025426125153899193, 0.013187937438488007, -0.02683718129992485, -0.0249919556081295, -0.0022743085864931345, 0.01911708153784275, 0.016267836093902588, -0.010053766891360283, 0.04729747772216797, 0.03934672474861145, 0.019591955468058586, -0.046591948717832565, 0.014951755292713642, 0.019320599734783173, 0.04447536915540695, 0.006539697293192148, 0.014775373972952366, -0.03139597177505493, -0.021817080676555634, 0.024096477776765823, 0.02177637815475464, 0.017814569175243378, 0.009287184104323387, 0.022604014724493027, 0.008778390474617481, 0.006485425867140293, -0.012563816271722317, -0.1117989718914032, -0.035113561898469925, -0.008256028406322002, 0.011098490096628666, -0.01081356592476368, -0.006437938194721937, -0.02455778419971466, 0.013459294103085995, 0.013513565063476562, 0.02029748260974884, -0.011532660573720932, 0.00047487427946180105, 0.0031816577538847923, -0.018655775114893913, -0.013045474886894226, 0.008242460899055004, -0.007855777628719807, -0.004311180207878351, -0.009463566355407238, 0.05267034098505974, 0.004826757591217756, -0.028790948912501335, -0.023146728053689003, -0.012149997055530548, -0.0005456813960336149, 0.002006343798711896, -0.0030951627995818853, 0.003965200390666723, 0.0015967647777870297, 0.00529824011027813, 0.009755274280905724, -0.009063314646482468, 0.015209544450044632, -0.01253668125718832, 0.004121230449527502, -0.00223530107177794, -0.03329547122120857, -0.009422861970961094, 0.024869844317436218, -0.015250247903168201, 0.008066078647971153, 0.016457784920930862, 0.011593716219067574, -0.0016849556704983115, -0.00012221653014421463, 0.0029984917491674423, -0.005077762994915247, -0.001339823822490871, -0.021884920075535774, -0.013038691133260727, -0.03329547122120857, -0.04222310706973076, -0.03660602122545242, -0.0024523865431547165, 0.003288504434749484, -0.0037989942356944084, 0.01904924213886261, 0.00676356628537178, -0.018438689410686493, -0.005396606866270304, -0.03419094905257225, -0.0010693151270970702, -0.009687434881925583, 0.0002588488860055804, -0.013357535004615784, -0.0070824106223881245, -0.03104320913553238, -0.012149997055530548, 0.032834164798259735, -0.02014823630452156, -0.023662306368350983, 0.040269337594509125, -0.011308792047202587, 0.012482409365475178, -0.003178265644237399, 0.013269344344735146, -0.004382411018013954, 0.016077885404229164, 0.021125121042132378, -0.03671456500887871, -0.016376378014683723, -0.03758290782570839, 0.0006270884186960757, -0.007611556444317102, 0.029062306508421898, 0.03733868524432182, 0.01831657998263836, -0.01003341469913721, 0.02161356434226036, -0.01187864039093256, 0.008547737263143063, 0.008364571258425713, 0.017828136682510376, -0.03082612343132496, 0.002333667827770114, -0.00425012456253171, 0.03641607239842415, -0.0001253964874194935, -0.01881858892738819, -0.013581404462456703, -0.03554772958159447, -0.018208036199212074, -0.03663315996527672, -0.003351255552843213, -0.023445220664143562, -0.0045011299662292, -0.0002817446074914187, 0.005125250201672316, 0.007245224434882402, -0.004626632202416658, -0.004538441076874733, -0.009741706773638725, -0.04029647260904312, 0.02154572494328022, 0.002011431846767664, 0.009741706773638725, -0.02006682939827442, -0.02648441679775715, 0.005338943563401699, -0.006634672172367573, 0.02448994480073452, -0.003319032024592161, -0.030039189383387566, 0.029659289866685867, 0.01780100166797638, 0.01685125194489956, 0.004931908566504717, 0.003585300873965025, -0.0035683410242199898, 0.004168717656284571, -0.005376255139708519, -0.02803114987909794, 0.003507285611703992, -0.017407534644007683, -0.0014135990059003234, 0.031585924327373505, -0.021857785061001778, 0.014951755292713642, -0.002716959221288562, 0.016674870625138283, 0.027746224775910378, 0.03647034615278244, 0.000509641831740737, -0.04523516818881035, 0.0033444715663790703, -0.006383667234331369, 0.0025473611894994974, -0.02001255936920643, -0.02082662843167782, 0.03294270858168602, 0.01386632863432169, -0.00630565220490098, 0.02691858820617199, 0.0036870595067739487, -0.009131154045462608, -0.03660602122545242, -0.006258164532482624, -0.015087434090673923, 0.03522210195660591, -0.008873364888131618, 0.010691455565392971, -0.0026694717817008495, 0.040052253752946854, -0.01183793693780899, 0.022780397906899452, -0.02617235668003559, 0.01393416803330183, -0.026782909408211708, -0.0036192203406244516, 0.024137180298566818, 0.008025375194847584, -0.020636679604649544, -0.03134170174598694, -0.007584420498460531, -0.007421606685966253, 0.0022878763265907764, 0.03782712668180466, -0.0030951627995818853, 0.00031736018718220294, 0.021654266864061356, -0.0003871073422487825, 0.0009217648766934872, 0.038288433104753494, -0.006251380778849125, 0.008025375194847584, 0.012991202995181084, 0.02860100008547306, 0.005203265231102705, -0.03440803289413452, -0.0020453513134270906, 0.0023658915888518095, 0.010745726525783539, 0.0045011299662292, 0.015223112888634205, -0.03552059456706047, -0.0172854233533144, 0.0022013813722878695, -0.0018672734731808305, -0.007584420498460531, -0.0033665194641798735, 0.014164821244776249, 0.016796981915831566, 0.0106643196195364, -0.0023794593289494514, -0.01393416803330183, -0.015155273489654064, -0.03370250388979912, 0.0007207912858575583, -0.014273364096879959, 0.01180401723831892, -0.00043459475273266435, 0.035412054508924484, -0.0004765702469740063, -0.002337059937417507, 0.02941506914794445, 0.018506528809666634, -0.021599994972348213, 0.027488436549901962, -0.009687434881925583, -0.028573863208293915, -0.02221054770052433, 0.016281403601169586, -0.024218587204813957, 0.004535049200057983, 0.06355174630880356, -0.0242728590965271, 0.02192562445998192, 0.01610502228140831, 0.02435426600277424, -0.01743466965854168, -0.002196293557062745, -0.0015636931639164686, -0.011926128529012203, 0.011451253667473793, -0.030337681993842125, -0.000722487282473594, -0.021125121042132378, -0.016199996694922447, 0.01386632863432169, 0.005837561562657356, -0.0042535169050097466, 0.0816783756017685, 0.024001503363251686, -0.004233165178447962, -0.004864069167524576, 0.01683768443763256, 0.02881808392703533, 0.03598190099000931, 0.002784798387438059, -0.003517461707815528, -0.021342206746339798, 0.033865321427583694, 0.0019402005709707737, -0.002326883841305971, -0.015847232192754745, -0.006444722414016724, 0.008140701800584793, -0.003356343600898981, 0.04537084326148033, -0.02860100008547306, 0.013242208398878574, 0.012048238888382912, 0.007964319549500942, 0.012787685729563236, 0.009246480651199818, -0.024218587204813957, -0.006105526350438595, 0.016227131709456444, 0.003179961582645774, -0.038722604513168335, -0.03994370996952057, -0.01227889209985733, 0.010209796950221062, -0.036443207412958145, -0.011396982707083225, 0.003524245461449027, 0.0015840448904782534, 0.002728831022977829, -0.006980651989579201, 0.021952759474515915, 0.0026219843421131372, 0.026823611930012703, -0.010060550644993782, -0.012509545311331749, -0.0478130541741848, -0.016281403601169586, -0.0007593748159706593, -0.013377886265516281, -0.001160050043836236, -0.04545225203037262], "4f932ede-8209-44e0-9202-0d644d756afc": [0.00895728636533022, 0.013852467760443687, 0.008778278715908527, -0.0035250813234597445, -0.005831531248986721, -0.002466524252668023, -0.01078867632895708, 0.006557890679687262, -0.02165997214615345, -0.01384558342397213, 0.01358395628631115, 0.018368978053331375, -0.026520729064941406, 0.02664465829730034, -0.0004244986339472234, 0.010747367516160011, 0.000917416182346642, -0.000644601066596806, -0.013157091103494167, 0.014320642687380314, -0.007435718551278114, 0.010217227973043919, 0.011442744173109531, -0.011635522358119488, -0.03249684348702431, 0.011318815872073174, 0.0153809217736125, -0.021191798150539398, -0.006878039799630642, -0.01704707369208336, 0.030816921964287758, -0.02902684174478054, -0.03238668665289879, -0.01142208930104971, -0.02247239276766777, -0.0142380241304636, -0.02467556856572628, 0.00226169778034091, 0.01217943150550127, -0.02252747304737568, 0.030816921964287758, 0.0043306173756718636, -0.006778208073228598, 0.002075804630294442, 0.016840524971485138, 0.01864437572658062, 0.01673036627471447, -0.01675790548324585, -0.012675145640969276, -0.0012874809326604009, 0.0259561650454998, 0.044669389724731445, -0.022334694862365723, 0.002287516137585044, -0.006974428426474333, 0.0005417575011961162, -0.005053534638136625, -0.002129162894561887, 0.013040047138929367, -0.014623579569160938, -0.0029587962199002504, 0.00582120381295681, -0.02000758983194828, -0.01882338337600231, -0.009811017662286758, -0.0023580866400152445, 0.010926375165581703, 0.021549813449382782, -0.008688774891197681, 0.018313899636268616, -0.007415063679218292, 0.023973306640982628, -0.0029226504266262054, 0.012771534733474255, 0.04439399391412735, -0.01087129581719637, -0.0222658459097147, 0.005618098191916943, -0.0004363320767879486, -0.0024320995435118675, 0.004919278435409069, -0.011731911450624466, -0.007146551739424467, 0.011607983149588108, 0.003924407064914703, -0.016854295507073402, 0.00895728636533022, 0.03139525651931763, -0.02966025471687317, -0.019732194021344185, 0.01233778428286314, -0.004774695262312889, 0.007821273989975452, 0.03224898502230644, 0.003587045706808567, 0.001891633030027151, 0.004427006468176842, 0.014912746846675873, -0.0012564987409859896, -0.0191400907933712, 0.003022481920197606, 0.0082619097083807, -0.0067300135269761086, -0.006117255426943302, -0.009397922083735466, -0.009948715567588806, 0.020999019965529442, 0.006000211928039789, 0.014127865433692932, -0.006110370624810457, -0.004144724458456039, 0.04698272421956062, -0.004809119738638401, -0.015353381633758545, 0.019360408186912537, -0.014114094898104668, -0.0052050030790269375, -0.0030655127484351397, -0.025790927931666374, -0.007022622972726822, 0.013852467760443687, 0.004805677104741335, 0.009246453642845154, 0.006055291276425123, 0.025818467140197754, -0.009150064550340176, 0.0051499237306416035, -0.026947595179080963, -0.01568385772407055, -0.015229453332722187, 0.029935652390122414, 0.0040758755058050156, 0.01948433555662632, 0.012771534733474255, -0.002175636123865843, 0.00519123300909996, -0.02229338511824608, 0.010175918228924274, -0.024193624034523964, -0.01562877930700779, 0.02417985536158085, -0.0014234581030905247, -0.021260647103190422, -0.00895728636533022, -0.008743854239583015, 0.0008270515827462077, 0.030872002243995667, 0.009391036815941334, -0.010947030037641525, 0.004936490673571825, -0.010878181084990501, -0.007112126797437668, 0.008461572229862213, 0.013852467760443687, -0.0053427014499902725, 0.012303359806537628, -0.02354644238948822, 0.01583532616496086, 0.046817485243082047, -0.0032565693836659193, 0.018258819356560707, 0.020682312548160553, -0.013356753624975681, 0.01220697071403265, 0.01565631851553917, 0.029219619929790497, 0.03172573074698448, 0.012117466889321804, -0.0005933944485150278, 0.000734535395167768, -0.005683504976332188, 0.014458341524004936, -0.015367151238024235, 0.010306731797754765, 0.028310809284448624, 0.0025164398830384016, 0.01916763000190258, -0.024744419381022453, -0.014375722035765648, -0.0038521152455359697, 0.009329073131084442, 0.004953703377395868, 0.01586286537349224, 0.02960517629981041, -0.02711283229291439, -0.0006015702965669334, 0.02134326659142971, 0.005597443785518408, 0.002258255146443844, 0.01153913326561451, 0.001585253863595426, 0.02061346359550953, -0.010286076925694942, 0.008626810275018215, -0.6248206496238708, -0.01980104297399521, -0.027732476592063904, -0.028889143839478493, 0.002445869380608201, 0.009707743301987648, 0.008351413533091545, 0.00047032639849931, -0.016661517322063446, 0.033185336738824844, 0.016606437042355537, -0.0011472005862742662, 0.010327386669814587, -0.03227652609348297, -0.012227625586092472, -0.029715334996581078, -0.001817620126530528, -0.017735565081238747, -0.005635310895740986, 0.008282564580440521, -0.014719968661665916, 0.02661711908876896, -0.021962909027934074, 0.008702544495463371, 0.005439090542495251, 0.024565409868955612, 0.005163693334907293, 0.005993326660245657, 0.008792048320174217, 0.025653228163719177, -0.01476127840578556, -0.013329213485121727, -0.006805747747421265, 0.00751145277172327, 0.04830462858080864, -0.012447943910956383, -0.0027109389193356037, -0.000741850642953068, 0.03161557391285896, 0.029302239418029785, -0.028283270075917244, -0.015642547979950905, 0.034259382635354996, 0.020159058272838593, 0.019635803997516632, -0.013886893168091774, -0.006337572820484638, 0.0153120718896389, -0.01748770847916603, -0.016799215227365494, -0.01646873913705349, 0.007483913097530603, 0.007470143027603626, -0.005972671788185835, 0.008998596109449863, -0.017391318455338478, 0.03844541683793068, -0.010492624714970589, 0.016868064180016518, -0.03224898502230644, 0.0016670123441144824, 0.009005481377243996, -0.01673036627471447, 0.003566390834748745, -0.014279333874583244, 0.028696365654468536, -0.019883662462234497, 0.0021429327316582203, 0.016427429392933846, -0.004113742616027594, 0.01916763000190258, 0.02000758983194828, -0.011022764258086681, -0.00983167253434658, 0.00603807857260108, 0.01772179640829563, 0.023505132645368576, -0.011353240348398685, 0.01641366071999073, 0.01980104297399521, 0.005456302780658007, -0.005239427555352449, -0.014609809964895248, -0.017102152109146118, 0.015931716188788414, 0.018465368077158928, -0.002805606694892049, 0.00569039024412632, 0.010375581681728363, 0.002926092827692628, 0.0033236972521990538, 0.027154142037034035, -0.005380568560212851, -0.04241113364696503, -0.017212310805916786, 0.019911201670765877, -0.003969158977270126, -0.01022411324083805, -0.03850049898028374, -0.025157514959573746, -0.005724814720451832, -0.004316847771406174, 0.0032737816218286753, 0.018492907285690308, 0.016454970464110374, 0.006533793173730373, -0.002511276165023446, 0.022775329649448395, 0.03134017810225487, -0.027994103729724884, -0.02064100280404091, -0.02420739457011223, -0.01220697071403265, -0.0014639070723205805, 0.001241007586941123, -0.018341438844799995, 0.021728821098804474, 0.014100325293838978, 0.009762822650372982, -0.0020895747002214193, 0.00958381500095129, 0.010162148624658585, -0.015559929423034191, -0.0037867084611207247, 0.024400172755122185, 0.008014052174985409, 0.007139666937291622, -0.024317553266882896, -0.042576372623443604, -0.0021790785249322653, 0.011188002303242683, 0.008220599964261055, 0.014065900817513466, -0.007986512035131454, -0.0035732758697122335, -0.014609809964895248, 0.006265281233936548, -0.020572153851389885, 0.02255501225590706, -0.011188002303242683, -0.03131263703107834, -0.01945679634809494, 0.0029398626647889614, -0.029247159138321877, -0.018947312608361244, -0.00987298134714365, -0.031450334936380386, -0.016840524971485138, 0.009143180213868618, 0.012186316773295403, -0.011105382815003395, -0.0007220564293675125, -0.023092037066817284, 0.025928625836968422, 0.007986512035131454, -0.014093440026044846, 0.022885488346219063, -0.015188143588602543, 0.012640721164643764, -0.022954339161515236, -0.01609695330262184, 0.03395644947886467, -0.01191780436784029, 0.009625124745070934, -0.008461572229862213, -0.009053675457835197, -0.018368978053331375, 0.029495015740394592, -0.027966562658548355, -0.04698272421956062, 0.01806604117155075, -0.005714487284421921, 0.0030259243212640285, 0.002039658837020397, -0.014100325293838978, 0.04345764219760895, -0.01194534357637167, 0.00752522237598896, 0.005125826224684715, -0.03067922405898571, 0.000660522433463484, 0.0011661341413855553, 0.004974357783794403, -0.016248421743512154, 0.007841928862035275, 0.014940286055207253, 0.021191798150539398, -0.010809331201016903, -0.0067024738527834415, -0.004457988776266575, 0.024028386920690536, 0.008041591383516788, -0.022073067724704742, 0.0028761771973222494, 0.010024449788033962, 0.053895190358161926, 0.011546018533408642, 0.006241184193640947, -0.002578404266387224, 0.03337811306118965, 0.02215568721294403, 0.008378952741622925, -0.007201631087809801, -0.03715105354785919, -0.0007943481905385852, -0.04494478553533554, 0.007256710436195135, 0.0066026425920426846, 0.014843896962702274, -0.005411550868302584, -0.004919278435409069, -0.010616553947329521, -0.03690319508314133, -0.005015667527914047, 0.008571730926632881, 0.03880343586206436, -0.009514966048300266, 0.014623579569160938, 0.013659690506756306, -0.003408037591725588, 0.01801096275448799, 0.012812844477593899, 0.013776733539998531, 0.029853032901883125, 0.015408460982143879, 0.005518266931176186, 0.011442744173109531, -0.006864269729703665, -0.022610092535614967, -0.04067613556981087, 0.0033839403185993433, -0.008489112369716167, 0.02711283229291439, 0.009301532991230488, 0.03329549357295036, 0.021880289539694786, 0.021728821098804474, -0.018107350915670395, 0.03932669013738632, -0.010465085506439209, -0.0356639102101326, 0.009941831231117249, 0.011050303466618061, -0.04866264760494232, -0.017666716128587723, -0.0006626739632338285, 0.031009700149297714, 0.033130258321762085, 0.007463258225470781, 0.025653228163719177, 0.000423853169195354, 0.006485599093139172, -0.018603065982460976, 0.003125755814835429, 0.009907406754791737, 0.017942113801836967, -0.003521638922393322, 0.0013795667327940464, 0.011332585476338863, 0.021618662402033806, 0.0011876494390890002, -0.005087959114462137, 0.03946438804268837, 0.009604469873011112, 0.006396094802767038, 0.004702403210103512, -0.0023563653230667114, -0.03626978397369385, -0.023684140294790268, -0.00635822769254446, -0.02787017449736595, -0.01649627834558487, -0.02325727418065071, 0.009811017662286758, 0.031009700149297714, 0.0032909938599914312, 0.014361952431499958, 0.019126320257782936, 0.009535619989037514, -0.012275820598006248, -0.004709288477897644, -0.027498388662934303, 0.014389492571353912, 0.02551553025841713, 0.01257187221199274, -0.015091754496097565, -0.017350010573863983, 0.013783618807792664, -0.006778208073228598, -8.880476525519043e-05, -0.038170021027326584, 0.0032841090578585863, -0.0006910742959007621, -0.0002043962012976408, 7.68637255532667e-05, 0.0034786080941557884, 0.033157795667648315, -0.008998596109449863, 0.00243554194457829, 0.0004453685542102903, -0.012874809093773365, 0.006086273118853569, -0.03852803632616997, -0.0007599235395900905, 0.05086582154035568, -0.009556274861097336, 0.010568358935415745, 0.0038245755713433027, 0.0021635876037180424, -0.0184378270059824, 0.026369260624051094, -0.01291611883789301, -0.026231562718749046, -0.025212593376636505, 0.020159058272838593, -0.01165617723017931, 0.008447802625596523, 0.00698819849640131, 0.02284417860209942, 0.013026277534663677, -0.0284760482609272, -0.013301674276590347, -0.012007308192551136, 0.01940171793103218, 0.034782636910676956, 0.03954700753092766, -0.017129691317677498, -0.0053323740139603615, -0.009129409678280354, 0.01384558342397213, -0.017294930294156075, -0.015353381633758545, 0.014843896962702274, 0.000753468950279057, 0.0075940717943012714, 0.023945767432451248, 0.0035836033057421446, -0.01583532616496086, 0.010561474598944187, 0.020461995154619217, 0.0015000529820099473, -0.001376124331727624, 0.020489536225795746, -0.021962909027934074, 0.0042824228294193745, 0.012475483119487762, 0.020682312548160553, 0.006822959985584021, -0.018520446494221687, -0.0034149226266890764, 0.001549108070321381, 0.012654491700232029, -0.011725026182830334, -0.026107633486390114, -0.022017989307641983, 0.007972742430865765, 0.022279616445302963, 0.01969088427722454, -0.01078867632895708, 0.045220185071229935, 0.007862583734095097, 0.011731911450624466, 0.02444148249924183, -0.007552762050181627, 0.015229453332722187, 0.00643051927909255, 0.020930171012878418, -0.02087509073317051, -0.028283270075917244, 0.00506041944026947, 0.0016661516856402159, 0.017432628199458122, -0.012124352157115936, -0.0018692569574341178, 0.013081356883049011, -0.01887846365571022, -0.028104262426495552, -0.02462049014866352, 0.003772938624024391, 0.01231024507433176, 0.011559788137674332, -0.00948054064065218, -0.008702544495463371, -0.018795844167470932, -0.016165802255272865, -0.015546159818768501, 0.02058592438697815, 0.004592244513332844, 0.021219337359070778, 0.006685261614620686, 0.0003025063779205084, 0.0010258537949994206, -0.02137080579996109, 0.013136436231434345, 0.020957710221409798, -0.039216529577970505, -0.043540261685848236, -0.010685402899980545, 0.008964171633124352, 0.016620207577943802, -0.004922721069306135, -0.02858620695769787, -0.014417031779885292, 0.009900521486997604, -0.01051327958703041, -0.05684193596243858, -0.014293103478848934, -0.026630887761712074, -0.004495855886489153, 0.005566461477428675, 0.014623579569160938, 0.008082901127636433, -0.0035457361955195665, 0.010017565451562405, 0.003662779927253723, 0.006237741559743881, -0.015738938003778458, -0.02229338511824608, -0.0008008027798496187, 0.030541524291038513, 0.004144724458456039, -0.004602571949362755, 0.03615962341427803, -0.025653228163719177, 0.015091754496097565, -0.02076493203639984, 0.004051777999848127, -0.00485731428489089, -0.008447802625596523, 0.01359772589057684, 0.0019604822155088186, -0.0054803998209536076, -0.011897149495780468, -0.025212593376636505, 0.029853032901883125, -0.002457918133586645, 0.0407036729156971, 0.022637631744146347, 0.024455251172184944, 0.016303502023220062, 0.016110723838210106, 0.009893636219203472, 0.013067586347460747, -0.03800478205084801, 0.0037798236589878798, -0.049571458250284195, 0.01477504801005125, 0.026754816994071007, -0.019553186371922493, 0.016028104349970818, 0.020668543875217438, -0.0366002582013607, -0.02189406007528305, 0.011862725019454956, 0.01477504801005125, 0.015394691377878189, -0.015201913192868233, -0.014954055659472942, -0.007766194641590118, -0.0023873476311564445, -0.02731938101351261, 0.003105100942775607, -0.0251162052154541, 0.01372853945940733, -0.01078867632895708, 0.005153365898877382, 0.010664748027920723, -0.008640579879283905, -0.03739890828728676, -0.03189096972346306, -0.0036180277820676565, -0.007105241995304823, 0.03690319508314133, 0.029880572110414505, -0.0022548127453774214, 0.00738063920289278, -0.014100325293838978, 0.008530421182513237, 0.008227485232055187, -0.015876635909080505, -0.004626669455319643, -0.013521991670131683, 0.0361320823431015, 0.003724744077771902, 0.02766362577676773, 0.00307756126858294, 0.020103979855775833, 0.009769707918167114, -0.019085010513663292, 0.025088664144277573, 0.007952087558805943, -0.006268723867833614, -0.01728115975856781, -1.671476820774842e-05, 0.02438640221953392, 0.004540607798844576, 0.022224536165595055, -0.014045245945453644, 0.01374230906367302, 0.02462049014866352, 0.009094985201954842, 0.011848955415189266, -0.01670282706618309, -0.011697486974298954, -0.014995365403592587, 0.013329213485121727, -0.011484053917229176, 0.024510331451892853, -0.02229338511824608, -0.00997625570744276, 0.03778446465730667, -0.012826614081859589, -0.010637208819389343, 0.013129550963640213, 0.0025990589056164026, -0.02090262994170189, 0.004509625490754843, 0.03233160451054573, 0.029853032901883125, -0.01505044475197792, -0.007449488155543804, -0.025763386860489845, 0.013804273679852486, 0.0023098920937627554, 0.007146551739424467, 0.028696365654468536, 0.008007166907191277, 0.006120698060840368, -0.012158776633441448, -0.01220697071403265, -0.03227652609348297, -0.015601239167153835, 0.018713224679231644, -0.016840524971485138, -0.020943939685821533, -0.03238668665289879, -0.018424058333039284, -0.0063444580882787704, 0.0018881905125454068, 0.018231280148029327, 0.011201771907508373, 0.02331235446035862, -0.03120247833430767, -0.017942113801836967, 0.00252332491800189, -0.007545877248048782, 0.031588032841682434, -0.007012295536696911, 0.037013355642557144, 0.015559929423034191, 0.008716314099729061, -0.02061346359550953, -0.0053254892118275166, 0.022252075374126434, 0.015270762145519257, 0.04114430770277977, -0.005328931380063295, -0.008186175487935543, -0.011607983149588108, -0.03224898502230644, 0.016510048881173134, -0.001769425580278039, -0.03139525651931763, -0.0010912605794146657, 0.005852185655385256, -0.0075321076437830925, -0.02003513090312481, 0.02627287246286869, -0.039271607995033264, 0.02299564704298973, -0.0012857596157118678, -0.0027763457037508488, -0.012757765129208565, 0.005301391705870628, -0.02073739282786846, 0.006258396431803703, 0.01801096275448799, 0.010671633295714855, 0.01893354207277298, 0.019897431135177612, 0.016289731487631798, -0.009707743301987648, -0.043017007410526276, 0.0035836033057421446, 0.011353240348398685, 0.015504850074648857, -0.009535619989037514, 0.0053323740139603615, 0.031147398054599762, -0.005886610597372055, -0.032607004046440125, -0.005790221504867077, 0.0001398500317009166, 0.027567237615585327, -0.021756362169981003, 0.020943939685821533, -0.012014193460345268, 0.0016859458992257714, -0.006137910299003124, -0.020227909088134766, 0.0009208586416207254, 0.0012676867190748453, -0.018809612840414047, -0.017680486664175987, 0.03794970363378525, 0.014664889313280582, 0.00035005537210963666, -0.002241042908281088, -0.0029794510919600725, 8.380244253203273e-05, 0.0041206274181604385, -0.03514065593481064, 0.0063926526345312595, -0.03723367303609848, -0.0017659831792116165, -0.012172546237707138, 0.011167347431182861, 0.009459886699914932, 0.017639176920056343, -0.007979627698659897, 0.03899621218442917, 0.038032323122024536, -0.014857667498290539, 0.012234510853886604, -0.005473515018820763, 0.009184489026665688, -0.03439708426594734, 0.01138078048825264, -0.006461501587182283, 0.003569833468645811, 0.015009135007858276, -0.021618662402033806, -0.004206689074635506, -0.005435647908598185, -0.005594001151621342, 0.010334271937608719, -0.01597302407026291, -0.01814866065979004, -0.0017470496241003275, 0.01704707369208336, 0.014389492571353912, -0.001215189229696989, -0.005993326660245657, 0.010313617065548897, -0.01078867632895708, 0.002841752488166094, 0.017129691317677498, -0.0033512369263917208, 0.019029932096600533, -0.007862583734095097, -0.005050092004239559, -0.014279333874583244, -0.022802870720624924, -0.01568385772407055, -0.003354679560288787, -0.00793143268674612, -0.02638303115963936, -0.002251370344310999, -0.02528144232928753, -0.0001212392162415199, -0.006967543624341488, -0.003420086344704032, -0.010947030037641525, 0.004134397022426128, 0.0013666575541719794, 0.016689056530594826, 0.003216980956494808, 0.012936772778630257, -0.029715334996581078, -0.013790504075586796, 0.008131096139550209, 0.002075804630294442, 0.005655965302139521, 0.0038349030073732138, -0.011663062497973442, 0.04926852136850357, 0.008137980476021767, -0.014010821469128132, -0.026768585667014122, 0.003242799546569586, -0.019208939746022224, -0.023243505507707596, -0.008709429763257504, 0.021040329709649086, 0.01562877930700779, 0.012647606432437897, -0.009260223247110844, 0.029384857043623924, -0.03070676326751709, 0.008020937442779541, -0.02302318811416626, 0.0117869907990098, 0.01085752621293068, 0.042989470064640045, -0.0026489747688174248, 0.0005925337900407612, -0.007835044525563717, -0.050094712525606155, 0.03139525651931763, -0.013652805238962173, 0.016799215227365494, 0.0032393569126725197, 0.0008631974342279136, -0.02137080579996109, -0.011807645671069622, -0.026286641135811806, -0.012757765129208565, -0.001365796895697713, 0.016881834715604782, -0.00853730645030737, 0.0025336521212011576, -0.017088383436203003, 0.02444148249924183, -0.0067024738527834415, -0.010492624714970589, -0.0065751029178500175, -0.01291611883789301, 0.00307756126858294, -0.00017890046001411974, -0.028778985142707825, 0.011070958338677883, -0.021205566823482513, 0.03932669013738632, -0.014802588149905205, 0.002705775434151292, 0.029825493693351746, 0.0063719977624714375, 0.005091401748359203, -0.012021077796816826, 0.012867923825979233, -0.022017989307641983, -0.012544332072138786, 0.028090491890907288, 0.019856121391057968, -0.006468386389315128, 0.009934945963323116, 0.027071522548794746, -0.02218322642147541, -0.006909021642059088, -0.050728123635053635, -0.016331041231751442, -0.007421948481351137, 0.024345092475414276, 0.005556134041398764, -0.01693691499531269, 0.0042824228294193745, -0.0018520447192713618, 0.019897431135177612, -0.01772179640829563, -0.011807645671069622, -0.009928060695528984, -0.008103555999696255, 0.0030534639954566956, 0.010568358935415745, -0.014375722035765648, -0.0014071064069867134, 0.009418576955795288, 0.014554730616509914, -0.021783901378512383, -0.00752522237598896, 0.17228835821151733, -0.00395194673910737, 0.019002391025424004, 0.03582914546132088, -0.023064497858285904, 0.03117493726313114, 0.006261839065700769, -0.008165520615875721, -0.013831812888383865, -0.00033305821125395596, -0.025680769234895706, 0.03544359281659126, -0.013198399916291237, 0.0031085433438420296, -0.0015267319977283478, 0.015766477212309837, 0.01451342087239027, -0.05224280804395676, -0.0284760482609272, 0.0020637561101466417, 0.009129409678280354, -0.005198117811232805, -0.014940286055207253, -0.030844461172819138, 0.03004581108689308, -0.011669946834445, -0.00094065279699862, -0.0018606508383527398, 0.033130258321762085, -0.012998737394809723, -0.008406492881476879, 0.01980104297399521, -0.012145007029175758, 0.02267894148826599, -0.02024167776107788, -0.002540537156164646, 0.03241422399878502, -0.0036111429799348116, 0.037591688334941864, -0.028007872402668, 0.009824787266552448, -0.019580725580453873, -0.030486445873975754, -0.030458906665444374, 0.014706199057400227, 0.021825211122632027, -0.01259941142052412, -0.017432628199458122, -0.00446487357839942, 0.02018659934401512, -0.013811158947646618, 0.009528735652565956, 0.007167206611484289, 0.013700999319553375, -0.0024975063279271126, -0.03213882818818092, -0.0021429327316582203, 0.0031016585417091846, 0.0076147266663610935, 0.011780105531215668, -0.006774765904992819, 0.016978224739432335, 0.00542876310646534, 0.01675790548324585, -0.021150488406419754, 0.003934734500944614, -0.03134017810225487, -0.0003582312201615423, -0.0008924583671614528, -0.006055291276425123, -0.002111950656399131, -0.015133064240217209, -0.003845230443403125, 0.0064718290232121944, -0.03241422399878502, -0.009329073131084442, 0.005036322399973869, 0.017350010573863983, -0.0077799647115170956, 0.04323732480406761, -0.030458906665444374, -0.034342002123594284, -0.014995365403592587, 0.005986441858112812, -0.019842352718114853, -0.02667219750583172, 0.04398089647293091, -0.02490965649485588, 0.00281593413092196, -0.011470284312963486, -0.0035526209976524115, -0.005773009266704321, -0.0032961575780063868, 0.00932218786329031, 0.02412477508187294, 0.007298020180314779, -0.008854012936353683, 0.027154142037034035, -0.015959255397319794, -0.0023598079569637775, -0.014954055659472942, 0.047974154353141785, 0.02554306946694851, 0.018740763887763023, 0.02087509073317051, -0.00983167253434658, 0.0071190120652318, 0.004964030347764492, 0.007146551739424467, -0.025295212864875793, -0.021852750331163406, -0.001042205491103232, -0.003371891798451543, -0.008296334184706211, 0.015491080470383167, -0.004647323861718178, -0.008358298800885677, -0.011070958338677883, 0.010348041541874409, 0.007387524005025625, 0.0007977906498126686, -0.019016161561012268, -0.03340565413236618, 0.006568218115717173, -0.023849379271268845, -0.0028761771973222494, -0.03610454499721527, 0.008020937442779541, -0.0119040347635746, -0.012372209690511227, 0.02362906001508236, -0.02908192202448845, 6.115749420132488e-05, 0.002093017101287842, -0.016331041231751442, 0.0024785727728158236, -0.003752283751964569, -0.020282987505197525, -0.008268794044852257, -0.0009647500701248646, -0.014596040360629559, -0.007580301724374294, -0.013377408497035503, -0.0064924838952720165, -0.01426556333899498, -0.013005622662603855, 0.00879893358796835, 0.002521603601053357, -0.0039450619369745255, -0.008840243332087994, -0.017157232388854027, -0.007683575619012117, 0.007545877248048782, -0.024785729125142097, 0.005673178005963564, -0.013659690506756306, 0.006750668399035931, -0.02630041167140007, 0.014940286055207253, -0.03500295802950859, -0.033818747848272324, 0.012496137991547585, 0.030348747968673706, 0.00539433816447854, -0.0421081967651844, -0.03241422399878502, -0.1744915246963501, -0.0029863358940929174, -0.012551217339932919, -0.012186316773295403, 0.03737137094140053, 0.014623579569160938, 0.030872002243995667, -0.004550935234874487, 0.02844850718975067, 0.0031274768989533186, -0.022830409929156303, 0.002352922922000289, -0.01704707369208336, -0.025611918419599533, -0.023587752133607864, -0.0018382748821750283, -0.017942113801836967, 0.00622741412371397, 0.02598370425403118, 0.009755938313901424, 0.042493753135204315, -0.022348465397953987, 0.019043700769543648, 0.008482227101922035, -0.0034803294111043215, 0.01942925713956356, -0.007063932716846466, -0.013694114983081818, -0.0006725710700266063, -0.03885851427912712, 0.015064215287566185, 0.009914291091263294, 0.014912746846675873, -0.025556840002536774, 0.025047356262803078, -0.01065786276012659, -0.009012366645038128, -0.01841028779745102, -0.016909373924136162, 0.013205285184085369, 0.004729943349957466, 0.03720613196492195, -0.01317774597555399, -0.020751163363456726, -0.004599129781126976, 0.017639176920056343, 0.0077042304910719395, -0.03569144755601883, 0.0064546167850494385, -0.01803850196301937, 0.03938176855444908, -0.030816921964287758, 0.002936420263722539, 0.009033020585775375, 0.023697910830378532, -0.013680345378816128, -0.04813939332962036, 0.019525645300745964, -0.009356612339615822, -0.0027832307387143373, -0.01571139693260193, -0.023243505507707596, 0.02076493203639984, 0.009811017662286758, 0.005098286550492048, -0.014052131213247776, -0.030266128480434418, -0.0095700453966856, -0.025653228163719177, 0.015339612029492855, 0.012103697285056114, -0.014045245945453644, 0.002705775434151292, -0.02079247124493122, -0.0042376709170639515, 0.021990448236465454, -0.015284532681107521, -0.015408460982143879, -0.010327386669814587, -0.0197459626942873, -0.015821555629372597, 0.015697628259658813, -0.017157232388854027, -0.009432346560060978, -0.0007870329427532852, -0.007180976215749979, 0.013928201980888844, 0.007504567503929138, -0.006960658822208643, -0.028062952682375908, 0.024813268333673477, -0.024716878309845924, -0.012234510853886604, 0.006361670326441526, 0.008434032090008259, 0.03390136733651161, 0.011325701139867306, -0.02244485355913639, 0.008089786395430565, -0.01830012910068035, 0.008778278715908527, -0.028365889564156532, -0.04926852136850357, -0.002215224551036954, 0.016344809904694557, 0.02638303115963936, -0.04618407413363457, 0.008736968971788883, 0.04491724818944931, 0.006192989647388458, -0.02551553025841713, -0.00648904126137495, 0.015931716188788414, 0.022802870720624924, 0.0012573592830449343, 0.038638196885585785, -0.006685261614620686, -0.016220882534980774, 0.012351554818451405, 0.00439258199185133, 0.05532725155353546, 0.00047247795737348497, -0.02525390312075615, 0.025598149746656418, -0.0066921464167535305, -0.00817929022014141, -0.12899594008922577, -0.02742953971028328, -0.01476127840578556, 0.030899541452527046, 0.03392890840768814, 0.02165997214615345, -0.014196714386343956, 0.0017479101661592722, 0.008984826505184174, 0.037591688334941864, 0.0005460605607368052, -0.02766362577676773, -0.004640439059585333, 0.011897149495780468, -0.020861322060227394, -0.013487567193806171, -0.031064778566360474, -0.007005410734564066, -0.005019110161811113, 0.03965716436505318, 0.019029932096600533, -0.0030637914314866066, -0.00479879230260849, 0.0024527544155716896, -0.0075940717943012714, 0.018809612840414047, -0.02299564704298973, 0.016427429392933846, 0.007026065606623888, 0.01898862235248089, 0.011704371310770512, -0.015849096700549126, 0.014210483990609646, -0.007270480506122112, 0.00878516398370266, -0.007046720013022423, -0.01730870082974434, -0.02708529308438301, 0.02569453790783882, -0.020145289599895477, -0.0011067516170442104, 0.008771393448114395, -0.010582128539681435, -0.00641674967482686, -0.005390895996242762, -0.008723199367523193, -0.039188988506793976, 0.018245050683617592, 0.0021377690136432648, -0.028393428772687912, -0.03618716448545456, -0.011752566322684288, -0.0399601012468338, -0.02528144232928753, 0.028834063559770584, -0.025584379211068153, -0.005390895996242762, -0.0027660185005515814, -0.0006248069112189114, 0.017418859526515007, -0.009397922083735466, -0.00643051927909255, -0.008055361919105053, 0.006051848642528057, 0.011339470744132996, 0.004774695262312889, -0.035278353840112686, -0.006254953797906637, 0.014182944782078266, -0.01777687482535839, 0.013762963935732841, 0.023133346810936928, -0.03684811666607857, 0.03549867123365402, -0.0013124387478455901, 0.026575809344649315, 0.006685261614620686, 0.018341438844799995, -0.009528735652565956, 0.014141635037958622, -0.02771870605647564, -0.027470849454402924, -0.01649627834558487, -0.0016076298197731376, 0.02142588421702385, 0.017129691317677498, 0.009026136249303818, 0.011848955415189266, 0.026465650647878647, -0.024138545617461205, 0.02682366594672203, 0.013776733539998531, 0.021040329709649086, 0.011621752753853798, -0.004688633605837822, -0.010843755677342415, 0.010058874264359474, -0.0010921211214736104, 0.003659337293356657, 0.017294930294156075, -0.05315161868929863, -0.0052600824274122715, -0.047423359006643295, 0.005590558517724276, -0.016868064180016518, -0.014320642687380314, 0.002129162894561887, 0.0019811370875686407, -0.0037867084611207247, -0.006034636404365301, -0.002325383247807622, -0.0002633483672980219, -0.032579462975263596, -0.019002391025424004, -0.013852467760443687, -0.003927849233150482, -0.020172828808426857, -0.030486445873975754, 0.002473409054800868, -0.01746016927063465, 0.011153577826917171, 0.009618239477276802, 0.005115498788654804, -0.0042652105912566185, -0.008530421182513237, -0.003587045706808567, -0.030376287177205086, -0.00917760469019413, -0.009446116164326668, 0.01257187221199274, -0.01306070201098919, -0.03246930241584778, 5.9543839597608894e-05, -0.003426971146836877, -0.017969653010368347, 0.00852353684604168, -0.0016059086192399263, 0.0033959890715777874, 0.0006708498112857342, 0.018974851816892624, 0.013790504075586796, 0.005669735372066498, -0.006478713825345039, -0.013136436231434345, 0.01452719047665596, -0.01594548486173153, 0.01678544655442238, -0.013005622662603855, -0.024083465337753296, -0.001365796895697713, 0.006661164574325085, 0.023450052365660667, 0.02058592438697815, 0.010499509982764721, -0.018658146262168884, -0.02116425707936287, -0.0009905685437843204, -0.025391601026058197, 0.01283349934965372, -0.027539698407053947, 0.007835044525563717, 0.020682312548160553, 0.03885851427912712, 0.012083042412996292, 0.023959537968039513, -0.006760995835065842, -0.0010585571872070432, -0.0017384433886036277, -0.024827037006616592, 0.02853112667798996, 0.02844850718975067, -0.020751163363456726, -0.020227909088134766, 0.005903822835534811, 0.013150205835700035, 0.013019392266869545, 0.035884227603673935, 0.02035183645784855, -0.03123001754283905, 0.011924689635634422, 0.0028279826510697603, 0.025419142097234726, 0.030238589271903038, 0.017529018223285675, -0.011070958338677883, 0.006051848642528057, 0.0327722392976284, 0.016551358625292778, 0.013439372181892395, -0.010823101736605167, 0.011924689635634422, -0.006206759251654148, -0.0064374045468866825, -0.009866097010672092, -0.026217792183160782, -0.010361811146140099, 0.02577715739607811, 0.013040047138929367, 2.2147403797134757e-05, 0.016716597601771355, -0.012117466889321804, 0.0017005763947963715, 0.0009139737230725586, -0.018575526773929596, -0.001232401467859745, 0.008833358064293861, -0.027415769174695015, 0.01730870082974434, 0.004013910889625549, -0.03569144755601883, 0.017102152109146118, 0.020999019965529442, -0.005738584790378809, 0.03935422748327255, 0.024634260684251785, 0.012799074873328209, -0.036462560296058655, 0.019360408186912537, -0.01114669255912304, 0.00018040653958451003, -0.011979768984019756, 0.02360152080655098, -0.016716597601771355, 0.024400172755122185, 0.0361320823431015, -0.01348068192601204, 0.01229647547006607, 0.02748461812734604, 0.025295212864875793, -0.015174373984336853, 0.0020895747002214193, 0.01838274858891964, -0.008110441267490387, 0.017735565081238747, -0.027099063619971275, -0.01869945414364338, -0.010905720293521881, -0.02627287246286869, 0.014912746846675873, 0.007201631087809801, 0.014637349173426628, 0.07678067684173584, 0.01992497220635414, -0.006829845253378153, -0.01216566190123558, -0.0052428701892495155, -0.001219492289237678, 0.01885092258453369, -0.014320642687380314, -0.0026162713766098022, -0.019415486603975296, 0.0067850928753614426, 0.009225798770785332, -0.016055643558502197, -0.038748353719711304, -0.021783901378512383, 0.01980104297399521, -0.012282704934477806, 0.004499298054724932, -0.010637208819389343, 0.007800619583576918, 0.005081074312329292, 0.015229453332722187, 0.007952087558805943, 0.007463258225470781, -0.011759450659155846, 0.0042376709170639515, 0.024978505447506905, -0.0015146833611652255, -0.0238080695271492, -0.03657272085547447, 0.0015232895966619253, -0.012000423856079578, -0.02899930253624916, -0.019057471305131912, 0.015491080470383167, 0.029412398114800453, -0.0064374045468866825, -0.03219390660524368, 0.029495015740394592, 0.008027821779251099, 0.022926798090338707, -0.006957216188311577, -0.019057471305131912, -0.02006267011165619, 0.003363285679370165, 0.009273992851376534, -0.018575526773929596, -0.012358439154922962, -0.04202558100223541], "5379d4a0-b2cd-45ea-b795-818ae80fb090": [0.01857883110642433, 0.014786675572395325, 0.02175714820623398, -0.03958573192358017, -0.01811504177749157, 0.00816404540091753, -0.009146186523139477, -0.014936724677681923, -0.02175714820623398, -0.03702125325798988, -0.0029498327057808638, 0.034538619220256805, -0.010926316492259502, 0.003480120562016964, 9.996181324822828e-05, 0.010482989251613617, 0.016641831025481224, -0.0008056624210439622, 0.0175694078207016, -0.014227401465177536, -0.00454581156373024, 0.021020542830228806, -0.006673783529549837, -0.014377450570464134, -0.027677273377776146, 0.006411197129637003, 0.003986536990851164, -0.003040203358978033, -0.005381313152611256, -0.01231768261641264, 0.01200394332408905, -0.013736330904066563, -0.022521035745739937, -0.01347715500742197, -0.01851062662899494, 0.0013402129989117384, -0.007250109221786261, 0.012597320601344109, -0.004665168933570385, -0.008989316411316395, 0.027063436806201935, -0.006465760525316, -0.011997123248875141, -0.001261778175830841, -0.0002783584932330996, 0.02455352060496807, 0.02724076807498932, -0.04403264820575714, -0.009582693688571453, 0.01420011930167675, 0.03898553550243378, 0.03999495878815651, -0.022548316046595573, -0.03794883191585541, -0.005531362723559141, 0.017651252448558807, -0.006905677728354931, 0.02511279471218586, -0.004334378521889448, 0.013900021091103554, -0.0029464224353432655, 0.003082830924540758, -0.025917604565620422, -0.01743299886584282, -0.025944886729121208, 0.007795742712914944, 0.00756384851410985, 0.01680552028119564, -0.007966252975165844, -0.010448887012898922, 0.02669513411819935, 0.012631421908736229, 0.005391543731093407, -0.014827598817646503, 0.04858868941664696, -0.02916412614285946, 0.0023138283286243677, 0.017801303416490555, 0.004920934792608023, -0.011560616083443165, 0.004006998147815466, -0.0008482900448143482, -0.011969841085374355, 0.006267968099564314, 0.016655471175909042, -0.01982014812529087, -0.009650898166000843, 0.011744767427444458, 0.00957587268203497, -0.02092505618929863, 0.030964717268943787, -0.0023547508753836155, 0.021838992834091187, 0.02443075366318226, 0.013531718403100967, 0.018196886405348778, -0.014977647922933102, 0.021388845518231392, -0.003457954153418541, -0.0365029014647007, -0.014663908630609512, 0.0175694078207016, 0.013211158104240894, -0.011908457614481449, -0.02010660618543625, -0.018469704315066338, 0.027895526960492134, -0.0013342450838536024, 0.0007519515929743648, -0.008825626224279404, -0.004951626528054476, 0.04212293028831482, -0.0026207473129034042, 0.0017767200479283929, 0.028100140392780304, -0.004361660219728947, 0.008027637377381325, -0.005770077463239431, -0.03418395668268204, -0.022330062463879585, 0.013531718403100967, -0.0028304753359407187, 0.021716225892305374, -0.012160813435912132, 0.030555492267012596, -0.013995506800711155, 0.004112714901566505, -0.012474552728235722, -0.00847096461802721, -0.0047811162658035755, 0.03497512638568878, 0.023284921422600746, 0.008825626224279404, 0.01803319714963436, -0.0007877587922848761, -0.007904869504272938, 0.008723320439457893, -0.02312123216688633, -0.04940713942050934, -0.016696393489837646, 0.00689544714987278, 0.01018289104104042, 0.0015917160781100392, -0.0157142523676157, 0.011649281717836857, 0.01935635879635811, 0.02503095008432865, -0.012665524147450924, -0.01721474714577198, -0.016369013115763664, 0.009725922718644142, -0.009350799024105072, 0.016232606023550034, -0.00847778469324112, 0.021975401788949966, 0.01471847202628851, 0.016587266698479652, 0.011349182575941086, 0.03260162100195885, 0.0016735611716285348, 0.018210528418421745, 0.027063436806201935, -0.02209816873073578, 0.02538561262190342, 0.019110823050141335, 0.01879708468914032, 0.00950084812939167, 0.002595170633867383, -0.023312203586101532, 0.004586733877658844, 0.003505697241052985, 0.02826382964849472, -0.01467754878103733, 0.033720169216394424, 0.032547056674957275, -0.0029106151778250933, 0.021566174924373627, -0.021907197311520576, -0.014704830944538116, -0.031046563759446144, -0.00785712618380785, 0.011990302242338657, 0.007216006983071566, 0.03568445146083832, -0.016996493563055992, -0.013183876872062683, 0.031510353088378906, 0.024444393813610077, -0.008573271334171295, -0.00184321915730834, -0.007509285118430853, 0.012324503622949123, -0.027199843898415565, 0.006605579052120447, -0.634681224822998, -0.016218964010477066, -0.01597343012690544, -0.00603607390075922, 0.006568066775798798, -0.0010580180678516626, 0.013538538478314877, 0.0240078866481781, -0.012897418811917305, 0.02133428119122982, 0.01872888021171093, 0.01067396067082882, 0.009603154845535755, -0.012447270564734936, 0.010230633430182934, -0.014391091652214527, -0.012610960751771927, -0.014472936280071735, -0.01962917484343052, 0.00737287662923336, -0.008968855254352093, 0.022725647315382957, -0.009664538316428661, 0.04103166237473488, 0.015577845275402069, -0.02921869046986103, -0.0011100237024948, 0.004334378521889448, 0.015291387215256691, -0.008811986073851585, -0.0010989406146109104, -0.010953598655760288, -0.013831816613674164, 0.025003667920827866, 0.050252873450517654, 0.0010026020463556051, -0.006837473716586828, 0.003449428593739867, 0.012440450489521027, 0.042559437453746796, -0.044005364179611206, 0.0010043071815744042, 0.040431465953588486, -0.018756162375211716, 0.006261148024350405, -0.02681790105998516, 0.006281609181314707, 0.014800316654145718, 0.012938341125845909, -0.020338499918580055, -0.011205954477190971, 0.026640569791197777, -1.1775885468523484e-05, -0.003737591439858079, -0.01851062662899494, -0.027418097481131554, 0.016273528337478638, -0.00902341865003109, -0.019520049914717674, -0.025276485830545425, -0.027049794793128967, 0.008150405250489712, -0.0035841320641338825, -0.0002890154137276113, -0.014759394340217113, 0.018074119463562965, 0.010503450408577919, 0.016164401546120644, -0.009787306189537048, 0.0004612310731317848, 0.0070318556390702724, 0.030910154804587364, -0.005732565186917782, -0.016068914905190468, 0.024880900979042053, 0.012256299145519733, 0.025276485830545425, -0.015277746133506298, 0.0069738817401230335, -0.0018585651414468884, -0.008866549469530582, -0.010605757124722004, -0.026517802849411964, -0.01224265806376934, 0.005173290614038706, 0.007509285118430853, 7.545092375949025e-05, 0.015209541656076908, 0.028072858229279518, 0.0014749163528904319, 0.007406978867948055, 0.04637887328863144, 0.0003883377939928323, -0.01564604975283146, -0.03382929414510727, 0.015468718484044075, 0.00021910607756581157, 0.0021910606883466244, -0.0037785139866173267, -0.024253422394394875, 0.007059137336909771, -0.021593457087874413, 0.01653270423412323, -0.005111906677484512, 0.011321901343762875, 0.01851062662899494, -0.01214035227894783, 0.020406704396009445, 0.022275499999523163, -0.012406348250806332, -0.011587897315621376, -0.025972168892621994, 0.007536566816270351, 0.022043604403734207, 0.0006159694166854024, -0.022889338433742523, 0.007229647599160671, 0.004300276283174753, -0.0027111179661005735, -0.009350799024105072, 0.005487029906362295, 0.02290297858417034, 0.005725744646042585, -0.012945162132382393, 0.005047112703323364, -0.015550563111901283, 0.017733098939061165, -0.007816203869879246, -0.043050505220890045, -0.01647813990712166, 0.01499128807336092, 0.010571654886007309, -0.022589238360524178, -0.0058451020158827305, 0.023284921422600746, -3.511451723170467e-05, -0.015359591692686081, -0.022862056270241737, 0.012767830863595009, 0.024239782243967056, 0.008409581147134304, 0.0005281564663164318, -0.003428967436775565, -0.010844471864402294, -0.004600374959409237, -0.02250739373266697, -0.028318393975496292, 0.005998561624437571, 0.009848689660429955, 0.007911689579486847, -0.0036352851893752813, -0.02237098477780819, -0.010571654886007309, 0.014172838069498539, -0.003123753471300006, -0.0065817078575491905, -0.0006074438570067286, -0.02696795016527176, -0.014377450570464134, -0.021838992834091187, -0.011028623208403587, 0.02140248566865921, -0.04062243551015854, 0.003026562510058284, -0.004215021152049303, -0.01011468656361103, -0.035766296088695526, 0.011253696866333485, -0.03819436579942703, -0.03565716743469238, 0.006387325469404459, -0.0054290564730763435, 0.00198133266530931, -0.005105086136609316, 0.010755806230008602, 0.03773057833313942, -0.020979618653655052, -0.00028709715115837753, -0.02848208323121071, -0.020734084770083427, -0.015414155088365078, -0.00183128344360739, -0.03339278697967529, 0.0016931698191910982, 0.01605527475476265, 0.013784073293209076, 0.02908228151500225, -0.00994417630136013, -0.016710035502910614, 0.0109058553352952, 0.013934123329818249, 0.01770581677556038, -0.008805165067315102, 0.0008180243894457817, 0.009112084284424782, 0.03325637802481651, -0.0017903608968481421, 0.01913810521364212, 0.027677273377776146, 0.03352919593453407, 0.031101126223802567, 0.009971457533538342, 0.0009181993664242327, -0.023994246497750282, -0.0012711562449112535, -0.019642816856503487, 0.004409403074532747, 0.0004256370011717081, 0.03904009982943535, 0.013067929074168205, 0.016832802444696426, -0.032219674438238144, -0.021211514249444008, -0.024321626871824265, 0.027936451137065887, 0.01762397214770317, -0.0015218066982924938, 0.032547056674957275, 0.003880820469930768, 0.0026309778913855553, -0.001638606539927423, -0.0010298837441951036, 0.01570061221718788, -0.0025712992064654827, -0.0023428150452673435, 0.003836487652733922, 0.0035193380899727345, -0.011417387053370476, -0.003802385414019227, -0.03595726564526558, -0.0034954664297401905, -0.004620836116373539, 0.02826382964849472, 0.009562232531607151, 0.04111350700259209, 0.009303056634962559, 0.012658704072237015, -0.00043949097744189203, 0.026244984939694405, 0.013599921949207783, -0.024730851873755455, -0.0032601619604974985, 0.026081295683979988, -0.03958573192358017, -0.008525528013706207, 0.01049663033336401, 0.021961759775877, 0.02024301327764988, 0.0031408045906573534, 0.027077076956629753, 0.0075911302119493484, 0.004037689883261919, -0.023571379482746124, 0.004832269158214331, 0.009248493239283562, 0.016901006922125816, -0.0034954664297401905, 0.020079324021935463, 0.024335267022252083, 0.03451133891940117, -0.00964407715946436, 0.0088801896199584, 0.02578119747340679, -0.012713267467916012, -0.005360851995646954, 0.012583679519593716, -0.0029430121649056673, -0.024321626871824265, -0.006042894441634417, -0.005292647983878851, -0.030309956520795822, -0.036884844303131104, -0.032083265483379364, 0.013081570155918598, 0.026722414419054985, 0.0077002570033073425, -0.02346225269138813, 0.0029140254482626915, 0.028509365394711494, -0.017064696177840233, -0.01784222573041916, -0.014568421989679337, 0.02676333673298359, 0.012283580377697945, 0.020884133875370026, -0.02029757760465145, -0.002658259589225054, 0.01748756319284439, 0.0026701954193413258, 0.007775281555950642, -0.013818175531923771, 0.019724661484360695, 0.0058348714374005795, -0.010039662010967731, -0.014118274673819542, 0.007768461015075445, 0.01331346482038498, 0.0008704563952051103, 0.0003932399849873036, -0.002792963059619069, -0.015796098858118057, 0.01183343306183815, -0.022070886567234993, 0.003145919879898429, 0.05598202720284462, -0.00024446952738799155, 0.025290125980973244, -0.008798344992101192, -0.015141338109970093, -0.00506075331941247, 0.011165031231939793, -0.018537908792495728, -0.03451133891940117, -0.009378081187605858, 0.013258901424705982, -0.002963473554700613, 0.028154704719781876, -0.0221527311950922, 0.05156239494681358, -0.024239782243967056, 0.009794126264750957, 0.027827324345707893, 0.0020273705013096333, 0.008491425774991512, 0.04367798566818237, 0.03516609966754913, 0.007331954315304756, 0.007747999858111143, -0.048397716134786606, 0.005057343281805515, -0.010387503542006016, -0.023216718807816505, 0.014227401465177536, 0.022875696420669556, -0.0013913661241531372, -0.0263541117310524, 0.022275499999523163, -0.0038842305075377226, 0.01605527475476265, 0.037621449679136276, -0.009589513763785362, -0.014404731802642345, 0.016791880130767822, -0.010953598655760288, 0.017528485506772995, 0.003277213079854846, 0.013606742955744267, 0.018565189093351364, 0.0016045044176280499, -0.005422235932201147, 0.020461266860365868, 0.01968373917043209, -0.007870767265558243, -0.01789678819477558, -0.0010750690707936883, 0.008675577118992805, 0.009446284733712673, 0.019588252529501915, 0.0016957275802269578, 0.012931521050632, 0.0053062885999679565, 0.016996493563055992, 0.019520049914717674, -0.03830349072813988, 0.0021705995313823223, 0.03325637802481651, 0.005770077463239431, -0.003203893546015024, -0.01420011930167675, -0.004538991022855043, -0.0088801896199584, 0.01949276775121689, -0.014063711278140545, 0.009855510666966438, -0.0053949542343616486, -0.006479401141405106, -0.04621518403291702, -0.019329076632857323, 0.015877943485975266, 0.0014663907932117581, -0.0031732015777379274, -0.03925834968686104, -0.006881806068122387, 0.0006995195872150362, -0.02949150651693344, -0.00860737357288599, 0.023298563435673714, 0.013156594708561897, 0.002446826547384262, -0.007025035098195076, -0.013606742955744267, 0.008211788721382618, -0.02174350619316101, 0.005698462948203087, 0.024062450975179672, -0.03502969071269035, 0.013231619261205196, -0.019301796332001686, 0.015427795238792896, 0.02702251449227333, -0.0008039572858251631, -0.0014493397902697325, 0.0014723587082698941, -0.01499128807336092, -0.010537552647292614, -0.014936724677681923, -0.014432013966143131, -0.023203076794743538, -0.014145555905997753, 0.003360763192176819, 0.0015686971601098776, 0.01385909877717495, -0.015018570236861706, 0.0008150404901243746, -0.0028509364929050207, 0.0046685789711773396, 0.02970976009964943, -0.03470230847597122, 0.02456716075539589, 0.016682753339409828, 0.006680603604763746, 0.0017613740637898445, 0.03352919593453407, 0.003188547445461154, 0.00782302487641573, -0.02031121775507927, -0.018783442676067352, 0.003435787744820118, 0.015523281879723072, 0.003374404041096568, -0.0003992078418377787, 0.013981865718960762, -0.0027980783488601446, -0.015236823819577694, 0.021361563354730606, -0.023816915228962898, 0.012283580377697945, -0.006431658286601305, 0.03003714047372341, -0.009534950368106365, 0.0069977534003555775, 0.0011739651672542095, 0.014841238968074322, -0.024021528661251068, -0.002284841611981392, -0.03251977264881134, 0.00549043994396925, 0.026599647477269173, 0.006936369463801384, 0.021293358877301216, -0.011690204031765461, -0.02867305651307106, -0.01341577060520649, 0.021361563354730606, 0.01750120334327221, 0.0064384788274765015, 0.008552810177206993, -0.012181274592876434, -0.026654209941625595, -0.02475813403725624, 0.01769217662513256, -0.017337514087557793, -0.020188450813293457, 0.014841238968074322, 0.003137394320219755, -0.009364440105855465, 0.016423577442765236, -0.04569682851433754, -0.012911059893667698, -0.029136843979358673, -0.016232606023550034, 0.009234852157533169, 0.024867260828614235, 0.017801303416490555, 0.012699626386165619, 0.0076456936076283455, -0.03088287264108658, -0.003091356484219432, -0.005500670522451401, -0.003125458490103483, -0.009187108837068081, -0.009303056634962559, 0.026040373370051384, 0.025494739413261414, 0.03904009982943535, 0.003437492996454239, 0.007829844951629639, 0.005094855558127165, -0.003996767569333315, 0.023503175005316734, 0.01074216514825821, -0.008505066856741905, -0.03442949429154396, 0.002187650417909026, 0.018633393570780754, 0.006755628623068333, 0.024458033964037895, 0.007400158327072859, 0.023366767913103104, 0.02545381709933281, 0.01755576767027378, 0.018196886405348778, -0.02140248566865921, -0.010585295967757702, 0.01080354955047369, 0.010026020929217339, -0.017064696177840233, 0.009630436077713966, -0.026517802849411964, -0.0041229454800486565, 0.03314725309610367, 0.008143584243953228, -0.003567080944776535, -0.005497260484844446, 0.005654130131006241, 0.0035159278195351362, -0.018074119463562965, -0.007434260565787554, 0.02187991514801979, -0.019724661484360695, 0.002532081911340356, -0.01811504177749157, 0.014186478219926357, -0.004382121376693249, -0.008443683385848999, 0.017405718564987183, 0.018060479313135147, -0.009657718241214752, -0.04375983029603958, 3.0478762710117735e-05, -0.019260872155427933, -0.025481097400188446, -0.005446107126772404, -0.017242027446627617, 0.0026088114827871323, -0.030691901221871376, -0.019042618572711945, -0.022521035745739937, -0.009514489211142063, 0.026586007326841354, 0.004893653094768524, 0.02189355529844761, 0.010435245931148529, 0.0046481178142130375, -0.006319121457636356, -0.000778806977905333, 0.038030676543712616, 4.862215064349584e-05, 0.04588780179619789, 0.029054999351501465, 0.014009147882461548, -0.005432466510683298, 0.002090459456667304, 0.012106250040233135, 0.007093239109963179, 0.023653224110603333, -0.004569683223962784, -0.0024297754280269146, 0.004450325854122639, -0.02002475969493389, -0.004082022700458765, -0.02538561262190342, -0.03955845162272453, 0.027213485911488533, 0.011949379928410053, -0.005466568749397993, 0.002098985016345978, 0.01111728884279728, -0.03295627981424332, 0.03423852100968361, 0.004634477198123932, -0.012740548700094223, -0.008286813274025917, -0.017801303416490555, -0.03691212460398674, 0.0429413802921772, 0.009071161970496178, 0.019056260585784912, 0.013811355456709862, 0.02036578208208084, -0.0006394145893864334, -0.005401774775236845, -0.041740983724594116, 0.012767830863595009, -0.007720718160271645, 0.012092608958482742, -0.02957335114479065, -0.005623438395559788, 0.036393772810697556, -0.008450503461062908, -0.044087208807468414, -0.00014813104644417763, -0.020270295441150665, 0.025631148368120193, -0.011628820560872555, -0.012508654966950417, 0.0027503352612257004, 0.020679520443081856, -0.012017584405839443, 0.00046336246305145323, -0.03121025301516056, -0.022602880373597145, 0.006902267690747976, -0.01694192923605442, 0.013027006760239601, 0.022684725001454353, -0.02264380268752575, -0.009193929843604565, -0.0010563129326328635, 0.0064146071672439575, -0.0016317861154675484, -0.03642105683684349, -0.0006730904569849372, -0.0192745141685009, -0.040431465953588486, -0.03170132264494896, -0.004017228726297617, 0.014118274673819542, -0.009098443202674389, -0.0236668661236763, 0.009391721338033676, 0.04179554805159569, -0.02523556351661682, 0.03121025301516056, -0.012774650938808918, 0.0016053569270297885, -0.023912401869893074, 0.00994417630136013, -0.003856948809698224, -0.014213760383427143, 0.03669387102127075, -0.018674315884709358, 0.011342362500727177, -0.006076996214687824, -0.020270295441150665, 0.010510271415114403, -0.022548316046595573, -0.012638242915272713, 0.0075570279732346535, 0.020406704396009445, 0.016437217593193054, -0.013586281798779964, -0.0108103696256876, 0.02584940195083618, -0.025140076875686646, 0.013981865718960762, 0.01597343012690544, -0.005886024329811335, 0.005739385262131691, 0.005718924105167389, 0.010530732572078705, -0.028318393975496292, -0.016778239980340004, 0.0025576583575457335, 0.00031160804792307317, 0.0020052040927112103, -0.011949379928410053, -0.0015388578176498413, -0.02263016253709793, -0.0031510351691395044, -0.0040104081854224205, 0.004903883673250675, -0.03153763338923454, 0.0035363889764994383, 0.02599945105612278, 0.009439464658498764, -0.006510093342512846, 0.011778869666159153, -0.015073133632540703, -0.022193655371665955, 0.015223182737827301, 0.0007485413807444274, 0.006005382165312767, -0.013981865718960762, -0.006257737521082163, 0.025890324264764786, 0.0077343592420220375, -0.02029757760465145, -0.01576881669461727, -0.009487207978963852, -0.021238794550299644, -0.023707788437604904, -0.008702859282493591, 0.00337099377065897, 0.025140076875686646, 0.018687957897782326, -0.01560512650758028, 0.04646071791648865, -0.007727538701146841, 0.03292899951338768, -0.028563929721713066, 0.0008448798325844109, 0.0026122217532247305, 0.03822164610028267, 0.009009778499603271, -1.9568751667975448e-05, 0.0019523459486663342, -0.026326831430196762, 0.015291387215256691, -0.018428782001137733, 0.02902771718800068, 0.010107866488397121, 0.021020542830228806, -0.03421124070882797, -0.008082200773060322, 0.006707885302603245, 0.018838007003068924, 0.0032806231174618006, 0.005401774775236845, -0.04493294283747673, -0.015809739008545876, 0.0027025924064219, 0.02730897068977356, -0.032547056674957275, -0.018988056108355522, -0.007966252975165844, -0.022998465225100517, 0.013995506800711155, 0.009466745890676975, -0.013565820641815662, 0.006605579052120447, -0.008150405250489712, 0.008375478908419609, 0.03121025301516056, 0.028918590396642685, 0.028563929721713066, -0.0021143308840692043, 0.027540866285562515, -0.02429434470832348, 0.017733098939061165, -0.03835805505514145, -0.018005914986133575, 0.020079324021935463, 0.007175084203481674, -0.007536566816270351, -0.020747724920511246, 0.039749421179294586, -0.02894587256014347, 0.023898759856820107, -0.01811504177749157, -0.007284210994839668, -0.0012677459744736552, 0.03396570309996605, 0.023230358958244324, -0.023012105375528336, 0.017610330134630203, 0.009057520888745785, -0.008552810177206993, 0.0021910606883466244, -0.04094981774687767, 0.020133886486291885, -0.015686972066760063, -0.014350168406963348, 0.0006496452260762453, -0.0037444119807332754, 0.0008073674980551004, -0.0009778781095519662, 0.011669742874801159, -0.019670099020004272, 0.03224695846438408, 0.15506912767887115, -0.004303686786442995, 0.004450325854122639, 0.02784096449613571, -0.006233866326510906, 0.02627226710319519, -0.011465130373835564, -0.018701598048210144, -0.019806506112217903, 0.02003840170800686, -0.01879708468914032, 0.017855865880846977, -0.007898049429059029, 0.002867987612262368, -0.005002779886126518, -0.014936724677681923, 0.0004501478688325733, -0.02949150651693344, -0.024935465306043625, 0.02002475969493389, 0.022248217836022377, -0.010919496417045593, -0.02354409731924534, -0.016764597967267036, 0.026381393894553185, -0.03088287264108658, 0.010107866488397121, 0.013913662172853947, 0.011567436158657074, -0.00517670065164566, -0.018087759613990784, 0.012829214334487915, -0.012917879968881607, 0.009623616002500057, -0.05232628062367439, -0.009153006598353386, 0.04206836596131325, -0.017814943566918373, 0.03148306906223297, -0.0016420166939496994, 0.014241041615605354, -0.023762350901961327, -0.010714883916079998, -0.020270295441150665, 0.01341577060520649, 0.02998257614672184, 0.006844293791800737, -0.006564656738191843, -0.0020120246335864067, 0.042504873126745224, -0.02826382964849472, -0.010319299064576626, 0.01879708468914032, -0.0059439982287585735, -0.024649007245898247, -0.004218431189656258, -0.005101676099002361, -0.0016181452665477991, 0.025126436725258827, 0.036666590720415115, -0.0008112039649859071, 0.005562054459005594, -0.005664360709488392, 0.031728606671094894, 0.007181904744356871, 0.01467754878103733, -0.025126436725258827, -0.004259353969246149, -0.014732112176716328, -0.0108103696256876, -0.01166292279958725, 0.025371970608830452, -0.020679520443081856, 0.01028519682586193, -0.02970976009964943, -0.012685985304415226, 0.010783087462186813, 0.03732135146856308, 0.00553818279877305, 0.007284210994839668, -0.03194686025381088, -0.01248137280344963, -0.019465485587716103, 0.022521035745739937, -0.03369288519024849, -0.012365425936877728, 0.0037341811694204807, 0.00884608831256628, 0.0034102112986147404, -0.00785712618380785, 0.015359591692686081, -0.008764242753386497, 0.0033181356266140938, 0.005763256922364235, -0.0007907427498139441, 0.011410566978156567, 0.000600623432546854, 0.015264105051755905, -0.014418372884392738, 0.01087857410311699, -0.011315081268548965, 0.03538435325026512, 0.029764324426651, -0.0020120246335864067, -0.001093825208954513, -0.00497549818828702, -0.0068647549487650394, -0.0036045932210981846, 0.008805165067315102, -0.018292373046278954, -0.01357946079224348, 0.0020665880292654037, -0.003567080944776535, -0.014786675572395325, 0.01303382683545351, -0.019983837381005287, -0.00392515305429697, -0.027322612702846527, -0.008395940065383911, -0.006267968099564314, 0.021975401788949966, -0.036475617438554764, -0.027336252853274345, -0.0005456337821669877, -0.0052517252042889595, -0.0033658784814178944, -0.03568445146083832, 0.008348196744918823, -0.016901006922125816, 0.0015098709845915437, 0.041331760585308075, -0.03500240668654442, 0.0030538442078977823, 0.00038300934829749167, -0.008443683385848999, -0.008416401222348213, 0.006295249797403812, -0.006932959426194429, 0.007222827523946762, -0.014063711278140545, -0.00569164240732789, 0.00014578652917407453, -0.006670373026281595, -0.004426454193890095, -0.0006944042397662997, -0.022616520524024963, 0.018087759613990784, -0.005814410280436277, -0.0028202447574585676, 0.00018809446191880852, 0.0004158326191827655, 0.0036898485850542784, 0.017378436401486397, -0.025535661727190018, 0.013968225568532944, -0.006363454274833202, -0.012488193809986115, -0.02283477410674095, 0.014936724677681923, -0.004453735891729593, -0.02559022419154644, -0.009221211075782776, -0.001077626715414226, 0.0064146071672439575, -0.019915632903575897, 0.006012202240526676, -0.17187464237213135, 0.0069193183444440365, 0.0022149321157485247, -0.01673731580376625, 0.016682753339409828, -0.005602977238595486, 0.0408952534198761, -0.00995099637657404, 0.008873369544744492, -0.028509365394711494, -0.008129943162202835, 0.0006146905943751335, -0.009937355294823647, -0.024048808962106705, -0.00749564403668046, 0.0040104081854224205, -0.035711731761693954, 0.001130484975874424, 0.026804260909557343, 0.0008985906606540084, 0.07055044919252396, -0.010080584324896336, 0.031182970851659775, 0.002404198981821537, 0.0021910606883466244, -0.0058212303556501865, -0.005926947109401226, -0.002047831891104579, -0.0012421694118529558, -0.018224168568849564, 0.004433274734765291, 0.0151276970282197, 0.008382298983633518, -0.02024301327764988, 0.002122856443747878, -0.0013947763945907354, 0.00588261429220438, -0.01433652825653553, -0.006629450712352991, 0.01816960610449314, 0.012542757205665112, 0.014309246093034744, -0.004787936341017485, -0.011396925896406174, -0.01420011930167675, 0.016791880130767822, -0.0025576583575457335, -0.04506935179233551, 0.015864303335547447, 0.005681411828845739, 0.01591886579990387, -0.02545381709933281, 0.009309876710176468, -0.009466745890676975, 0.005466568749397993, -0.022398266941308975, -0.03658474609255791, 0.026435958221554756, -0.018537908792495728, -0.011137749999761581, 0.003277213079854846, -0.027595428749918938, 0.032819874584674835, 0.012010764330625534, -0.012024404481053352, -0.00021441702847369015, -0.012256299145519733, 0.003490351140499115, -0.01988835260272026, 0.0032362905330955982, -0.016273528337478638, -0.0035295686684548855, 0.0012813868233934045, -0.020352140069007874, 0.012017584405839443, 0.019397281110286713, -0.0022336882539093494, 0.00309476675465703, 0.00932351779192686, -0.009548591449856758, -0.02228914014995098, 0.008191327564418316, -0.012426809407770634, 0.001601946773007512, 0.0017988864565268159, -0.006748808082193136, 0.008013996295630932, 0.009698640555143356, -0.007420619484037161, -0.009766845032572746, 0.02531740814447403, -0.021279718726873398, -0.019179027527570724, 0.000503432413097471, 0.007393337786197662, 0.01597343012690544, 0.00997827760875225, -0.01928815431892872, 0.02943694405257702, -0.020556753501296043, -0.0016138824867084622, 0.004293455742299557, -0.012508654966950417, -0.0024383009877055883, 0.03039180301129818, 0.01975194364786148, -0.019247232005000114, -0.02187991514801979, 0.010769447311758995, 0.01433652825653553, 0.007359236013144255, -0.01736479625105858, 0.010605757124722004, 0.0016607728321105242, -0.00595081876963377, 0.024990027770400047, -0.005974689964205027, -0.013081570155918598, 0.008293633349239826, 0.00038897720514796674, 0.03623008355498314, -0.0148821622133255, 0.006005382165312767, -0.0071955458261072636, 0.0014033019542694092, -0.019369998946785927, -0.14546597003936768, -0.019574612379074097, 0.0022558546625077724, 0.015141338109970093, -0.014322887174785137, 0.016778239980340004, -0.01426832377910614, -0.010237454436719418, -0.0011014982592314482, 0.033583760261535645, 0.010196531191468239, -0.007632052525877953, -0.024649007245898247, 0.019233591854572296, 0.008382298983633518, -0.012488193809986115, -0.01166292279958725, -0.02503095008432865, -8.132554285111837e-06, 0.034756872802972794, -0.008423221297562122, -0.015332309529185295, -0.0030129216611385345, 0.03202870488166809, -0.004733372945338488, 0.017937710508704185, -0.018687957897782326, 0.024458033964037895, 0.005783718079328537, 0.022180013358592987, 0.020133886486291885, -0.014363809488713741, 0.011956200934946537, 0.001959166256710887, 0.0013845456996932626, -0.0008789819548837841, -0.032001420855522156, -0.014704830944538116, 0.023639583960175514, -0.016778239980340004, 0.019601894542574883, 0.010824010707437992, -0.021238794550299644, 0.01928815431892872, -0.0034562491346150637, -0.002919140737503767, -0.017801303416490555, -0.012951982207596302, -0.0018875518580898643, -0.030719183385372162, -0.035711731761693954, -0.01420011930167675, -0.021648021414875984, -0.02628590725362301, 0.01481395773589611, -0.018074119463562965, 0.01983378827571869, -0.018333295360207558, 0.003717130282893777, -0.000889212591573596, -0.024539880454540253, 0.006264558061957359, 0.004518529865890741, 0.018551548942923546, 0.013900021091103554, 0.0034767102915793657, -0.024512598291039467, 0.0034102112986147404, 0.013531718403100967, -0.026940668001770973, -0.007713897619396448, 0.020202090963721275, -0.02812742255628109, 0.047852084040641785, -0.03726678714156151, -0.006632860749959946, -0.0026701954193413258, 0.006346403155475855, 0.01200394332408905, 0.007597950752824545, -0.019642816856503487, -0.015032211318612099, 0.0022592649329453707, -0.007147802505642176, 0.01797863282263279, 0.02353045716881752, 0.010346581228077412, 0.006019022781401873, 0.020965978503227234, -0.005487029906362295, -0.015618767589330673, -0.0011211069067940116, 0.015264105051755905, -0.020406704396009445, 0.01748756319284439, 0.007775281555950642, 0.0053949542343616486, -0.016901006922125816, 0.0018722059903666377, 0.011069545522332191, -0.046897225081920624, -0.005432466510683298, -0.03895825147628784, 0.018087759613990784, -0.030637336894869804, -0.011533333919942379, -0.000662433507386595, -0.008968855254352093, 0.02949150651693344, -0.025535661727190018, 0.0070318556390702724, -0.007147802505642176, -0.03224695846438408, -0.016150759533047676, -0.02511279471218586, -0.014759394340217113, -0.009664538316428661, -0.02141612581908703, 0.008873369544744492, -0.006111098453402519, 0.011199133470654488, 0.008696038275957108, 0.006881806068122387, 0.010305657982826233, -0.025085514411330223, -0.005070983897894621, -0.02668149210512638, -0.004532170481979847, 0.02764999307692051, 0.03219239413738251, -0.010653499513864517, -0.019983837381005287, -7.635675865458325e-05, -0.016846442595124245, -0.018851647153496742, -0.0027264638338238, 0.01176522858440876, 0.00902341865003109, 0.007079598493874073, 0.026640569791197777, 0.011874355375766754, 0.02271200716495514, 0.00572915468364954, -0.02092505618929863, 0.008655115962028503, -0.0013137839268893003, 0.01743299886584282, -0.004856140818446875, -0.018701598048210144, 0.008355017751455307, 0.004999369848519564, 0.033174533396959305, 0.03311997279524803, 0.0053403908386826515, -0.026463238522410393, 0.008573271334171295, -0.017269309610128403, -0.03260162100195885, 0.026449598371982574, -0.007945791818201542, -0.004348019137978554, -0.021075105294585228, 0.024307984858751297, -0.015468718484044075, -0.0006803371361456811, -0.012713267467916012, 0.0035534400958567858, -0.01238588709384203, -0.011294619180262089, 0.021702583879232407, 0.0175694078207016, -0.01653270423412323, -9.39939491217956e-05, 0.017787661403417587, 0.008204968646168709, -0.01550964079797268, 0.00885290838778019, 0.020611315965652466, -0.025071872398257256, 0.014009147882461548, 0.004047920927405357, 0.004910704214125872, 0.04446915537118912, 0.005545003339648247, -0.026381393894553185, 0.013749971985816956, 0.03631192818284035, 0.02063859812915325, -0.015414155088365078, -0.008532348088920116, -0.0023428150452673435, -0.0001960871450137347, -0.004457145929336548, -0.011008162051439285, -0.018224168568849564, -0.009228031150996685, 0.018633393570780754, 0.022793851792812347, -0.011887996457517147, 0.004498068708926439, -0.01796499267220497, 0.01605527475476265, 0.010087404400110245, -0.008505066856741905, 0.0003007380000781268, 0.0036011829506605864, -0.030446365475654602, 0.012433630414307117, -0.01004648208618164, -0.04501478746533394, -0.016832802444696426, 0.019997479394078255, 0.013702228665351868, 0.026435958221554756, 0.004617426078766584, 0.0006990932743065059, -0.018142323940992355, -0.007161443587392569, -0.006264558061957359, -0.009725922718644142, -0.01564604975283146, 0.029818886891007423, -0.02962791547179222, 0.021225154399871826, 0.026163140311837196, -0.008798344992101192, 0.02263016253709793, 0.013688587583601475, 0.007447901181876659, -0.02640867605805397, 0.008525528013706207, 0.016137119382619858, 0.015100414864718914, -0.00798671506345272, -0.028782183304429054, -0.02077500708401203, -0.025331048294901848, -0.018401499837636948, 0.02065223827958107, -0.013361207209527493, -0.006288429256528616, 0.05832825228571892, 0.021975401788949966, -0.0048800124786794186, -0.015482358634471893, 0.0034647746942937374, 0.013470334000885487, 0.022411908954381943, -0.012870137579739094, -0.01831965520977974, -0.052435409277677536, 0.010851291939616203, 0.011335542425513268, -0.025863042101264, -0.03541163355112076, -0.002586645307019353, 0.003911512438207865, -0.01770581677556038, -0.0014195004478096962, -0.013770433142781258, -0.009528130292892456, 0.008430042304098606, 0.00031288687023334205, -0.0014817367773503065, 0.021648021414875984, -0.0030350880697369576, -0.005432466510683298, 0.014322887174785137, 0.014363809488713741, -0.04103166237473488, -0.02524920366704464, -0.022548316046595573, -0.019642816856503487, -0.030773745849728584, -0.010128327645361423, 0.0019011927070096135, 0.02009296417236328, -0.015564204193651676, -0.005664360709488392, 0.024253422394394875, 0.012358605861663818, -0.004764065146446228, 0.010960418730974197, -0.024335267022252083, -0.007079598493874073, -0.009582693688571453, -0.016928289085626602, -0.001653099898248911, -0.009112084284424782, -0.03977670520544052], "34ed9af4-83b2-4f32-b700-fc003541f5a6": [0.02186114713549614, 0.0243337731808424, 0.004713032860308886, -0.023771217092871666, -0.023025505244731903, -0.0007833250565454364, -0.02192656137049198, -0.018982959911227226, 0.019192282110452652, -0.022332124412059784, 0.02526264265179634, 0.006685246247798204, -0.011839819140732288, 0.026780232787132263, -0.024516930803656578, 0.011022152379155159, 0.00935411173850298, -0.0002006350550800562, -0.0032052549067884684, 0.023352572694420815, -0.026060685515403748, -0.0007060555508360267, 0.0006721223471686244, -0.021494831889867783, -0.048118073493242264, 0.011421173810958862, 0.019833333790302277, -0.026492413133382797, 0.00728050759062171, -0.01374989002943039, 0.023365654051303864, -0.0196240097284317, -0.04592018201947212, 0.0020212731324136257, -0.013736806809902191, 0.02450384758412838, -0.010682002641260624, 0.00467378506436944, -0.0013327973429113626, -0.0021259344648569822, 0.04223087057471275, -0.0018724576802924275, 0.0005061359261162579, 0.003375329775735736, -0.017818601801991463, 0.008503737859427929, 0.014273196458816528, -0.05073460564017296, -0.017046723514795303, 0.020971525460481644, 0.029828496277332306, 0.040346965193748474, -0.0392741858959198, -0.004526604898273945, -0.0033655178267508745, 0.007869227789342403, 0.0019444123608991504, 0.006557689979672432, 0.001977119129151106, -0.003620629897341132, -0.00832058023661375, 0.004385966341942549, -0.019100703299045563, -0.014443271793425083, -0.02006882056593895, -0.007175846491008997, 0.01708597131073475, 0.004631266463547945, -0.02382354810833931, 0.007797273341566324, 0.022253626957535744, 0.026740984991192818, 0.0076664467342197895, 0.0032575856894254684, 0.034799911081790924, 0.005363896023482084, -0.025406552478671074, 0.004343447741121054, 0.0007542978855781257, 0.0012894610408693552, -0.005589572247117758, -0.005426038987934589, -0.0035519457887858152, 0.01852506585419178, 0.006973064970225096, -0.03916952386498451, 0.007430958561599255, 0.03278518095612526, 0.002820951398462057, -0.020173482596874237, 0.03922185301780701, 0.007136598229408264, 0.010884784162044525, 0.007771107833832502, -0.004660702310502529, 0.00832058023661375, 0.0013843104243278503, 0.021874230355024338, 0.005936263129115105, -0.008739225566387177, -0.003470179159194231, 0.020513631403446198, -0.011447339318692684, -0.0030548041686415672, -0.039902154356241226, -0.011035234667360783, -0.0028013275004923344, -0.011512752622365952, 0.021834982559084892, -0.005285399965941906, -0.020291225984692574, 0.04079177603125572, -0.013422822579741478, -0.04406244307756424, 0.018315743654966354, -0.011937939561903477, 0.041786059737205505, -0.0027555380947887897, -0.016693491488695145, -0.02954067662358284, 0.008870052173733711, -0.002312362426891923, 0.027866093441843987, -0.010695085860788822, 0.03877704218029976, -0.005857767071574926, 0.02192656137049198, -0.016458002850413322, -0.0256027914583683, -0.02613918110728264, 0.01439094077795744, 0.0002876143844332546, -0.0001620002876734361, 0.015398306772112846, 0.004036004655063152, 0.008000054396688938, -0.006093255244195461, -0.003015556139871478, -0.020291225984692574, -0.006103067193180323, 0.025157980620861053, 0.00495179183781147, -0.008870052173733711, 0.0026181701105087996, -0.022005056962370872, 0.02594294212758541, 0.027735266834497452, 0.0007003318751230836, 0.01467875950038433, -0.0021488291677087545, 0.01310229767113924, 0.0018070442602038383, 0.011257640086114407, -0.021651824936270714, 0.004752281121909618, 0.00852990336716175, -0.00570077495649457, 0.02150791510939598, 0.021220095455646515, -0.0013720453716814518, 0.02320866286754608, 0.030090149492025375, -0.018996041268110275, 0.013684476725757122, 0.0005445662536658347, 0.023928210139274597, 0.02082761563360691, 0.005815248470753431, -0.03634366765618324, 0.02159949392080307, 0.0071038915775716305, 0.0038332233671098948, -0.019231529906392097, 0.0018724576802924275, -0.006485735531896353, -0.010472680442035198, 0.013776055537164211, -0.00840561743825674, -0.019257694482803345, 0.003944425843656063, 0.0025887340307235718, -0.01199027057737112, 0.0012763782870024443, 0.050499118864536285, -0.04063478484749794, -0.014404023066163063, 0.02135092206299305, 0.022148966789245605, 0.008477572351694107, 0.0011651755776256323, -0.009681178256869316, 0.04157673567533493, -0.00014166082837618887, -0.013906882144510746, -0.6275496482849121, -0.01784476637840271, -0.000775148393586278, -0.018145667389035225, -0.003676231252029538, -0.005501264240592718, 0.02269843779504299, 0.0024709899444133043, -0.03553254157304764, 0.027185795828700066, 0.000884715816937387, 0.00531810661777854, 0.006246976554393768, -0.008601857349276543, 0.012376208789646626, -0.035375550389289856, -0.0020850510336458683, -0.0341457761824131, -0.020631376653909683, -0.010054034180939198, -0.014286279678344727, 0.011545459739863873, -0.015188983641564846, 0.017138302326202393, 0.00033667442039586604, 0.018132586032152176, 0.025236476212739944, 0.01605243980884552, 0.02150791510939598, 0.02373196929693222, 0.010217567905783653, 0.0022322311997413635, -0.0055535947903990746, 0.013010718859732151, 0.026073768734931946, -0.007895393297076225, 0.009785839356482029, 0.029933156445622444, 0.01732145994901657, 0.037023965269327164, -0.0017252775141969323, -0.012330419383943081, 0.017138302326202393, -0.011630496941506863, -0.006315660662949085, -0.007365545257925987, 0.025642039254307747, 0.02144250087440014, -0.0005130860954523087, -0.006927275564521551, -0.014155453070998192, 0.009975538589060307, 0.010067117400467396, -0.015764622017741203, 0.01327237207442522, -0.00730013195425272, 0.004690138623118401, -0.011538918130099773, -0.004906002432107925, -0.006201187148690224, 1.3772580132354051e-05, -0.0050597237423062325, -0.018590478226542473, 0.010793205350637436, -0.008549527265131474, 0.027368953451514244, -0.03349164500832558, -0.005818518809974194, 0.004765363875776529, 0.0032543151173740625, 0.013553649187088013, 0.01852506585419178, -0.008425241336226463, -0.007829979993402958, 0.01783168315887451, 0.02031739242374897, 0.0384107306599617, -0.023849712684750557, 0.01083899475634098, -0.0030237329192459583, 0.03558487072587013, 0.0074244169518351555, -0.032575856894254684, -0.03553254157304764, 0.041105758398771286, 0.006086713634431362, 0.0002804598188959062, 0.0018233975861221552, 0.02938368357717991, 0.02681948058307171, 0.007267425302416086, 0.030875109136104584, 0.008019679225981236, -0.05047295242547989, -0.0006042559980414808, 0.01640567183494568, -0.0033720589708536863, 0.009615764953196049, 0.0004102644743397832, -0.01412928756326437, -0.019414687529206276, -0.016928980126976967, 0.016719656065106392, 0.0005883114645257592, -0.0032412323635071516, 0.004359800834208727, 0.012853726744651794, 0.0076795294880867004, 0.043486807495355606, -0.04945250600576401, -0.027709102258086205, -0.04029463231563568, -0.004333635792136192, 0.01681123487651348, 0.0028667408041656017, -0.022750768810510635, 0.021285509690642357, -0.013619063422083855, 0.02485707961022854, -0.020775284618139267, 0.01603935845196247, -0.019074538722634315, -0.013854551129043102, -0.00038512120954692364, 0.009798922576010227, 0.0031038643792271614, 0.0015331257600337267, -0.027002638205885887, -0.029854660853743553, -0.006332013756036758, 0.015097404830157757, 0.010642754845321178, -0.0021749944426119328, -0.015607628971338272, -0.002376140560954809, 0.004428484942764044, -0.003398224478587508, -0.013305079191923141, 0.015987027436494827, -0.013298537582159042, -0.042649514973163605, -0.011643579229712486, 0.007306673098355532, -0.018472734838724136, 0.003151288954541087, -0.01948009990155697, -0.011434256099164486, -0.0005122684524394572, 0.019702505320310593, 0.017988676205277443, -0.004068711306899786, -0.007875769399106503, -0.005730210803449154, 0.01130997110158205, 0.013501319102942944, -0.0037710806354880333, -0.012382750399410725, 0.0051349494606256485, -0.00089943379862234, -0.0151497358456254, -0.020042655989527702, 0.03032563626766205, -0.021036939695477486, -0.015123570337891579, -0.007463665213435888, -0.0226199422031641, -0.039588168263435364, 0.03006398305296898, -0.005118595901876688, -0.04084410518407822, 0.019506266340613365, 0.01096328068524599, 0.00032706683850847185, 0.0033655178267508745, 0.01784476637840271, 0.025314973667263985, -0.03629133477807045, -0.008837345987558365, -0.01541138906031847, -0.01708597131073475, 0.01580386981368065, 0.013036884367465973, -0.02586444467306137, -0.006737576797604561, 0.038881704211235046, 0.013344326987862587, 0.009092457592487335, -0.0029076242353767157, -0.04175989329814911, 0.004245327319949865, 0.01092403195798397, 0.016444919630885124, -0.013043425045907497, 0.0026492413599044085, -0.011035234667360783, 0.02415061555802822, 0.004693408962339163, 0.01674582250416279, 0.030508793890476227, 0.025131816044449806, 0.0075683267787098885, 0.008870052173733711, 0.0020981337875127792, -0.03618667647242546, -0.015005826018750668, -0.008732684887945652, 0.004094876814633608, -0.022410620003938675, 0.026322338730096817, -0.03032563626766205, 0.00794118270277977, -0.020631376653909683, -0.04162906855344772, -0.01783168315887451, 0.02039588801562786, 0.02184806391596794, 0.007437499705702066, 0.015843117609620094, 0.016000108793377876, -0.0024660839699208736, 0.006973064970225096, 0.00035077918437309563, 0.014247030951082706, 0.008837345987558365, -0.016287928447127342, -0.013095756061375141, 0.013023801147937775, -0.017648525536060333, -0.017805518582463264, -0.03508773073554039, -0.012794854119420052, 0.0034505550283938646, -0.008562609553337097, 0.0014562651049345732, 0.017779354006052017, 0.015987027436494827, 0.027813764289021492, -0.012238840572535992, 0.0222012959420681, -0.00047097622882574797, -0.02167798951268196, 0.018511982634663582, 0.013619063422083855, -0.020356640219688416, 0.004981227684766054, -0.002210971899330616, 0.02893887273967266, 0.00794118270277977, 0.013802220113575459, 0.01571229100227356, -0.002462813165038824, 0.006498817820101976, -0.015555298887193203, -0.005968969780951738, 0.012971471063792706, -6.991053669480607e-05, -0.00179886759724468, 0.018655892461538315, 0.015594546683132648, 0.009923207573592663, -0.003944425843656063, 0.00018683692906051874, 0.008811180479824543, -0.003692584577947855, 0.009033585898578167, 0.004938709083944559, -0.008745767176151276, -0.02280309982597828, -0.036317501217126846, -0.012049142271280289, -0.02016039937734604, -0.011349218897521496, 0.006649268791079521, 0.0004198720562271774, 0.04309432581067085, 0.013239665888249874, 0.016497250646352768, 0.02125934511423111, 0.0045167929492890835, -0.009838170371949673, -0.0030646163504570723, -0.024608507752418518, 0.020788367837667465, 0.010381101630628109, 0.008170129731297493, -0.026008354499936104, -0.021664906293153763, -0.0012690193252637982, 0.006400697864592075, -0.0035159685648977757, -0.026361586526036263, 0.012108013965189457, 0.002366328611969948, -0.01887829788029194, -0.01895679347217083, -0.006848779506981373, 0.010688544251024723, -0.003290292341262102, -0.006112879142165184, 0.010943655855953693, 0.003542133839800954, -0.024281442165374756, -0.005648444406688213, -0.018459651619195938, 0.03765193372964859, -0.0010523375822231174, 0.022044304758310318, -0.010610047727823257, -0.009700802154839039, -0.013933046720921993, 0.020932277664542198, -0.009923207573592663, -0.007071184925734997, -0.02484399639070034, 0.023326406255364418, -0.006348367314785719, 0.018132586032152176, -0.004896190483123064, 0.0024121180176734924, 0.019767919555306435, -0.01586928218603134, -0.012317337095737457, 0.005072806496173143, 0.011427715420722961, 0.035558708012104034, 0.003816870041191578, 0.0028127748519182205, 0.012134179472923279, -0.025053320452570915, -0.019859498366713524, -0.02935751900076866, -0.0025609333533793688, 0.010256815701723099, 0.025681287050247192, 0.007084267679601908, 0.0006124326610006392, -0.009785839356482029, 0.005605925340205431, -0.0019166116835549474, -0.015437554568052292, -0.003115311497822404, 0.00018254417227581143, 0.011172602884471416, -0.02118084765970707, 0.018394239246845245, -0.015947779640555382, 0.01862972602248192, 0.006822613999247551, 0.0006451393128372729, 0.004941979888826609, 0.010047493502497673, 0.02074912004172802, 0.0016222514677792788, -0.034198109060525894, -0.0011022152611985803, 0.01603935845196247, -0.004336906131356955, 0.029749998822808266, 0.0020425324328243732, 0.04189072176814079, 0.019597845152020454, 0.015084322541952133, 0.007738401181995869, -0.013390116393566132, 0.020278144627809525, 0.02031739242374897, 0.004811153281480074, -0.02048746682703495, -0.0290173701941967, -0.006698329001665115, -0.01011290680617094, 0.0016811235109344125, -0.007293590344488621, 0.023326406255364418, -0.010937115177512169, -0.0027277374174445868, -0.020448219031095505, -0.03192172199487686, 0.0059428042732179165, 0.009870877489447594, 0.029933156445622444, -0.013893798924982548, -0.025812115520238876, -0.019440852105617523, -0.01224538218230009, -0.015385223552584648, 0.00935411173850298, -0.0025969105772674084, 0.012742524035274982, -0.019100703299045563, -0.015228231437504292, -0.00028945415397174656, -0.014233948662877083, 0.010773581452667713, 0.016497250646352768, -0.029985487461090088, -0.017295293509960175, -0.02193964272737503, 0.014626428484916687, 0.02201814018189907, 0.0029910262674093246, -0.009066293016076088, -0.011552000418305397, 0.021311674267053604, 0.0029828494880348444, -0.0316077396273613, -0.020251978188753128, -0.02681948058307171, 0.0010335311526432633, 0.0037776220124214888, 0.015123570337891579, 0.00024897963157854974, -0.02073603682219982, 0.010701626539230347, -0.008510279469192028, 0.017360707744956017, -0.007627198472619057, -0.024778584018349648, -0.014626428484916687, 0.026348503306508064, -0.010629672557115555, 0.00020911835599690676, 0.023705804720520973, -0.031712401658296585, -0.0029992028139531612, -0.029174361377954483, 0.0021242990624159575, -0.008516820147633553, 0.0036631484981626272, 0.01801484078168869, 0.02715962938964367, 0.019179198890924454, 0.0015977214789018035, -0.02638775296509266, 0.014312444254755974, -0.006590396631509066, 0.025563543662428856, 0.02192656137049198, 0.01648416928946972, -0.004879837390035391, 0.013527484610676765, 0.027107298374176025, -0.0026181701105087996, -0.016157101839780807, -0.011918315663933754, -0.01254628412425518, 0.005448933690786362, 0.007548702415078878, -0.016183266416192055, 0.00972696766257286, -0.014194700866937637, -0.031293753534555435, -0.022868512198328972, 0.005125137511640787, 0.030665786936879158, 0.01681123487651348, -0.005373707972466946, 0.012919140048325062, -0.010119447484612465, 0.011414632201194763, -0.01948009990155697, 0.002850387478247285, -0.029593007639050484, 0.008824262768030167, 0.00625351769849658, 0.007895393297076225, 0.005376978777348995, -0.021547162905335426, -0.009864335879683495, -0.03618667647242546, -0.022476032376289368, 0.014639511704444885, 0.026780232787132263, 0.010897867381572723, -0.00815050583332777, 0.005599384196102619, -0.03048262931406498, -0.005635361652821302, 0.0018430216005071998, -0.02356189489364624, -0.010891325771808624, 0.014731090515851974, 0.028729550540447235, 0.03602968156337738, 0.028546392917633057, 0.016837401315569878, 0.025982189923524857, 0.01724296435713768, 0.002505331998690963, 0.024569259956479073, 0.0020114609505981207, -0.01271635852754116, -0.02938368357717991, -0.0036664193030446768, 0.012951846234500408, 0.0134489880874753, 0.007843062281608582, 0.02161257714033127, -0.0030891462229192257, 0.02612609788775444, 0.018852131441235542, -0.004209350328892469, -0.0032837509643286467, -0.01503199152648449, -0.007287049200385809, 0.011846360750496387, -0.0019117055926471949, 0.02331332489848137, -0.024739336222410202, -0.002969766966998577, 0.018054088577628136, -0.004094876814633608, 0.005645173601806164, -0.00719547038897872, 0.0025020611938089132, -0.01603935845196247, 0.02543271705508232, 0.010001704096794128, 0.017609277740120888, -0.038986366242170334, 0.01597394421696663, -0.033517807722091675, 0.002099769189953804, -0.010989445261657238, -0.01148004550486803, 0.04584168642759323, -0.006037653889507055, -0.006789907347410917, -0.03508773073554039, -0.023784300312399864, -0.026924142614006996, -0.012094931676983833, 0.020932277664542198, -0.017452286556363106, 4.489503407967277e-05, -0.012330419383943081, -0.035061564296483994, -0.010577341541647911, 0.009583057835698128, 0.005645173601806164, 0.011846360750496387, 0.009223285131156445, -0.018996041268110275, -0.01092403195798397, 0.010381101630628109, -0.019022207707166672, 0.06452374160289764, 0.008274790830910206, 0.04215237498283386, 0.020971525460481644, 0.018237246200442314, -0.0034669083543121815, -0.0036075471434742212, 0.0014889717567712069, 0.023025505244731903, 0.020879946649074554, 0.015908529981970787, -0.029148196801543236, -0.015751538798213005, -0.0007567508728243411, -0.0032150670886039734, 0.0028830941300839186, -0.02825857512652874, 0.035741861909627914, 0.011061400175094604, 0.0007183205452747643, -0.0028274927753955126, 0.022410620003938675, -0.04123658686876297, 0.007084267679601908, -0.00879809819161892, -0.017962509766221046, -0.02844173274934292, 0.0023990352638065815, -0.027081133797764778, 0.012415457516908646, 0.024006705731153488, 0.025733618065714836, 0.0012632956495508552, 0.021390171721577644, -0.007947724312543869, -0.008255166932940483, -0.03851538896560669, 0.02107618749141693, 0.0016590465093031526, 0.021036939695477486, -0.015345975756645203, 0.004228974226862192, 0.024608507752418518, 0.005936263129115105, -0.017386872321367264, -0.012278089299798012, 0.0027637146413326263, 0.03003781847655773, -0.01178748905658722, 0.01456101518124342, -0.0015053250826895237, -0.017805518582463264, 0.00672449404373765, 0.013527484610676765, -0.010793205350637436, -0.002305821282789111, -0.005396602675318718, -0.0017105595907196403, 0.016458002850413322, 0.028153913095593452, -0.038541555404663086, 0.002116122515872121, -0.0012616603635251522, -0.00531810661777854, 0.011545459739863873, -0.0162225142121315, -0.017190633341670036, -0.02442535199224949, -0.01251357700675726, -0.0007105526747182012, -0.004372883588075638, 0.021900394931435585, 0.014874999411404133, -0.026845645159482956, -0.0021079457364976406, 0.01637950725853443, -0.023077836260199547, 0.029593007639050484, 0.00350942718796432, 0.001001642202027142, -0.025563543662428856, 0.015437554568052292, -0.012729440815746784, -0.02509256824851036, 0.013906882144510746, -0.018655892461538315, -0.015398306772112846, -0.011251099407672882, 0.0014480884419754148, 0.035297051072120667, 0.004546228796243668, -0.015228231437504292, 0.007411334663629532, 0.006325472611933947, -0.004716303665190935, -0.002018002327531576, 0.001250213012099266, -0.012212675996124744, -0.007594491820782423, -0.0029828494880348444, -0.000416396971559152, -0.0036075471434742212, -0.004209350328892469, -0.008104716427624226, -0.001554385176859796, -0.027185795828700066, -0.005972240585833788, 0.008595316670835018, -0.017138302326202393, -0.008065467700362206, 0.010538093745708466, 0.010348394513130188, -0.030116314068436623, -0.008870052173733711, -0.026662487536668777, 0.05745910108089447, 0.0023695991840213537, -0.006034383084625006, -0.000975476810708642, 0.014809586107730865, 0.019676340743899345, 0.00858223345130682, -0.010230650193989277, -0.021808816120028496, -0.0028716467786580324, -0.00981200486421585, -0.011067941784858704, -0.007247800938785076, -0.0121668865904212, 0.04484740272164345, 0.01801484078168869, -0.009151330217719078, 0.003692584577947855, -0.02067062444984913, -0.023260993883013725, -0.049033861607313156, -0.019767919555306435, 0.022515280172228813, 0.015188983641564846, 0.023444151505827904, -0.013174251653254032, 0.015542215667665005, -0.010394183918833733, 0.008451406843960285, -0.03200021758675575, -0.004147207364439964, 0.004454650450497866, 0.023692721500992775, -0.007744942791759968, -0.008628022857010365, -0.0035715699195861816, -0.0478302538394928, 0.01758311316370964, -0.027447449043393135, 0.018655892461538315, 0.03647449240088463, -0.014338609762489796, -0.02067062444984913, -0.03634366765618324, 0.005448933690786362, 0.029305187985301018, 0.01072125043720007, 0.008556067943572998, -0.02434685453772545, -0.005219986662268639, -0.004297658335417509, 0.018381156027317047, -0.03961433470249176, -0.0006986965308897197, 0.008732684887945652, -0.018381156027317047, 0.00955689325928688, 0.012677110731601715, -0.019336191937327385, 0.007175846491008997, -0.021220095455646515, 0.046992961317300797, -0.012068766169250011, 0.02493557520210743, 0.019781002774834633, 0.010381101630628109, 0.02306475304067135, -0.01759619638323784, 0.018655892461538315, -0.022227462381124496, -0.009308322332799435, 0.022685356438159943, 0.0030793342739343643, -0.015843117609620094, -0.01113989669829607, 0.013605980202555656, -0.01945393532514572, -0.0012469423236325383, -0.02218821458518505, -0.0027162900660187006, -0.02613918110728264, 0.010479221120476723, 0.030534960329532623, -0.030953604727983475, 0.01446943636983633, 0.007725318428128958, 0.01588236540555954, -0.00625678850337863, -0.0392480194568634, -0.003731832606717944, 0.008457948453724384, 0.011525834910571575, 0.009190578013658524, 0.028546392917633057, -0.0166542436927557, 0.0038135992363095284, 0.027290455996990204, -0.01895679347217083, 0.003843035316094756, 0.1902744024991989, 0.00644321646541357, 0.01954551413655281, 0.011820195242762566, -0.0037285620346665382, 0.032654352486133575, 0.005373707972466946, -0.003417848376557231, -0.0031905369833111763, 0.015934696421027184, -0.026243843138217926, 0.01263132132589817, -0.022593777626752853, 0.010479221120476723, -0.014103122055530548, -0.022044304758310318, -0.004078523255884647, -0.03665765002369881, -0.016536498442292213, 0.009628847241401672, 0.001880634343251586, -0.011159520596265793, -0.024019788950681686, -0.018459651619195938, 0.034799911081790924, 0.014194700866937637, -0.0010940385982394218, 0.002547850599512458, 0.033779460936784744, -0.014443271793425083, 0.0036991259548813105, -0.0075748679228127, -0.004153748974204063, 0.023758135735988617, -0.044010113924741745, -0.0037383739836513996, 0.026191512122750282, 0.001016360241919756, 0.032131046056747437, -0.029305187985301018, 0.004752281121909618, -0.012690193019807339, -0.014338609762489796, -0.0166542436927557, 0.026178428903222084, 0.011035234667360783, -0.007051561027765274, -0.027892259880900383, 0.002533132676035166, 0.041524406522512436, -0.033256154507398605, -0.008176670409739017, 0.008699977770447731, 0.020762203261256218, -0.005527429282665253, -0.011133355088531971, 0.008209377527236938, 0.007980430498719215, 0.02458234317600727, 0.04024230316281319, -0.0175176989287138, 0.0028847295325249434, 0.007548702415078878, 0.005919909570366144, -0.024189863353967667, 0.005900285672396421, -0.03448592871427536, -0.0004681144200731069, -0.020932277664542198, -0.015071239322423935, -0.005900285672396421, -0.01674582250416279, -0.017687775194644928, 0.001009001163765788, -0.00926907453685999, -0.006011488381773233, 0.01691589690744877, 0.02612609788775444, -0.006276412401348352, 0.029697667807340622, -0.024268358945846558, -0.014626428484916687, -0.018825966864824295, 0.018590478226542473, -0.026610158383846283, -0.008628022857010365, 0.0057890829630196095, -0.019663257524371147, 0.008863511495292187, 0.0040294635109603405, -0.006469381973147392, -0.01422086637467146, 4.8906713345786557e-05, -0.005648444406688213, 0.004130854271352291, 0.00811779871582985, -0.004889649339020252, 0.01450868509709835, -0.01878671906888485, 0.017609277740120888, -0.026230759918689728, 0.03663148730993271, 0.022005056962370872, 0.015542215667665005, 0.023339489474892616, -0.019139951094985008, 0.005373707972466946, 0.017007475718855858, -0.00456912349909544, -0.027892259880900383, 0.00477844662964344, -0.024032870307564735, 0.0010817735455930233, -0.015738455578684807, 0.01486191712319851, -0.01178748905658722, -0.0009893771493807435, 0.001529855071566999, -0.008726143278181553, 0.002853658050298691, -0.00047710875514894724, -0.029514512047171593, -0.02040897123515606, -0.0024546366184949875, 0.003043356817215681, 0.0055666775442659855, -0.05704045668244362, 0.01605243980884552, 0.008654188364744186, -0.005808706860989332, 0.031215257942676544, -0.02289467863738537, 0.026570910587906837, 0.010302605107426643, 0.00437942473217845, -0.035140059888362885, -0.025733618065714836, -0.021377088502049446, -0.01289297454059124, 0.029776165261864662, 0.0012011529179289937, 0.010269898921251297, -0.030587289482355118, -0.004130854271352291, 0.019689423963427544, 0.01169591024518013, -0.0030548041686415672, 0.008130881935358047, 0.0009452231461182237, -0.006874945014715195, -0.025838280096650124, 0.0014758891193196177, 0.004696679767221212, -0.05337730795145035, -0.0001470778661314398, -0.025223394855856895, 0.0089616309851408, -0.043146658688783646, 0.025393469259142876, -0.011578165926039219, -0.016785070300102234, -0.0166542436927557, 0.002961590187624097, -0.013946129940450191, -0.029671503230929375, -0.021023856475949287, -0.1623298078775406, 0.0005907644517719746, 0.02013423480093479, -0.018551230430603027, 0.018760554492473602, 0.0073132142424583435, 0.042989663779735565, -0.007005771622061729, 0.004019651561975479, -0.012821019627153873, 0.00028536582249216735, -0.016078606247901917, -0.018080255016684532, -0.02920052781701088, -0.005383519921451807, -0.002444824669510126, 0.004565853159874678, 0.008091633208096027, 0.036317501217126846, 0.025471964851021767, 0.05709278583526611, 0.004696679767221212, 0.024189863353967667, 0.010878242552280426, -0.011794029735028744, -0.003790704533457756, -0.016942061483860016, 7.548089342890307e-05, 0.00981200486421585, -0.013488235883414745, 0.011362302117049694, 0.021717237308621407, 0.013605980202555656, -0.013645227998495102, 0.005255964118987322, -0.005517617333680391, -0.004729386419057846, -0.0008107169414870441, -0.022070469334721565, -0.004784987773746252, 0.012735982425510883, 0.02875571697950363, -0.03877704218029976, -0.008163588121533394, 0.0006467746570706367, 0.005520888138562441, 0.0316077396273613, -0.02630925551056862, 0.005726940464228392, -0.002516779350116849, 0.029226692393422127, -0.013056508265435696, 0.01571229100227356, -0.010943655855953693, 0.02356189489364624, -0.0119575634598732, -0.018145667389035225, 0.02042205259203911, -0.011290347203612328, -0.013776055537164211, 0.008726143278181553, -0.03705013170838356, 0.00486675463616848, -0.0006050736410543323, 0.019270777702331543, -0.01613093540072441, -0.015450636856257915, 0.012186510488390923, -0.044873569160699844, 0.012539742514491081, 0.014443271793425083, 0.017465369775891304, 0.022044304758310318, -0.009530727751553059, -0.009157871827483177, 0.03508773073554039, -0.004807882476598024, -0.0006116149597801268, -0.003846305888146162, -0.017033640295267105, -0.016104770824313164, 0.012945305556058884, 0.016170185059309006, 0.0005584665923379362, -0.0012673840392380953, -0.005560136400163174, -0.0002107536856783554, 0.0054979934357106686, -0.009655012749135494, -0.008608398959040642, 0.0366838164627552, -0.01894371025264263, 0.0035225097090005875, 0.0033916831016540527, -0.0028307633474469185, 0.02408520132303238, 0.008680353872478008, -0.01928386092185974, 0.027185795828700066, -0.024909410625696182, 0.03425043821334839, -0.010668920353055, -0.003901907242834568, 0.005206903908401728, 0.03490457311272621, 0.013998460955917835, -0.02074912004172802, 0.011388467624783516, 0.03142458200454712, 0.010099823586642742, -0.025668205693364143, -0.009007420390844345, 0.004899461288005114, 0.019741754978895187, -0.02110235206782818, 0.021377088502049446, -0.009962455369532108, -0.005592843051999807, 0.003980403300374746, 0.0162355974316597, 0.03602968156337738, 0.007843062281608582, -0.0040163807570934296, 0.019231529906392097, -0.004320553038269281, -0.005360625218600035, -0.13103605806827545, -0.045292213559150696, -0.0014603533782064915, 0.011964105069637299, 0.01819799840450287, 0.01844657026231289, -0.008902759291231632, -0.00011886835272889584, 0.007561785168945789, 0.045972514897584915, -0.019937993958592415, -0.012945305556058884, -0.019440852105617523, 0.014207783155143261, -0.009602682664990425, 0.0034374725073575974, -0.004552770406007767, -0.01654958166182041, -0.022933926433324814, 0.019414687529206276, 0.026701737195253372, 0.003872471395879984, 0.00010261721763527021, 0.008523361757397652, -0.00973350927233696, 0.026243843138217926, -0.02980232983827591, 0.021625658497214317, -0.008732684887945652, 0.013893798924982548, 0.00663618603721261, -0.006400697864592075, 0.008143964223563671, -0.010459597222507, 0.02056596241891384, -0.008261708542704582, -0.016837401315569878, -0.013200417160987854, 0.006744117941707373, 0.00765990512445569, 0.004081794060766697, 0.01861664466559887, -0.003306645667180419, 0.0031627363059669733, 0.017884014174342155, -0.01409003883600235, -0.031136762350797653, 0.01439094077795744, -0.006789907347410917, -0.008824262768030167, -0.028546392917633057, -0.009569975547492504, -0.03482607752084732, -0.00505645340308547, 0.02399362251162529, -0.02749978005886078, -0.003334446344524622, 0.002312362426891923, -0.001637787208892405, -0.006335284560918808, -0.02613918110728264, 0.01403770875185728, -0.002462813165038824, 0.030691951513290405, 0.017884014174342155, 0.010132530704140663, -0.01654958166182041, -2.6446419724379666e-05, 0.027866093441843987, -0.03234037011861801, -0.01169591024518013, 0.028389401733875275, -0.01861664466559887, 0.014888082630932331, -0.015646876767277718, 0.0134489880874753, 0.002322174608707428, 0.002642699982970953, -0.0033393523190170527, 0.0027637146413326263, -0.005847955122590065, -0.021207014098763466, 0.011107189580798149, 0.0003002882294822484, -0.002762079471722245, 0.032916005700826645, 0.019781002774834633, 0.008425241336226463, 0.011630496941506863, -0.035480208694934845, 0.021285509690642357, 0.0006684428662993014, 0.035061564296483994, 0.0026345234364271164, 0.010047493502497673, -0.027211960405111313, 0.00655114883556962, -0.028310906141996384, -0.01263132132589817, 0.004366342443972826, -0.02552429586648941, 0.0027686208486557007, -0.032235708087682724, 0.013619063422083855, 0.005354084074497223, 0.0009231461444869637, 0.0068945689126849174, -0.018642809242010117, 0.011277264915406704, -0.04338214546442032, 0.022933926433324814, 0.0026492413599044085, -0.025236476212739944, -0.013802220113575459, -0.015816953033208847, -0.010917491279542446, -0.022737685590982437, -0.03168623521924019, 0.015254396945238113, 0.01076049916446209, 0.019139951094985008, -0.0018577396403998137, -0.011453880928456783, -0.0119510218501091, 0.018420403823256493, -0.0014628063654527068, -0.00794118270277977, 0.0035715699195861816, -0.0023041858803480864, 0.011375384405255318, -0.037939753383398056, -0.022947009652853012, 0.022646106779575348, 0.00014186523912940174, 0.009242909029126167, 0.019139951094985008, -0.0007448947289958596, -0.009131706319749355, 0.03252352774143219, 0.016968227922916412, 0.014534850604832172, 0.02056596241891384, -0.0243206899613142, -0.027002638205885887, 0.008451406843960285, -0.002503696596249938, 0.026243843138217926, -0.022606858983635902, -0.01639259047806263, -0.000695425842422992, 0.0003693811013363302, 0.021717237308621407, 0.03969283029437065, 0.011937939561903477, -0.024726253002882004, -0.0011005798587575555, 0.011336136609315872, -0.02875571697950363, -0.008340204134583473, -0.0273166224360466, 0.011002528481185436, -0.00486348383128643, 0.020788367837667465, 0.006940358318388462, 0.013141545467078686, -0.03835839778184891, 0.0032248790375888348, -0.029069701209664345, -0.03817524015903473, 0.008039303123950958, 0.010623130947351456, -0.01008019968867302, -0.020605210214853287, -0.017465369775891304, 0.01742612011730671, 0.015738455578684807, 0.030116314068436623, -0.007502913009375334, -0.021220095455646515, 0.0017743376083672047, 0.012775230221450329, 0.012729440815746784, 0.03979749232530594, -0.00036774578620679677, -0.004415402188897133, 0.02016039937734604, 0.019166115671396255, 0.024386102333664894, -0.007640281226485968, -0.012369668111205101, 0.009295239113271236, 0.006309119053184986, 0.006364720407873392, -0.01810641959309578, -0.01450868509709835, -0.004637807607650757, 0.03252352774143219, 0.02186114713549614, -0.0004816059081349522, -0.011794029735028744, -0.003633712651208043, 0.0024987906217575073, 0.015673043206334114, -0.003856118069961667, -0.01550296787172556, -0.012834102846682072, -0.03459058701992035, -0.004520063754171133, 0.0007780102314427495, -0.030796613544225693, 0.0056222788989543915, 0.03302066773176193, -0.009498020634055138, 0.017439203336834908, 0.006554419174790382, -0.0037808925844728947, -0.010224109515547752, 0.012938763946294785, 0.0031774542294442654, 0.004752281121909618, -0.011983728967607021, 0.014351692982017994, -0.0048373183235526085, 0.022829264402389526, 0.027290455996990204, -0.020435135811567307, 0.024804748594760895, 0.01028952281922102, 0.018250329419970512, -0.0020114609505981207, 0.004215891472995281, -0.02458234317600727, -0.016667325049638748, -0.006521712522953749, -0.023156331852078438, -0.001880634343251586, -0.02142941951751709, -0.030247140675783157, 0.022345205768942833, -0.01456101518124342, 0.015777703374624252, 0.07190237194299698, 0.0063941567204892635, -0.011833278462290764, 0.0023172686342149973, 0.003957508597522974, 0.02339182049036026, 0.003331175772473216, 0.0011152978986501694, 0.005092430394142866, -0.026086850091814995, -0.0024579071905463934, 0.01139500830322504, -0.021586410701274872, -0.033779460936784744, -0.015947779640555382, 0.013553649187088013, -0.015267480164766312, 0.009373735636472702, -0.021743403747677803, 0.001390851684845984, 0.011885608546435833, 0.005481640342622995, -0.00775148393586278, -0.0010327135678380728, -0.013815303333103657, -0.003584652440622449, 0.01775318756699562, 0.013252748176455498, -0.02502715401351452, -0.043251316994428635, 0.001867551589384675, 0.008425241336226463, -0.025053320452570915, -0.028703385964035988, 0.01382838562130928, -0.0016925708623602986, -0.0012624779483303428, -0.02357497811317444, 0.028808046132326126, 0.03532321751117706, 0.009118623100221157, -0.0005801348015666008, -0.022214379161596298, -0.03867238387465477, -0.021141599863767624, 0.019074538722634315, -0.014312444254755974, -0.013893798924982548, -0.05073460564017296], "5f510fb4-a8c9-4360-a742-ec2f3b45bab6": [-0.004516411107033491, 0.008927405811846256, 0.00175089156255126, -0.00609764875844121, 0.0040453337132930756, -0.013664531521499157, -0.01566743291914463, -0.00826855655759573, 0.0017640686128288507, -0.03800242021679878, 0.008215849287807941, 0.020542915910482407, 0.00047725383774377406, 0.004246282856911421, -0.01844777539372444, -0.00799842830747366, 0.022295454517006874, -0.0007737359846942127, 0.014665981754660606, 0.01232706755399704, -0.0071551017463207245, -0.007813951000571251, 0.011187258176505566, -0.0051950253546237946, -0.020503384992480278, 0.024772727862000465, 0.0007173219928517938, -0.020318908616900444, 0.009461074136197567, 3.803824438364245e-05, 0.006924504414200783, -0.01164186466485262, -0.012425894849002361, -0.00867045484483242, -0.02519439160823822, -0.006357894279062748, -0.013229690492153168, 0.00304553029127419, -0.017222316935658455, -0.013104509562253952, 0.028435928747057915, 0.003373307641595602, 0.0020671391393989325, -0.0008198554278351367, 0.00552774453535676, 0.007049685809761286, 0.00672684982419014, -0.02888394705951214, -0.024298356845974922, 0.022743472829461098, 0.03758075460791588, 0.039056576788425446, -0.042139992117881775, -0.00104921730235219, -0.009270007722079754, 0.02493085153400898, -0.02327055111527443, 0.009289773181080818, -0.006285421084612608, -0.037607111036777496, 0.005840697791427374, 0.016378989443182945, -0.0028626995626837015, -0.006529195234179497, -0.01879037730395794, -0.008901052176952362, -0.001190046314150095, 0.015891442075371742, -0.013928070664405823, 0.016589822247624397, 0.017195962369441986, 0.014639628119766712, 0.005830815061926842, 0.014059840701520443, 0.03605222702026367, -0.0117868110537529, -0.016141803935170174, 0.007589942310005426, -0.016181334853172302, 0.008696808479726315, -0.005478330887854099, -0.03473452851176262, -0.01399395614862442, 0.011259731836616993, 0.017815280705690384, -0.022756649181246758, 0.0019749002531170845, 0.02099093422293663, -0.006288715172559023, -0.03436557203531265, -0.001476645702496171, 0.007300048600882292, 0.005010547582060099, 0.007161690387874842, 0.0009034468675963581, 0.014165257103741169, -0.03354859724640846, 0.011734102852642536, 0.008005017414689064, -0.003923446871340275, 0.00622941879555583, 0.027355415746569633, -0.011147727258503437, -0.006321657449007034, 0.0020029013976454735, 0.003752145916223526, 0.0008107962203212082, -0.011727514676749706, 0.04050604626536369, -0.010119922459125519, -0.008492565713822842, 0.05597582459449768, -0.006845442578196526, -0.027091877534985542, 0.021662959828972816, -0.017314555123448372, 0.01846095360815525, -0.02748718671500683, -0.017261847853660583, -0.005162083078175783, 0.014349734410643578, -0.005227968096733093, 0.0041046300902962685, -0.013980778865516186, 0.0297272726893425, -0.008189494721591473, 0.011141139082610607, -0.018368713557720184, -0.03394390642642975, -0.030386121943593025, 0.01987089030444622, 0.015627902001142502, 0.010330754332244396, 6.634816963924095e-05, -0.017499033361673355, 0.016365813091397285, -0.011582568287849426, -0.006232712883502245, -0.01332851778715849, -0.007392287254333496, 0.016985131427645683, 0.0046053556725382805, -0.011411267332732677, -0.004493351094424725, 0.0013440522598102689, 0.012722376734018326, 0.028146035969257355, -0.005932936444878578, 0.008604570291936398, 0.0021231414284557104, 0.008709985762834549, 0.006746615283191204, 0.009764144197106361, -0.019212041050195694, -0.00014350557466968894, 0.008525507524609566, -8.343706576852128e-05, 0.013262633234262466, 0.026169488206505775, 0.003544608363881707, 0.03565691411495209, 0.028066974133253098, 0.0016471229027956724, 0.015865087509155273, -0.01066017895936966, 0.018263299018144608, 0.022624880075454712, 0.013190159574151039, -0.02714458480477333, 0.021412597969174385, 0.004160632379353046, 0.02244040183722973, -0.010594294406473637, 0.0112004354596138, 0.011213612742722034, -0.020635155960917473, -0.0003082178591284901, 3.6854373320238665e-05, -0.0044801742769777775, 0.00784689374268055, 0.007332990877330303, -0.004338521510362625, 0.02208462357521057, 0.03744898736476898, -0.030649662017822266, 0.012373186647891998, 0.028936654329299927, -0.0024690371938049793, 0.029806334525346756, 0.003831207752227783, 0.009724613279104233, 0.03252079337835312, 0.003383190371096134, -0.005814343690872192, -0.6375551223754883, 0.010765595361590385, -0.008117021061480045, -0.029779981821775436, 0.001991371624171734, 0.0135854696854949, 0.012248005717992783, -0.004345110151916742, -0.025273453444242477, 0.02859405241906643, -0.021742021664977074, 0.005705633666366339, 0.030913202092051506, -0.004635003861039877, 0.0017179491696879268, -0.021478481590747833, 0.0011776929022744298, -0.03700096905231476, -0.022321809083223343, 0.005438799504190683, 0.014771398156881332, 0.02466731145977974, -0.021201765164732933, -0.011846107430756092, 0.026090426370501518, 0.034813590347766876, 0.006621433887630701, 0.006265655159950256, 0.020819632336497307, 0.025365691632032394, -0.0015318242367357016, -0.005280675832182169, -0.01178022287786007, -0.01734090968966484, 0.03984719514846802, 0.01274214219301939, 0.0028528168331831694, 0.027882495895028114, 0.011826341971755028, 0.029331963509321213, 0.0012724024709314108, -0.01079853717237711, 0.028146035969257355, 0.023916224017739296, 0.02072739414870739, -0.016958776861429214, 0.004908426199108362, 0.021412597969174385, -0.003686260897666216, -0.006460015662014484, 0.010390050709247589, -0.006212947424501181, 0.0017986581660807133, -0.011431032791733742, -0.009375423192977905, -0.005224673543125391, 0.013901717029511929, -0.012656492181122303, 0.01146397553384304, -0.022624880075454712, 0.006486369762569666, -0.0025991599541157484, -0.02885759249329567, 0.000819031847640872, -0.02634078823029995, 0.03133486583828926, -0.03230996057391167, -0.026090426370501518, 0.005919759627431631, -0.004387935157865286, -0.00469430023804307, 0.01651076041162014, -0.017485857009887695, -0.03022799827158451, 0.00741205271333456, 0.013433934189379215, 0.027276353910565376, 0.00035927866701968014, 0.01062064804136753, -0.0020292552653700113, 0.026406673714518547, -0.005152200348675251, -0.026986461132764816, -0.02964821085333824, 0.03584139421582222, 0.010159454308450222, -0.003992625977844, 0.017248671501874924, 0.028093326836824417, 0.026446204632520676, 0.023889869451522827, 0.010409816168248653, -0.012234828434884548, -0.050784092396497726, -0.007708535064011812, 0.015733318403363228, 0.0010310988873243332, -0.0011743985814973712, 0.007247340399771929, -0.026538442820310593, -0.021162234246730804, -0.021939676254987717, 0.014033487066626549, 0.007583353668451309, 0.0063282460905611515, -0.0033798960503190756, 0.01850048452615738, 0.018658608198165894, 0.024430125951766968, -0.02577417902648449, -0.010021095164120197, -0.022783003747463226, -0.003821325022727251, 0.005932936444878578, -0.005465153604745865, -0.024496011435985565, 0.011694571934640408, -0.008525507524609566, 0.012847558595240116, -0.025286629796028137, 0.005221379455178976, 0.00679273484274745, -0.02321784384548664, -0.008327852934598923, 0.018342360854148865, 0.009810264222323895, -0.017209140583872795, -0.02411387860774994, -0.03441828116774559, -0.005083021242171526, 0.008248791098594666, -0.003304128535091877, 0.01678747683763504, -0.00533008947968483, -0.008966936729848385, -0.020332084968686104, 0.015311653725802898, -0.0012295772321522236, 0.01651076041162014, -0.016589822247624397, -0.028963008895516396, 0.00026477500796318054, 0.02657797373831272, -0.013295575976371765, -0.007319814059883356, -0.009783909656107426, -0.027118230238556862, -0.01440244261175394, -0.010548174381256104, 0.0016487699467688799, -0.006051529198884964, -0.006189887877553701, -0.012485191226005554, 0.03607857972383499, 0.005073138512670994, -0.009770733304321766, 0.0031987125985324383, -0.002439389005303383, 0.006476487033069134, -0.019831359386444092, -0.02468048967421055, 0.01160892192274332, -0.023072896525263786, -0.007089216727763414, 0.008736339397728443, -0.018078820779919624, -0.020595625042915344, 0.04208728298544884, -0.006631316617131233, -0.04709453880786896, 0.006555548869073391, 0.013638176955282688, 0.0031295334920287132, 0.00672684982419014, -0.00195513479411602, 0.018540015444159508, -0.01935698837041855, 0.012406129390001297, -0.0031641230452805758, -0.011134550906717777, 0.0065950797870755196, 0.00462841521948576, 0.0013036977034062147, -0.014059840701520443, 0.03051789291203022, 0.007161690387874842, 0.01314404048025608, -0.020068544894456863, -0.004318756051361561, 0.003063648473471403, 0.025721469894051552, 0.0011011016322299838, -0.014046663418412209, 0.01710372418165207, 0.01245883759111166, 0.024456480517983437, 0.013018859550356865, -0.003373307641595602, -0.008308087475597858, 0.027618955820798874, 0.022334985435009003, -0.022269101813435555, -0.008907640352845192, -0.044617265462875366, -0.004289107862859964, -0.013809477910399437, 0.0162472203373909, -0.010600882582366467, -0.001881014322862029, -0.02719729207456112, -0.0020457266364246607, -0.021373067051172256, -0.01246542576700449, -0.011569391004741192, 0.03837137296795845, 0.04206093028187752, -0.01527212280780077, 0.01822376810014248, 0.0027391654439270496, -0.001476645702496171, 0.008756104856729507, 0.012010820209980011, 0.007524057291448116, 0.014125725254416466, -0.028699468821287155, -0.007906190119683743, 0.016958776861429214, 9.656258043833077e-05, -0.0031064737122505903, -0.041639264672994614, 0.0015861793654039502, -0.005066549871116877, -0.0021824378054589033, 0.007444995455443859, 0.02299383468925953, 0.013051801361143589, 0.024008462205529213, -0.025721469894051552, 0.03310058265924454, -0.004835952538996935, -0.003946506418287754, 0.018078820779919624, 0.009270007722079754, -0.00854527298361063, 0.013348284177482128, 0.01815788261592388, 0.048570357263088226, -0.011384913697838783, 0.007945721037685871, 0.041059479117393494, -0.002333973068743944, -0.0024476246908307076, -0.03336412087082863, 0.0019007797818630934, -0.0017130078049376607, -0.02685469202697277, -0.006647787988185883, -0.003141063265502453, 0.014297026209533215, 0.02105681784451008, -0.021715667098760605, -0.012208474799990654, -0.0030340002849698067, 0.007122159469872713, 0.004737125243991613, 0.0030900025740265846, 0.01736726425588131, -0.02383716218173504, -0.026433028280735016, -0.015825556591153145, -0.017314555123448372, -0.03383849188685417, -0.015891442075371742, -0.008196083828806877, 0.033996615558862686, -0.0035742565523833036, -0.006209653336554766, 0.028673114255070686, -0.006374365650117397, 0.014507858082652092, -0.00907894130796194, 0.004322050604969263, 0.02804061956703663, 0.008202672004699707, -0.007076039910316467, -0.023349612951278687, -0.027329063042998314, 0.0014272319385781884, -0.003590727923437953, 0.029621858149766922, -0.024733196943998337, 0.003355189226567745, -0.008387149311602116, -0.007510880474001169, -0.0008227378712035716, 0.01623404212296009, 0.04095406457781792, -0.009757556021213531, 0.023178312927484512, 0.0006184946396388113, 0.007438406813889742, -0.010403227992355824, -0.005919759627431631, -0.01620768941938877, 0.04569777846336365, -0.0004214575747027993, 0.016892891377210617, -0.021122703328728676, 0.01359864603728056, -0.02804061956703663, 0.0179734043776989, -0.012696023099124432, 0.003058707108721137, -0.028330514207482338, 0.03468181937932968, -0.01964688114821911, 0.019989483058452606, 0.016299927607178688, 0.035393375903367996, 0.01685336045920849, -0.006548960693180561, -0.035973165184259415, 0.011793400160968304, 0.013032035902142525, 0.04361581429839134, 0.0034820176661014557, -0.004091453272849321, 0.004493351094424725, -0.027645310387015343, -0.015351185575127602, -0.019449226558208466, -0.01768351159989834, 0.01572014018893242, -0.019963128492236137, -0.007715123705565929, 0.0141389025375247, 0.012280948460102081, -0.001466762856580317, 0.00012899031571578234, -0.00030492362566292286, -0.006898150779306889, -0.0129990940913558, -0.014521035365760326, -0.02685469202697277, 0.025932302698493004, 0.029305610805749893, 0.03299516439437866, 0.02552381530404091, -0.005675985477864742, 7.015714072622359e-05, 0.011872461996972561, -0.00017284495697822422, 0.012860734947025776, -0.01444197352975607, -0.017169609665870667, 0.00259586563333869, 0.009955210611224174, 0.029068423435091972, -0.011048899963498116, 0.01593097299337387, 0.011246554553508759, 0.01734090968966484, 0.023968931287527084, -0.007873247377574444, 0.02411387860774994, 0.011562802828848362, 0.0023553858045488596, -0.011048899963498116, -0.025971833616495132, 0.009158003143966198, -0.013559115119278431, 0.010581117123365402, 0.006740026641637087, 0.004042039625346661, 0.009230476804077625, -0.00966531690210104, -0.030412476509809494, -0.01007380336523056, 0.014665981754660606, 0.0009363893768750131, 0.01019898522645235, -0.012840969488024712, -0.017433147877454758, -0.030307060107588768, -0.008637512102723122, -0.03381213918328285, 0.0010146276326850057, -0.009619197808206081, 0.021913323551416397, -0.0114771518856287, -0.0018777201185002923, 0.016945600509643555, -0.019660059362649918, 0.010686533525586128, 0.024008462205529213, -0.047779738903045654, -0.026815161108970642, -0.010021095164120197, 0.018065644428133965, 0.01540389284491539, -0.0005414916668087244, -0.015812380239367485, -0.006657670717686415, 0.01301227044314146, -0.0018184236250817776, -0.043563105165958405, -0.008920817635953426, -0.02657797373831272, -0.0052510276436805725, 0.005708927754312754, 0.013519584201276302, -0.007978662848472595, -0.04032156616449356, 0.01570696383714676, -0.024311533197760582, 0.015548840165138245, -0.013433934189379215, -0.01187905017286539, -0.015970503911376, 0.02045067772269249, -0.02825145050883293, 0.015430247411131859, 0.011312440037727356, -0.027118230238556862, 0.002254911232739687, -0.015034937299787998, 0.005096198059618473, -0.04069052264094353, -0.015496131964027882, 0.015614724718034267, 0.02545793168246746, 0.011839519254863262, -0.002421270590275526, -0.022835711017251015, 0.020490208640694618, -0.021649783477187157, 0.03976813331246376, 0.045223403722047806, 0.008894463069736958, 0.01160892192274332, 0.00350178312510252, 0.02520756796002388, 0.00782053917646408, -0.02408752404153347, 0.021228119730949402, -0.03386484459042549, -0.00866386666893959, 0.009447896853089333, -0.02155754342675209, -0.010877599008381367, 0.015746494755148888, -0.028778530657291412, -0.014969052746891975, 0.004236400127410889, 0.015509309247136116, 0.017854811623692513, 0.004219928756356239, -0.023955754935741425, -0.023613153025507927, 0.01955464296042919, -0.0070299203507602215, 0.011991054750978947, -0.0387139767408371, 0.017156431451439857, 0.010647002607584, 0.0012954621342942119, 0.018355537205934525, -0.007596530485898256, -0.011767045594751835, -0.04003167524933815, -0.008235614746809006, -0.006153651047497988, 0.025088975206017494, 0.01985771395266056, -0.017209140583872795, 0.010699709877371788, -0.03813418745994568, -2.951952956209425e-05, 0.018553191795945168, -0.0035742565523833036, -0.0002445977588649839, 0.003086708253249526, 0.015285300090909004, 0.046093087643384933, 0.0019617234356701374, 0.002648573601618409, 0.021188588812947273, -0.007669004146009684, -0.011661630123853683, 0.013954425230622292, -0.02237451635301113, -0.005916465539485216, -0.028646761551499367, -0.01960735023021698, 0.005442094057798386, 0.0010014506988227367, 0.005567275453358889, -0.010192396119236946, -0.0004665475571528077, 0.01764398068189621, -0.0027968145441263914, 0.0011892226757481694, -0.017828457057476044, -0.019264748319983482, -0.021083172410726547, 0.014810929074883461, -0.008037959225475788, 0.021636605262756348, -0.024206116795539856, -0.0009578019380569458, 0.02186061441898346, -0.015469778329133987, -0.004160632379353046, 0.01789434254169464, -0.005214790813624859, -0.0007988545694388449, 0.020556094124913216, 0.03663201257586479, 0.0168006531894207, -0.030913202092051506, -0.0008079137769527733, -0.05513249710202217, 0.019778652116656303, 0.008097255602478981, 0.01260378398001194, 0.024403773248195648, -0.005867051426321268, 0.0024575074203312397, -0.021649783477187157, -0.008347618393599987, -0.007543822750449181, -0.004582295659929514, 0.027539893984794617, -0.018698139116168022, -0.016049565747380257, -0.010950072668492794, -0.0037257918156683445, 0.005913170985877514, 0.007556999567896128, 0.008110432885587215, 0.014916344545781612, 0.009513781405985355, -0.024469656869769096, -0.027539893984794617, 0.0002680692414287478, -0.02464095875620842, 0.036579303443431854, 0.0017854812322184443, 0.028725823387503624, 0.011799988336861134, 0.018895793706178665, 0.0023026778362691402, -0.0009174474398605525, -0.00046490042586810887, 0.002477272879332304, 0.03215183690190315, 0.009316126815974712, -0.00497101666405797, -0.02238769456744194, -0.006275538355112076, 0.013486642390489578, -0.024206116795539856, -0.019963128492236137, 0.015562016516923904, -0.005359737668186426, -0.014613274484872818, -0.016089096665382385, 0.026828337460756302, -0.03186194598674774, 0.014323380775749683, -0.01346028782427311, 0.007556999567896128, -0.025985009968280792, 0.010956661775708199, -0.015087645500898361, -0.0009388600592501462, 0.007886424660682678, -0.0006744968122802675, 0.00657202024012804, 0.016655705869197845, -0.0229543037712574, 0.007873247377574444, -0.037633463740348816, 0.006911327596753836, 0.005778106860816479, 0.014297026209533215, -0.012966151349246502, -0.01905391737818718, 0.043826647102832794, 0.012129412963986397, -0.003946506418287754, -0.003719203406944871, 0.009302949532866478, 0.026960106566548347, -0.02746083214879036, -0.016576644033193588, 0.01905391737818718, -0.0013531114673241973, 0.009974976070225239, -0.015219415538012981, -0.007570176851004362, -0.007458172272890806, -0.020239844918251038, -0.005596923641860485, 0.03394390642642975, 0.02209779992699623, -0.02935831807553768, 0.0005954349180683494, -0.004397817887365818, -0.0061338855884969234, -0.000872975098900497, 0.008044548332691193, -0.013104509562253952, -0.014310203492641449, 0.003719203406944871, -0.015575193800032139, 0.0005740222986787558, -0.00025139213539659977, 0.009830029681324959, -0.015008583664894104, 0.012089882045984268, 0.04306238144636154, -0.01553566288203001, 0.014468327164649963, -0.016866538673639297, 0.002546451985836029, -0.0007358521688729525, 0.008861521258950233, -0.0049314857460558414, -0.016049565747380257, 0.020503384992480278, -0.03531431406736374, -0.0144156189635396, 0.0019106625113636255, -0.010172630660235882, 0.02096457965672016, -0.0022582055535167456, 0.010752418078482151, 0.03078143298625946, 0.01710372418165207, 0.010818302631378174, -0.013625000603497028, -0.025668762624263763, 0.007319814059883356, -0.003962977789342403, 0.036025870591402054, 0.004368169698864222, -0.018605899065732956, 0.006700495723634958, 1.0268781807099003e-05, -0.0010450994595885277, -0.004891954828053713, -0.0282778050750494, -0.008854932151734829, -0.006680730264633894, 0.002887406386435032, 0.0007202044944278896, 0.01006721518933773, -0.020595625042915344, -0.008057724684476852, -0.023968931287527084, 0.023375967517495155, 0.012616961263120174, -0.0043549928814172745, -0.03294245898723602, 0.03842408210039139, 0.026933753862977028, 0.0069047389551997185, -0.011029134504497051, -0.01964688114821911, -0.00658849161118269, -0.012966151349246502, -0.025326160714030266, -0.003511665854603052, -0.013796301558613777, 0.05152200162410736, 0.011154316365718842, -0.014745043590664864, -0.002821521367877722, -0.014323380775749683, -0.01682700775563717, 0.010416405275464058, -0.004134278278797865, 0.014231141656637192, 0.04377393797039986, 0.01565425656735897, -0.018988031893968582, 0.030913202092051506, 0.001605121186003089, 0.010317577980458736, -0.01793387345969677, -0.015772849321365356, 0.02046385407447815, 0.04003167524933815, -0.006407307926565409, -0.011727514676749706, -0.0112004354596138, 0.001584532205015421, -0.005293853115290403, -0.047226306051015854, 0.011562802828848362, 0.010291223414242268, -0.019172510132193565, -0.01706419326364994, -0.0391356386244297, 0.008848343975841999, -0.0013835831778123975, 0.01314404048025608, -0.004598767030984163, -0.011154316365718842, -0.010561351664364338, 0.016299927607178688, 0.014600097201764584, -0.028383221477270126, 0.00013012270210310817, -0.008887874893844128, -0.025708293542265892, 0.013045213185250759, -0.010712887160480022, -0.02943737991154194, 0.006937681697309017, -0.03370672091841698, 0.045829545706510544, -0.00898011401295662, -0.009566489607095718, 0.009171180427074432, -0.0022895007859915495, 0.021966030821204185, -0.016458051279187202, 0.004822775721549988, -0.01565425656735897, -0.00839373841881752, 0.019976306706666946, -0.003811442293226719, -0.015087645500898361, -0.004430760629475117, 0.03613128885626793, -0.014191610738635063, 0.008901052176952362, -0.023942578583955765, -0.004453820176422596, -0.013433934189379215, 9.790086187422276e-05, 0.0019650175236165524, -0.01192516926676035, 0.01399395614862442, 0.010640413500368595, 0.00616353377699852, 0.011496917344629765, -0.041639264672994614, -0.02462778054177761, -0.002329031703993678, 0.03723815456032753, 0.010462524369359016, 0.020490208640694618, -0.007451583631336689, 0.0028775236569344997, 0.025642408058047295, -0.014903167262673378, -0.007787596900016069, 0.18247486650943756, -0.006308480631560087, 0.016695236787199974, 0.02686786837875843, -0.012294124811887741, 0.03354859724640846, -0.00449005700647831, -0.02379763126373291, -0.008024782873690128, 0.0036566127091646194, -0.02465413510799408, 0.005287264473736286, -0.01218212116509676, 0.00476677343249321, 0.010607471689581871, -0.0010022742208093405, 0.006871796678751707, -0.025589700788259506, -0.012511544860899448, 0.01565425656735897, 0.005409151315689087, 0.007497703190892935, -0.041270311921834946, -0.012175532057881355, 0.046066731214523315, 0.016708415001630783, -0.017301378771662712, 0.01934381015598774, 0.04137572646141052, -0.00700356625020504, -0.027618955820798874, 0.009296361356973648, 0.00898011401295662, 0.0297272726893425, -0.019119802862405777, -0.0017426559934392571, 0.04248259216547012, 0.004262753762304783, 0.019449226558208466, -0.024153409525752068, 0.018289651721715927, -0.007629473228007555, -0.03499806672334671, -0.03420744836330414, 0.01901438646018505, 0.012906854972243309, -0.010429581627249718, -0.024140233173966408, -0.013256045058369637, 0.028620406985282898, -0.0173540860414505, -0.02798791229724884, 0.015008583664894104, 0.02124129608273506, 0.005023724865168333, -0.016879715025424957, -0.023125605657696724, 0.019949952140450478, 0.02574782446026802, 0.0352616049349308, -0.019831359386444092, 0.032599855214357376, -0.0224008709192276, 0.01931745745241642, -0.027645310387015343, 0.019436050206422806, -0.002091845963150263, -0.005590335000306368, -0.00679273484274745, -0.008327852934598923, -0.003346953773871064, -0.00269798724912107, 0.012399541214108467, -0.0005439623491838574, -0.016642529517412186, -0.023349612951278687, 0.023705393075942993, 0.009500605054199696, -0.0022895007859915495, 0.029911750927567482, -0.022334985435009003, -0.03212548419833183, -0.009019644930958748, -0.01988406665623188, -0.01873767003417015, -0.025616055354475975, 0.01734090968966484, -0.016168158501386642, -0.016958776861429214, -0.015338008292019367, -0.011556213721632957, -0.007076039910316467, 0.0005435505299828947, 0.002070433460175991, -0.003686260897666216, 0.028119681403040886, -0.017459502443671227, 0.011253143660724163, -0.004430760629475117, 0.0016948893899098039, -0.027381770312786102, 0.0687311440706253, 0.0059494078159332275, 0.03270527347922325, 0.026973284780979156, -0.0026782217901200056, -0.015772849321365356, 0.02660432830452919, -0.006394131109118462, -0.01595732569694519, 0.019936775788664818, -0.009052587673068047, 0.0034853119868785143, -0.02013443037867546, 0.008176318369805813, -0.01876402460038662, -0.009105294942855835, -0.025708293542265892, -0.0028890534304082394, -0.008597981184720993, -0.026433028280735016, -0.008426680229604244, 0.0026271608658134937, 0.012116235680878162, 0.006733438465744257, 0.023191489279270172, -0.042588010430336, 0.02068786323070526, 0.0035874336026608944, -0.0047470079734921455, 0.014942699111998081, -0.03534066677093506, 0.006950858514755964, -0.005695750936865807, -0.02047703228890896, -0.011832931078970432, -0.031941007822752, -0.008347618393599987, -0.010877599008381367, 0.006871796678751707, -0.0027556365821510553, 0.006937681697309017, -0.018026113510131836, 0.010185807943344116, 0.007985251955688, -0.0026996342930942774, 0.004819481633603573, -0.014626450836658478, 0.023626331239938736, -0.015206238254904747, -0.01935698837041855, 0.01373041607439518, 0.005623277276754379, -0.03715909272432327, -0.006038352381438017, -0.02464095875620842, 0.009619197808206081, -0.017867987975478172, 0.016906069591641426, -0.008341030217707157, -0.02016078308224678, -0.0017080664401873946, 0.0165239367634058, -0.004654769320040941, -0.013256045058369637, -0.021425774320960045, -0.16476500034332275, 0.015351185575127602, -0.007576765026897192, -0.03478723391890526, 0.03729085996747017, 0.004835952538996935, 0.029859043657779694, -0.008433269336819649, 0.0006283773691393435, 0.005366326309740543, 0.0012534605339169502, -0.012827793136239052, -0.023165136575698853, -0.016589822247624397, -0.013064978644251823, -0.006878385320305824, 0.00356766814365983, 0.023916224017739296, 0.042192697525024414, 0.023191489279270172, 0.05650290101766586, -0.0027111642993986607, 0.01454738900065422, 0.01301227044314146, -0.00017449207371100783, -0.004242988303303719, -0.01174069195985794, -0.0015804143622517586, -0.02411387860774994, -0.020819632336497307, -0.0019436050206422806, 0.01818423718214035, -0.009052587673068047, -0.022190039977431297, 0.00840691477060318, -0.002088551875203848, 0.012136001139879227, -0.03281068801879883, -0.026722921058535576, -0.004595472943037748, 0.016339458525180817, 0.012004231102764606, -0.007260517682880163, -0.020358439534902573, 0.012808027677237988, 0.005985644645988941, 0.023942578583955765, -0.02348138391971588, -0.00741205271333456, -0.006772969383746386, 0.03275797888636589, -0.019818183034658432, -0.013170394115149975, 0.013486642390489578, 0.026182664558291435, -0.027223646640777588, -0.03299516439437866, 0.006871796678751707, -0.009270007722079754, -0.005725399125367403, 0.015377539210021496, -0.024008462205529213, -0.013249455951154232, 0.02935831807553768, 0.004331933334469795, -0.005297147203236818, -0.009421543218195438, 0.010818302631378174, -0.028198743239045143, 0.01908027194440365, 0.002047373680397868, -0.01992359757423401, -0.0011628686916083097, -0.020503384992480278, -0.012109647504985332, 0.013203336857259274, -0.010106746107339859, 0.004819481633603573, -0.01711690053343773, -0.020595625042915344, -0.011114785447716713, 0.010040860623121262, 0.003205301007255912, -0.015140353702008724, 0.008044548332691193, -0.0010401580948382616, -0.0038377963937819004, 0.027803434059023857, -0.025826886296272278, -0.016721591353416443, 0.024799082428216934, -0.028383221477270126, -0.02158389799296856, 0.010271457955241203, 0.023178312927484512, 0.021781552582979202, 0.013045213185250759, -0.021188588812947273, 0.006720261182636023, -0.02298065833747387, 0.012570842169225216, -0.0067795575596392155, -0.019449226558208466, -0.01174728013575077, 0.02636714279651642, 0.006124002858996391, -0.021491659805178642, 0.008341030217707157, 0.050810445100069046, -0.003870738670229912, -0.016932422295212746, -0.007260517682880163, 0.01564107835292816, 0.023613153025507927, 0.023942578583955765, 0.023942578583955765, 0.007253929041326046, -0.01822376810014248, 0.005092903971672058, 0.017011484131217003, 0.021465305238962173, 0.003442486748099327, -0.0027918731793761253, 0.020055368542671204, -0.007267105858772993, 0.0019847829826176167, -0.11416538059711456, -0.03671107441186905, 0.00021041995205450803, 0.02628808096051216, 0.018882617354393005, 0.015232591889798641, 0.0019188981968909502, 0.02462778054177761, 0.008624335750937462, 0.021702490746974945, 0.003439192660152912, -0.007761242799460888, -0.0032843630760908127, 0.0011323969811201096, 0.009105294942855835, -0.0007683828007429838, -0.03080778568983078, -0.0018727787537500262, -0.02580053173005581, 0.02439059503376484, 0.02383716218173504, -0.013796301558613777, 0.0011406325502321124, -0.021069996058940887, -0.005402563139796257, 0.021478481590747833, -0.021926499903202057, 0.005211496725678444, 0.013625000603497028, 0.014152079820632935, -0.009467662312090397, -0.006275538355112076, 0.0021313768811523914, -0.018882617354393005, 0.002241734182462096, -0.003946506418287754, -0.0044274660758674145, -0.014349734410643578, 0.021491659805178642, -0.005784695502370596, 0.009368835017085075, -0.0011908698361366987, -0.0019617234356701374, -0.0035149601753801107, 0.012142589315772057, -0.005287264473736286, -0.008024782873690128, 0.012241417542099953, -0.010192396119236946, -0.012979328632354736, -0.056977275758981705, -0.016945600509643555, -0.044643618166446686, -0.01684018410742283, 0.004776656161993742, -0.00526420446112752, 0.0012122824555262923, 0.008709985762834549, 0.007524057291448116, -0.008189494721591473, -0.04034792259335518, -0.0050006648525595665, -0.011760457418859005, 0.012379775755107403, 0.005649631377309561, 0.028409576043486595, -0.028356866911053658, -0.015799202024936676, 0.04319414868950844, -0.021715667098760605, -0.00866386666893959, 0.028752176091074944, -0.0168006531894207, 0.02523392252624035, -0.006209653336554766, 0.020279375836253166, 0.0041013360023498535, 0.011944934725761414, 0.004635003861039877, -0.01161551009863615, -0.013625000603497028, -0.01678747683763504, 0.0012641667854040861, -0.0013374637346714735, 0.017723042517900467, 0.013084744103252888, 0.0019073683070018888, 0.013875363394618034, 0.011865872889757156, -0.004641592036932707, 0.006341422908008099, 0.022585349157452583, 0.020872341468930244, -0.0023455030750483274, 0.004700888879597187, -0.006924504414200783, 0.024469656869769096, 3.0600454920204356e-05, 0.00853209663182497, 0.015100822784006596, -0.02996446006000042, -0.017143255099654198, -0.03080778568983078, -0.00019878713646903634, -0.006371071096509695, -0.03302152082324028, 0.00447358563542366, -0.006555548869073391, 0.012893677689135075, -0.02068786323070526, -0.003511665854603052, 0.005649631377309561, -0.04050604626536369, 0.003949800506234169, -0.0004233105864841491, -0.02607725001871586, -0.01458691991865635, -0.014929521828889847, 0.012379775755107403, -0.0004023097571916878, 0.018632253631949425, 0.012478603050112724, -0.007794185541570187, -0.007517468649893999, 0.02634078823029995, 0.0016981837106868625, -0.01218870934098959, 0.005244439002126455, -0.013071566820144653, 0.01734090968966484, -0.0048030102625489235, -0.029569149017333984, 0.015917794778943062, 0.014810929074883461, 0.008387149311602116, 0.0034128385595977306, -0.023086074739694595, -0.010106746107339859, 0.024469656869769096, 0.001384406816214323, 0.01929110288619995, -0.0017163020092993975, -0.0215707216411829, -0.019212041050195694, 0.00966531690210104, -0.009869560599327087, 0.01964688114821911, -0.03191465139389038, -0.004878778010606766, -0.0048754834569990635, -0.014521035365760326, 0.0112004354596138, 0.018803555518388748, 0.02074057050049305, -0.010976427234709263, -0.00880222488194704, 0.002831404097378254, -0.022545818239450455, 0.009105294942855835, -0.018553191795945168, -0.012748731300234795, 0.006015292834490538, 0.03267891705036163, 0.0026732804253697395, 0.04274613410234451, -0.01647122949361801, -0.014507858082652092, -0.039583656936883926, -0.024469656869769096, 0.008222437463700771, -0.0022153803147375584, -0.008360795676708221, -0.013704062439501286, -0.0006370247574523091, -7.60764887672849e-05, 0.012551076710224152, 0.056397486478090286, -0.0033716605976223946, -0.03383849188685417, 0.010983015410602093, -0.02349456027150154, 0.018421422690153122, 0.04564506933093071, -0.00511925807222724, -0.008769282139837742, 0.014929521828889847, 0.027908850461244583, 0.01454738900065422, 0.018592722713947296, -0.021333536133170128, -0.007925955578684807, 0.007161690387874842, 0.002676574746146798, -0.0031443575862795115, -0.029885398223996162, 0.0033766019623726606, -0.003590727923437953, 0.010324166156351566, 0.011707749217748642, 0.005718810483813286, -0.014600097201764584, 0.007043097168207169, 0.0008000899106264114, -0.002745753852650523, -0.007095805369317532, -0.0020869045983999968, -0.02549746260046959, 0.006634610705077648, -0.003508371766656637, -0.0112004354596138, -0.018026113510131836, 0.04179738834500313, -0.0018974855775013566, 0.020635155960917473, 0.028752176091074944, 0.0007185573340393603, -0.034022968262434006, 0.013743593357503414, -0.006100943312048912, -0.0029417613986879587, -0.016431698575615883, 0.007220986764878035, 0.01065359078347683, 0.02356044575572014, 0.05096856877207756, -0.0041046300902962685, 0.014507858082652092, 0.011002780869603157, 0.020938225090503693, -0.016418520361185074, -0.004381346981972456, 0.009401777759194374, -0.0259981881827116, -0.00048713659634813666, -0.020516563206911087, 0.004470291547477245, 2.6186680770479143e-05, -0.028673114255070686, 0.02046385407447815, 0.02382398582994938, 0.017815280705690384, 0.05955996364355087, -0.009592843241989613, -0.012307302094995975, 0.0011431032326072454, 0.004714065697044134, 0.009638963267207146, 0.024983558803796768, 0.003890504129230976, -0.007431818172335625, 0.001241107122041285, 0.003035647328943014, 0.016365813091397285, -0.01847412995994091, -0.028093326836824417, -0.02607725001871586, 0.009329304099082947, -0.015812380239367485, 0.03302152082324028, -0.034312862902879715, 0.016998307779431343, 0.023718569427728653, 0.0017410088330507278, -0.002637043595314026, -0.016576644033193588, -0.025326160714030266, 0.004625121131539345, 0.03447098657488823, 0.010502055287361145, -0.018355537205934525, -0.024192940443754196, 0.013611823320388794, 0.013473465107381344, -0.022005561739206314, -0.008294911123812199, 0.004727242514491081, 0.013308752328157425, -0.005063255783170462, -0.021359888836741447, 0.011095019988715649, -0.007122159469872713, -0.0006942622712813318, -0.0070299203507602215, -0.038213249295949936, -0.048043280839920044, -0.019488757476210594, 0.02047703228890896, -0.01709054596722126, 0.0065226065926253796, -0.032362669706344604], "d5bc4479-681b-42f3-914e-09acf2d7ed74": [-0.009495842270553112, -0.011321965605020523, -0.0032109336461871862, 0.011315202340483665, -0.007115118205547333, 0.008772156201303005, -0.0053363386541605, -0.012444693595170975, -0.02497054822742939, -0.016570379957556725, 0.011531631462275982, 0.003993799444288015, 0.02054727077484131, 0.01836944930255413, -0.006858108099550009, -0.011132589541375637, 0.012559670954942703, 0.015799349173903465, -0.00014826685946900398, 0.0077238259837031364, 0.002629279624670744, 0.004244046285748482, 0.003496688324958086, -0.029028600081801414, -0.022075803950428963, 0.018788781017065048, -0.0067228395491838455, -0.01400027982890606, 0.010280398651957512, -0.004714103881269693, 0.018558824434876442, 0.007899674586951733, -0.00783880427479744, -0.01842355728149414, -0.020777227357029915, 0.009482314810156822, -0.017963644117116928, 0.0015133152483031154, -0.005525714252144098, -0.009414681233465672, 0.0199115090072155, -0.0007304493919946253, -0.02384782023727894, 0.0006814145599491894, -0.011734534054994583, 0.0022031841799616814, 0.01487952470779419, -0.0497787743806839, -0.022765671834349632, 0.04328588768839836, 0.03192334249615669, 0.025349298492074013, -0.037090595811605453, -0.0034831613302230835, -0.018856415525078773, 0.021886426955461502, -0.017260247841477394, 0.005579821765422821, -0.00021642944193445146, -0.01751725748181343, 0.005065801553428173, -0.00681414594873786, 0.007777933031320572, 0.00047935740440152586, -0.0009933772962540388, -0.0010999011574313045, -0.0008614906691946089, 0.009123853407800198, -0.016786808148026466, -0.01028716191649437, 0.019843874499201775, 0.01916753314435482, 0.0050353663973510265, 0.0169085506349802, 0.037117648869752884, -0.01716556027531624, -0.0033850918989628553, 0.006103986874222755, 0.0004239818954374641, 0.011917146854102612, 0.009144144132733345, -0.03933605179190636, -0.015596446581184864, 0.009881356731057167, 0.008630123920738697, -0.01375003345310688, 0.005735380109399557, 0.016123993322253227, 0.006590953096747398, -0.02103423699736595, -0.0024601940531283617, 0.01719261333346367, 0.01124756783246994, 0.01065914984792471, -0.011443707160651684, -0.0017686344217509031, -0.012322952039539814, 0.022062277421355247, 0.008765392936766148, -0.010929686948657036, -0.004629561211913824, 0.007527686655521393, -0.003146681236103177, -0.0006108214147388935, -0.029055653139948845, 0.004815555177628994, -0.011186696588993073, -0.009367337450385094, 0.0297319944947958, -0.021521203219890594, 0.005075946915894747, 0.04599125683307648, 0.006120895501226187, -0.03487219288945198, 0.024659430608153343, -0.02840636484324932, 0.02714836783707142, -0.021940534934401512, -0.02643144689500332, 0.00289474381133914, 0.008819499984383583, 0.016989711672067642, 0.004862898960709572, -0.016922077164053917, 0.027621807530522346, 0.0017906154971569777, -0.013053401373326778, -0.001389037468470633, -0.037442293018102646, -0.02131829969584942, 0.023414960131049156, 0.01128814835101366, 0.004426658619195223, -0.005451316479593515, -0.023888399824500084, 0.006046497728675604, -0.0018041423754766583, -0.008048470132052898, -0.004859517328441143, -0.011173170059919357, 0.021101871505379677, 0.008711284957826138, -0.0036421017721295357, -0.0013653654605150223, 0.014500772580504417, 0.009008876048028469, 0.02467295713722706, -0.022643931210041046, -0.013567420653998852, -0.01478483621031046, 0.014379031024873257, -0.0015868674963712692, -0.0019580102525651455, -0.012343241833150387, 0.006499646697193384, 0.003533886978402734, -0.009806958958506584, 0.013208959251642227, 0.006049879360944033, 0.004788501653820276, 0.015934618189930916, 0.022982101887464523, -0.0039971815422177315, 0.002052698051556945, -0.01153839472681284, 0.026742562651634216, 0.03016485460102558, 0.009096800349652767, -0.0037198811769485474, -0.0011641536839306355, 0.01120698731392622, 0.012451456859707832, -0.013493022881448269, 0.015569393523037434, 0.010375086218118668, -0.014379031024873257, 0.01490657776594162, -0.013080454431474209, -0.01498773880302906, 0.010320979170501232, 0.021210085600614548, 0.016976185142993927, 0.03008369356393814, 0.030624765902757645, -0.0247541181743145, 0.012350005097687244, 0.01494715828448534, -0.010233054868876934, 0.02595800720155239, 0.0042034657672047615, -0.00217613042332232, 0.025011127814650536, -0.001324784941971302, -0.009042692370712757, -0.6298096776008606, 0.0024145410861819983, -0.019532756879925728, -0.030273068696260452, -0.009712271392345428, 0.005711708217859268, 0.007351837586611509, -0.016976185142993927, -0.008406931534409523, 0.032410308718681335, -0.012248554266989231, 0.009002111852169037, 0.02384782023727894, -0.008839789777994156, -0.010679440572857857, -0.006536845583468676, -0.009096800349652767, -0.021440042182803154, -0.012843734584748745, 0.00045864444109611213, 0.00028596585616469383, 0.02810877375304699, -0.002539664274081588, -0.02667493000626564, -0.012052414938807487, 0.037198811769485474, 0.018477663397789, -0.016069887205958366, 0.018964629620313644, 0.016732702031731606, -0.00011804281530203298, -0.011396363377571106, 0.015501759015023708, -0.0214806217700243, 0.0471816211938858, -0.010057206265628338, 0.003112864214926958, -0.007182752247899771, 0.0007152316975407302, 0.0460994727909565, -0.0012334787752479315, 0.0021710579749196768, 0.027188949286937714, 0.01762547343969345, 0.017896009609103203, -0.009360573254525661, 0.017909536138176918, 0.004402986727654934, 0.0051976884715259075, -0.026607295498251915, 0.013371281325817108, -0.0014541354030370712, 0.008690995164215565, 0.0011142734438180923, 0.0018700857181102037, 0.013425389304757118, 0.003097646404057741, 0.010415666736662388, -0.0014169365167617798, -0.03433112055063248, 0.016245735809206963, 0.0013535295147448778, -0.015177114866673946, 0.002106805332005024, -0.009245594963431358, 0.027811184525489807, -0.024240098893642426, -0.0032819495536386967, -0.0037503165658563375, -0.026580240577459335, 0.0021710579749196768, 0.017314355820417404, -0.03473692759871483, -0.019925035536289215, 0.018085384741425514, 0.015380017459392548, 0.028947439044713974, 0.01754431240260601, -0.009678454138338566, 0.010118076577782631, 0.011727770790457726, 0.007182752247899771, -0.031084679067134857, -0.007980835624039173, 0.012160629965364933, 0.008981822058558464, -0.020804280415177345, 0.0043421159498393536, 0.009806958958506584, 0.008555726148188114, -0.003713117679581046, 0.005495279096066952, 0.011917146854102612, -0.03379004821181297, 0.0010703112930059433, 0.023658443242311478, -0.003875439753755927, 0.010605042800307274, 0.005031984765082598, -0.047533318400382996, -0.007277440279722214, -0.002659715013578534, 0.010016625747084618, -0.01905931904911995, 0.0044097499921917915, 0.014541353099048138, 0.015055373311042786, 0.03195039555430412, 0.037577562034130096, -0.006519936956465244, -0.008758628740906715, -0.014690148644149303, -0.01366887241601944, -0.01828828826546669, 0.015177114866673946, -0.024767644703388214, 0.0043725511059165, -0.014771309681236744, -0.007318020798265934, 0.001590249128639698, 0.021358881145715714, 0.012640831992030144, 0.00024411719641648233, 0.008305479772388935, 0.0267290361225605, 0.01324277650564909, 0.019438069313764572, -0.019018737599253654, -0.03278906270861626, -0.0032278422731906176, -0.0025176831986755133, 0.029109761118888855, 0.02345554158091545, -0.017287302762269974, -0.018464136868715286, -0.019018737599253654, 0.0084542753174901, -0.004490911029279232, 0.02098012901842594, -0.020641958341002464, -0.03630603849887848, 0.0004911933792755008, 0.014338450506329536, 0.012410876341164112, -0.003112864214926958, -0.013973225839436054, -0.028649847954511642, -0.0008395095355808735, -0.005451316479593515, 0.007595320697873831, -0.014568407088518143, 0.0054986607283353806, -0.024645904079079628, 0.0204931627959013, 1.2972028343938291e-05, -0.006330561358481646, 0.008224318735301495, -0.0010703112930059433, -0.017030291259288788, -0.025200502946972847, -0.004693813621997833, 0.021872900426387787, -0.012809918262064457, 0.011829221621155739, 0.018775254487991333, -0.0018142875051125884, -0.017638999968767166, 0.028595739975571632, 0.012607015669345856, -0.04628884792327881, -0.008799209259450436, 0.015488232485949993, -0.004764829762279987, -0.004676904994994402, 0.0029522329568862915, 0.008948004804551601, -0.013919118791818619, 0.008677467703819275, 0.005326193291693926, -0.015934618189930916, 0.0048290821723639965, 0.02763533405959606, 0.013195432722568512, -0.02593095228075981, 0.023631390184164047, 0.009347046725451946, 0.03663068264722824, -0.02060137875378132, -0.007662955205887556, 0.00560349365696311, 0.019424542784690857, 0.004737775772809982, -0.02108834497630596, 0.0082513727247715, 0.0030739745125174522, 0.01996561698615551, -0.0012393967481330037, -0.009793432429432869, -0.013384808786213398, 0.03487219288945198, 0.020371422171592712, -0.00017204449977725744, -0.022184018045663834, -0.009813723154366016, -0.004386078100651503, -0.0033073124941438437, 0.03197745233774185, -0.006770183797925711, 0.013905592262744904, -0.01586698368191719, 0.008873607032001019, -0.019870929419994354, -0.015244749374687672, -0.020831333473324776, 0.009847539477050304, 0.032275039702653885, -0.010442720726132393, 0.00999633502215147, 0.022373393177986145, 0.022846832871437073, -0.004687050357460976, 0.0005148653872311115, 0.009468788281083107, 0.006222346797585487, -0.017314355820417404, -0.022400448098778725, 0.0241724643856287, 0.020168518647551537, -0.01634042337536812, -0.029434405267238617, 0.0010922923684120178, 0.013702689670026302, -0.001949555822648108, 0.0020256442949175835, 0.03533210605382919, -0.0025785539764910936, 0.01924869418144226, -0.014487246051430702, 0.02321205846965313, -0.014297869987785816, -0.0004577990039251745, 0.0034899248275905848, 0.008596306666731834, -0.02095307596027851, 0.01927574723958969, 0.005792869254946709, 0.057462017983198166, 0.002443285658955574, -0.007798223290592432, 0.0386597104370594, 0.015420597977936268, 0.008880370296537876, -0.0409863255918026, -0.0032565868459641933, -0.0032971673645079136, -0.022184018045663834, -0.003949837293475866, -0.011071719229221344, 0.021521203219890594, 0.0297319944947958, -0.003364801639690995, -0.008278426714241505, 0.011308438144624233, 1.1756726507883286e-06, 0.009536422789096832, -0.026986045762896538, -0.011978017166256905, -0.0429612435400486, -0.007006903178989887, -0.019573338329792023, -0.018031278625130653, -0.026066221296787262, -0.015596446581184864, -0.007257150020450354, 0.04279892146587372, 0.0049677323549985886, 0.02384782023727894, 0.00607693288475275, -0.0037875152193009853, 0.01163308322429657, -0.015190641395747662, -0.0016832462279126048, 0.024443000555038452, 0.005640692543238401, -0.003451035125181079, -0.003659010399132967, -0.006323798093944788, -0.019451595842838287, 0.00962434709072113, 0.02057432383298874, -0.016705647110939026, -0.00913061760365963, -0.003993799444288015, 0.0003263350226916373, -0.01490657776594162, 0.00919825118035078, 0.017152033746242523, -0.00560349365696311, 0.013804140500724316, -0.0029285610653460026, 0.01823418028652668, -0.0008255599532276392, -0.00751415966078639, -0.015014792792499065, 0.06590276956558228, 0.021440042182803154, 0.0235908105969429, -0.01661095954477787, 0.009083272889256477, -0.023469068109989166, 0.006388050504028797, 0.006462447810918093, -0.006536845583468676, -0.013066927902400494, 0.008555726148188114, -0.01757136546075344, 0.016935603693127632, 0.0054986607283353806, 0.032247986644506454, -0.006276453845202923, -0.009644636884331703, -0.04366464167833328, -0.0002284767833771184, -0.0011185006005689502, 0.06114131957292557, 0.03673889860510826, -0.005312666762620211, -0.007757642772048712, -0.01157897524535656, -0.0032362965866923332, -0.011409889906644821, -0.024767644703388214, 0.012552907690405846, -0.007270676549524069, -0.0003814991796389222, -0.0027205857913941145, -0.005843595135957003, -0.0029725232161581516, -0.0033309843856841326, -0.002979286713525653, -0.009976045228540897, -0.02728363685309887, 0.00527208624407649, -0.016813863068819046, 0.02084486186504364, 0.027513593435287476, 0.018721146509051323, 0.02491644024848938, -0.004541636444628239, -0.0046397061087191105, 0.02164294384419918, 0.003324221121147275, 0.02653966099023819, -0.016205154359340668, -0.022143438458442688, 0.0019766094628721476, 0.008366351015865803, 0.03660362958908081, -0.007913202047348022, 0.04444919899106026, 0.005945046432316303, 0.008562490344047546, 0.032220933586359024, -0.013121034950017929, 0.0030114129185676575, -0.006601097993552685, 0.007642664946615696, -0.020614905282855034, -0.015988726168870926, -0.0014837252674624324, -0.035359159111976624, 0.0180718582123518, 0.0003225305990781635, -0.009069746360182762, 0.025971533730626106, -0.012742283754050732, -0.03771283105015755, -0.01977623999118805, 0.027730023488402367, 0.009022402577102184, -0.005887557286769152, -0.010003098286688328, 0.012694939970970154, -0.02015499211847782, -0.02150767669081688, -0.03008369356393814, -0.0002498238463886082, -0.0066552055068314075, 0.02648555301129818, -0.03541326895356178, -0.0029336335137486458, 0.03963364288210869, -0.014649568125605583, 0.004494292661547661, 0.01743609644472599, -0.01924869418144226, -0.023671971634030342, 0.0012723684776574373, 0.018721146509051323, 0.02153472974896431, 0.011829221621155739, -0.004257572814822197, -0.009367337450385094, 0.0006818373221904039, 0.0003504297055769712, -0.040932219475507736, -0.007297730538994074, -0.0060972231440246105, 0.008860080502927303, 0.01487952470779419, 0.015826404094696045, 0.0015437506372109056, -0.015447651967406273, 0.019370434805750847, -0.02507876232266426, 0.006888543255627155, 0.004281245172023773, -0.014446665532886982, -0.014608987607061863, 0.01044948399066925, -0.026066221296787262, 0.015988726168870926, 0.03162575140595436, -0.0016874733846634626, 0.006523318588733673, -0.012823444791138172, -0.003082428826019168, -0.019897982478141785, -0.02004677802324295, -0.0011886710999533534, 0.01735493540763855, 0.015380017459392548, -0.013986753299832344, -0.008548962883651257, 0.03995828703045845, -0.030543604865670204, 0.027892345562577248, 0.047235727310180664, -0.0009494150872342288, 0.010151893831789494, 0.01069973036646843, 0.022035222500562668, -0.012843734584748745, -0.01889699697494507, 0.010787655599415302, -0.021981116384267807, -0.0061479490250349045, 0.003309003310278058, -0.029109761118888855, 0.013608001172542572, 0.018734674900770187, -0.040742844343185425, -0.013012820854783058, 0.012295898050069809, 0.03135521709918976, 0.03654952347278595, 0.024185990914702415, -0.03533210605382919, -0.03627898544073105, 0.0018092149402946234, -0.020533744245767593, -0.018910523504018784, -0.025200502946972847, 0.006810764316469431, 0.014581933617591858, -0.006959559395909309, 0.00670931302011013, -0.021791739389300346, -0.005204451736062765, -0.030300121754407883, 0.008461038582026958, -0.017909536138176918, 0.003466252936050296, 0.0014727347297593951, -0.003391855163499713, -0.00739241810515523, -0.028568686917424202, -0.005613638553768396, 0.005370155442506075, -0.014581933617591858, 0.003868676256388426, 0.0008357050828635693, 0.019072845578193665, 0.03173396736383438, 0.01831534132361412, 0.0018379593966528773, 0.01966802589595318, 0.006293362472206354, -0.018193600699305534, 0.0010229672770947218, -0.02062843181192875, 0.01583993062376976, -0.012221500277519226, 0.011551921255886555, 0.0005427644937299192, 0.013425389304757118, 0.008014652878046036, 0.008433984592556953, 0.015461178496479988, 0.040742844343185425, -0.013479496352374554, 0.00021315341291483492, -0.012715229764580727, -0.020696066319942474, -0.02145356871187687, 0.011808931827545166, -0.005031984765082598, 0.01858587935566902, -0.022860359400510788, 0.002776383887976408, 0.009813723154366016, 0.01324277650564909, -0.02054727077484131, 0.023523176088929176, 0.009894884191453457, -0.001939410693012178, 0.023442015051841736, 0.015177114866673946, 0.009516132064163685, -0.02992137148976326, 0.004149358253926039, -0.04012060910463333, 0.007744116242974997, 0.010557699017226696, 0.0025193740148097277, 0.009644636884331703, -0.01589403674006462, -0.001487107016146183, -0.03216682747006416, 0.0032041703816503286, -0.010043678805232048, -0.009861066937446594, 0.022143438458442688, -0.017855430021882057, -0.020195573568344116, -0.012708466500043869, -0.002549809403717518, 0.008061996661126614, 0.014460192061960697, 0.03817274421453476, 0.008386640809476376, 0.003936310764402151, -0.017057346180081367, -0.018775254487991333, -0.0007122727110981941, -0.005708326585590839, 0.05007636174559593, 0.007804987020790577, 0.03162575140595436, 0.028893331065773964, 0.024348312988877296, 0.01490657776594162, -0.009218541905283928, -0.02100718393921852, -0.005894320551306009, 0.026147382333874702, 0.03541326895356178, -0.014798363670706749, 0.00870452169328928, -0.029515566304326057, 0.010733547620475292, -0.010226291604340076, -0.018626458942890167, 0.03357361629605293, 0.015136534348130226, -0.007148934993892908, -0.02012793906033039, 0.009407917968928814, -0.027838237583637238, 0.011687190271914005, -0.02403719536960125, 0.010091022588312626, -0.030787087976932526, 0.01345920655876398, -0.02507876232266426, 0.015772296115756035, 0.0067228395491838455, 0.019208112731575966, 0.0038822032511234283, 0.010375086218118668, 0.004440185148268938, 0.008643651381134987, -0.02158883772790432, 0.005136817693710327, 0.002850781660526991, 0.035602644085884094, -0.007886148057878017, -0.021358881145715714, 0.040769897401332855, -0.013269830495119095, -0.026174435392022133, -0.0026664785109460354, -0.008461038582026958, 0.02846047282218933, -0.015217695385217667, 0.0015006338944658637, 0.025511620566248894, -0.004254191182553768, 0.012634068727493286, -0.011112299747765064, -0.011788641102612019, -0.005877412389963865, -0.016069887205958366, 0.0038923483807593584, 0.02766238898038864, 0.0006945187342353165, -0.016245735809206963, -0.01738199032843113, -0.013026347383856773, 0.003790897084400058, -0.010320979170501232, -0.015352963469922543, 0.001635056803934276, -0.017260247841477394, -0.026742562651634216, 0.0010863743955269456, 0.023780185729265213, 0.006790474057197571, -0.008975058794021606, 0.003009722102433443, 0.0208989679813385, 0.04336705058813095, -0.022643931210041046, 0.022968575358390808, -0.03452049568295479, 0.002930251881480217, -0.022968575358390808, 0.008176974952220917, -0.019424542784690857, -0.009008876048028469, 0.006577426102012396, -0.027486540377140045, -0.016191627830266953, -0.023442015051841736, -0.0034459626767784357, 0.0159210916608572, 0.002086515072733164, 0.007500633131712675, 0.020641958341002464, 0.00449767429381609, 0.016516271978616714, -0.014067914336919785, -0.0273106899112463, 0.009779905900359154, -0.009096800349652767, 0.02846047282218933, 0.0042474279180169106, 0.0016561924712732434, 0.007155698724091053, -0.011876566335558891, -0.002605607733130455, 0.0016122303204610944, -0.0033208392560482025, 0.0002039593964582309, -0.02156178280711174, 0.029217975214123726, -0.004643088206648827, -0.0027019863482564688, -0.018937576562166214, -0.009658164344727993, -0.017841901630163193, 0.018761727958917618, 0.0028389457147568464, -0.02387487329542637, -0.02978610247373581, 0.03993123397231102, 0.026255596429109573, 0.001766943489201367, -0.006858108099550009, -0.02499760128557682, 0.0025582637172192335, -0.01383119449019432, -0.018802307546138763, -0.030787087976932526, -0.004304917063564062, 0.035764966160058975, 0.00036543604801408947, -0.007832041010260582, -0.0016798644792288542, -0.021737633273005486, -0.0003343665739521384, -0.019640972837805748, -0.007263913284987211, 0.013019584119319916, 0.04003944620490074, 0.00950260553508997, -0.012444693595170975, 0.026390865445137024, -0.0035135967191308737, -0.011869802139699459, -0.021237138658761978, -0.004960968624800444, 0.01845061033964157, 0.02510581538081169, -0.012999293394386768, -0.010706494562327862, -0.007311257068067789, -0.0019309564959257841, 0.00909003708511591, -0.021521203219890594, 0.006022825837135315, 0.020317314192652702, -0.023090315982699394, -0.006506410427391529, -0.03460165858268738, -0.00913061760365963, 0.005799632985144854, -0.008799209259450436, -0.009901647455990314, -0.013770323246717453, -0.010273635387420654, -0.001743271597661078, 0.014379031024873257, -0.03205861151218414, 0.006594334729015827, -0.015528813004493713, -0.012735520489513874, 0.0008407776476815343, -0.022643931210041046, -0.03276200592517853, -0.001851486274972558, -0.009732562117278576, 0.03170691430568695, 0.006790474057197571, -0.0018920667935162783, 0.043935175985097885, 0.0297319944947958, 0.02219754457473755, -0.017016764730215073, 0.010415666736662388, -0.016096940264105797, -0.013134562410414219, 0.027784129604697227, 0.014473719522356987, -0.00878568273037672, -0.002580244792625308, 0.00833253376185894, -0.023604337126016617, 0.012857262045145035, -0.00999633502215147, -0.023171477019786835, -0.02057432383298874, 0.004196702037006617, 0.011585738509893417, -0.012661122716963291, 0.015515285544097424, -0.0031585171818733215, 0.00429139006882906, 0.02057432383298874, -0.02313089743256569, -0.020371422171592712, -0.01770663447678089, 0.017923062667250633, 0.005052275024354458, 0.01032774243503809, -0.014108494855463505, 0.008339297026395798, 0.024767644703388214, -0.02956967242062092, 0.013019584119319916, 0.2142651528120041, 0.0021254047751426697, -0.006716076284646988, 0.02153472974896431, -0.01320219598710537, 0.03468281775712967, 0.007365364581346512, -0.003855149494484067, -0.016381002962589264, -0.0033056216780096292, -0.037415239959955215, 0.007608847692608833, -0.02675609104335308, 0.002767929807305336, 0.01754431240260601, -0.006425249390304089, -0.008481329306960106, -0.030354229733347893, -0.030543604865670204, -0.0016866278601810336, -0.018721146509051323, 0.0092388316988945, -0.024348312988877296, -0.012857262045145035, 0.024957019835710526, 0.010922923684120178, -0.01974918693304062, 0.02334732748568058, 0.029353244230151176, 0.004460475407540798, -0.009265885688364506, -0.0010424121282994747, -0.0263232309371233, 0.031165840104222298, -0.02100718393921852, 0.008298716507852077, 0.038849085569381714, -0.003432435682043433, 0.02832520380616188, -0.025471040979027748, 0.021115398034453392, -0.008156685158610344, -0.01735493540763855, -0.025700997561216354, 0.01412202138453722, 0.01908637210726738, -0.0054039726965129375, -0.0018481045262888074, -0.012444693595170975, 0.01237705908715725, -0.027040153741836548, -0.022075803950428963, 0.016922077164053917, 0.018856415525078773, -0.007608847692608833, 0.01065914984792471, -0.0035135967191308737, 0.005735380109399557, 0.019126951694488525, 0.04826376587152481, -0.014852470718324184, 0.03825390338897705, -0.01897815801203251, 0.016502745449543, -0.005539241246879101, 0.014365504495799541, -0.0015598137397319078, -0.01820712722837925, -0.01636747643351555, -0.014149075374007225, -0.003723262809216976, 0.003312384942546487, 0.012329715304076672, 0.009651401080191135, -0.019532756879925728, -0.006364378612488508, 0.034141745418310165, 0.0008800900541245937, 0.004484147764742374, 0.032302096486091614, 0.005464843474328518, -0.03801042214035988, 0.004193320404738188, -0.0028304914012551308, -0.0003440889995545149, -0.030976464971899986, 0.014433139003813267, -0.008636887185275555, -0.014176128432154655, -0.0023722697515040636, -0.013060164637863636, -0.019586864858865738, 0.001614766544662416, 0.0006230800645425916, -0.0006640833453275263, 0.008278426714241505, -0.0021287864074110985, 0.0079605458304286, -0.0011565448949113488, -0.0111664067953825, -0.02967788837850094, 0.004396222997456789, -0.006536845583468676, 0.013053401373326778, 0.012248554266989231, -0.026228543370962143, 0.005245032254606485, 0.010070732794702053, -0.002806819276884198, -0.026093274354934692, -0.0018345777643844485, -0.010063969530165195, 0.01420318242162466, -0.01685444265604019, 0.0028135827742516994, -0.0029285610653460026, -0.023631390184164047, -0.015407071448862553, -0.004453712143003941, -0.01065914984792471, -0.02395603433251381, 0.006154712289571762, -0.01977623999118805, 0.016408057883381844, 0.009631110355257988, 0.0072098057717084885, -0.02821698971092701, -0.003746934700757265, 0.0049914042465388775, 0.0012081159511581063, 0.02304973639547825, -0.03619782626628876, 0.02087191492319107, -0.03140932321548462, -0.0077170622535049915, -0.013689162209630013, -0.030976464971899986, -0.012782864272594452, -0.0008454275084659457, -0.014311397448182106, -0.014852470718324184, 0.02010088413953781, -0.029001545161008835, 0.001255459850654006, 0.01496068574488163, -0.029055653139948845, 0.027216002345085144, -0.024510635063052177, 0.0033276027534157038, -0.027567701414227486, -0.015528813004493713, -0.0017500349786132574, -0.002412850270047784, -0.030570659786462784, 0.011186696588993073, -0.057353802025318146, 0.013438915833830833, -0.030218960717320442, 0.02158883772790432, 0.003987036179751158, -0.03684711456298828, 0.0033614197745919228, -0.012309424579143524, -0.01600225269794464, -0.03146342933177948, -0.014473719522356987, -0.17152033746242523, -0.005951809696853161, 0.009867830201983452, -0.014703675173223019, 0.030381282791495323, 0.0045281099155545235, 0.037415239959955215, 0.004859517328441143, -0.013121034950017929, -0.0057286168448626995, 0.0037604616954922676, -0.012133575975894928, -0.01721966825425625, -0.0053092846646904945, -0.025511620566248894, -0.013391572050750256, 0.011585738509893417, -0.0017939972458407283, 0.038957301527261734, 0.03379004821181297, 0.04964350536465645, -0.013553894124925137, 0.02739185094833374, 0.020290261134505272, -0.011443707160651684, 0.007764406502246857, -0.02840636484324932, -0.02497054822742939, -0.0006881779991090298, -0.003584612626582384, -0.012221500277519226, 0.03303254395723343, -0.0005947582540102303, -0.027811184525489807, 0.0002040650724666193, 0.008690995164215565, 0.013330700807273388, -0.013330700807273388, -0.014541353099048138, 0.005380300804972649, 0.031247001141309738, 0.021927008405327797, -0.007297730538994074, -0.01724672131240368, 0.011896856129169464, 0.011281385086476803, 0.016137519851326942, -0.014527826569974422, -0.0019918272737413645, -0.0042474279180169106, 0.011376072652637959, -0.03473692759871483, 0.009002111852169037, 0.00749386940151453, 0.010571225546300411, -0.027892345562577248, -0.023225584998726845, 0.017152033746242523, -0.009340283460915089, 0.007777933031320572, 0.0032836406026035547, -0.021250667050480843, -0.007358601316809654, 0.01600225269794464, -0.018247706815600395, -0.010929686948657036, -0.015177114866673946, 0.0140814408659935, -0.050779759883880615, 0.020777227357029915, -8.681484177941456e-05, -0.027297163382172585, -0.0035778493620455265, -0.032193880528211594, 0.004081724211573601, 0.026215016841888428, -0.012640831992030144, 0.013499787077307701, -0.0007427081000059843, -0.0016570379957556725, -0.004494292661547661, 0.03782104700803757, 0.0014515990624204278, -0.032193880528211594, 0.006973086390644312, 0.014446665532886982, -0.007832041010260582, 0.04504437744617462, -0.04658643901348114, -0.014514300040900707, 0.011261094361543655, -0.029109761118888855, -0.009272648952901363, -0.004541636444628239, 0.0034087637905031443, -0.0008238691370934248, 0.02257629670202732, -0.03314075991511345, 0.01738199032843113, -0.01490657776594162, 0.009184724651277065, -0.004193320404738188, -0.03949837386608124, -0.004375932738184929, 0.029217975214123726, 0.004359024111181498, -0.028758062049746513, 0.027675915509462357, 0.05207833647727966, -0.0011844439432024956, -0.015339436940848827, 0.007290966808795929, 0.0065165553241968155, 0.020222626626491547, 0.021196559071540833, -0.0032176971435546875, 0.028514578938484192, -0.0034730162005871534, 0.00749386940151453, 0.009779905900359154, 0.039823018014431, 0.002387487329542637, -0.03173396736383438, 0.03760461509227753, 0.0029573054052889347, -0.020398475229740143, -0.10204648226499557, -0.029001545161008835, 0.005938283167779446, 0.025646889582276344, 0.023671971634030342, 0.005204451736062765, -0.004582216963171959, 0.022819779813289642, 0.011768351309001446, 0.030435390770435333, 0.013959699310362339, 0.0028626176062971354, -0.015217695385217667, 0.0004920388455502689, 0.009414681233465672, -0.03197745233774185, -0.016110466793179512, 0.0005584048922173679, -0.01370945293456316, 0.02480822615325451, 0.0056339288130402565, -0.007676481734961271, 0.02497054822742939, -0.017747214064002037, -0.013729742728173733, 0.02156178280711174, -0.016935603693127632, -0.023969560861587524, 0.008285189978778362, 0.005201070103794336, -0.0036049028858542442, 0.005224741995334625, -0.008278426714241505, -0.0049677323549985886, 0.023442015051841736, -0.0019360290607437491, -0.004379314370453358, -0.01278962753713131, 0.02263040468096733, -0.011234041303396225, 0.009786669164896011, 0.002515992382541299, 0.023198531940579414, -0.020398475229740143, -0.0021541493479162455, -0.010375086218118668, -0.02997547760605812, 0.03514273092150688, -0.020384948700666428, -0.02313089743256569, -0.05854416638612747, 0.004419894888997078, -0.01634042337536812, -0.03860560432076454, 0.02829815074801445, -0.01983034797012806, 0.021169506013393402, -0.010239818133413792, -0.004670141730457544, 0.016597433015704155, -0.018937576562166214, -0.012647596187889576, -0.003855149494484067, 0.0231850054115057, -0.005951809696853161, 0.030516551807522774, -0.03422290459275246, -0.002757784677669406, 0.022427501156926155, -0.003046920755878091, -0.00431168032810092, 0.03200450539588928, -0.017638999968767166, 0.026931939646601677, -0.019952090457081795, 0.01003691554069519, 0.006719457916915417, 0.0031382269226014614, -0.007676481734961271, 0.007737352512776852, -0.0038619129918515682, -0.015907565131783485, 0.0002215020067524165, 0.0020560796838253736, 0.013263067230582237, -0.004348879214376211, 0.009468788281083107, -0.006479356437921524, -0.005011694505810738, -0.0035677042324095964, 0.01647569239139557, 0.03319486603140831, 0.024645904079079628, -0.01496068574488163, -0.0007744116010144353, -0.0022133293095976114, 0.011802168563008308, -0.006824290845543146, -0.011531631462275982, -0.0032633503433316946, -0.03760461509227753, -0.02098012901842594, -0.038903191685676575, 0.0027239674236625433, -0.01685444265604019, -0.027405379340052605, 0.003216006327420473, -0.010009861551225185, 0.01500126626342535, -0.013033110648393631, -0.012397348880767822, -0.014744255691766739, -0.024632375687360764, 0.003692827420309186, -0.0018988301744684577, -0.01494715828448534, 0.003550795605406165, -0.008846553973853588, 0.011152880266308784, -0.013946172781288624, 0.008961531333625317, 6.57848286209628e-05, 0.00015407917089760303, -0.010307452641427517, 0.004707340616732836, -0.0111664067953825, -0.005928137805312872, -0.013330700807273388, 0.009482314810156822, 0.01594814471900463, -0.005657601170241833, -0.018382975831627846, 0.0008636041893623769, -0.0034087637905031443, 0.02846047282218933, 0.001703536487184465, -0.00870452169328928, 0.004930533468723297, 0.002771311439573765, -0.000487388955662027, 0.013432152569293976, -0.009096800349652767, -0.02323911152780056, -0.027094261720776558, 0.0033309843856841326, -0.01757136546075344, 0.018964629620313644, 0.0030452299397438765, 0.013919118791818619, 0.00402085343375802, -0.03135521709918976, -0.0005199379520490766, 0.02001972310245037, 0.014094967395067215, -0.027973506599664688, -0.0007443989161401987, 0.022738618776202202, -0.029542619362473488, -0.002069606678560376, -0.030327176675200462, 0.0009341973927803338, -0.017638999968767166, 0.019816821441054344, 0.011883329600095749, 0.02235986664891243, 0.005018457770347595, -0.005972099956125021, -0.019289273768663406, -0.026850778609514236, 0.011254331097006798, -0.022481609135866165, -0.012228263542056084, -0.023090315982699394, -0.006922360509634018, -0.025295192375779152, 0.0062426370568573475, 0.03511567786335945, 0.005606875289231539, -0.01724672131240368, 0.014379031024873257, -0.022752145305275917, 0.027838237583637238, 0.03790220618247986, -0.003008031053468585, -0.004703958984464407, 0.005109764169901609, 0.027026627212762833, 0.005989008583128452, 0.011748060584068298, -0.014500772580504417, -0.002603916684165597, 0.016123993322253227, 0.009806958958506584, 0.015555866062641144, -0.02142651565372944, -0.003767224960029125, 0.00554262287914753, 0.03503451496362686, 0.0037638433277606964, 0.027134841307997704, -0.011856275610625744, -0.015244749374687672, 0.005431026220321655, -0.003540650475770235, 0.0006099759484641254, -0.011680427007377148, -0.0420684739947319, 0.011978017166256905, 0.007737352512776852, -0.039146676659584045, -0.014067914336919785, 0.02478117123246193, -0.005843595135957003, 0.014324923977255821, 0.041040435433387756, -0.0008018880034796894, -0.026242069900035858, 0.01163308322429657, -0.0035710858646780252, -0.023252638056874275, -0.02401014231145382, 0.018247706815600395, 0.01498773880302906, 0.03460165858268738, 0.029272083193063736, -0.013648581691086292, 0.027892345562577248, 0.029461458325386047, 0.018274761736392975, -0.027675915509462357, -0.0039802729152143, 0.0003485275083221495, -0.021183032542467117, -0.002994504291564226, -0.03554853796958923, -0.0032430600840598345, 0.01054417248815298, -0.02087191492319107, 0.005207833368331194, 0.011518104933202267, 0.002960687270388007, 0.06568633764982224, -0.01812596619129181, -0.0033360570669174194, 0.0073044938035309315, 0.0008568408084101975, 0.018626458942890167, 0.02981315553188324, -0.009259122423827648, 0.008312243036925793, -0.004774974659085274, 0.029245028272271156, 0.01320219598710537, -0.023063262924551964, -0.04972466453909874, -0.0012622233480215073, -0.0008674086420796812, -0.003659010399132967, 0.009360573254525661, -0.035359159111976624, 0.021927008405327797, 0.008589543402194977, -0.008805973455309868, 0.011146116070449352, -0.01161955576390028, 0.0051469625905156136, 0.012803154066205025, 0.029461458325386047, 0.011261094361543655, 0.005731998477131128, -0.027594754472374916, -0.0030993372201919556, 0.010334505699574947, -0.010855289176106453, -0.017855430021882057, -0.006188529543578625, 0.006881779991090298, -8.253486157627776e-05, 0.0036082847509533167, 0.0077238259837031364, 0.013594474643468857, -0.021061290055513382, 0.01578582264482975, -0.032247986644506454, -0.03506157174706459, -0.030218960717320442, 0.009205014444887638, -0.027973506599664688, 0.012627305462956429, -0.053890932351350784], "3a459cfa-8984-45f1-a5d4-819cc5044aa9": [0.009817535057663918, 0.007931912317872047, 0.0012314618797972798, -0.006599679123610258, -0.01222238689661026, 0.006100945640355349, 0.004553505219519138, -0.006685078609734774, -0.010329932905733585, -0.01985369436442852, 0.024280807003378868, 0.0029548252932727337, 0.004218738991767168, 0.011791973374783993, -0.020017661154270172, -0.0059848022647202015, 0.01661534234881401, 0.026043454185128212, 0.024157831445336342, 0.007549322675913572, -0.003415982937440276, -0.0060257939621806145, -0.012912415899336338, -0.005342597607523203, -0.04853428527712822, 0.0393247976899147, 0.014046521857380867, -0.027642134577035904, 0.01779044046998024, -0.043533287942409515, 0.01073985081166029, -0.01451109629124403, -0.031399715691804886, -0.006719238590449095, -0.029541421681642532, 0.02057788148522377, -0.012960239313542843, -0.0013800571905449033, 0.022408848628401756, -0.0009103594929911196, 0.019033856689929962, -0.017858758568763733, 0.012099412269890308, -0.0022101409267634153, -0.029131503775715828, 0.008471637964248657, 0.01411484181880951, -0.0325474850833416, -0.025496898218989372, 0.006148769520223141, 0.03063453547656536, 0.04517295956611633, -0.05164966359734535, -0.010705690830945969, 0.0038873886223882437, -0.010801338590681553, -0.007972904480993748, 0.0163557268679142, 0.004956591408699751, -0.03011530637741089, -0.006671414710581303, 0.003106836462393403, -0.015084980987012386, -0.015016661025583744, -0.02202625945210457, 0.004010363947600126, 0.018104709684848785, 0.0019607741851359606, -0.011013129726052284, 0.006517695728689432, 0.00799340009689331, 0.03946143761277199, 0.015221619978547096, 0.004170915111899376, 0.03213756904006004, -0.008054887875914574, -0.034105174243450165, 0.004819951951503754, -0.007774777244776487, -0.003952292259782553, 0.007419515401124954, -0.012516161426901817, -0.00938712153583765, 0.019607743248343468, 0.006640670821070671, -0.025141635909676552, -0.0018463388551026583, 0.008464805781841278, 4.3553784053074196e-05, -0.025920478627085686, 0.01293974369764328, -0.0037951571866869926, -0.0007493812590837479, 0.00803439226001501, 0.01843264512717724, 0.013069551438093185, -0.015781842172145844, 0.020523225888609886, 0.007139404769986868, -0.004321218468248844, -0.005882322788238525, 0.005933562759310007, -0.025196291506290436, -0.006842214148491621, -0.024335462599992752, 0.001774603151716292, -0.006234169006347656, -6.346256122924387e-05, 0.027601143345236778, 0.0008040370303206146, -0.0187742430716753, 0.045418910682201385, -0.0005990780191496015, -0.035280272364616394, 0.013588780537247658, 0.0027515743859112263, 0.02921348623931408, 7.632587221451104e-05, -0.020960472524166107, 0.0022050170227885246, 0.013404317200183868, -0.009414449334144592, 0.026002462953329086, -0.005018079187721014, 0.042194221168756485, -0.002973613329231739, -0.016874955967068672, -0.014319800771772861, -0.019812701269984245, -0.04159300774335861, 0.01383473165333271, 0.020810168236494064, 0.021411381661891937, 0.012495665811002254, 0.005424581002444029, -0.008416982367634773, -0.011334232054650784, -0.0036585177294909954, -0.014237817376852036, -0.004768712446093559, 0.0265080276876688, 0.010261612944304943, -0.031126437708735466, 0.004464689642190933, -0.017954407259821892, 0.01347263716161251, 0.029678061604499817, 0.001979562221094966, 0.015481235459446907, -0.0014073849888518453, -0.0017182395095005631, 0.0187742430716753, 0.03183696046471596, -0.024390118196606636, -0.006640670821070671, -0.00289675360545516, -0.020427579060196877, 0.0194164477288723, 0.013090047053992748, 0.0012348778545856476, 0.02910417504608631, 0.03864160180091858, -0.006018962245434523, 0.013308670371770859, 0.011634837836027145, 0.028147701174020767, 0.024731718003749847, 0.007132572587579489, -0.024595078080892563, 0.0034057351294904947, -0.01500299759209156, 0.023679593577980995, -0.013281341642141342, -0.004878023639321327, -0.017230218276381493, 0.0031392883975058794, 0.012611809186637402, -0.018664931878447533, -0.030415913090109825, 0.008280342444777489, 0.002187937032431364, -0.01717556267976761, 0.015959473326802254, 0.05110310763120651, -0.04651202633976936, 0.002602979075163603, 0.021725652739405632, 0.011559686623513699, 0.03148169815540314, 0.00795924011617899, 0.006910533644258976, 0.03514363244175911, 0.0012135279830545187, -0.0065279435366392136, -0.6265732645988464, 0.007310203742235899, -0.010616875253617764, -0.025360258296132088, -0.01832333393394947, 0.008738084696233273, 0.011320567689836025, 0.007235052064061165, -0.025360258296132088, 0.04602012410759926, -0.015248948708176613, 0.008130040019750595, 0.012427345849573612, -0.016287406906485558, 0.02137039043009281, -0.028175028041005135, 0.017380522564053535, -0.030033322051167488, 0.00046073072007857263, 0.00987902283668518, 0.0037473333068192005, 0.0036175260320305824, -0.02561987191438675, 0.00288821361027658, 0.0060531217604875565, 0.012967071495950222, -0.004372458439320326, -0.009100179187953472, 0.015768177807331085, 0.019881021231412888, 0.007925081066787243, -0.00665091909468174, 0.001967606134712696, 0.014306137338280678, 0.025223618373274803, -0.015426579862833023, -0.004816535860300064, 0.004317802377045155, 0.017667464911937714, 0.017230218276381493, -0.01959407888352871, -0.009038691408932209, 0.02910417504608631, -0.0008006209973245859, 0.019184160977602005, -0.0055987960658967495, 0.00966723170131445, 0.01977171003818512, -0.006391304079443216, -0.008553621359169483, -0.023037388920783997, 0.015863824635744095, 0.0156315378844738, -0.02275044657289982, 0.01451109629124403, -0.015276276506483555, 0.01041874848306179, -0.010726186446845531, -0.01137522328644991, -0.02578384056687355, -0.0033459553960710764, -0.002821601927280426, -0.01606878452003002, 0.0019249063916504383, 0.009482769295573235, 0.02578384056687355, -0.02346097119152546, 0.015426579862833023, 0.005711523815989494, -0.013602444902062416, 0.008697092533111572, 0.01923881657421589, 0.0016772476956248283, -0.011655334383249283, 0.007931912317872047, 0.008601445704698563, 0.027437176555395126, -0.0014808286214247346, 0.0054143331944942474, 0.0029701972380280495, 0.010056653991341591, 0.002546615432947874, -0.034925010055303574, -0.03246550261974335, 0.039215486496686935, -0.001784851192496717, -0.0023484884295612574, 0.007720121648162603, 0.030525224283337593, 0.020987799391150475, 0.020919479429721832, 0.032492831349372864, -0.004748216364532709, -0.03019729070365429, -0.008997699245810509, 0.029459437355399132, 0.010890154168009758, 0.006227337289601564, -0.02310570888221264, -0.030169961974024773, -0.01743517816066742, -0.01843264512717724, 0.02273678220808506, 0.01598680019378662, 0.02307838201522827, 0.0046559846960008144, 0.008075383491814137, 0.020687192678451538, 0.029432110488414764, -0.033285338431596756, 0.007494666613638401, -0.015467571094632149, -0.006029210053384304, 0.005250365938991308, -0.012557153590023518, -0.026221085339784622, 0.02265479974448681, 0.0032059000805020332, 0.02652169205248356, 0.0068080541677773, 0.016314735636115074, 0.0023365323431789875, -0.017325865104794502, -0.018296005204319954, 0.030880486592650414, 0.010610043071210384, 0.0011921781115233898, -0.029814699664711952, -0.03205558657646179, -0.032574813812971115, 0.007692793849855661, 0.004362210165709257, -0.002240884816274047, -0.0030829247552901506, 0.0030128969810903072, -0.007788441143929958, -0.010664698667824268, -0.020618872717022896, 0.0372205525636673, -0.006097529549151659, -0.04249482974410057, -0.0006896015838719904, 0.004977087490260601, -0.03421448543667793, -0.006698742974549532, -0.03407784551382065, -0.016123440116643906, -0.0194984320551157, -0.0026559268590062857, -0.013281341642141342, -0.004239235073328018, -0.025086980313062668, -0.01698426716029644, 0.024759044870734215, 0.0051717981696128845, -0.0007472463184967637, -0.013663931749761105, 0.013014895841479301, 0.0194164477288723, -0.02354295551776886, -0.02362493798136711, 0.03525294363498688, -0.03241084888577461, -0.035170961171388626, 0.005646619945764542, -0.017899751663208008, -0.03216489776968956, 0.031317733228206635, -0.006507447920739651, -0.04208490997552872, 0.006743150297552347, 0.011860293336212635, -0.0012536657741293311, 0.020345594733953476, -0.009455441497266293, 0.030853159725666046, -0.023583946749567986, -0.006917365826666355, -0.02219022624194622, -0.029268141835927963, 0.0164377111941576, 0.020277274772524834, -0.01932080090045929, -0.0017626472981646657, 0.019703390076756477, 0.0027362024411559105, 0.013411149382591248, -0.015672530978918076, -0.03301205858588219, 0.010774010792374611, 0.01968972571194172, 0.009612576104700565, -0.031044453382492065, 0.011320567689836025, 0.006480119656771421, 0.02874891273677349, 0.01244784239679575, 0.006278576795011759, -0.004410034045577049, 0.028694257140159607, -0.0015107184881344438, 0.009961006231606007, 8.27308394946158e-05, -0.044544417411088943, -0.015453907661139965, -0.016301071271300316, 0.008772244676947594, -0.029814699664711952, 0.013247182592749596, -0.02275044657289982, 0.003699509659782052, -0.018664931878447533, -0.03782176598906517, -0.01248200237751007, 0.0297327172011137, 0.017120907083153725, -0.013445309363305569, 0.017995398491621017, 0.008266679011285305, -0.02381623350083828, 0.020919479429721832, 0.017667464911937714, 0.01208574790507555, 0.032656796276569366, -0.017845096066594124, -0.0029087094590067863, 0.0078157689422369, -0.012973903678357601, 0.011518694460391998, -0.025264611467719078, 0.005684195552021265, -0.01589115336537361, -0.0004018050094600767, -0.007187228184193373, 0.023433644324541092, 0.027983732521533966, 0.029596077278256416, -0.019539423286914825, 0.04328733682632446, -0.018897218629717827, -0.022504495456814766, 0.03000599518418312, 0.011832965537905693, -0.022941742092370987, 0.005650036036968231, 0.0008309378754347563, 0.02902219258248806, 0.012386354617774487, -0.005591964349150658, -0.0005243534105829895, 0.00920949038118124, -0.008013896644115448, -0.015699857845902443, -0.0035150465555489063, -0.006903701927512884, -0.00391130056232214, 0.010493899695575237, 0.00390788447111845, 0.011607510037720203, 0.0015653742011636496, 0.016301071271300316, -0.0009615992312319577, 0.01415583398193121, 0.007788441143929958, 0.016109775751829147, -0.007221388164907694, -0.009728719480335712, -0.01195594109594822, -0.014620407484471798, -0.002239176770672202, -0.001546586281619966, -0.03317602723836899, -0.029951339587569237, 0.016683660447597504, 0.029705388471484184, 0.007829433307051659, -0.0029462852980941534, 0.02507331594824791, 0.003390363184735179, 0.001093968516215682, -0.020413914695382118, -0.027751445770263672, 0.024007529020309448, 0.004799456335604191, 0.004543257411569357, -0.0061419373378157616, -0.007576650474220514, 0.0014073849888518453, -0.01806371845304966, 0.030224617570638657, -0.0162737425416708, -0.0020085980650037527, -0.01190128456801176, -0.013322333805263042, 0.007931912317872047, 0.00314441230148077, 0.012905583716928959, 0.012331699021160603, 0.016014128923416138, 0.005048823077231646, 0.01038458850234747, 0.006381056271493435, -0.0035047985147684813, 0.008703924715518951, 0.03164566680788994, 0.027901750057935715, -0.001017108908854425, -0.017763111740350723, 0.0042016590014100075, -0.018856225535273552, 0.041811633855104446, -0.031126437708735466, -0.017120907083153725, -0.010958473198115826, 0.04787841811776161, -0.004478353541344404, 0.00630932068452239, 0.005803755018860102, 0.011006297543644905, 0.003467222675681114, -0.01977171003818512, -0.023597611114382744, -0.017120907083153725, 0.022613808512687683, 0.03156368434429169, 0.025469569489359856, -0.004222155082970858, 0.012154067866504192, -0.006299072876572609, 0.00734436372295022, -0.03713856637477875, 0.00902502704411745, 0.01725754700601101, 0.010254780761897564, 0.01007031835615635, 0.011532358825206757, 0.016465038061141968, 0.001099946559406817, 0.008321334607899189, 0.00365168577991426, -0.014210489578545094, 0.0002839535882230848, 0.008567285723984241, -0.023378988727927208, -5.7751462009036914e-05, -0.002406560117378831, 0.02275044657289982, -0.006794390268623829, -0.025865823030471802, 0.006640670821070671, 0.0021554853301495314, 0.009988334029912949, 0.01451109629124403, -0.012680129148066044, -0.023119373247027397, 0.00974238384515047, 0.01616443134844303, 0.009913182817399502, -0.00817103125154972, 0.03183696046471596, 0.016738316044211388, 0.02937745489180088, 0.0078089372254908085, -0.010186461731791496, -0.0016994515899568796, 0.00613168952986598, 0.00025577173801138997, -0.012953408062458038, -0.024007529020309448, -0.001637109904550016, -0.00045005575520917773, -0.018815234303474426, 0.02210824191570282, 0.0009889270877465606, 8.502595301251858e-05, -0.003620942123234272, -0.013985035009682178, -0.045692190527915955, -0.005059070885181427, -0.005264029838144779, -0.002456091810017824, -0.03189161792397499, -0.016943275928497314, -0.029268141835927963, -0.004170915111899376, 0.0019180744420737028, 0.012488833628594875, -0.022791439667344093, 0.021684659644961357, -0.004198243375867605, -0.0020495897624641657, 0.01447010412812233, -0.016041455790400505, 0.013465804979205132, 0.02678130753338337, -0.018815234303474426, -0.005523644387722015, -0.00867659691721201, 0.01429247297346592, 0.027792438864707947, -0.010083981789648533, -0.02094680815935135, -0.006780726369470358, 0.006715822499245405, 0.006592847406864166, -0.039051517844200134, -0.0037439174484461546, -0.017134571447968483, 0.011013129726052284, 0.01986735686659813, 0.004194827284663916, -0.005383589304983616, -0.026753978803753853, 0.02325601316988468, -0.020072316750884056, 0.0265080276876688, 0.0002771216386463493, -0.042631469666957855, -0.0020325100049376488, 0.01787242293357849, -0.019430112093687057, 0.02858494594693184, 0.011996932327747345, -0.022613808512687683, -0.003113668644800782, -0.02086482383310795, 0.014620407484471798, -0.008560453541576862, 8.753456495469436e-05, 0.01535825990140438, 0.0028420977760106325, -0.005451908800750971, 0.011914948932826519, -0.018268676474690437, 0.006196593400090933, -0.013670763932168484, 0.02059154585003853, 0.00315636838786304, 0.01069202646613121, -0.007440011017024517, 0.007419515401124954, 0.025319267064332962, -0.01609611138701439, -0.014893686398863792, -0.01262547355145216, -0.029076848179101944, 0.002469755709171295, 0.0003815226082224399, -0.015289939939975739, 0.009066019207239151, 0.0007976320339366794, -0.018664931878447533, -0.013739083893597126, 0.00782260112464428, 0.03691994398832321, -0.003441602922976017, 0.01500299759209156, 0.013581948354840279, -0.005940394476056099, -0.006958357524126768, -0.00974921602755785, -0.0012348778545856476, -0.03071651980280876, 0.027655798941850662, 0.0014543547295033932, 0.023706922307610512, 0.0024902515579015017, -0.012249715626239777, -0.005069318693131208, -0.03629140555858612, 0.007255548145622015, 0.003661933820694685, 0.023310668766498566, 0.023488299921154976, -0.0016840796452015638, 0.004594497382640839, -0.02883089706301689, -0.005667116027325392, -0.007412683218717575, -0.021165430545806885, -0.009981502778828144, 0.014798038639128208, 0.025209954008460045, 0.030415913090109825, 0.03027927316725254, 0.02290075086057186, 0.04837032034993172, 0.011539191007614136, -0.00795924011617899, 0.039598073810338974, 0.010794506408274174, -0.006862709764391184, -0.03098979778587818, 0.00835549458861351, 0.012932911515235901, 0.018541956320405006, -0.0007660341798327863, -0.005065903067588806, 0.021138103678822517, 0.013807403855025768, 0.0003035955014638603, 0.020181627944111824, -0.007720121648162603, -0.027655798941850662, 0.010186461731791496, 0.014101178385317326, -0.011832965537905693, 0.01815936528146267, -0.012591313570737839, 0.0018702506786212325, 0.00884739588946104, -0.008116375654935837, -0.013827899470925331, 0.004006948322057724, -0.01697060465812683, -0.013008063659071922, 0.024472102522850037, 0.03918815776705742, 0.03552622348070145, -0.024062184616923332, -0.009305138140916824, -0.03820435330271721, -0.01312420703470707, -0.00974921602755785, 0.009585248306393623, 0.028639601543545723, -0.01293974369764328, 0.008416982367634773, -0.015385587699711323, -0.01915683224797249, -0.03970738872885704, -0.012024260126054287, 0.027532823383808136, -0.009783375076949596, -0.020536890253424644, -0.018473636358976364, -0.022408848628401756, -0.004591081291437149, -0.013766411691904068, -0.006521111819893122, 0.012714289128780365, -0.00023826482356525958, -0.020345594733953476, -0.009974670596420765, -0.0009282933897338808, -0.014401784166693687, 0.042986731976270676, 0.008389654569327831, 0.028803568333387375, 0.0047311363741755486, 0.005305021535605192, -0.0018804987194016576, -0.007788441143929958, 0.0211927592754364, 0.0027891502249985933, 0.04000799357891083, 0.01343847718089819, -0.01024111732840538, -0.011149768717586994, 0.0006588577525690198, 0.007446843199431896, -0.006671414710581303, -0.041292402893304825, 0.029350126162171364, 0.0033681592904031277, -0.014169497415423393, -0.01697060465812683, 0.022176561877131462, -0.04312336817383766, -0.007030093111097813, 0.0013552912278100848, -0.015754513442516327, -0.027068249881267548, -0.014183161780238152, -0.017120907083153725, -0.014989333227276802, 0.03817702829837799, 0.03396853432059288, 0.012768944725394249, 0.001391159137710929, 0.00020346448582131416, -0.0012758696684613824, -0.05014663189649582, -0.0017694792477414012, 0.0056261238642036915, 0.0038463969249278307, -0.012154067866504192, 0.00222380505874753, 0.02290075086057186, 0.005892570596188307, -0.010152301751077175, -0.004700392484664917, -0.0051444703713059425, 0.03719322383403778, -0.004047940019518137, 0.00903185922652483, -0.009332465939223766, -0.012324866838753223, -0.013745916076004505, -0.0049873352982103825, -0.015057653188705444, -0.0027993980329483747, -0.004693560767918825, -0.017284873872995377, 0.03145437315106392, 0.017230218276381493, -0.027204889804124832, -0.0011537482496351004, -0.011245416477322578, 0.014401784166693687, 0.007392187137156725, -0.00022417388390749693, -0.013008063659071922, -0.016191760078072548, -0.009148002602159977, -0.009428112767636776, 0.0049736713990569115, 0.029240814968943596, 0.007276043761521578, -0.005732019431889057, 0.0081368712708354, 0.034378454089164734, -0.03440578281879425, 0.0050146630965173244, -0.024321800097823143, 0.005069318693131208, -0.02265479974448681, -0.012427345849573612, -0.001495346543379128, -0.01482536643743515, 0.020646201446652412, -0.026303069666028023, -0.017052587121725082, -0.02847563475370407, -0.0013288174523040652, 0.02542857825756073, -0.010965305380523205, 0.012652801349759102, -0.00026025521219708025, 0.014265145175158978, 0.004099179524928331, -0.0065689352340996265, -0.0032844676170498133, 6.394293450284749e-05, -0.00047140565584413707, 0.012475170195102692, 0.001332233427092433, -0.013206190429627895, 0.00042315491009503603, -0.021957939490675926, 0.004662816878408194, -0.007153068669140339, -0.007440011017024517, 0.005264029838144779, 0.0042016590014100075, -0.013896219432353973, -0.019361792132258415, 0.006418632343411446, -0.035170961171388626, -0.007535658776760101, -0.019607743248343468, 0.04768712446093559, 0.016765644773840904, -0.01136839110404253, -0.019922012463212013, 0.011293239891529083, 0.012857760302722454, 0.01958041451871395, -0.024936676025390625, -0.01940278336405754, -0.0019505262607708573, -0.002524411538615823, -0.015604210086166859, -0.01867859438061714, -0.016424046829342842, 0.05033792555332184, 0.015166964381933212, -0.025551553815603256, -0.021616341546177864, -0.015248948708176613, -0.03566286340355873, -0.020618872717022896, -0.03727520629763603, 0.013513629324734211, 0.04000799357891083, 0.018897218629717827, -0.025920478627085686, 0.009674063883721828, -0.004410034045577049, 0.005270862020552158, -0.04315069690346718, -0.004208491183817387, 0.001889038598164916, 0.03252016007900238, -0.0031871122773736715, -0.00867659691721201, -0.020372923463582993, -0.022449839860200882, 0.025387585163116455, -0.03511630743741989, 0.010213789530098438, 0.012331699021160603, -0.016751980409026146, -0.01574084907770157, -0.04131973162293434, 0.0024800037499517202, -0.006924197543412447, 0.019430112093687057, -0.004129923414438963, -0.01145037543028593, 0.0042153229005634785, -0.015617874450981617, 0.008642436936497688, -0.037603139877319336, 0.010767178609967232, 0.00765863386914134, -0.015959473326802254, 0.013493132777512074, -0.01024794951081276, -0.029049519449472427, -0.004700392484664917, -0.01518062874674797, 0.03820435330271721, -0.0051854620687663555, 0.021957939490675926, 0.015399251133203506, -0.0034638068173080683, 0.03180963546037674, -0.016301071271300316, 0.01870592311024666, -0.023857224732637405, 0.008881555870175362, 0.007644969969987869, 0.018569283187389374, -0.01496200542896986, 0.006579183507710695, 0.016915947198867798, -0.009332465939223766, 0.017284873872995377, -0.020331930369138718, -0.029404781758785248, -0.03183696046471596, -0.003774661337956786, 0.003713173558935523, -0.0193344634026289, 0.007870424538850784, 0.004860943648964167, 0.01110194530338049, 0.02086482383310795, -0.029896683990955353, 0.00017506912990938872, 0.018309669569134712, 0.02855761907994747, 0.002134989481419325, 0.015235284343361855, -0.009113842621445656, 0.029322799295186996, 0.024472102522850037, -0.025127971544861794, 0.015166964381933212, 0.20036789774894714, -0.0036072779912501574, 0.0077952733263373375, 0.015289939939975739, -0.0014987625181674957, 0.03197360038757324, -0.010855994187295437, -0.008902051486074924, -0.000785249110776931, 0.001127274357713759, -0.025469569489359856, 0.018828898668289185, -0.012119907885789871, 0.008936211466789246, -0.0037302535492926836, -0.0005931000341661274, -0.006978853140026331, -0.023583946749567986, -0.006063370034098625, -0.0020222619641572237, -0.006688494700938463, -0.007884088903665543, -0.020181627944111824, -0.0242534801363945, 0.04664866626262665, -0.013868890702724457, -0.007706457749009132, 0.0041743312031030655, 0.026631003245711327, -0.016424046829342842, -0.01841898076236248, -0.004874608013778925, 0.01073985081166029, 0.01500299759209156, -0.025811167433857918, 0.0035799501929432154, 0.025182627141475677, 0.0015636662719771266, 0.011559686623513699, -0.025086980313062668, -0.015084980987012386, 0.0006204279488883913, -0.030060650780797005, -0.01769479177892208, 0.015686193481087685, -0.004396370146423578, -0.015604210086166859, -0.024868356063961983, -0.0008138579432852566, 0.047113239765167236, -0.027833430096507072, -0.03323068469762802, 0.020823832601308823, 0.018651267513632774, 0.0028574697207659483, 4.918481863569468e-05, -0.011457206681370735, -0.006193177308887243, 0.0011358143528923392, 0.026029791682958603, -0.022326864302158356, 0.013342829421162605, -0.00460474519059062, 0.011149768717586994, -0.02847563475370407, 0.012632305733859539, -0.009810702875256538, 0.010821834206581116, -0.005284525919705629, -0.01154602225869894, -0.00849213358014822, -0.012277043424546719, -0.017120907083153725, 0.02660367637872696, -0.003812237177044153, -0.017052587121725082, 0.014524759724736214, 0.02460874244570732, 0.005899402778595686, 0.026084447279572487, -0.02130207046866417, -0.011873956769704819, -0.0033220434561371803, 0.00765863386914134, -0.017284873872995377, -0.005834498908370733, 0.0009812411153689027, -0.009967838414013386, 0.016915947198867798, -0.024308135733008385, -0.028885552659630775, -0.00561587605625391, -0.0027891502249985933, -0.008198359049856663, -0.007515162695199251, 0.007508330512791872, -0.016656333580613136, 0.016506029292941093, -0.004515929613262415, 0.00182584288995713, -0.006726070772856474, 0.051540352404117584, 0.018733251839876175, 0.01958041451871395, 0.017585480585694313, 0.0032400598283857107, -0.0028420977760106325, 0.019976668059825897, 0.003979620058089495, -0.02902219258248806, 0.01761280931532383, -0.013534124940633774, -0.014224153012037277, -0.007392187137156725, 0.0011862000683322549, -0.010275277309119701, -0.023474635556340218, -0.0225591529160738, 0.009434944950044155, -0.0040923478081822395, 0.009223153814673424, -0.02104245498776436, -0.015098645351827145, -0.004375874064862728, 0.003363035386428237, 0.012509330175817013, -0.03691994398832321, 0.016560684889554977, 0.0023758162278681993, -0.01850096508860588, 0.01906118541955948, -0.019375456497073174, 0.02048223465681076, -0.0029958172235637903, -0.02075551263988018, -0.03691994398832321, -0.01136839110404253, -0.025032322853803635, -0.018856225535273552, 0.0037200055085122585, 0.005875490605831146, -0.00716673256829381, -0.03530760109424591, -0.0033954870887100697, -0.0011426463024690747, -0.016560684889554977, 0.00045090974890626967, -0.006746566388756037, 0.028093043714761734, -0.015768177807331085, -0.034269142895936966, 0.004328050650656223, 0.002367276232689619, -0.04312336817383766, 0.013349661603569984, -0.021616341546177864, 0.02065986581146717, -0.03268412500619888, 0.025469569489359856, 0.005349429324269295, -0.0069822692312300205, -0.006056537851691246, 0.014839030802249908, -0.004304138477891684, -0.05175897479057312, -0.0265080276876688, -0.1729307323694229, 0.0030368089210242033, -0.00036465618177317083, -0.02910417504608631, 0.023583946749567986, -0.008102712221443653, 0.01923881657421589, 0.003029976971447468, -0.003441602922976017, 0.0011750981211662292, -0.006572351325303316, -0.01024794951081276, -0.008751748129725456, -0.022791439667344093, 0.016492366790771484, -0.013493132777512074, -0.0187742430716753, 0.004618409089744091, 0.031126437708735466, 0.020892152562737465, 0.030689191073179245, -0.01535825990140438, 0.022436177358031273, 0.008738084696233273, -0.014319800771772861, -0.008649269118905067, -0.0020922895055264235, 0.008580949157476425, 0.007358027622103691, -0.028721585869789124, 0.008068552240729332, 0.023788906633853912, 0.031946271657943726, 0.003108544507995248, 0.012010596692562103, -0.008451142348349094, -0.002138405339792371, -0.004000116139650345, 0.0038224849849939346, 0.005769595503807068, 0.007098412606865168, 0.018569283187389374, -0.03082583099603653, -0.011962772347033024, -0.017407849431037903, 0.007631306070834398, 0.025278273969888687, -0.02210824191570282, -0.01513963658362627, -0.01653335802257061, 0.02578384056687355, -0.017366858199238777, -0.004338298458606005, -0.004645736888051033, 0.017954407259821892, -0.026917945593595505, -0.017681127414107323, 0.020536890253424644, -0.0027105824556201696, 0.0054621570743620396, 0.012044756673276424, -0.020796503871679306, 0.013001231476664543, 0.015945808961987495, 0.026740314438939095, -0.008608276955783367, -0.015289939939975739, 0.01002249401062727, -0.03216489776968956, 0.026289405301213264, 0.007890921086072922, -0.001926614437252283, 0.011819301173090935, -0.008861060254275799, -0.0049873352982103825, 0.02407584898173809, -0.010288940742611885, 0.01815936528146267, -0.01007031835615635, -0.016915947198867798, -0.01052122749388218, 0.034105174243450165, 0.024130504578351974, -0.000611887953709811, -0.001436420832760632, 0.0009334173519164324, 0.0016977435443550348, 0.02894020825624466, -0.004929263610392809, -0.02847563475370407, 0.025114307180047035, -0.027806101366877556, -0.00974238384515047, -0.0035799501929432154, 0.005441660992801189, 0.03369525820016861, 0.010787674225866795, -0.02418516017496586, 0.0070232609286904335, -0.04815169796347618, 0.002833558013662696, -0.01679297350347042, -0.015617874450981617, 0.0020547138992697, 0.022695790976285934, 0.024280807003378868, -0.03798573091626167, 0.017571816220879555, 0.038040388375520706, 0.010186461731791496, -0.019539423286914825, -0.00426997896283865, 0.0013416273286566138, 0.04186628758907318, -0.0065825991332530975, 0.004956591408699751, 0.010610043071210384, -0.013137870468199253, -0.011798805557191372, 0.018815234303474426, 0.03672865033149719, 0.019826365634799004, -0.004198243375867605, 0.015590546652674675, -0.005578300449997187, 0.005113726481795311, -0.1158701479434967, -0.04295940324664116, 0.01580916903913021, 0.03243817389011383, 0.018104709684848785, 0.010610043071210384, -0.012188227847218513, 0.009592080488801003, 0.0034620987717062235, 0.026357725262641907, -0.01959407888352871, -0.012789440341293812, -0.005093230865895748, 0.011163432151079178, -0.008451142348349094, -0.0017899750964716077, -0.029596077278256416, -0.022162897512316704, -0.026398716494441032, 0.03047056868672371, 0.027163896709680557, -0.016874955967068672, -0.022613808512687683, 0.004632072988897562, -0.010815002024173737, 0.018377989530563354, -0.025496898218989372, 0.018446307629346848, -0.0040786839090287685, 0.0003898490685969591, -0.016410382464528084, -0.005427997093647718, 0.0026217668782919645, -0.018924545496702194, 0.009933678433299065, 0.009270978160202503, -0.01690228469669819, -0.01841898076236248, 0.022982733324170113, -0.007262379862368107, 0.004556921310722828, 0.013581948354840279, 5.65772206755355e-05, 0.01315836701542139, 0.018405316397547722, -0.005909650586545467, -0.026193758472800255, 0.02855761907994747, -0.006753398571163416, -0.004649152979254723, -0.06066785752773285, 0.0008629627409391105, -0.01496200542896986, -0.022955406457185745, 0.015658866614103317, -0.029049519449472427, -0.004970255307853222, 0.015590546652674675, -0.004232402890920639, 0.016943275928497314, -0.03323068469762802, 0.008321334607899189, 0.014497431926429272, 0.01222238689661026, 0.011436711065471172, 0.013581948354840279, -0.026084447279572487, -0.00903185922652483, 0.018842563033103943, -0.015672530978918076, -0.006394720170646906, 0.01968972571194172, -0.013144702650606632, 0.006907117553055286, -0.018214020878076553, 0.0012485417537391186, 0.004399786237627268, 0.002819894114509225, 0.016328398138284683, -0.0016089279670268297, -0.015098645351827145, -0.016683660447597504, -0.011996932327747345, -0.008191527798771858, -0.0025278273969888687, 0.030497897416353226, 0.02325601316988468, 0.0024936676491051912, 0.0063161528669297695, -0.0296507328748703, 0.03451509401202202, 0.009735551662743092, 0.022162897512316704, -0.008574116975069046, -0.004153835587203503, -0.009134338237345219, 0.01518062874674797, 0.004529593512415886, 0.0045603374019265175, 0.013739083893597126, -0.0224771685898304, -0.0163557268679142, -0.03656468167901039, 0.026275740936398506, 0.01616443134844303, -0.024690724909305573, 0.01140938326716423, -0.01343164499849081, 0.023706922307610512, -0.020454905927181244, 9.196466999128461e-05, -0.004515929613262415, -0.018132038414478302, 0.010302605107426643, 0.013008063659071922, -0.009872190654277802, -0.027792438864707947, -0.029350126162171364, 0.005509980488568544, -0.009838031604886055, 0.017954407259821892, 0.012099412269890308, -0.013622940517961979, 0.015604210086166859, 0.011040457524359226, 0.00408551562577486, -0.004375874064862728, -0.0194984320551157, -0.021889619529247284, -0.007419515401124954, -0.016669997945427895, -0.009305138140916824, 0.03161833807826042, -0.0008582657319493592, -0.015221619978547096, 0.018623938784003258, 0.007870424538850784, 0.010548555292189121, 0.0170799158513546, 0.023843562230467796, 0.028011061251163483, -0.003610694082453847, -0.005397253204137087, -0.020987799391150475, 0.02542857825756073, 0.0016063660150393844, 0.030607208609580994, -0.012844095937907696, -0.012686961330473423, 0.002973613329231739, -0.014265145175158978, 0.023297004401683807, 0.0248956847935915, 0.0011008005822077394, -0.014237817376852036, -0.018842563033103943, 0.019348127767443657, -0.02523728273808956, 0.007358027622103691, -0.022627471014857292, -6.292881153058261e-05, 0.00611119344830513, 0.04274078086018562, -0.009414449334144592, 0.015836497768759727, -0.020741848275065422, -0.002148653380572796, -0.015973135828971863, -0.02705458551645279, 0.007904584519565105, 0.017681127414107323, -0.010077149607241154, -0.014839030802249908, -0.03459707647562027, 0.018022727221250534, 0.01330183818936348, 0.04260414093732834, 0.03366792947053909, -0.01598680019378662, 0.010316268540918827, 0.005404085386544466, 0.011019960977137089, 0.04356061667203903, 0.013636603951454163, -0.019115841016173363, -0.015084980987012386, 0.03506164997816086, 0.01123175211250782, -0.004553505219519138, -0.026398716494441032, 0.0038908047135919333, 0.0038566449657082558, -8.790818537818268e-05, -0.00458424910902977, -0.014073850587010384, -0.016588013619184494, 0.03735718876123428, 0.01878790743649006, 0.014032858423888683, 0.004362210165709257, 0.0039010525215417147, 0.011853461153805256, 0.012570817954838276, -0.003562870202586055, -0.018009062856435776, 0.0030726767145097256, -0.03038858436048031, -0.0020256780553609133, -0.0136161083355546, -0.018815234303474426, -0.011395719833672047, 0.02921348623931408, -0.01878790743649006, 0.03279343619942665, 0.018801569938659668, 0.005711523815989494, -0.018664931878447533, 0.029158830642700195, 0.006794390268623829, -0.0050146630965173244, -0.011812468990683556, 0.015508563257753849, 0.00817103125154972, -0.00247146375477314, 0.030169961974024773, -0.00678755808621645, 0.019033856689929962, 0.017216553911566734, 0.009059187024831772, -0.021329397335648537, -2.4045317331911065e-05, -0.006070201750844717, 0.005711523815989494, 0.004205075092613697, -0.011573350988328457, -0.011320567689836025, -0.015522226691246033, -0.04446243494749069, 0.014620407484471798, 0.010903817601501942, -0.005021495278924704, 0.07531559467315674, -0.013903050683438778, -0.01759914495050907, 0.01261864136904478, 0.006729486398398876, 0.008116375654935837, 0.008553621359169483, -0.0005072734784334898, 0.004830200225114822, -0.003024853067472577, 0.0053596775978803635, 0.004307554569095373, -0.012516161426901817, -0.018637603148818016, -0.0044920179061591625, 0.014798038639128208, -0.0023279923480004072, 0.039598073810338974, -0.027983732521533966, 0.00970139168202877, 0.019020194187760353, 0.016765644773840904, -0.007979736663401127, 0.0014714347198605537, -0.0007036924944259226, -0.008956707082688808, 0.017476169392466545, -0.006261496804654598, -0.03118109330534935, -0.01379373949021101, -0.015276276506483555, -0.0025807751808315516, -0.022436177358031273, -0.012058420106768608, 0.0017763111973181367, 0.007399019319564104, -0.008594613522291183, 0.0018429228803142905, 0.02820235677063465, -0.004116259515285492, 0.0101932929828763, 0.011914948932826519, -0.01662900485098362, -0.043724581599235535, -0.012727952562272549, 0.032492831349372864, -0.020878488197922707, -0.01052122749388218, -0.046949271112680435], "660b852a-0985-4490-aad3-e7b3ccfb829c": [-0.0004772067768499255, 0.013420036062598228, 0.014857897534966469, -0.030301589518785477, -0.009019915014505386, -0.002884042914956808, -0.009259559214115143, -0.0028058260213583708, -0.001441189437173307, -0.009632337838411331, 0.01409902609884739, 0.014285415410995483, 0.0001080684014596045, 0.020529460161924362, -0.012228475883603096, -0.023085657507181168, 0.007728503085672855, 0.005135693587362766, 0.02249986305832863, 0.0092861857265234, 0.0014694806886836886, -0.009845353662967682, 0.002957267453894019, -0.003744429675862193, -0.02613445557653904, 0.03868911415338516, 0.02031644433736801, -0.013173735700547695, 0.02086229808628559, -0.01613599620759487, 0.013506574556231499, -0.00030849940958432853, -0.030887385830283165, -0.021980633959174156, -0.019104912877082825, 0.008627166040241718, 0.010610882192850113, -0.018106399103999138, 0.019704021513462067, 0.004533256404101849, 0.03048797883093357, 0.010104968212544918, 0.0016658551758155227, 0.00014260037278290838, -0.01997029222548008, 0.021354898810386658, 0.01823953352868557, -0.03086075745522976, -0.017254332080483437, 0.01065747905522585, 0.04108554869890213, 0.024510204792022705, -0.06134873628616333, 0.0011041907127946615, 0.0041038948111236095, -0.007009572349488735, -0.012421521358191967, 0.0028607442509382963, 0.011995488777756691, -0.03203234821557999, 0.005708175245672464, 0.012807614170014858, -0.00865379348397255, -0.014365296810865402, -0.021967321634292603, 0.007096110377460718, 0.029502777382731438, 0.01586972549557686, -0.006024371366947889, 0.027053089812397957, 0.010058370418846607, 0.01769367791712284, 0.008380865678191185, -0.017640424892306328, 0.019264675676822662, -0.003464845707640052, -0.00890675000846386, 0.0041038948111236095, -0.007655278779566288, 0.008121252059936523, 0.016162622720003128, -0.03179270401597023, -0.023751333355903625, 0.04310920462012291, 0.014431864023208618, -0.03711811453104019, -0.000667340587824583, 0.02411079965531826, -0.023338614031672478, -0.01409902609884739, -0.006437090691179037, 0.007621994707733393, 0.004257000517100096, 0.006127551198005676, 0.009279528632760048, -0.014192220754921436, -0.026999834924936295, 0.006060983520001173, 0.0033034191001206636, -0.017280958592891693, -0.009093139320611954, 0.00769521901383996, -0.022073829546570778, -0.013779501430690289, -0.017467347905039787, 0.003350016428157687, 0.002689332701265812, -0.004519942682236433, 0.013832755386829376, 0.004420091398060322, -0.008414149284362793, 0.03512108698487282, 0.004333553370088339, -0.038103315979242325, 0.03613291680812836, -0.0014852904714643955, 0.028570830821990967, -0.01866556704044342, -0.02301909029483795, 0.0005225559580139816, 0.003914177417755127, -0.01600285992026329, 0.010497717186808586, -0.01279430091381073, 0.028863728046417236, -0.013087198138237, -0.00884683895856142, -0.006110909394919872, -0.025681795552372932, -0.03253826126456261, 0.00962568074464798, -0.01748066209256649, 0.024922924116253853, -0.014032458886504173, 0.0024763161782175303, 0.008826869539916515, -0.02035638503730297, 0.0020735820289701223, -0.005228888243436813, -0.023085657507181168, 0.025482092052698135, -0.000957741925958544, -0.0036545635666698217, -0.0025029433891177177, -0.009465918876230717, 0.017427409067749977, 0.003727787872776389, 0.015696650370955467, 0.002710967091843486, -0.009745502844452858, -0.0041737910360097885, -0.02156791463494301, 0.003624608041718602, -0.02516256831586361, 0.012820927426218987, 0.021860813722014427, -0.017081256955862045, 0.010550971142947674, 0.016988061368465424, -0.0039940583519637585, 0.010730703361332417, 0.039541177451610565, 0.004050640854984522, -0.0035047861747443676, 0.015590141527354717, 0.03639918565750122, 0.012042086571455002, -0.007615338079631329, -0.026507234200835228, 0.013100511394441128, 0.01596292108297348, 0.011622710153460503, -0.01586972549557686, 0.014618254266679287, -0.005711503326892853, 0.00789492204785347, -0.02060934156179428, 0.008800242096185684, -0.05240204557776451, 0.00962568074464798, 0.0004797030705958605, -0.014618254266679287, 0.0058779227547347546, 0.04207075014710426, -0.04438730329275131, 0.007755130063742399, -0.004113879986107349, 0.007428948767483234, 0.014644880779087543, 0.01539043802767992, 0.004350195173174143, 0.030008692294359207, -0.011363096535205841, 0.010451119393110275, -0.6296766400337219, 0.007988116703927517, 0.004539913032203913, -0.02512262761592865, -0.014445178210735321, 0.0035746823996305466, 0.003548055188730359, 0.012361611239612103, -0.032325245440006256, 0.03655894845724106, -0.026800131425261497, 0.0015027645276859403, 0.008174506016075611, -0.001617593690752983, -0.004024013876914978, -0.03259151801466942, -0.0059278481639921665, -0.016069428995251656, 0.011602739803493023, -0.00107090687379241, 0.021860813722014427, 0.021128568798303604, -0.004203746560961008, 0.002765885554254055, -0.0012223483063280582, 0.028810475021600723, 0.02191406674683094, -0.01684161275625229, 0.02329867333173752, 0.034428782761096954, -0.008607195690274239, 0.00652362871915102, 0.0016392281977459788, -0.0028058260213583708, 0.02648060768842697, -0.004516614601016045, -0.00819447636604309, 0.008966661058366299, 0.011196677573025227, 0.03458854556083679, 0.008394179865717888, -0.013340155594050884, 0.03264477103948593, 0.022579744458198547, 0.008440776728093624, -0.016189249232411385, -0.007528800051659346, 0.012088683433830738, -0.019397810101509094, -0.0211152546107769, 0.002374800620600581, -0.023325301706790924, 0.019863784313201904, 0.006616823375225067, 0.028490949422121048, -0.006244044750928879, 0.01264785137027502, -0.01106354221701622, -0.00026689463993534446, -0.027252791449427605, 0.0031153655145317316, -0.008127909153699875, 0.01133646909147501, -0.00016215461073443294, 0.004330224823206663, 0.0064603895880281925, -0.022366726770997047, -0.001056761248037219, 0.020596027374267578, -0.004286956042051315, 0.010810584761202335, 0.016482148319482803, -0.011476261541247368, -0.011176707223057747, 0.013413379900157452, 0.02731936052441597, 0.028703967109322548, -0.007142707705497742, 0.011822412721812725, 0.0002600298321340233, 0.003253493458032608, -0.001435364712961018, -0.019091598689556122, -0.011323155835270882, 0.024630026891827583, 0.00519227609038353, -0.001990372547879815, 0.008427463471889496, 0.015483633615076542, 0.016442207619547844, 0.010484402999281883, 0.026374099776148796, -0.020888926461338997, -0.018678879365324974, -0.024843042716383934, 0.04774231091141701, -0.009599053300917149, 0.02255311608314514, 0.0006482023745775223, -0.02605457417666912, -0.01701468974351883, 0.010091654025018215, 0.006403807085007429, 0.0016708477633073926, 0.018692193552851677, 0.009885294362902641, 0.001640060218051076, 0.0010276379762217402, 0.04691687226295471, -0.0375707745552063, 0.003820982528850436, -0.016069428995251656, 0.005268828943371773, 0.002389778383076191, -0.01899840496480465, -0.02419068105518818, 0.02795840986073017, -0.0004179199750069529, -0.0018971777753904462, 0.011469604447484016, 0.005788056179881096, 0.025282390415668488, 0.0060842824168503284, -0.01765373907983303, 0.01903834566473961, 0.0027758704964071512, 0.004466688726097345, -0.017840128391981125, -0.032112229615449905, 0.0045265997759997845, 0.003548055188730359, 0.01336678210645914, 0.017786873504519463, -0.018612312152981758, 0.0024463608860969543, -0.01596292108297348, 0.0013238639803603292, -0.007761786691844463, 0.022313473746180534, -0.011742531321942806, -0.03749089688062668, -0.009765473194420338, 0.011003631167113781, -0.009239588864147663, -0.017573857679963112, -0.028863728046417236, -0.034215766936540604, -0.015989547595381737, -0.021288331598043442, -0.0037610717117786407, 0.014272102154791355, -0.02731936052441597, -0.015110854059457779, 0.021860813722014427, 0.014564999379217625, -0.005684876348823309, 0.0017573856748640537, 0.005608323495835066, -0.004859437700361013, -0.034215766936540604, -0.016908179968595505, 0.025934752076864243, -0.013672993518412113, -0.008447433821856976, -0.021847499534487724, -0.00020032699103467166, -0.017174450680613518, 0.02162116952240467, -0.0041571492329239845, -0.03653232008218765, -0.02026318944990635, 0.004390135873109102, 0.002100209007039666, 0.00652362871915102, 0.00819447636604309, 0.023591572418808937, -0.023458436131477356, -0.0005437743966467679, -0.014831270091235638, -0.019198106601834297, 0.012275072745978832, 0.016814986243844032, -0.003346688114106655, -0.023551631718873978, 0.008773614652454853, -0.0045598833821713924, -0.0059644607827067375, -0.0015651716385036707, -0.02947615087032318, 0.016455519944429398, 0.021248390898108482, 0.03453529253602028, -0.04183110594749451, -0.007781757041811943, 0.003634593216702342, 0.022979149594902992, 0.020063485950231552, -0.01268779207020998, -0.0016725119203329086, 0.0274524949491024, 0.00026419031200930476, 0.006813197862356901, 0.01545700617134571, -0.03259151801466942, -0.008474060334265232, -0.025868184864521027, 0.015243989415466785, 0.004576525185257196, 0.012448148801922798, -0.02174099162220955, 0.016455519944429398, -0.01376618817448616, -0.02123507671058178, -0.0061075808480381966, 0.00115328433457762, 0.05040501803159714, -0.003920834045857191, 0.01752060279250145, 0.017107883468270302, -0.008207789622247219, -0.004989244509488344, 0.005575039889663458, 0.01401914469897747, 0.030115200206637383, -0.021967321634292603, -0.032325245440006256, 0.026334159076213837, -0.014391924254596233, -0.021141882985830307, -0.03698498010635376, -0.0010234775254502892, -0.017706992104649544, 0.013060570694506168, 0.009752159006893635, 0.028783848509192467, -0.00706282677128911, 0.021421466022729874, -0.02292589470744133, 0.03437552973628044, -0.00010250376362819225, -0.0038875502068549395, 0.03147318214178085, 0.013233646750450134, -0.017973262816667557, 0.00041459157364442945, 0.013353468850255013, 0.02634747140109539, -0.001346330507658422, -0.04880739375948906, 0.016096055507659912, -0.001922140596434474, 8.964529115473852e-06, -0.021794244647026062, 0.02689332701265812, 0.008241074159741402, -0.0038808933459222317, 0.00500255823135376, -0.0015743246767669916, 0.01625581830739975, 0.00966562144458294, -0.0036811905447393656, 0.005385322030633688, 0.0018655580934137106, 0.0006386333261616528, 0.013872696086764336, -0.011249931529164314, -0.031393300741910934, -0.02423062175512314, -0.03480156138539314, -0.007162678055465221, -0.016628596931695938, -0.032911039888858795, -0.022659623995423317, -0.006417120341211557, 0.0493931882083416, 0.005385322030633688, 0.012814270332455635, 0.018306100741028786, 0.005025856662541628, 0.007542113773524761, -0.012428178451955318, -0.03389624133706093, 0.032990921288728714, 6.048294380889274e-05, -0.012275072745978832, -0.020888926461338997, -0.0019537601619958878, -0.008314298465847969, -0.016562029719352722, 0.03458854556083679, -0.016322385519742966, 0.015217362903058529, -0.00016693916404619813, 0.011556142009794712, 0.011755845509469509, 0.008014744147658348, 0.018133025616407394, -0.017121197655797005, 0.013559828512370586, 0.000860386760905385, 0.015976233407855034, -0.002973909256979823, -0.013899323530495167, -0.0077351597137749195, 0.042283765971660614, 0.008893436752259731, -0.008374209515750408, -0.01831941492855549, 0.009239588864147663, -0.018732134252786636, 0.021727677434682846, -0.027718765661120415, -0.01895846426486969, -0.02912999875843525, 0.025242449715733528, -0.011256587691605091, 0.003964102827012539, 0.007655278779566288, 0.017999889329075813, 0.022233592346310616, -0.024896297603845596, -0.0017523930873721838, -0.010218133218586445, -0.007016229443252087, 0.045079607516527176, 0.0034215766936540604, -0.01989041082561016, 0.010604225099086761, -0.028064917773008347, -0.01925136148929596, -0.013553171418607235, -0.003714474383741617, 0.014538372866809368, 0.008474060334265232, -0.000313491967972368, 0.003561368677765131, 0.008221103809773922, 0.013859382830560207, 0.016495460644364357, 0.007968146353960037, -0.015523573383688927, -0.020742475986480713, 0.01336012501269579, 0.0008179498836398125, 0.009765473194420338, 0.0024413682986050844, 0.023405183106660843, 0.008380865678191185, -0.027425868436694145, 0.011096825823187828, 0.01095703337341547, 0.0033982780296355486, 0.016748419031500816, -0.03820982575416565, -0.004599824082106352, 0.0179466363042593, 0.00969224888831377, 0.018479177728295326, -0.003471502335742116, 0.020156681537628174, 0.005904549732804298, 0.015044286847114563, 0.007568740751594305, -0.007069483399391174, 0.004170462489128113, 0.02731936052441597, 0.009153050370514393, -0.018306100741028786, -0.000860386760905385, 0.0011075191432610154, 0.0009211297146975994, 0.004806183744221926, 0.015150794759392738, -0.0037876986898481846, 0.029369642958045006, -0.009845353662967682, -0.010531000792980194, -0.024523518979549408, 0.006487016566097736, -0.002885707188397646, 0.018093084916472435, -0.019943665713071823, -0.017547229304909706, -0.010537657886743546, -0.004280299413949251, -0.012341640889644623, 0.009459261782467365, -0.004699675366282463, 0.02107531577348709, -0.0067932275123894215, 0.00086288305465132, 0.03048797883093357, -0.020289815962314606, -0.011682621203362942, -0.0018655580934137106, -0.024456951767206192, -0.025575287640094757, -0.009845353662967682, 0.01853243075311184, 0.025056060403585434, 0.013453319668769836, -0.013313528150320053, -0.0063904933631420135, 0.0056981900706887245, -0.009366067126393318, -0.048700883984565735, -0.006300627253949642, -0.029795676469802856, -0.02926313504576683, 0.013846069574356079, 0.018652252852916718, -0.013859382830560207, -0.029955437406897545, 0.016455519944429398, 0.013167079538106918, 0.016016174107789993, -0.027985036373138428, -0.021141882985830307, 0.002015335252508521, 0.024523518979549408, -0.020090114325284958, 0.028703967109322548, 0.011469604447484016, -0.031047146767377853, 0.010457776486873627, -0.023804588243365288, -0.01680167205631733, -0.00036570598604157567, -0.019357869401574135, 0.004446718376129866, 0.0019803873728960752, -0.00857391208410263, 0.02300577610731125, 0.0007451415294781327, 0.02432381547987461, -0.02026318944990635, 0.02478978969156742, 0.01245480589568615, -0.0015543544432148337, 0.015696650370955467, 0.009559113532304764, 0.03906189277768135, -0.0014769695699214935, -0.03245837986469269, -0.003518099896609783, -0.026081200689077377, 0.005395307205617428, 0.014272102154791355, -0.009572426788508892, 0.01831941492855549, 0.017933322116732597, -0.024417011067271233, -0.014604940079152584, -0.017627110704779625, 0.03237849846482277, 0.01722770556807518, 0.0063904933631420135, -0.025868184864521027, -0.018306100741028786, 0.026746878400444984, -0.006007729563862085, 0.013413379900157452, -0.020249877125024796, 0.00901325885206461, -0.0016059443587437272, 0.02056940086185932, -0.0007326601189561188, -0.013200363144278526, -0.024203993380069733, -0.03285778686404228, -0.010883809067308903, -0.002769213868305087, 0.017746932804584503, 0.02638741210103035, 0.023738021031022072, 0.010204819031059742, -0.03402937948703766, -0.007369037717580795, 0.007002915721386671, -0.01853243075311184, -0.0006631801370531321, 0.0016791687812656164, 0.00553177110850811, 0.025948066264390945, 0.02918325364589691, 0.007428948767483234, 0.019451064988970757, -0.00787495169788599, -0.016775045543909073, 0.0426299162209034, -0.016655223444104195, 0.0019437751034274697, -0.015816470608115196, 0.007322440389543772, 0.019304616376757622, 0.024896297603845596, 0.002025320427492261, -0.005468531511723995, 0.010191505774855614, 0.014871210791170597, 0.01245480589568615, -0.0011241610627621412, -0.006267343182116747, -0.005728145595639944, 0.011869010515511036, 0.022832700982689857, -0.012894151732325554, 0.0017690350068733096, -0.008487374521791935, 0.009359410032629967, 0.005641607567667961, -0.01769367791712284, -0.00428362749516964, -0.00933278352022171, 0.014764702878892422, -0.021088628098368645, 0.025215821340680122, 0.020848985761404037, 0.022792760282754898, -0.020835671573877335, -0.0042070746421813965, -0.029822302982211113, 0.009073168970644474, -0.004556554835289717, 0.00998514611274004, 0.018346041440963745, -0.026693623512983322, 0.029689166694879532, -0.009066512808203697, 0.002111858455464244, -0.03056786023080349, -0.0096057103946805, 0.03634593263268471, -0.013193706050515175, -0.021341584622859955, -0.025615228340029716, -0.031180283054709435, 0.010843868367373943, -0.006653435528278351, 0.007369037717580795, -0.0003209808492101729, 0.01588303968310356, -0.02035638503730297, -0.0325116366147995, -0.000823358481284231, -0.0016092726727947593, 0.037091489881277084, 0.014764702878892422, 0.014871210791170597, 0.0204762052744627, -0.003734444733709097, 0.004053969401866198, -0.009159707464277744, 0.005292127374559641, 0.002211709739640355, 0.024217307567596436, 0.012068713083863258, -0.02761225774884224, -0.0023398525081574917, 0.00964565109461546, 0.0035979810636490583, -0.004200418014079332, -0.03229862079024315, 0.02263299748301506, 0.008207789622247219, -0.023658139631152153, -0.03280453383922577, 0.0025495407171547413, -0.035493865609169006, -0.0040107001550495625, -0.015230676159262657, 0.005475188605487347, -0.021474720910191536, 0.0005787224508821964, -0.013440006412565708, -0.012594597414135933, -0.011875666677951813, 0.02055608667433262, 0.013380095362663269, 0.005395307205617428, -0.0015227347612380981, -0.0018971777753904462, -0.019570887088775635, 0.014005831442773342, 0.010491060093045235, 0.016788359731435776, -0.010624195449054241, -0.01672179065644741, 0.023911096155643463, -0.01958419941365719, -0.0005238041048869491, -0.02444363757967949, 0.00031265988945961, 0.030727623030543327, 0.00030080252327024937, 0.014525058679282665, -0.0015884703025221825, -0.006836496759206057, 0.017387468367815018, -0.01887858286499977, -0.0030254991725087166, -0.008880123496055603, -0.0019787230994552374, 0.0056116520427167416, 0.02364482544362545, 0.017334213480353355, -0.014884524047374725, -0.00794151984155178, -0.01654871553182602, 0.003954117652028799, -0.004326896741986275, -0.013712934218347073, -0.015164108015596867, -0.005768085829913616, 0.014831270091235638, -0.0037044892087578773, 0.018013203516602516, 0.013792814686894417, 0.002020327840000391, 0.002003686036914587, 0.006586867850273848, 0.039541177451610565, -0.034135885536670685, 0.017760246992111206, -0.00830098520964384, 0.017706992104649544, -0.019411124289035797, 0.020848985761404037, 0.004709660541266203, 0.001537712523713708, 0.02288595400750637, -0.02883710153400898, -0.013513230718672276, -0.026360785588622093, -0.016189249232411385, 0.03584001585841179, -0.018479177728295326, 0.012181878089904785, -0.008314298465847969, 0.0106641361489892, 0.0064437477849423885, -0.024976179003715515, -0.004509957507252693, 0.019437750801444054, -0.029369642958045006, 0.004363508895039558, -0.01211531087756157, -0.007382351439446211, -0.00024047559418249875, -0.01650877483189106, -0.004709660541266203, 0.00053295714315027, -0.010823898017406464, 0.00045432415208779275, 0.004742944147437811, -0.0033716510515660048, -0.024417011067271233, 0.0004913524026051164, -0.04366837069392204, -0.014604940079152584, -0.017547229304909706, 0.02588149905204773, -0.018465863540768623, 0.0035746823996305466, -0.021940695121884346, 0.012181878089904785, 0.015736591070890427, 0.024563459679484367, -0.010178192518651485, 0.011476261541247368, -0.011396380141377449, 0.0038675798568874598, -0.026001321151852608, -0.024763161316514015, -0.0006586036179214716, 0.03685184568166733, 0.009445948526263237, -0.027013149112462997, -0.013519887812435627, 0.006293970625847578, -0.018971776589751244, -0.012934092432260513, -0.012028772383928299, 0.01625581830739975, 0.027479121461510658, 0.018985090777277946, -0.014844583347439766, 0.016881553456187248, -0.001734087010845542, 0.029289761558175087, -0.02187412604689598, -0.002695989329367876, 0.009126423858106136, 0.04071277007460594, -0.002869065385311842, -0.0011957212118431926, -0.018812015652656555, -0.026840072125196457, -0.009299498982727528, -0.0006249037105590105, 0.0065469276160001755, 0.019091598689556122, -0.006729988381266594, -0.01194889098405838, -0.045026350766420364, -0.011589426547288895, -0.00445337500423193, 0.00933278352022171, -0.004629779607057571, -0.013912636786699295, -0.0029372971039265394, -0.014724762178957462, 0.01802651770412922, -0.021141882985830307, 0.0016800008015707135, -0.010491060093045235, -0.014884524047374725, 0.026240963488817215, -0.008320954628288746, -0.017320899292826653, 0.01642889343202114, -0.008920064195990562, 0.035147715359926224, 0.010923749767243862, 0.01740078069269657, 0.029396269470453262, 0.018692193552851677, 0.011096825823187828, -0.02668031118810177, 0.005724817048758268, -0.02035638503730297, -0.0060310279950499535, 0.0016641910187900066, 2.1829506295034662e-05, 0.00248630135320127, -0.000812541285995394, 0.018266160041093826, -0.009299498982727528, 0.020209936425089836, -0.018372667953372, -0.02220696397125721, -0.03669208288192749, -7.868502871133387e-05, 0.001342170056886971, -0.014711448922753334, 0.021900754421949387, -0.0009169692639261484, 0.00552178593352437, 0.014924464747309685, -0.02739924006164074, -0.038236454129219055, 0.010204819031059742, 0.015723276883363724, 0.005748115945607424, -0.0092861857265234, -0.010231446474790573, 0.015204048715531826, 0.020023547112941742, -0.025774991139769554, 0.014138966798782349, 0.2005549818277359, 0.009652308188378811, 0.0038842218928039074, 0.022326786071062088, 0.002428054576739669, 0.021514661610126495, 0.004280299413949251, -0.010058370418846607, -0.005032513756304979, -0.000859554682392627, -0.03091401234269142, 0.01380612887442112, -0.002191739622503519, 0.00964565109461546, 0.010550971142947674, 0.011003631167113781, -0.015603454783558846, -0.024470264092087746, -0.02588149905204773, -0.0031985752284526825, -0.0027342657558619976, -0.00895334780216217, -0.015683336183428764, -0.02457677200436592, 0.03400275111198425, 0.0006157506722956896, -0.011922264471650124, -0.007675249129533768, 0.019078286364674568, -0.005904549732804298, -0.029955437406897545, -0.0029955438803881407, 5.850671368534677e-05, 0.013133795000612736, -0.013779501430690289, -0.012887495569884777, 0.019770588725805283, 0.003551383502781391, 0.020276503637433052, -0.02276613377034664, -0.013346811756491661, -0.02401760406792164, -0.014152280054986477, -0.02156791463494301, -0.002106865867972374, 0.0025595256593078375, -0.008667106740176678, -0.03099389374256134, -0.0031253506895154715, 0.012847554869949818, -0.012980690225958824, -0.026547174900770187, 0.01106354221701622, 0.03091401234269142, -0.0047229742631316185, -0.011875666677951813, 0.0037876986898481846, -0.011236617341637611, -0.010357924737036228, 0.02862408570945263, -0.017001375555992126, 0.038822248578071594, 0.004856109153479338, 0.0034881443716585636, -0.025655169039964676, 0.012168564833700657, -0.018971776589751244, -0.013273587450385094, 0.003078753361478448, -0.019198106601834297, 0.018146337941288948, -0.021847499534487724, 0.007954833097755909, 0.0025328986812382936, 0.011562799103558064, -0.01205539982765913, 0.014977718703448772, 0.02056940086185932, 0.009539143182337284, 0.012428178451955318, -0.0017540573608130217, -0.034641798585653305, -0.011682621203362942, -0.0005737298633903265, -0.022566430270671844, -0.024843042716383934, 0.021527975797653198, -0.01304725743830204, -0.018013203516602516, -0.0422305092215538, -0.01752060279250145, -0.0061774770729243755, 0.003361665876582265, 0.015204048715531826, -0.007189305033534765, 0.020715849474072456, -0.028677338734269142, 0.019690707325935364, -0.019690707325935364, -0.00284576672129333, -0.02432381547987461, 0.044227540493011475, 0.033629972487688065, 0.02064928226172924, 0.02403091825544834, -0.0023315316066145897, 0.008760301396250725, 0.013193706050515175, 0.006037685088813305, -0.01895846426486969, 0.01412565354257822, -0.03360334411263466, -0.005788056179881096, 0.006680062506347895, -0.0018589013488963246, 0.00890675000846386, -0.026946580037474632, -0.0246965941041708, 0.009113109670579433, 0.0025212494656443596, 0.014045772142708302, -0.011190020479261875, 0.006064312066882849, -0.00016215461073443294, -0.0008087968453764915, -0.0017016353085637093, -0.04340210184454918, 0.0002926895976997912, -0.0034065989311784506, -0.021767618134617805, 0.017893381416797638, -0.047609176486730576, 0.01304725743830204, -0.0008254387648776174, -0.01376618817448616, -0.013546515256166458, -0.030967267230153084, -0.033842988312244415, -0.004147164057940245, 0.024976179003715515, -0.016748419031500816, 0.010910436511039734, -0.020795730873942375, -0.004480001982301474, 0.011556142009794712, -0.02115519531071186, 0.001445349887944758, -0.011209990829229355, 0.01752060279250145, -0.03850272297859192, -0.015190735459327698, 0.007016229443252087, -0.006606838200241327, -0.03006194718182087, 0.005967788863927126, -0.021501347422599792, 0.013533201068639755, -0.03770391270518303, 0.004746272694319487, -9.345472790300846e-05, -0.02541552484035492, -0.0010401193285360932, 0.03091401234269142, -0.006570226047188044, -0.039913956075906754, -0.036505695432424545, -0.16732442378997803, -0.00035634491359815, -0.0021717692725360394, -0.030834130942821503, 0.050431642681360245, 0.006457061041146517, 0.028490949422121048, 0.01866556704044342, -0.01273438986390829, -0.005864609032869339, -0.0047229742631316185, 0.0026011306326836348, -0.006969632115215063, -0.009146394208073616, -0.02428387477993965, -0.0198371559381485, -0.008727017790079117, 0.007508829701691866, 0.039328161627054214, 0.034934695810079575, 0.03599977865815163, -0.022819386795163155, 0.028490949422121048, -0.005644936114549637, -0.005664905998855829, -0.009153050370514393, -0.0022250234615057707, 0.0026510562747716904, 0.0008861817186698318, -0.03402937948703766, -0.0036312646698206663, 0.022619683295488358, 0.01933124288916588, -0.01342669315636158, 0.023192165419459343, -0.002684340113773942, 0.0020719177555292845, -0.02275281958281994, -0.012221818789839745, -0.021674424409866333, 0.01346663385629654, 0.028677338734269142, -0.026374099776148796, -0.013519887812435627, -0.014005831442773342, 0.03453529253602028, -0.003544726874679327, -0.014711448922753334, -0.020928865298628807, 0.008048027753829956, 0.022353414446115494, -0.019317928701639175, 0.00250627170316875, 0.001252303714863956, 0.0046530780382454395, -0.022526489570736885, -0.01929130218923092, 0.02230015955865383, -0.003964102827012539, 0.023245420306921005, 0.006293970625847578, -0.015630081295967102, 0.0039008636958897114, 0.03173945099115372, -0.012235132046043873, -0.015723276883363724, -0.007142707705497742, 0.020502833649516106, -0.019664080813527107, 0.008247730322182178, 0.0077018761076033115, 0.004889393225312233, 0.008014744147658348, -0.00783501099795103, -0.010910436511039734, 0.011323155835270882, -0.0059644607827067375, 0.021754303947091103, -0.00552178593352437, -0.022792760282754898, 0.007428948767483234, 0.03786367550492287, 0.001052600797265768, -0.014578313566744328, 0.0007372366380877793, -0.00893337745219469, -0.0031952466815710068, 0.020835671573877335, -0.013313528150320053, -0.02998206578195095, 0.0070428564213216305, -0.021647796034812927, 0.011709247715771198, -0.015323870815336704, 0.01481795683503151, 0.022433293983340263, 0.00861385278403759, -0.00597444549202919, 0.01477801613509655, -0.03994058445096016, 0.011489574797451496, -0.019730648025870323, -0.020995434373617172, -0.0009852010989561677, 0.009878638200461864, 0.02360488474369049, -0.02508268691599369, 0.037011608481407166, 0.042416900396347046, 0.00935275387018919, -0.01543037872761488, 0.0029056775383651257, -0.0038642515428364277, 0.030514607205986977, -0.00037257076473906636, 0.005897893104702234, 0.013167079538106918, -0.0034781591966748238, 0.011442977003753185, 0.0085472846403718, 0.030035318806767464, 0.015150794759392738, 0.0025345629546791315, 0.018851956352591515, -0.03006194718182087, 0.011769158765673637, -0.11747857183218002, -0.05290796235203743, -0.005099081434309483, 0.030940638855099678, 0.01802651770412922, -0.005961132235825062, -0.0185723714530468, 7.473257574019954e-05, 0.006676734425127506, 0.038156572729349136, -0.008793585002422333, -0.008121252059936523, -0.001439525280147791, 0.006307283882051706, -0.0047396160662174225, 0.009425978176295757, -0.011363096535205841, -0.00042603290057741106, -0.02056940086185932, 0.030621115118265152, 0.02854420430958271, 0.0014919472159817815, -0.006450404413044453, -0.012188535183668137, -0.003964102827012539, -0.013453319668769836, -0.02774539217352867, 0.008154535666108131, -0.0011749188415706158, 0.01441855076700449, 0.017067942768335342, -0.005195604171603918, -0.008141222409904003, -0.0053220828995108604, 0.00926621537655592, 0.0014919472159817815, -0.015550200827419758, -0.026320844888687134, 0.011875666677951813, -0.003674533683806658, 0.009532486088573933, -0.0010043393122032285, 0.00994520541280508, 0.0072558727115392685, 0.025388898327946663, -0.013033944182097912, -0.021501347422599792, 0.02329867333173752, -0.014538372866809368, -0.02275281958281994, -0.03826307877898216, -0.008520658127963543, -0.030807504430413246, -0.007029542699456215, 0.01769367791712284, 0.009432634338736534, 0.009179677814245224, -0.0008920063846744597, -0.013712934218347073, 0.009905264712870121, -0.023338614031672478, 0.0005025856662541628, -0.009346096776425838, 0.004406777676194906, 0.010204819031059742, 0.020596027374267578, -0.04116543009877205, -0.01625581830739975, 0.04723639786243439, -0.021421466022729874, -0.02347175031900406, 0.0337897352874279, -0.011076855473220348, 0.010457776486873627, -0.025854870676994324, 0.01629575900733471, -0.0016001196345314384, 0.010184848681092262, -0.0009802085114642978, 0.0012689456343650818, -0.0020769103430211544, -0.015803158283233643, 0.001164933666586876, -0.011249931529164314, 0.009785443544387817, 0.017920007929205894, 0.02541552484035492, 0.021767618134617805, -0.001151620177552104, -0.024643341079354286, 0.014791329391300678, 0.004160477314144373, 0.031393300741910934, -0.023418495431542397, 0.0068697803653776646, 0.0028191395103931427, 0.021394839510321617, 0.008687077090144157, -0.005578368436545134, 0.015656709671020508, -0.030594486743211746, -0.02718622423708439, -0.03512108698487282, 0.007528800051659346, -0.00032888574060052633, 0.011742531321942806, 0.01135643944144249, -0.010084997862577438, 0.014525058679282665, -0.00935275387018919, -0.006227402947843075, -0.008001429960131645, -0.022433293983340263, 0.011682621203362942, -0.002662705723196268, -0.0003792275383602828, -0.010417835786938667, -0.028224678710103035, -0.017387468367815018, -0.00462312251329422, 0.01714782416820526, 0.0096057103946805, -0.011682621203362942, 0.0071693346835672855, 0.011243274435400963, -0.0018455878598615527, 0.00899328850209713, -0.008840182796120644, 0.00291233416646719, 0.027559002861380577, -0.008340924978256226, -0.042416900396347046, 0.02313891239464283, -0.015616768039762974, -0.002797505119815469, 0.031180283054709435, -0.01023810263723135, 0.017254332080483437, 0.0219540074467659, 0.01798657700419426, 0.043002694845199585, 0.02245992235839367, -0.028677338734269142, -0.018399296328425407, 0.03735775873064995, 0.00036549795186147094, 0.02377796173095703, -0.03381635993719101, -0.0006003568996675313, 0.011263244785368443, -0.0004239526460878551, 0.00956576969474554, 0.036212798207998276, 0.009998459368944168, 0.013120481744408607, -0.03056786023080349, 0.008720360696315765, -0.027692139148712158, 0.004306926392018795, -0.017760246992111206, -0.008021400310099125, -0.008094624616205692, 0.03661220148205757, 0.014205534011125565, 0.013246960006654263, -0.017334213480353355, 0.003714474383741617, -0.033044178038835526, -0.0011690942337736487, -0.019650766626000404, 0.02170105092227459, -0.007448919117450714, -0.01093706302344799, -0.010730703361332417, 0.009439291432499886, 0.011076855473220348, 0.05354700982570648, 0.014085712842643261, -0.03235187381505966, 0.014764702878892422, -0.025814931839704514, 0.02811817079782486, 0.03179270401597023, -0.009046542458236217, -0.01612268202006817, -0.006240716204047203, 0.05458546429872513, 0.005445233080536127, -0.005754772573709488, -0.0024679952766746283, -0.010351267643272877, 0.0047396160662174225, 0.008833525702357292, 0.0123482970520854, -0.01608274132013321, -0.0014128981856629252, 0.00798146054148674, 0.01845254935324192, -0.01380612887442112, 0.007269186433404684, 0.005471860058605671, 0.03533410280942917, 0.01517742220312357, -0.01232832670211792, -0.03149980679154396, 0.008733673952519894, -0.03530747815966606, 0.001642556511797011, 0.0001717237028060481, -0.025522032752633095, -0.014285415410995483, 0.03496132418513298, -0.019704021513462067, 0.009658964350819588, 0.04563877359032631, 0.006720003206282854, -0.02761225774884224, 0.020582715049386024, -0.0062806569039821625, 0.012488089501857758, -0.009465918876230717, 0.02321879379451275, 0.021221764385700226, 0.007948176003992558, 0.03693172708153725, -0.012281729839742184, 0.029422897845506668, 0.023325301706790924, 0.020635968074202538, -0.0033999423030763865, -0.008966661058366299, -0.004300269763916731, 0.0030537904240190983, -0.002023656154051423, -0.022792760282754898, -0.005781399551779032, -0.009319469332695007, -0.02478978969156742, 0.013859382830560207, 0.03277790546417236, -0.006377180106937885, 0.07444924861192703, -0.00598443066701293, -0.023338614031672478, -0.008913407102227211, -0.011309841647744179, -0.004127193707972765, 0.02841106802225113, 0.001352987252175808, 0.009938548319041729, -0.0034149200655519962, 0.024510204792022705, -0.010091654025018215, 0.009133080020546913, -0.03296429663896561, -0.012082026340067387, 0.018612312152981758, -0.0019404466729611158, 0.03703823685646057, -0.016668537631630898, 0.021062001585960388, 0.03386961668729782, 0.006250701379030943, -0.003571353852748871, 0.009838697500526905, -0.007488859351724386, 0.01068410649895668, 0.02601463347673416, 0.029236508533358574, -0.041192054748535156, -0.032751280814409256, 0.0060310279950499535, 0.0002548292395658791, -0.025788303464651108, -0.013979204930365086, 0.014578313566744328, 0.011283215135335922, -0.004696346819400787, -0.0011150080244988203, 0.006650107447057962, -0.005411949008703232, 0.0016583662945777178, -0.007282499689608812, -0.028810475021600723, -0.04670385643839836, -0.010224789381027222, 0.011436320841312408, -0.011502888053655624, -0.015243989415466785, -0.06885756552219391], "464a4c61-76db-4671-84b1-48da946f5f78": [-0.005805539432913065, -0.0008301386842504144, 0.012393172830343246, -0.01455896906554699, -0.025601860135793686, -0.007847672328352928, 0.005718640051782131, -0.003562869969755411, -0.0192782673984766, -0.01782103441655636, 0.018703395500779152, 0.019077731296420097, -0.00038791331462562084, 0.021791663020849228, -0.002780776470899582, 5.311091081239283e-05, 0.015454700216650963, -0.015107103623449802, 0.014371802099049091, -0.006691243499517441, 0.000980959041044116, -0.011370434425771236, -0.013409225270152092, -0.013529547490179539, -0.0219119843095541, 0.01852959766983986, 0.007653819862753153, -0.029732918366789818, 0.010722032748162746, 1.0660043699317612e-05, 0.011985414661467075, 0.0010996100027114153, -0.023663338273763657, -0.01592261902987957, -0.01850285939872265, 0.015508176758885384, -0.010849039070308208, -0.0069118342362344265, -0.00598268024623394, -0.01663118228316307, 0.0305885411798954, 0.009144476614892483, -0.018917301669716835, 0.0021908641792833805, 0.0034659437369555235, 0.01787451095879078, 0.026323793455958366, -0.04197902977466583, -0.030695494264364243, 0.012333011254668236, 0.045535214245319366, 0.03791482001543045, -0.03125699609518051, -0.010668556205928326, 0.0023212130181491375, 0.014064311981201172, -0.014478755183517933, 0.013743453659117222, 0.0018482805462554097, -0.010006784461438656, -0.0011890159221366048, 0.006557552609592676, -0.014452016912400723, 0.004415151197463274, 0.0018315691268071532, -0.002981313271448016, 0.0034759705886244774, 0.02989334799349308, -0.024371901527047157, 0.011136475019156933, 0.01494667399674654, 0.007988047786056995, 0.008242061361670494, 0.01602957211434841, 0.041497740894556046, -0.025601860135793686, -0.023556385189294815, -0.0038970978930592537, -0.00014215132978279144, 0.004004050977528095, 0.010006784461438656, -0.01068192534148693, -0.017112471163272858, 0.026952141895890236, 0.01226616557687521, -0.023021621629595757, -0.0005782143562100828, 0.026992248371243477, -0.019064363092184067, -0.033503010869026184, -0.001500683487392962, 0.007901148870587349, 0.006052867975085974, 0.019465435296297073, 0.013703346252441406, 0.014492124319076538, -0.025615230202674866, 0.010401173494756222, -0.004732667934149504, 0.0073663839139044285, 0.006898465100675821, 0.017580389976501465, 0.0008598014246672392, -0.0043081981129944324, 0.008395805954933167, 0.016711397096514702, 0.005688559729605913, -0.003091608639806509, 0.01926489919424057, -0.022192735224962234, -0.012460017576813698, 0.04120362177491188, -0.006383753847330809, -0.038797181099653244, 0.018088417127728462, -0.004268090706318617, 0.03834262862801552, -0.0020504884887486696, -0.0226205475628376, -0.011156529188156128, 0.007693927269428968, -0.0106351338326931, 0.036257047206163406, -0.0011305260704830289, 0.040882762521505356, -0.014438647776842117, 0.016444014385342598, -0.0038737019058316946, -0.034786444157361984, -0.04802187159657478, 0.006527471821755171, 0.005053526721894741, 0.015534915030002594, 0.000980959041044116, 0.0006901806918904185, 0.011898514814674854, -0.018970778211951256, 0.0035695545375347137, -0.024866558611392975, -0.006480679847300053, 0.01724616251885891, 0.013643184676766396, -0.006333619821816683, 0.0046858759596943855, 0.010341012850403786, 0.021123206242918968, 0.03582923486828804, 0.0027139310259371996, -0.0017680658493191004, 0.0035194202791899443, 0.006701270584017038, -0.017700713127851486, 0.009411859326064587, 0.007613712921738625, -0.0015416264068335295, 0.0016970423748716712, -0.01656433753669262, 0.005802197381854057, 0.02457243949174881, -0.0019569045398384333, 0.025748921558260918, 0.036203570663928986, -0.012787560932338238, 0.020909300073981285, 0.00017651413509156555, 0.025641968473792076, 0.022994883358478546, 0.009712664410471916, -0.018823718652129173, 0.0012525191996246576, -0.01429158728569746, 0.02068202570080757, -0.008716665208339691, 0.01716594770550728, -0.01123005896806717, -0.01782103441655636, 0.0023880586959421635, -0.012800930067896843, -0.018288953229784966, 0.005257405806332827, 0.010160529986023903, -0.01590925082564354, 0.00933832861483097, 0.020748870447278023, -0.01859644241631031, -0.009712664410471916, 0.03732657805085182, 0.011210005730390549, 0.013810299336910248, 0.012219374068081379, -0.008161846548318863, 0.039572589099407196, 0.0014129487099125981, -0.007413175888359547, -0.6280276775360107, 0.008616396225988865, -0.009652502834796906, -0.018796980381011963, -0.012312958016991615, -0.004548842553049326, 0.0011138146510347724, 0.008409175090491772, -0.011824985034763813, 0.014933304861187935, 0.0009583986247889698, 0.02250022627413273, 0.016992149874567986, -0.007052209693938494, -0.0038603327702730894, -0.028208838775753975, -0.00413774186745286, -0.03382387012243271, -0.019064363092184067, 0.017647236585617065, 0.0008873752085492015, 0.03588271141052246, -0.01455896906554699, -0.012767507694661617, 0.006530814338475466, 0.018449382856488228, 0.01987987756729126, 0.0005506405723281205, -0.00020795245654881, 0.0035996350925415754, -0.023061728104948997, -0.00012460435391403735, -0.018101785331964493, 0.015361116267740726, 0.04123035818338394, 0.004171164706349373, -0.010427911765873432, -0.007012102287262678, 0.003283789614215493, 0.026738235726952553, -0.01803494058549404, 0.018436014652252197, 0.034224942326545715, 0.01929163746535778, 0.005063553340733051, -0.01292125228792429, 0.010895831510424614, 0.019679341465234756, 0.012185950763523579, -0.008135108277201653, -0.010381120257079601, 0.013188634999096394, -0.00926479883491993, -0.00750007526949048, 0.008101685903966427, 0.003689876524731517, 0.014452016912400723, -0.00216412590816617, 0.0013110091676935554, -0.012693977914750576, -0.0010269153863191605, 0.002660454483702779, -0.025468170642852783, -0.00174132757820189, -0.02323552779853344, 0.047433629631996155, -0.014599076472222805, 0.001178153557702899, 0.002110649598762393, -0.00020022342505399138, 0.012607078067958355, 0.02462591603398323, -0.008222007192671299, 0.0007014609291218221, 0.013081681914627552, 0.021457433700561523, 0.021751554682850838, -0.007259431295096874, 0.005838962271809578, 0.01655096746981144, 0.02981313318014145, -0.00860971212387085, -0.02735321596264839, -0.013081681914627552, 0.03513404354453087, -0.008028155192732811, 0.0024164679925888777, 0.02981313318014145, 0.019639234989881516, 0.0155482841655612, 0.017647236585617065, 0.030187468975782394, -0.010140475817024708, -0.03521425649523735, -0.01784777268767357, 0.01589588075876236, 0.002824226161465049, 0.020227475091814995, -0.018329061567783356, -0.024157995358109474, -0.030695494264364243, -0.030160730704665184, 0.024051044136285782, 0.0072059547528624535, -0.0018917302368208766, 0.02046811953186989, 0.012252796441316605, 0.0035695545375347137, 0.027072463184595108, -0.022379903122782707, -0.008054893463850021, -0.017406592145562172, -0.0052741169929504395, -0.010862408205866814, 0.00858297385275364, -0.03189871460199356, 0.05197913199663162, -0.016858458518981934, 0.00731959193944931, -0.0005042664124630392, -0.0010511468863114715, 0.014131157658994198, 0.010855724103748798, -0.00800810195505619, 0.01919805258512497, 0.013449332676827908, 0.009091000072658062, -0.0317382849752903, -0.03197893127799034, 0.0014739452162757516, 0.0068784113973379135, 0.006504076067358255, 2.075868906104006e-05, -0.007018786855041981, -0.005113687831908464, -0.024291686713695526, -0.003048158949241042, -0.01727290078997612, 0.02260717935860157, -0.01852959766983986, -0.019625864923000336, -0.002337924437597394, 0.008288852870464325, -0.0023579781409353018, -0.022780977189540863, -0.004923177883028984, -0.01991998590528965, -0.013689977116882801, 0.0011622776510193944, 0.005825593136250973, -0.016083048656582832, 0.006286827847361565, -0.011443965137004852, 0.03371691703796387, 0.00890383217483759, -0.014679291285574436, -0.01929163746535778, 0.010889146476984024, 0.00024273304734379053, -0.0071725319139659405, -0.01800820231437683, 0.02532110922038555, -0.0009433584054931998, 0.007279484532773495, 0.01196536049246788, -0.015200687572360039, -0.043396156281232834, 0.025508277118206024, 0.000500088557600975, -0.03917151689529419, -0.002082240069285035, 0.0002527598990127444, -0.0022827768698334694, 0.009866409003734589, 0.014799613505601883, 0.02930510602891445, -0.014625814743340015, 0.01297472883015871, -0.011022837832570076, -0.0165108609944582, -0.005407808348536491, 0.003285460639744997, -0.02258044108748436, -0.023716814815998077, 0.013415910303592682, 0.01155760232359171, 0.022232843562960625, -0.010160529986023903, -0.012373118661344051, 0.02462591603398323, 0.014799613505601883, 0.002852635458111763, -0.03692550212144852, -0.008034840226173401, -0.004037473816424608, 0.028342530131340027, 0.0019418643787503242, -0.003352306317538023, -0.01024742890149355, 0.0426742248237133, 0.003880386473610997, 0.01589588075876236, -0.0009634120506234467, -0.028048409149050713, -0.0009943281766027212, -0.012820984236896038, 0.015120472759008408, -0.006738035473972559, 0.006534156389534473, -0.02458580769598484, 0.0024749580770730972, -0.024746237322688103, -0.008476020768284798, 0.013095051050186157, 0.012640501372516155, 0.02517404966056347, -0.010828985832631588, 0.012018837034702301, 0.01782103441655636, -0.0145857073366642, 0.007032155990600586, -0.008095000870525837, 0.005802197381854057, 0.020936038345098495, -0.01733974553644657, -0.011016152799129486, 0.010889146476984024, -0.004024104680866003, -0.026724867522716522, -0.017767557874321938, 0.0065007335506379604, 0.012379803694784641, 0.024946773424744606, -0.007700611837208271, 0.03577575832605362, 0.022874560207128525, 0.033583223819732666, -0.01848948933184147, 0.01589588075876236, -0.010722032748162746, -0.02320878952741623, 0.008201953954994678, 0.008155162446200848, -0.02189861610531807, 0.006357015576213598, 0.012339696288108826, 0.041524481028318405, -0.005925861652940512, -0.00026090670144185424, 0.005150452721863985, 0.013743453659117222, 0.0031250312458723783, -0.0204948578029871, -0.001312680309638381, 0.006557552609592676, -0.0036531114019453526, -0.006724666338413954, 0.009171214886009693, 0.01859644241631031, 0.02466602250933647, -0.013462701812386513, -0.005234009586274624, 0.013456017710268497, 0.002135716611519456, 0.005003392230719328, 0.009431912563741207, -0.0009943281766027212, -0.026791712269186974, -0.018957410007715225, -0.0059459153562784195, -0.007680558133870363, -0.036096617579460144, -0.028289053589105606, 0.012012152932584286, 0.03465275466442108, 0.0032102593686431646, 0.00628348533064127, 0.015441331081092358, -0.004929862450808287, -0.0033489640336483717, -0.005895780865103006, -0.012800930067896843, 0.01798146404325962, 0.02461254596710205, -0.00514711020514369, -0.03580249845981598, -0.00021996376744937152, -0.006029472220689058, -0.008489389903843403, 0.02193872258067131, -0.022754238918423653, 0.008402490988373756, 8.752594294492155e-05, 0.0029729576781392097, -0.0003427925403229892, 0.026029672473669052, 0.02316868118941784, 0.003679849673062563, 0.01196536049246788, -0.012386487796902657, -0.007012102287262678, -0.01590925082564354, -0.007640450727194548, 0.008014786057174206, 0.04917161539196968, 0.012306272983551025, 0.02046811953186989, -0.015494807623326778, 0.0068449885584414005, -0.025387955829501152, 0.01199209876358509, -0.018222108483314514, -0.00866318866610527, -0.03705919533967972, 0.03050832636654377, -0.00431822519749403, 0.004969969391822815, 0.013315641321241856, 0.020775608718395233, -0.0038737019058316946, -0.024786345660686493, -0.006113029085099697, 0.008977362886071205, 0.00964581873267889, 0.05593638867139816, 0.03451906144618988, -0.012353065423667431, 0.005601660348474979, -0.021029623225331306, -0.00893725547939539, -0.030107254162430763, -0.01647075265645981, 0.011771508492529392, 0.012734085321426392, 0.011651186272501945, 0.000644642161205411, 0.017099101096391678, -0.00929153710603714, -0.0032436822075396776, -0.015280901454389095, -0.003126702504232526, -0.005611687432974577, 0.005511418916285038, -0.02326226606965065, 0.01854296587407589, 0.01790124922990799, 0.024946773424744606, 0.008108370006084442, -0.008429229259490967, 0.009077630937099457, 0.015347747132182121, 0.006453941576182842, -0.0062400358729064465, -0.021631233394145966, -0.024251580238342285, 0.0049799964763224125, 0.009458650834858418, 0.03256717324256897, -0.011811615899205208, 0.0345725379884243, 0.009298221208155155, 0.012239427305758, 0.00865650363266468, -0.01586914248764515, 0.0039839972741901875, 0.008034840226173401, 0.005167163908481598, -0.018235476687550545, -0.018730133771896362, 0.009812932461500168, -0.01491993572562933, 0.0003962690243497491, 0.0004453587462194264, 0.009705979377031326, 0.01062844879925251, -0.008034840226173401, -0.02858317457139492, -0.024117888882756233, 0.016216740012168884, 0.01724616251885891, 0.005330935586243868, -0.012994782999157906, -0.016484122723340988, -0.01850285939872265, 0.002205904573202133, -0.016858458518981934, 0.009111054241657257, -0.011885145679116249, 0.01429158728569746, -0.016243478283286095, 0.001313515822403133, 0.0032988297753036022, -0.009278167970478535, 0.023462802171707153, 0.020040307193994522, -0.0226873941719532, -0.02124352939426899, -0.012500124983489513, 0.0039806547574698925, 0.025775659829378128, 0.005347647238522768, -0.002814199309796095, -0.0023395956959575415, 0.002934521296992898, -0.0049632852897048, -0.031069830060005188, -0.02585587464272976, -0.03163133189082146, 0.002048817230388522, -0.0032386688981205225, 0.01923816092312336, -0.0018198711331933737, -0.02855643630027771, 0.008669872768223286, -0.042112722992897034, 0.0055849491618573666, -0.015053627081215382, -0.03505382686853409, -0.010073630139231682, 0.030722232535481453, -0.026297055184841156, 0.008857040666043758, 0.01596272736787796, -0.022219473496079445, 0.01322205737233162, -0.02651096135377884, 0.006320250686258078, -0.005060211289674044, -0.007827618159353733, 0.007747403811663389, 0.0015332706971094012, 0.02459917776286602, -0.007854356430470943, -0.016203371807932854, 0.03125699609518051, -0.026123257353901863, 0.03256717324256897, 0.028957510367035866, -0.0009124422795139253, 0.012279534712433815, 0.01128353551030159, 0.036176834255456924, 0.014010835438966751, -0.015254163183271885, 0.010113737545907497, -0.0347062312066555, 0.0006337797385640442, 0.009131107479333878, -0.005721982568502426, 0.004665822256356478, 0.012841037474572659, -0.03475970774888992, -0.02844948321580887, 0.006851673126220703, 0.010133791714906693, 0.013288903050124645, 0.0032637359108775854, -0.011417226865887642, -0.019131207838654518, -0.007727350108325481, -0.015026888810098171, 0.003009722800925374, -0.026778344064950943, 0.010735401883721352, -0.0016026230296120048, 0.014732767827808857, 0.017366483807563782, -0.029385320842266083, -0.009204638190567493, -0.03866348788142204, 0.011370434425771236, 0.01727290078997612, 0.014345063827931881, 0.009472019970417023, 0.009465335868299007, 0.007780826650559902, -0.03262064978480339, -0.004993365611881018, 0.03048158995807171, -0.005257405806332827, 0.0026186760514974594, -0.01604294218122959, 0.006871726829558611, 0.01500015053898096, 0.006230008788406849, 0.008649819530546665, 0.021350480616092682, -0.004739352501928806, -0.003843621350824833, 0.024438748136162758, -0.0020220791921019554, -0.015013519674539566, -0.025428062304854393, 0.003399098291993141, 0.0029395348392426968, 0.017486806958913803, 0.014131157658994198, -0.002266065450385213, 0.0013878815807402134, 0.030187468975782394, 0.016992149874567986, 0.005571580026298761, -0.006186559330672026, -0.01993335410952568, 0.0009207979892380536, 0.011470703408122063, -0.009077630937099457, 0.016123156994581223, -0.012847722508013248, 0.017500175163149834, 0.027460169047117233, -0.013589708134531975, -0.010193952359259129, 0.010548233985900879, -0.0012132474221289158, -0.011978729628026485, 0.030989615246653557, 0.019706079736351967, 0.025120573118329048, -0.029037725180387497, -0.01060839556157589, -0.044118087738752365, 0.0022443407215178013, 0.006751404609531164, -0.014385171234607697, 0.019572388380765915, -0.003907124511897564, 0.0226205475628376, -0.034732967615127563, -0.024906666949391365, -0.022272950038313866, -0.0007010431145317852, 0.030187468975782394, -0.022179367020726204, -0.0152942705899477, -0.01926489919424057, -0.017486806958913803, -0.0036531114019453526, -0.006266774144023657, 0.026684759184718132, 0.0036999033764004707, 0.019572388380765915, -0.019037624821066856, -0.018756872043013573, -0.002302830573171377, -0.027620598673820496, 0.051364149898290634, 0.010922569781541824, 0.037513744086027145, 0.024251580238342285, 0.015722082927823067, 0.0010712005896493793, 0.0017129182815551758, 0.002092266920953989, 0.01489319745451212, 0.03636400029063225, 0.014772875234484673, -0.00044494096073322, -0.020428013056516647, -0.011443965137004852, 0.005180533044040203, -0.016337061300873756, -0.03433189541101456, -0.0010060261702165008, 0.005083607044070959, -0.021403957158327103, -0.02520078793168068, 0.015200687572360039, -0.02258044108748436, 0.004348305519670248, -0.01993335410952568, 0.020762240514159203, -0.010548233985900879, 0.0026287029031664133, -0.03387734666466713, 0.02381039969623089, 0.01500015053898096, 0.020936038345098495, 0.007713980972766876, 0.003247024491429329, -0.013389172032475471, -0.007085632532835007, -0.0299468245357275, 0.01930500566959381, 0.007593659218400717, 0.040962979197502136, -0.01489319745451212, -0.0011597709963098168, 0.041417527943849564, 0.0007344658952206373, -0.014091050252318382, -0.002693877322599292, -0.004398440010845661, 0.028101885691285133, -0.027513645589351654, -0.003770091338083148, 0.007159162778407335, -0.00696531031280756, 0.00429148692637682, -0.016176633536815643, -0.011804930865764618, 0.0013101735385134816, -0.021724816411733627, 0.0011890159221366048, 0.031524378806352615, 0.04377049207687378, -0.029519012197852135, -0.006768115796148777, -0.006223324220627546, 0.0044251782819628716, 0.01024742890149355, -0.0029846555553376675, 0.006397122982889414, -0.011978729628026485, -0.004742694552987814, -0.003529447130858898, 0.025641968473792076, 0.02533447928726673, -0.00513708358630538, 0.0031902058981359005, 0.008750087581574917, 0.03406451269984245, -0.022045675665140152, 0.030882662162184715, -0.01256697066128254, 0.01231964211910963, -0.00581890856847167, 0.01716594770550728, -0.010260798037052155, -0.0089639937505126, 0.01661781407892704, -0.02387724444270134, -0.013917251490056515, -0.010113737545907497, -0.0010670226765796542, 0.03379712998867035, -0.025655336678028107, 0.01557502243667841, 0.007099001668393612, 0.012673923745751381, 0.0009249758441001177, -0.0011230058735236526, -0.017647236585617065, 0.013288903050124645, -0.009659187868237495, 0.03235326707363129, 0.006213297601789236, -0.020080415531992912, 0.015093734487891197, 0.0019602468237280846, 0.00926479883491993, -0.0018817033851519227, 0.004595634527504444, -0.01803494058549404, -0.0007846000953577459, 0.002242669463157654, -0.007600343786180019, 0.006647794041782618, -0.014853090047836304, -0.01996009238064289, -0.008643134497106075, 0.020374536514282227, 0.002033777069300413, 0.009104369208216667, -0.010788878425955772, 0.018917301669716835, 0.022032305598258972, 0.008148477412760258, -0.016323693096637726, -0.021083099767565727, 0.015347747132182121, 0.008676557801663876, -0.011450649239122868, -0.02060181088745594, 0.00274066929705441, 0.04804861173033714, 0.007513444405049086, -0.013716715388000011, -0.034813184291124344, 0.003760064486414194, -0.009204638190567493, -0.026243578642606735, -0.03770091384649277, 0.01494667399674654, 0.04000040143728256, 0.006738035473972559, -0.02661791443824768, 0.02513394132256508, -0.011477387510240078, 0.020775608718395233, -0.04296834394335747, 0.00628348533064127, 0.029679441824555397, 0.04596302658319473, 0.002322884276509285, -0.005120372399687767, -0.003823567647486925, -0.02927836775779724, 0.0006204106612131, -0.03903782367706299, 0.024345163255929947, 0.006119713652879, -0.03270086273550987, -0.020869193598628044, -0.038770440965890884, -0.02133711241185665, 0.00273231347091496, 0.003960601054131985, 0.006323592737317085, -0.019144577905535698, -0.003083252813667059, 0.004969969391822815, 0.010996099561452866, -0.020107153803110123, -0.010869093239307404, -0.003736668499186635, -0.00994662381708622, 0.01292125228792429, 0.020361166447401047, -0.042941607534885406, -0.0035528431180864573, -0.005528130102902651, 0.05593638867139816, 0.0046858759596943855, 0.003245353465899825, 0.025080464780330658, 0.0011547575704753399, 0.006891780532896519, -0.018422644585371017, 0.011270166374742985, -0.009532181546092033, -0.000980959041044116, 0.01289451401680708, 0.01062844879925251, -0.01431832555681467, 0.002817541593685746, 0.028877295553684235, -0.016363799571990967, 0.01032095868140459, -0.006196586415171623, -0.005073580425232649, -0.024091150611639023, 0.004612345714122057, 0.010494757443666458, -0.009391805157065392, 0.020748870447278023, 0.014144526794552803, 0.0016510860295966268, 0.008435913361608982, -0.02314194291830063, -0.01497341226786375, -0.003606319660320878, 0.024264948442578316, 0.008763456717133522, 0.006577605847269297, -0.005280801560729742, 0.011250113137066364, 0.010227375663816929, -0.03919825330376625, -0.008415860123932362, 0.2133711278438568, 0.013054943643510342, 0.00038686886546202004, 0.019799664616584778, -0.011029521934688091, 0.025000249966979027, 0.0028593200258910656, -0.016484122723340988, -0.008709980174899101, -0.005374385509639978, -0.03526773303747177, 0.026149995625019073, -0.008977362886071205, 0.005350989289581776, -0.00062500627245754, -0.009986731223762035, -0.019559020176529884, -0.019505543634295464, -0.030240945518016815, 0.0006876739789731801, 0.007306222803890705, -0.0006555045838467777, -0.04176512360572815, -7.702909670115332e-07, 0.04229988902807236, 0.011236744001507759, -0.006223324220627546, 0.001110472367145121, 0.013108420185744762, -0.00830222200602293, -0.020695393905043602, -0.0031233602203428745, -0.008054893463850021, 0.03240674361586571, -0.010441280901432037, 0.008482705801725388, 0.038262415677309036, -0.001539119752123952, 0.01850285939872265, -0.014719398692250252, 0.004461943171918392, -0.01728626899421215, -0.030160730704665184, -0.026337161660194397, 0.012881144881248474, 0.005264090374112129, -0.005066895857453346, -0.02844948321580887, -0.018422644585371017, 0.022045675665140152, -0.050749171525239944, -0.01866328902542591, 0.009492074139416218, 0.015040257945656776, -0.016911935061216354, -0.0038369367830455303, -0.0008815262117423117, 0.013556285761296749, 0.025040358304977417, 0.03967954218387604, -0.031604595482349396, 0.022433379665017128, -0.006701270584017038, 0.030107254162430763, -0.029519012197852135, -0.001586747239343822, -0.013195319101214409, -0.007780826650559902, -0.010915884748101234, -0.0005247378721833229, 0.0035528431180864573, -0.0042747752740979195, 0.008168530650436878, 0.005658479407429695, -0.016417276114225388, -0.012279534712433815, 0.0010712005896493793, 0.02860991284251213, -0.002297817263752222, 0.03000030107796192, -0.0008435077616013587, -0.015454700216650963, -0.018061678856611252, 0.0005385247641243041, -0.037540484219789505, -0.030829185619950294, 0.008435913361608982, -0.005738693755120039, -0.0010185596765950322, -0.008355698548257351, -0.03125699609518051, 0.0023045018315315247, -0.00862976536154747, -0.0009207979892380536, 0.001087076379917562, 0.008850356563925743, -0.02050822786986828, 0.005889096297323704, -0.015829036012291908, -0.016390537843108177, -0.03123025968670845, 0.05459947884082794, 0.015347747132182121, 0.018837086856365204, 0.020387904718518257, -0.029358582571148872, -0.005798854865133762, 0.016831720247864723, -0.004886412527412176, -0.03534794971346855, 0.016176633536815643, -0.013382486999034882, 0.002573555102571845, -0.008857040666043758, 0.007613712921738625, -0.014077681116759777, -0.023730184882879257, -0.01593598909676075, 0.004411809146404266, -0.006016103085130453, -0.00830890703946352, -0.014692660421133041, -0.014211372472345829, -0.0007745733018964529, -0.0018917302368208766, 0.005561552941799164, -0.033583223819732666, 0.0028058437164872885, -0.009659187868237495, -0.0051103453151881695, 0.024826452136039734, -0.030802447348833084, 0.010267483070492744, -0.00462905690073967, -0.00644725700840354, -0.014345063827931881, -0.023609861731529236, -0.016190001741051674, -0.012072313576936722, -0.006006076466292143, -0.011169898323714733, 0.02187187783420086, -0.023449432104825974, -0.008830302394926548, -0.00865650363266468, 0.0017613812815397978, 0.015120472759008408, -0.009752771817147732, -0.005153794772922993, -0.008181899785995483, -0.02260717935860157, -0.010133791714906693, 1.3721623872697819e-05, -0.031658072024583817, 0.001371170161291957, -0.038716964423656464, 0.015401223674416542, -0.015668606385588646, 0.026043042540550232, 0.0035194202791899443, -0.04299508407711983, 0.00901747029274702, 0.020869193598628044, -0.009632449597120285, -0.03780786693096161, -0.02863665111362934, -0.16845089197158813, 0.0005790499271824956, -0.002884387271478772, -0.010173899121582508, 0.034224942326545715, 0.00792788714170456, 0.026270316913723946, -0.0019468778045848012, -0.01390388235449791, -0.00647399527952075, -0.012065628543496132, -0.020815717056393623, -0.00994662381708622, -0.012907883152365685, -0.01917131431400776, 0.0030130650848150253, -0.002822555135935545, 0.023449432104825974, 0.03144416585564613, 0.027620598673820496, 0.05157805606722832, -0.003693218808621168, 0.01919805258512497, 0.00579217029735446, -0.010595026426017284, 0.004742694552987814, -0.01921142265200615, -0.017446698620915413, -0.0023312398698180914, -0.031069830060005188, -0.0036430845502763987, 0.02778102643787861, 0.003058185800909996, -0.02465265430510044, -0.0031801790464669466, 0.0138771440833807, 0.004348305519670248, -0.032112620770931244, -0.02584250457584858, -0.014144526794552803, 0.013415910303592682, 0.027620598673820496, -0.01795472577214241, -0.009879778139293194, 0.00040274468483403325, 0.0204948578029871, 0.005588291212916374, -0.013556285761296749, 0.0010018482571467757, -0.006417176686227322, 0.04320899024605751, -0.016270216554403305, 0.00035887726699002087, -0.01724616251885891, 0.009933254681527615, -0.015147211030125618, -0.009385121054947376, 0.029679441824555397, -0.011544233188033104, -0.010234059765934944, 0.0064004650339484215, -0.02386387623846531, 0.004428520333021879, 0.03254043310880661, -0.005755405407398939, 0.0030464876908808947, -0.016163263469934464, 0.016323693096637726, -0.033556487411260605, 0.011383803561329842, 0.004615687765181065, -0.014960043132305145, 0.014599076472222805, -0.009371751919388771, -0.0068115657195448875, 0.02997356280684471, 0.011951991356909275, -0.011958676390349865, -0.008262114599347115, -0.007058894261717796, -0.017513545230031013, 0.016430646181106567, 0.0002117125113727525, -0.010661871172487736, 0.01862318068742752, 0.004779459908604622, 0.009632449597120285, 0.02922489121556282, -0.011223374865949154, -0.013770191930234432, 0.028877295553684235, -0.016136525198817253, -0.017058994621038437, 0.0021190051920711994, 0.01500015053898096, 0.02644411474466324, 0.014278218150138855, -0.02720615454018116, 0.018810348585247993, -0.026791712269186974, 0.006427203305065632, 0.008228692226111889, -0.038716964423656464, -0.0016803310718387365, 0.030321160331368446, 0.007386437617242336, -0.028075147420167923, 0.019358482211828232, 0.05518772080540657, -0.011330327950417995, -0.04251379519701004, -0.004351648036390543, 0.019478805363178253, 0.016457384452223778, 0.002112320624291897, 0.020387904718518257, -0.004304856061935425, -0.01128353551030159, 0.011143160052597523, -0.004184533841907978, 0.03639074042439461, 0.01199878379702568, -0.0062734587118029594, 0.02259380929172039, -0.010033522732555866, 0.020173998549580574, -0.10636470466852188, -0.05556205287575722, -0.0033589908853173256, 0.0012625460512936115, 0.019799664616584778, 0.007159162778407335, -0.014625814743340015, 0.021390588954091072, 0.029706180095672607, 0.043529849499464035, -0.01262044720351696, -0.010140475817024708, -0.0018583073979243636, 0.009492074139416218, -0.013943989761173725, -0.0033740310464054346, -0.03441210836172104, -0.006353673525154591, -0.025053726509213448, 0.026256946846842766, 0.035561852157115936, -0.01596272736787796, 0.00016805398627184331, -0.011544233188033104, -0.009873094037175179, 0.017406592145562172, -0.02659117616713047, 0.011457334272563457, -0.007560236379504204, 0.02402430586516857, 0.008342329412698746, 0.0019117838237434626, 0.023008251562714577, -0.021417327225208282, 0.010240744799375534, 0.007593659218400717, -0.017406592145562172, -0.02581576630473137, 0.015668606385588646, -0.012734085321426392, -0.0016184988198801875, 0.008703296072781086, 0.0022192734759300947, 0.0013277205871418118, 0.0057487208396196365, 0.005220640450716019, -0.029331844300031662, 0.003756722202524543, -0.008228692226111889, -0.017767557874321938, -0.05556205287575722, -0.020401274785399437, -0.03475970774888992, -0.018783610314130783, 0.020414642989635468, -0.0172194242477417, -0.012466702610254288, -0.00827548373490572, -0.010528180748224258, 0.005294170696288347, -0.02652432955801487, 0.012513494119048119, 0.007961309514939785, 0.012279534712433815, 0.006413834169507027, 0.02129700407385826, -0.03061527945101261, -0.01732637733221054, 0.029599227011203766, -0.023034989833831787, -0.0192782673984766, 0.04529457166790962, -0.02184513956308365, 0.01672476716339588, -0.00714579364284873, 0.024144627153873444, 0.00011823313980130479, 0.013375802896916866, 0.0011505797738209367, -0.002765736309811473, -0.01661781407892704, -0.022165996953845024, -0.0005122043075971305, 0.0004938218044117093, 0.02847622148692608, 0.007767457515001297, 0.020347798243165016, 0.00564511027187109, 0.016430646181106567, -0.0022376561537384987, 0.001481465413235128, 0.020214106887578964, 0.02847622148692608, -0.0252542644739151, -0.005862358026206493, -0.02066865563392639, 0.015053627081215382, -0.0014965056907385588, 0.0034258365631103516, 0.0005777965416200459, -0.03267412260174751, -9.515052079223096e-05, -0.027339845895767212, 0.004609003663063049, -0.02181840129196644, -0.008516128174960613, -0.004799513146281242, -0.006193243898451328, 0.003150098491460085, -0.008041524328291416, 0.004201245494186878, 0.004334936384111643, -0.033476270735263824, 0.013796930201351643, -0.010160529986023903, -0.028850557282567024, 0.0006141438498161733, -0.0285296980291605, 0.014024204574525356, -0.013522862456738949, 0.017433330416679382, 0.010788878425955772, -0.003927178215235472, 0.006865042261779308, 0.021537648513913155, -0.018743503838777542, -0.008676557801663876, 0.00512705696746707, -0.021657971665263176, 0.005825593136250973, -0.0023629916831851006, -0.028262315317988396, 0.015454700216650963, -0.0054880231618881226, 0.009351697750389576, 0.002299488289281726, -0.0006546690128743649, 0.011096367612481117, 0.01852959766983986, 0.01735311560332775, 0.03467949107289314, 0.008021471090614796, -0.026350531727075577, -0.01164450217038393, 0.009405174292623997, -0.03131047263741493, 0.024746237322688103, -0.031417425721883774, -0.013756822794675827, -0.0011530864285305142, -0.006851673126220703, 0.020722132176160812, 0.037487007677555084, 0.007941256277263165, -0.01032764371484518, -0.018395906314253807, 0.028690127655863762, -0.028155362233519554, 0.03451906144618988, -0.03839610517024994, -0.016978779807686806, -0.012526863254606724, 0.02386387623846531, 0.012580339796841145, 0.02181840129196644, -0.014545599929988384, 0.0023730185348540545, -0.025641968473792076, -0.031658072024583817, -0.0071725319139659405, 0.012125790119171143, -0.01161107886582613, -0.019518911838531494, -0.018155261874198914, -0.0001787075016181916, 0.016911935061216354, 0.04363680258393288, 0.006286827847361565, -0.024946773424744606, 0.015040257945656776, -0.0025468170642852783, 0.010447965934872627, 0.048075348138809204, -0.007052209693938494, 0.0028008301742374897, 0.014652553014457226, 0.022406641393899918, -0.004996707662940025, -0.0036096619442105293, -0.02997356280684471, -0.008295537903904915, 0.006998733151704073, -0.009525496512651443, -0.0022827768698334694, -0.040134090930223465, 0.0019602468237280846, 0.022727500647306442, 0.02066865563392639, -0.013756822794675827, 0.0074332295916974545, -0.019665973260998726, 0.012426595203578472, -0.003140071639791131, 0.004515419714152813, -0.011597709730267525, -0.0185697041451931, -0.03208588436245918, 0.004542157985270023, 0.004548842553049326, -0.03665812313556671, -0.00795462541282177, 0.03518752008676529, -0.0015984451165422797, 0.025601860135793686, 0.019064363092184067, -0.0001746341004036367, -0.029706180095672607, 0.009184584021568298, -0.00032252995879389346, -0.004538815468549728, -0.009137792512774467, 0.015494807623326778, 0.016898564994335175, 0.020762240514159203, 0.03743353113532066, -0.01800820231437683, 0.03962606564164162, 0.018248846754431725, 0.020708763971924782, -0.012861091643571854, -0.0029980246908962727, -0.009411859326064587, -0.012460017576813698, -0.005040157586336136, -0.032139360904693604, -0.01064850203692913, 0.002102293772622943, -0.020280951634049416, 0.02254033274948597, 0.007099001668393612, -0.005120372399687767, 0.06160489469766617, 0.007132424507290125, -0.0020521595142781734, 0.005668506026268005, -0.001365321222692728, 0.005885754246264696, 0.01672476716339588, -0.006123056169599295, -0.0005356002948246896, -0.01848948933184147, 0.005735351704061031, 0.0028576490003615618, -0.010788878425955772, -0.048235777765512466, -0.01937185227870941, -0.011423910968005657, -0.02250022627413273, 0.013422594405710697, -0.04299508407711983, 0.014799613505601883, 0.01922479085624218, -0.002932850271463394, 0.016484122723340988, -0.013703346252441406, -0.015829036012291908, 0.011804930865764618, 0.01588251255452633, 0.012607078067958355, -0.01194530725479126, -0.03363670036196709, 0.015775559470057487, 0.007045525126159191, -0.01592261902987957, -0.025682074949145317, 0.0003528193919919431, 0.0056517948396503925, -0.008763456717133522, 9.28527006180957e-05, 0.008135108277201653, 0.0012709017610177398, 0.005277459509670734, -0.007901148870587349, -0.028101885691285133, -0.03919825330376625, -0.03115004487335682, -0.0012174253351986408, -0.027647336944937706, -0.012640501372516155, -0.05657810717821121], "5948f425-654c-4cee-98e0-b64a0fb4bbe5": [0.018255110830068588, 0.015269197523593903, -0.011158259585499763, -0.027566632255911827, -0.021071210503578186, 0.0022182082757353783, -0.019939109683036804, -0.005363323260098696, -0.021297629922628403, -0.006559103727340698, 0.02428354322910309, 0.024552417919039726, -0.03237805888056755, 0.018269263207912445, -0.0023774097207933664, 0.007072086911648512, 0.009792664088308811, -0.003451135940849781, -0.014688996598124504, 0.006070885807275772, -0.0016061667120084167, 0.01705225557088852, -0.0007071202271617949, -0.02895345538854599, -0.016302239149808884, 0.0240146704018116, 0.02016552910208702, -0.01522674411535263, 1.680460809438955e-05, -0.014703148044645786, 0.024594871327280998, 0.0016176647040992975, -0.026859071105718613, 0.00344406021758914, -0.027227003127336502, 0.007358649279922247, -0.000525807321537286, -0.006905809510499239, 0.007514313329011202, -0.011292696930468082, 0.04981239512562752, 0.021127814427018166, -0.004804349038749933, 0.007945925928652287, -0.00038385263178497553, 0.02317974530160427, 0.0178871788084507, -0.02541564404964447, 0.0052996426820755005, 0.0033856863155961037, 0.03319882974028587, 0.05083128809928894, -0.018538136035203934, -0.015990911051630974, -0.02027874067425728, 0.000268652627710253, 0.0003683746908791363, 0.011398831382393837, 0.0018626581877470016, -0.00784686766564846, 0.014045114628970623, -0.007705355063080788, -0.021453293040394783, -0.012233754619956017, -0.005798474419862032, -0.005890457425266504, 0.0061487178318202496, 0.024495812132954597, -0.012573384679853916, -0.0003993305435869843, 0.02661849930882454, 0.023830702528357506, -0.017646607011556625, 0.0063539110124111176, 0.03181200847029686, -0.013238493353128433, -0.006884582806378603, 0.007882245816290379, -0.02531658485531807, -0.007316195871680975, 0.013924828730523586, -0.004981239791959524, -0.012311586178839207, 0.005059071350842714, 0.010896462015807629, -0.020462706685066223, 0.005522524937987328, 0.02292502298951149, -0.025981692597270012, -0.027212852612137794, -0.0020324732176959515, 0.021340083330869675, 0.029236480593681335, 0.02204764634370804, -0.009325672872364521, 0.0270288847386837, 0.0009569782414473593, 0.03534981980919838, -0.009870496578514576, -0.013705484569072723, 0.004103862214833498, 0.022528788074851036, -0.00219521252438426, -0.003120350418612361, -0.022571241483092308, -0.0013841690961271524, 0.00688812043517828, -0.010181823745369911, 0.010478999465703964, 0.0031345016323029995, -0.026844918727874756, 0.014844660647213459, 0.004998928867280483, -0.029689321294426918, 0.014844660647213459, -0.014144173823297024, -0.018637195229530334, -0.01975514367222786, -0.03956689313054085, 0.000704909092746675, 0.01991080678999424, 0.006428204942494631, 0.014377669431269169, 0.005939986556768417, 0.018255110830068588, -0.008894059807062149, 0.005158130079507828, -0.010231353342533112, -0.025925088673830032, -0.005264264531433582, 0.039906520396471024, 0.006399902515113354, -0.0026728170923888683, 0.02504771016538143, 0.013733787462115288, 0.006987179163843393, -0.040840502828359604, 0.006240700837224722, -0.015637129545211792, -0.02397221513092518, 0.019259849563241005, 0.01928815245628357, -0.01637299545109272, 0.00300183380022645, 0.003364459378644824, 0.00733034685254097, 0.0009852807270362973, -0.009353975765407085, -0.028967605903744698, 0.00015190480917226523, 0.0010542680975049734, -0.012191301211714745, 0.020307041704654694, 0.02344861999154091, 0.012063940055668354, -0.0026232877280563116, -0.014802206307649612, 0.0018679648637771606, 0.029604412615299225, -0.018877767026424408, 0.02100045420229435, 0.016514508053660393, -0.014405971392989159, -0.0014991479692980647, 0.010578058660030365, 0.03373657912015915, 0.04307640343904495, 0.002718808827921748, -0.02043440379202366, 0.013889450579881668, -0.012092242017388344, 0.007004868239164352, -0.01950042136013508, 0.02000986598432064, 0.011144108138978481, 0.004698214586824179, -0.01709470897912979, -0.00737987644970417, -0.037755534052848816, 0.006555566098541021, 0.003433446865528822, -0.010896462015807629, 0.021920284256339073, 0.027835506945848465, -0.027948716655373573, -0.02104290761053562, 0.002892161486670375, -0.00419584522023797, -0.01829756423830986, 0.014943718910217285, 0.008667640388011932, 0.00434089545160532, 0.01179506629705429, 0.007429405581206083, -0.6145038604736328, -0.024198636412620544, -0.026009995490312576, -0.012078090570867062, -0.006587406620383263, 0.007521389052271843, 0.015877701342105865, 0.01382577046751976, -0.04174618422985077, 0.03447244316339493, 0.031472377479076385, -0.00852612778544426, -0.003461749292910099, -0.03234975412487984, 0.01340830884873867, -0.010670041665434837, 0.0027984094340354204, -0.010825705714523792, -0.018311716616153717, 0.018424926325678825, -0.0061805578880012035, 0.022882569581270218, -0.02224576286971569, 0.016344692558050156, 0.002616212237626314, 0.014872962608933449, 0.017660759389400482, 0.02022213488817215, 0.03639701381325722, 0.037557415664196014, -0.012856409884989262, -0.013196039944887161, -0.0015654818853363395, 0.005635735113173723, 0.0581333301961422, -0.020731579512357712, -0.017165465280413628, -0.003880979958921671, 0.016401298344135284, 0.05388795584440231, -0.040670689195394516, -0.012771502137184143, 0.055076662451028824, 0.0020943847484886646, 0.016387145966291428, 0.005766633898019791, -0.0007915854803286493, 0.012021485716104507, -0.0005381896626204252, -0.007351574022322893, -0.010613436810672283, 0.006651087198406458, 0.0020713889971375465, -0.0016866519581526518, 0.03288750350475311, -0.0108893858268857, 0.03201012685894966, -0.005501298233866692, 0.009764362126588821, -0.020660823211073875, 0.00995540339499712, 0.013995585031807423, -0.014299836941063404, -0.006155793089419603, -0.014745601452887058, 0.0009030265500769019, -0.013210191391408443, 0.004316131118685007, 0.001954641193151474, 0.017689060419797897, 0.02537318877875805, 0.028727035969495773, -0.008122816681861877, 0.0010215432848781347, 0.008172346279025078, 0.035944171249866486, 0.02327880449593067, -0.012304510921239853, 0.01625978574156761, 0.011703083291649818, -0.004655760712921619, -0.007146380841732025, -0.014589937403798103, -0.007029633037745953, 0.028444010764360428, 0.008759623393416405, -0.0030089092906564474, 0.024665627628564835, 0.028444010764360428, 0.016443751752376556, -0.002080233534798026, 0.015538071282207966, -0.004047257360070944, -0.022429728880524635, 0.0018378935055807233, -0.0003710280579980463, -0.0059435246512293816, -0.019825899973511696, -0.004326744470745325, -0.03291580453515053, -0.009920025244355202, -0.020873092114925385, 0.007804413791745901, 0.006704154424369335, 0.008009606972336769, 0.015948457643389702, -0.018495682626962662, 0.012325737625360489, 0.028160985559225082, -0.027099641039967537, -0.016924893483519554, -0.024594871327280998, 0.003130963770672679, 0.01531165186315775, 0.02276935987174511, -0.023788249120116234, 0.026590196415781975, 0.014045114628970623, 0.0031645731069147587, -0.021453293040394783, 0.014214929193258286, 0.01928815245628357, -0.02422693744301796, -0.021071210503578186, 0.03175540268421173, 0.008462446741759777, 0.013089905492961407, -0.00789639726281166, -0.022217461839318275, 0.0074930861592292786, -0.006711229681968689, 0.008243102580308914, 0.012431872077286243, -0.008037909865379333, -0.011420058086514473, -0.031727101653814316, 0.008752547204494476, -0.012071015313267708, 0.007149918470531702, -0.01580694504082203, -0.015269197523593903, 0.00011271248513367027, 0.02432599663734436, -0.03144407644867897, -0.009509638883173466, -0.017292825505137444, -0.03234975412487984, 0.009658227674663067, -0.005798474419862032, 0.022061796858906746, 0.009346899576485157, 0.0012939547887071967, -0.036510221660137177, 0.020717428997159004, 0.010118142701685429, -0.005985978525131941, 0.021693864837288857, 0.0009923563338816166, -0.02395806461572647, -0.002334956079721451, -0.0019758681301027536, 0.029491202905774117, -0.02489204704761505, 0.00813696812838316, -0.008724245242774487, -0.011066276580095291, -0.017476793378591537, 0.04715196043252945, -0.022231612354516983, -0.043897174298763275, -0.0030690522398799658, 0.0017865952104330063, -0.005706490948796272, 0.005048457998782396, -0.019995715469121933, 0.019358908757567406, -0.02234482206404209, 0.00551191158592701, -0.00708270026370883, -0.018736254423856735, 0.01444842480123043, 0.005918759852647781, 0.002467624144628644, -0.02146744541823864, 0.004627458285540342, 0.013549820519983768, 0.020391950383782387, 0.009941252879798412, 5.337121547199786e-05, -0.011320998892188072, 0.010974293574690819, 0.022330671548843384, -0.026491137221455574, 0.0006173482397571206, 0.002893930533900857, 0.03608568385243416, 0.016231482848525047, 0.010769100859761238, 0.024835441261529922, 0.04890671744942665, 0.013146510347723961, -0.012056863866746426, 0.009736059233546257, -0.03263277933001518, -0.012262057512998581, -0.04191599786281586, 0.025458097457885742, 0.005430541932582855, 0.03144407644867897, 0.01063466351479292, 0.010740797966718674, -0.010280882008373737, -0.023519376292824745, -0.029434597119688988, 0.005678188521414995, 0.034019604325294495, -0.004655760712921619, 0.012467250227928162, 0.004323206376284361, 0.010747873224318027, 0.011462511494755745, -0.0002022080880124122, 0.013606426306068897, 0.016656020656228065, 0.0033909929916262627, -0.003120350418612361, -0.005285491701215506, -0.022443881258368492, -0.02821759134531021, -0.04811424762010574, 0.009693605825304985, 0.003599724033847451, 0.013422459363937378, -0.0017919018864631653, 0.021807074546813965, 0.006583868525922298, 0.022741056978702545, -0.012311586178839207, 0.04089710861444473, -0.0076487502083182335, -0.03857630491256714, 0.01221252791583538, 0.02167971432209015, -0.03809516131877899, -0.02864212729036808, -0.002087309258058667, 0.04568023234605789, 0.028811942785978317, 0.006237163208425045, 0.0299440436065197, 0.0018520447192713618, 0.03087802603840828, -0.022882569581270218, 0.0044470299035310745, -0.0001642871502554044, 0.007535540033131838, 0.006700616329908371, -0.002467624144628644, 0.015538071282207966, 0.00456024007871747, -0.0033166990615427494, 0.014731450006365776, 0.02078818529844284, 0.014335215091705322, 0.006424666848033667, -0.0035891104489564896, -0.0223589725792408, -0.06328438222408295, -0.019684387370944023, 0.00470529031008482, -0.026943977922201157, -0.019415514543652534, -0.013549820519983768, 0.000662013131659478, 0.009962479583919048, 0.010259655304253101, 0.00750016188248992, 0.016670171171426773, 0.018792858347296715, -0.005395163781940937, -0.008243102580308914, -0.022387275472283363, 0.014575786888599396, 0.025797726586461067, -0.0004594733763951808, 0.004401038400828838, -0.01292008999735117, 0.013500291854143143, 0.018325867131352425, 0.00669354060664773, -0.016797533258795738, 0.007861019112169743, 0.006467120721936226, -0.008957740850746632, -0.0067678350023925304, -0.027693994343280792, 0.024835441261529922, -0.007316195871680975, -0.0027807203587144613, 0.009785588830709457, 0.010960142128169537, 0.008172346279025078, -0.03764232248067856, 0.007613372057676315, 0.03113274835050106, -0.007450632750988007, 0.016500355675816536, 0.0037253163754940033, 0.001949334517121315, -0.016415448859333992, 0.005193508230149746, -0.01029503345489502, -0.03223654627799988, -0.003472362644970417, 0.03237805888056755, -0.005745407193899155, 0.013500291854143143, -0.02199104055762291, 0.03430262580513954, 0.016599414870142937, -0.005844465922564268, 0.019571177661418915, -0.006877507083117962, -0.007769035641103983, 0.03970840573310852, 0.0278072040528059, -0.018849464133381844, 0.012056863866746426, -0.01453333254903555, 0.010387016460299492, 0.005777247250080109, -0.011158259585499763, 0.02375994622707367, -0.016769230365753174, -0.00610626395791769, 0.0030743589159101248, 0.012042713351547718, -0.024552417919039726, 0.007323271129280329, 0.0042418367229402065, 0.005625121295452118, 0.0018856539390981197, 0.005423466209322214, -0.01808529533445835, 0.01725037209689617, -0.0009295601630583405, 0.021920284256339073, 4.154165435465984e-05, -0.021283479407429695, -0.007740733213722706, 0.015736188739538193, 0.015382407233119011, -0.024000518023967743, -0.013245568610727787, -0.005794936325401068, 0.021920284256339073, 0.024962803348898888, 0.03186861425638199, -0.016019213944673538, 0.046868935227394104, 0.029094967991113663, 0.015410710126161575, 0.018184354528784752, -0.01600506342947483, 0.01746264100074768, 0.031896915286779404, 0.02006647177040577, -0.015976760536432266, -0.015637129545211792, -0.006994254887104034, -0.022118402644991875, 0.02605244889855385, -0.008441220037639141, -0.005037844646722078, 0.010620512068271637, -0.017604153603315353, -0.02708549052476883, -0.01086108386516571, 0.01213469635695219, 0.01699564978480339, 0.007178220897912979, -0.022755207493901253, -0.018226807937026024, -0.03744420409202576, -0.020236285403370857, -0.016868289560079575, 0.03384978696703911, 0.015170139260590076, 0.005855079274624586, 0.0006071770330891013, -0.008462446741759777, 0.021396689116954803, -0.02745342254638672, -0.022755207493901253, 0.0174060370773077, -0.03769892826676369, -0.05615215748548508, -0.018736254423856735, 0.0109389154240489, 0.02364673651754856, -0.0034069132525473833, 0.001961716916412115, -0.0009914719266816974, 0.008455371484160423, -0.014547483995556831, -0.046274583786726, -0.002432245993986726, -0.025175072252750397, -0.021170267835259438, 0.02218915894627571, 0.01715131290256977, 0.029859134927392006, -0.010443621315062046, 0.01590600423514843, 0.017448490485548973, 0.004259525798261166, -0.004984777420759201, -0.03747250884771347, -0.003451135940849781, 0.0373309962451458, 0.009658227674663067, 0.03515170142054558, 0.018934370949864388, -0.01621733047068119, 0.008448295295238495, -0.0017423725221306086, -0.015863550826907158, -0.01616072654724121, -0.0004904292291030288, -0.0031291949562728405, 0.0005704722134396434, 0.0026515903882682323, -0.02271275408565998, -0.03192521631717682, 0.026264717802405357, -0.01742018759250641, 0.010408244095742702, 0.026264717802405357, 0.018212657421827316, 0.017759816721081734, 0.007394027430564165, 0.013415384106338024, 0.004588542506098747, -0.031019538640975952, 0.012863485142588615, -0.06226549670100212, 0.0005090027116239071, 0.03934047371149063, -0.004691138863563538, 0.0028673969209194183, -0.016132423654198647, -0.025429794564843178, -0.00497770169749856, 0.007542615756392479, 0.018679648637771606, 0.03430262580513954, -0.01013937033712864, -0.02552885375916958, -0.014547483995556831, 0.00265866587869823, -0.019358908757567406, -0.0009923563338816166, -0.01918909326195717, 0.0032070267479866743, 0.00642112921923399, 0.002842632122337818, 0.0034281399566680193, -0.021906133741140366, -0.004450567997992039, -0.029123270884156227, -0.0006067348294891417, 0.004355046898126602, 0.002932846313342452, 0.022415578365325928, 0.013578123413026333, 0.014957870356738567, -0.00987757183611393, 0.0046416097320616245, 0.014901265501976013, -0.029349690303206444, 2.700345794437453e-05, -0.009389353916049004, 0.030679907649755478, 0.011922427453100681, 0.02823174186050892, -0.0015371794579550624, 0.04621797800064087, 0.02521752566099167, -0.016358843073248863, 0.011384679935872555, 0.0029186950996518135, -0.010698344558477402, -0.014016811735928059, 0.001745025860145688, 0.020292891189455986, -0.0059364489279687405, 0.006028431933373213, -0.010662966407835484, 0.004485946148633957, 0.038689516484737396, -0.0020766956731677055, 0.004952937364578247, 0.0028780102729797363, -0.017915481701493263, -0.014957870356738567, 0.008922362700104713, -0.008717169053852558, 0.0066015576012432575, -0.018523985520005226, -0.013054527342319489, 0.010662966407835484, 0.0223589725792408, 0.004372735973447561, 0.017236221581697464, -0.00265866587869823, -0.02090139500796795, -0.006509574595838785, 0.04423680528998375, 0.0315006785094738, -0.013125283643603325, 0.010450697503983974, -0.02634962648153305, 0.020094772800803185, 0.012262057512998581, 0.00265866587869823, 0.03741590306162834, 0.006753683555871248, 0.0033980687148869038, -0.025288281962275505, -0.0003836315299849957, -0.012849333696067333, -0.026179810985922813, 0.026377927511930466, -0.037500809878110886, -0.011094579473137856, -0.019373059272766113, -0.021028755232691765, -0.010026159696280956, -0.004401038400828838, 0.03515170142054558, 0.00979974027723074, 0.024821290746331215, -0.024467509239912033, -0.02494865283370018, 0.008299707435071468, -0.018750404939055443, 0.04214242100715637, -0.010181823745369911, 0.019627781584858894, 0.007372800726443529, -0.0017264523776248097, -0.01579279452562332, -0.0070119439624249935, 0.016415448859333992, 0.008469522930681705, 0.028344951570034027, -0.012177149765193462, -0.005893995054066181, 0.008724245242774487, -0.03280259668827057, -0.001574326422996819, -0.01042239461094141, -0.03133086487650871, 0.006491885520517826, 0.013075754046440125, -0.014462576247751713, -0.018014540895819664, 0.029406296089291573, -0.03087802603840828, 0.011901200748980045, -0.0027577246073633432, 0.016556961461901665, -0.02224576286971569, -0.008158194832503796, -0.019090034067630768, -0.00021525376359932125, 0.01110165473073721, 0.012962544336915016, 0.007528464309871197, 0.0001195117220049724, 0.002136838622391224, -0.023250501602888107, -0.02473638392984867, 0.017292825505137444, -0.0026445146650075912, 0.005816163495182991, -0.007358649279922247, 0.0019475655863061547, 0.031019538640975952, -0.007429405581206083, -0.03268938511610031, -0.01086108386516571, -0.018184354528784752, 0.028670430183410645, -0.0017149545019492507, -0.008710093796253204, -0.008611034601926804, -0.000252953585004434, -0.017943784594535828, -0.0032123334240168333, -0.010995520278811455, -0.006247776560485363, -0.00961577333509922, -0.013132358901202679, 0.02010892517864704, 0.01437059324234724, -0.010280882008373737, -0.00733034685254097, -0.017533397302031517, 0.0008083900902420282, 0.0048892563208937645, -0.01808529533445835, 0.024962803348898888, -0.03874611854553223, -0.002609136514365673, -0.021976890042424202, -0.005377474706619978, -0.0017574082594364882, 0.004121551290154457, -0.005175819154828787, 0.019896656274795532, 0.031840309500694275, -0.010818629525601864, 0.027623238041996956, -0.0036067995242774487, 0.0022093637380748987, -0.014087568037211895, 0.0063680619932711124, -0.002485313219949603, -0.001546023995615542, 0.013493215665221214, -0.006399902515113354, 0.0033060854766517878, -0.019825899973511696, -0.012523855082690716, 0.014186627231538296, -0.016047516837716103, -0.03198182210326195, 0.012361115776002407, 0.02006647177040577, 0.017505094408988953, 0.0008848952711559832, -0.022075949236750603, 0.026123205199837685, -0.013125283643603325, 0.012396493926644325, 0.026901524513959885, 0.018226807937026024, 0.0023208048660308123, -0.0012736123753711581, -0.020646672695875168, -0.00961577333509922, -0.0373309962451458, -0.03158558905124664, -0.006240700837224722, -0.000616906036157161, 0.0039022068958729506, 0.003376841777935624, -0.06441648304462433, 0.0052784159779548645, -0.012721972540020943, -0.0009445958421565592, 0.013089905492961407, -0.0105497557669878, 0.012821031734347343, 0.007079162169247866, -0.02156650274991989, 0.0046309963800013065, -0.03665173426270485, -0.0018113598925992846, -0.0015937844291329384, -0.0036138752475380898, -0.011002596467733383, 0.0030902789440006018, -0.03701966628432274, 0.03141577169299126, 0.0018856539390981197, 0.010754949413239956, -0.02578357607126236, -0.02329295501112938, -0.02428354322910309, -0.02951950579881668, -0.0025224601849913597, 0.0034705938305705786, 0.011901200748980045, 0.009219538420438766, -0.00936105102300644, 0.027679843828082085, -0.023830702528357506, 0.01631638966500759, -0.01705225557088852, 0.020406100898981094, 0.00789639726281166, 0.04086880758404732, -0.011688931845128536, -0.02792041376233101, -0.0027435733936727047, -0.04112352803349495, 0.013684257864952087, -0.0166277177631855, 0.01689659059047699, 0.02193443663418293, -0.010231353342533112, -0.002966455649584532, -0.005858616903424263, -0.024142030626535416, 0.02193443663418293, 0.001688420888967812, 0.008908211253583431, -0.00716053182259202, -0.004135702736675739, -0.006145179737359285, 0.0435575433075428, -0.0006531685939989984, -0.0002445512800477445, -0.004669912159442902, 0.001307221595197916, 0.0002923117426689714, 0.011427133344113827, 0.001648620469495654, 0.005646348465234041, -0.03566114604473114, 0.0031734176445752382, -0.016019213944673538, 0.007620447780936956, 0.01897682435810566, 0.010776176117360592, -0.013712559826672077, -0.033708274364471436, 0.014929567463696003, -0.04163297638297081, -0.011802141554653645, 0.01395313162356615, 0.015198441222310066, -0.011717233806848526, 0.0025206911377608776, 0.029434597119688988, 0.004991853144019842, 0.01026673149317503, -0.04330282285809517, 0.00017965452570933849, -0.0279062632471323, 0.03158558905124664, 0.012467250227928162, -0.02671755850315094, -0.004910483490675688, 0.008646412752568722, 0.018127750605344772, -0.005862154997885227, -0.01736358180642128, 0.00644589401781559, -0.006240700837224722, -0.0036510222125798464, -0.005646348465234041, -0.0048361895605921745, 0.01208516675978899, -0.004793735686689615, -0.0004594733763951808, -0.028160985559225082, 0.005932911299169064, 0.17683400213718414, 0.005066147074103355, 0.020094772800803185, 0.038689516484737396, -0.008151119574904442, 0.021906133741140366, 0.009318597614765167, -0.006654624827206135, -0.029236480593681335, 0.002892161486670375, -0.02743927203118801, 0.03087802603840828, -0.02833080105483532, 0.0024817753583192825, -0.0006912000826559961, 0.00805913656949997, 0.006849204655736685, -0.045142482966184616, -0.016358843073248863, 0.011575722135603428, 0.0015769797610118985, 0.002285426715388894, -0.007072086911648512, -0.0299440436065197, 0.024708081036806107, -0.009177085012197495, -0.011971957050263882, -0.0021810613106936216, 0.03249126672744751, -0.007585069630295038, -0.0174060370773077, 0.019429665058851242, -0.0010215432848781347, 0.005331483203917742, -0.0357743576169014, -0.006042583379894495, 0.02022213488817215, -0.009608698077499866, 0.03803855553269386, -0.016981499269604683, 0.012403570115566254, -0.024099577218294144, -0.03198182210326195, -0.0005841812235303223, 0.011809217743575573, 0.007761959917843342, -0.01808529533445835, -0.027665691450238228, -0.014455500990152359, 0.014929567463696003, -0.01783057302236557, 0.004252450540661812, 0.021608958020806313, 0.003700551576912403, -0.002950535388663411, -0.02957610972225666, -0.002938152989372611, -0.004103862214833498, 0.03181200847029686, 0.016019213944673538, 0.002619749866425991, 0.013960206881165504, -0.01340830884873867, 0.019104186445474625, -0.009184160269796848, 0.00907095056027174, -0.04194430261850357, -0.000965822720900178, -0.013104056939482689, -0.03056669794023037, -0.021665561944246292, -0.0001881673961179331, -0.0057489448226988316, -0.009092177264392376, -0.024934500455856323, -0.012962544336915016, 0.022571241483092308, 0.015990911051630974, 0.00010320462024537846, 0.037246085703372955, -0.03450074419379234, -0.02411372773349285, -0.008398766629397869, -0.00025405915221199393, -0.011448360048234463, -0.015990911051630974, 0.030396882444620132, -0.018014540895819664, -0.006102726329118013, 0.006520187947899103, -0.01102382317185402, -0.01107335276901722, -0.008533203043043613, 0.015212592668831348, 0.008328010328114033, 0.013712559826672077, -0.0164295993745327, 0.01107335276901722, -0.028613826259970665, -0.008851606398820877, -0.022698603570461273, 0.05015202611684799, 0.017038103193044662, 0.01073372270911932, 0.019882505759596825, -0.0027488800697028637, 0.02417033351957798, 0.005547289736568928, 0.011950729414820671, -0.028939304873347282, -0.011045049875974655, -0.0002962917787954211, -0.005540214013308287, -0.010641739703714848, 0.003665173426270485, -0.0018502757884562016, -0.003490051720291376, -0.005724180024117231, 0.0017715594731271267, 0.01101674698293209, -0.0030319050420075655, -0.015212592668831348, -0.016203179955482483, 0.005140441004186869, -0.013203115202486515, -0.014002661220729351, -0.036312103271484375, 0.003329081228002906, -0.012821031734347343, -0.000920715625397861, 0.02957610972225666, -0.04027445614337921, 0.0011604024330154061, -0.008066211827099323, 0.011002596467733383, -0.0023154981900006533, 0.0034405223559588194, -0.04211411625146866, -0.005200583953410387, -0.00914878211915493, -0.004482408054172993, 0.028599673882126808, -0.017193768173456192, -0.018382472917437553, 0.008228951133787632, -0.024962803348898888, -0.0030814344063401222, 0.001194011652842164, -0.0013885913649573922, -0.030906327068805695, -0.009028497152030468, -0.002778951544314623, 0.013082829304039478, -0.02901006117463112, 0.012269132770597935, -0.021693864837288857, -0.0010047387331724167, -0.002621518913656473, 0.018056994304060936, 0.0051050628535449505, -0.045142482966184616, 0.01372671127319336, 0.012877636589109898, -0.004309055395424366, -0.00834216084331274, -0.016755077987909317, -0.18113598227500916, 0.015722038224339485, -0.009898798540234566, -0.03478376939892769, 0.026745861396193504, 0.0013213729253038764, 0.03229314833879471, -0.0067961374297738075, 0.007188834715634584, -0.011943654157221317, -0.015481466427445412, 0.010287958197295666, -0.014957870356738567, -0.005734793841838837, -0.026887373998761177, 0.012849333696067333, -0.022316519170999527, 0.008144043385982513, 0.03934047371149063, 0.011724309995770454, 0.03676494583487511, -0.03198182210326195, 0.007294968701899052, 0.0018626581877470016, -0.00818649772554636, 0.004040181636810303, -0.012672443874180317, -0.005695877596735954, 0.0018343556439504027, -0.03803855553269386, 0.02308068796992302, 0.011894124560058117, 0.01242479681968689, -0.018000388517975807, 0.021651411429047585, -0.004606231581419706, -0.007790262345224619, -0.02603829838335514, -0.023788249120116234, -0.0025171535089612007, 0.00880915205925703, 0.04018954560160637, 0.004234761465340853, -0.0016742696752771735, 0.0011285621440038085, 0.046189676970243454, 0.023349560797214508, -0.0361705906689167, 0.01855228655040264, 0.0032547872979193926, 0.0451141819357872, -0.013040375895798206, 0.01546731498092413, -0.0014593475498259068, 0.029179874807596207, -0.021453293040394783, -0.032774291932582855, 0.00721006141975522, -0.01247432641685009, -0.0059435246512293816, 0.011080428026616573, -0.018439076840877533, -0.00015367372543551028, 0.0172079186886549, 0.0015407172031700611, -0.014186627231538296, -0.03297241032123566, -0.0025436871219426394, -0.05790691077709198, 0.004326744470745325, 0.008278480730950832, -0.0017069943714886904, 0.016556961461901665, -0.01140590663999319, 0.02395806461572647, 0.030085556209087372, -0.02189198136329651, -0.0024446281604468822, -0.006732456851750612, -0.01556637417525053, 0.002382716629654169, 0.0022182082757353783, 0.007486010901629925, -0.016415448859333992, 0.022542940452694893, -0.02521752566099167, 0.0029788378160446882, 0.0010551525047048926, -0.001517721451818943, -0.023575980216264725, 0.031047839671373367, -0.012389418669044971, -0.01102382317185402, -0.002801947295665741, 0.013924828730523586, 0.00669354060664773, 0.017137162387371063, -0.023943914100527763, 0.0074647837318480015, -0.017788119614124298, 0.0012408876791596413, -0.018495682626962662, -0.033962998539209366, -0.00048556472756899893, 0.02167971432209015, 0.015113533474504948, -0.032774291932582855, 0.0036297952756285667, 0.03769892826676369, 0.0286845825612545, -0.01907588355243206, -0.010903537273406982, 0.014717298559844494, 0.009078025817871094, 0.0016990343574434519, 0.021920284256339073, 0.004797273315489292, -0.021170267835259438, 0.013719636015594006, -0.00026776816230267286, 0.061416421085596085, -0.0108893858268857, -0.012495553120970726, 0.004754819441586733, 0.008745471946895123, -0.00553667638450861, -0.12373851984739304, -0.020858941599726677, -0.007804413791745901, 0.038689516484737396, 0.015113533474504948, 0.025429794564843178, -0.012806880287826061, 0.0076982793398201466, -0.01804284192621708, 0.03379318118095398, -0.007287893444299698, -0.013125283643603325, -0.007705355063080788, -0.003654560074210167, -0.04587835073471069, -0.0174060370773077, 0.0010471923742443323, -0.02286841906607151, 0.008533203043043613, 0.033396948128938675, 0.022373124957084656, 0.0006155793089419603, -0.007075624540448189, -0.003028367180377245, -0.008356312289834023, 0.004393962677568197, -0.040670689195394516, 0.006424666848033667, -0.006261927541345358, 0.0070119439624249935, -0.001972330268472433, -0.025981692597270012, 0.010507302358746529, -0.00808743853121996, 0.00914878211915493, -0.0054942225106060505, -0.009042647667229176, -0.017844725400209427, 0.03976501151919365, -0.019274001941084862, 0.01678338088095188, -0.012622914277017117, -0.018325867131352425, 0.012042713351547718, 0.016047516837716103, -0.002244741888716817, -0.027722297236323357, 0.01829756423830986, -0.004998928867280483, -0.022953325882554054, -0.023250501602888107, -0.02428354322910309, -0.01804284192621708, 0.013004997745156288, 0.005950600374490023, -0.02426939271390438, 0.019090034067630768, 0.006530801299959421, 0.013762089423835278, 0.01556637417525053, 0.012191301211714745, 0.00327424518764019, -0.014278610236942768, 0.02520337514579296, 0.023108989000320435, 0.008724245242774487, -0.016698474064469337, -0.013493215665221214, 0.017278674989938736, -0.018792858347296715, -0.0015787486918270588, 0.01845322921872139, -0.031896915286779404, 0.04808594286441803, -0.0041923075914382935, 0.004882181063294411, 0.0030867410823702812, 0.006792599335312843, -5.3896357712801546e-05, 0.00591168412938714, 0.0005390741280280054, -0.0278072040528059, 0.0037323918659240007, -0.0023314182180911303, 0.01964193396270275, 0.0074223303236067295, 0.009700681082904339, 0.013160661794245243, 0.02012307569384575, -0.010556831955909729, 0.014830509200692177, 0.009007270447909832, 0.028500614687800407, -0.004022492561489344, 0.01289178803563118, 0.016712624579668045, 0.012311586178839207, -0.02354767918586731, -0.014137097634375095, 0.008950664661824703, -0.02734021283686161, -0.017123011872172356, -0.061246607452631, 0.006831515580415726, -0.02136838622391224, -0.016981499269604683, -0.0005536676035262644, 0.014200778678059578, 0.00536686135455966, -0.019783446565270424, 0.005830314476042986, 0.010670041665434837, -0.030085556209087372, -0.0002022080880124122, -0.009962479583919048, -0.01522674411535263, -0.012403570115566254, -0.02006647177040577, 0.018184354528784752, -0.015170139260590076, 0.009233689866960049, 0.014773904345929623, -0.00019026796508114785, -0.006017818581312895, -0.014717298559844494, 0.008660564199090004, -0.02204764634370804, -0.011830444447696209, -0.00394819863140583, 0.014144173823297024, -0.024708081036806107, -0.020717428997159004, -0.01907588355243206, -0.0018113598925992846, -0.015085231512784958, 0.025741122663021088, -0.014398896135389805, 0.005476533435285091, 0.006994254887104034, 0.020646672695875168, 0.01845322921872139, 0.02251463755965233, 0.010111067444086075, -0.027410969138145447, 0.003990652039647102, -0.017448490485548973, -0.010641739703714848, -0.011858746409416199, -0.01907588355243206, 0.007599220611155033, 0.003643946722149849, 0.016656020656228065, 0.021976890042424202, 0.020236285403370857, -0.018637195229530334, -0.025613760575652122, 0.013946055434644222, -0.007521389052271843, 0.0006080614984966815, -0.008978967554867268, -0.010174748487770557, -0.01897682435810566, 0.0315006785094738, 0.016854137182235718, 0.012757350690662861, -0.018566438928246498, 0.007754884660243988, -0.01338708121329546, -0.021538201719522476, 0.021807074546813965, -9.518925799056888e-05, -0.00458500487729907, -0.025118466466665268, 0.0021209183614701033, 0.010075689293444157, 0.018113598227500916, 0.005324407480657101, 0.00654849037528038, -0.013839921914041042, 0.017222069203853607, 0.006881044711917639, 0.030764814466238022, 0.02739681862294674, 0.00011741114576580003, -0.007712430786341429, 0.017505094408988953, 0.02265615016222, 0.004503635223954916, -0.004712366033345461, -0.016387145966291428, 0.008787925355136395, 0.014087568037211895, 0.016019213944673538, 0.001005623140372336, -0.025189222767949104, -0.013153585605323315, 0.011009671725332737, 0.018071144819259644, -0.02090139500796795, -0.01029503345489502, -0.017038103193044662, 0.017222069203853607, 0.029094967991113663, -0.016132423654198647, 0.0011533268261700869, -0.00019977583724539727, -0.04630288854241371, 0.008872833102941513, 0.0001625182485440746, -0.04095371440052986, 0.011787990108132362, 0.03328373655676842, -0.0019652547780424356, 0.008271405473351479, 0.019627781584858894, 0.00699071679264307, -0.011596948839724064, 0.012198376469314098, -0.015608827583491802, -0.013500291854143143, -0.017547549679875374, 0.025514701381325722, -0.03274599090218544, -0.0007738964050076902, 0.033142223954200745, -0.012743200175464153, 0.015184289775788784, 0.016769230365753174, 0.022854266688227654, -0.012297435663640499, -0.0061911712400615215, -0.015071080066263676, -0.01771736331284046, -0.0014142404543235898, -0.012870561331510544, -0.03365166857838631, -0.01491541601717472, -0.022528788074851036, 0.0028797790873795748, -0.002508308971300721, 0.026377927511930466, 0.08564335852861404, 0.0346139557659626, -0.002961148740723729, 0.0040083411149680614, 0.007323271129280329, -0.007507237605750561, 0.0116677051410079, -0.0017742128111422062, 0.005108600948005915, -0.05108600854873657, 0.028132682666182518, -0.0044151898473501205, -0.004521323833614588, -0.02479298785328865, -0.019868353381752968, 0.014398896135389805, 0.004627458285540342, 0.02250048518180847, -0.0033379257656633854, -0.02012307569384575, 0.006332683842629194, 0.014052189886569977, -0.0025383802130818367, 0.002062544459477067, -0.027382666245102882, -0.015580524690449238, 0.011710158549249172, -0.0064069777727127075, -0.036991365253925323, -0.032717686146497726, -0.015976760536432266, -0.03229314833879471, -0.0277081448584795, -0.017193768173456192, 0.0035661146976053715, 0.017292825505137444, -0.011596948839724064, 0.00033631327096372843, 0.01814190112054348, -0.015056928619742393, -0.0029735311400145292, 0.01245309878140688, -4.969520523445681e-05, -0.009566244669258595, -0.004967088345438242, -0.011851671151816845, -0.0014814588939771056, 0.014858811162412167, -0.033764880150556564], "3f9412e4-a749-4bff-8739-4606b31ea8f1": [-0.011606709100306034, 0.010095696896314621, 0.00020757605670951307, -0.020097792148590088, -0.013117720372974873, 0.010804401710629463, -0.01736994832754135, -0.03270738571882248, -0.005960472859442234, -0.02245122566819191, 0.0007559236837550998, 0.042442042380571365, -0.011426189914345741, 0.006077475845813751, 0.009841633029282093, 0.0059537868946790695, 0.0067026070319116116, -0.006314825266599655, 0.00579332560300827, 0.013579047285020351, -0.004395973868668079, 0.02083323895931244, -0.013391842134296894, -0.03404456377029419, -0.01293720118701458, 0.02365468628704548, 0.01115206815302372, -0.004265598952770233, -0.00825707707554102, -0.0057966685853898525, 0.015083372592926025, 0.005014419090002775, -0.030300462618470192, -0.0015753633342683315, -0.0024520510341972113, 0.009273332543671131, 0.0007922782097011805, -0.0095808831974864, -0.004242198541760445, 0.0011483019916340709, 0.05153485760092735, 0.015444410964846611, -0.00022251484915614128, 0.003904561046510935, -0.006652462761849165, 0.015096744522452354, 0.0007814136333763599, -0.03281435742974281, -0.02719820849597454, 0.017637383192777634, 0.017436806112527847, 0.0665379986166954, -0.031744614243507385, -0.008611428551375866, 0.0017383319791406393, 0.010309645906090736, 0.022384366020560265, 0.0211140476167202, -0.01751703768968582, -0.016006026417016983, 0.01486942358314991, -0.006311482284218073, -0.01870712637901306, -0.0006585603696294129, -0.02170240506529808, 0.011854087002575397, 0.0031624268740415573, 0.022651802748441696, -0.01457524485886097, 0.0019305513706058264, 0.026810428127646446, 0.015818821266293526, 0.0073143658228218555, 0.02915048971772194, 0.026195324957370758, -0.032065536826848984, 0.0019723381847143173, 0.014829308725893497, -0.008464339189231396, 0.008945723995566368, 0.015056628733873367, -0.01873387023806572, -0.0014541815035045147, 0.002513895509764552, 0.03407130762934685, -0.01769087091088295, 0.002457065274938941, 0.013177893124520779, 0.0011633451795205474, -0.03139694780111313, 0.014922911301255226, 0.010891318321228027, 0.025232557207345963, 0.022050071507692337, -0.0053888289257884026, 0.03318876773118973, -0.021595431491732597, 0.035889867693185806, 0.0009694543550722301, -0.0014942968264222145, -0.0031423692125827074, 0.018078651279211044, -0.0032075566705316305, 0.0024303218815475702, -0.014147347770631313, -0.004416031762957573, -0.012348842807114124, -0.006184450350701809, 0.025379646569490433, -0.0024838089011609554, -0.011312529444694519, 0.026529619470238686, -0.009072755463421345, -0.03404456377029419, 0.030140001326799393, -0.016540896147489548, 0.018533293157815933, -0.029685361310839653, -0.04583847522735596, 0.019683266058564186, 0.018854215741157532, -0.015203719027340412, 0.030059771612286568, -0.008845435455441475, 0.022344252094626427, -0.01902804896235466, 0.01173374056816101, -0.022518085315823555, -0.03712007403373718, -0.024724429473280907, 0.024764543399214745, -0.005846812855452299, 0.014093860983848572, 0.0030587955843657255, 0.00802307017147541, 0.005265139974653721, -0.030567899346351624, 0.018386203795671463, -0.019736753776669502, -0.018613522872328758, 0.027759823948144913, 0.0077222054824233055, -0.0043257721699774265, -0.0033379315864294767, 0.02465756982564926, 0.027840055525302887, 0.005786639638245106, 0.0030504383612424135, -0.015083372592926025, -0.008939038030803204, 0.008524512872099876, -0.0024102639872580767, 0.01664787158370018, -0.01680833287537098, 0.009005896747112274, 0.023547712713479996, -0.002640927443280816, 0.014521758072078228, 0.040061865001916885, 0.011720368638634682, 0.01739669032394886, 0.008584685623645782, -0.025593595579266548, 0.0077222054824233055, 0.001193431788124144, 0.018506549298763275, 0.03607707470655441, -0.008357364684343338, -0.027572618797421455, 0.01664787158370018, -0.001165852416306734, 0.0209535863250494, -0.020913470536470413, 0.0031975279562175274, 0.013512187637388706, 0.012723253108561039, -0.0003869459906127304, 0.0007438054890371859, -0.037227045744657516, 0.016273461282253265, 0.02346748113632202, -0.00025886937510222197, 0.03062138520181179, 0.037547968327999115, -0.03465966507792473, -0.019001305103302002, 0.005235053598880768, 0.013665962964296341, 0.006261338014155626, 0.00553591875359416, 0.013672648929059505, 0.035889867693185806, 0.015163603238761425, 0.014896167442202568, -0.6140323281288147, -0.004917473532259464, -0.02242448180913925, -0.035595688968896866, 0.015685101971030235, -0.001766746980138123, 0.019964072853326797, 0.014521758072078228, -0.037815406918525696, 0.03361666575074196, 0.0029000057838857174, 0.009246588684618473, 0.02155531570315361, -0.010222729295492172, 0.00364046823233366, -0.03789563477039337, 0.0033128594513982534, -0.011145382188260555, -0.01158665120601654, 0.0075818016193807125, -0.0012310398742556572, 0.023520968854427338, -0.03302830830216408, 0.00855125579982996, -0.0015820491826161742, 0.007641974836587906, 0.002472108695656061, 0.016460666432976723, 0.018372831866145134, 0.046614039689302444, 0.021475085988640785, -0.0013455357402563095, 0.005348713602870703, -0.005810040049254894, 0.030808590352535248, -0.004178682342171669, 0.0020575833041220903, 0.021782636642456055, 0.021207649260759354, 0.06386364251375198, -0.03848399594426155, 0.0009828261099755764, 0.042014144361019135, -0.004726925864815712, 0.028187721967697144, 0.0021110703237354755, -0.003683926537632942, 0.01886758767068386, -0.006341568659991026, -0.014922911301255226, -0.0059404149651527405, 0.008049814030528069, -0.00038339413003996015, 0.002978564938530326, 0.006197821814566851, -0.0032811015844345093, 0.029391180723905563, -0.008444281294941902, -0.007635288871824741, -0.018346088007092476, 0.004349172580987215, -0.006435171235352755, -0.024443620815873146, -0.005870213266462088, -0.012348842807114124, 0.02931095100939274, -0.018974561244249344, 0.007147218566387892, -0.00019859189342241734, 0.00024654227308928967, 0.022691918537020683, 0.029230719432234764, -0.019228626042604446, 0.007220763247460127, 0.007087045814841986, 0.030728360638022423, 0.032012052834033966, 0.011907573789358139, 0.026088351383805275, 0.008731774985790253, -0.007882666774094105, -0.006197821814566851, -0.026422645896673203, -0.030246974900364876, 0.04262924939393997, 0.002555682323873043, 0.0038978750817477703, 0.019990816712379456, 0.027840055525302887, -0.00609084777534008, 0.01945594511926174, 0.014120603911578655, -0.011091895401477814, -0.02008442021906376, 0.02291923761367798, -0.007394596468657255, -0.00011407803685870022, -0.0066858921200037, 0.008765204809606075, -0.026235440745949745, -0.009988722391426563, -0.034846868366003036, 0.0005524218431673944, 0.0036738975904881954, -0.004640009254217148, 0.024898262694478035, 0.009440479800105095, 0.0096611138433218, 0.001249426044523716, -0.014601988717913628, -0.02139485441148281, -0.04027581214904785, 0.008925666101276875, 0.00576323876157403, 0.013405214063823223, -0.021809380501508713, 0.034124791622161865, -0.0012627978576347232, 0.002298275474458933, -0.03268064185976982, 0.016754845157265663, 0.0048606437630951405, 0.012241868302226067, -0.03498058766126633, 0.027973772957921028, 0.0025907831732183695, 0.014067117124795914, -0.014682219363749027, -0.017490293830633163, -0.013157835230231285, 0.018987933173775673, 0.011078523471951485, 0.0006046553608030081, -0.003523465245962143, -0.015136859379708767, -0.0027579304296523333, 0.0067026070319116116, 0.002520581241697073, 0.027438901364803314, -0.00861811451613903, -0.003533493960276246, 0.015123487450182438, 0.03514104709029198, -0.029257463291287422, -0.004192054271697998, -0.029551643878221512, -0.039767686277627945, 0.01888095960021019, -0.030407438054680824, -0.004529691766947508, -0.013592418283224106, -0.006722664460539818, -0.048994217067956924, 0.01751703768968582, -0.006752750836312771, -0.004446118138730526, -0.006595632527023554, 0.000569136580452323, -0.02350759692490101, 0.010824459604918957, 0.002243116730824113, 0.0314771793782711, -0.012308727018535137, -0.013813053257763386, 0.0005277675809338689, -0.021742520853877068, -0.009159672074019909, 0.043939683586359024, -0.009574197232723236, -0.030220232903957367, 0.007093731313943863, 0.004529691766947508, -0.0014959683176130056, -0.0047202399000525475, -0.02837492525577545, -0.0041552819311618805, -0.018346088007092476, -0.011292471550405025, 0.00516819441691041, 0.002136142458766699, 0.01182734314352274, 0.03142369166016579, -0.011051779612898827, -0.005666293669492006, 0.01753040961921215, 0.014922911301255226, 0.024791287258267403, 0.010857888497412205, -0.0054556881077587605, 0.009841633029282093, 0.019964072853326797, 0.029792334884405136, -0.01945594511926174, 0.013044175691902637, -0.005118050612509251, 0.034873612225055695, 0.006893154699355364, -0.0008516155066899955, 0.011620080098509789, 0.02737204171717167, 0.03556894510984421, 0.010389876551926136, 0.005492460448294878, -0.03690612316131592, -0.000331160583300516, -0.005555976182222366, 0.025312786921858788, 0.00412853853777051, 0.010236101225018501, -0.009012582711875439, 0.007862608879804611, -0.01945594511926174, -0.024296531453728676, -0.013512187637388706, 0.010757599957287312, 0.0030688245315104723, -0.009346877224743366, 0.022932609543204308, 0.0038377020973712206, -0.010978234931826591, 0.01367933489382267, -0.02275877632200718, 0.0030253662262111902, 0.0013898297911509871, -0.005281854886561632, -0.006866411305963993, -0.006010617129504681, -0.0033162024337798357, -0.00944716576486826, -0.03968745470046997, -0.008056499995291233, -0.001395680010318756, 0.01949606090784073, -0.01976349763572216, 0.00794283952564001, -0.01650078222155571, 0.03998163342475891, -0.02853538654744625, 0.023561084643006325, -0.0067260074429214, -0.020552432164549828, 0.02334713563323021, 0.03155741095542908, -0.030728360638022423, 0.02081986889243126, 0.009393678046762943, 0.05824749171733856, 8.817019988782704e-05, 0.0033696896862238646, 0.007294308394193649, 0.02291923761367798, 0.012208439409732819, -0.02481803111732006, -0.0035602375864982605, 0.002214701846241951, -0.005629521328955889, 0.008638172410428524, 0.002893319819122553, 0.01478919293731451, -0.0023567769676446915, 0.0077088335528969765, 0.004429403692483902, 0.02039197087287903, 0.022571571171283722, 0.024483736604452133, 0.003864445723593235, -0.025326158851385117, -0.040195584297180176, -0.010891318321228027, -0.008517826907336712, -0.02068614959716797, -0.031289976090192795, -0.00397810572758317, -0.01234215684235096, 0.017744356766343117, 0.015029885806143284, -0.018479805439710617, 0.011319215409457684, 0.001047177822329104, 0.0002555264509283006, -0.005298569332808256, -0.023427365347743034, 0.017222857102751732, 0.0258476585149765, -0.014842680655419827, -0.0005845976993441582, 0.0009987051598727703, 0.004984332714229822, 0.006398398894816637, 0.013826425187289715, -0.009052697569131851, 0.006445200182497501, 0.0021762577816843987, -0.005081277806311846, 0.007327737752348185, -1.5683117453590967e-05, 0.006455228663980961, -0.01077097188681364, 0.027278440073132515, 0.007682090159505606, 0.021635547280311584, -0.010082324966788292, -0.01902804896235466, -0.015444410964846611, 0.028615618124604225, -0.013218008913099766, 0.016741473227739334, -0.01901467703282833, 0.0030688245315104723, -0.006525430828332901, 0.017624011263251305, -0.0016413865378126502, -0.03048766776919365, -0.016153115779161453, 0.03281435742974281, 0.004165310878306627, 0.0022080158814787865, 0.014829308725893497, 0.022972725331783295, -0.026275556534528732, 0.004419374745339155, -0.0023350478149950504, -0.009326819330453873, -0.019362343475222588, 0.030273718759417534, -0.0049341884441673756, -0.013826425187289715, 0.019816983491182327, -0.007762320805341005, 0.0005265140207484365, -0.010456735268235207, -0.0007509092683903873, 0.021929726004600525, -0.013331668451428413, 0.0006690070731565356, -0.0049041020683944225, 0.017757728695869446, -0.021033816039562225, 0.022050071507692337, 0.009280018508434296, -0.006117591168731451, -0.004947560373693705, 0.011867458000779152, -0.030246974900364876, 0.017744356766343117, -0.02348085306584835, 0.006515401881188154, 0.025326158851385117, -0.01449501421302557, -0.019228626042604446, -0.009627684950828552, 0.0019104937091469765, -0.02409595437347889, -0.0024002352729439735, -0.011051779612898827, 0.021916354075074196, 0.02199658565223217, 0.016286833211779594, -0.012068035081028938, 0.027011003345251083, 0.018239114433526993, 0.01196106057614088, 0.015297320671379566, -0.027973772957921028, 0.013418585062026978, 0.02123439311981201, 0.017891447991132736, -0.022197160869836807, -0.0104767931625247, 0.0013179564848542213, -0.02630230039358139, 0.029685361310839653, -0.008196903392672539, 0.010483479127287865, 0.0033446175511926413, -0.009440479800105095, -0.0205390602350235, -0.028348183259367943, -0.014227578416466713, 0.02707786299288273, 0.008170160464942455, -0.028856310993433, -0.008885550312697887, -0.042896684259176254, -0.0036738975904881954, -0.019723381847143173, 0.028027258813381195, 0.006886468734592199, -0.014454898424446583, -0.025192441418766975, -0.010844516567885876, 0.016701359301805496, -0.03032720647752285, -0.01858678087592125, 0.01204129122197628, -0.01841294765472412, -0.03254692256450653, -0.01949606090784073, 0.01785133220255375, 0.031289976090192795, -0.007040244527161121, 0.0004205844015814364, 0.019857099279761314, 0.016995538026094437, -0.03214576840400696, -0.03792237862944603, -0.01287034247070551, -0.009159672074019909, -0.005442316178232431, -0.013652591966092587, 0.012355528771877289, 0.023253532126545906, -0.011192183010280132, 0.02124776504933834, 0.009634370915591717, -0.002853204496204853, -0.01248924620449543, -0.034392230212688446, -0.028936540707945824, 0.03690612316131592, 0.008283820003271103, 0.0182658564299345, 0.01636706292629242, -0.016861820593476295, -0.0024955091066658497, 0.0042823138646781445, -0.028749335557222366, -0.025660453364253044, -0.0032844445668160915, 0.0011015007039532065, 0.02336050756275654, 0.009560825303196907, -0.015016513876616955, -0.009453851729631424, 0.017142627388238907, -0.025205813348293304, 0.01678158901631832, 0.01552464161068201, -0.005435630213469267, 0.01841294765472412, 0.005462373606860638, 0.03610381856560707, 0.004807156510651112, -0.025606967508792877, 0.0017918191151693463, -0.03682589530944824, 0.009507338516414165, 0.018961189314723015, -0.009259960614144802, -2.327003858226817e-05, -0.01449501421302557, -0.006358283571898937, -0.006826295983046293, 0.024283159524202347, 0.020779753103852272, 0.005325313191860914, 0.012729938142001629, -0.014267693273723125, -0.013692706823348999, 0.006515401881188154, -0.03607707470655441, 0.009480594657361507, -0.018921075388789177, -0.011620080098509789, -0.0032593724317848682, 0.00017654933617450297, 0.02067277766764164, -0.03824330121278763, -8.08575059636496e-05, -0.024309903383255005, -0.03540848568081856, 0.004974303767085075, -0.014174091629683971, 0.025326158851385117, 0.004068365320563316, 0.018332716077566147, -0.011312529444694519, 0.00027433052309788764, 0.017878076061606407, -0.020993700250983238, -0.011051779612898827, -0.004202083218842745, 0.03658520057797432, 0.029471412301063538, 0.010055582039058208, 0.0072408211417496204, 0.02915048971772194, 0.03313528001308441, -0.01449501421302557, 0.01449501421302557, -0.015056628733873367, 0.0033496320247650146, -0.025018608197569847, 0.0030053085647523403, -0.006371655035763979, -0.017129255458712578, 0.004619951359927654, 0.017878076061606407, 0.00936693511903286, 0.03746774047613144, 0.008718403056263924, 0.009995408356189728, -0.010804401710629463, -0.006044046487659216, -0.0053587425500154495, 0.015671731904149055, 0.00839079450815916, 0.0019004648784175515, -0.025326158851385117, -0.010510222055017948, -0.011432875879108906, 0.0009009239729493856, 0.009346877224743366, 0.001134094432927668, -0.006699264049530029, -0.0013296568067744374, -0.01605951227247715, 0.03465966507792473, 0.02081986889243126, -0.022344252094626427, 0.018051909282803535, -0.01651415415108204, 0.015858935192227364, 0.0035034073516726494, -0.001017091330140829, 0.020873354747891426, -0.017490293830633163, 0.0003813047951553017, -0.03875143080949783, 0.0071137892082333565, -0.010202671401202679, -0.010142498649656773, 0.03048766776919365, -0.026235440745949745, 0.01449501421302557, -0.0051748803816735744, -0.004255570471286774, -0.012890400364995003, 0.007982955314218998, 0.018653638660907745, 0.011493048630654812, 0.025687197223305702, -0.016861820593476295, -0.020258253440260887, -0.003530150977894664, -0.017008909955620766, 0.046319860965013504, -0.009025954641401768, 0.0443408377468586, 0.016861820593476295, 0.03316202387213707, -0.024162814021110535, -0.019255369901657104, 0.009641055949032307, 0.0024186214432120323, 0.020900098606944084, 0.003820987418293953, -0.009848318994045258, 0.008203589357435703, -0.011305843479931355, -0.0004822199698537588, -0.001638043555431068, -0.03861771151423454, 0.012910457327961922, 0.0010028837714344263, -0.011740426532924175, -0.011914259754121304, 0.021327996626496315, -0.022384366020560265, 0.004004849586635828, 0.006154363509267569, -0.0002117547410307452, -0.047362860292196274, 0.006522087845951319, -0.02410932630300522, -0.01478919293731451, -0.0017500323010608554, 0.006374998018145561, 0.009774774312973022, 0.028722591698169708, -0.021060559898614883, -0.027171464636921883, -0.01254941988736391, 0.013418585062026978, 0.02035185508430004, 0.012315412983298302, -0.005679665133357048, -0.020405342802405357, 0.040382787585258484, 0.007922782562673092, -0.019816983491182327, -0.010603824630379677, 0.003426519688218832, 0.02882956713438034, -0.002345076762139797, -0.027733080089092255, 0.019121650606393814, 0.006625718902796507, 0.016728101298213005, -0.010102382861077785, -0.005592748522758484, -0.030888821929693222, 0.004081737250089645, 0.0005244246567599475, 0.025393018499016762, 0.014053745195269585, -0.019241997972130775, -0.003991477657109499, -0.011760484427213669, 0.0006982578779570758, 0.00280807469971478, -0.01843968965113163, 0.002998622599989176, -0.026569735258817673, -0.016835076734423637, -0.022411109879612923, -0.006612347438931465, -0.0011165440082550049, 0.009273332543671131, -0.004255570471286774, 0.018479805439710617, 0.04805819317698479, -0.019509432837367058, 0.011954374611377716, -0.018332716077566147, 0.014521758072078228, -0.016393806785345078, 0.015364180319011211, -0.014989770017564297, -0.019857099279761314, 0.030353950336575508, -0.011192183010280132, 0.01886758767068386, -0.023440737277269363, 0.005138108041137457, 0.0026008121203631163, -0.004773727152496576, -0.023721545934677124, 0.015872307121753693, 0.006899840664118528, 0.014107231982052326, 0.0013513859594240785, -0.01383979618549347, 0.02527267299592495, -0.032065536826848984, 0.016581011936068535, 0.03974094241857529, 0.018372831866145134, -0.0013455357402563095, -0.0007421339978463948, 0.011673567816615105, -0.016754845157265663, -0.020004188641905785, -0.035301510244607925, -0.004359201528131962, 0.0036036958917975426, 0.028428412973880768, 0.006866411305963993, -0.026837170124053955, 0.01086457446217537, -0.013772937469184399, 0.038590967655181885, -0.009875062853097916, -0.022638430818915367, 0.022250648587942123, 0.025165697559714317, 0.01856003701686859, 0.014053745195269585, -0.01917513832449913, -0.014401411637663841, 0.020779753103852272, -0.006311482284218073, -0.033215511590242386, -0.01754378154873848, -0.014588616788387299, 0.029097001999616623, 0.014815936796367168, 0.011406132020056248, -0.029097001999616623, -0.027572618797421455, -0.00772889144718647, -0.013445328921079636, -0.028802823275327682, 0.04351178556680679, 0.026248812675476074, -0.002107727574184537, -0.001195938908495009, 0.036210790276527405, 0.002809746190905571, 0.013391842134296894, -0.038296788930892944, 0.0069867572747170925, 0.018840843811631203, 0.01145961880683899, -0.002701100427657366, -0.017316460609436035, -0.013171207159757614, -0.03821655735373497, 0.014027001336216927, -0.0267435684800148, 0.014989770017564297, 0.017276344820857048, -0.014080489054322243, -0.017329832538962364, -0.03289458900690079, -0.0019723381847143173, 0.00832393579185009, -0.004131881520152092, -0.0028916483279317617, -0.00951402448117733, 0.013973514549434185, -0.0019088222179561853, 0.010282902047038078, -0.002776316599920392, 0.0009711258462630212, -0.005930386483669281, -0.00810330081731081, -0.006288081407546997, -0.003032051958143711, -0.008544569835066795, -0.0059838732704520226, -0.03062138520181179, -0.005729809403419495, 0.027465645223855972, 0.009400364011526108, 0.00959425512701273, -0.005321970209479332, 0.013706078752875328, -0.018252484500408173, -0.00717396242544055, -0.02528604306280613, 0.014441526494920254, 0.015992654487490654, 0.012830226682126522, -0.021475085988640785, -0.011111952364444733, 0.015283949673175812, -0.01226192619651556, 0.0016865163343027234, -0.027104606851935387, 0.004543063696473837, -0.015685101971030235, 0.02036522701382637, 0.008544569835066795, -0.010757599957287312, 0.004135224036872387, 0.00972797255963087, 0.002109399065375328, -0.0017934906063601375, -0.037521228194236755, -0.006037360522896051, -0.020605919882655144, 0.03268064185976982, -0.014147347770631313, 0.017757728695869446, -0.005415572784841061, -0.013478758744895458, -0.000196815948584117, -0.03385735675692558, 0.003127326024696231, 0.1868840605020523, 0.007407968398183584, 0.021461714059114456, 0.036932867020368576, -0.010583766736090183, 0.026355786249041557, 0.007742262911051512, -0.006715978495776653, -0.03265389800071716, 0.0019974103197455406, -0.02198321372270584, 0.013184579089283943, -0.02882956713438034, 0.009333505295217037, 0.001691530691459775, -0.010289588011801243, -0.005161508917808533, -0.060440465807914734, -0.015217090025544167, -0.005552633199840784, -0.022250648587942123, -0.008430910296738148, -0.01874724216759205, -0.032065536826848984, 0.02481803111732006, -0.002042540116235614, -0.00621119374409318, 0.015511269681155682, 0.015564756467938423, -0.007006814703345299, -0.014401411637663841, 0.008531197905540466, 0.004820527974516153, -0.008089929819107056, -0.028134234249591827, -0.016166487708687782, 0.015872307121753693, -0.0014800893841311336, 0.030059771612286568, -0.020445458590984344, 0.005041162483394146, -0.03225274384021759, -0.024858146905899048, -0.022518085315823555, 0.02421630173921585, 0.013799681328237057, -0.012188381515443325, -0.00936693511903286, -0.02318667434155941, 0.02603486366569996, -0.020859982818365097, 2.3361446437775157e-05, 0.030594641342759132, 0.01918851025402546, -0.013037489727139473, 0.00460323691368103, 0.00404830789193511, -0.0005720616318285465, 0.021221021190285683, 0.008925666101276875, -0.007087045814841986, 0.027091234922409058, -0.011720368638634682, 0.007969583384692669, 0.01189420185983181, 0.019964072853326797, -0.04698844999074936, 0.035756152123212814, -0.026208696886897087, -0.008517826907336712, -0.0200576763600111, 0.005482431501150131, -0.012168323621153831, -0.015511269681155682, -0.0043124002404510975, -0.017423434183001518, 0.03567592054605484, 0.019094908609986305, 0.0037975867744535208, 0.0012920486042276025, -0.024483736604452133, -0.029337694868445396, -0.001987381372600794, 0.011025035753846169, -0.0324399471282959, -0.00898583885282278, 0.030674872919917107, -0.005743181332945824, -0.027265068143606186, -0.014668847434222698, -0.017222857102751732, -0.03270738571882248, -0.006234594155102968, -0.0034733209758996964, -0.0013672648929059505, -0.0040148780681192875, -9.308015432907268e-05, 0.021154163405299187, -0.024136070162057877, -0.001310434890910983, -0.01588567905128002, 0.0481116808950901, 0.004853957798331976, 0.020485572516918182, 0.009567511267960072, 0.012442445382475853, -0.0025874401908367872, -0.002330033341422677, 0.0133717842400074, -0.027278440073132515, 0.020191393792629242, -0.012536047957837582, 0.003321216907352209, -0.014361295849084854, 0.011613394133746624, -0.004663409665226936, -0.01242238748818636, -0.01561824418604374, 0.00869834516197443, -0.009861690923571587, -0.003063810057938099, -0.010483479127287865, -0.00906606949865818, 0.006030674558132887, 0.018947817385196686, -0.024002352729439735, -0.02826795168220997, 0.004499605391174555, -0.030674872919917107, -0.0013004060601815581, 0.026422645896673203, -0.052123215049505234, 0.01181397121399641, 0.008029756136238575, -0.009246588684618473, -0.01710251159965992, -0.010456735268235207, -0.025901146233081818, 0.004807156510651112, 0.005007733125239611, 0.0005632864194922149, 0.017423434183001518, -0.03297482058405876, -0.008912294171750546, 0.02098033018410206, -0.028321439400315285, 0.007842550985515118, -0.014214206486940384, -0.0071271611377596855, -0.03642474114894867, -0.006284738425165415, -0.0018486491171643138, 0.009333505295217037, -0.019562920555472374, 0.02171577699482441, -0.039152584969997406, 0.0066457767970860004, 0.006679206155240536, -0.0004584014823194593, 0.01977686956524849, -0.028909796848893166, -0.025165697559714317, 0.022491341456770897, -0.024751173332333565, 0.004165310878306627, -0.017049025744199753, -0.16752171516418457, 0.00817684642970562, -0.0033880758564919233, -0.030674872919917107, 0.03134346380829811, 0.006181107368320227, 0.03241320326924324, -0.016393806785345078, 0.004038278944790363, -0.01227529812604189, -0.010429991409182549, 0.0027830025646835566, -0.015671731904149055, -0.024911634624004364, -0.0104767931625247, 0.008584685623645782, 0.00033659287146292627, 0.02422967366874218, 0.04936862736940384, 0.0020391971338540316, 0.03265389800071716, -0.024791287258267403, 0.011840715073049068, -0.007996327243745327, 0.0019857098814100027, -0.019696637988090515, -0.01470896229147911, -0.008898922242224216, 0.0095808831974864, -0.022705288603901863, 0.022223904728889465, 0.004827213939279318, -0.007160590495914221, 0.0004059589991811663, 0.011045093648135662, 0.01635369285941124, -0.022651802748441696, -0.0404362753033638, -0.037521228194236755, -0.009600941091775894, 0.024122698232531548, 0.019402459263801575, -0.027893541380763054, -0.004924159497022629, 0.0065488312393426895, 0.005856841336935759, 0.0258476585149765, -0.01785133220255375, 0.013472072780132294, -0.0008002177346497774, 0.02587440237402916, -0.01049016509205103, 0.025045352056622505, -0.0011842385865747929, 0.04383270815014839, -0.016019398346543312, -0.020258253440260887, 0.0026776997838169336, -0.02928420715034008, -0.01617985963821411, 0.0014433169271796942, -0.0479244738817215, -0.01678158901631832, 0.017797844484448433, 0.0036672118585556746, -0.00241527846083045, -0.021515199914574623, 0.01589905098080635, -0.062205538153648376, 0.006886468734592199, -0.0017149313353002071, -0.007949525490403175, 0.02677031233906746, -0.012703195214271545, 0.034098051488399506, 0.010149184614419937, -0.02570056915283203, 0.009620998986065388, 0.009968665428459644, -0.01651415415108204, 0.0033496320247650146, 0.018519921228289604, 0.023761659860610962, -0.006525430828332901, 0.0272249523550272, -0.010757599957287312, -0.002223059069365263, -0.0034231767058372498, -0.0033529747743159533, -0.028776079416275024, 0.01872049830853939, -0.007060301955789328, -0.011419503949582577, 0.00028310573543421924, 0.0016230002511292696, -0.00044210461783222854, 0.01227529812604189, -0.012950573116540909, 0.013692706823348999, -0.00803644210100174, 0.008939038030803204, -0.010363132692873478, -0.005646235775202513, -0.002520581241697073, 0.02245122566819191, 0.01977686956524849, -0.013565675355494022, 0.01152647752314806, 0.04252227395772934, 0.013030803762376308, -0.014294437132775784, -0.0058133830316364765, 0.015203719027340412, 0.03075510449707508, 0.007207391783595085, -0.0008959095575846732, -0.019001305103302002, -0.015858935192227364, 0.019536176696419716, -0.009868376888334751, 0.03875143080949783, -0.0017082453705370426, 0.011914259754121304, -0.009480594657361507, 0.006722664460539818, -0.023093070834875107, -0.11435549706220627, -0.028963284566998482, 0.0010404919739812613, 0.03447245806455612, 0.015297320671379566, 0.0025590253062546253, -0.009614313021302223, 0.02348085306584835, -0.015123487450182438, 0.02941792458295822, 0.0051748803816735744, -0.0006802895222790539, -0.008277134038507938, 0.0017951619811356068, -0.0360235869884491, -0.0065187448635697365, 0.005746524315327406, -0.009072755463421345, 0.014936283230781555, 0.03958048298954964, 0.019723381847143173, -0.015939166769385338, 0.0007333587855100632, 0.009988722391426563, -0.008959094993770123, 0.0027278440538793802, -0.04089091718196869, -0.004382602404803038, 0.000596715894062072, 0.002087669912725687, -0.029337694868445396, -0.013197951018810272, -0.017811216413974762, -0.013986886478960514, 0.0010797715513035655, 0.009480594657361507, -0.015671731904149055, -0.019068164750933647, 0.04321760684251785, 0.010055582039058208, 0.01799842156469822, 0.0007458948530256748, 0.0019940673373639584, -0.007922782562673092, 0.007387910969555378, -0.015671731904149055, -0.003341274568811059, 0.007026872597634792, -0.010757599957287312, 0.008718403056263924, -0.0038577597588300705, -0.021475085988640785, -0.01085120253264904, 0.001776775810867548, 0.022330880165100098, -0.015056628733873367, 0.031183000653982162, 0.015016513876616955, -0.002131128218024969, 0.0013923370279371738, 0.011472990736365318, -0.0030805247370153666, -0.007194019854068756, 0.039018865674734116, 0.021154163405299187, 0.024029096588492393, -0.03519453480839729, -0.02781331166625023, 0.024871518835425377, -0.020284997299313545, -0.017209487035870552, 0.038590967655181885, -0.013291553594172001, 0.04894072934985161, -0.010730857029557228, -0.000462998024886474, -0.01234215684235096, -0.013538931496441364, 0.003757471451535821, 0.0037808718625456095, -0.020859982818365097, -0.016848448663949966, 0.008845435455441475, 0.002617526799440384, 0.009774774312973022, 0.012302041053771973, -0.007367853075265884, -0.011820657178759575, 0.03123648837208748, 0.007855922915041447, 0.01070411317050457, 0.006147677544504404, 0.01592579483985901, -0.012763367965817451, 0.007896038703620434, -0.0184263177216053, 0.0037741861306130886, -0.01472233422100544, -0.006619032938033342, -0.0272249523550272, -0.024483736604452133, -0.011192183010280132, -0.04500942677259445, 0.009828261099755764, -0.013813053257763386, 0.0007358660222962499, -0.009019268676638603, 0.005161508917808533, 0.012816854752600193, -0.0202181376516819, -0.0013789652148261666, 0.006772808730602264, -0.030113257467746735, 0.010216043330729008, -0.003361332230269909, -0.02126113697886467, -0.001893778913654387, -0.0034866926725953817, 0.015123487450182438, -0.0068463534116744995, 0.024617454037070274, 0.006739379372447729, 0.006254652049392462, -0.022370994091033936, -0.00853788387030363, 0.005937071982771158, -0.0071004172787070274, 0.002831475343555212, -0.0029702074825763702, 0.015297320671379566, -0.03123648837208748, -0.03075510449707508, -0.0011449590092524886, -0.007220763247460127, 0.005362085532397032, 0.015257205814123154, -0.021622175350785255, -0.004292342811822891, 0.012429073452949524, 0.0270644910633564, 0.020900098606944084, 0.010149184614419937, -0.011325901374220848, -0.029685361310839653, 0.007748948875814676, 0.008624800480902195, -0.00772889144718647, -0.014989770017564297, -0.01707576774060726, 0.018800728023052216, 0.015658359974622726, 0.0022197160869836807, 0.0272249523550272, -0.000941875041462481, -0.02020476572215557, -0.021769264712929726, 0.003513436298817396, -0.020164649933576584, 0.015136859379708767, -0.003160755382850766, -0.008009699173271656, -0.005479088518768549, 0.046453576534986496, 0.015110116451978683, 0.03375038504600525, -0.024884890764951706, -0.02008442021906376, -0.033081792294979095, -0.033108536154031754, 0.001378129469230771, -0.005355399567633867, 0.0007216584635898471, -0.021475085988640785, -0.02245122566819191, 0.0047937845811247826, 0.02108730375766754, 0.025446506217122078, -0.005736495368182659, -0.0005411393940448761, 0.018854215741157532, 0.00519828125834465, 0.010276216082274914, 0.027011003345251083, -0.004299028776586056, 0.009320133365690708, 0.015217090025544167, 0.018065281212329865, 0.007053615991026163, -0.03385735675692558, -0.01203460618853569, -0.017329832538962364, 0.018172254785895348, 0.006742722354829311, -0.004583179019391537, -0.02556685172021389, -0.02349422499537468, -0.004182025324553251, 0.01678158901631832, -0.02406921237707138, -0.003767500165849924, -0.01664787158370018, 0.018773984163999557, 0.01433455292135477, -0.0063649690710008144, 0.0002678535529412329, -0.01227529812604189, -0.019415831193327904, 0.007294308394193649, -0.014254322275519371, -0.02719820849597454, -0.00907944142818451, 0.03853748366236687, -0.018239114433526993, -0.0011432875180616975, 0.026516247540712357, 0.004402659833431244, 0.0015436053508892655, 0.0036906125023961067, -0.010102382861077785, -0.035729408264160156, -0.019576292484998703, 0.02915048971772194, -0.0182658564299345, 0.006254652049392462, 0.039179328829050064, 0.005004390142858028, 0.012455817312002182, 0.002746230224147439, 0.030541155487298965, 0.004837242886424065, -0.01782458834350109, -0.009714601561427116, -0.009480594657361507, 0.008524512872099876, -0.03586312383413315, -0.0314771793782711, 0.0005010240129195154, -0.03273412585258484, 0.0065789176151156425, -0.015217090025544167, 0.01648741029202938, 0.07215414941310883, 0.026583107188344002, -0.0008424224215559661, 0.014682219363749027, 0.015805449336767197, 0.01799842156469822, 0.008003013208508492, -0.01204129122197628, 0.0052183386869728565, -0.030246974900364876, 0.03155741095542908, -0.019215254113078117, -0.02481803111732006, -0.04295017197728157, -0.00010504163219593465, -0.002181272255256772, -0.02406921237707138, 0.010777657851576805, 0.0011951031628996134, -0.012609592638909817, 0.026048235595226288, 0.00404830789193511, 0.003232628805562854, -0.008865493349730968, -0.014909539371728897, -0.012783425860106945, 0.007120475172996521, -0.01901467703282833, -0.044394321739673615, -0.03193182125687599, -0.006836324464529753, -0.03131671994924545, -0.03639799728989601, -0.024563968181610107, 0.0003921693714801222, 0.035756152123212814, -0.001005391008220613, -0.0068597253412008286, 0.016233345493674278, 0.022839007899165154, -0.004850614815950394, 0.02126113697886467, 0.00370064121671021, -0.04926165193319321, 0.0008858807268552482, -0.0003884085454046726, -0.003513436298817396, 0.011205554939806461, -0.04573150351643562], "be0a3801-aaf8-41f3-9996-6218b1366d18": [-0.01917877048254013, -0.010426711291074753, -0.027937473729252815, -0.003385856980457902, -0.0019288419280201197, 0.022780604660511017, -0.006067296024411917, -0.03439684957265854, 0.003138314001262188, -0.015895918011665344, 0.003402470611035824, 0.03979295864701271, 0.0020683964248746634, 0.005495787598192692, 0.008692248724400997, -0.011018157005310059, 0.02295338548719883, 0.003545347834005952, 0.004708301741629839, 0.011882064864039421, -0.004259733483195305, 0.02833620086312294, -0.0009428232442587614, -0.04064357280731201, -0.007183731999248266, 0.008612503297626972, 0.004788047168403864, -0.0019437941955402493, -0.0066288369707763195, -0.00950963981449604, 0.0026382438372820616, -0.0011156050022691488, -0.024295765906572342, -0.025850802659988403, -0.008021058514714241, 0.011283975094556808, -0.017291462048888206, 0.002465462079271674, 0.021743914112448692, 0.0011039754608646035, 0.04750167950987816, 0.015563644468784332, -0.00400720676407218, 0.01246686466038227, -0.00262329145334661, 0.02504005655646324, 0.023312240839004517, -0.01778322458267212, -0.023710966110229492, 0.03126019984483719, 0.026395728811621666, 0.015949081629514694, -0.04861811548471451, -0.013556718826293945, -0.0034988296683877707, 0.013649755157530308, -0.006063973531126976, -0.001063272007741034, -0.010891892947256565, 0.0019421328324824572, 0.002242839429527521, 0.001496887649409473, -0.012147882953286171, 0.0011023140978068113, -0.01769018918275833, 0.0007143859402276576, 0.014819354750216007, 0.026515347883105278, -0.0058878688141703606, 0.018354734405875206, 0.016374390572309494, 0.020693931728601456, -0.005711764562875032, 0.027618492022156715, 0.02732609212398529, -0.026714710518717766, 0.0012692810269072652, 0.017012352123856544, -0.024428674951195717, 0.008931485004723072, 0.023458439856767654, -0.030967798084020615, 0.01671995222568512, 0.003791229333728552, 0.022076185792684555, -0.013058310374617577, -0.01192858349531889, 0.030489325523376465, -0.02530587464570999, -0.02998427301645279, 0.022780604660511017, 0.005196742247790098, 0.024455256760120392, 0.033466488122940063, -0.02998427301645279, 0.024667911231517792, -0.022727441042661667, 0.02982478216290474, 0.016972480341792107, 0.005798155441880226, -0.0061038462445139885, 0.025279292836785316, -0.00200360338203609, -0.005402751266956329, -0.019418006762862206, 0.009821975603699684, -0.013862409628927708, 0.0011288959067314863, 0.01916547864675522, -0.005575533024966717, -0.014779482036828995, 0.016533881425857544, 0.007947959005832672, -0.017344625666737556, 0.030010852962732315, -0.025957129895687103, 0.004405933432281017, -0.007974540814757347, -0.03131336346268654, 0.014580118469893932, 0.015231371857225895, -0.01374279148876667, 0.008632440119981766, -0.008745412342250347, 0.010526393540203571, -0.019670533016324043, -0.005020637530833483, -0.016480717808008194, -0.022767312824726105, -0.003645029617473483, 0.043062519282102585, 0.01826169714331627, 0.01858067885041237, 0.004302929155528545, -0.007675494998693466, -0.0017610443755984306, -0.025545110926032066, -0.00514025567099452, -0.016866153106093407, -0.01816866174340248, 0.022727441042661667, 0.024641329422593117, -0.005296424031257629, 0.006924559362232685, 0.0013797616120427847, 0.024734366685152054, 0.020733805373311043, -0.008984648622572422, -0.02908049151301384, -0.009409957565367222, 0.020707223564386368, -0.027618492022156715, 0.008386557921767235, -0.022714149206876755, 0.012214337475597858, 0.0070175956934690475, 0.004282992798835039, 0.01921864226460457, 0.019457878544926643, -0.011702638119459152, 0.009855203330516815, 0.01342380978167057, -0.02406982146203518, -0.0029040619265288115, 0.015895918011665344, 0.028522273525595665, 0.04197266325354576, 0.00019593695469666272, -0.0007521819206885993, 0.011921937577426434, -0.000985188060440123, 0.004608619958162308, -0.04447135329246521, 0.0075359405018389225, 0.02578434720635414, 0.008047640323638916, -0.012772555463016033, -0.0037879066076129675, -0.03003743477165699, 0.007928022183477879, 0.007316641043871641, -0.01557693537324667, 0.02290022186934948, 0.005412719212472439, -0.02923998236656189, 0.0056353420950472355, -0.030223507434129715, 0.000549080315977335, 0.026010293513536453, 0.017543988302350044, -0.004412578884512186, 0.02587738446891308, -0.001923857838846743, 0.016042117029428482, -0.6328595280647278, -0.010672593489289284, -0.030489325523376465, -0.01326431892812252, 1.153219272964634e-05, 0.020747095346450806, 0.008831803686916828, 0.008060931228101254, -0.01176909264177084, 0.025757765397429466, 0.01921864226460457, -0.016387680545449257, 0.014035191386938095, -0.01155643817037344, 0.01746424287557602, -0.03553986921906471, -0.0014752899296581745, -0.023883748799562454, -0.0018823237624019384, 0.015988953411579132, 0.008127385750412941, 0.02199644036591053, -0.027884310111403465, -0.012905464507639408, -0.0028658504597842693, 0.013330773450434208, -0.004804660566151142, -0.0015458979178220034, 0.014207973144948483, 0.04614600911736488, 0.022501494735479355, 0.009895076043903828, 0.009117557667195797, -0.0028608664870262146, 0.041095465421676636, -0.0045853606425225735, 0.007469486445188522, -0.01852751523256302, 0.02732609212398529, 0.05901160091161728, -0.03423735871911049, 0.01725158840417862, 0.013888991437852383, -0.012426991946995258, 0.00646934611722827, -0.00935014896094799, 0.015085171908140182, 0.022886931896209717, -0.0008173903916031122, 0.00382777932099998, -0.0031133934389799833, 0.0051369331777095795, -0.009277048520743847, -0.002533577848225832, 0.01762373372912407, 0.006083909887820482, 0.02493372932076454, 0.0002454663335811347, -0.007881504483520985, -0.016866153106093407, -0.0023325530346482992, 0.011350429616868496, -0.009695712476968765, -0.014154809527099133, 0.015988953411579132, 0.03413103148341179, -0.01547060813754797, 0.00230264849960804, 0.004774756263941526, -0.020335078239440918, 0.029745036736130714, 0.03126019984483719, -0.014261136762797832, 0.010466584004461765, 0.022554658353328705, 0.010101084597408772, 0.013011791743338108, 0.007595749571919441, 0.00615036441013217, 0.02279389463365078, -0.016733244061470032, -0.0040371110662817955, -0.015550353564321995, -0.01698577031493187, 0.017131971195340157, -0.02050785906612873, -0.008114094845950603, 0.020707223564386368, 0.021797077730298042, 0.004522229079157114, 0.01656046323478222, 0.0007633960922248662, -0.012712746858596802, -0.02849569171667099, 0.002159771276637912, 0.010127666406333447, 0.011071320623159409, -0.0005445115966722369, 0.01693260669708252, -0.045082736760377884, -0.01715855300426483, -0.014566827565431595, -0.0016289660707116127, -0.0008979664999060333, 0.0007995307678356767, 0.018128788098692894, -0.0015724797267466784, 0.006788327358663082, 0.009097621776163578, -0.0005494956858456135, -0.001932164654135704, -0.02902732789516449, -0.0027977346908301115, 0.010499811731278896, 0.019457878544926643, -0.01971040666103363, 0.004462420009076595, -0.009390021674335003, 0.003645029617473483, -0.03612466901540756, 0.02631598338484764, 0.009968175552785397, -0.01943129673600197, -0.019936351105570793, 0.02939947322010994, -0.005249905865639448, 0.022860350087285042, -0.020919878035783768, -0.012971919029951096, -0.01645413599908352, 0.010619429871439934, 0.013151346705853939, 0.019617369398474693, -0.011323847807943821, -0.015842754393815994, -0.014261136762797832, 0.008565985597670078, -0.011410238221287727, 0.011868773959577084, -0.020840132609009743, -0.009237175807356834, 0.02332553081214428, 0.019736988469958305, -0.04367389902472496, -0.010978284291923046, -0.011317201890051365, -0.04096255451440811, 0.007197022903710604, -0.012765910476446152, -0.007416322827339172, -0.006592286750674248, -0.010626074858009815, -0.048963677138090134, 0.01864713430404663, -0.010413420386612415, -0.019630661234259605, 0.014354173094034195, 0.00034826312912628055, -0.00395404314622283, -0.02050785906612873, -0.011702638119459152, 0.021385058760643005, -0.011988392099738121, 0.01044000219553709, -0.013623173348605633, -0.015736427158117294, -0.026608383283019066, 0.03710819408297539, -0.01842118799686432, -0.03604492172598839, 0.005934386979788542, 0.005323005840182304, -0.0007272614748217165, 0.016121862456202507, -0.017703479155898094, 0.023391984403133392, -0.00679165031760931, -0.01160960178822279, -0.014247845858335495, 0.0029289822559803724, -0.0025834187399595976, 0.039872702211141586, 0.004053724929690361, -0.012951983138918877, 0.00894477590918541, -0.005146901123225689, 0.03596517816185951, -0.021544549614191055, -0.007715367712080479, 0.0072302501648664474, 0.00221791910007596, 0.01742437109351158, -0.02252807654440403, 0.027831146493554115, 0.0071770865470170975, 0.03019692562520504, 0.01698577031493187, 0.00684481393545866, 0.01917877048254013, 0.04043091833591461, 0.053030695766210556, 0.014394045807421207, -0.00034348672488704324, -0.03136652708053589, 0.01256654690951109, -0.019936351105570793, 0.04970796778798103, 0.0019022601190954447, 0.01737120747566223, -0.003271223045885563, -0.005761605687439442, -0.02103949524462223, -0.010107729583978653, -0.01758386194705963, 0.016254771500825882, 0.0027528777718544006, 0.001081547001376748, 0.022036314010620117, 0.0016173365293070674, 0.004492324311286211, -0.00026955606881529093, -0.02838936448097229, 0.019138896837830544, 0.012101365253329277, 0.01937813311815262, -0.018713587895035744, -0.01504529919475317, -0.0018009170889854431, -0.013330773450434208, -0.02998427301645279, 0.00438267458230257, 0.013503555208444595, 0.00028554670279845595, -0.021597713232040405, 0.009901721030473709, 0.006758423056453466, 0.03312092646956444, -0.004100243095308542, 0.03184499964118004, -0.02780456468462944, -0.00894477590918541, 0.026129910722374916, 0.011190938763320446, -0.015284535475075245, 0.02130531333386898, 0.002490382641553879, 0.06571021676063538, 0.012260856106877327, -0.011031447909772396, 0.004934247117489576, 0.006014132406562567, -0.0015201467322185636, -0.019258515909314156, 0.0032994661014527082, 0.0015359297394752502, -0.0041700201109051704, 0.0009901721496134996, -0.014633282087743282, 0.013184573501348495, 0.008054286241531372, 0.0004863638896495104, -0.008439721539616585, -0.001541744451969862, 0.01333741843700409, 0.015337699092924595, -0.012068137526512146, -0.033413324505090714, -0.045454882085323334, -0.003211413975805044, -0.014088355004787445, -0.001852419343777001, -0.044285282492637634, -0.008080868050456047, -0.024109693244099617, 0.03902208432555199, 0.010792211629450321, -0.009283694438636303, -0.003565284190699458, 0.020281914621591568, -0.023737547919154167, -0.006612223107367754, -0.017823098227381706, 0.016480717808008194, 0.015058590099215508, -0.010426711291074753, -0.0018989373929798603, 0.006346405018121004, 0.0023159394040703773, 0.007329931948333979, 0.020122423768043518, -0.009596030227839947, -0.006691968534141779, 0.00881851278245449, -0.00921059399843216, -0.0003594773297663778, 0.026714710518717766, 0.02945263683795929, -0.01671995222568512, 0.04569411650300026, -0.02545207552611828, 0.010008048266172409, -0.011529856361448765, -0.01889966055750847, -0.0015841092681512237, 0.05210033059120178, -0.006343082524836063, 0.008851739577949047, -0.010061211884021759, -0.006924559362232685, -0.015497189946472645, -0.009994757361710072, -0.007496068254113197, -0.02658180147409439, -0.048272550106048584, 0.02955896407365799, 0.0041434383019804955, 0.0034988296683877707, -0.006539123132824898, 0.03450317680835724, -0.011091256514191628, 0.019152188673615456, -0.0028442528564482927, -0.0012310696765780449, -0.014513663947582245, 0.03835754096508026, 0.014261136762797832, -0.004239797126501799, -0.006409537047147751, -0.006216818932443857, -0.004708301741629839, -0.0045853606425225735, -0.017504116520285606, 0.016228189691901207, -0.01742437109351158, -0.0019354873802512884, 0.00011307649401715025, 0.020587604492902756, -0.02945263683795929, 0.017876261845231056, 0.0023607963230460882, -0.03386521339416504, -0.00760239502415061, 0.012971919029951096, -0.01895282417535782, 0.007010950241237879, 0.006851459387689829, 0.013151346705853939, 0.03083488903939724, 0.007795113138854504, -0.015324408188462257, -0.001727817114442587, 0.009396666660904884, -0.015630099922418594, -0.0010865310905501246, -0.006372986827045679, 0.009436539374291897, 0.013045019470155239, 0.02567801997065544, -0.007502713240683079, 0.017557280138134956, -0.007569167762994766, 0.010287157259881496, 0.02130531333386898, -0.02817671000957489, 0.008665666915476322, 0.00940331257879734, 0.008931485004723072, -0.01158966589719057, -0.003927461337298155, -0.019830023869872093, -0.03274878114461899, 0.018195243552327156, -0.013888991437852383, -0.01349690929055214, 0.01355007290840149, 0.010413420386612415, -0.02732609212398529, -0.017185134813189507, -0.0036417068913578987, 0.015032008290290833, -0.008938130922615528, -0.01485922746360302, -0.021956568583846092, -0.011430175043642521, -0.01198174711316824, -0.02998427301645279, 0.020707223564386368, 0.001604876248165965, 0.016799697652459145, -0.020693931728601456, 0.002412298461422324, 0.008645731024444103, -0.008898258209228516, -0.012154528871178627, 0.007702076807618141, -0.028362782672047615, -0.043328337371349335, -0.026874201372265816, 0.007157150190323591, 0.029745036736130714, -0.010699175298213959, -0.007947959005832672, 0.007841631770133972, 0.013483618386089802, -0.019364843145012856, -0.01948446035385132, -0.02737925574183464, -0.015218080952763557, 0.004944215063005686, 0.012314019724726677, -0.0001242906873812899, 0.005093737505376339, -0.025332456454634666, 0.02146480418741703, 0.009662484750151634, 0.00471162423491478, 0.006070618983358145, -0.03551328554749489, -0.01870029792189598, 0.03822463005781174, -0.0014412320451810956, 0.013968736864626408, 0.022381877526640892, -0.03405128791928291, 0.01959078758955002, -0.012254210188984871, -0.010041275061666965, -0.021398350596427917, -0.02476094849407673, 0.007476131897419691, 0.0005897837108932436, 0.009071039967238903, 0.007675494998693466, -0.015935789793729782, 0.0013415502617135644, -0.024853983893990517, 0.011483338661491871, 0.014513663947582245, 0.02578434720635414, 0.014234554953873158, -0.006711904890835285, 0.015510480850934982, -0.010818793438374996, 0.019298387691378593, 0.02589067444205284, -0.04356757178902626, 0.01054632943123579, 0.04122837260365486, -0.009396666660904884, -0.0013232752680778503, 0.0012119640596210957, -0.02950580045580864, -0.012526674196124077, 0.011244102381169796, 0.017025643959641457, 0.024667911231517792, 0.008060931228101254, -0.01858067885041237, -0.03242979943752289, -0.0033991478849202394, -0.03333357721567154, -0.007728658616542816, -0.03397154062986374, -0.005229969508945942, 0.03009059838950634, -0.011071320623159409, 0.012114656157791615, -0.022248968482017517, -0.004186633508652449, -0.030967798084020615, -0.023671094328165054, -0.005791509989649057, -0.01044000219553709, 0.016640208661556244, 0.020149005576968193, -0.0027063596062362194, -0.018128788098692894, 0.009868494234979153, 0.019564205780625343, -0.02114582248032093, 0.012918755412101746, 0.013716209679841995, 0.02194327674806118, 0.026927364990115166, 0.00839320383965969, -0.0040404340252280235, 0.01937813311815262, 0.007103986572474241, -0.010852020233869553, 0.008260294795036316, -0.0027495550457388163, -0.0006728518637828529, -0.024468548595905304, 0.001079885638318956, 0.007987831719219685, -0.00776188587769866, 0.000250242737820372, -0.015350989997386932, 0.023259077221155167, 0.031233616173267365, 0.01294533722102642, -0.015164917334914207, -0.0045587788335978985, -0.010320384055376053, -0.016547171398997307, 3.2941705285338685e-05, 0.0013407196383923292, 0.009197303093969822, -0.0033044503070414066, -0.01779651641845703, -0.0037480341270565987, 0.00040204974357038736, 0.008140676654875278, 0.013649755157530308, -0.004811306018382311, -0.0007177086663432419, 0.006718550343066454, 0.023657802492380142, 0.028841255232691765, -0.020853422582149506, -0.003944074735045433, -0.026063457131385803, 0.02518625743687153, 0.002631598385050893, 0.005362878553569317, 0.027831146493554115, -0.020228751003742218, 0.0025551756843924522, -0.03051590733230114, 0.007077404763549566, -0.027884310111403465, -0.011908646672964096, 0.01427442766726017, -0.020800258964300156, -0.01602882705628872, -0.020707223564386368, 0.004891051445156336, -0.008193840272724628, -0.010293802246451378, 0.010998220182955265, -0.0009494686964899302, 0.023418566212058067, -0.014340882189571857, -0.012473510578274727, -0.004163374658674002, -0.019524333998560905, 0.021916694939136505, -0.0015085171908140182, 0.02854885533452034, 0.022089477628469467, 0.02312616817653179, -0.0003227196866646409, -0.025119801983237267, 0.011337138712406158, 0.019524333998560905, 0.023990076035261154, 0.010187475010752678, 0.023617930710315704, -0.004043756518512964, -0.03253612667322159, 0.0058878688141703606, -0.0016597012290731072, -0.02796405553817749, 0.008665666915476322, 0.020840132609009743, -0.015550353564321995, -0.013702918775379658, 0.016042117029428482, -0.014394045807421207, 9.002508886624128e-05, -0.002055105520412326, 0.011689347214996815, -0.04643840715289116, 0.010905183851718903, -0.014992136508226395, -0.012812428176403046, -0.008213777095079422, 0.009011230431497097, -0.01838131621479988, 0.03397154062986374, -0.019803442060947418, -0.018301570788025856, -0.011835547164082527, 0.00993494875729084, 0.03343990445137024, 0.01843447983264923, -0.03431710600852966, -0.016653498634696007, 0.03708161413669586, -0.009057749062776566, -0.02583751082420349, -0.003083488903939724, -0.005748314782977104, 0.024029947817325592, -0.019099025055766106, -0.009609321132302284, 0.0035087978467345238, 0.016321226954460144, 0.018341442570090294, 0.0005075462977401912, -0.004103565588593483, -0.014739609323441982, 0.012061492539942265, 0.006502573378384113, 0.00961596705019474, 0.018833206966519356, -0.010752338916063309, -0.003146620700135827, -0.0024422029964625835, 0.003131668549031019, -0.008479594253003597, -0.008811866864562035, 0.013928864151239395, -0.011051383800804615, -0.01107796560972929, -0.011995038017630577, 0.0031250230967998505, 0.0018407898023724556, 0.0017510761972516775, 0.023019840940833092, 0.014832645654678345, 0.03301459923386574, -0.030223507434129715, 0.02061418630182743, -0.014606700278818607, 0.012958628125488758, -0.013098183088004589, 0.02034836821258068, -0.01107796560972929, -0.00020393225713633, 0.017397789284586906, -0.0006325637805275619, 0.006977722980082035, -0.012400410138070583, 0.013231092132627964, 0.003485538763925433, -0.013536782003939152, -0.005469205789268017, -0.00030340635566972196, 0.006200205069035292, 0.003990592900663614, -0.004173342604190111, -0.029107073321938515, -0.003095118561759591, -0.008472949266433716, 0.025013474747538567, 0.05311043933033943, 0.01171592902392149, 0.0024870599154382944, 0.02284705825150013, 0.018288278952240944, -0.0007812557741999626, -0.02535903826355934, -0.004675074480473995, -0.004734883550554514, -0.0061835916712880135, 0.015164917334914207, -0.008645731024444103, -0.03394496068358421, 0.011217520572245121, -0.015962371602654457, 0.03694870322942734, 0.000539942819159478, -0.008426430635154247, -0.00020455526828300208, 0.019192060455679893, 0.002882464090362191, 0.01822182536125183, -0.006213495973497629, -0.019949642941355705, 0.01208807434886694, 0.0024056530091911554, -0.02667483687400818, -0.026076747104525566, -0.026555219665169716, 0.028894418850541115, 0.027884310111403465, 0.00652583222836256, 0.0018574034329503775, -0.033094342797994614, -0.021052787080407143, -9.973367559723556e-05, -0.015949081629514694, 0.01826169714331627, 0.03662972152233124, -0.004917633254081011, 0.010852020233869553, 0.040670156478881836, 0.002799395937472582, 0.00363506143912673, -0.02652863785624504, 0.0035420251078903675, 0.006917913910001516, 0.03546012192964554, -0.00796124991029501, -0.005007346626371145, -0.013231092132627964, -0.014513663947582245, 0.005146901123225689, -0.019883187487721443, 0.007190377451479435, 0.009915011934936047, -0.012227628380060196, 0.018673716112971306, -0.012506737373769283, -0.012420346960425377, 0.028096964582800865, -0.01113112922757864, -0.005166837479919195, -0.0008385727414861321, 0.002988791326060891, -0.01710538938641548, 0.004226506222039461, 0.003571929642930627, -0.0040105292573571205, -0.020175587385892868, -0.005921096075326204, -0.01541744451969862, -0.0070707593113183975, -0.0051900967955589294, -0.018407898023724556, -0.015324408188462257, 0.0009768812451511621, 0.014141518622636795, 0.006057328078895807, 0.0007172932964749634, -0.014633282087743282, 0.01816866174340248, -0.020906586199998856, 0.013822536915540695, -0.04675738885998726, -0.012905464507639408, 0.017504116520285606, 0.027126727625727654, -0.013875700533390045, -0.011529856361448765, 0.023259077221155167, -0.002666486892849207, 0.011204229667782784, -0.03205765411257744, 0.003367581870406866, -0.017490824684500694, 0.02578434720635414, 0.0002961378777399659, -0.018726879730820656, -0.006691968534141779, 0.023990076035261154, 0.01788955181837082, 0.012633001431822777, -0.04011193662881851, -0.012041555717587471, -0.021212277933955193, 0.00887167640030384, -0.00663215946406126, 0.006755100097507238, 0.002435557544231415, 0.0075891041196882725, 0.0070707593113183975, -0.03607150539755821, 0.0012817411916330457, 0.18830548226833344, 0.001090684556402266, 0.013968736864626408, 0.007914731279015541, -0.008645731024444103, 0.021491385996341705, 0.011197583749890327, 0.010107729583978653, -0.016175026074051857, -0.0008061762200668454, -0.03535379469394684, 0.0037779384292662144, -0.01889966055750847, 0.010792211629450321, 0.0026432278100401163, -0.010665947571396828, 0.022009732201695442, -0.04649157077074051, -0.025864092633128166, -0.0022461621556431055, -0.0026963914278894663, 0.0022461621556431055, -0.020906586199998856, -0.02498689293861389, 0.03684237599372864, 0.003538702381774783, -0.0039839474484324455, 0.015537062659859657, 0.011649474501609802, -0.007170441094785929, -0.015776298940181732, 0.0035087978467345238, 0.003920815885066986, -0.010712466202676296, -0.03056907095015049, 0.00027765522827394307, 0.017650315538048744, -0.004994056187570095, 0.044497936964035034, -0.03445001319050789, 0.017969297245144844, -0.012154528871178627, -0.023870456963777542, -0.013928864151239395, 0.013277609832584858, 0.011529856361448765, -0.004894374404102564, -0.04494982585310936, -0.012307373806834221, 0.0041201794520020485, -0.022235676646232605, -0.015231371857225895, 0.023617930710315704, 0.012593128718435764, 0.005379491951316595, -0.019404714927077293, -0.0007675494998693466, -0.005808123853057623, 0.0050571877509355545, -0.005309714935719967, -0.011137775145471096, 0.02539891190826893, -0.018461061641573906, 0.005678537301719189, -0.0007953773601911962, 0.042637210339307785, -0.021424932405352592, -0.008459658361971378, -0.019564205780625343, -0.01448708213865757, -0.001169599243439734, 0.005449269432574511, -0.01602882705628872, -0.007422968279570341, -0.03546012192964554, -0.020388241857290268, 0.04622575268149376, 0.03460950404405594, 0.009954884648323059, 0.013324128463864326, -0.009223884902894497, -0.03072856180369854, -0.0027628459502011538, -0.003555316012352705, -0.015111753717064857, -0.018713587895035744, 0.02534574829041958, -0.007741949521005154, -0.028309619054198265, -0.006871395744383335, -0.015297826379537582, -0.03386521339416504, -0.01293869223445654, -0.0005914450739510357, 0.014513663947582245, 0.01602882705628872, -0.013995318673551083, 0.0011156050022691488, -0.006884686648845673, 0.009522930718958378, -0.03147285431623459, 0.03599175810813904, -0.014367463998496532, 0.019776860252022743, 0.022754022851586342, 0.008971357718110085, -0.006343082524836063, 0.004675074480473995, 0.007728658616542816, -0.01459340937435627, 0.01640097238123417, -0.020069260150194168, -0.00604403717443347, -0.013091537170112133, 0.005744991824030876, -0.01384911872446537, -0.024535002186894417, -0.023405276238918304, 0.001206979970447719, -0.021863531321287155, -0.0024787529837340117, -0.020786968991160393, -0.012061492539942265, 0.005901159718632698, 0.010134311392903328, -0.002560159657150507, -0.019471170380711555, 0.004269701894372702, -0.02268756739795208, 0.004960828926414251, 0.023950202390551567, -0.028469109907746315, 0.021026205271482468, -0.004675074480473995, 0.002958886791020632, -0.026010293513536453, -0.007117277476936579, -0.032722197473049164, -0.015829462558031082, -0.0027362641412764788, -0.020215459167957306, 0.018075624480843544, -0.028841255232691765, 0.010320384055376053, 0.02732609212398529, 0.007755240425467491, 0.02578434720635414, -0.02486727572977543, -0.002659841440618038, -0.04074990004301071, -0.004887728951871395, 0.002207950921729207, -0.004957505967468023, -0.025425493717193604, 0.011456756852567196, -0.021650876849889755, 0.015537062659859657, -0.011004866100847721, 0.006721872836351395, 0.012858946807682514, -0.026010293513536453, -0.005070478655397892, 0.004030465614050627, 0.0030818276572972536, 0.00663215946406126, -0.0024521711748093367, -0.16640207171440125, 0.00760239502415061, 0.0017942716367542744, -0.024255894124507904, 0.03822463005781174, 0.002277728170156479, 0.04521564394235611, 0.0005864609847776592, -0.012028264813125134, 0.014526954852044582, -0.02050785906612873, -0.014048482291400433, -0.015178208239376545, -0.014766191132366657, -0.010765629820525646, 0.012101365253329277, -0.004492324311286211, 0.01741107925772667, 0.03511456027626991, 0.006489282473921776, 0.03625757619738579, -0.02583751082420349, 0.02571789361536503, 0.01687944307923317, -0.001923857838846743, -0.00846630334854126, -0.03849044814705849, -0.00894477590918541, 0.0022561303339898586, -0.03306776285171509, 0.01342380978167057, 0.02050785906612873, 0.016108572483062744, -0.014261136762797832, 0.005977582652121782, -0.013437100686132908, -0.03394496068358421, -0.02567801997065544, -0.022979967296123505, 0.003448988776654005, 0.020813550800085068, 0.001995296450331807, -0.031074125319719315, -0.006386277731508017, -0.003131668549031019, 0.010154248215258121, -0.0022395167034119368, -0.017823098227381706, 0.0035951887257397175, 0.014247845858335495, 0.022142641246318817, -0.0037015159614384174, -0.01059949304908514, -0.004847856238484383, 0.041254956275224686, -2.9755262858088827e-06, -0.03227030858397484, -0.003184832166880369, -0.016906024888157845, -0.00979539379477501, 0.024202730506658554, -0.03290827199816704, 0.015377571806311607, 0.01520479004830122, -0.00423315167427063, -0.008147322572767735, -0.006539123132824898, 0.019471170380711555, -0.05164844170212746, 0.005170160438865423, 0.009064394049346447, -0.01241370104253292, 0.016533881425857544, -0.01880662515759468, 0.02796405553817749, 0.010008048266172409, -0.020999623462557793, 0.023205913603305817, -0.023724257946014404, -0.007329931948333979, -0.0036583205219358206, 0.03312092646956444, 0.011363720521330833, 0.002784443786367774, 0.03434368595480919, 0.020335078239440918, -0.008107449859380722, 0.011483338661491871, -0.026169784367084503, -0.02369767613708973, 0.02817671000957489, -0.01794271543622017, -0.032403215765953064, -0.011908646672964096, 0.018873078748583794, 0.0022660985123366117, 0.007064113859087229, -0.020149005576968193, 0.011742510832846165, -0.0037978747859597206, -0.007728658616542816, -0.018088916316628456, 0.0012028265045955777, -0.007436259184032679, 0.007715367712080479, -0.002543546026572585, -0.022993259131908417, 0.017331333830952644, 0.03343990445137024, 0.0016065376112237573, -0.012991855852305889, -0.01022734772413969, 0.014021900482475758, 0.016919316723942757, -0.003307773033156991, -0.001222762861289084, -0.00993494875729084, -0.01198174711316824, -0.012240919284522533, -0.011177647858858109, 0.04665106162428856, -0.01683957129716873, 0.008007767610251904, 0.0027811210602521896, 0.006688645575195551, -0.006924559362232685, -0.12482813745737076, -0.029798200353980064, 0.015005426481366158, 0.022355295717716217, 0.022926803678274155, 0.010160893201828003, -0.009768811985850334, 0.031818415969610214, -0.005489142145961523, 0.017716770991683006, 0.0004290468932595104, 0.008971357718110085, -0.013350709341466427, -0.016972480341792107, -0.010094438679516315, -0.01160960178822279, -0.002649873262271285, -0.00684481393545866, -0.0034190842416137457, 0.05340283736586571, 0.009788748808205128, 0.00903116725385189, -0.039394229650497437, -0.019723696634173393, -0.014992136508226395, 0.023352112621068954, -0.03147285431623459, -0.010253929533064365, 0.001090684556402266, -0.002845914103090763, -0.01326431892812252, -0.010978284291923046, -0.008180549368262291, 0.009702357463538647, 0.01017418410629034, 0.0001260558929061517, -0.010260575450956821, -0.019670533016324043, 0.02892100065946579, 0.005804800894111395, -8.177018753485754e-05, -0.012819074094295502, 0.007702076807618141, -0.0017394466558471322, 0.019524333998560905, 0.0014661524910479784, -0.005389460362493992, 0.016972480341792107, 0.017650315538048744, -0.006562382448464632, -0.011636183597147465, -0.02876150980591774, 0.0005665246280841529, 0.005917773582041264, 0.00039208156522363424, -0.013450391590595245, 0.018607260659337044, -0.00310176401399076, -0.012373828329145908, 0.025744475424289703, 0.011483338661491871, -0.01395544596016407, -0.008147322572767735, 0.029160236939787865, 0.021438222378492355, 0.020268622785806656, -0.048751022666692734, -0.021597713232040405, 0.03468925133347511, -0.014992136508226395, -0.019085733219981194, 0.02923998236656189, -0.005974259693175554, 0.02668812870979309, -0.009915011934936047, 0.015882626175880432, -0.009735585190355778, -0.005897837225347757, 0.008532757870852947, 0.006489282473921776, -0.024481838569045067, -0.013463682495057583, 0.0022096121683716774, -0.007648913189768791, -0.008419785648584366, -0.008898258209228516, 0.0027379256207495928, -0.006891332101076841, 0.03365255892276764, -0.021119240671396255, 0.01432759128510952, 0.003704838687554002, 0.016268063336610794, -0.014287718571722507, -0.02690078318119049, 0.004734883550554514, 0.024295765906572342, -0.013410518877208233, -0.003964011091738939, -0.004442483652383089, -0.01879333332180977, -0.031871579587459564, -0.03391837701201439, 0.00947641208767891, -0.00982862152159214, -0.011111193336546421, 0.0012485140468925238, 0.009356793947517872, 0.010101084597408772, -0.01459340937435627, 0.008047640323638916, -0.00048594854888506234, -0.03040958009660244, 0.011921937577426434, 0.01624148152768612, -0.018873078748583794, 0.020002804696559906, 0.011695992201566696, 0.01251338329166174, -0.03423735871911049, 0.040085356682538986, 0.019697114825248718, 0.005386137403547764, -0.00406037038192153, 0.003518766025081277, -0.0031133934389799833, -0.007622331380844116, 0.0072036683559417725, -0.007702076807618141, 0.022448331117630005, -0.018235115334391594, -0.032934851944446564, 0.007130568381398916, -0.01091847475618124, 0.01176909264177084, 0.01875346153974533, -0.01293869223445654, 0.006638804916292429, 0.016254771500825882, 0.012127947062253952, 0.025491947308182716, 0.0018208534456789494, -0.011337138712406158, -0.017185134813189507, 0.02391033060848713, -0.0005777388578280807, 0.004186633508652449, -0.009735585190355778, -0.018673716112971306, 0.026488766074180603, 0.003439020598307252, -0.009762166999280453, 0.02263440378010273, 2.743844197539147e-05, -0.015284535475075245, -0.01355007290840149, 0.013663046061992645, -0.018726879730820656, 0.014885809272527695, -0.013403872959315777, 0.013536782003939152, 0.006090555340051651, 0.04165368154644966, -0.003967334050685167, 0.046890296041965485, -0.007755240425467491, 0.006392923183739185, -0.02721976488828659, -0.03025008924305439, -0.00974223017692566, -0.022036314010620117, 0.013011791743338108, -0.015842754393815994, -0.014619991183280945, -0.000851448334287852, 0.012500092387199402, 0.020228751003742218, 0.024428674951195717, 0.00334764551371336, 0.026169784367084503, -0.010240638628602028, 0.023990076035261154, 0.03583226725459099, 0.02098633162677288, -0.022182513028383255, 0.01153650227934122, 0.03062223456799984, 0.016427554190158844, -0.01262635551393032, -0.013410518877208233, -0.0013805923517793417, -0.0037114841397851706, 0.022647695615887642, 0.003432375146076083, -0.01795600727200508, -0.011995038017630577, 0.019032569602131844, 0.03822463005781174, -0.00045895142829976976, 0.00110895955003798, -0.01832815259695053, 0.009589385241270065, 0.024189438670873642, -0.0007189546595327556, -0.011529856361448765, 0.002322584856301546, -0.03378546983003616, 0.013915573246777058, -0.011968456208705902, -0.03389179706573486, -0.012559900991618633, 0.020707223564386368, -0.03386521339416504, 0.01219440158456564, 0.042371392250061035, 0.010360256768763065, -0.013231092132627964, -0.00439264252781868, -0.01737120747566223, -0.03383863344788551, -0.02801721915602684, 0.025638148188591003, -0.007117277476936579, 0.025172965601086617, 0.03561961278319359, -0.001967053394764662, 0.01656046323478222, 0.010340320877730846, 0.019936351105570793, -0.010659302584826946, -0.0010092777665704489, -0.00018461891158949584, 0.0026731323450803757, 0.014340882189571857, -0.02950580045580864, -0.02668812870979309, 0.015882626175880432, -0.03585885092616081, 0.011456756852567196, -0.0022461621556431055, -0.002518625697121024, 0.049016840755939484, 0.018780043348670006, -0.012393765151500702, 0.010506456717848778, 0.010287157259881496, -0.0054193646647036076, 0.0028143483214080334, -0.002038491889834404, -0.004582038149237633, -0.03601834177970886, 0.013290900737047195, 0.00021576946892309934, -0.005422687623649836, -0.04829913377761841, -0.0034523115027695894, 0.009569448418915272, -0.01438075490295887, 0.01515162643045187, -0.02316603995859623, 0.0028077028691768646, 0.03455634042620659, 0.02242174930870533, -0.00031212851172313094, -0.015563644468784332, -0.03051590733230114, 0.0015251308213919401, 0.029426055029034615, 0.0029223368037492037, -0.04952189698815346, -0.0023358757607638836, -0.006718550343066454, -0.03237663581967354, -0.030542489141225815, -0.019577497616410255, 0.007688785903155804, 0.020627478137612343, 0.014606700278818607, 0.001152154989540577, 0.01049316581338644, 0.015616808086633682, -0.003910847473889589, 0.0033044503070414066, -0.010778920724987984, -0.05768251046538353, 0.004249765537679195, 0.004336156416684389, -0.008213777095079422, 0.0037812611553817987, -0.031977906823158264], "248058b8-0d54-48db-9a21-55b77aa1eb04": [0.00611528055742383, 0.003379144473001361, 0.005683259107172489, -0.012277446687221527, 0.005515808705240488, 0.003904938232153654, -0.0016259412514045835, -0.0400540828704834, 0.0029454485047608614, -0.0027495319955050945, 0.025023754686117172, 0.031212713569402695, 0.00257873279042542, 0.006165515631437302, -0.0026473873294889927, -0.00745488191023469, 0.02077721804380417, -0.0119425468146801, 0.02107192948460579, 0.004762283060699701, 0.002530172234401107, 0.03158780187368393, 0.006058347411453724, -0.03560660406947136, -0.023175103589892387, 0.01677181012928486, 0.010777093470096588, -0.009531264193356037, -0.0077629899606108665, -0.015351831912994385, 0.023965468630194664, 0.004125972278416157, -0.035043973475694656, -0.03394550085067749, -0.02030835673213005, 0.0016594312619417906, -0.010756999254226685, 0.0021014998201280832, 0.009517868049442768, -0.005817219149321318, 0.05304821580648422, 0.009819278493523598, -0.01046228688210249, 0.007541955914348364, -0.018298955634236336, 0.019330447539687157, 0.01722727343440056, -0.04996713250875473, -0.027046551927924156, 0.026149019598960876, 0.0289353895932436, 0.03241835534572601, -0.06022847816348076, -0.006409992929548025, -0.019464408978819847, 0.025023754686117172, 0.0036906017921864986, 0.012136789038777351, -0.0009494425030425191, -0.005371801555156708, 0.0169057697057724, 0.0018536734860390425, -0.00042804452823475003, 0.008057702332735062, -0.017133502289652824, -0.0011177299311384559, 0.017321046441793442, 0.024233389645814896, -0.016035029664635658, 0.014266755431890488, 0.029846319928765297, 0.030623288825154305, 0.010515871457755566, 0.021741731092333794, -0.002310812473297119, -0.0246218740940094, 0.00018492779054213315, 0.03115912899374962, -0.015539376065135002, 0.0028466531075537205, 0.007595540024340153, -0.029712358489632607, -0.00977909006178379, 0.007843365892767906, 0.04286724701523781, -0.022652659565210342, 0.004491013940423727, 0.029256895184516907, -0.008760993368923664, -0.02419320121407509, 0.02562657557427883, 0.024273578077554703, 0.012846777215600014, 0.02073702961206436, -0.018499895930290222, 0.011011523194611073, -0.01348978653550148, 0.034186627715826035, 0.01103831548243761, -0.011446894146502018, -0.01430694293230772, 0.018031034618616104, -0.015217872336506844, -0.0019106065155938268, -0.018004242330789566, -0.0009879560675472021, -0.005428734701126814, -0.0037877229042351246, 0.021018346771597862, -0.014628447592258453, -0.004557993728667498, 0.03815184906125069, 0.01052926667034626, -0.030757248401641846, 0.02668485976755619, -0.00534166069701314, 0.012136789038777351, -0.00904230959713459, -0.029926694929599762, 0.020214585587382317, 0.016838788986206055, -0.01851329207420349, 0.015981445088982582, -0.02266605570912361, 0.014186378568410873, -0.006044951267540455, -0.0031765298917889595, -0.016396721825003624, -0.030944792553782463, -0.013362524099647999, 0.02460847795009613, -0.0014626772608608007, 0.01170811615884304, 0.008466280996799469, -0.0007564561674371362, 0.01481599174439907, -0.012953945435583591, -0.005860756151378155, -0.023898489773273468, -0.02239813469350338, 0.020951366052031517, 0.01777651160955429, 0.012625743634998798, 0.020375337451696396, 0.010020218789577484, -5.499691906152293e-05, 0.014722219668328762, -0.0035164537839591503, -0.01646370068192482, -0.007575445808470249, 0.010877563618123531, -0.0038312601391226053, 0.0016560822259634733, -0.013931854628026485, 0.003189925802871585, 0.023309065029025078, -0.01318837609142065, -0.0066946581937372684, 0.02281341142952442, 0.007541955914348364, 0.017964055761694908, 0.018888380378484726, -0.015271455980837345, 0.00830552913248539, 0.007093189284205437, 0.034776054322719574, 0.05119956657290459, -0.0015346808359026909, -0.014333735220134258, 0.02238474041223526, -0.0021014998201280832, 0.01333573181182146, -0.027046551927924156, -0.002213691361248493, 0.016128800809383392, 0.0005860755918547511, -0.025130921974778175, 0.00022961605282034725, -0.027997668832540512, 0.008138078264892101, 0.013355826027691364, -0.012853475287556648, 0.02179531566798687, 0.0314270481467247, -0.03008744679391384, -0.0059846690855920315, 0.00045295272138901055, 0.003032522741705179, 0.004075737204402685, 0.012471688911318779, -0.008104588836431503, 0.03257910534739494, 0.007682614028453827, 0.027381453663110733, -0.632291853427887, -0.009765693917870522, -0.004996713250875473, -0.029122935608029366, 0.0063463617116212845, 0.013931854628026485, 0.026725048199295998, 0.021125514060258865, -0.02164795808494091, 0.029310479760169983, 0.0229741632938385, 0.0007811550749465823, -0.0009025564650073647, -0.0063162208534777164, 0.030918000265955925, -0.03217722475528717, -0.023469816893339157, -0.03247193992137909, -0.01150047779083252, 0.020348545163869858, 0.013998834416270256, 0.027542205527424812, -0.02164795808494091, -5.6880733609432355e-05, -0.0034243562258780003, 0.018339144065976143, 0.009524566121399403, -0.00012872731895186007, 0.022036442533135414, 0.03651753440499306, 0.007428089622408152, -0.011835378594696522, 0.010060406289994717, -0.0023141615092754364, 0.03292740136384964, -0.011185672134160995, 0.01081058382987976, 0.005110579542815685, 0.016396721825003624, 0.05562024936079979, -0.023657361045479774, 0.010797187685966492, 0.043054789304733276, 0.0026189207565039396, -0.00829213298857212, 0.004112576134502888, 0.013784498907625675, 0.026899196207523346, -0.0012073158286511898, -0.007769688032567501, 0.012913757935166359, 0.0034293795470148325, -8.665546920383349e-05, -0.012565460987389088, 0.007535257842391729, -0.0006304499111138284, 0.019946664571762085, -0.016209177672863007, -0.027461828663945198, -0.027649372816085815, 0.0012717840727418661, 0.005683259107172489, -0.01780330203473568, 0.008848067373037338, -0.00719365943223238, 0.04460872709751129, -0.009591545909643173, -0.002995683578774333, -0.006698007229715586, -0.004159462172538042, 0.02550601027905941, 0.026282979175448418, -0.019464408978819847, 0.01643691025674343, 0.018205182626843452, 0.04259932413697243, 0.012022922746837139, 0.006959229242056608, 0.017990846186876297, 0.016503889113664627, 0.0031229457817971706, -0.013054415583610535, -0.019008943811058998, -0.01600823737680912, 0.035660188645124435, -0.012485085055232048, 0.0012424803571775556, 0.022344551980495453, 0.02492998167872429, 0.01172151230275631, -0.006356408819556236, -0.006728148087859154, -0.021313058212399483, -0.015124100260436535, 0.001619243179447949, -0.0014836086193099618, -0.00603825319558382, 0.0013680679257959127, 0.019504597410559654, -0.031802136451005936, -0.0055091106332838535, -0.02874784544110298, -0.0034009129740297794, -0.006986021529883146, -0.012143487110733986, -0.0005915177753195167, 0.02176852338016033, 0.002315836027264595, 0.015110704116523266, -0.00897532980889082, -0.010509173385798931, -0.043671004474163055, 0.00904230959713459, 0.010549360886216164, 0.027836916968226433, -0.026591088622808456, 0.018151599913835526, -0.011935848742723465, 0.00664107408374548, -0.024996962398290634, 0.019049132242798805, 0.024099430069327354, -0.006654470227658749, -0.013094604015350342, 0.020884385332465172, 0.008104588836431503, 0.033114947378635406, -0.03517793491482735, -0.019785912707448006, -0.0179238673299551, -0.002315836027264595, 0.010978033766150475, 0.009745600633323193, -0.013972043059766293, -0.015392020344734192, -0.008747597225010395, 0.014641843736171722, -0.014266755431890488, 0.01677181012928486, -0.01584748551249504, -0.013020926155149937, 0.002374443458393216, 0.027997668832540512, -0.022746432572603226, -0.00500006228685379, -0.014427507296204567, -0.02135324664413929, 0.0005885873688384891, -0.010127387009561062, 0.0010097245685756207, -0.01706652157008648, -0.017990846186876297, -0.03946465626358986, 0.010629736818373203, 0.002262251917272806, -0.002146711340174079, 0.012766401283442974, -0.004048945382237434, -0.003948475234210491, -0.013054415583610535, -0.005137371364980936, 0.030971584841609, -0.013074509799480438, -0.0029839621856808662, -0.011145483702421188, -0.0373212955892086, -0.026323167607188225, 0.03959861770272255, -0.007287431508302689, -0.027649372816085815, 0.014588259160518646, -0.014025626704096794, -0.0023576985113322735, 0.003384168026968837, -0.014601655304431915, 0.0022756478283554316, -0.02075042575597763, -0.0044039394706487656, -0.01229754090309143, 0.0130477175116539, 0.0031195967458188534, 0.028828222304582596, -0.005864105187356472, -0.016075216233730316, 0.012652534991502762, 0.004377147648483515, 0.018593667075037956, -0.01572692021727562, -0.014280150644481182, -0.001163778710179031, 0.005723447073251009, 0.020670048892498016, -0.02226417511701584, 0.024688854813575745, 0.010067104361951351, 0.012853475287556648, 0.014119398780167103, 0.012257352471351624, 0.008513166569173336, 0.03335607424378395, 0.01363714225590229, 0.00888155773282051, 0.0042264424264431, -0.03509755805134773, 0.003573386697098613, -0.007990722544491291, 0.03332928195595741, 0.014856179244816303, 0.018566874787211418, -0.005411989521235228, 0.0006404969026334584, -0.023201895877718925, -0.018151599913835526, -0.019933268427848816, 0.0176425501704216, 0.008606938645243645, -0.00786346010863781, 0.026175811886787415, 0.010690019465982914, 0.0018201834755018353, 0.012384614907205105, -0.007535257842391729, 0.0033473290968686342, 0.004534550942480564, -0.0014124421868473291, -0.01432033907622099, -0.00897532980889082, -0.01674501784145832, -0.022197196260094643, -0.035928111523389816, 0.013081207871437073, 0.003901589196175337, -0.00021255706087686121, -0.012987435795366764, 0.024420933797955513, 0.018633855506777763, 0.031828928738832474, -0.028292382135987282, 0.020201189443469048, -0.024702250957489014, -0.026577692478895187, 0.008660523220896721, 0.01776311546564102, -0.020964762195944786, 0.017093313857913017, -0.005231143441051245, 0.07105246186256409, -0.006507114041596651, -0.012049715034663677, 0.009296833537518978, 0.013442900031805038, 0.017575571313500404, -0.016798602417111397, -0.000597378530073911, 0.004149415530264378, -0.0038814949803054333, 0.000648450804874301, -0.008325622417032719, 0.028345966711640358, 0.005110579542815685, -0.004273328464478254, -0.014213170856237411, 0.0056330240331590176, 0.008854765444993973, 0.015030328184366226, -0.01036851480603218, -0.018607063218951225, -0.04843998700380325, -0.026349959895014763, -0.009537962265312672, -0.013958646915853024, -0.03362399712204933, -0.004779028240591288, 0.0062057035975158215, 0.033436451107263565, 0.008627032861113548, 0.025988267734646797, 0.004812518134713173, -0.007428089622408152, -0.002786370925605297, -0.006704704836010933, -0.02092457376420498, 0.0161689892411232, 0.027515413239598274, -0.0023443023674190044, 0.0036403669510036707, -0.014615051448345184, -0.0061085824854671955, 0.026443731039762497, 0.02845313400030136, -0.009993426501750946, -0.00823185034096241, 0.0042331404983997345, -0.01854008436203003, 0.01148708164691925, 0.005499063991010189, 0.01986628957092762, -0.010321629233658314, 0.04420684650540352, -0.001836928422562778, 0.012686025351285934, -0.00678508123382926, -0.013918458484113216, -0.002210342325270176, 0.036544326692819595, -0.0052110496908426285, -0.00018252068548463285, -0.005555996671319008, -0.014802595600485802, -0.009390605613589287, 0.022920580580830574, -0.011868868954479694, -0.017696134746074677, -0.02298755943775177, 0.0294980239123106, -0.010937845334410667, 0.0077027082443237305, -0.0016945957904681563, 0.02209002710878849, -0.01614219695329666, 0.0011847099522128701, -0.002136664232239127, -0.02284020371735096, 0.009484377689659595, 0.039812952280044556, 0.003737487830221653, -0.005237841513007879, 0.016945958137512207, -0.013958646915853024, -0.021848898380994797, -0.02166135422885418, -0.008211757056415081, 0.035499438643455505, -0.013402712531387806, 0.011734908446669579, 0.008499771356582642, 0.01824537105858326, -0.006781732197850943, 0.022317759692668915, 0.01192915067076683, -0.016517285257577896, -0.014440903440117836, 0.005927736405283213, -0.001798414858058095, 0.0072271497920155525, -0.002942099701613188, 0.0176425501704216, 0.028506718575954437, -0.011855472810566425, 0.0018419519765302539, 0.016490492969751358, -0.0050703915767371655, -0.018941963091492653, -0.01599484123289585, -0.009430794045329094, 0.01572692021727562, -0.0016033354913815856, 0.03220401704311371, -0.0072271497920155525, 0.022049838677048683, 0.0003242254024371505, 0.005515808705240488, 0.005097183398902416, -0.01987968571484089, -0.002863398054614663, 0.01643691025674343, 0.007816574536263943, -0.024996962398290634, -0.0015363553538918495, -0.003295419504866004, -0.03022140823304653, 0.008546656928956509, -0.0108909597620368, 0.005328264553099871, 0.02417980507016182, 0.0006120303878560662, 0.0021483858581632376, -0.024086033925414085, -0.009537962265312672, 0.005452177952975035, 0.004290073644369841, -0.022197196260094643, -0.017240669578313828, 0.002916982164606452, -0.016718225553631783, -0.014561467804014683, 0.000877438928000629, -0.0006070068920962512, 0.014414111152291298, -0.018888380378484726, -0.0012516900897026062, 0.023456420749425888, -0.013462994247674942, -0.02000024914741516, 0.020804010331630707, -0.03185572102665901, -0.02568015828728676, -0.031051959842443466, 0.012974039651453495, 0.031962890177965164, -0.010944543406367302, 0.0009628385305404663, 0.015271455980837345, 0.010341722518205643, -0.0028818175196647644, -0.023242084309458733, -0.006403294857591391, -0.01969214156270027, -0.0005249563255347311, 0.0130477175116539, 0.021232683211565018, 0.0058875479735434055, -0.02182210609316826, 0.010978033766150475, 0.005867454223334789, 0.027327869087457657, -0.02105853334069252, -0.028131630271673203, -0.014119398780167103, 0.023630568757653236, 0.00020575440430548042, 0.019839497283101082, 0.018486499786376953, -0.018941963091492653, 0.003904938232153654, -0.007327619940042496, -0.0299534872174263, -0.031105544418096542, -0.011681323871016502, -0.0023911884054541588, 0.007903648540377617, 0.01722727343440056, -0.008238548412919044, -0.01821857877075672, 0.028292382135987282, -0.032847028225660324, 0.021607771515846252, 0.02877463772892952, -0.02255888842046261, -0.007689312100410461, -0.010321629233658314, 0.014333735220134258, -0.0056062317453324795, -0.029122935608029366, 0.00512062618508935, -0.03365078568458557, 0.014119398780167103, 0.028506718575954437, -0.0243405569344759, -0.004132670350372791, -0.008265340700745583, -0.024809418246150017, -0.012304238975048065, 0.004742188844829798, 0.019986853003501892, 0.02463527023792267, 0.0018670695135369897, -0.022197196260094643, -0.026952780783176422, 0.01615559309720993, -0.031962890177965164, -0.0020211236551404, -0.03946465626358986, -0.015164287760853767, 0.025693554431200027, 0.012920456007122993, 0.004383845720440149, -0.020937969908118248, -0.009913050569593906, -0.026470523327589035, -0.021982859820127487, -0.008044306188821793, -0.012793193571269512, 0.017843490466475487, 0.010288138873875141, -0.008774389512836933, -0.026041852310299873, -0.01113208755850792, 0.024956773966550827, -0.015767108649015427, 0.030944792553782463, 0.0186606477946043, 0.00851986464112997, 0.017146898433566093, 0.013931854628026485, -0.013590256683528423, 0.019933268427848816, 0.012156883254647255, -0.010087198577821255, 0.027649372816085815, -0.0011562434956431389, 0.010777093470096588, -0.01884819194674492, -0.00942409597337246, -0.013516577892005444, -0.007669217884540558, 0.010777093470096588, 0.0051005324348807335, 0.021326454356312752, 0.031078752130270004, -0.003305466379970312, -0.0031279693357646465, 0.0016234294744208455, -0.016664640977978706, -0.02936406247317791, 0.015968048945069313, -0.005783729255199432, 0.021085325628519058, -0.014842784032225609, -0.014949951320886612, 0.002771300496533513, 0.00013333219976630062, 0.002029496245086193, 0.0034829636570066214, 4.523771349340677e-05, -0.005696654785424471, -0.0021065231412649155, 0.03188251331448555, 0.02238474041223526, -0.020978158339858055, 0.011225859634578228, -0.034910012036561966, -0.0030542912427335978, -0.011031617410480976, 0.005646420177072287, 0.02697957307100296, -0.006383200641721487, 0.0192902609705925, -0.03086441569030285, 0.002714367350563407, -0.010167574509978294, -0.013945250771939754, 0.021741731092333794, -0.010047010146081448, -0.00637985160574317, 0.0006534743006341159, 0.0010047010146081448, 0.003710696008056402, 0.014106002636253834, 0.02444772608578205, 0.004832611884921789, 0.013543370179831982, -0.024273578077554703, -0.009437492117285728, -0.004655114840716124, -0.014882971532642841, 0.026149019598960876, -0.0011361493961885571, 0.02463527023792267, 0.02356358803808689, 0.011205765418708324, 0.004072388168424368, -0.012880267575383186, 0.0075620501302182674, 0.008921745233237743, 0.024260181933641434, 0.03083762526512146, 0.009805882349610329, -0.003935079090297222, -0.03571377322077751, 0.017535382881760597, 0.00792374275624752, -0.019986853003501892, 0.012277446687221527, 0.00752186169847846, -0.024099430069327354, -0.016075216233730316, 0.01645030453801155, -0.021380038931965828, 0.0004956524935550988, -0.009611640125513077, 0.007575445808470249, -0.036839038133621216, 0.019022339954972267, -0.027810124680399895, 0.0010959614301100373, -0.013998834416270256, 0.016075216233730316, -0.01135312207043171, 0.0358477346599102, -0.019678745418787003, -0.028667470440268517, -0.022438323125243187, 0.01811141148209572, 0.01662445440888405, 0.033114947378635406, -0.01133972592651844, -0.019049132242798805, 0.04342987760901451, -0.0105225695297122, -0.026885800063610077, -0.015405416488647461, -0.014454299584031105, 0.029283687472343445, -0.018352540209889412, -0.010422099381685257, 0.0006258450448513031, 0.008553355000913143, 0.027394849807024002, -0.007769688032567501, -0.007260639686137438, -0.01207650639116764, -0.002389514120295644, 0.01333573181182146, 0.013643840327858925, 0.025974871590733528, -0.016262760385870934, -0.0037441859021782875, -0.01572692021727562, 0.004199650604277849, -0.005154116544872522, -0.0080844946205616, -0.006965927314013243, -0.014628447592258453, -0.00376093084923923, -0.0041058785282075405, -0.002528497716411948, 0.019169695675373077, -0.009256646037101746, -0.013302242383360863, 0.013529974035918713, 0.037723176181316376, -0.025733742862939835, 0.0415276437997818, -0.006671214941889048, 0.0014233265537768602, -0.019343843683600426, 0.0031865767668932676, 0.0027846964076161385, -0.015968048945069313, 0.034615300595760345, -0.018754418939352036, 0.003901589196175337, -0.012130090966820717, -0.0046249739825725555, 0.016061820089817047, -0.012498481199145317, -0.020227981731295586, 0.012753005139529705, 0.015606356784701347, 0.009785788133740425, -0.0023543494753539562, -0.028104837983846664, 0.00045044097350910306, -0.0019742376171052456, 0.025907890871167183, 0.03397229313850403, 0.011105295270681381, 0.0005982157308608294, 0.005622976925224066, 0.024662062525749207, -0.0045010605826973915, -0.027649372816085815, -0.00511727761477232, -0.0051976535469293594, -0.011533968150615692, 0.03541906177997589, -0.008138078264892101, -0.024996962398290634, 0.0052110496908426285, -0.01662445440888405, 0.028345966711640358, 0.006162166595458984, -0.018874984234571457, -0.014186378568410873, 0.019665349274873734, 0.002767951460555196, -0.0006639399216510355, -0.003338956506922841, -0.010107292793691158, 0.018459707498550415, 0.025385446846485138, -0.030060656368732452, -0.022599074989557266, -0.02639014832675457, 0.054200273007154465, 0.029122935608029366, 0.008359112776815891, -0.007829970680177212, -0.03161459416151047, -0.01706652157008648, -0.0154857924208045, -0.015231268480420113, 0.013603651896119118, 0.02239813469350338, -0.006409992929548025, 0.008111286908388138, 0.03295419365167618, -0.02387169748544693, 0.01824537105858326, -0.02298755943775177, -0.006440133787691593, 0.012565460987389088, 0.03292740136384964, -0.007903648540377617, -0.014333735220134258, -0.00838590506464243, -0.03204326704144478, -0.002371094422414899, -0.03217722475528717, 0.01430694293230772, 0.028828222304582596, -0.005756936967372894, -0.010468984954059124, -0.03397229313850403, -0.02488979510962963, 0.030918000265955925, 0.012645836919546127, -0.014628447592258453, -0.0007472464349120855, 0.004648416768759489, -0.003891542088240385, 0.016048425808548927, -0.0013705797027796507, -0.02207663096487522, -0.018888380378484726, 0.012498481199145317, -0.014213170856237411, -0.013918458484113216, -0.0042029996402561665, -0.011473686434328556, -0.026925988495349884, 0.01661105826497078, 0.026068642735481262, 0.02668485976755619, -0.0035432458389550447, -0.005676561035215855, 0.01748179830610752, -0.028399549424648285, 0.012498481199145317, -0.012799891643226147, -0.004564691800624132, 0.010489079169929028, 0.00867391936480999, -0.031025169417262077, -0.021540790796279907, 0.02522469498217106, -0.001049075392074883, 0.008774389512836933, -0.026430336758494377, -0.005797124933451414, -0.029283687472343445, 0.03866089507937431, -0.004842658992856741, -0.03957182541489601, 0.019370635971426964, 0.024970170110464096, 0.006764987017959356, 0.021259473636746407, -0.02802446112036705, -0.015954652801156044, -0.02148720622062683, 0.01749519445002079, -0.008030910044908524, 0.019826101139187813, -0.01430694293230772, -0.0065975370816886425, 0.006242542527616024, -0.03737488016486168, 0.0024548196233808994, 0.17329083383083344, 0.013195074163377285, 0.022357948124408722, 0.015083911828696728, -0.013235261663794518, 0.051521070301532745, 0.010623038746416569, -0.008245246484875679, -0.021112117916345596, 0.011386612430214882, -0.04018804058432579, 0.030435744673013687, -0.0215006023645401, -0.001013073604553938, 0.0009142779745161533, -0.0077629899606108665, -0.0037039979360997677, -0.05200332775712013, -0.029390854761004448, 0.0018151599215343595, -0.022210590541362762, -0.010140783153474331, -0.012565460987389088, -0.029873112216591835, 0.04495702311396599, 0.008633730933070183, 0.0007886903476901352, 0.0033372819889336824, 0.025291673839092255, -0.0007028721156530082, -0.012605649419128895, -0.003509755712002516, -0.008325622417032719, -0.014936556108295918, -0.040723882615566254, -0.01720048300921917, 0.024836210533976555, 0.005348358768969774, 0.019209884107112885, -0.02877463772892952, 0.010656529106199741, -0.0207638218998909, -0.007997420616447926, -0.020428922027349472, 0.009316927753388882, 0.01898215152323246, -0.009785788133740425, -0.02296076901257038, -0.013684028759598732, 0.03485642746090889, -0.023242084309458733, -0.007809876464307308, 0.027046551927924156, 0.00054630619706586, 0.0036571118980646133, -0.01970553584396839, -0.018191786482930183, -0.003305466379970312, 0.019651953130960464, 0.012525273486971855, -0.00012108741066185758, 0.02491658553481102, 0.007207055576145649, -0.012933851219713688, -0.009149477817118168, 0.027944086119532585, -0.022773224860429764, 0.005706701893359423, -0.03185572102665901, -0.027836916968226433, -0.01504372339695692, 0.009611640125513077, -0.0210451390594244, 0.007910346612334251, -0.02167475037276745, -0.00896193366497755, 0.0371069572865963, 0.005562694743275642, 0.016544077545404434, 0.013449598103761673, -0.008647127076983452, -0.005833964329212904, -0.003727440955117345, -0.012344427406787872, -0.026738444343209267, -0.02296076901257038, 0.011734908446669579, -0.019062528386712074, -0.033757954835891724, 0.001266760635189712, -0.005174210295081139, -0.012237259186804295, 0.009256646037101746, 0.005328264553099871, 0.0006350547773763537, 0.028560301288962364, -0.01044889073818922, 0.00800411868840456, -0.0028466531075537205, -0.00039978729910217226, -0.028104837983846664, 0.041875939816236496, 0.015954652801156044, 0.015472396276891232, 0.023215292021632195, 0.006430086679756641, -0.006199005525559187, 0.009035611525177956, 0.02562657557427883, -0.02105853334069252, 0.002089778194203973, -0.013998834416270256, -0.0019089319976046681, -0.019893081858754158, -0.0035800847690552473, -0.01643691025674343, -0.01915629953145981, -0.011554062366485596, -0.0011855472112074494, 0.005957877263426781, 0.003948475234210491, -0.004547946620732546, 0.003382493508979678, 0.01584748551249504, -0.0014467695727944374, -0.008037608116865158, -0.023094728589057922, 0.010569455102086067, -0.004866102244704962, 0.010261346586048603, 0.02681881934404373, -0.05320896953344345, -0.004182905424386263, 0.0048928940668702126, -0.00020617303380277008, -0.02119249477982521, -0.016678037121891975, -0.03204326704144478, 0.012424803338944912, 0.011105295270681381, -0.0011110319755971432, 0.023175103589892387, -0.024581685662269592, -0.02296076901257038, 0.019183091819286346, -0.017910471186041832, 0.011888962239027023, -0.015405416488647461, 0.007809876464307308, -0.02640354447066784, -0.007870158180594444, 0.013422805815935135, -0.01839272677898407, -0.03231118619441986, 0.008399301208555698, -0.03469567745923996, 0.012585555203258991, -0.03067687153816223, 0.011011523194611073, 0.013958646915853024, -0.030167823657393456, 0.00030622450867667794, 0.010201064869761467, -0.020134208723902702, -0.00963173434138298, -0.010482381097972393, -0.16782526671886444, 0.010763697326183319, -0.010716811753809452, -0.05039580538868904, 0.05170861631631851, 0.00204121763817966, 0.04364421218633652, -0.005361754447221756, -0.008734201081097126, -0.001683711539953947, -0.02417980507016182, 0.011232557706534863, -0.03600848466157913, -0.02060307003557682, -0.034320589154958725, 0.01852668821811676, -0.004511107690632343, 0.010468984954059124, 0.03531189262866974, 0.02476922981441021, 0.0448230616748333, -0.038473352789878845, 0.02400565706193447, 0.014708823524415493, 0.0011353122536092997, -0.011828680522739887, -0.01614219695329666, -0.003610225860029459, -0.003489661728963256, -0.0028818175196647644, 0.007106585428118706, 0.015659941360354424, 0.00941069982945919, -0.019986853003501892, 0.007448183838278055, 0.0022120168432593346, -0.004283375572413206, -0.03113233670592308, -0.02759578824043274, -0.0012550391256809235, 0.020348545163869858, 0.017307650297880173, -0.014293546788394451, -0.014119398780167103, -0.00883467122912407, 0.014735615812242031, 0.00556604377925396, -0.01762915402650833, 0.009892956353724003, 0.011741606518626213, 0.019451012834906578, -0.016035029664635658, 0.007977326400578022, -0.019759120419621468, 0.038768064230680466, -0.016396721825003624, -0.019330447539687157, 0.0030425696168094873, -0.018352540209889412, -0.025706950575113297, 0.02802446112036705, -0.032096851617097855, 0.0055760908871889114, 0.029337270185351372, 0.0004592321056406945, -0.022866996005177498, -0.01811141148209572, 0.006031555589288473, -0.0435638390481472, 0.018459707498550415, -9.27778601180762e-05, -0.006383200641721487, 0.00890165101736784, -0.019169695675373077, 0.018767815083265305, 0.01253197155892849, -0.007662520278245211, 0.015124100260436535, -0.01599484123289585, -0.018057826906442642, -0.016838788986206055, 0.014735615812242031, 0.024809418246150017, -0.005860756151378155, 0.02151399850845337, 0.007441485766321421, -0.017401421442627907, -0.001151219941675663, -0.026149019598960876, -0.011299537494778633, 0.021380038931965828, -0.007789782248437405, -0.014333735220134258, -0.007709406316280365, 0.004434080794453621, 0.0068654571659862995, 0.012116694822907448, -0.023898489773273468, 0.00829213298857212, 0.001066657598130405, 0.013422805815935135, -0.01809801533818245, -0.0028282334096729755, 0.002843304071575403, 0.018298955634236336, -0.0003801118873525411, -0.02328227274119854, 0.01438731886446476, 0.04600191116333008, -0.0024732390884310007, 0.010998127982020378, -0.009484377689659595, 0.008653825148940086, 0.027408244088292122, 0.0012173628201708198, 0.007287431508302689, -0.0051306732930243015, -0.007890252396464348, 0.0032987685408443213, -0.011493779718875885, 0.02622939646244049, -0.018754418939352036, -0.001028144033625722, -1.944318910318543e-06, 0.004846008028835058, -0.005281378515064716, -0.13203111290931702, -0.021004950627684593, 0.007696010172367096, 0.007207055576145649, 0.029337270185351372, 0.00481586717069149, -0.014253359287977219, 0.03831259906291962, -0.010174272581934929, 0.026510711759328842, -0.0054488289169967175, 0.0024883095175027847, -0.018473103642463684, -0.015298248268663883, -0.014481090940535069, -0.013362524099647999, 0.003693950828164816, 0.000271269294898957, 0.002481611678376794, 0.04734151437878609, 0.01599484123289585, -0.004919686354696751, -0.006965927314013243, -0.004085784312337637, -0.012485085055232048, 0.018727628514170647, -0.043081581592559814, -0.006781732197850943, 0.004022153094410896, -0.0002158014103770256, -0.02032175287604332, -0.005616278853267431, 2.36000087170396e-05, -0.016651244834065437, 0.0026005012914538383, 0.0047220950946211815, -0.01883479580283165, -0.005036901216953993, 0.03812505677342415, -0.00023652338131796569, 0.01135312207043171, -0.003032522741705179, 0.0009737227810546756, -0.012813287787139416, 0.018191786482930183, -0.0009259994840249419, -0.014856179244816303, 0.017133502289652824, 0.0004902103682979941, -0.011011523194611073, -0.023818112909793854, -0.02415301278233528, -0.010174272581934929, 0.0008460420067422092, 0.015003535896539688, -0.01943761669099331, 0.021527394652366638, -0.0009762345580384135, 0.0051139285787940025, 0.0043436577543616295, -0.0035465946421027184, 0.0024648664984852076, -0.000392670655855909, 0.03734808787703514, 0.018741024658083916, 0.02241153083741665, -0.03228439390659332, -0.01223056111484766, 0.030328575521707535, -0.013610349968075752, -0.015820693224668503, 0.037428464740514755, -0.011728210374712944, 0.04093822091817856, -0.017535382881760597, 0.0001079007051885128, -0.01780330203473568, -0.004125972278416157, 0.0034143091179430485, 0.0022522048093378544, 0.008493073284626007, -0.021326454356312752, -0.0005153279053047299, 0.0017766463570296764, -0.00890165101736784, 0.004480966832488775, 0.00792374275624752, -0.01793726347386837, 0.011969338171184063, -0.007682614028453827, 0.02669825591146946, 0.002238808898255229, 0.004544597584754229, -0.013824686408042908, 0.007039605639874935, -0.009678619913756847, 0.03292740136384964, -0.020844198763370514, 0.016959354281425476, -0.002471564570441842, -0.009216457605361938, -0.01880800351500511, -0.029337270185351372, 0.01127274613827467, -0.01854008436203003, -0.010341722518205643, 0.01855347864329815, -0.0016083589289337397, 0.009397303685545921, -0.02656429633498192, -0.0013940227217972279, 0.005813870113343, -0.02743503637611866, 0.02211681939661503, 0.018017638474702835, -0.028855014592409134, 0.010770395398139954, -6.284614210017025e-05, 0.007541955914348364, -0.03552623093128204, 0.02815842255949974, 0.00481586717069149, 0.008184964768588543, -0.008982027880847454, 0.009799184277653694, 0.005602882709354162, -0.016061820089817047, 0.0025703602004796267, 0.004196301568299532, 0.0030224756337702274, -0.025974871590733528, -0.034320589154958725, 0.01355676632374525, -0.01355676632374525, 0.012525273486971855, 0.032820235937833786, -0.014615051448345184, -0.017468402162194252, 0.02239813469350338, -0.0031916003208607435, 0.03247193992137909, 0.012779797427356243, -0.013375920243561268, -0.027756541967391968, 0.02148720622062683, -0.010770395398139954, -0.0077027082443237305, -0.007253941614180803, -0.020964762195944786, 0.013195074163377285, -0.011895660310983658, 0.004979968070983887, 0.01778990589082241, 0.0026725048664957285, -0.0015053771203383803, -0.005020156502723694, 0.01334912795573473, -0.02328227274119854, 0.008988725021481514, 0.0016485470114275813, 0.004735490772873163, 0.006162166595458984, 0.022451719269156456, 0.011741606518626213, 0.02906935103237629, -0.017374631017446518, 0.004591483622789383, -0.037723176181316376, -0.017026333138346672, -0.0016820370219647884, -0.020053833723068237, 0.007675915956497192, -0.01986628957092762, -0.01423996314406395, 0.006537254899740219, 0.011654532514512539, 0.023175103589892387, 0.0019976806361228228, -0.005378499627113342, 0.012190372683107853, -0.007669217884540558, 0.033114947378635406, 0.027408244088292122, 0.00489624310284853, -0.01170811615884304, -0.0059545282274484634, 0.02180871181190014, 0.029390854761004448, -0.011393309570848942, -0.015820693224668503, 0.00021245241805445403, 0.015834089368581772, 0.005164163652807474, -0.005934434477239847, -0.02166135422885418, -0.022304363548755646, -0.0011520572006702423, 0.029739150777459145, -0.0014082560082897544, -0.003566688857972622, -0.021902482956647873, 0.006014810409396887, 0.03485642746090889, -0.0036671587731689215, -0.003282023360952735, 0.0029688915237784386, -0.01570012792944908, 0.006182260345667601, -0.009249947965145111, -0.0319896824657917, -0.0005647257203236222, 0.020790614187717438, -0.03134667128324509, -0.0016318019479513168, 0.026952780783176422, 0.007816574536263943, -0.011172275990247726, 0.005077089183032513, -0.014012230560183525, -0.016088612377643585, -0.02759578824043274, 0.018151599913835526, -0.016503889113664627, 0.016986146569252014, 0.039812952280044556, 0.0024983566254377365, 0.024675458669662476, 0.025613179430365562, 0.014360527507960796, 0.005957877263426781, 0.005050297360867262, -0.018566874787211418, -0.015472396276891232, 0.02610883116722107, -0.017160294577479362, -0.030007071793079376, 0.011460290290415287, -0.03287382051348686, 0.014132794924080372, -0.01658426597714424, 0.006801825948059559, 0.044876646250486374, 0.0006375665543600917, -0.020241377875208855, 0.015016932040452957, 0.015767108649015427, 0.003315513487905264, 0.01780330203473568, 0.0038982401601970196, 0.002911958610638976, -0.025264883413910866, 0.007903648540377617, 0.003948475234210491, -0.01357016246765852, -0.04493023082613945, -0.016865581274032593, 0.014253359287977219, -0.012994133867323399, 0.0028717704117298126, -0.007327619940042496, -0.006202354561537504, 0.013878270983695984, 0.03499038890004158, -0.010643132962286472, -0.01549918856471777, -0.030810832977294922, -0.01058954931795597, 0.023376043885946274, 0.011386612430214882, -0.0503690131008625, -0.009578149765729904, -0.007682614028453827, -0.029899902641773224, -0.03322211652994156, -0.021018346771597862, 0.003908287268131971, 0.02359038032591343, -0.007984024472534657, -0.006008112337440252, 0.00021433622168842703, 0.0207638218998909, 0.00500006228685379, 0.0058875479735434055, 0.006366455927491188, -0.04763622581958771, -0.018754418939352036, -0.005890897009521723, 0.0029354016296565533, -0.004718746058642864, -0.049592044204473495], "59c02e3e-4304-4e19-bab8-b92039c0a2e8": [0.017317334190011024, -0.016630975529551506, -0.010981723666191101, 0.002723982324823737, -3.0342662284965627e-05, -0.00647420110180974, -0.011555887758731842, -0.022478215396404266, -0.007384945172816515, -0.012651421129703522, 0.01610300876200199, 0.014268320985138416, 0.008242892101407051, 0.017224939540028572, -0.00858607143163681, -0.006622692104429007, 0.02077552117407322, 0.006137622054666281, 0.013674357905983925, -0.0017884898697957397, -0.02631917968392372, 0.00392675818875432, 0.006757983937859535, -0.013977939262986183, -0.023943325504660606, 0.0003522532933857292, 0.013225585222244263, -0.029064610600471497, 0.04271256923675537, -0.019138820469379425, 0.009397821500897408, 0.011773674748837948, -0.010651743970811367, -0.012796611525118351, -0.019904373213648796, -0.015086670406162739, -0.02084151655435562, -0.011602085083723068, -0.002392352558672428, -0.012908805161714554, 0.025263244286179543, -0.007721524219959974, -0.01861085370182991, -0.005025590304285288, -0.0364561527967453, 0.01744932495057583, 0.013166189193725586, -0.0437949039041996, -0.02666235715150833, 0.022768598049879074, 0.04128705710172653, 0.01793769560754299, -0.037723276764154434, 0.005784543696790934, -0.004477824084460735, 0.02877422794699669, -0.01057254895567894, 0.0044646249152719975, 0.015152666717767715, -0.02117149531841278, 0.004867200274020433, 0.001446960843168199, 0.013205786235630512, 0.010394359938800335, -0.0020871213637292385, 0.0011227558134123683, 0.006098024547100067, 0.0017818902852013707, -0.01935000717639923, -0.006655690260231495, 0.0401255302131176, 0.009028243832290173, 0.011701079085469246, 0.0038442632649093866, 0.00786671508103609, -0.015020675025880337, 0.0010534600587561727, 0.024656081572175026, 0.00021448679035529494, -0.0070021688006818295, -0.001547604682855308, -0.014466308988630772, 0.006263014394789934, 0.018148882314562798, 0.007028567139059305, -0.024326100945472717, -0.008592670783400536, 0.03748569265007973, -0.006962571293115616, -0.03125567361712456, -0.010922327637672424, 0.007879914715886116, 0.007457540836185217, 0.012631622143089771, -0.0005692149279639125, -0.000563852780032903, -0.02766549587249756, 0.016670573502779007, -0.007615930866450071, -0.015561841428279877, -0.00948361586779356, 0.02877422794699669, -0.007543335203081369, -0.009444017894566059, -0.0076027316972613335, 0.005355569999665022, 0.010546150617301464, 0.004484423901885748, 0.025989199057221413, -0.009378022514283657, -0.012262044474482536, 0.049444153904914856, 0.012902204878628254, -0.018544858321547508, 0.014677495695650578, -0.025052057579159737, 0.017053348943591118, -0.026781151071190834, -0.025830809026956558, -0.013674357905983925, 0.029724568128585815, -0.0011887517757713795, 0.004906797781586647, -0.002012876095250249, 0.02403572015464306, 0.006055126897990704, -0.013964739628136158, -0.014875483699142933, -0.028642235323786736, -0.026345577090978622, 0.026899943128228188, 0.023045780137181282, 0.0036495751701295376, -0.00012023634189972654, 0.013647959567606449, 0.0182544756680727, 0.010103977285325527, 0.005513960495591164, -0.03141406551003456, -0.00482430262491107, 0.024669280275702477, 0.005645952187478542, -0.007860115729272366, 0.035215429961681366, 0.003408689983189106, 0.006837178952991962, 0.003266798797994852, -0.009358223527669907, 0.0024022520519793034, 0.0008793958113528788, -0.004474524408578873, 5.16366635565646e-05, 0.010697941295802593, -0.01548264641314745, -0.0029038211796432734, 0.010480154305696487, 0.0003790641494560987, -0.0062234168872237206, -0.0016746468609198928, -0.00436563091352582, 0.010473554953932762, 0.01858445443212986, 0.01784530095756054, -0.012849408201873302, -0.004382130224257708, 0.04038951173424721, 0.04535240679979324, 0.015152666717767715, -0.02080191858112812, 0.0050552887842059135, 0.004636214580386877, 0.007285951171070337, 0.0035175832454115152, 0.015773028135299683, -0.006048527546226978, -0.0309652928262949, 0.00782051868736744, -0.023850930854678154, -0.024326100945472717, 0.02072272263467312, 0.003989454358816147, -0.0016408239025622606, 0.019033227115869522, 0.04529960826039314, -0.04957614466547966, 0.010064380243420601, 0.01861085370182991, 0.004332633223384619, 0.009912589564919472, 0.01970638707280159, 0.005675650201737881, 0.04054790362715721, 0.005253276322036982, 0.019957169890403748, -0.6322938799858093, -0.025408435612916946, -0.013674357905983925, -0.029091008007526398, -0.009681603871285915, 0.010697941295802593, 0.019218016415834427, -0.016221800819039345, -0.012539227493107319, 0.003761768341064453, 0.005068487953394651, 0.02509165368974209, 0.016670573502779007, -0.00019190380407962948, 0.010123776271939278, -0.015205463394522667, -0.018505260348320007, -0.01791129633784294, 0.01021617092192173, 0.02330976352095604, -0.01709294691681862, 0.029354991391301155, -0.015363853424787521, -0.01639338955283165, -0.011819872073829174, 0.02631917968392372, 0.03328834846615791, -0.012506229802966118, 0.009186633862555027, 0.00931202620267868, 0.007021967321634293, -0.02656996250152588, -0.005418266169726849, -0.016538580879569054, 0.032654788345098495, -0.004068649373948574, 0.012196049094200134, 0.011701079085469246, -0.007378345355391502, 0.03751209005713463, -0.017713308334350586, 0.01166148204356432, 0.03986154496669769, 0.002849374432116747, 0.01681576482951641, -0.01969318650662899, 0.007107762154191732, 0.03434428572654724, 0.005226877983659506, -0.03254919499158859, 0.01332457922399044, -0.004682411439716816, 0.007569733541458845, 0.008308888413012028, 0.025395235046744347, -0.00800530705600977, 0.019495198503136635, 0.0010625345166772604, 0.0063719074241817, -0.02693954110145569, 0.02117149531841278, 0.009206432849168777, -0.007173758000135422, 0.005886837374418974, -0.010717740282416344, 0.03423869237303734, -0.04242218658328056, -0.0008435105555690825, -0.004458025563508272, -0.006167320068925619, 0.023164574056863785, 0.033050764352083206, 0.0006809955812059343, -0.007609331514686346, 0.002690984169021249, 0.010077578946948051, 0.014004337601363659, -0.002986316103488207, -0.004342532716691494, 0.0181752797216177, 0.00739154452458024, -0.0015319306403398514, -0.03569060191512108, -0.01647258549928665, 0.03125567361712456, -0.013964739628136158, 0.009971985593438148, 0.00785351637750864, 0.02587040700018406, 0.021580670028924942, -0.003725470509380102, 0.009694802574813366, -0.011800073087215424, -0.048731397837400436, -0.007899713702499866, 0.009067841805517673, -0.023481354117393494, 0.002163016702979803, -0.002506195567548275, -0.04588037356734276, -0.007919511757791042, -0.02885342203080654, 0.013383975252509117, -0.006094724405556917, -0.011555887758731842, -0.007305750157684088, 0.0054908618330955505, 0.0036198769230395555, 0.03207402303814888, -0.01036136131733656, 0.005048688966780901, -0.02996215410530567, 0.0022521112114191055, 0.016987353563308716, 0.017396528273820877, -0.01682896353304386, 0.017607714980840683, -0.01610300876200199, -0.0010089128045365214, 0.013053995557129383, 0.024893667548894882, 0.021422279998660088, -0.007919511757791042, 0.003567080246284604, 0.01636699214577675, -0.005768044851720333, 0.012605223804712296, -0.03381631523370743, -0.03402750566601753, -0.008572871796786785, -0.00042649873648770154, -0.0062927124090492725, 0.002377503551542759, 0.0014230373781174421, 0.007180357817560434, -0.03181004151701927, 0.008671865798532963, -0.028246259316802025, 0.04548439756035805, -0.031229276210069656, -0.037432894110679626, -0.0033294949680566788, 0.03320915624499321, -0.014624699018895626, -0.0017736407462507486, -0.020696325227618217, -0.03070130944252014, -0.012037658132612705, -0.010519752278923988, -0.011225908063352108, -0.009767398238182068, 0.012704217806458473, 0.008711463771760464, 0.047569870948791504, 0.00032317385193891823, -0.005378668662160635, -0.0028114267624914646, -0.0018742845859378576, 0.0019138820935040712, -0.003999353852123022, -0.0036693739239126444, 0.034845855087041855, -0.01568063348531723, 0.005537059158086777, 0.018016889691352844, -0.009397821500897408, -0.0237321387976408, 0.014400312677025795, -0.008011906407773495, -0.04052150249481201, 0.003949856851249933, 0.009661804884672165, 0.005253276322036982, 0.009345024824142456, 0.02550082840025425, 0.025949601083993912, -0.012242245487868786, 0.003774967510253191, -0.009430819191038609, 0.004174242727458477, -0.003817864926531911, 0.002428650390356779, 0.0024946462363004684, -0.006259714253246784, 0.0005312672583386302, 0.01328498125076294, 0.03064851276576519, -0.019600791856646538, -0.014730292372405529, 0.008856654167175293, 0.008348485454916954, 0.022768598049879074, -0.029988553375005722, 0.004886998794972897, 0.0043590315617620945, 0.00024026645405683666, 0.0014659346779808402, 0.00032482374808751047, 0.008790658786892891, 0.04822982847690582, 0.01401753630489111, -0.015601439401507378, -0.0028675233479589224, -0.014202325604856014, -0.011291904374957085, -0.003360843053087592, 0.011978262104094028, -0.0154958451166749, 0.031546056270599365, -0.011595485731959343, 0.0014032385079190135, -0.00774792255833745, 0.0010650093900039792, -0.013938341289758682, 0.03400110453367233, 0.03497784584760666, -0.0068503781221807, 0.013482969254255295, 0.018756045028567314, -0.008388083428144455, 0.022148236632347107, 0.012321441434323788, 0.02626638114452362, 0.016274597495794296, -0.010427357628941536, -0.00691637396812439, -0.0030605613719671965, -0.02044554054737091, -0.007074763998389244, -0.028906218707561493, 0.014888683333992958, 0.013410373590886593, -0.009378022514283657, -0.006487400270998478, 0.04202621057629585, 0.02806147187948227, 0.035558611154556274, -0.020907511934638023, 0.024550488218665123, -0.006533597595989704, -0.03239080309867859, 0.0237585362046957, 0.013463170267641544, -0.014532305300235748, 0.002591990400105715, 0.008883052505552769, 0.042897358536720276, 0.0070945629850029945, -0.004791304934769869, 0.010084179230034351, 0.002441849559545517, 0.006180519238114357, -0.036324162036180496, 0.005444664508104324, -0.00282957567833364, -0.005715248174965382, 0.002215813612565398, -0.004662612918764353, 0.02082831785082817, 0.0025028958916664124, -0.004448126070201397, -0.014400312677025795, 0.01351596787571907, -0.0029483684338629246, 0.020894313231110573, -0.017607714980840683, 0.02777108922600746, -0.01855805702507496, -0.017079748213291168, -0.0032338008750230074, -0.019891174510121346, -0.03429148718714714, -0.017079748213291168, -0.0028279258403927088, 0.03474026173353195, 0.014189125970005989, 0.0200891625136137, 0.002220763126388192, 0.006592994090169668, 0.006414805073291063, -0.012473232112824917, -0.013951540924608707, 0.03328834846615791, 0.009206432849168777, -0.005391867831349373, -0.02119789458811283, -0.04052150249481201, -0.009767398238182068, 0.004500922746956348, 0.015218663029372692, -0.04487723484635353, 0.014875483699142933, -0.021963447332382202, 0.005649251863360405, -0.010684741660952568, -0.002606839407235384, 0.014994276687502861, -0.0003980379842687398, -0.01422872394323349, -0.02036634460091591, 0.011648282408714294, -0.0009041443117894232, -0.015337455086410046, 0.023124976083636284, 0.03751209005713463, 0.00418084254488349, 0.028246259316802025, -0.020273951813578606, -0.015337455086410046, -0.01899362914264202, 0.010658343322575092, -0.01115331333130598, -0.0015319306403398514, -0.0327867791056633, 0.026517165824770927, -0.024233708158135414, 0.011166512034833431, -0.0047253090888261795, 0.031070886179804802, 0.011892467737197876, 0.009681603871285915, 0.0040884483605623245, 0.000773802341427654, 0.005916535388678312, 0.06087465211749077, 0.012625022791326046, -0.017792504280805588, 0.004623015411198139, -0.016221800819039345, -0.01605021208524704, -0.0401519276201725, -0.026490768417716026, 0.018835239112377167, -0.014849085360765457, 0.002643137238919735, 0.002011226024478674, 0.004527321085333824, -0.0025391934905201197, 0.011252307333052158, 0.018835239112377167, -0.0008303113281726837, -0.003007764695212245, -0.009675003588199615, -0.023454954847693443, 0.021633466705679893, -0.004781405441462994, 0.03600738197565079, 0.027929479256272316, -0.028219861909747124, -0.0019023328786715865, 0.028668634593486786, -0.0004949694848619401, -0.01388554461300373, -0.016947755590081215, -0.011714278720319271, -0.006837178952991962, 0.01636699214577675, 0.02774469181895256, -0.006609492935240269, 0.0065269977785646915, -0.00038318888982757926, 0.018360069021582603, 0.00965520553290844, -0.04424367472529411, 0.002293358789756894, 0.0019386305939406157, 0.005540358833968639, -0.019957169890403748, 0.0127438148483634, 0.010407558642327785, -0.016855360940098763, 0.009760798886418343, -0.003946556709706783, -0.00895564816892147, 0.018016889691352844, -0.011272105388343334, -0.037776071578264236, -0.023058978840708733, -0.0026464369148015976, 0.0200891625136137, -0.006395006086677313, -0.014849085360765457, 0.013766751624643803, -0.02040594257414341, -0.01936320774257183, -0.025989199057221413, 0.016327394172549248, -0.004566918592900038, 0.012823009863495827, 0.0008620718726888299, -0.00854647345840931, 0.009305426850914955, 0.0010336613049730659, -0.008077902719378471, 0.030806902796030045, -0.013595162890851498, -0.03540021926164627, -0.002085471525788307, 0.0073321484960615635, 0.029091008007526398, 0.00718695716932416, 0.0004685711464844644, -0.013430172577500343, 0.0014906831784173846, 0.013555564917623997, -0.022161435335874557, -0.040363114327192307, -0.02336256019771099, 0.010394359938800335, 0.006071626208722591, 0.02437889762222767, -0.008520075120031834, -0.0437157079577446, 0.007510337512940168, -0.0163405928760767, 0.017964093014597893, -0.008183496072888374, -0.004735208116471767, -0.022148236632347107, 0.03204762563109398, -0.007998707704246044, 0.016155805438756943, 0.005685549695044756, -0.00601552939042449, 0.0012440233258530498, -0.019508399069309235, -0.011126914992928505, 0.008605869486927986, -0.02411491423845291, -0.006543497089296579, 0.006312511395663023, 0.020207954570651054, 0.019627191126346588, -0.019072825089097023, 0.03204762563109398, -0.026345577090978622, 0.03312996029853821, 0.03838323429226875, -0.00764892902225256, -0.002728931838646531, 0.004507522564381361, 0.012130052782595158, -0.0218182560056448, -0.024629682302474976, 0.002321406966075301, -0.024537287652492523, 0.005942933727055788, 0.015165865421295166, -0.013647959567606449, -0.01237423811107874, -0.0036000781692564487, -0.014096731320023537, 0.0007474039448425174, -0.001626799814403057, 0.00400925287976861, 0.01927081309258938, 0.005345670506358147, -0.033367544412612915, -0.02877422794699669, -0.0010476855095475912, -0.01750212162733078, 0.008836856111884117, -0.023058978840708733, -0.002486396813765168, 0.005777943879365921, 0.027454309165477753, 0.011272105388343334, -0.017436126247048378, 0.006507199257612228, -0.033420342952013016, 0.008196694776415825, -0.01001158356666565, -0.0009107438963837922, 0.0237321387976408, 0.007411343511193991, 0.00457351841032505, -0.024563686922192574, -0.0136611582711339, 0.025778012350201607, 0.00036194646963849664, -0.0006875951658003032, 0.01075733732432127, 0.020181557163596153, 0.03165164962410927, 0.008592670783400536, 0.012908805161714554, 0.015377053059637547, -0.004207240883260965, 0.008282490074634552, 0.01601061411201954, -0.012658020481467247, 0.01710614562034607, -0.015165865421295166, 0.004520721733570099, -0.009067841805517673, 0.0005164181930013001, 0.008315487764775753, -0.021712662652134895, 0.022346222773194313, 0.024194110184907913, -0.004243538714945316, 0.0022323124576359987, -0.020181557163596153, -0.0027454309165477753, -0.009305426850914955, 0.0029318693559616804, -0.00022727350005879998, 0.03062211349606514, -0.0018148882081732154, -0.01606341078877449, 0.03181004151701927, 0.004306234885007143, 0.006147521547973156, 0.02554042637348175, 0.006754683796316385, 0.010354761965572834, 0.021937048062682152, 0.014822687022387981, 0.014915081672370434, -0.03497784584760666, -0.002921970095485449, -0.03790806606411934, -0.0014255121350288391, -0.006309211254119873, -0.005434765014797449, 0.02334936149418354, -0.004778105765581131, 0.0030259136110544205, -0.013093593530356884, -0.0049595944583415985, -0.01562783680856228, -0.030912496149539948, 0.01605021208524704, -0.019231215119361877, -0.018320471048355103, -0.0011805022368207574, -0.012823009863495827, -0.01422872394323349, 0.009166835807263851, 0.02806147187948227, 0.012875806540250778, 0.004580117762088776, -0.01640659011900425, -0.01974598318338394, -0.0163405928760767, -0.012460032477974892, 0.039914339780807495, 0.023534150794148445, 0.02445809356868267, 0.0200231671333313, 0.011384299024939537, -0.003395490814000368, -0.00838148407638073, 0.00038360137841664255, -0.001897383132018149, 0.04350452125072479, 0.02010236121714115, -0.007424542680382729, -0.029803764075040817, -0.019587593153119087, 0.0007993757608346641, -0.018122483044862747, -0.04295015335083008, 0.015245061367750168, 0.01970638707280159, -0.001579777686856687, -0.02700553648173809, 0.029038211330771446, -0.037380099296569824, 0.008335286751389503, -0.007021967321634293, 0.0075301360338926315, -0.02039274387061596, 0.020194755867123604, -0.04345172271132469, 0.012182849459350109, 0.0032189516350626945, 0.0033261950593441725, 0.001451085670851171, 0.0064016059041023254, -0.0023626545444130898, -0.010255767963826656, -0.04295015335083008, 0.006464301608502865, -0.006655690260231495, 0.038119252771139145, -0.022095438092947006, -0.015047073364257812, 0.04474524408578873, -0.021013105288147926, -0.019178418442606926, -0.0026546865701675415, -0.006121122743934393, 0.027559902518987656, -0.0273223165422678, -0.013225585222244263, -0.020273951813578606, 0.007893113419413567, -0.007424542680382729, -0.007173758000135422, -0.009938987903296947, 0.002565592061728239, -0.037776071578264236, -0.012380837462842464, 0.029064610600471497, 0.01566743478178978, -0.01562783680856228, -0.0008026755531318486, -0.003044062526896596, -0.00342518906109035, -0.0036264765076339245, -0.009100839495658875, 0.006573195103555918, -0.014888683333992958, -0.007741323206573725, -0.025289641693234444, 0.03545301780104637, 0.017620913684368134, -0.019099224358797073, -0.013331178575754166, 0.02048513852059841, 0.06383126974105835, -0.025817610323429108, 0.023217370733618736, -0.03381631523370743, 0.009424219839274883, 0.0003508096269797534, -0.00097756483592093, 0.01752852089703083, -0.0014090131735429168, 0.035558611154556274, -0.02107910066843033, -0.011087317019701004, -0.018030090257525444, -9.673818567534909e-06, 0.022412220016121864, -0.006137622054666281, 0.015363853424787521, 0.009444017894566059, 0.003187603550031781, 0.012116854079067707, -0.01639338955283165, -0.005104785785079002, 0.015443048439919949, 0.015258260071277618, 0.026833947747945786, 0.02766549587249756, -0.0032008029520511627, 0.0017323932843282819, 8.610406803200021e-05, -0.00282957567833364, 0.0011953513603657484, -0.016960956156253815, -0.01747572422027588, -5.0425020162947476e-05, -0.028695032000541687, -0.004035651218146086, -0.011899067088961601, -0.03128207474946976, 0.013034197501838207, -0.00965520553290844, 0.023771734908223152, -0.010163374245166779, -0.003324545221403241, -0.04199981316924095, 0.02154107391834259, 0.03967675566673279, 0.008335286751389503, 0.0023527550511062145, -0.0034647865686565638, 0.0015740030212327838, 0.005332471337169409, -0.021013105288147926, -0.028219861909747124, -0.01610300876200199, 0.03056931681931019, 0.014004337601363659, -0.009510014206171036, -0.00783371739089489, 0.0034779857378453016, -0.02518404833972454, -0.00908763986080885, -0.014624699018895626, 0.030199740082025528, 0.027427909895777702, 0.01715894229710102, 0.00018674787133932114, 0.01785849966108799, -0.011536089703440666, 0.023428557440638542, -0.015047073364257812, -0.011443695053458214, 0.03328834846615791, 0.04672512039542198, -0.015165865421295166, -0.01863725110888481, -0.005167481489479542, -0.017581317573785782, 0.0009156935848295689, -0.027243122458457947, 0.019152021035552025, 0.00877085980027914, -0.014255122281610966, -0.016630975529551506, -0.02806147187948227, -0.021778658032417297, 0.018109284341335297, 0.03328834846615791, -0.014637898653745651, -0.012889006175100803, -0.0016391740646213293, -9.285833948524669e-05, 0.02848384529352188, -0.032628390938043594, 0.001365290954709053, -0.021633466705679893, -0.017383329570293427, 0.004705510102212429, -0.023468153551220894, -0.023190971463918686, 0.005256575997918844, -0.02301938273012638, 0.025276442989706993, 0.008929249830543995, 0.007061564829200506, 0.03965035825967789, 0.006428004242479801, 0.007358546834439039, -0.0021036204416304827, 0.0028279258403927088, -0.005269775167107582, 0.0020739221945405006, 0.012169650755822659, 0.007325548678636551, -0.03563780337572098, -0.016710171476006508, 0.04413808137178421, -0.011067518033087254, 0.022504614666104317, -0.03056931681931019, -0.029249398037791252, -0.028589438647031784, 0.023560548201203346, 0.007305750157684088, -0.009450618177652359, 0.009081040509045124, 0.007728124037384987, -0.005969332531094551, 0.01347636990249157, -0.023547349497675896, -0.025395235046744347, -0.008612469770014286, 0.01513946708291769, 0.00820989441126585, 0.009813595563173294, 0.0009569410467520356, 0.00893584918230772, -0.0017026951536536217, -0.021607069298624992, 0.01602381281554699, 0.18806201219558716, 0.00428313622251153, -0.011984861455857754, 0.01928401179611683, -0.006922973785549402, 0.021356284618377686, -0.008559673093259335, -0.006012229714542627, -0.013727154582738876, -0.016485784202814102, -0.026187187060713768, -0.013819548301398754, -0.02771829254925251, 0.0027800786774605513, 0.01150309108197689, -0.017726508900523186, -0.005735046695917845, -0.04450765997171402, -0.020141959190368652, 0.0008117500110529363, 0.007226554676890373, -0.004952995106577873, -0.01858445443212986, -0.020590731874108315, 0.02114509791135788, 0.023454954847693443, -0.01853165775537491, 0.022768598049879074, 0.024959662929177284, -0.005507360678166151, -0.022715801373124123, -0.013020997866988182, -0.021290289238095284, 0.022808194160461426, -0.03476665914058685, 0.008143898099660873, 0.026860345155000687, 0.005157582461833954, 0.025382036343216896, -0.008671865798532963, 0.01019637193530798, -0.011760476045310497, -0.021620268002152443, -0.012677819468080997, 0.018439264968037605, 0.03500424325466156, -0.004913397133350372, -0.02951338142156601, 0.0026992338243871927, 0.01752852089703083, -0.028879821300506592, -0.0218182560056448, 0.010473554953932762, 0.01931041106581688, 0.0033047464676201344, 0.011747276410460472, -0.012255445122718811, -0.0066589899361133575, 0.02596280165016651, 0.034793056547641754, -0.02631917968392372, 0.032628390938043594, -0.02403572015464306, 0.024312902241945267, -0.021633466705679893, 0.02037954516708851, -0.009351624175906181, 0.014281520619988441, 0.004788005258888006, -0.019204817712306976, 0.010169973596930504, -0.0062927124090492725, 0.010328363627195358, 0.008658667095005512, -0.009034843184053898, -0.03178364038467407, 0.0218974519520998, 0.01636699214577675, 0.00010311864753020927, 0.019204817712306976, -0.007160558830946684, 0.0021448677871376276, -0.007325548678636551, -0.01898043043911457, -0.008619069121778011, -0.01639338955283165, 0.010249168612062931, 0.0008088626782409847, -0.0021960146259516478, -0.009602408856153488, 0.006754683796316385, 0.01788489893078804, 0.00032214264501817524, 0.021356284618377686, -0.003172754542902112, 0.01238743681460619, 0.0032338008750230074, 0.015218663029372692, 0.0057251472026109695, 0.005174081306904554, -0.0327339842915535, 0.052295178174972534, 0.01564103737473488, 0.017436126247048378, 0.010658343322575092, -0.006569895427674055, 0.011060918681323528, 0.02107910066843033, -0.006731585133820772, -0.04448125883936882, -0.004632914438843727, 0.0016738219419494271, 0.011714278720319271, -0.012922003865242004, 0.007180357817560434, -0.023916926234960556, -0.032654788345098495, -0.00482760276645422, 0.013007799163460732, -0.014387113973498344, -0.028325455263257027, -0.014307918958365917, 0.0055271596647799015, 0.011707678437232971, -0.013469770550727844, 0.006338909734040499, -0.04221099987626076, 0.0053258719854056835, -0.008764260448515415, 0.007160558830946684, 0.023903727531433105, -0.028879821300506592, 0.003966355696320534, -0.015759829431772232, -0.00783371739089489, -0.0027404811698943377, -0.012770213186740875, -0.00908763986080885, -0.008500276133418083, 0.0016688721952959895, -0.011324902065098286, 0.016551779583096504, -0.03181004151701927, -0.0028163765091449022, 0.013647959567606449, -0.01598421484231949, 0.004151144530624151, 0.004774806089699268, 0.002248811535537243, -0.023520952090620995, -0.00038215771201066673, -0.003421889152377844, 0.0010163374245166779, -0.030094146728515625, -0.01780570298433304, -0.03838323429226875, -0.005735046695917845, -0.027454309165477753, 0.013172788545489311, -0.0137007562443614, -0.03162525221705437, 0.030806902796030045, -0.0032272012904286385, -0.0029896157793700695, -0.019825179129838943, -0.027586299926042557, -0.16483144462108612, -0.01853165775537491, 0.0014329367550089955, -0.021369483321905136, 0.0328131802380085, -0.004078548867255449, 0.009239430539309978, 0.01715894229710102, -0.010889329016208649, -0.0063719074241817, 0.006652390118688345, -0.013911942951381207, -0.04271256923675537, -0.011892467737197876, -0.014334317296743393, -0.00817029643803835, 0.00948361586779356, 0.00657979492098093, 0.03062211349606514, 0.014281520619988441, 0.061772193759679794, -0.02630597911775112, 0.01548264641314745, 0.01676296815276146, 0.0018891335930675268, -0.024550488218665123, -0.012321441434323788, -0.028536641970276833, 0.01570703275501728, -0.011199509724974632, -0.0034119898919016123, 0.016327394172549248, -0.007470740005373955, -0.03199483081698418, 0.025593223050236702, 0.016155805438756943, 0.0066919876262545586, -0.011087317019701004, -0.001999676926061511, 0.004698910750448704, 0.019877975806593895, 0.02332296408712864, 0.010117176920175552, -0.004580117762088776, -0.025408435612916946, 0.014915081672370434, 0.008803857490420341, -0.025276442989706993, 0.00436893105506897, -0.007978908717632294, 0.02334936149418354, -0.012882406823337078, -0.0028114267624914646, -0.015799427404999733, 0.014149527996778488, -0.03748569265007973, -0.019838377833366394, 0.007576333358883858, -0.0035835793241858482, 0.019046427682042122, 0.00557665666565299, -0.028932617977261543, -0.018544858321547508, 0.018162081018090248, -0.000200978247448802, -0.019534796476364136, -0.028008675202727318, 0.01184627041220665, -0.022834593430161476, 0.01494148001074791, 0.0014032385079190135, -0.0001761266466928646, -0.01853165775537491, -0.030384527519345284, 0.008949048817157745, 0.023402158170938492, -0.0027124329935759306, 0.01929721049964428, -0.0109487259760499, -0.016169004142284393, 0.0020376245956867933, 0.04041590914130211, 0.013911942951381207, -0.01150309108197689, 0.011720878072082996, -0.007741323206573725, 0.0008364984532818198, 0.02956617809832096, -0.044322870671749115, -0.019086023792624474, 0.01565423607826233, -0.03508343920111656, 0.013225585222244263, -0.008698264136910439, 0.005022290628403425, 0.02047193981707096, 0.01059234794229269, -0.019574394449591637, 0.007754522375762463, -0.019891174510121346, -0.013595162890851498, -0.010473554953932762, -0.026794349774718285, 0.005137783475220203, 0.04165663570165634, 0.001539355143904686, -0.03128207474946976, 0.022135036066174507, 0.04437566548585892, 0.0032041026279330254, 0.002720682416111231, -0.0015451298095285892, 0.01387234590947628, 0.020564332604408264, -0.009193234145641327, 0.022425418719649315, 0.009100839495658875, -0.0029665173497051, -0.0032173017971217632, -0.004137944895774126, 0.039254382252693176, 0.005259876139461994, -0.02329656481742859, -0.008104301057755947, -0.01060554664582014, 0.0008117500110529363, -0.11837030947208405, -0.032311610877513885, 0.00657649477943778, 0.0364561527967453, 0.02329656481742859, 0.00292361993342638, -0.01023596990853548, 0.012750414200127125, 0.0005353920278139412, 0.028615837916731834, 0.0005481787375174463, -0.003324545221403241, -0.014690695330500603, 0.013298180885612965, -0.000565915135666728, -0.0008967197500169277, -0.018742846325039864, -0.009246030822396278, -0.015918219462037086, 0.0254876296967268, 0.02292698808014393, -7.460634515155107e-05, 0.0022752098739147186, 0.0030457123648375273, -0.02558002434670925, 0.021092301234602928, -0.0163801908493042, -0.012836209498345852, 0.007932711392641068, 0.015258260071277618, -0.0012943452456966043, -0.007028567139059305, -0.006355408579111099, -0.02474847622215748, 0.011252307333052158, 0.003123257542029023, -0.007087963633239269, 0.007978908717632294, 0.014756690710783005, -0.024972861632704735, 0.01257882546633482, -0.008718063123524189, 0.015839023515582085, 0.00138921441975981, 0.0091404365375638, 0.009615607559680939, -0.023270167410373688, 0.027480706572532654, -0.0002045873989118263, -0.01964038982987404, -0.0510016568005085, -0.0100247822701931, -0.014756690710783005, -0.024299703538417816, 0.0365881472826004, -0.028642235323786736, 0.007180357817560434, 0.004329333547502756, -0.020537935197353363, -0.0037353700026869774, -0.016551779583096504, 0.0016622726107016206, 0.003037462942302227, 0.003794766264036298, 0.02084151655435562, 0.016116207465529442, -0.025619622319936752, 0.0021811656188219786, 0.029038211330771446, -0.014835885725915432, -0.006319110747426748, 0.0328131802380085, -0.01927081309258938, 0.011958463117480278, -0.02191065065562725, 0.0328923724591732, 0.0017307434463873506, 0.004659312777221203, 0.013456570915877819, 0.000664496561512351, -0.01237423811107874, -0.012209247797727585, -0.012460032477974892, -0.009166835807263851, 0.007246353663504124, 0.0013809648808091879, 0.003072110703215003, 0.00537206931039691, 0.009371423162519932, -0.009846593253314495, 0.002121769357472658, 0.024233708158135414, 0.02554042637348175, -0.010730938985943794, -0.006302611902356148, 0.013245384208858013, 0.008315487764775753, -0.0020079263485968113, 0.004161043558269739, 0.014664296992123127, -0.02777108922600746, -0.010796935297548771, -0.03880561143159866, 0.011450294405221939, -0.01894083246588707, -0.009081040509045124, 0.0025243444833904505, 0.0036198769230395555, 0.007998707704246044, -0.030754106119275093, 0.0056921495124697685, 0.00647420110180974, -0.0137007562443614, 0.020867913961410522, -0.00985979288816452, -0.015047073364257812, 0.004236938897520304, -0.02692634053528309, -0.004916697274893522, -0.032707586884498596, 0.0006661464576609433, 0.013595162890851498, -0.013436771929264069, 0.015839023515582085, 0.014690695330500603, -0.003195853205397725, 0.009061241522431374, -0.007615930866450071, -0.008671865798532963, 0.02296658605337143, -0.013350977562367916, -0.04236939176917076, -9.394108928972855e-05, 0.0021531174425035715, 0.003867361694574356, 0.010321764275431633, -0.023415356874465942, 0.009787197224795818, 0.016155805438756943, 0.022359423339366913, 0.030542919412255287, 0.009734400548040867, -0.02511805295944214, -0.02476167492568493, 0.014360715635120869, 0.0007700900896452367, -0.007457540836185217, -0.016974154859781265, -0.004933196119964123, 0.010222770273685455, -0.015403451398015022, 0.03423869237303734, 0.02267620339989662, 0.007028567139059305, -0.009806996211409569, -0.004260037560015917, 0.01748892292380333, -0.016630975529551506, 0.0008047379087656736, -0.03621856868267059, -0.013225585222244263, 0.002451749052852392, 0.029698170721530914, 0.007338747847825289, 0.02885342203080654, 0.004260037560015917, -0.006784382276237011, -0.023613344877958298, -0.0291702039539814, 0.027797488495707512, 0.00033039215486496687, -0.004170943051576614, -0.008117499761283398, 0.005721847526729107, 0.014849085360765457, 0.009160235524177551, 0.027559902518987656, 0.0024599984753876925, -0.05039449408650398, 0.01165488176047802, -0.0274015124887228, 0.011536089703440666, 0.023402158170938492, -0.010803534649312496, 0.004540520254522562, 0.0013430173275992274, 0.028563041239976883, 0.017040150240063667, -0.006507199257612228, 0.001209375448524952, 0.01203105878084898, -0.00016787716594990343, -0.002257060958072543, 0.0005188930663280189, -0.01401753630489111, -0.00292361993342638, -0.0020574233494699, 0.031889237463474274, 0.007008768152445555, 0.006583094596862793, -0.007153959479182959, 0.019785581156611443, 0.012110253795981407, 0.011272105388343334, 0.0009099189774133265, -0.016248200088739395, -0.013397174887359142, 0.029830163344740868, 0.0100313825532794, -0.03178364038467407, -0.006477500777691603, 0.0038574624340981245, 0.003639675909653306, 0.025817610323429108, 0.02228022739291191, 0.007285951171070337, -0.023058978840708733, 0.0004924946697428823, -0.010783735662698746, -0.004768206272274256, -0.02254421077668667, 0.023230569437146187, 0.013205786235630512, 0.028008675202727318, 0.027797488495707512, -2.5805442419368774e-05, 0.029777366667985916, 0.023534150794148445, 0.009866392239928246, -0.026081593707203865, 0.006131022237241268, -0.0274015124887228, -0.023560548201203346, 0.0400463342666626, -0.02041914314031601, -0.028299055993556976, -0.0164197888225317, -0.04326693341135979, 0.009034843184053898, -0.0007317299023270607, -0.015535443089902401, 0.031598854809999466, -0.012156451120972633, -0.028668634593486786, 0.016261398792266846, -0.002649736823514104, -0.013298180885612965, 0.03579619526863098, -0.0011871018214151263, -0.005484262015670538, -0.021356284618377686, 0.007959109731018543, 0.008454078808426857, 0.0018808841705322266, -0.025791211053729057, -0.024537287652492523, -0.004580117762088776, -0.009543011896312237, 0.012816410511732101, -0.01820167899131775, 0.01513946708291769, 0.014202325604856014, -0.002435249974951148, -0.009793796576559544, -0.0006426353938877583, -0.0039927540346980095, 0.006810780614614487, 0.02592320367693901, 0.006790981628000736, -0.021791858598589897, -0.02914380468428135, 0.007681926712393761, -0.016551779583096504, -0.02264980413019657, -0.015205463394522667, 0.002392352558672428, -0.008196694776415825, -0.0041940417140722275, -0.019046427682042122, 0.019072825089097023, 0.010183172300457954, -0.010994922369718552, 0.01863725110888481, -0.03880561143159866, -0.0364825539290905, -0.023164574056863785, 0.013674357905983925, -0.01598421484231949, -0.006922973785549402, -0.04556359350681305], "a45af541-a681-431f-8e18-14c46748011c": [0.0022549754939973354, -0.020237820222973824, 0.005977528169751167, -0.022100770846009254, -0.008456995710730553, -0.02242243103682995, -0.010949866846203804, -0.021243009716272354, -0.002816206542775035, -0.0016652642516419291, 0.008054920472204685, 0.0010579621884971857, 0.010219428688287735, 0.01124472264200449, -0.01381800789386034, -0.007223963271826506, 0.007894089445471764, 0.012893233448266983, 0.010594699531793594, -0.017034614458680153, -0.005726230796426535, 0.00042929977644234896, -0.0023471179883927107, -0.0292443186044693, -0.014782990328967571, 0.024406006559729576, 0.013750995509326458, -0.01405925303697586, 0.025384390726685524, -0.028708217665553093, 0.024271981790661812, -0.007364689838141203, 0.005846853367984295, -0.012893233448266983, -0.0054380763322114944, -0.0041748881340026855, -0.009026603773236275, -0.027274146676063538, 0.004151433706283569, -0.01221640594303608, 0.024151358753442764, 0.01283292192965746, -0.033586740493774414, -0.006470071151852608, -0.011217917315661907, 0.022556457668542862, 0.022958533838391304, -0.028091702610254288, -0.024553434923291206, 0.009301355108618736, 0.03361354395747185, 0.006449967157095671, -0.05361011624336243, 0.004590366501361132, 0.027501991018652916, 0.009616314433515072, -0.018629515543580055, 0.003947044722735882, 0.016940796747803688, -0.029297929257154465, 0.010963269509375095, 0.006423162296414375, -0.0026972589548677206, 0.014528341591358185, -0.01086945179849863, 0.016391294077038765, 0.024942107498645782, 0.006091449875384569, 0.0052571422420442104, 0.0032819444313645363, 0.04181589186191559, 0.02663082629442215, -0.020706908777356148, 0.003141217865049839, 0.02841336280107498, -0.007076535373926163, 0.016096437349915504, 0.02740817330777645, 0.004778001923114061, 0.023749282583594322, 0.004466393031179905, -0.020170805975794792, -0.012022068724036217, 0.029271123930811882, -0.0026453242171555758, -0.00859772227704525, 0.004332367796450853, 0.029780421406030655, 0.0013896747259423137, -0.032139264047145844, 0.008282762952148914, 0.018843956291675568, 0.016686148941516876, 0.007203859742730856, 0.0017188744386658072, -0.021162593737244606, -0.000864463159814477, -0.009348263964056969, -0.002358845202252269, -0.014501537196338177, -0.022275004535913467, 0.01868312619626522, 0.0019383408362045884, 0.0006596557213924825, -0.007130145560950041, 0.0011542928405106068, 0.0057563865557312965, 0.012745805084705353, 0.018857359886169434, -0.026134932413697243, -0.005515140946954489, 0.04792744666337967, 0.009395172819495201, -0.02334720641374588, 0.028949463739991188, -0.02673804573714733, 0.030450547114014626, -0.021497657522559166, -0.010447272099554539, -0.023896710947155952, 0.01999657414853573, -0.02391011267900467, 0.010561193339526653, -0.005273895338177681, 0.026496801525354385, 0.010219428688287735, -0.0023538193199783564, -0.005411271471530199, -0.003276918549090624, -0.01809341460466385, 0.01962130330502987, 0.0003216607146896422, 0.01476958766579628, -0.006604096386581659, 0.003809669055044651, 0.012397339567542076, 0.017584118992090225, 0.0018512243404984474, -0.015506726689636707, -0.016310878098011017, 0.026684436947107315, 0.0021041971631348133, -0.01830785535275936, -0.008209049701690674, -0.007860583253204823, 0.017999596893787384, -0.011311735026538372, -0.005531894043087959, 0.010172519832849503, -0.010990073904395103, -0.002447637030854821, -0.009167330339550972, -0.0005968313780613244, -0.012022068724036217, -0.00792759656906128, 0.022811105474829674, 0.000490867649205029, -0.00934156309813261, -0.017892377451062202, -0.003662241157144308, 0.006982717663049698, 0.03648168593645096, -0.0067749787122011185, -0.008859071880578995, -0.006855393759906292, 0.02860099822282791, 0.014313901774585247, 0.0016878810711205006, -0.01730266585946083, 0.014313901774585247, 0.016418099403381348, 0.03184441104531288, 0.0076461429707705975, 0.013750995509326458, -0.008021414279937744, -0.0008280250476673245, -0.003379112808033824, -0.016310878098011017, -0.03208565711975098, 0.016391294077038765, 0.01381800789386034, 0.0032869703136384487, 0.007894089445471764, 0.018227439373731613, -0.0566122829914093, 0.00010837201261892915, 0.04069007933139801, 0.005655867513269186, 0.01480979472398758, 0.018254244700074196, 0.0065303826704621315, 0.03305063769221306, 0.018080012872815132, 0.015600544400513172, -0.6145864129066467, -0.003111062105745077, -0.011191111989319324, -0.016498513519763947, -0.013382425531744957, 0.007022925652563572, -0.0039101880975067616, 0.0007254119263961911, -0.04251282289624214, -0.001511972863227129, 0.012203003279864788, -0.00330037297680974, 0.022315211594104767, 0.00610820297151804, -0.007411598693579435, -0.022703884169459343, -0.015520129352807999, -0.0036521893925964832, 0.007123444229364395, 0.0030423742718994617, -0.01514485850930214, 0.03128150478005409, -0.017811961472034454, -0.0025045976508408785, -0.017249055206775665, 0.009281251579523087, 0.025035925209522247, -0.008101829327642918, 0.005793243180960417, 0.02121620438992977, -0.0170748233795166, -0.0005758899496868253, -0.013637073338031769, -0.0022667027078568935, 0.04363863542675972, -0.007605935446918011, 0.014984028413891792, 0.020412052050232887, 0.011901446618139744, 0.03380117937922478, -0.006982717663049698, 0.009368368424475193, 0.053502898663282394, 0.001262350706383586, 0.007076535373926163, -0.007599234115332365, -0.00988436583429575, 0.007183755747973919, 0.02782365120947361, -0.03401561826467514, 0.0059038144536316395, -0.022355418652296066, 0.006198669783771038, 0.020304832607507706, 0.03607960790395737, -0.01010550744831562, 0.006403058301657438, -0.004409432411193848, 0.028627803549170494, -0.02782365120947361, 0.020157404243946075, -0.0021695345640182495, 0.012906636111438274, 0.007277573458850384, -0.00977044366300106, 0.02935153990983963, -0.04243240877985954, -0.01283292192965746, 0.01381800789386034, -0.018964579328894615, 0.03286300227046013, 0.031683579087257385, -0.022073965519666672, -0.006654355674982071, 0.0017121731070801616, 0.016793370246887207, 0.01161999348551035, -0.0017322769854217768, 0.006610797718167305, 0.00011036145588150248, 0.009267848916351795, 0.009066810831427574, -0.019487278535962105, -0.013402529060840607, 0.035007406026124954, -0.010916360653936863, 0.01644490286707878, -0.001517836470156908, -0.00257831159979105, 0.022073965519666672, 0.0003093052364420146, 0.007920894771814346, -0.019313044846057892, -0.04575623571872711, -0.011191111989319324, 0.0240977481007576, -0.009669925086200237, 0.02021101489663124, 0.0012070653028786182, -0.03184441104531288, -0.011707109399139881, -0.000798288150690496, -0.0011258125305175781, -0.014139669016003609, 0.0008108530309982598, 0.012135990895330906, 0.0052571422420442104, 0.0009733586921356618, 0.049589358270168304, -0.013570060953497887, 0.0048450143076479435, -0.05757726728916168, 0.020787322893738747, -0.004077719524502754, 0.013496346771717072, -0.031120672821998596, 0.027662821114063263, 0.003632085397839546, -0.017543911933898926, 0.02129661850631237, 0.0074987150728702545, 0.026309166103601456, 0.0028145310934633017, 0.005330855958163738, 0.01656552590429783, -0.009040006436407566, 0.016659343615174294, -0.022998740896582603, -0.03900136053562164, 0.007150249555706978, -0.017798559740185738, -0.0044831461273133755, 0.02584007754921913, -0.007425001356750727, 0.004473094362765551, -0.03551670163869858, 0.03095984272658825, -0.001800964935682714, 0.012404041364789009, -0.04562221094965935, -0.03028971701860428, 0.008343074470758438, 0.01553353201597929, -0.01206227671355009, -0.019138813018798828, -0.0150108328089118, -0.03717861697077751, -0.005830100271850824, 0.0018076661508530378, 0.01281281840056181, 0.0009733586921356618, 0.007076535373926163, 0.016163449734449387, 0.03326507657766342, 0.019929561764001846, -0.012323626317083836, 0.006610797718167305, -0.005515140946954489, -0.0006056267884559929, -0.0031881267204880714, 0.0025967401452362537, 0.020974958315491676, -0.02167188934981823, 0.0030457249376922846, -0.019527485594153404, -0.011834433302283287, -0.008678138256072998, 0.031227894127368927, -0.002092469949275255, -0.03581155836582184, -0.02644319087266922, -0.007163652218878269, -0.002759245689958334, 0.016029424965381622, 0.016552124172449112, 0.01326180249452591, -0.012256613001227379, 0.008028115145862103, 0.00037443317705765367, -0.010996775701642036, -0.003920239862054586, 0.0189511775970459, -0.004563561175018549, -0.02129661850631237, -0.0013536554761230946, 0.022851312533020973, 0.011666902340948582, -0.003397541120648384, -0.0009448783239349723, 0.0007819538004696369, 0.0038934347685426474, 0.01640469580888748, -0.039403434842824936, 0.003521514590829611, -0.004248601850122213, 0.007626039441674948, 0.0045032501220703125, -0.012558169662952423, -0.004724391736090183, 0.02983403019607067, 0.001132513745687902, -0.0064131105318665504, -0.004603768698871136, 0.0018445231253281236, -0.014019045978784561, -0.009368368424475193, 0.02252965234220028, 0.0036555398255586624, 0.033291883766651154, -0.014876808039844036, 0.006996120326220989, 0.006061294116079807, 0.0007769278599880636, -0.02334720641374588, 0.006523681338876486, 0.0515461266040802, -0.0016334332758560777, 0.021310022100806236, 0.014474731869995594, -0.01438091415911913, -0.0017096601659432054, 0.023615257814526558, 0.029780421406030655, 0.016163449734449387, -0.01887076161801815, -0.026362774893641472, -0.009301355108618736, -0.025116339325904846, 0.0026185191236436367, -0.04342419654130936, 0.007914193905889988, 0.019447069615125656, -0.010594699531793594, 0.013362322002649307, 0.044737644493579865, 0.015908801928162575, 0.03184441104531288, -0.019648108631372452, 0.041413817554712296, -0.0016543747624382377, 0.0015881997533142567, 0.022248199209570885, 0.022207992151379585, -0.01534589659422636, 0.009589510038495064, 0.014729379676282406, 0.04337058588862419, -0.007425001356750727, -0.03294341638684273, 0.0085776187479496, -0.007599234115332365, 0.003171373624354601, -0.035489898175001144, 0.04262004420161247, 0.005518491379916668, 0.0073043787851929665, 0.006322643253952265, 0.007847180590033531, 0.03286300227046013, 0.008289464749395847, -0.015868594869971275, -0.007753363344818354, 0.005823398940265179, 0.002698934404179454, 0.013087569735944271, -0.028466973453760147, -0.011224618181586266, -0.026805058121681213, -0.05411941558122635, -0.005424673669040203, -0.02614833414554596, -0.029860835522413254, -0.02435239590704441, 0.008121932856738567, 0.029994860291481018, -0.004905325826257467, 0.028332946822047234, 0.0009624691447243094, 0.0075188190676271915, -0.006336045917123556, -0.01301385648548603, -0.022100770846009254, 0.025652442127466202, -0.004838312976062298, 0.0006236364715732634, -0.027233939617872238, -0.008403385989367962, 0.006074696313589811, -0.01775835081934929, 0.012343729846179485, -0.035221848636865616, 0.014903612434864044, -0.026657631620764732, 0.008885877206921577, -0.001376272295601666, -0.010065299458801746, 0.03465894237160683, 0.014313901774585247, -0.00253642862662673, -0.0016401344910264015, 0.011164306662976742, 0.004821559879928827, -0.01322159543633461, 0.007471910212188959, 0.02114919200539589, -0.015640752390027046, 0.01951408199965954, -0.008249256759881973, -0.014112863689661026, -0.0059674764052033424, 0.021939940750598907, -0.009790548123419285, -0.0037326044403016567, -0.012705598026514053, 0.027126720175147057, -0.011184411123394966, 0.010969970375299454, -0.013885020278394222, 0.006915705278515816, 0.018991384655237198, -0.016243865713477135, -0.021122386679053307, -0.026041114702820778, -0.015051040798425674, 0.03573114424943924, 0.03181760385632515, -0.021953342482447624, 0.004841663874685764, -0.015560336410999298, -0.010139013640582561, -0.015131455846130848, -0.019607899710536003, 0.022516248747706413, -0.01577477715909481, -0.010949866846203804, 0.007357988506555557, 0.03382798284292221, -0.003047400154173374, -0.011579785495996475, 0.028547387570142746, -0.005625711753964424, -0.007773466873914003, 0.003809669055044651, -0.006888899952173233, 0.01251126080751419, -0.010045195929706097, 0.023481231182813644, 0.021805915981531143, -0.013831410557031631, -0.004432886838912964, 0.006406409200280905, 0.01570776477456093, -0.015037638135254383, -0.04479125514626503, -0.0141932787373662, 0.012558169662952423, 0.017463495954871178, 0.0393766313791275, -0.02334720641374588, 0.020827529951930046, 0.003298697527498007, 0.005404570139944553, 0.018147025257349014, -0.014903612434864044, -0.011311735026538372, -0.008229153230786324, 0.01842847838997841, -0.012236509472131729, -0.006175215356051922, 0.018602710217237473, 0.0054715825244784355, 0.0032819444313645363, 0.0008121095015667379, -0.020009975880384445, 0.04696246236562729, -0.015520129352807999, -0.049482136964797974, 0.008068323135375977, 0.00738479383289814, 0.003295346861705184, -0.010179220698773861, -0.008611124940216541, -0.005662568844854832, -0.0023839748464524746, -0.023816294968128204, -0.016418099403381348, 0.021980147808790207, -0.0056391144171357155, 0.01696760207414627, 0.0006286624120548368, 0.002065664855763316, 0.013885020278394222, -0.005974177736788988, -0.0072842747904360294, 0.02454003132879734, -0.018937774002552032, -0.04513971880078316, -0.006969315465539694, 0.01726245880126953, 0.027180328965187073, 0.008483801037073135, -0.0023119363468140364, -0.00544477766379714, -0.022878117859363556, 0.0011182735906913877, -0.021162593737244606, -0.025317378342151642, -0.03106706403195858, -0.02841336280107498, 0.021323423832654953, 0.02173890359699726, -0.016029424965381622, -0.026872072368860245, 0.013402529060840607, -0.0006073021213524044, 0.001433233032003045, -0.014072655700147152, -0.010782334953546524, -0.022087369114160538, 0.02648339793086052, -0.007538923062384129, 0.016029424965381622, 0.0002607210772112012, -0.012089082039892673, 0.02584007754921913, -0.027555599808692932, -0.027662821114063263, 0.010393661446869373, -0.026684436947107315, -0.02640298381447792, -0.01264528650790453, 0.006624200381338596, -0.004593716934323311, -0.018187232315540314, 0.029887640848755836, -0.0376611091196537, 0.025853479281067848, 0.01763772964477539, -0.002650350099429488, 0.00969673041254282, 0.0008150413050316274, 0.017691338434815407, -0.007445105351507664, -0.03725903108716011, 0.012893233448266983, 0.000602276180870831, 0.015439714305102825, 0.013777799904346466, -0.020224416628479958, 0.01581498421728611, 0.022020356729626656, -0.017919182777404785, -0.0040911221876740456, -0.019701717421412468, 0.019715121015906334, 0.02137703448534012, 0.01782536506652832, -0.039403434842824936, -0.024486420676112175, 0.017878973856568336, -0.01812021993100643, 0.010172519832849503, -0.005786542315036058, -0.0020556128583848476, 0.01656552590429783, 0.016136646270751953, -0.0018177180318161845, -0.02621534839272499, 0.008363177999854088, -0.0325949527323246, -0.0003067922662012279, 0.0017825363902375102, 0.012571572326123714, 0.020465662702918053, -0.0035952285397797823, 0.00859772227704525, -0.037982769310474396, 9.43412451306358e-05, 0.011090593412518501, -0.00307252979837358, -0.008463697507977486, 0.017811961472034454, 0.020948152989149094, 0.029378345236182213, 0.008215750567615032, 0.02648339793086052, 0.018254244700074196, -0.0036521893925964832, -0.005414621904492378, 0.007592532783746719, -0.007083236705511808, 0.005994281265884638, -0.023508036509156227, 0.0018596010049805045, -0.005106363911181688, -0.004788053687661886, -0.012658689171075821, -0.01553353201597929, 0.02021101489663124, 0.023936918005347252, 0.005293999332934618, 0.0021996900904923677, -0.019594497978687286, 0.001217117183841765, -0.020894544199109077, 0.001487680827267468, -0.012946843169629574, 0.013208192773163319, -0.00544477766379714, 0.00262019457295537, 0.0379023551940918, -0.008195647038519382, -0.004563561175018549, 0.01600261963903904, 0.008611124940216541, -0.01558714173734188, 0.02349463477730751, 0.01916561648249626, 0.018696527928113937, -0.013020557351410389, 0.007016224320977926, -0.04050244390964508, -0.0039537460543215275, -0.009488990530371666, -0.012819519266486168, 0.027274146676063538, -0.01300045382231474, 0.004275406710803509, -0.006731420289725065, -0.005330855958163738, -0.0031311658676713705, -0.019125409424304962, 0.028949463739991188, -0.014179876074194908, -0.017664533108472824, 0.00043809518683701754, -0.016163449734449387, -0.01916561648249626, -0.014139669016003609, 0.028735022991895676, 0.0074987150728702545, 0.003719202009961009, -0.018562503159046173, -0.02006358653306961, -0.003967148717492819, -0.0034293723292648792, 0.03374756872653961, 0.027367964386940002, 0.020318234339356422, 0.014742782339453697, -0.0038498765788972378, -0.02293172851204872, -0.011834433302283287, 0.014501537196338177, 0.0022633522748947144, 0.044550009071826935, 0.013482945039868355, -0.022690482437610626, -0.012196301482617855, -0.003394190687686205, 0.0034226709976792336, 0.011754018254578114, -0.03535587340593338, 0.020639894530177116, 0.010159117169678211, -0.008892578072845936, -0.025759661570191383, 0.016123242676258087, -0.019822340458631516, 0.003933642525225878, -0.01514485850930214, -0.013369022868573666, -0.015238676220178604, 0.011311735026538372, -0.05586174130439758, 0.001418992760591209, -0.0170748233795166, 0.023963723331689835, 0.002861439948901534, -0.010956567712128162, -0.01581498421728611, -0.018857359886169434, -0.017999596893787384, 0.014555146917700768, -0.005119766108691692, 0.026429787278175354, -0.013677281327545643, -0.011908147484064102, 0.02349463477730751, -0.020827529951930046, 0.012263314798474312, -0.0014809794956818223, -0.0019651458133012056, 0.02961958944797516, -0.028279338032007217, -0.00917403120547533, -0.013382425531744957, -8.455111674265936e-05, -0.0056190104223787785, -0.004587015602737665, -0.008316269144415855, 0.001060475129634142, -0.021202800795435905, 0.007786869537085295, 0.010078702121973038, 0.006852043326944113, -0.003340580500662327, -0.018669724464416504, -0.009562704712152481, 0.0018378219101577997, -0.01322159543633461, -0.00011653918045340106, -0.007257469929754734, -0.025129742920398712, -0.0028564140666276217, -0.02278430014848709, 0.04535416141152382, 0.023628659546375275, 0.0031730488408356905, -0.016659343615174294, 0.03323827311396599, 0.0343104749917984, -0.016793370246887207, 0.031495943665504456, -0.01581498421728611, 0.011660200543701649, -0.003926941193640232, 0.013047362677752972, -0.01951408199965954, -0.015091247856616974, 0.028332946822047234, -0.01283292192965746, -0.017463495954871178, -0.035784754902124405, -0.003518163925036788, 0.02535758540034294, -0.008564216084778309, 0.015091247856616974, -0.0042519522830843925, 0.011103996075689793, 0.014474731869995594, -0.024446213617920876, -0.022435834631323814, 0.02935153990983963, -0.012424144893884659, 0.012363833375275135, 0.015091247856616974, -0.0010805788915604353, -0.008778656832873821, -0.016176853328943253, 0.004958936013281345, 0.01558714173734188, -0.011251423507928848, -0.005163324531167746, 0.010762231424450874, -0.007203859742730856, -0.01845528371632099, 0.00526049267500639, -0.038277626037597656, -0.0042821080423891544, -0.026389580219984055, 0.024942107498645782, -0.012337028048932552, 0.004362523555755615, -0.03792915865778923, 0.017222249880433083, 0.028332946822047234, 0.0056391144171357155, 0.0006872984813526273, 0.011774121783673763, 0.017838766798377037, -0.00200032745487988, -0.026121530681848526, -0.022650275379419327, -0.010815841145813465, 0.04031480848789215, 0.03833123296499252, 0.00841008685529232, -0.005830100271850824, 0.004925429355353117, -0.036052804440259933, -0.015064443461596966, -0.010782334953546524, 0.026577215641736984, 0.02860099822282791, 0.01585519313812256, 0.0019550940487533808, 0.010762231424450874, -0.0035014108289033175, 0.035114627331495285, -0.009267848916351795, -0.009602912701666355, 0.02240902930498123, 0.04543457552790642, -0.020720310509204865, -0.01951408199965954, 0.004714339971542358, -0.017892377451062202, 0.012055574916303158, -0.011720512062311172, 0.001713848439976573, -0.0005365200340747833, -0.007009522989392281, -0.023132765665650368, -0.022328613325953484, -0.038438454270362854, 0.0004406081570778042, 0.004077719524502754, 0.00838998332619667, -0.015292285941541195, -0.005776490084826946, -0.004298861138522625, 0.015841789543628693, -0.023132765665650368, -0.0011995263630524278, -0.01070191990584135, -0.01515826117247343, 0.016806771978735924, -0.014327304437756538, -0.019902756437659264, 0.0049287802539765835, -0.02849377691745758, 0.024030735716223717, -0.004278757609426975, -0.017289262264966965, 0.04004675894975662, 0.006741472519934177, 0.0023873255122452974, -0.01570776477456093, 0.0074987150728702545, -0.0427272655069828, 0.007431702688336372, 0.005910515319555998, -0.007947700098156929, -0.022583262994885445, 0.001575634814798832, 0.05023267865180969, -0.0032936716452240944, 0.024406006559729576, -0.02192653901875019, -0.02719373255968094, -0.05001823976635933, 0.025317378342151642, -0.0057563865557312965, -0.008993097580969334, 0.01553353201597929, 0.019567692652344704, -0.01048077829182148, -0.0017791858408600092, -0.01553353201597929, -0.03256814554333687, 0.0025883635971695185, 0.027904067188501358, 0.014354108832776546, 0.01074212696403265, 0.006248929537832737, 0.009502393193542957, 0.011780823580920696, -0.03800957277417183, 0.006044541019946337, 0.17927223443984985, 0.005387817043811083, -0.005960775073617697, 0.018227439373731613, -0.013161283917725086, 0.016243865713477135, 0.003967148717492819, -0.006929107941687107, -0.003374086692929268, -0.011754018254578114, -0.02964639477431774, 0.006051241885870695, -0.022328613325953484, 0.011063788086175919, 0.008718345314264297, -0.0141932787373662, -0.007532221730798483, -0.025531819090247154, -0.034390889108181, -0.008276062086224556, 0.0069358088076114655, 0.007244067266583443, -0.007525520399212837, -0.01538610365241766, 0.03146914020180702, 0.01813362166285515, -0.02378948964178562, 0.005830100271850824, 0.0206264927983284, -0.01052098535001278, -0.017771754413843155, -0.019715121015906334, -0.023481231182813644, 0.0008384957327507436, -0.02223479561507702, 0.0057563865557312965, 0.014984028413891792, -0.008054920472204685, 0.026537008583545685, -0.01251126080751419, -0.006580641958862543, -0.0052269864827394485, 0.0020438856445252895, 0.005196830723434687, 0.007357988506555557, 0.01659233123064041, -0.0004514977044891566, -0.03865289315581322, -0.017021212726831436, -0.0015136481961235404, -0.039108581840991974, -0.0257328562438488, 0.009837456978857517, 0.02002337947487831, -0.0003128653042949736, -0.0017959389369934797, -0.01566755771636963, 0.001119948923587799, 0.01482319738715887, 0.01438091415911913, -0.02644319087266922, 0.05020587518811226, -0.004550158977508545, 0.004804806783795357, -0.031763993203639984, 0.013127777725458145, -0.029887640848755836, 0.0027793494518846273, 0.0022600016091018915, -0.010547790676355362, 0.014796392992138863, -0.018361466005444527, 0.016793370246887207, -0.014273693785071373, -0.02025122195482254, -0.020076988264918327, 0.03551670163869858, 0.024191565811634064, 0.0037393057718873024, 0.025652442127466202, 0.0036689424887299538, -0.010587998665869236, -0.005176727194339037, -0.006379603873938322, -0.005803295411169529, -0.01723565347492695, 0.02588028460741043, 0.003635436063632369, -0.0037728119641542435, -0.033211469650268555, -0.005853554699569941, 0.025531819090247154, -0.00045275420416146517, 0.009328160434961319, -0.0021511060185730457, 0.0011291630798950791, -0.016243865713477135, 0.02458023838698864, -0.003632085397839546, 0.007532221730798483, -0.03173718973994255, 0.05795253813266754, 0.0034478006418794394, 0.013992240652441978, 0.006305890157818794, -0.013737592846155167, -0.0002950650523416698, 0.02516994997859001, -0.001119948923587799, -0.055218420922756195, -5.353158849175088e-05, -0.027421575039625168, 0.019701717421412468, 0.00021203220239840448, 0.02252965234220028, -0.00779357086867094, -0.024526629596948624, -0.017610924318432808, -0.008416788652539253, -0.003111062105745077, -0.020224416628479958, -0.008128633722662926, 0.01767793670296669, -0.0020740414038300514, -0.026617422699928284, -0.0044831461273133755, -0.03278258815407753, 0.001800964935682714, 0.009730236604809761, -0.012651987373828888, 0.023601854220032692, -0.045595403760671616, 0.0047277421690523624, -0.02033163793385029, -0.01243754755705595, -0.015721166506409645, -0.01663253828883171, -0.008456995710730553, -0.015037638135254383, 0.002002002904191613, -0.017476897686719894, 0.02039865031838417, -0.03184441104531288, 0.011687005870044231, 0.009676625952124596, -0.011948355473577976, 0.004004005808383226, 0.01322159543633461, 0.005062805488705635, -0.03181760385632515, -0.004690885543823242, 0.006902302615344524, 0.005347609054297209, -0.013087569735944271, -0.004201692994683981, -0.029860835522413254, 0.0034947094973176718, -0.031093867495656013, 0.0032149318140000105, 0.0035014108289033175, -0.027394769713282585, 0.008282762952148914, 0.005622361321002245, 0.012089082039892673, -0.020934751257300377, -0.018977981060743332, -0.16694191098213196, -0.024218371137976646, 0.01648511178791523, -0.0214038398116827, 0.05288638174533844, 0.006262331735342741, 0.016176853328943253, 0.026617422699928284, -0.021310022100806236, -0.0005993443774059415, 0.0024593642447143793, 0.007378092501312494, -0.04345100000500679, 0.015399506315588951, -0.01012561097741127, -0.02159147523343563, 0.014930417761206627, 0.013978837989270687, 0.03087942861020565, 0.03039693646132946, 0.02849377691745758, -0.021470852196216583, 0.021350229158997536, 0.017141835764050484, -0.004412782844156027, -0.014796392992138863, -0.008309568278491497, -0.008155439049005508, 0.005404570139944553, -0.0025950646959245205, -0.006175215356051922, 0.00336068426258862, 0.00814873818308115, -0.01928623951971531, -0.0025464806240051985, 0.016391294077038765, -0.0010386960348114371, -0.01972852274775505, -0.012142691761255264, -0.007237365934997797, -0.0006303376867435873, 0.024674056097865105, 0.012176197953522205, -0.0024560135789215565, -0.013623671606183052, 0.002394026843830943, 0.009502393193542957, -0.02935153990983963, -0.015520129352807999, 0.008235854096710682, 0.022623470053076744, -0.02215438149869442, -0.01573457010090351, -0.010259636677801609, 0.002683856524527073, -0.03846525773406029, -0.0189511775970459, -0.01935325190424919, -0.000316215940983966, 0.0007086587720550597, -0.011365344747900963, -0.012497859075665474, -0.01943366788327694, 0.024298785254359245, 0.007311079651117325, -0.0035617221146821976, -0.026322567835450172, 0.019983170554041862, 0.006138358730822802, -0.006587343290448189, 0.012725701555609703, -0.013516451232135296, -0.007994608953595161, -0.00040605475078336895, 0.0007337884744629264, 0.023374011740088463, 0.00484836520627141, 0.03452491760253906, -0.00041966669959947467, -0.024593641981482506, 0.01208238024264574, 0.05296679586172104, 0.012383936904370785, -0.025826673954725266, 0.009006500244140625, -0.029003074392676353, -0.003846525913104415, 0.02961958944797516, -0.02472766675055027, -0.0341496467590332, 0.016578929498791695, -0.034364085644483566, 0.018321257084608078, -0.004359172657132149, 0.018656320869922638, 0.016873784363269806, -0.010587998665869236, -0.03350632265210152, 0.03364034742116928, -0.0009926247876137495, -0.012109185568988323, -0.0007920057396404445, -0.02991444617509842, 0.008456995710730553, 0.031120672821998596, 0.007800272200256586, -0.02614833414554596, 0.04069007933139801, 0.0497501902282238, 0.014782990328967571, 0.010594699531793594, 0.003779513295739889, 0.019594497978687286, 0.023065753281116486, 0.009395172819495201, 0.031040258705615997, 0.002759245689958334, 0.0017440041992813349, 0.0009448783239349723, -0.004054265096783638, 0.03841165080666542, 0.023333804681897163, -0.021832721307873726, 0.034390889108181, -0.013308711349964142, -0.0031244647689163685, -0.1289859414100647, -0.04548818618059158, -0.010192623361945152, 0.0198089387267828, 0.0150108328089118, -0.008999798446893692, -0.0033573335967957973, -0.018066609278321266, -0.008028115145862103, 0.026322567835450172, -0.01224991213530302, -0.020599687471985817, -0.0023906761780381203, 0.02378948964178562, -0.014702575281262398, 0.0024141306057572365, -0.0017523807473480701, -0.002378948964178562, -0.02290492318570614, 0.030182495713233948, 0.009107018820941448, -0.009442081674933434, 0.008664735592901707, 0.008899279870092869, -0.0042888093739748, -0.003208230482414365, -0.022985337302088737, -0.009797248989343643, 0.01048077829182148, 0.02625555545091629, 0.010862750001251698, 0.0069894189946353436, 0.006037839688360691, -0.021578071638941765, 0.011177709326148033, -0.005944021977484226, -0.024084346368908882, -0.028038091957569122, 0.02244923636317253, -0.01307416707277298, -0.0069358088076114655, -0.010185922496020794, 0.028064897283911705, -0.001819393364712596, 0.01126482617110014, 0.003729253774508834, -0.0300216656178236, 0.015292285941541195, -0.011305033229291439, -0.02472766675055027, -0.05395858362317085, -0.010018390603363514, -0.027877261862158775, -0.015935607254505157, 0.026322567835450172, -0.0197687316685915, 0.01036685612052679, 0.008926084265112877, -0.003166347509250045, 0.006104852072894573, -0.02376268431544304, 0.012337028048932552, -0.0062656826339662075, 0.010252934880554676, 0.015211870893836021, 0.019299643114209175, -0.03833123296499252, 0.004087771289050579, 0.05243069678544998, -0.005441426765173674, 0.003374086692929268, 0.03685695677995682, -0.019822340458631516, 0.010453972965478897, -0.021202800795435905, 0.023588452488183975, -0.014340706169605255, 0.005069506820291281, 0.013737592846155167, 0.01577477715909481, -0.011311735026538372, -0.0002563233720138669, -0.01007200125604868, 0.008041517809033394, 0.007391495164483786, 0.021457450464367867, 0.022248199209570885, 0.01172721292823553, 0.01983574405312538, -0.014943820424377918, 0.013214893639087677, 0.005588854663074017, 0.014997430145740509, -0.013831410557031631, 6.11490395385772e-05, 0.012203003279864788, 0.0026520255487412214, 0.018026402220129967, -0.010112208314239979, 0.024406006559729576, -0.03632085397839546, -0.026349373161792755, -0.03299702703952789, 0.02648339793086052, -0.013007154688239098, -0.006654355674982071, -0.0029887640848755836, -0.004365873988717794, 0.021269815042614937, -0.023079155012965202, 0.007411598693579435, -0.003665591822937131, -0.03173718973994255, 0.006336045917123556, 0.004804806783795357, 0.015546933747828007, -0.0013888371177017689, -0.020948152989149094, -0.001283292192965746, -0.023374011740088463, 0.013831410557031631, 0.010360155254602432, -0.03476615995168686, 0.009234342724084854, 0.0038029677234590054, -0.0074987150728702545, -0.0007957752095535398, -0.002775999018922448, -0.0008338886545971036, 0.027501991018652916, -0.006114904303103685, -0.043987102806568146, 0.007512117736041546, 0.003913538530468941, 0.014890210703015327, 0.011666902340948582, -0.009656522423028946, 0.01868312619626522, 0.007612636778503656, 0.0162974763661623, 0.04910686984658241, 0.009046707302331924, 0.0019199122907593846, -0.04010036960244179, 0.012799415737390518, -0.011908147484064102, -0.011847835965454578, -0.021269815042614937, -0.00019580258231144398, -0.002734116045758128, -0.019929561764001846, 0.008115231990814209, 0.02468745969235897, 0.011626694351434708, -0.017610924318432808, -0.008128633722662926, 0.01202877052128315, -0.022650275379419327, -0.004610470030456781, -0.027166927233338356, 0.002017080783843994, -0.010675114579498768, 0.032246485352516174, 0.019031591713428497, 0.011412253603339195, 0.007585831452161074, 0.005056104157119989, -0.018709931522607803, -0.041011739522218704, -4.0652594179846346e-05, -0.005726230796426535, -0.0012070653028786182, -0.01667274720966816, 0.004858416970819235, 0.019031591713428497, 0.018964579328894615, 0.03613321855664253, 0.009897767566144466, -0.034846577793359756, 0.008550813421607018, -0.027233939617872238, 0.018508892506361008, 0.022837910801172256, -0.0023739230819046497, -0.012719000689685345, 0.0019349901704117656, 0.04069007933139801, -0.0022465989459306, -0.002998816082254052, -0.0006512791733257473, 0.0030440494883805513, 0.015037638135254383, -0.021953342482447624, -0.0009331511100754142, -0.014099461026489735, -0.008651332929730415, 0.013402529060840607, 0.027662821114063263, -0.0089863957837224, 0.010139013640582561, -0.0016887186793610454, 0.021229606121778488, 0.0014416095800697803, -0.0014885184355080128, -0.01581498421728611, -0.010923061519861221, 0.001008540391921997, 0.02943195402622223, 0.013992240652441978, -0.025974102318286896, -0.006131657399237156, 0.003926941193640232, -0.001846198458224535, 0.01458195224404335, 0.017852168530225754, 0.006557187531143427, -0.03465894237160683, 0.022891519591212273, -0.009911170229315758, -0.02372247725725174, -0.014072655700147152, 0.012491157278418541, 0.02671124041080475, 0.014273693785071373, 0.024030735716223717, -0.00973693747073412, 0.0240575410425663, 0.02234201692044735, 0.013382425531744957, -0.02535758540034294, -0.006778329145163298, -0.009354965761303902, -0.014220084063708782, 0.03393520414829254, -0.027421575039625168, -0.014300499111413956, -0.018401673063635826, -0.03452491760253906, 0.022851312533020973, 0.00610820297151804, 0.0005943184369243681, 0.06653015315532684, -0.015185065567493439, -0.010594699531793594, 0.007538923062384129, -0.00977044366300106, -0.01566755771636963, 0.014032448641955853, 0.0022214693017303944, 0.004617171362042427, -0.015975814312696457, 0.017744949087500572, -0.0074987150728702545, -0.0024677407927811146, -0.024486420676112175, 0.014943820424377918, 0.014447926543653011, -0.013295309618115425, 0.024271981790661812, -0.041011739522218704, 0.012826221063733101, 0.016431501135230064, -0.013657177798449993, 0.016699552536010742, -0.021350229158997536, -0.001921587623655796, 0.018321257084608078, 0.029324734583497047, 0.006289137061685324, -0.011867939494550228, -0.037687912583351135, 0.011405552737414837, 0.010239532217383385, -0.012839622795581818, -0.015895400196313858, 0.011921550147235394, 0.019607899710536003, -0.004499899223446846, 0.02535758540034294, 0.023293595761060715, 0.011157605797052383, -0.02029142901301384, 0.011827732436358929, -0.04221796616911888, -0.040073562413454056, -0.023923514410853386, 0.01983574405312538, 0.0014885184355080128, -0.02167188934981823, -0.06342077255249023], "9800400e-4b08-40de-8eab-a8030438fdea": [0.001958829117938876, -0.009784100577235222, 0.016795704141259193, 0.01085559744387865, -0.001798104727640748, 0.008324187248945236, -0.002620143350213766, -0.030885880813002586, -0.015309004113078117, -0.013902665115892887, 0.028073202818632126, 0.0009183058282360435, -0.02965366095304489, 0.008284006267786026, -0.03241276368498802, -0.012348995544016361, 0.014344656839966774, -0.0037870698142796755, 0.024470297619700432, -0.009810888208448887, 0.007681289222091436, 0.014103570021688938, 0.00523024145513773, -0.0025062968488782644, -0.03999359905719757, 0.012208361178636551, 0.004336211830377579, -0.03230561316013336, 0.0031491946429014206, -0.02394794300198555, 0.006572960410267115, 0.013333432376384735, -0.013695062138140202, -0.0009836001554504037, -0.036055851727724075, -0.005350784864276648, -0.01888512261211872, -0.022113004699349403, 0.010996230877935886, -0.00816346239298582, 0.017331453040242195, 0.01194718386977911, 0.0021429925691336393, 0.0072125098668038845, -0.021831737831234932, 0.015014342032372952, 0.0215102881193161, -0.036029063165187836, 0.007674592547118664, 0.020545942708849907, 0.030028684064745903, 0.01203424297273159, -0.030859094113111496, -0.010601116344332695, -0.008946994319558144, 0.009904644452035427, 0.010909171774983406, 0.02358631230890751, 0.0024862063582986593, -0.0016323577146977186, -0.0035258925054222345, 0.012965105473995209, -0.014358051121234894, 0.006462462246417999, 0.0032848059199750423, 0.017773445695638657, 0.00014241274038795382, -0.003941097296774387, -0.004650963936001062, 0.020197706297039986, -0.011230620555579662, 0.028394652530550957, -0.007761651650071144, 0.036136213690042496, 0.04524393379688263, 0.0009902969468384981, -0.005776034668087959, 0.008665726520121098, -0.007098663132637739, 0.003967884927988052, 0.0008078077808022499, -0.02954651042819023, -0.01891190931200981, 0.011572160758078098, 0.01883154734969139, -0.004771506879478693, -0.004895398858934641, 0.013808908872306347, -0.012790987268090248, -0.04508320614695549, 0.006030515301972628, 0.0030018638353794813, -0.0032262085005640984, 0.029867960140109062, 0.008330884389579296, -0.010246183723211288, -0.013286554254591465, 0.013025376945734024, -0.013795515522360802, -0.017063578590750694, -0.023023776710033417, -0.0005989497294649482, 0.001039686263538897, -0.006074044853448868, -0.011625735089182854, 0.019675351679325104, 0.002019100822508335, -0.012335601262748241, 0.020318249240517616, -0.010962747037410736, -0.008371065370738506, 0.024537265300750732, 0.012134695425629616, -0.011036411859095097, 0.028689313679933548, -0.011846731416881084, 0.014103570021688938, -0.00020634675456676632, -0.02366667427122593, 0.008786269463598728, 0.019675351679325104, -0.005528251174837351, 0.010554239153862, -0.007051785010844469, 0.028233928605914116, 0.0041520483791828156, -0.01869761012494564, -0.02410866692662239, 0.008056312799453735, -0.027858903631567955, 0.021108478307724, 0.0017093714559450746, 0.033216387033462524, 0.011712794192135334, -0.019340509548783302, 0.011103380471467972, -0.008859935216605663, 0.01879136636853218, -0.011672613210976124, -0.018161863088607788, 0.02100132778286934, 0.0077281673438847065, -0.011485101655125618, -0.011565463617444038, 0.00918808113783598, 0.009656860493123531, 0.01585814543068409, -0.0003783721476793289, -0.007453596219420433, -0.0013385332422330976, 0.020130736753344536, 0.013728546909987926, 0.002154712099581957, -0.030778732150793076, -0.023318437859416008, 0.010092156007885933, -1.5525709386565723e-05, 0.00817685667425394, 0.02914470061659813, -0.00535413296893239, 0.036002278327941895, 0.0080831004306674, 0.006097483914345503, -0.0025062968488782644, -0.011679310351610184, 0.03276100009679794, 0.019702138379216194, -0.01085559744387865, -0.009844372048974037, -0.002275255508720875, -0.006757123861461878, 0.027751754969358444, -0.008096493780612946, 0.020077161490917206, 0.0009902969468384981, -0.03128769248723984, 0.008779573254287243, -0.006814046762883663, -0.009944825433194637, 0.0120744239538908, 0.0018952090758830309, -0.00940907746553421, 0.019849469885230064, 0.06123601645231247, -0.019608382135629654, -0.030832307413220406, 0.022367484867572784, 0.002844488015398383, 0.020626304671168327, 0.001370343379676342, 0.015268822200596333, 0.03150199353694916, 0.0012749132001772523, -0.035761188715696335, -0.6257538795471191, 0.0029298728331923485, 0.004198926035314798, -0.021845132112503052, 0.009281836450099945, 0.0009877856355160475, 0.017170729115605354, 0.015389366075396538, 0.008772876113653183, 0.04808339849114418, 0.01446520071476698, 0.016889460384845734, 0.009777404367923737, -0.00935550220310688, -0.0031877015717327595, -0.007600927259773016, 0.020599516108632088, -0.024939076974987984, -0.008906813338398933, 0.006007076241075993, -0.022394273430109024, 0.04047577455639839, -6.262602983042598e-05, 0.005350784864276648, -0.007346446625888348, -0.004992503207176924, 1.3158268302504439e-05, -0.024751564487814903, -0.0032027694396674633, 0.030162621289491653, -0.017438603565096855, -0.012991893105208874, -0.005799473728984594, -0.007058482151478529, 0.043904561549425125, -0.023171108216047287, -0.011625735089182854, 0.008853238075971603, 0.007252690847963095, 0.03940427675843239, 0.016407286748290062, 0.004701190162450075, 0.05127109959721565, 0.017492176964879036, -0.007333052810281515, -0.017559146508574486, 0.0022451195400208235, 0.0095363175496459, -0.0022853007540106773, -0.006743730045855045, -0.01475986186414957, -0.0003949049860239029, -0.00025824736803770065, -0.0156304519623518, 0.038761381059885025, -0.0033953040838241577, 0.02160404436290264, -0.002214983804151416, 0.011806550435721874, -0.01893869787454605, -0.01040690764784813, 0.025501612573862076, 0.002924850210547447, -0.0025046225637197495, 0.00042043672874569893, 0.02390776202082634, -0.003175982041284442, 0.0015729231527075171, -0.03134126588702202, -0.033243171870708466, 0.017840413376688957, 0.0019035801524296403, -0.008792966604232788, -0.017210910096764565, 0.006425629369914532, 0.012556597590446472, 0.012228451669216156, -0.002441002521663904, 0.01199406199157238, 0.010601116344332695, 0.007286175154149532, 0.011712794192135334, -0.03270742669701576, -0.0077281673438847065, 0.030430495738983154, -0.006897757761180401, -0.019179783761501312, 0.02126920223236084, 0.004580646753311157, 0.010118943639099598, 0.0002009055606322363, 0.038386356085538864, 0.0042692432180047035, -0.015121491625905037, -0.030376920476555824, 0.02448369190096855, 0.0013636464718729258, -0.010092156007885933, 0.0018968833610415459, -0.020746847614645958, -0.0006311783217824996, -0.020840603858232498, 0.008592060767114162, 0.011880215257406235, 0.027885692194104195, -0.0017194167012348771, -0.009328714571893215, 0.02160404436290264, 0.022996990010142326, -0.012409267015755177, -0.00936219934374094, -0.028260715305805206, -0.0013611351605504751, -0.0164340753108263, 0.004265894647687674, -0.020010193809866905, 0.023050565272569656, -0.011444919742643833, 0.009415773674845695, -0.02124241553246975, 0.008143371902406216, 0.00948274228721857, -0.0018834896618500352, -0.017920775339007378, 0.00930862408131361, 0.004058292135596275, 0.011766369454562664, -0.005096304230391979, -0.03442182019352913, -0.009000569581985474, 0.006030515301972628, 0.004841824062168598, 0.020050374791026115, -0.016755523160099983, 0.017746657133102417, -0.001699326210655272, 0.016876067966222763, -0.031153755262494087, 0.01889851689338684, 0.014036601409316063, -0.01580457016825676, -0.007292871829122305, 0.0008463146514259279, -0.020679879933595657, 0.00949613656848669, -0.04457424581050873, -0.00949613656848669, -0.004456755239516497, 0.004955670330673456, -0.024604234844446182, -0.004882005043327808, -0.019541414454579353, -0.007708076853305101, 0.013199495151638985, -0.0016147784190252423, -0.01584475114941597, -0.009422470815479755, -0.01597868837416172, 0.011123470962047577, 0.00676716910675168, -0.0188047606498003, 0.036323726177215576, -0.027537455782294273, 0.009884553961455822, 0.0017311362316831946, -0.009978309273719788, -0.01632692478597164, 0.03959178924560547, -0.014920586720108986, -0.06696852296590805, 0.00454381387680769, 0.005645446479320526, -0.008833147585391998, 0.030832307413220406, 0.00019368551147636026, 0.02142992615699768, -0.030376920476555824, 0.02960008569061756, -0.020679879933595657, -0.0215102881193161, 0.0016943035880103707, -0.0014749816618859768, 0.006161103956401348, -0.020036980509757996, 0.017760051414370537, 0.00057927769375965, 0.010935959406197071, 0.010051975026726723, -0.011056502349674702, 0.014103570021688938, 0.030591219663619995, -0.0031441720202565193, -0.013688365928828716, 0.011331073939800262, 0.001089075580239296, 0.012851258739829063, 0.03254669904708862, 0.015054523013532162, -0.012596778571605682, 0.027202613651752472, 0.014371444471180439, 0.023104138672351837, -0.00735984044149518, -0.01172618754208088, -0.00723260035738349, -0.008679119870066643, 0.014880404807627201, -0.013795515522360802, 0.01313922367990017, -0.028448227792978287, -0.010152427479624748, -0.0162331685423851, -0.0130923455581069, -0.002315436489880085, 0.02397472970187664, 0.027457093819975853, -0.03991323709487915, 0.022046037018299103, -0.0025213647168129683, 0.00722590321674943, 0.006060651037842035, 0.019286934286355972, 0.02136295847594738, 0.016594799235463142, 0.01458574365824461, 0.03554689139127731, -0.0004432479036040604, 0.016407286748290062, -0.009476046077907085, -0.047065477818250656, 0.01830919273197651, 0.0004072523151990026, 0.0026703698094934225, -0.030055472627282143, 0.024497084319591522, 0.027885692194104195, 0.030912669375538826, -0.023479163646697998, 0.019126208499073982, -0.004567252937704325, -0.012375782243907452, 0.005789428483694792, -0.002516342094168067, -0.01084890030324459, 0.04711905121803284, -0.0037468886002898216, 0.02938578650355339, 0.0035895127803087234, -0.013715152628719807, -0.010179215110838413, 0.011458314023911953, 0.005719111766666174, -0.03431466966867447, -0.002124576363712549, -0.022059431299567223, 0.0041252607479691505, 0.02132277749478817, -0.014224113896489143, 0.013112436048686504, 0.011110077612102032, -0.01631353236734867, 0.00233887555077672, -0.002400821540504694, -0.000804040813818574, 0.024925682693719864, 0.00527377100661397, -0.016969822347164154, -0.0215102881193161, -0.007533958647400141, -0.021108478307724, -0.016943035647273064, -0.04701190069317818, -0.027537455782294273, 0.008880025707185268, 0.033243171870708466, 0.009918037801980972, -0.0019454355351626873, 0.017103759571909904, 0.007453596219420433, 0.0051599242724478245, -0.025689125061035156, -0.023358620703220367, 0.04551180824637413, 0.017197515815496445, -0.0003859061107505113, -0.013929451815783978, -0.002017426770180464, -0.005089607555419207, -0.003098968183621764, -0.0016147784190252423, -0.02410866692662239, 0.01304546743631363, -0.0013644836144521832, 0.004359650891274214, 0.0010329894721508026, -0.0020760241895914078, 0.022983595728874207, -0.019621776416897774, 0.02398812398314476, 1.493711897637695e-05, 0.0017344846855849028, 0.009429167956113815, -0.024497084319591522, -0.030698370188474655, 0.03479684144258499, 0.016460862010717392, 0.009643467143177986, -0.02409527450799942, 0.008987175300717354, -0.01837616227567196, 0.0013343477621674538, 0.011920396238565445, -0.002837791107594967, -0.031019818037748337, 0.006027166731655598, 0.02376043051481247, -0.007574139628559351, -0.005665536969900131, 0.02903755009174347, -0.003420417197048664, -0.017076972872018814, -0.027939267456531525, -0.0033434033393859863, 0.012395872734487057, 0.054351650178432465, 0.011759672313928604, -0.00036937324330210686, 0.004456755239516497, -0.014371444471180439, -0.016608193516731262, -0.030698370188474655, -0.03691304847598076, 0.019193178042769432, -0.0016306834295392036, 0.01204094011336565, 0.0238809734582901, 0.00168090988881886, 0.007252690847963095, 0.03174307942390442, -0.0016608192818239331, 0.009241655468940735, -0.010011794045567513, 0.02161743864417076, -0.028742888942360878, 0.030457282438874245, 0.01596529595553875, 0.012924924492835999, 0.0011058177333325148, -0.0018265664111822844, -0.0025062968488782644, 0.007888891734182835, -0.010366726666688919, 0.02960008569061756, -0.016594799235463142, -0.002718921983614564, 0.019528020173311234, 0.0008207829087041318, 0.017907382920384407, -0.0030822260305285454, 0.025943605229258537, 0.025702517479658127, 0.03554689139127731, 0.0053273458033800125, -0.019474444910883904, 0.020666485652327538, 0.014250901527702808, 0.0007956697372719646, -0.028689313679933548, -0.02382740005850792, 0.020103950053453445, -0.009342108853161335, 0.008156766183674335, -0.016755523160099983, -0.0026017269119620323, 0.0033484259620308876, -0.012422660365700722, -0.046824388206005096, -0.0009258398204110563, -0.012503022328019142, 0.00731965946033597, -0.0013142571551725268, -0.038252416998147964, -0.01884494163095951, -0.025729306042194366, 0.020184312015771866, -0.0007759977015666664, -0.00812997855246067, -0.01332003902643919, -0.011002928018569946, -0.019514625892043114, 0.010185912251472473, 0.007379930932074785, -0.005427798721939325, -0.0004800805763807148, 0.03238597512245178, -0.03803811967372894, -0.002539781155064702, 0.0053239972330629826, 0.002819374669343233, 0.011686006560921669, 0.006512688472867012, -0.008498305454850197, -0.017492176964879036, 0.006814046762883663, 0.0017629462527111173, -0.04765480011701584, 0.0182690117508173, -0.003800463629886508, 0.009013962931931019, 0.016594799235463142, 0.02927863784134388, 0.0031893758568912745, -0.011110077612102032, 0.035921912640333176, -0.008592060767114162, 0.004356302320957184, -0.008009434677660465, -0.010909171774983406, -0.007808529306203127, 0.01064129825681448, 0.00134104466997087, -0.002837791107594967, 0.013246373273432255, -0.02390776202082634, 0.015456334687769413, -0.01872439868748188, 0.0014130357885733247, 0.0037803729064762592, -0.005059471819549799, -0.009837675839662552, -0.004711235407739878, 0.004443361423909664, 0.0016934664454311132, -0.01467949990183115, 0.011973971500992775, -0.01883154734969139, 0.019715532660484314, 0.011572160758078098, 0.016795704141259193, -0.00011824129614979029, 0.012282026931643486, 0.022715721279382706, 0.009596589021384716, -0.015094704926013947, -0.004801643081009388, -0.04757443815469742, 0.010105549357831478, 0.008967084810137749, -0.006710245739668608, 0.011672613210976124, 0.005005897022783756, -0.03134126588702202, -0.030939456075429916, 0.007520564831793308, 0.031100180000066757, 0.0027524062898010015, 0.02161743864417076, -0.028742888942360878, 0.0021814994979649782, 0.00229869456961751, -0.016768917441368103, 0.003298199735581875, -0.043449174612760544, 0.019541414454579353, -0.020599516108632088, 0.008551879785954952, 0.010788628831505775, -0.006790608167648315, -0.01049396675080061, -0.02716243267059326, 0.015148279257118702, 0.013119133189320564, 0.0014808414271101356, 4.776738933287561e-05, -0.0055851745419204235, 0.005635400768369436, 0.007306265644729137, -0.011310983449220657, -0.0017612720839679241, -0.013782121241092682, -0.005454585887491703, 0.02349255606532097, 0.027269581332802773, 0.019474444910883904, 0.03543974086642265, 0.0011870170710608363, 0.0240818802267313, 0.0065294308587908745, -0.006174497772008181, 0.01445180643349886, -0.010252880863845348, -0.0005663025658577681, -0.024818534031510353, 0.007714773528277874, -0.00531395198777318, 0.014947373420000076, 0.01353433821350336, -0.00799604132771492, -0.006345267407596111, -0.011203833855688572, 0.009656860493123531, 0.0054411920718848705, -0.014733074232935905, -0.0027708224952220917, -0.009388986974954605, 0.016889460384845734, -0.014558956027030945, 0.016608193516731262, -0.014009814709424973, 0.005263725761324167, 0.008859935216605663, -0.020572729408740997, -0.009301927872002125, 0.007935769855976105, -0.025327494367957115, -0.010935959406197071, -0.00595015287399292, 0.00391431013122201, 0.02669365145266056, 0.004758113529533148, -0.00017642020247876644, -0.029787598177790642, 0.011699400842189789, 0.0009459303691983223, 0.007004907354712486, 0.011880215257406235, -0.012061030603945255, -0.007379930932074785, -0.02633202262222767, -5.6190772738773376e-05, -0.01584475114941597, -0.00787549838423729, 0.009650163352489471, 0.009723829105496407, -0.03527901694178581, -0.01067478209733963, -0.01830919273197651, -0.020224492996931076, -0.0320645272731781, 0.02362649329006672, 0.02108168974518776, 0.0021446668542921543, -0.020626304671168327, -0.01631353236734867, 0.011351164430379868, -0.014733074232935905, 0.038814954459667206, -0.00048761453945189714, 0.03128769248723984, 0.01893869787454605, 0.023211289197206497, -0.0005307255196385086, -0.030859094113111496, 0.011197136715054512, 0.0013912710128352046, 0.046717241406440735, -0.004115215502679348, -0.007024997845292091, -0.017090367153286934, -0.001450705574825406, 0.011505192145705223, -0.01567063294351101, -0.03918997943401337, 0.009891250170767307, -0.0002109508350258693, -0.01340709812939167, -0.024965863674879074, -0.007245993707329035, -0.035573676228523254, 0.02081381529569626, -0.02180495113134384, 0.0004578972584567964, -0.033296748995780945, 0.005675582215189934, -0.020264673978090286, 0.022113004699349403, 0.022648753598332405, 0.01581796444952488, 0.01597868837416172, 0.00817015953361988, -0.010125639848411083, -0.005243635270744562, -0.023197894915938377, 0.017277877777814865, 0.017184121534228325, -0.0015762714901939034, -0.010487270541489124, -0.0026067497674375772, 0.024952471256256104, 0.01080871932208538, -0.003303222358226776, 0.006583005655556917, 0.0006081578903831542, 0.02639899030327797, 0.01470628660172224, -0.03217167779803276, -0.021778162568807602, -0.020264673978090286, -0.010286364704370499, -0.00043738813837990165, -0.012496326118707657, 0.004617479629814625, -0.02420242317020893, -0.019300326704978943, 0.012770896777510643, 0.01842973753809929, -0.024939076974987984, 0.0046710544265806675, -0.0071857222355902195, 0.0045237233862280846, -0.015188460238277912, 0.009047446772456169, 0.009810888208448887, -0.01817525550723076, -0.03964536264538765, -0.04069007188081741, -1.1072041161241941e-05, -0.0035292410757392645, -0.010085458867251873, 0.01611262559890747, 0.028314290568232536, 0.051833633333444595, -0.01603226363658905, 0.021912099793553352, 0.00459069199860096, 0.027885692194104195, 0.0020291460677981377, 0.019501233473420143, 0.0012364062713459134, -0.007721470203250647, 0.025394462049007416, 0.0007157260552048683, -0.001269890577532351, -0.001547809923067689, -0.01896548457443714, 0.008498305454850197, -0.020090555772185326, -0.014960767701268196, -0.002718921983614564, 0.02957329899072647, 0.01475986186414957, -0.016541223973035812, -0.012375782243907452, 0.0036464359145611525, 0.00787549838423729, 0.009797494858503342, 0.012623566202819347, -0.0008923555142246187, 0.011284195818006992, -0.0018717701314017177, 0.0002431794418953359, 0.002524713287129998, -0.0366719625890255, -0.008578667417168617, -0.007004907354712486, -0.0024493737146258354, 0.009944825433194637, -0.002183173783123493, -0.0328681506216526, 0.015094704926013947, -0.035412952303886414, 0.02922506257891655, 0.0018700959626585245, -0.009281836450099945, 0.0009517900762148201, 0.038305994123220444, -0.016956429928541183, 0.01836276799440384, -0.030350133776664734, 0.006134316325187683, -0.022849658504128456, -0.0018851638305932283, -0.033511046320199966, -0.0037904181517660618, -0.011083289980888367, 0.06289683282375336, 0.015134885907173157, -0.023438982665538788, -0.03458254411816597, -0.0066298833116889, -0.019380690529942513, -0.01178645994514227, -0.015442940406501293, 0.017974350601434708, 0.041707996279001236, 0.0018282405799254775, -0.00914120301604271, 0.02443011663854122, -0.005933410953730345, 0.030430495738983154, -0.044038500636816025, -0.01634031906723976, 0.020679879933595657, 0.0290911253541708, -0.02933221124112606, 0.01648765057325363, -0.0135276410728693, -0.022983595728874207, 0.008545183576643467, -0.012837865389883518, 0.02141653187572956, 0.014840223826467991, 0.011927093379199505, -0.01588493213057518, 0.005086258985102177, -0.0027507320046424866, 0.027617817744612694, 0.02890361286699772, -0.007125450763851404, -0.009034053422510624, -0.016527831554412842, 0.01441162545233965, 0.005719111766666174, -0.028742888942360878, -0.008364368230104446, 0.014157145284116268, -0.009609982371330261, -0.0030922715086489916, -0.017237696796655655, -0.02141653187572956, 0.013514247722923756, -0.02412206120789051, 0.04861914739012718, -0.003324987133964896, 0.007654502056539059, 0.030725156888365746, -0.01889851689338684, -0.0032680637668818235, -0.017893988639116287, 0.007547352463006973, -0.030832307413220406, -0.007179025560617447, 0.009985006414353848, -0.006559566594660282, -0.04797624796628952, -0.0008467332227155566, 0.03270742669701576, -0.033136025071144104, 0.02128259651362896, -0.010741750709712505, -0.01059442013502121, -0.02088078483939171, 0.011498495005071163, 0.0049020955339074135, 0.028153566643595695, -0.0017562494613230228, 0.01198736485093832, 0.007801832631230354, 0.0053239972330629826, -0.026385597884655, -0.004691144917160273, -0.016447467729449272, 0.017746657133102417, 0.024778353050351143, 0.00782862026244402, -0.003400326706469059, 0.02173798158764839, 0.017344847321510315, -0.02662668377161026, 0.010996230877935886, 0.19286933541297913, 0.003299873787909746, 0.027912478893995285, 0.03447539359331131, -0.006120922975242138, 0.028662526980042458, 0.009650163352489471, -0.019836075603961945, -0.01208112109452486, 0.002740686759352684, -0.019970012828707695, 0.0182690117508173, -0.022139793261885643, 0.005196757148951292, -0.006452417001128197, 0.04291342943906784, -0.0007550700684078038, -0.04034183546900749, -0.0008613825775682926, 0.0003879988507833332, 0.013561124913394451, 0.009623376652598381, -0.0378773957490921, -0.00917468685656786, 0.03369855880737305, -0.006690155249089003, -0.017358239740133286, -0.0039879754185676575, 0.043984923511743546, 5.074958244222216e-05, -0.01046718005090952, 0.014277688227593899, -0.014599137008190155, 0.01611262559890747, -0.051940783858299255, -0.00236064032651484, 0.03554689139127731, -0.0007224229048006237, 0.014947373420000076, 0.006224723998457193, -0.0025481521151959896, -0.0062448144890367985, -0.016755523160099983, -0.020130736753344536, -0.007132147438824177, -0.012918227352201939, -0.010072065517306328, -0.044279586523771286, -0.017585933208465576, 0.0270552821457386, -0.012991893105208874, -0.011927093379199505, 0.01634031906723976, 0.016634980216622353, 0.003944445867091417, -0.012261936441063881, -0.02160404436290264, 0.0009116089786402881, 0.01068147923797369, 0.02400151826441288, -0.010748447850346565, 0.030644794926047325, 0.005896578077226877, 0.027282975614070892, -0.0373416468501091, -0.0002095905365422368, -0.011424829252064228, 0.025769487023353577, -0.0003379817644599825, -0.020733453333377838, -0.03380570933222771, 0.017706476151943207, -0.00803622230887413, 0.007245993707329035, -0.02716243267059326, -0.033189598470926285, 0.012596778571605682, 0.03506471589207649, 0.04299379140138626, 0.013641487807035446, -0.03685947507619858, 0.0009819259867072105, -0.006301737856119871, -0.016527831554412842, -0.03359140828251839, -0.008953691460192204, 0.0062448144890367985, -0.0027942615561187267, -0.011250711046159267, -0.022421060130000114, -0.0045036328956484795, -0.006733684800565243, 8.889025048119947e-05, -0.01332003902643919, 0.022474635392427444, 0.003278109012171626, -0.028555376455187798, 0.017853807657957077, -0.00472128065302968, 0.014893799088895321, -0.006847531069070101, 0.028341077268123627, -0.003552679903805256, 0.005889881402254105, 0.0005880673415958881, -0.00782192312180996, -0.011270801536738873, 0.006971423048526049, 0.013822302222251892, -0.01050736103206873, -0.017840413376688957, 0.013608003035187721, 0.005293861497193575, -0.017800232395529747, 0.01194048672914505, 0.0002864997077267617, -0.02922506257891655, -0.043529536575078964, 0.007754954509437084, 0.0030872488860040903, 0.025782879441976547, -0.00949613656848669, -0.02887682616710663, -0.012998590245842934, 0.01081541646271944, -1.4597044355468825e-05, -0.024577446281909943, -0.006439023185521364, 0.01470628660172224, 0.010038580745458603, -0.004064989276230335, -0.04510999470949173, 0.0015310677699744701, -0.01888512261211872, -0.020144131034612656, -0.0010154101764783263, 0.009563104249536991, -0.025863243266940117, 0.00800273846834898, -0.011545373126864433, 0.0029348954558372498, -0.004008065909147263, -0.005203453823924065, 0.0020040329545736313, 0.005705717951059341, -0.02397472970187664, 0.018068106845021248, -0.0014975835802033544, 0.010614510625600815, 0.003756934078410268, -0.009837675839662552, -0.0016139413928613067, 0.010868990793824196, -0.03546652942895889, 0.012362388893961906, -0.0148134371265769, 0.0011518585961312056, 0.005980289075523615, 0.012536507099866867, 0.009589891880750656, -0.02898397482931614, -0.006422281265258789, 0.01833598129451275, -0.006355312652885914, -0.032198466360569, -0.013628093525767326, -0.16843922436237335, 0.02689455822110176, -0.0042424555867910385, -0.04216337949037552, 0.009208171628415585, 0.004342908505350351, 0.003820554120466113, 0.011605644598603249, -0.014960767701268196, 0.003843993181362748, -0.0006336896331049502, -0.02169780060648918, -0.0243497546762228, -0.017036791890859604, 0.014478594064712524, -0.00035388677497394383, -0.001036337809637189, 0.025300707668066025, 0.015201854519546032, 0.008505001664161682, 0.03168950229883194, -0.03399322181940079, 0.018108287826180458, 0.024845320731401443, 0.008906813338398933, -0.012790987268090248, -0.021791556850075722, 0.00295331166125834, -0.0065260822884738445, -0.04473496973514557, 0.0040114144794642925, 0.022367484867572784, -0.017411815002560616, 0.0035258925054222345, 0.025742698460817337, -0.0133602200075984, 0.027309762313961983, -0.019327115267515182, -0.008538486436009407, 0.01833598129451275, 0.044172435998916626, 0.044118862599134445, 0.002260187640786171, -0.001078193192370236, -0.004989154636859894, -0.0014138729311525822, -0.005193408578634262, -0.025247132405638695, 0.004172138869762421, -0.024711383506655693, 0.025233738124370575, -0.013902665115892887, -0.020840603858232498, -0.011431526392698288, 0.015831358730793, -0.0046677058562636375, -0.019193178042769432, 0.01899227313697338, -0.013835696503520012, -0.01304546743631363, 0.012683837674558163, -0.02349255606532097, 0.025327494367957115, 0.0035124989226460457, -0.0161662008613348, -0.0017545751761645079, -0.0066700647585093975, 0.013032074086368084, -0.033055663108825684, 0.011498495005071163, 0.004115215502679348, -0.0041286093182861805, 0.006231420673429966, 0.007205812726169825, -0.013594609685242176, 0.0038707805797457695, -0.005347436293959618, 0.015215247869491577, -0.014224113896489143, -0.017693083733320236, -0.017666295170783997, 0.02609093487262726, 5.281618723529391e-05, -0.0036096032708883286, -0.014599137008190155, 0.004517026711255312, 0.015201854519546032, 0.00455051101744175, -0.011853428557515144, -0.012054333463311195, 0.02433636039495468, 0.00044617775711230934, -0.02682758867740631, -0.0241488479077816, 0.03238597512245178, 0.02429617941379547, 0.011686006560921669, -0.0290911253541708, 0.006964725907891989, -0.022354092448949814, 0.00817685667425394, -0.005749247502535582, -0.013574519194662571, -0.023063957691192627, 0.033564623445272446, 0.012643656693398952, -0.030832307413220406, -0.0070450883358716965, 0.014518775045871735, 0.033403899520635605, -0.025809668004512787, 0.01475986186414957, 0.011049806140363216, 0.04267233982682228, -0.010393514297902584, 0.030778732150793076, -0.011565463617444038, -0.01867082342505455, -0.0037468886002898216, -0.01080871932208538, 0.0156304519623518, 0.005488070193678141, -0.013942846097052097, 0.027363337576389313, 0.01592511497437954, -0.006459113676100969, -0.10356011986732483, -0.04821733385324478, -0.0015578551683574915, -0.019769107922911644, 0.011692703701555729, 0.035868339240550995, -0.008344277739524841, 0.014224113896489143, 0.022675540298223495, 0.017626114189624786, 0.0005587685736827552, -0.011545373126864433, -0.0057291570119559765, 0.011545373126864433, 0.00025908445240929723, -0.004352953750640154, -0.0035660737194120884, -0.006147710140794516, -0.008371065370738506, 0.017679689452052116, 0.0016055703163146973, -0.03209131583571434, 0.005769337993115187, 0.014116964302957058, -0.019648563116788864, -0.001598873408511281, -0.0288232509046793, 0.0041051702573895454, 0.012369086034595966, 0.007379930932074785, 0.008665726520121098, -0.0068776668049395084, -0.0021095084957778454, -0.020545942708849907, 0.011290892958641052, 0.016929641366004944, -0.0365380235016346, 0.002437654184177518, 0.02430957369506359, -0.0148134371265769, -0.0003114036226179451, -0.00012075261474819854, 0.007694683037698269, -0.011585554108023643, 0.014933980070054531, 0.00735314330086112, -0.03423430770635605, 0.018202044069767, 0.010915868915617466, -0.022889839485287666, -0.04202944412827492, -0.0010036906460300088, -0.040877584367990494, -0.020438792183995247, 0.028046416118741035, -0.0021865221206098795, 0.014291082508862019, -0.014867011457681656, 0.008638938888907433, 0.025032833218574524, -0.017505571246147156, 0.0038305993657559156, -0.014371444471180439, -0.025006044656038284, -0.02118884027004242, 0.02949293702840805, -0.03972572460770607, -0.010031884536147118, 0.02106829732656479, -0.028608951717615128, -0.012154786847531796, 0.00800273846834898, -0.004520375281572342, 0.022327303886413574, 0.008967084810137749, 0.023130927234888077, -0.012342298403382301, 0.01603226363658905, -0.00476481020450592, 0.017465390264987946, -0.014210719615221024, -0.01565724052488804, -0.00922156497836113, -0.013654881156980991, -0.0028629042208194733, 0.015831358730793, -0.01200075913220644, -0.011371254920959473, 0.00591332046315074, -0.030162621289491653, 0.010206002742052078, 0.009770707227289677, 0.02082720957696438, 0.02965366095304489, 0.012523113749921322, 0.007674592547118664, 0.006917848251760006, 0.011364557780325413, 0.019099421799182892, -0.011089987121522427, -0.03393964469432831, 0.025434644892811775, -0.0368058979511261, 0.0030085607431828976, 0.0185368862003088, -0.024858715012669563, 0.013929451815783978, 0.0064088874496519566, 0.01635371334850788, -0.01818864978849888, 0.006171149201691151, -0.004506981465965509, -0.03217167779803276, 0.02432296611368656, -0.019206572324037552, 0.004758113529533148, -0.0161662008613348, -0.001679235603660345, 0.004399831872433424, -0.024778353050351143, 0.017291272059082985, -0.027885692194104195, 0.002214983804151416, -0.02443011663854122, -0.00459404056891799, -0.004945625085383654, 0.006489249411970377, -0.012583385221660137, -0.024510478600859642, 0.017545752227306366, -0.007621017750352621, -0.04516357183456421, 0.0032898285426199436, -0.008712604641914368, -0.022059431299567223, 0.007065178826451302, 0.024697991088032722, 0.0045304205268621445, 0.023077351972460747, -0.0031291041523218155, 0.017210910096764565, 0.027805330231785774, -0.010915868915617466, -0.025407856330275536, -0.0072995685040950775, -0.020492367446422577, 0.001039686263538897, -0.028394652530550957, -0.010386817157268524, 0.0021496894769370556, 0.0038540384266525507, 0.0031341267749667168, 0.018202044069767, 0.009476046077907085, 0.0006818232359364629, -0.017813626676797867, -0.01075514405965805, -0.03996681421995163, 0.00803622230887413, -0.004232410341501236, -0.002941592363640666, -0.014867011457681656, 0.0370737724006176, -0.019099421799182892, -0.013601306825876236, -0.013366916216909885, 0.00014345912495628, -0.028287503868341446, -0.03211810067296028, 0.0013937823241576552, -0.003552679903805256, -0.012951712124049664, -0.013983027078211308, -0.0008015295024961233, 0.022554997354745865, 0.0042725917883217335, 0.04267233982682228, 0.017425209283828735, -0.03458254411816597, -0.00267874076962471, -0.013554428704082966, 0.01177306566387415, 0.03750237077474594, -0.005856397096067667, -0.03402000665664673, -0.006492597982287407, 0.048806656152009964, 0.006372054573148489, -0.012014152482151985, -0.017800232395529747, -0.004135305993258953, -0.000427552149631083, -0.005123091861605644, -0.0008425476844422519, -0.002497925888746977, -0.001189528382383287, 0.019246753305196762, 0.00459404056891799, -0.012462841346859932, 0.01893869787454605, 0.0072995685040950775, 0.020666485652327538, 0.00676716910675168, -0.008873328566551208, -0.01340709812939167, -0.03964536264538765, -0.027430305257439613, 0.006338570266962051, -0.014210719615221024, -0.03163592889904976, -0.016527831554412842, 0.014438413083553314, 0.010996230877935886, 0.041038308292627335, 0.020853998139500618, 0.01639389432966709, -0.01879136636853218, 0.017358239740133286, -0.019474444910883904, 0.0005005896673537791, -0.007165631745010614, 0.00817685667425394, 0.01841634325683117, 0.02677401527762413, 0.041707996279001236, -0.019394082948565483, 0.011491797864437103, 0.01480004284530878, 0.009462651796638966, -0.02098793350160122, 0.007239297032356262, 0.0020057072397321463, -0.02141653187572956, 0.00672029098495841, -0.030162621289491653, -0.02418902888894081, -0.010781931690871716, -0.012061030603945255, 0.008859935216605663, -0.00527042243629694, 0.003894219407811761, 0.07270102202892303, 0.009683648124337196, 0.004440012853592634, 0.005052774678915739, 0.01331334188580513, 0.012462841346859932, 0.041199032217264175, -0.013969633728265762, -0.00034049307578243315, -0.0021496894769370556, 0.033564623445272446, -0.009382289834320545, 0.01900566555559635, -0.03155556693673134, 0.007647804915904999, 0.012529809959232807, -0.005076213739812374, 0.01896548457443714, -0.03929712623357773, 0.0025297359097748995, 0.0145455626770854, 0.0009902969468384981, 0.01576438918709755, -0.010072065517306328, -0.04256519302725792, 0.017465390264987946, 0.023318437859416008, 0.022179974243044853, -0.024470297619700432, -0.022005856037139893, 0.011752975173294544, 0.008993872441351414, -0.00918138399720192, -0.011223924346268177, 0.0067872595973312855, 0.02422920987010002, -0.016568012535572052, 0.017277877777814865, 0.015469728037714958, 0.01579117774963379, 0.02118884027004242, -0.005575129296630621, -0.035627253353595734, -0.03766309469938278, -0.03739522024989128, -0.0010162473190575838, -0.008324187248945236, -0.01577778346836567, -0.02657310850918293], "8d110233-ce34-468f-904d-59986c253e79": [-0.00728169921785593, 0.01586320251226425, -0.003913389053195715, -0.024514587596058846, -0.044892165809869766, 0.010049024596810341, -0.009189476259052753, -0.006904336623847485, -0.01800158992409706, -0.013871567323803902, 0.021942932158708572, 0.02336852438747883, -0.03505278751254082, 0.013990365900099277, -0.004423527512699366, -0.007638097275048494, 0.019189583137631416, -0.017414581030607224, -0.0019217536319047213, -0.008022448047995567, -0.005618508905172348, 0.013550110161304474, -0.011216052807867527, -0.03449372947216034, -0.009126582182943821, 0.02230631746351719, 0.01776399090886116, -0.01353613380342722, -0.004116046708077192, -0.0021331466268748045, 0.005318016279488802, 0.0018134366255253553, -0.021341947838664055, 0.011984754353761673, -0.010761820711195469, 0.011097253300249577, -0.006827466655522585, -0.0066527617163956165, -0.011824025772511959, 0.00716289971023798, 0.056324850767850876, 0.00993022508919239, 0.006579385604709387, 0.015024619176983833, 0.009119594469666481, 0.011153158731758595, 0.008015459403395653, -0.028008686378598213, -0.01589115522801876, 0.01935729943215847, 0.0193712767213583, 0.06121658906340599, -0.027966756373643875, -0.022669704630970955, -0.015611627139151096, 0.009601780213415623, -0.004926677327603102, -0.0031289642211049795, -0.0041719526052474976, -0.008162211626768112, -0.00040902779437601566, -0.009364181198179722, -0.030636247247457504, 0.004025200381875038, -0.020475411787629128, -0.013452275656163692, -0.0017592781223356724, 0.036450423300266266, -0.019007889553904533, -0.014619303867220879, 0.028735456988215446, 0.029825616627931595, -0.00796654261648655, 0.027659276500344276, 0.014703162014484406, -0.026121873408555984, -0.0026974433567374945, 0.008162211626768112, -0.0033071632497012615, -0.014800996519625187, 0.011586427688598633, 0.016631903126835823, -0.004451480228453875, 0.008532586507499218, 0.01566753350198269, -0.009629732929170132, -0.0014186035841703415, -0.004860289394855499, -0.027743134647607803, -0.039888616651296616, 0.01563958078622818, 0.01832304708659649, 0.026038015261292458, 0.019161630421876907, -0.0067331260070204735, 0.03496892750263214, -0.015388005413115025, 0.03178231045603752, -0.018253164365887642, -0.0066003501415252686, -0.0101957768201828, 0.019245488569140434, -0.0073445928283035755, -0.0026607553008943796, -0.03049648366868496, 0.005824660416692495, 0.006593361962586641, -0.014409658499062061, 0.031670499593019485, -0.017428558319807053, -0.026121873408555984, 0.018896078690886497, 0.011740167625248432, -0.0196088757365942, 0.0018745833076536655, -0.003612896893173456, 0.01668781042098999, -0.022264389321208, 0.0017330723349004984, -0.0013041718630120158, 0.010656997561454773, 0.008805125951766968, 0.04366224259138107, -0.0037386843468993902, 0.009965166449546814, -0.01008396502584219, -0.006645773537456989, -0.011998730711638927, -0.014940761029720306, -0.009797449223697186, 0.02306104265153408, 0.013871567323803902, 0.003909895196557045, 0.02651321142911911, 0.012152470648288727, 0.0050245122984051704, -0.025115571916103363, 0.00887500774115324, -0.009755520150065422, -0.024500612169504166, 0.033012233674526215, 0.024794116616249084, -0.009594791568815708, -0.01181703805923462, 0.018700409680604935, 0.006596856284886599, 0.018658479675650597, 0.0024371331091970205, -0.007659061811864376, -0.005132829304784536, 0.0257025808095932, -0.01695336028933525, 0.019511040300130844, 0.015611627139151096, 0.020726986229419708, 0.010090953670442104, 0.013130818493664265, 0.013689873740077019, 0.016310447826981544, -0.010000106878578663, 0.016897454857826233, 0.031139396131038666, 0.00010635159560479224, 0.02308899536728859, -0.005007041618227959, 0.03133506700396538, 0.008050400763750076, -0.009070676751434803, -0.029238607734441757, 0.009916248731315136, -0.009678649716079235, 0.0067331260070204735, -0.03368309885263443, 0.026401400566101074, -0.012264282442629337, 0.014633280225098133, -0.009524909779429436, 0.008854042738676071, -0.031083490699529648, 0.013647944666445255, -0.012774419970810413, -0.005758272483944893, 0.028246283531188965, 0.02410927228629589, -0.031670499593019485, -0.020810844376683235, 0.025772463530302048, 0.02360612340271473, -0.0034049979876726866, 0.005059453193098307, 0.013948436826467514, 0.027239983901381493, 0.02169135771691799, 0.013815661892294884, -0.6274840235710144, -0.010370481759309769, -0.01590513251721859, -0.019511040300130844, 0.01234115194529295, 0.0008516862872056663, 0.00995119009166956, 0.016813596710562706, -0.015779344365000725, 0.03418625146150589, 0.019552970305085182, -0.009385146200656891, -0.008008471690118313, -0.008078353479504585, 0.00899380724877119, -0.02251596376299858, 0.0058840601705014706, -0.011844990774989128, -0.013843614608049393, 0.0037247079890221357, -0.0007643338176421821, 0.013550110161304474, -0.02092265523970127, 0.007763884495943785, 0.002723648911342025, 0.013368416577577591, 0.03714924305677414, 0.019538993015885353, 0.01380168553441763, 0.010754832066595554, -0.0023078513331711292, -0.022362224757671356, -0.008022448047995567, 0.023648051545023918, 0.03600317984819412, 0.0007940336363390088, -0.025520887225866318, -0.004248822573572397, 0.012956113554537296, 0.03863074257969856, -0.034353967756032944, -0.01568150892853737, 0.04805082827806473, -0.021663405001163483, 0.013871567323803902, 0.011572451330721378, 0.008923924528062344, 0.01062205620110035, -0.003920377232134342, -0.016841549426317215, -0.003149928990751505, 0.005185240879654884, 0.008658373728394508, 0.024472659453749657, 0.020531317219138145, -0.017023243010044098, 0.022949231788516045, -0.01622658781707287, 0.004322198685258627, -0.018714386969804764, 0.008777173236012459, 0.013403357937932014, -0.01314479485154152, 0.010153847746551037, -0.012145482935011387, -0.0008311584242619574, -0.0318661704659462, 0.007777860853821039, 0.008616444654762745, 0.01958092302083969, 0.0028791362419724464, 0.023648051545023918, 0.00036229423130862415, 0.01088760793209076, 0.008413786999881268, 0.025618722662329674, 0.023927578702569008, -0.012236329726874828, 0.028987033292651176, 0.007131453137844801, 0.007484356872737408, -0.0077568963170051575, -0.035639792680740356, -0.015290170907974243, 0.040671296417713165, 0.0009713590843603015, -0.00014413152530323714, 0.028274236246943474, 0.034577589482069016, 0.01218741200864315, 0.010698926635086536, 0.010510245338082314, -0.007896659895777702, -0.028190378099679947, 0.01621261239051819, -0.010314575396478176, -0.0011687756050378084, -0.014493516646325588, 0.023410452529788017, -0.040140192955732346, -0.018155330792069435, -0.032481130212545395, 0.017372652888298035, 0.028162425383925438, 0.0025314735248684883, 0.026373447850346565, -0.027924826368689537, 0.009315263479948044, 0.010538198053836823, -0.018211236223578453, -0.02012600190937519, -0.013752767816185951, 0.0023305630311369896, -0.005129334982484579, -0.0011172377271577716, -0.02306104265153408, 0.038798458874225616, -0.0095668388530612, -0.0014011331368237734, -0.01938525214791298, 0.01260670367628336, 0.015024619176983833, -0.006743608042597771, -0.02409529685974121, 0.025353170931339264, -0.010160835459828377, 0.020000213757157326, -0.012404046021401882, -0.01696733757853508, 0.0028669070452451706, 0.013403357937932014, -0.0037351902574300766, 0.014395681209862232, -0.005136323161423206, 0.0050245122984051704, -0.037037432193756104, 0.00031097469036467373, -0.013578062877058983, 0.023731909692287445, -0.023648051545023918, 0.005870083812624216, 0.00014631533122155815, 0.02567462809383869, -0.026415377855300903, -0.019441157579421997, -0.0339067205786705, -0.021635452285408974, 0.007124464958906174, 0.004063635598868132, 0.008050400763750076, 0.002798772184178233, 0.013305523432791233, -0.02197088487446308, 0.021397853270173073, 0.025227384641766548, -0.0036757905036211014, -0.017694110050797462, 0.0012028430355712771, -0.017554346472024918, 0.012159459292888641, 0.007798825390636921, 0.014549422077834606, -0.02675081044435501, -0.0014395681209862232, -0.003254751907661557, -0.03278861194849014, -0.027785062789916992, 0.026946479454636574, -0.016562022268772125, -0.03474530577659607, -0.006418657023459673, 0.020251788198947906, -0.001899041933938861, -0.016534069553017616, -0.0011670285603031516, 0.01721891202032566, -0.017875803634524345, -0.010069988667964935, -0.005946953780949116, -0.013682886026799679, 0.022949231788516045, 0.005069935228675604, -0.02602403797209263, -0.01125099416822195, 0.0020178412087261677, 0.010482292622327805, 0.039860665798187256, 0.01100640743970871, 0.009161523543298244, -0.01008396502584219, 0.013815661892294884, 0.040671296417713165, -0.02018190734088421, -0.005167770199477673, -0.014675209298729897, 0.025409076362848282, 0.01986045017838478, 0.01206162478774786, 0.023927578702569008, 0.04556303098797798, 0.036506328731775284, -0.01245296373963356, 0.00930128712207079, -0.024528564885258675, -0.003867965890094638, -0.02651321142911911, 0.01642225868999958, -0.009231405332684517, 0.026974432170391083, 0.0115235336124897, 0.010810737498104572, -0.005258616525679827, -0.016785643994808197, -0.004825348500162363, 0.013109853491187096, 0.020796868950128555, -0.008525597862899303, 0.02754746377468109, 0.0020964585710316896, -0.010608079843223095, 0.022921279072761536, -0.006722643505781889, 0.01591910794377327, 0.01589115522801876, -0.03877050429582596, 0.018337024375796318, 0.004860289394855499, -0.01417205948382616, -0.02782699279487133, -0.028441954404115677, 0.017568321898579597, 0.008469692431390285, 0.019021866843104362, -0.02013997733592987, 0.00034329507616348565, -0.004605220630764961, 0.02440277673304081, -0.012299222871661186, 0.04737996309995651, -0.010035048238933086, -0.04167759418487549, 0.021914979442954063, 0.014577374793589115, -0.02469628117978573, 0.013759755529463291, -0.009720578789710999, 0.05014728754758835, 0.011027371510863304, -0.010042035952210426, 0.006830960512161255, -0.0011713962303474545, 0.0115235336124897, -0.033431526273489, -0.0045353383757174015, -0.009364181198179722, 0.012145482935011387, 0.013067924417555332, 0.02728191390633583, 0.015262218192219734, 0.02466832846403122, -0.010174811817705631, -0.0066842082887887955, 0.01798761449754238, 0.00965768564492464, 0.014193023554980755, 0.0069567481987178326, -0.0217193104326725, -0.04212483763694763, -0.013773731887340546, -0.0188261978328228, 0.008923924528062344, -0.005628990940749645, -0.018658479675650597, -0.00537042785435915, 0.00018453202210366726, -0.009993119165301323, -0.02912679687142372, 0.026135848835110664, 0.006502515636384487, 0.003731696167960763, -0.015429934486746788, -0.012152470648288727, 0.013836625963449478, 0.03133506700396538, -0.014577374793589115, -0.004800890106707811, 0.007980518974363804, 0.0049721007235348225, 0.012592727318406105, 0.016240565106272697, -0.012557785958051682, 0.025087619200348854, 0.01178908534348011, -0.011474615894258022, -0.0010822967160493135, 0.0017653927206993103, 0.005548626650124788, -0.006247446406632662, 0.0018955478444695473, 0.002183811040595174, 0.004077611956745386, -0.0004225674201734364, -0.006037800572812557, 0.005775743164122105, 0.0116772735491395, 0.016086824238300323, 0.0056883906945586205, -0.0008307216921821237, 0.0015461380826309323, -0.003661814145743847, -0.002838954096660018, -0.023927578702569008, -0.023228760808706284, -0.0206990335136652, 0.027505535632371902, 0.005891048349440098, -0.004367622081190348, -0.007519297767430544, 0.017121078446507454, 0.0033508394844830036, 0.016897454857826233, 0.008155223913490772, -0.0007010033004917204, -0.022655727341771126, 0.001588940853253007, 0.03024490736424923, -0.020503364503383636, 0.0164781641215086, -0.009238393977284431, 0.005943459924310446, -0.01113918237388134, -4.282316865555913e-07, 0.013284558430314064, -0.006418657023459673, 0.0031604112591594458, -0.0030625765211880207, 0.010118906386196613, -0.02602403797209263, -0.002033564727753401, -0.004018212202936411, 0.0004358886508271098, 0.0036827786825597286, 0.014451587572693825, -0.03021695464849472, 0.023913603276014328, -0.012236329726874828, 0.0019811533857136965, 0.017652180045843124, -0.03684176504611969, -0.0243748240172863, 0.0030206472147256136, 0.00821112934499979, -0.02436084859073162, -0.014395681209862232, -0.024249035865068436, 0.0349968820810318, 0.02307501994073391, 0.01338938158005476, -0.016813596710562706, 0.03239727020263672, 0.03331971541047096, 0.012984066270291805, 0.0026659963186830282, -0.022697657346725464, 0.008742231875658035, 0.028260260820388794, 0.008462703786790371, -0.012571762315928936, -0.00993721280246973, -0.01007697731256485, -0.029601993039250374, 0.028260260820388794, 0.004881254397332668, 0.009517921134829521, -0.0115235336124897, -0.003840013174340129, -0.01988840289413929, -0.013053948059678078, 0.0053005460649728775, 0.007959553971886635, 0.004444492049515247, -0.005482239183038473, -0.016492139548063278, -0.04483626037836075, -0.015304147265851498, -0.02968585304915905, 0.026303565129637718, -0.012040659785270691, -0.017875803634524345, -0.011593415401875973, -0.023424429818987846, 0.009427075274288654, -0.0180435199290514, -0.0029053420294076204, 0.008281011134386063, -0.03605908527970314, -0.029266560450196266, -0.014451587572693825, 0.023158878087997437, 0.02416517771780491, -0.014703162014484406, -0.011844990774989128, 0.0063767279498279095, 0.017079148441553116, -0.02758939377963543, -0.026415377855300903, -0.0015269205905497074, -0.027966756373643875, -0.0007315766415558755, 0.003429456613957882, 0.014423634856939316, 0.021341947838664055, -0.011893907561898232, 0.01667383313179016, -0.010663985274732113, -0.0077289436012506485, -0.02915474958717823, -0.030636247247457504, 0.005653449799865484, 0.03502483293414116, 0.020321670919656754, 0.00993022508919239, 0.0159330852329731, -0.01802954263985157, -0.0003011475200764835, -0.009741543792188168, -0.025828368961811066, -0.01747048832476139, 0.007239770144224167, -0.016492139548063278, 0.0026799726765602827, 0.009503944776952267, -0.019175607711076736, -0.034298062324523926, -0.016506116837263107, -0.0128512904047966, -0.007763884495943785, 0.007589179556816816, -0.004521362017840147, 0.0028494365978986025, 0.012299222871661186, 0.02276754006743431, -0.007882683537900448, -0.027896873652935028, 0.0032460165675729513, -0.031195301562547684, 0.0033071632497012615, 0.03692562133073807, -0.008930913172662258, 0.008106306195259094, -0.02545100636780262, -0.009252370335161686, -0.007882683537900448, 0.009895283728837967, 0.006848431192338467, 0.03315199539065361, -0.009629732929170132, -0.02041950635612011, -0.02199883759021759, 0.0047834194265306, -0.019818520173430443, 0.005321510601788759, -0.020321670919656754, -0.0005490100593306124, -0.000169900493347086, 0.0017680133460089564, 0.004060141276568174, -0.012522845529019833, -0.00735856918618083, -0.01748446375131607, -0.01700926572084427, -0.0006529594538733363, -0.006631797179579735, 0.047324057668447495, 0.01878426782786846, 0.013130818493664265, -0.015443910844624043, 0.008134258911013603, 0.010943513363599777, -0.03572365269064903, -0.03837916627526283, -0.015388005413115025, 0.029238607734441757, 0.02677876316010952, 0.008986818604171276, 0.0022239929530769587, 0.0514051616191864, 0.02334057167172432, 0.0031202291138470173, 0.012662609107792377, 0.002980465069413185, -0.02331261895596981, -0.03231341391801834, 0.0023323099594563246, 0.01231319922953844, -0.006359257269650698, 0.012886231765151024, 0.00807136483490467, 0.0034678918309509754, 0.03502483293414116, 0.0020719997119158506, 0.015234265476465225, 0.0034801210276782513, -0.012411034666001797, -0.00835788156837225, -0.0006857166299596429, 0.002120917197316885, -0.0039518242701888084, -0.013403357937932014, -0.0026432848535478115, 0.007840754464268684, 0.01061506848782301, 0.006114670541137457, -0.0053564514964818954, 0.007435439620167017, -0.02012600190937519, 0.008791149593889713, 0.01085965521633625, 0.03245317563414574, -0.00022329467174131423, 0.010426387190818787, -0.017889779061079025, -0.0025279794353991747, 0.010489280335605145, -0.006184552330523729, 0.03287246823310852, -0.009175499901175499, -0.017931709066033363, -0.023214783519506454, 0.0028354600071907043, -0.030105143785476685, -0.007260734681040049, 0.04081105813384056, -0.026848645880818367, -0.01245296373963356, -0.009986130520701408, -0.021663405001163483, -0.021258089691400528, -0.00048305897507816553, 0.03331971541047096, 0.008043412119150162, 0.014234953559935093, -0.019776592031121254, -0.016743715852499008, -0.0023043572437018156, -0.02121615968644619, 0.045702796429395676, -0.01498269010335207, 0.02840002439916134, -0.00188855966553092, 0.0024755680933594704, -0.022152578458189964, 0.0006389830959960818, 0.003408492077142, 0.008972842246294022, 0.027631323784589767, 0.0024843032006174326, -0.00043785409070551395, 0.012369104661047459, -0.009399122558534145, -0.01800158992409706, -0.004091588314622641, -0.036198850721120834, 0.014011330902576447, 0.003156917169690132, -0.009615756571292877, -0.01365493331104517, 0.0251575019210577, -0.031390972435474396, 0.011202076449990273, 0.0034207215066999197, 0.01805749535560608, -0.031139396131038666, -0.003993753343820572, -0.020209860056638718, -0.0024476153776049614, 0.005842131096869707, 0.006743608042597771, 0.0023689980152994394, 0.00045466943993233144, -0.0031376995611935854, -0.024850022047758102, -0.001781989703886211, 0.0159330852329731, 0.005496215540915728, 0.015192335471510887, -0.007610144093632698, -0.02336852438747883, 0.028302188962697983, 0.012501880526542664, -0.01932934671640396, -0.013955425471067429, -0.0029961885884404182, 0.030328765511512756, -0.004032188560813665, -0.012431998737156391, -0.0032442694064229727, 0.0033124045003205538, 0.0052760872058570385, -0.002316586673259735, -0.015276194550096989, -0.015765367075800896, 0.002578643849119544, 0.015122453682124615, 0.017037218436598778, 0.029490182176232338, -0.017093125730752945, -0.004304728005081415, -0.013633968308568, -0.0037561547942459583, -0.0018012073123827577, -0.013354440219700336, 0.024724233895540237, -0.027966756373643875, -0.020223835483193398, -0.03740081936120987, -0.010629044845700264, -0.0006835327949374914, -0.009699614718556404, -0.018951984122395515, 0.008735244162380695, 0.037261053919792175, -0.021369900554418564, 0.021859074011445045, -0.0238297451287508, -0.009503944776952267, -0.003240775316953659, 0.023717934265732765, 0.009748532436788082, -0.014549422077834606, 0.020559269934892654, -0.005995871499180794, -0.01194282528012991, -0.024276988580822945, -0.023717934265732765, 0.005953941959887743, -0.014968713745474815, -0.013668909668922424, 0.01621261239051819, 0.005929483566433191, 0.013228652998805046, 0.006670231930911541, -0.01139774639159441, 0.027407700195908546, -0.010433374904096127, 0.016058871522545815, 0.022432105615735054, 0.018085448071360588, -0.0005966171738691628, -0.01046831626445055, -0.011593415401875973, -0.015066548250615597, -0.04128625616431236, -0.045507125556468964, -0.0003205834364052862, 0.004035682417452335, 0.0006219493807293475, -0.005262110847979784, -0.051572877913713455, -0.018434857949614525, -0.009315263479948044, 0.019706709310412407, -0.007330616470426321, -0.007582191377878189, 0.0217891912907362, 0.006844936870038509, -0.010496268980205059, 0.010691937990486622, -0.033543337136507034, -0.013731802813708782, -0.007805813569575548, -0.02044745907187462, -0.013864578679203987, 0.005429827608168125, -0.0343819186091423, 0.033235855400562286, 0.015164382755756378, 0.003916883375495672, -0.051852405071258545, -0.0020545292645692825, -0.029350418597459793, -0.03709333762526512, -0.011390757746994495, 0.010028059594333172, 0.019175607711076736, 0.011733178980648518, -0.008504632860422134, 0.02384372055530548, -0.0042313518933951855, 0.0007726323092356324, -0.0493646077811718, 0.026401400566101074, 0.016897454857826233, 0.014731114730238914, 0.008176187984645367, -0.030105143785476685, -0.009098629467189312, -0.030636247247457504, 0.0034207215066999197, -0.023242736235260963, 0.020251788198947906, 0.01934332400560379, -0.02037757635116577, 0.00034067450906150043, -0.037764206528663635, -0.0007835513679310679, 0.014842926524579525, 0.009503944776952267, 0.009399122558534145, -0.012704538181424141, 0.008050400763750076, -0.011970777995884418, 0.018910055980086327, -0.0077009908854961395, 0.0034958445467054844, -0.00338578037917614, -0.011453651823103428, 0.01113918237388134, 0.03446577861905098, 0.0073166401125490665, 0.0003860977594740689, -0.02677876316010952, -0.002078987890854478, -0.0011277199955657125, 0.005842131096869707, 0.03105553798377514, -0.007505321409553289, 0.009007783606648445, -0.015038595534861088, -0.008916936814785004, -0.027407700195908546, -0.008958865888416767, 0.02410927228629589, 0.036757905036211014, -0.03365514799952507, -0.014549422077834606, 0.026429353281855583, -0.011886919848620892, 0.011747155338525772, -0.01206162478774786, 0.009769496507942677, -0.018183283507823944, 0.007777860853821039, 0.0262476596981287, -0.029266560450196266, 0.002192546147853136, 0.016296470537781715, -0.0017566574970260262, 0.011076289229094982, -0.019818520173430443, -0.012264282442629337, -0.01086664292961359, 0.012718514539301395, -0.017847849056124687, 0.011998730711638927, 0.011118218302726746, 0.001879824441857636, -0.0067051732912659645, -0.02441675402224064, 0.011886919848620892, 0.16011352837085724, -0.0011932343477383256, 0.01392747275531292, 0.04265594109892845, -0.007253746502101421, 0.020014191046357155, 0.021593522280454636, -0.010761820711195469, -0.01646418683230877, 0.010510245338082314, -0.02205474302172661, 0.008700302802026272, -0.017051195725798607, 0.009133570827543736, -0.006236963905394077, -0.013277570717036724, -0.015429934486746788, -0.02596813254058361, -0.010021071881055832, 0.01568150892853737, 0.010069988667964935, 0.00011770740820793435, -0.014675209298729897, -0.016002966091036797, 0.031922075897455215, -0.0012604956282302737, -0.011216052807867527, 0.01338938158005476, 0.04341066628694534, 0.0058596013113856316, -0.02623368427157402, 0.013585050590336323, 0.015737414360046387, 0.0013679391704499722, -0.01046831626445055, -0.009678649716079235, 0.010090953670442104, -0.015318123623728752, 0.017163006588816643, 0.02205474302172661, 0.004741490352898836, -0.029629947617650032, -0.03399058058857918, -0.007666049990803003, 0.022879350930452347, 0.010712902992963791, -0.007183864247053862, -0.02965790033340454, 0.0023462865501642227, 0.013557097874581814, -0.030412623658776283, 0.03127916157245636, 0.016282495111227036, 0.020517339929938316, -0.006722643505781889, 0.006582879461348057, -0.01378072053194046, 0.005856107454746962, 0.0318661704659462, 0.0074004982598125935, -0.005520673934370279, 0.02465435117483139, -0.03373900428414345, 0.024752186611294746, 0.010524221695959568, 0.024794116616249084, -0.024332894012331963, -0.008679337799549103, -0.04698862135410309, -0.02862364612519741, -0.02651321142911911, 0.005279581528156996, -0.010789773426949978, -0.011537509970366955, -0.01695336028933525, -0.009252370335161686, 0.012620680034160614, 0.03203388676047325, -0.010363493114709854, 0.018337024375796318, -0.033263806253671646, -0.022599821910262108, -0.012921172194182873, -0.014521469362080097, -0.009587803855538368, 0.004077611956745386, 0.007617132738232613, -0.007491345051676035, -0.015388005413115025, -0.015765367075800896, -0.00955985113978386, -0.014165070839226246, -0.011160147376358509, 0.013291547074913979, 0.008127271197736263, 0.002342792460694909, -0.023172855377197266, 0.00708952359855175, -0.03586341813206673, -0.009462015703320503, -0.016911432147026062, 0.0715591162443161, 0.011719202622771263, 0.011418710462749004, 0.01378072053194046, 0.0003306289727333933, 0.008511621505022049, -0.004182434640824795, 0.017065173014998436, -0.03628270700573921, 0.00497559504583478, -0.028316166251897812, 0.002316586673259735, -0.006645773537456989, -0.011327863670885563, -0.024235060438513756, 0.0046157026663422585, 0.008183176629245281, 0.008805125951766968, 0.008043412119150162, 0.017582299187779427, -0.013074913062155247, -0.01878426782786846, 0.0074773686937987804, -0.0005944333388470113, -0.0034678918309509754, -0.017093125730752945, 0.005922495387494564, -0.02494785562157631, -0.023200808092951775, 0.03659018874168396, -0.03208979219198227, 0.018113400787115097, -0.0017977131064981222, 0.01904981955885887, -0.022432105615735054, 0.002355021657422185, -0.04164964333176613, -0.007138441316783428, -0.006757584400475025, 0.010656997561454773, 0.03206183761358261, -0.014493516646325588, 0.00875620823353529, 0.012040659785270691, -0.03454963490366936, -0.002203028416261077, 0.02013997733592987, -0.002185557968914509, -0.02462639845907688, -0.018686434254050255, -0.014151094481348991, 0.026611046865582466, -0.028791362419724464, 0.01696733757853508, -0.021286042407155037, -0.014549422077834606, 0.005129334982484579, 0.009902272373437881, 0.00774990813806653, -0.04768744111061096, -0.009979142807424068, 0.014186035841703415, -0.017386628314852715, 0.012893219478428364, 0.003488856367766857, -0.17878597974777222, 0.027002384886145592, 0.001471888623200357, -0.03625475615262985, 0.012292235158383846, 0.0046925731003284454, 0.012697550468146801, -0.02356419339776039, -0.009189476259052753, -0.011656309477984905, -0.00735856918618083, -0.011782096698880196, -0.028553765267133713, -0.016282495111227036, -0.004573773592710495, 0.011656309477984905, -0.017107101157307625, 0.016296470537781715, 0.05065043643116951, 0.01857462152838707, 0.04539531469345093, -0.01853269338607788, -0.010677961632609367, 0.0066248090006411076, 0.009175499901175499, 0.008406798355281353, -0.007603155914694071, 0.014577374793589115, 0.01100640743970871, -0.023787815123796463, 0.0034678918309509754, -0.0006516491994261742, -0.0007730690413154662, 0.000733760476578027, 0.007442427799105644, 0.020489387214183807, -0.008343905210494995, -0.022432105615735054, -0.007337604649364948, -0.022180531173944473, 0.015234265476465225, 0.010566150769591331, -0.012131506577134132, 0.004133517388254404, 0.014116154052317142, 0.02676478587090969, 0.023773839697241783, -0.019664781168103218, 0.0009040977456606925, 0.01751241646707058, 0.033515382558107376, -0.0016806608764454722, 0.0228094682097435, -0.004769443068653345, 0.045507125556468964, -0.015332099981606007, -0.026177778840065002, 0.011348828673362732, -0.025353170931339264, -0.007896659895777702, 0.005450792144984007, -0.02336852438747883, -5.342147414921783e-05, 0.010097941383719444, 0.007805813569575548, -0.004472444765269756, -0.020237812772393227, 0.00728169921785593, -0.04617799073457718, -0.006240458227694035, 0.0034574095625430346, -0.00669469079002738, 0.03334766626358032, -0.005562603008002043, 0.013060936704277992, 0.03292837366461754, -0.0027603369671851397, 0.009587803855538368, -0.018518716096878052, -0.025059666484594345, 0.011069300584495068, 0.0032687282655388117, 0.014067236334085464, -0.019189583137631416, 0.028497859835624695, 0.010174811817705631, -0.004940653685480356, 0.005793213844299316, 0.006506009493023157, -0.01023071724921465, 0.024053366854786873, -0.01802954263985157, -0.0036583200562745333, -0.010014083236455917, 0.010873631574213505, -0.0014622798189520836, 0.007379533722996712, -0.0193712767213583, 0.003794589778408408, -0.01549981627613306, 0.0062963636592030525, -0.0037456725258380175, -0.004273281432688236, 0.0008717773016542196, 0.042348463088274, -0.0004232225473970175, -0.002784795593470335, 0.007903648540377617, 0.03930160775780678, 0.03795987367630005, -0.025115571916103363, -0.0036373555194586515, 0.023717934265732765, 0.01101339515298605, 0.008840066380798817, 0.009986130520701408, -0.006366245448589325, -0.022362224757671356, 0.02602403797209263, -0.0074214632622897625, 0.05160083249211311, -0.003679284593090415, 0.007847743108868599, -0.0002153237583115697, 0.01935729943215847, -0.0056639318354427814, -0.11896703392267227, -0.04008428752422333, 0.004238340072333813, 0.021034466102719307, -0.006729631684720516, 0.018476787954568863, -0.02890317514538765, 0.016016943380236626, -0.012138494290411472, 0.03782011196017265, -0.00849065650254488, -0.005877071991562843, -0.012690561823546886, -0.005188734736293554, -0.040419720113277435, 0.011719202622771263, 0.0012596221640706062, -0.020601198077201843, 0.002236222382634878, 0.031446877866983414, 0.00042606150964275, -0.025073643773794174, -0.013333476148545742, 0.016114776954054832, 0.0011320875491946936, 0.007582191377878189, -0.035108692944049835, 0.0058840601705014706, 0.0012622426729649305, 0.013221665285527706, -0.0008551803766749799, -0.026555141434073448, 0.008232093416154385, -0.0058840601705014706, -0.0007058077026158571, -0.0042837634682655334, -0.010531209409236908, -0.010810737498104572, 0.04164964333176613, -0.013053948059678078, 0.01586320251226425, 0.002416168339550495, -0.008455716073513031, 0.021258089691400528, 0.022879350930452347, -0.002971729962155223, -0.010335540398955345, 0.010153847746551037, -0.006809995975345373, -0.003794589778408408, -0.021160254254937172, -0.022641751915216446, -0.039413418620824814, 0.0026100908871740103, 0.001619514194317162, -0.018378952518105507, 0.02462639845907688, 0.009699614718556404, 0.005426333285868168, 0.008476680144667625, 0.009371169842779636, 0.018630526959896088, -0.013759755529463291, 0.018979936838150024, 0.0029472713358700275, 0.002594367368146777, -0.021174231544137, -0.02971380576491356, 0.016925407573580742, -0.018686434254050255, -0.012327175587415695, 0.027100220322608948, -0.015164382755756378, 0.025590769946575165, -0.007484356872737408, 0.003125470131635666, -0.02227836474776268, -0.00463317334651947, 0.007288687396794558, -0.011579439043998718, 0.006712161470204592, -0.023480335250496864, 0.02946222946047783, -0.000244150054641068, 0.016645880416035652, 0.013836625963449478, 0.011879931204020977, -0.008986818604171276, 0.013193712569773197, -0.001448303461074829, 0.013815661892294884, -0.0045842560939490795, 0.010656997561454773, -0.042236652225255966, 0.018965961411595345, -0.004465456586331129, 0.01752639375627041, -0.008371857926249504, -0.00603081239387393, -0.012669597752392292, -0.015835249796509743, -0.00723278196528554, -0.05752681940793991, 0.01724686473608017, -0.022460058331489563, 0.0020527823362499475, -0.015471863560378551, 0.02092265523970127, 0.012557785958051682, -0.027226008474826813, 0.008469692431390285, 0.019930332899093628, -0.03242522478103638, 0.010265658609569073, -0.0058596013113856316, -0.013005031272768974, -0.017680132761597633, -0.011495580896735191, 0.004095082171261311, -0.0054892273619771, 0.021174231544137, 0.00848366878926754, -0.01748446375131607, -0.006132141221314669, -0.009839378297328949, 0.006278892979025841, -0.0026537671219557524, 0.006285881157964468, -0.0201539546251297, 0.00622648186981678, -0.02651321142911911, -0.01958092302083969, -0.013494204729795456, -0.012131506577134132, -0.0007071179570630193, 0.03463349491357803, -0.0048393248580396175, -0.0014186035841703415, 0.02542305365204811, 0.03359924256801605, 0.03399058058857918, 0.03401853144168854, 0.00537042785435915, -0.04064334183931351, -0.00596093013882637, -0.0015679762000218034, -0.0033962626475840807, -0.02096458524465561, -0.025590769946575165, 0.009196464903652668, 0.0010001853806897998, -0.004262798931449652, 0.03544412553310394, 0.014074224978685379, -0.008784160949289799, -0.03508073836565018, 0.011977766640484333, -0.018197258934378624, 0.02011202462017536, 0.0033141514286398888, -0.00899380724877119, -0.017428558319807053, 0.05464768409729004, 0.01086664292961359, 0.03399058058857918, -0.03522050380706787, -0.0003371804195921868, -0.0318661704659462, -0.020489387214183807, 0.013717826455831528, 0.013438299298286438, -0.013738791458308697, -0.024752186611294746, -0.025814391672611237, -0.0182811189442873, 0.02542305365204811, 0.006313834339380264, -0.008350892923772335, 0.002774313325062394, 0.023745886981487274, 0.009441051632165909, 0.01752639375627041, 0.04642956703901291, -0.009112605825066566, 0.021272065117955208, 0.03681381046772003, 0.004077611956745386, -0.0022589340806007385, -0.02040552906692028, -0.008015459403395653, -0.006212505511939526, 0.013836625963449478, 0.0191336777061224, 0.012320187874138355, -0.03678585961461067, -0.0049476418644189835, 0.018462810665369034, 0.002659008139744401, -0.014395681209862232, -0.009133570827543736, -0.007169887889176607, 0.03949727863073349, 0.021160254254937172, -0.0055800736881792545, -0.01380867324769497, -0.008141247555613518, -0.016058871522545815, 0.004577267915010452, -0.02730986662209034, -0.019776592031121254, 0.004185928963124752, 0.02676478587090969, -0.0030381176620721817, 0.0082390820607543, 0.018686434254050255, 0.010929537005722523, -0.012900208123028278, 0.005852613132447004, 0.001758404541760683, -0.020545292645692825, -0.02362009882926941, 0.0214817114174366, -0.023731909692287445, 0.007183864247053862, 0.025311242789030075, -0.023997461423277855, 0.02733781933784485, 0.0023043572437018156, 0.01562560349702835, -0.01621261239051819, -0.000320146675221622, -0.008448727428913116, -0.021817144006490707, -0.004109058529138565, -0.0016797874122858047, -0.02893112786114216, -0.019399229437112808, -0.005814178381115198, -0.005213193595409393, 0.004371115937829018, 0.012788397260010242, 0.08978433161973953, 0.0465693324804306, -0.0063208225183188915, 0.015443910844624043, 0.005066441372036934, 0.0017426811391487718, 0.008511621505022049, 0.0013181482208892703, 0.016086824238300323, -0.03530436009168625, 0.041789405047893524, -0.01351516880095005, -0.017330722883343697, -0.01299105491489172, -0.019301394000649452, 0.000922441715374589, -0.010950501076877117, 0.025660652667284012, -0.004035682417452335, -0.008532586507499218, 0.008274022489786148, 0.008798137307167053, -0.005506697576493025, 0.0010281382128596306, -0.013039971701800823, -0.015304147265851498, 0.006488538812845945, -0.00860246829688549, -0.04327090457081795, -0.018448835238814354, 0.010943513363599777, -0.00875620823353529, -0.03918979689478874, -0.018127378076314926, -0.0008455715724267066, 0.014773043803870678, -0.01537402905523777, -0.00497908890247345, 0.016855526715517044, -0.017931709066033363, -0.003445180132985115, -0.006841443013399839, -2.4622468117740937e-05, -0.02363407611846924, -0.003254751907661557, -0.012508869171142578, -0.014241941273212433, 0.003114987863227725, -0.02756144106388092], "3654c353-73a0-4429-8b80-706b16bf79e3": [0.0032025817781686783, 0.003449885407462716, -0.012676076963543892, -0.00845071766525507, -0.011814046651124954, -0.002524263458326459, -0.013043499551713467, 0.0022133674938231707, -0.013707686215639114, -0.041207849979400635, 0.024829283356666565, 0.02328893542289734, -0.012563023716211319, 0.03645961731672287, -0.007814794778823853, -0.00012817834794986993, 0.011814046651124954, -0.024716230109333992, -0.01156674325466156, 0.006977494806051254, 0.015050191432237625, 0.014965401962399483, -0.005044993944466114, -0.02148008532822132, -0.028136085718870163, 0.007659346330910921, 0.017410174012184143, -0.02523910067975521, 0.006514683831483126, -0.01230158843100071, 0.03470729663968086, -0.008634429425001144, -0.024914072826504707, 0.0036282974760979414, -0.01919076032936573, 0.010125316679477692, -0.013114157132804394, 0.02047673985362053, 0.009976934641599655, -0.0017293589189648628, 0.01950165629386902, 0.010732976719737053, -0.01428708340972662, -0.0033403653651475906, -0.005359422881156206, 0.011114531196653843, 0.02930901199579239, -0.014484926126897335, -0.009588314220309258, 0.017212331295013428, 0.03883373364806175, 0.035611722618341446, -0.036346565932035446, -0.0023970785550773144, -0.005334692541509867, 0.005027329083532095, 0.003373927902430296, 0.022653011605143547, -0.018780943006277084, -0.0050237965770065784, 0.01863962784409523, -0.007157673127949238, -0.018865732476115227, -0.005401817616075277, 0.0014219958102330565, -0.0023758811876177788, -0.010803635232150555, 0.016449224203824997, -0.012139074504375458, 0.02374114654958248, -0.011163991875946522, 0.02783932164311409, -0.004076976794749498, 0.010634055361151695, 0.019021181389689445, -0.014159898273646832, -0.027090344578027725, 0.02557826042175293, -0.010895490646362305, -0.008648560382425785, 0.010393817909061909, -0.02108439989387989, -0.008019703440368176, 0.013785410672426224, -0.009552985429763794, -0.02460317686200142, 0.0023776476737111807, 0.04064258188009262, -0.028658956289291382, -0.0335485003888607, 0.00521810632199049, 0.009432866238057613, 0.003649494843557477, 0.01692969910800457, -0.00513331638649106, 0.0024182761553674936, -0.0005908790044486523, 0.0009503524634055793, 0.005882292985916138, -0.01958644576370716, 0.004260688088834286, 0.014795822091400623, -0.0001979532971745357, -0.007941978983581066, -0.018145019188523293, -0.009694301523268223, 0.0034304545260965824, -0.004815354943275452, 0.028065428137779236, -0.024165095761418343, -0.013297868892550468, 0.026751184836030006, -0.022130141034722328, -0.027457768097519875, 0.030383015051484108, -0.01156674325466156, 0.015558930113911629, 0.0038226074539124966, -0.0240803062915802, -0.009856815449893475, 0.021889902651309967, 0.012202667072415352, 0.01637856476008892, 0.0073555163107812405, 0.02362809330224991, -0.010662319138646126, 0.02037781849503517, -0.016392696648836136, -0.01656227745115757, -0.03202228620648384, 0.029874276369810104, 0.007949044927954674, 0.019275549799203873, -0.003043601056560874, -0.011806981638073921, 0.0025648917071521282, -0.022935643792152405, 0.009736696258187294, -0.005359422881156206, -0.004914276301860809, 0.02121158502995968, 0.015926353633403778, -0.02132463827729225, 0.008917061612010002, -0.023416120558977127, 0.013008169829845428, 0.029422065243124962, 0.004225358832627535, -0.008556704968214035, -0.005744509864598513, -0.00779359694570303, -0.017890650779008865, 0.0335485003888607, 0.025097783654928207, -0.0034233885817229748, -0.0022645946592092514, -0.027175134047865868, 0.013947923667728901, 0.026228314265608788, -0.0016163057880476117, 0.018470047041773796, 0.020095186308026314, -0.01977015845477581, -0.004363142419606447, 0.005044993944466114, 0.02841871790587902, 0.04454291611909866, 0.030637385323643684, -0.005112119019031525, 0.007097613997757435, 0.009482326917350292, 0.027924111112952232, -0.011934165842831135, 0.019303813576698303, 0.002324654022231698, 0.00013690021296497434, -0.004712900146842003, -0.018413521349430084, -0.008471915498375893, -0.0036671594716608524, 0.020052790641784668, -0.004370208363980055, 0.014696900732815266, 0.03889026120305061, -0.014597979374229908, -0.006277978885918856, 0.019784290343523026, 0.0013575202319771051, 0.008726284839212894, 0.001521800528280437, -0.005995346233248711, 0.014880611561238766, 0.0025171975139528513, -0.0005502505227923393, -0.609582245349884, -0.007101146969944239, -0.02731645107269287, -0.02150834910571575, 0.003085995791479945, -0.009418735280632973, 0.019671237096190453, 0.008839338086545467, -0.02618592046201229, 0.017099278047680855, 0.014322412200272083, -0.002531329169869423, 0.0064864205196499825, -0.02778279408812523, 0.004868348129093647, -0.011340637691318989, -0.014696900732815266, -0.01979842036962509, -0.02692076563835144, 0.006945698522031307, -0.016477486118674278, 0.028588298708200455, -0.01845591515302658, -0.013114157132804394, 0.016661198809742928, 0.03202228620648384, 0.014781690202653408, 0.014336544089019299, 0.003167252754792571, 0.02939380146563053, -0.0038614694494754076, -0.012146140448749065, -0.0070516858249902725, 0.021494217216968536, 0.05833538994193077, -0.00047561785322614014, -0.016887303441762924, -0.015460008755326271, 0.014484926126897335, 0.030693911015987396, -0.03422681987285614, -0.021494217216968536, 0.033265870064496994, 0.005044993944466114, -0.0016648833407089114, -0.01800370402634144, 0.010400883853435516, 0.013601698912680149, -0.020179975777864456, -0.011156925931572914, -0.005172178614884615, 0.00530289625748992, 0.00031531212152913213, -0.014654505997896194, 0.011128663085401058, 0.002856356790289283, 0.033689819276332855, -0.013283737003803253, -0.01753735914826393, -0.03148528188467026, -0.008252874948084354, -0.003612399334087968, -0.012195601128041744, 0.005709180608391762, -0.010323159396648407, 0.02420749142765999, -0.013142420910298824, -0.013523975387215614, 0.014039780013263226, -0.0005732144345529377, 0.01307882834225893, 0.031061334535479546, -0.0074473717249929905, 0.002607286674901843, 0.02384006790816784, 0.03790104761719704, 0.015714379027485847, -0.02439120225608349, 0.013001104816794395, 0.012280391529202461, 0.022963907569646835, -0.010047593154013157, -0.0061896564438939095, -0.015883957967162132, 0.016477486118674278, -0.0046599069610238075, -0.011284111067652702, 0.002322887536138296, 0.02639789506793022, 0.02631310559809208, 0.01060579251497984, 0.018837470561265945, -0.005267567001283169, -0.06353583186864853, -0.0058257668279111385, 0.012195601128041744, -0.012852721847593784, -0.007104679476469755, -0.01968536712229252, -0.020547397434711456, -0.032587550580501556, -0.016731856390833855, 0.011969494633376598, 0.024377070367336273, 0.007510964293032885, 0.018526574596762657, -0.00970136746764183, 0.020801767706871033, 0.026821844279766083, -0.039342474192380905, -0.034113768488168716, -0.033661555498838425, -0.009446998126804829, -0.0017585053574293852, -0.002243397058919072, -0.026143524795770645, 0.033718083053827286, -0.010210106149315834, 0.004949605092406273, 0.0007670828490518034, 0.006716059520840645, 0.018314599990844727, -0.01577090471982956, -0.015078455209732056, 0.028121953830122948, 0.014937138184905052, 0.010612858459353447, -0.024221623316407204, -0.04103826731443405, 0.005490140523761511, 0.004250089172273874, 0.004267754033207893, 0.013580501079559326, -0.009800288826227188, 0.008443651720881462, -0.011368900537490845, 0.0017549725016579032, -0.026751184836030006, 0.012047219090163708, -0.024546651169657707, -0.02423575520515442, -0.020307159051299095, 0.02413683384656906, -0.014908875338733196, -0.01729712076485157, -0.003488747403025627, -0.00960951205343008, -0.010838964022696018, 0.004172365181148052, 0.015926353633403778, -0.017339516431093216, 0.01485234871506691, -0.03674225136637688, 0.014449597336351871, 0.011877639219164848, -0.010937885381281376, 0.011538480408489704, -0.012831524945795536, 0.006214386783540249, -0.005811634939163923, -0.01364409364759922, 0.024362938478589058, -0.009220891632139683, 0.007189469411969185, -0.006535881198942661, -0.006458157207816839, -0.035866089165210724, 0.04038821533322334, -0.010980281047523022, -0.04403417557477951, 8.22505317046307e-05, 0.0066771977581083775, 0.016972094774246216, 0.008768679574131966, -0.01362996269017458, 0.03948378935456276, -0.02802303247153759, 0.010153579525649548, -0.012930446304380894, -0.0187950748950243, 0.01206841692328453, -0.01995386928319931, -0.006691329181194305, -0.015940485522150993, 0.021155057474970818, 0.02157900668680668, 0.013446250930428505, 0.01107920240610838, -0.015290429815649986, -0.02352917194366455, 0.002004925860092044, -0.0036212315317243338, -0.020589793100953102, 0.0044832611456513405, 0.014894743449985981, 0.035498667508363724, 0.010351423174142838, 0.006027142517268658, -0.007306055631488562, 0.04284711927175522, -0.002006692113354802, -0.0020155245438218117, 0.012167338281869888, -0.033322397619485855, 0.00513331638649106, -0.03493340313434601, 0.008203414268791676, 0.0017417240887880325, -0.010012263432145119, -0.0008677707519382238, 0.007949044927954674, -0.006101333536207676, -0.027146872133016586, -0.01882333867251873, 0.00788545235991478, 0.020858293399214745, -0.0016516349278390408, 0.005811634939163923, 0.013637027703225613, -0.010754174552857876, 0.010732976719737053, 0.008252874948084354, 0.003886199789121747, 0.013658225536346436, 0.009630709886550903, -0.006323906593024731, -0.008245809003710747, -0.004016917198896408, -0.02227145805954933, -0.041207849979400635, 0.015601325780153275, -0.012880985625088215, 0.021352900192141533, -0.00427128653973341, 0.029195958748459816, 0.016279643401503563, 0.02316175028681755, -0.015318692661821842, 0.0293655376881361, -0.01692969910800457, -0.019459262490272522, 0.02362809330224991, 0.005327626597136259, -0.040840424597263336, -0.015728510916233063, 0.002361749531701207, 0.030920017510652542, 0.0039497921243309975, 0.004341945052146912, 0.032559286803007126, -0.007334318943321705, 0.02071697823703289, -0.020179975777864456, 0.008295269683003426, 0.007097613997757435, 0.02019410766661167, -0.0019872612319886684, -0.0015889257192611694, 0.025903288275003433, 0.027853453531861305, 0.00690683675929904, 0.021889902651309967, 0.016731856390833855, 0.0015067856293171644, 0.0019907942041754723, 0.016519881784915924, 0.007659346330910921, -0.035611722618341446, -0.022017087787389755, -0.007864255458116531, 0.003886199789121747, -0.022992171347141266, -0.019105970859527588, 0.010838964022696018, 0.030241699889302254, 0.005716246552765369, 0.022568222135305405, 0.012619550339877605, -0.013841936364769936, -0.00018326964345760643, -0.014004450291395187, -0.007362581789493561, 0.018653757870197296, 0.029167694970965385, 0.013898462988436222, -0.00817515142261982, 0.004334879107773304, 0.0030736306216567755, -0.010704713873565197, 0.00596001697704196, -0.014308280311524868, -0.008726284839212894, -0.013304934836924076, 0.003167252754792571, -0.009906276129186153, -0.012202667072415352, 0.023416120558977127, -0.020985478535294533, 0.013919660821557045, 0.0023847133852541447, -0.0006805265438742936, 9.22972394619137e-05, -0.03530082479119301, 0.008846404030919075, 0.05008251592516899, -0.011757520958781242, 0.006935100071132183, -0.006942166015505791, 0.015346955507993698, -0.01690143533051014, -0.0072283316403627396, -0.017650412395596504, -0.02034955471754074, -0.010549265891313553, 0.04182964190840721, -0.004755295347422361, 0.0013425053330138326, -0.010019329376518726, 0.004334879107773304, 0.02731645107269287, -0.016180722042918205, -0.0009653673623688519, -0.013891397044062614, 0.013714752160012722, 0.06138782203197479, 0.02836219221353531, -0.01182817853987217, 0.005235770717263222, -0.01506432332098484, 0.013234276324510574, -0.010655253194272518, -0.008161019533872604, 0.017918912693858147, 0.006705461069941521, 0.006263847462832928, 0.00616492610424757, -0.009114904329180717, -0.013834871351718903, 0.010181843303143978, -0.012563023716211319, 0.005437146872282028, 0.006027142517268658, 0.01051393710076809, -0.00488954596221447, -0.009298616088926792, 0.02563478611409664, 0.03193749487400055, 0.004299549851566553, -0.013361461460590363, 0.010125316679477692, 0.022384509444236755, 0.02019410766661167, -0.023642225190997124, -0.002407677471637726, -0.011757520958781242, 0.02163553424179554, 0.005055592395365238, 0.04406243935227394, -0.006885639391839504, 0.02460317686200142, 0.03278539329767227, 0.011058004572987556, 0.0053523569367825985, -0.016519881784915924, 0.013008169829845428, 0.018498310819268227, 0.020830029621720314, -0.026030471548438072, -0.007475635036826134, 0.00732018705457449, -0.017678676173090935, 0.019289681687951088, -0.02184750884771347, -0.0020367219112813473, 0.005486607551574707, -0.01895052380859852, -0.008556704968214035, -0.028743745759129524, 0.0118564423173666, 0.03688356652855873, 0.013743015006184578, -0.005907023325562477, 0.012089613825082779, -0.038155414164066315, -0.01924728788435459, -0.005345290992408991, 0.012584221549332142, -0.001967830117791891, 0.019600577652454376, 0.004931940697133541, 0.0007525095716118813, -0.0012948111398145556, -0.02481515146791935, 0.009072509594261646, 0.014159898273646832, -0.01824394054710865, -0.0401621088385582, -0.013191881589591503, 0.012407575733959675, 0.029450327157974243, -0.008853469975292683, -0.003446352668106556, -0.0025118982885032892, 0.010690581984817982, -0.0005533418734557927, -0.056215643882751465, -0.033605027943849564, -0.02102787420153618, -0.013665291480720043, 0.013538106344640255, 0.02552173286676407, -0.003660093527287245, -0.005281698890030384, 0.005550199653953314, -0.013573436066508293, -0.008076229132711887, -0.0033138685394078493, -0.029874276369810104, -0.005790437571704388, 0.01803196594119072, 0.00034313378273509443, 0.01830046810209751, 0.02384006790816784, -0.015502403490245342, 0.018696153536438942, -0.011580875143408775, 0.012669011019170284, -0.003446352668106556, 0.006638335529714823, 0.010238369926810265, 0.0158556941896677, -0.0013804840855300426, -0.013312000781297684, -0.04358196258544922, 0.03015691041946411, 0.0068821064196527, 0.03473556041717529, 0.0062673804350197315, 0.014597979374229908, 0.019840816035866737, 0.030948281288146973, 0.029054641723632812, 0.006871507503092289, -0.027245793491601944, -0.007348450366407633, -0.04934766888618469, 0.011128663085401058, 0.008980654180049896, -0.021140925586223602, -0.0006880339933559299, 0.017466701567173004, -0.033294133841991425, -0.0368553064763546, 0.013234276324510574, 0.019883211702108383, 0.011277045123279095, -0.011559677310287952, -0.03165486454963684, -0.018145019188523293, -0.013206013478338718, -0.009602446109056473, 0.009955736808478832, -0.03128743916749954, 0.00619672192260623, -0.011863508261740208, 0.022469300776720047, 0.018865732476115227, -0.014923007227480412, -0.023882463574409485, -0.03250276297330856, 0.01989734172821045, 0.0009980467148125172, 0.018130887299776077, 0.015191507525742054, -0.007680543698370457, 0.00791371613740921, -0.025309758260846138, 0.0156719833612442, 0.003283838741481304, -0.006111932452768087, 0.0016251381020992994, -0.013319066725671291, 0.023091092705726624, 0.001528866239823401, 0.01468276884406805, 0.008203414268791676, 0.023571567609906197, 0.025846760720014572, -0.012654879130423069, 0.015544799156486988, 0.0050237965770065784, -0.003252042457461357, -0.0289981160312891, 0.00854257307946682, 0.01558719389140606, 0.020858293399214745, 0.01848417893052101, -0.01078950334340334, -0.009856815449893475, 0.03484861180186272, -0.0005440679378807545, 0.004818887449800968, -0.016632935032248497, -0.02833392843604088, -0.021225716918706894, 0.011284111067652702, -0.020787635818123817, 0.02854590304195881, -0.01934620924293995, -0.01319894753396511, 0.04143395647406578, 0.0022910914849489927, -0.012527694925665855, 0.026934897527098656, 0.019388603046536446, -0.0017894182819873095, 0.02362809330224991, 0.033972449600696564, 0.03606393188238144, -0.032107073813676834, 0.0006474055699072778, -0.026807712391018867, -0.001236518146470189, 0.024150963872671127, -0.002928781323134899, 0.03541387990117073, 0.01708514615893364, 0.004440866410732269, -0.009786157868802547, -0.01281739305704832, -0.01603940688073635, -0.026878369972109795, 0.022638879716396332, -0.022144272923469543, -0.0094893928617239, -0.005013197660446167, -0.01156674325466156, 0.006804382428526878, 0.008429520763456821, 0.00492134178057313, 0.010153579525649548, 0.019303813576698303, -0.03431161120533943, -0.015615456737577915, -0.0005573163507506251, -0.018653757870197296, 0.027146872133016586, -0.005034395027905703, 0.02420749142765999, 0.027358846738934517, 0.00030890872585587204, -0.0077300043776631355, -0.017466701567173004, 0.005027329083532095, 0.01564371958374977, 0.03425508365035057, 0.0014502591220661998, -0.012923380360007286, -0.017071016132831573, -0.01129117701202631, 0.008062098175287247, -0.000841715547721833, -0.014838216826319695, 0.010542199946939945, 0.016124196350574493, 0.0029146496672183275, -0.025535864755511284, 0.03128743916749954, -0.039992526173591614, 0.004384339787065983, -0.019176628440618515, -0.016095932573080063, -0.02460317686200142, 0.006977494806051254, -0.026044603437185287, 0.010146514512598515, 0.009411669336259365, 0.016463354229927063, 0.0015562463086098433, 0.02805129624903202, 0.006253248546272516, -0.004398471675813198, -0.04400591179728508, 0.0002172738895751536, 0.013891397044062614, 0.03922941908240318, -0.0033156350255012512, 0.004698768723756075, 0.024928204715251923, -0.009892145171761513, -0.029450327157974243, -0.015149112790822983, 0.004840085282921791, 0.032926708459854126, -0.023020433261990547, 0.004818887449800968, -0.0186113640666008, -0.012866853736341, -0.014138701371848583, -0.008372994139790535, -0.025408679619431496, -0.0009150233818218112, -0.01625138148665428, -0.013820739462971687, 0.047906242311000824, 0.019840816035866737, -0.028927456587553024, 0.003174318466335535, -0.01194829773157835, 0.008860534988343716, 0.0035452740266919136, -0.017579754814505577, -0.003416322870180011, -0.019854947924613953, 0.007659346330910921, -0.0030842293053865433, 0.021126795560121536, 0.03275712952017784, 0.015530667267739773, -0.017282990738749504, 0.010888424701988697, 0.030665649101138115, -0.010916688479483128, 0.02068871445953846, -0.014329478144645691, 0.002487167716026306, -0.019657105207443237, 0.009878013283014297, -0.0022663609124720097, -0.001964297378435731, 0.007906650193035603, -0.03835325688123703, 0.0008403906831517816, -0.009348076768219471, -0.008768679574131966, 0.008549639023840427, -0.024122701957821846, -0.004034582059830427, 0.0002802038216032088, 0.015346955507993698, 0.015007796697318554, 0.0032308450900018215, 0.0015076688723638654, 0.010718845762312412, -0.0014997198013588786, 0.010393817909061909, 0.032135337591171265, -0.010549265891313553, 0.01808849349617958, -0.002245163545012474, -0.0038614694494754076, -0.009446998126804829, -0.02484341524541378, -0.0024642038624733686, -0.00913610216230154, -0.004281885456293821, -0.013615830801427364, 0.002368815476074815, -0.029224222525954247, 0.00394272617995739, -0.018159151077270508, 0.0226106159389019, 0.01952992007136345, -0.0034286880400031805, 0.004868348129093647, 0.028644824400544167, -0.0026832441799342632, 0.01043621264398098, -0.023006301373243332, -0.018865732476115227, -0.005200441926717758, 0.013326131738722324, -0.014089240692555904, 0.003490513889119029, 0.005221639294177294, 0.046153921633958817, 0.010323159396648407, -0.015488272532820702, -0.022850854322314262, 0.010203041136264801, -0.02673705480992794, -0.029252484440803528, -0.02731645107269287, 0.033689819276332855, 0.012449970468878746, 0.0012577155139297247, 0.0037554821465164423, 0.04259274899959564, -0.02505538985133171, 0.01716993749141693, -0.029082905501127243, 0.005345290992408991, 0.03303976356983185, 0.04021863266825676, -0.003734284546226263, -0.01811675727367401, -0.015304560773074627, -0.061161719262599945, 0.002451838692650199, -0.019756026566028595, 0.015078455209732056, 0.011877639219164848, -0.0013009937247261405, -0.0036671594716608524, -0.01069764792919159, -0.002649681642651558, 0.018441783264279366, 0.0030453673098236322, -0.008888798765838146, -0.013919660821557045, -0.009298616088926792, -0.004984934348613024, 0.02807956002652645, -0.006200254894793034, -0.015389351174235344, -0.013502777554094791, -0.010287830606102943, 0.018145019188523293, 0.003889732528477907, -0.013001104816794395, 0.016943830996751785, -0.013092960231006145, 0.043044961988925934, -0.01449905801564455, 0.001883040415123105, 0.01520563941448927, 0.016477486118674278, -0.00939753744751215, -0.016420960426330566, 0.0053064292296767235, -0.03804236277937889, -0.011934165842831135, 0.0152339031919837, 0.005804568994790316, -0.014541452750563622, 0.00409464119002223, 0.03117438778281212, -0.01603940688073635, -0.004080509766936302, -0.052032679319381714, -0.01858310028910637, -0.0390598401427269, 0.01025250181555748, 0.018512442708015442, -0.010118250735104084, 0.002209834521636367, 0.02313348650932312, 0.014131635427474976, -0.0009468195494264364, -0.013410922139883041, 0.000783864117693156, -0.009256221354007721, 0.018046097829937935, 0.017438437789678574, 0.007680543698370457, -0.009404603391885757, 0.0023193545639514923, 0.009143168106675148, -0.03165486454963684, 0.0031107261311262846, 0.1995386928319931, 0.01544587779790163, 0.011884705163538456, 0.008111558854579926, -0.01772106997668743, 0.03287018463015556, -0.0013548705028370023, -0.008033834397792816, -0.0038332061376422644, -0.006186123471707106, -0.03261581435799599, 0.02692076563835144, -0.024645572528243065, 0.002531329169869423, -0.023232407867908478, -0.008577902801334858, 0.0027592016849666834, -0.03159833699464798, -0.012845656834542751, 0.0012789129978045821, -0.0016136560589075089, -0.008556704968214035, -0.028913326561450958, -0.02610113099217415, 0.035018190741539, -0.003100127447396517, -0.009242089465260506, -0.013693554326891899, 0.033972449600696564, -0.009263287298381329, -0.01017477735877037, 0.0032202464062720537, -0.018893996253609657, 0.031004806980490685, -0.029902540147304535, -0.003451651893556118, 0.0372227281332016, -0.0026302505284547806, 0.04640829190611839, -0.02579023502767086, 0.020363686606287956, -0.028531771153211594, -0.03990773856639862, -0.02405204251408577, 0.0008545223390683532, 0.03450945392251015, -0.011163991875946522, -0.019515788182616234, -0.015106718055903912, 0.029167694970965385, -0.04392112419009209, 0.001088135875761509, 0.019148366525769234, 0.00918556284159422, -0.013940858654677868, -0.016420960426330566, 0.006896237842738628, 0.0012577155139297247, 0.02817848138511181, 0.026426158845424652, -0.006634802557528019, 0.024560783058404922, -0.007871320471167564, 0.004151167813688517, -0.018130887299776077, -0.012259193696081638, -0.03801409900188446, 0.0027609681710600853, -0.004479728173464537, -0.007503898348659277, -0.0038614694494754076, -0.010287830606102943, -0.0007268959889188409, 0.01790478266775608, -0.023204145953059196, -0.021070268005132675, -0.006458157207816839, 0.0002265477814944461, -0.003953325096517801, 0.015756772831082344, -0.008104492910206318, -0.026807712391018867, -0.022144272923469543, -0.009411669336259365, -0.03162660077214241, -0.028150217607617378, 0.031767915934324265, -0.008987720124423504, -0.010047593154013157, -0.007256594952195883, -0.01416696421802044, 0.013262540102005005, -0.0004360934253782034, -0.007327252998948097, 0.01055633183568716, 0.022992171347141266, -0.0033032698556780815, 0.03433987498283386, -0.020024526864290237, 0.00895239133387804, -0.020603924989700317, 0.021706191822886467, 0.024645572528243065, 0.002617885358631611, 0.025366285815835, -0.020307159051299095, 0.0023105223663151264, 0.019261419773101807, 0.014739295467734337, -0.033237606287002563, -0.018173282966017723, 0.001487354631535709, -0.0094893928617239, -0.02570544369518757, 0.016703592613339424, -0.008309401571750641, 0.00336509570479393, -0.0016798981232568622, 0.003006505314260721, 0.002294624224305153, -0.0030842293053865433, -0.00345341837964952, -0.014386004768311977, 0.024362938478589058, -0.023486778140068054, -0.0002830743324011564, -0.033915925770998, -0.0158556941896677, -0.007065817713737488, -0.010768306441605091, 0.019756026566028595, -0.03804236277937889, -0.020957214757800102, -0.021367032080888748, 0.012336917221546173, -0.00821754615753889, -0.01625138148665428, -0.013509843498468399, -0.02350091002881527, 0.00812569074332714, -0.019275549799203873, 0.0032997368834912777, -0.004013384226709604, -0.01977015845477581, -0.005006131716072559, 0.0025648917071521282, -0.0005829299334436655, 0.006535881198942661, 0.0030347686260938644, -0.022441036999225616, 0.006673664785921574, -0.008196348324418068, -0.014951270073652267, -0.025875024497509003, -0.0064334268681705, -0.033322397619485855, -0.018286336213350296, -0.012690208852291107, 0.023727016523480415, -0.020420212298631668, -0.026115262880921364, 0.0304678063839674, 0.011128663085401058, -0.009051312692463398, -0.033237606287002563, -0.008295269683003426, -0.18043272197246552, 0.0028775541577488184, -0.005786904599517584, -0.024362938478589058, 0.03843804821372032, -0.0034198558423668146, 0.036685723811388016, -0.003850870532914996, -0.00634157145395875, 0.0018547771032899618, -0.001765571185387671, -0.001529749482870102, -0.008443651720881462, -0.024362938478589058, -0.01653401367366314, 0.011298242025077343, -0.01839938946068287, 0.024179227650165558, 0.03603567183017731, 0.015926353633403778, 0.04253622144460678, -0.01724059507250786, 0.009885079227387905, 0.016180722042918205, 0.004670505411922932, -0.00456805108115077, -0.01950165629386902, -0.011821112595498562, -0.00965897273272276, -0.035922616720199585, 0.02163553424179554, 0.0022787260822951794, 0.018752679228782654, -0.03015691041946411, 0.00939753744751215, -0.013841936364769936, -0.020250633358955383, -0.03120265156030655, -0.003160187043249607, 0.0028192612808197737, 0.027754532173275948, 0.03603567183017731, -0.008987720124423504, 0.004409070126712322, 0.010280764661729336, 0.029817750677466393, 0.010188909247517586, -0.028489377349615097, 0.007906650193035603, -0.03086349181830883, 0.03657267242670059, -0.033972449600696564, -0.0058081019669771194, 0.011361834593117237, 0.01574264094233513, -0.005500738974660635, -0.03306802734732628, 0.02478688769042492, -0.0072283316403627396, -0.010499805212020874, -0.002050853567197919, -0.032191865146160126, 0.008076229132711887, 0.007609885651618242, 0.02019410766661167, -0.015728510916233063, -0.034000713378190994, -0.003002972574904561, -0.03954031690955162, 0.0057480428367853165, 0.005172178614884615, -0.0028174947947263718, 0.013439184986054897, -0.003843804821372032, 0.012527694925665855, 0.038918524980545044, -0.01968536712229252, -0.016731856390833855, 0.0023440849035978317, -0.017071016132831573, -0.02894158847630024, 0.0016578175127506256, 0.010987346060574055, -0.015615456737577915, 0.012647813186049461, -0.009129036217927933, 0.0007670828490518034, -0.001485588145442307, -0.011255847290158272, -0.02673705480992794, 0.023218275979161263, -0.015686115249991417, -0.00489661144092679, -0.0061896564438939095, 0.008316467516124249, 0.03838152065873146, 0.0033403653651475906, -0.021946430206298828, 0.015544799156486988, -0.009023048914968967, 0.003176084952428937, -0.012124943546950817, -0.051297836005687714, -0.021875770762562752, 0.028503509238362312, 0.01194829773157835, -0.04296017065644264, 0.015134981833398342, 0.025691313669085503, 0.009623643942177296, -0.027542557567358017, -0.0023105223663151264, 0.008789877407252789, 0.016307907178997993, -0.019091838970780373, 0.0222431942820549, -0.007030488457530737, -0.014449597336351871, 0.013806607574224472, 0.005232237745076418, 0.03922941908240318, -0.0010907856049016118, -0.021494217216968536, 0.0094893928617239, -0.00826700683683157, 0.013509843498468399, -0.12741082906723022, -0.016025274991989136, -0.02478688769042492, 0.02200295589864254, 0.01298697292804718, 0.006744322832673788, -0.016208985820412636, 0.010485673323273659, -0.008210480213165283, 0.03012864664196968, -0.01251356303691864, -0.03043954260647297, -0.009383405558764935, 0.009821486659348011, -0.0049566710367798805, -0.020830029621720314, -0.030383015051484108, -0.0035064120311290026, -0.009072509594261646, 0.03236144408583641, 0.029817750677466393, 0.008210480213165283, 0.005338225048035383, -0.0017169936327263713, -0.008274072781205177, 0.011792849749326706, -0.03614872321486473, 0.02597394585609436, 0.00029301061294972897, 0.020801767706871033, 0.020547397434711456, -0.0066312700510025024, 0.028913326561450958, -0.029959067702293396, 0.004303082823753357, -0.015149112790822983, -0.0024712698068469763, -0.01574264094233513, 0.011715125292539597, -0.017494965344667435, -0.0019201359245926142, 0.007645214907824993, 0.019233155995607376, -0.005942352581769228, -0.002808662597090006, -0.015149112790822983, -0.03677051514387131, 0.017565622925758362, 0.016986224800348282, -0.01845591515302658, -0.05237184092402458, -0.03264407813549042, -0.03315281495451927, -0.0018406454473733902, 0.021310506388545036, -0.01998213306069374, 0.0006270913290791214, -0.023755278438329697, 0.024589044973254204, -0.0026355499867349863, -0.02557826042175293, -0.002045554108917713, -0.014216424897313118, 0.025168443098664284, 0.014039780013263226, 0.0036282974760979414, -0.01564371958374977, -0.0018565435893833637, 0.008980654180049896, -0.0240803062915802, 0.003297970397397876, 0.02105613611638546, -0.026807712391018867, 0.026934897527098656, -0.00871215295046568, 0.008076229132711887, -0.0009468195494264364, 0.002529562683776021, -0.008196348324418068, 0.00022312527289614081, -0.01632203906774521, -0.023458514362573624, -0.014993664808571339, -0.0014537919778376818, 0.035131245851516724, 0.0014352442231029272, 0.011206386610865593, 0.00681498134508729, 0.040105581283569336, -0.02384006790816784, 0.034396398812532425, 0.013312000781297684, 0.028913326561450958, 0.01338265836238861, 0.004635176155716181, -0.012866853736341, 0.014202293939888477, -0.0023193545639514923, 0.016025274991989136, 0.010238369926810265, -0.029591644182801247, 0.006500552408397198, -0.04660613462328911, 0.023698752745985985, 0.006617138162255287, -0.012923380360007286, 0.008909995667636395, -0.01468276884406805, 0.002393545815721154, 0.005737443920224905, 0.006634802557528019, 0.0005343524389900267, -0.023769410327076912, -0.004606913309544325, 0.0013504544040188193, -0.010874293744564056, -0.0013345562620088458, -0.045645181089639664, 0.006829112768173218, -0.020603924989700317, 0.02355743572115898, 0.011333571746945381, 0.00835886225104332, 0.019996263086795807, 0.010662319138646126, -0.01855483651161194, -0.02694902941584587, -0.004709367640316486, 0.00010543524695094675, 0.025323890149593353, -0.004313681740313768, -0.021013742312788963, -0.015262166038155556, 0.001403448055498302, -0.0050025987438857555, 0.010860161855816841, 0.004638709127902985, 0.004426734987646341, -0.004204161465167999, 0.009998131543397903, 0.0154176140204072, 0.008238743059337139, -0.019261419773101807, -0.01772106997668743, 0.014725163578987122, -0.016647066920995712, 0.021494217216968536, -0.006217919755727053, -0.026298973709344864, -0.0042182933539152145, 0.0021462421864271164, 0.023953121155500412, 0.01895052380859852, 0.013467448763549328, -0.02432054467499256, -0.02563478611409664, 0.02270953729748726, -0.023303067311644554, 0.006037740968167782, -0.02245516888797283, -0.008302335627377033, -0.005200441926717758, 0.032191865146160126, 0.015474140644073486, 0.027429504320025444, -0.017791729420423508, 0.0034693165216594934, -0.020914820954203606, -0.025493470951914787, 0.02723166160285473, 0.017028620466589928, -0.0025790233630687, -0.012527694925665855, -0.008902930654585361, 0.006249715574085712, 0.029111169278621674, 0.03394418954849243, -0.013050565496087074, -0.01760801672935486, 0.004084042739123106, -0.006903303787112236, 0.028531771153211594, 0.01603940688073635, 0.0023776476737111807, -0.0008121274295262992, 0.010542199946939945, 0.024221623316407204, 0.018258072435855865, 0.00987094733864069, -0.026440288871526718, 0.0118564423173666, 0.003804942825809121, -0.009644840843975544, -0.010846029967069626, -0.02545107528567314, -0.013693554326891899, 0.01692969910800457, 0.007097613997757435, -0.013191881589591503, 0.016760120168328285, 0.0021427092142403126, 0.012287456542253494, 0.009150234051048756, -0.0074473717249929905, -0.003207881236448884, 0.0003532908740453422, -0.022568222135305405, 0.02142355963587761, 0.01464037410914898, -0.03939899802207947, -0.003730751806870103, 0.019642973318696022, 0.005811634939163923, 0.04205574840307236, 0.015050191432237625, 0.009680170565843582, -0.021918166428804398, 0.025366285815835, 0.007334318943321705, -0.003935660235583782, 0.0007737070554867387, 0.03043954260647297, 0.002851057332009077, 0.02037781849503517, 0.020038658753037453, -0.009722565300762653, 0.01818741485476494, 0.02817848138511181, 0.021437691524624825, 0.004525656346231699, 0.007673477753996849, -0.013128289021551609, -0.011672730557620525, 0.009616577997803688, -0.016760120168328285, -0.028150217607617378, 0.00586816156283021, -0.018286336213350296, 0.0357530377805233, -0.00025878558517433703, 0.004836552310734987, 0.06121824309229851, 0.035187773406505585, -0.00965897273272276, 0.0046528410166502, -0.0025419278535991907, -0.013149486854672432, 0.009764960035681725, 0.012188535183668137, -0.0015535966958850622, -0.038211941719055176, -0.002443006495013833, 0.007327252998948097, -0.003448118921369314, -0.04409070312976837, -0.01419522799551487, 0.01827220432460308, 0.001247116830199957, 0.002236331347376108, -0.01544587779790163, -0.00023250955564435571, 0.015276297926902771, -0.0016251381020992994, 0.02032129094004631, 0.0018689087592065334, -0.04101000726222992, -0.007397911045700312, 0.016957962885499, 0.010725910775363445, -0.019869079813361168, -0.050195567309856415, 0.012096679769456387, -0.007751201745122671, -0.014753427356481552, -0.011771651916205883, 0.0010934353340417147, -0.0004310148651711643, -0.00018625053053256124, -0.009616577997803688, 0.016548145562410355, 0.016887303441762924, 0.010294896550476551, -0.010181843303143978, -0.009242089465260506, -0.02976122312247753, -0.01653401367366314, -1.465605146222515e-05, -0.035018190741539, -0.007055218797177076, -0.04284711927175522], "8c681b3e-fbde-4214-adaf-f9d1300c9aee": [0.016603510826826096, -0.01076053362339735, 0.01625225692987442, 0.005332982633262873, -0.01465810276567936, -0.0017250290839001536, -0.01618470810353756, -0.03277470916509628, -0.012874812819063663, -0.038178615272045135, 0.008234206587076187, 0.007254747673869133, 0.000863781082443893, 0.009578428231179714, -0.01050384808331728, -0.001950473408214748, 0.015225513838231564, -0.00993643794208765, 0.007822157815098763, 0.017346547916531563, -0.010098555125296116, 0.02988361567258835, -0.023507004603743553, -0.021277891471982002, -0.042366646230220795, 0.002281462773680687, 0.01291534211486578, -0.01764376275241375, 0.039826810359954834, -0.04006998613476753, 0.03915132209658623, -0.020778030157089233, -0.027965229004621506, 0.00330145051702857, -0.011023974046111107, 0.0011449531884863973, -0.023452965542674065, -0.015549748204648495, 0.031693924218416214, -0.01015934906899929, 0.02462831512093544, 0.0045257736928761005, -0.023007141426205635, -0.01580643281340599, -0.01313825324177742, 0.002009578747674823, 0.031018437817692757, -0.05636277049779892, -0.006923758424818516, 0.020224129781126976, 0.006751508917659521, 0.03796245902776718, -0.03617917001247406, -0.005886883474886417, 0.001570511027239263, -0.010010741651058197, 0.03053208626806736, 0.012408725917339325, -0.010422789491713047, 0.013462488539516926, 0.019305463880300522, -0.004174519795924425, -0.029289186000823975, -0.0009549720562063158, -0.008254471234977245, 0.0028792701195925474, 0.01072675921022892, -0.011753502301871777, -0.010753778740763664, 0.03001871332526207, 0.019305463880300522, 0.030180832371115685, 0.011381982825696468, 0.020116051658988, 0.021291401237249374, -0.009031282737851143, -0.002114279428496957, 0.024709373712539673, 0.0002889824681915343, 0.011463041417300701, 0.007349316030740738, -0.009598692879080772, -0.010861856862902641, -0.016481922939419746, 0.018440838903188705, -0.012422235682606697, 0.0007417709566652775, 0.032477494329214096, -0.0023287469521164894, -0.032720670104026794, 0.015779413282871246, -0.00022312233340926468, 0.01231415756046772, 0.007855932228267193, -0.003667903132736683, -0.014239300042390823, -0.0030768506694585085, 0.00936227198690176, -0.004971596412360668, -0.030099771916866302, 0.003360555972903967, 0.005126958712935448, -0.015752393752336502, -0.0116454241797328, -0.0065218424424529076, 0.013570566661655903, -0.01606312021613121, -0.00020465193665586412, 0.004410940688103437, -0.006434028968214989, -0.027586955577135086, 0.03607109189033508, -0.005859863944351673, -0.012732960283756256, 0.02912706881761551, -0.02107524499297142, -0.0018153756391257048, 0.011402247473597527, -0.021358950063586235, 0.002622584579512477, 0.02457427605986595, 0.021656164899468422, 0.02874879539012909, -0.005670726764947176, 0.038367751985788345, -0.005336360074579716, -0.009369026869535446, -0.02703305520117283, -0.01507690642029047, -0.018900170922279358, 0.022750455886125565, 0.030829301103949547, 0.024533746764063835, 0.012300647795200348, 0.010902386158704758, -0.003071784507483244, 0.00577880535274744, 0.024587785825133324, -0.0017748463433235884, 1.3107382073940244e-05, 0.017481645569205284, -0.0017056087963283062, -0.03423376381397247, 0.01999446377158165, -0.014968827366828918, 0.015279552899301052, 0.02126438170671463, -0.0031781739089637995, 0.0011517080711200833, -0.009504124522209167, -0.011895354837179184, -0.007997785694897175, -0.0011069569736719131, 0.014860749244689941, -0.0004080373328179121, -0.009132605977356434, -0.007369580678641796, 0.003166352864354849, 0.01649543270468712, -0.008078844286501408, -0.0013627982698380947, 0.018548917025327682, -0.016900725662708282, 0.004809478763490915, 0.0006683115498162806, 0.008220696821808815, 0.04660871624946594, -0.0033554898109287024, -0.025047117844223976, 0.0021328553557395935, -0.0007485258392989635, 0.014198770746588707, -0.008457117713987827, 0.02342594601213932, 0.004613587167114019, -0.011854825541377068, -0.005069542210549116, -0.016792647540569305, -0.018927190452814102, 0.01922440528869629, 0.015779413282871246, 0.012766734696924686, 0.017751840874552727, 0.039583634585142136, 4.6492616093019024e-05, -0.006319195963442326, -0.0025533470325171947, 0.025844193994998932, 0.02651968225836754, -0.022169535979628563, 0.022926082834601402, 0.007193953730165958, -0.008099108934402466, -0.009841869585216045, -0.6035085320472717, -0.011044238694012165, -0.026641272008419037, -0.02603333070874214, 0.009125851094722748, 0.019791817292571068, 0.021980399265885353, 0.010638945735991001, -0.019886385649442673, 0.04601428285241127, 0.005701123736798763, 0.01310447882860899, 0.0011922373669221997, -0.010969934985041618, 0.009544653818011284, -0.016981784254312515, 0.00634621549397707, -0.029343225061893463, 0.0035530701279640198, 0.01053762249648571, -0.015157965011894703, 0.03191008418798447, -0.029613420367240906, 0.01533359196037054, 0.017886938527226448, -0.007389845326542854, -0.008261226117610931, -0.0038671724032610655, 0.0008874231716617942, 0.04787863418459892, 0.008227451704442501, -0.00347538897767663, -0.00013172028411645442, 0.02945130318403244, 0.04436609148979187, -0.02310171164572239, 0.016873706132173538, -0.00563019746914506, -0.005292453337460756, 0.02799224853515625, -0.020237639546394348, 0.0010909141274169087, 0.015468689613044262, 0.009044792503118515, 0.008335529826581478, -0.02057538367807865, 0.002050108043476939, 0.006923758424818516, -0.007707325275987387, -0.029289186000823975, -0.01884613186120987, -0.016265766695141792, -0.0018846133025363088, -0.0029552627820521593, 0.015765903517603874, -0.011490060947835445, 0.02322329953312874, -0.0021683184895664454, -0.0005838754586875439, -0.024790432304143906, -0.004488621838390827, 0.001309603569097817, -0.00970677100121975, -0.004083328880369663, -0.0003485099005047232, 0.01757621392607689, 0.0046203420497477055, 0.013313881121575832, -0.019764797762036324, 0.011348208412528038, 0.019373012706637383, 0.029937654733657837, -0.013651625253260136, 0.019913405179977417, 0.027154643088579178, 0.029721498489379883, 0.04044825956225395, -0.005532251670956612, 0.00812612846493721, 0.0014421682571992278, 0.027830131351947784, 0.00015884537424426526, -0.0215210672467947, -0.01190210971981287, 0.047959692776203156, -5.525285814655945e-05, -0.01872454397380352, 0.033936548978090286, 0.03688167780637741, 0.01060517132282257, 0.013874536380171776, 0.027776092290878296, -0.024466197937726974, -0.05344466120004654, -0.0012378329411149025, 0.03777332231402397, -0.02672233060002327, -0.005937545094639063, 0.004025912377983332, -0.041096728295087814, -0.031261611729860306, -0.01209124643355608, 0.010058025829494, -0.0027120867744088173, -0.016481922939419746, 0.004204916767776012, 0.008186922408640385, 0.026951996609568596, 0.03898920491337776, -0.017724821344017982, -0.009402801282703876, -0.05260705202817917, -0.004242068622261286, -0.009700016118586063, 0.02349349483847618, -0.028019268065690994, 0.0045257736928761005, -0.0026445379480719566, 0.0012403660221025348, -0.019143346697092056, 0.006278666667640209, 0.0018119981978088617, 0.014036653563380241, -4.140006421948783e-05, 0.0009338629897683859, 0.029370244592428207, 0.022372182458639145, -0.004333259537816048, -0.020075522363185883, -0.01713039167225361, -0.0037928686942905188, 0.008963733911514282, -0.006187475752085447, -0.0031393333338201046, 0.018008526414632797, 0.02349349483847618, -0.006869719363749027, -0.011287414468824863, -0.004600077401846647, -0.022426221519708633, -0.025087647140026093, -0.020359227433800697, 0.0009271081071346998, -0.01183456089347601, 0.0028792701195925474, -0.025411881506443024, 0.0025533470325171947, 0.002612452255561948, 0.007754609454423189, 0.012273628264665604, -0.022372182458639145, 0.0020602403674274683, -0.04366358369588852, 0.011773766949772835, -0.001904877950437367, -0.017441116273403168, 0.009065057151019573, -0.024912020191550255, 0.0002467644226271659, -0.01364487037062645, -0.009564918465912342, 0.024668844416737556, -0.007882951758801937, 0.013671889901161194, -0.015063396655023098, -0.03318000212311745, -0.020345717668533325, 0.018359780311584473, -0.024533746764063835, -0.039070263504981995, -0.012442500330507755, 0.008511156775057316, 0.003826643107458949, 1.5831765267648734e-05, 0.007727589923888445, 0.022682907059788704, -0.003350423648953438, 0.013806987553834915, -0.022237084805965424, -0.013536792248487473, 0.00932849757373333, 0.031072476878762245, -0.02641160413622856, -0.005015503149479628, 0.02685742825269699, 0.008396323770284653, 0.003426416078582406, -0.022709926590323448, -0.0010453186696395278, 0.0009600382181815803, -0.00955140870064497, 0.02030518837273121, -0.03674658015370369, 0.007551962975412607, -0.020967166870832443, 0.0006640897481702268, 0.02025114931166172, -0.004799346439540386, 0.023520514369010925, 0.049607884138822556, 0.015171474777162075, 0.014509495347738266, 0.01567133516073227, -0.009450085461139679, 0.014995846897363663, -0.010652455501258373, 0.020926637575030327, 0.008585460484027863, -0.0002744172525126487, 0.003439925843849778, -0.012597862631082535, -0.016414374113082886, -0.004789214115589857, -0.031450748443603516, -7.27733422536403e-05, -0.0020973922219127417, -0.004161010030657053, 0.02514168620109558, 0.016792647540569305, 0.008018050342798233, 0.011638669297099113, 0.019332483410835266, 0.016144178807735443, 0.0012479652650654316, 0.022804494947195053, -0.006741376593708992, -0.023831238970160484, -0.0027880792040377855, -0.01999446377158165, -0.01777886040508747, 0.01294911652803421, -0.016225237399339676, 0.015171474777162075, -0.02608736976981163, 0.036341287195682526, 0.013003155589103699, 0.03407164663076401, -0.020034993067383766, 0.02316926047205925, -0.025911742821335793, -0.004718287847936153, 0.010618681088089943, 0.003661148250102997, -0.03647638484835625, -0.009997231885790825, -0.010875366628170013, 0.0397457517683506, 0.005164110567420721, 0.021993909031152725, 0.01877858303487301, 0.010747023858129978, 0.012705940753221512, -0.009828359819948673, 0.02912706881761551, -0.0015755771892145276, 0.022115496918559074, -0.02233165316283703, 0.013354410417377949, 0.034882232546806335, 0.0238717682659626, 0.006336083170026541, 0.011537346057593822, -0.010996954515576363, 0.016090139746665955, 0.006778528448194265, -0.009571673348546028, -0.01186833530664444, -0.02450672723352909, -0.001985936425626278, -0.01733303815126419, -0.009477104991674423, -0.038421791046857834, -0.024776922538876534, 0.013084214180707932, 0.03771928325295448, 0.013165272772312164, 0.02950534224510193, 0.0052046398632228374, 0.02533082291483879, 0.00784242246299982, -0.008781352080404758, -0.017049333080649376, 0.04723016545176506, 0.015887491405010223, 0.0006037179264239967, 0.0003022811433766037, -0.013496262952685356, -0.0027880792040377855, -0.012638391926884651, 0.0364493653178215, -0.029559381306171417, -0.004616964608430862, -0.00506278732791543, 0.00170983059797436, -0.012010187841951847, 0.0048364982940256596, 0.008855655789375305, -0.006231382489204407, 0.012077736668288708, 0.007315541617572308, 0.01298289094120264, -0.011449531652033329, -0.00942982081323862, -0.004640606697648764, 0.043258290737867355, 0.005238414276391268, 0.028289463371038437, -0.023763690143823624, -0.0043096174485981464, -0.014644593000411987, 0.018900170922279358, -0.01973777823150158, -0.006829190067946911, -0.00014375241880770773, 0.027884170413017273, -0.013996124267578125, 0.007551962975412607, -0.0070993853732943535, 0.02100769616663456, -0.01587398163974285, -0.02253429964184761, -0.006977797485888004, -0.020034993067383766, -0.018386799842119217, 0.055390067398548126, 0.03655744343996048, -0.002818476175889373, 0.002163252327591181, -0.021372459828853607, 0.00607939762994647, -0.026641272008419037, -0.010591661557555199, 0.025668567046523094, 0.01808958500623703, -0.01491478830575943, -0.01733303815126419, 0.024087924510240555, 0.0019910025876015425, 0.009409556165337563, 0.003694922663271427, 0.017738331109285355, -0.0017782237846404314, 0.029154088348150253, 0.020359227433800697, -0.0032051934394985437, 0.01567133516073227, 0.03912430256605148, 0.015725374221801758, -0.008673273958265781, 0.007288522087037563, 0.0075857373885810375, -0.009375781752169132, -0.004181274678558111, -0.00020043013500981033, -0.034503959119319916, 0.021223852410912514, 0.0045257736928761005, 0.03020785190165043, -0.00805857963860035, 0.03731399029493332, 0.012037207372486591, 0.01390155591070652, 0.018184153363108635, -0.016738608479499817, 0.004468357190489769, -0.0008941780542954803, 0.00449199927970767, -0.018062565475702286, -0.01865699514746666, 0.006704224739223719, -0.02196688950061798, 0.04385272040963173, 0.005863241385668516, 0.022129006683826447, -0.0044244504533708096, -0.015320082195103168, -0.019575661048293114, -0.023398926481604576, 0.001675211824476719, 0.0019808702636510134, -0.025020098313689232, -0.021467028185725212, -0.008186922408640385, -0.015563257969915867, -0.009044792503118515, -0.004610209725797176, 0.016657549887895584, -0.02711411379277706, 0.016292786225676537, -0.03885410353541374, -0.007504678331315517, -0.002088948618620634, -0.012260118499398232, 0.009639222174882889, 0.012618127278983593, -0.018427329137921333, -0.005988206714391708, -0.020859088748693466, 0.02601982094347477, 0.03896218165755272, 0.008220696821808815, 0.004880405496805906, -0.010334976017475128, -0.0006336927763186395, 0.00016327826597262174, -0.035584740340709686, -0.02431759051978588, 0.003159597981721163, -0.006177343428134918, 0.02203443832695484, 0.036530423909425735, -0.009450085461139679, -0.01284779328852892, 0.023601572960615158, -0.01043629925698042, 0.0019352749222889543, -0.0013948839623481035, -0.009760810993611813, 0.014185260981321335, -0.009044792503118515, -0.024614805355668068, 0.023628592491149902, 0.02418249286711216, 0.0011027351720258594, -0.0008050979813560843, -0.020980676636099815, 0.029856596142053604, -0.010638945735991001, -0.0025685455184429884, -0.003580089658498764, 0.007072365842759609, -0.021169813349843025, 0.008024805225431919, -0.05463352054357529, 0.011881845071911812, -0.015036376193165779, 0.00974054541438818, 0.004451469983905554, 0.002350700320675969, -0.01098344475030899, 0.048662200570106506, 0.04374464228749275, -0.00970677100121975, -0.009254193864762783, -0.025601018220186234, -0.019251424819231033, 0.01814362406730652, 0.01726548932492733, -0.01269243098795414, 0.004397430922836065, -0.009011018089950085, -0.029748518019914627, -0.011415757238864899, 0.01152383629232645, 0.023331377655267715, -0.016076629981398582, -0.004674381110817194, -0.008754332549870014, -0.010720004327595234, -0.006846077274531126, -0.008288245648145676, 0.001065583317540586, -0.012050717137753963, 0.013550302013754845, 0.014685122296214104, 0.01446896605193615, 0.0194135420024395, -0.018805602565407753, 0.020967166870832443, -0.03072122298181057, -0.023588063195347786, -0.002744172466918826, 0.002688444685190916, 0.023155750706791878, 0.002886025235056877, -0.007045346312224865, -0.01317202765494585, 0.011003709398210049, 0.01047007367014885, -0.0027779468800872564, -0.0006400254787877202, 0.016022590920329094, 0.012854548171162605, 0.029100049287080765, 0.038556888699531555, 0.013408449478447437, 0.027559936046600342, 0.016481922939419746, -0.005481590051203966, 0.007220973260700703, -0.006879851687699556, 0.002573611680418253, -0.020859088748693466, 0.003958363085985184, 0.021561596542596817, -0.0028471844270825386, -0.004194784443825483, -0.004353524185717106, 0.007524942979216576, 0.03147776797413826, -0.0029856597539037466, -0.0055119870230555534, -0.002134544076398015, -0.017306018620729446, -0.0012192570138722658, -0.0055119870230555534, -0.007268257439136505, 0.02639809437096119, -0.02850561961531639, -0.0289379321038723, 0.02589823305606842, -0.0024334476329386234, 0.0006180721102282405, -0.0005804980173707008, 0.009308232925832272, 0.026127899065613747, 0.0135232824832201, 0.027911189943552017, 0.02945130318403244, -0.01630629599094391, 0.007045346312224865, -0.028856873512268066, -0.004920934792608023, -0.0029062898829579353, -0.02500658854842186, 0.04342040792107582, -0.0032406565733253956, 0.006852832157164812, -0.03288278728723526, -0.0037219421938061714, -0.023952826857566833, -0.0025753004010766745, 0.004275843035429716, -0.024790432304143906, -2.701954508665949e-05, -0.018575936555862427, 0.0069913072511553764, -0.02996467426419258, -0.005883506033569574, 0.025087647140026093, 0.0095851831138134, 0.0017951109912246466, -0.026384584605693817, -0.014590553939342499, -0.004221803974360228, -0.0063799899071455, 0.04017806425690651, -0.0034112175926566124, 0.05179646611213684, 0.035584740340709686, 0.013469243422150612, -0.013692154549062252, -0.00460345484316349, -0.01094967033714056, 0.017805879935622215, 0.0350443497300148, 0.0010402525076642632, -0.033747412264347076, -0.004144122824072838, -0.02119683288037777, -0.0033622446935623884, -0.010078290477395058, -0.024209512397646904, 0.004532528575509787, -0.010969934985041618, 0.009909418411552906, -0.01872454397380352, 0.03139670938253403, -0.03590897470712662, 0.003954985644668341, -0.03590897470712662, -0.018616465851664543, -0.026681801304221153, -0.008734067901968956, -0.03515242785215378, 0.023696141317486763, 0.009598692879080772, 0.02912706881761551, 0.027384309098124504, 0.00596794206649065, -0.010828082449734211, -0.01567133516073227, -0.028586678206920624, 0.028208404779434204, 0.024074414744973183, 0.030424008145928383, -0.01757621392607689, -0.0030937378760427237, 0.039772771298885345, -0.01269243098795414, -0.013955594971776009, -0.004231936298310757, -0.01841381937265396, 0.03258557245135307, -0.012368196621537209, -0.004954709205776453, 0.009889153763651848, -0.005495099816471338, -0.004593322519212961, 0.017224960029125214, -0.018575936555862427, -0.03204518184065819, -0.02081855945289135, 0.0077883838675916195, 0.026479152962565422, 0.028478600084781647, -0.03496329113841057, 0.012874812819063663, -0.019602680578827858, 0.004971596412360668, -0.0028961575590074062, -0.007268257439136505, -0.012253363616764545, -0.012043962255120277, -0.01320580206811428, -0.018197663128376007, 0.002316925907507539, 0.024331100285053253, 0.0011035795323550701, -0.006876474246382713, 0.020642932504415512, 0.02747887745499611, -0.029370244592428207, 0.044582247734069824, -0.022129006683826447, 0.011631914414465427, -0.03904324397444725, -0.009369026869535446, -0.017292508855462074, 0.0018930569058284163, 0.024925529956817627, -0.008450362831354141, -0.016522452235221863, -0.03066718392074108, -0.017292508855462074, 0.005143845919519663, -0.023331377655267715, -0.004394053481519222, -0.03636830672621727, 0.008956979028880596, 0.007815402932465076, -0.02969447895884514, -0.012854548171162605, -0.005755162797868252, 0.0003362666757311672, 0.01783289946615696, 0.031639885157346725, 0.0038739272858947515, 0.03155882656574249, 0.001111178775317967, -0.01580643281340599, 0.0009135983418673277, -0.013374675065279007, 0.017157411202788353, -0.003478766418993473, 0.012104756198823452, -0.004022534936666489, -0.0009811471682041883, -0.04360954463481903, -0.006184098310768604, -0.012780244462192059, 0.0333961583673954, 0.00939604640007019, -0.017103372141718864, 0.001619483926333487, 0.001521538128145039, -0.03345019742846489, 0.0194135420024395, -0.017495155334472656, -0.014374397695064545, 0.003813133342191577, 0.01815713383257389, -0.021548086777329445, -0.017306018620729446, -0.0003324670542497188, 0.03461203724145889, 0.024263551458716393, -0.0022611981257796288, -0.002127789193764329, -0.010611926205456257, -0.01533359196037054, -0.03490925207734108, -0.031126515939831734, 0.021629145368933678, 0.001881235744804144, 0.0065117101185023785, -0.010733514092862606, 0.046365540474653244, -0.009024527855217457, 0.026127899065613747, -0.025992801412940025, -0.017535684630274773, 0.005123581271618605, 0.044149935245513916, 0.0015595343429595232, -0.01098344475030899, -0.003674658015370369, -0.033098943531513214, -0.01084834709763527, -0.02038624696433544, 0.03936747834086418, 0.007991030812263489, -0.003580089658498764, 0.004221803974360228, -0.026749350130558014, -0.010213388130068779, 0.02888389304280281, 0.0013248020550236106, -0.01151708047837019, -0.0319911427795887, 0.010861856862902641, 0.003809755900874734, 0.024722883477807045, -0.0008135415846481919, -0.04061037674546242, 0.00539715401828289, -0.02672233060002327, 0.0010385637870058417, -0.01538763102144003, -0.02157510630786419, -0.0029620176646858454, -0.011280659586191177, 0.033288080245256424, 0.005164110567420721, -0.014955317601561546, 0.010936160571873188, -0.00426908815279603, 0.006741376593708992, -0.02931620553135872, 0.003429793519899249, -0.025492940098047256, 0.0011964591685682535, -0.0030312552116811275, -0.007079120725393295, -0.02253429964184761, -0.026452133432030678, 0.030234871432185173, -0.024101434275507927, 0.012827528640627861, -0.03250451385974884, -0.017346547916531563, -0.042934056371450424, 0.014455456286668777, 0.01139549259096384, -0.01815713383257389, 0.012976136058568954, 0.010530867613852024, 0.013536792248487473, 0.01057139690965414, -0.03517944738268852, 0.007531698327511549, -0.008180167526006699, -0.01009180024266243, -0.015320082195103168, -0.001152552431449294, -0.03771928325295448, 0.0037219421938061714, 0.008011295460164547, -0.026060350239276886, -0.009808095172047615, 0.20243042707443237, 0.03682763874530792, 0.006322573404759169, 0.018454348668456078, -0.019183875992894173, 0.026073860004544258, 0.01552272867411375, 0.0014134598895907402, -0.019373012706637383, 0.0015789546305313706, 0.00018016548710875213, 0.010990199632942677, -0.024101434275507927, 0.009267703630030155, -0.024412158876657486, -0.02481745183467865, -0.0026935108471661806, -0.003968495409935713, 0.007808648515492678, 0.013651625253260136, 0.026262996718287468, 0.014131221920251846, -0.037151873111724854, -0.007923481054604053, 0.03917834162712097, -0.002580366563051939, -0.009301478043198586, 0.005461325403302908, 0.016522452235221863, -0.006944023072719574, -0.026290016248822212, -0.0012454321840777993, 0.003985382616519928, 0.018697524443268776, -0.025614527985453606, 0.007950500585138798, 0.028991971164941788, -0.01668456941843033, 0.026479152962565422, -0.0037827363703399897, -0.0036476384848356247, -0.03588195517659187, -0.012361441738903522, -0.006481313146650791, 0.028586678206920624, 0.028262443840503693, -0.012003432959318161, -0.022358672693371773, 0.0034010852687060833, 0.04082653298974037, -0.02855965867638588, -0.02449321746826172, 0.032666631042957306, -0.006785283330827951, -0.02666829153895378, 0.0009448397322557867, 0.016414374113082886, -0.023696141317486763, 0.029235146939754486, 0.009321742691099644, -0.021183323115110397, 0.0011685952777042985, -0.007389845326542854, 0.02349349483847618, -0.035773877054452896, -0.013165272772312164, -0.03626022860407829, 0.009092076681554317, -0.008686783723533154, -0.0116454241797328, -0.0043096174485981464, 0.007768119219690561, 0.002343945438042283, -0.0017562704160809517, -0.02038624696433544, -0.03142372891306877, 0.02735728956758976, 0.0027222190983593464, 0.01057139690965414, 0.012354686856269836, -0.013752948492765427, 0.00445822486653924, -0.0012150350958108902, -0.01980532705783844, -0.027073584496974945, -0.012462764978408813, 0.010888876393437386, 0.006552239414304495, -0.02030518837273121, 0.01764376275241375, -0.022372182458639145, -0.022426221519708633, 0.005187752656638622, -0.005434305872768164, -0.011888599954545498, 0.014266319572925568, -0.0071736890822649, 0.023628592491149902, -0.025871213525533676, 0.023398926481604576, -0.004748684819787741, 0.029046010226011276, -0.0029265545308589935, 0.0032592325005680323, 0.011571120470762253, -0.021737223491072655, 0.006369857583194971, 0.01948109082877636, 0.02169669419527054, -0.017657272517681122, -0.010747023858129978, -0.015468689613044262, -0.019183875992894173, -0.0177653506398201, 0.008801616728305817, 0.006582636386156082, 0.005042522680014372, -0.013982614502310753, -0.00234056799672544, -0.005478212609887123, 0.015293062664568424, 0.005164110567420721, -0.003836775431409478, -0.005927412770688534, -0.006140191573649645, 0.003350423648953438, -0.03712485358119011, 0.0111725814640522, 0.0019200764363631606, -0.01865699514746666, 0.016103649511933327, -0.04898643493652344, 0.03226133808493614, -0.0021227230317890644, 0.00381651078350842, -0.012084491550922394, -0.016792647540569305, -0.005853109061717987, -0.01205747202038765, -0.005731520708650351, -0.0040022702887654305, 0.007822157815098763, -0.004394053481519222, -0.0032170144841074944, -0.008801616728305817, -0.028289463371038437, 0.01294911652803421, -0.0057213883846998215, -0.002649604110047221, -0.02068346180021763, -0.026479152962565422, -0.005457947961986065, 0.025020098313689232, -0.0395025759935379, 0.016671059653162956, -0.02793820947408676, 0.016171198338270187, -0.01815713383257389, 0.02375018037855625, -0.010037761181592941, -0.010145839303731918, 0.005380266811698675, 0.006923758424818516, 0.0006328484159894288, -0.04223154857754707, 0.005947677418589592, -0.1693585067987442, 0.0005952743231318891, 0.004387298598885536, -0.024263551458716393, 0.013942085206508636, -0.00831526517868042, 0.04258280247449875, -0.019251424819231033, -0.0056200651451945305, 0.006467803381383419, 0.003095426596701145, -0.018170643597841263, -0.014306848868727684, -0.015833452343940735, -0.04220452904701233, -0.001619483926333487, -0.029181107878684998, 0.002615829696878791, 0.04079951345920563, 0.03599003329873085, 0.024912020191550255, -0.019508112221956253, 0.011652179062366486, 0.03280172869563103, 0.003823265666142106, -0.027600465342402458, -0.013050439767539501, -0.014144731685519218, -0.017981506884098053, -0.020832069218158722, 0.012287138029932976, 0.014050163328647614, 0.0015553125413134694, 0.000663245387841016, 0.02823542430996895, 0.010389015078544617, -0.012766734696924686, -0.010888876393437386, 0.008463872596621513, -0.003694922663271427, 0.00942982081323862, 0.02468235418200493, 0.0006510021630674601, -0.01867050491273403, -0.009267703630030155, 0.021791262552142143, 0.010132329538464546, -0.041042689234018326, 0.020467305555939674, -0.028964951634407043, 0.018062565475702286, -0.012814018875360489, 0.002316925907507539, -0.009841869585216045, 0.019373012706637383, -0.021683184430003166, -0.0038705498445779085, 0.03763822466135025, -0.01803554594516754, -0.016279276460409164, 0.02133193053305149, -0.04479840397834778, 0.01294911652803421, 0.0024604673963040113, 0.001298626884818077, -0.022669397294521332, 0.007551962975412607, -0.005657216999679804, -0.0543363057076931, 0.014117712154984474, -0.0022932838182896376, -0.03172094374895096, 0.012591107748448849, 0.006396877113729715, 0.007936990819871426, 0.03731399029493332, -0.018886661157011986, 0.01053762249648571, -0.022899063304066658, -0.02622246742248535, -0.02437162958085537, 0.0036138640716671944, 0.028262443840503693, -0.013651625253260136, -0.00262596202082932, 0.010260672308504581, -0.014185260981321335, 0.016468413174152374, -0.01750866509974003, -0.013097723945975304, -0.008166657760739326, -0.014523005113005638, -0.003176485188305378, -0.017292508855462074, -0.01726548932492733, 0.027965229004621506, 0.00596794206649065, -0.01374619361013174, 0.019008249044418335, -0.01961619034409523, 0.00784242246299982, -0.009065057151019573, -0.0031714190263301134, -0.019602680578827858, 0.032531533390283585, 0.010969934985041618, -0.03663850203156471, 0.0026040086522698402, -0.0059949615970253944, 0.01568484492599964, -0.0263440553098917, -0.0022578206844627857, 0.00993643794208765, 0.032855767756700516, -0.00834903959184885, 0.012969381175935268, 0.009713525883853436, -0.007133159786462784, 0.014752671122550964, 0.008929959498345852, 0.032153259962797165, 0.005846354179084301, -0.03499031066894531, 0.037422068417072296, -0.01592802070081234, -0.005093184299767017, -0.10148540884256363, -0.0006438251002691686, 0.004407563246786594, 0.0070993853732943535, 0.01409069262444973, 0.010105310007929802, -0.018103094771504402, 0.0223451629281044, -0.006971042603254318, 0.024655334651470184, -0.0075789825059473515, -0.021750733256340027, -0.01688721589744091, 0.009652731940150261, -0.027640994638204575, -0.024101434275507927, -0.0272897407412529, -0.018994739279150963, -0.0013239576946943998, 0.014104202389717102, 0.011064503341913223, -0.006430651526898146, -0.008220696821808815, 0.01409069262444973, 0.025101156905293465, 0.03318000212311745, -0.03091035969555378, 0.004866895265877247, -0.0030667183455079794, 0.019710758700966835, 0.010253917425870895, 0.00043822324369102716, 0.015401140786707401, -0.018711034208536148, 0.002727285260334611, -0.00495133176445961, -0.010834837332367897, -0.005940922535955906, 0.03453097864985466, 0.009916173294186592, -0.003580089658498764, 0.008409833535552025, 0.002963706385344267, -0.012253363616764545, -0.00891644973307848, -0.0068899840116500854, -0.01949460245668888, 0.022818004712462425, -0.003117379965260625, -0.01491478830575943, -0.026735840365290642, 2.6834841264644638e-05, -0.0074033550918102264, -0.02982957661151886, 0.009679751470685005, -0.016644040122628212, -0.006393499672412872, -0.00824771635234356, -0.0006906870985403657, -0.001529137371107936, -0.019602680578827858, 0.01592802070081234, -0.013516527600586414, 0.010253917425870895, 0.01587398163974285, 0.024223022162914276, -0.021723713725805283, -0.0039380984380841255, 0.017481645569205284, -0.016725098714232445, 0.0177653506398201, 0.04233962669968605, -0.013516527600586414, 0.025749625638127327, -0.010078290477395058, 0.03574685752391815, -0.011577875353395939, 0.0045257736928761005, 0.009909418411552906, 0.004846630617976189, -0.014968827366828918, -0.007572227623313665, 0.011111787520349026, -0.003833397990092635, 0.015239023603498936, 0.015914510935544968, -0.005525496788322926, 0.012098001316189766, 0.03952959552407265, -0.013766458258032799, -0.0019842477049678564, 0.011422512121498585, 0.04069143533706665, -0.022358672693371773, 0.021250871941447258, -0.015752393752336502, 0.007882951758801937, -0.00419140700250864, -0.005457947961986065, -0.017170920968055725, -0.03734100982546806, -0.004934444557875395, -0.03890814259648323, 0.02749238722026348, 0.010179613716900349, -0.015617297030985355, 0.007815402932465076, -0.009531144052743912, 0.022547809407114983, -0.0033960191067308187, 0.016454903408885002, -0.0037692266050726175, -0.028802834451198578, -0.0036442610435187817, -0.01038226019591093, -0.013388184830546379, -0.02519572526216507, -0.027397818863391876, 0.02100769616663456, -0.00948385987430811, 0.034747134894132614, 0.00031051368569023907, -0.012138530611991882, -0.00035357606247998774, 0.022372182458639145, 0.018684014678001404, -0.01618470810353756, -0.015576767735183239, -0.011598140001296997, 0.004282597918063402, -0.005842976737767458, -0.03420674428343773, 0.0020517967641353607, -0.011496815830469131, 0.002186894416809082, 0.036719560623168945, 0.0008177633862942457, 0.026506172493100166, -0.010375505313277245, -0.003569957334548235, 0.02203443832695484, 0.00396511796861887, -0.03172094374895096, -0.01840030960738659, 0.004968218971043825, -0.011078013107180595, 0.022237084805965424, -0.010085045360028744, -0.013090969063341618, 0.012611372396349907, -0.007356070913374424, 0.02253429964184761, 0.021277891471982002, 0.006626543123275042, -0.02215602621436119, -0.002566856797784567, 0.0053194728679955006, -0.045798126608133316, 0.004846630617976189, -0.02158861607313156, -0.009287968277931213, 0.019386522471904755, 0.03331509977579117, 0.019089307636022568, 0.013509772717952728, -0.006765018682926893, 0.010564642027020454, -0.03320702165365219, -0.030883340165019035, 0.01884613186120987, -0.009490614756941795, 0.003159597981721163, -0.01713039167225361, -0.0046203420497477055, 0.019953934475779533, -0.006721111945807934, 0.038043517619371414, -0.0043129948899149895, -0.006741376593708992, -0.0009380847914144397, -0.013631360605359077, 0.005539006553590298, 0.04201539233326912, 0.010085045360028744, -0.01284779328852892, 0.005991584155708551, 0.03207220137119293, 0.007984275929629803, 0.0007291055517271161, -0.026073860004544258, -0.012185814790427685, -0.006089529953896999, -0.017562704160809517, 0.006258402019739151, -0.028451580554246902, -0.00895022414624691, 0.02437162958085537, 0.02595227211713791, 0.013090969063341618, -0.002796522807329893, 0.01094967033714056, 0.017292508855462074, -0.008558440953493118, -0.004937821999192238, -0.0044210730120539665, -0.013077459298074245, -0.009571673348546028, 0.02412845380604267, -0.007288522087037563, -0.03439588099718094, 0.0009727036231197417, 0.028802834451198578, 0.0018761695828288794, 0.035449642688035965, 0.010395769961178303, 0.007646531332284212, -0.021467028185725212, -0.0006982863415032625, 0.007653286214917898, 0.0005479901446960866, -0.019778307527303696, 0.03828669339418411, 0.002252754522487521, 0.0037084324285387993, 0.018954209983348846, -0.013847516849637032, 0.025155195966362953, 0.016157688573002815, 0.0027053318917751312, 0.007477658800780773, -0.006342838052660227, -0.019643209874629974, -0.0038604175206273794, -0.0011660621967166662, -0.007606002036482096, -0.020548364147543907, -0.004839875735342503, -0.03807053714990616, 0.02139947935938835, 0.002183516975492239, -0.010064780712127686, 0.0681973323225975, 0.014968827366828918, -0.005059409886598587, 0.019386522471904755, -0.023250319063663483, 0.006971042603254318, 0.015212004072964191, 0.010801062919199467, -0.022493770346045494, -0.04260982200503349, 0.004096838645637035, 0.015130945481359959, -0.010429544374346733, -0.040394220501184464, 0.00853817630559206, 0.0064103868789970875, -0.005653839558362961, -0.009186645038425922, -0.03955661505460739, 0.006032113451510668, 0.018521897494792938, 0.030424008145928383, 0.003402773989364505, 0.00318999495357275, -0.016725098714232445, 0.006349592935293913, 0.0175221748650074, 0.029424283653497696, -0.019143346697092056, -0.03226133808493614, -0.001260630670003593, -0.006640052888542414, -0.02804628759622574, -0.02095365710556507, 0.01465810276567936, -0.009828359819948673, 0.001911632833071053, -0.007889706641435623, 0.023196280002593994, 0.021061735227704048, 0.002772880718111992, 0.014766180887818336, -0.018292231485247612, -0.03058612532913685, -0.029802557080984116, 0.002977216150611639, -0.019508112221956253, -0.004542660899460316, -0.04958086460828781], "8defb448-9071-4fc8-85d7-1c8c7994b068": [0.02938174083828926, 0.016194555908441544, 0.010193122550845146, -0.01727241836488247, -0.010406033135950565, -0.0006907137576490641, 0.0018829331966117024, -0.028876077383756638, 0.01295431423932314, -0.022794801741838455, 0.011603659018874168, 0.01155043113976717, 0.003320083487778902, 0.019893888384103775, -0.002180676208809018, -0.007298861164599657, 0.016021566465497017, -0.0034365192987024784, 0.023287158459424973, -0.0008691100520081818, -0.012721442617475986, 0.009221714921295643, -0.00772468326613307, 0.0017382201040163636, -0.031590696424245834, 0.008769278414547443, 0.019760817289352417, -0.009108605794608593, 0.014052136801183224, -0.025083597749471664, 0.015436059795320034, -0.024724310263991356, -0.025948548689484596, -0.01320714596658945, -0.025562647730112076, 0.02004026435315609, -0.014025523327291012, 0.006550345104187727, 0.024790843948721886, -0.008822506293654442, 0.019534599035978317, 0.007325475104153156, -0.025575954467058182, -0.0073587424121797085, -0.0049601648934185505, -0.0010246350429952145, 0.02380613051354885, -0.06866385042667389, -0.015316297300159931, 0.015941724181175232, 0.003845707979053259, 0.03316091373562813, -0.04066603258252144, -0.026201380416750908, -0.010026785545051098, -0.009793913923203945, 0.0349174328148365, 0.0014729128452017903, -0.005056640133261681, -0.0030323208775371313, 0.0022322405129671097, -0.0006287532742135227, -0.017445409670472145, -0.010299578309059143, -0.01988057978451252, -0.0011352490400895476, 0.02110482007265091, -0.015276376157999039, 0.0037958070170134306, 0.031244713813066483, 0.001348160207271576, 0.021024977788329124, 0.010971578769385815, 0.003659410635009408, 0.030712436884641647, -0.009314863942563534, 0.011151222512125969, 0.012654908001422882, 0.011750034987926483, 0.015050157904624939, 0.0035995293874293566, -0.015489287674427032, -0.01362631469964981, 0.007252286653965712, 0.028423640877008438, -0.007219019345939159, -0.003572915680706501, 0.03723284229636192, -0.0015752100152894855, -0.011277638375759125, 0.028423640877008438, 0.019468065351247787, 0.0022721614222973585, 0.011497203260660172, -0.00432475795969367, -0.01675344817340374, -0.007884366437792778, 0.009640883654356003, -0.02407226897776127, -0.020346323028206825, -0.01087177637964487, 0.009800567291676998, -0.008243653923273087, -0.012801283970475197, -0.028663165867328644, 0.011483896523714066, 0.00803739670664072, -0.0031554100569337606, -0.00422828271985054, -0.005572284571826458, -0.005020046140998602, 0.03382626175880432, -0.006430582609027624, -0.008303536102175713, 0.018310360610485077, -0.02194315753877163, 0.020772146061062813, -0.0072057126089930534, -0.01704620011150837, -0.0012084372574463487, 0.030526138842105865, 0.009773953817784786, 0.018669648095965385, 0.001364793861284852, 0.032948002219200134, -0.004065272863954306, -0.00274622137658298, -0.003952163737267256, -0.010532448999583721, -0.030552752315998077, 0.011610312387347221, 0.012089362367987633, 0.015715505927801132, -0.0067732366733253, -0.014571107923984528, 0.003539648139849305, 0.013080730102956295, 0.002210616832599044, -0.00020022797980345786, -0.01611471362411976, -0.0012317243963479996, -0.004404599778354168, -0.020891908556222916, 0.019028935581445694, -0.0033217468298971653, 0.024524705484509468, 0.01697966642677784, -0.015130000188946724, 0.012714789249002934, -0.01795107312500477, 0.004767213948071003, -0.01988057978451252, -0.005858384072780609, 0.0012250709114596248, -0.010425994172692299, 0.016540536656975746, -0.0009780606487765908, 0.015209841541945934, 0.009374745190143585, -0.0073653957806527615, 0.00898884329944849, 0.02980756387114525, -0.009487854316830635, -0.02464446797966957, -0.009587655775249004, 0.025203360244631767, 0.033400438725948334, 0.0009581002523191273, -0.04111846908926964, 0.011570391245186329, -0.0009689121507108212, -0.008549714460968971, -0.0209717508405447, 0.01729903183877468, 0.011111301369965076, -0.0069661871530115604, 0.00275453832000494, -0.012608333490788937, -0.016633685678243637, 0.01111795473843813, -0.00594487925991416, 0.009926983155310154, 0.013440017588436604, 0.032522182911634445, -0.02661389671266079, 0.00244515179656446, -0.011024806648492813, 0.022661732509732246, 0.0073720491491258144, -0.011124609038233757, 0.01124437153339386, 0.02393919974565506, -0.016181249171495438, -0.016034873202443123, -0.6221264600753784, -0.006320800166577101, -0.0019794085528701544, -0.055782727897167206, -0.017485329881310463, 0.021517334505915642, 0.02355329878628254, 0.005076600704342127, -0.018576499074697495, 0.041677363216876984, 0.003569588763639331, 0.0025549340061843395, 0.011956293135881424, -0.007199058774858713, 0.010845162905752659, -0.021051591262221336, 0.020865295082330704, -0.02326054498553276, -0.007345435209572315, 0.004278183914721012, -0.004767213948071003, 0.03361335024237633, -0.02094513550400734, 0.031271327286958694, 0.014145285822451115, -0.0006225156830623746, -0.003361667739227414, -0.0004237431276123971, 0.021823395043611526, 0.03691347315907478, 0.02448478527367115, -0.013879147358238697, -0.008968883194029331, 0.008855774067342281, 0.036008600145578384, -0.0207455325871706, 0.00921506155282259, -0.00010068577830679715, -0.007471851538866758, 0.01878941059112549, -0.023673061281442642, -0.0007152484613470733, 0.031271327286958694, 0.018097449094057083, 6.726246647303924e-05, -0.013526513241231441, 0.032974615693092346, -0.008676130324602127, -0.007325475104153156, -0.0012009521014988422, 0.009807220660150051, -0.012874471955001354, 0.0043380651623010635, -0.025496112182736397, -0.002997389994561672, -0.009833835065364838, 0.01849665865302086, 0.0034631332382559776, 0.004926897585391998, -0.008722704835236073, 0.001576041686348617, 0.015169921331107616, -0.004254896659404039, 0.005791848991066217, -0.003669390920549631, 0.012874471955001354, -0.008862427435815334, -0.00995359756052494, -0.007278900593519211, 0.0055124033242464066, 0.01627439819276333, 0.012235739268362522, -0.006011413875967264, 0.020346323028206825, 0.02797120437026024, 0.04548314958810806, 0.034331925213336945, -0.012135936878621578, 0.004264876712113619, -0.003336717141792178, 0.002155725611373782, 0.004268203396350145, -0.035263411700725555, -0.00604135449975729, 0.03776511922478676, 0.006101235747337341, -0.0270929466933012, 0.020931828767061234, 0.01375938393175602, 0.024764230474829674, 0.010026785545051098, 0.010113280266523361, -0.013213799335062504, -0.04891633987426758, 0.00853640679270029, 0.02165040373802185, -0.009062031283974648, 0.016633685678243637, 0.011443975381553173, -0.04561621695756912, -0.03917565569281578, -0.005459175445139408, -0.0036860245745629072, -0.01997372880578041, 0.010818548500537872, 0.002322062384337187, -0.0023769536055624485, 0.030712436884641647, 0.027013104408979416, -0.0061411564238369465, -0.005748601630330086, -0.0344649963080883, -0.020279789343476295, -0.010346151888370514, 0.022794801741838455, -0.01874949038028717, 0.013293641619384289, -0.013380136340856552, 0.0006911295931786299, -0.007392009720206261, 0.010718747042119503, 0.008403337560594082, -0.0010371102252975106, -0.017312340438365936, 0.011064727790653706, 0.02035962976515293, 0.017964379861950874, -0.003765866393223405, -0.024365022778511047, -0.004354698583483696, 0.0012117639416828752, 0.01997372880578041, -0.007199058774858713, -0.016261091455817223, -0.006290859542787075, 0.007232326548546553, -0.0011626946507021785, -0.02906237542629242, -0.009028764441609383, -0.02484407275915146, -0.02938174083828926, -0.02065238356590271, 0.011078034527599812, -0.021996384486556053, -0.00615446362644434, -0.02033301629126072, -0.02194315753877163, -0.013919067569077015, 0.0022156068589538336, 0.011976253241300583, -0.0007913475856184959, -0.028849463909864426, -0.01652722992002964, 0.015316297300159931, -0.0018662994261831045, -0.00868278369307518, 0.026361064985394478, -0.01375938393175602, -0.015515901148319244, -0.021410878747701645, 0.0063507407903671265, 0.017764775082468987, -0.012149243615567684, -0.004657431971281767, -0.023539992049336433, -0.031617309898138046, -0.008915655314922333, 0.03300123289227486, -0.024404942989349365, -0.05431896075606346, -0.00476056057959795, 0.0017465369310230017, 0.009461239911615849, 0.022062920033931732, 0.01575542613863945, 0.03598198667168617, -0.0077712577767670155, -0.002317072357982397, -0.015196534804999828, -0.012721442617475986, 0.02239559404551983, 0.01582196168601513, -0.031085031107068062, -0.0016234476352110505, 0.031111644580960274, -0.003125469433143735, 0.03233588486909866, -0.03640780970454216, -0.01752525009214878, -0.003117152489721775, -0.010805241763591766, -0.0031287961173802614, -0.01659376360476017, 0.010040092281997204, 0.008429951965808868, -0.011497203260660172, 0.022608505561947823, 0.005808482877910137, 0.00122257589828223, 0.03337382525205612, 0.02670704573392868, 0.019707590341567993, 0.03031322732567787, -0.008849120698869228, 0.008975536562502384, -0.01691313087940216, 0.012761362828314304, 0.0059249186888337135, 0.01582196168601513, -0.019667670130729675, -0.009241675026714802, -0.018350280821323395, -0.011317559517920017, -0.03920226916670799, 0.027438927441835403, 0.01865634135901928, -0.0017132696229964495, 0.019162004813551903, 0.009714072570204735, 0.020639076828956604, 0.015103385783731937, 0.018762797117233276, 0.022848030552268028, -0.01098488550633192, 0.01772485487163067, -0.02409888245165348, 0.0015394475776702166, 0.010971578769385815, -0.012102669104933739, -0.0337730348110199, 0.007072642911225557, -0.01929507404565811, 0.002421864541247487, -0.014584415592253208, 0.0337730348110199, 0.010093320161104202, 0.015875188633799553, 0.004098540171980858, 0.019082164391875267, -0.009787260554730892, 0.009348130784928799, -0.0008358426857739687, 0.001806418178603053, -0.024498092010617256, 0.002974102972075343, 0.007970862090587616, 0.06839771568775177, -0.006853078491985798, 0.025442885234951973, 0.028689779341220856, 0.0069994549266994, 0.0012375462101772428, -0.013865839689970016, 0.004803808405995369, -0.01322710607200861, 0.014637642540037632, -0.01745871640741825, 0.02357991226017475, 0.02847686968743801, 0.01729903183877468, 0.015968337655067444, 0.014451345428824425, 0.012102669104933739, 0.008283575065433979, 0.006503771059215069, -0.009235021658241749, -0.004886976908892393, -0.024431556463241577, -0.0008391694282181561, -0.02287464402616024, 0.00017933192430064082, -0.023726288229227066, -0.0047073327004909515, -0.0025316469836980104, 0.038324009627103806, 0.009095299057662487, 0.024564625695347786, -0.007411970291286707, 0.010292924009263515, 0.012575065717101097, -0.014238434843719006, -0.014544494450092316, 0.047053366899490356, 0.010060052387416363, -0.01261498685926199, 0.005136481951922178, -0.005984799936413765, 2.124693310179282e-06, 0.005698700435459614, 0.031564079225063324, -0.02552272565662861, -0.0035030541475862265, 0.009175140410661697, -0.0037392524536699057, -0.021237889304757118, -0.0010287933982908726, 0.00741862365975976, 0.0013448334066197276, 0.018962401896715164, 0.0034198856446892023, 0.009986864402890205, -0.012608333490788937, -0.019601134583353996, -0.014903781935572624, 0.04553637653589249, 0.0009198428015224636, 0.028822850435972214, -0.022635119035840034, 0.015635663643479347, -0.019028935581445694, -0.013007542118430138, -0.01650061644613743, -0.010718747042119503, 0.026826808229088783, 0.0256158746778965, -0.015010237693786621, 0.006833117920905352, -0.030632594600319862, 0.01752525009214878, -0.01312730461359024, -0.026786886155605316, -0.025695716962218285, -0.011843184009194374, -0.005748601630330086, 0.04271530359983444, 0.0057785422541201115, -0.009368091821670532, 0.011730074882507324, -0.02661389671266079, -5.1538434490794316e-05, -0.00486368965357542, -0.0014196850825101137, 0.01920192688703537, 0.018869252875447273, -0.031431011855602264, -0.005572284571826458, 0.026880035176873207, 0.023526683449745178, 0.008835813961923122, 0.007139177527278662, 0.013932374306023121, -0.007465197704732418, 0.017338953912258148, 0.008416644297540188, -0.0027262610383331776, 0.01829705387353897, 0.03489081934094429, 0.008310189470648766, 0.0021091513335704803, 0.011310906149446964, 0.020572541281580925, 0.010099973529577255, 0.0190422423183918, -0.012448649853467941, -0.016726834699511528, 0.0446581169962883, -0.001701625995337963, 0.03273509070277214, -0.017897846177220345, 0.02158387005329132, 0.018509965389966965, 0.014344889670610428, -0.004361352417618036, -0.012588373385369778, 0.005076600704342127, 0.011417361907660961, 0.005452522076666355, -0.0011876451317220926, -0.001324873068369925, -0.0014038829831406474, 0.0011809916468337178, 0.017964379861950874, -0.00834345631301403, -0.0021906562615185976, -0.012328887358307838, 0.0043314117938280106, -0.012368808500468731, -0.02135765179991722, 0.007159138098359108, -0.018403509631752968, -2.547033000155352e-05, -0.03592875972390175, -0.01700627990067005, -0.012235739268362522, -0.004251569975167513, -0.010239697061479092, 0.01483724731951952, -0.001957784639671445, -0.002438498195260763, -0.003646103898063302, -0.00011820312647614628, 0.009141873568296432, -0.019547907635569572, -0.006194384302943945, 0.03212297335267067, -0.004657431971281767, -0.01238876860588789, -0.022156069055199623, 0.011836530640721321, 0.022475436329841614, 0.0126948282122612, 0.004078579600900412, -0.01346663199365139, -0.00834345631301403, -0.009494507685303688, -0.026241302490234375, -0.006410622503608465, -0.0065470184199512005, -0.005289511755108833, 0.03779173269867897, 0.00550907664000988, -0.009787260554730892, -0.036940086632966995, 0.03015354461967945, -3.830945570371114e-05, 0.008802546188235283, -0.006264246068894863, -0.034518223255872726, 0.026374371722340584, -0.001806418178603053, -0.038031257688999176, 0.011683500371873379, 0.022954486310482025, -0.006463849917054176, -0.010213082656264305, -0.02319401130080223, 0.009833835065364838, -0.0279978197067976, 0.009241675026714802, -0.003968797158449888, 0.00359620270319283, -0.012269006110727787, 0.016194555908441544, -0.02967449463903904, 0.025283200666308403, -0.012774670496582985, 0.022049613296985626, -0.008589634671807289, 0.030632594600319862, -0.018536578863859177, 0.03103180229663849, 0.01643408089876175, -0.012215778231620789, 0.006157790310680866, -0.012974274344742298, -0.02226252481341362, 0.010219736024737358, 0.024245260283350945, -0.024950528517365456, 0.004873669706285, 0.008203733712434769, -0.025788865983486176, -0.03041968308389187, 0.014970316551625729, 0.031297940760850906, -0.0013340215664356947, -0.0017199229914695024, 0.0041484409011900425, -0.009820527397096157, -0.006307493429630995, -0.008024089969694614, -0.006513751111924648, -0.018030915409326553, 0.0049036103300750256, 0.01795107312500477, 0.01988057978451252, 0.014890475198626518, -0.015263069421052933, 0.0049036103300750256, -0.027305858209729195, -0.03393271937966347, -0.00434139184653759, 0.015209841541945934, 0.02174355275928974, 0.024378329515457153, -0.013054115697741508, -0.027917977422475815, -0.0073587424121797085, 0.0021024977322667837, -0.006151136942207813, 0.012588373385369778, 0.021889930590987206, -0.010805241763591766, 0.05663437023758888, 0.02310086227953434, 0.013958988711237907, 0.03667394816875458, 0.012980927713215351, 0.007219019345939159, -0.01155043113976717, 0.0012358827516436577, 0.00879589281976223, -0.017179269343614578, -0.013839226216077805, 0.01659376360476017, 0.018696261569857597, -0.017738161608576775, 0.005455848760902882, 0.01611471362411976, 0.032522182911634445, 0.0003482677857391536, -0.005276205018162727, 0.016567150130867958, -0.04250239208340645, -0.015116693452000618, -0.004391293041408062, -0.001126100542023778, 0.03912242874503136, -0.020692303776741028, -0.01407875120639801, 0.014398117549717426, -0.02970110811293125, 0.007651495281606913, -0.005222977139055729, 0.00761157413944602, 0.010851816274225712, 0.004175054840743542, 0.03656749427318573, 0.018376896157860756, -0.029248671606183052, -0.010532448999583721, -0.03140439838171005, 0.008110584691166878, -0.007558346726000309, -0.004301471170037985, 0.017485329881310463, 0.0020991710480302572, 0.014957009814679623, -0.013273680582642555, 0.020186640322208405, -0.0126948282122612, -0.010126587934792042, -0.005312799010425806, -0.022821415215730667, 0.006204364355653524, -0.012009521014988422, 0.0020609134808182716, -0.01343336421996355, -0.016859903931617737, 0.009035417810082436, 0.009161833673715591, 0.018243825063109398, -0.025336429476737976, -0.011317559517920017, 0.004587570205330849, -0.01813737116754055, 0.02471100352704525, 0.013499898836016655, 0.033586736768484116, 0.03475774824619293, 0.010046745650470257, -0.006374028045684099, 0.022901257500052452, 0.005978146567940712, -0.0034132322762161493, 0.025136824697256088, 0.024790843948721886, -0.03534325584769249, -0.007185752037912607, -0.02371298149228096, -0.011251024901866913, -0.0033999253064393997, -0.024990448728203773, 0.020319709554314613, -0.004753907211124897, -0.014251741580665112, -0.016633685678243637, 0.014863860793411732, -0.04508394002914429, 0.015436059795320034, -0.021051591262221336, -0.01598164439201355, -0.013519858941435814, 0.0026630531065165997, -0.013380136340856552, 0.02026648260653019, 0.006873038597404957, 0.04875665903091431, 0.023500069975852966, 0.018057528883218765, -0.030366456136107445, -0.020732225850224495, -0.04050635173916817, 0.00772468326613307, 0.011523816734552383, 0.039707932621240616, -0.01856319233775139, -0.0028310532215982676, 0.032043132930994034, -0.00753173278644681, -0.006260918918997049, -0.015529208816587925, -0.006806503981351852, 0.03324075788259506, -0.007751297205686569, -0.019215233623981476, -0.015861881896853447, -0.01121110375970602, 0.0025333103258162737, 0.0030489545315504074, -0.01736556738615036, -0.004694025963544846, -0.014770712703466415, 0.00055681262165308, 0.017445409670472145, 0.0065337116830050945, -0.011463935486972332, 0.006633513607084751, -0.017418794333934784, -0.01185649074614048, -0.007910980843007565, -0.0006832286017015576, -0.019774124026298523, -0.020386245101690292, -0.0279978197067976, -0.0057851956225931644, -0.002954142400994897, -0.003586222417652607, 0.009108605794608593, -0.013074076734483242, -0.008835813961923122, 0.004980125464498997, -0.034970659762620926, 0.03949502110481262, 0.007864406332373619, 0.00921506155282259, -0.04162413254380226, -0.021983077749609947, -0.01591511070728302, -0.024498092010617256, 0.02274157479405403, -0.006716682109981775, -0.015103385783731937, -0.038137711584568024, -0.0010944964597001672, 0.006314146798104048, -0.008090624585747719, -0.011962946504354477, -0.006706702057272196, 0.018629727885127068, 0.004713986534625292, -0.020918522030115128, -0.01845673657953739, -0.008662823587656021, 0.007425277028232813, 0.012508531101047993, 0.012282312847673893, -0.013074076734483242, 0.030100315809249878, -0.015130000188946724, -0.021637097001075745, 0.00921506155282259, -0.017392180860042572, 0.03244233876466751, -0.01604817993938923, 0.013493245467543602, 0.0033749747090041637, 0.02496383525431156, -0.03691347315907478, -0.0016883190255612135, -0.0264142919331789, 0.036807019263505936, -0.007431930396705866, -0.02194315753877163, 0.0005522383726201952, 0.010539103299379349, -0.026427598670125008, 0.004930224269628525, -0.015994951128959656, -0.015835268422961235, 0.00753173278644681, 0.008217040449380875, -0.027598610147833824, -0.027811521664261818, -0.00200103223323822, 0.059721581637859344, 0.024750923737883568, -0.00932817067950964, 0.011317559517920017, -0.01990719512104988, -0.015342910774052143, -0.03521018475294113, -0.006846424657851458, -0.006061315070837736, 0.01646069437265396, 0.03518357127904892, -0.024591241031885147, 0.03515695780515671, -0.02303432673215866, 0.029142215847969055, -0.02049270085990429, -0.017924459651112556, 0.003532994771376252, 0.035263411700725555, -0.01695305109024048, 0.01132421288639307, -0.018895866349339485, -0.003246895270422101, 0.005788522306829691, 0.016021566465497017, 0.012222431600093842, 0.011643579229712486, 0.0010437637101858854, -0.022408900782465935, -0.019574521109461784, -0.00811723805963993, 0.03675379231572151, 0.018030915409326553, -0.027651838958263397, -0.020772146061062813, 0.0014754078583791852, 0.02185000851750374, 0.024112189188599586, 0.001821388490498066, -0.027598610147833824, 0.00041979263187386096, -0.019215233623981476, 0.014664256945252419, -0.017671627923846245, -0.007431930396705866, -0.0016292694490402937, -0.020532621070742607, 0.04787839949131012, -9.268081339541823e-05, 0.008483179844915867, 0.020386245101690292, 0.005189709831029177, 0.004397946409881115, -0.02609492465853691, 0.013639621436595917, -0.03441176936030388, 0.006467176601290703, -0.019707590341567993, -0.017086122184991837, -0.019028935581445694, -0.028849463909864426, 0.03214958682656288, -0.020918522030115128, 0.002907568123191595, -0.018017608672380447, -0.03254879638552666, -0.042289480566978455, 0.0315108522772789, 0.005978146567940712, -0.008596288040280342, 0.000692792993504554, 0.013067423366010189, 0.009567695669829845, 0.031111644580960274, -0.028982533141970634, -0.0029042414389550686, -0.039228882640600204, 0.004411253146827221, -0.01362631469964981, 0.013865839689970016, -0.025216666981577873, -0.015715505927801132, 0.017259111627936363, -0.034970659762620926, -0.01968097686767578, 0.1766098141670227, 0.03760543465614319, 0.013080730102956295, 0.025961855426430702, 0.004913590382784605, 0.03105841763317585, 0.027239322662353516, -0.00022559435456059873, -0.010672172531485558, 0.0019810718949884176, -0.004204995464533567, 0.01711273565888405, -0.009008804336190224, 0.0038590149488300085, -0.008596288040280342, -0.005635492503643036, 0.005209670402109623, -0.010153201408684254, 0.013267027214169502, -0.004933550953865051, 0.009720725938677788, 0.002478419104591012, -0.044604890048503876, -0.021570563316345215, 0.03933534026145935, -0.00047489171265624464, -0.009008804336190224, 0.008030743338167667, 0.026813499629497528, -0.011277638375759125, -0.019481372088193893, -0.002875964157283306, 0.01616794243454933, 0.0030988554935902357, -0.03611505776643753, 0.011603659018874168, 0.02999386191368103, -0.013746077194809914, 0.028237344697117805, 0.003280162811279297, 0.01295431423932314, -0.03720622882246971, -0.02332708053290844, -0.0018812697380781174, -0.0002698815369512886, 0.002019329462200403, -0.00044619859545491636, -0.017179269343614578, 0.027172788977622986, 0.04529685154557228, -0.01311399694532156, -0.0507793128490448, 0.02892930619418621, 0.02294117771089077, -0.005342739634215832, -0.019215233623981476, 0.014930395409464836, 0.00244515179656446, 0.03270847722887993, 0.0073653957806527615, -0.017485329881310463, 0.019707590341567993, -0.013732770457863808, 0.020466085523366928, -0.038457080721855164, 0.009614270180463791, -0.023979119956493378, 0.016487307846546173, -0.011171182617545128, -0.010725400410592556, -0.015569129027426243, 0.008563021197915077, 0.023340387269854546, 0.000598812650423497, -0.016873210668563843, -0.015329604037106037, 0.018323667347431183, 0.0017781408969312906, 0.01143732201308012, 0.0019943788647651672, -0.021184662356972694, -0.0008221198804676533, 0.009660844691097736, -0.01688651740550995, -0.027492154389619827, -0.01415859255939722, -0.010432647541165352, -0.00794424768537283, -0.010159854777157307, 0.013825919479131699, -0.01688651740550995, -0.01343336421996355, 0.009893716312944889, 0.005585591308772564, -0.001846339087933302, 0.011470588855445385, 0.01101815328001976, 0.007212365977466106, -0.006853078491985798, 0.021118126809597015, -0.018030915409326553, -0.0023037653882056475, -0.006247612182050943, 0.0032119646202772856, 0.008024089969694614, -0.0253896564245224, 0.0028393701650202274, 0.020306402817368507, 0.031111644580960274, -0.004810461774468422, -0.01253514550626278, -0.03185683488845825, -0.008123891428112984, -0.011217757128179073, -0.004900283645838499, -0.0030023802537471056, 0.00413180748000741, -0.006473830435425043, -0.022368980571627617, 0.0027661819476634264, 0.019241847097873688, -0.014318276196718216, -0.007252286653965712, 0.009647537022829056, 0.008250308223068714, 0.01295431423932314, -0.026733659207820892, -0.004258223343640566, -0.006729988846927881, -0.015169921331107616, 0.006067968439310789, -0.03576907515525818, 0.022927870973944664, 0.009920329786837101, 0.004770541097968817, -0.004348045215010643, -0.0045609562657773495, -0.0015960021410137415, -0.00879589281976223, -0.007258940022438765, -0.009095299057662487, 0.0035529551096260548, -0.007312167901545763, -0.005249591078609228, -0.0021207949612289667, -0.02903576008975506, -0.02262181229889393, -0.007990822196006775, -0.004767213948071003, -0.02860993891954422, -0.02970110811293125, 0.008310189470648766, 0.000684476166497916, -0.029328513890504837, -0.005821789614856243, -0.03608844429254532, 0.009487854316830635, -0.032362498342990875, 0.023087555542588234, -0.018376896157860756, -0.025336429476737976, -0.010106626898050308, -0.004417906980961561, 0.007378702517598867, -0.034810975193977356, 0.0038889555726200342, -0.16564488410949707, 0.006304166745394468, 0.016859903931617737, -0.017964379861950874, -0.013080730102956295, -0.00571866100654006, 0.030845506116747856, -0.012967620976269245, -0.010272963903844357, 0.0035296680871397257, -0.009148526936769485, -0.019388223066926003, -0.00898884329944849, -0.010326191782951355, -0.041065242141485214, -0.0013847543159499764, -0.019787432625889778, -0.0032202815636992455, 0.047958239912986755, 0.02071891911327839, 0.03198990225791931, -0.028051046654582024, 0.01940152980387211, 0.029168831184506416, -0.0011984569719061255, -0.023726288229227066, -0.013300294987857342, 0.002373626921325922, -0.028822850435972214, -0.028343800455331802, 0.0009472883539274335, 0.009348130784928799, 0.0045476495288312435, -0.001984398579224944, 0.031590696424245834, 0.005402620881795883, 0.009155180305242538, 0.006447216495871544, -0.012941007502377033, -0.00423826277256012, 0.008123891428112984, 0.030233386904001236, 0.005552324000746012, -0.02162379026412964, -0.017937766388058662, 0.019787432625889778, 0.010060052387416363, -0.04508394002914429, 0.00817046593874693, -0.010206429287791252, 0.01936160959303379, 0.005472482647746801, -0.005049986764788628, -0.015728812664747238, -0.003619489958509803, -0.02310086227953434, -0.008955576457083225, 0.040320053696632385, -0.011656886897981167, -0.01461102906614542, 0.008563021197915077, -0.0403466671705246, 0.03457145020365715, -0.0018646360840648413, -0.0069595337845385075, -0.016247782856225967, 0.00921506155282259, -0.0069395736791193485, -0.0419435016810894, 0.016474001109600067, 0.008822506293654442, -0.019734203815460205, 0.003902262542396784, 0.01117783598601818, -0.01453118771314621, 0.04585574194788933, 0.0069462270475924015, 0.011710114777088165, -0.0401337556540966, -0.043966155499219894, -0.026494134217500687, 0.029780950397253036, 0.03119148686528206, 0.002688003471121192, -0.011650233529508114, 0.002333706011995673, -0.02139757201075554, 0.0020293095149099827, -0.02548280544579029, -0.021184662356972694, 0.0027079640422016382, -0.0190422423183918, -0.004328085109591484, 0.007032722234725952, -0.008902348577976227, 0.019534599035978317, 0.018057528883218765, -0.03316091373562813, 0.034491609781980515, -0.004261550027877092, -0.012974274344742298, -0.011257678270339966, -0.0201733335852623, 0.0018696262268349528, 0.029594652354717255, 0.02271496132016182, -0.025123517960309982, 0.017472023144364357, -0.006616880185902119, 0.011909718625247478, -0.014784019440412521, -0.002406894229352474, 0.021637097001075745, 0.013692849315702915, 0.009128566831350327, 0.02455131895840168, 0.0024767557624727488, -0.004005391616374254, 0.00761157413944602, 0.028397027403116226, 0.00876262504607439, -0.0009855458047240973, -0.03073905035853386, 0.020838681608438492, -0.009141873568296432, 0.014464653097093105, -0.11859152466058731, -0.014757405035197735, 0.011583697982132435, 0.019760817289352417, 0.008090624585747719, 0.021889930590987206, -0.01491708867251873, 0.006819810718297958, -0.016314318403601646, 0.02741231396794319, -0.007392009720206261, -0.019987035542726517, 0.0036095096729695797, 0.019960422068834305, -0.013513205572962761, -0.031297940760850906, -0.013553126715123653, -0.022209296002984047, -0.0033583410549908876, 0.01566227711737156, 0.023673061281442642, -0.004660758655518293, -0.003865668550133705, 0.018483350053429604, 0.004920244216918945, 0.024724310263991356, -0.03608844429254532, 0.019082164391875267, -0.0022771514486521482, 0.03183022141456604, -0.004803808405995369, 0.002869310788810253, -0.01069878600537777, -0.0203995518386364, 0.007545039523392916, -0.007578306831419468, -0.010652212426066399, -0.021610483527183533, 0.02699979767203331, 0.0006487137288786471, -0.00719240540638566, 0.00010551993909757584, 0.0065536717884242535, 0.013386789709329605, -0.004288163967430592, -0.00871605146676302, -0.019920501857995987, 0.029860790818929672, -0.0003272677422501147, -0.02455131895840168, -0.03811109811067581, -0.001576041686348617, 0.011430668644607067, -0.026600589975714684, 0.014411425217986107, 0.001027961727231741, 0.00021540622401516885, -0.03411901369690895, 0.002308755414560437, -0.00024014883092604578, -0.01743210293352604, 0.02677357941865921, -0.016992973163723946, 0.01788453757762909, 0.011384094133973122, 0.009447933174669743, -0.027651838958263397, -0.008702743798494339, 0.019707590341567993, -0.010093320161104202, 0.005442542023956776, 0.028051046654582024, -0.006646820809692144, 0.025083597749471664, -0.024764230474829674, 0.005286185070872307, 0.004507728852331638, -0.009028764441609383, 0.019441451877355576, -0.01607479341328144, -0.011716768145561218, -0.013087383471429348, 0.004900283645838499, -0.02813088893890381, 0.01623447611927986, 0.027731679379940033, -0.004507728852331638, 0.014145285822451115, 0.031431011855602264, -0.014092057943344116, -0.006846424657851458, -0.0018746163696050644, 0.04335403814911842, -0.01016650814563036, 0.017871230840682983, -0.00038153515197336674, 0.0021158047020435333, -0.0037791733630001545, -0.007591614034026861, 0.007871059700846672, -0.03744575381278992, 0.001959448214620352, -0.02938174083828926, 0.017312340438365936, 0.018416816368699074, -0.010179814882576466, 0.014291662722826004, -0.018669648095965385, 0.020545927807688713, -0.010645558126270771, -0.00583177013322711, 0.008829159662127495, -0.007245633285492659, -0.004318104591220617, -0.006227651610970497, 0.00019315867393743247, -0.009414665400981903, -0.025056984275579453, 0.02735908515751362, -0.010379419662058353, 0.03747236728668213, 0.006833117920905352, -0.013639621436595917, -0.004061945714056492, 0.014238434843719006, 0.02361983247101307, -0.006899652536958456, -0.0034997274633497, 0.01407875120639801, 0.0057851956225931644, -0.008922308683395386, -0.04359356313943863, 0.023979119956493378, -0.019241847097873688, 0.0009057041606865823, 0.01811075583100319, 0.000799664412625134, 0.006270899437367916, -0.009767299517989159, -0.01238876860588789, 0.009487854316830635, 0.0013473285362124443, -0.03180360794067383, -0.009388051927089691, 0.0007946743280626833, -0.02065238356590271, 0.015422753058373928, -0.0014521207194775343, -0.00046823822776786983, 0.005435888189822435, -0.013732770457863808, 0.010931657627224922, 0.0035196878015995026, -0.010512488894164562, -0.03859014809131622, 0.0027162807527929544, 0.015076772309839725, -0.03728606924414635, -0.009534427896142006, -0.026108231395483017, 0.0020459431689232588, -0.009108605794608593, 0.007245633285492659, 0.010519142262637615, 0.006729988846927881, -0.0006000602152198553, 0.014930395409464836, -0.05000751093029976, -0.011730074882507324, 0.014890475198626518, -0.023154089227318764, -0.0071125635877251625, -0.02380613051354885, -0.004710659850388765, 0.015329604037106037, -0.01200286764651537, 0.02638767845928669, -0.01385253295302391, -0.003662737552076578, -0.010106626898050308, -0.004201668780297041, 0.016221169382333755, 0.032069746404886246, 0.009281596168875694, -0.010665519163012505, 0.0268667284399271, 0.029248671606183052, 0.0016824972117319703, 0.012495224364101887, -0.006523731164634228, 0.01438481081277132, 0.0026015082839876413, -0.012688174843788147, -0.003546301741153002, 0.0032918062061071396, 0.021889930590987206, 0.027106253430247307, 0.032202813774347305, 0.00190455699339509, -0.02042616531252861, 0.008543061092495918, 0.01430496945977211, -0.006839771289378405, -0.007451890967786312, -0.01217585802078247, -0.026919955387711525, -0.011004846543073654, 0.03457145020365715, 0.0031620636582374573, -0.027039717882871628, 0.007119217421859503, 0.026081617921590805, 0.012621640227735043, 0.03691347315907478, 0.023566605523228645, 0.01324041374027729, -0.019308382645249367, 0.01584857515990734, 0.0019877254962921143, 0.002155725611373782, -0.017565172165632248, 0.024511398747563362, -0.010406033135950565, 0.026667123660445213, 0.03337382525205612, -0.012149243615567684, 0.03731268271803856, 0.011736728250980377, 0.008290228433907032, 0.009461239911615849, -0.001526140607893467, -0.024591241031885147, -0.014571107923984528, -0.006307493429630995, -0.02706633321940899, -0.007185752037912607, 0.007312167901545763, -0.025136824697256088, 0.01843012310564518, -0.003330063773319125, -0.017937766388058662, 0.06243620067834854, 0.013732770457863808, -0.007465197704732418, 0.004165074788033962, -0.02797120437026024, 0.0057153343223035336, 0.02999386191368103, 0.013972295448184013, -0.01193633209913969, -0.0451105535030365, 0.013812611810863018, 0.016420774161815643, -0.01990719512104988, -0.020186640322208405, -0.004248243290930986, -0.00730551453307271, -0.01791115291416645, 0.015316297300159931, -0.025828786194324493, 0.011217757128179073, 0.011923025362193584, 0.03792480379343033, -0.0007065157988108695, 0.022927870973944664, -0.0129210464656353, -0.01258171908557415, 0.01784461736679077, 0.0433008074760437, 0.00011570806964300573, -0.041038628667593, 0.005535690579563379, 0.009348130784928799, -0.0030589348170906305, -0.014677563682198524, 0.0033633310813456774, 0.006071295123547316, -0.015502594411373138, -0.005731967743486166, 0.0328681617975235, 0.01248191762715578, 0.018310360610485077, 0.004980125464498997, -0.03361335024237633, -0.04540330544114113, -0.04649447649717331, 0.025961855426430702, -0.03353350982069969, -0.01865634135901928, -0.04218302667140961], "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a": [0.020380288362503052, 0.010508585721254349, 0.0112267741933465, -0.012202426791191101, -0.014621230773627758, 0.015800144523382187, 0.0005560031277127564, -0.02149144746363163, 0.0036891845520585775, -0.030326519161462784, 0.03151898458600044, 0.01061699166893959, 0.015041302889585495, 0.017941158264875412, -0.015569781884551048, 0.005186539608985186, 0.011294527910649776, 0.020149925723671913, 0.0019225089345127344, 0.013530397787690163, -0.00590472761541605, -0.0005399116198532283, 0.009892027825117111, -0.01871354877948761, -0.04317260533571243, 0.012039817869663239, 0.03620753437280655, -0.02512304112315178, 0.024431955069303513, 0.0025814129039645195, 0.027751881629228592, -0.017981810495257378, -0.03609912842512131, -0.011748477816581726, -0.009383875876665115, 0.0014533151406794786, -0.00485454685986042, -0.015813695266842842, -0.002344275126233697, -0.0018699999200180173, 0.02092231810092926, -0.012879963032901287, -0.019485941156744957, -0.0074867745861411095, -0.007839093916118145, -0.0014677128056064248, 0.026152895763516426, -0.03989332914352417, -0.033551592379808426, 0.0282939113676548, 0.013611702248454094, 0.025366954505443573, -0.03493376448750496, -0.0033199272584170103, -0.00264747254550457, 0.006240108050405979, 0.01322550605982542, 0.002520434558391571, -0.004624184221029282, -0.026044491678476334, 0.002164728008210659, 0.005969093646854162, -0.011186121962964535, -0.01009528897702694, -0.026261301711201668, -0.0022934600710868835, 0.005681140813976526, -0.012859636917710304, -0.006070724222809076, 0.029947098344564438, 0.02702014334499836, 0.01964855007827282, 0.0062333326786756516, -0.0005233967094682157, 0.03498796746134758, 0.00010353599645895883, -0.00617235479876399, 0.012554745189845562, 6.86534694978036e-05, 0.005789546761661768, -0.00025619336520321667, -0.022331591695547104, 0.005576122552156448, 0.03637014329433441, 0.0118094552308321, -0.011131919920444489, 0.01256152056157589, 0.034581445157527924, 0.0034960866905748844, -0.008022028021514416, 0.03645144775509834, 0.027751881629228592, 0.026017390191555023, 0.016071157529950142, -0.004749528598040342, -0.020420940592885017, -0.013428767211735249, 0.030597534030675888, 0.021342389285564423, -0.009736195206642151, -0.0018649183912202716, 0.0179140567779541, -0.00375693803653121, -0.012778332456946373, -0.05707564949989319, -0.01741267926990986, 0.003131910925731063, -0.002910017967224121, 0.02940507046878338, -0.007717137224972248, -0.017588838934898376, 0.025895433500409126, -0.0029455884359776974, -0.01834768056869507, 0.029648983851075172, -0.013449093326926231, 0.02642391063272953, -0.00939742662012577, -0.01726362109184265, -0.003821304067969322, 0.012825760059058666, 0.013191629201173782, 0.01743978075683117, -0.025353403761982918, 0.02889014221727848, -0.0009536321740597486, 0.01619311422109604, -0.0037772641517221928, -0.0012974818237125874, -0.026600070297718048, 0.009939455427229404, 0.02016347646713257, 0.002447599545121193, 0.015136158093810081, -0.026247750967741013, -0.003845017869025469, 0.020908767357468605, -0.013449093326926231, -0.017954709008336067, -0.03479825705289841, 0.005376249551773071, -0.014648332260549068, -0.009268694557249546, 0.006260434165596962, -0.016409926116466522, 0.02004151977598667, 0.018130868673324585, 0.008110107854008675, 0.011104818433523178, -0.0157052893191576, -0.0007160710520111024, -0.004400597419589758, 0.015556231141090393, -0.00200211931951344, -0.016518332064151764, 0.010000433772802353, -0.00632141251116991, 0.02429644763469696, 0.021166229620575905, 0.00026339219766668975, 0.02191152051091194, 0.018862606957554817, -0.014214709401130676, 0.011687499471008778, 0.0026779617182910442, 0.032819852232933044, 0.01928268000483513, 0.023659562692046165, -0.024973982945084572, 0.01075927447527647, 0.0009155207662843168, 0.005420289468020201, -0.021396592259407043, 0.014336665160953999, -0.008584383875131607, -0.009905578568577766, 0.0007444428629241884, -0.009722644463181496, -0.032846953719854355, -0.017819201573729515, 0.011037064716219902, 0.0026169836055487394, 0.009668441489338875, 0.047671444714069366, -0.03235912695527077, -0.0048680976033210754, 0.019526593387126923, 0.012060143984854221, 0.0028896918520331383, -0.004915525205433369, 0.0022104617673903704, 0.026017390191555023, -0.0053728618659079075, -0.016030505299568176, -0.6226828694343567, -0.007947499863803387, -0.008089781738817692, -0.0289443451911211, -0.0033300903160125017, -0.006524673663079739, 0.02214188314974308, 0.003645144635811448, -0.032846953719854355, 0.026532316580414772, 0.003987300209701061, 0.018754201009869576, 0.014214709401130676, 0.015664637088775635, -0.01012239046394825, -0.04561173543334007, 0.012832535430788994, -0.04379593953490257, -0.015380071476101875, 0.0026593294460326433, -0.006965071894228458, 0.008103332482278347, -0.01217532530426979, 0.01533941924571991, 0.011057390831410885, 0.01882195472717285, 0.02954057790338993, -0.006236720364540815, 0.001126403920352459, 0.025651520118117332, 0.002464537974447012, -0.006006358191370964, 0.0032691119704395533, 0.004403985105454922, 0.03645144775509834, 0.003997463267296553, 0.00015657437324989587, 0.00436672056093812, 0.02050224505364895, 0.02157275192439556, -0.01689775288105011, 0.0004882494977209717, 0.03005550429224968, -0.0030506066977977753, -0.0010781293967738748, -0.03298246115446091, 0.003236929187551141, 0.01681644842028618, -0.019743403419852257, -0.03325347602367401, -0.024201592430472374, -0.00044251582585275173, -0.00203769002109766, -0.011992390267550945, -0.008259166032075882, -0.016857100650668144, 0.014838042668998241, 0.013489745557308197, -0.0017073912313207984, -0.022602606564760208, 0.0021545649506151676, -0.00661275302991271, -0.011260651051998138, -0.002444211859256029, -0.02639680914580822, 0.040245648473501205, -0.03794202581048012, -0.014987099915742874, 0.0017302579944953322, 0.00016948991105891764, 0.01322550605982542, 0.0074867745861411095, -0.008028803393244743, -0.007168332580476999, 0.02203347720205784, 0.026179997250437737, 0.01726362109184265, -0.013699781149625778, 0.002269746270030737, 0.0011492707999423146, 0.020597100257873535, 6.124292121967301e-05, -0.034635648131370544, -0.01178235374391079, 0.017941158264875412, 0.010041086003184319, -0.015664637088775635, 0.009207717142999172, 0.034039419144392014, 0.03542159125208855, 0.019838258624076843, 0.01575949229300022, -0.015637535601854324, -0.043958548456430435, -0.004044890869408846, 0.027995795011520386, -0.018578041344881058, 0.035882316529750824, 0.030516229569911957, -0.03019101172685623, -0.018008911982178688, -0.0033521102741360664, -0.010339202359318733, -0.02772478014230728, 0.014485723339021206, 0.0008155842078849673, -0.0018157969461753964, 0.006202843971550465, 0.05111332982778549, -0.02540760673582554, 0.004471738822758198, -0.04287448897957802, -0.01780565083026886, 0.014485723339021206, -0.011890759691596031, -0.03544869273900986, 0.017561737447977066, -0.012493766844272614, 0.007324166130274534, -0.0028134689200669527, 0.0020817299373447895, -0.0025814129039645195, 0.0019851811230182648, -0.00787974614650011, 0.0004099093785043806, 0.022467099130153656, 0.006063948851078749, -0.004834220744669437, -0.04417536035180092, -0.01669449172914028, 0.0003840783319901675, 0.03371420130133629, 0.010698296129703522, -0.0198518093675375, -8.977354445960373e-05, 0.011585868895053864, 0.0009095923160202801, -0.03734579309821129, -0.003824691753834486, -0.042684778571128845, -0.024716520681977272, -0.01754818670451641, 0.0206377524882555, -0.020420940592885017, -0.009268694557249546, -0.023713765665888786, -0.019174274057149887, -0.00817786157131195, -0.007452898193150759, -0.011843332089483738, -0.005481267813593149, -0.007662934251129627, -0.025624418631196022, 0.002987934509292245, 0.027751881629228592, -0.001966548850759864, 0.020448042079806328, -0.008896050043404102, -0.016965506598353386, -0.021681157872080803, -0.011192897334694862, 0.01275800634175539, -0.025082388892769814, 0.010549237951636314, 0.009641340002417564, -0.007432572077959776, -0.0345272421836853, 0.008746991865336895, -0.014011448249220848, -0.010833803564310074, -0.016938405111432076, 0.01783275231719017, -0.003878894727677107, -0.0052068657241761684, 0.004183785989880562, 0.01148423831909895, -0.021396592259407043, -0.005823423620313406, -0.014661883004009724, -0.016409926116466522, 0.016437027603387833, 0.02304978109896183, -0.031112462282180786, -0.004986666142940521, 0.03501506894826889, -0.006487409118562937, 0.02086811512708664, 0.0006644089007750154, -0.023917026817798615, 0.014350215904414654, 0.005308495834469795, 0.02707434631884098, -0.006240108050405979, 0.0159627515822649, -0.004193949047476053, -0.006958296522498131, 0.009038332849740982, 0.006873604375869036, 0.026884635910391808, 0.04062506929039955, 0.015623983927071095, -0.0014253667322918773, 0.012798658572137356, -0.028510723263025284, 0.016992608085274696, -0.021477896720170975, 0.005274618975818157, -0.004282028879970312, 0.02154565043747425, -0.00585391279309988, 0.0005166213377378881, -0.01972985453903675, -0.023374998942017555, -0.01998731680214405, -0.00042960027349181473, 0.019689202308654785, -0.012100796215236187, 0.0319255031645298, -0.0015295379562303424, 0.006528060883283615, -0.008584383875131607, 0.014431520365178585, 0.02109847590327263, -0.0021173006389290094, -0.008475977927446365, -0.01226340513676405, -0.01253441907465458, 0.01095576025545597, -0.013970796018838882, -0.024106737226247787, -0.005630325525999069, 0.009532934054732323, 0.007723912596702576, -0.021613404154777527, 0.03398521617054939, 0.011762028560042381, 0.017846303060650826, -0.0067821373231709, 0.030407823622226715, -0.007629057392477989, 0.016030505299568176, 0.008713115006685257, 0.007893296889960766, -0.027114998549222946, 0.013096773996949196, 0.008550507016479969, 0.055666372179985046, 0.0021308513823896646, 0.006992173381149769, 0.04138391092419624, 0.0067787496373057365, 0.00665679294615984, -0.01874065026640892, 0.002645778702571988, 0.01593565009534359, 0.015231013298034668, -0.0010146104032173753, 0.019269129261374474, 0.03005550429224968, 0.024784274399280548, -0.006091050338000059, 0.002984546823427081, -0.02250775136053562, -0.009092535823583603, -0.012127897702157497, -0.006270597223192453, -0.00033601559698581696, -0.03498796746134758, -0.023605359718203545, -0.024025432765483856, -0.0022968477569520473, -0.014838042668998241, 0.0035096374340355396, -0.009289020672440529, 0.0301097072660923, -0.003392762504518032, 0.015136158093810081, 0.008672462776303291, 0.011477462947368622, 0.011192897334694862, -0.003160706255584955, -0.0016362498281523585, 0.034147825092077255, -0.0031471555121243, 0.0034164763055741787, -0.0010671195341274142, -0.014553477056324482, -0.009756521321833134, 0.004556430969387293, 0.027196303009986877, -0.004939238540828228, 0.015867898240685463, 0.0005420289235189557, -0.008042354136705399, -0.02588188275694847, 0.02231804095208645, 0.028700431808829308, -0.014336665160953999, 0.012358260340988636, 0.005576122552156448, -0.005870851222425699, 0.019092969596385956, 0.011430035345256329, 0.0017717571463435888, 0.023767968639731407, -0.013381339609622955, 0.016965506598353386, -0.01301547046750784, -0.0070734778419137, -0.02019057795405388, 0.02208768017590046, -0.022331591695547104, -0.013022245839238167, 0.0004641122941393405, 0.021044272929430008, -0.004878260660916567, -0.0033521102741360664, -0.014011448249220848, 0.01879485324025154, 0.014024998992681503, -0.012168549932539463, -0.013164527714252472, -0.002650860231369734, 0.007988151162862778, 0.03631594032049179, 0.01533941924571991, 0.005813260562717915, 0.009058658964931965, -0.021979274228215218, -0.02359180897474289, -0.02823970839381218, -0.021694708615541458, -0.0017429618164896965, 0.011362281627953053, -0.014404418878257275, 0.00275418465025723, 0.025529563426971436, -0.006792300380766392, -0.009702318347990513, -0.005271231289952993, -0.005952155217528343, -0.01536652073264122, 0.0030489128548651934, -0.007114130072295666, 0.00690409354865551, -0.013035796582698822, 0.043389417231082916, 0.02004151977598667, -0.009126412682235241, 0.01536652073264122, 0.025868332013487816, 0.02081391215324402, -0.0016159238293766975, -0.03306376561522484, -0.01367945596575737, 0.01575949229300022, -0.001123863155953586, 0.025190794840455055, 0.006063948851078749, 0.02551601268351078, 0.026247750967741013, 0.02509593963623047, 0.014539926312863827, -0.030976954847574234, 0.020786810666322708, 0.00514588737860322, 0.015637535601854324, -0.021369490772485733, -0.006643242202699184, 0.018212173134088516, 0.0051018474623560905, 0.0006212159642018378, -0.01681644842028618, 0.003489311318844557, -0.012568295933306217, -0.00011856883065775037, -0.01788695529103279, -0.021789563819766045, 0.014133404940366745, 0.0026762678753584623, 0.03368709981441498, -0.025759926065802574, -0.0033368656877428293, -0.023632461205124855, -0.00489858677610755, -0.013049347326159477, 0.015109056606888771, -0.029377968981862068, 0.01666739024221897, -0.0017565125599503517, -0.025949636474251747, 0.009607463143765926, -0.0007906000246293843, 0.012127897702157497, 0.018388332799077034, -0.01444507110863924, -0.010244347155094147, -0.02834811434149742, 0.01351007167249918, 0.038944780826568604, 0.01417405717074871, -0.017317824065685272, -0.005559184588491917, 0.0008071149932220578, 0.013869165442883968, -0.0074054705910384655, -0.013523622415959835, -0.011619745753705502, -0.011823005974292755, 0.022358693182468414, 0.005979256704449654, -0.019756954163312912, -0.028592027723789215, 0.03393101319670677, -0.028537824749946594, 0.020407389849424362, -0.0004962952807545662, -0.032223619520664215, -0.011531665921211243, -0.0018818567041307688, -0.018672896549105644, 0.0180360134691, 0.020136374980211258, -0.01684354990720749, -0.00027164965285919607, -0.028592027723789215, 0.00460724625736475, -0.018523838371038437, -0.006443369202315807, 0.00023163268633652478, -0.003374130232259631, 0.0013169609010219574, -0.002948976121842861, -0.012683477252721786, 0.01899811439216137, -0.01058989018201828, 0.016491230577230453, -0.004234601277858019, 0.003452046774327755, 0.006887155119329691, 0.0163557231426239, 0.0030946466140449047, -0.007900072261691093, -0.009614238515496254, -0.0016040669288486242, -0.01754818670451641, 0.0034181701485067606, -0.004620796535164118, -0.037074778228998184, 0.021396592259407043, -0.00478340545669198, -0.01353717315942049, -0.03542159125208855, 0.0030438313260674477, 0.01939108595252037, 0.03008260577917099, -0.00036925720633007586, -0.013008695095777512, -0.02693883888423443, 0.001930978149175644, 0.01811731792986393, -0.0036248185206204653, -0.021626954898238182, 0.0010264673037454486, 0.0015405479352921247, 0.01508195511996746, 0.029838694259524345, -0.016626738011837006, 0.0067448727786540985, -0.03195260465145111, -0.005511756986379623, 0.0035130251199007034, 0.020434491336345673, 0.007500325329601765, 0.0068769920617341995, -0.00044251582585275173, -0.02546180970966816, -0.00101884501054883, -0.015840796753764153, -0.0008511548512615263, 0.003247092245146632, 0.010583114810287952, -0.00020008490537293255, 0.034716952592134476, 0.02837521582841873, 0.014268912374973297, 0.021870868280529976, -0.002715226262807846, 0.009309346787631512, 0.012778332456946373, 0.009742970578372478, 0.005847137421369553, -0.02769767865538597, 0.014580578543245792, 0.002681349404156208, 0.02772478014230728, -0.018835505470633507, -0.0015100587625056505, -0.0020088946912437677, 0.02069195546209812, 0.0073648183606565, -0.011389383114874363, -0.005877626594156027, -0.033524490892887115, -0.026559418067336082, 0.0025136591866612434, -0.0025678621605038643, 0.012913839891552925, -0.04355202615261078, 5.3488303819904104e-05, 0.0057624452747404575, 0.017426230013370514, 0.012012716382741928, 0.0019699365366250277, 0.012412463314831257, 0.018279926851391792, 0.028131302446126938, 0.012243079021573067, 0.030895650386810303, -0.02455391176044941, 0.003502862062305212, -0.05154695361852646, 0.013801411725580692, 0.004969727713614702, -0.023835722357034683, 0.028646230697631836, 0.01928268000483513, 0.0033554979600012302, -0.012805433943867683, 0.00815076008439064, -0.014539926312863827, -0.017033260315656662, 0.02636970765888691, -0.013814962469041348, 0.016206664964556694, -0.02086811512708664, -0.002378151984885335, -0.010393405333161354, 0.001199239050038159, 0.02115267887711525, 0.005840362049639225, 0.008211738429963589, -0.0075206514447927475, -0.011585868895053864, 0.021897969767451286, -0.023185288533568382, 0.03181710094213486, 0.0012763087870553136, 0.02341565117239952, 0.015285216271877289, 0.027806084603071213, 0.00020442536333575845, 0.013117100112140179, -0.015434274449944496, 0.008191412314772606, 0.043985649943351746, 0.04108579456806183, 0.0023900088854134083, -0.002230787882581353, -0.020786810666322708, 0.008157535456120968, -0.01478383969515562, -0.02330724522471428, 0.00526784360408783, 0.019973766058683395, 0.005972481332719326, -0.016884202137589455, 0.016572535037994385, -0.03872796893119812, -0.0004467504331842065, -0.020285433158278465, -0.006450144574046135, -0.02069195546209812, 0.011186121962964535, -0.03723738715052605, 0.016423476859927177, 0.002810081234201789, 0.022074129432439804, 0.007967825047671795, 0.011301303282380104, -0.013604926876723766, -0.030218113213777542, -0.0373728945851326, 0.017304273322224617, 0.016464129090309143, 0.0198518093675375, -0.021938621997833252, 0.007608731277287006, 0.03384970873594284, -0.008076230995357037, -0.009499057196080685, -0.0214101430028677, -0.012127897702157497, 0.03263014182448387, 0.000911286158952862, -0.007507100701332092, -0.018428985029459, -0.014919347129762173, 0.0017819202039390802, -0.0005441462271846831, -0.020773259922862053, -0.0019953439477831125, -0.02956767939031124, 0.010217245668172836, 0.0010493341833353043, 0.0060673365369439125, -0.016721593216061592, 0.011328404769301414, 0.007500325329601765, 0.004332843702286482, 0.0020444653928279877, -0.0068769920617341995, -0.01814441941678524, -0.025976737961173058, -0.015041302889585495, -0.021369490772485733, 0.004766467027366161, -0.001517681055702269, 0.0063383509404957294, -0.004363332875072956, -0.01348297018557787, 0.022778766229748726, -0.029865795746445656, 0.02109847590327263, -0.006263821851462126, 0.009749745950102806, -0.018578041344881058, 0.014011448249220848, -0.010027535259723663, -0.01095576025545597, 0.028049997985363007, -0.02271101251244545, -0.03206101059913635, -0.01851028762757778, -0.0075545283034443855, 0.030434925109148026, -0.004326068330556154, 0.00017012510215863585, -0.006470470689237118, 0.00895702838897705, 0.003519800491631031, -0.007059927098453045, -0.01325260754674673, -0.004962952341884375, -0.012466665357351303, 0.02546180970966816, 0.011789129115641117, -0.03750840201973915, 0.03203390911221504, -0.009329672902822495, -0.023090433329343796, 0.0005886095459572971, -0.01292739063501358, 0.022860070690512657, -0.0012204120866954327, 0.014336665160953999, 0.011186121962964535, 0.013178078457713127, -0.016518332064151764, 0.00034003847395069897, -0.018754201009869576, 0.028727533295750618, -0.0027965304907411337, -0.02758927270770073, 0.002268052427098155, 0.0072496370412409306, 0.007771340198814869, 0.031085360795259476, -0.0037433872930705547, -0.015149708837270737, -0.013686231337487698, -0.0051187858916819096, 0.0011306385276839137, -0.006409492343664169, 0.00754097755998373, 0.04233245924115181, -0.007839093916118145, -0.020962970331311226, -0.014743187464773655, -0.010081738233566284, -0.032250721007585526, -0.04601825773715973, -0.013347462750971317, 0.0011585868196561933, 0.008374347351491451, 0.006199456285685301, -0.03631594032049179, 0.040164344012737274, 0.012202426791191101, -0.0011712906416505575, -0.024797825142741203, -0.019919563084840775, 0.013306810520589352, 0.01894391141831875, -0.001447386690415442, -0.019892461597919464, -0.023862823843955994, -0.02875463478267193, 0.016057606786489487, 0.0012415850069373846, 0.02954057790338993, 0.032765649259090424, -0.00460724625736475, -0.01845608651638031, -0.012581846676766872, -0.009499057196080685, 0.017331374809145927, 0.03723738715052605, -0.0018733874894678593, -0.027914490550756454, 0.0004941779770888388, 0.005603224039077759, 0.020231230184435844, 0.0004967187414877117, -0.008990905247628689, -0.001643872121348977, -0.01441796962171793, 0.023917026817798615, 0.008611484430730343, -0.020515795797109604, 0.011409709230065346, -0.012920615263283253, 0.03889057785272598, 0.0055727348662912846, 0.01962144859135151, 0.029161157086491585, 0.009986883029341698, 0.024594563990831375, -0.03973072022199631, 0.015271665528416634, -0.03872796893119812, -0.03303666412830353, 0.011755253188312054, -0.005881014280021191, -0.003164093941450119, -0.023835722357034683, 0.015068404376506805, -0.0006821942515671253, -0.009465180337429047, -0.013205179944634438, -0.011430035345256329, -0.008767317980527878, 0.009228043258190155, 0.007330941502004862, 0.004055053927004337, 0.03298246115446091, -0.010115615092217922, 0.00011507528688525781, -0.0011670560343191028, -0.0378878228366375, -0.012033042497932911, -0.01031887624412775, 0.007303840015083551, -0.006748260464519262, -0.01840188354253769, -0.011633296497166157, 0.002076648408547044, 0.015488477423787117, -0.021396592259407043, 0.0037366121541708708, 0.20022548735141754, 0.01939108595252037, 0.010108839720487595, 0.015623983927071095, -0.012432788498699665, 0.03674956411123276, 0.005833586677908897, 0.0033809056039899588, -0.009167064912617207, 0.009295796044170856, -0.008171086199581623, 0.00643659383058548, -0.007303840015083551, -0.004874872975051403, 0.005687916185706854, -0.013089998625218868, -0.0028202442917972803, -0.019865360110998154, 0.006937970407307148, -0.0011196285486221313, 0.03143768012523651, -0.019540144130587578, -0.022290939465165138, -0.019513042643666267, 0.032277822494506836, 0.0069989487528800964, -0.01822572387754917, 0.011999165639281273, 0.03615333139896393, -0.019431738182902336, -0.01369300577789545, 0.000348507659509778, -0.008794419467449188, 0.006399329286068678, -0.01913362182676792, -0.0029388132970780134, 0.029377968981862068, 0.0003095493302680552, 0.012229528278112411, -0.007005724124610424, 0.026586519554257393, -0.01601695455610752, -0.015894999727606773, -0.004021177068352699, 0.00937032513320446, 0.02117978036403656, -0.024337099865078926, 0.006582263857126236, -0.0051018474623560905, 0.02758927270770073, -0.01692485436797142, -0.01720941811800003, 0.031708694994449615, 0.0057793837040662766, -0.0021003622096031904, 0.004305742215365171, -0.015894999727606773, 0.014526375569403172, 0.03870086744427681, 0.03360579535365105, -0.026464562863111496, 0.028429418802261353, 0.006951521150767803, 0.01788695529103279, -0.01819862239062786, 0.01470253523439169, -0.005772608332335949, -0.019404636695981026, -0.023144636303186417, -0.012737680226564407, 0.006395941600203514, -0.02551601268351078, 0.009722644463181496, 0.0012212590081617236, -0.004177010618150234, -0.0282939113676548, 0.01933688297867775, -0.002251113997772336, 0.006717771291732788, 0.026288403198122978, -0.01362525299191475, -0.011165795847773552, -0.00407538004219532, -0.009065434336662292, -0.03008260577917099, -0.0340123176574707, 0.04225115478038788, -0.019824707880616188, -0.020068621262907982, -0.007276738528162241, -0.0190794188529253, 0.0008261706680059433, 0.002415416529402137, 0.002217237139120698, -0.0002602162421680987, 0.010556013323366642, -0.0233614481985569, 0.018835505470633507, -0.010799926705658436, 0.025949636474251747, -0.021017171442508698, 0.041411012411117554, 0.014661883004009724, 0.010332426987588406, 0.01478383969515562, -0.0005161978770047426, -0.021952172741293907, 0.018727099522948265, 0.029892897233366966, -0.025353403761982918, 0.006771974265575409, -0.011701050214469433, 0.0037637134082615376, -0.025217896327376366, -0.008137209340929985, 0.00041033283923752606, 0.022006375715136528, 0.00011189933866262436, -0.022927824407815933, 0.0018174907891079783, -0.016003403812646866, -0.019784055650234222, -0.02231804095208645, 0.0042074997909367085, 0.004149909131228924, -0.00033538040588609874, -0.03444593772292137, -0.006162191741168499, -0.007419021334499121, -0.0059115029871463776, 0.024567462503910065, -0.036559853702783585, 0.0135642746463418, -0.0006940511520951986, -0.008421774953603745, -0.001590516185387969, -0.006490796804428101, -0.013713331893086433, -0.0016828305087983608, 0.005515144672244787, -0.026437461376190186, 0.020082172006368637, -0.013997897505760193, 0.013117100112140179, 0.004485289566218853, -0.004566594026982784, -0.009024782106280327, 0.008313369005918503, -0.007412245962768793, -0.030272316187620163, -0.018754201009869576, 0.005565959960222244, 0.021057823672890663, -0.025326302275061607, 0.003878894727677107, -0.03189840167760849, 0.0019868749659508467, -0.030976954847574234, 0.013327136635780334, -0.02699304185807705, -0.027155650779604912, -0.003113278653472662, 0.00901800673455, -0.013970796018838882, -0.034120723605155945, -0.010711846873164177, -0.17073911428451538, -0.00018494619871489704, 0.030326519161462784, -0.0020681791938841343, 0.013794636353850365, -0.004715651739388704, 0.02159985341131687, 0.01053568720817566, -0.022155433893203735, -0.013144201599061489, 0.004065216984599829, -0.013455868698656559, -0.024770723655819893, -0.018279926851391792, -0.019824707880616188, 0.0035469019785523415, -0.02262970805168152, -0.003482535947114229, 0.03729159012436867, 0.03235912695527077, 0.053064633160829544, -0.016653839498758316, 0.015502028167247772, 0.03447303920984268, -0.005227191839367151, 0.000615287572145462, -0.02424224466085434, -0.01811731792986393, -0.027914490550756454, -0.017656592652201653, -0.007005724124610424, 0.024973982945084572, 0.025556664913892746, -0.0306246355175972, 0.005786159075796604, 0.004417535848915577, 0.0005568500491790473, -0.02120688185095787, -0.010677970014512539, -0.02050224505364895, 0.006836340297013521, 0.04298289492726326, -0.0005890330066904426, -0.01168072409927845, -0.014824491925537586, 0.027914490550756454, 0.01598985306918621, -0.026871085166931152, 0.024702969938516617, -0.002764347707852721, 0.013374564237892628, -0.013638803735375404, 0.0027762046083807945, -0.00650773523375392, 0.0175210852175951, -0.014282463118433952, -0.005820035934448242, 0.040923185646533966, -0.003733224468305707, 0.00798137579113245, 0.021274635568261147, -0.013984346762299538, 0.022236738353967667, 0.013211955316364765, -0.006812626495957375, -0.02662717178463936, 0.004600470885634422, 0.017317824065685272, -0.03992043063044548, 0.02203347720205784, 0.002681349404156208, 0.0002636039280332625, -0.028998548164963722, -0.01630152016878128, -0.011023513972759247, 0.024540361016988754, -0.0010569564765319228, 0.014607680030167103, 0.004082155413925648, -0.0340123176574707, -0.011877208948135376, 0.037074778228998184, 0.008496304042637348, -0.017846303060650826, -0.003341947216540575, -0.012568295933306217, -0.003506249748170376, 0.03013680875301361, -0.027657026425004005, -0.010630542412400246, 0.005742119159549475, -0.04366043210029602, -0.003485923632979393, 0.007459673564881086, 0.0073648183606565, 0.015976302325725555, -0.015447825193405151, -0.03818593919277191, 0.023767968639731407, -0.02248064987361431, 0.0071344561874866486, 0.008536956273019314, -0.0060165212489664555, 0.005413514096289873, 0.034039419144392014, 0.019634999334812164, -0.022548403590917587, 0.003396150190383196, 0.030326519161462784, -0.0022578893695026636, -0.01339489035308361, -0.008699564263224602, -0.00030002149287611246, 0.016369273886084557, -0.004617408849298954, 0.028619129210710526, 0.02027188241481781, -0.0008884193375706673, 0.011294527910649776, 0.010583114810287952, 0.043904345482587814, 0.007168332580476999, -0.016423476859927177, 0.007141231559216976, -0.01139615848660469, -0.0009366937447339296, -0.130303755402565, -0.027264056727290154, -0.01165362261235714, 0.02730470895767212, 0.02574637532234192, 0.010325651615858078, -0.019716303795576096, 0.01741267926990986, 0.0009239899809472263, 0.02758927270770073, -0.01928268000483513, -0.01743978075683117, -0.008428550325334072, 0.009133188053965569, -0.0033165395725518465, -0.00931612215936184, -0.014716085977852345, -0.007920398376882076, -0.035882316529750824, 0.028646230697631836, 0.015447825193405151, 0.0005407585413195193, 0.009295796044170856, -0.0034418837167322636, -0.016233766451478004, 0.05230579152703285, -0.027751881629228592, 0.00780521659180522, 0.00693119503557682, 0.035313185304403305, 0.0072496370412409306, 0.002576331375166774, -0.00022358694695867598, -0.009322897531092167, -0.005332209635525942, -0.0009358468232676387, -0.015569781884551048, 0.0018107154173776507, 0.02066485397517681, -0.006490796804428101, -0.005511756986379623, 0.01624731719493866, -0.00787974614650011, -0.002982852980494499, 0.004129583016037941, -0.03263014182448387, -0.0358281135559082, 0.028537824749946594, -0.008245615288615227, -0.011260651051998138, -0.040489561855793, -0.004542880225926638, -0.019540144130587578, -0.035367388278245926, -0.0010086819529533386, -0.028077099472284317, -0.010217245668172836, -0.030272316187620163, -0.009790398180484772, -0.0037264490965753794, -0.018361231312155724, -0.007324166130274534, -0.0024780884850770235, 0.009119637310504913, 0.020786810666322708, 0.012514092959463596, -0.028049997985363007, 0.019526593387126923, -0.0026186774484813213, -0.018699998036026955, -0.007703586481511593, 0.043850142508745193, -0.013435542583465576, 0.02668137475848198, -0.01325260754674673, 0.019553694874048233, -0.023713765665888786, -0.004343006759881973, 0.004454800393432379, -0.003858568612486124, -0.003184420056641102, -0.022697461768984795, 0.014607680030167103, -0.021450795233249664, 0.01990601234138012, 0.032250721007585526, 0.006578876171261072, 0.012107571586966515, 0.03637014329433441, -0.0342562310397625, 0.008360796608030796, 0.008807970210909843, 0.05211608484387398, -0.019065868109464645, 0.010840578936040401, -0.0015337725635617971, -0.0030472190119326115, -0.0006788065657019615, -0.021504998207092285, 0.030407823622226715, -0.026694925501942635, 0.0051187858916819096, -0.03620753437280655, 0.005647263955324888, 0.021897969767451286, -0.0057793837040662766, -0.008990905247628689, -0.0004378577577881515, 0.01173492707312107, -0.018672896549105644, 0.01168072409927845, 0.0040177893824875355, -0.02050224505364895, 0.024973982945084572, 0.0006639854400418699, -0.012547969818115234, 0.0029997914098203182, -0.018808403983712196, 0.011890759691596031, 0.005288169719278812, 0.020800361409783363, -0.004509003367275, -0.025136591866612434, 0.009390651248395443, 0.006446756888180971, -0.011186121962964535, -0.0005890330066904426, -0.004566594026982784, -0.011213223449885845, 0.017399128526449203, -0.019214926287531853, -0.04170912876725197, 0.022602606564760208, -0.005989419762045145, -0.0014253667322918773, 0.03450014069676399, -0.004309129901230335, 0.0010806701611727476, 0.0070734778419137, 0.02154565043747425, 0.027033694088459015, 0.01941818743944168, -0.030299417674541473, -0.017195867374539375, 0.007358042988926172, -0.01967565156519413, 0.012520868331193924, -0.013943694531917572, -0.007297064643353224, 0.005979256704449654, 0.0015244564274325967, 0.023144636303186417, 0.03479825705289841, 0.005491430871188641, -0.015867898240685463, -0.010962535627186298, -0.00025661682593636215, -0.04189883917570114, 0.014363766647875309, -0.015556231141090393, -0.009621013887226582, -0.021870868280529976, 0.012568295933306217, 0.0051018474623560905, 0.012717354111373425, -0.00042324839159846306, 0.0022765216417610645, -0.04596405476331711, -0.02481137588620186, 0.013449093326926231, -0.012480216100811958, -0.000778743124101311, -0.02491977997124195, -0.013984346762299538, 0.018388332799077034, 0.008692788891494274, 0.01788695529103279, -0.019431738182902336, -0.008896050043404102, 0.003892445471137762, 0.007012499496340752, 0.017873404547572136, 0.02832101285457611, 0.0033842932898551226, -0.007107354700565338, 0.029730288311839104, 0.03924289718270302, 0.020719056949019432, 0.0007918704068288207, -0.010522136464715004, -0.014688984490931034, 0.006805851124227047, 0.0020478530786931515, 0.010610216297209263, -0.015068404376506805, -0.0019868749659508467, 0.013632028363645077, 0.02276521548628807, -0.0025441483594477177, 0.0005225497880019248, 0.009668441489338875, 0.008584383875131607, 0.006114764139056206, 0.00643659383058548, -0.011450361460447311, -0.007791666314005852, -0.020827462896704674, 0.009749745950102806, 0.0012746149441227317, -0.02310398407280445, -0.0195943471044302, 0.0273860115557909, -0.004126195330172777, 0.022751664742827415, 0.011023513972759247, -0.018252825364470482, -0.019946664571762085, 0.006768586579710245, 0.013435542583465576, 0.005870851222425699, -0.01972985453903675, 0.006937970407307148, -0.002732164692133665, 0.014079201966524124, 0.02483847551047802, -0.0028829164803028107, 0.01944528892636299, 0.0319255031645298, 0.01972985453903675, -0.010867680422961712, 0.0024967207573354244, -0.012507317587733269, 0.005698079243302345, -0.00014439989172387868, -0.005623550154268742, -0.02109847590327263, -0.021342389285564423, -0.021816665306687355, 0.008001701906323433, -0.010576339438557625, -0.01819862239062786, 0.08157535642385483, -0.006162191741168499, -0.025272099301218987, 0.014661883004009724, -0.015203911811113358, 0.00500360457226634, 0.013903042301535606, -0.014946448616683483, -0.02364601194858551, -0.01775144785642624, 0.006863441318273544, 0.02211478166282177, -0.022385794669389725, -0.016206664964556694, -0.01012239046394825, 0.0064569199457764626, 0.0014812634326517582, 0.016342172399163246, -0.030543331056833267, 0.00817786157131195, 0.02393057756125927, 0.009939455427229404, 0.00026741507463157177, -0.010847354307770729, -0.018754201009869576, 0.011524890549480915, 0.021532099694013596, 0.03444593772292137, -0.021166229620575905, -0.03365999832749367, -0.007276738528162241, 0.013103549368679523, -0.02823970839381218, -0.014228260144591331, -0.004431086592376232, 0.0014329890254884958, -0.006348513998091221, -0.01034597773104906, 0.019038766622543335, 0.01902521587908268, 0.0013499908382073045, -0.004380271304398775, -0.04918912798166275, -0.04187173768877983, -0.025583766400814056, 0.04057086631655693, -0.01692485436797142, -0.03130217269062996, -0.05181796848773956], "8a42847e-d34b-4214-83fd-6613a4b84086": [-0.0007986006676219404, 0.002064816653728485, -0.004687781445682049, 0.0007047453545965254, -0.013495229184627533, -0.008006771095097065, -0.016996946185827255, -0.014458700083196163, -0.004073154181241989, -0.016797607764601707, -0.0006009230855852365, 0.037900932133197784, 0.0022176429629325867, 0.004850574769079685, -0.007940324954688549, 0.023801039904356003, 0.016066698357462883, 0.016545111313462257, 0.013860683888196945, 0.0038306252099573612, -0.010790867730975151, 0.004491765052080154, -0.01116296648979187, -0.020505307242274284, -0.049435995519161224, 0.02215317264199257, 0.019256118685007095, -0.003907038364559412, 0.012604850344359875, -0.006544953677803278, 0.014565014280378819, -0.0010058297775685787, -0.04055877774953842, 0.008598142303526402, -2.3515736756962724e-05, 0.008531696163117886, 0.009408785961568356, 0.007408754900097847, 0.007953613996505737, 0.00897024106234312, 0.034844402223825455, 0.0030199813190847635, -0.004897087346762419, 0.01671787165105343, -0.007428688462823629, 0.027189798653125763, 0.01907006837427616, -0.040744829922914505, -0.022339222952723503, 0.01356832031160593, 0.04268505796790123, 0.03433941304683685, -0.03537597507238388, -0.011488553136587143, -0.016704581677913666, -0.01287727989256382, 0.008558274246752262, 0.017156416550278664, -0.030910786241292953, -0.021209636703133583, 0.007103102281689644, -0.011269280686974525, -0.014405542984604836, -0.017023524269461632, -0.010764289647340775, -0.019003622233867645, 0.005877169314771891, 0.0027857583481818438, 0.006863895803689957, 0.016319194808602333, 0.02353525534272194, 0.013475296087563038, 0.030512109398841858, 0.007289151661098003, 0.034897562116384506, -0.03197392821311951, -0.02721637673676014, 0.018073374405503273, -0.03532281517982483, -0.002702700439840555, 0.01154171023517847, -0.018923886120319366, -0.0018638167530298233, -0.011109810322523117, 0.02069135569036007, -0.008531696163117886, 0.007528358139097691, 0.03697068244218826, -0.0057276650331914425, -0.02144884318113327, 0.0030797827057540417, 0.021900678053498268, 0.012545048259198666, 0.026830988004803658, -0.025143254548311234, 0.01673116162419319, -0.013927130028605461, 0.007249283604323864, 0.010538372211158276, 0.0034684932325035334, 0.015481972135603428, 0.03800724446773529, 0.01323608960956335, -0.006883829366415739, -0.007767564617097378, 0.01701023429632187, -0.01172775961458683, -0.019123224541544914, 0.02006676234304905, -0.015123162418603897, -0.005877169314771891, 0.03508361056447029, -0.002561502158641815, -0.009960290044546127, 0.02287079207599163, -0.01701023429632187, -0.00042255650623701513, 0.003823980689048767, -0.03909696266055107, 0.014751063659787178, 0.009834041818976402, -0.009448654018342495, 0.02867819368839264, -0.022777767851948738, 0.021634893491864204, -0.011986900120973587, -0.013701212592422962, -0.018033506348729134, -0.017887325957417488, -0.020545175299048424, 0.03394073620438576, 0.011136388406157494, 0.004568178206682205, 0.01994715817272663, 0.01794048212468624, -0.017528515309095383, -0.011574933305382729, 0.01907006837427616, -0.007747630588710308, -0.0005868033040314913, 0.03521650284528732, 0.017967060208320618, -0.004435285925865173, -0.004465186968445778, -0.00516287237405777, 0.02065148949623108, 0.010000158101320267, -0.0056944419629871845, -0.016332482919096947, -0.00938885286450386, -0.0054784915409982204, -0.008505117148160934, 0.030512109398841858, 0.015827491879463196, 0.0021262792870402336, 0.016877342015504837, 0.0024153206031769514, -0.0001400562032358721, 0.02889082208275795, 0.0076280273497104645, 0.015362368896603584, 0.02119634859263897, -0.0021462133154273033, 0.012020123191177845, 0.005940292961895466, 0.030458953231573105, 0.019880712032318115, 0.0017491970211267471, -0.02550206333398819, 0.019455457106232643, 0.001601354219019413, 0.014618170447647572, -0.02968817576766014, 0.01646537519991398, 0.010013447143137455, -0.020080050453543663, 0.0030930719804018736, -0.04005378857254982, -0.030512109398841858, 0.01580091379582882, -0.0025116675533354282, -0.01507000532001257, 0.02174120768904686, 0.03540255129337311, -0.016252748668193817, 0.015654731541872025, 0.020518595352768898, -0.012412155978381634, 0.022272776812314987, -0.015362368896603584, 0.00010683308209991083, 0.02069135569036007, 0.014033444225788116, -0.0008787513943389058, -0.6119431853294373, 0.0018272713059559464, -0.022179752588272095, -0.019016912207007408, 0.01063804142177105, -0.001349689089693129, 0.03627964109182358, 0.012046701274812222, -0.015442104078829288, 0.010684553533792496, 0.02655191347002983, -0.0051429383456707, -0.012299197725951672, -0.029581861570477486, 0.01063804142177105, -0.028199780732393265, -0.004372161813080311, -0.012199528515338898, -0.014206204563379288, 0.017781011760234833, 0.003581451950594783, 0.031043678522109985, -0.014272650703787804, 0.011661313474178314, 0.01176762767136097, 0.026897434145212173, 0.022764479741454124, 0.00476751709356904, 0.032505497336387634, 0.017076682299375534, 0.00913635641336441, 0.01116296648979187, -0.009335695765912533, 0.02328275889158249, 0.039788004010915756, -0.0010689537739381194, -0.0013172965263947845, 0.025316014885902405, 0.022551851347088814, 0.060598962008953094, -0.019375720992684364, 0.009083200246095657, 0.04268505796790123, 0.00829913467168808, 0.009847331792116165, -0.00016642703849356622, -0.004116343799978495, 0.03606701269745827, -0.0030133365653455257, -0.009408785961568356, -0.026193104684352875, -0.008252621628344059, 0.0008268402889370918, 0.0023139899130910635, 0.008319067768752575, 0.007089812774211168, 0.015481972135603428, -0.0009393835789524019, -0.013993576169013977, -0.029821068048477173, -0.01655840128660202, -0.0005141277215443552, -0.028731349855661392, 0.013435428030788898, -0.020452149212360382, 0.03901722654700279, -0.016864053905010223, -0.01907006837427616, -0.013661345466971397, 0.016279326751828194, -5.5025786423357204e-05, 0.01914980448782444, 0.004897087346762419, 0.007109746802598238, 0.015349079854786396, 0.030618423596024513, 0.029661597684025764, -0.0003820658312179148, 0.0037741458509117365, -0.004405385348945856, 0.023362495005130768, -0.007422043941915035, -0.022804345935583115, -0.021329240873456, 0.016903921961784363, -0.0034518816974014044, 0.020000316202640533, 0.026684805750846863, 0.054539065808057785, 0.0022840891033411026, 0.02713664062321186, 0.02261829748749733, -0.001507498905993998, -0.03686437010765076, 0.005488458555191755, 0.0019219572423025966, -0.0028621715027838945, -0.0003287011932116002, 0.008737679570913315, -0.0008334849262610078, -0.023229602724313736, -0.027615053579211235, -0.006495119072496891, 0.0020099985413253307, 0.0017658085562288761, 0.01642550900578499, 0.0014094907091930509, 0.010252653621137142, 0.01831258088350296, -0.03189419209957123, -0.010525083169341087, -0.055708520114421844, 0.012764320708811283, -0.004558211658149958, 0.01194038800895214, -0.028040310367941856, 0.03715673089027405, 0.01189387496560812, 0.013501874171197414, -0.017634829506278038, 0.00033721461659297347, -0.010691198520362377, -0.012279263697564602, -0.03548228740692139, 0.02027938887476921, 0.009947001002728939, 0.0034186586271971464, -0.03346232324838638, -0.013468651100993156, -0.00018926794291473925, 0.015548418276011944, 0.00597019400447607, 0.007123035844415426, -0.0025930642150342464, 0.005279153119772673, 0.006435317452996969, -0.00403328612446785, 0.0038140136748552322, 0.008870571851730347, -0.002795725129544735, -0.009129712358117104, 0.010319099761545658, 0.007840655744075775, -0.02538246102631092, -0.01580091379582882, -0.00955496821552515, -0.017196284607052803, -0.0008210262167267501, -0.009461943060159683, -0.002701039193198085, -0.009209447540342808, -0.0025797749403864145, -0.035801228135824203, 0.021169768646359444, -0.001665308722294867, -0.016943788155913353, 0.007574870251119137, -0.004910376388579607, 0.0038007244002074003, -0.009548323228955269, -0.0038505590055137873, 0.028757929801940918, -0.0012508502695709467, 0.020013604313135147, 0.0005635470733977854, -0.005182805936783552, -0.027030326426029205, 0.038565393537282944, -0.014166336506605148, -0.04159533977508545, 0.011282569728791714, 0.01864481158554554, -0.0029419069178402424, 0.005820689722895622, -0.010684553533792496, 0.029050292447209358, -0.010790867730975151, -0.0004173654015175998, -0.013621477410197258, -0.004568178206682205, 0.021980414167046547, 0.013123130425810814, -0.03609359264373779, -0.013648055493831635, 0.014737773686647415, -0.00036130138323642313, 0.022671453654766083, -0.005083136726170778, -0.014538435265421867, -0.011800850741565228, 0.014086601324379444, 0.001255003153346479, -0.0020731224212795496, -0.0044585419818758965, -0.0026628326158970594, 0.018538499251008034, 0.01193374302238226, -0.0028023698832839727, 0.008412092924118042, 0.03335600718855858, 0.03508361056447029, 0.002172791864722967, -0.004890442825853825, -0.049409419298172, 0.0050964257679879665, -0.009647992439568043, 0.02579442784190178, -0.0010182885453104973, 0.018418895080685616, -0.003890426829457283, 0.006126342341303825, -0.014618170447647572, -0.020478729158639908, 0.00714961439371109, 0.009548323228955269, 0.02244553714990616, -0.007255928590893745, 0.020212942734360695, 0.010863958857953548, -0.005584805738180876, 0.015561707317829132, -0.000970114953815937, -0.0013197882799431682, 0.006817383226007223, -0.03540255129337311, 0.0022575107868760824, 0.00096679269336164, 0.0017126515740528703, -0.015123162418603897, -0.04988783225417137, 0.002775791333988309, -0.0016237797681242228, 0.00877754669636488, -0.022977106273174286, 0.023973800241947174, 0.01193374302238226, 0.03774145990610123, -0.005598094779998064, 0.029369235038757324, -0.02655191347002983, -0.009435364976525307, 0.02328275889158249, 0.01601354219019413, -0.0381135568022728, 0.025648245587944984, -0.0009584868676029146, 0.024306030943989754, 0.006046607159078121, 0.009096489287912846, 0.018551787361502647, 0.005036624148488045, 0.017900614067912102, -0.02345551922917366, 0.012784254737198353, 0.020332546904683113, -0.020704645663499832, -0.0059934500604867935, -0.0005373838939704001, 0.019628217443823814, 0.013674634508788586, 0.015548418276011944, 0.003272476838901639, -0.006581499241292477, 0.009428719989955425, 0.02608679048717022, 0.004405385348945856, -0.004667847882956266, -0.047017354518175125, -0.01706339232623577, -0.03303706645965576, -0.010717777535319328, -0.03107025846838951, -0.009947001002728939, 0.006631333846598864, 0.011754338629543781, 0.02499707229435444, 0.012265974655747414, 0.03433941304683685, -0.009315761737525463, -0.00970114953815937, -0.011521776206791401, -0.012139726430177689, 0.003265832317993045, 0.02583429403603077, 0.010956983081996441, -0.033382587134838104, 0.004843930248171091, 0.0056778304278850555, 0.006760904099792242, 0.013508519157767296, -0.01710326038300991, 0.0076280273497104645, 0.0024485436733812094, -0.007468556519597769, 0.006694457959383726, 0.02780110388994217, 0.01194038800895214, -0.0015099906595423818, 0.022724611684679985, 0.0030930719804018736, 0.0005162041634321213, -0.020159786567091942, -0.013109841383993626, -0.000699761847499758, 0.031841032207012177, -0.014006865210831165, 0.03269154578447342, -0.0001015900561469607, -0.0072625731118023396, -0.018365738913416862, 0.027561897411942482, -0.03904380649328232, -0.022977106273174286, -0.031176570802927017, 0.04808049276471138, 0.004770839586853981, 0.0012076603015884757, -0.013648055493831635, 0.012059991247951984, -0.01889730803668499, -0.0036578651051968336, 0.0011295859003439546, -0.004152889363467693, 0.0037508897949010134, 0.05889793857932091, 0.01784745790064335, -0.00587384682148695, 0.008292489685118198, -0.014060022309422493, 0.002282428089529276, -0.031176570802927017, -0.00389374908991158, 0.005697764456272125, -0.00198009773157537, -0.0005967702018097043, -0.0041761454194784164, 0.006451928988099098, -0.010106471367180347, 0.013501874171197414, -0.0004738446732517332, -0.008558274246752262, 0.006548276171088219, 0.02098372019827366, -0.006883829366415739, -0.01318957656621933, 0.011269280686974525, 0.01794048212468624, 0.02684427797794342, -0.003574807196855545, -0.002272461075335741, 0.01032574474811554, 0.0023422297090291977, -0.0139669980853796, 0.01714312843978405, -0.01760825142264366, 0.0198674239218235, -0.0055715166963636875, 0.021727917715907097, -0.012319130823016167, 0.023561833426356316, 0.012159660458564758, 0.011574933305382729, 0.010239364579319954, -0.028199780732393265, 0.014219493605196476, 0.03149551525712013, 0.008897149935364723, -0.030086852610111237, -0.040027208626270294, -0.02620639279484749, -0.02166147157549858, 0.009275893680751324, -0.019096646457910538, -0.0028339317068457603, -0.005887135863304138, -0.015202897600829601, -0.007521713152527809, -0.036439113318920135, 0.018498631194233894, 0.007827365770936012, -0.010106471367180347, -0.03444572538137436, -0.0036910881754010916, -0.029821068048477173, -0.006528342142701149, -0.0025432296097278595, 0.0040764762088656425, 0.009847331792116165, 0.0191099364310503, -0.02299039624631405, -0.019123224541544914, -0.010059959255158901, -0.013282601721584797, -0.009614769369363785, 0.031920768320560455, -0.03247891739010811, -0.03056526556611061, -0.052333053201436996, 0.016000252217054367, 0.04313689470291138, -0.009900488890707493, -0.011641379445791245, -0.006970209535211325, -0.004850574769079685, 0.005192772950977087, -0.043588727712631226, -0.02454523742198944, -0.029156606644392014, 0.008538341149687767, 0.0011569949565455317, 0.014604881405830383, -0.013913840986788273, -0.024890758097171783, 0.015561707317829132, -0.0318676121532917, 0.008226043544709682, 0.007402110379189253, -0.054246705025434494, -0.0005905408761464059, 0.026286128908395767, -0.012511825188994408, 0.007588159758597612, 0.006255912594497204, -0.021382397040724754, 0.01642550900578499, 0.009169579483568668, 0.002950212685391307, -0.04778812825679779, -0.007083168253302574, 0.012133081443607807, 0.006870540324598551, 0.012996883131563663, -0.0006515883724205196, -0.02316315658390522, 0.015335789881646633, -0.025103386491537094, 0.02069135569036007, 0.01584078185260296, -0.015229476615786552, 0.005551582667976618, -0.0016229491448029876, 0.035934120416641235, -0.020757801830768585, -0.029953960329294205, -0.00023733763373456895, -0.04196744039654732, 0.01269123051315546, 0.0337812639772892, -0.03394073620438576, -0.010505149140954018, -0.032000504434108734, -0.044093720614910126, -0.026432311162352562, 0.028651615604758263, 0.01214637141674757, 0.011900519952178001, -5.126222822582349e-05, -0.01411317940801382, -0.011289214715361595, -0.007083168253302574, -0.001117957872338593, 0.00643863994628191, -0.028146622702479362, -0.008212754502892494, 0.022977106273174286, 0.005601417273283005, 0.021090034395456314, -0.027747945860028267, -0.010159628465771675, -0.03234602510929108, -0.027987152338027954, 0.006568209733814001, 0.010883892886340618, 0.026325996965169907, 0.00913635641336441, 1.543057987873908e-05, -0.01806008629500866, -0.005485136527568102, 0.035057030618190765, 0.0013148047728464007, -0.008053283207118511, -0.008498473092913628, 0.009860620833933353, 0.04303057864308357, -0.007508424110710621, 0.00827920064330101, 0.004528310615569353, 0.008432026952505112, -0.006694457959383726, -0.0010697842808440328, -0.009036687202751637, -0.00484060775488615, -0.02851872332394123, -0.02316315658390522, 0.013136419467628002, 0.010551661252975464, 0.0013239411637187004, 0.0011262636398896575, 0.017448781058192253, 0.00174587476067245, 0.012212817557156086, 0.019535191357135773, -0.008976886048913002, -0.012358998879790306, -0.021222926676273346, 0.007348953280597925, 0.009541679173707962, 0.0018505275947973132, -0.03537597507238388, -0.027203086763620377, 0.004305715672671795, -0.002407014835625887, 0.010332388803362846, 0.009236026555299759, -0.008219398558139801, 0.015136451460421085, -0.002224287483841181, 0.0490107387304306, 0.057250071316957474, -0.033754684031009674, 0.01492382399737835, -0.02897055633366108, -0.0012417139951139688, 0.0033887578174471855, -0.013249378651380539, 0.042419273406267166, 0.018086664378643036, 0.005614706315100193, -0.03705041855573654, -0.0030216423328965902, -0.016611557453870773, -0.01283741183578968, 0.038937490433454514, -0.0367048978805542, -0.006099764257669449, -0.00026350084226578474, -0.008458605036139488, -0.004259203560650349, -0.01646537519991398, 0.027535317465662956, 0.006551598198711872, 0.011907164938747883, -0.00624926807358861, -0.020997008308768272, -0.011156322434544563, 0.007003432605415583, 0.026432311162352562, 0.00632235873490572, 0.036651741713285446, 0.027561897411942482, 0.007355597801506519, -0.005784144625067711, -0.013953708112239838, -0.007023366633802652, 0.01663813553750515, 0.025369171053171158, 0.004152889363467693, 0.005927003920078278, -0.01214637141674757, -0.016983656212687492, -0.02291066013276577, -0.006677846424281597, -0.015986964106559753, 0.005232640542089939, 0.002295717364177108, -0.0011619784636422992, -0.002363824751228094, 0.049356259405612946, 0.0037409227807074785, 0.012279263697564602, -0.01973452977836132, -0.00488047581166029, -0.04085114225745201, 0.00014337850734591484, -0.02659178152680397, 0.013807526789605618, 0.008305778726935387, 0.016983656212687492, -0.010531727224588394, 0.023030264303088188, -0.0195617713034153, -0.02345551922917366, -0.04202059656381607, -0.0007591482135467231, 0.030086852610111237, 0.033595215529203415, -0.01751522719860077, -0.01977439783513546, 0.06006739288568497, -0.001101346337236464, -0.010086538270115852, -0.004980145022273064, -0.014937113039195538, 0.026498757302761078, -0.013621477410197258, -0.019016912207007408, 0.020305968821048737, 0.002084750449284911, 0.007481845561414957, -0.01601354219019413, -0.013847394846379757, 0.00653166463598609, -0.001024102559313178, 0.003071476938202977, 0.032718125730752945, 0.02554193139076233, -0.02392064407467842, -0.0075948042795062065, -0.007322374731302261, -0.004465186968445778, -0.0012516808928921819, -0.015628153458237648, -0.015375657938420773, -0.010923760011792183, -0.00899017509073019, -0.03481782600283623, -0.00625259056687355, 0.012810833752155304, -0.012717808596789837, 0.0006308238953351974, 0.02232593297958374, 0.04263190180063248, -0.025688113644719124, 0.016026830300688744, -0.01852520927786827, 0.014658038504421711, -0.03181445598602295, -0.001681920257396996, 0.008877216838300228, 0.005295764654874802, 0.013528452254831791, -0.022046860307455063, 0.00431568268686533, -0.017156416550278664, -0.0102858766913414, 0.016119856387376785, -0.0054618800058960915, -0.021900678053498268, -0.014020155183970928, 0.0006436978583224118, 0.01848534122109413, -0.015774335712194443, -0.029581861570477486, 0.01973452977836132, -0.023229602724313736, 0.044837918132543564, 0.027987152338027954, 0.00023837585467845201, 0.018618233501911163, 0.03723646700382233, 0.0006212722510099411, -0.0175949614495039, -0.023973800241947174, -0.013674634508788586, -0.0208242479711771, -0.00897024106234312, 0.009548323228955269, 0.0009659620700404048, -0.029156606644392014, -0.0012043379247188568, -0.007475201040506363, 0.007840655744075775, -0.006644623354077339, -0.010691198520362377, 0.007010077591985464, 0.013621477410197258, -0.0037675013300031424, 0.02487746812403202, -0.017568383365869522, -0.02027938887476921, 0.02156844735145569, 0.02830609492957592, -0.005667863413691521, -0.020624909549951553, 0.009834041818976402, 0.03705041855573654, 0.006106408778578043, 0.005827334709465504, -0.014897244982421398, -0.004873831290751696, -0.008186175487935543, -0.010837380774319172, -0.015109873376786709, 0.024252874776721, 0.002127940533682704, 9.920214506564662e-05, -0.005627995822578669, 0.028545301407575607, 0.01196032203733921, 0.029448969289660454, -0.0102858766913414, -0.01546868309378624, 0.010392190888524055, 0.040665093809366226, -0.00010766366176540032, -0.005505070090293884, -0.01214637141674757, -0.03867170587182045, 0.023003684356808662, -0.03149551525712013, 0.01819297857582569, 0.018551787361502647, -0.0019119903445243835, -0.017249440774321556, -0.03043237328529358, -0.0019684697035700083, 0.0257146917283535, 0.010684553533792496, 0.010345677845180035, -0.01087060384452343, -0.015056716278195381, -0.018910598009824753, 0.026605071499943733, -0.0069967880845069885, 0.00212129601277411, -0.0026777831371873617, -0.024093402549624443, -0.01521618664264679, -0.0046744924038648605, -0.00568779744207859, -0.011229412630200386, -0.02851872332394123, 0.01609327644109726, 0.02039899304509163, 0.00504659116268158, 0.013089907355606556, -0.018299292773008347, 0.024970494210720062, -0.010671264491975307, -0.005717698018997908, -0.043004002422094345, -0.016664715483784676, 0.010232719592750072, 0.0015158046735450625, -0.015295922756195068, -0.026498757302761078, 0.025701401755213737, -0.008325712755322456, 0.008199464529752731, -0.0352962389588356, -0.01233242079615593, -0.02244553714990616, 0.002510006306692958, -0.014538435265421867, -0.016943788155913353, 0.02341565117239952, 0.004325649701058865, 0.02186080999672413, 0.017993640154600143, -0.03516334667801857, -0.00032371774432249367, 0.01969466358423233, 0.036226484924554825, 0.0032442372757941484, 0.012046701274812222, 0.0009543339838273823, -0.007681184448301792, 0.025276146829128265, -0.01667800359427929, -0.006451928988099098, 0.1939166784286499, 0.002651204587891698, 0.02499707229435444, 0.023840907961130142, -0.007129680830985308, 0.04619342088699341, -0.013030106201767921, -0.006126342341303825, -0.01798035018146038, 0.007209416013211012, -0.0227378997951746, -0.006501763593405485, -0.011554999276995659, 0.008983530104160309, -0.003229286754503846, -0.0381135568022728, 0.010079893283545971, -0.031708139926195145, 0.001483412110246718, 0.007966903038322926, -0.007554936688393354, -0.019242828711867332, -0.0028804440516978502, -0.02859845757484436, 0.04050562158226967, 0.0009817430982366204, -0.008059928193688393, 0.009847331792116165, 0.03282443806529045, -0.013634766452014446, -0.0057608881033957005, 0.010166273452341557, 0.0036412535700947046, 0.004471831489354372, -0.03444572538137436, -0.003564840415492654, 0.035562023520469666, -0.023601701483130455, 0.025847584009170532, -0.0099071329459548, 0.02441234514117241, -0.026817698031663895, -0.011249346658587456, -0.0025897419545799494, 0.014365674927830696, 0.0005220181774348021, -0.006750937085598707, -0.012212817557156086, -0.0020731224212795496, 0.026605071499943733, -0.020717935636639595, -0.021355818957090378, -0.011435396037995815, 0.003335600718855858, 0.007834010757505894, -0.022631585597991943, -0.0034186586271971464, -0.02684427797794342, 0.02491733618080616, 0.002682766644284129, -0.0007533341413363814, 0.00773434154689312, -0.029209762811660767, 0.03245234116911888, -0.016106566414237022, 0.02604692243039608, -0.02600705437362194, 0.010604818351566792, -0.007428688462823629, -0.015335789881646633, -0.016119856387376785, 0.016438797116279602, -0.015096583403646946, 0.00865794438868761, -0.027123352512717247, -0.019495325163006783, 0.02244553714990616, 0.008199464529752731, 0.0020598331466317177, -0.004827318713068962, -0.03734278306365013, 0.0017375689931213856, -0.025727979838848114, 0.011030074208974838, -0.04882469028234482, -0.014086601324379444, 0.015043426305055618, -0.0029053613543510437, -0.0012275940971449018, -0.003880459815263748, -0.01760825142264366, -0.006488474551588297, -0.0069834990426898, -0.0012649701675400138, -0.0023372462019324303, 0.014937113039195538, -0.010737710632383823, 0.005578161217272282, -0.020877406001091003, 0.0011736066080629826, -0.019973736256361008, 0.05206726863980293, 0.011947032064199448, 0.0026977169327437878, 0.038698285818099976, 0.006329003721475601, -0.0018588333623483777, 0.019641505554318428, 0.025076808407902718, -0.015960384160280228, -0.002538246102631092, -0.016079988330602646, -0.008638010360300541, -0.01985413394868374, 0.01561486441642046, -0.025116674602031708, 0.025900740176439285, -0.016239458695054054, -0.008897149935364723, 0.008305778726935387, 0.009980224072933197, -0.009282538667321205, 0.0013314163079485297, 0.004521666094660759, -0.00042255650623701513, -0.0010315777035430074, -0.039150118827819824, 0.027056904509663582, -0.007428688462823629, -0.0044751535169780254, 0.0154288150370121, -0.02889082208275795, -0.002950212685391307, -0.0009784207213670015, -0.012797543779015541, -0.0056213513016700745, -0.008897149935364723, -0.011588222347199917, -0.016837475821375847, -0.004146244842559099, -0.02002689428627491, 0.034047048538923264, -0.027070194482803345, -0.018498631194233894, -0.0009236026089638472, -0.01245866809040308, -0.0007346461643464863, 0.011927098967134953, -0.00011129743506899104, -0.015149740502238274, -0.0006457743002101779, -0.007601448800414801, 0.004255881067365408, -0.04348241537809372, 0.008059928193688393, -0.030698159709572792, 0.017036814242601395, 0.0005236793658696115, 0.015349079854786396, 0.010784223675727844, -0.031628407537937164, -0.004252558574080467, 0.023189734667539597, -0.011275925673544407, -0.020452149212360382, 0.008810770697891712, -0.16521191596984863, 0.005674507934600115, -0.002910344861447811, -0.033515479415655136, 0.024053536355495453, -0.008285844698548317, 0.03537597507238388, -0.014764352701604366, -0.004581467714160681, -0.0035017163027077913, -0.016957078129053116, -0.006412061396986246, -0.012731097638607025, -0.015561707317829132, -0.02629941888153553, 0.011149677447974682, -0.01065797545015812, -0.0016055071027949452, 0.04741603136062622, 0.006618044804781675, 0.03744909539818764, -0.034472305327653885, 0.02107674442231655, 0.0020731224212795496, 0.005222673993557692, -0.04361530765891075, -0.010777578689157963, -0.0020897339563816786, 0.012564982287585735, -0.021927256137132645, 0.02053188532590866, 0.016332482919096947, 0.0005282475613057613, -0.01626603677868843, 0.0066080777905881405, 0.015628153458237648, -0.004631302319467068, -0.03218655288219452, -0.018365738913416862, -0.005940292961895466, 0.009794174693524837, 0.035269659012556076, -0.028066888451576233, 0.008870571851730347, 0.0063422927632927895, 0.0176481194794178, 0.0029601796995848417, -0.02667151764035225, -0.0015041765291243792, -0.011621445417404175, 0.03449888154864311, -0.016199590638279915, 0.007800787687301636, 0.0030299481004476547, 0.03888433426618576, -0.018950466066598892, -0.011947032064199448, 0.0067310030572116375, -0.010910470969974995, -0.023269470781087875, 0.013621477410197258, -0.04175481200218201, 0.01085066981613636, 0.017369044944643974, -0.01061810739338398, 0.0004983467515558004, -0.011515132151544094, 0.0008870571618899703, -0.034844402223825455, -9.608748223399743e-05, 0.011574933305382729, -0.005581483244895935, 0.004893764853477478, -0.020638199523091316, 0.00880412571132183, 0.029050292447209358, -0.013634766452014446, -0.0029585184529423714, -0.016505243256688118, -0.02499707229435444, -0.0391235426068306, 0.02567482367157936, 0.019096646457910538, -0.007156258914619684, 0.012863989919424057, -0.004069831687957048, -0.009647992439568043, -0.014219493605196476, -0.027668211609125137, -0.00778749817982316, 0.02772136777639389, -0.004717682488262653, -0.02750873938202858, 0.014551724307239056, -0.009209447540342808, 0.004850574769079685, 0.0006636317120864987, -0.025648245587944984, 0.013501874171197414, -0.002950212685391307, -0.015960384160280228, -0.006375515833497047, -0.013010172173380852, -0.012199528515338898, 0.03282443806529045, 0.012319130823016167, -0.03436598926782608, -0.018472053110599518, 0.02692401222884655, 0.009302472695708275, 0.006392127368599176, -0.016824185848236084, 0.030698159709572792, 0.018697969615459442, 0.010551661252975464, 0.0227378997951746, 0.012804188765585423, -0.016252748668193817, 0.01323608960956335, -0.0066246893256902695, 0.05222673714160919, 0.0030066920444369316, -0.0015357384691014886, 0.0018139821477234364, -0.027615053579211235, 0.006478507537394762, -0.10248667001724243, -0.003033270360901952, 0.007069879211485386, 0.04247242957353592, 0.019933870062232018, 0.021050166338682175, -0.004853897262364626, 0.021927256137132645, 0.010126405395567417, 0.016372350975871086, -0.0065914662554860115, -0.016332482919096947, -0.02780110388994217, 0.005103070754557848, -0.024943916127085686, -0.011488553136587143, -0.026166526600718498, -0.009993513114750385, 0.002350535476580262, 0.037688303738832474, 0.022166462615132332, -0.019256118685007095, -0.0008870571618899703, -0.0001328924554400146, -0.009448654018342495, 0.022100016474723816, -0.03128288686275482, 0.017036814242601395, -0.00596687151119113, 0.02362827956676483, -0.023694725707173347, -0.022392379119992256, -2.4943292373791337e-05, -0.01868467964231968, 0.007382176350802183, 0.0070300111547112465, -0.017023524269461632, -0.011109810322523117, 0.028146622702479362, 0.0037841128651052713, -0.0017209573416039348, 0.006073185708373785, -0.016704581677913666, -0.02156844735145569, 0.012757676653563976, -0.009561612270772457, -0.009348984807729721, 0.006534986663609743, 0.012358998879790306, 0.0019020233303308487, -0.01492382399737835, -0.008983530104160309, -0.009515100158751011, -0.02772136777639389, 0.022259486839175224, -0.026246260851621628, 0.028199780732393265, -0.004701070953160524, -0.003192741423845291, 0.003554873401299119, -0.0004022073408123106, -0.007707762997597456, -0.0036877659149467945, 0.03332943096756935, 0.008325712755322456, 0.030538687482476234, -0.0278808381408453, -0.004332294221967459, 0.024186428636312485, -0.0391235426068306, -0.008943662978708744, 0.041170086711645126, -0.006445284467190504, 0.05602746084332466, -0.011149677447974682, 0.013900551944971085, 0.0017674698028713465, -0.024531949311494827, 0.0013654700014740229, -0.012020123191177845, 0.0031711463816463947, -0.010923760011792183, -0.015654731541872025, 0.0037675013300031424, 0.009980224072933197, 0.018751125782728195, 0.0033588570076972246, -0.0049901120364665985, 0.02758847549557686, -0.011814139783382416, 6.488889630418271e-05, 0.007740986067801714, 0.03649226948618889, -0.015256054699420929, 0.01007324829697609, -0.011050008237361908, 0.0040764762088656425, -0.02174120768904686, 0.005564871709793806, 0.010531727224588394, -0.0249572042375803, -0.011116454377770424, -0.04159533977508545, 0.013289246708154678, -0.0016088293632492423, -0.005212706979364157, 0.01580091379582882, 0.013136419467628002, 0.020266100764274597, 0.0005863879923708737, 0.016757739707827568, 0.010152984410524368, -0.009355629794299603, 0.006501763593405485, 0.0006972701521590352, -0.03314337879419327, 0.012398866936564445, -0.019428877159953117, 0.034552041441202164, -0.016943788155913353, 0.031708139926195145, -0.0005776669131591916, -0.012398866936564445, 0.013687923550605774, 0.00137958989944309, -0.005734309554100037, -0.020797669887542725, 0.0031877579167485237, -0.009355629794299603, 0.003222642233595252, -0.023721303790807724, -0.025741269811987877, -0.004206046462059021, -0.0006673693424090743, -0.014126468449831009, 0.021555157378315926, 0.004637946840375662, -0.006787482649087906, 0.001124602509662509, 0.01283741183578968, 0.005651251878589392, -0.012677940540015697, -0.006677846424281597, -0.005883813835680485, 0.00403328612446785, -0.003920327872037888, 0.011249346658587456, -0.030193166807293892, -0.01601354219019413, 0.01823284663259983, -0.006219367031008005, 0.012432090006768703, 0.014684617519378662, -0.00022301016724668443, -0.02207343839108944, -0.011674602515995502, 0.01247860211879015, -0.02018636465072632, 0.029130028560757637, -0.028252936899662018, -0.011295859701931477, 0.0020398993510752916, 0.02764163166284561, 0.024930626153945923, 0.024345899000763893, -0.015123162418603897, -0.019920580089092255, -0.029741333797574043, -0.0198142658919096, -0.01564144343137741, 0.006142953876405954, -0.0023987088352441788, -0.021900678053498268, 0.00032662475132383406, -0.004544922150671482, 0.016651425510644913, 0.023521965369582176, 0.006501763593405485, -0.012066635303199291, -0.0095283892005682, -0.010352322831749916, 0.008039994165301323, 0.03582780808210373, -0.008332357741892338, -0.008000126108527184, 0.017874035984277725, 0.02487746812403202, 0.01806008629500866, -0.014020155183970928, -0.03208024054765701, -0.019216250628232956, -0.004428641404956579, 0.007767564617097378, -0.01647866517305374, -0.03391415625810623, -0.00041279720608145, 0.001318957656621933, 0.020598331466317177, -0.0022674775682389736, 0.012751031666994095, -0.013103196397423744, 0.03537597507238388, 0.004186112433671951, 0.0018405605806037784, 0.009747662581503391, -0.012804188765585423, -0.01597367413341999, -0.0037342782597988844, 0.005020012613385916, -0.040957458317279816, -0.016252748668193817, 0.015096583403646946, -0.01024600863456726, 0.011275925673544407, 0.007282507140189409, 0.0008081523119471967, 0.00769447349011898, -0.004833963233977556, -0.003923649899661541, -0.009129712358117104, -0.008292489685118198, 0.03394073620438576, -0.020624909549951553, 0.019641505554318428, 0.03449888154864311, -0.010259297676384449, 0.04420003294944763, -0.002450204687193036, 0.025847584009170532, -0.002842237474396825, -0.01817968860268593, -0.02822635881602764, -0.00559145025908947, -0.0057608881033957005, -0.02558179944753647, -0.024252874776721, 0.02166147157549858, -0.0259671863168478, 0.033595215529203415, -0.007608093321323395, -0.008152952417731285, 0.046299733221530914, 0.004312360193580389, -0.013030106201767921, 0.009900488890707493, -0.010192851535975933, 0.003229286754503846, 0.03853881359100342, 0.012797543779015541, 0.0029419069178402424, -0.03590754419565201, 0.006096441764384508, 0.013182932510972023, -0.021847520023584366, -0.013674634508788586, -0.016571689397096634, 0.014976980164647102, -0.005750921089202166, 0.01448527816683054, -0.01944216713309288, -0.01488395594060421, 0.01024600863456726, 0.010352322831749916, 0.005382144823670387, -0.014166336506605148, -0.014126468449831009, -0.011721115559339523, 0.016531823202967644, 0.006534986663609743, -0.037821196019649506, -0.023973800241947174, 0.015854069963097572, -0.044837918132543564, -0.00261798151768744, -0.01451185718178749, 0.015734467655420303, 0.03736935928463936, -0.0023239569272845984, -0.0059602269902825356, 0.019641505554318428, 0.0031645018607378006, -0.025847584009170532, 0.014020155183970928, -0.006338970270007849, -0.02968817576766014, -0.023761171847581863, 0.020292678847908974, -0.017422201111912727, 0.013913840986788273, -0.04478475823998451], "46465398-05f7-49ec-bc8c-c6f1d9696bcc": [0.031707439571619034, -0.01789679378271103, -0.013372845016419888, -0.005359751172363758, -0.0049186330288648605, -0.00766815897077322, -0.04248000681400299, -0.023906612768769264, -0.02666608989238739, -0.027594758197665215, 0.01512405090034008, 0.019740866497159004, -0.00756202545017004, 0.004212180618196726, -0.006275154184550047, -0.013080976903438568, 0.018838729709386826, 0.012702875770628452, -0.008145760744810104, 0.005625085439532995, -0.02265954203903675, 0.006407821550965309, -0.005243667401373386, -0.031919706612825394, -0.02735595777630806, 0.01146243792027235, 0.007906959392130375, -0.026652822270989418, 0.017021190375089645, -0.014248447492718697, 0.01779066026210785, -0.00083829031791538, -0.020855270326137543, -0.010692968964576721, -0.007190557196736336, 0.007044623605906963, 0.0030264684464782476, -0.008032993413507938, 0.0008092693751677871, -0.003562111873179674, 0.04364747926592827, 0.013034543953835964, 0.0023996164090931416, 0.0032569775357842445, -0.019316330552101135, 0.004785966128110886, 0.032131973654031754, -0.029690898954868317, -0.011654805392026901, 0.003916996531188488, 0.03008889965713024, 0.0276743583381176, -0.03781012445688248, 0.008875429630279541, -0.02250034175813198, 0.020603202283382416, -0.002356499433517456, 0.013399378396570683, 0.004958433099091053, -0.006593555212020874, 0.023521877825260162, -0.0038838295731693506, -0.0027362590190023184, 0.00833149440586567, 0.009246897883713245, 0.010102600790560246, -0.001331646111793816, 0.0026052503380924463, -0.024463815614581108, 0.012676342390477657, 0.023057542741298676, 0.023495344445109367, -0.00801309384405613, -0.010593468323349953, 0.028735695406794548, 0.0011724455980584025, 0.001540596829727292, 0.03093796968460083, 0.007688059005886316, 0.0012205373495817184, -0.005293417721986771, -0.026268087327480316, 0.009266797453165054, -0.004785966128110886, 0.0014750923728570342, -0.02216867357492447, -0.015256717801094055, 0.02559148520231247, 0.0007740296423435211, -0.014752582646906376, 0.006119270343333483, 0.012709508650004864, -0.003149185562506318, 0.028337694704532623, 0.0051939175464212894, 0.00036193247069604695, -0.016649723052978516, -0.010520501993596554, -0.009213730692863464, -0.017246725037693977, -0.017830459401011467, 0.020828736945986748, -0.0017047723522409797, -0.01630478724837303, -0.02389334701001644, 0.00406293012201786, 0.006586921866983175, 0.0007491545984521508, 0.03247690945863724, 0.00024626331287436187, -0.0184407290071249, 0.042028941214084625, 0.017512058839201927, -0.039667464792728424, 0.012231907807290554, -0.03674878925085068, 0.026838555932044983, -0.011376204900443554, -0.010626635514199734, -0.023415744304656982, 0.018414195626974106, -0.0030513436067849398, 0.003499095095321536, 0.007867159321904182, 0.030115433037281036, 0.02559148520231247, 0.000129039486637339, -0.01875912956893444, -0.02618848718702793, -0.018201926723122597, 0.012563575059175491, 0.01842746138572693, 0.0027080674190074205, 0.01194667350500822, 0.0064973714761435986, 0.023044276982545853, -0.019303064793348312, 0.011362938210368156, -0.009061163291335106, -0.004344847984611988, 0.02778049185872078, 0.0016492180293425918, 0.0015198675682768226, 0.011309871450066566, 0.009114230051636696, 0.024357682093977928, 0.009631631895899773, -0.008026360534131527, -0.008510595187544823, -0.002956818090751767, -0.004719632212072611, -0.0016939931083470583, 0.02405254729092121, 0.018414195626974106, 0.013346311636269093, -0.0005070370971225202, 0.00914076343178749, 0.0006513125845231116, 0.0028457094449549913, -0.002953501418232918, 0.0107394028455019, 0.01875912956893444, -0.009585198946297169, -0.01789679378271103, -0.0027860093396157026, 0.026652822270989418, 0.04359441250562668, 0.01614558696746826, -0.020112333819270134, 0.005233717616647482, -0.014593382366001606, 0.008696328848600388, -0.009479065425693989, 0.014553582295775414, -0.001622684532776475, -0.02576395310461521, 0.007382924668490887, -0.016264988109469414, -0.016119053587317467, 0.012895243242383003, 0.004596915561705828, -0.009419364854693413, 0.02506081759929657, 0.022036006674170494, -0.032185040414333344, -0.0019833731930702925, 0.0022851908579468727, 0.006059570237994194, 0.02366781234741211, 0.0037179957143962383, 0.007661525625735521, 0.027488624677062035, 0.006600188557058573, 0.01667625643312931, -0.633405864238739, -0.020643001422286034, -0.008218727074563503, 0.002328307833522558, 0.0012279999209567904, -0.013810645788908005, 0.0044377148151397705, -0.01499138306826353, -0.0223942082375288, 0.017976393923163414, -0.005359751172363758, -0.006175654008984566, 0.01060673501342535, -0.01004290021955967, 0.004417814780026674, -0.01184053998440504, -0.0040098633617162704, -0.009439264424145222, 0.0005746144452132285, 0.013744312338531017, -0.005392917897552252, 0.025684352964162827, -0.026891622692346573, 0.0017213557148352265, 0.004003230016678572, 0.017445724457502365, 0.020828736945986748, -0.013452445156872272, 0.005568701773881912, 0.009087696671485901, 0.004165747202932835, -0.003741212422028184, -0.005877153016626835, -0.01784372702240944, 0.0403042696416378, -0.016105787828564644, 0.006477471441030502, 0.015004649758338928, 0.004832399543374777, 0.03589972108602524, -0.02820502780377865, -0.004281830973923206, 0.022964676842093468, 0.013107510283589363, -0.005837352946400642, -0.009246897883713245, 0.003535578493028879, 0.027024289593100548, -0.01028833445161581, -0.035554785281419754, 0.015575118362903595, -0.003217177465558052, 0.0014303172938525677, -0.0033614528365433216, 0.022155407816171646, -0.013193744234740734, 0.021452272310853004, -0.015906786546111107, -0.0024510249495506287, -0.03279531002044678, -0.006374654825776815, -0.002941893180832267, -0.00041230450733564794, 0.011502237990498543, -0.009505598805844784, 0.02746209129691124, -0.03653652220964432, -0.002968426560983062, 0.008702962659299374, 0.004779332783073187, -0.0006965023349039257, 0.02409234642982483, 0.006112636998295784, -0.0026815340388566256, -0.001669118064455688, 0.014779116027057171, 0.026838555932044983, -0.01271614246070385, 0.010812369175255299, 0.0032520024105906487, 0.0214788056910038, -0.0115951057523489, -0.022314608097076416, -0.024596482515335083, 0.03873879462480545, -0.0254322849214077, 0.007873793132603168, 0.01103790383785963, 0.01890506222844124, 0.04409854859113693, 0.0030098850838840008, 0.004988283384591341, -0.015893518924713135, -0.043196409940719604, -0.0060728369280695915, 0.010520501993596554, -0.01483218278735876, -0.007634992245584726, 0.003860612865537405, -0.04364747926592827, -0.003442711429670453, -0.020337868481874466, 0.03478531539440155, 0.0012296582572162151, 0.004235397558659315, 0.0020148816984146833, 0.010003100149333477, 0.010414368472993374, 0.04380667954683304, -0.016848722472786903, 0.0036085452884435654, -0.029080631211400032, 0.014805649407207966, 0.010765936225652695, 0.014699515886604786, -0.02377394586801529, 0.01885199546813965, 0.014911782927811146, -0.0011425954289734364, -0.0034294447395950556, 0.03234424069523811, 0.03168090432882309, -0.0077344924211502075, -0.009784199297428131, 0.015017916448414326, 0.02248707413673401, 0.0057279025204479694, -0.022354407235980034, -0.028284627944231033, 0.0012130748946219683, 0.0006438500713557005, -0.010487334802746773, 0.0056715188547968864, -0.007747759111225605, 0.015017916448414326, -0.0180559940636158, 0.02389334701001644, -0.021240003407001495, 0.018613195046782494, -0.0429576113820076, -0.014699515886604786, -0.015840452164411545, 0.02211560681462288, -0.011707872152328491, -0.005018133204430342, -0.024410748854279518, -0.015243451111018658, -0.005661569070070982, -0.01488524954766035, -0.005986603442579508, 0.014341314323246479, 0.01934286393225193, -0.000725108664482832, 0.03536904975771904, 0.01757839135825634, 0.0044078645296394825, 0.004716315772384405, -0.0007694692467339337, -0.012669708579778671, -0.011933406814932823, -0.01271614246070385, 0.029399031773209572, -0.007130857091397047, -0.004251980688422918, 0.0025969587732106447, -0.009976566769182682, -0.016105787828564644, 0.028788762167096138, -0.009956666268408298, -0.035607852041721344, -0.0033846695441752672, 0.0027511841617524624, 0.019369397312402725, 0.00746915815398097, 0.001484213280491531, 0.027807025238871574, -0.026586487889289856, 0.0031110437121242285, -0.008377928286790848, -0.007217090576887131, -0.002961793215945363, -0.003578695235773921, 0.0015323051484301686, -0.0002839905209839344, 0.03067263588309288, -0.004709682427346706, 0.019422464072704315, -0.015203651040792465, -0.003704729024320841, 0.001173274707980454, 0.023375945165753365, 0.01816212758421898, -0.004586965311318636, 0.009624999016523361, 0.0028490261174738407, 0.00027963740285485983, 0.024304615333676338, 0.008424361236393452, 0.012258441187441349, 0.05349138006567955, 0.008716229349374771, -0.014089247211813927, 0.015309784561395645, -0.005860569421201944, -0.0018407561583444476, 0.003542211838066578, 0.02281874231994152, 0.006779289338737726, 0.0271436907351017, -0.01373104564845562, -0.0061822873540222645, -0.02218194119632244, -0.020178668200969696, -0.014606649056077003, 0.012218641117215157, 0.029505165293812752, -0.006328220944851637, 0.016689522191882133, 0.011256804689764977, -0.007303324528038502, 0.012079340405762196, 0.012696241959929466, 0.018029460683465004, 0.0033332612365484238, -0.02061646804213524, 0.004951799754053354, -0.016119053587317467, 0.00499491672962904, -0.006298371125012636, -0.05290764197707176, 0.007349757943302393, 0.0024360998068004847, 0.00041914515895769, 0.006520588416606188, 0.0334586463868618, 0.013339677825570107, 0.03184010460972786, -0.013823912478983402, 0.013664712198078632, 0.0014095880324020982, -0.024171946570277214, 0.023362677544355392, -0.007276791147887707, -0.019316330552101135, 0.004019813612103462, 0.005558751989156008, 0.043780144304037094, 0.010281700640916824, -0.016968123614788055, 0.017326325178146362, 0.004550481680780649, 0.02218194119632244, -0.03680185601115227, -0.004474198445677757, 0.011853806674480438, -0.0054857851937413216, 0.013246810995042324, 0.007973292842507362, 0.02211560681462288, 0.0056449854746460915, 0.005183967296034098, -0.004096096847206354, 0.011734405532479286, 0.013717778958380222, -0.0004606036236509681, -0.011336404830217361, 0.01402291376143694, -0.025034284219145775, -0.02260647527873516, -0.005950119812041521, -0.02356167882680893, -0.04343521222472191, -0.00983063317835331, -0.004374697804450989, 0.03245037421584129, -0.003197277430444956, 0.013054443523287773, 0.018294794484972954, 0.011210370808839798, -0.0082319937646389, -0.0026583170983940363, -0.0098836999386549, 0.021677805110812187, 0.0027263090014457703, 0.00554548529908061, -0.0242515467107296, -0.006298371125012636, -0.005827402696013451, -0.010387835092842579, -0.0014170506037771702, -0.038128528743982315, 0.012205374427139759, -0.010600102134048939, 0.008258527144789696, -0.023283077403903008, -0.014115780591964722, 0.008298328146338463, 0.00010644462599884719, -0.0003246198466513306, -0.02131960541009903, 0.011064437218010426, -0.00766815897077322, -0.026215020567178726, 0.007004823535680771, 0.04157787188887596, -0.010334767401218414, 0.006517271976917982, -0.017405925318598747, 0.0044675651006400585, -0.026626288890838623, -0.00253228354267776, -0.0066366721875965595, 0.007077790331095457, -0.0077344924211502075, 0.0482112281024456, -0.0049451664090156555, 0.01828152686357498, 0.008941763080656528, 0.038181595504283905, 0.015694519504904747, 0.0037843293976038694, 0.011827272363007069, 0.0195020642131567, 0.020390935242176056, 0.04457614943385124, 0.006457571405917406, -0.0310971699655056, 0.011959940195083618, -0.007157390471547842, -0.0021773988846689463, -0.019104063510894775, -0.016848722472786903, 0.02613542042672634, -0.00215749884955585, -0.001190687296912074, 0.0026981174014508724, 0.02394641377031803, 0.0019286480965092778, -0.0016359513392671943, 0.01050060149282217, -0.013107510283589363, -0.007402824703603983, -0.008822362869977951, -0.003621811978518963, 0.021863538771867752, 0.0002487508172634989, 0.041869740933179855, -0.0032636108808219433, -0.016119053587317467, -0.003542211838066578, 0.025405751541256905, -0.004169064108282328, -0.01221200730651617, -0.042559608817100525, -0.011959940195083618, -0.0035820119082927704, 0.003688145661726594, 0.02378721348941326, 0.004902049899101257, 0.02778049185872078, 0.003986646421253681, 0.042294275015592575, 0.00670632254332304, -0.03589972108602524, 0.0024161997716873884, 0.003250344190746546, 0.012464075349271297, -0.029054097831249237, -0.006066203583031893, 0.0014493882190436125, -0.012643175199627876, 0.008543761447072029, -0.012848809361457825, -0.014195380732417107, 0.006978290155529976, -0.010155667550861835, -0.03337904438376427, 0.0006355583900585771, -0.01763145811855793, 0.022208474576473236, 0.0001652120117796585, -0.012656441889703274, 0.00878919567912817, -0.036403853446245193, -0.011011370457708836, -0.020709335803985596, 0.012437541969120502, -0.00945253111422062, 0.013452445156872272, 0.005558751989156008, -0.0072568911127746105, 0.0013722754083573818, -0.02682529017329216, -0.013240177184343338, 0.016915056854486465, -0.0231902115046978, -0.045133352279663086, -0.0003169500268995762, 0.016225187107920647, 0.0413656048476696, 0.005711318925023079, -0.013167210854589939, -0.02084200270473957, 0.01084553636610508, 0.00033436258672736585, -0.039242930710315704, -0.02666608989238739, -0.018361128866672516, 0.008676429279148579, 0.0044111814349889755, 0.007581925485283136, -0.02163800597190857, -0.0321585088968277, 0.0011948331957682967, -0.0006989898392930627, 0.028788762167096138, -0.013578478246927261, -0.009014730341732502, -0.0044078645296394825, 0.02405254729092121, -0.00595675315707922, 0.024331148713827133, 0.01699465699493885, -0.028841828927397728, 0.00746915815398097, -0.020099066197872162, -0.006033036857843399, -0.01154203899204731, -0.022792208939790726, -0.0060628866776824, 0.007243623957037926, 0.0012056123232468963, -0.007084423676133156, -0.03335251286625862, 0.03255650773644447, 0.00042163266334682703, 0.034493450075387955, 0.029956232756376266, -0.0066930558532476425, 0.007820726372301579, -0.004955116659402847, 0.0031724022701382637, 0.013333044946193695, -0.04622122272849083, -0.0021077487617731094, -0.03637732192873955, 0.007588558830320835, 0.009001463651657104, -0.02131960541009903, 0.0015555218560621142, 0.015986386686563492, -0.0054824682883918285, 0.006139170378446579, -0.01362491212785244, 0.0129085099324584, 0.013664712198078632, 0.0026666088961064816, -0.016649723052978516, -0.03284837678074837, -0.007263524457812309, -0.029850099235773087, 0.006709638983011246, -0.03260957449674606, 0.011449171230196953, 0.005595235154032707, 0.013319778256118298, -0.011522138491272926, -0.014420914463698864, -0.007004823535680771, -0.0361119881272316, 0.0027594759594649076, -0.01576085202395916, 0.021545138210058212, 0.024914883077144623, 0.001496650860644877, 0.014314780943095684, -0.028178494423627853, -0.01651705428957939, 0.011581839062273502, 0.002857317915186286, 0.010560302063822746, 0.00811922736465931, 0.036350786685943604, 0.03168090432882309, 0.031017569825053215, -0.013319778256118298, 0.012590108439326286, 0.022778943181037903, -0.011979839764535427, 0.011555305682122707, 0.000663335551507771, 0.011389471590518951, -0.009054530411958694, 0.0029385765083134174, 0.014580115675926208, 0.004606865346431732, 0.010215367190539837, -0.007475791499018669, 0.026732422411441803, 0.038606129586696625, -0.008848896250128746, 0.00643767137080431, -0.01301464345306158, -0.008185560815036297, -0.023919880390167236, 0.0032901442609727383, 0.0016757514094933867, 0.0297704990953207, 0.012921776622533798, -0.018679529428482056, 0.006106003653258085, -0.005664885509759188, 0.0028274678625166416, 0.03348517790436745, 0.012404374778270721, -0.0018109059892594814, 0.011495605111122131, 0.00504798348993063, 0.03674878925085068, -0.03658958896994591, -0.00849069468677044, -0.029903165996074677, 0.006623405497521162, 0.012477342039346695, -0.013074344024062157, 0.021173670887947083, 0.005014816764742136, -0.009784199297428131, -0.006301687564700842, -4.19767020503059e-05, -0.014606649056077003, -0.022964676842093468, 0.007780925836414099, -0.018772395327687263, -0.017339590936899185, -0.02265954203903675, 0.0005203038454055786, 0.003989963326603174, -0.013041176833212376, 0.027223290875554085, 0.014925049617886543, -0.008862162940204144, -0.0129085099324584, -0.029797032475471497, 0.0013772504171356559, -0.015840452164411545, 0.05274844169616699, 0.013505511917173862, 0.031017569825053215, 0.02569761872291565, 0.016477255150675774, 0.00063307088566944, -0.0014867008430883288, 0.01418211404234171, 0.0019651316106319427, 0.0440189465880394, 0.002883851295337081, 0.0060728369280695915, -0.0155485849827528, -0.022938143461942673, 0.006965023465454578, -0.021120604127645493, -0.015853719785809517, 0.014314780943095684, 0.007727859076112509, 0.0038407128304243088, -0.013180477544665337, 0.010401101782917976, -0.023972947150468826, 0.012278340756893158, -0.015296517871320248, 0.006013136822730303, -0.04133906960487366, -0.0016931639984250069, -0.030115433037281036, 0.007999827153980732, 0.0039567966014146805, -0.011774205602705479, -0.006523905321955681, 0.004019813612103462, -0.007873793132603168, -0.024623015895485878, -0.025087350979447365, 0.019196931272745132, -0.016437454149127007, 0.03247690945863724, -0.018095793202519417, -0.00695839012041688, 0.022102341055870056, -0.015681251883506775, -0.01130323763936758, 0.015216917730867863, -0.0032619526609778404, 0.02825809456408024, -0.012948310002684593, -0.017233457416296005, 0.0035820119082927704, 0.03316677734255791, -0.021704338490962982, -0.001457679900340736, -0.02303100936114788, -0.005429401528090239, -0.02831116132438183, 0.003678195644170046, 0.025724152103066444, 0.006819089408963919, -0.02368107996881008, 0.01109097059816122, 0.0029336013831198215, 0.0014701173640787601, -0.010155667550861835, -0.022102341055870056, 0.009180564433336258, -0.0155485849827528, -0.005406184587627649, -0.011561938561499119, 0.04380667954683304, 0.017127323895692825, -0.00023734975547995418, -0.01533631794154644, 0.00828506052494049, 0.04139213636517525, -0.008006460033357143, 0.031017569825053215, 0.0012628250988200307, 0.005180650856345892, 0.008643262088298798, 0.0067726559937000275, 0.00924026407301426, -0.0008639945299364626, 0.03226464241743088, -0.04263921082019806, -0.016092520207166672, -0.02100120298564434, -0.004397914744913578, 0.007183923851698637, -0.026573222130537033, 0.0004796745197381824, 0.006845622789114714, 0.021783938631415367, 0.007091057021170855, -0.02211560681462288, -0.009943399578332901, 0.014818916097283363, 0.004633398726582527, 0.022460540756583214, 0.006756072398275137, 0.01418211404234171, -0.013127410784363747, 0.004699732176959515, -0.014420914463698864, -0.016158854588866234, -0.02778049185872078, -0.0009253530879504979, 0.0009568615350872278, -0.0015090883243829012, 0.00244439160451293, 0.005197233986109495, -0.053146444261074066, 0.00301320175640285, -0.021120604127645493, 0.017140589654445648, -0.01282227598130703, 0.001175762270577252, -0.022314608097076416, 0.022898342460393906, 0.025259817019104958, 0.014394381083548069, -0.009896966628730297, -0.01570778526365757, 0.017604924738407135, 0.01544245146214962, -0.03804892674088478, 0.0019468897953629494, -0.02762129157781601, 0.047309089452028275, 0.01312077697366476, -0.0004647494642995298, 0.00025621335953474045, 0.019913332536816597, -0.025790486484766006, -0.02206254005432129, -0.002689825603738427, 0.03237077593803406, 0.02345554530620575, 0.011104237288236618, -0.008145760744810104, 0.01517711766064167, -0.01391678024083376, 0.010474068112671375, -0.008988196961581707, -0.00138222542591393, 0.012245174497365952, 0.04969709739089012, -0.019316330552101135, -0.017538592219352722, -0.01660992205142975, -0.0279396940022707, 0.011886972934007645, -0.03237077593803406, -0.004938533063977957, 0.0033995946869254112, 0.0005924415891058743, -0.0031193355098366737, -0.03157477080821991, -0.005860569421201944, 0.013260077685117722, 0.02040420100092888, 0.005187284201383591, 0.005489101633429527, 0.0014145630411803722, -0.011528771370649338, 0.010069433599710464, -0.022739142179489136, -0.0008523861761204898, -0.03003583289682865, -0.013770845718681812, 0.008145760744810104, -0.01402291376143694, -0.021412471309304237, 0.01816212758421898, -0.021133869886398315, 0.035820119082927704, 0.003087827004492283, 0.00937956478446722, 0.019568398594856262, 0.0047428491525352, -0.013180477544665337, -0.020125601440668106, -0.003787646070122719, -0.01538938470184803, 0.004251980688422918, 0.010891969315707684, -0.00929333083331585, -0.01821519434452057, -0.015933319926261902, 0.02495468407869339, -0.012570208869874477, 0.0037014123518019915, -0.039136797189712524, -0.02045726776123047, -0.03295451030135155, 0.01923673041164875, -0.004311681259423494, -0.012457441538572311, 0.015774119645357132, 0.017060989513993263, 0.0005219621816650033, 0.011568572372198105, -0.042824942618608475, -0.01402291376143694, -0.011780839413404465, 0.012331407517194748, 0.0107394028455019, 0.004338214639574289, 0.0025157001800835133, 0.020921602845191956, 0.008729496039450169, -0.02329634502530098, -0.008318227715790272, 0.2061116248369217, -0.012862076051533222, -0.0002935259835794568, 0.024225013330578804, -0.0011666413629427552, 0.019276531413197517, 0.019793933257460594, -0.006600188557058573, -0.02506081759929657, -0.021730871871113777, -0.022208474576473236, 0.009518865495920181, -0.012623275630176067, 0.007210457231849432, -0.0025273084174841642, 0.0011940039694309235, -0.007004823535680771, -0.041975874453783035, -0.0361119881272316, 0.004371381364762783, 0.006487421691417694, 0.011203736998140812, -0.018560128286480904, -0.017432458698749542, 0.019369397312402725, 0.015309784561395645, -0.005907002836465836, 0.002731284126639366, 0.036032386124134064, -0.019210197031497955, -0.01960819959640503, -0.0072502573020756245, -0.007694692350924015, 0.022473808377981186, -0.038340795785188675, 0.0037213123869150877, 0.024715881794691086, -0.0007806630455888808, 0.02719675749540329, -0.009545398876070976, -0.011024637147784233, -0.014328047633171082, -0.012483974918723106, -0.024450547993183136, 0.010513868182897568, 0.02831116132438183, -0.01879892870783806, -0.021783938631415367, -0.013704512268304825, 0.02746209129691124, -0.01618538796901703, -0.022526875138282776, 0.025206750258803368, 0.013797379098832607, -0.0027959593571722507, 0.0032636108808219433, -0.00806616060435772, 0.002752842614427209, 0.011243537068367004, 0.034599583595991135, -0.02772742509841919, 0.02356167882680893, -0.009651532396674156, 0.021837005391716957, -0.03271570801734924, 0.018414195626974106, -0.03308717533946037, -0.001107770367525518, 2.052194395218976e-05, -0.03390971198678017, 0.0018623145297169685, -0.010281700640916824, 0.010878702625632286, 0.02228807471692562, -0.026002753525972366, -0.017803926020860672, 0.025419017300009727, 0.009598465636372566, 0.005999870132654905, 0.034175045788288116, -0.011117503978312016, -0.01768452487885952, 0.0005476663936860859, -0.021465538069605827, -0.00686552282422781, -0.015999654307961464, 0.012835542671382427, -0.00014303172065410763, 0.0017064306885004044, 6.928746734047309e-05, -0.0044377148151397705, -0.00752222491428256, -0.002376399701461196, 0.005177333950996399, 0.015429184772074223, 0.017432458698749542, -0.013505511917173862, -0.0050811502151191235, -0.0006678960053250194, -0.005585285369306803, -0.04025120288133621, 0.030858369544148445, 0.011833906173706055, 0.022367674857378006, 0.019754132255911827, -0.002470924984663725, 0.008557028137147427, 0.01565471850335598, 0.014686249196529388, -0.03905719518661499, 0.00831159483641386, -0.003525628475472331, 0.01682218909263611, -0.01560165174305439, -0.0007897838950157166, -0.011236904188990593, -0.02998276613652706, -0.005641669034957886, 0.0003009884967468679, 0.00021195643057581037, -0.012291607446968555, -0.014487247914075851, -0.0111971041187644, 0.006096053868532181, -0.010991469956934452, -0.013419277966022491, -0.06569675356149673, 0.00353226182051003, -0.01913059689104557, 0.015468984842300415, 0.020045999437570572, -0.027329424396157265, -0.0012669708812609315, -0.013153944164514542, 0.0025571584701538086, -0.013153944164514542, -0.006563705392181873, 0.002266949275508523, -0.02788662724196911, 0.007422724738717079, -0.009107597172260284, 0.013717778958380222, -0.02041746862232685, -0.010712869465351105, -0.009744399227201939, -0.017034456133842468, -0.007688059005886316, 0.011575205251574516, 0.012702875770628452, -0.030593035742640495, -0.008404461666941643, -0.017936592921614647, -0.0015339634846895933, -0.025724152103066444, -0.013200377114117146, -0.03072570264339447, -0.008616728708148003, -0.016092520207166672, 0.014168847352266312, -0.0024526831693947315, -0.03199930861592293, 0.0019054313888773322, 0.019541865214705467, 0.007621725555509329, -0.014460714533925056, -0.02836422808468342, -0.1659930944442749, -0.011926773004233837, -0.003369744634255767, -0.025405751541256905, 0.05487111583352089, 0.0010099284118041396, 0.014659715816378593, 0.010248534381389618, -0.019316330552101135, -0.010938403196632862, 0.00552890170365572, 0.004497414920479059, -0.02468934841454029, -0.015070983208715916, -0.00670632254332304, -0.015694519504904747, -0.013611645437777042, 0.007164023816585541, 0.046725355088710785, 0.01816212758421898, 0.052828043699264526, -0.0337505117058754, 0.0011409370927140117, 0.02778049185872078, -0.0039800130762159824, -0.02250034175813198, 0.014686249196529388, -0.015243451111018658, 0.007164023816585541, -0.02019193395972252, 0.005960070062428713, 0.012145673856139183, 0.0022652908228337765, -0.018175393342971802, 0.02559148520231247, 0.016636455431580544, 0.0022387574426829815, -0.03040730208158493, -0.009386197663843632, 0.0033879862166941166, 0.010493968613445759, 0.038075461983680725, 0.03284837678074837, -0.0039534796960651875, -0.024171946570277214, 0.009810732677578926, 0.02013886719942093, -0.018029460683465004, 0.01391678024083376, 0.004696415737271309, 0.04749482497572899, -0.017604924738407135, -0.017034456133842468, -0.007091057021170855, 0.011223637498915195, -0.04248000681400299, -0.004659932106733322, -0.0016583388205617666, -0.017856992781162262, 0.017233457416296005, 0.011170570738613605, -0.023216744884848595, -0.0007296691183000803, 0.010109233669936657, 0.008543761447072029, -0.020006200298666954, -0.02555168606340885, 0.011329771019518375, -0.024118879809975624, 0.0022702659480273724, -0.014805649407207966, -0.009823999367654324, -0.002606908790767193, -0.02265954203903675, 0.0036483455915004015, 0.00812586024403572, -0.01538938470184803, 0.0007110128062777221, -0.0009634948801249266, -0.0071971905417740345, 0.023256544023752213, 0.017565125599503517, 0.008510595187544823, -0.028496894985437393, -0.0003314604691695422, -0.007548758760094643, 0.0029816932510584593, 0.025074083358049393, -0.02613542042672634, -0.021240003407001495, 0.01768452487885952, -0.038075461983680725, -0.006450938060879707, 0.010056166909635067, 0.010964936576783657, 0.027807025238871574, 0.010891969315707684, -0.034599583595991135, 0.003426128067076206, -0.029425565153360367, 0.000517401727847755, 0.006162387318909168, -0.01378411240875721, 0.009386197663843632, 0.04746829345822334, 0.021943140774965286, -0.039932798594236374, 0.021186936646699905, 0.03446691483259201, 0.01007606741040945, 0.011601738631725311, 0.011124136857688427, 0.0009593490394763649, 0.03515678271651268, -0.017644725739955902, 0.01629152148962021, 0.0081722941249609, -0.01662318967282772, 0.004991599824279547, 0.017114056274294853, 0.04937869682908058, 0.01089860312640667, 0.002953501418232918, 0.007475791499018669, -0.001433633966371417, -0.0018888480262830853, -0.13001376390457153, -0.019249998033046722, -0.02394641377031803, 0.013180477544665337, -0.0028490261174738407, 0.012377841398119926, -0.017432458698749542, 0.003635078901425004, -0.028709162026643753, 0.0405961349606514, -0.017830459401011467, -0.015986386686563492, -0.010142400860786438, 0.0032553193159401417, -0.022407473996281624, -0.0025521835777908564, 0.0017677892465144396, -0.02661302126944065, -0.024662815034389496, 0.032238107174634933, 0.005449301563203335, 0.003296777606010437, 0.009280064143240452, -0.0016160511877387762, -0.03284837678074837, 0.02047053538262844, -0.012145673856139183, -0.005495734978467226, 0.00017215630214195698, 0.013810645788908005, 0.0036317622289061546, -0.008623362518846989, -0.00463671563193202, -0.02555168606340885, 0.013651445508003235, 0.0027876675594598055, -0.01939593069255352, 0.018082527443766594, 0.01201963983476162, 0.0002628467045724392, -0.008835629560053349, -0.026639556512236595, 0.013717778958380222, 0.008537128567695618, 0.024861816316843033, -0.01396984700113535, -0.039189863950014114, 0.010938403196632862, 0.001314233522862196, -0.026679355651140213, -0.04632735624909401, -0.03337904438376427, -0.030168499797582626, -0.006268520839512348, 0.02415868081152439, -0.03383011370897293, -0.0036019119434058666, 0.018878528848290443, 0.002388007938861847, 0.013352944515645504, -0.012669708579778671, -0.01396984700113535, -0.024065813049674034, 0.0305665023624897, 0.0326891764998436, 0.02831116132438183, -0.007263524457812309, -0.023097343742847443, 0.00511763384565711, -0.02772742509841919, 0.012682975269854069, 0.03648345544934273, -0.019223464652895927, 0.0013830546522513032, -0.021094070747494698, 0.007820726372301579, -0.013823912478983402, 0.0023647912312299013, 0.012570208869874477, 0.0077610258013010025, -0.01833459362387657, -0.008882063440978527, 0.0005008183652535081, -0.019475530833005905, 0.0006807480822317302, 0.013452445156872272, 0.008397827856242657, 0.00590368639677763, 0.011621639132499695, -0.009061163291335106, 0.010759302414953709, 0.023203477263450623, 0.030911436304450035, 0.001387200434692204, -0.0035985952708870173, 0.010381201282143593, 0.0022072489373385906, -0.014659715816378593, 0.017671259120106697, 0.017180390655994415, -0.023588212206959724, -0.009896966628730297, -0.030221568420529366, 0.021306337788701057, -0.029319431632757187, -0.04380667954683304, 0.0022337825503200293, 0.002689825603738427, 0.02040420100092888, -0.028549961745738983, 0.01570778526365757, 0.021598204970359802, -0.012583475559949875, 0.0067693390883505344, -0.014288247562944889, -0.010613368824124336, -0.011488971300423145, -0.00868306215852499, 0.005419451277703047, -0.009372930973768234, 0.0009029654902406037, 0.015455718152225018, 0.006819089408963919, -0.0031740604899823666, 0.0259629525244236, 0.014062713831663132, 0.0026400755159556866, -0.012795742601156235, -0.0045173149555921555, 0.01987353339791298, -0.010281700640916824, -0.015946585685014725, -0.014036180451512337, 0.011396104469895363, 0.015575118362903595, 0.0129814762622118, -0.009804099798202515, 0.015721052885055542, 0.02500775083899498, 0.007860526442527771, 0.02398621290922165, 0.034917984157800674, 0.0016591680468991399, -0.03733252361416817, 0.007396191358566284, -0.006547121796756983, -0.013107510283589363, -0.01890506222844124, -0.011668072082102299, 0.001724672387354076, -0.006965023465454578, 0.0279396940022707, 0.005611818749457598, -0.0003088656230829656, -0.00836466159671545, -0.0015845427988097072, 0.019860265776515007, -0.017910059541463852, -0.011011370457708836, -0.035183317959308624, 0.011323138140141964, 0.0004577015351969749, 0.02228807471692562, 0.012815643101930618, 0.025259817019104958, 0.005051300395280123, 0.003950163256376982, -0.015575118362903595, -0.029080631211400032, 0.0049750166945159435, 0.0022802159655839205, -0.0014477298827841878, -0.009578565135598183, 0.005174017045646906, 0.020961403846740723, 0.017193658277392387, 0.02458321489393711, -0.00806616060435772, -0.029743965715169907, 0.0201521348208189, -0.03072570264339447, 0.017883526161313057, 0.010228633880615234, 0.01023526769131422, -0.01773759163916111, 0.002057998441159725, 0.031919706612825394, 0.004752799402922392, 0.028417294844985008, -0.009664799086749554, 0.005787602625787258, 0.005087783560156822, 0.005777652841061354, 0.0013780796434730291, -0.024344414472579956, 0.0023067493457347155, 0.006159070413559675, -0.002774400869384408, -0.01014903374016285, 0.004056296776980162, 0.0044907815754413605, 0.011389471590518951, 0.02419847995042801, -0.014328047633171082, 0.0007321566226892173, -0.013512144796550274, -0.026639556512236595, 0.01362491212785244, -0.01007606741040945, -0.019939865916967392, -0.01055366825312376, 0.035183317959308624, 0.003741212422028184, 0.0034957784228026867, 0.030593035742640495, -0.0022487074602395296, -0.024702616035938263, 0.013001376762986183, -0.007628358900547028, 0.0045206318609416485, -0.006752755958586931, 0.000974274065811187, -0.012178841046988964, 0.02035113424062729, 0.03457304835319519, -0.005943486467003822, 0.018095793202519417, 0.03884492814540863, 0.02287180908024311, -0.024291347712278366, -0.005518951918929815, -0.015853719785809517, -0.01623845472931862, 0.03287490829825401, -0.026201754808425903, -0.009711232036352158, -0.011714505963027477, -0.035767052322626114, -0.0032105441205203533, 0.017060989513993263, 0.004003230016678572, 0.05150137096643448, -0.00706452364102006, -0.018666261807084084, 0.020722603425383568, 0.0167293231934309, -0.0036848289892077446, 0.027594758197665215, -0.007236990612000227, -0.006603505462408066, -0.023070810362696648, 0.011442538350820541, 0.0035455285105854273, -0.0019369397778064013, -0.014473981224000454, -0.009479065425693989, 0.019263263791799545, -0.004049663431942463, 0.038022395223379135, -0.01875912956893444, -0.010580201633274555, -0.002215540735051036, 0.014513782225549221, 0.014434181153774261, -0.008377928286790848, -0.015999654307961464, 0.012344674207270145, 0.034546516835689545, 0.008271793834865093, -0.01282227598130703, -0.04075533524155617, -0.0019402564503252506, -0.005843986291438341, -0.022526875138282776, -0.017989659681916237, 0.0015140633331611753, -0.01389024592936039, -0.00975103210657835, 0.008596829138696194, 0.025578219443559647, 0.017936592921614647, 0.008251894265413284, -0.0013333044480532408, -0.02056340128183365, -0.038234662264585495, -0.035236384719610214, 0.0013109168503433466, 0.005246984306722879, -0.011774205602705479, -0.04515988379716873], "66035af3-6ef1-495b-a24c-4e6642d277f4": [0.03322168439626694, -0.006696287542581558, -0.02874174900352955, -0.013858110643923283, 0.0020915355999022722, -0.019174659624695778, -0.013810882344841957, -0.02032162994146347, -0.02297990582883358, -0.016233015805482864, 0.016462409868836403, 0.01112562045454979, -0.00887890625745058, 0.021104270592331886, -0.004749809857457876, -0.011941993609070778, 0.013008002191781998, 0.0160845834761858, 0.007981570437550545, 0.0013662450946867466, -0.017717331647872925, 0.002983811777085066, -0.0004250540223438293, -0.03211519122123718, -0.022210760042071342, 0.010309246368706226, 0.006048586219549179, -0.004716075491160154, 0.04010351002216339, -0.026974063366651535, 0.023141831159591675, 0.006024972070008516, -0.02225124090909958, -0.0038558472879230976, -0.015436883084475994, 0.012488491833209991, -0.01764986291527748, -0.005876540672034025, -0.005518955644220114, -0.0070167649537324905, 0.02531432919204235, -0.0065174950286746025, -0.027001051232218742, -0.005131009500473738, -0.03384239599108696, 0.01213765423744917, 0.0028758614789694548, -0.03195326775312424, -0.014074010774493217, 0.012414276599884033, 0.03033401444554329, 0.006929055321961641, -0.025395290926098824, 0.010788275860249996, -0.020402593538165092, 0.010066358372569084, 0.008116507902741432, 0.004368610680103302, 0.014303404837846756, -0.007428325247019529, 0.012832583859562874, 0.0015593747375532985, -0.010828757658600807, -0.002855620812624693, -0.009351188316941261, 0.012562707997858524, 0.015990126878023148, -0.002239967230707407, -0.028606809675693512, 0.011078392155468464, 0.02659623697400093, 0.02787814661860466, -0.020793912932276726, 0.0068784537725150585, 0.013507272116839886, -0.017299024388194084, -0.02137414552271366, 0.02925451286137104, -0.004243793431669474, 0.005205225199460983, 0.0009943228214979172, -0.011726093478500843, -0.008946374990046024, 0.014465331099927425, -0.001180705614387989, -0.04382779449224472, 0.0018537078285589814, 0.05014288052916527, -0.016853729262948036, -0.03157544136047363, 0.024653133004903793, 0.0056808809749782085, 0.0012001029681414366, -0.005232212599366903, -0.01659734733402729, -0.0025840585585683584, -0.0312785804271698, -0.00047902914229780436, -0.011564168147742748, -0.021859921514987946, -0.028687773272395134, 0.0013763654278591275, 0.005326669197529554, -0.012259097769856453, -0.022642560303211212, -0.005154623184353113, -0.0007446879171766341, 0.005795578006654978, 0.0014396174810826778, -0.01659734733402729, -0.003953677136451006, 0.034409135580062866, -0.004557523876428604, -0.014991587959229946, 0.02605648711323738, -0.04258636385202408, 0.01839202083647251, 0.00195322441868484, -0.02159004658460617, -0.018459489569067955, 0.027851158753037453, -0.01704264245927334, 0.022710029035806656, 0.0010929960990324616, 0.020456567406654358, 0.016408434137701988, -0.03637922555208206, -0.006814358290284872, -0.02903861179947853, -0.02489602193236351, 0.04204661399126053, 0.014289911836385727, -0.009324201382696629, 0.0028623677790164948, 0.006760383024811745, 0.01947152242064476, 0.013662450946867466, 0.01872936449944973, -0.007846632041037083, -0.005721362307667732, 0.024828553199768066, -0.006193644367158413, -0.005093901418149471, 0.023708568885922432, 0.007030258420854807, 0.028067059814929962, 0.005066914018243551, -0.0022770750802010298, -0.02341170608997345, -0.025611191987991333, -0.008804690092802048, -0.008264939300715923, 0.025786610320210457, 0.0023597246035933495, 0.018648402765393257, 0.001488532405346632, -0.019107190892100334, 0.00659845769405365, -0.010666832327842712, -0.009985395707190037, -0.005923768971115351, 0.024680120870471, -0.008588789962232113, -0.009391670115292072, 0.018149131909012794, 0.023789532482624054, 0.03284385800361633, -0.010262019000947475, -0.020497050136327744, 0.004668847192078829, 0.00409873528406024, 0.010275512002408504, 0.0037310298066586256, 0.022183772176504135, 0.01266391109675169, -0.02129318192601204, 0.0016470843693241477, -0.029983175918459892, -0.004247166682034731, 0.007212424650788307, 0.027405863627791405, -0.0018486477201804519, 0.02233220264315605, 0.020038262009620667, -0.02830994687974453, -0.0027544174809008837, 0.013581488281488419, 0.0160845834761858, 0.014546293765306473, 0.0017710584215819836, 0.002624539891257882, 0.009958408772945404, 0.009985395707190037, 0.008258192799985409, -0.6144527196884155, -0.00985045824199915, -0.018904784694314003, -0.021023306995630264, -0.02033512480556965, -0.00798831693828106, 0.009067819453775883, -0.016934692859649658, -0.024855541065335274, 0.026137448847293854, 0.006244245916604996, -0.003386938478797674, 0.005316548980772495, -0.01596314087510109, 0.004061627201735973, -0.01743396185338497, -0.02013271674513817, -0.012657164596021175, 0.004038013052195311, 0.004834146238863468, -0.017595887184143066, 0.037080902606248856, -0.01924212835729122, 0.008737221360206604, -0.012292832136154175, 0.018972253426909447, 0.027716221287846565, -0.017299024388194084, 0.009135288186371326, 0.013399322517216206, 0.021549563854932785, 0.011726093478500843, 0.00542787229642272, 0.010518399998545647, 0.04512319713830948, -0.019431041553616524, 0.004871253855526447, 0.01831105723977089, 0.00603846600279212, 0.029821250587701797, -0.04533909633755684, -0.009432150982320309, 0.03370745852589607, -0.009209503419697285, -0.007455312646925449, -0.0015121465548872948, 0.011382002383470535, 0.03670307621359825, -0.012238857336342335, -0.019957298412919044, 0.020362112671136856, -0.01260993629693985, -0.005211972165852785, 0.002253460930660367, 0.04371984302997589, -0.005707868374884129, 0.028471872210502625, -0.010201296769082546, -0.00867650005966425, -0.026420818641781807, -0.012198375537991524, -0.005886660888791084, 0.008528067730367184, 0.003666934324428439, 0.0033110359217971563, 0.016732284799218178, -0.026339855045080185, 0.004648606758564711, -0.005994610954076052, -0.015828201547265053, 0.019741397351026535, 0.03799847885966301, -0.004668847192078829, -0.0022028593812137842, 0.01393907330930233, 0.003828859655186534, 0.01806817017495632, -0.004004278685897589, -0.004270780831575394, 0.01658385433256626, -0.007941088639199734, -0.00941191054880619, -0.027797183021903038, -0.011820550076663494, 0.025273846462368965, -0.018783340230584145, 0.003424046328291297, 0.021549563854932785, 0.012252351269125938, 0.031224602833390236, 0.012947280891239643, 0.014195455238223076, 0.0024761082604527473, -0.03629826381802559, 0.010390209965407848, 0.020915357396006584, -0.025476254522800446, 0.006450026296079159, -0.002344544045627117, -0.05759144574403763, -0.016732284799218178, -0.029551375657320023, 0.031656403094530106, -0.006618698593229055, 0.01840551383793354, 0.003147423965856433, 0.004719449207186699, -0.0007189653697423637, 0.044745370745658875, -0.03162941709160805, -0.00046722209663130343, -0.031440503895282745, 0.002022380009293556, 0.004409092012792826, 0.01659734733402729, -0.02617792971432209, 0.025084935128688812, -0.014370874501764774, -0.002536830259487033, 0.0007130618905648589, 0.02957836352288723, 0.022844966500997543, -0.017730824649333954, -0.007887113839387894, 0.030064139515161514, 0.011726093478500843, 0.01863490790128708, -0.008501080796122551, -0.017487937584519386, -0.011834044009447098, -0.008210964500904083, -0.010848998092114925, 0.003196338890120387, -0.015032069757580757, 0.02223774790763855, -0.0114832054823637, -0.0023108096793293953, -0.007502540946006775, 0.04031940922141075, -0.023573631420731544, -0.005701121408492327, -0.009634558111429214, 0.03243904188275337, -0.024963490664958954, -0.014127986505627632, -0.025503242388367653, -0.028148021548986435, 0.010606110095977783, 0.005134382750838995, 0.01778480038046837, -0.008116507902741432, 0.012427770532667637, -0.0030479072593152523, 0.008163736201822758, 0.020186692476272583, 0.0009066132479347289, 0.0002095752424793318, -0.01956597901880741, -0.00609244080260396, -0.011037911288440228, -0.007138208951801062, 0.03789053112268448, 0.004689088091254234, -0.001631060498766601, -0.012596442364156246, -0.006588337477296591, -0.0233172494918108, 0.01766335591673851, -0.0053469096310436726, -0.04150686413049698, -0.01287306472659111, -0.005060167051851749, 0.00390644883736968, 0.011294292286038399, -0.006578217260539532, 0.024923009797930717, -0.01755540631711483, -0.005272693932056427, -0.022710029035806656, -0.0031895919237285852, -0.004540656693279743, -0.003036100184544921, -0.0004130361194256693, 0.005060167051851749, 0.027162976562976837, 0.007914100773632526, 0.017636368051171303, -0.029983175918459892, -0.012259097769856453, -0.0025182764511555433, 0.015801215544342995, 0.018688883632421494, -0.018661895766854286, 0.009931420907378197, 0.020092235878109932, 0.0038794614374637604, 0.019552486017346382, -0.002558757783845067, 0.00781289767473936, 0.058455049991607666, 0.001721300184726715, -0.002710562665015459, 0.014303404837846756, -0.020793912932276726, -0.004523789044469595, 4.0744886064203456e-05, 0.01860792003571987, 0.00630159443244338, 0.03775559365749359, -0.010106840170919895, 3.676527558127418e-05, -0.010720807127654552, -0.01956597901880741, -0.02055102400481701, 0.017110111191868782, 0.024747589603066444, 0.011112126521766186, 0.009863952174782753, 0.046985335648059845, 0.008723727427423, 0.009371429681777954, -0.007914100773632526, 0.023155324161052704, 0.00033945287577807903, -0.008507827296853065, 0.00021442458091769367, -0.006568096578121185, -0.014384367503225803, -0.004810532089322805, -0.04323406517505646, 0.016462409868836403, 0.024936502799391747, -0.009054325520992279, -0.001776118646375835, 0.04671546071767807, 0.0004963180399499834, 0.02011922374367714, -0.00819072313606739, 0.013163181021809578, 0.004955590236932039, -0.008797943592071533, 0.01441135536879301, 0.0018638281617313623, -0.021549563854932785, -0.0022720149718225002, -0.005316548980772495, 0.04172276332974434, -0.01435738056898117, 0.004270780831575394, 0.01032948773354292, -0.00852132122963667, 0.02055102400481701, -0.014114492572844028, 0.022521115839481354, 0.0014413042226806283, -0.0009504680056124926, -0.014397861436009407, 0.007900607772171497, 0.04023844748735428, 0.024086395278573036, 0.009378176182508469, 0.009479379281401634, 0.004550776910036802, -0.0021927389316260815, 0.018918277695775032, -0.018459489569067955, 0.01500508189201355, -0.023020386695861816, -0.0162734966725111, -0.023546643555164337, -0.02490951493382454, -0.0357854999601841, -0.008332408033311367, -0.008359395898878574, 0.03171037882566452, -0.003913195803761482, 0.034759972244501114, 0.008163736201822758, 0.0024390004109591246, -0.0062509928829967976, -0.007570009678602219, -0.014883637428283691, 0.02001127414405346, -0.012083678506314754, -0.0018267203122377396, -0.0031153762247413397, 0.009823470376431942, -0.00649388087913394, -0.007516034878790379, -0.005205225199460983, -0.030037151649594307, 0.0049758306704461575, -0.013122699223458767, 0.020267656072974205, -0.00184190075378865, -0.009391670115292072, 0.009344441816210747, -0.008966615423560143, -0.0001442147622583434, -0.0152749577537179, 0.01117959525436163, -0.02329026162624359, -0.017825281247496605, 0.003811992472037673, 0.028228985145688057, 9.371851047035307e-05, 0.000754808250349015, -0.012353554368019104, -0.005404258146882057, -0.01468123123049736, 0.02341170608997345, -0.016664816066622734, 0.003108629258349538, -0.006733395624905825, 0.0385112427175045, -0.021320169791579247, 0.007124715019017458, -0.023695075884461403, 0.030711840838193893, 0.021900402382016182, 0.005525702144950628, 0.006321835331618786, -0.00617003021761775, 0.015585314482450485, 0.04291021451354027, 0.02871476113796234, -0.018216600641608238, 0.008440358564257622, -0.007475553546100855, 0.004851013422012329, -0.018445994704961777, -0.02882271073758602, 0.031116653233766556, -0.0005772807053290308, 0.004061627201735973, -0.004075121134519577, 0.0034948885440826416, -0.008015304803848267, 0.013790641911327839, 0.01207693200558424, -0.001776118646375835, 0.0012591382255777717, -0.003216579556465149, 0.005110768601298332, 0.009310707449913025, 0.0052929348312318325, 0.02863379754126072, 0.019525498151779175, -0.017514925450086594, 0.009040831588208675, 0.015355920419096947, 0.005171490833163261, -0.010822010226547718, -0.021131256595253944, -0.037188854068517685, -0.010093346238136292, 0.015895670279860497, 0.04374682903289795, -0.00016002777556423098, 0.009951661340892315, -0.013311612419784069, 0.011928500607609749, -0.0058900341391563416, -0.03646019101142883, -0.0016158799408003688, -0.01947152242064476, -0.009499619714915752, -0.007596997544169426, 0.011172848753631115, 0.002933210227638483, -0.01148995291441679, -0.0029720047023147345, 0.0026194797828793526, -0.013163181021809578, 0.02681213803589344, -0.014573280699551105, -0.044016703963279724, -0.005846179556101561, -0.008716980926692486, 0.030037151649594307, -0.017096618190407753, -0.0157337449491024, 0.01787925697863102, -0.03349155932664871, -0.03648717701435089, -0.007772416342049837, 0.01947152242064476, -0.007306881248950958, 0.010727553628385067, -0.007529528345912695, -0.02435627020895481, -0.000592039548791945, -0.024626145139336586, -0.027311407029628754, 0.023479174822568893, -0.0028336935210973024, -0.04363888129591942, -0.018702376633882523, 0.02435627020895481, 0.03969869762659073, -0.0070167649537324905, 0.024936502799391747, -0.012333313934504986, -0.0048206523060798645, 0.013655703514814377, -0.05000794306397438, -0.02893066219985485, -0.03322168439626694, 0.004199938382953405, 0.0321691669523716, 0.030873766168951988, -0.01594964601099491, -0.034409135580062866, -0.018338045105338097, 0.005512208677828312, 0.0185269583016634, -0.0017778052715584636, -0.02787814661860466, 0.0008353492012247443, 0.0385112427175045, 0.006031719036400318, 0.00968178641051054, 0.02299339883029461, -0.02511192113161087, 0.018216600641608238, -0.017218060791492462, 0.0005380643997341394, 0.0022770750802010298, -0.016556866466999054, -0.01926911622285843, 0.013379081152379513, -0.009445644915103912, -0.005441366229206324, -0.033572521060705185, 0.035488639026880264, -0.012535720132291317, 0.015828201547265053, 0.026042992249131203, -0.0027679114136844873, 0.006146416068077087, 0.0235061626881361, 0.01607109047472477, -0.004523789044469595, -0.027297914028167725, 0.005215345416218042, -0.014020035974681377, 0.01142923068255186, 0.016624335199594498, -0.01377040147781372, -0.006234125699847937, 0.011692359112203121, -0.023897482082247734, -0.009965155273675919, 0.011935247108340263, 0.015909165143966675, 0.010039371438324451, 0.011112126521766186, -0.01542338915169239, -0.04188469052314758, -0.020712949335575104, -0.020065248012542725, -0.0050871544517576694, -0.00045204159687273204, 0.006692914292216301, 0.002858994295820594, 0.008258192799985409, 0.004004278685897589, -0.026258893311023712, 0.018176119774580002, -0.028255973011255264, 0.001983585534617305, -0.006176777184009552, 0.008555055595934391, 0.003798498772084713, -0.01292703952640295, -0.013034990057349205, -0.024329282343387604, -0.01777130551636219, 0.023330742493271828, -0.002762851072475314, 0.005552690010517836, 0.004068374168127775, 0.020564518868923187, 0.012832583859562874, 0.026366842910647392, 0.009924674406647682, 0.0036331999581307173, 0.015544832684099674, -0.02137414552271366, 0.010896226391196251, -0.002052741125226021, 0.00766446627676487, -0.016017114743590355, 0.03106267750263214, 0.0037310298066586256, 0.009189262986183167, 0.014505811966955662, 0.007023511920124292, 0.014343886636197567, 0.021225713193416595, -0.008440358564257622, -0.007543022278696299, -0.01240078266710043, -0.02138763852417469, -0.016367953270673752, -0.0013316672993823886, -0.023991938680410385, 0.02925451286137104, 0.002401892561465502, -0.009175769053399563, 0.01658385433256626, 0.00021368663874454796, 0.0007649285835213959, 0.038457270711660385, 0.03646019101142883, 0.013554500415921211, -0.0016141933156177402, 0.008447105064988136, 0.025773117318749428, -0.040157485753297806, -0.014343886636197567, -0.022075822576880455, 0.01659734733402729, -0.008049039170145988, -0.01500508189201355, 0.02640732377767563, 0.013500525616109371, 0.007947835139930248, -0.002808392746374011, -0.00225852127186954, -0.025921547785401344, -0.03233109414577484, 0.023762544617056847, -0.015895670279860497, -0.005798951257020235, -0.0032385068479925394, 0.003805245505645871, -0.001360341557301581, 0.006497254595160484, 0.027824170887470245, 0.006396051030606031, 0.009965155273675919, -0.022183772176504135, -0.021212220191955566, 0.006848092656582594, -0.026636719703674316, 0.06336678564548492, 0.017609380185604095, 0.024558676406741142, 0.026987556368112564, 0.005518955644220114, -0.008926134556531906, -0.011746333912014961, 0.01628699153661728, 0.00829192716628313, 0.035596586763858795, 0.020928850397467613, -0.015113032422959805, -0.0271224956959486, -0.029767274856567383, -0.01576073281466961, -0.03149447962641716, -0.025705648586153984, 0.030684852972626686, 0.009283719584345818, 0.005647146143019199, -0.01462725643068552, 0.029308486729860306, -0.036244288086891174, -0.003673681290820241, -0.0037816313561052084, 0.00834590196609497, -0.021738477051258087, -0.021212220191955566, -0.05205899849534035, -0.0012903425376862288, -0.006584963761270046, 0.01999777927994728, -0.007037005387246609, 0.003845726838335395, -0.008069279603660107, -0.022831473499536514, -0.019296104088425636, 0.014910625293850899, 0.010457678698003292, 0.040913134813308716, -0.009985395707190037, -0.0018908156780526042, 0.04096711054444313, -0.03486792370676994, -0.029011623933911324, 0.015517845749855042, -0.002417073119431734, 0.02925451286137104, -0.01746094971895218, -0.007219171617180109, -0.017838776111602783, 0.02573263645172119, -0.009445644915103912, -0.0025115294847637415, -0.03575851395726204, -0.002946703927591443, -0.02736538276076317, 0.003138990141451359, 0.038565218448638916, 0.002545264083892107, -0.029740288853645325, 0.005188358016312122, -0.012049944140017033, 0.01266391109675169, -0.006814358290284872, -0.03637922555208206, -0.008386383764445782, -0.025152403861284256, 0.015247969888150692, -0.02531432919204235, 0.049090366810560226, 0.018580932170152664, -0.010875985957682133, -0.01999777927994728, 0.022925930097699165, 0.04210058972239494, -0.02863379754126072, 0.03726981580257416, -0.0018553945701569319, -0.009756001643836498, -0.005721362307667732, 0.01733950525522232, 0.013385828584432602, 0.010491413064301014, 0.012859570793807507, -0.030927740037441254, -0.019309597089886665, -0.018000701442360878, -0.00377488462254405, 0.005276067648082972, -0.008737221360206604, 0.006436532363295555, -0.007893860340118408, 0.01924212835729122, 0.009884192608296871, -0.028121033683419228, 0.004216806031763554, 0.017717331647872925, 0.007138208951801062, 0.00680761132389307, 0.01937706582248211, 0.01293378695845604, 0.005556063260883093, -0.013514019548892975, 0.0016681683482602239, -0.002950077410787344, -0.026312869042158127, -0.016570359468460083, -0.005414378829300404, -0.0052187186665833, 0.0023394839372485876, -0.020186692476272583, -0.03589345142245293, 0.0036601873580366373, -0.01616554707288742, 0.014276417903602123, -0.00377488462254405, -0.01914767175912857, -0.021468602120876312, -0.00040354832890443504, 0.022629067301750183, -0.0061025614850223064, 0.0016875657020136714, -0.010464425198733807, 0.02671768143773079, 0.011699105612933636, -0.009378176182508469, -0.02957836352288723, -0.017204567790031433, 0.04088614881038666, 0.013777147978544235, 0.012690898962318897, -0.0022635813802480698, -0.0006730022141709924, -0.038133420050144196, -0.02968631312251091, -0.010262019000947475, 0.0160845834761858, 0.023803025484085083, -0.004324756097048521, 0.0006312558543868363, 0.0191611647605896, -0.017366493120789528, 0.0076982006430625916, -0.03556960076093674, 0.004672220908105373, 0.026231905445456505, 0.03173736855387688, -0.021320169791579247, -0.010673578828573227, -0.009803229942917824, -0.024099888280034065, -0.0007451095734722912, -0.0006936645368114114, -0.00101793697103858, 0.007111221086233854, -0.0033565773628652096, -0.006881827022880316, -0.020618492737412453, -0.008332408033311367, 0.029875226318836212, 0.019943805411458015, 0.005222092382609844, -0.02543577179312706, -0.014910625293850899, -0.017825281247496605, 0.015153513289988041, -0.031143641099333763, -0.021536070853471756, -0.025786610320210457, -0.009236491285264492, 0.0006274607148952782, 0.008244698867201805, -0.012501985765993595, 0.010673578828573227, -0.0173530001193285, 0.024518195539712906, 0.005542569328099489, 0.014370874501764774, 0.03157544136047363, 0.008494333364069462, -0.0034881418105214834, -0.008487586863338947, -0.0020864754915237427, -0.02257509157061577, -0.005397511646151543, 0.011503445915877819, 0.007968076504766941, -0.02094234526157379, -0.008899146690964699, 0.02736538276076317, -0.011624890379607677, 0.0160845834761858, -0.04045434668660164, -0.017204567790031433, -0.029119573533535004, 0.01894526556134224, 0.005886660888791084, -0.019835853949189186, 0.021360650658607483, 0.022507622838020325, -0.012232109904289246, 0.02427530847489834, -0.04169577732682228, -0.006848092656582594, -0.00590690178796649, -0.0007472179713658988, 0.0027611644472926855, 0.0043213823810219765, -0.008413370698690414, 0.021657515317201614, 0.008683246560394764, -0.015490857884287834, 0.026515275239944458, 0.1966853141784668, 0.008953122422099113, -0.004864507354795933, 0.02126619592308998, -0.006035092286765575, 0.01281908992677927, 0.009297213517129421, 0.0013072098372504115, -0.012387288734316826, -0.016556866466999054, -0.01201620977371931, 0.004847640171647072, -0.024842046201229095, 0.005127635784447193, 0.00336501095443964, -0.026447806507349014, -0.0312785804271698, -0.04819977656006813, -0.027689233422279358, 0.005529075860977173, 0.012481745332479477, -0.012690898962318897, 0.0019127430859953165, -0.02617792971432209, 0.018675388768315315, 0.01224560383707285, -0.02105029486119747, -0.0005671603721566498, 0.024882527068257332, -0.013952567242085934, -0.010707313194870949, -0.010147321037948132, -0.021846426650881767, 0.02830994687974453, -0.036244288086891174, 0.011928500607609749, 0.03327565640211105, -0.0012178134638816118, 0.025665167719125748, -0.01670529879629612, 0.0030782681424170732, -0.02520637772977352, -0.034112270921468735, -0.001911056344397366, 0.004857760388404131, 0.03589345142245293, -0.011530433781445026, -0.03670307621359825, 0.0036062123253941536, 0.03257398307323456, -0.03289783373475075, -0.03233109414577484, 0.006790744140744209, 0.009634558111429214, 0.0018435874953866005, -0.006929055321961641, 0.016651323065161705, -0.01905321516096592, 0.018365032970905304, 0.02903861179947853, -0.025894561782479286, 0.02777019701898098, -0.01323739718645811, 0.0031626042909920216, -0.02181944064795971, 0.011570915579795837, -0.047093287110328674, 0.012313072569668293, -0.002012259792536497, -0.018904784694314003, -0.005967623554170132, -0.008332408033311367, 0.013203661888837814, 0.02435627020895481, -0.009013843722641468, -0.01732601225376129, 0.009364682249724865, 0.002398519078269601, 0.008595537394285202, 0.03807944431900978, -0.0027510439977049828, -0.014141479507088661, -0.022723523899912834, -0.02310134842991829, -0.029659325256943703, -0.0017390106804668903, 0.014924119226634502, 0.020281149074435234, -0.004490054678171873, 0.0023192432709038258, 0.009938168339431286, 0.012218616902828217, 0.0009858892299234867, 0.01271788589656353, -0.0006696287891827524, 0.006358942948281765, -0.010181056335568428, 0.0039334362372756, -0.011678865179419518, 0.002803332405164838, -0.03673006594181061, 0.03246603161096573, 0.007441818714141846, 0.010909720323979855, 0.018054675310850143, -0.023249780759215355, 0.015909165143966675, 0.024761084467172623, 0.0050432998687028885, -0.041965652257204056, 0.004854386672377586, -0.014532799832522869, -0.012326566502451897, -0.024450726807117462, -0.005667387042194605, -0.016003621742129326, -0.02393796294927597, 0.011112126521766186, 0.0008695053402334452, -0.013325106352567673, 0.009189262986183167, 0.0008323974907398224, 0.006817731540650129, 0.018796833232045174, -0.012960773892700672, -0.013709679245948792, -0.0442865826189518, 0.013763654045760632, -0.0008695053402334452, -0.006460146512836218, 0.01464074943214655, -0.01532893255352974, 0.008609030395746231, -0.004091988317668438, 0.008959868922829628, -0.009533355012536049, -0.02032162994146347, -0.006902067922055721, -0.019417546689510345, -0.010896226391196251, -0.016745779663324356, 0.020483555272221565, -0.0046384865418076515, -0.010889478959143162, 0.002607672708109021, -0.014937613159418106, 0.010936707258224487, -0.0010879358742386103, 0.007941088639199734, -0.014424849301576614, 0.007954582571983337, -0.002417073119431734, -0.005542569328099489, -0.022817980498075485, -0.02257509157061577, -0.02565167285501957, 0.0067401425912976265, -0.02499047853052616, 0.008426864631474018, -0.022170277312397957, -0.031224602833390236, 0.009519861079752445, 0.017528418451547623, 0.007941088639199734, -0.015086044557392597, -0.03745872899889946, -0.16905005276203156, -0.022925930097699165, 0.01213765423744917, -0.02118523232638836, 0.04120999947190285, 0.0028303200379014015, 0.04312611743807793, 0.0007505914545617998, -0.007981570437550545, -0.017366493120789528, 0.008028797805309296, 0.014168467372655869, -0.028984636068344116, -0.020470062270760536, -0.011570915579795837, -0.010039371438324451, -0.015409895218908787, 0.024680120870471, 0.04115602374076843, 0.006584963761270046, 0.05135732144117355, -0.03478696197271347, 0.0021590045653283596, 0.03319469466805458, 0.0032941687386482954, -0.026420818641781807, 0.0029753781855106354, -0.018000701442360878, 0.008501080796122551, -0.02553022839128971, 0.00819072313606739, 0.024018926545977592, 0.009897686541080475, -0.01047791913151741, 0.024855541065335274, -0.00040839763823896646, -0.007414831314235926, -0.0015053997049108148, 0.0015627482207491994, 0.00031963386572897434, 0.01872936449944973, 0.0229664109647274, 0.01500508189201355, 0.0030242931097745895, -0.016044102609157562, 0.016367953270673752, 0.023438693955540657, -0.014667737297713757, -0.0001287179911741987, 0.0004469814011827111, 0.014060516841709614, -0.02287195436656475, -0.005168117117136717, -0.008777703158557415, 0.012542467564344406, -0.04768701270222664, -0.0011031164322048426, 0.004169577732682228, -0.013001255691051483, -0.0030799550004303455, 0.003154170699417591, -0.0336264967918396, -0.005387390963733196, 0.01905321516096592, -0.014384367503225803, -0.012178135104477406, -0.02022717334330082, 0.01097044162452221, -0.02573263645172119, 0.021252701058983803, -0.007320374716073275, -0.005923768971115351, -0.0036197060253471136, -0.016637828201055527, 0.024828553199768066, 0.027797183021903038, 0.00030318833887577057, -0.015220982022583485, -0.010889478959143162, -0.001572025241330266, -0.014127986505627632, 0.026623224839568138, 0.03613634034991264, -0.011955487541854382, 0.0005047516315244138, -0.009175769053399563, 0.0067941173911094666, 0.03243904188275337, -0.01713709905743599, -0.034220222383737564, 0.0073271216824650764, -0.0433959923684597, 0.01254921406507492, -0.008764209225773811, 0.012724633328616619, 0.02979426272213459, 0.017366493120789528, -0.022170277312397957, 0.025503242388367653, -0.025570711120963097, -0.01352076604962349, 0.007441818714141846, -0.03710789233446121, 0.00526932068169117, 0.056242067366838455, 0.012555960565805435, -0.03195326775312424, 0.01743396185338497, 0.0263938307762146, -0.0076037440448999405, -0.003953677136451006, 0.002756104338914156, 0.024639640003442764, 0.024396751075983047, -0.008049039170145988, 0.024234825745224953, -0.002835380146279931, 0.00039237376768141985, -0.0022635813802480698, 0.013898591510951519, 0.04318009316921234, -6.8786641350016e-05, -0.010376716032624245, 0.0033734445460140705, -0.006190271116793156, -0.003690548473969102, -0.12209171056747437, -0.011928500607609749, -0.017717331647872925, 0.034517087042331696, 0.008872159756720066, -0.008561802096664906, -0.004422585945576429, 0.007232665549963713, -0.007887113839387894, 0.05332741141319275, -0.0005899311508983374, -0.01293378695845604, 0.00835264939814806, 0.013743413612246513, -0.01789274998009205, 0.015261463820934296, 0.007677960209548473, -0.023695075884461403, -0.02863379754126072, 0.04042736068367958, 0.01505905669182539, -0.010579122230410576, 0.026542263105511665, -0.0016504577361047268, -0.015936153009533882, 0.0011478145606815815, -0.0019886456429958344, -0.004874627571552992, -0.008001810871064663, 0.005775337107479572, 0.006770503241568804, -0.0029483905527740717, 0.004800411872565746, -0.01959296688437462, 0.01755540631711483, 0.006149789784103632, -0.012920293025672436, 0.01775781251490116, 0.015936153009533882, 0.006291474215686321, -0.009614317677915096, -0.014114492572844028, 0.008899146690964699, -0.006463519763201475, 0.016867224127054214, 0.00829192716628313, -0.02022717334330082, 0.032196156680583954, -0.009634558111429214, -0.034894909709692, -0.044340554624795914, -0.011105380021035671, -0.03332963213324547, -0.010761287994682789, 0.0312785804271698, -0.02520637772977352, -0.003980664536356926, 0.02509842813014984, 0.004378731362521648, -0.004979204386472702, -0.012501985765993595, -0.0025182764511555433, -0.0160845834761858, 0.006908814422786236, 0.02830994687974453, 0.019957298412919044, -0.014883637428283691, -0.008420118130743504, 0.021859921514987946, -0.009985395707190037, 0.002400205936282873, 0.029119573533535004, -0.01755540631711483, 0.010046117939054966, -0.010808516293764114, 0.007414831314235926, -0.0068784537725150585, -0.007401337381452322, 0.003424046328291297, 0.021468602120876312, -0.018014194443821907, -0.009438898414373398, -0.013817628845572472, 0.0017423841636627913, 0.009310707449913025, 0.005606664810329676, 0.015544832684099674, 0.01495110709220171, 0.0241403691470623, -0.012272591702640057, 0.01180705614387989, 0.007623984944075346, 0.025894561782479286, -0.023910975083708763, -0.0013460044283419847, 0.005778710823506117, 0.012063438072800636, -0.013210409320890903, 0.01378389447927475, 0.021671008318662643, -0.03384239599108696, -0.02820199728012085, -0.035596586763858795, 0.03923990949988365, -0.017447454854846, -0.026650212705135345, 0.005518955644220114, 0.018877796828746796, 0.02330375649034977, -0.02180594578385353, 0.015774227678775787, 0.008757462725043297, -0.009236491285264492, 0.005019685719162226, -0.018675388768315315, 0.0061025614850223064, 0.017690343782305717, -0.023695075884461403, 0.0020206933841109276, -0.014532799832522869, 0.0028505607042461634, 0.0011520313564687967, -0.006416291929781437, 0.006564723327755928, 0.017933230847120285, 0.002739237155765295, 0.01097044162452221, -0.020820900797843933, -0.009182516485452652, 0.018284069374203682, 0.005279440898448229, -0.018783340230584145, -0.01239403523504734, -0.00019038877508137375, 0.009641304612159729, 0.024234825745224953, -0.0043045151978731155, 0.005809071473777294, 0.022615572437644005, -0.005063540302217007, 0.023695075884461403, 0.005599918309599161, -0.0019245501607656479, -0.016448916867375374, 0.011678865179419518, -0.003140676999464631, 0.0005254140123724937, -0.016246508806943893, -0.006719901692122221, 0.008312167599797249, 0.009094806388020515, 0.019080203026533127, 0.018810328096151352, -0.009958408772945404, -0.01755540631711483, 0.0030479072593152523, 0.022817980498075485, -0.013500525616109371, -0.007583503611385822, -0.03821438178420067, 0.0007206521113403141, -0.02628588117659092, 0.04215456545352936, 0.00017573537479620427, 0.028255973011255264, -0.007441818714141846, -0.008440358564257622, -0.015032069757580757, -0.012947280891239643, 0.027594776824116707, 0.006298221182078123, -0.004780170973390341, -0.0008678186568431556, 0.009769495576620102, 0.010599362663924694, 0.023452186957001686, 0.03543466329574585, -0.002236593747511506, -0.023533150553703308, -0.0003822534345090389, -0.009594076313078403, 0.01924212835729122, 0.005451486445963383, -0.012434517033398151, -0.00542787229642272, 0.006342075765132904, 0.019431041553616524, 0.012110666371881962, 0.0053469096310436726, -0.006426412146538496, 0.01596314087510109, 0.0041223494336009026, 0.004257287364453077, 0.0021269568242132664, -0.02424832060933113, -0.03713487833738327, 0.03457105904817581, 0.02457217127084732, -0.024707108736038208, 0.014573280699551105, 0.0016226269071921706, 0.01862141489982605, 0.012063438072800636, -0.008629271760582924, 0.0027932121884077787, -0.001776118646375835, -0.004770050756633282, 0.021644020453095436, 0.005488594528287649, -0.021981365978717804, -0.007138208951801062, -0.007306881248950958, -0.004729569423943758, 0.01340606901794672, 0.00734061561524868, 0.02438325807452202, -0.022399673238396645, -0.0008631801465526223, -0.009540101513266563, -0.02692008763551712, -0.011611396446824074, 0.019862841814756393, 0.0022686414886265993, 0.02608347311615944, 0.0197009164839983, -0.023857001215219498, 0.025989018380641937, 0.021536070853471756, 0.03338360786437988, -0.00619701761752367, 0.02022717334330082, -0.022912435233592987, 0.000886372581589967, 0.04636462405323982, -0.016867224127054214, -0.03300578147172928, -0.00037445235648192465, -0.026447806507349014, 0.01851346343755722, 0.014546293765306473, -0.004496801644563675, 0.059426601976156235, -0.00026397203328087926, -0.01885080896317959, 0.016637828201055527, -0.011037911288440228, -0.015909165143966675, 0.017960218712687492, -0.010430690832436085, 0.005414378829300404, -0.036244288086891174, 0.010882732458412647, 0.013399322517216206, 0.00260935933329165, -0.02863379754126072, -0.006217258516699076, -0.004199938382953405, -0.0031558575574308634, 0.012501985765993595, -0.018553946167230606, -0.013203661888837814, 0.026650212705135345, 0.002115149749442935, 0.012555960565805435, -0.0005039083189330995, -0.009398416616022587, 0.014505811966955662, 0.03807944431900978, 0.006605204660445452, -0.017906244844198227, -0.034894909709692, -0.016678310930728912, -0.005046673119068146, -0.011287545785307884, -0.01605759561061859, 0.011186342686414719, -0.007414831314235926, 0.003147423965856433, 0.0012422710424289107, 0.0423164889216423, 0.010457678698003292, -0.017258543521165848, 0.004220179282128811, -0.003680428024381399, -0.03608236461877823, -0.012333313934504986, 0.02841789834201336, -0.020186692476272583, -0.004510295577347279, -0.07858776301145554], "c3def67b-d763-4f94-9a2b-53b81a1be41b": [0.02047286182641983, -0.009641925804316998, -0.014705474488437176, -0.009074753150343895, -0.0011633861577138305, -0.012101949192583561, -0.03413965925574303, -0.004615960642695427, -0.019994525238871574, -0.001889434759505093, 0.022030876949429512, 1.1464628187241033e-05, 0.008890251629054546, 0.02962961606681347, -0.008637416176497936, -0.00993576180189848, 0.020008191466331482, 0.01074210274964571, 0.014814808033406734, 0.003278322983533144, -0.019379518926143646, 0.026964591816067696, -0.011534777469933033, -0.03493233397603035, -0.04072705656290054, 0.002287480281665921, 0.0014862642856314778, -0.01814950630068779, 0.03843103349208832, -0.03310098499059677, 0.034604329615831375, -0.008787751197814941, -0.010680601932108402, -0.0057298047468066216, -0.006785565055906773, 0.008439247496426105, -0.018559511750936508, -0.01758916862308979, 0.007530405651777983, -0.005658054258674383, 0.05029381439089775, -0.004240124020725489, -0.008152244612574577, -0.0028700274415314198, -0.024436233565211296, 0.008131744340062141, 0.008821917697787285, -0.0460844412446022, -0.02466856874525547, 0.008753583766520023, 0.03310098499059677, 0.00690173264592886, -0.03137896582484245, 0.004892713390290737, -0.014623473398387432, 0.016003819182515144, -0.0006555792060680687, 0.011965281330049038, 0.008705750107765198, 0.00947792362421751, 0.006146642379462719, 0.008029243908822536, -0.0060680583119392395, -0.0054769692942500114, 0.011562110856175423, 0.006949566304683685, 0.020240526646375656, 0.00505329854786396, -0.02461390197277069, 0.01648215763270855, 0.02880960889160633, 0.017671169713139534, -0.004629627801477909, 0.003987288102507591, 0.030039621517062187, -0.003075029468163848, -0.008528081700205803, 0.026773257181048393, -0.01653682440519333, -0.006375561002641916, 0.002632566960528493, -0.006700147408992052, -0.002101270016282797, 0.006983733735978603, 0.009744426235556602, -0.046275775879621506, -0.004971297457814217, 0.0391417071223259, -0.004284541122615337, -0.02644525282084942, 0.025898581370711327, -0.0024224398657679558, 0.0064780618995428085, 0.008828750811517239, -0.00831624586135149, -0.014596140012145042, -0.003905287478119135, -0.02614458277821541, -0.00422304030507803, -0.001797183882445097, -0.025433911010622978, 0.020158525556325912, 0.0020278110168874264, -0.008678416721522808, -0.022263213992118835, -0.006276476662606001, 0.010202264413237572, 0.004291374236345291, 0.01154844369739294, -0.010646435432136059, -0.02345222420990467, 0.04848979786038399, -0.005589720327407122, -0.0421484038233757, 0.018368175253272057, -0.02380756102502346, 0.027032924816012383, 0.004742378834635019, -0.014309137128293514, -0.013714631088078022, 0.03405765816569328, -0.023998895660042763, 0.02875494211912155, 0.016085820272564888, 0.02260488271713257, 0.011917447671294212, -0.02223587967455387, -0.019598187878727913, -0.03706435486674309, -0.0178898386657238, 0.034795667976140976, 0.02941094897687435, 0.008985918946564198, 0.010796770453453064, 0.007284402847290039, 0.007605572696775198, -0.006737731397151947, -0.00925242155790329, -0.018873848021030426, -0.00035256065893918276, 0.020431863144040108, 0.006211559288203716, -0.022714218124747276, 0.03260897845029831, -0.01577148400247097, 0.020158525556325912, 0.0031245716381818056, -0.017657501623034477, 0.001889434759505093, -0.01529314648360014, -0.010168096981942654, -0.015607482753694057, 0.012593953870236874, 0.02244088239967823, -0.0001972076133824885, -0.007940409705042839, -0.007168235257267952, 0.003035737434402108, -0.010578101500868797, -0.012190783396363258, 0.005453051999211311, 0.01890118047595024, -0.010530267842113972, 0.0015161603223532438, -0.0034799082204699516, 0.02689625695347786, 0.020705198869109154, 0.005090882070362568, -0.008500748313963413, 0.009853760711848736, -0.0073800706304609776, 0.009812760166823864, -0.005596553441137075, 0.015361480414867401, 0.002524940762668848, -0.01951618678867817, -0.002244771458208561, -0.027511263266205788, -0.009081587195396423, 0.023219889029860497, 0.002683817408978939, -0.004899546969681978, 0.022632217034697533, 0.025092240422964096, -0.03780236095190048, -0.006713814102113247, 0.025597911328077316, 0.008562248200178146, 0.012136116623878479, 0.006669397000223398, -0.007154568564146757, 0.018586844205856323, -0.0025727746542543173, 0.018819179385900497, -0.6109605431556702, -0.003303948324173689, -0.010947104543447495, -0.007783241104334593, -0.001258199568837881, -0.00029404967790469527, -0.004246957134455442, -0.011117939837276936, -0.02088286727666855, 0.02255021594464779, 0.006474645342677832, 0.0020141443237662315, 0.004065872170031071, -0.009382256306707859, -0.000575713871512562, -0.01972118951380253, -0.014008467085659504, -0.005343717988580465, -0.011582611128687859, 0.021415872499346733, -0.003936037886887789, 0.03233564272522926, -0.018286174163222313, 0.011992614716291428, -0.002290896838530898, 0.018190506845712662, 0.022509215399622917, -0.01096760481595993, 0.0318436399102211, 0.023274555802345276, -0.0009720509988255799, -0.0005868180887773633, 0.0088970847427845, 0.0063516441732645035, 0.04611177369952202, -0.022714218124747276, 0.012388952076435089, 0.012833123095333576, 0.005227549932897091, 0.032171640545129776, -0.02224954590201378, 0.0003382532449904829, 0.034959666430950165, 0.008903918787837029, -0.005107965786010027, -0.0023541059345006943, 0.004212790168821812, 0.019953524693846703, -0.0014597848057746887, -0.018778178840875626, 0.006621563341468573, -0.002473690314218402, -0.015525481663644314, -0.01794450543820858, 0.031269632279872894, -0.01119994092732668, 0.026622921228408813, -0.01455513946712017, -0.0024241481442004442, -0.02856360748410225, -0.014008467085659504, 0.0026667339261621237, -0.007899409160017967, -0.002106395084410906, 0.003915537614375353, 0.033237650990486145, -0.0252835750579834, 0.005552136339247227, -0.013372961431741714, -0.00958042498677969, 0.024299565702676773, 0.034795667976140976, -0.003625117940828204, -0.00035106585710309446, 0.0170424971729517, 0.0069153993390500546, 0.017110830172896385, 0.009204587899148464, 0.011186273768544197, 0.01773950271308422, 0.025843914598226547, 4.90483216708526e-06, -0.020404528826475143, -0.02476423792541027, 0.02041819505393505, -0.0015793693019077182, 0.010537100955843925, 0.017479833215475082, 0.03342898562550545, 0.02916494570672512, 0.011760279536247253, -0.010448266752064228, -0.008610082790255547, -0.03474099934101105, -0.00019112162408418953, 0.013413961976766586, -0.022317880764603615, -0.0006551520782522857, -0.004605710972100496, -0.04009838402271271, -0.021497871726751328, -0.012696455232799053, 0.009676092304289341, -0.009730760008096695, 5.2798681281274185e-05, -0.0008016430656425655, 0.014418471604585648, 0.013666797429323196, 0.03755635768175125, -0.02815360203385353, 0.0016733285738155246, -0.02598058246076107, 0.017206497490406036, -0.001542639802210033, 0.028672941029071808, -0.02886427566409111, 0.015990152955055237, -0.007735407445579767, -0.014213469810783863, 0.008890251629054546, 0.014090468175709248, 0.029547616839408875, -0.0013017624150961637, -0.00042644678615033627, 0.03094162978231907, 0.004697961732745171, 0.004646711051464081, -0.02532457560300827, -0.030312957242131233, -0.012347951531410217, -0.003956537693738937, -0.0014350137207657099, -0.004301624372601509, -0.005299300886690617, 0.021716540679335594, -0.004137623123824596, 0.009334422647953033, -0.007113568019121885, 0.02856360748410225, -0.03736502304673195, -0.02376656047999859, -0.01029109861701727, 0.0254749096930027, -0.02492823824286461, -0.015238478779792786, -0.022372547537088394, -0.020008191466331482, 0.0007239131955429912, 0.0021268953569233418, 0.013044958002865314, 0.008985918946564198, 0.017575502395629883, 0.004810712765902281, 0.03936037793755531, 0.009887928143143654, -0.008951752446591854, 0.013188459910452366, -0.005962140392512083, 0.014035801403224468, -0.010899270884692669, 0.0010446558007970452, 0.021060535684227943, -0.0062047261744737625, -0.006665980443358421, -0.011582611128687859, -0.006392644718289375, -0.031870972365140915, 0.023684559389948845, -0.02315155416727066, -0.03542434051632881, -0.010694269090890884, -0.007653406821191311, -0.00676164822652936, 0.013728298246860504, 0.0037959530018270016, 0.030613627284765244, -0.016345489770174026, 0.0006658292841166258, -0.015962818637490273, -0.0077012404799461365, -0.008111244067549706, -0.010140763595700264, -0.008548581972718239, -0.0013256793608888984, 0.037993695586919785, 0.008596415631473064, 0.016058487817645073, -0.022276880219578743, 0.0056033870205283165, 0.0012684495886787772, 0.002993028610944748, 0.015580149367451668, -0.027005592361092567, 0.017780503258109093, 0.01460980623960495, -0.0014478263910859823, 0.02946561574935913, 0.002316522179171443, -0.0011787612456828356, 0.03977037966251373, 0.012757955119013786, -0.011527943424880505, 0.008247911930084229, -0.02188054285943508, -0.0037583692464977503, 0.00032608123729005456, 0.019584521651268005, -0.008849251084029675, 0.030914295464754105, -0.013612130656838417, -0.006259393412619829, -0.0058938064612448215, -0.02103320136666298, -0.02163453958928585, 0.02673225663602352, 0.03974304720759392, 0.003003278747200966, 0.012177116237580776, 0.033182986080646515, -0.0004894422017969191, 0.0197621900588274, 0.02861827425658703, 0.011814946308732033, 0.020281527191400528, -0.0070725674740970135, -0.0007939555216580629, -0.012409452348947525, -0.00806341040879488, -0.0030562374740839005, -0.034303661435842514, 0.013072291389107704, -0.0051489658653736115, -0.001053197542205453, 0.002897361060604453, 0.03791169449687004, 0.019447851926088333, 0.01890118047595024, -0.01972118951380253, 0.026595588773489, -0.014473138377070427, -0.012552953325212002, 0.016468491405248642, 0.009464257396757603, -0.016605159267783165, 0.005442802328616381, -0.007598739583045244, 0.02729259431362152, 0.0032151141203939915, -0.009320755489170551, 0.021962543949484825, -0.009922094643115997, 0.025133240967988968, -0.0254749096930027, 0.01890118047595024, 0.01633182354271412, 0.008357246406376362, 0.018682511523365974, 0.0005556407268159091, 0.028126269578933716, 0.015033476985991001, 0.011357109062373638, -0.005377884954214096, 0.0051387157291173935, 0.009669259190559387, 0.014377471059560776, -0.02573457919061184, 0.0031758220866322517, -0.014719140715897083, -0.027470262721180916, -0.008022409863770008, -0.024504568427801132, -0.025857580825686455, -0.021566206589341164, 0.0031091964337974787, 0.03542434051632881, 0.007188735529780388, 0.03058629296720028, 0.027866600081324577, -0.009539424441754818, -0.015498148277401924, -0.020691530779004097, -0.02794860117137432, 0.023793894797563553, -0.010202264413237572, 0.006109058391302824, -0.01306545827537775, -0.008200078271329403, -3.9345428376691416e-05, -0.0022891885600984097, -0.0042640408501029015, -0.03023095615208149, 0.002625733381137252, -0.025693578645586967, 0.010318432003259659, 0.004164956510066986, 0.010502933524549007, 0.027278928086161613, -0.0013197001535445452, -0.009245588444173336, -0.022932887077331543, 0.01035943254828453, -0.025297241285443306, -0.015757817775011063, 0.010174931026995182, 0.03435833007097244, 0.0004038111655972898, 0.008370913565158844, -0.016864828765392303, -0.0024976071435958147, -0.03974304720759392, 0.030039621517062187, -0.03569767624139786, -0.011630444787442684, -0.015074477531015873, 0.027661597356200218, -0.030695626512169838, 0.03159763664007187, -0.005135299172252417, 0.026499919593334198, 0.012026782147586346, -0.002866610884666443, 0.019447851926088333, 0.003874537069350481, 0.013407127931714058, 0.04332374781370163, 0.012279617600142956, -0.01768483594059944, 0.012190783396363258, -0.022973885759711266, 0.010455099865794182, -0.009710259735584259, -0.011015438474714756, 0.02684159018099308, -0.0012974916025996208, 0.03230831027030945, -0.00019229610916227102, 0.009785426780581474, 0.020554862916469574, 0.0019765605684369802, 0.02436790056526661, -0.0107694361358881, -0.005924556870013475, 0.00571272149682045, 0.002408773172646761, -0.0010625935392454267, 0.0012616162421181798, 0.049009136855602264, 0.01336612831801176, -0.016195155680179596, 0.010482433252036572, 0.026704922318458557, 0.014145134948194027, -0.01135027501732111, -0.023329222574830055, -0.023329222574830055, -0.003570450935512781, 0.005295883864164352, 0.0419570691883564, 0.0014734516153112054, 0.01931118406355381, 0.015880819410085678, 0.011726112104952335, 0.0075440723448991776, -0.008528081700205803, -0.0006854753009974957, -0.018190506845712662, 0.004328958224505186, -0.009723925963044167, -0.004503209609538317, 0.0038267034105956554, -0.0027060259599238634, -0.0019714355003088713, 0.004393875598907471, 0.005022548139095306, 0.012846789322793484, -0.01637282408773899, -0.028836943209171295, 0.0037652028258889914, -0.007134068291634321, 0.026923591271042824, -0.007161401677876711, -0.014322803355753422, 0.008131744340062141, -0.025351909920573235, -0.016564158722758293, -0.0005069527542218566, 0.005945057142525911, -0.006771898362785578, 0.028973611071705818, -0.004226457327604294, -0.015211145393550396, 0.004479292780160904, -0.019092516973614693, -0.030722960829734802, 0.004188873339444399, -0.032116975635290146, -0.022755218669772148, -0.008985918946564198, 0.015129145234823227, 0.0314609669148922, 0.011316108517348766, 0.0007243402651511133, -0.008343580178916454, 0.0028444023337215185, 0.021101536229252815, -0.03364765644073486, -0.04039905220270157, -0.02911027893424034, -0.001792058814316988, 0.03083229437470436, 0.0367090180516243, -0.018122173845767975, -0.028946276754140854, -0.0037686193827539682, 0.0018757679499685764, 0.022454548627138138, 0.01162361167371273, -0.019584521651268005, -0.001604140386916697, 0.01112477295100689, -0.00014446231944020838, 0.01648215763270855, 0.020254194736480713, -0.023725559934973717, 0.008275246247649193, -0.01597648672759533, -0.012436785735189915, -0.00032159683178178966, -0.014951476827263832, -0.005234383512288332, -0.00356361735612154, -0.0033893657382577658, -0.01743883453309536, -0.03700968623161316, 0.0240672305226326, 0.0014862642856314778, 0.01991252414882183, 0.03064095973968506, 0.0035909509751945734, 0.009710259735584259, 0.023575225844979286, 0.024039896205067635, 0.008958585560321808, -0.047697123140096664, 0.0032714896369725466, -0.021921543404459953, 0.016058487817645073, -0.0011616777628660202, -0.01931118406355381, -0.004069288726896048, 0.0024976071435958147, -0.012149782851338387, -0.005794722121208906, -0.010653268545866013, 0.020759865641593933, 0.007448404561728239, 0.014377471059560776, -0.02562524564564228, -0.0314609669148922, -0.022809885442256927, -0.040207717567682266, 0.004130789544433355, -0.009279755875468254, 0.0088970847427845, 0.0027196926530450583, 0.0203225277364254, 0.009956262074410915, -0.029656950384378433, -0.017397833988070488, -0.03310098499059677, 0.005005464423447847, -0.0034576996695250273, 0.01622248813509941, 0.026404252275824547, -0.0011437401408329606, 0.0006235476466827095, -0.015908151865005493, -0.012860456481575966, 0.02208554558455944, 0.0010480725904926658, 0.004038538783788681, 0.022181212902069092, 0.02401256375014782, 0.02861827425658703, 0.03618967905640602, 0.002835860475897789, 0.020199526101350784, 0.019584521651268005, -0.005289050750434399, 0.014213469810783863, -0.011411775834858418, 0.0080087436363101, -0.021005867049098015, 0.01895584724843502, 0.013810299336910248, 0.0030169454403221607, 0.022317880764603615, 0.003172405296936631, 0.009149921126663685, 0.01981685683131218, -0.0009899886790663004, -0.018368175253272057, -0.02669125609099865, -0.01294245757162571, -0.02522890828549862, 0.0015614315634593368, -0.00947792362421751, 0.025392910465598106, -0.009245588444173336, -0.014158802106976509, 0.019270185381174088, -0.014719140715897083, 0.0024719820357859135, 0.028946276754140854, -0.012436785735189915, 0.0017279956955462694, 0.02022686041891575, -0.0053095510229468346, 0.048544466495513916, -0.0382123664021492, -0.02142953872680664, -0.028290269896388054, -0.007878908887505531, -0.00764657324180007, -0.020431863144040108, 0.031050963327288628, 0.003946287557482719, 0.022358881309628487, -0.013994800858199596, -0.011808113195002079, -0.018969515338540077, -0.012224949896335602, 0.014623473398387432, -0.02730626054108143, -0.012949290685355663, -0.01496514305472374, -0.0016314740059897304, -0.011384442448616028, 0.0006854753009974957, 0.030504291877150536, 0.0005577761912718415, 0.0037037020083516836, -0.024381566792726517, -0.02993028610944748, 0.0021918127313256264, -0.016564158722758293, 0.05953257158398628, 0.01794450543820858, 0.030094288289546967, 0.017165496945381165, 0.00334153207950294, -0.020459195598959923, -0.017261166125535965, 0.013639464043080807, 0.007687573786824942, 0.036217011511325836, 0.004530543461441994, -0.013858132995665073, -0.038895703852176666, -0.01051660068333149, 0.0020893116015940905, -0.01734316535294056, -0.011568943969905376, 0.02618558332324028, 0.0030681961216032505, 0.002393397968262434, -0.012846789322793484, 0.034248992800712585, -0.038185033947229385, 0.006529312580823898, -0.011316108517348766, 0.006419978104531765, -0.016905829310417175, -0.006607896648347378, -0.0419570691883564, 0.015634816139936447, -0.003416699357330799, 0.023083221167325974, 0.012088282033801079, 0.0014341595815494657, -0.010926604270935059, -0.02826293744146824, -0.03290964663028717, 0.008808250539004803, 0.0023404390085488558, 0.04028971865773201, -0.002658192068338394, -0.014746474102139473, 0.050020478665828705, -0.01991252414882183, -0.010270598344504833, -0.004212790168821812, -0.013755631633102894, 0.03290964663028717, -0.006727481260895729, -0.007434737868607044, -0.009676092304289341, 0.01577148400247097, -0.021142534911632538, -0.015183812007308006, -0.02952028252184391, 0.00513188261538744, -0.019475186243653297, 0.0007093921885825694, 0.02416289784014225, 0.00547013571485877, -0.033538322895765305, 0.003966787829995155, -0.008821917697787285, -0.0019201850518584251, -0.02350689098238945, -0.01884651370346546, 0.004287957679480314, -0.029492948204278946, -0.013304627500474453, -0.027415595948696136, 0.03405765816569328, 0.025543244555592537, 0.0015793693019077182, -0.016714492812752724, 0.027483928948640823, 0.05160582810640335, -0.022030876949429512, 0.030722960829734802, -0.004615960642695427, 0.0026667339261621237, -0.023014886304736137, -0.003983871545642614, 0.013502796180546284, 0.004677461460232735, 0.016263488680124283, -0.03337432071566582, -0.021046867594122887, -0.027032924816012383, 0.006563479546457529, 0.021292870864272118, -0.0021952292881906033, -0.0006282455869950354, -0.004598877392709255, 0.011732945218682289, 0.022714218124747276, -0.0327729806303978, -0.008664749562740326, 0.003054529195651412, 0.008377746678888798, 0.011630444787442684, 0.021443204954266548, 0.010338932275772095, 0.0010472183348610997, -0.003874537069350481, -0.009853760711848736, -0.00947792362421751, -0.016085820272564888, -0.018887514248490334, -0.00690173264592886, -0.0010121972300112247, -0.004766295664012432, -0.008124911226332188, -0.04362441599369049, -0.0005616199341602623, -0.009901594370603561, 0.02194887585937977, -0.010181764140725136, -0.011671445332467556, -0.02537924237549305, 0.023616226390004158, 0.02496923878788948, 0.023670893162488937, -0.004588627256453037, -0.004086372442543507, 0.01532047986984253, 0.018764512613415718, -0.011507443152368069, -0.009443757124245167, -0.025160573422908783, 0.048243794590234756, 0.019242851063609123, 0.007749074138700962, -0.00945059023797512, 0.0050020478665828705, -0.01200628187507391, -0.028399605304002762, -0.026950925588607788, 0.024285899475216866, 0.013489129021763802, -0.0030169454403221607, -0.012224949896335602, 0.010776270180940628, -0.01562114991247654, 0.009074753150343895, -0.0215388722717762, 0.00687439925968647, 0.01084460411220789, 0.030668294057250023, -0.01719283126294613, -0.014268136583268642, -0.019584521651268005, -0.03206230700016022, 0.004670627880841494, -0.023875895887613297, -0.0009131128899753094, 0.008992752991616726, 0.004291374236345291, -0.005791305564343929, -0.018436510115861893, -0.008275246247649193, 0.020131193101406097, 0.012935623526573181, 0.010796770453453064, -0.03386632353067398, -0.00013453254359774292, -0.01804017275571823, 0.014746474102139473, -0.0329643152654171, -0.010195431299507618, -0.016154155135154724, -0.013031291775405407, 0.001858684467151761, -0.005336884409189224, -0.021976210176944733, 0.0012283034157007933, -0.014281803742051125, 0.02375289425253868, 0.0012547828955575824, 0.007851575501263142, 0.017220165580511093, 0.008938085287809372, -0.008753583766520023, 0.0062047261744737625, 0.013058625161647797, -0.013249959796667099, 0.005333467852324247, 0.026622921228408813, -0.002290896838530898, -0.026950925588607788, -0.011179440654814243, 0.03941504284739494, -0.011896947398781776, 0.0015862026484683156, -0.047697123140096664, -0.03364765644073486, -0.03654501587152481, 0.02674592286348343, -0.018559511750936508, -0.010899270884692669, 0.007277569733560085, 0.012833123095333576, 0.002723109442740679, 0.004677461460232735, -0.03851303458213806, -0.0057776388712227345, -0.0017348291585221887, 0.0077012404799461365, -0.0038164532743394375, 0.0022174378391355276, 0.005982640665024519, 0.015019810758531094, -0.0004510043072514236, -0.016919495537877083, 0.032280974090099335, 0.20631396770477295, 0.0006777877570129931, 9.128993406193331e-05, 0.0273472610861063, -0.03416699543595314, 0.020459195598959923, 0.007147734984755516, -0.016796493902802467, 0.0004510043072514236, -0.01215661596506834, 0.0002434398338664323, 0.013161125592887402, -0.01538881380110979, 0.004820962902158499, -0.007441571447998285, -0.01663249172270298, -0.011357109062373638, -0.03362032026052475, -0.03178897127509117, 0.0014948060270398855, 0.00899958610534668, -0.009983595460653305, -0.015183812007308006, -0.013106458820402622, 0.040508389472961426, 0.019324852153658867, -0.0070725674740970135, -0.009143087081611156, 0.03047695755958557, -0.02693725749850273, -0.013741964474320412, -0.017930839210748672, -0.015839818865060806, 0.02663658745586872, -0.046685781329870224, 0.0075167384929955006, 0.022659549489617348, -0.001894559827633202, 0.01719283126294613, -0.003860870376229286, 0.005801555700600147, -0.008213745430111885, -0.0252835750579834, -0.005333467852324247, 0.0025539828930050135, 0.026650255545973778, -0.009389089420437813, -0.029684284701943398, 0.005200216546654701, 0.03845836967229843, -0.038239698857069016, -0.03862236812710762, -0.022864552214741707, 0.017370499670505524, -0.0020397694315761328, -0.015949152410030365, 0.0037549526896327734, -0.013003957457840443, 0.0384037010371685, 0.01784883812069893, -0.01212928257882595, 0.027470262721180916, -0.008070243522524834, 0.013564296066761017, -0.030859628692269325, 0.00023383036023005843, -0.035151004791259766, 0.014719140715897083, 0.006812898442149162, -0.02279621735215187, -0.00472529511898756, -0.007872075773775578, -0.00690173264592886, 0.02770259790122509, -0.018067507073283195, -0.021060535684227943, 0.010578101500868797, 0.0036319515202194452, 0.012279617600142956, 0.044007088989019394, -0.01460980623960495, 0.014500471763312817, -0.02138853818178177, -0.007913075387477875, -0.033128317445516586, -0.02639058604836464, 0.010195431299507618, 0.018887514248490334, -0.005579470191150904, -0.005900640040636063, 0.004451959393918514, 0.007421071175485849, -0.001054051797837019, 0.011855946853756905, -0.019953524693846703, 0.010817269794642925, -0.013400294817984104, -0.0028085268568247557, -0.0007597884978167713, -0.004486126359552145, -0.02719692699611187, 0.051223158836364746, -0.001838184311054647, 0.006430228240787983, 0.002234521321952343, -0.014623473398387432, 0.007550905458629131, 0.020035525783896446, 0.004489542916417122, -0.046931780874729156, -0.006437061820179224, -0.008705750107765198, -0.006703563965857029, -0.017520833760499954, 0.0070794010534882545, -0.03307364881038666, -0.02274155057966709, 0.009395923465490341, 0.0007243402651511133, 0.014869475737214088, -0.00508063193410635, -0.015908151865005493, 0.005234383512288332, 0.002031227806583047, -0.031761638820171356, 0.0004604002460837364, -0.04113706201314926, 0.0074005709029734135, 0.007667073514312506, 0.007038400508463383, 0.00635506073012948, -0.020076526328921318, 0.0023899811785668135, -0.02290555275976658, -0.0002791016304399818, -0.019584521651268005, -0.01618148759007454, -0.023479558527469635, -0.019898857921361923, 0.005487218964844942, -0.007277569733560085, -0.0022071877028793097, 0.010605434887111187, -0.0065156458877027035, -0.004639877937734127, -0.011459609493613243, -0.0042367069981992245, 0.016591493040323257, 0.0013384920312091708, -0.007427904289215803, -0.01387863326817751, -0.015429814346134663, 0.005282217171043158, -0.015949152410030365, -0.018887514248490334, -0.030750295147299767, -0.004178623203188181, -0.022468214854598045, 0.018491176888346672, -0.02345222420990467, -0.017274832352995872, 0.005582886748015881, 0.012539287097752094, 0.013454962521791458, -0.02137487195432186, -0.028973611071705818, -0.17187364399433136, -0.0028478188905864954, -0.008282079361379147, -0.03083229437470436, 0.05053981766104698, -0.0014170760987326503, 0.01648215763270855, -0.010721602477133274, -0.02107420191168785, -0.0051660495810210705, 0.004250374156981707, -0.00706573436036706, -0.02521524205803871, -0.021525206044316292, -0.017124496400356293, 0.0005295883747749031, -0.013229459524154663, 0.017821503803133965, 0.04141039773821831, 0.020240526646375656, 0.052589837461709976, -0.050129812210798264, 0.01331829372793436, 0.02952028252184391, -0.0018296425696462393, -0.021607207134366035, 0.006389227695763111, -0.011835446581244469, 0.01493780966848135, -0.02699192427098751, 0.028399605304002762, 0.012436785735189915, 0.019393185153603554, -0.03244497627019882, 0.02168920822441578, 0.01129560824483633, -0.0039428710006177425, -0.006300393491983414, -0.008651082403957844, -0.007598739583045244, 0.03249964490532875, 0.03178897127509117, 0.009279755875468254, 0.004752628970891237, -0.013810299336910248, 0.014022134244441986, 0.0123616186901927, -0.02745659649372101, -0.0038267034105956554, -0.016140487045049667, 0.020336193963885307, -0.018477510660886765, 0.007359570357948542, -0.013789799064397812, 0.028426939621567726, -0.04821646213531494, -0.020759865641593933, -0.007421071175485849, 0.009108920581638813, -0.0075372387655079365, 0.005353968124836683, -0.01972118951380253, 0.012956123799085617, 0.006539562717080116, 0.018532177433371544, -0.02410823106765747, -0.018108505755662918, 0.011493776924908161, -0.02537924237549305, 0.022358881309628487, -0.008049744181334972, -0.007803741376847029, -0.012409452348947525, -0.01627715490758419, 0.019488852471113205, 0.020445529371500015, -0.00917042139917612, -0.018682511523365974, -0.02395789511501789, -0.0228508859872818, -0.002712859306484461, 0.014978810213506222, 0.020336193963885307, -0.023670893162488937, -0.0018313508480787277, -0.010502933524549007, -0.0036012011114507914, 0.03807569667696953, -0.03077762760221958, -0.026294918730854988, 0.023124221712350845, -0.035260338336229324, 0.0033176150172948837, -0.007175068836659193, 0.014869475737214088, 0.030422290787100792, 0.008979085832834244, -0.013133792206645012, 0.02573457919061184, -0.04583843797445297, -0.015580149367451668, 0.004896130412817001, -0.016714492812752724, 0.019625520333647728, 0.03274564817547798, 0.02350689098238945, -0.032116975635290146, 0.008808250539004803, 0.0314609669148922, 0.007694406900554895, 0.020185859873890877, 0.0005031090113334358, -0.0005834014154970646, 0.015060811303555965, -0.0077012404799461365, 0.015252145938575268, 0.006601063068956137, 0.006556645967066288, -0.0014418471837416291, -0.013858132995665073, 0.04980181157588959, 0.009320755489170551, -0.0017835170729085803, 0.01074210274964571, -0.024682236835360527, -0.009231921285390854, -0.12704655528068542, -0.002545441035181284, -0.015580149367451668, 0.030422290787100792, 0.016851160675287247, 0.010092929936945438, -0.01895584724843502, -0.006894899532198906, -0.024682236835360527, 0.028126269578933716, -0.008220578543841839, -0.029793618246912956, -0.008753583766520023, 0.021169869229197502, -0.03271831199526787, -0.0021149369422346354, -0.010632768273353577, -0.01773950271308422, -0.01026376523077488, 0.049555808305740356, 0.015361480414867401, 0.0008456330979242921, 0.010441433638334274, 0.00858958251774311, -0.014213469810783863, 0.0049917977303266525, -0.03255430981516838, 0.0013256793608888984, -0.015183812007308006, -0.0014632014790549874, 0.0031228631269186735, -0.006911982782185078, 0.027060259133577347, -0.021962543949484825, -0.006888065952807665, -0.0046808780170977116, -0.009771760553121567, 0.008541748858988285, 0.01875084638595581, -0.0021200620103627443, 0.0006525896023958921, -0.01683749444782734, 0.0010600310051813722, -0.006136392243206501, 0.02290555275976658, -0.0042640408501029015, -0.02663658745586872, 0.03159763664007187, 0.004892713390290737, -0.021156203001737595, -0.037119023501873016, 0.0010147597640752792, -0.02710125967860222, -0.019379518926143646, 0.04950113967061043, -0.037474360316991806, -0.00430845795199275, 0.02880960889160633, 0.018682511523365974, 0.01413146872073412, -0.007796907797455788, 0.0035157836973667145, -0.019488852471113205, -0.0008639978477731347, 0.01951618678867817, 0.020992200821638107, -0.013331960886716843, -0.014978810213506222, 0.03643568232655525, -0.015129145234823227, 0.0023711894173175097, 0.013530129566788673, -0.02002185769379139, 0.013953800313174725, -0.012915123254060745, 0.015047144144773483, -0.002347272355109453, -0.002460023621097207, 0.015006143599748611, 0.0037822863087058067, -0.0114254429936409, -0.006847065407782793, -0.013639464043080807, 0.007626072969287634, 0.015047144144773483, 0.015088144689798355, 0.008343580178916454, 0.013926466926932335, 0.009894761256873608, -0.004609127528965473, 0.007585072424262762, 0.014022134244441986, 0.026513587683439255, -0.010366265662014484, 0.001558869145810604, 0.004769712220877409, 0.022030876949429512, -0.0016844328492879868, 0.001115552382543683, 0.025871247053146362, -0.04023505002260208, -0.010578101500868797, -0.029957620427012444, 0.0391417071223259, -0.007175068836659193, -0.019283851608633995, -0.012491452507674694, 0.007086234632879496, 0.030203621834516525, -0.02714226022362709, 0.016441157087683678, 0.020964866504073143, -0.024395233020186424, 0.0008345288224518299, -0.01212928257882595, -0.015552815981209278, -0.005299300886690617, -0.0421484038233757, 0.010420933365821838, -0.007762740831822157, 0.0209785345941782, 0.01389913260936737, -0.006782148033380508, 0.02521524205803871, 0.02002185769379139, -0.004281124100089073, -0.007591906003654003, -0.022030876949429512, -0.006447311490774155, 0.016509491950273514, -0.008487081155180931, -0.02699192427098751, -0.009266088716685772, -0.0032629480119794607, 0.007386904209852219, 0.01603115350008011, -0.005589720327407122, -0.015880819410085678, 0.017466166988015175, -0.000844778900500387, 0.036217011511325836, 0.003040862502530217, 0.011288775131106377, -0.0240672305226326, 0.009559924714267254, 0.00022379380243364722, -0.0010924895759671926, -0.008979085832834244, -0.024149231612682343, -0.0022003543563187122, 0.00651906244456768, 0.03362032026052475, -0.001364971394650638, -0.004574960563331842, -0.01577148400247097, -0.005169466137886047, 0.020500196143984795, -0.01957085356116295, -0.013243126682937145, -0.01717916503548622, -0.0023489808663725853, -0.010243264958262444, 0.020404528826475143, -0.009368590079247952, 0.016769161447882652, 0.011992614716291428, -0.017233831807971, -0.029957620427012444, -0.036217011511325836, 0.037337690591812134, 0.027005592361092567, -0.008569082245230675, -0.02628125250339508, 0.00902691949158907, 0.016099488362669945, 0.012368451803922653, 0.036873020231723785, 0.0020380611531436443, -0.032636310905218124, -0.0035465338733047247, -0.004110289271920919, 0.014828475192189217, 0.01663249172270298, 0.011753445491194725, -0.02521524205803871, -0.01970752142369747, 0.024490900337696075, 0.012026782147586346, 0.009033753536641598, -0.012095116078853607, 0.011712445877492428, 0.008903918787837029, -0.001802308950573206, -0.002856360748410225, -0.03452233225107193, -0.013161125592887402, 0.020595863461494446, 0.030968962237238884, -0.014732807874679565, 0.008780917152762413, -0.00819324515759945, 0.020664198324084282, 0.015935486182570457, -0.015142811462283134, -0.0037242022808641195, -0.009307089261710644, -0.0017698502633720636, 0.009334422647953033, 0.01248461939394474, -0.038349032402038574, -0.002581316279247403, 0.014978810213506222, 0.001634890679270029, 0.02861827425658703, 0.01653682440519333, 0.004745795391499996, -0.004192290361970663, 0.015238478779792786, -0.014773808419704437, -0.010564434342086315, -0.0038916205521672964, 0.02982095256447792, -0.010441433638334274, 0.010646435432136059, 0.01458247285336256, -0.013782965019345284, 0.022194879129529, 0.03777502849698067, 0.021771209314465523, -0.006208142731338739, 0.005541886202991009, -0.029438281431794167, -0.029738951474428177, 0.024736903607845306, -0.00091140455333516, -0.025898581370711327, -0.0020141443237662315, -0.031870972365140915, 0.014418471604585648, 0.010373099707067013, -0.007434737868607044, 0.04922780394554138, -0.008227411657571793, -0.01283995620906353, 0.01972118951380253, -0.0038096196949481964, -0.01824517548084259, 0.02410823106765747, 0.005692221224308014, -0.01167827844619751, -0.029383614659309387, 0.005340300966054201, 0.00996309518814087, -0.0011574069503694773, -0.02875494211912155, -0.010557601228356361, 0.03154296800494194, -0.01038676593452692, 0.023137887939810753, -0.007858408614993095, -0.004943964071571827, 0.008528081700205803, 0.02290555275976658, 0.024654902517795563, 0.004455375950783491, -0.005350551102310419, 0.0031997389160096645, 0.027866600081324577, 0.015170144848525524, -0.013789799064397812, -0.03413965925574303, -0.0010788228828459978, -0.011644111014902592, -0.005391551647335291, -0.022372547537088394, 0.013236293569207191, -0.007489405106753111, -0.009204587899148464, -0.0009131128899753094, 0.03545167297124863, 0.008405080065131187, -0.007270736154168844, -0.006344810593873262, -0.01901051588356495, -0.03878637030720711, -0.01784883812069893, 0.0228508859872818, -0.012477786280214787, 0.008473413996398449, -0.042585741728544235], "36bb8e59-f2dd-4374-897e-a97830ae042b": [0.0037420091684907675, -0.0008456014911644161, -0.014020963571965694, -0.009235749021172523, -0.0066758012399077415, 0.003384186187759042, -0.010446294210851192, -0.012376045808196068, -0.024381807073950768, -0.0510992556810379, 0.03828171640634537, 0.00782581977546215, -0.011777893640100956, 0.025478418916463852, 0.0004555121704470366, -0.027657400816679, 0.027173181995749474, -0.0065903509967029095, 0.013031164184212685, -0.003551526227965951, -0.0039057887624949217, 0.016990359872579575, -0.034635838121175766, -0.011742289178073406, -0.007868544198572636, 0.02566356025636196, 0.0055756294168531895, -0.02802768535912037, 0.004144337493926287, 0.005970836617052555, 0.03326863422989845, -0.004535984713584185, -0.008637596853077412, -0.0040802499279379845, -0.014191864058375359, -0.005173300858587027, -0.01577981375157833, -0.007298876065760851, 0.005440332926809788, 0.004856423009186983, 0.04557346925139427, 0.007555226795375347, -0.014854103326797485, 0.006910789757966995, -0.005529343616217375, 0.017047327011823654, 0.02173284813761711, -0.004229787737131119, -0.024922991171479225, 0.026560788974165916, 0.017303677275776863, 0.011158379726111889, -0.03400920331478119, -0.012418771162629128, 0.005326399579644203, 0.009299836121499538, -0.005023763049393892, 0.03947801887989044, -0.004774533212184906, -0.0070674484595656395, -0.0001140449385275133, -0.016691284254193306, -0.013187822885811329, 0.002415749942883849, -0.0049027083441615105, -0.0015122914919629693, -0.01788758672773838, 0.009228628128767014, 0.0017259172163903713, 0.013750370591878891, 0.007996720261871815, 0.02792799286544323, 0.013259031809866428, 0.020607754588127136, -0.003396647749468684, -0.024994200095534325, -0.01205560751259327, 0.008751530200242996, -0.02019474469125271, 0.006949954200536013, 0.005604112520813942, -0.005258751101791859, -0.02208889089524746, 0.020422611385583878, -0.005536464508622885, -0.012981317937374115, 0.003154538571834564, 0.01610737293958664, -0.004112293478101492, -0.033012282103300095, 0.008623355068266392, 0.014533665031194687, 0.0003079769667237997, 0.014740169048309326, -0.009748450480401516, 0.020963797345757484, 0.0050878506153821945, 0.012596792541444302, -0.016278274357318878, 6.742559344274923e-05, -0.006850262172520161, 0.01956810988485813, -0.009342561475932598, -0.011443213559687138, -0.03190143033862114, -0.01593647338449955, 0.00039320471114479005, -0.010567348450422287, 0.011279433965682983, -0.004390006884932518, -0.030477259308099747, 0.03452190384268761, -0.013572349213063717, -0.02809889242053032, 0.039250150322914124, -0.001335160224698484, 0.03828171640634537, 0.0031598792411386967, -0.0037669322919100523, -0.0014935992658138275, 0.01771668717265129, -0.019240548834204674, 0.04175669327378273, -0.005365564022213221, 0.011443213559687138, -0.0037562509533017874, 0.006508461199700832, -0.020493820309638977, -0.022914910688996315, -0.03372436761856079, 0.012162419967353344, 0.010004800744354725, 0.010702644474804401, 0.005739409010857344, -0.01380733773112297, 0.011671081185340881, -0.02398303896188736, 0.004667720291763544, 0.005721606779843569, -0.003565768012776971, 0.026817139238119125, 0.011393367312848568, -0.010681281797587872, 0.0019333120435476303, -0.0008772002765908837, 0.0073629640974104404, 0.006533384323120117, 0.006177341565489769, -0.005913869943469763, -0.01617858186364174, -0.0065867905505001545, -0.0013458415633067489, 0.03739872947335243, 0.005045125726610422, 0.01602192409336567, -0.01199151948094368, -0.00033779555815272033, -0.005251630209386349, -0.0017624115571379662, -0.009798295795917511, 0.018371805548667908, 0.007021162658929825, -0.0072668325155973434, -0.0038666240870952606, -0.012596792541444302, 0.029053088277578354, 0.009278473444283009, 0.008616234175860882, -0.006255670916289091, 0.028754012659192085, 0.010880665853619576, 0.028412209823727608, -0.008687443099915981, 0.022402210161089897, -0.0216901246458292, 0.007505381014198065, -0.016662800684571266, -0.0050985319539904594, -0.036942996084690094, 0.019112374633550644, 0.010168580338358879, -0.016847942024469376, 0.01573708839714527, 0.0197959765791893, -0.014711686410009861, -0.006999800447374582, 0.021533465012907982, 0.028739770874381065, 0.011001721024513245, 0.008181862533092499, 0.01501076202839613, 0.01626403257250786, 0.013757491484284401, 0.009541945531964302, -0.6311925649642944, 0.0240115225315094, 0.008801376447081566, -0.02411121502518654, -0.007238348945975304, -0.0038595031946897507, 0.012511341832578182, 0.007327359635382891, -0.025193585082888603, 0.022800976410508156, -0.00692147109657526, 0.03127479553222656, -0.018998440355062485, -0.011436092667281628, -0.007512501906603575, -0.024524223059415817, -0.015623155049979687, -0.030334841459989548, -0.011008841916918755, 0.003635196480900049, -0.027073489502072334, 0.02019474469125271, -0.013935512863099575, -0.02220282517373562, -0.0024032886140048504, 0.03418010473251343, 0.01112277526408434, 0.011785014532506466, 0.006718526594340801, 0.020963797345757484, -0.02193223312497139, -0.009698604233562946, -0.003508801106363535, 0.020792895928025246, 0.04232636094093323, 0.020721687003970146, -0.027187423780560493, -0.012354683130979538, -0.000288172101136297, 0.028782494366168976, -0.03529095649719238, 0.004813697654753923, 0.0405888706445694, 0.014512302353978157, 0.00276289158500731, -0.010446294210851192, 0.0023071570321917534, 0.006789735052734613, -0.021376805379986763, -0.010994600132107735, 0.016790974885225296, -0.0024887388572096825, 0.009691483341157436, 0.012675121426582336, 0.013600832782685757, -0.005550706293433905, 0.014526544138789177, -0.01572284661233425, 0.0008282444323413074, -0.02607657015323639, -0.03192991390824318, 0.01491106953471899, -0.012967076152563095, 0.008901068940758705, -0.008751530200242996, 0.017531543970108032, -0.008552147075533867, 0.021405288949608803, 0.00490982923656702, -0.023427613079547882, 0.016477657482028008, 0.019283274188637733, -0.01761699467897415, 0.006917910650372505, 0.01609313115477562, 0.035148538649082184, 0.02173284813761711, -0.038452617824077606, 0.022715527564287186, 0.023242469877004623, 0.015452254563570023, 0.008253070525825024, -0.0069641959853470325, 0.003962755668908358, 0.0129172308370471, -0.0007508051348850131, -0.013736128807067871, 0.008516542613506317, 0.010973237454891205, 0.007145777810364962, 0.017289435490965843, 0.011436092667281628, -0.011493059806525707, -0.0363733246922493, 0.006366044282913208, 0.027087731286883354, -0.03329711779952049, 0.002951594302430749, 0.022444933652877808, -0.03526247292757034, -0.04232636094093323, 0.0029266714118421078, 0.028796736150979996, 0.007875665090978146, 0.020223228260874748, 0.023570029065012932, -0.015580430626869202, 0.009784054942429066, 0.027529224753379822, -0.03574668988585472, -0.008310037665069103, -0.010318119078874588, 0.016278274357318878, -0.01587950624525547, -0.008402608335018158, -0.029537305235862732, 0.03799688071012497, -0.005831980146467686, -0.011137017048895359, 0.0009092441760003567, -0.013052526861429214, 0.00452530337497592, 0.009762692265212536, -0.01505348738282919, 0.008003841154277325, 0.024467257782816887, 0.0037277673836797476, -0.004963235929608345, -0.030277874320745468, 0.003400208195671439, -0.0022110254503786564, -0.004984598141163588, -0.0027094853576272726, -0.0004882235953118652, 0.02188950777053833, -0.00984102115035057, 0.007989599369466305, -0.015452254563570023, 0.021177422255277634, -0.023327920585870743, -0.019482659175992012, -0.021391047164797783, 0.007911269553005695, -0.0010173921473324299, -0.028284035623073578, -0.009328319691121578, -0.01817242056131363, -0.018884506076574326, -0.011713806539773941, 0.0007160909590311348, -0.004685522522777319, 0.023327920585870743, -0.022473417222499847, 0.02013777755200863, 0.015352563001215458, -0.011813498102128506, -0.01822938770055771, 0.0036886027082800865, 0.0023605632595717907, -0.002673880895599723, -0.004439853131771088, 0.013223427347838879, 0.0007330030202865601, -0.02163315750658512, -0.010282514616847038, -0.018428772687911987, -0.022615835070610046, 0.029010362923145294, 0.0006012671510688961, -0.028810977935791016, -0.016876425594091415, -0.0023854863829910755, 0.0073558432050049305, 0.02186102420091629, 0.011756530962884426, 0.02973669022321701, -0.020565029233694077, 0.0016529284184798598, -0.0036708007100969553, -0.02214585803449154, -0.0011980838607996702, -0.014476697891950607, -0.007946874015033245, -0.0060384850949049, 0.014213225804269314, 0.011528664268553257, 0.014896828681230545, 0.02190374955534935, 0.02368396334350109, 0.013358723372220993, 0.00037250970490276814, -0.0004194628563709557, -0.03577517345547676, -0.0005647728103213012, 0.007249030284583569, 0.012240749783813953, 0.007669160608202219, 0.012796175666153431, -0.02779981680214405, 0.052694324404001236, 0.022744011133909225, -0.023199744522571564, 0.027187423780560493, -0.05221010744571686, 0.004528863821178675, -0.038680482655763626, 0.025179343298077583, 0.018642397597432137, 0.0001559912197990343, -0.03577517345547676, 0.016491899266839027, 0.003001440316438675, -0.02170436456799507, -0.004813697654753923, 0.00640876917168498, 0.01585102267563343, -0.014754410833120346, 0.02157619036734104, 0.0005625475314445794, -0.02993607334792614, 0.02423938922584057, -0.017147017642855644, 0.01795879565179348, 0.005237388890236616, -0.018727848306298256, -0.00601000152528286, -0.0035675482358783484, 0.004546665586531162, -0.01784486137330532, -0.025350242853164673, 5.813510506413877e-05, -0.01597919873893261, 0.00897227693349123, -0.02594839408993721, 0.020337160676717758, 0.011891827918589115, 0.024723608046770096, -0.01382157951593399, 0.022857943549752235, -0.01612161472439766, 0.0020383447408676147, 0.010182822123169899, 0.016377966850996017, -0.01999535970389843, 0.01605040766298771, 0.006825339514762163, 0.04144337400794029, -0.03204384818673134, -0.0071671404875814915, 0.008174741640686989, -2.5507124519208446e-05, 0.019439933821558952, -0.024680882692337036, 0.008231707848608494, 0.0018852463690564036, -0.0018478618003427982, 0.013892787508666515, -0.0013396107824519277, 0.026589272543787956, 0.02553538605570793, -0.0007552556926384568, 0.01597919873893261, -0.0025172221940010786, -0.0023605632595717907, 0.006522702984511852, 0.01793031208217144, -0.001602192292921245, -0.017574269324541092, -0.003350362181663513, -0.03341105207800865, 0.010602952912449837, -0.014134896919131279, -0.015509221702814102, 0.015138937160372734, 0.05001688376069069, 0.002809177152812481, 0.025264792144298553, 0.03446493670344353, -0.016306757926940918, 0.0036921631544828415, -0.03343953564763069, -0.013052526861429214, 0.0179730374366045, 0.0358036570250988, -0.001555906725116074, -0.02572052739560604, -0.004635676275938749, 0.007427051663398743, -0.018912989646196365, 0.01771668717265129, -0.01781637966632843, 0.010916270315647125, 0.000364053703378886, -0.002780693816021085, 0.014391247183084488, 0.00991223007440567, 0.014377006329596043, -0.016876425594091415, -0.002429991727694869, -0.017246710136532784, 0.007533864583820105, 0.0020330040715634823, -0.022630076855421066, 0.005977957509458065, 0.01293859351426363, -0.0003420235589146614, -0.015153178945183754, 0.0035479660145938396, 0.018329080194234848, -0.008281554095447063, -0.002408629050478339, -0.018613914027810097, -0.005678881891071796, -0.03386678546667099, 0.02418242208659649, -0.012404529377818108, -0.004607193171977997, -0.006668680347502232, 0.008324279449880123, 0.030306357890367508, -0.01956810988485813, -0.012383166700601578, 0.004870664793998003, -0.026318678632378578, 0.044946834444999695, 0.03568972274661064, -0.008872585371136665, 0.016406450420618057, -0.031189344823360443, -0.0019261912675574422, 0.0024958595167845488, -0.016292516142129898, 0.03819626569747925, -0.010752490721642971, -0.002891066949814558, 0.008388366550207138, -0.005493739619851112, -0.013024043291807175, -0.0038132178597152233, -0.002212805673480034, -0.00688586663454771, 0.010958995670080185, -0.004817258100956678, -0.022929152473807335, -0.003353922627866268, 0.009484978392720222, 0.034977637231349945, 0.012739209458231926, -0.029309438541531563, -0.006501340307295322, 0.02812737599015236, 0.009413770399987698, -0.011557146906852722, -0.0028501220513135195, -0.01202712394297123, 0.011137017048895359, 0.002972956979647279, 0.02770012430846691, 0.0039876787923276424, 0.006084770429879427, 0.013607953675091267, 0.010197063907980919, 0.0030637478921562433, 0.003407329088076949, 0.004838620778173208, 0.008822739124298096, 0.02214585803449154, -0.01599344052374363, 0.015366804786026478, 0.004486138466745615, -0.0039805578999221325, 0.013743249699473381, -0.008844101801514626, -0.020365644246339798, 0.0038381407503038645, -0.008687443099915981, -0.008836980909109116, -0.025136617943644524, 0.01955386810004711, -0.0001668950280873105, 0.006148857995867729, 0.008367004804313183, 0.019511142745614052, -0.03737024590373039, -0.014006721787154675, -0.021234389394521713, 0.00540828937664628, -0.003377065295353532, 0.017574269324541092, -0.008772892877459526, 0.0012319078668951988, -0.010239789262413979, -0.035006120800971985, 0.00016789640358183533, 0.02164739929139614, -0.020351402461528778, -0.013949754647910595, -0.0037455696146935225, 0.0007347831851802766, 0.034949153661727905, 0.0026169142220169306, -0.00990510918200016, 0.01192743144929409, 0.0008914420031942427, -0.005137696862220764, -0.035006120800971985, -0.02409697324037552, -0.029280954971909523, -0.000785074254963547, 0.004425611346960068, 0.01596495695412159, -0.017218226566910744, 0.004767412319779396, 0.0015826099552214146, -0.02015201933681965, 0.009741329587996006, -0.023384887725114822, -0.012589671649038792, -0.004204864613711834, 0.012411650270223618, 0.008153378963470459, 0.004005481023341417, -0.0008611783850938082, -0.024581190198659897, 0.007669160608202219, -0.013921271078288555, -0.01798727922141552, -0.015438012778759003, 0.009442253038287163, 0.00809641182422638, 0.0011473477352410555, 0.01496803667396307, -0.0012888747733086348, -0.03614545986056328, 0.017317919060587883, -0.010289635509252548, 0.00892243068665266, -0.007042525336146355, -0.008630475960671902, 0.007078129798173904, 0.032983798533678055, 0.03446493670344353, 0.01404232531785965, -0.03554730862379074, -0.02426787279546261, -0.03013545833528042, 0.005226707551628351, 0.012297715991735458, -0.00035737789585255086, 0.0022857943549752235, 0.0013823359040543437, -0.014583510346710682, -0.015210146084427834, 0.004211985506117344, 0.004692643415182829, 0.01788758672773838, -0.006800416391342878, -0.019596591591835022, -0.014248830266296864, -0.016591591760516167, -0.004970356822013855, 0.01409217156469822, -0.02788526751101017, -0.00657610921189189, -0.00345361465588212, 0.011564267799258232, 0.009677241556346416, -0.011165500618517399, -0.0014428632566705346, -0.026988040655851364, 0.009314077906310558, -0.005315718241035938, 0.01563739776611328, 0.028996121138334274, -0.01595071516931057, 0.013137977570295334, -0.038765933364629745, 0.015195904299616814, 0.01589374803006649, -0.01205560751259327, -0.0038737449795007706, -0.013857183046638966, 0.00784718245267868, 0.006227187346667051, 0.014811377972364426, -0.008188983425498009, 0.013764612376689911, 0.018898747861385345, 0.017004601657390594, 0.004984598141163588, -0.016278274357318878, -0.005020202603191137, -0.03791143000125885, -0.0011553587391972542, 0.006629515904933214, 0.014377006329596043, 0.00246915640309453, -0.01575133018195629, 0.0034892188850790262, 0.016862183809280396, -0.008901068940758705, -0.01983870193362236, -0.014725928194820881, -0.03380981832742691, -0.025165101513266563, 0.021462256088852882, -0.013308878056704998, 0.011742289178073406, -0.02405424788594246, -0.021490739658474922, 0.03024939075112343, -0.01407080888748169, 0.007138656917959452, 0.012482858262956142, 0.019069649279117584, 0.008431091904640198, -0.009591791778802872, 0.006476417649537325, 0.03774053230881691, -0.01760275289416313, 0.012326199561357498, -0.024410290643572807, -0.019140858203172684, 0.008295795880258083, -0.00895803514868021, 0.018599672242999077, -0.019012682139873505, -0.008488059043884277, -0.014142017811536789, -0.002533244201913476, -0.012668000534176826, -0.009527703747153282, 0.035006120800971985, -0.03007849119603634, -0.017275193706154823, -0.020835621282458305, -0.001723246881738305, -0.002266212133690715, 0.011172621510922909, 0.011628355830907822, 0.001170490519143641, 0.006341121159493923, -0.007590831257402897, -0.01953962631523609, -0.010467656888067722, -0.0041763815097510815, 0.03557579219341278, 0.0032951754983514547, 0.03557579219341278, 0.032983798533678055, 0.009292715229094028, -0.020906830206513405, -0.015138937160372734, 0.0197247676551342, 0.007761731743812561, 0.01981021836400032, -0.010004800744354725, -0.00784006156027317, 0.00011226472997805104, 0.011158379726111889, -0.005977957509458065, -0.01577981375157833, -0.023299437016248703, 0.010553106665611267, -0.002184322103857994, 0.008744409307837486, -0.010716886259615421, 0.007469776552170515, -0.018371805548667908, -0.01619282364845276, 0.0028857265133410692, -0.0015122914919629693, -0.004382885992527008, 0.009200144559144974, -0.004379325546324253, 0.01808697171509266, -0.00301212165504694, 0.006376725621521473, -0.006996240001171827, -0.009292715229094028, 0.0032061648089438677, -0.03389526903629303, -0.020963797345757484, -0.022744011133909225, 0.0037206467241048813, 0.0400192029774189, -0.004660599399358034, -0.007569468580186367, 0.019197825342416763, -0.009449373930692673, -0.006216506473720074, -0.0007054096786305308, -0.0026364964433014393, 0.028397969901561737, -0.018414530903100967, -0.013593711890280247, -0.011457455344498158, 0.012219387106597424, 0.0007472446886822581, -0.018642397597432137, -0.013301757164299488, -0.014597752131521702, -0.02586294524371624, 0.00907909031957388, 0.019354483112692833, 0.02611929550766945, -0.03748418018221855, 0.006725647486746311, -0.0014713465934619308, 0.010261151939630508, 0.0011197543935850263, -0.010538864880800247, 0.019069649279117584, -0.008196104317903519, -0.004592951387166977, -0.001409929245710373, -0.010268272832036018, 0.022473417222499847, -0.009193023666739464, -0.011528664268553257, -0.006013561971485615, 0.026859864592552185, -0.01501076202839613, 0.023185502737760544, -0.017218226566910744, -0.009193023666739464, -0.02200344204902649, 0.021234389394521713, 0.01403520442545414, -0.015238629654049873, 0.030705126002430916, -0.033126216381788254, -0.014270192943513393, -0.011421850882470608, -0.0019902789499610662, 0.023356404155492783, -0.02601960301399231, 0.007149338256567717, -0.012176661752164364, -0.010474777780473232, 0.01103020366281271, 0.0032738130539655685, -0.008751530200242996, 0.011322159320116043, -0.016463415697216988, 0.020408369600772858, 0.04121550917625427, -0.027016522362828255, 0.010068888776004314, 0.016591591760516167, 0.019112374633550644, 0.022644318640232086, -0.03420858830213547, -0.009506341069936752, 0.0024780575186014175, -0.010659920051693916, -0.00323998904787004, -0.023114293813705444, -0.020536545664072037, -0.01203424483537674, -0.00892243068665266, 0.015381046570837498, 0.00994071364402771, -0.024766333401203156, 0.010674160905182362, 0.0036565589252859354, 0.009193023666739464, 0.03141720965504646, -0.019055407494306564, -0.004094491712749004, -0.003161659464240074, 0.0039734370075166225, -0.032841380685567856, -0.003941392991691828, -0.0021683003287762403, 0.04158579185605049, 0.0179018285125494, -0.030932992696762085, -0.027002280578017235, 0.012482858262956142, -0.005789254792034626, -0.0023997281678020954, -0.008495179936289787, 0.025179343298077583, 0.017275193706154823, -0.010325239039957523, -0.010460535995662212, 0.04383598268032074, 0.001088600722141564, 0.022416450083255768, -0.026375645771622658, -0.02395455539226532, 0.01610737293958664, 0.04571588709950447, 0.01566588133573532, -0.004621434956789017, -0.01605040766298771, -0.014305797405540943, -0.0005376245244406164, -0.017118534073233604, 0.004635676275938749, 0.004119414370507002, -0.007103052455931902, 0.0021006520837545395, -0.06004304811358452, 0.009171660989522934, 0.006034924648702145, 0.0040553268045187, -0.0010877106105908751, -0.02388334646821022, -0.021334081888198853, -0.022672802209854126, 0.007612193934619427, -0.006063407752662897, -0.014448214322328568, 0.0021113334223628044, -0.024737849831581116, 0.011471697129309177, 0.005782133899629116, -0.0024104092735797167, 0.014384126290678978, -0.002753990702331066, 0.0522385910153389, 0.011464576236903667, 0.01502500381320715, 0.02573476918041706, 0.0069713168777525425, -0.010197063907980919, -0.011243829503655434, -0.007462655659765005, -0.02757195010781288, 0.0016280054114758968, 0.025407209992408752, 0.00996207632124424, -0.019368724897503853, -0.018400289118289948, 0.04127247631549835, -0.03198688104748726, -0.01821514591574669, -0.026532305404543877, -0.00813201628625393, -0.029110053554177284, 0.0027842542622238398, -0.00030530666117556393, -0.0045110615901649, 0.004842181224375963, 0.016705526039004326, 0.0038523825351148844, 0.019226308912038803, -0.02993607334792614, -0.0016155439661815763, -0.010332359932363033, 0.04600072279572487, 0.0004722016747109592, 0.01761699467897415, -0.005329960025846958, -0.0057607716880738735, 0.009805416688323021, -0.022459175437688828, 0.012639516964554787, 0.19619378447532654, -0.004874225240200758, 0.008003841154277325, 0.013031164184212685, -0.02012353576719761, 0.016491899266839027, 0.019411450251936913, -0.009648757986724377, -0.0010076009202748537, -0.0004339270817581564, -0.029337922111153603, 0.027101973071694374, -0.027386806905269623, 0.010553106665611267, -0.01995263434946537, -0.02398303896188736, -0.018856024369597435, -0.009193023666739464, -0.023399129509925842, -0.0007739479187875986, 0.0029747372027486563, 0.001216776086948812, -0.038452617824077606, -0.016320999711751938, 0.04847877845168114, 0.004283193964511156, -0.0017045546555891633, 0.017147017642855644, 0.02782830037176609, -0.011863344348967075, -0.02770012430846691, 0.004486138466745615, -0.01192743144929409, 0.013372965157032013, -0.016805216670036316, -0.00907196942716837, 0.0073487223125994205, -0.0010165020357817411, 0.020721687003970146, 0.004204864613711834, 0.008594871498644352, -0.013244790025055408, -0.010674160905182362, -0.016847942024469376, 0.024794816970825195, 0.03927863389253616, -0.020280195400118828, -0.022373726591467857, -0.018856024369597435, 0.01289586815983057, -0.042924512177705765, 0.0023213985841721296, 0.013444174081087112, 0.010738248936831951, -0.02224555052816868, 0.010958995670080185, -0.02012353576719761, -0.008274433203041553, 0.022459175437688828, 0.012974197044968605, -0.0313032791018486, 0.009093331173062325, -0.03543337434530258, 0.03586062416434288, -0.00701760221272707, 0.014626235701143742, -0.02557811141014099, -0.00784718245267868, -0.008203225210309029, -0.018656639382243156, -0.003912909887731075, -0.012368924915790558, -0.004219106398522854, 0.0394495353102684, -0.010446294210851192, -0.013081010431051254, -0.005796375684440136, 0.014206104911863804, 0.0049952794797718525, -0.0002661419566720724, 0.006597471889108419, -0.010873544961214066, -0.01824362948536873, -0.017488818615674973, -0.029152778908610344, -0.0313032791018486, 0.02379789762198925, 0.003140297019854188, -0.025193585082888603, 0.0025101013015955687, -0.003937832545489073, 0.0017713126726448536, -0.0009087991202250123, 0.004681962076574564, -0.0080394446849823, 0.025207826867699623, 0.008310037665069103, 0.02000960148870945, 0.00894379336386919, -0.0070603275671601295, -0.017132775858044624, 0.04386446624994278, 0.0023285194765776396, 0.02201768383383751, 0.017246710136532784, -0.007106612902134657, -0.015466496348381042, 0.019212067127227783, 0.002077509416267276, -0.043066930025815964, 0.008836980909109116, -0.02167588286101818, 0.006390967406332493, -0.025378726422786713, 0.017488818615674973, -0.006195143796503544, -0.020949555560946465, 0.0010405349312350154, 0.005785694345831871, -0.018670881167054176, 0.012297715991735458, -0.00040789146441966295, 0.0034091093111783266, 0.010752490721642971, -0.0006008221535012126, -0.020807137712836266, -0.028540385887026787, -0.0003796305682044476, -0.02798496000468731, -0.007498260121792555, 0.028412209823727608, -0.05423242971301079, 0.0008055467042140663, -0.0012701824307441711, 0.008708805777132511, -0.01204848662018776, -0.0010618974920362234, -0.013928391970694065, -0.0021220147609710693, 0.023570029065012932, -0.035034604370594025, 0.010588711127638817, -0.004721126519143581, -0.004407809115946293, -0.0026169142220169306, -0.01110853347927332, 0.007092371582984924, -0.006501340307295322, 0.013166460208594799, -0.009798295795917511, 0.014626235701143742, -0.01612161472439766, -0.0011357762850821018, -0.026389887556433678, 0.02375517226755619, -0.017317919060587883, -0.013444174081087112, -0.022387968376278877, 0.03936408460140228, -0.0036458775866776705, -0.022487659007310867, 0.028469176962971687, 0.014170501381158829, 0.0007681621937081218, -0.03133176267147064, -0.015480738133192062, -0.18297748267650604, 7.727240154054016e-05, -0.007224107161164284, -0.030847543850541115, 0.027116214856505394, 0.00804656557738781, 0.020835621282458305, 0.014896828681230545, -0.03756963089108467, -0.0009452934609726071, 0.022758251056075096, -0.010367964394390583, -0.030876025557518005, -0.017360644415020943, -0.025065409019589424, 0.01993839256465435, -0.04189911112189293, 0.032812900841236115, 0.03751266375184059, 0.02574901096522808, 0.054460298269987106, -0.03563275933265686, 0.012561188079416752, 0.028269793838262558, 0.018941473215818405, -0.010716886259615421, -0.004977477714419365, -0.01566588133573532, 0.0015220827190205455, -0.03136024624109268, -0.008203225210309029, 0.030847543850541115, 0.005799936130642891, 0.0027522104792296886, -0.01617858186364174, 0.00539404759183526, 0.013942633755505085, -0.003136736573651433, 0.016691284254193306, -0.008374125696718693, 0.03218626230955124, 0.02187526598572731, -0.010944753885269165, 0.014455335214734077, -0.009513461962342262, 0.027030764147639275, -0.011300796642899513, -0.030334841459989548, -0.004560907371342182, -0.018471498042345047, 0.02402576431632042, -0.016947634518146515, -0.005329960025846958, 0.008331400342285633, 0.026532305404543877, -0.009492099285125732, -0.02556386962532997, 0.00892955157905817, -0.017460336908698082, -0.007790215313434601, 0.024737849831581116, -0.017075810581445694, 0.006334000267088413, -0.0080394446849823, 0.031046926975250244, -0.009969196282327175, -0.05135560408234596, 0.00600288063287735, -0.037199344485998154, -0.014213225804269314, 0.0067719328217208385, -0.015224387869238853, 0.022473417222499847, 0.013059647753834724, 0.007754610851407051, 0.029366405680775642, -0.009463615715503693, 0.004090931266546249, -0.009406649507582188, -0.013216306455433369, -0.0018514222465455532, -0.006259231362491846, 0.0005509761394932866, -0.027215907350182533, 0.016534624621272087, -0.01771668717265129, -0.007662039715796709, 0.005255190655589104, 0.00803232379257679, -0.01821514591574669, 0.0282270684838295, -0.004956115037202835, -0.009214386343955994, 0.0016182143008336425, 0.01202000305056572, 0.024538464844226837, -0.010289635509252548, -0.008687443099915981, 0.002522562863305211, -0.01576557196676731, 0.012240749783813953, -0.01771668717265129, -0.03791143000125885, -0.012361804023385048, 0.025336001068353653, 0.017232468351721764, -0.0196535587310791, 0.017104294151067734, 0.022729769349098206, 0.008808497339487076, -0.010118735022842884, 0.00271126558072865, 0.008879706263542175, 0.014782894402742386, -0.01623554900288582, 0.010339480824768543, -0.013209185563027859, -0.00390934944152832, 0.01597919873893261, -0.02166164107620716, 0.04625707119703293, 3.8330224924720824e-05, 0.0036850422620773315, -0.004087370820343494, -0.01958235166966915, -0.0008304697112180293, -0.1382015496492386, -0.016933392733335495, 0.006615274120122194, -0.0012016443070024252, -0.00554002495482564, 0.0156516395509243, -0.009492099285125732, 0.011329280212521553, -0.005272992886602879, 0.0067719328217208385, -0.027187423780560493, -0.02204616740345955, -0.02213161624968052, -0.004827939439564943, -0.02374093048274517, -0.010417810641229153, -0.001513181603513658, -0.012746330350637436, 0.004607193171977997, 0.032556548714637756, 0.017061568796634674, 0.003154538571834564, 0.007882785983383656, 0.005739409010857344, -0.010709765367209911, 0.009442253038287163, -0.028953395783901215, 0.0017472797771915793, -0.020921071991324425, 0.032955314964056015, 0.021006520837545395, 0.0006506681093014777, 0.013088131323456764, -0.02204616740345955, 0.0007561457459814847, -0.015438012778759003, -0.0051946635358035564, -0.01828635483980179, 0.01983870193362236, 0.014597752131521702, 0.0140779297798872, 0.010175701230764389, 0.031046926975250244, 0.0006172891007736325, 0.023014603182673454, -0.013095252215862274, -0.009363924153149128, 0.012668000534176826, -0.00352660333737731, -0.0071671404875814915, -0.04822243005037308, -0.023370645940303802, -0.02396879717707634, -0.022444933652877808, 0.010197063907980919, -0.026261713355779648, 0.00806792825460434, 0.010310998186469078, 0.012297715991735458, -0.006992679554969072, -0.017403369769454002, 0.010667040944099426, 0.002052586292847991, 0.004219106398522854, 0.0003707295109052211, 0.002773572923615575, -0.030562708154320717, -0.04198456183075905, 0.027258632704615593, -0.022744011133909225, -0.01593647338449955, 0.020508062094449997, -0.017460336908698082, 0.01768820360302925, -0.023228228092193604, 0.0160788893699646, 0.005878265481442213, -0.0003531498950906098, 0.00895803514868021, -0.02550690248608589, -0.015081970952451229, -0.017018843442201614, -0.0081106536090374, -0.03175901249051094, 0.0398767851293087, 0.00903636496514082, 0.01791607029736042, 0.014170501381158829, 0.04187062755227089, -0.007576589472591877, 0.005034444388002157, -0.02376941405236721, 0.01603616587817669, -0.023555787280201912, -0.00981965847313404, 0.009299836121499538, 0.03793991357088089, -0.011279433965682983, 0.00050513562746346, 0.018571188673377037, -0.00138500623870641, 0.002326739253476262, -0.038851384073495865, 0.0275861918926239, -0.01808697171509266, -0.00202054250985384, 0.0035408451221883297, -0.011749410070478916, 0.008851222693920135, -0.0012737428769469261, 0.005515101831406355, 0.018955715000629425, -0.03774053230881691, 0.010923391208052635, 0.00907909031957388, -0.006180902011692524, -0.011357763782143593, -0.024837542325258255, 0.004229787737131119, -0.002433552173897624, 0.02973669022321701, 0.01202712394297123, -0.0034411530941724777, 0.0039057887624949217, 0.009613154456019402, -0.0015496760606765747, -0.01613585650920868, -0.0040731290355324745, 0.01382157951593399, 0.020394127815961838, 0.006123935338109732, -0.032755933701992035, 0.007298876065760851, -0.01765972003340721, 0.014668961055576801, 0.01793031208217144, -0.0013298196718096733, -0.005718046333640814, 0.019454175606369972, -0.0025902108754962683, 0.054716646671295166, 0.013914150185883045, -0.004685522522777319, -0.0216901246458292, 0.021262872964143753, -0.02574901096522808, -0.006512021645903587, -0.013358723372220993, -0.03249958157539368, 0.013401448726654053, 0.018556946888566017, 0.008402608335018158, 0.02170436456799507, 0.012319078668951988, -0.015352563001215458, -0.02422514744102955, 0.02611929550766945, -0.03577517345547676, 0.020650478079915047, -0.004970356822013855, -0.009691483341157436, -0.0196535587310791, 0.02573476918041706, 0.005913869943469763, 0.0314456932246685, -0.007640677038580179, 0.026617756113409996, -0.034949153661727905, -0.017474576830863953, 0.017289435490965843, 0.027344083413481712, 0.017317919060587883, -0.025122376158833504, -0.013885666616261005, -0.0038452616427093744, 0.029124295338988304, 0.04175669327378273, -0.0300500076264143, 0.010140097700059414, 0.010909149423241615, -0.03007849119603634, 0.040446456521749496, 0.03534792363643646, -0.005899628158658743, 0.003353922627866268, 0.018998440355062485, 0.023313678801059723, -0.002458475064486265, -0.0037918551824986935, -0.015423771925270557, -0.01771668717265129, 0.00551866227760911, -0.008523663505911827, 0.0052765533328056335, -0.01820090413093567, -0.009463615715503693, 0.017503060400485992, 0.010716886259615421, -0.004621434956789017, 0.008730168454349041, -0.004856423009186983, 0.007961115799844265, -0.008509421721100807, -0.00043637488852255046, 0.01765972003340721, 0.011300796642899513, -0.016776733100414276, 0.018386047333478928, 0.008010962046682835, -0.029010362923145294, -0.014668961055576801, 0.02609081193804741, -0.0019795976113528013, 0.02566356025636196, 0.0036529984790831804, 0.010140097700059414, -0.025321759283542633, 0.017303677275776863, 0.019098132848739624, -0.011421850882470608, -0.01409217156469822, 0.014626235701143742, 0.021020762622356415, 0.009762692265212536, 0.01985294371843338, -0.022971877828240395, 0.042639680206775665, 0.03378133475780487, 0.018827540799975395, -0.021462256088852882, 0.0017490600002929568, -0.011443213559687138, 0.0022466296795755625, -0.0071707009337842464, -0.0042725130915641785, -0.022487659007310867, 0.0004001030174549669, 0.0019048287067562342, 0.01978173479437828, 0.007398568093776703, 0.00646573631092906, 0.06152418628334999, 0.044747453182935715, -0.020992280915379524, -0.00056566292187199, 0.0057607716880738735, 0.003101132344454527, 0.0099335927516222, 0.022829459980130196, 0.005782133899629116, -0.026674721390008926, 0.018329080194234848, -0.007049646228551865, 0.01989566907286644, -0.019112374633550644, -0.005529343616217375, 0.003022802760824561, 0.00028194134938530624, 0.018343321979045868, -0.03600304201245308, 0.008580629713833332, 0.019411450251936913, 0.019496900960803032, 0.021191664040088654, -0.005248070228844881, -0.03247109800577164, 0.00553290406242013, 0.006821779068559408, -0.010667040944099426, -0.010916270315647125, -0.03352498263120651, 0.01505348738282919, 0.008359883911907673, -0.013458415865898132, -0.0010975017212331295, 0.01192031055688858, 0.008730168454349041, -0.0054723769426345825, -0.015309837646782398, 0.007861423306167126, 0.03252806514501572, 0.011343521997332573, 0.01283890102058649, -0.017417611554265022, -0.046627357602119446, -0.01768820360302925, -0.009662999771535397, -0.02419666387140751, 0.0017196864355355501, -0.02613353729248047], "c1505c31-0d44-4e42-964c-1889324dc33b": [-0.0021531940437853336, 0.007986887358129025, -0.014286595396697521, -0.018286840990185738, -0.002862421330064535, 0.006837156135588884, -0.007816808298230171, -0.0038097586948424578, -0.01806914061307907, -0.026396185159683228, 0.011783039197325706, 0.02718534879386425, -0.0007249596528708935, 0.021184979006648064, 0.005503740627318621, -0.003673695959150791, 0.017130307853221893, 4.637297024601139e-05, -0.01955222524702549, 0.004626135341823101, -0.007537879515439272, 0.007143297698348761, 0.01383078470826149, -0.0026787365786731243, -0.017497677356004715, 0.014762815088033676, 0.011701401323080063, -0.021593168377876282, 0.0030342007521539927, -0.011388457380235195, 0.008408681489527225, -0.023021826520562172, -0.018436510115861893, -0.021361861377954483, -0.0233075600117445, -0.019878776744008064, -0.005248622968792915, -0.001409100485034287, 0.009191042743623257, -0.02611045353114605, 0.025743084028363228, 0.0162050798535347, -0.009503987617790699, 0.019470587372779846, -0.0031804682221263647, 0.015810498967766762, 0.0006471487577073276, -0.03355308994650841, -0.01064011175185442, 0.013130061328411102, 0.02593357115983963, 0.04220668226480484, -0.029879393056035042, -0.003005287377163768, -0.00013521242362912744, -0.00260730367153883, 0.007143297698348761, 0.01394643820822239, 0.0003212357987649739, -0.026450609788298607, 0.004915269091725349, 0.010762568563222885, -0.0016480607446283102, -0.004398230463266373, -0.015538373030722141, -0.007905249483883381, -0.018137171864509583, 0.02129383012652397, -0.01186467707157135, -0.010837403126060963, 0.03249179944396019, 0.011089119128882885, -0.002920248080044985, 0.025253256782889366, 0.03665532171726227, -0.005245221313089132, -0.0034134758170694113, -0.0010119671933352947, -0.024015085771679878, 0.01693982072174549, -0.0033760585356503725, -0.002964468440040946, -0.01806914061307907, 0.020599909126758575, 0.0071364943869411945, -0.023416409268975258, -0.00989856943488121, 0.03684581071138382, -0.03766218572854996, -0.02212381362915039, -0.009748900309205055, 0.013014407828450203, 0.004357411526143551, 0.027171744033694267, 0.00635073147714138, 0.018409298732876778, -0.018096353858709335, 0.041825708001852036, 0.003479806473478675, -0.015211822465062141, -0.0020562491845339537, 0.003117539221420884, 0.004017254337668419, -0.004714576527476311, -0.034423891454935074, -0.007605911232531071, -0.003500215709209442, 0.0018946746131405234, 0.02193332463502884, -0.00479961559176445, -0.015034940093755722, 0.038669049739837646, 0.006075204350054264, -0.026314547285437584, 0.010776174254715443, -0.02556620165705681, 0.0056874253787100315, -0.0357845202088356, -0.027280593290925026, 0.009884962812066078, 0.008279422298073769, -0.007544682826846838, 0.007701155263930559, 0.009946191683411598, 0.021253010258078575, -0.006755518727004528, 0.008660397492349148, -0.005568370688706636, -0.010987072251737118, -0.019116824492812157, 0.023117071017622948, 3.896525413438212e-06, 0.001498391735367477, 0.0005952747887931764, -0.01853175461292267, -0.00016561395023018122, -0.013694722205400467, 0.013681115582585335, -0.003908404149115086, -0.031620997935533524, 0.027566324919462204, 0.011136741377413273, -0.016531631350517273, 0.006367739289999008, -0.009946191683411598, 0.0007785343914292753, 0.014721996150910854, 0.001770517323166132, -0.03534911945462227, 0.0030852241907268763, 0.001324061187915504, -0.004911867436021566, 0.008299831300973892, 0.010973465628921986, -0.00046644030953757465, 0.005238418001681566, -0.017538495361804962, 0.012925966642796993, 0.011102725751698017, 0.00643917266279459, 0.015878530219197273, 0.016286717727780342, -0.01147689763456583, -0.0007249596528708935, 0.007027644198387861, 0.040329016745090485, 0.02968890592455864, 0.007367801386862993, 0.012572203762829304, 0.005394890438765287, -0.0011318725300952792, 0.01764734648168087, -0.03475044295191765, 0.021239405497908592, 0.011633370071649551, -0.0020902648102492094, -0.0014643759932368994, -0.0006858416018076241, -0.027090106159448624, 0.0037621366791427135, 0.01082379650324583, -0.014681177213788033, 0.005388087127357721, 0.021116947755217552, -0.0340973399579525, 0.005136371124535799, 0.010272742249071598, 0.00010805300553329289, 0.008633185178041458, 0.014694783836603165, 0.01823241636157036, 0.02343001589179039, 0.013272927142679691, -0.0010247230529785156, -0.6322022676467896, -0.007075265981256962, -0.030967894941568375, -0.013068832457065582, 0.004612529184669256, 0.008878098800778389, -0.000320810591802001, 0.010953056626021862, -0.02020532637834549, 0.02133464813232422, 0.018749454990029335, -0.010395199060440063, 0.012837526388466358, -0.023579685017466545, -0.003211082424968481, -0.02504916302859783, -0.007735170889645815, -0.02366132289171219, -0.007898446172475815, 0.015211822465062141, -0.00148648617323488, 0.013640296645462513, -0.02443687990307808, -0.002831807127222419, -0.010143482126295567, 0.02134825475513935, 0.0026141067501157522, 0.013653903268277645, -0.00013096045586280525, 0.02711731754243374, -0.0181235671043396, -0.02355247177183628, -0.0004783458134625107, -0.012429337948560715, 0.04209783300757408, -0.0048676468431949615, 0.012272865511476994, 0.003772341413423419, 0.024246392771601677, 0.032274097204208374, -0.03224688768386841, -0.02789287641644478, 0.036628108471632004, 0.012837526388466358, 0.015130184590816498, -0.013354565016925335, 0.006150038912892342, 0.011572142131626606, -0.003857380710542202, -0.02163398638367653, -0.0010485340608283877, 0.008694413118064404, -0.002335177967324853, -0.016259506344795227, 0.02152513712644577, 0.012742281891405582, 0.025239652022719383, 0.011272803880274296, 0.01835487224161625, -0.013007604517042637, -0.0005344717064872384, -0.0007479202467948198, 0.005105757154524326, -0.01770177111029625, -0.007673942483961582, 0.018681423738598824, -0.025715870782732964, 0.004942481406033039, 0.019946807995438576, -0.023021826520562172, 0.012388519011437893, 0.016531631350517273, -0.006289503537118435, -0.013762753456830978, 0.027103710919618607, 0.02181086875498295, -0.0036158692091703415, -0.0045751119032502174, 0.022273482754826546, 0.011395260691642761, -0.016654087230563164, -0.008864492177963257, -0.005738448817282915, -0.005163583438843489, 0.02277691476047039, 0.006755518727004528, -0.0031719643156975508, -0.007401817012578249, 0.003399869427084923, 0.015048546716570854, -0.011871480382978916, 0.026668310165405273, 0.004088687244802713, -0.028818102553486824, -0.007143297698348761, 0.022804126143455505, 0.0038811916019767523, -0.0028692244086414576, -0.008150162175297737, -0.03899560123682022, -0.001246675499714911, -0.017905864864587784, 0.005898322910070419, 0.0016616670181974769, 0.029498416930437088, 0.018763061612844467, -0.002224626950919628, 0.01602819934487343, 0.03262786194682121, -0.005993566941469908, -0.016586055979132652, -0.038070373237133026, -0.014613145962357521, 0.008490319363772869, 0.007252147886902094, -0.02200135588645935, -0.0012118093436583877, -0.016980638727545738, -0.006942604668438435, -0.009619641117751598, 0.03170263394713402, 0.02265445701777935, -0.009463168680667877, -0.015184609219431877, 0.02313067764043808, 0.016885394230484962, -0.0007585501880384982, -0.013987257145345211, -0.01406889408826828, 0.006554825697094202, 0.0007496210164390504, -7.945855759317055e-05, 0.030124306678771973, -0.0017186433542519808, -0.030777407810091972, -0.017375221475958824, 0.0037145146634429693, -0.025552595034241676, 0.024341637268662453, -0.03004266880452633, -0.02487228251993656, 0.0026175084058195353, 0.04280535876750946, -0.013007604517042637, 0.004047868773341179, -0.028899740427732468, -0.046179719269275665, -0.000432424625614658, -0.010061845183372498, 0.003646483412012458, 0.011034693568944931, 0.0185453612357378, -0.006864368915557861, 0.03959427773952484, 0.0048914579674601555, 0.003643081756308675, 0.011578945443034172, -0.006211267318576574, -0.02270888350903988, -0.01529345940798521, -0.021906113252043724, 0.021266616880893707, -0.01263343170285225, -0.01001422293484211, -0.0024219180922955275, -0.009503987617790699, -0.022028569132089615, 0.04179849475622177, -0.023212315514683723, -0.037716612219810486, 0.02556620165705681, -0.017388826236128807, 0.012592612765729427, -0.007626320701092482, -0.00793246179819107, 0.016681300476193428, -0.0286820400506258, 0.011163953691720963, -0.0066568730399012566, -0.024300817400217056, 0.003949223086237907, 0.015361491590738297, 0.020055659115314484, -0.012252455577254295, 0.01135444175451994, 0.01325932051986456, 0.02145710587501526, 0.014028076082468033, -0.0032944208942353725, -0.0028930355329066515, 0.023457229137420654, 0.01997402124106884, -0.021729230880737305, -0.004132907837629318, 0.010456427000463009, 0.031376082450151443, -0.012361306697130203, 0.005752055440098047, -0.003731522476300597, 0.041281457990407944, 0.02884531579911709, 0.0008844082476571202, -0.017198339104652405, -0.016830969601869583, -0.00024916502297855914, -0.031974758952856064, 0.012354503385722637, -0.008054918609559536, 0.04068278148770332, -0.008190981112420559, 0.00021876348182559013, -0.018558967858552933, -0.023293953388929367, -0.01711670123040676, 0.009259073995053768, 0.03989361599087715, -0.009810128249228, 0.005292843095958233, 0.007503863889724016, 0.006622857414186001, 0.01835487224161625, 0.02069515362381935, 0.03328096494078636, 0.005568370688706636, 0.0038641837891191244, 0.0033641529735177755, 0.0230762530118227, -0.01752489060163498, -0.010395199060440063, -0.039022814482450485, 0.012259258888661861, -0.0014975413214415312, 0.015579191967844963, 0.007027644198387861, -0.001653163111768663, 0.0005327709368430078, 0.034968141466379166, -0.016259506344795227, 0.026423398405313492, -0.00900055468082428, -0.011334031820297241, 0.028464339673519135, 0.018463723361492157, -0.045635465532541275, 0.0016718717524781823, -0.008340650238096714, 0.0496084988117218, 0.011422473005950451, -0.016409175470471382, 0.04585316777229309, -0.004592119716107845, 0.0038879946805536747, -0.027920087799429893, -0.00621807062998414, -0.007456242106854916, -0.004813221748918295, 0.01066732406616211, 0.003544436302036047, 0.031620997935533524, 0.014381838962435722, -0.0019627059809863567, 0.004020655993372202, 0.02260003238916397, 0.002654925687238574, -0.0001748619688441977, 0.00046558992471545935, -0.010776174254715443, -0.0273758377879858, -0.010095860809087753, -0.014477082528173923, -0.03543075546622276, -0.03379800170660019, -0.0038471759762614965, 0.0011556835379451513, 0.027389444410800934, -0.002124280668795109, -0.013225304894149303, 0.0038947979919612408, 0.010402001440525055, -0.003731522476300597, -0.029226291924715042, -0.02128022350370884, 0.018708636984229088, 0.009136618115007877, -0.006884778384119272, 0.008054918609559536, -0.0014686279464513063, 0.006942604668438435, 0.007497061043977737, 0.007326982449740171, -0.007884839549660683, 0.008082130923867226, -0.015878530219197273, -0.006296306382864714, -0.012810313142836094, -0.012232046574354172, 0.03613828122615814, -0.006918794009834528, 0.012272865511476994, 0.006462983321398497, 0.010129876434803009, 0.0047519938088953495, -0.008850885555148125, -0.003908404149115086, 0.059704359620809555, -0.013823981396853924, 0.01436823233962059, -0.009857750497758389, 0.004602324683219194, -0.013266123831272125, -0.007265754044055939, -0.009191042743623257, -0.014028076082468033, -0.021443499252200127, 0.027824845165014267, -0.004789411090314388, 0.030124306678771973, -0.006071802694350481, 0.018504541367292404, -0.0018623596988618374, -0.00681334501132369, -0.008912114426493645, -0.012320487760007381, 0.008129753172397614, 0.055350352078676224, 0.036573681980371475, -0.021484317258000374, 0.010803387500345707, -0.015089365653693676, 0.019987626001238823, -0.008633185178041458, -0.015361491590738297, 0.023742960765957832, -0.00870121642947197, -0.023742960765957832, 0.004493474494665861, 0.006041188724339008, -0.008755641989409924, 0.014354626648128033, 0.009211452677845955, 0.005656811408698559, -0.014762815088033676, -0.010218316689133644, -0.03464158996939659, 0.026450609788298607, 0.00251035881228745, 0.028219426050782204, 0.016844576224684715, -0.008864492177963257, -0.01043601706624031, 0.01978353224694729, 0.007381407544016838, -0.02413754165172577, -0.01692621409893036, -0.005180591717362404, 0.00455810409039259, 0.018735848367214203, 0.033471450209617615, -0.010871418751776218, 0.03673695772886276, 0.001490738126449287, -0.0026175084058195353, 0.01487166527658701, -0.038015950471162796, -3.2607240427751094e-05, 0.03083183243870735, 0.010504049248993397, -0.0030716180335730314, 0.010272742249071598, 0.021742837503552437, -0.0077623832039535046, 0.007245344575494528, -0.03766218572854996, -0.01650441810488701, -0.0017603125888854265, -0.015102972276508808, -0.03951264172792435, -0.00403766380622983, -0.003768939757719636, 0.019280100241303444, 0.011279607191681862, -0.014585933648049831, -0.011599354445934296, -0.030423644930124283, -0.033961277455091476, -0.03153935819864273, 0.027022074908018112, 0.0018079346045851707, -0.0005008812295272946, -0.002569886390119791, -0.0077827926725149155, -0.0030682163778692484, -0.03768939897418022, 0.007816808298230171, -0.0060275825671851635, -0.03423340246081352, -0.04125424474477768, -0.020123690366744995, 0.0026294137351214886, 0.01517100352793932, -0.013905619271099567, 0.01195311825722456, -0.028763677924871445, 0.00774877704679966, -0.020667940378189087, -0.03499535471200943, -0.006952809635549784, -0.02217823825776577, 0.006354133132845163, 0.011272803880274296, 0.004973095841705799, 0.023348378017544746, -0.013456611894071102, 0.016055410727858543, 0.009333908557891846, 0.005486732814460993, -0.005670417565852404, -0.03515863046050072, -0.018749454990029335, 0.03679138422012329, -0.010231923311948776, 0.01710309460759163, 0.02813778817653656, -0.030913470312952995, 0.027647962793707848, 0.00309372809715569, -0.008939326740801334, 0.0026447209529578686, -0.0035682471934705973, -0.005027520935982466, 0.00624528294429183, 0.015116577968001366, -0.010095860809087753, -0.008109343238174915, 0.026545854285359383, -0.031076746061444283, 0.0332537516951561, 0.01344300527125597, 0.03534911945462227, 0.03959427773952484, -0.0006934951525181532, 0.0012084078043699265, 0.01800110936164856, -0.006384747568517923, 0.014613145962357521, -0.05132289230823517, 0.008619578555226326, 0.026151271536946297, 0.0007542981766164303, 0.007660336326807737, 0.012715069577097893, -0.007558288984000683, -0.0010459828190505505, 0.0016820764867588878, 0.02533489465713501, 0.015443128533661366, -0.00837466586381197, -0.0207359716296196, -0.008544744923710823, 0.016967032104730606, -0.02813778817653656, -0.0030682163778692484, -0.021212192252278328, 0.0239606611430645, 0.02337559126317501, 0.02771599404513836, -0.0007866131491027772, -0.010599292814731598, -0.012177621945738792, -0.03458716720342636, -0.004371017683297396, 0.0038811916019767523, -0.0002438500669086352, 0.02658667229115963, 0.01085100881755352, 0.011912299320101738, -0.012082377448678017, 0.017062276601791382, 0.0076195173896849155, -0.008327043615281582, -0.001526454696431756, -0.00379275088198483, 0.03333538770675659, 0.02665470540523529, 0.023879023268818855, -0.0048574423417449, 0.016708513721823692, 0.005187394563108683, -0.021565955132246017, 0.010388395749032497, -0.008891704492270947, -0.009694474749267101, -0.005850700661540031, 0.00885768886655569, 0.03143050894141197, -0.010259135626256466, 0.020940067246556282, -0.015239034779369831, 0.012381715700030327, 0.03260064870119095, 0.0004885505186393857, 0.0009685971308499575, -0.025008345022797585, -0.010606096126139164, 0.002173603279516101, 0.0034900109749287367, 0.006391550414264202, 0.011973527260124683, -0.010844205506145954, -0.013694722205400467, 0.00779639882966876, 0.005044528748840094, 0.0016148955328390002, 0.028654828667640686, 0.013238911516964436, -0.01955222524702549, -0.0006042039021849632, 0.04601644352078438, 0.017552101984620094, -0.04797574505209923, -0.011034693568944931, -0.025416532531380653, 0.015375097282230854, 0.029824968427419662, 0.011612961068749428, 0.011925905011594296, 0.004527490120381117, 0.015715254470705986, -0.013402186334133148, -0.00279438984580338, -0.028654828667640686, -0.023987872526049614, 0.015102972276508808, -0.018572574481368065, -0.005364276468753815, -0.016885394230484962, -0.020191721618175507, -0.002656626282259822, -0.005435709375888109, 0.018205203115940094, 0.0046941670589149, 0.025851933285593987, -0.03605664521455765, -0.03319932520389557, 0.00793246179819107, -0.017538495361804962, 0.042125046253204346, -0.0014720294857397676, 0.03393406420946121, 0.03548518195748329, 0.026695523411035538, -0.01895354874432087, -0.011442882008850574, -0.013572265394032001, 0.010327166877686977, 0.03676417097449303, 0.007224935106933117, -0.011993936263024807, -0.013238911516964436, -0.026668310165405273, -0.002030737465247512, 0.004194136243313551, -0.03570288047194481, -0.0012730376329272985, 0.026096846908330917, -0.0015698246425017715, -0.02723977528512478, 0.020640728995203972, -0.030559707432985306, 0.00542550440877676, -0.009286287240684032, 0.0007215581135824323, -0.021239405497908592, 0.000844864989630878, -0.017987502738833427, -0.008871295489370823, 0.0038267665077000856, -0.004428844433277845, 0.0022076191380620003, 0.005602386314421892, -0.004687363747507334, -0.006565030664205551, -0.025130800902843475, -0.0008116997196339071, -0.0037791444920003414, 0.020069263875484467, -0.025947177782654762, -0.002481445437297225, 0.005269032437354326, -0.0074426354840397835, -0.029498416930437088, -0.015878530219197273, -0.013660706579685211, 0.025947177782654762, -0.020518271252512932, -0.014136926271021366, -0.015184609219431877, 0.00897334236651659, -0.007993689738214016, -0.015130184590816498, -0.008469910360872746, -0.0061942595057189465, -0.009612837806344032, -0.012749085202813148, 0.017239157110452652, 0.002437225077301264, 0.02355247177183628, 0.0071569038555026054, 0.0015477144625037909, 0.004945883061736822, 0.00712288822978735, -0.008769247680902481, 0.016776544973254204, -0.041281457990407944, -0.000861022446770221, -0.014681177213788033, 0.009054980240762234, 0.002626012312248349, 0.019579438492655754, -0.008265815675258636, 0.029525630176067352, 0.04043786600232124, -0.010265938937664032, 0.018096353858709335, -0.020477453246712685, -0.004041065461933613, -0.0031617595814168453, 0.023103464394807816, -0.008327043615281582, 0.0009941088501363993, 0.01464035827666521, -0.01681736297905445, 0.004221348557621241, -0.018939943984150887, -0.0092726806178689, 0.013572265394032001, -0.03205639868974686, -0.013368170708417892, 0.0018317456124350429, 0.011687795631587505, 0.02277691476047039, -0.004486671183258295, -0.012755888514220715, 0.010782977566123009, -0.009674065746366978, 0.007048053666949272, 0.03758054971694946, 0.0025392721872776747, 0.016613269224762917, 0.009912176057696342, -0.011327228508889675, 0.0007096526096574962, -0.03896838799118996, -0.004258765839040279, 0.0010902032954618335, -0.01207557413727045, 0.0006773376953788102, -0.006687487009912729, -0.03238295018672943, -0.0072793602012097836, -0.021974144503474236, 0.007503863889724016, 0.028600402176380157, 0.008313437923789024, -0.02152513712644577, 0.026042422279715538, 0.009102601557970047, 0.00924546830356121, -0.007830414921045303, -0.00870121642947197, 0.025239652022719383, -0.01165378000587225, -0.02413754165172577, -0.010055041871964931, -0.020477453246712685, 0.03132165968418121, 0.013674312271177769, -0.005507142283022404, -0.022205451503396034, -0.009789719246327877, -0.012749085202813148, -0.033471450209617615, 0.015579191967844963, 0.011633370071649551, 0.023770172148942947, 0.017198339104652405, -0.009361120872199535, 0.057255230844020844, -0.012109589762985706, -0.005252024624496698, -0.014436264522373676, 0.02707649953663349, 0.015633616596460342, 0.029171867296099663, -0.014735602773725986, -0.012027952820062637, -0.0076195173896849155, -0.03719957172870636, 0.0005038576200604439, -0.016967032104730606, 0.004507080651819706, -0.0012177621247246861, 0.008170572109520435, -0.013225304894149303, -0.010123073123395443, -0.017728984355926514, -0.013987257145345211, 0.01740243285894394, 0.008537941612303257, -0.009966600686311722, -0.009442758746445179, 0.0012500770390033722, 0.011946314945816994, -0.015524766407907009, 0.011993936263024807, -0.02498113177716732, 3.146452581859194e-05, 0.007272557355463505, -0.009721687994897366, -0.008742035366594791, 0.008742035366594791, -0.02743026241660118, 0.015402310527861118, -0.024586549028754234, 0.01711670123040676, 0.03499535471200943, -0.008156965486705303, 0.001116565428674221, -0.023702140897512436, 0.007020840886980295, -0.034913718700408936, -0.0025477760937064886, 0.013347761705517769, 0.011626566760241985, 0.004445852246135473, 0.0040716794319450855, 0.034124553203582764, -0.0076195173896849155, -0.009109404869377613, -0.029661692678928375, 0.007571895606815815, -0.032165247946977615, 0.029226291924715042, 0.001981414621695876, -0.016722118481993675, -0.008667200803756714, -0.008694413118064404, 0.011796645820140839, -0.006724904291331768, -0.008422288112342358, -0.006112621631473303, -0.03088625706732273, 0.014395445585250854, -0.00037778689875267446, -0.005473126657307148, 0.008435893803834915, -0.002777382032945752, -0.0007436682935804129, -0.026368971914052963, -0.015769679099321365, 0.18939943611621857, -0.009592427872121334, 0.017620133236050606, 0.03322653844952583, -0.008653595112264156, 0.013245714828372002, 0.012823919765651226, -0.0032025782857090235, -0.012313684448599815, 0.002314768498763442, -0.00837466586381197, 0.006779329385608435, -0.018572574481368065, -0.0017109898617491126, 0.008823673240840435, 0.02272249013185501, 0.012674250639975071, -0.03725399821996689, -0.024532124400138855, -0.002461035968735814, 0.003643081756308675, 0.010959859006106853, -0.015837710350751877, -0.03099510818719864, 0.02528047002851963, -0.01314366701990366, -0.0031821690499782562, -0.0023045637644827366, 0.03132165968418121, -0.005051331594586372, -0.02813778817653656, 0.022368725389242172, -0.025362107902765274, 0.013674312271177769, -0.042778149247169495, -0.01042921468615532, 0.010810189880430698, -0.007912052795290947, 0.03945821523666382, -0.018994368612766266, -0.000999211217276752, -0.03083183243870735, -0.04207061976194382, -0.014000862836837769, 0.012429337948560715, 0.021960537880659103, -0.01979713886976242, -0.01055167056620121, -0.006973219104111195, 0.005643205251544714, -0.006207865662872791, -0.007354194764047861, 0.025008345022797585, 0.029416779056191444, 0.007150100544095039, -0.014028076082468033, -0.009469971992075443, 0.019416162744164467, 0.005792873911559582, 0.024423275142908096, -0.023035433143377304, 0.015620010904967785, -0.01727997697889805, 0.011197969317436218, -0.0008095737430267036, -0.00345089309848845, -0.031376082450151443, 0.011218378320336342, -0.013987257145345211, -0.012259258888661861, 0.014776420779526234, -0.01517100352793932, 0.003990042023360729, 0.00015041317965369672, -0.031757060438394547, -0.00779639882966876, 0.05232975631952286, 0.03023315593600273, 0.003178767394274473, 0.02212381362915039, -0.035975005477666855, -0.03475044295191765, -0.003813160350546241, -0.01174902357161045, -0.012095984071493149, -0.014136926271021366, 0.03265507519245148, -0.02129383012652397, -0.022926583886146545, -0.00779639882966876, -0.017728984355926514, -0.006224873475730419, 0.002185508841648698, 0.00397983705624938, 0.012293274514377117, 0.014422657899558544, -0.004792812280356884, 0.020069263875484467, -0.015034940093755722, 0.0023453827016055584, -0.036219920963048935, 0.039920829236507416, 0.007966477423906326, 0.018286840990185738, 0.02457294426858425, -0.0021753041073679924, 0.005911929067224264, -0.004854040686041117, -0.0020562491845339537, -0.025770295411348343, -0.005449315533041954, 0.004928875248879194, 0.010143482126295567, -0.017130307853221893, -0.00572484266012907, -0.0052010007202625275, -0.030750194564461708, -0.0027637758757919073, 0.006354133132845163, 0.009123011492192745, -0.009068585932254791, -0.018382085487246513, -0.01949780061841011, -0.004180529620498419, -0.01627311296761036, -0.008177374489605427, -0.020776791498064995, -0.004289380274713039, -0.023157890886068344, 0.0052044023759663105, 0.01597377471625805, -0.048193447291851044, -0.002639618469402194, -0.017211945727467537, 0.0030818225350230932, -0.0021140759345144033, -0.004541096277534962, -0.039621490985155106, -0.02528047002851963, -0.007599107921123505, -0.016654087230563164, 0.017334401607513428, -0.019756320863962173, -0.02200135588645935, 0.014164138585329056, -0.022314300760626793, 0.005973157472908497, 0.0031974760349839926, 0.003544436302036047, -0.043839436024427414, -0.011674189008772373, -0.009048176929354668, 0.016858182847499847, -0.006789534352719784, -0.010878222063183784, -0.02087203413248062, 0.0031651610042899847, -0.022314300760626793, 0.023593291640281677, -0.010327166877686977, -0.03690023347735405, 0.018695030361413956, 0.011007481254637241, 0.0013546753907576203, -0.024695400148630142, -0.012980392202734947, -0.1728542000055313, -0.001372533617541194, 0.004422041121870279, -0.022191844880580902, 0.033471450209617615, 0.01579689234495163, 0.021620379760861397, 0.00597655912861228, -0.0020239343866705894, -0.01115034706890583, 0.004874450154602528, 0.0100414352491498, -0.02027335949242115, -0.002321571810171008, 0.0005336213507689536, -0.0020902648102492094, 0.011116331443190575, 0.005962952505797148, 0.02903580293059349, 0.01269466057419777, 0.04381222650408745, -0.03004266880452633, 0.009857750497758389, 0.001039179740473628, -0.002882830798625946, 0.0003229365684092045, 0.0005591331282630563, 0.012687857262790203, -0.01787865348160267, -0.047431495040655136, -0.0027875867672264576, 0.0036839006934314966, 0.043376822024583817, -0.017388826236128807, 0.02283133938908577, 0.005337063688784838, -0.027811238542199135, -0.03426061570644379, -0.01805553399026394, 0.010660520754754543, 0.019402556121349335, 0.03273671120405197, 0.007320179138332605, -0.011973527260124683, -0.004796213936060667, 0.02617848478257656, 0.01278990413993597, -0.03230131044983864, 0.019334524869918823, -0.014912484213709831, 0.03124002180993557, -0.01621868647634983, -0.010830599814653397, -0.0012033054372295737, 0.014858058653771877, -0.021198585629463196, -0.017089489847421646, 0.015415916219353676, -0.023402802646160126, 0.01913043111562729, -0.0010825496865436435, -0.02104891650378704, -0.005609189160168171, 0.012837526388466358, -0.009143420495092869, -0.02009647712111473, -0.0291446540504694, 0.011014284566044807, -0.02431442402303219, 0.004595521371811628, -0.0035716488491743803, 0.0029491614550352097, -0.003114137565717101, -0.007272557355463505, 0.007490257732570171, 0.02777041867375374, -0.008565153926610947, 0.01853175461292267, -0.0017739188624545932, -0.019402556121349335, 0.002177004935219884, 0.033417027443647385, -0.00591873237863183, -0.008571957238018513, 0.011531323194503784, -0.02492670714855194, -0.010388395749032497, -0.0003403696173336357, 0.00823180004954338, -0.023688536137342453, 0.015157396905124187, -0.03224688768386841, -0.025620626285672188, -0.004520686808973551, -0.002498453250154853, 0.014191350899636745, 0.01991959474980831, -0.015116577968001366, 0.008027705363929272, -0.0026379176415503025, 0.008109343238174915, -0.01597377471625805, -0.036628108471632004, -0.008381469175219536, 0.028872529044747353, 0.010184301063418388, -0.02808336354792118, 0.02778402529656887, 0.042533233761787415, 0.01932091824710369, -0.02133464813232422, -0.006449377164244652, 0.010755765251815319, 0.021688411012291908, 0.012170818634331226, 0.020354995504021645, -0.003772341413423419, -0.013456611894071102, 0.0034338850528001785, 0.018858306109905243, 0.04536334052681923, -0.013157273642718792, -0.015932954847812653, -0.008082130923867226, 0.009789719246327877, -0.013279730454087257, -0.11200690269470215, -0.013572265394032001, -0.00666027469560504, 0.02152513712644577, 0.01031356118619442, 0.0140144694596529, -0.018586179241538048, 0.030478069558739662, 0.003619270632043481, 0.034668803215026855, 0.005673819221556187, -0.010680930688977242, -0.0008482665871270001, -0.012959982268512249, -0.026858799159526825, -0.02034139074385166, -0.00010805300553329289, -0.004595521371811628, -0.018041929230093956, 0.035321906208992004, 0.027498293668031693, 0.012184424325823784, 0.000495353655423969, -0.0010017624590545893, -0.028763677924871445, 0.010585686191916466, -0.018939943984150887, 0.02272249013185501, -0.005643205251544714, 0.013293336145579815, -0.002639618469402194, -0.011898692697286606, -0.007347391918301582, -0.021729230880737305, 0.01526624709367752, -0.009735293686389923, -0.009163830429315567, -0.015184609219431877, 0.03344423696398735, -0.023919841274619102, 0.002253540325909853, 0.0025970989372581244, 0.018858306109905243, -0.0034406883642077446, 0.020899247378110886, 0.006905187387019396, -0.017252763733267784, 0.006952809635549784, -0.00828622467815876, -0.025906359776854515, -0.03948542848229408, -0.03847856447100639, -0.03464158996939659, 0.01117755938321352, 0.0014975413214415312, 0.006905187387019396, 0.0031498540192842484, -0.009463168680667877, -0.015279853716492653, 0.027511900290846825, -0.012143605388700962, -0.001002612872980535, -0.013191289268434048, 0.020477453246712685, 0.01710309460759163, -0.002724657766520977, -0.02974333055317402, 0.0010953056626021862, 0.02103530988097191, -0.011544929817318916, -0.0032621058635413647, 0.013184485957026482, -0.02129383012652397, 0.025416532531380653, -0.028954165056347847, 0.0068235499784350395, 0.00018389739852864295, 0.012320487760007381, 0.009143420495092869, 0.02098088525235653, -0.02623290941119194, -0.03417897969484329, -0.0142457764595747, -0.03292720019817352, 0.01496690884232521, 0.00043136163731105626, 0.0004613379715010524, 0.019388949498534203, 0.03787988796830177, -0.012068770825862885, 0.013694722205400467, 0.03330817446112633, 0.03298162668943405, -0.004782607778906822, -0.008150162175297737, 0.013075635768473148, 0.02134825475513935, -0.01651802472770214, -0.007646729703992605, 0.009565215557813644, -0.01704866997897625, -0.005786071065813303, -0.05227532982826233, -0.002209319965913892, -0.015388703905045986, -0.02582472190260887, 0.020599909126758575, 0.01189188938587904, 0.008435893803834915, -0.010762568563222885, -0.0024338234215974808, -0.010599292814731598, -0.019892383366823196, -0.009197846055030823, -0.006034385412931442, -0.0008065973524935544, -0.009966600686311722, -0.01727997697889805, 0.012055165134370327, -0.021212192252278328, 0.00036162944161333144, 0.027579931542277336, 0.016354748979210854, -0.003643081756308675, 0.0053710793145000935, 9.662585216574371e-05, -0.007408619858324528, -0.0007917154580354691, -0.007551486138254404, 0.02020532637834549, -0.014218563213944435, -0.015429522842168808, 0.0023606896866112947, -0.00980332586914301, -0.0046057263389229774, 0.016354748979210854, -0.019307313486933708, 0.019579438492655754, -0.0024865479208528996, 0.04786689579486847, 0.016368355602025986, 0.021906113252043724, 0.0012883447343483567, -0.033172111958265305, 0.01246335357427597, -0.010347576811909676, 0.0006088810623623431, -0.005949346348643303, -0.012116393074393272, 0.029416779056191444, -0.011504110880196095, 0.013789965771138668, 0.030750194564461708, -0.0023487843573093414, -0.028872529044747353, -0.021375468000769615, 0.01866781711578369, -0.018150778487324715, 0.0006722353282384574, -0.03499535471200943, -0.004826828371733427, -0.019361738115549088, 0.031566571444272995, -0.002493350999429822, 0.0198515634983778, -0.0012118093436583877, 0.009265877306461334, -0.011395260691642761, -0.011817054823040962, 0.023021826520562172, 0.008184177801012993, -0.016599662601947784, -0.01183746475726366, -0.008966539055109024, 0.017633739858865738, 0.006932400166988373, 0.027348624542355537, 0.01126600056886673, -0.026300940662622452, 0.02647782303392887, -0.008490319363772869, 0.011184362694621086, 0.023810992017388344, 0.0023283748887479305, -0.009755703620612621, 0.009395137429237366, 0.031675420701503754, 0.02413754165172577, 0.0026413192972540855, -0.00047324347542598844, 0.015375097282230854, 0.014994122087955475, 0.024110330268740654, 0.013613084331154823, -0.02002844586968422, -0.010463230311870575, 0.01156533882021904, 0.024709006771445274, -0.029226291924715042, -0.0025511777494102716, -0.011075512506067753, 0.009850947186350822, 0.014898877590894699, -0.010388395749032497, -0.005959550850093365, -0.006320117507129908, -0.06373181939125061, 0.02313067764043808, 0.007150100544095039, -0.0006403456209227443, 0.002619209000840783, 0.04119981825351715, -0.004660151433199644, 0.029307929798960686, 0.02198774926364422, 0.011340835131704807, -0.03170263394713402, 0.02473621815443039, -0.006622857414186001, -0.017089489847421646, -0.02598799578845501, 0.02819221466779709, -0.0007968178251758218, 0.011898692697286606, 0.047431495040655136, -0.011531323194503784, 0.015511160716414452, 0.023117071017622948, 0.02027335949242115, -0.02194693125784397, 0.013823981396853924, 0.0100414352491498, -0.00042583406320773065, 0.029852179810404778, -0.02533489465713501, -0.005493536125868559, -0.006425566039979458, -0.03344423696398735, 0.0031617595814168453, 0.013048423454165459, 0.0011624866165220737, 0.06944645941257477, 0.012361306697130203, -0.015239034779369831, 0.016722118481993675, 0.010953056626021862, -0.006575235165655613, 0.02670913003385067, -0.003646483412012458, -0.008952932432293892, -0.036873020231723785, 0.012381715700030327, 0.007769186515361071, -0.0181235671043396, -0.03605664521455765, -0.004537694621831179, 0.02258642576634884, 0.0034542945213615894, 0.019810745492577553, -0.010653718374669552, 0.0022892567794770002, 0.02069515362381935, -0.0061738500371575356, 0.007395013701170683, 0.002010327996686101, -0.019688287749886513, 0.005789472721517086, 0.04726821929216385, -0.00908899586647749, -0.029117440804839134, -0.02575669065117836, -0.003541034646332264, -0.0025766894686967134, -0.02462736889719963, -0.026042422279715538, -0.0009966600919142365, 0.01817799173295498, 0.0017118402756750584, -0.01711670123040676, 0.014477082528173923, -0.00018761785759124905, 0.011572142131626606, -0.008510728366672993, -0.015375097282230854, -0.03238295018672943, -0.0099257817491889, -0.0055445595644414425, -0.015415916219353676, 0.010048238560557365, -0.03733563423156738], "bc137aa3-66e7-417d-951c-5d12b6ca21e9": [0.0067811026237905025, -0.02899225987493992, -0.006929988972842693, -0.0007934973109513521, -0.00036988986539654434, -0.0106250811368227, -0.01618802174925804, -0.026028065010905266, -0.02939831279218197, -0.0051805730909109116, 0.006628832314163446, 0.03245725482702255, -0.015430053696036339, 0.008310573175549507, 0.002948967507109046, -0.005139967426657677, 0.011836475692689419, -0.008588043041527271, -0.002657962264493108, -0.0002726060920394957, -0.008195524103939533, -0.002343270229175687, -0.0031130809802562, -0.025215957313776016, -0.009197124280035496, 0.007160086650401354, 0.005627232603728771, -0.016567004844546318, 0.023483458906412125, -0.020221492275595665, 0.016878314316272736, -9.590911940904334e-05, -0.008039870299398899, -0.031076669692993164, -0.014279567636549473, -0.009224195033311844, -0.013453924097120762, -0.013311805203557014, 0.017609210684895515, -0.027327436953783035, 0.034027330577373505, 0.0034633027389645576, -0.02474222704768181, 0.0034210053272545338, -0.03278209641575813, 0.0011090351035818458, 0.003043713513761759, -0.0170678049325943, -0.010665686801075935, 0.015010464936494827, 0.01927403174340725, -0.003749232506379485, -0.03210534155368805, -0.0005287161911837757, 0.011755265295505524, 0.00935954600572586, 0.008716627024114132, 0.009149751625955105, 0.0017798702465370297, -0.0124523239210248, 0.001529470318928361, 0.010679221712052822, -0.001143718953244388, 0.02923589199781418, -0.0156736858189106, 0.01568722166121006, -0.008763999678194523, 0.01473976206034422, 0.006957059260457754, 0.005207643378525972, 0.03519134968519211, 0.02272549271583557, -0.01017165370285511, 0.02024856209754944, 0.03473115712404251, -0.004649318754673004, -0.008757232688367367, 0.025202421471476555, 0.011173253878951073, 0.016539935022592545, 0.0020404215902090073, 0.004673005547374487, -0.02009967528283596, 0.022617211565375328, 0.022008130326867104, 0.001734189223498106, -0.0004965702537447214, 0.018732627853751183, -0.028071871027350426, -0.02785530872642994, 0.014333708211779594, 0.006892767734825611, 0.004754216410219669, 0.02818015217781067, 0.007464626803994179, 0.00230774050578475, -0.04477422684431076, 0.006395351141691208, 0.0002410945890005678, -0.021913383156061172, -0.03137444332242012, 0.015795502811670303, 0.0075187673792243, -0.010449124500155449, -0.018340108916163445, 0.00375938368961215, 0.0032771946862339973, 0.012574140913784504, 0.03695091977715492, -0.006429189350455999, -0.00816845428198576, 0.03982036933302879, -0.0005638229777105153, -0.028883978724479675, 0.0037729188334196806, -0.02785530872642994, 0.014347243122756481, -0.0034582270309329033, -0.015375913120806217, -0.011944756843149662, 0.018258897587656975, -0.022914983332157135, 0.01936877891421318, -0.003505599917843938, 0.02516181580722332, 0.017703955993056297, -0.018488993868231773, -0.024390313774347305, -0.010361146181821823, -0.010198724456131458, 0.027232691645622253, 0.020397448912262917, 0.005194108001887798, -0.026501795276999474, -0.008818140253424644, 0.022035200148820877, -0.0070991781540215015, 0.009129448793828487, -0.021547935903072357, -0.0068250917829573154, 0.03643658384680748, -0.002077643293887377, -0.0011462568072602153, 0.006209243088960648, -0.0012156242737546563, 0.02353760041296482, 0.000499954039696604, 0.0014101918786764145, -0.011152951046824455, -0.002659654011949897, 0.002723946003243327, -0.009494896978139877, 0.007647351361811161, -0.007586443331092596, -0.00018526216445025057, 0.0111461840569973, 0.024390313774347305, 0.004723762162029743, 0.009873881004750729, 0.01674296148121357, 0.02091178297996521, 0.019896648824214935, 0.0072954376228153706, -0.024200821295380592, -0.0004115526971872896, 0.017595674842596054, 0.035245493054389954, -0.0028897514566779137, -0.011734962463378906, 0.011680821888148785, -0.0045579569414258, 0.015321772545576096, -0.03188877925276756, 0.02410607598721981, 0.002972654066979885, -0.0029946486465632915, 0.009894183836877346, -0.009170054458081722, -0.01601206511259079, 0.0037966053932905197, 0.002520918846130371, -0.010713059455156326, -6.302296969806775e-05, 0.029885578900575638, -0.06144951283931732, 0.016363978385925293, 0.020803501829504967, 0.002339886501431465, -6.423902232199907e-05, 0.0016614377964287996, -0.001696121646091342, 0.018461924046278, 0.005380216054618359, 0.022089339792728424, -0.6345271468162537, -0.011004065163433552, -0.005214410834014416, -0.012371113523840904, 0.013751697726547718, -0.0034497675951570272, 0.005847178399562836, 0.0008083013235591352, -0.021710356697440147, 0.027395114302635193, 0.02058694139122963, -0.012364345602691174, 0.006002832669764757, -0.002111481036990881, 0.008689557202160358, -0.03129323199391365, -0.02240064926445484, -0.01352159958332777, 0.004581643268465996, 0.0062667676247656345, -0.017785167321562767, 0.04028056189417839, -0.002343270229175687, 0.012750097550451756, -0.009305405430495739, 0.02204873599112034, 0.011017600074410439, -0.009765599854290485, 0.010408518835902214, 0.001964286435395479, 0.015010464936494827, -0.023226292803883553, 0.0009356162045150995, 0.02115541696548462, 0.03267381712794304, -0.01576843298971653, 0.0232804324477911, 0.01511874608695507, -0.009183589369058609, 0.03914361074566841, -0.02915468066930771, -0.01017842162400484, 0.038683414459228516, -0.007302205543965101, -0.006547621451318264, 0.002427864819765091, 0.01675649732351303, 0.018069405108690262, 0.0030538649298250675, -0.0168377086520195, 0.012743329629302025, -0.0041417512111365795, 0.012885448522865772, 0.005904702935367823, 0.010259632021188736, 0.00956257339566946, 0.0304811242967844, 1.509484809503192e-05, 0.009907718747854233, -0.017920518293976784, -0.0002607628412079066, 0.003048789221793413, 0.008398551493883133, -0.008283502422273159, -0.028640346601605415, 0.0297231562435627, -0.030426984652876854, 0.01258767582476139, 0.004601946100592613, -0.006608529947698116, 0.0034226973075419664, 0.023957189172506332, -0.02058694139122963, -0.00885874591767788, 0.009873881004750729, 0.013785535469651222, 0.026934918016195297, -0.01724376156926155, 0.0064630270935595036, 0.0260686706751585, 0.0030741675291210413, 0.002470162231475115, -0.03375662863254547, -0.004030086565762758, 0.02321275696158409, 0.00584379443898797, -0.005938540678471327, 0.007613513618707657, 0.005326075479388237, 0.016621146351099014, -0.004876032471656799, 0.013616345822811127, 0.0022975890897214413, -0.03137444332242012, 0.01291251927614212, 0.0030115675181150436, -0.011937988921999931, -0.008831676095724106, -0.005911470390856266, -0.03976622596383095, -0.004405686631798744, -0.025351308286190033, 0.00739695131778717, -0.013792302459478378, 0.00430755689740181, -0.01209364365786314, 0.018461924046278, 0.01724376156926155, 0.02550019510090351, -0.004845578223466873, -0.006716810632497072, -0.04675035551190376, -0.019016865640878677, -0.0018644648371264338, 0.009427221491932869, -0.019801903516054153, 0.029371242970228195, -0.020559869706630707, 0.008588043041527271, -0.01176880020648241, 0.02923589199781418, 0.030751826241612434, -0.007478162180632353, 0.0008780919015407562, 0.0023026647977530956, 0.007119480986148119, 0.018326573073863983, 0.0014068081509321928, -0.04044298455119133, -0.0228743776679039, 0.023063870146870613, -0.009136215783655643, 0.02066815085709095, 0.00026266620261594653, -0.004601946100592613, -0.023469924926757812, 0.0174738597124815, -0.02541898377239704, 0.022346507757902145, -0.03372955694794655, 0.0013865054352208972, 0.01352159958332777, 0.008303805254399776, -0.02541898377239704, 0.0016115270555019379, -0.03554326668381691, -0.0377359576523304, 0.018732627853751183, -0.009291870519518852, -0.002556448569521308, -0.000905162189155817, 0.003502216190099716, -0.010225794278085232, 0.043989188969135284, -0.0008167608175426722, 0.007478162180632353, 0.010076908394694328, -0.027679352089762688, -0.01789344847202301, 0.004669621586799622, -0.006040053907781839, 0.010279934853315353, -0.007457859348505735, 0.009731762111186981, -0.010144583880901337, -0.009163286536931992, -0.024457989260554314, 0.024282032623887062, -0.027503395453095436, -0.034027330577373505, 0.002641043160110712, -0.003075859509408474, 0.005512183997780085, 0.018732627853751183, -0.0026427351403981447, 0.014144216664135456, -0.019828973338007927, -0.0022366810590028763, -0.02702966518700123, 0.0009626864921301603, 0.008994096890091896, -0.003613881068304181, -0.005627232603728771, -0.00024088310601655394, 0.013440389186143875, 0.004879416432231665, 0.018015265464782715, -0.02181863784790039, -0.011559005826711655, -0.010327308438718319, 0.041958920657634735, -0.002299281070008874, -0.015809038653969765, 0.00955580547451973, 0.0022163784597069025, 0.005549405235797167, 0.016296302899718285, -0.011572540737688541, 0.00910914596170187, 0.04983636736869812, 0.020383913069963455, -0.011525167152285576, -0.006649135146290064, -0.015281167812645435, -0.014780367724597454, 0.0007698108092881739, 0.021033599972724915, -0.016702357679605484, 0.029696086421608925, -0.008181989192962646, -0.0014288027305155993, -0.01766335219144821, -0.017852842807769775, -0.004656086675822735, 0.0216562170535326, 0.02556787058711052, -0.012736562639474869, 0.011531935073435307, 0.02269842103123665, 0.0076067461632192135, 0.012283135205507278, -0.00749169709160924, 0.011058205738663673, 0.006324291694909334, -0.01779870316386223, -0.003915037959814072, 0.002888059476390481, -0.011504865251481533, -0.0001090212826966308, -0.04577582702040672, 0.029804367572069168, -0.0008797837654128671, -0.005742281209677458, -0.007566140498965979, 0.0365719348192215, 0.008073708042502403, 0.027747027575969696, -0.028153080493211746, 0.016783567145466805, -0.004358313512057066, -0.034677017480134964, 0.0170678049325943, 0.027801167219877243, -0.025473125278949738, -0.00046019459841772914, 0.006534086540341377, 0.045044928789138794, -0.0016648216405883431, -0.012851610779762268, 0.024363243952393532, 0.002223145915195346, -0.003952259663492441, -0.03600345924496651, 0.0023957188241183758, -0.00865571852773428, -0.032321903854608536, -0.010232562199234962, -0.001734189223498106, 0.036165881901979446, 0.021101275458931923, -0.0025496811140328646, -0.0015066297492012382, 0.020370379090309143, 0.00935954600572586, 0.01871909201145172, -0.008757232688367367, 0.002947275759652257, -0.016539935022592545, -0.01575489714741707, -0.0024058702401816845, -0.024701621383428574, -0.04136337339878082, -0.006429189350455999, -0.009704692289233208, 0.03486650809645653, 0.0010354378027841449, 0.028721556067466736, 0.013433621264994144, 0.016391048207879066, 0.0010523567907512188, -0.022495394572615623, -0.015199956484138966, 0.01649932935833931, 0.014238961972296238, -0.014211892150342464, -0.005701675545424223, -0.014902183786034584, 0.006378432270139456, 0.0014947864692658186, -0.008405318483710289, -0.035570334643125534, -0.0007829229580238461, -0.0297231562435627, 0.006997664924710989, -0.0062532322481274605, -0.0038507459685206413, 0.009819740429520607, -0.00016718007100280374, 0.006310756783932447, -0.01943645440042019, 0.010158118791878223, -0.0068250917829573154, -0.019571805372834206, 0.002272210782393813, 0.04379969835281372, 0.0027544000186026096, 0.022576605901122093, -0.01894918829202652, -0.01000246498733759, 0.004869265016168356, -0.010144583880901337, -0.0038575134240090847, 0.0012562297051772475, -0.003468378446996212, 0.03159100562334061, -0.008229361847043037, 0.013704324141144753, -0.015876714140176773, 0.01586317829787731, 0.005701675545424223, 0.0010709675261750817, 0.013711092062294483, -0.014333708211779594, -0.01396825909614563, 0.05652272328734398, 0.012404951266944408, 0.0068250917829573154, -0.0055426377803087234, -0.01348099485039711, 0.014658551663160324, -0.012391416355967522, -0.015809038653969765, 0.015551870688796043, 0.003657870227470994, -0.009900951758027077, 0.001301910844631493, 0.006740497425198555, 0.004402302671223879, -0.0008294500294141471, 0.01635044254362583, 0.008676021359860897, -0.015416518785059452, 0.011362746357917786, -0.009427221491932869, 0.016363978385925293, 0.012161319144070148, 0.03895412012934685, 0.050621405243873596, -0.011850010603666306, 0.002657962264493108, 0.020803501829504967, -0.0007613513735122979, -0.01144395675510168, -0.01601206511259079, -0.011545469984412193, 0.002881291788071394, 0.02491818368434906, 0.028450854122638702, -0.009772367775440216, 0.024877578020095825, -0.007004432380199432, 0.003955643158406019, 0.02958780527114868, -0.043907977640628815, -0.006990897469222546, -0.004480129573494196, 0.007613513618707657, -0.018610810860991478, 0.006280302535742521, 0.021615611389279366, 0.008750464767217636, 0.022238226607441902, -0.02189984917640686, -0.010598010383546352, 0.01935524307191372, -0.01658054068684578, -0.0449366495013237, -0.008730161935091019, -0.0091159138828516, 0.02035684324800968, -0.011680821888148785, -0.017785167321562767, 0.009278335608541965, -0.031103741377592087, -0.027692886069417, -0.03741111233830452, 0.020817037671804428, 0.0026139728724956512, -0.002512459410354495, -0.008452692069113255, 0.004233113490045071, 0.020546335726976395, -0.011105578392744064, -0.008818140253424644, 0.020397448912262917, -0.03397319093346596, -0.048401642590761185, 0.0012063189642503858, 0.006896151229739189, 0.04209427163004875, 0.005231329705566168, 0.01789344847202301, -0.012438789010047913, -0.00381014053709805, 0.017622746527194977, -0.01467208657413721, -0.007011199835687876, -0.014577340334653854, 0.024891113862395287, 0.015145815908908844, 0.012892216444015503, 0.01396825909614563, -0.012540303170681, 0.033702485263347626, 0.00046738513628952205, 0.01977483183145523, 0.011829707771539688, -0.023469924926757812, -0.01624216139316559, 0.027584604918956757, -0.009061773307621479, 0.012181621976196766, 0.01708134077489376, -0.024038400501012802, 0.024200821295380592, 0.0032315135467797518, -0.02466101571917534, 0.011044669896364212, -0.03424389287829399, -0.006997664924710989, 0.005776118952780962, 0.01724376156926155, -0.01061831321567297, -0.023239826783537865, 0.04601946100592613, -0.02662361040711403, 0.013785535469651222, 0.020451588556170464, -0.00334994588047266, 0.021182486787438393, 0.010063372552394867, 0.02744925394654274, -0.011734962463378906, -0.013677254319190979, -0.0029083620756864548, -0.022427719086408615, 0.010164886713027954, 0.017216691747307777, -0.0014584107557311654, 0.006029902491718531, -0.005606929771602154, -0.008879048749804497, 0.006730346009135246, 0.0030877026729285717, 0.007701491937041283, 0.011457491666078568, 0.014969859272241592, -0.04650672525167465, -0.02498585917055607, 0.0062058595940470695, -0.024471525102853775, -0.017094876617193222, 0.000641227001324296, -0.007863913662731647, 0.02361881174147129, 0.012824540957808495, 0.00519072450697422, -0.007451091893017292, 0.0018255513859912753, -0.02352406457066536, -0.016702357679605484, -0.014035935513675213, 0.0027290217112749815, 0.014820973388850689, 0.006530702579766512, 0.01314938347786665, -0.02631230279803276, -0.01302756741642952, 0.027178552001714706, -0.008019567467272282, 0.012648583389818668, 0.005336226895451546, 0.03291744738817215, 0.03364834561944008, 0.02041098289191723, 0.0030860109254717827, 0.026244627311825752, 0.00910914596170187, -0.0007182080880738795, -0.003881199983879924, -0.004226346034556627, 0.013014032505452633, -0.014753296971321106, -0.003468378446996212, 0.006554389372467995, -0.015606011264026165, 0.02149379439651966, 0.0004995311028324068, 0.011829707771539688, 0.024620410054922104, 0.0010963459499180317, 0.012066572904586792, -0.02639351412653923, -0.027354508638381958, -0.015281167812645435, -0.010313772596418858, 0.005288854241371155, 0.003674789099022746, -0.0017663351027294993, -0.02468808740377426, 0.008269967511296272, -0.0015100134769454598, 0.005444508045911789, 0.016891848295927048, 0.0025682919658720493, 0.0050283027812838554, 0.012790702283382416, 0.015633082017302513, 0.01624216139316559, -0.017514465376734734, -0.0007617743103764951, -0.0364636555314064, 0.012195156887173653, 0.001619986491277814, -0.014441989362239838, 0.0033110324293375015, -0.008818140253424644, 0.0054817297495901585, -0.031022530049085617, 0.006419037934392691, -0.039901576936244965, -0.012932821176946163, 0.015010464936494827, -0.018123546615242958, -0.023469924926757812, 0.011288302950561047, -0.0030284863896667957, 0.0014127297326922417, 0.008303805254399776, 0.018854442983865738, 0.019707156345248222, 0.012080107815563679, -0.01880030333995819, -0.021994594484567642, 0.005464810878038406, -0.01385321095585823, 0.04247325286269188, 0.02647472359240055, 0.0397120863199234, 0.02541898377239704, 0.033377643674612045, -0.016160951927304268, -0.022251762449741364, -0.018448390066623688, 0.010103978216648102, 0.031022530049085617, -0.0048489621840417385, -0.0013086784165352583, -0.013744929805397987, -0.014726227149367332, 0.005092594772577286, -0.02042451873421669, -0.04845578223466873, 0.025134745985269547, 0.006442724261432886, -0.005261783953756094, -0.0216562170535326, 0.009765599854290485, -0.03129323199391365, 0.012249297462403774, 0.004419221542775631, 0.009373080916702747, -0.030183350667357445, 0.00923772994428873, -0.021778032183647156, -0.0012629972770810127, 0.004229729529470205, 0.0057998052798211575, 0.010449124500155449, -0.001959210727363825, -0.01473976206034422, -2.359396057727281e-05, -0.03408147022128105, 0.0010684297885745764, -0.008581276051700115, 0.03291744738817215, -0.027801167219877243, -0.01633690856397152, 0.0505131259560585, -0.016228627413511276, -0.011328907683491707, 0.014766832813620567, -0.018082940950989723, 0.03391904756426811, -0.023321038112044334, -0.025770897045731544, -0.011166486889123917, 0.0111461840569973, -0.013514832593500614, -0.008472994901239872, -0.02525656297802925, -0.017270833253860474, -0.013223826885223389, -0.001482943189330399, 0.013792302459478378, 0.026244627311825752, -0.005711826961487532, -0.009014399722218513, -0.002263751346617937, 0.008303805254399776, -0.02189984917640686, -0.02164268121123314, 0.012181621976196766, -0.03421682119369507, -0.0138464430347085, -0.02370002120733261, 0.021940454840660095, 0.01584964245557785, -0.0064630270935595036, -0.00017331317940261215, 0.03267381712794304, 0.05473608523607254, -0.019788367673754692, 0.021588539704680443, -0.018177686259150505, -0.00011314527364447713, -0.011085275560617447, 0.010022767819464207, -0.009697924368083477, 0.0006991742993704975, 0.022319437935948372, -0.024363243952393532, -0.01708134077489376, -0.01106497272849083, 0.01626923307776451, -0.005119665060192347, -0.0019355242839083076, -0.0074713947251439095, 0.0029422000516206026, 0.014956324361264706, 0.007985729724168777, -0.008385016582906246, -0.015335308387875557, 0.013778767548501492, -0.00534976227208972, 0.014144216664135456, 0.03202413022518158, 0.009549037553369999, -0.0017646432388573885, -0.007566140498965979, 0.0013061405625194311, -0.01847545988857746, -0.030129211023449898, -0.018421318382024765, -0.01724376156926155, -0.03015628084540367, -0.003195983823388815, -0.034839436411857605, -0.0485369935631752, -0.015633082017302513, -0.0202620979398489, 0.021859243512153625, -0.0014203432947397232, 0.00036417972296476364, -0.029127610847353935, 0.025148281827569008, 0.011951524764299393, 0.010029534809291363, 0.006331059616059065, -0.018177686259150505, 0.020045535638928413, 0.019964324310421944, -0.03145565465092659, -0.024633945897221565, -0.01302756741642952, 0.03578689694404602, 0.019883112981915474, 0.023429319262504578, -0.011240929365158081, 0.00410452950745821, -0.008777535520493984, -0.01839424856007099, -0.005941924173384905, 0.03446045517921448, 0.017839308828115463, 0.01449612993746996, 0.012228994630277157, 0.025513729080557823, -0.004757599905133247, 0.006622064858675003, -0.024769296869635582, -0.0011521783890202641, 0.018922118470072746, 0.0313473716378212, 0.0014761757338419557, -0.006134800147265196, -0.005255016032606363, -0.0032958053052425385, 0.0035766593646258116, -0.020776432007551193, -0.010983762331306934, -0.0040639243088662624, -0.0032518161460757256, -0.008357945829629898, -0.0094339894130826, -0.017500929534435272, 0.021439654752612114, 0.016648216173052788, -0.010713059455156326, -0.007383416406810284, 0.003935340326279402, -0.01682417280972004, 0.018976259976625443, -0.033675417304039, -0.007187156938016415, -0.028965190052986145, -0.02360527589917183, -0.00829027034342289, -0.042121339589357376, -0.03340471535921097, 0.005820108111947775, -0.02237357757985592, 0.017040735110640526, 0.02541898377239704, 0.006178789306432009, 0.02016735076904297, -0.0016995053738355637, -0.0032585838343948126, -0.017920518293976784, 0.0001649594632908702, -0.030345773324370384, 0.021710356697440147, 0.020072605460882187, 0.028883978724479675, -0.03586810827255249, -0.023970725014805794, 0.042852237820625305, -0.004947091918438673, 0.008181989192962646, -0.026014529168605804, -0.008851977996528149, -0.03210534155368805, 0.03592224791646004, 0.0029777297750115395, -0.005684756673872471, 0.009386615827679634, 0.01479390263557434, 0.0035766593646258116, 0.01847545988857746, -0.03825029358267784, -0.008439157158136368, -0.026041600853204727, 0.021385513246059418, 0.006303989328444004, 0.009826508350670338, 0.0009373081265948713, -0.0031130809802562, -0.0003572006826288998, -0.009718227200210094, 0.01245909184217453, 0.202052503824234, -0.010645383968949318, -0.00041134122875519097, 0.034433383494615555, -0.005708443466573954, 0.027990659698843956, -0.000514758110512048, -0.011362746357917786, -0.022265296429395676, -0.010401750914752483, -0.015957923606038094, -0.009461059235036373, -0.030291631817817688, -0.0007516229525208473, -0.0015150891849771142, -0.01839424856007099, 0.010293470695614815, -0.042364973574876785, -0.010760432109236717, -0.00736988103017211, 0.004649318754673004, 0.007951891981065273, 0.005454659461975098, -0.015890248119831085, 0.007687956560403109, -6.113281187936082e-07, 0.008912886492908001, 0.009975394234061241, 0.030102141201496124, 0.0018576972652226686, -0.03559740632772446, -0.019057469442486763, -0.02115541696548462, 0.004097762051969767, -0.030291631817817688, -0.006317524239420891, 0.014780367724597454, -0.007924821227788925, 0.035678617656230927, -0.009278335608541965, 0.013223826885223389, -0.03261967748403549, -0.024809902533888817, 0.007755632512271404, 0.010137815959751606, 0.026596540585160255, -0.006574691738933325, -0.031157881021499634, -0.0007765783811919391, -0.006547621451318264, -0.0372757613658905, -0.013575740158557892, 0.01896272413432598, 0.019801903516054153, 0.004757599905133247, -0.015267632901668549, -0.023496994748711586, -0.018177686259150505, 0.025946853682398796, 0.015145815908908844, -0.028153080493211746, 0.030183350667357445, -0.022075805813074112, 0.0005088364705443382, 0.0006636445759795606, 0.0154435895383358, -0.023469924926757812, 0.027395114302635193, -0.004662854131311178, -0.011261232197284698, 0.010191956534981728, -0.006303989328444004, -0.0005803189123980701, 0.0050452216528356075, -0.017622746527194977, -0.021926918998360634, 0.03513721004128456, 0.03253846615552902, 0.025446053594350815, 0.026569470763206482, -0.02433617226779461, 0.00955580547451973, -0.0016089892014861107, -0.033134009689092636, -0.012120713479816914, -0.0032315135467797518, 0.012404951266944408, -0.0038338270969688892, -0.015971459448337555, -0.007769167423248291, 0.011295069940388203, -0.0010853486601263285, -0.004131599795073271, -0.004172205459326506, 0.0011005756678059697, 0.022739026695489883, 0.011701124720275402, 0.018407784402370453, 0.009528734721243382, 0.00816845428198576, -0.03267381712794304, 0.0016301377909258008, -0.01038144901394844, 0.009833275340497494, 0.02263074554502964, -0.0032010595314204693, -0.0027747026178985834, 0.002229913603514433, 0.005809956695884466, -0.05998772010207176, -0.0022569838911294937, -0.009826508350670338, 0.015470659360289574, -0.020031999796628952, -0.008317340165376663, 0.0032112107146531343, -0.027652280405163765, 0.00013323649181984365, 7.761554297758266e-05, -0.0028136163018643856, 0.0006454567774198949, -0.008574508130550385, -0.008364713750779629, 0.00019731689826585352, 0.002708718879148364, -0.017988193780183792, -0.0182318277657032, -0.007451091893017292, -0.02263074554502964, 0.012966659851372242, 0.022766096517443657, -0.03316108137369156, 0.0024532433599233627, -0.02522949129343033, -0.003180756699293852, -0.01626923307776451, -0.023090939968824387, -0.019747762009501457, -0.013061405159533024, -0.024525664746761322, -0.010279934853315353, 0.01666175201535225, -0.023077405989170074, -0.020898249000310898, 0.01164021622389555, -0.026677751913666725, 0.019585341215133667, -0.011531935073435307, 0.004243264906108379, -0.03405439853668213, -5.7365708926226944e-05, -0.015172886662185192, 0.0008497526869177818, -0.005275318864732981, -0.016702357679605484, -0.0232804324477911, -0.00575920008122921, -0.011410119011998177, 0.005793037824332714, 0.0025936702731996775, -0.014969859272241592, 0.017257297411561012, -0.002470162231475115, 0.0025023079942911863, -0.012824540957808495, -0.013819373212754726, -0.17108410596847534, -0.007153318729251623, 0.009643783792853355, -0.03245725482702255, 0.03302573040127754, 0.006280302535742521, 0.01740618422627449, 0.011667286045849323, -0.004449675790965557, 0.01396825909614563, 0.0006048513459973037, -0.004486897494643927, -0.01969362236559391, -0.019585341215133667, -0.009190356358885765, -0.0041992757469415665, 0.002368648536503315, 0.018434854224324226, 0.028450854122638702, 0.007363113574683666, 0.03372955694794655, -0.0352996326982975, 0.01327796746045351, 0.025594940409064293, -0.01610681042075157, -0.02589271403849125, 0.008310573175549507, 0.013183221220970154, -0.0022586756385862827, -0.026447653770446777, 0.004815124440938234, 0.00040520812035538256, -0.011809405870735645, -0.016973059624433517, 0.01796112395823002, 0.0026258162688463926, 0.0024397082161158323, -0.01862434670329094, -0.02253600023686886, 0.022847307845950127, 0.019246961921453476, 0.03686970844864845, 0.015917319804430008, -0.020871179178357124, -0.010361146181821823, 0.01797465980052948, 0.008831676095724106, -0.013555438257753849, 0.02141258306801319, 0.002471853978931904, 0.030833037570118904, -0.029208822175860405, -0.012520000338554382, 0.0011699432507157326, -0.0011513323988765478, -0.03519134968519211, -0.01771749183535576, 0.005539254285395145, -0.008608345873653889, 0.0017096567898988724, 0.012269600294530392, -0.023916583508253098, -0.02254953607916832, 0.021534400060772896, -0.006368281319737434, -0.010713059455156326, -0.03781716898083687, 0.019179286435246468, -0.02801772952079773, -0.003409162163734436, 0.009400151669979095, -0.018827373161911964, 0.011674053966999054, -0.000255264196312055, 0.04125509038567543, 0.013325340114533901, -0.008378248661756516, 0.02934417314827442, -0.0004223385185468942, 0.008439157158136368, 0.007735329680144787, 0.03676142543554306, 0.008344410918653011, -0.0025496811140328646, 0.028234291821718216, -0.003986097406595945, 0.006547621451318264, 0.0170678049325943, -0.03546205535531044, -0.021778032183647156, 0.01168758887797594, -0.02245478890836239, -0.01038144901394844, -0.009630248881876469, 0.010983762331306934, 0.02743571810424328, 0.013054638169705868, -0.008317340165376663, 0.0030115675181150436, -0.01943645440042019, -0.012560605071485043, 0.005055373068898916, -0.01953119970858097, 0.02451212890446186, 0.042364973574876785, 0.023348107933998108, -0.018434854224324226, 0.038277361541986465, 0.03982036933302879, 0.024133145809173584, 0.0019084541127085686, -0.013271200470626354, 0.0226442813873291, 0.029181750491261482, 0.0036443350836634636, 0.02401133067905903, -0.010753665119409561, -0.01004983764141798, 0.0015734594780951738, 0.00392518937587738, 0.036165881901979446, -0.012262832373380661, -0.036626074463129044, 0.017866378650069237, -0.013460692018270493, -0.02149379439651966, -0.12279074639081955, -0.02418728731572628, -0.008378248661756516, 0.02215701714158058, 0.015213492326438427, 0.020031999796628952, -0.0031063135247677565, 0.038927048444747925, -0.0021148647647351027, 0.043177079409360886, 0.021696820855140686, -0.0035191350616514683, -0.0014448757283389568, 0.01599852927029133, -0.012438789010047913, -0.024295568466186523, 0.0061314161866903305, -0.004371848423033953, -0.010070140473544598, 0.020898249000310898, 0.005319308023899794, -0.007647351361811161, 0.012986961752176285, -0.0025259945541620255, -0.015254097059369087, 0.009549037553369999, -0.013765232637524605, -0.007342810742557049, 0.005332843400537968, 0.007058572955429554, -0.012411719188094139, 0.001440645894035697, -0.009549037553369999, -0.01635044254362583, 0.003392243292182684, -0.01659407652914524, -0.0170678049325943, -0.0006733729969710112, 0.03080596774816513, -0.04106559976935387, 0.002468470251187682, -0.015105211175978184, 0.011545469984412193, -0.017338508740067482, 0.01196505967527628, -0.009569340385496616, -0.02801772952079773, 0.029317103326320648, -0.014266032725572586, -0.005566324107348919, -0.033458855003118515, 0.005173805635422468, -0.018353642895817757, -0.01017165370285511, 0.021507330238819122, -0.012986961752176285, 0.018610810860991478, -0.0036037296522408724, -0.026515329256653786, 0.010482962243258953, 0.002659654011949897, -0.006107729859650135, -0.011525167152285576, 0.01082134060561657, 0.001422035158611834, 0.017595674842596054, -0.021507330238819122, 0.0014533351641148329, 0.03207826986908913, -0.021182486787438393, 0.004886183887720108, 0.018069405108690262, -0.0152405621483922, 0.030535265803337097, -0.024227891117334366, 0.006750648841261864, 0.00749169709160924, -0.0021825404837727547, 0.011240929365158081, 0.015416518785059452, -0.008263199590146542, -0.007085643243044615, -0.010158118791878223, -0.01156577281653881, -0.0045782593078911304, 0.01278393529355526, 0.015497730113565922, 0.012560605071485043, 0.021033599972724915, 0.0002544182352721691, 0.01000246498733759, 0.022346507757902145, 0.015890248119831085, 0.0002482851268723607, 0.007017967756837606, 0.019314637407660484, 0.011822940781712532, -0.0055595566518604755, 0.002828843193128705, 0.0016385973431169987, -0.03381076827645302, -0.0058167241513729095, -0.03608467057347298, 0.015078140422701836, -0.01740618422627449, -0.019341707229614258, 0.002194383880123496, 0.004818507935851812, 0.017690422013401985, -0.0150375347584486, 0.011931221932172775, 0.015064605511724949, -0.00980620551854372, 0.001143718953244388, -0.015145815908908844, -0.008269967511296272, -0.006050205323845148, 0.0023787999525666237, 1.4936233128537424e-05, -0.027151480317115784, 0.012506464496254921, 0.013142616488039494, -0.003282270161435008, -0.006398735102266073, 0.006408886518329382, 0.0002068337780656293, 0.0008933189092203975, -0.012959891930222511, 0.007444324437528849, 0.02459334023296833, -0.0007330121588893235, -0.04306880012154579, 0.007173621561378241, -0.007444324437528849, 0.009332475252449512, 0.015809038653969765, -0.014320173300802708, 0.02991264872252941, -0.008926421403884888, 0.022617211565375328, 0.00809401087462902, 0.009873881004750729, -0.0057998052798211575, -0.026271697133779526, -0.002707027131691575, 0.011586075648665428, 0.003031870350241661, -0.005451275501400232, -0.014198356308043003, 0.006622064858675003, -0.010063372552394867, 0.01270272396504879, 0.017988193780183792, 0.004287254065275192, -0.013508064672350883, -0.005796421784907579, 0.02975022792816162, -0.018082940950989723, 0.010692756623029709, -0.033215221017599106, -0.0026934919878840446, -0.017988193780183792, 0.029452454298734665, -0.01138981617987156, 0.028234291821718216, 0.0008696324075572193, -0.012201923877000809, -0.03237604349851608, -0.026583004742860794, 0.01118678878992796, -0.010983762331306934, -0.004733913578093052, 0.009609946049749851, -0.021304301917552948, 0.02107420563697815, 0.005691524129360914, 0.027909448370337486, -0.011633448302745819, -0.05487143620848656, -0.0014101918786764145, -0.02958780527114868, 0.014320173300802708, 0.023388713598251343, 0.0012985270004719496, -0.022008130326867104, -0.011809405870735645, 0.04095732048153877, 0.016391048207879066, 0.015227027237415314, -0.011498097330331802, 0.011559005826711655, -0.007457859348505735, 0.013582508079707623, -0.01708134077489376, -0.004649318754673004, -0.018895048648118973, 0.00873692985624075, 0.04030763357877731, -0.017500929534435272, -0.0047136107459664345, -0.02116895094513893, 0.009149751625955105, 0.014157751575112343, -0.0062532322481274605, -0.006216011010110378, -0.002903286600485444, -0.004283870104700327, 0.0316992849111557, 0.019571805372834206, -0.02720562182366848, 0.0023195839021354914, 0.021778032183647156, 0.0013898891629651189, 0.014076540246605873, 0.016404584050178528, 0.013535135425627232, -0.0061686378903687, 0.007978961803019047, -0.012080107815563679, -0.00809401087462902, -0.02581150270998478, 0.022265296429395676, -0.007336043287068605, 0.011369513347744942, 0.041038528084754944, -0.002016735030338168, 0.038358572870492935, 0.0075323027558624744, 0.01635044254362583, -0.02991264872252941, 0.0067811026237905025, -0.011220627464354038, -0.010435589589178562, 0.029777297750115395, -0.02083057351410389, -0.009420454502105713, 0.014279567636549473, -0.04201306030154228, -0.0057998052798211575, -0.0037999891210347414, -0.024566270411014557, 0.0485369935631752, -0.0016030676197260618, -0.017054270952939987, 0.025919783860445023, -0.004629016388207674, 0.012080107815563679, 0.037302833050489426, -0.009711459279060364, -0.009975394234061241, -0.023226292803883553, 0.011281535029411316, 0.009136215783655643, -0.018069405108690262, -0.05286823958158493, 0.00043819998973049223, -0.008364713750779629, 0.0004263567680027336, 0.018245361745357513, -0.009515199810266495, 0.0047914376482367516, 0.016959523782134056, -0.013812605291604996, 0.01000246498733759, -0.007640583906322718, -0.019382312893867493, -0.004375232383608818, 0.012682422064244747, -0.0017265756614506245, -0.025919783860445023, -0.024390313774347305, -0.005634000059217215, -0.013887048698961735, -0.011207091622054577, -0.0236864872276783, -0.0035157513339072466, 0.03283623605966568, -0.009251264855265617, -0.014211892150342464, 0.02655593492090702, 0.02958780527114868, -0.01708134077489376, 0.017270833253860474, -0.02923589199781418, -0.026650680229067802, -0.033296432346105576, -0.0006471486412920058, 0.0019253729842603207, 0.01429310254752636, -0.036328304558992386], "b5804993-458b-4b01-b13c-ad4cb9ea1c30": [0.019288843497633934, -0.022278010845184326, 0.0026691388338804245, -0.008866970427334309, 0.014597324654459953, -0.007426003459841013, -0.02226460725069046, -0.026393143460154533, -0.005096999928355217, -0.007198129780590534, 0.005418703891336918, 0.017023509368300438, 0.007258449215441942, 0.016286270692944527, -0.02745208516716957, 0.017519470304250717, 0.019945655018091202, 0.021607793867588043, 0.0008281368063762784, 0.004661358892917633, -0.04635220393538475, -0.019007351249456406, 0.01624605804681778, -0.01483860332518816, -0.012781037017703056, 0.015897545963525772, 0.006357007659971714, -0.022773971781134605, 0.012352097779512405, -0.01920841634273529, 0.02538781799376011, 0.00022159046784508973, -0.0372372530400753, -0.014476685784757137, -0.017492661252617836, -0.008458137512207031, -0.0135249774903059, 0.00647094426676631, 0.018028834834694862, -0.014195194467902184, 0.02742527611553669, 0.0005227692308835685, -0.02646016515791416, 0.005200883373618126, -0.004044759087264538, 0.02828315459191799, 0.030374230816960335, -0.03461000323295593, -0.019007351249456406, 0.010435277596116066, 0.02458355762064457, 0.007238342892378569, -0.031607430428266525, 0.0021865826565772295, -0.014101364649832249, 0.0024663982912898064, -0.008766437880694866, -0.01686265878379345, 0.017345214262604713, -0.011795817874372005, 0.004121833946555853, 0.00261384597979486, -0.011159111745655537, 0.010803896933794022, -0.014583920128643513, -0.0006785946316085756, 0.0005353357992134988, 0.008196753449738026, -0.0076203662902116776, -0.010911131277680397, 0.025521861389279366, 0.014503494836390018, 0.013075931929051876, 0.015696480870246887, 0.026755059137940407, -0.009838784113526344, -0.009101546369493008, 0.003394648665562272, 0.013833277858793736, 0.0008536888053640723, -0.004011248238384724, 0.0004239122208673507, -0.02721080742776394, 0.007245045155286789, 0.00701717147603631, -0.03900662437081337, -0.0020039486698806286, 0.03088359534740448, -0.02766655571758747, -0.013156358152627945, 0.010120275430381298, 0.010515703819692135, 0.007921963930130005, 0.026366334408521652, -0.02233162894845009, -0.006008494645357132, -0.01522732898592949, 0.028899753466248512, -0.025655904784798622, -0.026728251948952675, -0.025669308379292488, 0.012512950226664543, -0.0010296207619830966, 0.0004859072796534747, -0.0359504371881485, 0.009047928266227245, 0.008263775147497654, -0.002726107370108366, 0.0175462793558836, 0.0009089817176572978, -0.009751656092703342, 0.028095493093132973, 0.007472918834537268, 0.009718145243823528, 0.019650761038064957, -0.04061514511704445, 0.023055462166666985, -0.02420823648571968, -0.024409299716353416, -0.01664818823337555, 0.02093757688999176, -0.023913340643048286, 0.024033978581428528, 0.0077611119486391544, 0.033242758363485336, 0.010837407782673836, -0.004952902905642986, -0.005348331294953823, -0.013846681453287601, -0.028095493093132973, 0.023323548957705498, 0.006393869407474995, -0.004859072621911764, -0.021567581221461296, 0.018122665584087372, 0.033215951174497604, 0.017130745574831963, -0.004101727623492479, -0.00772760109975934, -0.009979530237615108, 0.016621379181742668, 0.01432923786342144, -0.005827536340802908, 0.022465672343969345, -0.011742200702428818, 0.020615871995687485, 0.0008407033747062087, 0.00716461893171072, -0.00963771902024746, -0.010240914300084114, 0.0005701032932847738, 0.01627286709845066, 0.013551786541938782, -0.004590985830873251, 0.016205845400691032, 0.0047618914395570755, -0.008478243835270405, 0.024020574986934662, -0.0204148069024086, -0.04141940549015999, 0.007506429683417082, 0.010180595330893993, -0.0024496428668498993, -0.012626887299120426, 0.011105494573712349, 0.026165269315242767, 0.03418106213212013, 0.016688400879502296, -0.0005072704516351223, 0.020696299150586128, -0.015321158803999424, 0.015079881064593792, -0.019784804433584213, 0.020776724442839622, -0.009751656092703342, -0.039087049663066864, 0.029945291578769684, -0.021098429337143898, 0.0028534485027194023, 0.013424444943666458, 0.013116145506501198, 0.01847117953002453, 0.005525938700884581, 0.02591058611869812, -0.050909679383039474, 0.008324094116687775, 0.012740823440253735, 0.02553526498377323, -0.005375139880925417, -0.0022938174661248922, -0.009751656092703342, 0.009054630994796753, -0.006246421951800585, -0.010944642126560211, -0.626250684261322, -0.02989167533814907, -0.029730822890996933, -0.021098429337143898, -0.0051606702618300915, -0.007285258267074823, 0.014905624091625214, -0.006256475113332272, -0.02446291781961918, 0.015334563329815865, 0.020991194993257523, -0.0020944278221577406, 0.02328333631157875, -0.015321158803999424, 0.0033527601044625044, -0.022773971781134605, -0.02233162894845009, -0.0014292376581579447, -0.009047928266227245, 0.014932433143258095, -0.020240550860762596, 0.019556930288672447, -0.019865229725837708, 0.0022251203190535307, -0.013337316922843456, 0.02621888555586338, 0.025374412536621094, -0.0024898559786379337, 0.008947395719587803, 0.013055825605988503, 0.023149292916059494, -0.0057270037941634655, -0.007714197039604187, -0.00370965083129704, 0.04045429453253746, -0.03190232440829277, 0.0193022470921278, 0.01346465852111578, 9.964240598492324e-05, 0.037719808518886566, -0.009992934763431549, -0.03147338703274727, 0.029114224016666412, 0.01471796352416277, -0.004349708091467619, -0.00032337967422790825, 0.02223779819905758, 0.02868528477847576, -0.003505234606564045, -0.020052891224622726, 0.015307754278182983, -0.013752851635217667, 5.164073627383914e-06, -0.003940875642001629, 0.027170594781637192, 0.004446889273822308, 0.00507354224100709, -0.007385790813714266, 0.03273339569568634, 0.007479621097445488, 0.01400753390043974, 0.0011896350188180804, -0.007519833743572235, -0.021379919722676277, -0.03005252778530121, 0.021902689710259438, -0.036459799855947495, 0.00700376695021987, 0.00439327210187912, -0.007988985627889633, 0.002178204944357276, 0.01581711880862713, 0.0025501754134893417, -0.0013538382481783628, 0.003920768853276968, 0.003416430903598666, 0.013659020885825157, -0.005683439783751965, -0.002508286852389574, -0.0014057799708098173, 0.010421873070299625, -0.011802520602941513, -0.03981088474392891, -0.007660579401999712, 0.040561527013778687, -0.0030762956012040377, 9.309731831308454e-05, -0.0022686843294650316, -0.005609715823084116, 0.029704013839364052, 0.01432923786342144, 0.015495415776968002, 0.008069411851465702, -0.02806868590414524, 0.002615521661937237, 0.02377929724752903, 0.001868229708634317, -0.0033242760691791773, -0.023511210456490517, -0.029382310807704926, -0.006571476813405752, -0.014771581627428532, 0.029784440994262695, 0.0033108715433627367, -0.0075600468553602695, 0.010495597496628761, 0.014476685784757137, 0.011849435046315193, 0.017439045011997223, -0.009409845806658268, -0.008659202605485916, -0.05013222619891167, -0.019972464069724083, -0.0005646577919833362, 0.01256656739860773, -0.026889102533459663, 0.010267723351716995, -0.014356046915054321, -0.016969893127679825, -0.023605041205883026, 0.044180698692798615, 0.004872477147728205, -0.006367060821503401, -0.0010622938862070441, 0.012177841737866402, 0.008860267698764801, 0.012378906831145287, -0.008035901002585888, -0.006863021291792393, 0.008471542038023472, -0.010555916465818882, 0.0024010520428419113, 0.018672244623303413, -0.0228543970733881, -0.0021430186461657286, -0.006467593368142843, 0.012218054383993149, -0.015026263892650604, 0.035682350397109985, -0.021192260086536407, -0.02309567481279373, 0.004366463515907526, 0.007513131946325302, -0.034234680235385895, 0.01030123420059681, -0.04758540168404579, -0.021500559523701668, 0.011655072681605816, -0.006923340726643801, 0.014490090310573578, -0.0011720418697223067, 0.015414989553391933, 0.0022820886224508286, 0.026058034971356392, 0.007111001759767532, -0.006611689925193787, -0.006742382422089577, -0.013860085979104042, -0.019221821799874306, -0.01759989745914936, -0.02479802630841732, 0.015280946157872677, -0.0022184180561453104, -0.006544668227434158, -0.008592180907726288, -0.02983805723488331, -0.01932905614376068, 0.03935513645410538, -0.008451435714960098, -0.028309963643550873, 0.021232472732663155, -0.006025250069797039, 0.011500922963023186, 0.004611092619597912, 0.0008947395836003125, 0.01581711880862713, -0.012345395982265472, 0.01060953363776207, -0.0014669373631477356, 0.005170723423361778, 0.012023692019283772, 0.0008201779564842582, -0.0003994074068032205, -0.003532043192535639, 0.02517334744334221, 0.022840993478894234, 0.021580984815955162, -0.0157500971108675, 0.001915144850499928, 0.01184273324906826, 0.01658116653561592, -0.005107053089886904, -0.007358981762081385, -0.012043798342347145, -0.004765242338180542, 0.018122665584087372, 0.005408650729805231, -0.006209559738636017, 0.021567581221461296, 0.045011769980192184, -0.00042014222708530724, -0.003599064890295267, -0.023109080269932747, -0.017613301053643227, -0.005261202808469534, 0.0016680023400112987, 0.010307935997843742, -0.03704959154129028, 0.024811429902911186, -0.005958228372037411, 0.010341446846723557, -0.017586492002010345, -0.013860085979104042, -0.021259281784296036, 0.015093285590410233, 0.03999854624271393, 0.017988622188568115, 0.021996520459651947, 0.032840628176927567, 0.012057202868163586, 0.012010287493467331, 0.013806468807160854, 0.02322971820831299, -0.0024111054372042418, -0.021111832931637764, 0.002372568007558584, 0.024382492527365685, -0.027800599113106728, -0.0024663982912898064, -0.035896819084882736, -0.007218236569315195, 0.012533056549727917, -0.017251383513212204, 0.007519833743572235, 0.0288461372256279, 0.004128536209464073, 0.030401039868593216, -0.007640473078936338, 0.016688400879502296, 0.011279750615358353, -0.02927507646381855, 0.01710393652319908, 0.01119262259453535, -0.029301883652806282, -0.002706000814214349, -0.0038068322464823723, 0.025749733671545982, 0.0132032735273242, -0.014999454841017723, 0.022921418771147728, 0.006792648695409298, 0.03091040439903736, -0.03273339569568634, 0.00508024450391531, 0.0036660865880548954, -0.024972282350063324, 0.004450240638107061, 0.011165814474225044, 0.05155308544635773, 0.015830524265766144, -0.011681880801916122, -0.02300184592604637, 0.012767632491886616, -0.01667499728500843, 0.001355513697490096, -0.05160670354962349, 0.0018916872795671225, -0.013437849469482899, -0.015374775975942612, -0.0035923628602176905, -0.013290401548147202, -0.014409664086997509, -9.131705883191898e-05, -0.009610910899937153, 0.016809040680527687, 0.0049964673817157745, 0.031232109293341637, -0.004081621300429106, 0.01828351803123951, 0.009269100613892078, -0.02013331651687622, -0.021259281784296036, 0.03452957794070244, -0.005931419786065817, 0.016567762941122055, -0.03227764740586281, -0.016326485201716423, -0.014289025217294693, 0.001884985133074224, -0.023015249520540237, -0.04329601302742958, -0.01006665825843811, 0.003756565973162651, 0.0032639564014971256, -0.009543889202177525, -0.017733940854668617, 0.023765891790390015, -0.012264969758689404, -0.0034348617773503065, 0.025454839691519737, 0.0049864137545228004, 0.0010899403132498264, -0.0067524355836212635, -0.004798753187060356, 0.04144621640443802, -0.008364307694137096, 0.007915262132883072, -0.007405897136777639, -0.023135889321565628, -0.03351084515452385, 0.028497623279690742, 0.0033242760691791773, 0.006440784782171249, -0.017117340117692947, 0.007586855441331863, 0.007942070253193378, 0.021822262555360794, -0.013484764844179153, 0.004128536209464073, 0.001913469284772873, -0.014262216165661812, -0.014704559929668903, -0.0037934277206659317, 0.028738902881741524, 0.03798789530992508, 0.025749733671545982, -0.019932251423597336, -0.0029254970140755177, -0.007104299496859312, -0.017465854063630104, -0.009309313260018826, -0.014986050315201283, 0.025870373472571373, 0.034475959837436676, 0.023310145363211632, -0.02486504800617695, -0.011145707219839096, -0.011970074847340584, -0.0030310561414808035, -0.0036426291335374117, -0.008813352324068546, -0.02164800651371479, 0.005991739220917225, -0.006105676293373108, -0.001806234591640532, 0.005277958232909441, 0.01942288689315319, 0.02804187685251236, 0.011172516271471977, -0.0028886350337415934, 0.018055643886327744, -0.0021430186461657286, -0.014409664086997509, -0.011795817874372005, -0.020790129899978638, 0.01266039814800024, 0.003538745455443859, 0.028497623279690742, -0.0002592901873867959, 0.04447559639811516, 0.0029858164489269257, -0.0020994546357542276, 0.023940149694681168, -0.03538745269179344, 0.007935368455946445, 0.01617903634905815, 0.008518457412719727, -0.025709521025419235, 0.0030444604344666004, 0.00018504270701669157, -0.011360176838934422, 0.03833640739321709, -0.012177841737866402, -0.007338875439018011, -0.001998922089114785, 0.0038369919639080763, -0.03474404662847519, -0.004292739555239677, -0.006320145446807146, 0.022720353677868843, -0.005247798748314381, -0.015334563329815865, -0.0025149891152977943, -0.009135057218372822, -0.013900299556553364, -0.025119731202721596, 0.027371659874916077, -0.0007586018182337284, 0.012874866835772991, -0.01639350689947605, -0.0368083156645298, -0.008015794679522514, -0.030588701367378235, 0.008015794679522514, 0.031205300241708755, -0.0501590333878994, -0.046271778643131256, 0.0011041824473068118, 0.03393978625535965, 0.020950980484485626, 0.010944642126560211, 0.003098077839240432, -0.021326303482055664, -0.0034382129088044167, 0.001378133543767035, -0.038068320602178574, -0.025964204221963882, -0.02344418875873089, 0.011869542300701141, 0.008960800245404243, 0.010689959861338139, 0.015213924460113049, -0.018980544060468674, -0.003314222674816847, 0.010803896933794022, 0.010006338357925415, 0.01215103268623352, -0.013705936260521412, 0.0009743278496898711, 0.010274425148963928, -0.008417924866080284, 0.002164800651371479, 0.0206292774528265, -0.04514581337571144, 0.005060137715190649, -0.021473750472068787, 0.0007799649611115456, -0.0043698144145309925, -0.025039304047822952, -0.011400390416383743, 0.012700610794126987, -0.012452630326151848, -0.007338875439018011, -0.04281345754861832, 0.02520015649497509, -0.01747925765812397, 0.015093285590410233, 0.024074193090200424, -0.005535991862416267, 0.019034160301089287, 0.02053544670343399, 0.009001013822853565, -0.007553344592452049, -0.023913340643048286, -0.010341446846723557, -0.01111889909952879, 0.0043865698389709, -0.001455208519473672, -0.010234212502837181, 0.005398597568273544, 0.006212911102920771, -0.024409299716353416, 0.005314820446074009, 0.008592180907726288, 0.0024697494227439165, 0.0031667749863117933, 0.004028003662824631, -0.0025803351309150457, -0.05747780576348305, -0.017211170867085457, -0.009503675624728203, -0.020575659349560738, -0.013692531734704971, 0.017720535397529602, 0.011909754946827888, 0.011018366552889347, 0.0015708209248259664, -0.0025484999641776085, -0.01434264238923788, -0.029382310807704926, -0.017747344449162483, 0.0009609234984964132, 0.014999454841017723, -0.0001421069318894297, 0.013719340786337852, -0.0006932556279934943, -0.011199325323104858, -0.023363761603832245, 0.002553526544943452, -0.0007673983927816153, -0.006078867707401514, 0.014449876733124256, 0.02785421535372734, 0.02562909573316574, 0.02510632574558258, 0.0024848291650414467, -0.004450240638107061, 0.0012809521285817027, -0.013819873332977295, 0.010321340523660183, -0.01198347844183445, -0.007747707888484001, -0.025843564420938492, -0.0038805559743195772, 0.001261683413758874, -0.01045538391917944, 0.009972827509045601, 0.0085385637357831, 0.02686229534447193, 0.01577690616250038, -0.0031114821322262287, -0.004875828046351671, -0.02100459858775139, -0.022009924054145813, -0.011239537969231606, -0.00924899335950613, 0.008303987793624401, 0.019154800102114677, -0.0031081310007721186, -0.015240732580423355, 0.028899753466248512, 0.003816885408014059, -0.0012985452776774764, 0.02152736857533455, 0.017894791439175606, 0.017251383513212204, 0.013846681453287601, 0.025374412536621094, 0.01790819689631462, -0.03233126550912857, -0.005713599268347025, -0.04109770059585571, -0.0017961814301088452, -0.025682711973786354, -0.010234212502837181, 0.029141033068299294, -0.002900363877415657, -9.352929737360682e-06, 0.0011812573065981269, -0.0017115664668381214, -0.01902075670659542, -0.01788138784468174, -0.0024731005541980267, -0.009765060618519783, -0.005187478847801685, -0.000647597131319344, -0.006997064687311649, 0.0008331634453497827, 0.00781472958624363, 0.02020033821463585, 0.00810962449759245, 0.007446110248565674, -0.02865847572684288, -0.025642499327659607, 0.019999273121356964, -0.028738902881741524, 0.06149910390377045, 0.01785457879304886, 0.009490272030234337, 0.027934642508625984, 0.025830160826444626, -0.02133970707654953, 0.0007824782514944673, -0.0006739869131706655, -0.0003422295267228037, 0.04152664169669151, 0.015093285590410233, -0.027197403833270073, -0.002107832347974181, 0.0032790363766252995, -0.008089518174529076, -0.0002714378642849624, -0.029757631942629814, 0.01636669784784317, 0.0020508638117462397, -0.012921782210469246, -0.030829979106783867, 0.01060953363776207, -0.04230409115552902, 0.009999636560678482, -0.003927471116185188, 0.009932614862918854, -0.019436290487647057, 0.009832082316279411, -0.03273339569568634, 0.024972282350063324, 0.0015507143689319491, 0.03857768699526787, -0.013129550032317638, -0.0005835076444782317, -0.000142944700201042, -0.03635256737470627, -0.01670180633664131, -0.0019335758406668901, -0.0035756074357777834, 0.02192949876189232, -0.016782231628894806, 0.002773022511973977, 0.01899394765496254, -0.015602650120854378, -0.021232472732663155, -0.017412235960364342, -0.026205481961369514, 0.03351084515452385, -0.017372023314237595, 0.006098974030464888, -0.0038906093686819077, 0.0074394079856574535, -0.004745136015117168, -0.02801506780087948, -0.00992591306567192, 0.01087091863155365, -0.01605839841067791, 0.012164437212049961, 0.0175462793558836, 0.016849253326654434, -0.001347973826341331, 4.6941364416852593e-05, -0.015254137106239796, 0.006544668227434158, -0.002427860861644149, -0.023122483864426613, 0.010931238532066345, -0.026755059137940407, 0.004912690259516239, -0.01584392786026001, 0.02989167533814907, 0.017613301053643227, -0.010676555335521698, -0.028202729299664497, 0.016728615388274193, 0.049890946596860886, -0.0474245510995388, 0.03455638512969017, -0.0039609819650650024, -0.01063634268939495, -0.02217077650129795, -0.0013052474241703749, -0.009785166941583157, -0.0068496172316372395, 0.023524614050984383, -0.0368083156645298, -0.014771581627428532, -0.022063542157411575, 0.016420314088463783, 0.0055527472868561745, -0.0035923628602176905, 0.0033226003870368004, -0.0020491883624345064, 0.01544179767370224, 0.024972282350063324, -0.01636669784784317, -0.009362930431962013, 0.01096474938094616, 0.012439225800335407, -0.003568905172869563, 0.01688946597278118, -0.005190830212086439, 0.01056261919438839, 0.002627250272780657, -0.02662101574242115, -0.024476321414113045, -0.033430419862270355, 0.01103847287595272, -0.008766437880694866, -0.01400753390043974, 0.0012156059965491295, -0.00507354224100709, -0.025991013273596764, 0.0005014060297980905, -0.005763865541666746, 0.01759989745914936, 0.015857333317399025, 0.019784804433584213, -0.022184180095791817, 0.025361008942127228, 0.016527550294995308, -0.00288360845297575, 0.005522587336599827, -0.005931419786065817, 0.025213560089468956, -0.014101364649832249, -0.027224211022257805, -0.017331810668110847, -0.024101000279188156, 0.03356446325778961, 0.013739447109401226, -0.008860267698764801, 0.005026626866310835, 0.016165632754564285, -0.01892692595720291, -0.030374230816960335, -0.02242545783519745, 0.016809040680527687, 0.022009924054145813, 0.02001267671585083, 0.011802520602941513, 0.033001482486724854, -0.026728251948952675, 0.0126469936221838, -0.04675433412194252, -0.01113230362534523, 0.014597324654459953, 0.030374230816960335, 0.0013035719748586416, -0.01031463872641325, -0.0037498637102544308, -0.014047746546566486, 0.0023105728905647993, -0.005850994028151035, 0.00619280431419611, 0.022036733105778694, 0.0013597025536000729, -0.006564775016158819, -0.011386985890567303, -0.014932433143258095, 0.027505703270435333, 0.01522732898592949, 0.007224938366562128, -0.03452957794070244, 0.014047746546566486, -0.0056733861565589905, 0.025280581787228584, -0.014543707482516766, -0.0074997274205088615, -0.009604208171367645, -0.00564992893487215, -0.020307572558522224, -0.029194649308919907, -0.021580984815955162, 0.021205663681030273, -0.02060246840119362, 0.037693001329898834, -0.000987732200883329, -0.0009316015057265759, 0.031017638742923737, 0.010415171273052692, 0.004668061155825853, -0.007921963930130005, 0.040347058326005936, -0.006119080353528261, -0.0049964673817157745, 0.02103140763938427, -0.011970074847340584, -0.014637538231909275, 0.00330752064473927, 0.027934642508625984, -0.015803715214133263, -0.007861644960939884, -0.02538781799376011, -0.017010105773806572, -0.028899753466248512, 0.02294822782278061, 0.03332318738102913, -0.015924355015158653, 0.023135889321565628, 0.009570697322487831, 0.005458917003124952, 0.0157500971108675, -0.02288120612502098, -0.0038671516813337803, -0.017184361815452576, 0.0011770684504881501, 0.008820055052638054, 0.01605839841067791, -0.01967756822705269, 0.0015691453590989113, -0.012318586930632591, -0.004658007528632879, -0.00044862646609544754, 0.1976335644721985, -0.00522769195958972, 0.010649747215211391, 0.02467738650739193, -0.016822444275021553, 0.013625510036945343, -0.004728380590677261, 0.004182153847068548, -0.01294188853353262, -0.00275961821898818, -0.015522223897278309, -0.008545265533030033, -0.03155381232500076, 0.007372386287897825, 0.020883958786725998, -0.02233162894845009, -0.01071676891297102, -0.041955579072237015, -0.014409664086997509, 0.001128477742895484, 0.01698329672217369, 0.0009475192055106163, -0.018766073510050774, -0.025401221588253975, 0.029006989672780037, 0.012586673721671104, -0.015709884464740753, 0.0029154436197131872, 0.01695648767054081, -0.0017794260056689382, -0.01705031841993332, -0.006336900871247053, -0.022653331980109215, 8.613334648543969e-05, -0.04149983078241348, -0.003471723757684231, 0.03010614402592182, -0.0021865826565772295, 0.028712093830108643, -0.014530302956700325, 0.017747344449162483, -0.03332318738102913, -0.02686229534447193, -0.024436108767986298, 0.006943447515368462, 0.02389993518590927, -0.0059012603014707565, -0.0061257826164364815, -0.0015624432126060128, 0.015790311619639397, -0.009376334957778454, -0.02007969841361046, 0.018605222925543785, 0.002194960368797183, 0.009858891367912292, -0.02702314592897892, 0.006497753318399191, 0.009932614862918854, 0.030615508556365967, 0.02863166667521, -0.020830342546105385, 0.014758177101612091, 0.01545520219951868, 0.005231043323874474, -0.016527550294995308, 0.013967321254312992, -0.02986486628651619, 0.02479802630841732, -0.023269932717084885, -0.020977789536118507, 0.014691155403852463, -0.015026263892650604, 0.005023275967687368, 0.02112523838877678, -0.025025900453329086, -0.010462086647748947, 0.021165451034903526, 0.025870373472571373, 0.00981867779046297, 0.010106870904564857, -0.005314820446074009, -0.029409119859337807, 0.003238823264837265, 0.005948175210505724, -0.016353292390704155, 0.012144330888986588, -0.012439225800335407, 0.01335742324590683, 0.0034080531913787127, 0.0003780442348215729, 0.011112196370959282, 0.0061257826164364815, 0.0003011787193827331, -0.004222366493195295, 0.004078269936144352, -0.014583920128643513, -0.002959007862955332, 0.009872294962406158, 0.012070607393980026, 0.006427380256354809, -0.034878090023994446, 0.029569970443844795, 0.0009885699255391955, -0.008853565901517868, 0.017720535397529602, -0.01572328992187977, 0.004922743421047926, 0.014959242194890976, 0.004668061155825853, -0.038121938705444336, 0.005897908937186003, -0.012238160707056522, 0.009376334957778454, -0.010917834006249905, 0.004929445683956146, 0.001456884085200727, -0.007955474779009819, 0.015307754278182983, -0.0018766074208542705, -0.004487102385610342, 0.009798571467399597, -0.03412744775414467, -0.01562945917248726, 0.010529108345508575, -0.008102922700345516, -0.016540953889489174, -0.030642317607998848, -0.0019888686947524548, -0.01071676891297102, -0.002308897441253066, 0.0252939872443676, -0.023551423102617264, 0.0024328874424099922, -0.011795817874372005, 0.001402428955771029, -0.005864398088306189, -0.013283699750900269, -0.010864216834306717, -0.03292105719447136, 0.002181556075811386, -0.0028903104830533266, 0.02211715839803219, -0.014677750878036022, -0.019744589924812317, 0.006846265867352486, -0.0021463697776198387, -0.01403434295207262, 0.002322301734238863, 0.010495597496628761, -0.030937213450670242, -0.01714414916932583, -0.024449514225125313, 0.004869125783443451, -0.011949967592954636, -0.0018816340016201138, -0.01963735558092594, -0.007493025157600641, -0.04080280661582947, 0.01750606670975685, -0.006876425817608833, -0.020146720111370087, 0.01797521859407425, 0.018658839166164398, 0.00016598340880591422, -0.011152409948408604, -0.017988622188568115, -0.1684657335281372, -0.015388180501759052, 0.000662676990032196, -0.01337082777172327, 0.009731549769639969, 0.014650941826403141, 0.035280220210552216, 0.01522732898592949, -0.005556098185479641, 0.012526354752480984, -0.0012591700069606304, 0.010515703819692135, -0.02927507646381855, -0.011185920797288418, -0.008210157044231892, -0.00852515920996666, 0.03576277568936348, 0.012117521837353706, 0.041258554905653, 0.026326121762394905, 0.053590547293424606, -0.0327870137989521, 0.016514144837856293, -0.00045574750402010977, -0.000751899613533169, 0.0013203273992985487, -0.002627250272780657, 0.004208962433040142, 0.03863130509853363, -0.03359127417206764, 0.010529108345508575, 0.005311469081789255, 0.011889648623764515, -0.01482519879937172, 0.00757345138117671, 0.011990181170403957, 0.005934771150350571, -0.0043698144145309925, -0.01505307201296091, 0.015522223897278309, 0.01695648767054081, 0.042598988860845566, -0.005224341060966253, -0.014919028617441654, 0.0006878101266920567, 0.008759735152125359, 0.02276056632399559, -0.03152700513601303, -0.014168386347591877, -0.00024274419411085546, 0.029811248183250427, -0.04557475075125694, 0.014409664086997509, -0.0038738539442420006, 0.02146034687757492, -0.044609639793634415, -0.010126978158950806, 0.0025099623017013073, -0.025280581787228584, -0.013263593427836895, 0.00454071955755353, -0.047451358288526535, -0.0038235876709222794, -0.009490272030234337, 0.0030411093030124903, -0.014597324654459953, -0.0328674390912056, -0.00040380569407716393, -0.021138641983270645, 0.01432923786342144, -0.0031684504356235266, 0.0032505521085113287, 0.019288843497633934, -0.008096220903098583, 0.014262216165661812, 0.010475490242242813, -0.012130926363170147, 0.009704740718007088, -0.002337381476536393, -0.0027830759063363075, 0.009121652692556381, 0.04884541034698486, 0.025441434234380722, -0.002960683312267065, 0.014999454841017723, -0.010589427314698696, -0.01778755709528923, 0.015187115408480167, -0.026366334408521652, -0.024221640080213547, 0.022210989147424698, -0.020589064806699753, 0.011259644292294979, -0.020173529163002968, 0.01473136804997921, 0.020066294819116592, 0.026299312710762024, -0.008263775147497654, 0.014476685784757137, -0.017345214262604713, 0.004567528609186411, 0.0008302312344312668, -0.022988440468907356, 0.008303987793624401, 0.05506502464413643, -0.00040548123070038855, -0.04653986543416977, 0.005096999928355217, 0.05849653482437134, 0.013310507871210575, -0.015468606725335121, -0.0009156838641501963, 0.014597324654459953, 0.010864216834306717, 0.00839781854301691, 0.0002597090497147292, -0.010750279761850834, -0.01482519879937172, -0.006759137846529484, 0.012010287493467331, 0.03704959154129028, -0.0042726327665150166, -0.040132589638233185, -0.0026373036671429873, 0.0001364519848721102, -0.015709884464740753, -0.1140977293252945, -0.027720171958208084, -0.012995506636798382, 0.021138641983270645, 0.0028299910482019186, 0.019436290487647057, 0.0023323548957705498, 0.012653695419430733, -0.010810598731040955, 0.038926199078559875, -0.007774516474455595, -0.004885881207883358, -0.017211170867085457, 0.027800599113106728, -0.006581530440598726, 0.009450058452785015, -0.01970437727868557, 0.00564322667196393, -0.03351084515452385, 0.05200883373618126, 0.028953371569514275, -0.019650761038064957, 0.011735498905181885, 0.00026222236920148134, -0.019985869526863098, 0.007821431383490562, -0.018296921625733376, 0.012921782210469246, 0.009470164775848389, 0.00510370172560215, 0.010281127877533436, -0.009724847972393036, 0.004158696159720421, -0.020575659349560738, 0.014530302956700325, -0.000385793624445796, -0.001533958944492042, 0.0004255877574905753, 0.015066476538777351, -0.02847081609070301, 0.0011971750063821673, 0.002117885509505868, 0.0184041578322649, -0.0036660865880548954, 0.008585479110479355, 0.00034830335061997175, -0.01920841634273529, 0.03560192510485649, 0.008210157044231892, -0.0037599168717861176, -0.02965039759874344, 0.00535838445648551, -0.016715209931135178, -0.012848058715462685, 0.015388180501759052, -0.04289388284087181, 0.011755605228245258, 0.01828351803123951, -0.00884686317294836, -0.010736875236034393, -0.0264065470546484, 0.0071445126086473465, -0.009684634394943714, 0.014181789942085743, 0.013431147672235966, 0.006390518508851528, -0.01556243747472763, 0.00036694377195090055, 0.021795455366373062, -0.021688219159841537, -0.006976958364248276, 0.014235408045351505, -0.023846318945288658, 0.004011248238384724, -0.024757813662290573, 0.03048146516084671, -0.02304205857217312, -0.004899285733699799, 0.006678711622953415, 0.012479439377784729, 0.0074997274205088615, -0.016205845400691032, -0.0006421515718102455, 0.0011954994406551123, 0.010984855704009533, 0.020830342546105385, 0.008605585433542728, -0.006889829877763987, 0.012211352586746216, -0.03206317871809006, -0.004805455449968576, 0.01304912380874157, 0.023149292916059494, -0.01016048900783062, 0.003009274136275053, 0.018632030114531517, 0.017398832365870476, -0.00879994872957468, 0.008639096282422543, -0.005763865541666746, -0.023645253852009773, -0.019878633320331573, -0.03981088474392891, 0.030856788158416748, -0.010951344855129719, -0.0032639564014971256, 0.011199325323104858, -0.00386044941842556, 0.014222003519535065, -0.019784804433584213, -0.004781997762620449, -0.006698818411678076, -0.00827717874199152, 0.0027160542085766792, -0.02659420855343342, -0.004627848044037819, -0.009878997690975666, -0.009966125711798668, 0.02624569460749626, -0.009550590999424458, 0.003790076822042465, 0.015495415776968002, 0.005485725589096546, 0.01070336438715458, 0.027800599113106728, -0.0019235225627198815, 0.0016763800522312522, 0.0031081310007721186, -0.017653513699769974, 0.009336122311651707, -0.022626522928476334, -0.031205300241708755, 0.0030478115659207106, 0.0043865698389709, 0.015213924460113049, 0.0031349395867437124, -0.017305001616477966, 0.004500506911426783, 0.004118483047932386, 0.017251383513212204, 0.024127809330821037, 0.03600405529141426, -0.008639096282422543, -0.025253774598240852, 0.00044862646609544754, 0.0024965580087155104, 0.01442306861281395, 0.00047752956743352115, 0.009135057218372822, 0.014597324654459953, -0.004205611068755388, 0.002040810650214553, 0.022304819896817207, 0.004745136015117168, -0.0234978049993515, -0.0024496428668498993, 0.02479802630841732, -0.009523782879114151, -0.025776542723178864, -0.026272503659129143, 0.0408296138048172, -0.018390752375125885, 0.02356482669711113, -0.014583920128643513, 0.018766073510050774, -0.0023273283150047064, -0.008759735152125359, -0.017117340117692947, -0.025736330077052116, 0.017988622188568115, 0.0028635018970817327, -0.005016573704779148, 0.019932251423597336, 0.017613301053643227, 0.01263358909636736, 0.0007916937465779483, 0.02304205857217312, 0.024905260652303696, -0.039489179849624634, 0.02375248819589615, 0.012177841737866402, 0.0025987662374973297, 0.00908143911510706, -0.02176864631474018, -0.028712093830108643, 0.008947395719587803, 0.01679563708603382, 0.023457592353224754, 0.01360540371388197, -0.0024228342808783054, 0.033055100589990616, -0.00812302902340889, 0.01809585653245449, 0.007131108082830906, -0.0324384979903698, 0.001021243049763143, 0.012640290893614292, 0.03702278435230255, -0.02195630595088005, 0.023216314613819122, -0.00481885951012373, 0.016567762941122055, -0.0012574945576488972, -0.009376334957778454, -0.003756565973162651, -0.02359163574874401, -0.036057669669389725, 0.021983115002512932, 0.005619768984615803, -0.02032097801566124, 0.01719776727259159, 0.01667499728500843, 0.002957332180812955, 0.016514144837856293, 0.007714197039604187, 0.005291362758725882, -0.00576051464304328, 0.010971451178193092, 0.004061514511704445, -0.018886713311076164, -0.023243123665452003, 0.030347421765327454, 0.010904429480433464, 0.027934642508625984, 0.0157500971108675, -0.00943665485829115, 0.03924790397286415, 0.015106689184904099, 0.03578958287835121, -0.03091040439903736, 0.007928666658699512, -0.03292105719447136, -0.024261852726340294, 0.018792882561683655, -0.027934642508625984, -0.007506429683417082, 0.00576051464304328, -0.0264065470546484, 0.003144992981106043, -0.007151214871555567, 0.005623119883239269, 0.06884468346834183, 0.011943265795707703, -0.01821649633347988, 0.02723761647939682, 0.008458137512207031, 0.01880628801882267, 0.02337716706097126, 0.010361554101109505, 0.0028886350337415934, -0.04021301493048668, 0.013243486173450947, -4.7019908379297704e-05, -0.023605041205883026, -0.04873817414045334, -0.003056189278140664, 0.008424626663327217, 0.0012189570115879178, 0.01880628801882267, -0.014181789942085743, -0.01434264238923788, 0.011092090047895908, -0.002059241523966193, 0.024851644411683083, 0.0028232887852936983, -0.0014233732363209128, -0.0030930510256439447, 0.02946273609995842, 0.005023275967687368, -0.014114768244326115, -0.03691554814577103, 0.005840940400958061, 0.004537368658930063, -0.022291414439678192, -0.009242291562259197, 0.010542511940002441, -0.011929861269891262, -0.012043798342347145, -0.021580984815955162, 0.034261491149663925, 0.02436908707022667, -0.01360540371388197, 0.0064139761961996555, -0.02844400703907013, -0.02025395631790161, -0.022680141031742096, 0.011909754946827888, -0.014141577295958996, -0.00011362271470716223, -0.04230409115552902], "b7cf44ff-494b-4b14-90d2-f358a2dbea32": [0.02843041904270649, 0.0004983377293683589, 0.0166582390666008, -0.00873852800577879, 0.0024916885886341333, 0.0012416495010256767, -0.03294062614440918, -0.03871262073516846, -0.0031964085064828396, -0.005218283738940954, 0.02467191219329834, 0.03358494117856026, -0.009228476323187351, -0.00472833588719368, -0.016430044546723366, 0.011517138220369816, 0.012966847978532314, 0.01428232528269291, 0.025839732959866524, 0.02561153843998909, -0.015262221917510033, 0.02060467004776001, 0.02636324055492878, -0.0232356246560812, -0.027517639100551605, -0.0004073113959748298, 0.0018188487738370895, -0.01071174442768097, 0.00665121478959918, 0.004842433147132397, 0.016940126195549965, -0.0005801355582661927, -0.030202286317944527, -0.011705064214766026, -0.03030967153608799, 0.008872760459780693, -0.017168322578072548, 0.021826185286045074, 0.021087907254695892, -0.010637916624546051, 0.017450209707021713, 0.01149029191583395, -0.0011049002641811967, 0.020054318010807037, -3.290266249678098e-05, 0.013443373143672943, 0.018362989649176598, -0.03718236833810806, -0.007282106671482325, 0.013054098933935165, 0.016832740977406502, 0.011228539049625397, -0.028967348858714104, -0.013651433400809765, -0.017168322578072548, -0.02504776231944561, 0.03471249341964722, 0.0057787043042480946, 0.008006962016224861, -0.00027727376436814666, 0.01946369558572769, -0.00820831023156643, -0.011382905766367912, 0.0051377443596720695, -0.025262534618377686, 0.010470125824213028, 0.006272008176892996, 0.017369670793414116, -0.016255540773272514, 0.008597584441304207, 0.009476806037127972, 0.03900793194770813, -0.005288755986839533, 0.021061060950160027, 0.016188425943255424, -0.01508772000670433, -0.019248923286795616, 0.01330914068967104, 0.014174940064549446, 0.012322532944381237, 0.009913061745464802, -0.00914793647825718, -0.017450209707021713, -0.011953393928706646, 0.02867203764617443, -0.032081540673971176, 0.011725198477506638, 0.028027720749378204, -0.020631516352295876, 0.012282262556254864, 0.038551539182662964, 0.010403010062873363, 0.018443528562784195, 0.02398732677102089, -0.010785572230815887, 0.008255291730165482, -0.007557283155620098, 0.024255791679024696, -0.016644814983010292, -0.04440407082438469, -0.02573234774172306, 0.004469938110560179, 0.0026359884068369865, -0.007798901293426752, -0.0025537710171192884, -0.01891334354877472, 0.012698383070528507, 0.006748532876372337, 0.002676258096471429, -0.001882609212771058, -0.02004089392721653, 0.04872635379433632, 0.019302615895867348, -0.011141288094222546, 0.016309235244989395, -0.013141349889338017, 0.027088094502687454, -0.01108088344335556, -0.0077317850664258, -0.012168165296316147, 0.018054256215691566, -0.03686021268367767, 0.028725730255246162, -0.016765624284744263, 0.024524256587028503, 0.004110866691917181, -0.02197384089231491, -0.009154648520052433, -0.006272008176892996, -0.03514203801751137, 0.03868577256798744, -0.018255604431033134, 0.00042891441262327135, 0.012926578521728516, 0.013127926737070084, 0.025275956839323044, 0.016081038862466812, 0.0043357061222195625, -0.0024698758497834206, -0.0116178123280406, 0.03149091824889183, 0.010590935125946999, 0.00816804077476263, 0.013684991747140884, -0.0033591652754694223, 0.010074140504002571, 0.006040457170456648, 0.025007493793964386, -0.012852750718593597, -0.008678123354911804, -0.004597458988428116, -0.0024413515347987413, -0.007751920260488987, -0.023020854219794273, 0.022430231794714928, 0.02773240953683853, 0.01679247058928013, 0.023463821038603783, -0.005953206215053797, -0.019611351191997528, 0.013356122188270092, 0.0004146522260271013, -0.014497097581624985, 0.004647796042263508, 0.014255478978157043, 0.044860463589429855, 0.0524580143392086, 0.010443279519677162, -0.014604482799768448, 0.0010193272028118372, -0.0043591964058578014, 0.020067742094397545, -0.010933227837085724, 0.0022450366523116827, 0.017799213528633118, 0.011416464112699032, -0.0007840010221116245, -0.008235156536102295, -0.00045764853712171316, 0.013456796295940876, -0.002330609830096364, -0.005637760274112225, 0.006013610865920782, 0.040323406457901, -0.031464070081710815, 0.005154523532837629, 0.0217859148979187, 0.013221889734268188, 0.0073357997462153435, 0.00443302420899272, -0.0021846320014446974, 0.016765624284744263, -0.01898045837879181, 0.0067351097241044044, -0.6198314428329468, -0.0025118235498666763, -0.025329651311039925, -0.020832866430282593, -0.009852657094597816, 0.016295811161398888, 0.009624461643397808, 0.0010872823186218739, -0.025745771825313568, 0.019933508709073067, 0.028779422864317894, 0.005637760274112225, 0.016738777980208397, -0.01230239775031805, 0.01684616319835186, -0.02861834317445755, -0.0005348321283236146, -0.021866455674171448, -0.011221827007830143, 0.015356184914708138, -0.00472833588719368, 0.02116844616830349, -0.016550851985812187, 0.012960136868059635, -0.010684898123145103, 0.024497410282492638, -0.008496909402310848, -0.014765562489628792, 0.01400043722242117, 0.04389398917555809, 0.003835690440610051, 0.00651027075946331, 0.0002921651757787913, 0.011698352172970772, 0.0351957306265831, -0.028457265347242355, 0.013174908235669136, 0.0042585222981870174, 0.00021833735809195787, 0.05071299523115158, -0.00596327381208539, -0.02923581376671791, 0.021141599863767624, 0.014725292101502419, -0.016362927854061127, -0.00873181689530611, 0.029450584203004837, 0.010986920446157455, 0.011376194655895233, -0.03420241177082062, 0.0007068173727020621, -0.004708200693130493, 0.005768636707216501, -0.01992008648812771, 0.012168165296316147, 0.012731941416859627, 0.00430550379678607, -0.02555784583091736, 0.020000625401735306, -0.02079259604215622, -0.007275395095348358, 0.005976696964353323, -0.0012047355994582176, 0.016577700152993202, -0.035222578793764114, 0.02604108303785324, -0.029101580381393433, -0.01489979401230812, 0.0010965107940137386, 0.003104123752564192, 0.012208434753119946, 0.014940064400434494, -0.00025273440405726433, 0.0154635701328516, 0.019691890105605125, 0.03718236833810806, 0.011745333671569824, -0.016107885167002678, 0.009295592084527016, -0.0002969891356769949, 0.012134606949985027, 0.003755150828510523, -0.04021602123975754, 0.0021040926221758127, 0.037155523896217346, -0.004459870979189873, 2.6282805265509523e-05, -0.004849144723266363, 0.008570737205445766, 0.028269339352846146, 0.02379940077662468, 0.025705501437187195, -0.0053692953661084175, -0.0413435734808445, 0.010228507220745087, -0.0013171551981940866, 0.006245161406695843, -0.002786999801173806, -0.02429606206715107, -0.024443717673420906, -0.03030967153608799, -0.029638510197401047, 0.0197321604937315, 0.010141256265342236, 0.012785634025931358, 0.018269026651978493, 0.014054130762815475, 0.015490417368710041, 0.018644878640770912, -0.026443779468536377, -0.02593369595706463, -0.02998751401901245, -0.016510583460330963, 0.00748345535248518, 0.024309484288096428, -0.0229805838316679, 0.0015117921866476536, -0.003886027494445443, -0.005624336656183004, -0.022443654015660286, 0.021342948079109192, 0.015034026466310024, -0.008953300304710865, -0.006382749881595373, 0.018188487738370895, 0.014080977067351341, 0.021007368341088295, -0.016698507592082024, -0.010570799931883812, -0.01456421334296465, 0.009617750532925129, -0.007100893184542656, -0.0024195387959480286, -0.012168165296316147, 0.0012374548241496086, 0.006946526002138853, 0.017302554100751877, -0.010295623913407326, 0.0004484200617298484, -0.014336018823087215, -0.02993382140994072, 0.0031913749407976866, -0.007127739489078522, -0.04115564748644829, -0.004177982918918133, -0.04639071226119995, -0.020067742094397545, 0.00345983961597085, 0.03036336414515972, -0.0017550884513184428, 0.011470156721770763, -0.01299369428306818, -0.010671474039554596, 0.02366516925394535, 0.0059297154657542706, -0.00998688954859972, -0.013000406324863434, -0.016873011365532875, -0.0023759130854159594, -0.008778797462582588, -0.023275895044207573, 0.02179933898150921, -0.012664825655519962, 0.003414536127820611, -0.019893238320946693, -0.008121059276163578, -0.024470563977956772, 0.04247112572193146, -0.007369357626885176, -0.02643035538494587, 0.013946744613349438, -0.008355965837836266, 0.0015034027164801955, 0.010919804684817791, 0.014255478978157043, 0.02547730691730976, 0.00038780574686825275, 0.004550477955490351, -0.003147749463096261, -0.0004844950162805617, 0.012322532944381237, 0.013624587096273899, -0.008913029916584492, -0.010758725926280022, 0.012785634025931358, 0.021839609369635582, 0.014953487552702427, -0.018497223034501076, -0.02096709795296192, -0.011517138220369816, -0.0028255917131900787, 0.021141599863767624, 0.0013054099399596453, 0.006436442956328392, 0.008100924082100391, 0.02173222228884697, 0.011154711246490479, -0.002293695928528905, 0.022269152104854584, 0.03565211966633797, 0.015758881345391273, 0.00804723147302866, 0.002958146156743169, -0.03162514790892601, 0.0023389991838485003, -0.009852657094597816, 0.015127989463508129, -0.02248392440378666, 0.02610819786787033, -0.027034401893615723, 0.004409533925354481, -0.04754510894417763, -0.039491165429353714, -0.02880626916885376, 0.027812950313091278, 0.021450335159897804, 0.02349066734313965, 0.04295436292886734, 0.03524942323565483, 0.011382905766367912, 0.02292689122259617, 0.004829009994864464, 0.0042585222981870174, 0.021114753559231758, -0.006500203162431717, -0.010456702671945095, 0.017114628106355667, -0.010389585979282856, -0.02021539770066738, -0.04703502729535103, -0.0012181588681414723, -0.03162514790892601, -0.017235437408089638, -0.016738777980208397, 0.03694075345993042, 0.014752138406038284, 0.02648404985666275, -0.014617906883358955, 0.028269339352846146, -0.010013735853135586, -0.03275270015001297, 0.0074633206240832806, 0.018564337864518166, -0.032967474311590195, 0.004520275630056858, 0.005768636707216501, 0.026779361069202423, 0.003152783028781414, -0.0016544141108170152, 0.01566491834819317, -0.00235577835701406, 0.015799151733517647, -0.0324573889374733, 0.02222888171672821, 0.018054256215691566, -0.005235062912106514, 0.007966691628098488, 0.013362833298742771, 0.01959792710840702, -0.0007122705574147403, 0.0049598864279687405, -0.007402915973216295, 0.022081226110458374, -0.0020722125191241503, -0.008671412244439125, -0.011597678065299988, -0.01859118416905403, -0.030255978927016258, -0.018336143344640732, -0.002741696313023567, -0.019007304683327675, -0.03538365662097931, 0.019302615895867348, 0.009617750532925129, 0.01702066697180271, 0.010939938947558403, 0.02424236759543419, -0.0038424020167440176, 0.01359102874994278, -0.009094243869185448, -0.004406177904456854, -0.014792408794164658, 0.026967285200953484, 0.01728913001716137, 0.009309016168117523, -0.019571080803871155, -0.0059934756718575954, -8.53634046507068e-05, 0.0076646688394248486, -0.00955063384026289, -0.026014234870672226, -0.01010769885033369, 0.013409814797341824, -0.01302054151892662, -0.01452394388616085, -0.015208529308438301, 0.01149029191583395, -0.027289442718029022, 0.016134731471538544, 0.02092682756483555, 0.012913155369460583, 0.012678248807787895, -0.029262660071253777, -0.009309016168117523, 0.04040394723415375, 0.01346350833773613, 0.010456702671945095, -0.01124196220189333, -0.011188268661499023, -0.027383405715227127, 0.020148281008005142, -0.018685147166252136, -0.00970500148832798, -0.02330274134874344, 0.0064028846099972725, -0.00816804077476263, 0.03218892589211464, -0.007188144139945507, 0.026000812649726868, -0.0011804059613496065, 0.0012961814645677805, -0.008033808320760727, -0.015074296854436398, 0.008684835396707058, 0.02561153843998909, 0.022014111280441284, -0.0018440173007547855, -0.008657989092171192, -0.004087375942617655, -0.023383280262351036, -0.008436505682766438, 0.005288755986839533, 0.029853282496333122, -0.0007907126564532518, 0.012812481261789799, 0.003896094858646393, -0.021557720378041267, -0.010758725926280022, 0.013483642600476742, 0.0009547278168611228, -0.0015008858172222972, -0.018376413732767105, 0.016671661287546158, -0.0022920179180800915, -0.005644471850246191, -0.002580617554485798, 0.017315978184342384, 0.02142348885536194, 0.01374539639800787, 0.00744989700615406, 0.01653742976486683, 0.009577480144798756, -0.002203088952228427, -0.015154835768043995, -0.006137775722891092, 0.021383218467235565, 0.019933508709073067, 0.03546419367194176, 0.00594985019415617, 0.03401448577642441, -0.006933102384209633, -0.018269026651978493, 0.013423237949609756, -0.010215084068477154, -0.0003341127885505557, 0.027947181835770607, -0.000912780174985528, -0.01468502264469862, -0.0005830719019286335, -0.01052381843328476, -0.02029593661427498, 0.032081540673971176, -0.015342761762440205, 0.006892832927405834, -0.0029094868805259466, 0.005084051284939051, -0.03291378170251846, -0.020389899611473083, -0.007584129460155964, 0.00808078981935978, -0.01659112237393856, -0.029074734076857567, -0.009315727278590202, 0.00926874577999115, -0.013289005495607853, -0.022618155926465988, 0.030900293961167336, -0.006500203162431717, 0.0032735923305153847, -0.031168758869171143, -0.02022881992161274, -0.0007072368753142655, -0.018134795129299164, -0.0013641365803778172, 0.02210807427763939, -0.05167946591973305, -0.04196104407310486, -0.020309358835220337, 0.019383156672120094, 0.005063916556537151, -0.00596662936732173, 0.001427058014087379, -0.011705064214766026, 0.004879347048699856, -0.017128052189946175, -0.03664544224739075, -0.012510458007454872, -0.02166510745882988, 0.026161890476942062, 0.019208654761314392, 0.01396016776561737, 0.007657957263290882, -0.023692015558481216, 0.01489979401230812, 0.004355840850621462, 0.004379331599920988, 0.003068887861445546, -0.01152385026216507, 0.014134669676423073, 0.023571206256747246, -0.010443279519677162, 0.0004119256336707622, 0.02969220280647278, -0.01896703615784645, -0.004453159403055906, -0.023839671164751053, -0.003691390622407198, -0.024094711989164352, -0.028027720749378204, -0.007792189717292786, 0.02292689122259617, -0.009805675595998764, -0.01771867461502552, -0.032350003719329834, 0.020806020125746727, -0.01829587295651436, 0.008235156536102295, 0.01735624670982361, 0.01424205582588911, 0.007798901293426752, 0.029853282496333122, 0.013530624099075794, -0.012926578521728516, -0.02467191219329834, 0.008221733383834362, -0.013852781616151333, 0.01428232528269291, 0.008597584441304207, -0.0056109135039150715, 0.009443247690796852, -0.005580711178481579, -0.03256477788090706, -0.007006930187344551, 0.009181494824588299, 0.005490104667842388, 0.0008699936443008482, 0.010013735853135586, 0.007899575866758823, -0.010577511973679066, 0.00808078981935978, -0.021141599863767624, -0.02079259604215622, -0.027759255841374397, -0.005362583789974451, 0.014913218095898628, 0.025906849652528763, -0.012060779146850109, 0.0061209965497255325, -0.0009404656593687832, -0.02510145492851734, -0.025826310738921165, -0.004889414645731449, 0.028457265347242355, 0.0010562411043792963, 0.008121059276163578, -0.011429887264966965, -0.024832990020513535, -0.014658176340162754, 0.00622838269919157, -0.015154835768043995, -0.0067720236256718636, 0.02559811621904373, 0.027517639100551605, 0.004738403018563986, 0.01747705601155758, -0.018054256215691566, 0.008147905580699444, 0.010309047065675259, -0.0026947150472551584, 0.024094711989164352, -0.0009681510855443776, -0.009503652341663837, -0.02592027373611927, -0.020121434703469276, -0.0005356710753403604, 0.015342761762440205, 0.010537241585552692, 0.013295717537403107, 0.041746269911527634, 0.009443247690796852, 0.0025185351260006428, 0.026712244376540184, -0.015221952460706234, -0.02041674591600895, -0.02885996177792549, 0.0077317850664258, -0.004315570928156376, 0.00870496965944767, -0.019436849281191826, -0.028269339352846146, 0.026457203552126884, -0.002035298617556691, 0.011725198477506638, 0.0031326483003795147, 0.002050399547442794, -0.0046175941824913025, 0.01689985767006874, 0.022376537322998047, 0.020000625401735306, -0.021879877895116806, 0.004332350101321936, -0.03814884275197983, 0.007456609047949314, -0.02217518910765648, -0.004352484829723835, 0.0199872013181448, -0.01299369428306818, 0.00541627686470747, 6.339333776850253e-05, 0.007355934474617243, -0.001958114793524146, -0.017745520919561386, 0.00428872462362051, -0.016188425943255424, -0.002758475486189127, -0.007785478141158819, 0.0008683157502673566, -0.006765312049537897, 0.005332381464540958, 0.012403071857988834, 0.005758569110184908, 0.024631641805171967, 0.006872698199003935, -0.03683336451649666, 0.014591059647500515, -0.011872854083776474, 0.039222702383995056, 0.007993537932634354, 0.03063182905316353, 0.020765749737620354, 0.004875991493463516, -0.0016141444211825728, 0.0012424885062500834, 0.0169132798910141, 0.005812262184917927, 0.017678404226899147, 0.016188425943255424, -0.014537367038428783, -0.007953268475830555, -0.001979927532374859, -0.009523787535727024, 0.004748470615595579, -0.036484360694885254, 0.027839796617627144, -0.02829618565738201, -0.017544172704219818, -0.018940189853310585, 0.018376413732767105, -0.05283386632800102, 0.014067553915083408, -0.009604327380657196, -0.0024497408885508776, -0.027759255841374397, 0.013335986994206905, -0.03307485952973366, 0.036350131034851074, 0.010637916624546051, 0.03132983669638634, 0.00624851742759347, 0.018510645255446434, -0.008194887079298496, -0.019074421375989914, -0.04249797388911247, 0.0006967499502934515, -0.017544172704219818, 0.021893301978707314, -0.019557658582925797, -0.0010847654193639755, 0.0196516215801239, -0.00955063384026289, -0.02998751401901245, -0.02149060368537903, -0.0020420101936906576, 0.024443717673420906, -0.0351957306265831, 0.031651996076107025, -0.022121496498584747, 0.0049968003295362, -0.008060654625296593, -0.008201598189771175, -0.0116178123280406, -0.0073357997462153435, -0.0005495137884281576, 0.002070534508675337, 0.015262221917510033, 0.032591622322797775, 0.010168102569878101, 0.001978249754756689, -0.011698352172970772, -0.0033289631828665733, -0.011691640131175518, -0.020510708913207054, 0.004802163690328598, -0.022698696702718735, 0.0018641522619873285, -0.022403385490179062, 0.022322844713926315, 0.026578010991215706, 0.0030588204972445965, -0.024094711989164352, 0.010705032385885715, 0.03055129013955593, -0.03769245371222496, 0.01747705601155758, 0.015933383256196976, -0.00046184330130927265, -0.0398133248090744, -0.025893427431583405, -0.0002102624421240762, -0.019141538068652153, 0.043920837342739105, -0.01583942025899887, -0.012013798579573631, -0.014268902130424976, -0.008268714882433414, -0.001651058322750032, -0.0011040613753721118, -0.010752013884484768, -0.0043457732535898685, 0.028940502554178238, 0.011590966023504734, 0.0025990745052695274, -0.006000187713652849, -0.0031074797734618187, 0.0020839576609432697, 0.0035202442668378353, 0.009765406139194965, -0.00443302420899272, -0.0091412253677845, -0.01645689085125923, -0.0019681823905557394, -0.01735624670982361, -0.04008178785443306, 0.01710120588541031, -0.007107604760676622, 0.0003274011833127588, 0.012288974598050117, 0.005604201927781105, -0.042041581124067307, -0.0004840755427721888, -0.0130272526293993, 0.007678092457354069, 0.003651120699942112, 0.010121122002601624, 0.004073952790349722, 0.017678404226899147, 0.00914793647825718, 0.0006539633614011109, -0.00914793647825718, -0.030658675357699394, 0.018483798950910568, -0.0029312996193766594, -0.034148719161748886, -0.027463944628834724, -0.0262290071696043, 0.03181307390332222, -0.0009161360212601721, -0.007027065381407738, 0.002978280885145068, -0.0411824956536293, -0.022564463317394257, -0.024873260408639908, -0.01834956742823124, 0.011785603128373623, 0.030255978927016258, 0.01877911016345024, -0.0027685428503900766, 0.02660485915839672, -0.03575950488448143, 0.025343073531985283, -0.0290478877723217, 0.013987014070153236, 0.026645127683877945, 0.014631330035626888, 0.002736662747338414, 0.00861100759357214, 0.006235094275325537, -0.023826247081160545, 0.018631454557180405, -0.012705095112323761, 0.006436442956328392, 0.01879253424704075, -0.002360811922699213, -0.03430979698896408, -0.028349880129098892, -0.003313862020149827, 0.03806830197572708, 0.0025000781752169132, -0.0032970828469842672, -0.032967474311590195, -0.004261878319084644, 0.0024044376332312822, 0.020134856924414635, -0.019074421375989914, -0.029396891593933105, 0.020806020125746727, 0.0002940528211183846, -0.007657957263290882, -0.03750452771782875, -0.01508772000670433, 0.03680652007460594, -0.011154711246490479, 0.048189423978328705, 0.00882577896118164, -0.007738496642559767, 0.01456421334296465, 0.014309171587228775, 0.011597678065299988, -0.003434671089053154, 0.0413435734808445, -0.029638510197401047, 0.0060706594958901405, 0.025584692135453224, -0.014698445796966553, -0.013758819550275803, -0.023651745170354843, 0.02330274134874344, -0.024967223405838013, 0.013443373143672943, -0.014940064400434494, -0.007315665017813444, -0.03232315927743912, 0.021275833249092102, 0.025705501437187195, -0.042685896158218384, 0.00471155671402812, -0.012530593201518059, -0.0017970360349863768, 0.00983252190053463, -0.03718236833810806, -0.008127770386636257, -0.006483423989266157, 0.009335862472653389, -0.013671568594872952, 0.019490541890263557, -0.029719049111008644, -0.017987139523029327, 0.01633608154952526, -0.009449959732592106, -0.011966817080974579, 0.16838109493255615, -0.009369419887661934, 0.013671568594872952, 0.03492726758122444, 0.0031913749407976866, 0.008718392811715603, -0.0014195074327290058, -0.0017634779214859009, -0.00404039490967989, 0.009899638593196869, -0.024510832503437996, 0.00945667177438736, -0.03012174740433693, 0.007839171215891838, -0.0023859806824475527, -0.03063182905316353, -0.011752044782042503, -0.039920710027217865, -0.014040707610547543, 0.02204095758497715, 0.012195011600852013, -0.0037719300016760826, -0.013523912988603115, -0.015315914526581764, 0.025812886655330658, 0.004926328547298908, 0.0011225183261558414, 0.005235062912106514, 0.021342948079109192, -0.013973590917885303, -0.008684835396707058, 0.007866017520427704, -0.022014111280441284, -0.0032584911677986383, -0.029880128800868988, -0.006184757221490145, 0.035732660442590714, 0.0010965107940137386, 0.020752325654029846, 0.005503527820110321, 0.0199066624045372, -0.009678155183792114, -0.025906849652528763, -0.022524192929267883, 0.023463821038603783, 0.013450085185468197, -0.015235375612974167, -0.013946744613349438, -0.001887642894871533, 0.019839545711874962, -0.02171880006790161, 0.0032584911677986383, 0.0019060998456552625, -0.004302147775888443, 0.0028155241161584854, -0.027839796617627144, 0.00720156729221344, -0.009617750532925129, 0.023960480466485023, 0.03205469250679016, 0.005688097327947617, 0.016873011365532875, 0.006188112776726484, -4.5618035073857754e-05, 0.0030168727971613407, 0.022188613191246986, -0.01759786531329155, 0.024014173075556755, -0.013772242702543736, -0.014698445796966553, -0.004543766379356384, 0.011537273414433002, -0.018510645255446434, 0.00249672238714993, -0.03436348959803581, -0.010879534296691418, 0.013456796295940876, 0.016832740977406502, 0.011282231658697128, 0.013825935311615467, -0.012503746896982193, -0.03562527522444725, 0.0227255430072546, -0.0005390269216150045, -0.03473934158682823, 0.005923003889620304, -0.0113627715036273, 0.006376038305461407, -0.00665121478959918, 0.007288818247616291, 0.0069532375782728195, 0.0027886778116226196, 0.005157879088073969, 0.011570831760764122, -0.021450335159897804, 0.003372588660567999, 0.002721561584621668, 0.008376101031899452, -0.020685210824012756, 0.0051377443596720695, -0.024564525112509727, 0.028725730255246162, 0.006540472619235516, 0.006365970708429813, 0.01859118416905403, -0.01164465956389904, 0.003919585607945919, 0.023208778351545334, 0.026953862980008125, -0.0304975975304842, -0.016013924032449722, -0.027651870623230934, 0.0099936006590724, 0.0003655735054053366, -0.01585284434258938, 0.005013579502701759, -0.0025638386141508818, 0.015289068222045898, 0.011792315170168877, -0.0030219065956771374, 0.008765374310314655, -0.04158519208431244, -0.020577823743224144, 0.00930230412632227, 0.010161391459405422, -0.019114691764116287, -0.052699632942676544, 0.0023792688734829426, -0.010094274766743183, -0.007711650338023901, 0.01480583194643259, -0.02436317689716816, 0.018309297040104866, 0.005305534694343805, -0.002879284555092454, -0.002995060058310628, -0.028510957956314087, -0.03452456742525101, -0.01193325873464346, 0.018993882462382317, -0.013161485083401203, 0.010409721173346043, -0.008517044596374035, -0.02096709795296192, 0.02856465056538582, -0.0333164781332016, -0.013476931490004063, -0.00040290688048116863, 0.0322963111102581, -0.025074608623981476, -0.017557594925165176, -0.015584379434585571, 0.006852563004940748, -0.022765811532735825, -0.023061122745275497, -0.009053974412381649, -0.016430044546723366, -0.05224324390292168, 0.03457826003432274, 0.014765562489628792, -0.01189298927783966, 0.008886183612048626, 0.01440313458442688, -0.010027159005403519, -0.007543860003352165, -0.008241868577897549, -0.16805894672870636, -0.00836267787963152, 0.009100955910980701, -0.014658176340162754, -0.009490229189395905, 0.02542361244559288, 0.05216270312666893, 0.0012139640748500824, -0.01614815555512905, 0.017866330221295357, -0.018819380551576614, 0.012315820902585983, -0.03269900754094124, -0.013866204768419266, -0.008255291730165482, 0.01108088344335556, 0.010772149078547955, 0.01585284434258938, 0.02660485915839672, 0.016805894672870636, 0.04502154141664505, -0.020510708913207054, 0.03664544224739075, 0.0024698758497834206, 0.004110866691917181, 0.010684898123145103, 0.00458739185705781, -0.0013406459474936128, 0.016201848164200783, -0.032162077724933624, -0.00776534341275692, 0.0058021945878863335, 0.004842433147132397, -0.008114347234368324, -0.011698352172970772, -0.007100893184542656, 0.002323898021131754, -0.03551789000630379, -0.0290478877723217, 0.01585284434258938, 0.026645127683877945, 0.03586689382791519, -0.029853282496333122, -0.027893489226698875, -0.004758537746965885, 0.03283324092626572, 0.02586657926440239, -0.026631705462932587, -0.008792220614850521, 0.008590872399508953, 0.04590747505426407, -0.020148281008005142, 0.014497097581624985, 0.0045370543375611305, 0.035410501062870026, -0.0229805838316679, -0.015799151733517647, -0.0059297154657542706, -0.0199066624045372, -0.0170877818018198, 0.01277892291545868, -0.05447150021791458, 0.0005260231555439532, 0.004956530872732401, -0.016081038862466812, -0.02303427644073963, -0.016389774158596992, 0.012168165296316147, -0.03857838734984398, 0.018336143344640732, -0.009785540401935577, 0.002932977629825473, 0.024967223405838013, -0.012027221731841564, 0.021463757380843163, 0.009335862472653389, -0.014362865127623081, 0.0006715813651680946, 0.010369451716542244, -0.005563932470977306, -0.010879534296691418, 0.017638135701417923, 0.013852781616151333, 0.02429606206715107, 0.01536960806697607, -0.0028306252788752317, -0.008751951158046722, 0.01480583194643259, -0.03984017297625542, -0.027571331709623337, 0.01841668225824833, 0.003567225532606244, -0.016604546457529068, -0.010295623913407326, 0.0005813940078951418, 0.015987075865268707, 0.03055129013955593, 0.0065438286401331425, 0.02292689122259617, -0.016107885167002678, 0.016832740977406502, 0.005308890715241432, -0.01108759455382824, -0.01258428581058979, 0.0430617481470108, -0.004312215372920036, -0.0314372256398201, 0.0005759408231824636, 0.03294062614440918, 0.013208466582000256, -0.02805456705391407, -0.0016141444211825728, -0.003963211085647345, 0.008879472501575947, 0.011785603128373623, 0.005674674175679684, -0.021316101774573326, -0.03149091824889183, -0.02549072913825512, 0.03436348959803581, 0.013134638778865337, -0.026457203552126884, -0.01083255372941494, 0.004530342761427164, -0.0005759408231824636, -0.023128239437937737, -0.1115739569067955, -0.019638197496533394, 0.012342667207121849, 0.01809452474117279, 0.00870496965944767, 0.02092682756483555, -0.01734282448887825, 0.0032987608574330807, 0.00043038258445449173, 0.04432353377342224, -0.00031943112844601274, -0.001298698247410357, -0.014349441975355148, 0.0033289631828665733, -0.016617968678474426, 0.021705375984311104, -0.0053189583122730255, 0.002036976395174861, -0.006047168746590614, 0.04663233086466789, 0.009678155183792114, -0.012241993099451065, -0.007678092457354069, 0.016362927854061127, -0.011067460291087627, 0.0034866861533373594, -0.00817475188523531, 0.014725292101502419, 0.008765374310314655, 0.002887674141675234, 0.010557376779615879, -0.017208591103553772, 0.005688097327947617, -0.019946932792663574, 0.005339093040674925, 0.015825998038053513, 0.0008750273264013231, -0.004788740072399378, 0.01860460825264454, -0.004302147775888443, -0.008040519431233406, 0.004134357441216707, 0.01052381843328476, -0.014215209521353245, 0.006550540216267109, -0.0036611882969737053, -0.041558343917131424, 0.01985296979546547, 0.00399005739018321, -0.01766498200595379, -0.05906224995851517, -0.005503527820110321, -0.027276020497083664, -0.0022299354895949364, 0.00820831023156643, -0.029719049111008644, 0.007396204397082329, 0.0004016484599560499, -0.012980271130800247, -0.00035277949064038694, 0.0034732630010694265, 0.007141162641346455, -0.02661828137934208, 0.014322595670819283, 0.011745333671569824, 0.007859306409955025, -0.020899981260299683, -0.006057236343622208, 0.02392021007835865, -0.009913061745464802, -0.02210807427763939, 0.021651683375239372, -0.0026242430321872234, 0.029531124979257584, -0.040162328630685806, 0.04314228892326355, 0.0015646462561562657, -0.0012542338808998466, 0.022698696702718735, 0.002654445357620716, 0.003674611449241638, -0.026645127683877945, -0.00513438880443573, 0.01903415098786354, -0.010168102569878101, 0.020577823743224144, -0.002285306341946125, -0.011094306595623493, 0.0019195231143385172, -0.045800089836120605, -0.004332350101321936, 0.014456827193498611, 0.009369419887661934, -0.005204860586673021, -0.0001718803687253967, 0.012040644884109497, 0.009631173685193062, -0.01161110121756792, 0.025316227227449417, 0.020510708913207054, -0.013376257382333279, -0.02009458839893341, -0.035356808453798294, 0.026255853474140167, -0.011443310417234898, -0.008322407491505146, 0.013919898308813572, -0.011859430931508541, 0.020940251648426056, -0.028269339352846146, 0.008933165110647678, -0.020134856924414635, -0.01428232528269291, 0.003235000418499112, -0.028323031961917877, -0.01339639164507389, -0.022524192929267883, -0.007959980517625809, 0.016268964856863022, -0.01778579130768776, 0.015275645069777966, 0.002201411174610257, 0.00028230747557245195, -0.019235501065850258, 0.01164465956389904, 0.010738590732216835, 0.0023490667808800936, 0.01396016776561737, 0.0067854467779397964, -0.0019144893158227205, -0.036484360694885254, -0.025517575442790985, 0.014255478978157043, -0.0025906849186867476, 0.0001746069610817358, 0.019195230677723885, -0.02004089392721653, 0.002766865072771907, 0.017879752442240715, 0.0026729023084044456, 0.002927943831309676, 0.022255729883909225, -0.0017081070691347122, -0.016295811161398888, -0.006382749881595373, -0.004047106485813856, 0.03068552352488041, -0.015450146980583668, 0.0022299354895949364, 0.012007086537778378, 0.0023121528793126345, -0.0022903401404619217, 0.019705314189195633, -0.0016795826377347112, -0.03237685188651085, 0.000821334368083626, 0.025745771825313568, -0.029584817588329315, -0.024685334414243698, 0.0017022343818098307, 0.033960793167352676, -0.009785540401935577, 0.025141725316643715, -0.01753074862062931, 0.014040707610547543, -0.04045763984322548, -0.001580586307682097, -0.03645751625299454, -0.017624711617827415, -0.005147811956703663, -0.009047262370586395, -0.011027189902961254, 0.01011440996080637, -0.0008951622294262052, 0.019678467884659767, 0.009275457821786404, 0.020510708913207054, 0.01740993931889534, -0.016604546457529068, -0.005882733967155218, 0.0006753566558472812, 0.017235437408089638, 0.011758756823837757, -0.019503965973854065, -0.015423300676047802, 0.002352422568947077, 0.04059187322854996, 0.02567865513265133, -0.0022131563164293766, -0.01136948261409998, 0.021504027768969536, -0.0024782654363662004, 0.004094087518751621, 0.004171271342784166, -0.006188112776726484, -0.02379940077662468, 0.021745646372437477, 0.02310139313340187, -0.014295748434960842, -0.0035236000549048185, -0.004080664366483688, 0.024564525112509727, 0.007543860003352165, -0.007919710129499435, 0.002973247319459915, -0.028779422864317894, -0.022577887400984764, 0.025651808828115463, 0.004990088753402233, -0.022148342803120613, 0.013758819550275803, 0.03342386335134506, -0.007543860003352165, 0.01265140250325203, -0.013476931490004063, 0.001236615818925202, -0.02736998349428177, 0.0020722125191241503, -0.017893176525831223, -0.005352516192942858, -0.02679278329014778, 0.03694075345993042, 0.0005574838723987341, 0.009698289446532726, 0.03275270015001297, -0.019047575071454048, 0.036538053303956985, -0.004614238161593676, 0.032027848064899445, -0.015517263673245907, 0.025504153221845627, -0.01891334354877472, -0.026215584948658943, 0.009369419887661934, -0.03737029433250427, -0.012799058109521866, 0.014497097581624985, -0.0041947620920836926, 0.010866111144423485, -0.002535314066335559, 0.016631392762064934, 0.07377411425113678, 0.017517326399683952, -0.019624775275588036, 0.010557376779615879, -0.0024128269869834185, 0.02304770052433014, 0.023436974734067917, 0.02378597855567932, 0.007986826822161674, -0.0459611676633358, 0.003614206798374653, -0.00402361573651433, -0.011530561372637749, -0.05339764058589935, -0.005376006942242384, 0.004513564053922892, -0.0018272383604198694, 0.022953737527132034, -0.014671599492430687, 0.0024900108110159636, 0.012839327566325665, 0.015356184914708138, 0.009121090173721313, 0.001879253308288753, -0.00649684714153409, -0.01877911016345024, 0.02829618565738201, 0.016309235244989395, -0.033907100558280945, -0.0091412253677845, -0.0036779672373086214, -0.02955797128379345, -0.025343073531985283, -0.02566523104906082, 0.022497346624732018, 0.0026141756679862738, -0.03237685188651085, -0.004936395678669214, 0.026376662775874138, 0.0413435734808445, -0.009315727278590202, 0.023155085742473602, -0.020121434703469276, -0.03385340794920921, -0.023584630340337753, -0.005251842085272074, -0.005251842085272074, 0.0006745177088305354, -0.0276787169277668], "3a60dc4d-a8c5-4b8a-8389-dc972fdab765": [-0.0278049074113369, 0.011078722774982452, -0.010646318085491657, -0.014596921391785145, -0.019720258191227913, 0.013810732401907444, -0.017794093117117882, -0.03142138198018074, -0.017610648646950722, -0.026219425722956657, 0.021122295409440994, 0.026586314663290977, -0.017872711643576622, 0.022969841957092285, -0.0037016430869698524, 0.023978784680366516, 0.012611792422831059, 0.022052619606256485, 0.0058702160604298115, -0.004324043169617653, -0.02984900213778019, 0.006715370342135429, 0.0053100562654435635, -0.01589413546025753, -0.03152620792388916, 0.019772671163082123, 0.00756052415817976, -0.008641534484922886, 0.014164517633616924, 0.0006441022851504385, -0.00011721187183866277, -0.01592034101486206, -0.0030055376701056957, -0.038732945919036865, -0.020139558240771294, 0.00849740020930767, -0.0051691969856619835, 0.010475977323949337, 0.006207622587680817, 0.008687395602464676, 0.014780365861952305, -0.005912801716476679, -0.00862843170762062, 0.01736168935894966, 0.007626039907336235, 0.00826809462159872, 0.035771630704402924, -0.03165723755955696, 0.001265274011529982, 0.0073770796880126, 0.022930532693862915, 0.039361897855997086, -0.05034234747290611, -0.02722836844623089, 0.010430116206407547, 0.009054284542798996, -0.0023258111905306578, 0.01582861877977848, -0.011858360841870308, -0.012238352559506893, -0.004782653879374266, -0.011085274629294872, -0.0019163372926414013, -0.009381863288581371, -0.023533277213573456, -0.010770798660814762, 0.004802308510988951, 0.024843594059348106, -0.006970881950110197, -0.008431884460151196, 0.02914142981171608, 0.02961314469575882, -0.0010851055849343538, 0.012906613759696484, 0.012893510982394218, -0.023913269862532616, -0.020676787942647934, 0.004694207571446896, -0.023205699399113655, -0.002127625746652484, -0.007390182930976152, -0.026114599779248238, -0.008064995519816875, -0.01506863534450531, 0.037527453154325485, -0.012244904413819313, -0.014164517633616924, 0.023873960599303246, -0.005539361387491226, -0.01766306161880493, 0.0031709650065749884, 0.020886439830064774, -0.003816295647993684, 0.020532654598355293, -0.005427984520792961, 0.023834649473428726, -0.0076850042678415775, 0.04127495735883713, -0.011995944194495678, -0.017702370882034302, -0.013587978668510914, 0.008150165900588036, -0.003270876593887806, -0.013443843461573124, -0.04793136566877365, 0.0016223351703956723, 0.014649334363639355, 0.009106697514653206, 0.019340265542268753, -0.013332466594874859, -0.00021067426132503897, 0.03139517456293106, 0.022105032578110695, -0.02848627232015133, 0.015501040033996105, 0.018265806138515472, 0.014374167658388615, -0.023598793894052505, -0.008032238110899925, 0.006951226852834225, -0.0020752132404595613, -0.020742304623126984, 0.011936980299651623, -0.020349210128188133, 0.017780989408493042, 0.0005536085809580982, 0.0009901076555252075, -0.009912541136145592, 0.011131135746836662, -0.022747088223695755, 0.03451372683048248, 0.0178989190608263, -0.011157342232763767, -0.004740068688988686, -0.009807716123759747, 0.018016846850514412, -0.0007493370212614536, 0.0019834910053759813, 0.007462250534445047, -0.022511230781674385, 0.024830490350723267, 0.007088810205459595, -0.005002131685614586, -0.0014667351497337222, -0.0005306780221872032, 0.008733256720006466, 0.024633944034576416, 0.01720445044338703, -0.03425166383385658, -0.00041131643229164183, 0.021659525111317635, -0.013240744359791279, -0.00850395206362009, -0.018160982057452202, 0.013397982344031334, 0.019523710012435913, -0.019851289689540863, 0.014741056598722935, 0.004890754818916321, 0.009198418818414211, 0.021698834374547005, 0.03005865216255188, 0.011268719099462032, 0.007029845844954252, 0.013574874959886074, 0.038130197674036026, 0.03412063047289848, -0.004170081112533808, -0.006721921730786562, 0.011209754273295403, -0.005401778034865856, 0.009126352146267891, -0.026795964688062668, 0.009093593806028366, 0.006148658227175474, -0.011845258064568043, 0.007802932523190975, -0.001001572934910655, -0.009814267978072166, 0.009257383644580841, -0.011039413511753082, 0.012533173896372318, 0.017925124615430832, 0.038680531084537506, -0.03244342654943466, 0.01533069834113121, 0.011786293238401413, 0.03092346154153347, 0.03446131572127342, -0.004985752981156111, 0.01595965027809143, 0.026271838694810867, 0.006852953229099512, -0.005388675257563591, -0.6423693895339966, -0.0004348611691966653, -0.005781769752502441, -0.040331531316041946, -0.009801164269447327, 0.01568448357284069, -0.00033802061807364225, 0.010174605064094067, -0.024463601410388947, 0.014059691689908504, 0.009827370755374432, -0.00782913900911808, 0.013103161007165909, 0.017191346734762192, 0.011989392340183258, -0.03312479332089424, 0.003993188496679068, -0.009172213263809681, -0.01738789491355419, 0.027490433305501938, 0.0068464018404483795, 0.03241722285747528, -0.007658797781914473, -0.00028356059920042753, -0.011543884873390198, 0.03393718600273132, -0.003233205061405897, -0.0003525569336488843, 0.01382383517920971, 0.03506406024098396, -0.00840567797422409, -0.012998335994780064, 0.024568427354097366, -0.007724313531070948, 0.023349832743406296, 0.0037049187812954187, -0.002740198513492942, -0.007750520016998053, 0.008196027018129826, 0.037029534578323364, -0.00422904547303915, -0.03024209663271904, 0.023467762395739555, 0.018789933994412422, 0.0023847753182053566, -0.014151413924992085, 0.004111116752028465, 0.0144920963793993, 0.00048645486822351813, -0.011517678387463093, -0.009840474463999271, -0.011766638606786728, -0.012303868308663368, -0.03184068202972412, 0.020257487893104553, 0.007193635683506727, 0.019707154482603073, 0.006522098556160927, 0.011956634931266308, -0.009932196699082851, 0.004124219994992018, -0.0024732216261327267, -0.0013094971654936671, -0.004553348757326603, -0.024935316294431686, 0.00781603530049324, -0.024109816178679466, 0.008602225221693516, -0.008608777076005936, -0.010364600457251072, -0.01499001681804657, 0.0019753016531467438, -0.008569467812776566, -0.015448627062141895, 0.018816139549016953, 0.036217138171195984, 0.006911917589604855, 0.0035280261654406786, 0.01647067442536354, 0.018724417313933372, -0.015356904827058315, -0.004962822422385216, -0.04897961765527725, -0.0018278909847140312, 0.026258734986186028, 0.0021423669531941414, -0.036033693701028824, 0.023913269862532616, -0.0008680844330228865, 0.026153909042477608, 0.0036557819694280624, 0.006898814346641302, -0.008471193723380566, -0.04552038386464119, 0.0023208975326269865, 0.023297421634197235, 0.004808860365301371, 0.010987000539898872, 0.0005691685946658254, -0.019012687727808952, -0.020663686096668243, -0.022812603041529655, 0.024725666269659996, 0.009768406860530376, 0.009879783727228642, -0.0007485180976800621, 0.0025158070493489504, 0.023284317925572395, 0.024935316294431686, -0.009231177158653736, -0.03480199724435806, -0.022996047511696815, -0.01670653000473976, 0.002481411211192608, 0.0084580909460783, -0.025380823761224747, 0.027097336947917938, -0.013332466594874859, -0.024489808827638626, -0.004458350595086813, 0.01707341894507408, 0.01637895219027996, 0.004419041331857443, -0.017977537587285042, 0.0012554466957226396, 0.010154950432479382, 0.01430865190923214, 0.00876601506024599, -0.037763312458992004, -0.020676787942647934, -0.0006183054065331817, 0.012231800705194473, 0.013417636975646019, -0.01572379283607006, 0.0078356908634305, -0.025669092312455177, -0.005755563732236624, -0.007809483911842108, 0.0030579501762986183, -0.013443843461573124, 0.0017902194522321224, -0.009604617021977901, 0.010652869939804077, -0.021358152851462364, 0.0076391431502997875, -0.01386314444243908, -0.038287438452243805, -0.003793365089222789, -0.0060110753402113914, -0.009919092990458012, -0.009165661409497261, 0.005254367832094431, -0.012199043296277523, 0.020060939714312553, 0.03076622262597084, 0.001996594248339534, -0.006309172138571739, 0.0025813227985054255, -0.019956113770604134, -0.01799064129590988, -0.011851808987557888, 0.00899532064795494, -0.0292462557554245, -0.0021931417286396027, -0.00764569453895092, -0.0015125961508601904, -0.020729200914502144, 0.03254825249314308, -0.013260398991405964, -0.02704492397606373, -0.0004074264143127948, -0.0021767625585198402, 0.0020506447181105614, 0.012506967410445213, -0.0172437597066164, 0.013397982344031334, -0.004828514996916056, -0.009571859613060951, 0.0029826071113348007, -0.010738040320575237, 0.0035018199123442173, -0.0004133637994527817, -0.005647462327033281, -0.019340265542268753, 0.009270486421883106, 0.004857996944338083, 0.022393302991986275, -0.03362271189689636, -0.01740099862217903, 0.0020539206452667713, 0.04143219441175461, 0.005991420708596706, -0.005922629032284021, -0.0015592762501910329, 0.010934588499367237, 0.03417304530739784, -0.004081634804606438, -0.001417598221451044, -0.001591215142980218, 0.04342387616634369, 0.021502288058400154, 0.0024748595897108316, -0.00894945953041315, -0.01612999103963375, 0.00759983342140913, -0.018043052405118942, 0.017820298671722412, -0.01713893562555313, 0.036688853055238724, -0.019379574805498123, 0.015474833548069, -0.03406821936368942, -0.026782860979437828, -0.009100145660340786, 0.01373211294412613, 0.0318668894469738, -0.011688020080327988, 0.020781613886356354, 0.010462874546647072, 0.025433236733078957, 0.008241888135671616, 0.013981073163449764, 0.0335703007876873, 0.022943634539842606, -0.0068922629579901695, -0.008379471488296986, 0.004818687681108713, -0.025171173736453056, -0.00862843170762062, -0.04808860272169113, -0.003652506275102496, -0.007311563938856125, 0.008661190047860146, 0.009368760511279106, 0.013876248151063919, -0.01709962636232376, 0.03273169696331024, -0.01440037414431572, 0.025721505284309387, 0.002392964903265238, 0.005267470609396696, 0.023153286427259445, 0.023048460483551025, -0.038077786564826965, 0.0020997815299779177, 0.013411085121333599, 0.04504866898059845, 0.0009909265208989382, -0.01675894297659397, 0.014465889893472195, 0.0004971011658199131, 0.00858912244439125, -0.03315099701285362, -0.005041441414505243, -0.012611792422831059, -0.021698834374547005, -0.0007648970349691808, -0.004802308510988951, 0.04449833557009697, 0.022013310343027115, 0.001438890933059156, -0.002410981571301818, -0.004084910731762648, 0.01793822832405567, 0.0034133736044168472, -0.006957778707146645, -0.023611895740032196, -0.036584027111530304, -0.01762375235557556, -0.00839912611991167, -0.01673273742198944, -0.026966305449604988, 0.0012996698496863246, 0.007449147291481495, 0.009191867895424366, 0.013850041665136814, -0.017859607934951782, 0.005293677095323801, 0.007973273284733295, 0.01611688919365406, -0.024188436567783356, -0.017925124615430832, 0.01668032445013523, 0.006240380462259054, -0.007167429197579622, -0.013371775858104229, -0.020375415682792664, -0.02866971679031849, 0.007704658899456263, 0.011950083076953888, -0.009204970672726631, 0.0047204140573740005, 0.005572119262069464, -0.0046057612635195255, -0.012251456268131733, 0.006355033256113529, 0.04423627257347107, -0.002306156326085329, 0.03307237848639488, 0.013168676756322384, 0.008818427100777626, 0.006220725830644369, 0.001800046768039465, -0.011629055254161358, 0.04937271028757095, 0.01551414281129837, 0.020637478679418564, -0.011216306127607822, -0.0014429856091737747, -0.01690307818353176, 0.01466243714094162, -0.03498544171452522, -0.0006019264692440629, -0.01614309474825859, 0.026533901691436768, -0.01614309474825859, 0.00826809462159872, -0.002040817402303219, 0.008156717754900455, -0.005601601675152779, -0.01635274477303028, -0.009683236479759216, -0.002284863730892539, 0.014282445423305035, 0.020873336121439934, 0.03223377838730812, -0.01400727964937687, -0.0005355917382985353, -0.02992762066423893, -0.011524230241775513, -0.019772671163082123, -0.01506863534450531, 0.003495268290862441, 0.01679825223982334, 0.00021681637736037374, -0.015356904827058315, 0.00848429650068283, -0.008569467812776566, 0.004291285295039415, 0.010607008822262287, -0.02958693727850914, -0.021934691816568375, 0.00848429650068283, 0.001867200480774045, 0.005080750677734613, 0.009001871570944786, 0.03375374525785446, 0.011524230241775513, 0.020820923149585724, -0.02885316126048565, 0.021607112139463425, 0.0028499376494437456, 0.015370008535683155, -0.01622171327471733, -0.022956738248467445, 0.021489184349775314, 0.035666804760694504, 0.008163269609212875, -0.012664205394685268, 0.021214017644524574, 0.017689267173409462, -0.011294924654066563, 0.010816659778356552, -0.006243656389415264, 0.011327682994306087, 0.024424292147159576, 0.0033675124868750572, -0.01615619845688343, -0.013378327712416649, 0.008936355821788311, -0.00012478714052122086, 0.01543552428483963, -0.018305115401744843, -0.011353889480233192, -0.019431987777352333, 0.007088810205459595, -0.011229408904910088, -0.019733360037207603, -0.01592034101486206, 0.00697743333876133, -0.027621464803814888, -0.025354616343975067, -0.035561978816986084, -0.012506967410445213, 0.0008648086222819984, -0.01749272085726261, 0.03032071515917778, -0.006148658227175474, 0.011602849699556828, -0.022026414051651955, -0.011098377406597137, 0.01614309474825859, -0.019300956279039383, 0.004340422339737415, 0.025996671989560127, -0.05655324459075928, -0.0327841080725193, -0.021659525111317635, 0.019183028489351273, 0.0157368965446949, -0.00702329445630312, 0.0035280261654406786, -0.013561772182583809, 0.011039413511753082, -0.013928660191595554, -0.02856489084661007, -0.00899532064795494, -0.013352121226489544, -0.01408589817583561, 0.005693323444575071, -0.006309172138571739, 0.020283693447709084, -0.003934224136173725, 0.020100248977541924, -0.023336730897426605, -0.010037021711468697, -0.007056052330881357, -0.04143219441175461, 0.011760087683796883, 0.019943011924624443, 8.706436346983537e-05, -0.014334858395159245, 0.01708652265369892, -0.014518302865326405, -0.015317595563828945, -0.01419072411954403, -0.00818947609513998, -0.020794717594981194, 0.013483152724802494, -0.018462354317307472, 0.003888363018631935, -0.0014962172135710716, -0.004828514996916056, -0.01488519087433815, 0.0025338237173855305, -0.0166541188955307, 0.02777870185673237, 0.009224625304341316, 0.020034734159708023, 0.00032123218988999724, 0.020349210128188133, 0.012710066512227058, -0.01702100597321987, -0.01648377627134323, 0.018724417313933372, -0.0152127705514431, 0.0075212144292891026, -0.006266586948186159, -0.009119800291955471, 0.020336106419563293, -0.010076330974698067, -0.04751206189393997, -0.010842866264283657, 0.0020784889347851276, 0.014963810332119465, 0.0010941139189526439, -0.006970881950110197, -0.009100145660340786, -0.01704721339046955, 0.009132903069257736, -0.012251456268131733, -0.00011168397759320214, -0.022170549258589745, 0.0037409525830298662, 0.021633319556713104, 0.009643926285207272, -0.0030055376701056957, 0.00018600346811581403, -0.021580906584858894, -0.024647045880556107, -0.021384358406066895, -0.0061027975752949715, 0.0015085014747455716, 0.021043676882982254, 0.04030532389879227, -0.005093853920698166, -0.03359650447964668, 0.003449407173320651, 0.006584338378161192, -0.0017263415502384305, -0.021397462114691734, -0.0012382487766444683, 0.02945590578019619, 0.03309858590364456, 0.0034330282360315323, 0.004687656182795763, 0.01723065786063671, -0.011124583892524242, -0.0087201539427042, 0.024044301360845566, -0.017466513440012932, -0.008923253044486046, -0.023900166153907776, -0.00872670579701662, 0.0006637570331804454, 0.011150790378451347, 0.004789205268025398, 0.010724937543272972, 0.027149749919772148, 0.01732238009572029, 0.013889350928366184, 0.017885815352201462, -0.012565931305289268, -0.013024542480707169, 0.0034690620377659798, 0.0009753665653988719, -0.00341992499306798, 0.011517678387463093, -0.01485898531973362, -0.013889350928366184, 0.027385607361793518, -0.0043600769713521, 0.01436106488108635, 0.026861481368541718, 0.035955075174570084, 0.005660565569996834, 0.027333194389939308, 0.006086418405175209, 0.01670653000473976, -0.03163103014230728, 0.0011522592976689339, -0.04659484326839447, 0.00019378347496967763, 0.018645798787474632, 0.0137714222073555, 0.009991160593926907, -0.00195400882512331, 0.01687687262892723, -0.005667117424309254, -0.0007734959945082664, -0.019720258191227913, 0.0029383839573711157, 0.007403286173939705, -0.014505199156701565, -0.023192595690488815, -0.011779742315411568, -0.012854200787842274, -0.008248439989984035, 0.0021702111698687077, 0.023664308711886406, -0.013456946238875389, 0.023782238364219666, -0.039099834859371185, -0.012657653540372849, 0.009093593806028366, -0.017636854201555252, 0.039309483021497726, -0.012461106292903423, 0.015592762269079685, 0.013312811963260174, 0.022340890020132065, -0.005120060406625271, -0.0067284731194376945, -0.0033937187399715185, -0.0026452005840837955, 0.02772628888487816, 0.02817179635167122, -0.018370632082223892, -0.001198120298795402, -0.014020382426679134, -0.018842345103621483, 0.008923253044486046, -0.04245424270629883, -0.003560784040018916, -0.007357425056397915, -0.02882695570588112, -0.02853868529200554, 0.024057403206825256, -0.035928867757320404, 0.002132539404556155, -0.012847649864852428, 0.013063851743936539, -0.013365224935114384, 0.00010697502875700593, -0.04151081666350365, -0.0018393562640994787, -0.021397462114691734, 0.024607736617326736, 0.008156717754900455, -0.003426476614549756, -0.023493967950344086, -0.021056780591607094, -0.034566137939691544, -0.0044485232792794704, 0.01576310396194458, 0.013325914740562439, -0.01417762041091919, 0.022144341841340065, 0.021502288058400154, -0.0020064215641468763, 0.005270746536552906, -0.014950706623494625, -0.010980449616909027, 0.03018968366086483, -0.026966305449604988, -0.009571859613060951, 0.007789829280227423, 0.030949667096138, 0.008287749253213406, -0.005224885419011116, -0.01382383517920971, -0.0086218798533082, -0.006666233297437429, -0.0006764507270418108, -0.003862156765535474, 0.022773293778300285, -0.00413404731079936, -0.002017886843532324, -0.0024977901484817266, -0.0018999583553522825, -0.003341306233778596, 0.010823211632668972, 0.020585065707564354, -0.0314737930893898, -0.020008526742458344, -0.004762999247759581, 0.018842345103621483, 0.00890359841287136, 0.004507487639784813, 0.007495008409023285, 0.025590473785996437, 0.03281031548976898, -0.04738103225827217, 0.0016043182695284486, -0.011819051578640938, -0.007350873667746782, -0.03026830218732357, 0.010089433752000332, 0.0031971712596714497, 0.011065619997680187, 0.013345569372177124, -0.02958693727850914, -0.011032861657440662, -0.026009775698184967, 0.00010016752639785409, -0.0038097442593425512, -0.04360732063651085, -0.015592762269079685, -0.003623024094849825, 0.00024261322687380016, 0.021358152851462364, -0.007416389416903257, 0.00037917273584753275, 0.013836937956511974, 0.00866774097084999, 0.021947795525193214, -0.003292169189080596, -0.01568448357284069, 0.014282445423305035, -0.011589745990931988, -0.01594654656946659, -0.004251976031810045, -0.034356489777565, 0.012854200787842274, -0.0007006096420809627, 0.020296797156333923, -0.00204573106020689, 0.01569758728146553, -0.031342763453722, -0.0030022617429494858, -0.01533069834113121, 0.02929866872727871, 0.010246671736240387, 0.018619591370224953, 0.005873491987586021, 0.019654741510748863, 0.010056676343083382, 0.0073639764450490475, 0.003904741955921054, -0.025459442287683487, 0.01703410968184471, -0.010810107924044132, -0.03296755254268646, -0.026822170242667198, -0.011000104248523712, 0.03097587265074253, 0.010587354190647602, -0.011229408904910088, -0.019759567454457283, -0.012421797029674053, -0.025590473785996437, -0.019798876717686653, 0.013352121226489544, 0.0164575707167387, 0.022629160434007645, 0.02963935025036335, -0.0012841097777709365, 0.05602911859750748, -0.00885773729532957, 0.004084910731762648, -0.040174294263124466, 0.01390245370566845, -0.0013922108337283134, 0.02958693727850914, -0.012821443378925323, -0.00418318435549736, -0.021698834374547005, -0.03081863559782505, -0.009381863288581371, -0.012146630324423313, 0.005051268730312586, 0.01767616532742977, 0.007147774565964937, -0.008693947456777096, -0.018724417313933372, -0.009237729012966156, 0.01580241322517395, 0.018789933994412422, 0.001713238307274878, -0.007095362059772015, -0.005008683539927006, -0.008798772469162941, 0.015173460356891155, -0.009106697514653206, -0.0033331166487187147, 0.005624531768262386, -0.01609068177640438, -0.004019394516944885, -0.01632653921842575, -0.005572119262069464, 0.018134774640202522, -0.018475458025932312, 0.020126456394791603, 0.004936615936458111, 0.013627287931740284, 0.02893177978694439, 0.03053036518394947, 0.01713893562555313, -0.01575000025331974, 0.01533069834113121, -0.02848627232015133, -0.010626663453876972, 0.01639205403625965, 0.025747712701559067, -0.012172836810350418, -0.008150165900588036, 0.02767387591302395, -0.021580906584858894, 0.002040817402303219, -0.0059619382955133915, -0.00831395573914051, -0.006607268936932087, 0.023664308711886406, 0.019196132197976112, -0.027490433305501938, 0.0012398866238072515, 0.004553348757326603, -0.009506343863904476, 0.017885815352201462, -0.013627287931740284, -0.0032856178004294634, -0.0007460612687282264, 0.012297316454350948, 0.0014994930243119597, 0.023061564192175865, 0.01525207981467247, 0.019117511808872223, 0.010724937543272972, -0.018580282106995583, -0.00440593808889389, 0.170236274600029, -0.010095985606312752, 0.017610648646950722, 0.03152620792388916, 0.007711210288107395, 0.012140079401433468, 0.021174708381295204, -0.022052619606256485, 0.008287749253213406, 0.013286605477333069, -0.025524958968162537, 0.00818292424082756, 0.009309795685112476, 0.005503327585756779, 0.01730927638709545, -0.014780365861952305, -0.023336730897426605, -0.0326530784368515, -0.009643926285207272, 0.011838706210255623, -0.01430865190923214, -0.00427490659058094, -0.024267055094242096, -0.021987104788422585, 0.03946672007441521, 0.0034002703614532948, -0.021266430616378784, 0.0014700109604746103, 0.02922005020081997, -0.022969841957092285, -0.01409900188446045, 0.002324173226952553, -0.007121568080037832, -0.002576409140601754, -0.02880074828863144, 0.00436335289850831, 0.023048460483551025, 0.005116784479469061, 0.02772628888487816, 0.00841222982853651, 0.024791181087493896, 0.003580438904464245, -0.03598128259181976, -0.01440037414431572, 0.02990141324698925, 0.023048460483551025, -0.020283693447709084, -0.009211522527039051, 0.007324667181819677, 0.0031038112938404083, -0.011498023755848408, -0.004726965446025133, 0.010227017104625702, 0.02948211319744587, -0.007003639824688435, -0.01556655578315258, -0.011026309803128242, 0.0007010191329754889, 0.04216597229242325, 0.009034629911184311, -0.009840474463999271, 0.038313642144203186, -0.025983568280935287, 0.03354409337043762, -0.009964954107999802, 0.004235596861690283, -0.018619591370224953, 0.011498023755848408, -0.025616681203246117, -0.01551414281129837, -0.00015365504077635705, 0.0068726083263754845, -0.0029760554898530245, 0.018868552520871162, -0.007462250534445047, 0.003937500063329935, 0.038732945919036865, 0.005064371973276138, -0.020480241626501083, 0.005139715038239956, -0.03220757097005844, -0.039361897855997086, 0.010528390295803547, 5.271975169307552e-05, -0.021947795525193214, -0.04022670537233353, -0.00710846483707428, -0.0020244384650141, -0.022524334490299225, -0.00786844827234745, -0.004035773687064648, 0.0020293521229177713, 0.0011407940182834864, -0.0033478576224297285, -0.0013995814369991422, -0.002638649195432663, -0.014387271367013454, 0.01430865190923214, 0.0003738495579455048, -0.010285981930792332, -0.023061564192175865, 0.03260066360235214, 0.008746360428631306, 0.009676684625446796, 0.017951330170035362, 0.0018131498945876956, -0.005811252165585756, -0.0016673773061484098, 0.01679825223982334, -0.007888102903962135, -0.012297316454350948, -0.024096714332699776, 0.00733777042478323, -0.0024535669945180416, -0.013057299889624119, 0.0003279884986113757, 0.006119176279753447, -0.019274750724434853, 0.00346578611060977, -0.0037049187812954187, 0.0054672942496836185, -0.014596921391785145, 0.012644550763070583, -0.006649854127317667, -0.004923512693494558, -0.013411085121333599, -0.04101289436221123, 0.012670757248997688, -0.0027778702788054943, -0.008595673367381096, 0.027097336947917938, -0.050814058631658554, 0.008071547374129295, -0.009801164269447327, 0.003093983978033066, 0.0032135501969605684, -0.0018131498945876956, -0.006489340681582689, -0.037710897624492645, 0.012696963734924793, 0.002065385691821575, 0.007082258816808462, -0.023559484630823135, -0.0074819051660597324, 0.035955075174570084, -0.015592762269079685, 0.0024306364357471466, -0.010397358797490597, 0.037501249462366104, -0.0598028264939785, -0.004785929806530476, -0.0023356385063380003, 0.015265182591974735, -0.005955386906862259, -0.003120190231129527, -0.021908486261963844, 0.0045402455143630505, -0.03150000050663948, 0.019209234043955803, -0.009624271653592587, -0.024293260648846626, 0.01631343550980091, 0.011923876591026783, -0.005149542354047298, -0.01391555741429329, 0.011491472832858562, -0.1635274589061737, 0.004592658020555973, -0.006643302738666534, -0.021567802876234055, 0.01556655578315258, 0.005061096046119928, 0.022406406700611115, 0.019418885931372643, 0.005110233090817928, 0.005555740557610989, 0.002836834406480193, -0.0075277662836015224, -0.0016821182798594236, 0.011910773813724518, -0.004612312652170658, -0.0005470569594763219, 0.01677204668521881, 0.015278286300599575, 0.039545342326164246, 0.020991263911128044, 0.06887021660804749, -0.02932487428188324, 0.02906281128525734, 0.0007059327908791602, 0.005015234928578138, -0.0009704529074952006, 0.0027369228191673756, 0.012782134115695953, -0.007003639824688435, -0.02932487428188324, 0.011478369124233723, 0.008595673367381096, 0.023729825392365456, -0.019746463745832443, 0.008064995519816875, 0.005120060406625271, 0.0009254107717424631, -0.012769030407071114, -0.007848793640732765, 0.00422904547303915, 0.02822420932352543, 0.010417013429105282, -0.020139558240771294, -0.008910149335861206, -0.022773293778300285, 0.039597753435373306, 0.00044223168515600264, -0.023480864241719246, -0.009676684625446796, -0.006276414263993502, 0.02901039831340313, -0.020755408331751823, 0.023690516129136086, 0.00029277376597747207, 0.02735939994454384, -0.013417636975646019, -0.03296755254268646, 0.001821339363232255, -0.019956113770604134, 0.007789829280227423, -0.003983361180871725, -0.025040140375494957, -0.0034985439851880074, 0.01516035757958889, -0.014832778833806515, -0.01529138907790184, -0.00683984998613596, 0.019536813721060753, -0.009329451248049736, 0.0068005407229065895, -0.0023340005427598953, -0.0017083246493712068, 0.00346578611060977, -0.022367095574736595, 0.014374167658388615, 0.007540869526565075, 0.00046639065840281546, 0.001736168866045773, -0.011740432120859623, -0.022432612255215645, -0.01430865190923214, 0.03341306000947952, 0.010272878222167492, -0.00720673892647028, -0.019235441461205482, -0.004684380255639553, -0.022904325276613235, 0.0322599820792675, -0.02984900213778019, -0.03011106513440609, 0.021856073290109634, -0.03506406024098396, -0.012277661822736263, -0.006852953229099512, 0.024896007031202316, 0.008844633586704731, 0.019196132197976112, -0.003518198849633336, 0.020886439830064774, -0.02890557423233986, 0.026756655424833298, -0.006820195354521275, -0.02722836844623089, -0.0001970592566067353, 0.023389142006635666, 0.024358777329325676, -0.019038893282413483, 0.011917324736714363, 0.037815723568201065, 0.024122919887304306, -0.012998335994780064, -0.002484686905518174, 0.006135555449873209, -0.008916701190173626, 0.03246963396668434, 0.01740099862217903, -0.004500935785472393, -0.009617720730602741, 0.011242512613534927, 0.019549917429685593, 0.02937728725373745, -0.00814361497759819, -0.007763623259961605, 0.012762479484081268, -0.0014986740425229073, -0.004193011671304703, -0.12348419427871704, -0.011517678387463093, 0.01732238009572029, 0.026324251666665077, 0.0058702160604298115, 0.0025567542761564255, -0.013705906458199024, 0.025236688554286957, 0.00876601506024599, 0.04266389459371567, -0.00400301581248641, -0.01662791147828102, -0.017689267173409462, 0.00697743333876133, -0.006096245720982552, -0.003146396717056632, -0.024581531062722206, 0.0027090786024928093, -0.0314737930893898, 0.03480199724435806, -0.012408693321049213, -0.0021996931172907352, 0.00012652740406338125, -0.009715993888676167, -0.005801424849778414, 0.004081634804606438, -0.025066347792744637, 0.009139454923570156, 0.008215682581067085, -0.0045369695872068405, -0.004746620077639818, -0.009584962390363216, 0.0016665583243593574, -0.01386314444243908, 0.006187967956066132, -0.010567699559032917, -0.005247815977782011, -0.021358152851462364, 0.006453306879848242, -0.01734858565032482, -0.017741680145263672, 0.011373544111847878, -0.018540972843766212, -0.004068531561642885, 0.005598325747996569, 0.0009286865824833512, -0.023376040160655975, 0.026127703487873077, 0.0037278493400663137, -0.01723065786063671, -0.02956073172390461, -0.0007329580839723349, -0.03275790438055992, -0.004648346453905106, -0.006060211919248104, -0.012343177571892738, 0.01508173905313015, 0.004068531561642885, 0.011144238524138927, 0.03322961553931236, -0.01585482433438301, -0.0003069006197620183, -0.012618344277143478, 0.02772628888487816, 0.0012677308404818177, 0.011262167245149612, -0.02911522425711155, -0.003429752541705966, 0.04625415802001953, -0.021017471328377724, 0.008595673367381096, 0.012035253457725048, -0.01709962636232376, 0.024856697767972946, -0.014387271367013454, 0.02764767035841942, -0.018436148762702942, 0.008654638193547726, 0.03157861903309822, -0.0068464018404483795, 0.001952370977960527, -0.022681571543216705, -0.0075932820327579975, -0.019654741510748863, 0.0331772044301033, 0.0161955077201128, -0.0015813878271728754, 0.006394342519342899, 0.027516638860106468, -0.03220757097005844, -0.005516430828720331, 0.01602516695857048, 0.03354409337043762, -0.019445091485977173, -0.010960794053971767, -0.009270486421883106, 0.035719215869903564, -0.01669342815876007, 0.005391950719058514, -0.012893510982394218, -0.038182612508535385, -0.01723065786063671, -0.038366056978702545, 0.010063228197395802, 0.012926268391311169, -0.015579658560454845, 0.02903660573065281, -0.011963185854256153, 0.01690307818353176, 0.01463623158633709, 0.005002131685614586, 0.0003654553438536823, -0.008864288218319416, 0.02853868529200554, -0.01467554084956646, -0.012886959128081799, -0.013758319430053234, -0.02948211319744587, 0.001646084594540298, 0.006653130054473877, 0.010259775444865227, 0.0036328514106571674, -0.019431987777352333, -0.018567180261015892, 0.020467137917876244, 0.004012843128293753, -0.007770174648612738, 0.035588186234235764, -0.013889350928366184, 0.021423669531941414, -0.017374791204929352, -0.023729825392365456, 0.010607008822262287, -7.201620610430837e-05, 0.011059068143367767, 0.020440932363271713, -0.011281821876764297, 0.0009606255334801972, 0.003514922922477126, 0.011373544111847878, 0.008798772469162941, 0.021161604672670364, -0.01597275398671627, -0.03076622262597084, 0.015618967823684216, -0.0034756134264171124, 0.008248439989984035, -0.009054284542798996, -0.010489081032574177, 0.022969841957092285, -0.018973378464579582, -0.006898814346641302, 0.025118760764598846, 0.0011940256226807833, -0.008163269609212875, -0.004124219994992018, 0.011950083076953888, -0.026861481368541718, 0.00885773729532957, -0.026415973901748657, 0.021148502826690674, -0.02764767035841942, 0.0281980037689209, 0.00020688663062173873, 0.019169924780726433, -0.019222337752580643, -0.0009614444570615888, -0.05686771869659424, -0.02790973335504532, -0.012860752642154694, -0.006620372179895639, -0.009742200374603271, 0.008248439989984035, -0.008523606695234776, 0.01668032445013523, -0.01563207060098648, 0.026481488719582558, 0.025957362726330757, -0.020388519391417503, -0.0018147878581658006, 0.007278806064277887, 0.025393927469849586, 0.03301996737718582, -0.01627412624657154, -0.025642886757850647, 0.007311563938856125, 0.03301996737718582, 0.024031197652220726, 0.002299604704603553, -0.004795757122337818, 0.006410721689462662, -0.010816659778356552, 0.026298044249415398, 0.01584172248840332, -0.021594010293483734, -0.012952474877238274, 0.007802932523190975, 0.036977119743824005, -0.011471817269921303, 0.00805189274251461, -0.0004819506430067122, 0.023939475417137146, 0.01695549115538597, 0.0060045234858989716, -0.019576122984290123, -0.012919717468321323, -0.039623960852622986, -0.0015617330791428685, -0.010914932936429977, -0.0060503846034407616, 0.007252599578350782, 0.06420549005270004, -0.020139558240771294, 0.018488559871912003, 0.012389038689434528, 0.0014716488076373935, -0.013129367493093014, 0.012893510982394218, 0.0036361273378133774, -0.0006879159482195973, -0.020886439830064774, 0.00742294080555439, 0.00036177010042592883, -0.0012415245873853564, 0.03296755254268646, -0.025144966319203377, 0.007658797781914473, -0.001284928759559989, 0.008110856637358665, -0.017794093117117882, 0.0043535251170396805, 0.004107841290533543, -0.03257445991039276, 0.022105032578110695, -0.012441451661288738, -0.006787437479943037, 0.00782913900911808, -0.01723065786063671, -0.012454554438591003, 0.01484588161110878, 0.020951954647898674, 0.07259151339530945, -0.004009567201137543, -0.01657549850642681, 0.017689267173409462, -0.006577786989510059, 0.0025387376081198454, 0.038418468087911606, 0.0008340980857610703, -0.012565931305289268, -0.04785274341702461, 0.011740432120859623, 0.021253326907753944, -0.01419072411954403, -0.03236480802297592, 0.00764569453895092, 0.027490433305501938, 0.005385399330407381, 0.025590473785996437, -0.03100208006799221, 0.020558860152959824, 0.027018718421459198, -0.01408589817583561, 0.01723065786063671, 0.009991160593926907, -0.0166541188955307, 0.023310523480176926, 0.03029450960457325, 0.014243136160075665, -0.022799501195549965, -0.025118760764598846, -0.008956010453402996, -0.012696963734924793, -0.021672628819942474, -0.026101497933268547, -0.011799396947026253, -0.0038981905672699213, -0.007147774565964937, 0.012736272998154163, 0.008648086339235306, -0.005948835052549839, 0.0001810897811083123, 0.011550436727702618, -0.039676371961832047, -0.022747088223695755, -0.026180116459727287, -0.010227017104625702, -0.008346714079380035, -0.01576310396194458, -0.05057820305228233], "655b870a-ed3a-476f-a19f-b05285203802": [-0.014209769666194916, 0.0034154243767261505, 0.012779435142874718, -0.02809871733188629, -0.008869409561157227, -0.0010134319309145212, -0.004504884593188763, -0.01111516822129488, -0.020866839215159416, -0.03521028533577919, 0.007572751026600599, 0.024435991421341896, -0.0023209513165056705, 0.014931620098650455, 0.0007840938633307815, 0.014209769666194916, 0.031440619379282, 0.007639589253813028, 0.003599229035899043, 0.00804061722010374, -0.026080207899212837, 0.012538818642497063, 0.0030177379958331585, -0.012471980415284634, -0.05764113366603851, 0.019516710191965103, 0.0011730077676475048, -0.027002573013305664, 0.0146910035982728, -0.03245655819773674, 0.0060688951052725315, -0.0031697945669293404, -0.017431363463401794, -0.037055015563964844, -0.020813368260860443, -0.003649357473477721, -0.005333676468580961, -0.005407198332250118, 0.0028706942684948444, -0.010333162732422352, 0.016950130462646484, -0.014597429893910885, -0.006553471088409424, 0.005724679213017225, -0.010854499414563179, 0.018233420327305794, 0.0021688947454094887, -0.03392699360847473, -0.01620154269039631, 0.0017829049611464143, 0.027296660467982292, 0.021201029419898987, -0.034782521426677704, -0.0025749357882887125, 0.009069923311471939, 0.01733778975903988, -0.027015939354896545, -0.001317545073106885, 0.011516195721924305, -0.014116195961833, 0.0006366324378177524, 0.009130077436566353, 0.004361182916909456, -0.009357326664030552, -0.016428792849183083, 0.004197429399937391, -0.005982005503028631, -0.013862211257219315, -0.010513625107705593, 0.0046385605819523335, 0.054914142936468124, 0.02903444878757, -0.0061557842418551445, 0.007325450424104929, 0.03328534960746765, -0.020171724259853363, -0.03424781560897827, 0.009851928800344467, -0.010092545300722122, -0.009845244698226452, -0.0003880784206558019, -0.02354036085307598, -0.005276863928884268, 0.0038131107576191425, 0.015974294394254684, 0.0030695374589413404, -0.028125451877713203, 0.02578612044453621, -0.009604628197848797, -0.018928535282611847, 0.005186632741242647, 0.016321852803230286, 0.011081748642027378, 0.017565039917826653, -0.011756813153624535, 0.022511055693030357, -0.023928022012114525, 0.035450901836156845, -0.0008321337518282235, -0.013200514949858189, -0.012211311608552933, 0.03344576060771942, -0.004588432144373655, -0.012458612211048603, -0.05512802302837372, -0.0040637534111738205, 0.0025281491689383984, 0.011061697266995907, 0.04229511693120003, 0.011068381369113922, 0.012679178267717361, 0.037589721381664276, 0.010948073118925095, -0.04299023374915123, 0.0376431904733181, -0.005407198332250118, 0.020880207419395447, -0.0013484576484188437, -0.010974807664752007, -0.0020953728817403316, -0.007733162492513657, -0.008835989981889725, 0.018781492486596107, 0.006386375520378351, 0.016361955553293228, -0.03344576060771942, -0.006299486383795738, -0.014410283416509628, -0.028767097741365433, -0.011596402153372765, 0.023954756557941437, 0.02156195603311062, 0.01054036058485508, 0.00779331661760807, -0.006266067270189524, 0.009918767027556896, 0.008154242299497128, -0.011669923551380634, -0.019182519987225533, -0.022150129079818726, 0.03419434651732445, 0.003400385845452547, -0.0006157455500215292, 0.0011613111710175872, -0.007191774435341358, 0.00571465352550149, 0.022738303989171982, 0.015372751280665398, 0.006733933463692665, 0.019824165850877762, 0.0012983290944248438, -0.009945501573383808, -0.004658611956983805, -0.008301286026835442, -0.0034622109960764647, 0.0051030851900577545, -0.012986632995307446, -0.010105913504958153, 0.024048330262303352, 0.004742159508168697, 0.030932649970054626, 0.004658611956983805, -0.004738817922770977, -0.005821594037115574, -0.013474551029503345, 0.03229614719748497, 0.041787147521972656, 0.00940411351621151, -0.008488432504236698, 0.014370180666446686, -0.00402030861005187, -0.0002232808619737625, -0.010339846834540367, 0.0228987168520689, -0.004050385672599077, -0.01931619644165039, 0.004361182916909456, -0.013862211257219315, -0.0154930604621768, -0.006256041582673788, 0.004922622349113226, 0.0013760284055024385, 0.006058869417756796, 0.032857585698366165, -0.03002365306019783, 0.0286868903785944, 0.012298201210796833, -0.002063624793663621, 0.030718768015503883, 0.0067907460033893585, 0.012786119244992733, 0.03665398806333542, 0.01590745523571968, 0.0011487789452075958, -0.6185460686683655, 0.005524164997041225, -0.010480206459760666, -0.03200205788016319, -0.017819024622440338, -0.0014595759566873312, 0.007245244458317757, 0.0006529241800308228, -0.014717739075422287, 0.03095938451588154, -0.00446478184312582, 0.0075192805379629135, -0.00437789224088192, 0.012164524756371975, 0.008301286026835442, -0.03555784374475479, -0.008074036799371243, -0.017939332872629166, 0.009858612902462482, 0.007071465719491243, -0.007298714946955442, 0.01948997564613819, -0.01558663323521614, 0.0028757071122527122, 0.0030996145214885473, 0.04106529802083969, 0.018139846622943878, -0.008007198572158813, 0.024141903966665268, 0.01620154269039631, -0.0150920320302248, -0.0030712084844708443, -0.0010042417561635375, -0.005998714827001095, 0.03210899978876114, 0.0002124196762451902, 0.012465296313166618, 0.008829306811094284, 0.009043187834322453, 0.05293573439121246, -0.03240308538079262, -0.0016350258374586701, 0.02887403778731823, 0.019249359145760536, 0.013106942176818848, 0.022190233692526817, 0.03555784374475479, 0.029836505651474, -0.018567610532045364, -0.024034962058067322, 0.007231877185404301, -0.01248534768819809, -0.0029358614701777697, -1.7270847820327617e-05, -0.0019767354242503643, -0.00868894625455141, 0.0199712086468935, 0.015787146985530853, 0.043257586658000946, -0.01737789250910282, 0.018768124282360077, 0.020519280806183815, -0.010112596675753593, -0.010085862129926682, -0.013334191404283047, 0.014102828688919544, -0.027510542422533035, -0.009718252345919609, -0.019195888191461563, -0.02986324019730091, -0.012338303960859776, 0.009203599765896797, -0.007031362969428301, -0.0005338689079508185, 0.009898715652525425, 0.022938819602131844, -9.936938295140862e-05, -0.0074323914013803005, -0.007632905151695013, 0.009851928800344467, 0.008889460936188698, -0.002783804899081588, -0.05138509348034859, 0.003495630109682679, 0.02240411378443241, -0.005564267747104168, -0.004207455087453127, 0.01241850946098566, 0.034140877425670624, 0.009464267641305923, 0.03232287988066673, 0.005450643133372068, -0.004167352337390184, -0.03411414101719856, -0.01435681339353323, 0.01515887025743723, -0.007579435128718615, 0.0038097689393907785, -0.006469923071563244, -0.0231794361025095, -0.02350025810301304, -0.02514447458088398, 0.010092545300722122, -0.020505914464592934, 0.017738819122314453, -0.005333676468580961, 0.002910797018557787, 0.020479178056120872, 0.04480822756886482, -0.01620154269039631, 0.0016759641002863646, -0.027296660467982292, -0.012104370631277561, 0.01208431925624609, -0.003101285547018051, -0.027203086763620377, 0.005617738235741854, -0.01701696775853634, 0.004715424496680498, -0.012946530245244503, 0.019556812942028046, 0.011242159642279148, -0.015666838735342026, -0.014477121643722057, 0.015292545780539513, 0.002605013083666563, 0.009918767027556896, -0.023887919262051582, -0.021321337670087814, -0.0028974295128136873, 0.026655014604330063, 0.010339846834540367, -0.0052802059799432755, -0.006991260219365358, 0.02160205878317356, -0.014797944575548172, 0.014102828688919544, -0.02804524637758732, 0.022978922352194786, -0.029836505651474, -0.014396916143596172, -0.0019566838163882494, 0.0011838689679279923, -0.028820566833019257, 0.011182005517184734, -0.027617482468485832, -0.02841953933238983, -0.011623136699199677, -0.001615809858776629, -0.024449359625577927, 0.008535219356417656, 0.014156298711895943, -0.012124422006309032, 0.029141390696167946, 0.016455527395009995, -0.021174294874072075, 0.018701286986470222, -0.005380462855100632, -0.020519280806183815, -0.025558870285749435, -0.01087455078959465, 0.0209470447152853, -0.024917224422097206, -0.010252957232296467, -0.008080719970166683, -0.012866324745118618, -0.028125451877713203, 0.0379907488822937, -0.013053471222519875, -0.03817789629101753, -0.0053604114800691605, 0.008936247788369656, 0.005083033815026283, 0.00567455030977726, 0.025532135739922523, 0.02613367699086666, 0.015613368712365627, -0.012665810994803905, -0.0006253535393625498, -0.009130077436566353, 0.015105399303138256, -0.006687147077172995, -0.02825912833213806, -0.006038818042725325, 0.024930592626333237, -0.007185090333223343, 0.02368740551173687, -0.030210798606276512, -0.01932956464588642, 0.0023978149984031916, 0.01353470515459776, 0.006991260219365358, -0.025518767535686493, 0.03165449947118759, 0.004651928320527077, 0.014677636325359344, 0.015105399303138256, 0.012552185915410519, 0.02497069537639618, 0.047962985932826996, 0.029649360105395317, -0.033017996698617935, -0.019409770146012306, -0.020318767055869102, 0.004237532615661621, -0.007104884833097458, 0.016335219144821167, -0.014744473621249199, 0.026641646400094032, -0.027216454967856407, 0.019182519987225533, -0.018420565873384476, -0.0225511584430933, -0.021374808624386787, 0.019757328554987907, 0.02205655723810196, -0.018286891281604767, 0.016308484598994255, 0.006446530111134052, -0.010172751732170582, 0.02728329226374626, 0.009938818402588367, 0.018527507781982422, 0.0083480728790164, -0.021134192124009132, 0.02333984710276127, 0.01751156896352768, 0.0036393317859619856, -0.005056298337876797, -0.03988894820213318, 0.004214139189571142, 0.02628072164952755, 0.003179820254445076, 0.0025548844132572412, 0.030237533152103424, 0.0012607327662408352, 0.019088948145508766, -0.01412956416606903, 0.03633316606283188, -0.021976351737976074, 0.0020302056800574064, 0.0050362469628453255, 0.03347249701619148, -0.012879692018032074, -0.00263509014621377, 0.003229948692023754, 0.040824681520462036, 0.001416131155565381, -0.017324423417448997, 0.02172236703336239, 0.011456041596829891, 0.0079470444470644, -0.030397946015000343, 0.01183701865375042, 0.0015606684610247612, -0.011803600005805492, -0.0068575837649405, -0.005704627837985754, 0.04181388393044472, 0.015359384007751942, -0.012264782562851906, -0.011596402153372765, 0.0002786311088129878, 0.010252957232296467, 0.0067105405032634735, -0.015974294394254684, 0.00576143991202116, -0.03419434651732445, -0.0025431879330426455, -0.010353214107453823, -0.0019449872197583318, -0.03550437092781067, -0.023941390216350555, -0.006780720315873623, 0.01978406310081482, 0.008147558197379112, 0.013688432984054089, 0.019703857600688934, 0.017738819122314453, 0.011041645891964436, -0.035290490835905075, -0.02485038712620735, 0.03328534960746765, 0.01803290657699108, 0.01283290609717369, -0.029301801696419716, -0.035156816244125366, -0.02239074744284153, -0.012893060222268105, -0.008394858799874783, -0.027965040877461433, 0.010867866687476635, -0.021120823919773102, -0.019276093691587448, -0.010968124493956566, 0.00997892115265131, 0.04186735302209854, 0.001165488502010703, 0.004815681371837854, -0.001071079750545323, 0.01588072068989277, -0.00949100311845541, -0.009290489368140697, -0.0033586120698601007, 0.0285799503326416, 0.014477121643722057, 0.00689768698066473, -0.023299744352698326, -0.011716710403561592, -0.043899230659008026, 0.0379907488822937, 0.00372956320643425, 0.008241131901741028, -0.010333162732422352, 0.03419434651732445, -0.02529151923954487, 0.015225707553327084, 0.006035475991666317, -0.00636632414534688, -0.004568380769342184, -7.404403004329652e-05, -0.007091517094522715, 0.005430591758340597, 0.013200514949858189, 0.043899230659008026, 0.018901800736784935, -0.001913239248096943, 0.005460668820887804, -0.010567096062004566, 0.00866889487951994, -0.001241516787558794, -0.01136246882379055, 0.009524421766400337, -0.0030377893708646297, 0.004718766547739506, 0.00470874086022377, 0.020866839215159416, -0.004895887337625027, -0.006072236690670252, -0.0033151672687381506, -0.004655270371586084, -0.009029820561408997, -0.008655527606606483, -0.033365555107593536, 0.02951568365097046, -0.007853470742702484, 0.02642776444554329, 0.023968124762177467, -0.0026768639218062162, -0.009303856641054153, 0.02561234124004841, -0.0029876609332859516, -0.0038832908030599356, -0.02466324158012867, -0.014116195961833, 0.006937789730727673, 0.008314653299748898, 0.015399486757814884, -0.008695630356669426, 0.011456041596829891, 0.002260796958580613, 0.0030260926578193903, 0.017979435622692108, -0.025278151035308838, 0.011970695108175278, 0.017284320667386055, 0.0005438946536742151, -0.019102314487099648, 0.009223651140928268, -0.0018948587821796536, -0.012532134540379047, 0.009544474072754383, -0.004925964400172234, 0.00701131159439683, -0.018728021532297134, -0.014717739075422287, -0.033365555107593536, -0.012792802415788174, 0.024542931467294693, 0.013634962029755116, 0.00030661956407129765, -0.018220052123069763, -0.007766581606119871, -0.02515784278512001, -0.010747558437287807, -0.008568638004362583, -0.003625964280217886, -0.021160926669836044, 0.010373265482485294, 0.004812339786440134, 0.010239589028060436, 0.01832699403166771, -0.011342417448759079, 0.004765552934259176, 0.033178407698869705, -0.041626736521720886, -0.026160413399338722, -0.028820566833019257, 0.013574807904660702, 0.02951568365097046, 0.008588689379394054, -0.020880207419395447, 0.0015949229709804058, 0.006850900128483772, 0.018955271691083908, -0.04446067288517952, -0.018260154873132706, -0.026695117354393005, 0.005510797258466482, -0.005383804906159639, 0.008060668595135212, -0.0015055270632728934, -0.04833727702498436, 0.016843188554048538, -0.009524421766400337, -0.004725450184196234, 0.001637532259337604, -0.0005518316756933928, -0.033044733107089996, 0.03815115988254547, -0.028820566833019257, 0.020078150555491447, 0.02271156944334507, -0.03363290801644325, 0.011075064539909363, -0.012271465733647346, -0.010907969437539577, -0.02074653096497059, 0.0011730077676475048, 0.004514910280704498, 0.00470874086022377, -0.005971979815512896, -0.026882264763116837, -0.015038561075925827, 0.037562984973192215, -0.02513110637664795, 0.004989460576325655, 0.022965554147958755, -0.011636504903435707, 0.01686992309987545, -0.004407969303429127, 0.017123907804489136, -0.010186119005084038, -0.020800001919269562, -0.01208431925624609, -0.013300771825015545, 0.024275580421090126, 0.018246788531541824, -0.024048330262303352, -0.005263496655970812, 0.0014871465973556042, -0.023714140057563782, 0.01355475652962923, 0.006917738355696201, -0.008341388776898384, 0.01169665902853012, -0.02451619692146778, -0.027457071468234062, -0.012197944335639477, 0.01297326572239399, 0.0032466582488268614, -0.0010760925943031907, -0.017658613622188568, -0.011095116846263409, 0.02366066910326481, 0.014463754370808601, 0.02660154365003109, -0.0018096402054652572, 0.010760925710201263, -0.035290490835905075, 0.0060087405145168304, -0.0011320695048198104, -5.3444331570062786e-05, 0.04010283201932907, 0.0360390767455101, -0.0040570697747170925, -0.008074036799371243, 0.011141902767121792, 0.00551413930952549, 0.017565039917826653, -0.0009841902647167444, -0.0019951157737523317, 0.011008227244019508, 0.04216144233942032, 0.00819434504956007, -0.00277879205532372, 0.009323908016085625, 0.006212596781551838, -0.008301286026835442, 0.02419537492096424, -0.016027765348553658, 0.016107970848679543, -0.0056043704971671104, 0.018687918782234192, 0.005387146957218647, 0.005203342065215111, 0.016014397144317627, 0.006352956872433424, 0.022751672193408012, 0.021615425124764442, 0.01542622223496437, -0.0022775065153837204, -0.022470952942967415, -0.007840103469789028, -0.013588176108896732, 0.01769871637225151, -0.004050385672599077, 0.011088432744145393, -0.022671466693282127, -0.008622108958661556, 0.01720411330461502, 0.019102314487099648, 0.010526993311941624, 0.00652339356020093, 0.021842675283551216, 0.012338303960859776, 0.019730592146515846, 0.02354036085307598, 0.02661491185426712, 0.0004373714909888804, -0.0057514142245054245, -0.03962159529328346, 0.00393007742241025, -0.011295630596578121, -0.008695630356669426, 0.033686377108097076, 0.0032149101607501507, -0.004909254610538483, -0.015559897758066654, 0.007078149355947971, -0.024863755330443382, -0.003956812433898449, 0.03111979551613331, -0.015773780643939972, -0.018113112077116966, 0.00277879205532372, -0.014610798098146915, -0.01379537396132946, 0.003853213507682085, 0.032215941697359085, -0.011616453528404236, 0.021829307079315186, -0.0010460155317559838, -0.019904371351003647, 0.002810539910569787, -0.009163497015833855, 0.040637534111738205, -0.004474807530641556, 0.03732236847281456, 0.02206992357969284, 0.01592082343995571, 0.008007198572158813, -0.0007565231644548476, 0.010393316857516766, -0.0026000002399086952, 0.03622622415423393, 0.0011813625460490584, 0.007038046605885029, -0.0005936054512858391, -0.027056042104959488, -0.01721748150885105, -0.029916711151599884, -0.01816658303141594, 0.017952701076865196, 0.004023650661110878, -0.0009866966865956783, -0.010948073118925095, 0.02970282919704914, -0.030424680560827255, -0.0021956299897283316, 0.0014988433104008436, 0.007104884833097458, -0.023152701556682587, -0.0043143960647284985, -0.0388997457921505, 0.019383033737540245, 0.015787146985530853, 0.014383548870682716, 0.009130077436566353, -0.011863754130899906, 0.0160678680986166, -0.02561234124004841, -0.020666325464844704, -0.013675064779818058, 0.010653985664248466, 0.037055015563964844, -0.024877121672034264, -0.027510542422533035, 0.03130694106221199, -0.0050228796899318695, 0.007906941697001457, 0.008515167981386185, -0.002631748327985406, 0.029916711151599884, -0.0072586121968925, -0.020305398851633072, -0.012070951983332634, 0.02350025810301304, 0.009183548390865326, -0.017444731667637825, -0.008715681731700897, -0.0205994863063097, -0.011596402153372765, 0.001064395997673273, 0.009678149595856667, 0.013541389256715775, -0.023981492966413498, 0.006463239435106516, 0.00278046284802258, 0.012679178267717361, -0.007652956992387772, -0.018594345077872276, 0.01899537444114685, -0.013728535734117031, -0.021869409829378128, -0.021628793329000473, 0.00900308508425951, 0.030050387606024742, -0.005136504303663969, 0.005570951383560896, 0.01379537396132946, 0.05456658452749252, -0.03173470497131348, 0.020011313259601593, -0.026227250695228577, -0.02319280430674553, -0.014891517348587513, -0.012873008847236633, -0.013000001199543476, -0.013354242779314518, 0.033017996698617935, -0.038044217973947525, -0.012512083165347576, -0.020880207419395447, -0.004819023422896862, 0.02333984710276127, -0.010854499414563179, -0.017097173258662224, -0.004474807530641556, -0.007004627492278814, 0.01094138901680708, -0.025906428694725037, -0.014543959870934486, 0.005086375866085291, -0.0006149100372567773, 0.02093367651104927, 0.01817994937300682, -0.00021283741807565093, 0.005310283042490482, -0.013441132381558418, -0.010072493925690651, 0.005350385792553425, -0.03031774051487446, 0.004675321746617556, -0.018367096781730652, -0.006513367872685194, 0.014477121643722057, -0.004641902633011341, -0.025598973035812378, -0.010413368232548237, -0.006590231787413359, 0.009116710163652897, 0.0065634967759251595, -0.009791774675250053, -0.016335219144821167, 0.005851671099662781, 0.023273009806871414, 0.025358356535434723, -0.011202056892216206, -0.006232648156583309, -0.027617482468485832, 0.0017043702537193894, -0.024262212216854095, -0.022738303989171982, -0.015506427735090256, 0.03922056779265404, 0.01962365210056305, -0.0014136247336864471, -0.007225193083286285, -0.009791774675250053, -0.04055732861161232, -0.018527507781982422, 0.004695373121649027, 0.01882159523665905, 0.03173470497131348, 0.007840103469789028, -0.013033419847488403, 0.024088433012366295, 0.016776351258158684, 0.018915168941020966, -0.03962159529328346, -0.0015765425050631166, -0.0001580093230586499, 0.02106735296547413, 0.005647815298289061, -0.006078920792788267, -0.023460155352950096, -0.0067907460033893585, 0.011242159642279148, -0.03240308538079262, -0.003301799762994051, 0.028793832287192345, 0.025852957740426064, -0.006580206099897623, -0.03582519665360451, -0.0022307198960334063, 0.020733162760734558, 0.009323908016085625, 0.02722982130944729, -0.016094602644443512, 0.00030661956407129765, -0.005480720195919275, 0.021147558465600014, -0.015533163212239742, -0.0003479756123851985, 0.007318766321986914, -0.027162984013557434, 0.00850848387926817, -0.015787146985530853, -0.00964473094791174, 0.00522673549130559, -0.023807713761925697, 0.029943447560071945, 0.017778921872377396, 0.02351362630724907, 0.02772442251443863, 0.006844216492027044, 0.010480206459760666, -0.006403085310012102, -0.0002498072281014174, -0.020893573760986328, -0.016508998349308968, 0.026855528354644775, 0.005985347554087639, -0.024409256875514984, -0.03766992688179016, 0.030103858560323715, -0.014383548870682716, -0.004601799882948399, -0.00032353794085793197, -0.008889460936188698, -0.017431363463401794, 0.02223033644258976, -0.007398972287774086, -0.027965040877461433, 0.022430850192904472, 0.0015389460604637861, 0.0040570697747170925, 0.022444216534495354, -0.03815115988254547, 0.007245244458317757, -0.025746017694473267, 0.006376349832862616, 0.016508998349308968, 0.016174808144569397, -0.001046850928105414, -0.017952701076865196, 0.016910027712583542, -0.006279435008764267, 0.0013492931611835957, 0.18147867918014526, -0.0212277639657259, 0.0022775065153837204, 0.015118766576051712, -0.016936762258410454, 0.027644217014312744, 0.008822622708976269, -0.011603085324168205, -0.004738817922770977, 0.012064267881214619, -0.02402159571647644, -0.013274037279188633, -0.02336658164858818, 0.005594344809651375, 0.014771209098398685, -0.022604629397392273, -0.0005685411742888391, -0.03906015679240227, -0.01102827861905098, 0.02125450037419796, -0.0007427378441207111, -0.009744987823069096, -0.03162776678800583, -0.014410283416509628, 0.03646684065461159, 0.0008354756282642484, -0.018728021532297134, 0.015853986144065857, 0.023901287466287613, -0.003478920552879572, -0.021842675283551216, -0.018246788531541824, -0.002608354901894927, -0.005123136565089226, -0.029168125241994858, 0.007572751026600599, 0.021842675283551216, 0.0032884320244193077, -0.00017555431986693293, 0.0018413882935419679, 0.02468997612595558, -0.013487918302416801, -0.04117223992943764, -0.007552699651569128, 0.014971723780035973, 0.032670438289642334, -0.02725655771791935, -0.039675068110227585, -0.006784061901271343, 0.013187147676944733, -0.009056556038558483, -0.008575322106480598, -0.0026534704957157373, 0.01851413957774639, -0.008160926401615143, -0.010146016255021095, -0.014771209098398685, -0.010653985664248466, 0.0293820071965456, 0.026040105149149895, -0.004608483519405127, 0.035317227244377136, -0.02160205878317356, 0.008876092731952667, -0.013113625347614288, 0.03491619601845741, -0.008254499174654484, 0.00462185125797987, -0.029248330742120743, -0.02108072116971016, 0.007205141708254814, 8.631507807876915e-05, 0.007218509446829557, 0.023299744352698326, -0.017899230122566223, -0.009718252345919609, 0.01915578544139862, 0.028820566833019257, 0.0002784222597256303, 0.022337276488542557, -0.020011313259601593, -0.013681748881936073, 0.007886890321969986, -0.009591259993612766, -0.03459537401795387, -0.026561440899968147, 0.022016454488039017, 0.005704627837985754, -0.009450900368392467, 0.0008162597077898681, -0.004992802161723375, -0.01104832999408245, 0.002205655677244067, -0.004417994990944862, 0.012799486517906189, 0.022791774943470955, 0.012792802415788174, 0.022484319284558296, -0.006483290810137987, -0.0014487147564068437, -0.013628278858959675, 0.05871054530143738, 0.004972750786691904, 0.008802571333944798, 0.02467660792171955, -0.01087455078959465, -0.0016475579468533397, 0.013628278858959675, 0.006737275514751673, -0.026868896558880806, 0.006058869417756796, -0.03226941078901291, 0.003522365354001522, -0.015105399303138256, 0.01656246930360794, -0.021802572533488274, 0.004391259979456663, -0.004902570974081755, -0.0008028920856304467, -0.005711311474442482, -0.03470231592655182, -0.015172237530350685, 0.008849358186125755, 0.0004720437282230705, 0.011730077676475048, -0.0003277153300587088, -0.04106529802083969, 0.030611827969551086, -0.0023259641602635384, -0.004093830473721027, 0.009758355095982552, -0.034809257835149765, -0.005527506582438946, -0.02093367651104927, -0.002431234112009406, -0.022003086283802986, -0.0227249376475811, 0.001412789337337017, -0.01201079785823822, 0.024596402421593666, -0.004688689019531012, 0.011516195721924305, -0.0023643961176276207, -0.005387146957218647, 0.0001103872200474143, -0.010847815312445164, -0.013768638484179974, 0.009290489368140697, 0.017391260713338852, -0.01576041243970394, -0.028820566833019257, -0.0014278278686106205, 0.008428278379142284, -0.029462212696671486, -0.003943445160984993, -0.013741903007030487, 0.0004139781813137233, -0.04619846120476723, 0.0075460160151124, -0.012518767267465591, -0.03189511597156525, 0.015359384007751942, 0.01832699403166771, 0.0030912598595023155, -0.013581492006778717, -0.012318252585828304, -0.16736248135566711, -0.01898200623691082, -0.005367095582187176, -0.04446067288517952, -0.00023748395324219018, -0.004879177547991276, -0.002556555438786745, 0.012565553188323975, -0.012057584710419178, 0.0028356043621897697, -0.014102828688919544, -0.0007799164741300046, -0.02967609465122223, -0.019209256395697594, -0.008775835856795311, 0.01588072068989277, -0.022658098489046097, 0.008655527606606483, 0.039835479110479355, 0.019276093691587448, 0.04967403784394264, -0.05125141888856888, 0.023326478898525238, 0.030745502561330795, -0.0061557842418551445, -0.014891517348587513, 0.013528021052479744, -0.0005096401437185705, -0.0020051414612680674, -0.0286868903785944, 0.020880207419395447, 0.02075989916920662, 0.007419023662805557, -0.02447609417140484, 0.008962982334196568, 0.007906941697001457, 0.0007055591559037566, -0.0207732655107975, -0.00899640191346407, 0.0017428022110834718, 0.011248843744397163, 0.020398972555994987, -0.009584576822817326, -0.005661183036863804, -0.016188176348805428, 0.01103496178984642, 0.020639590919017792, -0.02287198044359684, 0.020826736465096474, -0.006663753651082516, 0.019837534055113792, -0.004411311354488134, 0.008869409561157227, -0.0007774100522510707, 0.04151979833841324, -0.025759384036064148, -0.009357326664030552, 0.0007022172794677317, -0.008882776834070683, 0.006957841105759144, 0.009049871936440468, -0.029569152742624283, 0.022765040397644043, 0.0043812342919409275, -0.00028719473630189896, -0.036279693245887756, -0.02710951305925846, 0.013421081006526947, -0.02578612044453621, 0.006463239435106516, 0.011736761778593063, -0.01061388198286295, -0.010146016255021095, -0.018554242327809334, 0.02513110637664795, 0.03181491047143936, 0.003833162132650614, 0.024382520467042923, -0.019048843532800674, -0.016950130462646484, 0.003876606933772564, 0.022337276488542557, 0.020078150555491447, -0.029622623696923256, 0.0007736504194326699, -0.0018179949838668108, -0.01769871637225151, 0.051839593797922134, -0.040156301110982895, -0.013347558677196503, 0.025893060490489006, -0.045503344386816025, -0.020398972555994987, -0.007198458071798086, 0.033151671290397644, 0.018728021532297134, 0.017417995259165764, -0.012044216506183147, -0.012338303960859776, -0.03162776678800583, -0.001491324044764042, -0.002954241819679737, 0.006088946480304003, -0.01785912737250328, 0.033846788108348846, 0.009972237050533295, -0.008394858799874783, 0.003552442416548729, 0.039808742702007294, -0.010928020812571049, -0.016174808144569397, -0.022978922352194786, 0.020024679601192474, 0.018527507781982422, 0.0029475579503923655, 0.029007714241743088, 0.03662725165486336, -0.004194087814539671, 0.003452185308560729, -0.0018363754497841, 0.036760926246643066, 0.015118766576051712, -0.019048843532800674, -0.0006195051828399301, -0.009210282936692238, -0.006239331793040037, -0.1113254576921463, -0.01638869009912014, -0.0003705334383994341, 0.012665810994803905, 0.01673624850809574, 0.035130079835653305, 0.0004929306451231241, 0.02595989964902401, -0.003251671092584729, 0.04053059220314026, -0.0063930596224963665, -0.02775115892291069, -0.009698200970888138, -0.004023650661110878, -0.002608354901894927, -0.021856041625142097, -0.03745604306459427, -0.015452957712113857, -0.03197532519698143, 0.03876606747508049, -0.0010593831539154053, 0.002504755975678563, -0.0030227508395910263, -0.004374550189822912, -0.012873008847236633, 0.013320823200047016, -0.025879692286252975, -0.01045347098261118, 0.009384062141180038, 0.002287532202899456, 0.0012799486285075545, -0.0022440876346081495, -0.005948586389422417, -0.015025193803012371, 0.011830334551632404, -0.0005259318859316409, -0.011603085324168205, -0.006800771690905094, 0.02010488510131836, -0.003255013143643737, -0.007191774435341358, -0.011964011006057262, -0.011001543141901493, -0.001315874163992703, 0.009718252345919609, -0.0007339653675444424, -0.032991260290145874, 0.019022108986973763, 0.022577892988920212, -0.020987147465348244, -0.05341697111725807, 0.005143187940120697, -0.015827249735593796, -0.018794860690832138, 0.005888432264328003, -0.018206685781478882, 0.008829306811094284, 0.0005831620073877275, -0.0056845759972929955, 0.022912083193659782, 0.01867455057799816, -0.013053471222519875, -0.020706428214907646, -0.010119280777871609, -0.006179177667945623, 0.010159383527934551, -0.03716195747256279, -0.01624164544045925, 0.024061698466539383, -0.0217491015791893, -0.005734704900532961, 0.008535219356417656, -0.02692236751317978, 0.030585091561079025, -0.039648331701755524, 0.020398972555994987, -0.01608123444020748, 0.014062725938856602, -0.00013555592158809304, 0.010587147437036037, -0.011295630596578121, -0.01751156896352768, -0.0018196658929809928, -0.014263239689171314, 0.011910540983080864, 0.017738819122314453, 0.016776351258158684, 0.0074323914013803005, 0.00850848387926817, -0.009718252345919609, -0.00021221081260591745, 0.003036118345335126, 0.03847198188304901, -0.04074447602033615, -0.01753830537199974, 0.00645321374759078, -0.0003454691614024341, -0.00023330656404141337, 0.016348587349057198, 0.026374295353889465, -0.02906118519604206, -0.012739332392811775, -0.036279693245887756, 0.019757328554987907, -0.0038131107576191425, -0.0016308483900502324, 0.01948997564613819, 0.005343702156096697, 0.01241182629019022, -0.0005159061984159052, 0.006513367872685194, -0.009878664277493954, -0.029943447560071945, -0.00933727528899908, 0.0026802057400345802, -0.015346016734838486, -0.00826786644756794, -0.013287404552102089, 0.011843702755868435, 0.012111054733395576, -0.002339331666007638, -0.003007712308317423, -0.026347558945417404, -0.004287661053240299, 0.026080207899212837, 0.013741903007030487, -0.002977635245770216, 0.010433419607579708, 0.0073455017991364, 0.03031774051487446, -0.027029307559132576, -0.040022626519203186, -0.0022691518533974886, 0.00362930609844625, -0.015653470531105995, 0.02887403778731823, -0.02124113216996193, 0.018273523077368736, 0.01880822703242302, 0.015600001439452171, 0.0021772494073957205, 0.0013142031384631991, -0.02075989916920662, -0.025037534534931183, 0.022136762738227844, -0.0008747429819777608, -0.008140874095261097, -0.02759074792265892, -0.005450643133372068, 0.003746272763237357, -0.018540875986218452, 0.011195373721420765, 0.03146735578775406, 0.010166067630052567, -0.014543959870934486, 0.005136504303663969, -0.003806426888331771, -0.0516524463891983, 0.002488046418875456, -0.006088946480304003, 0.0038832908030599356, -0.016335219144821167, 0.03491619601845741, 0.014383548870682716, 0.028339333832263947, -0.017966067418456078, -0.0006859254790470004, -0.016803085803985596, -0.02722982130944729, -0.0012223008088767529, -0.00026944090495817363, -0.005210026167333126, -0.013514653779566288, -0.02158869057893753, 0.023567097261548042, 0.001215617056004703, 0.036413371562957764, 0.004037018399685621, -0.022631363943219185, 0.019262725487351418, -0.0047120824456214905, 0.03488946333527565, 0.028633421286940575, -0.011081748642027378, -0.011415938846766949, 0.026868896558880806, 0.04181388393044472, 0.00891619548201561, 0.015212340280413628, -0.025197945535182953, -0.007906941697001457, 0.003803085070103407, 0.01898200623691082, -6.495822890428826e-05, -0.03633316606283188, -0.007479177787899971, 0.012645759619772434, 0.041118767112493515, 0.013253984972834587, 0.006774036213755608, 0.006129049230366945, 0.013427764177322388, 0.01208431925624609, 0.010273008607327938, 0.006169151980429888, 0.006583548150956631, -0.018220052123069763, 0.01355475652962923, 0.0013008355163037777, -0.0223773792386055, 0.003936761058866978, 0.03095938451588154, 0.006379691883921623, 0.010553727857768536, 0.005477378144860268, -0.00640976894646883, -0.017444731667637825, 0.0071717225946486, -0.0007565231644548476, -0.006780720315873623, -0.02610694244503975, 0.022912083193659782, -0.010105913504958153, 0.019516710191965103, 0.038044217973947525, 0.0005810732836835086, 0.014223136939108372, 0.029248330742120743, 0.017551671713590622, -0.01896863803267479, -0.006299486383795738, -0.004471465479582548, -0.021187661215662956, 0.009871980175375938, -0.00924370251595974, -0.011803600005805492, -0.0150920320302248, -0.029248330742120743, 0.006272750906646252, 0.0035390746779739857, 0.010166067630052567, 0.0573737807571888, -0.0039735222235322, -0.032536763697862625, 0.02566581219434738, 0.005296915303915739, 0.0006303663831204176, 0.03208226338028908, 0.003331876825541258, -0.0154930604621768, -0.027056042104959488, -0.005340360105037689, 0.019022108986973763, -0.002855655737221241, -0.029007714241743088, -0.017123907804489136, 3.9920068957144395e-05, -0.00908329151570797, 0.024583034217357635, -0.030264269560575485, 0.02922159619629383, 0.020639590919017792, 0.010573779232800007, 0.0005998715059831738, -0.0035624681040644646, -0.016348587349057198, 0.010132648050785065, 0.03649357706308365, 0.017137276008725166, -0.013995887711644173, -0.01558663323521614, -0.008561953902244568, -0.0049326480366289616, -0.018567610532045364, -0.02852647937834263, 0.013995887711644173, 0.006580206099897623, -0.0008074871730059385, -0.009250386618077755, 0.035317227244377136, 0.0013459512265399098, -0.013173779472708702, 0.02495732717216015, -0.03181491047143936, -0.03229614719748497, -0.01313367672264576, 0.021495116874575615, -0.020519280806183815, -0.014597429893910885, -0.05566272884607315], "6e24f274-bc98-41ba-bba6-1275248af13c": [-0.019125809893012047, 0.008649931289255619, 0.0047214762307703495, -0.03038804791867733, -0.016153646633028984, 0.003615244757384062, -0.014874149113893509, -0.01711326837539673, -0.0200454480946064, -0.019592294469475746, 0.022297896444797516, 0.008363377302885056, 0.005351228639483452, 0.015727147459983826, -0.012974896468222141, 0.003598584560677409, 0.02143157087266445, 0.005008030217140913, 0.016100334003567696, 0.007710300385951996, -0.010515864007174969, 0.008769883774220943, 0.004071731586009264, -0.013847886584699154, -0.046355098485946655, 0.03188079223036766, -0.00042004312854260206, -0.0242304690182209, 0.0030637949239462614, -0.02088511921465397, 0.019419029355049133, -0.007830253802239895, -0.015287320129573345, -0.03713206201791763, -0.03345350921154022, 0.006110929884016514, -0.001356133259832859, -0.0050846668891608715, 0.0051079909317195415, 0.002447370672598481, 0.00859661865979433, -0.01622028648853302, -0.0072504812851548195, 0.00887650903314352, -0.0039017985109239817, 0.023324159905314445, 0.017419815063476562, -0.033346883952617645, -0.007177176885306835, 0.011675408110022545, 0.027615804225206375, 0.0068772947415709496, -0.03268047794699669, -0.0009296343196183443, 0.0050913309678435326, 0.00789689365774393, -0.014500962570309639, 0.014487634412944317, -0.003695213235914707, -0.011282228864729404, 0.01901918649673462, 0.004588195122778416, 0.006930607371032238, -0.0003052965912502259, -0.013428051955997944, -0.003508619964122772, -0.009243031032383442, 0.0012011942453682423, -0.012455101124942303, 0.007543699350208044, 0.02564324624836445, 0.03364010155200958, -0.01961895078420639, 0.006587408948689699, 0.023337487131357193, -0.022537801414728165, -0.020818477496504784, 0.004971378017216921, -0.008083486929535866, 0.001057084184139967, 0.0022207931615412235, -0.02017872966825962, -0.01907249726355076, 0.015353960916399956, 0.03108110837638378, -0.00016691350901965052, -0.013128169812262058, 0.03193410485982895, -0.004468242637813091, -0.01598038151860237, -0.0016218620585277677, 0.007663652300834656, -0.0012653355952352285, 0.02107171155512333, 0.0026956063229590654, 0.008136799558997154, -0.026549557223916054, 0.036012500524520874, -0.01062915287911892, -0.016486847773194313, -0.021231649443507195, 0.0177130326628685, -0.007663652300834656, -0.012661686167120934, -0.050166934728622437, 0.004631511401385069, 0.018979201093316078, 0.007130528800189495, 0.032787103205919266, -0.005947660654783249, -0.00911641400307417, 0.023097582161426544, 0.02581651136279106, -0.023270847275853157, 0.023057596758008003, -0.020351994782686234, 0.0043183015659451485, -0.009896107949316502, -0.012148554436862469, 0.0006697365897707641, -0.015433928929269314, -0.0015785457799211144, 0.005437861196696758, -0.0045448788441717625, 0.01607367768883705, -0.015260663814842701, -0.014460979029536247, -0.012501749210059643, -0.02413717284798622, -0.022950973361730576, 0.022297896444797516, 0.01148881483823061, 0.015873756259679794, -0.0037951739504933357, -0.007810261100530624, 0.0036085806787014008, 0.008150127716362476, -0.00037839284050278366, -0.014767524786293507, -0.019685590639710426, 0.024390406906604767, 0.008723235689103603, 0.002157484646886587, 0.010109356604516506, -0.02348409593105316, -0.0003575676819309592, 0.02670949511229992, 0.014980774372816086, -0.007923549972474575, -0.004181688651442528, -0.008616610430181026, -0.015433928929269314, -0.006040957290679216, -0.005591134075075388, 0.00029467575950548053, 0.01338140293955803, -0.0316941998898983, -0.006664045620709658, 0.009056437760591507, 0.0027622468769550323, 0.03638568893074989, 0.013334754854440689, 0.017366502434015274, 0.011502142064273357, -0.003651896957308054, 0.032227322459220886, 0.04011755436658859, -0.01004271674901247, 0.005621122196316719, 0.01566050760447979, -0.0030754569452255964, 0.013341419398784637, -0.022577786818146706, 0.00815679132938385, -0.007530371192842722, -0.014700883999466896, 0.007563691586256027, -0.015327304601669312, -0.008896500803530216, 0.01169539988040924, 0.003665225114673376, -0.00558113818988204, 0.018632670864462852, 0.03579925373196602, -0.02535002864897251, 0.026309652253985405, 0.014540947042405605, -0.0004989703884348273, 0.03478631749749184, -0.007650324143469334, 0.022257911041378975, 0.03145429491996765, 0.009496265091001987, -0.017326518893241882, -0.6226884126663208, 0.002424046630039811, -0.002537335269153118, -0.024203812703490257, -0.006040957290679216, 0.006970591377466917, -0.004025083500891924, -0.0002882199769373983, -0.015500569716095924, 0.04166361317038536, -0.0059076761826872826, 0.015114055015146732, -0.01335474755614996, 0.004051739815622568, 0.018899232149124146, -0.03643900156021118, -0.007743620779365301, -0.026642853394150734, -0.022431176155805588, 0.014927461743354797, 0.006577413063496351, 0.025083467364311218, -0.015300648286938667, -0.008736563846468925, 0.00041712759411893785, 0.022817691788077354, 0.01104898750782013, -0.025789856910705566, 0.014127776026725769, 0.019632278010249138, -0.004904737696051598, -0.007003911770880222, -0.011928641237318516, -0.0036985452752560377, 0.03513284772634506, -0.008609946817159653, 0.0008738229516893625, 0.015034087002277374, 0.007716964464634657, 0.036145783960819244, -0.022950973361730576, -0.021778101101517677, 0.028362177312374115, 0.01855270192027092, 0.009169726632535458, 0.021591506898403168, 0.017726361751556396, 0.030681265518069267, -0.004751464352011681, -0.02432376518845558, -0.01612699031829834, -0.01083573792129755, -0.0007434575818479061, -0.0021658148616552353, 0.003585256403312087, -0.006034293211996555, 0.010215981863439083, 0.013374739326536655, 0.02433709427714348, -0.016606802120804787, 0.015567210502922535, 0.007237153593450785, -0.007277137599885464, 0.004691488109529018, -0.005114655010402203, 0.0068706306628882885, -0.019165795296430588, -0.026176370680332184, -0.016860034316778183, -0.017299862578511238, -0.013421387411653996, 0.008036838844418526, -0.01663345843553543, -0.00999606866389513, 0.010962354950606823, 0.025243403390049934, 0.010842401534318924, 0.0035319440066814423, 0.00459152739495039, 0.011562119238078594, -0.004658167716115713, -0.004428258165717125, -0.042436640709638596, 0.0062741986475884914, 0.021151680499315262, -0.005614458117634058, -0.01961895078420639, 0.025789856910705566, 0.014647572301328182, 0.02525673247873783, 0.0242304690182209, 0.01206858642399311, -0.0005235440912656486, -0.030281422659754753, 0.0012386793969199061, 0.02180475741624832, 0.010609160177409649, 0.022497817873954773, -0.00033903331495821476, -0.028628738597035408, -0.035586003214120865, -0.03523947298526764, 0.041183799505233765, -0.024763593450188637, 0.015353960916399956, -0.011995282024145126, 0.009962747804820538, 0.017886297777295113, 0.03118773363530636, -0.005577805917710066, 0.005711087025702, -0.025656575337052345, -0.030601296573877335, 0.01516736764460802, 0.0013094849418848753, -0.03281376138329506, 0.02045862004160881, -0.014620915986597538, -0.01971224695444107, -0.0036052486393600702, 0.016326911747455597, 0.028975268825888634, -0.004691488109529018, -0.022817691788077354, 0.011242244392633438, 0.017966266721487045, 0.01682005077600479, -0.02219127118587494, -0.005781059619039297, 0.010609160177409649, 0.016553489491343498, -0.004828101024031639, 0.0232975035905838, -0.020991742610931396, 0.007617003750056028, -0.005994308739900589, 0.023057596758008003, -0.016553489491343498, 0.014234401285648346, -0.02637629210948944, -0.016673441976308823, -0.002212463179603219, 0.011088971979916096, -0.02926848828792572, 0.008929820731282234, -0.0265628844499588, -0.034333162009716034, 0.00028030641260556877, -0.004128376021981239, -0.012275171466171741, 0.00705056032165885, 0.007377098314464092, 0.0027522507589310408, 0.015873756259679794, 0.013468035496771336, -0.012568389996886253, 0.019459012895822525, 0.00657074898481369, -0.003675220999866724, -0.017046628519892693, -0.018246157094836235, 0.010595832020044327, -0.02404387667775154, -0.007190505042672157, -0.0005701924092136323, 0.002277437597513199, -0.03324025869369507, 0.04123711213469505, 0.006010969169437885, -0.025390014052391052, -0.010635816492140293, 0.0029271820094436407, 0.004934725817292929, 0.0004489900602493435, -0.015460585243999958, 0.0064507960341870785, -0.004488234408199787, -0.00013036538439337164, 0.011215588077902794, -0.011968625709414482, 0.010082701221108437, -0.004041743464767933, -0.011995282024145126, -0.014301041141152382, 0.037078749388456345, -0.006464124191552401, 0.029188519343733788, -0.028175584971904755, -0.012075250037014484, -0.0022757714614272118, 0.025363357737660408, 0.011288893409073353, -0.022671082988381386, 0.028602082282304764, 0.016700098291039467, 0.009402967989444733, 0.012141890823841095, -0.01799292303621769, 0.011855336837470531, 0.04296976700425148, 0.029055237770080566, -0.016713425517082214, -0.008556634187698364, -0.026602869853377342, 0.014047808013856411, 0.0002526089665479958, 0.025416670367121696, -0.011948633939027786, 0.0307612344622612, -0.024017220363020897, 0.014234401285648346, -0.010989011265337467, -0.026856103911995888, -0.015393945388495922, 0.02708268165588379, 0.03020145371556282, -0.005644446704536676, 0.0016451862175017595, 0.015393945388495922, 0.006607401184737682, 0.021364929154515266, 0.006500776391476393, 0.02661619707942009, 0.02083180658519268, -0.021658148616552353, -0.009036445990204811, 0.010202653706073761, -0.02740255557000637, 0.00010579172521829605, -0.04264989122748375, 0.001316981972195208, -0.0018509386572986841, 0.006890622898936272, -0.007330450229346752, 0.02618969790637493, -0.012888263911008835, 0.030494671314954758, -0.032600510865449905, 0.03574594110250473, -0.014927461743354797, 0.015967052429914474, 0.016846707090735435, 0.023057596758008003, -0.028122272342443466, 0.0018609346589073539, 0.01114228367805481, 0.031161077320575714, -0.007843581959605217, -0.01668676920235157, 0.027695773169398308, 0.004201680887490511, 0.016513504087924957, -0.028602082282304764, 0.019365716725587845, 0.014314369298517704, -0.018286140635609627, -0.012601709924638271, 0.0027322587557137012, 0.042010143399238586, 0.020725181326270103, -0.01344804372638464, -0.0008042670087888837, -0.0045182229951024055, 0.014714212156832218, 0.012774975039064884, -0.01719323731958866, -0.014607587829232216, -0.02292431704699993, -0.02036532387137413, -0.01756642386317253, -0.02372400276362896, -0.03324025869369507, -0.004584863316267729, -0.010735777206718922, 0.018339453265070915, -0.004294977523386478, 0.013714605942368507, 0.02833552099764347, 0.0013602982508018613, 0.002345744054764509, -0.03491959720849991, -0.03641234338283539, 0.04134373739361763, 0.006634057499468327, -0.0025356693658977747, -0.017446471378207207, -0.025669902563095093, -0.029668331146240234, -0.022111302241683006, 0.004781452473253012, -0.020125417038798332, 0.01877927966415882, -0.005534489639103413, -0.014074464328587055, -0.016700098291039467, -0.0005631118547171354, 0.04166361317038536, -0.0017693040426820517, 0.011262237094342709, 0.010329270735383034, 0.00476812431588769, -0.006127589847892523, -0.0012869937345385551, -0.004791448824107647, 0.03364010155200958, 0.016326911747455597, 0.005494505632668734, -0.026203026995062828, -0.011442165821790695, -0.041317082941532135, 0.019139138981699944, -0.021418241783976555, 0.004691488109529018, -0.008756555616855621, 0.03044136054813862, -0.016606802120804787, 0.018752623349428177, 0.004354953765869141, 0.008296736516058445, -0.0005689428653568029, -0.00864326674491167, -0.02301761321723461, -0.004478238523006439, 0.013914527371525764, 0.03505288064479828, 0.016233615577220917, -0.010102692991495132, 0.010162669233977795, -0.006970591377466917, 0.0041383723728358746, -0.010809081606566906, -0.013847886584699154, 0.009223039261996746, -0.0021491546649485826, 0.002910521812736988, -0.0004898073384538293, 0.015433928929269314, -0.0007226324523799121, -0.011995282024145126, 0.008403361774981022, -0.006757342256605625, -0.0036552289966493845, -0.002610639901831746, -0.015567210502922535, 0.020165402442216873, 0.016420207917690277, 0.032653823494911194, 0.020258698612451553, 0.015860429033637047, -0.0005493672215379775, 0.03361344709992409, -0.004644839558750391, 0.013687949627637863, -0.039077963680028915, -0.018659327179193497, 0.01724654994904995, 0.01985885575413704, 0.019405700266361237, -0.006963927298784256, 0.011435502208769321, 0.008170119486749172, 0.0018725967966020107, 0.022057989612221718, -0.012581718154251575, 0.010002732276916504, 0.0022674414794892073, 0.009416296146810055, -0.012974896468222141, 0.012621701695024967, -0.008376705460250378, -0.025203419849276543, 0.0045282188802957535, -0.010662472806870937, 0.010355927050113678, -0.00012713749310933053, -0.010116021148860455, -0.0321740098297596, -0.01812620460987091, 0.012475092895328999, 0.01484749373048544, -0.005291251931339502, -0.03406659886240959, -0.0004054655146319419, -0.017126597464084625, -0.011348869651556015, -0.0076903086155653, -0.0014419328654184937, 0.0016318581765517592, 0.0012386793969199061, 0.0011653749970719218, -0.005061342380940914, 0.020631885156035423, -0.011262237094342709, 0.00885651633143425, 0.03881140053272247, -0.04222339391708374, -0.016326911747455597, -0.013781245797872543, 0.009589561261236668, 0.023977234959602356, 0.001241178484633565, -0.012341812252998352, -0.003695213235914707, 0.007343777921050787, 0.00031737517565488815, -0.03883805871009827, -0.018432749435305595, -0.03417322412133217, -0.002224125200882554, 0.0008109310292638838, 0.01705995574593544, 0.004848093260079622, -0.0335601344704628, 0.02777574211359024, -0.0034919597674161196, -0.0082700802013278, -0.00992942787706852, -0.009702850133180618, -0.01724654994904995, 0.004824768751859665, -0.024017220363020897, 0.020525259897112846, 0.017086612060666084, -0.017166581004858017, 0.0012103572953492403, -0.018392765894532204, -0.002332415897399187, -0.03273379057645798, -0.00934299174696207, 0.003755189711228013, -0.0017193236853927374, -0.015633851289749146, -0.01344804372638464, 0.0018176183803007007, 0.04582197591662407, -0.008230095729231834, 0.0064741200767457485, 0.019925495609641075, -0.00333868688903749, 0.01100233942270279, 0.0036485649179667234, 0.014381010085344315, -0.0017693040426820517, -0.0174864549189806, 0.009856123477220535, -0.0053279041312634945, 0.011875328607857227, 0.008683251217007637, -0.0321740098297596, 0.018486062064766884, 0.011495478451251984, -0.03755855932831764, 0.005177963525056839, -0.009456280618906021, 0.008430017158389091, 0.013421387411653996, 0.006744014099240303, -0.01976555958390236, -0.021991349756717682, 0.012448436580598354, 3.394498344277963e-05, -0.005224611610174179, -0.004864753223955631, 0.0018409425392746925, 0.02293764427304268, 0.018539374694228172, -0.005134647246450186, 0.01463424414396286, -0.013108177110552788, -0.03771849721670151, 0.0008455007919110358, 0.00498803798109293, 0.009169726632535458, 0.01832612417638302, 0.03193410485982895, -0.016100334003567696, -0.011642087250947952, 0.009789482690393925, 0.009549576789140701, 0.016433537006378174, -0.009269687347114086, 0.011108963750302792, 0.011948633939027786, 0.03489294275641441, 0.011935305781662464, 0.0010146009735763073, 0.009096422232687473, -0.000138174815219827, -0.001588541897945106, 0.014900805428624153, -0.0109490267932415, 0.002945508109405637, -0.019459012895822525, 0.0018359444802626967, 0.0054645175114274025, 0.008210103958845139, 0.014820837415754795, 0.0031587574630975723, 0.0041483682580292225, 0.025789856910705566, 0.00421834085136652, 0.003315362613648176, -0.017366502434015274, -0.0021424905862659216, -0.004028415307402611, 0.005841035861521959, -0.016793394461274147, 0.014527618885040283, -0.017033299431204796, -0.017606407403945923, 0.010422566905617714, 0.008123471401631832, -0.006140918005257845, 0.0282022412866354, 0.031107764691114426, -0.004708148073405027, 0.019459012895822525, 0.020072104409337044, 0.004678159952163696, -0.013114841654896736, 0.0030104825273156166, -0.039504460990428925, -0.0037618535570800304, 0.0024557006545364857, 0.00044940656516700983, 0.022084645926952362, 0.0041483682580292225, 0.0037451935932040215, -0.008303401060402393, -0.0013003218919038773, -0.017406485974788666, 0.004874749109148979, 0.004238333087414503, -0.015020758844912052, -0.025110123679041862, -0.0011745380470529199, -0.005661106668412685, 0.0030054845847189426, 0.014860820956528187, 0.017513111233711243, -0.0244703758507967, 0.016486847773194313, -0.019365716725587845, -0.02055191621184349, 0.013428051955997944, -0.01500743068754673, 0.057630665600299835, 0.007297129835933447, 0.019232435151934624, 0.032787103205919266, 0.00742374686524272, -0.006787330377846956, -0.002807229058817029, 0.015447257086634636, 0.0010779093718156219, 0.03537275269627571, 0.03206738829612732, -0.0018276144983246922, -0.004105051979422569, -0.023657361045479774, -0.015287320129573345, -0.013941182754933834, -0.024017220363020897, 0.024003891274333, 0.007716964464634657, -0.005038018338382244, -0.014221073128283024, 0.034839630126953125, -0.031480949372053146, -0.0074437386356294155, -0.015140711329877377, 0.009322999976575375, -0.018579358235001564, -0.0028238892555236816, -0.04595525935292244, 0.00864326674491167, 0.018139531835913658, 0.019099153578281403, 0.0006543259369209409, -0.012315155938267708, 0.0018792608752846718, -0.022844348102808, -0.03953111916780472, -0.013794573955237865, 0.0006343338172882795, 0.03518616035580635, -0.02996154874563217, -0.005491173360496759, 0.024643640965223312, -0.0120019456371665, 0.008783211931586266, -0.013101513497531414, -0.005144643131643534, 0.035212814807891846, -0.028841989114880562, 0.00731712207198143, -0.003615244757384062, 0.01943235658109188, 0.016340238973498344, -0.03300035372376442, -0.013847886584699154, -0.00674734590575099, -0.006080941297113895, 0.016420207917690277, -0.00395177910104394, 0.01720656454563141, -0.017273206263780594, 0.0016751744551584125, -0.011248908936977386, 0.021191664040088654, -0.016473520547151566, -0.0013777913991361856, 0.0011395517503842711, -0.03326691687107086, -0.007703636772930622, -0.012248515151441097, 0.012241851538419724, 0.02405720390379429, 0.007756948936730623, -0.02605641819536686, 0.013414723798632622, 0.04875415563583374, -0.03395997732877731, 0.028841989114880562, -0.015553882345557213, -0.0251767635345459, -0.021604835987091064, 0.011288893409073353, -0.023204205557703972, 0.0025539954658597708, 0.026416275650262833, -0.0344930998980999, -0.015047414228320122, -0.017126597464084625, -0.01034926250576973, 0.014687555842101574, -0.0265628844499588, -0.01190864946693182, -0.013114841654896736, 0.009749498218297958, 0.017033299431204796, -0.029774954542517662, -0.004081727936863899, 0.006997247692197561, -0.014460979029536247, 0.025323372334241867, 0.007303793914616108, 0.0002276188024552539, 0.015140711329877377, -0.008609946817159653, -0.016206959262490273, 0.0037685176357626915, -0.03579925373196602, 0.02097841538488865, -0.013767917640507221, -0.004308305215090513, -0.009956084191799164, -0.001770970062352717, -0.04819437861442566, -0.0160870049148798, -0.01961895078420639, 0.01162875909358263, 0.0256299190223217, 0.005197955295443535, -0.033720068633556366, 0.025043483823537827, 0.026869431138038635, 0.019419029355049133, -0.008383369073271751, 0.008589955046772957, -0.010495871305465698, 0.007390426471829414, -0.012734990566968918, -0.014554275199770927, -0.003925122786313295, 0.04376944899559021, 0.011802024208009243, 0.0006097601726651192, -0.01696665957570076, 0.006110929884016514, -0.03803837299346924, -0.03281376138329506, 0.016246942803263664, 0.014954118058085442, 0.028975268825888634, 0.006797326263040304, -0.011022331193089485, 0.03977102413773537, 0.003213735995814204, 0.0080435024574399, -0.037265341728925705, -0.0009746166761033237, -0.0027755750343203545, 0.037212029099464417, -0.009469608776271343, -0.0027389226015657187, -0.0295883622020483, -0.013901199214160442, 0.005834371782839298, -0.014141104184091091, -0.0036419008392840624, 0.02814892865717411, 0.02945508062839508, -0.016606802120804787, -0.037212029099464417, -0.010642481036484241, -0.001512738293968141, 0.010049380362033844, 0.022084645926952362, -0.006067613605409861, -0.007976862601935863, 0.0007193004130385816, 0.015780460089445114, -0.007203833200037479, 0.0010345930932089686, -0.0005452022305689752, -0.018672656267881393, 0.004208344500511885, -0.010922370478510857, -0.015460585243999958, 0.009203046560287476, -0.026696166023612022, 0.04030414670705795, 0.0003629822167567909, 0.02176477201282978, 0.034333162009716034, 0.008096815086901188, 0.01985885575413704, -0.016420207917690277, 0.007936878129839897, -0.024630311876535416, -0.013254786841571331, 0.029108550399541855, 0.007263809442520142, -0.023737329989671707, -0.02451035939157009, 0.012041930109262466, -0.010409238748252392, -0.0018775948556140065, -0.011522134765982628, -0.013081521727144718, -0.01447430718690157, 0.002247449243441224, 0.0033120305743068457, -0.031667545437812805, 0.011495478451251984, 0.004958049859851599, 0.0007043062942102551, 0.01575380377471447, -0.02628299593925476, 0.003240392077714205, -0.014620915986597538, 0.005754403304308653, 0.012848279438912868, 0.022857675328850746, 0.006127589847892523, -0.005034686531871557, 0.014181088656187057, -0.022484488785266876, -0.0016310251085087657, 0.20109423995018005, -0.016193630173802376, 0.00918305478990078, 0.029668331146240234, -0.008983133360743523, 0.034519754350185394, 0.014327697455883026, -0.009496265091001987, 0.005527825560420752, 0.0010204319842159748, -0.021698132157325745, -0.013781245797872543, -0.014420994557440281, 0.0011970291379839182, 0.022257911041378975, -0.01116227637976408, -0.018912561237812042, -0.029188519343733788, -0.024163829162716866, 0.018619343638420105, -0.007610340137034655, -0.01812620460987091, -0.03188079223036766, -0.012621701695024967, 0.03033473528921604, -0.0034486434888094664, -0.021498210728168488, 0.01603369414806366, 0.027669116854667664, -0.020565243437886238, -0.027509178966283798, -0.018419422209262848, -0.010362590663135052, 0.010975683107972145, -0.017046628519892693, 0.00014119446859695017, 0.024403734132647514, -0.010729113593697548, 0.005377884488552809, -0.0054645175114274025, 0.013161489740014076, -0.004018419422209263, -0.040943894535303116, -0.021498210728168488, 0.018286140635609627, 0.009103085845708847, -0.021751444786787033, -0.02368401736021042, -0.003825162071734667, 0.009129742160439491, -0.017086612060666084, -0.02745586819946766, -0.006234214641153812, 0.020858462899923325, 0.005797719582915306, -0.01599370874464512, -0.005164635367691517, -0.005344564560800791, 0.01663345843553543, 0.019872182980179787, -0.005021358374506235, 0.0377451553940773, -0.022431176155805588, 0.005641114432364702, -0.03566597029566765, 0.030841201543807983, -0.00624421052634716, 0.022591114044189453, -0.01752644032239914, -0.027349242940545082, 0.007190505042672157, -0.004338293801993132, 0.011608767323195934, 0.025709887966513634, -0.017979593947529793, -0.013081521727144718, 0.027535835281014442, 0.03038804791867733, 0.009689521975815296, 0.023897267878055573, -0.013068193569779396, -0.025936465710401535, 0.0023873941972851753, 0.005351228639483452, -0.03523947298526764, -0.02055191621184349, 0.022524474188685417, -0.005631118547171354, -0.011901984922587872, 0.009662865661084652, -0.02209797501564026, -0.006297523155808449, 0.00610759761184454, 0.010575840249657631, -0.004298309329897165, 0.025083467364311218, 0.004288313444703817, 0.009196382947266102, -0.0080435024574399, -0.013661293312907219, -0.006387487519532442, 0.04190351814031601, 0.004055071622133255, -0.0051013268530368805, 0.02023204229772091, -0.01845940575003624, 0.013274778611958027, 0.02391059510409832, 0.0005685263895429671, -0.03113442100584507, 0.009876115247607231, -0.04718144237995148, 0.004934725817292929, -0.01360798068344593, -0.0055211614817380905, -0.009709514677524567, -0.0062408787198364735, -0.014114447869360447, 0.004451582208275795, -0.0033969972282648087, 0.003162089502438903, -0.015953725203871727, 0.0268027912825346, -0.0013669623294845223, 0.005737743340432644, 0.0034553075674921274, -0.038704775273799896, 0.011182268150150776, 0.003115441184490919, -0.004541547037661076, 0.010235973633825779, -0.038704775273799896, 0.007177176885306835, -0.01944568380713463, -0.011808688752353191, -0.020098760724067688, -0.026496244594454765, -0.003357012988999486, -0.004118380136787891, 0.01901918649673462, -0.007563691586256027, 0.0066440533846616745, -0.007910221815109253, -0.011108963750302792, 0.00298882438801229, -0.008516649715602398, -0.005771063268184662, 0.010502535849809647, 0.02782905474305153, -0.02237786538898945, -0.0028405494522303343, -0.013288106769323349, -0.0045182229951024055, -0.022897660732269287, -0.009416296146810055, -0.012088578194379807, 0.002572321565821767, -0.04312970116734505, 0.019818870350718498, -0.014927461743354797, -0.02465696819126606, 0.010129349306225777, 0.01775301806628704, 0.0013969505671411753, -0.02376398630440235, -0.010289286263287067, -0.1672942042350769, -0.005111322738230228, 0.0014169426867738366, -0.044169291853904724, 0.025190092623233795, -0.009322999976575375, 0.0282022412866354, 0.020058777183294296, -0.005004697944968939, 0.001337807159870863, -0.00785024557262659, 0.011382189579308033, -0.022431176155805588, 0.009496265091001987, -0.016526833176612854, -0.0008092650095932186, 0.0003092533734161407, 0.014927461743354797, 0.04179689288139343, 0.02586982399225235, 0.06354833394289017, -0.05184627324342728, 0.008276744745671749, 0.030174797400832176, -0.01302820909768343, -0.01223518792539835, 0.003315362613648176, 0.01162875909358263, -0.00032570521580055356, -0.017926283180713654, 0.007543699350208044, 0.027909021824598312, 0.010522527620196342, -0.039584431797266006, 0.026043089106678963, 0.0019475673325359821, -0.0030954491812735796, -0.01683337800204754, -0.0030937830451875925, -0.010642481036484241, 0.012448436580598354, 0.025576606392860413, -0.01078908983618021, -0.0008871510508470237, -0.01696665957570076, 0.03025476634502411, 0.013221465982496738, -0.021924709901213646, -0.0036285726819187403, -0.0016293590888381004, 0.022910987958312035, -0.029348455369472504, 0.010202653706073761, 0.009356319904327393, 0.035079535096883774, -0.03787843510508537, -0.0068206507712602615, -0.0021191665437072515, -0.017886297777295113, 0.019738903269171715, 0.0004831432888749987, -0.024670297279953957, 0.01274831872433424, 0.019925495609641075, -0.024177156388759613, -0.022831019014120102, -0.00632751127704978, 0.0027205965016037226, -0.008603282272815704, 0.011248908936977386, -0.003230395959690213, -0.0074437386356294155, -0.004098387900739908, -0.020258698612451553, 0.016047021374106407, 0.025616589933633804, 0.009969412349164486, 0.020818477496504784, -0.021378258243203163, -0.013261450454592705, -0.004981373902410269, 0.03934452310204506, 0.011662079952657223, -0.02251114509999752, -0.008943148888647556, -0.0016826714854687452, -0.03769184276461601, 0.028655394911766052, -0.04067733511328697, -0.020391978323459625, 0.02857542783021927, -0.0405440516769886, -0.03033473528921604, -0.0015802117995917797, 0.028362177312374115, 0.01674008183181286, 0.002712266519665718, -0.008796540088951588, -0.006460791919380426, -0.0330803208053112, 0.009822802618145943, -0.010469214990735054, -0.024830233305692673, 0.0029988205060362816, 0.04017086699604988, 0.003343684831634164, -0.011715391650795937, 0.019045842811465263, 0.04344957694411278, -0.009456280618906021, -0.01683337800204754, -0.010695792734622955, 0.017513111233711243, 0.010189325548708439, 0.006194230169057846, 0.015927068889141083, 0.007770277094095945, -0.010455887764692307, 0.012155218981206417, 0.01603369414806366, 0.030654609203338623, 0.012188538908958435, -0.020671868696808815, 0.003651896957308054, -0.00523127568885684, 0.0012336814543232322, -0.1169673278927803, -0.020538588985800743, 0.007550363428890705, 0.015927068889141083, 0.00040192523738369346, 0.025469981133937836, -0.015460585243999958, 0.03212070092558861, 0.0016135319601744413, 0.02777574211359024, 0.0023490760941058397, -0.029615018516778946, -0.021324945613741875, -0.00329703651368618, -0.0016935005551204085, -0.0033353548496961594, -0.029375111684203148, -0.004921397659927607, -0.03366675600409508, 0.04515557363629341, -0.0008017679792828858, 0.008589955046772957, 0.009289679117500782, -0.0021175004076212645, -0.004441586323082447, -0.005671102553606033, -0.022244583815336227, 0.00785024557262659, 0.0023357479367405176, -0.00039338693022727966, 0.00015275241457857192, 0.004548211116343737, -0.003695213235914707, -0.016860034316778183, 0.01719323731958866, 0.0026972724590450525, 0.012061921879649162, 0.003213735995814204, 0.005717751104384661, -0.011688735336065292, -0.004794780630618334, -0.0060776094906032085, -0.021151680499315262, -0.014527618885040283, 0.027615804225206375, -0.0017759681213647127, -0.025656575337052345, 0.030361391603946686, 0.011122291907668114, -0.024443719536066055, -0.05736410245299339, 0.0139811672270298, -0.024736937135457993, -0.011422174051404, 0.004254993051290512, -0.01901918649673462, 0.007137192878872156, 0.00498803798109293, 0.0037385295145213604, 0.03470635041594505, 0.00265728821977973, -0.02405720390379429, -0.021031728014349937, 0.0036618930753320456, -0.004611519630998373, 0.01877927966415882, -0.009256359189748764, -0.012781639583408833, 0.03694546967744827, -0.028282208368182182, -0.0037885098718106747, 0.016606802120804787, -0.020485276356339455, 0.03100113943219185, -0.033853352069854736, 0.009962747804820538, -0.009256359189748764, 0.002520675305277109, 0.012175210751593113, 0.002885531634092331, -0.018539374694228172, -0.015260663814842701, 0.0017942942213267088, -0.020405307412147522, 0.018845921382308006, 0.007223825436085463, 0.00496471393853426, 0.01338140293955803, 0.022257911041378975, -0.0058610280975699425, -0.0005522827850654721, 0.014874149113893509, 0.03244057297706604, -0.03342685103416443, -0.01004271674901247, 0.017926283180713654, 0.011762040667235851, -0.010122684761881828, 0.02135160192847252, 0.025616589933633804, -0.043796107172966, -0.012541733682155609, -0.037505246698856354, 0.0291352067142725, -0.0021674807649105787, -0.005058010574430227, 0.017419815063476562, -0.022684410214424133, -0.0001419233449269086, 0.01083573792129755, -0.015034087002277374, -0.009209711104631424, -0.026576213538646698, 0.00037110401899553835, -0.004374946001917124, -0.0022091311402618885, 0.003508619964122772, -0.0037085413932800293, 0.01484749373048544, -0.009469608776271343, 0.0018775948556140065, 0.012868272140622139, -0.025363357737660408, -0.005121319089084864, 0.03755855932831764, 3.069105150643736e-05, 0.0019025850342586637, 0.010575840249657631, -0.001241178484633565, 0.039637740701436996, -0.02120499312877655, -0.04531550779938698, 0.0006572415004484355, -0.002380730351433158, -0.021151680499315262, 0.030841201543807983, -0.007876901887357235, 0.0052779242396354675, 0.020032120868563652, 0.004601523280143738, 0.019419029355049133, 0.003591920481994748, -0.020058777183294296, -0.015114055015146732, 0.014607587829232216, -0.004844760987907648, 0.022577786818146706, -0.009329663589596748, -0.003235394135117531, 0.012048594653606415, -0.03435982018709183, 0.006577413063496351, 0.024270454421639442, -0.0030454688239842653, -0.0050780028104782104, -0.005744407419115305, 0.005454521160572767, -0.02717597782611847, 0.003645232878625393, -0.020245369523763657, 0.012761646881699562, -0.027189305052161217, 0.010962354950606823, -0.006334175355732441, 0.020405307412147522, -0.007130528800189495, 0.00880986824631691, -0.01957896538078785, 0.003501955885440111, -0.008076823316514492, 0.010029388591647148, -0.0032870403956621885, 0.0007309624925255775, -0.025709887966513634, 0.019778886809945107, 0.0016918345354497433, 0.04563538357615471, 0.027535835281014442, -0.031534262001514435, 0.014714212156832218, -0.0038284941110759974, 0.04134373739361763, 0.038997992873191833, -0.0054978374391794205, -0.02531004510819912, 0.011675408110022545, 0.03025476634502411, 0.017926283180713654, 0.008629938587546349, -0.01887257769703865, -0.01226184330880642, -0.007730292621999979, 0.02554995007812977, 0.007043896242976189, -0.026176370680332184, -0.015913739800453186, 0.004971378017216921, 0.02553662285208702, -0.0010345930932089686, 0.015953725203871727, -0.000897980120498687, 0.020658541470766068, 0.02368401736021042, 0.0055211614817380905, -0.0016610133461654186, 0.0066273934207856655, -0.03859815001487732, 0.012708335183560848, -0.0001310942752752453, -0.017966266721487045, 0.004061735700815916, 0.02717597782611847, -0.014234401285648346, 0.01076909713447094, 0.019232435151934624, 0.004038411658257246, -0.021844740957021713, 0.008303401060402393, -0.005014694295823574, 0.0011103965807706118, -0.02908189408481121, 0.03435982018709183, 0.0060709454119205475, 0.021938037127256393, 0.026069745421409607, -0.005607794038951397, 0.02553662285208702, 0.025789856910705566, 0.020565243437886238, -0.030468015000224113, 0.007090544328093529, 0.001114561571739614, -0.028815332800149918, 0.017966266721487045, -0.027042696252465248, -0.012601709924638271, -0.009449616074562073, -0.02969498746097088, -0.00349529180675745, 0.01067580096423626, 0.010875722393393517, 0.07218494266271591, -0.014607587829232216, -0.03705209121108055, 0.03220066800713539, 0.002578985644504428, 0.005401208996772766, 0.039877649396657944, 0.004611519630998373, -0.012048594653606415, -0.024990171194076538, 0.0026356300804764032, 0.032094042748212814, -0.012008610181510448, -0.03990430384874344, 0.005974316969513893, 0.008883172646164894, 0.012075250037014484, 0.014620915986597538, -0.025363357737660408, 0.00841668900102377, 0.02452368661761284, 0.0035586003214120865, 0.0003444478497840464, 0.010116021148860455, -0.015687163919210434, 0.013274778611958027, 0.045928601175546646, 0.019605621695518494, -0.0134013956412673, -0.03467969223856926, -0.008823196403682232, -0.009656202048063278, -0.010829074308276176, -0.017766345292329788, 0.0018692647572606802, -0.0006988917593844235, -0.00848332978785038, 0.010429231449961662, 0.022671082988381386, -0.013481363654136658, -0.012415116652846336, 0.012135227210819721, -0.04059736430644989, -0.024123843759298325, -0.020951759070158005, 0.004648171830922365, -0.01836610957980156, -0.012148554436862469, -0.05869691073894501], "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70": [-0.0059881615452468395, -0.00798645056784153, -0.004533031489700079, -0.011714802123606205, -0.0009714836487546563, 0.0009983063209801912, -0.03387703374028206, -0.02096191793680191, -0.027171365916728973, -0.0031617223285138607, 0.03283094987273216, 0.008972183801233768, -0.005877517629414797, 0.0059412214905023575, -0.009575693868100643, -0.004174278117716312, 0.02062663435935974, 0.01712627522647381, 0.01756884902715683, 0.009783569723367691, -0.01801142282783985, 0.009401346556842327, 0.00574675714597106, -0.005646172445267439, -0.03519134595990181, 0.03194580227136612, 0.004546443000435829, -0.02188730053603649, 0.007651166990399361, -0.023416191339492798, 0.013552154414355755, -0.002072051400318742, -0.024676857516169548, -0.024073347449302673, -0.03639836609363556, 0.01577172987163067, -0.005106366239488125, 0.02076074667274952, 0.021189909428358078, 0.004834786523133516, 0.00031558549380861223, -0.030095037072896957, 0.007704812102019787, 0.012640183791518211, -0.017609084025025368, 0.006333503406494856, 0.0021592250559479, -0.03669341281056404, -0.01275418046861887, 0.015892433002591133, 0.020599812269210815, 0.002375482814386487, -0.03237496316432953, 0.002506243297830224, 0.005934515967965126, 0.0045263259671628475, 0.008972183801233768, 0.0061323330737650394, 0.0015808611642569304, 0.00521700968965888, 0.020465698093175888, -0.005136541556566954, 0.0019798483699560165, 0.018239416182041168, -0.011587394401431084, -0.01341133564710617, 0.0024593037087470293, 0.001445071422494948, -0.02792240120470524, -0.00560258561745286, 0.015342568047344685, 0.04103868827223778, -0.005478530656546354, -0.009622633457183838, 0.006179272662848234, -0.014189193025231361, -0.02246398665010929, 0.02387217804789543, -0.019875599071383476, -0.011801975779235363, 0.020841214805841446, -0.006122274789959192, -0.010608366690576077, -0.005042662378400564, 0.025830231606960297, -0.01742132566869259, -0.0012430631322786212, 0.03830277547240257, -6.558981112902984e-05, -0.008945360779762268, 0.008864892646670341, 0.008455847389996052, 0.019835365936160088, 0.017904132604599, -0.012083613313734531, 0.031784866005182266, -0.012130552902817726, 0.03680070489645004, -0.008214442990720272, -0.0026135339867323637, -0.03677388280630112, 0.009119708091020584, -0.015503504313528538, -0.009910977445542812, -0.042031124234199524, 0.01577172987163067, 0.003956343978643417, 0.015034107491374016, 0.021082619205117226, -0.022544454783201218, 0.006846487056463957, 0.02729206718504429, 0.015342568047344685, -0.03199944645166397, 0.007543876301497221, -0.008563137613236904, 0.011788563802838326, -0.0003503711486700922, -0.011828797869384289, 0.007134830579161644, 0.00219107698649168, -0.014551298692822456, 0.00013243693683762103, -0.008677134290337563, 0.015235276892781258, 0.017756609246134758, -0.01877586916089058, -0.015516915358603, -0.039858490228652954, -0.03891969472169876, 0.03830277547240257, 0.01951349340379238, 0.012257960624992847, 0.001644565025344491, 0.00962933897972107, 0.01925867795944214, 0.002479420742020011, 0.009910977445542812, -0.022960206493735313, -0.012029968202114105, 0.01669711247086525, 0.026648323982954025, -0.007604227401316166, 0.01815894804894924, -0.01762249507009983, 0.010024973191320896, 0.023550305515527725, 0.007134830579161644, 0.0007019995828159153, -0.01840035244822502, 0.0050795432180166245, -0.003882581600919366, 0.011131408624351025, 0.0046101463958621025, 0.002008347539231181, 0.0031734572257846594, -0.02990727871656418, -0.006900132168084383, 0.002238016575574875, -0.002549830125644803, 0.02695678547024727, 0.017649317160248756, 0.016951927915215492, -0.007711518090218306, 0.011446574702858925, 0.030765604227781296, 0.060672882944345474, -0.015503504313528538, -0.01284805964678526, -0.008898421190679073, -0.0016101985238492489, 0.002611857606098056, -0.01099058985710144, 0.016871459782123566, -0.010534604080021381, -0.029585406184196472, 0.0015381125267595053, -0.03631789609789848, 0.007027539890259504, 0.01988901011645794, -0.004727495834231377, 0.00873748492449522, 0.022034823894500732, 0.03776632249355316, -0.04047540947794914, 0.011627627536654472, 0.02361736260354519, -0.0009278967627324164, 0.02899530716240406, -0.003661294700577855, 0.02120332233607769, 0.02047910913825035, -0.005770226940512657, -0.025240134447813034, -0.603831946849823, 0.0014769233530387282, -0.002611857606098056, -0.010514487512409687, -0.011882442981004715, 0.007791986223310232, 0.008777718991041183, 0.010568132624030113, -0.025199899449944496, 0.03363563120365143, -0.005615996662527323, 0.013263811357319355, 0.007014128379523754, -0.0008252162369899452, 0.0075505818240344524, -0.024261105805635452, -0.01641547493636608, -0.018614934757351875, -0.007517053745687008, 0.021337434649467468, 0.002028464572504163, 0.02904895320534706, 0.0014777615433558822, 0.009421463124454021, -0.01452447660267353, 0.023510070517659187, 0.00687330961227417, -0.015570560470223427, 0.015744907781481743, 0.0038926401175558567, 0.009287349879741669, 0.00028059029136784375, -0.0063670314848423, 0.006920249201357365, 0.03773949667811394, -0.009166647680103779, 0.00134029530454427, 0.013659445568919182, 0.008791130036115646, 0.02246398665010929, -0.027385948225855827, -0.0217397753149271, 0.016442297026515007, 0.01801142282783985, 0.019097741693258286, 0.025481536984443665, 0.01825282722711563, 0.01117834821343422, 0.006135685835033655, -0.012311605736613274, -0.007577404845505953, 0.0007501965737901628, 0.00938793458044529, -0.0029002013616263866, 0.004999075550585985, 0.0033997735008597374, 0.012338428758084774, 0.007610932923853397, 0.013706385158002377, -0.0064977919682860374, 0.0001319130533374846, 0.008905126713216305, 0.0013277222169563174, 0.016804402694106102, -0.008335145190358162, 0.005448354873806238, -0.021458137780427933, -0.024126993492245674, -0.02459638938307762, -0.02241034246981144, -0.017542026937007904, 0.017609084025025368, -0.009864036925137043, 0.016817815601825714, 0.01452447660267353, 0.027318891137838364, 0.01050107553601265, -0.0033276877366006374, 0.009139825589954853, 0.0029823456425219774, -0.005763521417975426, -0.0022497514728456736, -0.046349577605724335, 0.0016319919377565384, 0.02259810082614422, -0.012425602413713932, -0.021753186360001564, 0.015262099914252758, 0.0172738004475832, 0.030846072360873222, 0.020264528691768646, 0.008227854035794735, 0.022142115980386734, -0.02870025858283043, 0.0017971189226955175, 0.005139894317835569, -0.000730917789041996, 0.019902421161532402, -0.019781719893217087, -0.05010474845767021, -0.021189909428358078, -0.016241127625107765, 0.03261636942625046, -0.006665433757007122, 0.011755035258829594, -0.01660323329269886, 0.003748468356207013, 0.023536894470453262, 0.02090827189385891, -0.010232849046587944, 0.01050107553601265, -0.02405993640422821, -0.0265678558498621, 0.004915254656225443, 0.009568988345563412, -0.02734571322798729, 0.0320262685418129, -0.009367818012833595, -0.006253035273402929, 0.01319004874676466, 0.033903855830430984, 0.0321335606276989, 0.007859042845666409, -0.02051934413611889, 0.026742203161120415, -0.0020770805422216654, 0.028378386050462723, -0.007389646023511887, -0.01970125176012516, -0.014068490825593472, 0.002358718542382121, -0.0014987167669460177, 0.030095037072896957, -0.021028975024819374, 0.010447430424392223, -0.006253035273402929, 0.02086803875863552, -0.012177492491900921, 0.03025597333908081, -0.010970472358167171, -0.005676347762346268, 0.0022396929562091827, 0.00027618970489129424, -0.032938241958618164, 0.015074341557919979, -0.015946077182888985, -0.034976761788129807, -0.0021977825090289116, -0.009790275245904922, -0.012626772746443748, -0.008261382579803467, -0.00015286827692762017, -0.01660323329269886, 0.026219161227345467, 0.0016026545781642199, -0.0009580723126418889, 0.002026788191869855, 0.002802969189360738, -0.002695678500458598, -0.012378662824630737, 0.00026131150661967695, 0.0024676858447492123, -0.02517307735979557, -0.0216861292719841, 0.001818912336602807, -0.0033125998452305794, -0.036961641162633896, 0.04071681573987007, 0.009454991668462753, -0.028378386050462723, 0.0031885451171547174, 0.013498509302735329, 0.002229634439572692, 0.009796980768442154, -0.03006821498274803, 0.024046525359153748, -0.009461697190999985, 0.002103903330862522, -0.005542234517633915, -0.00433186162263155, 0.021726364269852638, 0.014041668735444546, -0.00798645056784153, -0.01428307220339775, 0.01999630220234394, -0.008221148513257504, 0.01911115273833275, -0.04447199031710625, -0.005592526867985725, 0.007510347757488489, 0.028673434630036354, 0.0007711517973802984, -0.025763176381587982, 0.008442435413599014, 0.014162370003759861, 0.0009111326071433723, 0.013236988335847855, -0.018266238272190094, -0.0011030823225155473, 0.049112312495708466, 0.011909266002476215, -0.009790275245904922, -0.014081902801990509, -0.022289639338850975, 0.007014128379523754, 0.005572409834712744, 0.025159666314721107, -0.010393785312771797, 0.03489629551768303, -0.022906560450792313, 0.029263533651828766, -0.01185562089085579, -0.014765880070626736, -0.024998730048537254, 0.04012671485543251, 0.025199899449944496, 0.00012300709204282612, -0.006236271001398563, 0.03929521515965462, 0.006001572590321302, 0.02827109582722187, -0.004533031489700079, 0.02444886416196823, 0.025334013625979424, 9.262203820981085e-05, -0.0006382957799360156, -0.0017158127157017589, -0.0271981880068779, 0.010413901880383492, -0.027453003451228142, 0.0014945256989449263, -0.01994265615940094, -0.005840636789798737, -0.008556432090699673, 0.027895577251911163, -0.006621846929192543, 0.036237429827451706, -0.03132887929677963, 0.022061647847294807, -0.011024117469787598, 0.008147386834025383, 0.03795408084988594, 0.017957778647542, -0.015530326403677464, -0.012834648601710796, 0.008127269335091114, 0.022678568959236145, -0.004375448450446129, 0.0006856545223854482, 0.04959511756896973, -0.015020695514976978, 0.024234283715486526, -0.03867829218506813, 0.0061189220286905766, -0.011030823923647404, -0.014242838136851788, -0.014041668735444546, 0.015369391068816185, 0.0458935908973217, 0.012398779392242432, 0.0021173146087676287, 0.006092099007219076, -0.003419890534132719, 0.02149837091565132, 0.006601729895919561, -0.0383295975625515, -0.010997295379638672, -0.016925105825066566, -0.021015562117099762, -0.022691980004310608, -0.01563761755824089, -0.03637154400348663, -0.003517122706398368, -0.01679099164903164, -0.0011860650265589356, 0.011024117469787598, 0.006501144729554653, 0.01766272820532322, 0.006125627551227808, 0.015476681292057037, -0.03344787284731865, -0.022665157914161682, 0.031865332275629044, -0.006947071757167578, -0.001968113472685218, -0.009327583946287632, -0.008844776079058647, -0.042031124234199524, -0.013317456468939781, -0.010534604080021381, -0.019915834069252014, 0.016589822247624397, -0.00492531294003129, -0.001914468128234148, -0.023107731714844704, -0.007376234512776136, 0.020733924582600594, -0.0024576273281127214, 0.008160797879099846, 0.01384049840271473, 0.006782783195376396, -0.0025297130923718214, -0.005813813768327236, -0.00808032974600792, 0.029880456626415253, 0.013619211502373219, 0.013827087357640266, -0.034923117607831955, -0.010883298702538013, -0.020398641005158424, 0.001478599733673036, -0.026165515184402466, -0.008455847389996052, 0.01374661922454834, 0.03857100009918213, -0.012244549579918385, 0.011848915368318558, -0.003792055184021592, -0.0016931811114773154, -0.01096376683562994, -0.02159225009381771, -0.022933384403586388, -0.0010645247530192137, 0.014685412868857384, 0.0360228456556797, 0.0297195203602314, -0.012908410280942917, 0.0061323330737650394, -0.004750965628772974, 0.000852877099532634, -0.019808541983366013, -0.02114967629313469, 0.007798691745847464, 0.001810530317015946, 0.0013101198710501194, -0.020251117646694183, 0.014296484179794788, -0.0062195067293941975, 0.010876593180000782, 0.024475688114762306, -0.00032752996776252985, -0.013236988335847855, -0.0007066097459755838, 0.002365424297749996, 0.01028649415820837, 0.00046311019104905427, 0.028163805603981018, 0.024797558784484863, 0.011124703101813793, 0.0028147040866315365, 0.03237496316432953, -0.011573982425034046, 0.014980461448431015, -0.03838324174284935, -0.01688487082719803, 0.02792240120470524, 0.02977316454052925, 0.030577845871448517, 0.0009019123390316963, 0.009045945480465889, 0.0161740705370903, -0.01708604209125042, 0.01955372653901577, -0.011902560479938984, 0.013210165314376354, -0.017595672979950905, 0.01567785069346428, 0.0072152987122535706, 0.012935233302414417, -0.012640183791518211, -0.01297546736896038, -1.624028845981229e-05, -0.0043922122567892075, 0.008556432090699673, -0.011231993325054646, -0.01751520484685898, -0.02419404871761799, -0.022101880982518196, 0.0017074306961148977, 0.025012141093611717, -0.013699679635465145, -0.03983166813850403, -0.006320091895759106, -0.023845354095101357, -0.010360256768763065, 0.002420746022835374, 0.023831943050026894, 0.003480241633951664, 0.0117617417126894, 0.005807108245790005, -0.019151387736201286, 0.025427892804145813, -0.018333295360207558, 0.008187619969248772, 0.02870025858283043, -0.05270655080676079, -0.040394943207502365, -0.019567139446735382, -0.0035875323228538036, 0.031141120940446854, 0.006464263889938593, 0.004764377139508724, -0.00128832645714283, 0.0013000613544136286, 0.008455847389996052, -0.04913913458585739, -0.011922677047550678, -0.03063149005174637, 0.015758318826556206, 0.009019123390316963, 0.016965338960289955, -0.011976323090493679, -0.028378386050462723, 0.02463662438094616, -0.01055472157895565, -0.007275649346411228, -0.003882581600919366, -0.015664439648389816, -0.010366962291300297, -0.0025380952283740044, -0.024354984983801842, 0.007704812102019787, 0.017944367602467537, -0.0072287097573280334, -0.0006793679785914719, -0.01988901011645794, -0.012459130957722664, -0.040689993649721146, -0.016281360760331154, 0.0007879159529693425, 0.012801120057702065, -0.008154092356562614, -0.018212594091892242, -0.011889149434864521, 0.022531043738126755, -0.0057970499619841576, 0.01814553700387478, 0.02376488596200943, 0.001974819228053093, 0.007503642234951258, 0.007932805456221104, 0.032401785254478455, -0.015114575624465942, 0.010125558823347092, -0.00593116320669651, -0.018024835735559464, 0.013357690535485744, -0.011801975779235363, -0.02270539104938507, 0.013397924602031708, 0.0019530256977304816, -0.048093050718307495, 0.015986312180757523, 0.00648773368448019, 0.0148597601801157, -0.000557408609893173, 0.005750110372900963, -0.02322843298316002, -0.01999630220234394, -0.002968934364616871, -0.013558859936892986, -0.004231276456266642, -0.01316322572529316, 0.005304183345288038, 0.011627627536654472, 0.01229148916900158, -0.009931094013154507, 0.010957061313092709, -0.018950216472148895, -0.020800981670618057, -0.0016294772503897548, -0.021015562117099762, 0.009213587269186974, 0.014336717315018177, 0.035647328943014145, -0.00938793458044529, -0.01829306222498417, -0.004006636328995228, -0.0005406444543041289, 0.004033459350466728, 0.0067593129351735115, 0.012901704758405685, 0.014336717315018177, 0.028485676273703575, 0.02701042965054512, 0.004710731562227011, 0.012445719912648201, 0.015208454802632332, -0.008147386834025383, 0.02628621831536293, -0.011138114146888256, 0.007436585612595081, -0.025535183027386665, -0.0020368467085063457, 0.003956343978643417, 0.021230144426226616, 0.013699679635465145, 0.004372095223516226, 0.008402201347053051, 0.013183343224227428, -0.010004856623709202, 0.02802969142794609, -0.02148495987057686, -0.011607510969042778, 0.0016319919377565384, 0.0058104610070586205, -0.015865610912442207, 0.0154900923371315, -0.016107013449072838, -0.02482438273727894, 0.02469026856124401, -0.00224472233094275, -0.004445857834070921, 0.035942379385232925, 0.016442297026515007, -0.006732490379363298, 0.026648323982954025, 0.014256250113248825, 0.013974611647427082, -0.03283094987273216, -0.010045090690255165, -0.0360228456556797, -0.01704580709338188, -0.024703679606318474, -9.529382805339992e-05, 0.024864615872502327, 0.004620205145329237, 0.017595672979950905, -0.01897704042494297, 0.011667861603200436, -0.03162392973899841, -0.011091174557805061, -0.0013151491293683648, -0.006155802868306637, -0.027144543826580048, -0.00023176464310381562, 0.0010133940959349275, -0.0035707680508494377, 0.00576016865670681, 0.00010173755435971543, -0.021176498383283615, 0.014578121714293957, -0.02667514607310295, -0.0074164685793221, 0.006940366234630346, -0.0013998080976307392, 0.06673480570316315, -0.0025347424671053886, 0.013196754269301891, 0.02821744978427887, -0.004633616656064987, 0.0002671789552550763, 0.003637824673205614, 0.008315027691423893, -0.01127893291413784, 0.03781996667385101, 0.022477397695183754, -0.007926099002361298, 0.00012185455852886662, -0.011513631790876389, -0.02667514607310295, -0.017314033582806587, -0.039429325610399246, 0.03417208418250084, 0.005455060862004757, -0.023147964850068092, -0.037873610854148865, 0.030148683115839958, -0.035218168050050735, 0.0033092470839619637, -0.018601521849632263, -0.008630194701254368, -0.009186765179038048, -0.016737347468733788, -0.04530349001288414, -0.01183550339192152, 0.02114967629313469, 0.029317179694771767, -0.009005711413919926, -0.011667861603200436, 0.004445857834070921, -0.01587902195751667, -0.0266215018928051, -0.020103592425584793, 0.0010251289932057261, 0.02749323844909668, -0.012117141857743263, 0.006598377134650946, 0.012532893568277359, -0.015651028603315353, -0.0063938540406525135, -0.01459153275936842, -0.018480820581316948, 0.040099892765283585, -0.029799988493323326, 0.0029454645700752735, -0.009723218157887459, 0.019339146092534065, -0.012090318836271763, -0.024717090651392937, -0.02222258225083351, 0.0039831665344536304, -0.017448147758841515, 0.023121142759919167, 0.00907947402447462, 0.014698823913931847, -0.009488520212471485, 0.0010293200612068176, -0.021511781960725784, 0.022718802094459534, -0.014444008469581604, 0.009052651934325695, 0.019097741693258286, -0.0347621813416481, -0.01064860075712204, -0.0069068376906216145, 0.016925105825066566, 0.030121859163045883, -0.004013342317193747, -0.014390363357961178, 0.03406479209661484, 0.04079728201031685, -0.04173607751727104, 0.014162370003759861, -0.00830161664634943, -0.018266238272190094, -0.01693851687014103, 0.00950863678008318, -0.01712627522647381, 0.009213587269186974, 0.025052374228835106, -0.0335015170276165, -0.01539621315896511, -0.009716512635350227, -0.00798645056784153, 0.003149987431243062, -0.012713946402072906, -0.013143109157681465, -0.0014718940947204828, 0.0068934266455471516, 0.01960737258195877, -0.03135570138692856, 0.005049367900937796, 0.00975674670189619, -0.00565287796780467, 0.029209889471530914, 0.0033109234645962715, -0.010098735801875591, 0.005183481145650148, -0.018373530358076096, -0.013552154414355755, 0.0077584576793015, -0.04626910760998726, 0.007302472367882729, -0.022396929562091827, 0.020170649513602257, -0.03382338955998421, -0.004543089773505926, -0.06748583912849426, 0.0005075352382846177, -0.01601313427090645, 0.03554004058241844, 0.02623257227241993, -0.006128980312496424, -0.020800981670618057, 0.0370689332485199, 0.026460565626621246, 0.009776863269507885, -0.03301870822906494, -0.005964691285043955, 0.00854302104562521, 0.004985664039850235, -0.015409624204039574, -0.029075775295495987, 0.0010561427334323525, 0.03309917449951172, -0.007061068434268236, -0.0030829308088868856, -0.004948782734572887, -0.008958771824836731, -0.03352833911776543, -0.03417208418250084, 0.003952991217374802, 0.008482669480144978, 0.018601521849632263, 0.02652762271463871, -0.012660300359129906, 0.030551021918654442, -0.021672718226909637, 0.006698962301015854, -0.06094110757112503, -0.0055355289950966835, -0.0014333365252241492, 0.03068513609468937, -0.015275510959327221, -0.010997295379638672, -0.038597822189331055, -0.019781719893217087, 0.003384685842320323, -0.005478530656546354, -0.010762596502900124, 0.02463662438094616, 0.03427937254309654, -0.01640206389129162, -0.019821954891085625, -0.002286632778123021, 0.0022514278534799814, 0.012130552902817726, 0.0030309618450701237, -0.004154161084443331, -0.0035439454950392246, -0.0021290495060384274, 0.02682267129421234, -0.008724073879420757, 0.0019547021947801113, 0.00036420157994143665, -0.023215021938085556, -0.006115569267421961, -0.018695401027798653, -0.023845354095101357, 0.00519018666818738, -0.004955488722771406, 0.03210673853754997, 0.017984600737690926, -0.0017384444363415241, 0.021712953224778175, 0.014175781980156898, 0.012807825580239296, -0.0032136912923306227, 0.018132125958800316, -0.006420677062124014, -0.012626772746443748, 0.02682267129421234, 0.00615915609523654, -0.03079242631793022, -0.01304252352565527, 0.021900711581110954, -0.010226143524050713, 0.0003897669375874102, -0.033716097474098206, -0.03326011076569557, -0.012499365024268627, -0.011969616636633873, 0.017448147758841515, -0.036183781921863556, 0.028190627694129944, 0.02124355547130108, -0.011459986679255962, 0.022839505225419998, -0.018360119313001633, -0.0011257139267399907, -0.008335145190358162, 0.0064977919682860374, 0.007141536101698875, 0.024515921249985695, 0.00010907187970587984, 0.005894281901419163, 0.01602654531598091, -0.029129421338438988, 0.005599232390522957, 0.20202836394309998, -0.0037752909120172262, 0.009133119136095047, 0.026554444804787636, -0.00047819793689996004, 0.01964760757982731, -0.0016143894754350185, -0.00030028820037841797, 0.0006475160480476916, -0.008690545335412025, -0.01877586916089058, -0.007175064645707607, -0.007389646023511887, 0.004429093562066555, 0.011406340636312962, -0.016039958223700523, -0.013813675381243229, -0.03199944645166397, -0.02096191793680191, 0.020438876003026962, -0.014913405291736126, -0.02459638938307762, -0.020948506891727448, -0.015168220736086369, 0.02255786582827568, 0.0014819526113569736, -0.027412770316004753, -0.006055218167603016, 0.03430619835853577, -0.024422042071819305, -0.015248688869178295, -0.014537887647747993, -0.020009713247418404, 0.006320091895759106, -0.013156520202755928, 0.01931232400238514, 0.023496659472584724, -0.0066754925064742565, 0.0034869471564888954, 0.01752861589193344, 0.0019513493170961738, -0.0001209115725941956, -0.04162878543138504, -0.02120332233607769, 0.013491803780198097, 0.014175781980156898, -0.011097880080342293, -0.02261151187121868, -0.003996578045189381, 0.011131408624351025, -0.017461558803915977, -0.043050386011600494, -0.007791986223310232, 0.028485676273703575, 0.004942077212035656, -0.0347621813416481, 0.010138969868421555, -0.006729137618094683, 0.018413763493299484, 0.0073158834129571915, -0.006816311273723841, 0.029022131115198135, -0.024663446471095085, 0.005002428311854601, -0.03945614770054817, 0.026634912937879562, -0.033286936581134796, 0.02840520814061165, -0.012673712335526943, -0.036425188183784485, -0.002377159195020795, -0.005582468584179878, 0.010279788635671139, 0.024529332295060158, -0.016053369268774986, -0.01640206389129162, 0.027600528672337532, 0.01840035244822502, 0.010004856623709202, 0.026219161227345467, -0.00532430037856102, -0.02371124178171158, 0.009005711413919926, -0.0008725750376470387, -0.028324740007519722, 0.00019121631339658052, -0.0022128704003989697, 0.006102157756686211, -0.00994450505822897, -0.002957199467346072, -0.011459986679255962, 0.007007422856986523, -0.0010108794085681438, 0.010199320502579212, -0.01669711247086525, 0.006722432095557451, 0.0070811850018799305, -0.007899276912212372, 0.009937799535691738, -0.012365251779556274, -0.017609084025025368, 0.01814553700387478, -0.014081902801990509, -0.0054450021125376225, 0.024314751848578453, -0.018373530358076096, 0.013706385158002377, 0.02396605722606182, 0.005025898106396198, -0.026876317337155342, 0.004459268879145384, -0.040636345744132996, 0.009092886000871658, 0.0065413787961006165, 0.011755035258829594, -0.015570560470223427, -0.009703101590275764, -0.012371957302093506, 0.0014266307698562741, -0.004955488722771406, 0.0060317483730614185, -0.021578839048743248, 0.026058224961161613, -0.0017803547671064734, 0.01192938257008791, 0.007067773956805468, -0.025347424671053886, 0.012217726558446884, 0.006933660712093115, 0.00515330582857132, 0.012673712335526943, -0.02139108069241047, 0.012566421180963516, -0.029880456626415253, -0.01062177773565054, 0.0046570864506065845, -0.027627350762486458, -0.01192938257008791, -0.0045229727402329445, -0.005478530656546354, -0.009716512635350227, -0.00885818712413311, -0.006085393484681845, -0.006611788645386696, 0.016281360760331154, -0.00548188341781497, -0.0022581336088478565, 0.0071683586575090885, 0.041897013783454895, -0.030872894451022148, -0.0011726536322385073, -0.0008742514182813466, 0.011909266002476215, -0.02198117971420288, -0.011433163657784462, -0.008683839812874794, -0.012110436335206032, -0.035700976848602295, 0.02255786582827568, 0.007825514301657677, -0.026688557118177414, 0.0033159528393298388, 0.007020834367722273, 0.015811964869499207, -0.020787570625543594, -0.0005750110140070319, -0.16694431006908417, -0.009139825589954853, 0.0034014498814940453, -0.02754688262939453, 0.008710662834346294, -0.02773464284837246, 0.03900016471743584, 0.004945429973304272, 0.004030106123536825, -0.012586538679897785, -0.016710523515939713, -0.015208454802632332, -0.007698106579482555, 0.02880754880607128, -0.0089520663022995, 0.00011158650158904493, 0.017260389402508736, 0.017729785293340683, 0.026728792116045952, 0.03151663765311241, 0.05112401023507118, -0.030470553785562515, 0.007235415745526552, 0.01569126360118389, -0.023389369249343872, -0.02207505889236927, 0.00950863678008318, 0.020049946382641792, 0.010594954714179039, -0.02977316454052925, 0.008811247535049915, 0.02376488596200943, -0.014229427091777325, -0.033716097474098206, 0.02308090776205063, -0.0013461628695949912, -0.003929521422833204, -0.013592388480901718, 0.010930238291621208, 0.005592526867985725, 0.008194326423108578, 0.01449765358120203, -0.002566594397649169, -0.008824658580124378, -0.0335015170276165, 0.021766597405076027, 0.033716097474098206, -0.0007812103140167892, -0.009247115813195705, 0.026165515184402466, 0.037873610854148865, -0.045813120901584625, 0.0285661444067955, 0.002826438983902335, 0.03376974165439606, -0.042916275560855865, 0.0027526766061782837, -0.006967188790440559, -0.0027275304310023785, -0.0074030570685863495, 0.0049756052903831005, -0.031114298850297928, -0.011936089023947716, 0.02574976347386837, -0.018950216472148895, -0.01844058558344841, -0.02734571322798729, 0.009723218157887459, -0.0038524060510098934, 0.021619072183966637, -0.01591925509274006, -0.015905844047665596, 0.024703679606318474, -0.01814553700387478, 0.01365274004638195, 0.02057298831641674, -0.009937799535691738, 0.00280129280872643, -0.009374523535370827, -0.004050223156809807, -0.01130575593560934, 0.04661780223250389, 0.029853632673621178, -0.01219760999083519, -0.004465974867343903, -0.011654450558125973, -0.011017411947250366, 0.04119962453842163, -0.05284066125750542, -0.02773464284837246, 0.005947927478700876, -0.03207991644740105, -0.020452287048101425, -0.0004811316612176597, 0.017971189692616463, 0.016536176204681396, 0.01626794971525669, -0.015892433002591133, -0.004016695078462362, -0.041655607521533966, 0.008931949734687805, 0.0006533834966830909, -0.04050223529338837, 0.01708604209125042, 0.02880754880607128, 0.002043552231043577, -0.024502510204911232, 0.005874164868146181, 0.019781719893217087, 0.004251393489539623, -0.016335006803274155, 0.0021240203641355038, 0.00475431839004159, 0.017488380894064903, 0.009642750024795532, 0.0031717808451503515, 0.007718223612755537, -0.013827087357640266, 0.005052720662206411, 0.010105441324412823, 0.038892872631549835, 0.00659502437338233, -0.03157028555870056, -0.007597521413117647, 0.012090318836271763, 0.0008415612974204123, -0.11040211468935013, -0.016630055382847786, 0.020076770335435867, 0.027426181361079216, -0.0031868687365204096, 0.01578514277935028, -0.00832843966782093, 0.03181168809533119, 0.013880732469260693, 0.03891969472169876, 0.0016252861823886633, -0.013880732469260693, -0.008368673734366894, 0.015999723225831985, -0.0032857772894203663, -0.006886720657348633, -0.03481582552194595, -0.006333503406494856, -0.02565588429570198, 0.03092654049396515, -0.011708095669746399, 0.007275649346411228, 0.021712953224778175, 0.002704060636460781, 0.00020955211948603392, 0.0012237844057381153, -0.01688487082719803, 0.016777580603957176, 0.0019630843307822943, 0.004217864945530891, -0.0029002013616263866, -0.014323306269943714, 0.015811964869499207, -0.019956067204475403, -0.0004237143730279058, -0.0034936529118567705, 0.0017552085919305682, 0.01703239604830742, -0.0028649966698139906, -0.010179203934967518, 0.0045699127949774265, -0.007349411956965923, -0.015423036180436611, -0.009307467378675938, 0.030524199828505516, 0.009039239957928658, -0.03285777196288109, 0.03765903040766716, 0.017756609246134758, -0.01771637424826622, -0.05069484934210777, 0.03704210743308067, -0.00820103194564581, -0.010051796212792397, 0.007852337323129177, -0.014537887647747993, 0.0048448448069393635, 0.014390363357961178, -0.003428272670134902, 0.031972624361515045, -0.01650935411453247, -0.010125558823347092, -0.006678845267742872, 0.014028256759047508, 0.0062664467841386795, 0.006625199690461159, -0.005129836034029722, -0.009434874169528484, 0.03358198329806328, -0.02632645145058632, 0.0030141975730657578, 0.020344996824860573, -0.013692974112927914, -0.0073628234677016735, -0.020452287048101425, 0.020063357427716255, -0.01359909400343895, 0.0034768888726830482, 0.012868176214396954, 0.006095452234148979, -0.0029940807726234198, -0.0025397716090083122, -0.01316322572529316, 0.004643674939870834, 0.004673850256949663, -0.0015347597654908895, 0.006427382584661245, 0.0035640625283122063, 0.020693691447377205, -0.01834670640528202, -0.005615996662527323, 0.026648323982954025, 0.03765903040766716, -0.011553865857422352, -0.011962911114096642, 0.02153860591351986, -0.002782852156087756, -0.0037182928062975407, 0.02207505889236927, 0.016522765159606934, -0.04109233245253563, -0.03127523511648178, -0.045625362545251846, 0.031141120940446854, -0.0016747405752539635, -0.0043050386011600494, 0.028297917917370796, -0.008496081456542015, -0.0019312322838231921, 0.011071057990193367, -0.004861609078943729, -0.005964691285043955, -0.019714662805199623, -0.004583323840051889, -0.013619211502373219, -0.006880015134811401, 0.003279071534052491, 0.005827225279062986, 0.014296484179794788, -0.016053369268774986, -0.0052136569283902645, -0.0033628924284130335, -0.02371124178171158, -0.006722432095557451, 0.03307235240936279, 0.0001261503784917295, 0.002732559572905302, 0.00024370911705773324, -0.006521261762827635, 0.020210882648825645, -0.010829653590917587, -0.02163248509168625, 0.005957985762506723, 0.012901704758405685, -0.018360119313001633, 0.04390871152281761, -0.001818912336602807, 0.002010023919865489, -0.008227854035794735, 0.0005708199460059404, 0.008905126713216305, 0.00022505897504743189, -0.02599116787314415, -0.010923532769083977, 0.0033360696397721767, 0.010950355790555477, 0.02517307735979557, -0.008750896900892258, 0.00920017622411251, 0.01597290113568306, -0.028163805603981018, 0.004724143072962761, 0.022866327315568924, -0.0018340001115575433, -0.0031466346699744463, -0.019821954891085625, 0.025387657806277275, -0.015651028603315353, -0.019634194672107697, -0.03894651681184769, 0.00919347070157528, -0.028619790449738503, 0.002340278122574091, -0.009045945480465889, 0.025575416162610054, 0.002140784403309226, 0.008154092356562614, -0.02768099680542946, -2.745132769632619e-05, -0.0066285524517297745, 0.0029722873587161303, -0.016093602403998375, 0.022531043738126755, -0.04256758093833923, 0.011976323090493679, 0.008931949734687805, 0.03398432582616806, 0.04012671485543251, -0.02216893807053566, 0.010997295379638672, -0.005284066312015057, 0.02270539104938507, 0.04224570840597153, -0.014725646935403347, -0.022678568959236145, 0.0035875323228538036, 0.012405485846102238, 0.0024140405002981424, 0.01636182889342308, -0.0009077797876670957, 0.015329157002270222, -0.002975640119984746, 0.01999630220234394, 0.006256388034671545, -0.022866327315568924, -0.019205031916499138, 0.011473397724330425, 0.04860268160700798, -0.00022736404207535088, 0.012928527779877186, -0.0013939406489953399, 0.023161375895142555, 0.016630055382847786, 0.0007615123759023845, 0.0005607614875771105, 0.0065413787961006165, -0.013518625870347023, 0.01868198998272419, -0.010836359113454819, -0.01713968627154827, 0.01139963511377573, 0.008556432090699673, -9.670830331742764e-05, 0.025736352428793907, 0.003428272670134902, 0.008019979111850262, -0.01998288929462433, 0.0031751336064189672, 0.008140680380165577, -9.366979793412611e-05, -0.02613869309425354, 0.029209889471530914, 0.007651166990399361, 0.017930956557393074, 0.010206026025116444, -0.025052374228835106, 0.04782482236623764, 0.004486091900616884, 0.028968485072255135, -0.028888016939163208, -0.01021273247897625, -0.019044095650315285, -0.042031124234199524, 0.012841354124248028, -0.020398641005158424, -0.01771637424826622, 0.0012204315280541778, -0.021753186360001564, -0.003795407945290208, 0.01630818471312523, 0.01028649415820837, 0.06737855076789856, -0.02923671156167984, -0.024475688114762306, 0.027573706582188606, 0.008140680380165577, 0.003099694848060608, 0.050802137702703476, -0.006082040723413229, -0.004653733689337969, -0.029934100806713104, 0.005009133834391832, 0.022008001804351807, -0.004462622106075287, -0.03886605054140091, 0.013116286136209965, 0.013485098257660866, 0.011024117469787598, 0.03457442298531532, -0.028888016939163208, 0.003758526872843504, 0.031731221824884415, -0.01174162421375513, 0.010957061313092709, 0.017206743359565735, -0.012579833157360554, 0.012257960624992847, 0.03851735591888428, 0.011004000902175903, -0.015409624204039574, -0.037390802055597305, -0.029799988493323326, -0.015087752602994442, -0.005009133834391832, -0.012559715658426285, 0.0031533401925116777, -0.003168428083881736, -0.019902421161532402, 0.018802693113684654, 0.019231855869293213, -0.017796842381358147, -0.009340994991362095, 0.02009018138051033, -0.02658126689493656, -0.008462552912533283, -0.014068490825593472, 0.005552292801439762, -0.026541033759713173, 0.005186833906918764, -0.06684209406375885], "45053040-3fa3-4bb5-aa00-7a11811e4098": [-0.027876034379005432, -0.002000178676098585, -0.0066927773877978325, -0.019196391105651855, -0.012699970044195652, 0.01395132951438427, -0.00876617431640625, -0.020700683817267418, -0.010896148160099983, -0.026358427479863167, 0.02899426966905594, 0.018757082521915436, -0.0013254096265882254, 0.009278698824346066, -0.00620022090151906, 0.00386723387055099, 0.022151729092001915, 0.003900514915585518, -0.00032303217449225485, 0.021579299122095108, -0.02245791256427765, 0.01698654145002365, 0.015375749208033085, -0.026012307032942772, -0.028728023171424866, 0.027050670236349106, -0.005790866911411285, -0.0226442851126194, 0.004842362832278013, -0.007880903780460358, 0.011282205581665039, 0.006626215763390064, -0.026691235601902008, -0.006702761631458998, -0.027423415333032608, -0.005478026811033487, -0.01684010587632656, 0.004825722426176071, -0.00520512368530035, 0.0013437140733003616, 0.010896148160099983, -0.019449325278401375, -0.005484682973474264, 0.026784421876072884, 0.004589428193867207, 0.026691235601902008, 0.020021755248308182, -0.01632092520594597, -0.005857428535819054, 0.014710132963955402, 0.032668475061655045, 0.013764956966042519, -0.016959916800260544, 8.086204616120085e-05, -0.0035211131907999516, 0.022071855142712593, 0.006107034627348185, 0.014297449961304665, 0.0053016385063529015, -0.0066927773877978325, -0.0010724752210080624, 0.0005537100369110703, -0.010010877624154091, 0.007747780065983534, -0.003402966307476163, -0.0193561390042305, 0.004472945351153612, 0.014523760415613651, -0.0339730829000473, -0.008286929689347744, 0.014683508314192295, 0.00901910848915577, 0.00719531811773777, 0.0027839425019919872, 0.019515886902809143, -0.023509588092565536, -0.027955908328294754, 0.008120525628328323, -0.02553306333720684, -0.009604851715266705, 0.01873045787215233, -0.005634446628391743, -0.011728169396519661, 0.000681009260006249, 0.021432863548398018, -0.014004578813910484, 0.013631833717226982, 0.040336381644010544, -0.006156955845654011, -0.00717534963041544, 0.010982678271830082, 0.005537932273000479, 0.005474698729813099, 0.008959203027188778, -0.0075347828678786755, 0.008100557141005993, -0.011288861744105816, 0.03567706421017647, -0.0022647613659501076, 0.0019951865542680025, -0.012100914493203163, -0.0028571602888405323, 0.0009809528710320592, -0.00861973874270916, -0.03253535181283951, 0.022764096036553383, 0.01240044180303812, 0.008073932491242886, 0.021632548421621323, -0.015615371987223625, -0.010024189949035645, 0.032854847609996796, 0.026744484901428223, -0.03751416504383087, 0.008839392103254795, -0.01517606433480978, -0.0035943309776484966, 0.006153627764433622, -0.018823644146323204, -0.00514189014211297, 0.004389743320643902, -0.023789146915078163, 0.011315486393868923, -0.00474917609244585, 0.0011681575560942292, -0.003229905851185322, -0.01994188129901886, -0.008033995516598225, -0.01939607597887516, -0.025519751012325287, 0.026278553530573845, 0.017119666561484337, 0.026345115154981613, 0.013112652115523815, -0.0011365407845005393, 0.009837817400693893, -0.008939234539866447, 0.028568275272846222, -0.011528484523296356, -0.008885985240340233, 0.014071140438318253, 0.02107343077659607, -0.01910320483148098, 0.011222300119698048, -0.009797880426049232, 0.00673937052488327, 0.031470365822315216, 0.007747780065983534, -0.0010990998707711697, -0.011954478919506073, -0.01621442660689354, -0.01943601295351982, 0.002937034470960498, -0.010643213987350464, 0.022125104442238808, 0.008905953727662563, -0.02731691673398018, -0.004752504639327526, -0.005684367846697569, 0.0012921286979690194, 0.030219005420804024, 0.012739907018840313, 0.011861292645335197, 0.03123074397444725, 0.01891683042049408, 0.03338734060525894, 0.03666217625141144, 0.0031616801861673594, 0.0030551813542842865, 0.0028505041263997555, -0.004626037087291479, 0.022271540015935898, -0.045341819524765015, 0.020248064771294594, -0.011095833033323288, -0.021419551223516464, 0.015189376659691334, -0.013585240580141544, -0.010849555023014545, 0.031976234167814255, -0.0031100946944206953, 0.0015076221898198128, 0.02195204421877861, 0.027556538581848145, -0.03368021175265312, 0.017465787008404732, 0.02056756056845188, 0.0006294239428825676, 0.023549525067210197, -0.006077081896364689, 0.02191210724413395, 0.0024344937410205603, -0.009638132527470589, -0.00842005293816328, -0.619396448135376, 0.00520512368530035, -0.023030344396829605, -0.026424989104270935, -0.0004700919089373201, 0.006955696269869804, 0.004133480601012707, 0.010729744099080563, -0.015229313634335995, 0.028754647821187973, 0.006795948371291161, 0.009172200225293636, -0.01026381179690361, -0.022338101640343666, 0.013505366630852222, -0.027742911130189896, -0.003893858753144741, -0.026211991906166077, -0.02955338917672634, 0.013618521392345428, -0.015255938284099102, 0.016307612881064415, -0.012739907018840313, -0.016201114282011986, 0.0021665829699486494, 0.016973229125142097, 0.016134552657604218, -0.014337386935949326, 0.012260662391781807, 0.03194960951805115, -0.009764599613845348, 0.004559475462883711, 0.004366446752101183, 0.0019269607728347182, 0.04174748808145523, -0.001893679960630834, 0.0018670553108677268, 0.01062990166246891, 0.021965356543660164, 0.040709126740694046, -0.02498725615441799, -0.014976379461586475, 0.029420265927910805, 0.015761807560920715, 0.029393641278147697, 0.015868306159973145, 0.020461061969399452, 0.02279072068631649, -0.008573145605623722, -0.030378753319382668, -0.02201860584318638, 0.004452976863831282, 0.002830535639077425, 4.6963688760115474e-07, 0.002837191801518202, -0.0032432181760668755, 0.013139276765286922, 0.0011631654342636466, 0.02513369359076023, -0.02067405916750431, -0.0026158741675317287, 0.009145575575530529, -0.016680357977747917, 0.018970079720020294, -0.014164326712489128, 0.007701186928898096, -0.021046806126832962, -0.010929428972303867, -0.004239979200065136, -0.01877039484679699, 0.0008794462773948908, 0.015056253410875797, -0.006037144921720028, -0.0031700003892183304, 0.018291151151061058, 0.026278553530573845, -0.006686121225357056, -0.00814715027809143, 0.003491160459816456, 0.003311443841084838, 0.011934510432183743, 0.0058807251043617725, -0.028115656226873398, -0.011634983122348785, 0.005438089836388826, 0.011828011833131313, -0.010789649561047554, 0.020288001745939255, 0.013445460237562656, 0.013738332316279411, 0.01142864115536213, -0.012533565983176231, 0.0031017744913697243, -0.02878127247095108, 0.0018554070265963674, 0.013685083016753197, -0.01289299875497818, 0.015056253410875797, -0.005601165816187859, -0.03831290826201439, -0.030511876568198204, -0.024055393412709236, 0.028222154825925827, -0.00094600796001032, 0.005218436010181904, -0.004589428193867207, 0.013858143240213394, 0.00638326583430171, 0.020261377096176147, -0.012460347265005112, -0.010942741297185421, -0.026464926078915596, -0.01851746067404747, 0.0029486827552318573, -0.0068758223205804825, -0.029420265927910805, 0.00905904546380043, -0.019928568974137306, -0.011182363145053387, -0.012307255528867245, 0.012300599366426468, 0.015109502710402012, -0.005351559724658728, -0.016134552657604218, 0.029313767328858376, -0.003041869029402733, 0.011315486393868923, -0.017558973282575607, 0.011089176870882511, 0.0038605777081102133, 0.003817312652245164, -0.003288147272542119, 0.021486112847924232, -0.005271685775369406, -0.003451223485171795, -0.0211799293756485, 0.03210935741662979, -0.008493270725011826, 0.016493985429406166, -0.02385570853948593, -0.013392210938036442, -0.0075347828678786755, 0.020607497543096542, -0.02673117257654667, -0.00783431064337492, -0.05048038437962532, -0.026451613754034042, -0.009811192750930786, 0.0026807719841599464, 0.0019485934171825647, -0.0006572966813109815, 0.017452474683523178, -0.0004509554128162563, 0.021046806126832962, 0.0113221425563097, -0.01399126648902893, 0.00572430482134223, -0.002709060674533248, 0.003963748458772898, -0.021605923771858215, -0.018943455070257187, 0.00907901395112276, -0.012966216541826725, -0.0036176275461912155, 0.010523403063416481, -0.01194116659462452, -0.0308579970151186, 0.03791353479027748, -0.01906326785683632, -0.031470365822315216, -0.006077081896364689, 0.01742585003376007, -0.0005333255394361913, -0.011062552221119404, -0.04038963094353676, 0.036103058606386185, -0.01782521978020668, 0.0013695067027583718, -0.014017891138792038, -0.0061469716019928455, 0.015948180109262466, 0.00982450507581234, -0.021938731893897057, -0.00876617431640625, 0.02867477387189865, -0.004023653920739889, 0.013392210938036442, -0.030618375167250633, -0.009931003674864769, 0.010523403063416481, 0.024414826184511185, 0.017226165160536766, -0.025706123560667038, 0.02088705636560917, 0.01774534583091736, 0.028541650623083115, -0.006303391885012388, -0.010556683875620365, -0.01028378028422594, 0.03948439285159111, 0.02768966183066368, -0.012546878308057785, -0.02534669078886509, -0.03027225472033024, 0.004802425857633352, -0.022471224889159203, 0.019862007349729538, -0.011555109173059464, 0.008306898176670074, -0.031869735568761826, 0.0064265308901667595, -0.02750328928232193, -0.020461061969399452, 0.001102427951991558, 0.03242885321378708, 0.03381333500146866, 0.0005595341790467501, 0.021419551223516464, 0.015695245936512947, -0.012926279567182064, 0.01727941446006298, 0.02275078371167183, 0.024534637108445168, 0.014111077412962914, -0.016387486830353737, 0.005541260354220867, 0.020793870091438293, -0.019555823877453804, -0.0013836510479450226, -0.017452474683523178, 0.008300242014229298, -0.0011273885611444712, 0.017212852835655212, 0.006439843215048313, 0.015495560131967068, -0.005401480942964554, 0.021459488198161125, -0.01600142940878868, 0.042785853147506714, -0.0157085582613945, -0.0012413754593580961, 0.013365586288273335, 0.021086743101477623, -0.02297709323465824, 0.009145575575530529, 0.004492913838475943, 0.02800915762782097, -0.014084452763199806, -0.004326509777456522, 0.041800737380981445, -0.011115801520645618, 0.016227738931775093, -0.02965988777577877, -0.004396399483084679, 0.00953163392841816, -0.024374889209866524, 0.011042583733797073, 0.013358930125832558, 0.03115087002515793, 0.029313767328858376, -0.006546341814100742, -0.018464211374521255, 0.003451223485171795, 0.013977954164147377, -0.007401659619063139, -0.023203404620289803, -0.014936442486941814, -0.03293472155928612, -0.01278650015592575, -0.024042081087827682, -0.017079729586839676, -0.022990405559539795, -0.0074216281063854694, -0.005251717288047075, 0.018397649750113487, -0.010490121319890022, -0.0016449056565761566, 0.019848695024847984, -0.0022897219751030207, 0.021565986797213554, -0.03447895497083664, -0.03538419306278229, 0.03647580370306969, -0.0003436247061472386, -0.009465071372687817, -0.013432147912681103, -0.011841324158012867, -0.04401058703660965, -0.008426709100604057, 0.013964641839265823, -0.011648295447230339, 0.018344400450587273, -0.0018121418543159962, -0.0057376171462237835, -0.008479958400130272, 0.004143464844673872, 0.0438242144882679, -0.010982678271830082, 0.007481533568352461, 0.016374174505472183, -0.005444745998829603, -0.015761807560920715, -0.006716073956340551, -0.014310762286186218, 0.039724014699459076, -0.006047129165381193, 0.009125607088208199, -0.012007728219032288, 0.004992126487195492, -0.009811192750930786, -0.0030635015573352575, -0.02410864271223545, -0.009445102885365486, -0.02760978788137436, 0.04433008283376694, -0.011568421497941017, 0.009072357788681984, 0.00851324014365673, 0.02469438500702381, -0.0004257867985870689, -0.0257460605353117, -0.024494700133800507, 0.0036375962663441896, 0.018757082521915436, 0.05434096232056618, 0.03967076539993286, -0.022364726290106773, 0.0009718006476759911, -0.012413754127919674, 0.005338247399777174, -0.02048768661916256, -0.01749241165816784, 0.012453691102564335, -0.014084452763199806, 0.011002646759152412, -0.015162752009928226, -0.0009609843255020678, -0.02859489992260933, -0.002481086878105998, 0.0003463287721388042, -0.010350341908633709, -0.019782133400440216, 0.004113512113690376, -0.018783707171678543, 0.015442310832440853, 0.014656883664429188, 0.03479845076799393, 0.02038118802011013, 0.021313052624464035, 0.004792441613972187, 0.026757797226309776, 0.007428284268826246, 0.006389921996742487, -0.00980453658849001, -0.03892527520656586, 0.015455623157322407, 0.032455477863550186, 0.026238616555929184, -0.016933292150497437, 0.011694888584315777, 0.014510448090732098, 0.0023596116807311773, 0.017665471881628036, -0.0036242837086319923, 0.010163969360291958, 0.018277838826179504, 0.00329646747559309, -0.011921198107302189, 0.008692956529557705, 0.004206698387861252, -0.03064499981701374, 0.006726058200001717, -0.00026271064416505396, 0.010383622720837593, -0.01585499383509159, 0.0019519214984029531, -0.03735441714525223, -0.01574849523603916, 0.02180560864508152, 0.030991120263934135, -0.008613082580268383, -0.021286427974700928, -0.0036509085912257433, -0.033254217356443405, -0.004293228965252638, -0.02319009229540825, 0.016813481226563454, 0.0042499639093875885, 0.015548810362815857, 0.0035377535969018936, -0.029686512425541878, 0.011495202779769897, -0.029819635674357414, 0.027370166033506393, 0.008393428288400173, -0.04608731344342232, -0.0310443714261055, -0.009491696022450924, 0.016667045652866364, 0.009704694151878357, -0.0099509721621871, -0.01632092520594597, 0.005757586099207401, 0.009937659837305546, -0.011741481721401215, -0.04134811833500862, -0.0157085582613945, -0.04606068879365921, -0.004259948153048754, 0.001608296763151884, 0.00597058329731226, 0.009624820202589035, -0.021632548421621323, 0.013265743851661682, -0.013685083016753197, -0.009891066700220108, -0.014337386935949326, -0.03184311091899872, -0.001968561904504895, 0.007867591455578804, -0.01225400622934103, 0.006210205145180225, 0.026451613754034042, -0.018530772998929024, 0.005710992496460676, -0.01566862128674984, -0.0005075328517705202, -0.03626280650496483, -0.0049089244566857815, 0.005298310425132513, 0.009957628324627876, -0.008586457930505276, -0.014124389737844467, -0.03218923136591911, 0.010217218659818172, -0.007375034969300032, 0.02490738220512867, 0.022617660462856293, 0.005850772373378277, 0.012367160990834236, 0.009744631126523018, 0.002838855842128396, -0.009225449524819851, -0.0037640633527189493, 0.0018970080418512225, -0.031097620725631714, 0.01803821697831154, 0.00953163392841816, -0.013512022793293, 0.016640421003103256, 0.0030468611512333155, -0.04539506882429123, -0.010543371550738811, 0.01727941446006298, 0.005178499035537243, 0.01837102510035038, 0.0040103415958583355, -0.02333652786910534, -0.015096190385520458, 0.004772473126649857, -0.009771255776286125, 0.0032748349476605654, -0.02670454792678356, 0.007115444168448448, 0.019702259451150894, 0.011408672668039799, -0.010510090738534927, 0.006060441490262747, -0.013598552905023098, -0.025266816839575768, -0.013412179425358772, -0.013405523262917995, 0.006070425733923912, 0.030378753319382668, 0.02918064408004284, -0.017465787008404732, -0.018983392044901848, 0.010616589337587357, -0.009591539390385151, 0.0038472653832286596, -0.007182005792856216, -0.017252789810299873, 0.02827540412545204, 0.017439162358641624, 0.00929201114922762, 0.00013218734238762408, 0.010190594010055065, -0.005764242261648178, -0.012340536341071129, 0.01669367030262947, -0.009911035187542439, -0.015695245936512947, -0.0244680754840374, -0.0002937034296337515, 0.019049955531954765, 0.014257512986660004, -0.0017555644735693932, -0.01644073612987995, 0.005072000436484814, 0.02067405916750431, -0.014297449961304665, 0.0058807251043617725, -0.016880042850971222, -0.034319207072257996, -0.002579265274107456, -0.022125104442238808, 0.011714857071638107, 0.015003004111349583, -0.01013734471052885, -0.017013167962431908, 0.012673345394432545, 0.004080231301486492, 0.0038539215456694365, 0.05000114068388939, 0.031204119324684143, -0.020075004547834396, 0.01851746067404747, 0.017612222582101822, 0.011914541944861412, -0.02867477387189865, -0.01552218571305275, -0.03706154599785805, -0.02798253297805786, 0.003150031901896, 0.002078388584777713, 0.01811809092760086, -0.010683150961995125, -0.002161590848118067, -0.005707664415240288, -0.00012844325101468712, -0.03253535181283951, -0.0050620161928236485, 0.012340536341071129, -0.006000536028295755, -0.006562982220202684, -0.015681933611631393, -0.009884410537779331, 0.010636557824909687, 0.006110362708568573, 0.02341640181839466, -0.011348767206072807, 0.008479958400130272, -0.03253535181283951, -0.008819423615932465, 0.010510090738534927, -0.023975519463419914, 0.04880302771925926, 0.0018554070265963674, 0.008386772125959396, 0.01920970343053341, 0.02249784953892231, -0.014470510184764862, 0.0019436012953519821, 0.01121564395725727, 0.008433365263044834, 0.02800915762782097, 0.014750069938600063, -0.004552819300442934, -0.0018304464174434543, -0.015309187583625317, -0.021925419569015503, -0.026424989104270935, -0.02396220713853836, 0.012673345394432545, 0.01399126648902893, -0.01793171837925911, -0.025799309834837914, 0.02436157688498497, -0.03780703619122505, 0.0002937034296337515, -0.009984252974390984, 0.006809260696172714, -0.009178856387734413, -0.004492913838475943, -0.04007013514637947, 0.01581505686044693, 0.00971800647675991, 0.005328263156116009, 0.011455265805125237, 0.0007941641379147768, 0.007288504857569933, -0.024348264560103416, -0.030192380771040916, -0.0021932076197117567, 0.008007370866835117, 0.016773544251918793, -0.02249784953892231, 0.0046693021431565285, 0.027663037180900574, -0.00518515519797802, 0.005115265492349863, -0.019742196425795555, -0.004246635362505913, 0.041214995086193085, -0.027769535779953003, 0.009631476365029812, 0.0029270502272993326, 0.012719938531517982, -0.00038064963882789016, -0.04028313234448433, -0.010543371550738811, -0.008333522826433182, -0.012200756929814816, 0.011781418696045876, 3.952100087190047e-05, 0.023110218346118927, -0.0037108140531927347, -0.005228420253843069, -0.007075507193803787, 0.02323002927005291, -0.010110720060765743, -0.0029753074049949646, 0.022990405559539795, -0.05537932366132736, -0.011115801520645618, -0.0040103415958583355, 0.022125104442238808, 0.03817978501319885, 0.0016440736362710595, -0.020753933116793633, 0.028648149222135544, 0.05029401183128357, -0.030911246314644814, 0.011202331632375717, -0.01858402229845524, -0.011634983122348785, -0.010490121319890022, 0.023349840193986893, -0.021832233294844627, 0.0011248925002291799, 0.03184311091899872, -0.017598910257220268, -0.016414111480116844, -0.016081303358078003, -0.000277479033684358, -0.0011714856373146176, -0.019622385501861572, -0.020514311268925667, 0.0021183255594223738, -0.007974090054631233, 0.01562868431210518, -0.012167476117610931, -0.009857785888016224, 0.0072152866050601006, -0.007994058541953564, 0.01958244852721691, 0.02819553017616272, 0.0008016523206606507, 0.024561261758208275, -0.00876617431640625, -0.0006265118718147278, -0.0014984699664637446, -0.043478094041347504, -0.0026874281466007233, -0.005271685775369406, 0.004902268294245005, -0.0336003378033638, -0.013099339790642262, -0.02486744523048401, -0.018757082521915436, -0.004915580619126558, 0.02633180283010006, 0.042386483401060104, 0.0054314336739480495, -0.015349124558269978, 0.038659028708934784, 0.010303748771548271, 0.020221440121531487, -0.014949754811823368, 0.0015592074487358332, 0.006143643520772457, -0.004083559382706881, -0.006759339477866888, -0.0062434859573841095, -0.005265029612928629, 0.02589249610900879, 0.01815802790224552, -0.0024444779846817255, -0.029606638476252556, 0.008280273526906967, -0.04510219767689705, -0.03722129389643669, -0.004429680295288563, 0.01212753914296627, 0.03304122015833855, 0.01709304191172123, 0.00982450507581234, 0.04560806602239609, -0.004433008376508951, 0.0012946247588843107, -0.03623618185520172, -0.009385197423398495, -0.0021000211127102375, 0.04933552071452141, -0.009258730337023735, -0.023283278569579124, -0.024814195930957794, -0.029047520831227303, 0.01552218571305275, -0.002194871660321951, 0.009258730337023735, 0.018890205770730972, 0.008566489443182945, -0.012513597495853901, -0.03407958522439003, -0.005677711684256792, 0.004143464844673872, -0.006270111072808504, 0.013605209067463875, -0.0022547771222889423, -0.012959560379385948, -0.0029736433643847704, 0.010989334434270859, -0.011515172198414803, -0.0005062848213128746, -0.011495202779769897, -0.018211277201771736, -0.009385197423398495, -0.0066528404131531715, -0.01665373332798481, 0.010842898860573769, -0.022670909762382507, 0.027450039982795715, -0.017266102135181427, 0.002179895294830203, 0.03131061792373657, 0.012054321356117725, 0.02505381964147091, -0.009338604286313057, 0.007235255092382431, -0.011788074858486652, -0.02187217026948929, 0.03503807261586189, 0.023802459239959717, -0.009604851715266705, -0.0208204947412014, 0.016520610079169273, -0.006682793144136667, -0.008739549666643143, -0.0202746894210577, -0.0006219357601366937, -0.04015000909566879, -0.009158887900412083, 0.016733607277274132, -0.013598552905023098, 0.008093900978565216, 0.0034545515663921833, 0.001549223205074668, 0.01028378028422594, -0.014164326712489128, -0.003817312652245164, -0.012147507630288601, 0.026198679581284523, 0.005674383603036404, 0.007481533568352461, 0.010849555023014545, -0.011714857071638107, 0.012486971914768219, -0.018024904653429985, -0.002219832269474864, 0.21235840022563934, 0.003501144703477621, 0.009671413339674473, 0.037194669246673584, -0.01734597608447075, 0.012759875506162643, 0.0027689661365002394, 0.005225092172622681, 0.0059373024851083755, -0.0009485040209256113, -0.018450899049639702, -0.0014552049105986953, -0.016640421003103256, 0.002326330868527293, 0.010576652362942696, -0.016520610079169273, -0.010530059225857258, -0.00437310291454196, -0.015003004111349583, 0.003238226054236293, 0.009578227065503597, -0.009578227065503597, -0.023536212742328644, -0.0045561473816633224, 0.021233178675174713, 0.011228956282138824, -0.0013287377078086138, 0.019329514354467392, 0.02297709323465824, -0.02086043171584606, -0.0004309869254939258, -0.0013512022560462356, -0.018450899049639702, 0.01291296724230051, -0.014164326712489128, 0.005551244597882032, 0.023656023666262627, -0.021392926573753357, 0.02553306333720684, -0.015096190385520458, 0.0072152866050601006, -0.0076479376293718815, -0.02936701662838459, -0.035197820514440536, 0.013858143240213394, 0.034718576818704605, -0.002947018714621663, -0.02425507828593254, 0.005241732578724623, 0.01644073612987995, -0.01719954051077366, -0.0035444097593426704, -0.008020683191716671, 0.013711707666516304, -0.004472945351153612, -0.015535498037934303, 0.009385197423398495, -0.007627969142049551, 0.019702259451150894, 0.017439162358641624, -0.000246902258368209, 0.034319207072257996, -0.024494700133800507, 0.016933292150497437, -0.04124161973595619, 0.020687371492385864, -0.013565272092819214, 0.028648149222135544, -0.02800915762782097, -0.02878127247095108, 0.0099509721621871, -0.017612222582101822, 0.01347874104976654, 0.026544800028204918, -0.016241051256656647, -0.019409388303756714, 0.038446031510829926, 0.02827540412545204, 0.001223903032951057, 0.02074062079191208, -0.015828369185328484, -0.043850839138031006, 0.004256620071828365, -0.028834521770477295, -0.01585499383509159, -0.015735182911157608, 0.021339677274227142, -0.012686657719314098, -0.029393641278147697, -0.008260305039584637, -0.02140623889863491, -0.014670195989310741, -0.011887917295098305, 0.01998181827366352, -0.0090390769764781, 0.011242268607020378, -0.014510448090732098, -0.007182005792856216, -0.008839392103254795, -0.006047129165381193, -0.017998280003666878, 0.054181214421987534, -0.008373459801077843, 0.0008245328790508211, 0.028728023171424866, -0.01144860964268446, 0.005438089836388826, 0.012227381579577923, 0.0047957696951925755, -0.034425705671310425, -4.838722452404909e-05, -0.0332275927066803, -0.0005624462501145899, -0.0010949397692456841, 0.006619559600949287, 0.0010916116880252957, 0.007907528430223465, -0.00037295345100574195, 0.008080588653683662, 0.0060338168404996395, 0.007208630442619324, -0.030378753319382668, 0.01994188129901886, 0.00578088266775012, -0.0033413965720683336, 0.0014468847075477242, -0.045927561819553375, 0.016280988231301308, -0.0016016406007111073, -0.01289299875497818, 0.020913681015372276, -0.039351269602775574, 0.017811907455325127, -0.024414826184511185, -0.014297449961304665, -0.0067327143624424934, -0.014430573210120201, -0.00893257837742567, -0.007674562279134989, 0.013405523262917995, -0.008579801768064499, 0.012293943203985691, -0.01705310493707657, -0.007488189730793238, 0.006183580495417118, -0.011348767206072807, 0.00028912731795571744, 0.013125964440405369, 0.007281848695129156, -0.016347549855709076, -0.01345877256244421, -0.013052746653556824, 0.010416903533041477, -0.011368735693395138, -0.00514189014211297, -0.025107068940997124, -0.004915580619126558, -0.03447895497083664, 0.016720294952392578, -0.016733607277274132, -0.03703492134809494, 0.008406740613281727, 0.005521291866898537, 0.00861973874270916, -0.017505723983049393, -0.009391853585839272, -0.16720294952392578, -0.005271685775369406, 0.010436872020363808, -0.02461451105773449, 0.011109145358204842, 0.00018866077880375087, 0.037780411541461945, 0.004958845674991608, 0.0017073072958737612, -0.011701544746756554, -0.013299024663865566, 0.0023130185436457396, -0.016933292150497437, 0.01236050482839346, 0.005747601389884949, -0.00829358585178852, 0.02454794943332672, 0.015042941085994244, 0.034132834523916245, 0.046513307839632034, 0.04510219767689705, -0.037673912942409515, 0.011062552221119404, 0.01581505686044693, -0.005764242261648178, -0.00036442524287849665, -0.009631476365029812, 0.010876179672777653, 0.007115444168448448, -0.03115087002515793, -0.0015567113878205419, 0.019569136202335358, 0.02289721928536892, -0.03897852450609207, 0.025253504514694214, 0.006220189388841391, -0.015881618484854698, -0.019010018557310104, 0.007228598929941654, -0.011095833033323288, 0.030884621664881706, 0.010110720060765743, -0.02731691673398018, 0.003597659058868885, -0.003214929485693574, 0.02947351522743702, 0.028807897120714188, -0.014603634364902973, -0.01665373332798481, 0.009937659837305546, 0.029207268729805946, -0.020993554964661598, 0.02725035510957241, 0.005611150059849024, 0.03607643395662308, -0.04851015657186508, -0.014976379461586475, 0.0007380027091130614, -0.037088170647621155, 0.00638326583430171, 0.0061303311958909035, -0.021898794919252396, 0.001525094616226852, 0.026717860251665115, 0.00808724481612444, -0.007162037305533886, -0.02034125104546547, 0.003369685262441635, -0.012633408419787884, 0.013378898613154888, -0.008240336552262306, -0.009152231737971306, 0.0051918113604187965, -0.027223730459809303, 0.00901910848915577, 0.02760978788137436, -0.008806111291050911, 0.004825722426176071, -0.020993554964661598, -0.010723087936639786, -0.012932935729622841, 0.033360715955495834, 0.008093900978565216, -0.012034352868795395, 0.009511665441095829, -0.018091466277837753, -0.02476094663143158, 0.021898794919252396, -0.02425507828593254, -0.009578227065503597, 0.007162037305533886, -0.019635697826743126, -0.02578599750995636, -0.0023379791527986526, 0.004599412437528372, 0.01380489394068718, 0.009664757177233696, -0.009544946253299713, 0.004536178894340992, -0.02721041813492775, 0.0189967043697834, -0.01303943432867527, -0.023469651117920876, 0.00020821327052544802, 0.05143887177109718, -0.002913737902417779, -0.013418835587799549, 0.006895790807902813, 0.03863240405917168, -0.0005017087096348405, -0.04667305573821068, -0.012393785640597343, 0.006802604533731937, 0.017545660957694054, 0.0077744051814079285, 0.014537072740495205, 0.013192526064813137, -0.010656526312232018, 0.003058509435504675, 0.009864442050457, 0.0401766337454319, 0.0060737538151443005, -0.02432163991034031, 0.004223338793963194, 0.0015467271441593766, 0.008014027029275894, -0.10319723933935165, -0.018610646948218346, 0.014750069938600063, 0.016280988231301308, -0.009445102885365486, 0.016161177307367325, -0.01910320483148098, 0.014989691786468029, -0.00048090817290358245, 0.023895645514130592, 0.00346120772883296, -0.007042226381599903, -0.016054678708314896, 0.0016008085804060102, -0.017013167962431908, 0.01064987014979124, -0.037594038993120193, -0.020727308467030525, -0.014856568537652493, 0.042279984802007675, 0.006170268170535564, 0.0029902837704867125, -0.0014219239819794893, -0.00887267291545868, -0.0018554070265963674, 0.009737974964082241, -0.017106354236602783, 0.006290079560130835, 0.00391715532168746, 0.01039027888327837, -0.003960420377552509, 0.012247350066900253, 0.0076878746040165424, -0.011601702310144901, -0.006263454910367727, 0.003294803434982896, 0.00969803798943758, 0.002259769244119525, -0.005554572679102421, -0.023203404620289803, -0.0006826733006164432, 0.0034312549978494644, 0.010250499472022057, -0.014230888336896896, 0.028914395719766617, -0.0031716644298285246, -0.029047520831227303, 0.02304365672171116, 0.0011190683580935001, -0.029047520831227303, -0.046113938093185425, 0.017412537708878517, -0.03849928081035614, -0.01365845836699009, 0.007288504857569933, -0.024188516661524773, -0.0007459069020114839, 0.017545660957694054, 0.0023679318837821484, 0.023363152518868446, -0.022657597437500954, -0.013445460237562656, -0.0003864737809635699, 0.004542835056781769, 0.0003199120983481407, -0.006103706546127796, -0.01148854661732912, -0.01183466799557209, 0.04281247779726982, -0.028435152024030685, -0.021246491000056267, 0.03839278221130371, -0.029979383572936058, 0.009431790560483932, -0.020833807066082954, 0.028355278074741364, -0.0211799293756485, 0.00935191661119461, 0.027370166033506393, -0.010816274210810661, -0.005747601389884949, -0.017039792612195015, -0.0010558346984907985, -0.0008216208079829812, 0.015801744535565376, 0.0015542153269052505, 0.015389061532914639, 0.005308294668793678, 0.024521324783563614, -0.009172200225293636, -0.010623245500028133, 0.01774534583091736, 0.03258860111236572, -0.022125104442238808, -0.014377323910593987, 0.013212494552135468, 0.03703492134809494, -0.0037108140531927347, 0.020660746842622757, 0.02947351522743702, -0.026385052129626274, -0.011634983122348785, -0.03549069166183472, 0.031470365822315216, -0.009272042661905289, -0.012200756929814816, 0.022151729092001915, -0.010443528182804585, -0.006300063803792, 0.014723445288836956, -0.012393785640597343, 0.01022387482225895, -0.025626249611377716, 0.006842541508376598, -0.01566862128674984, -0.007827654480934143, 0.001257183845154941, -0.005461386404931545, 0.013578584417700768, -0.008306898176670074, -6.947376095922664e-05, 0.015042941085994244, -0.015295875258743763, -0.010789649561047554, 0.03115087002515793, 0.015069565735757351, 0.014829943887889385, 0.00798074621707201, -0.005694352090358734, 0.01646736077964306, -0.01924964040517807, -0.0321359820663929, 0.004466289188712835, -8.996228280011564e-05, -0.002384572522714734, 0.029420265927910805, -0.018144715577363968, 0.01092277280986309, 0.014124389737844467, 0.011568421497941017, 0.0199019443243742, 0.016187801957130432, -0.00800071470439434, -0.004619380924850702, 0.007408315781503916, -0.016307612881064415, 0.02454794943332672, -0.01851746067404747, 0.00514189014211297, 0.01797165535390377, -0.018930142745375633, 0.009624820202589035, 0.027370166033506393, -0.002748997649177909, -0.008506583981215954, -0.033839959651231766, 0.013645146042108536, -0.015868306159973145, 0.012067633680999279, -0.02074062079191208, 0.009524977765977383, -0.023429714143276215, 0.014856568537652493, -0.002422845456749201, 0.0186239592730999, -0.025173630565404892, 0.007108788006007671, -0.027822785079479218, -0.01702648028731346, -0.003025228623300791, 0.018357712775468826, -0.016520610079169273, -0.024587886407971382, -0.018131403252482414, 0.00346120772883296, 0.023762522265315056, 0.03831290826201439, 0.04137474298477173, -0.03269509971141815, 0.004642677493393421, 0.02030131407082081, 0.029393641278147697, 0.033067844808101654, -0.005215107928961515, -0.01987531967461109, 0.010436872020363808, 0.010962709784507751, -0.0029120738618075848, 0.007827654480934143, 0.00019968506239820272, -0.013538647443056107, 0.01424420066177845, 0.02947351522743702, 0.006915759295225143, -0.0162543635815382, -0.02461451105773449, 0.00787424761801958, 0.02542656473815441, 0.005065344274044037, 0.023496275767683983, -0.0035843467339873314, 0.030591750517487526, 0.02830202877521515, -0.009112294763326645, -0.015655308961868286, 0.0031400476582348347, -0.020873744040727615, 0.01617448963224888, -0.013152589090168476, -0.016533922404050827, 0.007481533568352461, 0.02681104652583599, 0.012739907018840313, 0.02201860584318638, 0.03341396525502205, 0.0020517639350146055, -0.029819635674357414, 0.023509588092565536, 0.001134876743890345, 0.0031716644298285246, -0.022178353741765022, 0.04113512113690376, 0.00031346394098363817, 0.023948894813656807, 0.03876552730798721, -0.02348296344280243, 0.03554394096136093, 0.02498725615441799, 0.025852559134364128, -0.025865871459245682, 0.014523760415613651, -0.006699433550238609, -0.018464211374521255, 0.013498710468411446, -0.02115330472588539, -0.020221440121531487, -0.004626037087291479, -0.034026335924863815, -0.00044970738235861063, 0.010330373421311378, 0.010729744099080563, 0.07726480811834335, -0.005201795604079962, -0.02899426966905594, 0.022883906960487366, 0.009445102885365486, -0.0026558113750070333, 0.043664466589689255, -0.004715895280241966, -0.0008827743586152792, -0.029127394780516624, 0.0061303311958909035, 0.018197964876890182, -0.0024461420252919197, -0.042359858751297, -0.013911392539739609, 0.01858402229845524, -0.0004309869254939258, 0.030991120263934135, -0.02955338917672634, -0.0017605565953999758, 0.027197105810046196, -0.021898794919252396, 0.01954251155257225, 0.00346120772883296, -0.009964284487068653, 0.0069490401074290276, 0.04480932652950287, 0.00671940203756094, -0.01577511988580227, -0.0297663863748312, -0.0010084095411002636, -0.011861292645335197, -0.016706982627511024, -0.017665471881628036, 0.010776337236166, -0.007075507193803787, -0.007328441832214594, 0.0060737538151443005, 0.014257512986660004, -0.009584883227944374, -0.005238404497504234, -0.003777375677600503, -0.02425507828593254, -0.011368735693395138, -0.012686657719314098, 0.008573145605623722, -0.025506438687443733, 0.004439664538949728, -0.03921814635396004], "959cccdc-8990-470a-a8e8-64ef3ca824bd": [0.0070943282917141914, 0.019493980333209038, 0.003601999720558524, -0.04046851769089699, -0.006792733911424875, 0.02085115574300289, -0.015600668266415596, -0.00017146769096143544, -0.0056925988756120205, -0.026951594278216362, 0.007382214069366455, 0.03128359094262123, -0.036794546991586685, 0.03317540884017944, 0.0019106705440208316, 0.015216820873320103, 0.006127854809165001, -0.001912384177558124, -0.00734794232994318, -0.006573392078280449, 0.004092090763151646, 0.015490997582674026, 0.011069893836975098, 0.005569219123572111, -0.022112371399998665, 0.015175693668425083, 0.009733281098306179, -0.013887062668800354, -0.012200874276459217, -0.019398018717765808, 0.020097170025110245, -0.008677700534462929, -0.030625564977526665, -0.0035471641458570957, -0.026087936013936996, -0.00480837794020772, -0.016121603548526764, -0.010596939362585545, 0.013551195152103901, -0.00942483264952898, 0.03852185979485512, 0.028706325218081474, -0.007203999441117048, 0.012776645831763744, -0.0016253552166745067, 0.011899279430508614, 0.009561920538544655, -0.019576234742999077, 0.00020306229998823255, -0.0003538596211001277, 0.0166836678981781, 0.05872870236635208, -0.015929680317640305, -0.00481523247435689, -0.009801825508475304, -0.0093974145129323, -0.00028295916854403913, 0.007642682176083326, 0.007539866026490927, -0.011289236135780811, 0.006563110742717981, 0.013242746703326702, -0.008129346184432507, -0.02969336323440075, -0.012934297323226929, 0.0020289092790335417, -0.006172408349812031, 0.0254024937748909, -0.01897304505109787, 0.015477288514375687, -0.012063785456120968, 0.01061064749956131, 0.002815454499796033, 0.0271709356456995, 0.02974819764494896, 0.0051922257989645, -0.02319536916911602, -0.004726124927401543, 0.003996129147708416, 0.0017204603645950556, -0.0044279578141868114, 0.0003354383516125381, -0.017561033368110657, 0.008759953081607819, -0.0013211901532486081, -0.02297602780163288, 0.026238733902573586, 0.028788579627871513, -0.012954860925674438, -0.023976773023605347, 0.009884078986942768, 0.010816280730068684, 0.020481018349528313, 0.017739247530698776, 0.00624438002705574, 0.013441524468362331, -0.009829243645071983, 0.02346954680979252, -0.021893028169870377, -0.025937138125300407, -0.0033689492847770452, 0.005137390457093716, -0.024525128304958344, -0.001429147319868207, -0.0069606672041118145, -0.0033877987880259752, 0.024045318365097046, 0.0052779060788452625, 0.013304436579346657, -0.008074510842561722, -0.020426182076334953, 0.02725318819284439, -0.0002510432677809149, -0.02537507563829422, 0.02941918559372425, -0.01172791887074709, -0.0038007779512554407, -0.025827467441558838, -0.03213353827595711, -0.013400398194789886, 0.015806300565600395, 0.014545086771249771, 0.003992701880633831, -0.00855432078242302, 0.022537345066666603, -0.009945768862962723, 0.00734108779579401, -0.02925468049943447, -0.0010530108120292425, -0.013633448630571365, 0.03613652288913727, 0.013647157698869705, -0.008979295380413532, 0.0291450098156929, 0.004825514275580645, 0.015669211745262146, -0.026101645082235336, 0.006768743507564068, -0.017999716103076935, -0.021728523075580597, 0.026320986449718475, 0.0015405317535623908, -0.013859644532203674, 0.011919843032956123, 0.008348687551915646, 0.001261213910765946, 0.03153035044670105, 0.018068261444568634, -0.00734108779579401, 0.013194765895605087, -0.001215803436934948, 0.010343325324356556, 0.008047093637287617, 0.0032866960391402245, -0.00366711663082242, 0.014503960497677326, -0.017972297966480255, 0.012756082229316235, 0.02112533338367939, -0.011762190610170364, 0.026430657133460045, 0.022043826058506966, -0.005435558035969734, -0.004599318373948336, 0.020343929529190063, 0.04375864192843437, 0.016505451872944832, 0.0022054107394069433, 0.006275224965065718, -0.0017735820729285479, -0.008835352025926113, -0.0020563271827995777, -0.02311311662197113, 0.018369855359196663, 0.001984355738386512, 0.0022516781464219093, 0.010836843401193619, 0.0014282905030995607, -0.021536599844694138, -0.006710480898618698, -0.005682317074388266, -0.0005132249789312482, 0.022304294630885124, 0.028678908944129944, -0.029940122738480568, 0.002536136656999588, 0.016368363052606583, 0.015189402736723423, 0.0059119402430951595, 0.003022800898179412, 0.014435416087508202, 0.0020186277106404305, -0.006758461706340313, -0.003632844425737858, -0.633019745349884, -0.015724048018455505, -0.012070639990270138, -0.024593671783804893, -0.0002478302631061524, -0.0005672035622410476, 0.005953066982328892, -0.0037527969107031822, -0.015669211745262146, 0.03972823917865753, 0.026595164090394974, -0.02318166010081768, 0.013941898010671139, -0.0170949324965477, -0.01063806563615799, -0.02743140235543251, 0.009123237803578377, -0.012111766263842583, -0.013475797139108181, 0.015367617830634117, -0.015271656215190887, 0.0208374485373497, -0.020412473008036613, 0.00931516196578741, 0.0018112814286723733, 0.015559541992843151, 0.015573250129818916, 0.005017437972128391, 0.010007458738982677, 0.04038626328110695, -0.030269134789705276, -0.02521057054400444, 0.014942643232643604, -0.0005025149439461529, 0.04910508915781975, -0.01702638901770115, -0.01368142943829298, -0.013050822541117668, 0.030159464105963707, 0.022057535126805305, -0.025662962347269058, -0.03399794176220894, 0.017533615231513977, 0.00033265375532209873, 0.017643285915255547, -0.0031530349515378475, -0.0007201428525149822, 0.01904158852994442, -0.008513194508850574, -0.019384309649467468, -0.004671289585530758, 0.01380480919033289, 0.007827751338481903, -0.028459567576646805, 0.021646270528435707, -0.0040166922844946384, 0.03199644759297371, -0.010048585012555122, 0.015230529010295868, -0.024264659732580185, 0.006837287452071905, 0.002330504124984145, -0.026499202474951744, -0.008040239103138447, -0.023812267929315567, 0.01872628554701805, -0.028706325218081474, -0.01269439235329628, 0.03196903318166733, -0.006319778505712748, 0.015847427770495415, 0.03599943220615387, -0.018040843307971954, -0.017314273864030838, 0.005894804373383522, 0.03547849506139755, 0.030022375285625458, -0.007628973573446274, 0.009445395320653915, 0.01712235063314438, 0.000272677541943267, -0.00010592226317385212, -0.011309798806905746, -0.02128984034061432, 0.035039812326431274, 0.009383706375956535, -0.008711972273886204, 0.008979295380413532, 0.002421325072646141, 0.009136946871876717, -0.004544483032077551, 0.02113904245197773, -0.01268753781914711, -0.019658487290143967, -0.0031650301534682512, 0.013119366951286793, 0.0149152260273695, -0.01662883162498474, -0.012420215643942356, -0.012879461981356144, -0.001783863757736981, -0.009603047743439674, 0.004181198310106993, 0.0187948290258646, 0.005459548439830542, 0.006439730990678072, 0.011652519926428795, 0.026170188561081886, 0.034902725368738174, -0.0295562744140625, -0.02969336323440075, -0.020741485059261322, -0.02112533338367939, 0.022564763203263283, 0.004565046168863773, -0.021618852391839027, 0.02980303391814232, 0.011069893836975098, 0.008026530034840107, -0.013112512417137623, 0.012975423596799374, 0.02072777785360813, -0.027033846825361252, 0.005291615147143602, 0.027938630431890488, -0.004842650145292282, 0.006593955680727959, 0.005716589279472828, -0.028870832175016403, -0.015408744104206562, 0.015285364352166653, 0.01671108417212963, 0.029090173542499542, -0.005555510520935059, 0.00240418897010386, -0.017903754487633705, 0.012790354900062084, -0.01897304505109787, 0.01919238641858101, -0.02725318819284439, -0.026430657133460045, -0.010823135264217854, 0.0014745579101145267, -0.03328508138656616, -0.019384309649467468, -0.016066769137978554, -0.030735235661268234, -0.018589196726679802, -0.0022619597148150206, -0.002740055788308382, 0.016395781189203262, 0.007875733077526093, -0.01937060058116913, 0.03402535989880562, 0.009472813457250595, -0.012557304464280605, 0.010370742529630661, -0.03723322972655296, -0.000650741858407855, -0.010076003149151802, -0.023771140724420547, 0.01466846652328968, -0.01477813720703125, 0.011892424896359444, -0.010788862593472004, -0.01695784367620945, -0.018232766538858414, 0.013475797139108181, -0.014394289813935757, -0.03750740736722946, 0.011138438247144222, -0.011323507875204086, -0.0006413169903680682, 0.013523777946829796, -0.030461058020591736, 0.030543312430381775, -0.019631069153547287, 0.01931576617062092, 0.006669354159384966, -0.026074226945638657, -0.014737010933458805, -0.012050076387822628, 0.009349433705210686, -0.017752956598997116, 0.011254963465034962, 0.0015885126776993275, 0.016039351001381874, 0.0050619919784367085, 0.010206236504018307, -0.017547324299812317, 0.03317540884017944, 0.019603651016950607, -0.02314053475856781, -0.0005864816484972835, -0.012989132665097713, 0.04447149857878685, 0.0037870691157877445, 0.010452996008098125, 0.004637017380446196, 0.020357638597488403, 0.023894520476460457, 0.003125617280602455, 0.014613631181418896, -0.03536882624030113, -0.0005376438493840396, -0.03871378302574158, 0.017561033368110657, -0.003079349873587489, 0.014325745403766632, 0.008074510842561722, 0.018040843307971954, -0.018273893743753433, -0.030735235661268234, 0.007286252453923225, 0.030927158892154694, 0.0380009226500988, -0.0168893001973629, 0.01875370368361473, -0.004177771043032408, 0.0032215791288763285, 0.012756082229316235, 0.017794083803892136, 0.008670846000313759, 0.019384309649467468, -0.004794669337570667, 0.007231417112052441, 0.016354653984308243, -0.012379089370369911, -0.02122129499912262, -0.055932097136974335, 0.01259157620370388, -0.024209823459386826, 0.008657136932015419, -0.003793923417106271, 0.02547103725373745, 0.013612885028123856, 0.024730760604143143, -0.009870369918644428, 0.04170231148600578, 0.001389734330587089, -0.020083460956811905, 0.02526540495455265, -0.0005556367104873061, -0.031064247712492943, 0.007087474223226309, 0.01476442813873291, 0.021728523075580597, 0.03972823917865753, -0.0012560731265693903, 0.030241716653108597, -0.014298327267169952, 0.0023682033643126488, -0.018657740205526352, 0.0005654899287037551, -0.006196398753672838, -0.002234542043879628, 0.011131583712995052, 0.013941898010671139, 0.006556256208568811, 0.00822530873119831, 0.01686188206076622, -0.016258692368865013, 0.012207728810608387, 0.01149486843496561, -0.00026175330276601017, 0.011433178558945656, -0.030844906345009804, -0.024854140356183052, -0.02944660373032093, 0.0022653869818896055, -0.023647760972380638, -0.017807792872190475, -0.010165110230445862, 0.0015765174757689238, 0.02933693304657936, -0.011227546259760857, -0.0004166204307693988, 0.00930830743163824, 0.014380580745637417, -0.0023510672617703676, -0.013277018442749977, -0.01882224716246128, 0.01281091757118702, 0.030543312430381775, 0.002488155849277973, 0.0031290443148463964, -0.01891820877790451, 0.01673850230872631, 0.006131282076239586, -0.009369997307658195, -0.0168207548558712, -0.007697517517954111, 0.010761445388197899, -0.006045601796358824, 0.014997478574514389, 0.008828497491776943, 0.02719835378229618, -0.013770537450909615, -0.0026783659122884274, 0.009870369918644428, 0.008609156124293804, 0.02089228294789791, -0.03122875466942787, -0.0022859503515064716, 0.07380843162536621, -0.008924459107220173, -0.011179564520716667, 0.015285364352166653, 0.011159001849591732, -0.019411727786064148, 0.0028308769688010216, 5.8101948525290936e-05, -0.032791562378406525, -0.009205491282045841, 0.03128359094262123, -0.012543595395982265, 0.009589338675141335, 0.0018061406444758177, 0.028295060619711876, -0.0012697819620370865, 0.00941797811537981, -0.014997478574514389, -0.00833497941493988, 0.026828214526176453, 0.034738220274448395, 0.011433178558945656, -0.00954135786741972, 0.003759651444852352, -0.0036431262269616127, 0.008218454197049141, -0.007293106522411108, -0.015120858326554298, 0.0029679653234779835, -0.0035334553103893995, 0.012029513716697693, 0.01257101260125637, 0.017958590760827065, -0.004616454243659973, 0.021605143323540688, 0.006878414191305637, -0.017807792872190475, -0.009102674201130867, 0.010590084828436375, -0.021701104938983917, 0.012118620797991753, 0.000565061520319432, 0.02545733004808426, 0.0168893001973629, -0.016217567026615143, -0.018520653247833252, -0.004890631418675184, -0.0021505753975361586, -0.008348687551915646, -0.021481763571500778, -0.008047093637287617, -0.002825736068189144, 0.023771140724420547, 0.02298973686993122, -0.015902262181043625, 0.024154989048838615, 0.024813013151288033, -0.00034978979965671897, 0.029282096773386, -0.015559541992843151, 0.006888695526868105, 0.0003386513562873006, 0.02290748432278633, -0.013119366951286793, -0.02089228294789791, 0.012200874276459217, 0.003298691473901272, 0.0017770093400031328, -0.005401285830885172, -0.005253915674984455, 0.007656391244381666, -0.020645523443818092, -0.023949356749653816, -0.0212487131357193, -0.00170846504624933, -0.00852690264582634, 0.005038001574575901, -0.00845835916697979, -0.011159001849591732, -0.03588976338505745, 0.001117271021939814, -0.0004161920223850757, 0.021906737238168716, -0.005445839371532202, -0.006940104067325592, -0.002990242326632142, -8.578739652875811e-05, 0.019754448905587196, -0.01466846652328968, -0.015737757086753845, 0.0033500995486974716, -0.01683446392416954, -0.05702880397439003, -0.012276272289454937, 2.212961408076808e-05, 0.01875370368361473, 0.0012543594930320978, 0.0005359302740544081, -0.013043968006968498, -0.003314113710075617, -0.024045318365097046, -0.03514948487281799, -0.012632702477276325, -0.026156481355428696, -0.007587846834212542, 0.004184625577181578, 0.020069751888513565, -0.007258834782987833, 0.003084490541368723, 0.015244238078594208, -0.0034717656672000885, 0.012831481173634529, -0.015312782488763332, -0.019960081204771996, -0.007985403761267662, 0.03166743740439415, 0.020535852760076523, 0.011426324024796486, 0.02345583774149418, -0.036575205624103546, 0.01727314665913582, -0.0029234117828309536, 0.00941112358123064, 0.001563665340654552, 0.003177025355398655, -0.011906133964657784, -0.003356953850015998, -0.0001299127470701933, 0.004311432596296072, -0.017232021316885948, 0.021893028169870377, -0.008472067303955555, 0.029940122738480568, 0.01728685572743416, 0.032873816788196564, 0.007628973573446274, 0.00427030585706234, 0.01260528527200222, 0.015244238078594208, -0.04918734356760979, 0.019973790273070335, -0.05319032818078995, 0.005558937322348356, 0.0192746389657259, -0.01666995882987976, 0.02958369255065918, 0.0009681873489171267, -0.04005725309252739, -0.01719089411199093, 0.0014368585543707013, 0.02732173167169094, 0.026800796389579773, -0.02503235451877117, -0.024264659732580185, -0.006395177450031042, 0.011159001849591732, -0.04079752787947655, -0.01053524948656559, -0.043429628014564514, 0.013859644532203674, 0.003972138278186321, 0.002246537245810032, 0.022263167425990105, 0.0032438558991998434, -0.03155776485800743, -0.03553333133459091, -0.011830735020339489, 0.00856117531657219, 0.012379089370369911, 0.043347373604774475, -0.008266435004770756, 0.002299659186974168, -0.010432432405650616, 0.006127854809165001, 0.014558795839548111, -0.015792591497302055, -0.0020100597757846117, -0.019631069153547287, 0.036739710718393326, -0.002237969310954213, 0.051380760967731476, 0.005336168687790632, 0.02086486481130123, 0.02564925327897072, -0.012146038934588432, 0.021577725186944008, -0.004081809427589178, -0.011344071477651596, -0.0018712576711550355, 0.007615264505147934, 0.001905529759824276, -0.0030022375285625458, 0.018315019086003304, -0.009685300290584564, 0.0004708132182713598, 0.038933124393224716, 0.00834183394908905, 0.018095677718520164, -0.012968569062650204, -0.03534140810370445, -0.01272181048989296, 0.023730015382170677, -0.0104872677475214, 0.02344212867319584, -0.028432149440050125, -0.01931576617062092, 0.020289093255996704, 0.006878414191305637, -0.002608108101412654, -0.0022945182863622904, 0.010158255696296692, -0.010322761721909046, 0.002721206285059452, 0.03534140810370445, 0.024264659732580185, -0.0214543454349041, -0.010590084828436375, -0.010473559610545635, -0.0005736295715905726, 0.005391004029661417, 0.00639860425144434, 0.02977561578154564, 0.010480414144694805, -0.0020477590151131153, -0.005401285830885172, -0.005983911920338869, -0.02504606358706951, -0.018301311880350113, 0.01909642480313778, -0.014243491925299168, -0.02505977265536785, -0.035012394189834595, -0.028267642483115196, -0.005137390457093716, -0.009815534576773643, 0.007759207393974066, 0.00471241632476449, 0.017451362684369087, -0.031091665849089622, -0.01695784367620945, -0.000893645454198122, -0.014983770437538624, 0.02320907823741436, -0.018273893743753433, 0.026389531791210175, 0.019713321700692177, 0.016354653984308243, -0.01656028814613819, 0.005733725149184465, 0.01864403299987316, -0.0003358667599968612, 0.040907200425863266, -0.006073019467294216, -0.010761445388197899, -0.0005732011632062495, -0.020014917477965355, 0.02316795103251934, -0.012968569062650204, -0.036767128854990005, 0.0022773821838200092, 0.028034592047333717, -0.0038761766627430916, -0.02341471053659916, 0.022756686434149742, -0.039426643401384354, 0.01653287000954151, 0.005456121172755957, -0.02128984034061432, -0.03580750897526741, -0.0015979375457391143, -0.005685744341462851, -0.0010590084129944444, -0.011213837191462517, 0.013832226395606995, 0.01676592044532299, 0.014970061369240284, -0.017958590760827065, 0.009130092337727547, -0.030296552926301956, 0.012056930921971798, -0.011693647131323814, 0.006744752638041973, -0.01895933598279953, 0.017917463555932045, 0.019425436854362488, 0.0072725433856248856, -0.009095819666981697, -0.008650282397866249, -0.01887708343565464, 0.03150293231010437, -0.010123983956873417, 0.005051710177212954, -0.0020871718879789114, -0.00690583186224103, -0.02751365676522255, 0.014092694967985153, -0.01705380529165268, -0.01706751435995102, -0.01061064749956131, -0.030433641746640205, 0.03416244685649872, 0.006593955680727959, 0.01873999461531639, 0.0055966367945075035, -0.004904340021312237, 0.005586355458945036, 0.0009587624808773398, -0.030954577028751373, 0.020110879093408585, -0.04247000813484192, -0.0033895124215632677, -0.0031787389889359474, -0.005620627198368311, 0.0044622295536100864, 0.014435416087508202, -0.015477288514375687, 0.01684817299246788, 0.029090173542499542, -0.007313670124858618, 0.004674716852605343, 0.0015987943625077605, 0.003937866538763046, -0.01898675411939621, 0.020234258845448494, -0.001718746731057763, -0.002034050179645419, 0.011056185699999332, -0.024854140356183052, -0.004407394211739302, -0.01645061746239662, -0.002464165212586522, -0.0003742086992133409, -0.005720016546547413, -0.012543595395982265, 0.02323649637401104, 0.015422453172504902, 0.011076748371124268, 0.00018614044529385865, -0.0027623327914625406, 0.02109791524708271, -0.022139787673950195, 0.006258088629692793, 0.0025515591260045767, -0.009705863893032074, 0.015271656215190887, -0.0051922257989645, -0.018479526042938232, -0.005661753937602043, -0.0275822002440691, -0.027924921363592148, 0.011056185699999332, 0.0011986673343926668, 0.00845150463283062, 0.010185673832893372, -0.0277878325432539, -0.006539120338857174, -0.005589782260358334, 0.011234399862587452, -0.0149152260273695, 0.002625244203954935, 0.011350925080478191, 0.011522285640239716, 0.008828497491776943, 0.024415457621216774, -0.026526618748903275, -0.011145292781293392, 0.0009750417666509748, 0.00237848493270576, -0.009260326623916626, 0.007642682176083326, -0.010007458738982677, 0.05299840494990349, 0.0002936692035291344, -0.018356146290898323, -0.047514863312244415, -0.007868878543376923, -0.031173918396234512, -0.008602301590144634, 0.012008950114250183, 0.0170949324965477, 0.017972297966480255, 0.008101928979158401, -0.0006284649716690183, 0.047158434987068176, -0.015614377334713936, 0.007354796398431063, -0.022496217861771584, 0.011803317815065384, 0.01883595623075962, 0.041153959929943085, -0.0053772954270243645, 0.004565046168863773, -0.00842408649623394, -0.03723322972655296, 0.024182407185435295, -0.001527679618448019, 0.009219199419021606, 0.03172227367758751, 0.015669211745262146, -0.0008662277832627296, -0.012660120613873005, -0.01468217559158802, -0.010069148615002632, 0.012392797507345676, -0.0047398339956998825, -0.009493377059698105, 0.00214200746268034, -0.010459850542247295, 0.009794970974326134, -0.012523031793534756, 0.009918350726366043, -0.01073402725160122, -0.011693647131323814, 0.01654657907783985, -0.008945022709667683, -0.013146784156560898, 0.013407252728939056, -0.01719089411199093, 0.014997478574514389, -0.015353908762335777, 0.002270527882501483, 0.03934439271688461, 0.008286998607218266, -0.001353748608380556, -0.021755941212177277, 0.015861136838793755, -0.041208796203136444, 0.0075055938214063644, 0.014983770437538624, 0.017725540325045586, -0.010809426195919514, -0.01041186973452568, 0.023935647681355476, -0.014860390685498714, 0.006998366676270962, -0.03438178822398186, -0.02144063636660576, -0.011268672533333302, 0.011097311973571777, 0.003992701880633831, -0.010295344516634941, -0.02730802446603775, -0.010034875944256783, 0.008972440846264362, -0.009603047743439674, -0.008876478299498558, -0.004671289585530758, -0.016011932864785194, 0.013050822541117668, 0.005668608471751213, -0.01660141348838806, -0.008040239103138447, 0.02089228294789791, 0.02070035971701145, -0.02732173167169094, -0.01909642480313778, 0.1919238567352295, -0.0019278066465631127, 0.03421728312969208, 0.04425215721130371, -0.0035882906522601843, 0.010679191909730434, -0.0006434590322896838, -0.011131583712995052, -0.02292119339108467, 0.010432432405650616, -0.02135838381946087, 0.02704755589365959, -0.02345583774149418, 0.006628227420151234, 0.01876741275191307, 0.019603651016950607, 0.01150172296911478, -0.049817949533462524, -0.0168207548558712, -0.0013117652852088213, 0.00625123456120491, 0.00320615665987134, -0.007766061928123236, -0.031173918396234512, 0.028185389935970306, -0.01159083005040884, 0.0033620947506278753, 0.0014659898588433862, 0.028432149440050125, 0.003965284209698439, -0.009020421653985977, 0.004455375485122204, -0.007862024009227753, 0.0011515431106090546, -0.024182407185435295, -0.010076003149151802, 0.002861721906810999, 0.013537487015128136, 0.021605143323540688, -0.006306069903075695, 0.024566253647208214, -0.02300344593822956, -0.05316291004419327, -0.022139787673950195, 0.01710864156484604, 0.008019675500690937, -0.009198636747896671, -0.032681893557310104, -0.03429953753948212, 0.023976773023605347, 0.00035364541690796614, 0.024771887809038162, 0.009088966064155102, 0.01488780789077282, -0.005456121172755957, -0.010247363708913326, -0.0010358748259022832, 0.013304436579346657, 0.008766807615756989, 0.017670704051852226, -0.013845935463905334, 0.0254024937748909, -0.0048734950833022594, 0.0031890205573290586, -0.009897788055241108, 0.002381912199780345, -0.03394310548901558, 0.017355401068925858, 0.010658628307282925, -0.007903150282800198, -0.014819263480603695, -0.014750720001757145, -0.005260770209133625, 0.0046404446475207806, -0.03172227367758751, -0.012995987199246883, 0.04000241681933403, 0.014462834224104881, 0.003248996799811721, 0.04041368141770363, -0.03619135543704033, -0.01926092989742756, -0.009767553769052029, 0.018438398838043213, -0.01380480919033289, -0.029172426089644432, 0.03539624437689781, -0.037041306495666504, -0.0036945343017578125, -0.02093341015279293, -0.0011549703776836395, 0.008101928979158401, -0.002424752339720726, 0.011926696635782719, 0.02536136656999588, 0.004585609305649996, -0.01905529759824276, 0.036986470222473145, -0.010932805947959423, -0.001284347614273429, -0.022400256246328354, 0.03564300388097763, 0.028651490807533264, 0.015203111805021763, 0.008136200718581676, 0.0060147568583488464, 3.475406992947683e-05, -0.01912384107708931, -0.01039130613207817, -0.016107896342873573, -0.02297602780163288, -0.0024470293428748846, 0.007156018167734146, -0.022619597613811493, 0.005161380860954523, 0.00954135786741972, -0.0033072594087570906, -0.012666975148022175, 0.005545228719711304, -0.002990242326632142, -0.0117484824731946, -0.02298973686993122, -0.026129063218832016, 0.006761888973414898, -0.01901417039334774, -0.018602905794978142, -0.030844906345009804, 0.014407998882234097, -0.0048357960768043995, -0.008355542086064816, 0.02108420617878437, -0.038987960666418076, 0.013969315215945244, -0.019946372136473656, -0.003055359236896038, 0.00745761301368475, -0.003632844425737858, -0.017725540325045586, -0.018383564427495003, 0.012200874276459217, 0.015970807522535324, -0.014325745403766632, -0.0038590405602008104, -0.024333203211426735, 0.015778882429003716, -0.011419469490647316, 0.004071527626365423, -0.00013655297516379505, 0.007008648011833429, -0.028953084722161293, -0.010542103089392185, -0.005493820644915104, 0.01890449970960617, -0.02108420617878437, 0.0052847606129944324, -0.020110879093408585, -0.01050783134996891, -0.0187948290258646, -0.003091345075517893, 0.0006575962761417031, -0.02314053475856781, 0.009369997307658195, 0.036712292581796646, 0.011645665392279625, -0.025978265330195427, -0.013887062668800354, -0.17470555007457733, 0.02127613127231598, 0.0008670846000313759, -0.022386547178030014, 0.024319494143128395, 0.005041428375989199, 0.028651490807533264, -0.02071406878530979, 0.021769650280475616, -0.0020991673227399588, -0.02562183514237404, -0.015326491557061672, -0.010672337375581264, -0.026197606697678566, -0.007464467082172632, 0.005812551360577345, -0.014709592796862125, 0.004308005329221487, 0.05642561614513397, 0.014819263480603695, 0.013242746703326702, -0.01381166372448206, 0.02308569848537445, -0.0035197464749217033, -0.009246617555618286, 0.017300564795732498, -0.0044279578141868114, 0.007615264505147934, -0.023592926561832428, -0.04033142700791359, 0.020549561828374863, -0.013839080929756165, 0.014476542361080647, -0.01651916094124317, 0.021495472639799118, -0.0024264659732580185, -0.014928934164345264, -0.021783357486128807, -0.0275822002440691, 0.0048700678162276745, 0.0035197464749217033, 0.04255226254463196, -0.003045077668502927, -0.020302802324295044, 0.007615264505147934, 0.01863032393157482, 0.01477813720703125, -0.03534140810370445, 0.010740881785750389, -0.01366772036999464, 0.03328508138656616, -0.018040843307971954, 0.032709307968616486, 0.0009870369685813785, 0.005997620522975922, -0.0035368825774639845, -0.032517384737730026, 0.019836701452732086, -0.02326391451060772, 0.005425276234745979, 0.008012820966541767, -0.021810775622725487, -0.005486966110765934, -0.0051887985318899155, 0.007862024009227753, -0.006210107821971178, -0.015573250129818916, 0.009445395320653915, -0.04406023398041725, 0.01366772036999464, -0.003075922606512904, -0.00745761301368475, 0.02533395029604435, -0.008218454197049141, -0.0030862041749060154, 0.01390762533992529, -0.009712718427181244, -0.0015131139662116766, 0.008122491650283337, -0.0019637923687696457, -0.00963731948286295, 0.01671108417212963, -0.014092694967985153, -0.006689917296171188, 0.018273893743753433, 0.006261515896767378, 0.008732535876333714, 0.0026697979774326086, 0.012187165208160877, -0.03328508138656616, 0.014051568694412708, -0.020659232512116432, -0.005538374185562134, 0.008739390410482883, 0.006970949005335569, 0.012406506575644016, 0.009061547927558422, -0.011954114772379398, 0.001737596350722015, -0.005103118252009153, 0.015477288514375687, -0.03457371145486832, -0.03599943220615387, 0.007999111898243427, 0.013057677075266838, 0.026458075270056725, -0.03608168661594391, -0.0013417534064501524, 0.0422232486307621, 0.030598146840929985, -0.028486983850598335, -0.013996733352541924, 0.00843094103038311, 0.03125617280602455, -0.004164062440395355, 0.03953631594777107, -0.02353809028863907, -0.02309940755367279, 0.015079732052981853, 0.01173477340489626, 0.04633590206503868, 0.001495121163316071, -0.012036368250846863, 0.010768299922347069, -0.0013254741206765175, 0.0051853712648153305, -0.11186419427394867, -0.014503960497677326, -0.021838193759322166, 0.026540327817201614, 0.00931516196578741, 0.0209745354950428, -0.010110274888575077, 0.00734794232994318, 0.008602301590144634, 0.02773299813270569, 0.0030862041749060154, -0.008945022709667683, -0.010706610046327114, -0.004979738965630531, -0.03328508138656616, 0.0063300603069365025, -0.02105678990483284, -0.015792591497302055, -0.01248190551996231, 0.029062755405902863, 0.005343023221939802, 0.015436162240803242, -0.017602160573005676, 0.0006353193894028664, 0.0013383262557908893, -0.0020391910802572966, -0.02963852696120739, 0.017629576846957207, 0.015929680317640305, 0.0009776122169569135, -0.002861721906810999, -0.02961111068725586, -0.005007156636565924, -0.015244238078594208, 0.012022659182548523, -0.014147530309855938, -0.010432432405650616, -0.009479667991399765, 0.022688142955303192, -0.025909721851348877, -0.0007282824954017997, -0.0003857755218632519, 0.0034649111330509186, 0.005778279155492783, -0.0049660298973321915, -0.004064673092216253, -0.03769933059811592, 0.026677416637539864, 0.0013263309374451637, -0.017519906163215637, -0.01917867735028267, -0.027897503226995468, -0.0423603393137455, 0.018589196726679802, 0.016395781189203262, -0.0007651250343769789, 0.0009064975311048329, -0.001714462647214532, -0.01457250490784645, 0.015641795471310616, 0.0014051567995920777, -0.0029028484132140875, -0.015408744104206562, 0.00942483264952898, 0.005000302102416754, 0.00854746624827385, -0.038658950477838516, -0.009904641658067703, 0.009232908487319946, -0.013941898010671139, -0.004095518030226231, 0.023908229544758797, -0.022002700716257095, 0.02974819764494896, -0.007306815590709448, 0.008348687551915646, -0.01139890681952238, -0.0012466482585296035, -0.00026410951977595687, 0.02087857387959957, -0.015148276463150978, -0.02961111068725586, -0.015161984600126743, -0.02135838381946087, 0.012063785456120968, 0.02725318819284439, 0.005548655986785889, 0.026375822722911835, 0.03811059519648552, -0.026910467073321342, 0.02351067215204239, 0.024168698117136955, 0.015312782488763332, 0.009561920538544655, -0.0011147006880491972, -0.007910004816949368, 0.01390762533992529, -0.018479526042938232, 0.009980040602385998, 0.010768299922347069, -0.03333991765975952, -0.00952079426497221, -0.04230550304055214, 0.007001793943345547, -0.0170949324965477, -0.017794083803892136, 0.005411567632108927, 0.002736628521233797, -0.01161139365285635, -0.0015371044864878058, -0.003271273570135236, 0.002399048302322626, -0.030817488208413124, -0.013290727511048317, -0.02521057054400444, 0.013318144716322422, -0.01875370368361473, -0.030378805473446846, 0.0025207141879945993, -0.004078382160514593, 0.011878715828061104, 0.022496217861771584, 0.0016322096344083548, -0.00952764879912138, -0.007642682176083326, 0.021975282579660416, -0.0336415097117424, -0.0019398018484935164, -0.014462834224104881, 0.028596654534339905, -0.02562183514237404, -0.02715722657740116, 0.006155272480100393, 0.002188274636864662, -0.019576234742999077, 0.0033860851544886827, -0.004287442192435265, 0.01367457490414381, 0.014003587886691093, 0.029035339131951332, 0.0033877987880259752, 0.017355401068925858, -0.005123681854456663, -0.0209745354950428, 0.00432171393185854, -0.0030073784291744232, -0.013112512417137623, -0.01891820877790451, -0.021577725186944008, 0.009123237803578377, 0.009328870102763176, 0.011652519926428795, 0.024484001100063324, 0.013441524468362331, -0.00854061171412468, -0.01889079064130783, -0.011535994708538055, -0.01863032393157482, -0.0017153194639831781, -0.01878111995756626, -0.003595145186409354, -0.0026629436761140823, 0.03959115222096443, -0.007015502545982599, -0.008917605504393578, -0.010302199050784111, -0.00120209448505193, -0.018520653247833252, -0.022345421835780144, 0.024374330416321754, 0.017533615231513977, -0.018246475607156754, -0.013407252728939056, 0.005418421700596809, 0.009568775072693825, 0.009575629606842995, 0.017437653616070747, 0.010199381969869137, -0.026704834774136543, -0.00046181678771972656, 0.0021471481304615736, 0.010274780914187431, 0.017561033368110657, 0.0073685054667294025, -0.00641231331974268, -0.0036945343017578125, 0.051572684198617935, 0.012913733720779419, 0.010658628307282925, 0.006049029063433409, 0.018301311880350113, -0.013969315215945244, 0.01872628554701805, -0.0015422452706843615, -0.02925468049943447, -0.0032284334301948547, 0.017780374735593796, 0.007197144906967878, -0.011659374460577965, 0.01370884757488966, 0.013468942604959011, 0.007711226586252451, 0.011021913029253483, -0.019727030768990517, -0.01173477340489626, 0.013722555711865425, -0.028678908944129944, 0.00031787389889359474, -0.009369997307658195, -0.012879461981356144, 0.0005235066055320203, 0.019672196358442307, -0.00421889778226614, 0.012440779246389866, 0.0275822002440691, 0.007964840158820152, -0.030461058020591736, 0.008389814756810665, -0.017478780820965767, -0.0041023725643754005, -0.018410982564091682, 0.014449125155806541, -0.010569521225988865, 0.015340199694037437, 0.04433441162109375, -0.004568473435938358, 0.004503356292843819, 0.01370884757488966, 0.03325766324996948, -0.009959477931261063, 0.010329616256058216, 0.006587101146578789, -0.019672196358442307, 0.026855630800127983, -0.006621373351663351, -0.004616454243659973, -0.0033500995486974716, -0.01488780789077282, 0.02533395029604435, 0.019425436854362488, 0.007539866026490927, 0.08773662149906158, 0.02120758593082428, -0.006319778505712748, 0.006055883131921291, -0.0022722415160387754, 0.011289236135780811, 0.009993749670684338, -0.015861136838793755, -0.011693647131323814, -0.032764144241809845, 0.017478780820965767, -0.0008790798019617796, -0.0234969649463892, -0.021810775622725487, -0.012447632849216461, 0.018342437222599983, -0.021618852391839027, 0.015929680317640305, -0.026499202474951744, -3.551046575012151e-06, 0.007567283697426319, 0.021413220092654228, 0.005576073657721281, -0.015024896711111069, -0.0188633743673563, -0.002381912199780345, 0.033010903745889664, -0.019699612632393837, -0.024456582963466644, -0.03139325976371765, -0.014202365651726723, -0.014353162609040737, -0.03188677877187729, -0.030844906345009804, 0.008657136932015419, 0.01490151695907116, -0.015340199694037437, -0.02722577005624771, 0.018287602812051773, -0.013249601237475872, 0.010213091038167477, -0.00014169378846418113, -0.019713321700692177, -0.021659977734088898, 0.0003575010341592133, 0.0034649111330509186, -0.024689633399248123, -0.008677700534462929, -0.03756223991513252], "3c0babf6-7299-46e3-8b25-a99533bce746": [0.023352891206741333, 0.014708084985613823, 0.00038578108069486916, -0.026689017191529274, 0.0018004495650529861, 0.0039451029151678085, -0.004666606429964304, 0.009088299237191677, 0.007453331723809242, 0.0054013486951589584, -0.009472218342125416, 0.008525658398866653, -0.042072270065546036, 0.009505314752459526, -0.0064571271650493145, 0.013966723345220089, 0.015436207875609398, 0.005252414382994175, -0.0015058907447382808, -0.00747980922460556, -0.0027155678253620863, 0.014085870236158371, -0.029310259968042374, 0.007228275761008263, -0.003286482533439994, 0.012695817276835442, -0.0018517491407692432, -0.021036135032773018, 0.011583775281906128, 0.0013404082274064422, 0.012239085510373116, -0.006410792004317045, -0.01845460943877697, -0.01589955948293209, -0.046573396772146225, 0.00582829350605607, -0.012066983617842197, -0.025034192949533463, 0.014800755307078362, -0.03052821196615696, 0.032328661531209946, 0.0257093608379364, -0.025854986160993576, 0.01948721893131733, -0.02373681031167507, 0.013370986096560955, 0.024676751345396042, -0.026861120015382767, -0.008499180898070335, -0.0019990287255495787, 0.020599260926246643, 0.01409910898655653, -0.024915045127272606, 0.008009352721273899, -0.0046732258051633835, -0.012378090992569923, -0.002066876506432891, 0.004650058224797249, 0.012073603458702564, -0.012113318778574467, 0.019738752394914627, 0.018242791295051575, -0.018414892256259918, -0.006351218558847904, -0.016971886157989502, 0.006476985290646553, -0.006192355416715145, 0.012119938619434834, -0.02344556152820587, 0.03987466171383858, 0.002139688702300191, 0.024756181985139847, 0.0073540424928069115, 0.0020569474436342716, 0.02172454260289669, 0.00984289962798357, 0.007843870669603348, 0.005626405123621225, 0.016813023015856743, 0.001006960985250771, 0.008757334202528, -0.007049554493278265, -0.018666425719857216, 0.031613778322935104, 0.01035920437425375, -0.013754905201494694, 0.0022290493361651897, 0.01621728576719761, -0.007711484562605619, -0.026794927194714546, -0.009028725326061249, 0.00044928499846719205, 0.009392786771059036, 0.010240057483315468, 0.022876301780343056, 0.007857109420001507, -0.0005283028585836291, 0.013940245844423771, -0.019659321755170822, -0.011689684353768826, -0.014747800305485725, 0.008552135899662971, -0.01540973037481308, -0.01401967741549015, -0.004511053208261728, -0.014337403699755669, 0.012126557528972626, -0.009604603983461857, 0.020096195861697197, -0.0063015734776854515, -0.0309518463909626, 0.020837556570768356, -0.007393758278340101, -0.016680635511875153, 0.011497723869979382, -0.019699037075042725, 0.007764439098536968, -0.005037287250161171, -0.02606680430471897, -0.006956884171813726, 0.02495476044714451, -0.017395520582795143, 0.005533734802156687, 0.002952207811176777, 0.04855918511748314, -0.01916949264705181, 0.010352585464715958, -0.039583414793014526, -0.016429102048277855, -0.014496266841888428, 0.039901141077280045, -0.001307311817072332, 0.005096861161291599, 0.014085870236158371, 0.004785753786563873, 0.02085079438984394, -0.007804154884070158, -0.007420235313475132, -0.003567802719771862, -0.0024309379514306784, 0.021539201959967613, -0.002133069559931755, -0.020744886249303818, 0.024623796343803406, 0.002382948063313961, -0.005533734802156687, 0.013192265294492245, 0.01230527926236391, 0.011570536531507969, -0.013185645453631878, 0.021314145997166634, -0.022055508568882942, 0.023591184988617897, 0.0013296519173309207, -0.0024292832240462303, -0.005381491035223007, -0.014138825237751007, 0.0038756001740694046, 0.013490133918821812, -0.02454436384141445, 0.0021082470193505287, 0.02651691623032093, -0.007638672366738319, -0.015939274802803993, -0.007029696833342314, 0.029389692470431328, 0.007254752796143293, 0.00871099904179573, -0.018414892256259918, -0.005371562205255032, 0.008346937596797943, 0.005216008517891169, 0.004825469572097063, 0.0230484027415514, -0.0004852774436585605, 0.005510567221790552, 0.012603146955370903, 0.0005990466452203691, -0.014615414664149284, -0.011146901175379753, -0.011616871692240238, 0.01787211000919342, -0.005672740284353495, 0.03648558259010315, -0.019725514575839043, 0.013483514077961445, 0.017885347828269005, 0.021512724459171295, 0.011921359226107597, -0.0004161885008215904, 0.009823041036725044, 0.01283482275903225, -0.0010863926727324724, -0.010365824215114117, -0.6185073852539062, -0.005924273747950792, -0.025140101090073586, -0.0030068170744925737, 0.011921359226107597, -0.0001170788673334755, 0.0019526935648173094, -0.00038040289655327797, -0.02703322097659111, 0.03254047781229019, -0.001359438756480813, 0.002227394375950098, 0.016905691474676132, -0.02544458955526352, 0.014694846235215664, 0.0001847198436735198, -0.005060454830527306, -0.02085079438984394, -0.010935083962976933, -0.004064250271767378, -0.050518497824668884, 0.032911159098148346, -0.019699037075042725, -0.008631567470729351, -0.005970608443021774, 0.02201579138636589, 0.02461055852472782, -0.022161416709423065, 0.01702483929693699, 0.03415558859705925, -0.019010629504919052, -0.02369709499180317, -0.00033717058249749243, 0.018335461616516113, 0.03383786231279373, -0.02204226888716221, -0.010888748802244663, -0.00027987227076664567, -0.00924054253846407, 0.03216979652643204, -0.015528878197073936, 0.0033113048411905766, 0.013662234880030155, -0.0016473783180117607, 0.007287849206477404, -0.03934511914849281, 0.005603237543255091, 0.018441369757056236, 0.00992233119904995, -0.02337936870753765, 0.0015886320034042, 0.005659501533955336, 0.034076157957315445, -0.015674501657485962, 0.020082956179976463, 0.006520010530948639, 0.0056429533287882805, -0.00016579277871642262, 0.004643438849598169, -0.04175454378128052, -0.017819155007600784, -0.008221170864999294, -0.017104271799325943, 0.010954941622912884, -0.016746828332543373, 0.024491410702466965, -0.011497723869979382, -0.010081194341182709, 0.003501609666272998, -0.0022869680542498827, 0.0230881180614233, 0.03513524308800697, -0.018308984115719795, -0.0055701411329209805, 0.013834336772561073, 0.015356776304543018, 0.03370547667145729, -0.004285996779799461, 0.006639157887548208, 0.010140767320990562, 0.007446712348610163, -0.0042164940387010574, 0.007718103937804699, -0.018825288861989975, 0.029733896255493164, -0.015621548518538475, 0.00576210068538785, -0.002722187200561166, -0.0008687831577844918, 0.009200827218592167, 0.04389919713139534, 0.013609280809760094, -0.013384224846959114, 0.002932349918410182, -0.008658044040203094, 0.010266534052789211, 0.00036654373980127275, -0.010458494536578655, -0.022651243954896927, -0.014522744342684746, -0.00908167939633131, -0.021486248821020126, 0.023803003132343292, -0.002804928459227085, 0.026040326803922653, 0.010822555981576443, 0.009167730808258057, 0.006268477067351341, 0.05163054168224335, -0.02085079438984394, -0.008386652916669846, -0.03447331488132477, -0.011941216886043549, 0.02327345870435238, -0.022717438638210297, -0.017051316797733307, 0.04466703534126282, -0.0005709146498702466, 0.02107585221529007, -0.017660291865468025, -0.0072812302969396114, 0.02463703416287899, -0.011034373193979263, 0.006798021029680967, 0.012093461118638515, 0.012040507048368454, 0.013860814273357391, -0.002346541965380311, -0.035373538732528687, 0.004792373161762953, 0.0015629822155460715, 0.0077975355088710785, -0.007843870669603348, -0.010901987552642822, 0.01020034123212099, 0.004514362663030624, 0.028674807399511337, -0.007718103937804699, 0.032063890248537064, 0.002331648487597704, -0.014006438665091991, -0.0035644930321723223, 0.010723265819251537, -0.024094251915812492, 0.0032401473727077246, -0.02952207811176777, -0.005315297748893499, -0.027959924191236496, 0.008095404133200645, -0.017527906224131584, -0.0066126808524131775, 0.0035777317825704813, -0.005331846419721842, 0.03240809217095375, -0.01417854055762291, -0.01254357397556305, -0.00792992115020752, -0.014205018058419228, -0.003395700827240944, -0.02055954560637474, -0.0009167730459012091, 0.03052821196615696, 0.005361632909625769, 0.02418692223727703, 0.00027966542984358966, -0.03717399016022682, -0.013053259812295437, 0.00751952501013875, -0.015568593516945839, -0.0443493090569973, 0.0035578738898038864, 0.0124178072437644, -0.004822160117328167, -0.013688712380826473, -0.022029031068086624, 0.012662720866501331, -0.027245039120316505, 0.025338681414723396, -0.0025484305806457996, -0.01971227489411831, 0.018017735332250595, 0.021062612533569336, 0.0052855112589895725, -0.01379462145268917, 0.027245039120316505, 0.030025145038962364, 0.019990285858511925, 0.01548916194587946, -0.012066983617842197, 0.003633995773270726, -0.001481068436987698, -0.011947836726903915, -0.030898893252015114, 0.007651910651475191, 0.0010210269829258323, 0.025100385770201683, 0.017660291865468025, 0.0075129056349396706, -0.0074268546886742115, 0.017051316797733307, 0.015806889161467552, -0.003653853666037321, 0.02029477432370186, -0.035558879375457764, -0.01881205104291439, -0.01133224181830883, 0.029548555612564087, 0.004395215306431055, 0.028674807399511337, 0.009359690360724926, -0.004471336957067251, -0.009756848216056824, -0.033626046031713486, 0.00042611744720488787, 0.026689017191529274, 0.026371290907263756, 0.0032037412747740746, 0.010332727804780006, -0.0028032734990119934, -0.006212213076651096, 0.01596575230360031, 0.010981419123709202, 0.001679647364653647, 0.018851766362786293, -0.022095223888754845, 0.010617357678711414, 0.01961960457265377, -0.01401967741549015, -0.00755924079567194, -0.05745552480220795, -0.005960679613053799, -0.006572965066879988, -0.0004306682094465941, 0.0042297327890992165, 0.011822069995105267, 0.0077842967584729195, 0.06100346893072128, -0.027695151045918465, 0.010299630463123322, -0.0045971036888659, 0.008492561988532543, 0.029442647472023964, 0.0013726773904636502, -0.047738391906023026, 0.023617662489414215, 0.007168701849877834, 0.01599222980439663, 0.045249536633491516, 0.014681607484817505, 0.015886319801211357, 0.022055508568882942, 0.024517888203263283, -0.031905025243759155, -0.0027486642356961966, -0.02729799412190914, -0.004683154635131359, 0.006718589458614588, 0.00434557069092989, 0.006870833691209555, 0.0058845579624176025, 0.026490438729524612, -0.00293400464579463, 0.0007463260553777218, 0.00508362241089344, 0.014363881200551987, 0.0018798812525346875, -0.01021357998251915, -0.006089756265282631, -0.005772029515355825, -0.002804928459227085, -0.00043232302414253354, -0.04331669956445694, -0.008168215863406658, 0.0009250472066923976, 0.03357309103012085, -0.006857594940811396, 0.020122671499848366, 0.020546307787299156, 0.010650454089045525, -0.0091942073777318, -0.010074574500322342, -0.0037432140670716763, 0.023776525631546974, 0.005282201338559389, -0.023233743384480476, -0.019209207966923714, -0.0021628562826663256, 0.007943159900605679, -0.0023912221658974886, -0.016376148909330368, -0.02360442467033863, 0.009644320234656334, 0.0004625236033461988, 0.006265167612582445, -0.014112347736954689, 0.009055202826857567, 0.017779439687728882, -0.0151846744120121, 0.025113623589277267, -0.00017820396169554442, 0.005368252284824848, -0.0033311627339571714, -0.04233704134821892, 0.016535012051463127, 0.05364280939102173, 0.0019394549308344722, -0.005752171855419874, -5.9315134421922266e-05, 0.0035644930321723223, -0.005983847193419933, 0.000758323585614562, -0.025365157052874565, 0.0018765715649351478, -0.004219803959131241, 0.021261190995573997, 0.03730637580156326, -0.0008261713664978743, -0.02114204503595829, 0.03021048568189144, -0.016693875193595886, -0.003951722290366888, -0.01993733085691929, -0.017766201868653297, 0.003303030738607049, 0.007857109420001507, 0.008174835704267025, 0.00023829480051063, -0.00789682473987341, -0.011285906657576561, 0.018308984115719795, -0.020837556570768356, -0.012570050545036793, -0.00441838288679719, -0.0064438884146511555, -0.028833670541644096, -0.0011931288754567504, 0.012728913687169552, 0.010398920625448227, 0.017845632508397102, -0.0011112149804830551, -0.005530425347387791, -0.005480780266225338, 0.0090485829859972, -0.02165834978222847, 0.017104271799325943, 0.016243763267993927, 0.013271696865558624, 0.011484486050903797, -0.02758924290537834, 0.007579098455607891, -0.01608489826321602, -0.001042539719492197, -0.004269448574632406, -0.02123471535742283, -0.00045838652295060456, -0.0031689899042248726, -0.005325227044522762, 0.03987466171383858, -0.026556631550192833, 0.019275402650237083, 0.03733285143971443, -0.018216313794255257, 0.02318078838288784, -0.007956398651003838, 0.017276372760534286, 0.0009788289899006486, 0.005494019016623497, 0.0023101356346160173, -0.011696303263306618, 0.01615109294652939, -0.02266448363661766, 0.032037410885095596, -0.0022638007067143917, -0.012040507048368454, 0.005361632909625769, -0.0010607428848743439, -0.05332508310675621, -0.008975771255791187, 0.008571993559598923, 0.004170158877968788, -0.030898893252015114, 0.0066126808524131775, -0.020453637465834618, -0.012444283813238144, 0.00880366936326027, -0.012318517081439495, 0.021473009139299393, -0.010895367711782455, 0.01395348459482193, -0.012311898171901703, -0.0061691878363490105, 0.02519305609166622, 0.007076031994074583, -0.028118787333369255, 0.02790696918964386, -0.0012386365560814738, 0.0017772821011021733, 0.004441550467163324, 0.02490180730819702, 0.014615414664149284, 0.010617357678711414, -0.013397463597357273, -0.0056561920791864395, 0.0043157837353646755, -0.0005332673899829388, -0.002422663848847151, -0.03150786831974983, -0.008207932114601135, -0.007731342688202858, 0.016945408657193184, 0.028542421758174896, -0.015078765340149403, -0.011808831244707108, -0.011868405155837536, 0.008399891667068005, 0.007916683331131935, 0.011947836726903915, -0.01115352101624012, -0.0024772731121629477, -0.003984818700700998, -0.006731828209012747, 0.011570536531507969, 0.011967694386839867, -0.01946074143052101, 0.005732313729822636, -0.015687741339206696, 0.022201132029294968, 0.011530820280313492, -0.005318607669323683, -0.02606680430471897, 0.01039230078458786, -0.024067774415016174, 0.009088299237191677, 0.00579519709572196, 0.0485062301158905, -0.008399891667068005, 0.02790696918964386, 0.011146901175379753, 0.017567621544003487, 0.016879215836524963, -0.004894972313195467, 0.014059393666684628, 0.027271516621112823, -0.036114901304244995, 0.004239661619067192, -0.06285687536001205, -0.011093947105109692, 0.028118787333369255, 0.0021678206976503134, 0.014535983093082905, 0.007863728329539299, -0.03463217616081238, -0.04575260356068611, 0.0274568572640419, 0.031163664534687996, -0.0036968791391700506, 0.00046790175838395953, -0.014919902198016644, -0.023723570629954338, -0.003766381647437811, -0.053007353097200394, 0.014853709377348423, -0.009545031003654003, 0.027986399829387665, -0.027403902262449265, -0.012556811794638634, 0.00995542760938406, 0.010590880177915096, -0.028383558616042137, -0.03079298324882984, -0.0023084809072315693, 0.0198446623980999, 0.023683855310082436, 0.008876481093466282, 0.0015414694789797068, 0.028727762401103973, -0.03463217616081238, 0.006222141906619072, 0.016111375764012337, 0.014350642450153828, -0.0049710944294929504, 0.003766381647437811, 0.012881157919764519, 1.3600592865259387e-05, 0.046017374843358994, 0.011312384158372879, 0.03359956666827202, -0.0033295080065727234, -0.0024855472147464752, 0.03391729295253754, -0.01416530180722475, -0.013470275327563286, -0.01579364947974682, 0.001714398735202849, 0.01574069634079933, 0.0036704018712043762, -0.005987157113850117, -0.007148844189941883, 0.0024127347860485315, 0.033334795385599136, -0.0006462091696448624, 0.030713552609086037, -0.016587965190410614, -0.021261190995573997, -0.02087727189064026, 0.02949560061097145, -0.008399891667068005, 0.02392215095460415, -0.0004339778679423034, -0.004342260770499706, 0.007771058473736048, -0.01731608808040619, -0.004312473814934492, 0.008055687882006168, -0.008373414166271687, 0.0003369637415744364, 0.014588937163352966, 0.013423940166831017, 0.009412644430994987, -0.027403902262449265, -0.025166578590869904, -0.02324698120355606, -0.0028578827623277903, -0.018414892256259918, -0.018269268795847893, 0.021962838247418404, -0.007387138903141022, -0.017554383724927902, -0.005457612685859203, 0.0014421800151467323, -0.017263134941458702, -0.026132997125387192, 0.024941522628068924, -0.007076031994074583, -0.013185645453631878, -0.0180971659719944, -0.038286030292510986, -0.016402626410126686, -0.0037167370319366455, 0.017342565581202507, 0.007320946082472801, 0.02586822398006916, -0.024517888203263283, -0.01912977732717991, -0.019222447648644447, -0.012086842209100723, 0.022452665492892265, 0.02130090817809105, 0.04122500121593475, 0.01139843463897705, 0.012940731830894947, -0.014628653414547443, -0.01664092019200325, 0.024531126022338867, -0.006877452600747347, 0.033493656665086746, 0.006119542755186558, -0.004011295735836029, 0.017051316797733307, -0.006311502773314714, 0.010961560532450676, -0.02878071740269661, -0.062274374067783356, 0.012841441668570042, 0.005725694354623556, 0.010140767320990562, -0.01744847558438778, 0.019884377717971802, -0.05104804039001465, 0.020215341821312904, -0.031031278893351555, -0.01615109294652939, -0.033493656665086746, -0.03224923089146614, -0.021618634462356567, 0.014363881200551987, 0.005388110410422087, 0.014284449629485607, 0.030634120106697083, -0.002616278361529112, -0.00998852401971817, 0.004868495278060436, -0.041516248136758804, 0.009022106416523457, -0.005589998792856932, 0.021512724459171295, -0.013536469079554081, -0.005583379417657852, 0.025497544556856155, -0.003690259763970971, 0.007863728329539299, -0.003372533479705453, -0.023167550563812256, 0.029892759397625923, -0.04445521906018257, -0.019990285858511925, -0.018467847257852554, -0.008148358203470707, -0.016746828332543373, 0.03637967258691788, -0.015131720341742039, -0.02434578537940979, -0.005494019016623497, -0.013006924651563168, 0.02036096714437008, 0.028092309832572937, 0.008571993559598923, -0.014694846235215664, -0.028012877330183983, -0.008340317755937576, -0.035823650658130646, -0.004653368145227432, 0.02369709499180317, -0.016045182943344116, -0.0230881180614233, -0.02660958655178547, 0.0025318823754787445, 0.008320460096001625, 0.017819155007600784, -0.017752962186932564, 0.0048287794925272465, 0.021446531638503075, -0.02210846170783043, 0.02295573242008686, -0.02369709499180317, -0.0027288063429296017, -0.012146415188908577, 0.012484000064432621, -0.00016558592324145138, -0.007036315742880106, -0.0017524596769362688, -0.008002733811736107, -0.024266354739665985, -0.0005233383853919804, 0.002879395615309477, 0.023882433772087097, -0.013437178917229176, 0.009723751805722713, 0.004454788751900196, -0.006407482549548149, -0.008883100934326649, 0.0024127347860485315, -0.002914146753028035, 0.0361943319439888, -0.03431444987654686, 0.013754905201494694, 0.003215325064957142, 0.009789944626390934, 0.011471247300505638, -0.01309297513216734, -0.011113804765045643, -0.008671282790601254, 0.0021065922919660807, -0.021671587601304054, -0.003178918967023492, -0.011550678871572018, 0.023524992167949677, 0.007493047509342432, -0.045249536633491516, -0.021684827283024788, 0.0027321160305291414, 0.03651205822825432, -0.025749078020453453, -0.013847575522959232, -0.017342565581202507, 0.006238690111786127, 0.005914344452321529, 0.013271696865558624, -0.006381005048751831, 0.003155751386657357, 0.0008737476309761405, 0.04270772263407707, 0.0036273763980716467, -0.031137187033891678, 0.010240057483315468, 0.05086270347237587, 0.016905691474676132, -0.0027470095083117485, -0.02382948063313961, -0.014641892164945602, -0.021314145997166634, -0.015065526589751244, -0.0077842967584729195, 0.03709455579519272, 0.006937026511877775, 0.015595071017742157, -0.002210846170783043, 0.03301706910133362, -0.009538411162793636, 0.027880491688847542, -0.03982171043753624, -0.0015969061059877276, 0.030634120106697083, 0.03868319094181061, -0.001519956742413342, 0.002738735405728221, 0.006764924619346857, -0.02398834377527237, 0.021552441641688347, 0.008234409615397453, 0.0023746739607304335, 0.01816335879266262, 0.010776220820844173, -0.018666425719857216, -0.04228409007191658, -0.0044448599219322205, 0.00927363894879818, 0.014641892164945602, -0.014986095018684864, -0.00763205299153924, -0.014602175913751125, -0.026715494692325592, 0.01539649162441492, -0.052557241171598434, 0.008333698846399784, 0.0018087237840518355, -0.012258944101631641, 0.014946379698812962, -0.003375842934474349, -0.03391729295253754, 0.010114290751516819, -0.029760373756289482, 0.027139130979776382, -0.0006780645344406366, 0.010974799282848835, 0.03280525282025337, 0.004616961814463139, 0.006738447584211826, -0.02683464251458645, 0.009902472607791424, -0.02356470748782158, 0.0070429351180791855, 0.019090062007308006, 0.008068926632404327, -0.036829784512519836, -0.008247647434473038, 0.01162349060177803, -0.019407788291573524, 0.01648205704987049, -0.0116698257625103, -0.029283784329891205, -0.03667092323303223, 0.023061640560626984, -0.00032062234822660685, 0.008797049522399902, 0.007029696833342314, 0.01301354356110096, -0.011471247300505638, 0.01304663997143507, -0.022465905174613, -0.04649396240711212, -0.0408543199300766, 0.018335461616516113, -0.012212608940899372, 0.009366309270262718, -0.0010491590946912766, 0.0009564888314343989, 0.002771831816062331, -0.040457163006067276, -0.00047452107537537813, 0.16860681772232056, -0.0058713192120194435, 0.018401654437184334, 0.015648026019334793, -0.016137853264808655, 0.023882433772087097, 0.007334184367209673, -0.009637701325118542, -0.024133967235684395, 0.005566831212490797, -0.0248356144875288, 0.0198446623980999, 4.617996091837995e-05, 0.01268919836729765, 0.01380786020308733, -0.0027767964638769627, -0.003643924603238702, -0.03050173446536064, -0.016429102048277855, -0.002520298585295677, 0.0018120333552360535, -0.005245795473456383, -0.04548782855272293, -0.023299936205148697, 0.045117150992155075, -0.011272667907178402, -0.01767353154718876, 0.007916683331131935, 0.020056478679180145, -0.005934202577918768, -0.020705170929431915, -0.02748333476483822, -0.002220775233581662, 0.020122671499848366, -0.018441369757056236, 0.0050439066253602505, 0.03704160451889038, 0.027112653478980064, 0.026411008089780807, -0.01372842863202095, -0.000618904537986964, -0.01596575230360031, -0.006020253524184227, -0.021803975105285645, 0.0115242013707757, 0.008995628915727139, 0.0031590608414262533, -0.007790916133671999, -0.02949560061097145, 0.0321168452501297, -0.023366129025816917, 0.0017789369449019432, 0.03688273951411247, 0.018136881291866302, 0.006897310726344585, 0.0016101447399705648, -0.0029737206641584635, -0.014496266841888428, -0.004812231287360191, 0.00564957270398736, -0.011451388709247112, 0.026411008089780807, -0.004090727306902409, 0.010220198892056942, -0.03939807415008545, 0.037544671446084976, -0.022161416709423065, -0.002184369135648012, 0.01865318790078163, -0.023392606526613235, -0.01773972436785698, -0.013834336772561073, -0.01003485918045044, 0.015422969125211239, -0.04146329686045647, -0.017514668405056, 0.00019599334336817265, 0.012007410638034344, 0.015065526589751244, 0.015912797302007675, -0.01505228877067566, -0.014509505592286587, -0.013781382702291012, 0.007638672366738319, -0.045302487909793854, -0.0032070509623736143, 0.008068926632404327, -0.0001499685167800635, 0.032646387815475464, -0.017832394689321518, 0.000617249752394855, -0.01744847558438778, 0.00640086317434907, 0.01897091418504715, 0.009498695842921734, 0.02149948664009571, -0.008062307722866535, 0.026278620585799217, 0.016535012051463127, -0.015171435661613941, -0.03010457754135132, 0.02172454260289669, 0.026106519624590874, -0.004080798476934433, 0.0034122492652386427, -0.031190142035484314, -0.0259608943015337, 0.012742152437567711, -0.0077975355088710785, -0.031163664534687996, -0.007863728329539299, -0.014681607484817505, 0.009889233857393265, -0.009644320234656334, 0.01803097315132618, -0.02120823785662651, -0.024663511663675308, -0.005904415622353554, 0.009657558985054493, 0.0025633240584284067, -0.005100170616060495, 0.005027358420193195, -0.022479142993688583, -0.0028148572891950607, -0.014919902198016644, -0.0028843600302934647, -0.03706808015704155, -0.005967298988252878, 0.021155282855033875, -0.0023432322777807713, 0.016468819230794907, -0.05205417424440384, 0.0023945318534970284, -0.01912977732717991, -0.006642467807978392, -0.00257821730338037, -0.012669340707361698, 0.003928554710000753, 0.012113318778574467, 0.001678820000961423, 0.004057630896568298, -0.016746828332543373, 0.0008571993676014245, -0.03778296336531639, -0.022068746387958527, -0.0007181940600275993, 0.013569565489888191, 0.008207932114601135, 0.018203075975179672, -0.006010324228554964, -0.010094432160258293, -0.021314145997166634, 0.024107491597533226, -0.027721628546714783, -0.013298173435032368, -0.02660958655178547, -0.008876481093466282, -0.019672559574246407, 0.006665635388344526, -0.008426369167864323, -0.01848108507692814, -0.009525172412395477, 0.010670311748981476, 0.0178059171885252, -0.029866281896829605, -0.02389567345380783, -0.16468818485736847, 0.003729975549504161, 0.005305368918925524, -0.030131053179502487, 0.011471247300505638, 0.013966723345220089, 0.02396186627447605, -0.018176598474383354, -0.01253033522516489, 0.023524992167949677, -0.006569655146449804, -0.02705969847738743, -0.011848547495901585, -0.016098137944936752, -0.031613778322935104, -0.006334670353680849, -0.007638672366738319, 0.006857594940811396, 0.045858509838581085, 0.00911477580666542, 0.03558535873889923, -0.016031945124268532, 0.01654824987053871, 0.022002553567290306, -0.012987066991627216, -0.008797049522399902, -0.018573755398392677, -0.017925065010786057, 0.03529410809278488, -0.022227609530091286, -0.00016817159485071898, 0.010048097930848598, -0.004875114653259516, -0.025762315839529037, 0.027086175978183746, 0.00048279520706273615, -0.003514848416671157, -0.018785573542118073, -0.010107670910656452, -0.02479589730501175, 0.020215341821312904, 0.06666959077119827, 0.003005162114277482, -0.02116852067410946, 0.02175102010369301, 0.015528878197073936, 0.028833670541644096, -0.026702256873250008, 0.009809802286326885, -0.034102633595466614, 0.025272486731410027, -0.009948807768523693, 0.015727456659078598, -0.018070688471198082, 0.0018252719892188907, -0.0006524147465825081, -0.02134062349796295, 0.02994571253657341, -0.014390358701348305, 0.025921178981661797, 0.010524687357246876, -0.018070688471198082, 0.0016755103133618832, -0.003928554710000753, 0.001094666775316, 0.017236657440662384, -0.011504343710839748, 0.002768522361293435, -0.04795020818710327, 0.017077794298529625, 0.006258548237383366, -0.0031739543192088604, 0.015714218840003014, 0.0057885777205228806, 0.026927312836050987, -0.003984818700700998, -0.014734561555087566, 0.0018269268330186605, -0.02557697519659996, -0.04302544891834259, -0.01981818489730358, 0.03526763245463371, -0.02036096714437008, -0.0018947746139019728, 0.0060732075944542885, 0.025590214878320694, 0.014972856268286705, 0.013165787793695927, 0.026371290907263756, -0.023869195953011513, 0.0426018163561821, -0.026305098086595535, 0.036697398871183395, 0.013033402152359486, 0.017408758401870728, 0.032646387815475464, 0.022121701389551163, -0.014919902198016644, 0.018083928152918816, -0.005520496051758528, -0.005341775249689817, -0.030766505748033524, -0.012318517081439495, -0.004534220322966576, 0.011007895693182945, 0.026199189946055412, -0.029416169971227646, -0.0030415684450417757, 0.011563917621970177, 0.02116852067410946, -0.010815936140716076, -0.0074400934390723705, 0.015158196911215782, 0.03497638180851936, 0.0055138771422207355, 0.02159215696156025, -0.01599222980439663, -0.030475256964564323, 0.03717399016022682, 0.021645111963152885, 0.011034373193979263, 0.0067682345397770405, -0.034949906170368195, 0.018110405653715134, 0.0037167370319366455, -0.0016581346280872822, -0.09023430198431015, -0.026212427765130997, -0.025020955130457878, 0.013582803308963776, 0.01024667639285326, 0.03156082332134247, -0.01388729177415371, 0.022545335814356804, 0.006235380657017231, 0.026212427765130997, -0.009703894145786762, -0.01047173235565424, -0.020731648430228233, 0.03283172845840454, -0.016614442691206932, 0.006106304470449686, -0.025365157052874565, 0.011504343710839748, -0.022929254919290543, 0.03841841593384743, 0.021803975105285645, -0.009578127413988113, -0.0019708964973688126, 0.010835793800652027, -0.018917959183454514, 0.00916111096739769, -0.02615947462618351, 0.0020453636534512043, 0.009703894145786762, 0.004554078448563814, 0.010743124410510063, -0.00293400464579463, -0.007691626437008381, -0.001679647364653647, 0.0225056204944849, 0.010683550499379635, -0.014218256808817387, 0.002278693951666355, 0.01867966540157795, -0.02253209799528122, -0.003955031745135784, -0.00856537465006113, -0.006877452600747347, -0.006347908638417721, 0.014549221843481064, -0.020533068105578423, -0.01141167338937521, 0.022929254919290543, -0.015581832267343998, -0.01874585822224617, -0.03246104717254639, 0.01034596562385559, -0.01424473337829113, -0.02735094726085663, 0.022465905174613, -0.028436513617634773, 0.0026791617274284363, -0.003547944827005267, -0.004961165599524975, 0.009412644430994987, 0.003633995773270726, 0.025616690516471863, 0.0010309559293091297, 0.014363881200551987, -0.003673711558803916, 0.013430560007691383, -0.014827231876552105, 0.0042164940387010574, 0.03010457754135132, -0.009776705875992775, -0.002685781102627516, 0.0058580804616212845, 0.0014446622226387262, 0.02443845570087433, -0.010809317231178284, 0.016746828332543373, -0.006824498530477285, 0.005821674596518278, 0.0037233561743050814, 0.026490438729524612, -0.0017739724135026336, -0.015714218840003014, -0.017461713403463364, -0.015317060053348541, 0.0005858080694451928, 0.013701951131224632, 0.007115747779607773, -0.0005456785438582301, 0.026702256873250008, -0.025259248912334442, 0.019725514575839043, 0.016627682372927666, 0.03696217015385628, 0.0047559672966599464, 0.014522744342684746, 0.009809802286326885, -0.002240633126348257, -0.014972856268286705, 0.010028239339590073, -0.006030182354152203, -0.047738391906023026, 0.012225846759974957, -0.052080653607845306, 0.030475256964564323, -0.012808345258235931, -0.009511934593319893, 0.005063764750957489, -0.0064571271650493145, 0.0086117098107934, 0.00020923193369526416, 0.0021115567069500685, -0.0010830829851329327, -0.01579364947974682, -0.0017954851500689983, -0.01657472737133503, -0.012616385705769062, 0.00033820487442426383, -0.03068707510828972, -0.006708660628646612, 0.001409910968504846, 0.030740030109882355, 0.038286030292510986, 0.00515643460676074, 0.01881205104291439, 0.005480780266225338, -0.010484971106052399, 0.0035082290414720774, -0.004679845180362463, -0.003039913484826684, 0.030581166967749596, -0.0116698257625103, -0.030898893252015114, 0.0227571539580822, -0.0061691878363490105, -0.011054230853915215, -0.0036836403887718916, -0.0010574331972748041, 0.005398039240390062, 0.014721323736011982, 0.004573936108499765, 0.015370015054941177, -0.038127169013023376, -0.016005467623472214, -0.016296716406941414, 0.029892759397625923, 0.01018048357218504, 0.019275402650237083, -0.02123471535742283, -0.009472218342125416, -0.007837250828742981, 0.00770486518740654, 0.024809136986732483, 0.0011947836028411984, 0.017700009047985077, -0.007188559975475073, -0.0003671642916742712, 0.008505800738930702, -0.06057983264327049, -0.0030663907527923584, -0.03706808015704155, 0.005490709561854601, 0.0035413254518061876, 0.022717438638210297, -0.021446531638503075, 0.009108156897127628, -0.0057985070161521435, -0.02185692824423313, -0.012636243365705013, -0.04487885534763336, 0.005712456069886684, 0.003690259763970971, -0.006222141906619072, -0.00927363894879818, 0.0013826063368469477, 0.022929254919290543, 0.024372262880206108, 0.032037410885095596, 0.006556416861712933, -0.03198445960879326, -0.005368252284824848, -0.006989981047809124, 0.02237323485314846, 0.028701284900307655, -0.004335641395300627, -0.017766201868653297, -0.003885529236868024, 0.04813554883003235, 0.01946074143052101, -0.002104937331750989, -0.019182732328772545, 0.009889233857393265, -0.012993685901165009, -0.02320726588368416, -0.003928554710000753, -0.03156082332134247, 0.007863728329539299, 0.006589513272047043, 0.016786545515060425, -0.017620576545596123, 0.014827231876552105, 0.019156254827976227, 0.007241514045745134, -0.0021512724924832582, -0.007241514045745134, -0.033202409744262695, 0.005282201338559389, -0.021022897213697433, 0.019857900217175484, 0.021684827283024788, -0.025312203913927078, 0.01650853455066681, 0.0033063404262065887, -0.008062307722866535, 0.0023713642731308937, 0.01253033522516489, 0.014787516556680202, -0.014721323736011982, -0.002255526604130864, -0.010882128961384296, 0.016826260834932327, -0.013410702347755432, 0.0025368467904627323, 0.007956398651003838, 0.04146329686045647, 0.03325536474585533, 0.005460922606289387, 0.011405053548514843, 0.01693216897547245, -0.00624861940741539, -0.009783325716853142, -0.016654159873723984, 0.012199370190501213, -0.02694055065512657, -0.014694846235215664, -0.03457922488451004, -0.006566345691680908, 0.009233923628926277, -0.0013271697098389268, 0.04937997832894325, -0.005480780266225338, 0.009551649913191795, 0.0764661505818367, -0.023141073063015938, -0.004878424108028412, 0.02418692223727703, -0.007367280777543783, 0.03630024194717407, 0.014152063988149166, -0.013927007094025612, -0.018626710399985313, -0.04228409007191658, 0.021671587601304054, -0.010286392644047737, 0.0024656893219798803, -0.03825955465435982, -0.0023084809072315693, 0.004031153861433268, -0.010928464122116566, 0.019765229895710945, -0.014668368734419346, -0.0007670113700442016, 0.022465905174613, 0.01540973037481308, 0.009856137447059155, -0.037147510796785355, -0.00113107287324965, 0.003301376011222601, 0.01968579925596714, -0.005166363902390003, 0.006357837934046984, -0.025722600519657135, 0.012126557528972626, -0.016971886157989502, -0.03010457754135132, 8.894684287952259e-05, 0.005441064480692148, -0.009386167861521244, -0.013218741863965988, 0.007466570474207401, 0.01254357397556305, -0.0018236171454191208, -0.0236309003084898, -0.0073540424928069115, -0.027721628546714783, -0.025616690516471863, -0.007824013009667397, -0.0012402913998812437, -0.007003219332545996, 0.0065299393609166145, -0.041066136211156845], "80c4a719-ec82-4874-b183-7aef4ca5dceb": [0.011051292531192303, 0.005150740034878254, 0.005714788101613522, -0.013071058318018913, -0.005802603904157877, 0.00046398877748288214, 0.0012767079751938581, -0.008085817098617554, -0.009349015541374683, -0.0041712550446391106, 0.005599951837211847, 0.027141865342855453, -0.020602960139513016, 0.02295372262597084, -0.01154441200196743, 0.01455041766166687, 0.02724994719028473, 0.0007840101607143879, -0.009159873239696026, -0.008741059340536594, -0.013651994056999683, 0.013510137796401978, -0.010733803734183311, -0.01599600352346897, -0.0170903243124485, 0.008781589567661285, 0.014469357207417488, -0.020711040124297142, -0.0016541474033147097, -0.004758946131914854, 0.0038064811378717422, 0.007883165031671524, 0.007464351132512093, -0.03766626492142677, -0.022832132875919342, -0.021548669785261154, 0.0008165189065039158, -0.03434276953339577, 0.021562179550528526, -0.010200154036283493, 0.03853091225028038, 0.01444233674556017, -0.01960320957005024, -0.003904429730027914, -0.004012510646134615, -0.0007540345541201532, 0.002200463553890586, -0.024547919631004333, -0.011449841782450676, 0.003446773858740926, 0.031127355992794037, 0.022507889196276665, -0.03696373477578163, -0.0006197775364853442, 0.00751163624227047, 0.007626472506672144, 0.010970231145620346, 0.0200085137039423, 0.006285591516643763, -0.0048568942584097385, 0.008531651459634304, 0.024264207109808922, 0.0028303738217800856, 0.010808110237121582, -0.02842532843351364, 0.007369779981672764, 0.007876410149037838, 0.010166378691792488, -0.0011314740404486656, 0.02152164839208126, 0.027857903391122818, 0.0018795978976413608, -0.0010073495795950294, 0.040206167846918106, 0.030640991404652596, 0.006126847118139267, -0.006768578663468361, -0.005160872358828783, -0.010342010296881199, 0.018698031082749367, 0.0007536123739555478, -0.014509887434542179, -0.02466951124370098, 0.030722051858901978, 0.000577558355871588, -0.0007616339717060328, 0.008200653828680515, 0.03369428217411041, -0.0034450851380825043, -0.020616469904780388, -0.014010012149810791, 0.017887422814965248, -0.008896425366401672, 0.011172883212566376, 0.011145863682031631, -0.013597953133285046, -0.020062554627656937, 0.030776092782616615, -0.015604209154844284, -0.011598452925682068, -0.023196905851364136, -0.00020265206694602966, -0.004617089405655861, -0.003640982089564204, -0.05063599348068237, -0.008849140256643295, 0.01973831094801426, 0.011733554303646088, 0.022237686440348625, -0.02677709236741066, -0.0245884507894516, 0.030776092782616615, -0.010727048851549625, -0.04325946047902107, 0.013550668023526669, -0.02758770063519478, 0.0014962477143853903, -0.004377284552901983, -0.022629480808973312, -0.014631479047238827, 0.034531909972429276, -0.021413568407297134, -0.005275708623230457, -0.0005264731589704752, 0.041773345321416855, 0.004090194124728441, 0.006157245021313429, -0.041692283004522324, -0.02015712484717369, -0.02745259925723076, 0.03834177181124687, -0.009740808978676796, 0.013300729915499687, -0.01182137057185173, -0.00541418744251132, 0.009659748524427414, -0.015671759843826294, -0.006312611512839794, 0.007585942279547453, -0.02002202346920967, 0.02329147607088089, -0.0016457035671919584, 0.0038301239255815744, 0.009923195466399193, 0.004394172225147486, 0.00372204277664423, 0.0007861211197450757, 0.03415362909436226, -0.017536157742142677, -0.023926453664898872, 0.001249687746167183, -0.012111837975680828, 0.014942212030291557, -0.012044287286698818, 0.008524896577000618, 0.004610334523022175, 0.0035768088418990374, -0.0007126597338356078, 0.009470606222748756, -0.004269203636795282, 0.02172430045902729, 0.010922946035861969, -0.015550168231129646, -0.0020180768333375454, 0.005184515379369259, 0.03188392519950867, 0.030235687270760536, 0.025601711124181747, -0.010375785641372204, 0.007673758082091808, -0.002884414279833436, -0.003353891661390662, -0.012415816076099873, 0.00437390711158514, -0.005110209342092276, -0.015523147769272327, -0.005974858067929745, -0.006228173151612282, -0.03169478103518486, -0.0069712307304143906, -0.007504881359636784, 0.005245310720056295, 0.013381791301071644, 0.013057547621428967, -0.038233689963817596, 0.013570932671427727, -0.0007569898734800518, 0.015063803642988205, -0.0037727057933807373, 0.01638779602944851, 0.0025804361794143915, 0.025520648807287216, 0.005160872358828783, 0.009484116919338703, -0.6186562180519104, -0.004286091309040785, -0.01652289740741253, -0.01877909153699875, 0.008970730938017368, 0.011483617126941681, 0.0003903163014911115, 0.0037254204507917166, -0.015104333870112896, 0.03947662189602852, 0.021886423230171204, 0.005184515379369259, 0.006589569617062807, -0.00012201342906337231, 0.015887921676039696, -0.024088574573397636, -0.006690895650535822, -0.03328897804021835, 3.604462472139858e-05, 0.02137303724884987, -0.011990247294306755, 0.0348561555147171, -0.001625438453629613, -0.008207408711314201, -0.004400927107781172, 0.04531300067901611, 0.032829634845256805, -0.021562179550528526, 0.026047544553875923, 0.01995447278022766, -0.028641492128372192, -0.03382938355207443, 0.009896175935864449, 0.008578937500715256, 0.021872911602258682, 0.0012581315822899342, 0.0005847356515005231, 0.003951715305447578, 0.005579686723649502, 0.021913442760705948, -0.017130853608250618, -0.026587950065732002, 0.006018766202032566, 0.017184894531965256, -0.006343009416013956, -0.013651994056999683, 0.023656250908970833, 0.018076563253998756, 0.004069929011166096, -0.033370040357112885, 0.011321495287120342, 0.014293725602328777, 0.014577438123524189, -0.03299175575375557, 0.024426328018307686, -0.004090194124728441, 0.024075064808130264, -0.007660247851163149, 0.031181396916508675, -0.016576938331127167, -0.0004741213924717158, 0.025925952941179276, 0.005329749081283808, 0.01082837488502264, -0.018130604177713394, 0.03388342633843422, -0.016901182010769844, 0.01109857764095068, 0.006464600563049316, -0.022994253784418106, 0.025723300874233246, 0.01995447278022766, -0.0009566866210661829, -0.0030380920507013798, 0.021332506090402603, 0.01430723536759615, -0.013199403882026672, -0.00711984233930707, 0.019711289554834366, 0.01502327248454094, 0.007227923721075058, 0.01715787500143051, -0.022035034373402596, -0.009538156911730766, 0.006197775714099407, 0.026520399376749992, -0.020994752645492554, 0.007680512964725494, 0.008274959400296211, -0.007910185493528843, 0.02034626714885235, 0.001933638472110033, -0.010031277313828468, -0.009700278751552105, -0.004660997539758682, -0.028803613036870956, -0.010591947473585606, -0.006275458727031946, -0.010612213052809238, -0.041638243943452835, 0.006363274529576302, -0.03210008516907692, 0.026750072836875916, 0.004397549666464329, 0.022926703095436096, 0.008464100770652294, 0.007991245947778225, 0.009835380129516125, 0.03742308169603348, -0.022710541263222694, -0.026547420769929886, -0.03312685713171959, -0.003103954019024968, -0.0010335255647078156, -0.00444145780056715, -0.016509387642145157, 0.009821869432926178, -0.025034284219145775, 0.003220479004085064, -0.021562179550528526, 0.029425079002976418, 0.03693671524524689, -0.013341261073946953, -0.006086316891014576, 0.022372787818312645, 0.003149550873786211, 0.021737810224294662, -0.021953973919153214, -0.021291976794600487, 0.007363025099039078, -0.004681262653321028, -0.0038064811378717422, 0.019454598426818848, -0.00868026353418827, 0.0021886422764509916, -0.013442587107419968, 0.0027121601160615683, -0.0020366532262414694, 0.025979993864893913, -0.021953973919153214, -0.01768477074801922, 0.0016389485681429505, 0.010990496724843979, -0.022453848272562027, 0.004502253141254187, -0.026182645931839943, -0.005093321669846773, -0.004198275040835142, -0.030695032328367233, -0.020265206694602966, 0.018400806933641434, 0.005762073677033186, -0.008497876115143299, 0.03299175575375557, 0.000805119751021266, 0.0024520899169147015, 0.007518391590565443, -0.021683771163225174, -0.01586090214550495, -0.032694533467292786, -0.002507819328457117, 0.014834131114184856, -0.0006451090448535979, 0.017927952110767365, -0.0075791869312524796, -0.0013712788932025433, -0.008849140256643295, 0.017238935455679893, -0.01130122970789671, -0.03988192602992058, -0.0032863409724086523, -0.036450352519750595, 0.0022798357531428337, 0.03369428217411041, -0.009680013172328472, 0.028722552582621574, -0.02254841849207878, 0.009436830878257751, -0.007194148376584053, -0.01586090214550495, 0.0009558422025293112, 0.009585442952811718, 0.014563928358256817, -0.010510887019336224, 0.005275708623230457, 0.00990968570113182, 0.020575938746333122, 0.02234576642513275, -0.020035533234477043, -0.0007358802831731737, 0.027439089491963387, -0.007835879921913147, -0.02541256882250309, -0.010375785641372204, -0.00710633210837841, 0.03215412795543671, 0.0041712550446391106, 0.006039031315594912, -0.009659748524427414, 0.03012760728597641, 0.03334302082657814, -0.015563677996397018, 0.006886792369186878, -0.03655843064188957, -0.0036240944173187017, -0.0011981803691014647, 0.03704479709267616, -0.02125144563615322, 0.021832382306456566, -0.0156447384506464, 0.006744936108589172, -0.030451849102973938, -0.02534501813352108, -0.01960320957005024, 0.009511136449873447, 0.023453598842024803, -0.0009761074325069785, 0.015279965475201607, 0.004150989931076765, -8.438558143097907e-05, 0.018346766009926796, 0.017374036833643913, 0.03012760728597641, 0.026493379846215248, 0.006950965616852045, 0.001612772699445486, -0.0020484745036810637, -0.013638483360409737, -0.008869404904544353, -0.05760722607374191, 0.009815114550292492, 0.004272581078112125, -0.00372204277664423, 0.017401056364178658, 0.0096665034070611, 0.012888670898973942, 0.04055743291974068, -0.012328000739216805, 0.023926453664898872, -0.0009735742933116853, 0.009200403466820717, 0.040476370602846146, 0.02684464305639267, -0.013672258704900742, 0.023615719750523567, 0.0002554260427132249, 0.030505890026688576, -6.697017670376226e-05, -0.01038254052400589, 0.009639482945203781, 0.0014506509760394692, 0.029019774869084358, -0.030776092782616615, 0.00874781422317028, -0.02945210039615631, -0.011834880337119102, 0.015252945013344288, 0.002072117291390896, 0.04866351559758186, 0.022724051028490067, -0.0038233688101172447, -0.01430723536759615, 0.01369927916675806, 0.022237686440348625, -0.0051034544594585896, -0.0016110838623717427, -0.023196905851364136, -0.017441587522625923, -0.014266705140471458, -0.011152618564665318, -0.023399557918310165, -0.07176584750413895, -0.009619218297302723, -0.006748313549906015, 0.039098337292671204, 0.015225924551486969, -0.0015747754368931055, 0.003941582515835762, 0.019832881167531013, -1.1781789908127394e-05, -0.014699029736220837, -0.026128605008125305, 0.0026378543116152287, 0.00959895271807909, -0.009680013172328472, -0.002664874540641904, -0.008869404904544353, -0.0004050930147059262, 0.018833132460713387, -0.008578937500715256, -0.029425079002976418, 0.006883414927870035, 0.004934577737003565, -0.007768329232931137, -0.011037781834602356, 0.014847640879452229, 0.029695281758904457, -0.006451090797781944, 0.007619717624038458, -0.009497626684606075, -0.011105332523584366, 0.017779340967535973, -0.02869553118944168, 0.004921067506074905, 0.0764133408665657, -0.007471106015145779, 0.007558921817690134, -0.01741456799209118, 0.0263717882335186, -0.017265954986214638, 0.0009144674404524267, -0.006285591516643763, -0.003617339301854372, -0.013820870779454708, 0.020332757383584976, 0.02308882400393486, 0.0034298861864954233, -0.008065552450716496, 0.028101086616516113, -0.002208907390013337, -0.003678134875372052, -0.014847640879452229, -0.0076467376202344894, 0.011848390102386475, 0.032829634845256805, 0.021764831617474556, -0.02118389494717121, -0.007275208830833435, -0.012213164009153843, 0.028371289372444153, -0.00039348274003714323, -0.027695782482624054, -0.005110209342092276, 0.0018779090605676174, -0.02137303724884987, 0.0034653502516448498, 0.0004534339823294431, 0.0008093416690826416, 0.010733803734183311, 0.011632228270173073, -0.020575938746333122, -0.04144909977912903, 0.011416066437959671, -0.026398807764053345, 0.03382938355207443, -0.004478610586374998, 0.027911944314837456, 0.020251695066690445, -0.01267250906676054, 0.012550917454063892, 0.004255693405866623, 0.00463059963658452, 0.012902181595563889, -0.038909196853637695, -0.026804111897945404, 0.004461722914129496, 0.007140107452869415, 0.030911194160580635, 0.006687518209218979, 0.028263207525014877, 0.020049042999744415, 0.0014261638280004263, 0.009808359667658806, -0.01606355421245098, 0.01007180754095316, 0.021156875416636467, 0.0027543792966753244, -0.03566676378250122, 0.0022274840157479048, 0.006957720965147018, -0.014563928358256817, 0.0025280844420194626, 0.0019691025372594595, -0.014726050198078156, -0.006187642924487591, 0.012631978839635849, -0.02035977691411972, 0.023615719750523567, 0.006042408756911755, 0.014064053073525429, 0.0034653502516448498, 0.006126847118139267, 0.005860022269189358, -0.026682522147893906, 0.013537157326936722, -0.03174882382154465, 0.0075386567041277885, 5.90013041801285e-05, 0.008173633366823196, -0.007808859460055828, -0.007471106015145779, 0.0019437710288912058, 0.001906618126668036, -0.010105582885444164, 0.013307485729455948, -0.030208667740225792, -0.006572681944817305, -0.009436830878257751, 0.016752570867538452, 0.030857153236865997, -0.013597953133285046, -0.005025770980864763, 0.01638779602944851, -0.005762073677033186, -0.006944210734218359, -0.016982242465019226, -0.0069712307304143906, -0.01423968467861414, -0.010038032196462154, 0.00744408555328846, 0.014590948820114136, -0.0073224944062530994, 0.013179139234125614, 0.014334255829453468, -0.004039531107991934, 0.01633375696837902, -0.003999000880867243, -0.0036038290709257126, -0.011287719942629337, 0.012976487167179585, 0.006559171713888645, 0.006467978470027447, 0.007072556763887405, -0.026547420769929886, 0.0022173512261360884, -0.03642332926392555, 0.0042455606162548065, -0.004360396880656481, -0.015563677996397018, -0.02138654701411724, 0.028938714414834976, -0.009011262096464634, -0.002786465920507908, -0.005596574395895004, 0.040746573358774185, 0.0021548669319599867, 0.011848390102386475, 0.03134351968765259, 0.012490121647715569, 0.024642489850521088, 0.007295474410057068, 0.0042016529478132725, 0.011929451487958431, -0.045664265751838684, 0.010146113112568855, -0.047825887799263, 0.02466951124370098, 0.01024743914604187, -0.016495877876877785, 0.01444233674556017, -0.0019978114869445562, -0.02287266217172146, -0.021332506090402603, 0.00652539636939764, 0.027209416031837463, 0.017455097287893295, -0.01444233674556017, -0.03939555957913399, -0.03572080284357071, 0.01563122868537903, -0.057553187012672424, 0.0026378543116152287, -0.0485013946890831, 0.025804363191127777, -0.013611463829874992, 0.01995447278022766, 0.025804363191127777, -0.01591494120657444, -0.018954722210764885, -0.03004654496908188, 0.009308484382927418, 0.00397873530164361, 0.002371029229834676, 0.0215756893157959, -0.0020366532262414694, 0.0026631858199834824, -0.012929201126098633, -0.0016592137981206179, -0.01444233674556017, -0.0024453348014503717, 0.00199105660431087, -0.007342759519815445, 0.032640490680933, 0.00345859513618052, 0.05001452937722206, -0.005681012757122517, 0.02541256882250309, -0.013888421468436718, -0.0156447384506464, 0.011395800858736038, -0.007261699065566063, -0.0055357785895466805, -0.01260495837777853, 0.004438080359250307, 0.009065302088856697, -0.011902431026101112, 0.008004756644368172, -0.019224924966692924, 0.014293725602328777, 0.0368826761841774, 0.02384539321064949, -0.0027577567379921675, -0.0113417599350214, -0.020927201956510544, -0.0019809238146990538, 0.008004756644368172, 0.020197656005620956, 0.01168626919388771, -8.644376794109121e-05, -0.015968982130289078, 0.036045048385858536, 0.014199154451489449, -0.0006936611025594175, 0.005488493479788303, 0.0018914192914962769, -0.013807360082864761, 0.006417315453290939, 0.0139694819226861, 0.0139694819226861, -0.03142457827925682, 0.004549538716673851, -0.03477509319782257, -0.009639482945203781, -0.0009566866210661829, -0.0057451860047876835, 0.005731675773859024, -0.010362274944782257, -0.004667752422392368, -0.02007606439292431, 0.0028185523115098476, -0.008970730938017368, -0.01756317913532257, 0.039719805121421814, -0.00015832192730158567, -0.03293771669268608, -0.014834131114184856, -0.002609145361930132, -0.0029840515926480293, -0.008727548643946648, -0.006157245021313429, -0.00495484285056591, 0.013550668023526669, -0.03566676378250122, -0.016158124431967735, -0.014334255829453468, 0.02294021286070347, 0.042448852211236954, 0.006896925158798695, 0.027087826281785965, 0.0048096091486513615, 0.017887422814965248, -0.029289977625012398, -0.010206908918917179, -0.0057114106602966785, -0.0017090323381125927, 0.036990758031606674, 0.024210166186094284, -0.00483325170353055, -0.0019454597495496273, -0.013861401006579399, -0.005505381152033806, -0.04304329678416252, -0.05836379528045654, 0.005525646265596151, 0.02288617193698883, 0.003024582052603364, -0.021089324727654457, 0.020440837368369102, -0.06209259107708931, 0.03880111500620842, -0.013003507629036903, -0.000740946619771421, -0.02910083532333374, -0.0018188022077083588, -0.03445085138082504, 0.02138654701411724, 0.0008422726532444358, 0.009538156911730766, -0.010058296844363213, 0.017792850732803345, 0.008578937500715256, 0.014874661341309547, -0.02684464305639267, 0.012111837975680828, 0.0066436100751161575, -0.0069982511922717094, -0.01502327248454094, 0.004032776225358248, -0.003948337864130735, -0.011490372009575367, -0.012550917454063892, -0.015604209154844284, -0.003553166054189205, 0.0337483249604702, -0.0013189271558076143, -0.011004006490111351, -0.0072481888346374035, 0.02241331711411476, -0.03750414028763771, 0.016158124431967735, -0.005566176492720842, -0.007660247851163149, -0.019022272899746895, -0.004107081796973944, 0.02910083532333374, 0.006842884700745344, 0.014631479047238827, 0.009247689507901669, 0.0031731934286653996, -0.005778961349278688, -0.03150564059615135, -0.00939630065113306, 0.033234938979148865, -0.019630229100584984, -0.029884424060583115, -0.009923195466399193, 0.029289977625012398, 0.005366901867091656, -0.0008942022104747593, -0.016036532819271088, 0.010740559548139572, 0.036990758031606674, -0.019157374277710915, 0.028641492128372192, -0.02118389494717121, 0.0023085447028279305, -0.0015384668949991465, 0.002220728900283575, -0.01845484785735607, -0.01253740768879652, 0.011179639026522636, -0.040071066468954086, -0.032559432089328766, -0.0013923884835094213, -0.0072144134901463985, 0.014699029736220837, -0.015293475240468979, -0.012138858437538147, -0.0018559551099315286, -0.0037625732365995646, 0.027911944314837456, 0.003988868091255426, -0.016779590398073196, 0.009362525306642056, -0.022305237129330635, -0.008943711407482624, 0.019008763134479523, 9.56264411797747e-05, 0.0012733304174616933, 0.0139694819226861, 0.0030938214622437954, 0.0009026460465975106, -0.039314500987529755, -0.016090573742985725, -0.0005184515030123293, 0.004772455897182226, -0.0032745194621384144, -0.01065274327993393, -0.045123860239982605, -7.889709195296746e-06, -0.004593446850776672, 0.02398049458861351, -0.016847141087055206, -0.009524647146463394, -0.0397738441824913, 0.011834880337119102, 0.01584739051759243, 0.02452090010046959, -0.0004698994744103402, -0.011220169253647327, 0.011024272069334984, 0.014604458585381508, -0.01441531628370285, -0.04833927005529404, -0.004880537278950214, 0.025858402252197266, 0.030073566362261772, -0.008943711407482624, -0.0063227443024516106, -0.022156625986099243, -0.036585453897714615, -0.008173633366823196, 0.005917440168559551, 0.019576188176870346, 0.009072056971490383, 0.008126347325742245, -0.004154367372393608, 0.032208167016506195, -0.002178509719669819, 0.0057519408874213696, -0.03939555957913399, 0.011172883212566376, 0.020265206694602966, 0.034937214106321335, -0.010274459607899189, -0.012787344865500927, -0.015482617542147636, -0.03223518654704094, 0.0063497647643089294, 0.00290299067273736, 0.02608807571232319, 0.013719544745981693, 0.006187642924487591, -0.0032154126092791557, -0.04144909977912903, -0.017184894531965256, 0.014631479047238827, 0.02650688961148262, 0.007768329232931137, 0.010686518624424934, 0.0021177141461521387, -0.026263706386089325, 0.009105832315981388, -0.035774845629930496, 0.005201403051614761, -0.0054648504592478275, 0.0003320538380648941, 0.009457096457481384, -0.0029553426429629326, -0.03145160153508186, 0.011024272069334984, -0.014077562838792801, 0.01906280405819416, -0.0021177141461521387, 0.0012691084994003177, 0.008146612904965878, 0.009058547206223011, 0.0003426086332183331, -0.011936206370592117, 0.011429576203227043, -0.039449602365493774, 0.017644239589571953, 0.009180138818919659, 0.01790093258023262, -0.021089324727654457, -0.030830133706331253, 0.047366540879011154, -0.015428576618432999, -0.010679763741791248, -0.019562678411602974, -0.020238185301423073, -0.03899025544524193, 0.0429081954061985, -0.006859772372990847, -0.005235178396105766, 0.012010511942207813, 0.02130548655986786, 0.000350630289176479, 0.01702277362346649, -0.025588199496269226, -0.010470356792211533, -0.03385640308260918, 0.03039781004190445, 0.0028945468366146088, -0.010213663801550865, -0.008376285433769226, 0.027439089491963387, -0.0009744186536408961, -0.026466358453035355, -0.03185690566897392, 0.18471059203147888, -0.03088417463004589, 0.016968732699751854, 0.032208167016506195, -0.008727548643946648, 0.030289728194475174, 0.011990247294306755, -0.00021310130250640213, -0.021332506090402603, 0.008808610029518604, -0.023345516994595528, 0.010733803734183311, -0.013003507629036903, 0.0032221677247434855, 0.0048940470442175865, -0.0016085507813841105, 0.00946385134011507, -0.041286978870630264, -0.0186574999243021, -0.01441531628370285, 0.027776842936873436, -0.009646237827837467, -0.028236187994480133, -0.02280511148273945, 0.03223518654704094, -0.01871154084801674, -0.016820121556520462, -0.001475982484407723, 0.03318089619278908, -0.024007514119148254, -0.021075814962387085, 0.0014928701566532254, -0.025047793984413147, -0.002220728900283575, -0.010213663801550865, 0.0026142115239053965, 0.023075314238667488, 0.012030777521431446, 0.02766876108944416, -0.012760324403643608, 0.0018002258148044348, -0.019657250493764877, -0.030965235084295273, -0.006522018928080797, 0.0007341915043070912, 0.014726050198078156, 0.011922696605324745, -0.020819121971726418, -0.019589699804782867, 0.011895676143467426, -0.028128106147050858, -0.013098077848553658, 0.015104333870112896, 0.015293475240468979, -0.004677885212004185, -0.0022511265706270933, 0.0007282808655872941, 0.0025905687361955643, -0.0019657250959426165, 0.028911694884300232, 0.0046035791747272015, 0.03177584335207939, -0.008869404904544353, 0.008659997954964638, -0.01356417778879404, 0.007998001761734486, -0.028020024299621582, -0.008930200710892677, 0.027290478348731995, -0.0063565196469426155, -0.012287469580769539, -0.0033082948066294193, 0.015077313408255577, 0.021291976794600487, -0.03401852771639824, 0.005397299770265818, 0.05006856843829155, 0.018671009689569473, 0.015239435248076916, 0.029127856716513634, -0.013023772276937962, -0.02410208433866501, -0.0018627102253958583, -0.004400927107781172, -0.03847687318921089, -0.02473706193268299, 0.02287266217172146, -0.00038778316229581833, 0.005630349740386009, -0.008592447265982628, -0.002333876211196184, 0.003931450191885233, -0.005778961349278688, 0.0066740079782903194, 0.002798287197947502, 0.011537657119333744, 0.005106831900775433, 0.02234576642513275, -0.005893797613680363, 0.005248688161373138, -0.012118592858314514, -0.009038281626999378, -0.003681512549519539, 0.019292475655674934, -0.004485365469008684, -0.0005395610933192074, 0.006731425877660513, 9.240723011316732e-05, -0.0009271331946365535, -0.027033785358071327, -0.0016136170597746968, -0.0105581721290946, -0.0014903370756655931, -0.00724143348634243, 0.01611759327352047, -0.004461722914129496, -0.029073815792798996, -0.010841885581612587, -0.009896175935864449, -0.00029806740349158645, 0.002492620376870036, -0.02910083532333374, -0.018806111067533493, -0.003559921169653535, -0.015252945013344288, -0.005309483967721462, -0.033775344491004944, 0.00145149533636868, 0.007518391590565443, 0.0023760953918099403, 0.01287516113370657, -0.04234077036380768, -0.0057485634461045265, -0.011253944598138332, -0.01613110490143299, 0.0023912943433970213, -0.021913442760705948, -0.03312685713171959, -0.017738809809088707, 0.005988368298858404, 0.014334255829453468, 0.010085317306220531, 0.004120592027902603, -0.021913442760705948, 0.013084568083286285, -0.015117843635380268, 0.00816687848418951, -0.01987341232597828, -0.003401177003979683, -0.03926045820116997, -0.02302127331495285, -0.004549538716673851, 0.02472355216741562, -0.011321495287120342, -0.005282463505864143, -0.04198950529098511, -0.012057797983288765, -0.008849140256643295, 0.016901182010769844, -0.00919364858418703, -0.020184144377708435, 0.006140357349067926, -0.00032804301008582115, 0.0015393112553283572, -0.0009516202844679356, -0.03491019457578659, -0.1694711595773697, -0.004620466846972704, 0.0008992685470730066, -0.018144113942980766, 0.0177658312022686, 0.005539156496524811, 0.04120592027902603, 0.0018643989460542798, 0.019562678411602974, 0.009484116919338703, -0.009673258289694786, 0.002178509719669819, -0.005593196954578161, -0.011571432463824749, -0.024899182841181755, -0.01694171316921711, -0.01226720493286848, 0.002038341946899891, 0.03253241255879402, 0.019103335216641426, 0.03404554724693298, -0.015955472365021706, 0.015320495702326298, 0.009267954155802727, -0.0007468572584912181, -0.02452090010046959, -0.0013172384351491928, -0.0261556264013052, -0.0076467376202344894, -0.013192648999392986, 0.00014428404392674565, 0.008997751399874687, 0.01571228913962841, -0.029560180380940437, 0.01775232143700123, -0.0052115353755652905, 0.0052149128168821335, -0.025426078587770462, -0.010645988397300243, 0.012625223025679588, 0.023858902975916862, 0.04625871032476425, 0.0022849019151180983, -0.00993670616298914, 0.01448286697268486, 0.020413817837834358, 0.02357519045472145, -0.018049543723464012, 0.00039453821955248713, 0.006788844242691994, 0.016847141087055206, -0.005856644362211227, 0.0059985010884702206, 0.01038254052400589, 0.006572681944817305, -0.006160622462630272, 0.008173633366823196, 0.011395800858736038, -0.02007606439292431, 0.003092132741585374, 0.011010762304067612, 0.0001885086385300383, -0.0029739190358668566, -0.0069982511922717094, -0.025669261813163757, -0.00023009453434497118, -0.025709791108965874, 0.010281214490532875, -0.03436978906393051, 0.013543913140892982, -0.007950715720653534, 0.0184413380920887, 0.022575439885258675, -0.003674757434055209, 0.0029874290339648724, 0.014563928358256817, 0.0030786225106567144, 0.022764582186937332, -0.006140357349067926, -0.017995502799749374, -0.010679763741791248, 0.047825887799263, -0.011780839413404465, -0.011868655681610107, 0.030100585892796516, -0.009504381567239761, -0.006055918987840414, 0.020319245755672455, 0.0026327879168093204, -0.023723801597952843, 0.030695032328367233, -0.004728548228740692, 0.003171504708006978, 0.0008806920959614217, 0.014118093997240067, 0.011402555741369724, 0.01871154084801674, -0.010038032196462154, 0.007984491065144539, 0.00536014698445797, -0.007545411586761475, -0.006157245021313429, -0.02234576642513275, 0.010949966497719288, 0.02145409770309925, -0.00036287383409217, -0.005640482529997826, 0.03504529595375061, 0.040962737053632736, 0.016752570867538452, -0.015509638004004955, -0.006758446339517832, 0.02485865354537964, 0.0286144707351923, -0.0031056427396833897, 0.036504391580820084, 0.01249687746167183, -0.019522149115800858, 0.011220169253647327, 0.041232939809560776, 0.02766876108944416, -0.0055020032450556755, -0.024061555042862892, -0.015225924551486969, 0.009038281626999378, 0.002364274114370346, -0.11726799607276917, 0.0010039721382781863, -0.0009431764483451843, 0.0019268833566457033, 0.02241331711411476, 0.02376433089375496, -0.019184395670890808, 0.011449841782450676, -0.0037287978921085596, 0.03245135024189949, 0.013260199688374996, -0.023183396086096764, -0.0034653502516448498, -0.009112588129937649, -0.01236177608370781, -0.01586090214550495, -0.0001874531590146944, 0.0036072067450731993, -0.022656500339508057, 0.03807156905531883, -0.0027206039521843195, 0.008768078871071339, -0.0002132068620994687, 0.01188216544687748, -0.035639744251966476, 0.015833880752325058, -0.01694171316921711, -0.01379385031759739, 0.01837378740310669, -0.003580186516046524, 0.012780589982867241, -0.007471106015145779, -0.008855895139276981, -0.01810358464717865, 0.035558681935071945, -0.005893797613680363, 0.004444835241883993, -0.018400806933641434, 0.021481119096279144, -0.020035533234477043, -0.006599701941013336, -0.010497376322746277, 0.026898683980107307, -0.006363274529576302, 0.029154876247048378, 0.0029924954287707806, -0.032640490680933, 0.011537657119333744, -0.014388296753168106, -0.020616469904780388, -0.022224176675081253, -0.02316988632082939, -0.029344018548727036, -0.00942332111299038, 0.02076508104801178, -0.017265954986214638, -0.01423968467861414, -0.012618468143045902, -0.013847891241312027, 0.01120665855705738, -0.0031748823821544647, 0.015833880752325058, -0.01790093258023262, 0.011287719942629337, 0.011632228270173073, 0.01768477074801922, -0.031235437840223312, -0.011497126892209053, 0.019143864512443542, -0.0026598083786666393, -0.005849889479577541, 0.025601711124181747, -0.023318497464060783, 0.03342407941818237, -0.008977486751973629, 0.006045786663889885, -0.0042489380575716496, 0.022575439885258675, 0.0019572812598198652, 0.005049414001405239, -0.0215756893157959, -0.03053291141986847, -0.017644239589571953, -0.02711484581232071, -0.009335504844784737, 0.021818872541189194, 0.006586192175745964, 0.012962976470589638, 0.026128605008125305, -0.03088417463004589, 0.010700028389692307, 0.00935577042400837, 0.015158373862504959, -0.00587353203445673, -0.018400806933641434, 0.009632728062570095, 0.004475233145058155, 0.009659748524427414, 0.004941332619637251, 0.01749562844634056, -0.044016025960445404, -0.009956970810890198, -0.029884424060583115, 0.022116094827651978, 0.009754318743944168, -0.014293725602328777, 0.010011011734604836, 0.0039213174022734165, 0.010287969373166561, 0.0020636734552681446, -0.011598452925682068, -0.00041417015017941594, -0.0184413380920887, 0.014334255829453468, -0.019913941621780396, -0.010882415808737278, 0.012773835100233555, 0.0015207348624244332, 0.0014835819602012634, -0.016644489020109177, 0.02807406522333622, 0.035207416862249374, 0.003944959957152605, 0.007802104577422142, 0.022724051028490067, -0.013017017394304276, -0.027965985238552094, 0.001561265205964446, -0.009720543399453163, 0.028452349826693535, -0.003183326218277216, -0.04569128528237343, -0.0009321994730271399, 0.01455041766166687, -0.013712789863348007, 0.005208157934248447, 0.007829125039279461, 0.007633227854967117, 0.016009513288736343, 0.011422821320593357, 0.008646488189697266, 0.011449841782450676, -0.001509757828898728, -0.024507388472557068, 0.024493878707289696, -0.026831133291125298, -0.020535409450531006, -0.016617469489574432, 0.0014802044024690986, 0.016428327187895775, -0.00795747060328722, 0.019846390932798386, -0.009997501969337463, 0.01376682985574007, -0.01599600352346897, -0.01686065085232258, 0.020616469904780388, -0.02664199098944664, 0.005073056556284428, -0.026682522147893906, -0.005833001807332039, -0.03874707221984863, 0.04212460666894913, -0.0021278467029333115, 0.028803613036870956, 0.012044287286698818, -0.020940713584423065, -0.04274607449769974, -0.028128106147050858, -0.020251695066690445, 0.018184645101428032, -0.006180888041853905, -0.016428327187895775, 0.014023522846400738, 0.017914442345499992, 0.02362922951579094, 0.014226174913346767, 0.005927572958171368, -0.04404304921627045, 0.010835129767656326, -0.010544662363827229, 0.026628481224179268, 0.00895046629011631, 0.006018766202032566, -0.009294974617660046, -0.005198025144636631, 0.04161122441291809, -0.005120342131704092, 0.035747822374105453, -0.009788094088435173, 0.016955222934484482, 0.0035700537264347076, 0.011044537648558617, 0.014536907896399498, -0.00919364858418703, 0.012692773714661598, 0.010301480069756508, 0.0362071692943573, -0.012996751815080643, -0.0016338822897523642, 0.013179139234125614, 0.009659748524427414, 0.016212165355682373, -0.020778590813279152, -0.019251946359872818, -0.0057418085634708405, -0.025047793984413147, 0.01437478605657816, 0.012287469580769539, -5.203513865126297e-05, -0.01714436523616314, 0.03372130170464516, -0.03407256677746773, 0.011260699480772018, 0.009963726624846458, -0.005620216950774193, -0.017954973503947258, 0.004309733863919973, -0.0069239456206560135, -0.002951964968815446, -0.019927453249692917, 0.0006134446593932807, 0.029803363606333733, -0.0017005885019898415, 0.050311751663684845, -0.009132852777838707, 0.0007903430378064513, 0.02856042981147766, 0.021075814962387085, -0.01702277362346649, -0.011706533841788769, -0.00030355589115060866, -0.009247689507901669, 0.008085817098617554, -0.0397738441824913, -0.016968732699751854, -0.004005755763500929, -0.044151127338409424, 0.030965235084295273, -0.0033082948066294193, -0.02287266217172146, 0.0670643225312233, 0.00744408555328846, -0.005559421610087156, 0.011564677581191063, -5.5359898397000507e-05, 0.04158420115709305, 0.014658499509096146, -0.006775334011763334, -0.02199450321495533, -0.012064552865922451, 0.014712539501488209, -0.002413248410448432, 0.006829374469816685, -0.034802112728357315, -0.012625223025679588, -0.0031765711028128862, 0.011841635219752789, 0.009349015541374683, -0.02733100764453411, -0.0013679014518857002, 0.024628980085253716, -0.009855644777417183, 0.008666752837598324, -0.010591947473585606, -0.005937705282121897, 0.007923695258796215, 0.022561930119991302, -0.01734701730310917, -0.012422570958733559, -0.01886015199124813, 0.004009133204817772, -0.0239129438996315, -0.023332007229328156, -0.016414817422628403, 0.0130778132006526, 0.010531151667237282, -0.00032783192000351846, -0.010308234952390194, 0.02918189764022827, 0.02144058793783188, -0.03134351968765259, 0.01613110490143299, -0.02098124288022518, -0.024129105731844902, -0.023345516994595528, 0.006549038924276829, -0.002745935460552573, -0.002502752933651209, -0.042583953589200974], "e3602a25-424c-4f8a-9898-c34357bd7420": [0.010786584578454494, -0.022349856793880463, 0.01851998269557953, -0.017033563926815987, -0.030290817841887474, 0.006049459334462881, -0.011476229876279831, -0.002130869310349226, -0.002236324828118086, -0.028121449053287506, 0.0033444438595324755, 0.023233674466609955, -0.04467293247580528, 0.009681813418865204, -0.008309219032526016, 0.013926813378930092, 0.00908590666949749, 0.001796090160496533, -0.0041345227509737015, -0.010525456629693508, 0.00022053577413316816, -0.013571946881711483, 0.0075860959477722645, 0.00018852252105716616, -0.01383307483047247, 0.03430816903710365, -0.0032172277569770813, -0.0005519671249203384, -0.01298273541033268, -0.0072981854900717735, -0.0034616165794432163, -0.0024422139395028353, -0.025764605030417442, -0.01402055099606514, -0.007478966377675533, 0.014676718041300774, 0.0006724876584485173, -0.01680591329932213, -0.0032406621612608433, -0.017368342727422714, 0.029326654970645905, 0.01720764860510826, 0.00021153858688194305, 0.013766119256615639, -0.02255072444677353, 0.010337980464100838, -0.007653051521629095, -0.025054872035980225, -0.021077696233987808, 0.0167255662381649, 0.03864690661430359, 0.04373554885387421, -0.03288870304822922, 0.004070914816111326, 0.008563650771975517, 0.008248958736658096, -0.017716513946652412, 0.009119383990764618, 0.01181770395487547, 0.0031720325350761414, 0.007773572113364935, 0.0211044792085886, -0.011523098684847355, -0.0013834749115630984, -0.04277138411998749, -0.0037963956128805876, 0.002115804236382246, 0.006631975062191486, -0.012252917513251305, 0.016377396881580353, 0.03733457252383232, 0.020555440336465836, -0.0044090417213737965, 0.01518558245152235, 0.022001685574650764, -0.017582600936293602, -0.014274983666837215, 0.008831473998725414, 0.00877790991216898, 0.006729061249643564, 0.014422286301851273, -0.015506970696151257, -0.014087507501244545, 0.022617680951952934, 0.029781954362988472, -0.009440772235393524, 0.014181245118379593, 0.011067799292504787, -0.006009285803884268, -0.011054407805204391, -0.0005820972728542984, 0.0013751053484156728, 0.01610957272350788, 0.007880701683461666, -0.014489241875708103, 0.017488863319158554, -0.020876828581094742, 0.025282522663474083, -0.0023267152719199657, -0.02205525152385235, -0.008764518424868584, 0.020408136770129204, -0.012313177809119225, -0.00021530484082177281, -0.03441529721021652, 0.0105522396042943, 0.003041468560695648, -0.0031569674611091614, 0.014368721283972263, -0.014971324242651463, -0.017368342727422714, 0.017475472763180733, -0.007003580220043659, -0.023755928501486778, 0.03789700195193291, 0.002013696590438485, -0.0019417190924286842, -0.0278000608086586, -0.03259409964084625, 0.00059841776965186, 0.01973857916891575, -0.014060724526643753, 0.008275740779936314, -0.026193121448159218, 0.04453901946544647, -0.018131639808416367, 0.010023288428783417, -0.03361182659864426, -0.01585514098405838, -0.031174635514616966, 0.04231608659029007, 0.002402040408924222, 0.013658990152180195, 0.014341939240694046, 0.010927191935479641, -5.312657549438882e-07, -0.02366219088435173, -0.002386975334957242, -0.030076559633016586, -0.03709353134036064, 0.02095717564225197, -0.00932694785296917, -0.002187781734392047, 0.0016964933602139354, 0.01548018865287304, -0.006652061827480793, 0.02367558144032955, 0.005641028750687838, 0.007244620937854052, 0.007465575356036425, 0.02731798030436039, 0.005148903466761112, -0.002450583502650261, -0.0007055471069179475, 0.012962648645043373, 0.007338359020650387, -0.008992168121039867, -0.006039415951818228, 0.012714912183582783, -0.030156906694173813, 0.01999301090836525, 0.02059561386704445, -0.01236674189567566, -0.00877790991216898, -0.015252538956701756, 0.03318331018090248, 0.01952432096004486, 0.00561424670740962, -0.02291228622198105, -0.006565019488334656, 0.016497917473316193, -0.004492736421525478, -0.013022908940911293, 0.014341939240694046, -0.009601466357707977, -0.005058513022959232, 0.006079589482396841, -0.007465575356036425, -0.024840613827109337, 0.010820062831044197, -0.012406915426254272, -0.0049078622832894325, 0.016497917473316193, 0.04448545351624489, -0.02755901962518692, -0.019818926230072975, 0.01731477864086628, 0.031201418489217758, 0.003752874443307519, -0.005721375811845064, 0.012989431619644165, 0.006380890961736441, 0.01633722335100174, 0.0014939520042389631, -0.6290634274482727, 0.0004645060980692506, 0.007063840515911579, -0.027384934946894646, 0.027224240824580193, -0.005333031993359327, 0.020528657361865044, 0.0031117722392082214, -0.011516403406858444, 0.039825327694416046, 0.013136734254658222, -0.002607929753139615, 0.003061555325984955, -0.00503507861867547, -0.009989810176193714, -0.015078453347086906, 0.0006695582997053862, -0.016002444550395012, 0.010170591063797474, -0.0007616225630044937, -0.02391662262380123, 0.036049019545316696, -0.0031151201110333204, 0.021666906774044037, 0.009052428416907787, 0.019926056265830994, 0.03452242538332939, -0.02316671796143055, 0.019082412123680115, 0.03061220608651638, -0.05160955712199211, -0.019417190924286842, 0.011543185450136662, 0.006735756527632475, 0.029299871996045113, -0.023206891492009163, -0.004753863904625177, 1.851747219916433e-05, 0.01888154447078705, 0.021988295018672943, -0.024546008557081223, 0.00031448318623006344, 0.017502253875136375, -0.0059691122733056545, 0.030665772035717964, -0.015319494530558586, 0.0046835606917738914, 0.018265550956130028, -0.005051817744970322, -0.019966229796409607, -0.006601844914257526, 0.016283659264445305, 0.00021990806271787733, 0.0012579327449202538, 0.030183689668774605, 0.0006448683561757207, 0.0307193361222744, -0.006424412131309509, 0.017729904502630234, -0.02439870499074459, -0.015814967453479767, 0.0037327876780182123, -0.02208203263580799, 0.0031184679828584194, -0.03130854666233063, 0.039209336042404175, -0.0006394282099790871, -0.009534510783851147, 0.02292567677795887, 0.005647724494338036, 0.004345433320850134, 0.02172047272324562, -0.008456521667540073, -0.023581843823194504, 0.012862215749919415, 0.025818169116973877, 0.021010739728808403, 0.004777298774570227, -0.009059123694896698, -0.0075727044604718685, 0.007345054764300585, 0.021640125662088394, -0.023474715650081635, -0.010887018404901028, 0.03961107134819031, -0.0014747021486982703, -0.026367206126451492, 0.014047333970665932, 0.019069021567702293, 0.005828505381941795, 0.02184099331498146, 0.013873248361051083, -0.004070914816111326, -0.009239904582500458, 0.013504991307854652, -0.006695582997053862, -0.012045354582369328, -0.0009725334821268916, 0.0016579937655478716, -0.0312281996011734, -0.009494337253272533, -0.012668043375015259, 0.015774793922901154, 0.0008612193632870913, 0.012500653974711895, 0.0010830105748027563, -0.0019099151249974966, 0.024425487965345383, 0.031040724366903305, -0.03974498063325882, -0.011723966337740421, -0.034442078322172165, -0.009193035773932934, 0.011215101927518845, -0.0017174171516671777, -0.01779686100780964, 0.029112394899129868, 0.017609383910894394, 0.00031071691773831844, -0.01791738159954548, 0.0045463009737432, 0.030799683183431625, -0.007104013580828905, -0.008925212547183037, 0.009293469600379467, -0.0014328547986224294, 0.012480567209422588, 0.008182002231478691, -0.033826086670160294, -0.0019266540184617043, 0.02962126024067402, 0.003970480989664793, 0.010779889300465584, 0.0011248579248785973, -0.004168000537902117, -0.01359203364700079, 0.014824021607637405, -0.005995894782245159, 0.007077231537550688, -0.011000842787325382, -0.005333031993359327, 0.015011497773230076, -0.021131260320544243, -0.038727253675460815, -0.006390934344381094, -0.021399084478616714, -0.029433783143758774, -0.008376174606382847, -0.01359203364700079, -0.011034321039915085, -0.009407293982803822, 0.0023016068153083324, -0.0319245420396328, 0.017408516258001328, -0.008248958736658096, -0.0075258356519043446, -0.020783090963959694, -0.02730458788573742, -0.020662570372223854, -0.00945416372269392, -0.014435677789151669, 0.024934351444244385, -0.013431339524686337, 0.007110709324479103, -0.012206047773361206, -0.020675960928201675, -0.0025911906268447638, 0.0006159936310723424, -0.020193878561258316, -0.023688973858952522, 0.01668539270758629, 0.004221565090119839, -0.010465196333825588, -0.017247822135686874, -0.013571946881711483, 0.0429052971303463, -0.02255072444677353, 0.019296670332551003, 0.005530551541596651, -0.01181770395487547, -0.016524698585271835, 0.006916537415236235, 0.001279693329706788, 0.007338359020650387, 0.016792522743344307, 0.020930392667651176, 0.018131639808416367, 0.009875984862446785, -0.015573926270008087, 0.005620941985398531, 0.043708767741918564, 0.008329305797815323, -0.021747253835201263, -0.008034699596464634, -0.02060900442302227, 0.034093908965587616, -0.00970190018415451, 0.012969344854354858, -0.0011976724490523338, 0.0024790395982563496, 0.027639366686344147, 0.003923611715435982, 0.002450583502650261, -0.03693283721804619, 0.011402578093111515, -0.023983579128980637, 0.028844572603702545, -0.013558556325733662, 0.015145408920943737, 0.017529036849737167, 0.023354195058345795, -0.02766614966094494, -0.021439258009195328, 0.005235946271568537, 0.018814587965607643, 0.012400220148265362, -0.02975517138838768, 0.00688975490629673, -0.010672759264707565, 0.009420685470104218, 0.013766119256615639, 0.01128875371068716, -0.004871036857366562, 0.03781665489077568, -0.028951702639460564, 0.0052259028889238834, 0.013384470716118813, -0.027719713747501373, -0.016002444550395012, -0.06358125805854797, 0.006046111695468426, -0.0076798340305686, 0.018238767981529236, -0.0009532836847938597, 0.02451922558248043, 0.013203689828515053, 0.06904485076665878, -0.015935488045215607, 0.007733398582786322, -0.006052807439118624, -0.0018546765204519033, 0.037602394819259644, 0.00332100922241807, -0.03612936660647392, 0.010277720168232918, 0.006534889340400696, 0.027277806773781776, 0.024920960888266563, 0.01999301090836525, 0.022979240864515305, 0.0056711588986217976, 0.011978398077189922, -0.03112107142806053, 0.0016253527719527483, -0.0049078622832894325, -0.006498063448816538, -0.00509533891454339, 0.003625658340752125, -0.005172337871044874, 0.008242262527346611, 0.008864952251315117, -0.0014428981812670827, 0.004489388316869736, -0.00719105638563633, 0.01718086563050747, -0.016122965142130852, -0.00786061491817236, -0.03816482424736023, -0.020528657361865044, 0.003572093555703759, -0.003203836502507329, -0.034227821975946426, -0.022403420880436897, 0.01298273541033268, 0.013966986909508705, 0.00835608784109354, 0.01506506185978651, 0.007244620937854052, 0.013310819864273071, 0.005888765212148428, -0.01285551954060793, -0.041137661784887314, 0.016524698585271835, 0.021867774426937103, -0.0073048812337219715, -0.014850803650915623, -0.02330062910914421, -0.0034716599620878696, -0.005691245663911104, 0.012239526025950909, -0.009735378436744213, 0.009360425174236298, -0.005764896981418133, 0.004291868768632412, -0.009480945765972137, 0.016605045646429062, 0.015814967453479767, -0.01353177335113287, 0.02438531443476677, 0.025322696194052696, -0.011556576937437057, 0.007853918708860874, -0.008315914310514927, 0.008643997833132744, 0.056296464055776596, 0.0012989431852474809, 0.008931907825171947, 0.0004712016670964658, -0.0036156149581074715, -0.011985094286501408, 0.0027234284207224846, 0.0008804692188277841, -0.014462459832429886, 0.0013207037700340152, 0.033585045486688614, 0.015948878601193428, -0.0014395504258573055, -0.013049691915512085, 0.02340775914490223, -2.3944556232891046e-05, 0.005771592725068331, -0.017368342727422714, -0.007023666985332966, -0.011369099840521812, 0.030772900208830833, 0.021666906774044037, 0.0037595699541270733, -0.0008561977301724255, 0.012386828660964966, -0.0032574012875556946, -0.011991789564490318, -0.029915865510702133, -0.0005327173275873065, -0.0010989125585183501, -0.026929635554552078, 0.022724809125065804, 0.03326365724205971, 0.005443509202450514, 0.03803091123700142, 0.007673138286918402, -0.027358153834939003, -0.01347151305526495, 0.012587696313858032, -0.013257254846394062, 0.029514130204916, -0.004338738042861223, 0.00503507861867547, 0.03235305845737457, -0.020033184438943863, -0.012092223390936852, -0.01755581982433796, 0.004871036857366562, 0.018453028053045273, -0.038620125502347946, -0.025282522663474083, 0.0028673834167420864, 0.01128875371068716, 0.018345898017287254, 0.021907947957515717, 0.030156906694173813, 0.012380133382976055, -0.01067945547401905, 0.03026403672993183, -0.008690866641700268, -0.0021275216713547707, 0.0205018762499094, 0.012159178964793682, -0.017502253875136375, -0.023956796154379845, 0.005664463620632887, 0.0004540442314464599, 0.023755928501486778, -0.014797238633036613, -0.014743674546480179, -0.011958311311900616, -0.00707053579390049, -0.030451511964201927, -0.01988588273525238, 0.011342317797243595, 0.015265929512679577, -0.007385228294879198, -0.00196515372954309, -0.018680676817893982, -0.03379930555820465, 0.016377396881580353, -0.00506520876660943, 0.0024689962156116962, -0.015667663887143135, 0.02510843798518181, -0.020448310300707817, 0.010645977221429348, 0.02083665505051613, -0.018600329756736755, -0.012728303670883179, -0.0016906347591429949, -0.010532152839004993, -0.018841370940208435, -0.008978776633739471, 0.02755901962518692, 0.038834381848573685, 0.002909230999648571, -0.0002581984153948724, -0.005898808594793081, -0.009373816661536694, -0.00011748656106647104, 0.00028372532688081264, 0.008322609588503838, -0.024345140904188156, -0.019323453307151794, -0.012339959852397442, 0.02315332740545273, -0.002529256511479616, -0.01706034690141678, 0.022148989140987396, 0.004305259790271521, 0.02451922558248043, -0.03618293255567551, -0.009199731051921844, -0.012627869844436646, 0.004797385539859533, -0.0026280165184289217, 0.02790719084441662, 0.009065819904208183, -0.02218916267156601, -0.009186340495944023, 0.0009357077651657164, -0.015466797165572643, 0.007699920795857906, 0.007786963135004044, -0.01316351629793644, 0.004017349798232317, -0.006374195218086243, 0.0010629238095134497, -0.00512546906247735, 0.005383248906582594, -0.011503011919558048, 0.011824400164186954, 0.030049776658415794, 0.0044090417213737965, 0.011764139868319035, 0.010204068385064602, 0.011241883970797062, 0.0029711651150137186, -0.0439230240881443, -0.0040742624551057816, -0.04041454195976257, 0.013257254846394062, -0.002248042030259967, -0.013873248361051083, 0.02804110199213028, -0.006943319924175739, -0.04095018655061722, -0.023729147389531136, 0.005892113316804171, 0.02854996733367443, 0.016270266845822334, 0.0002575707039795816, -0.0205018762499094, -0.014234810136258602, 0.016658611595630646, -0.015332886017858982, 0.00399726303294301, -0.03781665489077568, 0.030585424974560738, -0.008563650771975517, -0.008851560764014721, 0.00670227874070406, 0.00018904560420196503, -0.015319494530558586, -0.03511163964867592, -0.031067505478858948, 0.014167853631079197, 0.00707053579390049, 0.019537711516022682, 0.007706616073846817, 0.008329305797815323, -0.013364383950829506, -0.005319640971720219, 0.028469620272517204, 0.004007306415587664, -0.006240283604711294, 0.00963494461029768, 0.025456607341766357, 0.036156147718429565, 0.025336086750030518, -0.003836569143459201, 0.030772900208830833, 0.013397862203419209, 0.004770603030920029, 0.027960754930973053, -0.026648420840501785, -0.00396043760702014, 0.012647956609725952, 0.003846612526103854, 0.00515559921041131, -0.006230240222066641, -0.00010911708523053676, 0.004278477746993303, -0.0013466491363942623, 0.028121449053287506, 0.008148524910211563, 0.03441529721021652, -0.030665772035717964, -0.04293207824230194, -0.009688508696854115, 0.024331748485565186, -0.004917905665934086, 0.0133442971855402, -0.004094349220395088, -0.024184446781873703, 0.016658611595630646, -0.01548018865287304, 0.0025878429878503084, -0.00515559921041131, -0.005091990809887648, 0.008637302555143833, -0.002402040408924222, 0.012299786321818829, 0.0314156748354435, -0.03454921022057533, 0.0008490836480632424, -0.02426479384303093, 0.009045733138918877, -0.00908590666949749, 0.003622310468927026, 0.02184099331498146, -0.03256731852889061, -0.033852867782115936, -0.00897208135575056, 0.003418095177039504, -0.03537946194410324, -0.02403714321553707, 0.027532238513231277, -0.023568453267216682, -0.017488863319158554, -0.015801576897501945, -0.03497772663831711, -0.0266885943710804, 0.007699920795857906, 0.0014922780683264136, -0.0019551103468984365, -0.0033929867204278708, -0.059188954532146454, -0.02099734917283058, -0.005282815080136061, 0.0035285723861306906, 0.04124479368329048, 0.010378153994679451, 0.05876043811440468, 0.013170212507247925, 0.019430583342909813, -0.03425460308790207, -0.007144187111407518, -0.0028673834167420864, -0.010163895785808563, 0.019082412123680115, 0.009983114898204803, -0.001336605753749609, 0.00798783078789711, -0.025751212611794472, 0.010706237517297268, -0.011938224546611309, -0.04510144889354706, 0.03267444670200348, 0.022711418569087982, -0.007880701683461666, -0.02596547082066536, 0.02038135565817356, -0.03441529721021652, 0.05380570515990257, 0.0014629849465563893, -0.013806292787194252, -0.033585045486688614, -0.016002444550395012, -0.006779278162866831, 0.011985094286501408, -0.005825157277286053, 0.014676718041300774, 0.0013282363070175052, 0.015346276573836803, -0.0010620868997648358, 0.020341182127594948, -0.015600709244608879, -0.0009716965141706169, -0.01086023636162281, 0.007412010803818703, -0.0394771583378315, -0.011188319884240627, 0.007666443008929491, 0.006883059628307819, -0.004000611137598753, 0.006387586239725351, -0.005530551541596651, 0.027237633243203163, 0.004767255391925573, -0.01743529923260212, 0.0021409126929938793, -0.008737736381590366, -0.023099761456251144, 0.019470756873488426, -0.0010972387390211225, -0.024572789669036865, -0.003913568332791328, -0.019537711516022682, 0.040575236082077026, 0.018506592139601707, 0.005031730979681015, -0.014542806893587112, -0.008851560764014721, 0.005577420815825462, 0.005574073176831007, -0.0034850509837269783, 0.005657767876982689, -0.014127681031823158, -0.03741491958498955, -0.0181852038949728, 0.00048082656576298177, 0.004860993474721909, 0.015533752739429474, 0.0073584457859396935, -0.007063840515911579, 0.02391662262380123, -0.026983199641108513, 0.02340775914490223, -0.01890832744538784, 0.004014002159237862, -0.011027625761926174, 0.02790719084441662, -0.006337369326502085, -0.007023666985332966, 0.026045817881822586, -0.018720850348472595, -0.010813366621732712, -0.015198973938822746, 0.0025426477659493685, 0.011891355738043785, 0.0038533080369234085, -0.005748158320784569, 0.012045354582369328, -0.007351750507950783, 0.01659165509045124, -0.0020304357167333364, -0.028576748445630074, 0.02854996733367443, -0.03342435136437416, 0.01518558245152235, 0.010806671343743801, -0.004717038478702307, 0.0015416580718010664, -0.013036300428211689, -0.014649935998022556, -0.010846844874322414, -0.01624348573386669, -0.026393989101052284, -0.0036490927450358868, 0.003846612526103854, 0.019845709204673767, 2.0125980881857686e-05, -0.036638230085372925, -0.01316351629793644, -0.00025924461078830063, 0.024961134418845177, -0.019832316786050797, -0.00399726303294301, 0.0035285723861306906, -0.0030967071652412415, 0.011503011919558048, -0.00187476328574121, -0.00896538607776165, -0.013873248361051083, -0.002435518428683281, 0.014234810136258602, 0.00834939256310463, -0.019912663847208023, 0.004569735378026962, 0.05289510637521744, 0.009005559608340263, -0.0024974525440484285, -0.025429824367165565, -0.010016592219471931, -0.041753657162189484, -0.012467175722122192, 0.021653516218066216, 0.029594477266073227, 0.026661813259124756, 0.013752727769315243, 0.007412010803818703, 0.010277720168232918, -0.0011767487740144134, 0.017274605110287666, -0.02378271147608757, 0.0026547987945377827, 0.02988908439874649, 0.032620880752801895, 0.012165874242782593, -0.003819830249994993, -0.014462459832429886, -0.03428138792514801, 0.014274983666837215, 0.0010604129638522863, 0.01438211277127266, 0.036879271268844604, 0.012212743982672691, -0.01208552811294794, -0.026876071467995644, -0.004563040100038052, 0.0075860959477722645, 0.013109952211380005, -0.00032138798269443214, -0.013150125741958618, 0.0006226892583072186, -0.01371255423873663, 0.004619952291250229, -0.04437832534313202, 0.026193121448159218, 0.010505369864404202, -0.011087886057794094, 0.011221797205507755, 0.0011993463849648833, -0.0185333751142025, 0.011482925154268742, -0.017515646293759346, 0.011335622519254684, 0.007144187111407518, 0.02000640332698822, 0.05099356174468994, -0.003007990773767233, 0.009788942523300648, -0.015225755982100964, -0.0010788257932290435, -0.012179265730082989, -0.006350760813802481, 0.027532238513231277, 0.019966229796409607, -0.0055104647763073444, -0.015105235390365124, 0.006330674048513174, -0.005061861127614975, 0.010692846029996872, -0.03146924078464508, -0.027639366686344147, -0.023233674466609955, 0.009862594306468964, 0.0026096035726368427, 0.005791679490357637, 0.001986914314329624, 0.01720764860510826, -0.004452562890946865, 0.020301008597016335, -0.01876102387905121, 0.007217838894575834, -0.017649557441473007, 0.03184419497847557, -0.009045733138918877, -0.009956331923604012, 0.0016512982547283173, 0.005138860084116459, 0.00829582754522562, -0.04145905002951622, -0.006267066113650799, 0.15630169212818146, 0.010625890456140041, 0.01620331220328808, 0.02390323206782341, 0.01782364211976528, 0.0038265257608145475, -0.0004879406187683344, 0.004941340535879135, -0.017837034538388252, 0.019417190924286842, -0.019926056265830994, 0.0006306402501650155, -0.020555440336465836, 0.00860382430255413, 0.018841370940208435, -0.012393524870276451, 0.004275130107998848, -0.041405487805604935, -0.004392302595078945, -0.0312281996011734, -0.022751592099666595, 0.00027954060351476073, -0.03136211261153221, -0.008684171363711357, -0.0017031889874488115, -0.0017425254918634892, -0.009494337253272533, 0.0010913800215348601, 0.015413232147693634, 0.018091466277837753, -0.008938604034483433, 0.007197752129286528, -0.005179033614695072, 0.006327325943857431, -0.025389650836586952, 0.011241883970797062, 0.005306249484419823, 0.00865738932043314, 0.006544932723045349, 0.005557334050536156, 0.01668539270758629, -0.01830572448670864, -0.004804080817848444, -0.0153596680611372, 0.01901545561850071, 0.007050449028611183, -0.007063840515911579, 0.0038600037805736065, 0.0023401062935590744, 0.0307193361222744, -0.002492430852726102, -0.0025125176180154085, 0.01230648159980774, 0.018720850348472595, 0.005564029794186354, -0.002996273571625352, 0.001990262186154723, -0.01067945547401905, 0.016752349212765694, -0.000952446716837585, -0.02134551852941513, 0.03061220608651638, 0.00884486548602581, 0.02097056619822979, -0.009052428416907787, 0.03283514082431793, -0.006139849778264761, 0.00799452606588602, -0.009708595462143421, 0.0017910684691742063, 0.0017659601289778948, -0.019470756873488426, -0.00834939256310463, 0.007612877991050482, -0.024934351444244385, -0.020689351484179497, 0.04946696758270264, 0.000734003318939358, 0.0016663633286952972, 0.03618293255567551, -0.0600459910929203, -0.014904368668794632, -0.004315303172916174, 0.03219236433506012, -0.02571103908121586, -0.028362490236759186, 0.038379084318876266, -0.002864035777747631, -0.0002600815496407449, -0.015694446861743927, -0.018372680991888046, -0.03508485481142998, 0.005687898024916649, 0.01469010952860117, 0.02876422554254532, -0.010050070472061634, -0.0038566559087485075, 0.026260077953338623, -0.019189542159438133, -0.019417190924286842, -0.02072952501475811, 0.029942648485302925, 0.012728303670883179, 0.00975546520203352, -3.585798549465835e-05, -0.015922097489237785, 0.009400598704814911, 0.00034419482108205557, -0.017984336242079735, -0.015640882775187492, -0.02364880032837391, -0.010237546637654305, 0.009963028132915497, -0.005336379632353783, 0.015895314514636993, -0.013672380708158016, -0.024412095546722412, -0.033210091292858124, 0.004265086725354195, 0.00399726303294301, -0.007291490212082863, -0.02074291743338108, -0.015319494530558586, -0.012413611635565758, -0.0031536195892840624, -0.01353177335113287, -0.025644084438681602, 0.009842507541179657, -0.016605045646429062, 7.595302304252982e-05, 0.02305958792567253, -0.06818781793117523, 0.01481063012033701, -0.0011307166423648596, -0.019845709204673767, -0.00185969821177423, -0.01128875371068716, -0.0036390493623912334, 0.007157578598707914, -0.0038566559087485075, 0.010150504298508167, -0.0019366974011063576, -0.018868153914809227, -0.002417105482891202, -0.0018345897551625967, -0.0159622710198164, -0.002517539309337735, -0.004221565090119839, 0.014274983666837215, -0.008443130180239677, -0.020167097449302673, -0.02561730146408081, 0.03500450775027275, -0.037066750228405, -0.006377542857080698, -0.02806788496673107, -0.008215480484068394, -0.033852867782115936, -0.011496316641569138, 0.014824021607637405, -0.019055629149079323, 0.024304967373609543, 0.008028004318475723, 0.000515559921041131, -0.010076852515339851, -0.021399084478616714, -0.16787166893482208, -0.0037394831888377666, 0.01499810628592968, -0.045315708965063095, 0.003116793930530548, 0.0062503269873559475, 0.020100140944123268, -0.00029983659624122083, 0.01383307483047247, -0.006708974484354258, 0.007003580220043659, -0.026554683223366737, -0.007197752129286528, -0.018680676817893982, -0.017890598624944687, -0.010351371951401234, -0.02123839035630226, -0.014221418648958206, 0.044083718210458755, 0.01444906834512949, 0.029567696154117584, -0.020301008597016335, 0.03315652906894684, 0.01718086563050747, -0.011382491327822208, 0.0026280165184289217, -0.010666063986718655, 0.010384849272668362, -8.291014819405973e-05, -0.0260859914124012, 0.004355476703494787, 0.019577885046601295, -0.008034699596464634, -0.029808737337589264, 0.010960670188069344, 0.005232598166912794, -0.014609762467443943, -0.02038135565817356, -0.011697184294462204, 0.006009285803884268, 0.006106371991336346, 0.027960754930973053, -0.007914179004728794, -0.0266885943710804, 0.011415969580411911, 0.004218217451125383, 0.021158043295145035, -0.0363704077899456, -0.0007951005245558918, 0.009280078113079071, 0.003079968271777034, -0.000952446716837585, 0.039584286510944366, 0.00951442401856184, 0.019202932715415955, -0.0075860959477722645, -0.02401036210358143, 0.003279161872342229, -0.008128438144922256, -0.003926959354430437, 0.02378271147608757, -0.019122585654258728, -0.014556197449564934, 0.004204826429486275, -0.014315157197415829, -0.011014234274625778, -0.008918517269194126, 0.005888765212148428, -0.023206891492009163, -0.0009541205945424736, 0.0006101350300014019, 0.011857877485454082, 0.02644755318760872, -0.010411632247269154, 0.0185333751142025, 0.013980377465486526, -0.03208523616194725, 0.0040976968593895435, -0.006046111695468426, -0.005711332429200411, -0.003158641280606389, 0.03184419497847557, -0.0051522511057555676, -0.017595993354916573, 0.039584286510944366, 0.017287995666265488, 0.0044090417213737965, 0.0059456778690218925, -0.0024790395982563496, -0.023327412083745003, 0.014730283059179783, -0.01037145871669054, -0.0032574012875556946, -0.005858635529875755, 0.02146603912115097, 0.015881923958659172, 0.02536286972463131, -0.020649177953600883, -0.005038426257669926, -0.015587317757308483, 0.008322609588503838, -0.019591275602579117, -0.02366219088435173, 0.03500450775027275, 0.015091844834387302, 0.03819160535931587, -0.013692467473447323, 0.012393524870276451, 0.02830892615020275, 0.028335707262158394, -0.00829582754522562, -0.03074611723423004, 0.017877208068966866, 0.03246018663048744, -0.012406915426254272, 0.032728008925914764, 0.006424412131309509, -0.014850803650915623, 0.037254225462675095, 0.005845244042575359, 0.02790719084441662, -0.01671217568218708, 0.004827515687793493, -0.0013868226669728756, 0.010096939280629158, 0.0014479198725894094, -0.11344996094703674, -0.02766614966094494, 0.01730138622224331, 0.028389273211359978, 0.017167475074529648, -0.019363626837730408, -0.004837559070438147, 0.009018950164318085, 0.019912663847208023, 0.04204826429486275, 0.013002822175621986, -0.008637302555143833, 0.0033143137115985155, 0.009099297225475311, -0.037361353635787964, -0.023019414395093918, -0.020461702719330788, -0.0002247205120511353, -0.015774793922901154, 0.02745189145207405, -0.00048166350461542606, 0.011891355738043785, -0.019122585654258728, 0.016645219177007675, -0.004422432743012905, 0.008449826389551163, -0.028576748445630074, 0.006565019488334656, 0.01754242740571499, 0.010645977221429348, -0.016404177993535995, -0.019336843863129616, 0.010947278700768948, -0.007753485348075628, 0.0004088490386493504, -0.0075860959477722645, -0.024318357929587364, -0.005845244042575359, 0.02059561386704445, -0.001580994576215744, 0.007813745178282261, -0.00026782334316521883, 0.019939446821808815, -0.006394281983375549, 0.010485283099114895, -0.012654651887714863, -0.021171433851122856, 0.03401356190443039, 0.00024794580531306565, -5.586627230513841e-05, -0.018104856833815575, -0.0038030913565307856, -0.012949258089065552, -0.012935866601765156, 0.021439258009195328, -0.014529415406286716, 0.006869668606668711, -0.026621639728546143, -0.009119383990764618, 0.0021409126929938793, -0.02611277438700199, 0.015279320999979973, -0.0035520067904144526, 0.007432097569108009, 0.005359814502298832, 0.012119005434215069, -0.029781954362988472, -0.00371939642354846, 0.028121449053287506, -0.014114289544522762, -0.0213589109480381, 0.021988295018672943, -0.006896450649946928, 0.03816482424736023, -0.015560535714030266, -0.0015048322966322303, -0.010465196333825588, -0.0026983199641108513, -0.010103635489940643, 0.0001061354560079053, -0.0015634186565876007, -0.014127681031823158, -0.013966986909508705, -0.01766294799745083, 0.00518572935834527, 0.026313642039895058, 0.00897208135575056, 0.023260455578565598, 0.020180488005280495, -0.03583476319909096, 0.029701607301831245, 0.008945299312472343, 0.030156906694173813, -0.002740167547017336, 0.004998252727091312, -0.002966143423691392, -0.006066198460757732, -0.01706034690141678, 0.02000640332698822, -0.014957932755351067, -0.027987537905573845, -0.005379901267588139, -0.045556746423244476, 0.020461702719330788, -0.016297049820423126, -0.0057247234508395195, -0.010592412203550339, 0.0023484758567065, -0.005316292867064476, -0.014556197449564934, -0.003692614147439599, 0.004924601409584284, -0.024840613827109337, 0.0032289449591189623, -7.281446596607566e-05, -0.003146924078464508, -0.009407293982803822, -0.003866699291393161, 0.0037863522302359343, 0.0005168153438717127, 0.03404034674167633, 0.012868911027908325, -0.009902767837047577, -0.0031753804069012403, 0.012105614878237247, 0.0046166046522557735, -0.006719017866998911, 0.02062239684164524, -0.01171727105975151, 0.027853626757860184, -0.0387808196246624, -0.03160315379500389, 0.02209542505443096, -0.01584175042808056, 0.0009055776172317564, 0.01511862687766552, -0.003034773049876094, -0.0017642861930653453, 0.030317600816488266, 0.015922097489237785, 0.010177286341786385, -0.004911210387945175, -0.016672002151608467, -0.022590897977352142, 0.01756921038031578, 0.016765739768743515, 0.0013156820787116885, -0.015600709244608879, -0.00448604067787528, -0.0005745647358708084, 0.015627490356564522, 0.007231229916214943, 0.02488078735768795, 0.015667663887143135, -0.006216849200427532, -0.017006780952215195, 0.000248364289291203, -0.03599545359611511, 0.00946085900068283, -0.028442837297916412, -0.009688508696854115, 0.0062503269873559475, 0.05720706284046173, 0.0040976968593895435, 0.01913597621023655, -0.008751126937568188, -0.015667663887143135, -0.02793397381901741, -0.019685015082359314, -0.015024888329207897, -0.010565630160272121, -0.0035821369383484125, -0.011000842787325382, -0.005985851399600506, 0.020903611555695534, 0.030585424974560738, 0.01902884803712368, 0.0016462765634059906, -0.020796481519937515, -0.013618816621601582, -0.015814967453479767, 0.009226514026522636, 0.03698640316724777, 0.010257633402943611, 0.006645366549491882, 0.0023283890914171934, 0.04253034293651581, 0.011034321039915085, -0.00240873615257442, -0.006936624180525541, 0.018680676817893982, -0.006139849778264761, 0.009340338408946991, 0.005520508158951998, -0.03942359238862991, -0.008336001075804234, -0.0024304967373609543, 0.001863046083599329, -0.007425401825457811, 0.003605571575462818, 0.02766614966094494, 0.005795027129352093, -0.015440015122294426, -0.004355476703494787, -0.03768274188041687, 0.015533752739429474, -0.02512182854115963, 0.0045463009737432, -0.003903524950146675, -0.012192657217383385, 0.013056387193500996, 0.012942562811076641, -0.014542806893587112, 0.009554597549140453, 0.034093908965587616, 0.01523914746940136, -0.007271403446793556, 0.004382259212434292, -0.005687898024916649, 0.01708712801337242, -0.023608626797795296, 0.003090011654421687, 0.00028016831493005157, 0.028148232027888298, 0.06920554488897324, -0.001351670827716589, 0.00236354093067348, -0.0014939520042389631, 0.023247065022587776, -0.020635787397623062, 0.003362856572493911, -0.0016931456048041582, -0.04065558314323425, -0.017582600936293602, -0.013551860116422176, -0.00187476328574121, -0.0033929867204278708, -0.019952837377786636, 0.03205845132470131, -0.01742190681397915, -0.018573548644781113, 0.08329305797815323, -0.015252538956701756, 0.0005256033036857843, -0.012935866601765156, -0.009219817817211151, 0.03291548788547516, 0.022497160360217094, -0.01731477864086628, -2.9737804652540945e-05, -0.02635381557047367, 0.014167853631079197, -0.010773193091154099, -0.013913421891629696, -0.03187097609043121, -0.012119005434215069, 0.018600329756736755, -0.020568830892443657, 0.04076271131634712, -0.027130503207445145, 0.006400977727025747, 0.006685539614409208, 0.030880030244588852, 0.010150504298508167, -0.02501469850540161, 0.007231229916214943, 0.01572122983634472, 0.018238767981529236, -0.022711418569087982, -0.007291490212082863, -0.052252329885959625, -0.004911210387945175, -0.035915106534957886, -0.06433116644620895, -0.03674536198377609, 0.006364151835441589, 0.0068227993324398994, 0.00994294136762619, -0.01310325600206852, 0.023006023839116096, 0.004720386117696762, -0.010471892543137074, -0.0133442971855402, -0.028228579089045525, -0.025536954402923584, -0.01975196972489357, -0.007371837273240089, 0.0007423727656714618, 0.0005967438337393105, -0.012560914270579815], "8875d27e-0ca8-4ae5-82bf-284d04df8f36": [0.002482895739376545, 0.013028455898165703, -0.003413981758058071, -0.01897256262600422, -0.02639426290988922, -0.005512298550456762, -0.01708340272307396, -0.004253983031958342, -0.021172083914279938, -0.0007417482556775212, 0.007583627477288246, 0.013203877955675125, -0.008312303572893143, 0.02133401297032833, -0.00025153657770715654, -0.0005182538880035281, 0.013163396157324314, 0.005454949103295803, -0.0035792833659797907, -0.004196633584797382, -0.01171279139816761, 0.004105549305677414, 0.00446314038708806, -0.003994223661720753, -0.01986316591501236, 0.005029888357967138, 0.00908146146684885, -0.0028371133375912905, 0.0056944675743579865, -0.01047809049487114, 0.013966289348900318, -0.0003643379604909569, -0.04191236197948456, -0.013203877955675125, -0.03257451206445694, 0.0037580786738544703, 0.0036838618107140064, -0.03157595917582512, 0.024936910718679428, -0.019728226587176323, 0.033788975328207016, 0.0029197640251368284, -0.011719537898898125, 0.014897375367581844, -0.011098814196884632, 0.034895483404397964, 0.023951848968863487, -0.02323666587471962, -0.004321453161537647, 0.018797140568494797, 0.02631329745054245, 0.045528754591941833, -0.029093062505126, 0.0028101252391934395, 0.000695784343406558, 0.009675197303295135, 0.00948628131300211, 0.010201463475823402, 0.005680973641574383, -0.012144599109888077, 0.0005486154113896191, -0.008568689227104187, -0.006267962511628866, -0.00595760066062212, -0.014897375367581844, 0.011274236254394054, -0.004132537171244621, 0.011456404812633991, -0.03146800398826599, 0.029821738600730896, 0.003061451017856598, 0.010214957408607006, -0.01126074232161045, 0.00997881218791008, 0.02055136114358902, -0.005633744411170483, 0.004355187993496656, 0.0029163905419409275, 0.002540245419368148, 0.007556639611721039, 0.012286285869777203, -0.025179801508784294, -0.003893018700182438, 0.028067518025636673, 0.01847328431904316, -0.019120996817946434, 0.006247721612453461, 0.02323666587471962, -0.011969177052378654, -0.01458701305091381, 0.007151819299906492, -0.005920492112636566, 0.005320009309798479, 0.017744608223438263, -0.005363864824175835, 0.005761937703937292, -0.028310410678386688, 0.02879619412124157, 0.009762908332049847, -0.03365403413772583, -0.01995762437582016, -0.0074756755493581295, -0.009094955399632454, -0.006345552857965231, -0.015855448320508003, 0.011901707388460636, 0.022507989779114723, -0.020578349009156227, 0.011625080369412899, -0.0015138579765334725, -0.03160294517874718, 0.02451859600841999, 0.0005515672382898629, -0.015315689146518707, 0.011186525225639343, -0.013480504974722862, -0.001387351774610579, -0.010613029822707176, -0.018338344991207123, -0.028337398543953896, 0.016462678089737892, 0.00784001313149929, -0.0003546391671989113, -0.022804858162999153, 0.028931133449077606, -0.01151038147509098, -0.016327738761901855, -0.019606780260801315, -0.007752302568405867, -0.027770649641752243, 0.03959139436483383, 0.005320009309798479, 0.0164896659553051, 0.029524870216846466, 0.000438554969150573, -0.00045753089943900704, -0.023857390508055687, 0.007556639611721039, -0.0152887012809515, -0.036568738520145416, 0.025760043412446976, 0.009999053552746773, -0.0039031391497701406, 0.025341730564832687, -0.00679760193452239, -0.009020738303661346, 0.021522928029298782, 0.01068050041794777, 0.0076106153428554535, -0.009830377995967865, -0.004604827146977186, 0.00997881218791008, -0.01236050296574831, 0.01310267299413681, 0.004888201132416725, -0.00739471148699522, -0.004658803343772888, 0.004365308675915003, 0.017501717433333397, -0.036298856139183044, 0.028715230524539948, 0.016030870378017426, 0.012225562706589699, 0.008265074342489243, 0.016462678089737892, 0.03144101798534393, 0.006274709478020668, 0.013008215464651585, -0.003670367645099759, 0.00540772033855319, -0.008224592544138432, 0.0031103668734431267, -0.012826045975089073, 0.019687743857502937, 0.00014864483091514558, -0.00015728942526038736, 0.013035203330218792, 0.023412087932229042, -0.0196472629904747, -0.007617362309247255, 0.0028894024435430765, -0.007732061669230461, 0.014303638599812984, 0.027082456275820732, -0.025436189025640488, -0.00883856974542141, 0.004547477699816227, 0.029821738600730896, 0.0014910869067534804, -0.016422197222709656, -0.0008906039292924106, 0.020227504894137383, 0.00022855460701975971, -0.00010410409595351666, -0.6097128391265869, -0.0004701815196312964, -0.008238086476922035, 0.00044741042074747384, 0.01758268103003502, 0.009884354658424854, 0.01429014466702938, -0.01056580152362585, -0.010363391600549221, 0.04388248547911644, 0.010613029822707176, 0.010788451880216599, -0.013413035310804844, -0.005640491843223572, 0.006433263886719942, -0.01994413137435913, 0.013332070782780647, -0.04587959498167038, 0.02373594418168068, 0.0026060284581035376, -0.014546531252563, 0.036784641444683075, -0.0030209689866751432, 0.006240974646061659, 0.00759712141007185, 0.01577448472380638, 0.013574963435530663, -0.02384389564394951, 0.017933525145053864, 0.04258706048130989, -0.032817404717206955, -0.008022182621061802, -0.02056485414505005, 0.011307971552014351, 0.04609550163149834, -0.01360195130109787, 0.005073743872344494, -0.0007000011974014342, -0.01305544376373291, 0.03009161725640297, -0.010990861803293228, -0.023762932047247887, 0.024343173950910568, 0.014816410839557648, 0.033708009868860245, -0.01616581156849861, 0.0004415067960508168, 0.008285315707325935, 0.004996153060346842, -0.04021211713552475, -3.710849705385044e-05, 0.02947089448571205, 0.02512582577764988, -0.008669894188642502, 0.024343173950910568, 0.003599524265155196, 0.012799058109521866, 0.0011461465619504452, 0.01112580206245184, -0.021671362221240997, 0.0015104844933375716, 0.00808965228497982, -0.01944485306739807, 0.023749439045786858, -0.032898370176553726, 0.048983216285705566, -0.014802916906774044, 0.004682417493313551, 0.0038525366690009832, -0.004905068781226873, 0.018122440204024315, 0.028742218390107155, -0.01817641593515873, -0.0062949503771960735, 0.016017377376556396, 0.004611574113368988, 0.002138798823580146, 0.005782178603112698, 0.016341233626008034, 0.013379300013184547, -0.006166757550090551, 4.288034324417822e-05, -0.012529178522527218, 0.001542532816529274, 0.03009161725640297, 0.009789896197617054, -0.020011600106954575, 0.012542672455310822, -0.004756634589284658, -0.0024255462922155857, 0.021495940163731575, 0.023884378373622894, -0.024275705218315125, -0.0197417214512825, -0.007124831434339285, 0.004692538175731897, -0.0036568737123161554, 0.012077129445970058, -0.0038424162194132805, -0.0422632060945034, -0.015261712484061718, -0.030037641525268555, -0.006203866098076105, 0.02144196443259716, 0.00461832107976079, 0.01926943100988865, -0.006217360030859709, -0.007219289429485798, 0.050791412591934204, -0.024842452257871628, -0.022696906700730324, -0.024262210354208946, -0.016827017068862915, 0.004436152055859566, -0.022575460374355316, -0.022710399702191353, 0.03208873048424721, 0.008615918457508087, 0.010754717513918877, -0.022507989779114723, 0.005583141930401325, 0.021792808547616005, 0.0020055456552654505, -0.01196243055164814, 0.0361369289457798, 0.00650748098269105, 0.017987500876188278, -0.0013578336220234632, -0.017231836915016174, 0.005488683935254812, 0.022319074720144272, 0.007954712025821209, 0.01097062136977911, -0.005765310954302549, -0.0068212165497243404, 0.0009125316864810884, 0.0012254237663000822, -0.023304136469960213, 0.006433263886719942, -0.009148931130766869, -0.021765820682048798, 0.0028826554771512747, 0.03079330548644066, -0.022858833894133568, -0.023749439045786858, -0.024383656680583954, -0.02383040264248848, -0.023992329835891724, -0.0151942428201437, -0.007522904314100742, 0.013487252406775951, 0.022602448239922523, -0.031144149601459503, 0.050089724361896515, 0.011733031831681728, -0.01325785368680954, -0.013271348550915718, -0.013993277214467525, 0.006541216280311346, -0.00957399234175682, -0.005394225940108299, 0.04172344505786896, 0.006645794492214918, 0.018918586894869804, -0.015639545395970345, -0.022076182067394257, -0.014114722609519958, -0.0003495789133012295, -0.02798655442893505, -0.03880874067544937, 0.008933027274906635, 0.0003112053673248738, -0.009182666428387165, 0.0011975924717262387, -0.02562510408461094, 0.030037641525268555, -0.04237115755677223, 0.0017508463934063911, 0.004098802339285612, -0.01608484610915184, -0.01837882585823536, 0.005576394964009523, -0.0059069981798529625, -0.029254989698529243, 0.014802916906774044, 0.013365806080400944, 0.006618806626647711, 0.01553159300237894, 0.0013696409296244383, 0.013082432560622692, 0.013129660859704018, 0.014303638599812984, -0.03117113746702671, -0.010613029822707176, -0.004672297276556492, 0.015369664877653122, 0.014222675003111362, 0.003953741863369942, -0.0009943390032276511, 0.02412727102637291, 0.022494496777653694, -0.005842901766300201, 0.014155205339193344, -0.053571175783872604, -0.011854478158056736, -0.030739329755306244, 0.0262188408523798, -0.006956156343221664, 0.010957127436995506, -0.016665088012814522, 0.008750858716666698, -0.027149926871061325, -0.007124831434339285, -0.02056485414505005, 0.027743661776185036, 0.03864681348204613, -0.015275207348167896, 0.0062139867804944515, -0.002503136871382594, 0.00923664215952158, 0.017893042415380478, 0.04191236197948456, 0.009169172495603561, 0.018635213375091553, -0.010532066226005554, 0.005940733011811972, 0.012967732734978199, -0.01956629939377308, -0.00662892684340477, -0.03581307455897331, -0.004014464560896158, -0.0040718140080571175, 0.028931133449077606, -0.004368682391941547, 0.03179186210036278, 0.007853507064282894, 0.057052627205848694, -0.009985559619963169, 0.017731115221977234, -0.00011016584903700277, 0.003980729728937149, 0.03149499371647835, -0.006153263617306948, -0.04220923036336899, 0.013203877955675125, 0.023277148604393005, 0.0357590988278389, 0.022588955238461494, -0.012266045436263084, 0.05378707870841026, -0.0056641059927642345, 0.0053706117905676365, -0.02661016583442688, 0.010107005015015602, -0.010262186639010906, -0.0006266275886446238, 0.02194124273955822, 0.017596174031496048, 0.00824483297765255, 0.0011824116809293628, 0.016219787299633026, -0.01142267044633627, 0.011746525764465332, 0.006369167473167181, 0.013163396157324314, 0.002941691782325506, -0.013871830888092518, -0.018702682107686996, -0.023506546393036842, -0.013777373358607292, -0.03524632379412651, -0.059211667627096176, -0.024950403720140457, -0.004334947094321251, 0.033896926790475845, 0.010653512552380562, 0.01617930456995964, 0.023452570661902428, 0.009094955399632454, -0.0028320529963821173, -0.008447243832051754, -0.030847281217575073, 0.029902702197432518, 0.013359058648347855, 0.005394225940108299, -0.014546531252563, -0.005670852959156036, 0.009479534812271595, -0.0027426553424447775, 0.0036231386475265026, -0.028175469487905502, 0.013966289348900318, -0.004341694060713053, -0.012846287339925766, -0.025233779102563858, 0.00538410572335124, 0.038565848022699356, -0.0339239127933979, 0.024343173950910568, -0.012212068773806095, -0.0030783184338361025, 0.027932578697800636, -0.03508439660072327, 0.002423859667032957, 0.030550414696335793, 0.008453990332782269, 0.02771667391061783, 0.006382661405950785, 0.006622179877012968, -3.568530155462213e-05, 0.0058294073678553104, -0.017636656761169434, -0.012920504435896873, -0.0353812649846077, 0.022899316623806953, 0.007057361304759979, -0.008717123419046402, -0.01539665274322033, 0.01766364462673664, 0.013750385493040085, -0.008211098611354828, -0.016057858243584633, -0.014519543386995792, -0.00496579147875309, 0.04677020013332367, 0.02801354229450226, -0.01285978127270937, -0.0015416893875226378, 0.003144101705402136, 0.012886769138276577, -0.013129660859704018, -0.027460288256406784, -0.005917118396610022, -0.011611586436629295, -0.018729669973254204, 0.0179740060120821, -0.01007327064871788, 0.014074240811169147, 0.010747970081865788, 0.0014236168935894966, -0.0010677126701921225, -0.020308468490839005, 0.013183637522161007, 0.006311818026006222, 0.01393930148333311, 0.0004583742702379823, 0.002759522758424282, 0.014128217473626137, -0.024599559605121613, 0.012225562706589699, 0.02976776286959648, -0.02600293606519699, 0.004486754536628723, -0.040967781096696854, -0.014357615262269974, 0.004220248199999332, 0.015949906781315804, 0.027176914736628532, -0.004625068046152592, 0.007617362309247255, 0.023884378373622894, -0.015585568733513355, 0.02362799271941185, -0.03049643710255623, 0.0014084361027926207, 0.007165313698351383, 0.0032216922845691442, -0.0034527769312262535, -0.001175664714537561, 0.0055055515840649605, -0.01758268103003502, 0.021779313683509827, -0.011598092503845692, 0.0018756658537313342, -0.00042991037480533123, 0.014114722609519958, -0.019579792395234108, -0.00332627072930336, 0.019188467413187027, 0.018702682107686996, -0.02075377106666565, 0.011179777793586254, 0.00558651564642787, -0.04137260094285011, 0.019674250856041908, -0.026934022083878517, -0.0016361473826691508, -0.009938330389559269, 0.02292630448937416, -0.0032756682485342026, -0.0019178346265107393, 0.01285978127270937, -0.016327738761901855, -0.006942662410438061, 0.01926943100988865, -0.010262186639010906, -0.010491584427654743, -0.01281255204230547, 0.030118605121970177, 0.01161833293735981, 0.0032824152149260044, 0.0035624157171696424, -0.0011672308901324868, -0.009047726169228554, 0.0005431334720924497, -0.022373050451278687, -0.0013173517072573304, 0.0019228948513045907, 0.0009530136594548821, 0.010248692706227303, 0.025652091950178146, -0.0252067893743515, -0.041453566402196884, 0.027568239718675613, -0.0037445847410708666, 0.017825573682785034, -0.020969673991203308, -0.004628441762179136, 0.005363864824175835, 0.0008830135921016335, -0.005090611055493355, 0.008190857246518135, 0.01867569424211979, -0.01202315278351307, 0.006517601665109396, -0.01022170390933752, -0.004388923291116953, -0.004533983767032623, -0.017002439126372337, -0.01236050296574831, 0.011038091033697128, 0.00232096784748137, 0.009702185168862343, -0.011901707388460636, 0.025260766968131065, -0.006247721612453461, 0.02414076402783394, 0.011388935148715973, 0.02373594418168068, 0.008265074342489243, 0.014816410839557648, 0.030415473505854607, 0.007543145678937435, -0.020173529163002968, 0.011645320802927017, -0.04941502586007118, 0.00014484964776784182, 0.021995218470692635, -0.003822175320237875, -0.008157122880220413, -0.0018908466445282102, -0.02709594927728176, -0.014330627396702766, -0.003606271231546998, 0.014371109195053577, -0.0004950611037202179, -0.018702682107686996, -0.008865557610988617, -0.008022182621061802, -0.0009648209088481963, -0.030820293352007866, -0.00439229654148221, -0.04377453401684761, 0.01916147954761982, -0.02600293606519699, -0.005431334488093853, 0.01207038201391697, -5.423955008154735e-05, -0.03273644298315048, -0.023169197142124176, -0.010113752447068691, -0.005093984771519899, -0.0019532563164830208, 0.013338818214833736, 0.007752302568405867, -0.000470603205030784, -0.00573157612234354, -0.00788724236190319, 0.004230368882417679, 0.0013434962602332234, 0.0029214508831501007, 0.006068926304578781, 0.02561161108314991, 0.010444355197250843, 0.03999621421098709, -0.004604827146977186, 0.03454463928937912, 0.00667615607380867, 0.010640018619596958, 0.026866551488637924, -0.02670462429523468, -0.016665088012814522, -0.0034426564816385508, 0.00446314038708806, 0.0052221775986254215, -0.00977640226483345, 0.004513742867857218, -0.023749439045786858, -0.0057349493727087975, 0.029228001832962036, 0.0024744621478021145, 0.023290641605854034, -0.03942946344614029, -0.046527307480573654, -0.04407140240073204, 0.03243957459926605, 0.0015594002325087786, 0.014951351098716259, -0.022373050451278687, 0.013534480705857277, 0.03408583998680115, -0.006784108001738787, 0.015464123338460922, -0.00017384065722581, 0.014708459377288818, 0.004230368882417679, 0.009405317716300488, 0.001787954824976623, 0.005512298550456762, -0.030604390427470207, -0.007853507064282894, -0.022305579856038094, -0.010187969543039799, -0.006824589800089598, -0.008224592544138432, 0.02740631252527237, 0.0006641577929258347, -0.01619279943406582, 0.0015492797829210758, 0.008157122880220413, -0.0233446191996336, -0.014263156801462173, 0.044935017824172974, -0.012232310138642788, -0.019593287259340286, -0.021765820682048798, -0.023182690143585205, -0.03287138044834137, -0.002594221383333206, 0.017812078818678856, 0.004857839550822973, 0.009229895658791065, -0.0359480120241642, -0.007961459457874298, -0.004280971363186836, 0.021522928029298782, 0.040967781096696854, 0.003731090808287263, 0.051870930939912796, 0.008238086476922035, 0.0060959141701459885, -0.006423143669962883, -0.00883182231336832, 0.005566274747252464, 0.0008534954395145178, 0.023493051528930664, -0.01786605454981327, -6.872187896078685e-06, -0.018743164837360382, -0.01936388947069645, -0.003734464291483164, -0.01717786118388176, -0.027028480544686317, 0.008197604678571224, 0.01866220124065876, -0.017245329916477203, -0.018324850127100945, 0.006898806896060705, -0.037567295134067535, 0.03422078117728233, -0.01588243618607521, -0.018149428069591522, -0.027608722448349, 0.0003957536828238517, -0.027460288256406784, 0.024154258891940117, -0.00887905154377222, 0.009027485735714436, 0.014236168935894966, 0.02701498568058014, -0.009155678562819958, 0.007711820304393768, -0.01236050296574831, 0.0197417214512825, 0.005333503242582083, 0.016233280301094055, -0.030928246676921844, 0.007212542463093996, 0.024761488661170006, -0.006014950107783079, -0.012549418956041336, -0.02470751293003559, -0.0023732571862637997, 0.03216969221830368, -0.014546531252563, -0.009587486274540424, -0.012583154253661633, -0.03189981356263161, -0.00952676311135292, 0.0022484376095235348, -0.00461832107976079, 0.0038795247673988342, 0.0019262683345004916, -0.016854004934430122, 0.04704008251428604, 0.026380768045783043, 0.008804834447801113, -0.006490613333880901, -0.009540257044136524, 0.01449255459010601, -0.007030373439192772, -0.013230865821242332, 0.016017377376556396, -0.00553928641602397, -0.007509410381317139, -0.026934022083878517, 0.011854478158056736, 0.018392320722341537, -0.009715679101645947, -0.009169172495603561, 0.012616889551281929, 0.04269501194357872, -0.011537369340658188, 0.005886757280677557, 0.012960986234247684, 0.004034705925732851, -0.014775929041206837, 0.010343150235712528, 0.005424587521702051, -0.004888201132416725, 0.0027325348928570747, -0.009223148226737976, -0.01995762437582016, -0.02245401404798031, -0.007786037400364876, 0.013966289348900318, -0.008555195294320583, -0.004216874483972788, 0.0009361461852677166, 0.017110390588641167, 0.010093511082231998, -0.00041936818161047995, -0.012427973560988903, 0.03983428701758385, -0.03368102014064789, 0.024882934987545013, 0.018446296453475952, -0.008258327841758728, 0.02968679741024971, 0.013224119320511818, -0.01215809304267168, -0.006247721612453461, -0.014074240811169147, -0.01805497147142887, -0.009884354658424854, -0.03532728925347328, -0.012502189725637436, -0.01866220124065876, -0.032709453254938126, -0.008271821774542332, -0.004301212262362242, 0.011766767129302025, -0.010302668437361717, -0.007657844573259354, -0.02650221437215805, 0.0007742181769572198, -0.003997597377747297, 0.012745082378387451, -0.016557136550545692, 0.00317615014500916, 0.01191520132124424, 0.033896926790475845, 0.00148940016515553, -0.010201463475823402, 0.015922918915748596, 0.059319619089365005, 0.00968869123607874, -0.007205795496702194, -0.03635283187031746, -0.009756160899996758, -0.04469212517142296, -0.004682417493313551, -0.010707488283514977, 0.02631329745054245, 0.0415075421333313, 0.01686749793589115, -0.004847719334065914, 0.030631378293037415, -0.011874719522893429, 0.029956677928566933, -0.021468952298164368, 0.01072098221629858, 0.026340285316109657, 0.029659809544682503, -0.015922918915748596, 0.025476669892668724, -0.01137544121593237, -0.02759522758424282, 0.014897375367581844, 0.019917143508791924, 0.02431618608534336, 0.01047134306281805, -0.0043788026086986065, -0.0073812175542116165, -0.016557136550545692, -0.029362941160798073, 0.026664141565561295, 0.014371109195053577, 0.003058077534660697, 0.0034713312052190304, 0.003171089803799987, -0.019404370337724686, 0.006004829425364733, -0.045717667788267136, 0.012299779802560806, 0.008366279304027557, 0.015464123338460922, 0.03308728709816933, -0.005691094323992729, -0.019917143508791924, -0.006746999453753233, -0.02253497764468193, 0.021617386490106583, -0.019822685047984123, 0.029902702197432518, 0.025557633489370346, -0.008217845112085342, -0.006274709478020668, -0.029848726466298103, 0.00948628131300211, -0.03921356052160263, -0.00114867661613971, 0.019134489819407463, 0.0021489192731678486, -0.02053786627948284, -0.0029534990899264812, 0.014735447242856026, 0.01817641593515873, 0.015005326829850674, -0.016233280301094055, -0.015909424051642418, -0.014479060657322407, -0.0020156661048531532, -0.004078561440110207, -0.007077602669596672, 0.005795672535896301, 0.008804834447801113, -0.01698894426226616, -0.004598080180585384, -0.03435572236776352, -0.02503136917948723, -0.03187282755970955, 0.014195687137544155, -0.00829206220805645, -0.016894487664103508, -0.03527331352233887, 0.013979783281683922, 0.014506049454212189, -0.041264649480581284, -0.014168699271976948, 0.20057480037212372, 0.0011781947687268257, 0.008993750438094139, 0.005846275016665459, -0.01767713949084282, -0.0046453094109892845, 0.002796631306409836, -0.0027342215180397034, -0.022170640528202057, 0.006581698078662157, -0.01047809049487114, 0.009850619360804558, -0.024599559605121613, 0.009472787380218506, 0.0058294073678553104, -0.00212361803278327, -0.010754717513918877, -0.02343907579779625, -0.015072797425091267, -0.02659667283296585, 0.014182193204760551, -0.0007759049185551703, -0.03076631762087345, -0.008960015140473843, 0.007030373439192772, -0.01449255459010601, -0.004011091310530901, 0.004776875488460064, 0.019984612241387367, -0.008406761102378368, -0.025557633489370346, 0.005107478704303503, 0.0002802113303914666, -0.005552780814468861, -0.03403186425566673, 0.004776875488460064, 0.020996661856770515, 0.022359555587172508, 0.018513767048716545, -0.001145303132943809, 0.004861213266849518, -0.016894487664103508, -0.012792310677468777, -0.020578349009156227, 0.002990607637912035, -0.00010452578135300428, -0.03478752821683884, -0.013048697263002396, -0.013386047445237637, 0.022103169932961464, -0.0006148203392513096, -0.025881489738821983, 0.011787008494138718, -0.004442899022251368, 0.009344594553112984, -0.010059776715934277, 0.012819299474358559, -0.0028556676115840673, 0.0008189170621335506, 0.003666994161903858, -0.016354726627469063, 0.02362799271941185, -0.0009690378210507333, -0.0017289186362177134, -0.027284866198897362, 0.01895906962454319, -0.029956677928566933, -0.010491584427654743, -0.015113279223442078, -0.013831349089741707, 0.01686749793589115, -0.0021607265807688236, -0.001760966842994094, -3.60542799171526e-05, -0.033896926790475845, -0.013574963435530663, 0.02352004125714302, -0.0043383208103477955, 0.01639520935714245, 0.021280037239193916, -0.0418853722512722, -0.02661016583442688, -0.00677398731932044, 0.016705570742487907, -0.043450675904750824, -0.013912312686443329, 0.033303190022706985, -0.013082432560622692, -0.011490140110254288, -0.024356668815016747, -0.01747472956776619, 0.005438081454485655, -0.002513257320970297, 0.022615943104028702, 0.023385100066661835, 0.012131105177104473, 0.011598092503845692, 0.027743661776185036, -0.003859283635392785, 0.01837882585823536, -0.017150873318314552, 0.021414976567029953, 0.02244052104651928, 0.00953351054340601, 0.010140740312635899, -0.008575436659157276, 0.0056539857760071754, -0.01867569424211979, -0.007684832438826561, -0.03478752821683884, -0.027824625372886658, -0.02136100083589554, 0.006014950107783079, -0.016759546473622322, 0.024572571739554405, -0.001530725508928299, -0.017798583954572678, 0.00784001313149929, 0.0072260363958776, 0.011989418417215347, 0.006804348900914192, -0.01855424791574478, -0.022683411836624146, -0.011800502426922321, -0.029632821679115295, -0.031629934906959534, -0.02709594927728176, 0.020888710394501686, -0.003967235796153545, -0.03324921429157257, 0.012515684589743614, -0.04752586409449577, 0.01325785368680954, -0.02858028933405876, -0.008622664958238602, 0.0022501242347061634, -0.005832781083881855, -0.018837623298168182, -0.014398097060620785, 0.00883182231336832, -0.002783137373626232, -0.014060746878385544, -0.0013789180666208267, -0.0030681979842483997, -0.0010845802025869489, -0.022022206336259842, 0.012805805541574955, -0.00489157484844327, 0.003009161679074168, -0.021873772144317627, -0.0061903721652925014, -0.02045690268278122, 0.03216969221830368, -0.028526313602924347, 0.009681944735348225, -0.028769206255674362, -0.015099785290658474, -0.028850169852375984, 0.01379761379212141, 0.0051580811850726604, -0.021590398624539375, 0.02195473574101925, 0.004081934690475464, 0.0036737413611263037, -0.04280296340584755, -0.016138823702931404, -0.16948463022708893, 0.009553750976920128, 0.009169172495603561, -0.04617646336555481, 0.026056911796331406, 0.005525792483240366, 0.028634266927838326, -0.0029248243663460016, 0.019701238721609116, 0.0050096469931304455, -0.00818411074578762, -0.026434743776917458, -0.023560522124171257, -0.028472337871789932, -0.03532728925347328, 0.007988447323441505, 0.0061600105836987495, 0.007050614338368177, 0.03376198559999466, 0.011206766590476036, 0.008939774706959724, -0.02689353935420513, 0.0355701819062233, 0.009999053552746773, -0.003724343841895461, -0.01290026307106018, -0.00052162742940709, -0.0001828015228966251, 0.002577353734523058, -0.026934022083878517, -0.006176878232508898, 0.01877015270292759, 0.019013045355677605, -0.015464123338460922, 0.00908146146684885, 0.006720011588186026, 0.004426031839102507, -0.03902464359998703, 0.0028101252391934395, 0.0055595277808606625, 0.02005208283662796, 0.060399141162633896, -0.006905553862452507, -0.014371109195053577, 0.0016589185688644648, 0.027284866198897362, 0.012522431090474129, -0.0224270261824131, 0.004027958493679762, -0.008602424524724483, 0.017947018146514893, -0.021185578778386116, 0.008062664419412613, -0.004928682930767536, 0.029659809544682503, -0.0024778356309980154, -0.019984612241387367, 0.020632324740290642, -0.0042843446135520935, 0.014560025185346603, 0.012981226667761803, -0.03662271425127983, -0.006743626203387976, 0.0006380131235346198, -0.0072327833622694016, -0.0043788026086986065, 0.003788440255448222, 0.005309888627380133, -0.04218224063515663, 0.01908051408827305, 0.00707085570320487, 0.015248218551278114, 0.017623161897063255, 0.012832793407142162, 0.013682914897799492, 0.012920504435896873, -0.018891599029302597, 0.007819772697985172, -0.016597619280219078, -0.015545086935162544, -0.021414976567029953, 0.01727231964468956, -0.027149926871061325, 0.003943621180951595, 0.010349897667765617, 0.008501219563186169, 0.024882934987545013, -0.002801691647619009, 0.0002660847967490554, -0.017204849049448967, 0.009067967534065247, -0.014128217473626137, 0.01786605454981327, -0.011692550033330917, 0.0025874744169414043, 0.019795697182416916, 0.02731185406446457, -0.012542672455310822, 0.00690218061208725, -0.009405317716300488, 0.018041476607322693, -0.026367275044322014, -0.01725882478058338, 0.003081692149862647, 0.03899765759706497, 0.01335231214761734, -0.014330627396702766, -0.002272051991894841, 0.03813404217362404, 0.019876660779118538, -0.039564404636621475, -0.009209654293954372, 0.0194583460688591, 0.04903719201683998, -0.029039086773991585, 0.028715230524539948, 0.007867000997066498, -0.02431618608534336, 0.019714731723070145, -0.0033094033133238554, 0.032223667949438095, -0.00928387138992548, -0.01609834097325802, -0.01549111120402813, -0.004108922556042671, 0.011267488822340965, -0.09677895903587341, -0.02532823570072651, -0.011442910879850388, -0.0067267585545778275, -0.0017289186362177134, 0.010707488283514977, -0.016827017068862915, 0.0007813868578523397, 0.0008796400506980717, 0.024545583873987198, 0.02411377616226673, -0.01717786118388176, 0.0015467496123164892, -0.001236387644894421, -0.0337349958717823, -0.010613029822707176, -0.021266542375087738, 0.009297365322709084, -0.01739376410841942, 0.036703675985336304, 0.013831349089741707, -4.483064913074486e-05, 0.009337847121059895, -0.008764352649450302, -0.0030125353951007128, 0.011314718052744865, -0.030847281217575073, 0.01142267044633627, 0.008285315707325935, 0.009101702831685543, 0.006197119131684303, -0.02074027620255947, -0.01568002626299858, -0.0014033758779987693, 0.010403873398900032, 0.016611112281680107, -0.008899291977286339, -0.007016879506409168, 0.017515210434794426, -0.014775929041206837, 0.007637603674083948, -0.012427973560988903, -0.014870386570692062, -0.0018874731613323092, 0.03565114736557007, -0.004587959498167038, -0.025544140487909317, 0.02987571433186531, -0.010545560158789158, -0.018446296453475952, -0.028121493756771088, -0.004193260334432125, -0.03664970025420189, -0.014951351098716259, 0.033492106944322586, 0.004078561440110207, -0.0020240999292582273, -0.0211316030472517, -0.024680525064468384, -0.011004356667399406, -0.01018122211098671, 0.00759712141007185, -0.012063635513186455, 0.013473758473992348, 0.01569352112710476, 0.017015932127833366, -0.027352336794137955, 0.004547477699816227, 0.00739471148699522, -0.003855910152196884, -0.013581709936261177, 0.03829596936702728, -0.007698326371610165, 0.04242513328790665, -0.022197628393769264, 0.020699795335531235, 0.017717620357871056, 0.008251580409705639, 0.03098222240805626, 0.02887715771794319, -0.020429914817214012, -0.009695438668131828, -0.00908146146684885, -0.03154896944761276, 0.0210371445864439, 0.023317629471421242, 0.0008990376954898238, 0.009020738303661346, 0.024100283160805702, -0.014978338964283466, 0.008777846582233906, 0.01458701305091381, 0.019188467413187027, -0.005640491843223572, 0.001009519794024527, 0.01698894426226616, -0.007266518659889698, -0.018216898664832115, 0.00824483297765255, 0.011206766590476036, -0.04871333763003349, -0.007651097606867552, -0.03273644298315048, 0.0017247017240151763, -0.010235197842121124, -0.016449185088276863, -0.004493501503020525, -0.0034915723372250795, -0.009223148226737976, -0.0008703629137016833, 0.0022518110927194357, -0.013858336955308914, -0.02361449785530567, 0.003822175320237875, 0.003481451654806733, -0.004864586517214775, -0.01072098221629858, -0.008211098611354828, -0.005340250208973885, -0.005637118127197027, 0.02779763750731945, 0.03540825471282005, 0.005350370425730944, -0.014762435108423233, 0.006301697343587875, -0.0033583189360797405, 0.0036906087771058083, -2.497180503269192e-05, -0.021617386490106583, 0.025247272104024887, -0.008717123419046402, -0.04148055240511894, 0.01747472956776619, -0.007199048530310392, -0.009742666967213154, 0.009229895658791065, 0.01886461116373539, 0.012009658850729465, 0.0045373570173978806, 0.015315689146518707, 0.011679056100547314, -4.714992974186316e-05, -0.006871819030493498, -0.0024390402249991894, 0.018297862261533737, 0.009000496938824654, -0.003950368147343397, -0.0303884856402874, -0.016934968531131744, 0.0034949458204209805, 0.0023951849434524775, 0.02947089448571205, 0.024963898584246635, 0.031225113198161125, -0.018486779183149338, 0.009263630025088787, 0.01669207774102688, -0.04755285382270813, -0.0007678928668610752, -0.030064629390835762, -0.01051857229322195, 0.012232310138642788, 0.03624488040804863, -0.003277355106547475, 0.005188442766666412, -0.0009934956906363368, 0.010633271187543869, -0.039861273020505905, -0.019822685047984123, 0.0026448238641023636, -0.00013578336802311242, -0.010882910341024399, -0.019971119239926338, 0.0006595192244276404, 0.014735447242856026, 0.003670367645099759, 0.03870078921318054, 0.0045272368006408215, -0.0164896659553051, -0.010410619899630547, -0.013480504974722862, 0.018891599029302597, 0.04153452813625336, 0.001629400416277349, -0.018648706376552582, -0.00039448862662538886, 0.0474449023604393, 0.018027983605861664, 0.03049643710255623, -0.007448687683790922, 0.0024474740494042635, -0.008393267169594765, 0.017920030280947685, -0.0071923015639185905, -0.02828342281281948, -0.0034004878252744675, 0.0038525366690009832, 0.008433748967945576, -0.005944106727838516, 0.01916147954761982, 0.03432873263955116, 0.01638171449303627, 0.008278568275272846, -0.015167254954576492, -0.027662698179483414, 0.014856892637908459, -0.02670462429523468, 0.02047039568424225, 0.02361449785530567, -0.018338344991207123, 0.015612556599080563, 0.029228001832962036, -0.0027308480348438025, 0.022386545315384865, 0.02153642289340496, 0.010774957947432995, -0.007374470587819815, -0.01775810308754444, 0.002067955443635583, 0.00481061078608036, -0.02750077098608017, 0.02284534089267254, 0.007111337501555681, 0.013075685128569603, 0.05025165155529976, -0.003270608140155673, 0.023385100066661835, 0.003882898250594735, 0.024491608142852783, -0.011861225590109825, -0.007691579405218363, 0.0016850631218403578, -0.031036198139190674, 0.002347955945879221, -0.008534954860806465, -0.018486779183149338, -0.005444828420877457, 0.002604341832920909, 0.04301887005567551, -0.011888213455677032, -0.018702682107686996, 0.0667143315076828, 0.003262174315750599, 0.0008577122935093939, 0.01290701050311327, -0.007320494391024113, 0.03772922232747078, 0.05100731551647186, -0.013359058648347855, -0.0064029027707874775, -0.018041476607322693, 0.004119043238461018, -0.006730131804943085, -0.01052531972527504, -0.04795767366886139, -0.007907483726739883, 0.0044024172239005566, -0.015248218551278114, 0.029956677928566933, -0.03262849152088165, -0.0019566297996789217, 0.022993775084614754, 0.04118368402123451, 0.009061220102012157, -0.026583177968859673, -0.001912774401716888, 0.020038587972521782, 0.031926803290843964, -0.01404725294560194, -0.03187282755970955, -0.02352004125714302, 0.012535925023257732, -0.02868824265897274, -0.03951042890548706, -0.028850169852375984, 0.00862941239029169, -0.009351341053843498, -0.009756160899996758, -0.013210625387728214, 0.022710399702191353, -0.01549111120402813, 0.0022855461575090885, 0.016152316704392433, -0.013912312686443329, -0.050413578748703, -0.012441467493772507, -0.00338699365966022, -0.006983144674450159, 0.0017778343753889203, -0.05170900374650955], "0f8f3308-6725-46c7-84bd-19d9d9f68ceb": [0.005232000257819891, 0.002358414465561509, 0.0058241127990186214, -0.011674987152218819, -0.008878342807292938, 0.007620521821081638, -0.011240102350711823, -0.005108225159347057, 0.010678097605705261, 0.005810731556266546, -0.0026845780666917562, 0.00768742710351944, -0.021342813968658447, 0.017475683242082596, -6.978020974202082e-05, 0.011554557830095291, 0.0202589463442564, 0.0012277135392650962, 0.0037968799006193876, 0.004693411756306887, -0.016686199232935905, 0.01969694159924984, -0.00709196925163269, -0.023978885263204575, -0.01972370408475399, 0.005399263463914394, 0.01542837917804718, -0.0404108464717865, 0.017542589455842972, -0.003837023163214326, 0.012631733901798725, 0.0012636752799153328, -0.02935807779431343, -0.019817370921373367, -0.025477565824985504, -0.0028367878403514624, 0.01099255308508873, -0.02393874153494835, 0.017141155898571014, -0.002117555122822523, 0.04485336318612099, 0.03235543891787529, -0.01975046657025814, 0.005048010498285294, -0.01924198493361473, 0.004178240429610014, 0.015923479571938515, -0.013836030848324299, 0.011333770118653774, 0.013146906159818172, 0.01675310544669628, 0.025330374017357826, -0.02681567333638668, 0.015522046014666557, 0.004720174241811037, 0.0029839796479791403, 0.010704859159886837, 0.023470405489206314, -0.013039857149124146, -0.014478323049843311, -0.006998301949352026, 0.03636975958943367, 0.004700102377682924, 0.003743355628103018, -0.02834111638367176, -0.01065133512020111, -0.00856388732790947, 0.013715601526200771, -0.01890745759010315, 0.04102637618780136, 0.006439642049372196, 0.012698640115559101, -0.010249903425574303, 0.005620051175355911, 0.03926007077097893, 0.0054862406104803085, -0.005181821063160896, 0.011634844355285168, -0.00974811241030693, 0.007747642230242491, 5.373337626224384e-05, 0.011019314639270306, -0.011701749637722969, 0.00743987737223506, 0.024875417351722717, -0.0019017852609977126, -0.008396624587476254, 0.01343459915369749, -0.00998897198587656, -0.022199202328920364, -0.006841074209660292, -0.0016592532629147172, 0.010296736843883991, 0.025812093168497086, 0.012618353590369225, 0.006088389083743095, -0.0453886054456234, 0.034683745354413986, -0.00422507431358099, -0.019081411883234978, -0.021878056228160858, 0.00834979023784399, -0.004181585740298033, -0.010356951504945755, -0.03495136648416519, -0.0043588848784565926, 0.027645299211144447, -0.0004603925917763263, 0.02622690610587597, 0.0015404962468892336, -0.039099499583244324, 0.015147375874221325, 0.01542837917804718, -0.043220870196819305, 0.011962680146098137, -0.020646998658776283, 0.0024052481167018414, 0.0075335451401770115, -0.014705800451338291, -0.0013774143299087882, 0.011828869581222534, 0.012558137997984886, 0.005088153760880232, -0.012431018054485321, 0.03848396986722946, -0.008470220491290092, -0.008777984417974949, -0.03500489145517349, -0.014571989886462688, -0.02721710503101349, 0.03396116569638252, -0.000966782623436302, 0.010116091929376125, 0.02037937566637993, -0.006195437628775835, 0.010671406984329224, -0.012625044211745262, 0.002707995008677244, 0.005449442658573389, -0.024366937577724457, 0.006760787684470415, 0.0017085958970710635, -0.0008049552561715245, -0.0018131355755031109, 0.006021483335644007, 0.007513473276048899, 0.03487107902765274, 0.007038445211946964, -0.015522046014666557, 0.01124679297208786, 0.006432951427996159, -0.02153014950454235, 0.008416695520281792, -0.020780809223651886, 0.01061119232326746, 0.004442516714334488, 0.016525626182556152, -0.01226375438272953, 0.022640777751803398, -0.02554447203874588, -0.0006489821244031191, 0.0252099446952343, -0.002893657423555851, -0.011949299834668636, 0.011373912915587425, 0.029197504743933678, 0.02193158119916916, 0.011193268932402134, -0.02407255209982395, 0.0022931816056370735, 0.0030492122750729322, -0.00030839195824228227, -0.017796829342842102, 0.003281708573922515, 0.008323028683662415, -0.00849029142409563, 0.013160286471247673, -0.0070183733478188515, -0.023697882890701294, -0.0011014296906068921, -0.0008848235593177378, -0.01152779534459114, 0.0033921024296432734, 0.04148133099079132, -0.03952769562602043, 0.009560777805745602, -0.004124716389924288, 0.02681567333638668, 0.004439171403646469, 0.0077810948714613914, 0.007011683192104101, 0.025370517745614052, -0.005088153760880232, -0.009065678343176842, -0.6307303309440613, 0.01613757573068142, -0.007513473276048899, -0.022279489785432816, 0.03570070490241051, -0.015227662399411201, 0.005472859367728233, -0.00792828667908907, -0.018064450472593307, 0.0327301099896431, 0.015147375874221325, -0.0029505270067602396, 0.004372266121208668, 0.01096579059958458, -0.006831038743257523, -0.03216810151934624, 0.007841309532523155, -0.024969084188342094, -0.0037333196960389614, 0.01518751960247755, -0.022373156622052193, 0.04193628579378128, -0.00968120712786913, -0.014505084604024887, -0.02458103373646736, 0.03029475174844265, 0.025102896615862846, -0.0073261382058262825, 0.029572173953056335, 0.020111754536628723, -0.01466565765440464, -0.015214282087981701, 0.03190048038959503, -0.00039662342169322073, 0.029036931693553925, 0.0004215038497932255, 0.015481903217732906, -0.005804040934890509, -0.005727099720388651, 0.027457965537905693, -0.008751222863793373, -0.017823591828346252, 0.031070854514837265, 0.020312471315264702, 0.009433657862246037, -0.0035158772952854633, 0.014799468219280243, 0.02836787700653076, 0.0033001075498759747, -0.041133422404527664, 0.004927580710500479, 0.014598752371966839, 0.008075478486716747, -0.01298633310943842, 0.02094138227403164, 0.003375376109033823, 0.012705329805612564, 0.004151478409767151, 0.002418629126623273, -0.03602185100317001, 0.006151949055492878, -0.006556726526468992, 0.004181585740298033, 0.0027130127418786287, -0.047743674367666245, 0.01751582697033882, -0.014197319746017456, 0.012417636811733246, 0.004991140682250261, 0.009487181901931763, 0.0177433043718338, 0.005630087107419968, -0.005068081896752119, -0.000329718051943928, 0.012083110399544239, 0.015522046014666557, 0.020018087700009346, -0.015522046014666557, -0.00869100820273161, 0.009620992466807365, -0.0008798056514933705, 0.020218804478645325, -0.011969370767474174, -0.014652276411652565, 0.032596297562122345, 0.003616235451772809, -0.004900818690657616, 0.001891749445348978, 0.00968120712786913, 0.0017562659922987223, 0.009995662607252598, 0.01568261906504631, -0.024995846673846245, -0.01037033274769783, -0.007359590847045183, 0.019737085327506065, -0.014304368756711483, -0.014772706665098667, -0.027565013617277145, -0.029946845024824142, 0.001454355544410646, -0.0405714176595211, 0.006590179167687893, 0.009801637381315231, 0.029491888359189034, -0.011976061388850212, 0.002368450164794922, 0.007767713628709316, 0.027618538588285446, -0.03323858976364136, -0.01329409796744585, -0.056414611637592316, -0.02452750876545906, -0.0011206649942323565, 0.006700573023408651, -0.014103652909398079, 0.028019970282912254, 0.0030274682212620974, 0.015696000307798386, -0.0005640959134325385, 0.013836030848324299, 0.019563131034374237, -0.013996603898704052, 0.00982170831412077, 0.006148603744804859, 0.02130267024040222, 0.0139029361307621, 0.004947652108967304, -0.02359083481132984, -0.01738201640546322, 0.023978885263204575, -0.009828398935496807, 0.010858741588890553, 0.0020372685976326466, 0.02274782583117485, -0.02432679384946823, 0.013996603898704052, -0.010952409356832504, 0.017649637535214424, -0.002881948836147785, -0.02028570882976055, -0.012725401669740677, 0.0023015448823571205, -0.01825178600847721, 0.009794946759939194, -0.028501689434051514, -0.014545228332281113, -0.008644173853099346, -0.010765074752271175, -0.0003982960479333997, 0.015000184066593647, 0.013180358335375786, -0.022333012893795967, 0.04180247709155083, -0.019308891147375107, -0.009674516506493092, -0.004716828931123018, -0.012819069437682629, 0.0036998670548200607, -0.03674443066120148, -0.012063038535416126, 0.015468521974980831, -0.0027698823250830173, 0.015843192115426064, -0.00031466432847082615, -0.011253483593463898, -0.011889084242284298, 0.023082353174686432, -0.017248205840587616, -0.03422878682613373, 0.008410004898905754, -0.01099255308508873, -0.016993964090943336, 0.0026427621487528086, -0.004034393932670355, 0.029197504743933678, -0.03141876310110092, 0.014371274039149284, -0.011788726784288883, -0.022399919107556343, 0.0017094322247430682, 0.01364869624376297, -0.005620051175355911, -0.0063225575722754, 0.009574159048497677, 0.015722762793302536, 0.02508951537311077, -0.0011967698810622096, -0.004552910570055246, -0.006222199648618698, 0.03735996037721634, -0.010296736843883991, -0.03088352084159851, 0.0075803785584867, -0.008356480859220028, 0.032061055302619934, 0.008369862101972103, -0.004355539567768574, 0.005365810822695494, 0.020071612671017647, 0.03594156727194786, 0.00014938715321477503, 0.014036746695637703, -0.0201786607503891, -0.016177719458937645, -0.032569535076618195, 0.024540890008211136, -0.015776287764310837, 0.04340820387005806, -0.020928001031279564, 0.013822649605572224, -0.026414241641759872, -0.0228281132876873, 0.0055431099608540535, 0.004161514341831207, 0.029973607510328293, -0.003455662401393056, 0.007359590847045183, 0.009273084811866283, 0.0047569721937179565, 0.027645299211144447, 0.044211070984601974, 0.018666598945856094, 0.027056531980633736, -0.004148133099079132, 0.004874056205153465, 0.017622875049710274, 0.003770117647945881, -0.010296736843883991, -0.03222162649035454, 0.004221729002892971, -0.009273084811866283, 0.01271871104836464, 0.010490762069821358, 0.022654158994555473, 0.003111099824309349, 0.03859101980924606, -0.011092910543084145, 0.005723754409700632, 0.011360532604157925, -0.002442046068608761, 0.026093095541000366, 0.020352615043520927, -0.02221258357167244, 0.014290987513959408, 0.014197319746017456, 0.03321182727813721, 0.034202028065919876, -0.009922066703438759, 0.02927779033780098, 0.011668296530842781, 0.007413115352392197, -0.03685148060321808, 0.0006046572816558182, -0.015722762793302536, -0.014036746695637703, 0.007647284306585789, 0.006369391456246376, 0.02834111638367176, 0.014986803755164146, 0.016632676124572754, -0.011862322688102722, 0.007914905436336994, 0.0038504041731357574, -0.0045662918128073215, 0.018024306744337082, -0.025838855654001236, -0.026400860399007797, -0.020245565101504326, -0.015254424884915352, 0.0007899015326984227, -0.04514774680137634, -0.003920654766261578, -0.00548289529979229, 0.03366678208112717, 0.006911324802786112, 0.0008037007646635175, 0.007433186750859022, 0.020673759281635284, -0.009032225236296654, -0.02221258357167244, -0.03899244964122772, 0.010350260883569717, 0.006235580891370773, 0.0001017170725390315, -0.006734025664627552, -0.018666598945856094, 0.013575100339949131, 0.0035827828105539083, -0.023376736789941788, -0.0379754900932312, 0.021878056228160858, -0.0074599492363631725, -0.012297207489609718, -0.002609309507533908, 0.02124914713203907, 0.03088352084159851, -0.017850352451205254, 0.004937616642564535, -0.005914434790611267, 0.002403575461357832, 0.014277606271207333, -0.0403037965297699, 0.004124716389924288, 0.059358447790145874, 0.009346680715680122, 0.017542589455842972, -0.01418393850326538, 0.00045579284778796136, -0.005917780101299286, 0.008316338062286377, 0.0132673354819417, 0.004589708521962166, 0.0014234117697924376, 0.024340175092220306, 0.030187703669071198, 0.01837221533060074, -0.005048010498285294, 0.032114580273628235, 0.016177719458937645, -0.0011909155873581767, -0.012183468788862228, -0.016565769910812378, 0.005961268674582243, 0.03128495067358017, 0.027618538588285446, -0.02546418458223343, -0.012163396924734116, -0.02266754023730755, 0.009079058654606342, -0.01743553951382637, 0.003045867197215557, -0.01039709523320198, 0.0034188644494861364, -0.021971724927425385, 0.022761207073926926, -0.005456133279949427, 0.0020339232869446278, 0.013943079859018326, 0.015067090280354023, -0.008195907808840275, -0.01518751960247755, 0.01867998018860817, -0.017274966463446617, 0.0428461991250515, -0.0015848210314288735, 0.020727284252643585, 0.024928942322731018, -0.026320572942495346, 0.008296266198158264, 0.019549749791622162, 0.02483527362346649, -0.004419100005179644, -0.025731805711984634, -0.01941593922674656, 0.0036496880929917097, 0.03149905055761337, 0.033586498349905014, -0.006078353151679039, 0.013715601526200771, 0.005844184197485447, 0.008296266198158264, 0.006831038743257523, -0.018813790753483772, 0.02099490538239479, 0.02074066549539566, -0.001995452679693699, -0.017796829342842102, -0.0031010641250759363, 0.00946711003780365, 0.0012394220102578402, 0.013876174576580524, 0.011895774863660336, -0.019884277135133743, -0.00025528582045808434, 0.02252034842967987, -0.011333770118653774, -0.0040109772235155106, 0.009232941083610058, 0.008764604106545448, 0.005215273704379797, -0.0037567366380244493, 0.002003815956413746, -0.04027703404426575, -0.011226721107959747, -0.01082528941333294, 0.004890782758593559, -0.004288634285330772, -0.004807150922715664, -0.002333324868232012, -0.0028367878403514624, 0.002707995008677244, -0.02218582108616829, 0.006061626598238945, 0.004981104750186205, -0.028100255876779556, -0.011046077124774456, -0.012103182263672352, 0.00837655272334814, 0.02732415497303009, -0.004178240429610014, -0.023831693455576897, -0.008951938711106777, 0.008001882582902908, 0.008215979672968388, -0.00456963712349534, -0.006419570650905371, -0.016378434374928474, 0.014344511553645134, 0.03168638423085213, 0.01870674267411232, -0.0006293286569416523, -0.01873350515961647, 0.029036931693553925, -0.0041682044975459576, 0.013347622007131577, 0.004586363211274147, -0.013468051329255104, -0.0013305805623531342, 0.00201050634495914, -0.014224082231521606, 0.005074772518128157, 0.0007635575602762401, -0.03942064568400383, 0.012758854776620865, -0.011199959553778172, 0.01751582697033882, 0.007660665083676577, -0.009761493653059006, -0.03698528930544853, 0.01661929488182068, -0.0013381073949858546, -0.01992441900074482, 0.0021610434632748365, 0.029625698924064636, 0.006690537091344595, 0.021570291370153427, 0.030455324798822403, 0.007178946398198605, 0.007540235295891762, 0.014852992258965969, 0.006329248193651438, 0.011996133252978325, -0.0529622919857502, 0.009754803031682968, -0.021797770634293556, -0.006235580891370773, 0.03173990920186043, -0.00035543477861210704, 0.021637197583913803, -0.006155294366180897, -0.01103269588202238, -0.01411703322082758, -0.004516112618148327, 0.00935337133705616, 0.004211693070828915, -0.017448920756578445, -0.05357782170176506, -0.0021694067399948835, -0.001880040974356234, -0.04736900329589844, 0.011119673028588295, -0.029598936438560486, 0.019094793125987053, -0.014103652909398079, 0.01025659404695034, 0.01039709523320198, 0.002162716118618846, -0.016472103074193, -0.03128495067358017, 4.5448610762832686e-05, 0.03572746738791466, -0.019322272390127182, 0.01271871104836464, 0.027565013617277145, 0.010336879640817642, -0.005844184197485447, -0.012919427827000618, 0.002890312112867832, -0.0006105115171521902, 0.025370517745614052, 0.00883150938898325, 0.031204665079712868, 0.01918845996260643, 0.05424687638878822, -0.0015296241035684943, 0.023162640631198883, -0.005720409564673901, -0.010303427465260029, 0.02498246543109417, -0.01964341662824154, -0.00639280816540122, -0.0020924655254930258, -0.011327079497277737, 0.009339990094304085, -0.013715601526200771, 0.013755744323134422, -0.01738201640546322, 0.027511488646268845, 0.02407255209982395, 0.0031947314273566008, 0.005526383873075247, -0.025450803339481354, -0.011052767746150494, -0.020593473687767982, -0.012310588732361794, 0.001848260872066021, 0.023470405489206314, -0.020553329959511757, -0.02102166786789894, 0.029170742258429527, 0.004492695908993483, 0.0038738211151212454, 0.006984920706599951, 0.01944270171225071, 0.0006983248167671263, 0.009346680715680122, 0.01684677228331566, 0.02203862927854061, -0.03701205179095268, -0.002030577976256609, -0.03626271337270737, 0.00974811241030693, -0.010718240402638912, -0.012156706303358078, 0.012317279353737831, -0.008108931593596935, -0.005466168746352196, -0.02467470057308674, 0.0033151612151414156, -0.024821892380714417, -0.029572173953056335, 0.020861094817519188, 0.0009600921184755862, -0.016043908894062042, -0.004944306798279285, -0.03505841642618179, -0.007112041115760803, -0.01089219469577074, 0.014371274039149284, -0.0018733504693955183, 0.019616656005382538, -0.018586313351988792, -0.014371274039149284, 0.0024637903552502394, 0.010905575938522816, 0.0353795625269413, 0.00456963712349534, 0.053390488028526306, -0.00033619950409047306, 0.018037687987089157, 0.0005607506609521806, -0.0026343991048634052, -0.013782506808638573, 0.000483391311718151, 0.031632859259843826, 0.0035326036158949137, -0.0046398877166211605, 0.00454287463799119, -0.019844133406877518, -0.005489585921168327, -0.028608737513422966, -0.03735996037721634, 0.005389227531850338, 0.025116275995969772, 0.013849412091076374, -0.0328371562063694, 0.022319631651043892, -0.049242354929447174, 0.01771654188632965, -0.002865222515538335, -0.011534485965967178, -0.011721821501851082, -0.00649316655471921, -0.03184695914387703, 0.004081227816641331, 0.009513944387435913, 0.017074251547455788, 0.004583017900586128, 0.0001481326762586832, 0.0033837391529232264, 0.012096491642296314, -0.01700734533369541, 0.015267806127667427, 0.013421217910945415, 0.015307948924601078, -0.007848000153899193, -0.002641089493408799, 0.02000470645725727, -0.01124679297208786, -0.02645438350737095, -0.00670391833409667, -0.013581790961325169, 0.03476403281092644, -0.014130414463579655, -0.026909340173006058, -0.012323969975113869, -0.009674516506493092, -0.018358834087848663, 0.016097432002425194, -0.008416695520281792, -0.012497923336923122, -0.013427908532321453, 0.0020874475594609976, 0.010096020996570587, 0.018492644652724266, -0.0008434258634224534, 0.002726393984630704, -0.007948358543217182, 0.022680921480059624, -0.00847691111266613, 0.005957923363894224, 0.029920082539319992, -0.012571519240736961, -0.027377678081393242, -0.013120143674314022, 0.015575570985674858, 0.014598752371966839, 0.0048138415440917015, -0.024741606786847115, 0.012839141301810741, 0.03599509224295616, -0.020566711202263832, 0.018345452845096588, -0.030963806435465813, -0.0028300972189754248, -0.02020542323589325, 0.01876026578247547, -0.009293156675994396, -0.01718129962682724, 0.0252902302891016, -0.022761207073926926, -0.02834111638367176, -0.019402557983994484, -0.010925646871328354, 0.03650357201695442, -0.016258005052804947, -0.006834383588284254, -0.010905575938522816, -0.008824818767607212, 0.005272143520414829, 0.0001482372172176838, -0.008898414671421051, 0.015107233077287674, -0.026922721415758133, 0.0033335601910948753, 0.03165962174534798, -0.0002590492367744446, 0.012946189381182194, -0.0030743018724024296, -0.00861741229891777, 0.013809269294142723, -0.034630220383405685, -0.02053994871675968, -0.00645636860281229, 0.0077810948714613914, -0.009125893004238605, 0.012972951866686344, -0.03323858976364136, -0.018465882167220116, -0.017034107819199562, 0.0354866087436676, -0.02630719169974327, -0.003479079343378544, -0.02605295181274414, 0.0018499335274100304, 0.0008856598869897425, 0.012685258872807026, -0.011554557830095291, 0.0027013043873012066, 0.001559731550514698, 0.019790608435869217, -0.018693361431360245, -0.002697959076613188, -0.028555212542414665, 0.02983979694545269, 0.015000184066593647, -0.02000470645725727, -0.024460604414343834, -0.01418393850326538, -0.02023218385875225, -0.013635315001010895, -0.012758854776620865, 0.03187371790409088, 0.012277135625481606, 0.011066148988902569, -0.010082639753818512, 0.02719034254550934, -0.008483600802719593, 0.010009043850004673, -0.0554511733353138, -0.0024286650586873293, 0.029491888359189034, 0.02777910977602005, -0.0017144501907750964, -0.007239161524921656, -0.015026946552097797, -0.019911039620637894, 0.005181821063160896, 0.0031713147182017565, 0.0101294731721282, 0.019308891147375107, -0.013361003249883652, -0.012323969975113869, -0.02775234915316105, -0.020620236173272133, 0.003883856814354658, 0.0277255866676569, 0.0026226905174553394, 0.016324911266565323, -0.017877114936709404, -0.0214498620480299, 0.02404579147696495, -0.03471050783991814, 0.01310007181018591, -0.012497923336923122, -0.004014322534203529, 0.015749525278806686, -0.019054649397730827, -0.03583451732993126, 0.02053994871675968, -0.029572173953056335, 0.015535427257418633, -0.013253954239189625, 0.008302956819534302, 0.003930690698325634, 0.018920838832855225, 0.008844890631735325, -0.021543530747294426, 0.005111570470035076, -0.03519222512841225, 0.008570577949285507, 0.02244006283581257, 0.01746230199933052, -0.02628043107688427, -0.015977002680301666, 0.01585657335817814, -0.0034155193716287613, 0.015696000307798386, -0.012919427827000618, -0.03484431654214859, -0.028100255876779556, 0.027672061696648598, 0.0025775295216590166, -0.010858741588890553, 0.0228281132876873, 0.020606854930520058, 0.02302883006632328, 0.0006857800763100386, -0.03789520263671875, -0.05424687638878822, -0.02927779033780098, 0.01299971342086792, -0.0005858401418663561, -0.010029115714132786, 0.018840553238987923, 0.016579151153564453, 0.02721710503101349, -0.030615897849202156, -0.011146435514092445, 0.17555969953536987, -0.01392969861626625, 0.027618538588285446, 0.023162640631198883, -0.01025659404695034, 0.030214466154575348, 0.01946946419775486, -0.011815488338470459, -0.032034292817115784, 0.018613073974847794, -0.02625366859138012, 0.013688839040696621, -0.02102166786789894, 0.0023115805815905333, 0.004874056205153465, -0.009534015320241451, -0.0064630587585270405, -0.034603457897901535, -0.028689023107290268, 0.0012536394642665982, 0.01058442983776331, -0.01847926340997219, -0.023470405489206314, -0.0067708236165344715, 0.032141342759132385, -0.01918845996260643, -0.016886916011571884, 0.007165565621107817, 0.01738201640546322, -0.013715601526200771, -0.02167734131217003, 0.0003755064099095762, -0.018519407138228416, -0.011782036162912846, -0.02345702424645424, -0.004690066445618868, 0.014290987513959408, 0.020192041993141174, 0.03227515146136284, -0.01995118148624897, 0.009620992466807365, -0.038671303540468216, -0.019589893519878387, -0.03182019665837288, -0.005315631628036499, 0.01174189243465662, -0.006897944025695324, -0.025624757632613182, -0.012236992828547955, 0.008142383769154549, -0.015455140732228756, 0.01418393850326538, 0.014719181694090366, 0.00379018927924335, -0.0018465883331373334, -0.010042496025562286, -0.01022983156144619, 0.0004424117796588689, 0.0009751457837410271, 0.01977722719311714, 0.0015915115363895893, 0.004452552646398544, -0.009627683088183403, 0.004312051460146904, -0.024888798594474792, 0.01596362143754959, -0.017328491434454918, -0.0026009464636445045, -0.00837655272334814, -0.014732562936842442, -0.002855186816304922, -0.01842574030160904, 0.0038269872311502695, 0.01949622482061386, -0.031070854514837265, -0.011735202744603157, 0.03339916095137596, 0.031097617000341415, 0.007205708418041468, 0.027110056951642036, -0.008684317581355572, -0.019536368548870087, -0.010283355601131916, -0.0026812327560037374, -0.023470405489206314, -0.0025892378762364388, 0.0037467009387910366, 0.00036797954817302525, -0.005954578053206205, -0.024112695828080177, -0.012190158478915691, -0.03444288671016693, 0.0036329617723822594, 0.010831980034708977, -0.0019486190285533667, -0.010811908170580864, -0.01146089006215334, 0.01873350515961647, 0.01186901330947876, -0.0007418133318424225, -0.023323213681578636, 0.0027297392953187227, -0.001609910512343049, 0.02447398565709591, 0.0038403684739023447, -0.019482843577861786, -0.012277135625481606, -0.018492644652724266, -0.015522046014666557, -0.029411600902676582, -0.0011624807957559824, -0.02040613815188408, 0.024902179837226868, -0.022640777751803398, 0.03200753033161163, -0.01051083393394947, 0.0003023286408279091, 0.0025457495357841253, -0.0014125396264716983, 0.01417055819183588, -0.006777514237910509, -0.007025063969194889, -0.02300206758081913, 0.0033486138563603163, -0.028903121128678322, -0.015241043642163277, -0.025156419724225998, 0.0020523222628980875, 0.0030826651491224766, -0.008791365660727024, 0.0201786607503891, -0.056842803955078125, 0.010303427465260029, -0.02076742798089981, -0.02579871192574501, -0.019937800243496895, -0.014919898472726345, -0.0226943027228117, -0.0100625678896904, 0.011902465485036373, -0.0014493375783786178, 0.0005958759575150907, -0.008021954447031021, -0.010102711617946625, 0.013173667713999748, -0.01417055819183588, -0.00041920397779904306, 0.02518318220973015, 0.029625698924064636, -0.03040180169045925, -0.011039386503398418, -0.0034723887220025063, 0.026655100286006927, -0.019375795498490334, -0.008102240972220898, -0.024594414979219437, -0.0063627008348703384, -0.016378434374928474, 0.026119858026504517, -0.017649637535214424, -0.02127590775489807, -0.003029140643775463, 0.005767242982983589, 0.0018148082308471203, -0.022935161367058754, -0.013387764804065228, -0.1675310581922531, 0.004489350598305464, 0.005466168746352196, -0.03984883800148964, 0.02495570480823517, 0.009915376082062721, 0.006135222502052784, 0.0008580614230595529, 0.01698058284819126, -0.006212163716554642, -0.003937381319701672, -0.025812093168497086, -0.009319918230175972, -0.031177904456853867, -0.018439121544361115, -0.024928942322731018, -0.004017667844891548, 0.0253437552601099, 0.04967054724693298, 0.021918199956417084, 0.04739576578140259, -0.019911039620637894, 0.020620236173272133, 0.016177719458937645, 6.376918463502079e-05, 0.011092910543084145, -0.0006974884890951216, 0.005037974566221237, 0.011320388875901699, -0.03080323338508606, 0.016539007425308228, 0.01565585657954216, -0.003146225120872259, -0.028581975027918816, 0.013488123193383217, -0.004934271331876516, -0.0012344041606411338, -0.029010169208049774, -0.006101769860833883, -0.006509892642498016, 0.015040327794849873, 0.03385411947965622, -0.002124245511367917, -0.020580092445015907, 0.012825760059058666, 0.032944206148386, 0.016659438610076904, -0.008316338062286377, 0.014438179321587086, -0.010102711617946625, 0.010658025741577148, -0.011822178959846497, 0.03074970841407776, -0.0014359565684571862, -0.0015781305264681578, -0.004101299215108156, -0.0043889922089874744, 0.0329977311193943, -0.018720123916864395, 0.002629381138831377, 0.023577453568577766, -0.014451560564339161, -0.00842338614165783, 0.015388235449790955, -0.0031612787861377, 0.011367223225533962, -0.016298148781061172, -0.006131877191364765, -0.02709667570888996, -0.01348143257200718, 0.010049186646938324, 0.006964849308133125, 0.007038445211946964, -0.008992082439363003, 0.015281187370419502, 0.01608405075967312, -0.007125422358512878, 0.026936102658510208, 0.002276455285027623, -0.029036931693553925, -0.02927779033780098, 0.04504069685935974, -0.005810731556266546, 0.007600450422614813, 0.004475969355553389, 0.0004645741719286889, 0.005603325087577105, 0.005054701119661331, -0.0010830307146534324, -0.04600413516163826, 0.03275686874985695, -0.012156706303358078, -0.010209759697318077, -0.011634844355285168, 0.011179887689650059, 0.022346394136548042, -0.0042418004013597965, -0.008784675039350986, -0.00935337133705616, -0.024433841928839684, -0.0012586573138833046, -0.0012528031365945935, -0.02320278249680996, 0.01033018995076418, 0.03529927507042885, 0.022373156622052193, -0.029090456664562225, 0.015441760420799255, 0.03896568715572357, 0.009172726422548294, -0.003569401567801833, -0.02175762690603733, 0.016311530023813248, 0.021061811596155167, -0.01777006685733795, 0.02975950948894024, 0.01865321770310402, -0.034656982868909836, -0.007908214814960957, 0.012029586359858513, 0.021771008148789406, -0.006319212261587381, -0.019108174368739128, 0.012397565878927708, -0.01146089006215334, -0.002791626611724496, -0.12374817579984665, -0.014224082231521606, -0.010169616900384426, 0.009473800659179688, 0.009319918230175972, 0.010042496025562286, -0.013682148419320583, 0.027284011244773865, -0.007921596057713032, 0.03596832975745201, 0.024942323565483093, -0.018586313351988792, -0.017020726576447487, 0.008543816395103931, -0.020807571709156036, -0.019870895892381668, -0.012397565878927708, -0.0036095448303967714, -0.004656613804399967, 0.03602185100317001, 0.009166035801172256, 0.001747902831993997, 0.022105535492300987, 0.0017328491667285562, -0.013207120820879936, 0.006161984987556934, -0.012323969975113869, -0.0048874374479055405, 0.004044429864734411, 0.0030659385956823826, -0.010517524555325508, 0.003907273523509502, -0.013568409718573093, -0.01565585657954216, 0.025276849046349525, 0.01212325319647789, -0.01086543221026659, -0.00016318638517986983, 0.01929550990462303, -0.03077647089958191, -0.00048171868547797203, -0.013675457797944546, 0.006847764831036329, -0.010336879640817642, 0.031632859259843826, -0.008048716001212597, -0.028046732768416405, 0.024647939950227737, -0.005650158505886793, -0.0047134836204349995, -0.023871837183833122, -0.0019352379022166133, -0.02147662453353405, -0.021663960069417953, 0.021490005776286125, -0.014505084604024887, 0.0070785884745419025, -0.011708440259099007, -0.01941593922674656, 0.01944270171225071, 0.021235765889286995, 0.016993964090943336, -0.003947416786104441, 0.007888143882155418, 0.004874056205153465, 0.002477171365171671, -0.04083903878927231, -0.0012419309932738543, 0.03674443066120148, -0.011213340796530247, -0.0038738211151212454, 0.013033166527748108, -0.013916317373514175, 0.03281039372086525, -0.012738782912492752, 0.034041453152894974, 0.00460643507540226, -0.011862322688102722, 0.023403499275445938, 0.013715601526200771, -0.003355304477736354, -0.01568261906504631, -0.026976246386766434, -0.018572932109236717, -0.0006155294249765575, 0.011828869581222534, 0.009781565517187119, 0.02582547441124916, 0.00922625046223402, -0.010912266559898853, 0.006185401696711779, 0.026521289721131325, 0.03222162649035454, 0.003040849231183529, 0.0010144526604562998, 0.017903877422213554, 0.011233411729335785, -0.00929984636604786, -0.015896717086434364, 0.014036746695637703, -0.04434487968683243, -0.005262107588350773, -0.04359554126858711, 0.01020306907594204, -0.008496982045471668, -0.006483130622655153, 0.019081411883234978, -0.0014008312718942761, 0.011012624017894268, -0.007419805973768234, 0.003311815904453397, -0.013555028475821018, -0.012323969975113869, 0.0032516010105609894, -0.02826082892715931, -0.01712777465581894, -0.00195698207244277, 0.007306066807359457, -0.005258762277662754, -0.002893657423555851, 0.009881923906505108, 0.036182425916194916, 0.027565013617277145, -0.0036396521609276533, 0.013247263617813587, 0.013414527289569378, -0.01127355545759201, -0.0054260254837572575, -0.008717769756913185, 0.021891437470912933, -0.01217677816748619, -0.030027130618691444, 0.015588952228426933, -0.010363642126321793, -0.014545228332281113, 0.011280246078968048, -0.004900818690657616, 0.0062891049310564995, 0.01913493685424328, 0.013983222655951977, 0.014451560564339161, -0.0057337903417646885, -0.026895958930253983, -0.006255652289837599, 0.018746884539723396, -0.0045495652593672276, 0.0012971279211342335, -0.01160139124840498, -0.009447038173675537, -0.009192798286676407, 0.0006845255848020315, 0.017194680869579315, 0.011755273677408695, 0.02602618932723999, -0.0005339885246939957, -0.023871837183833122, 0.004496041219681501, -0.04557593911886215, -0.0029572173953056335, -0.03650357201695442, -0.0005799859645776451, -0.01944270171225071, 0.015227662399411201, -0.00045370205771178007, 0.03026799112558365, -0.00015241879737004638, -0.021075192838907242, -0.005288869608193636, -0.026320572942495346, -0.0030860102269798517, 0.015147375874221325, -0.0252099446952343, -0.0014183939201757312, -0.0052687982097268105, 0.0031947314273566008, 0.024166220799088478, 0.01613757573068142, 0.0024805166758596897, -0.03281039372086525, 0.01664605736732483, 0.005422680638730526, 0.01669958047568798, 0.016298148781061172, 0.006918015424162149, -0.018813790753483772, -0.005382537376135588, 0.06107122451066971, -0.0032950895838439465, 0.011467580683529377, -0.008496982045471668, 0.014009985141456127, -0.005533074494451284, 0.014986803755164146, -0.011915846727788448, -0.02483527362346649, 0.0005561509169638157, 0.016552388668060303, -0.0020171969663351774, 0.0013305805623531342, 0.005884327460080385, 0.007941667921841145, 0.014759325422346592, 0.012919427827000618, 0.012036276049911976, -0.02783263474702835, -0.00031968223629519343, -0.002761519281193614, 0.015843192115426064, 0.0030927008483558893, -0.030589137226343155, -0.01305323839187622, 0.012491232715547085, -0.005389227531850338, 0.014090271666646004, 0.0126451151445508, 0.004716828931123018, -0.008189217187464237, 0.007285994943231344, -0.0037266293074935675, 0.011674987152218819, -0.024085933342576027, -0.016739724203944206, -0.0024336830247193575, 0.0022731099743396044, 0.04597737267613411, -0.015602332539856434, -0.011186578311026096, 0.020807571709156036, 0.02828759141266346, -0.008155765011906624, -0.004074537195265293, 0.006101769860833883, -0.019509606063365936, 0.005074772518128157, -0.045201268047094345, -0.0076339030638337135, -0.007212399039417505, -0.03198076784610748, 0.030615897849202156, 0.004104644525796175, -0.027136819437146187, 0.0607500784099102, 0.007118731737136841, -0.021235765889286995, 0.01212325319647789, -0.0032248389907181263, 0.03706557676196098, 0.036075375974178314, -0.01853278838098049, -0.03182019665837288, -0.019255366176366806, 0.012524685822427273, -0.0012201867066323757, -0.0013941406505182385, -0.04509422183036804, -0.014732562936842442, 0.03195400536060333, -0.009145964868366718, 0.004372266121208668, -0.01941593922674656, 0.016043908894062042, 0.021570291370153427, -0.0059813400730490685, 0.0009442020673304796, -0.01839897781610489, -0.015923479571938515, 0.002796644577756524, 0.026976246386766434, -0.003572746878489852, -0.03144552558660507, -0.024407079443335533, 0.0011031023459509015, -0.026548052206635475, -0.03489784151315689, -0.01619110070168972, 0.026775529608130455, 0.016472103074193, 0.0031161177903413773, -0.01212325319647789, 0.04105313494801521, 0.014933278784155846, -0.018746884539723396, 0.013387764804065228, -0.032649822533130646, -0.033131539821624756, -0.02557123266160488, 0.0034222097601741552, -0.022761207073926926, 0.0008664245833642781, -0.03800225257873535], "eee0cc8b-2935-4cba-b198-f2213e577473": [0.009574012830853462, 0.00965880136936903, 0.023274390026926994, -0.014237369410693645, -0.02829103171825409, 0.03035421296954155, -0.006397983990609646, -0.02976069413125515, -0.013975938782095909, -0.0225960835814476, 0.006140086334198713, 0.03693943843245506, -0.02060355804860592, 0.03572414070367813, 0.004518509842455387, 0.0015526858624070883, 0.017452258616685867, -0.003114203689619899, 0.020532900467514992, 0.01008274219930172, 0.004129896871745586, 0.010775180533528328, -0.008394042029976845, -0.029025863856077194, -0.026764841750264168, 0.0250125490128994, 0.007482567802071571, -0.019359996542334557, 0.005818597506731749, -0.008655472658574581, 0.02022201009094715, 0.002087912056595087, -0.01326936949044466, -0.009828377515077591, -0.01859690062701702, 0.010647998191416264, 0.017028318718075752, -0.013198712840676308, 0.022624345496296883, -0.003421561326831579, 0.029902009293437004, 0.024998418986797333, -0.021239470690488815, 0.031060783192515373, -0.025521280243992805, 0.01565757393836975, 0.02016548439860344, -0.01828601025044918, 0.01572822965681553, 0.030269425362348557, 0.02125360257923603, 0.0392569862306118, 0.008825049735605717, -0.010789311490952969, -0.014767296612262726, 0.01186329685151577, 0.00840817391872406, 0.032813072204589844, -0.016392406076192856, -0.007524962071329355, -0.009263122454285622, 0.008372845128178596, -0.00928431935608387, -0.004878860432654619, -0.022426506504416466, -0.007143414579331875, -0.0028739701956510544, 0.01787620037794113, 0.001932466751895845, -0.0037978095933794975, 0.02066008374094963, 0.01141109224408865, 0.007482567802071571, 0.0051826853305101395, 0.046774882823228836, -0.012379092164337635, -0.00883211474865675, 0.016307616606354713, -0.00852122437208891, -0.018031645566225052, 0.00416522566229105, 0.009835443459451199, -0.01295847911387682, 0.006924378219991922, 0.04753797501325607, -0.004709283821284771, 0.010951822623610497, 0.01420910656452179, -0.00011040143726859242, -0.02566259354352951, 0.011446421034634113, 0.004038042854517698, 0.02037745527923107, 0.01784793846309185, 0.0055395024828612804, -0.002036685822531581, -0.02212974801659584, 0.028545396402478218, -0.018611032515764236, -0.0068148598074913025, -0.02303415536880493, 0.00549357570707798, 0.003953254781663418, -0.004868261981755495, -0.01944478414952755, 0.017480522394180298, 0.014823822304606438, -0.004681020975112915, 0.014979267492890358, -0.018201222643256187, -0.03419794887304306, 0.0372503288090229, 0.00920659676194191, -0.05460366979241371, 0.020448112860322, 0.0075602903962135315, 0.00017233664402738214, -0.016024990007281303, -0.027556199580430984, 0.008492961525917053, 0.0045573716051876545, -0.0030117512214928865, 0.038069948554039, -0.030580315738916397, 0.024362506344914436, -0.010930625721812248, 0.011425224132835865, -0.024984287098050117, -0.017833806574344635, -0.022242799401283264, 0.036741599440574646, -0.01223777886480093, 0.02535170316696167, 0.00934791099280119, -0.006320261396467686, -1.4572990039596334e-05, -0.017155500128865242, 0.01591193862259388, 0.0036141015589237213, -0.015318420715630054, 0.014823822304606438, -0.009453896433115005, 0.003389765741303563, -0.002469459315761924, -0.01232963241636753, 0.01520536933094263, 0.014463471248745918, 0.01719789393246174, -0.004232349339872599, -0.013205778785049915, 0.008923969231545925, -0.012499209493398666, 0.0030576782301068306, -0.003133634338155389, 0.011382830329239368, 0.01534668356180191, 0.0014970435295253992, 0.009757720865309238, 0.02241237461566925, -0.015954332426190376, -0.0014979267725721002, 0.03151298686861992, -0.0017187296180054545, 0.01075398363173008, 0.01520536933094263, 0.035780664533376694, 0.014117253012955189, 0.00432067085057497, -0.01663263887166977, 0.014936872757971287, -0.011898625642061234, 0.0011243282351642847, -0.02066008374094963, 0.015516259707510471, -0.01635001227259636, -0.015134712681174278, 0.011912756599485874, -0.0019271675264462829, -0.03004332259297371, 0.011290975846350193, 0.011559472419321537, -0.01740986481308937, 0.017056580632925034, 0.026764841750264168, -0.03809821233153343, 0.010563209652900696, -0.001902437536045909, 0.006553429178893566, 0.0037483496125787497, 0.0010192260378971696, 0.017480522394180298, 0.018808871507644653, -0.010810508392751217, 0.0028280431870371103, -0.6127368211746216, -0.01098715141415596, 0.007673341780900955, -0.028870418667793274, 0.017678361386060715, -0.002225693082436919, 0.005013108719140291, -0.0022910507395863533, -0.012817165814340115, 0.05935181304812431, 0.010591472499072552, 0.008980494923889637, -0.01719789393246174, -0.008259793743491173, 0.012350829318165779, -0.0313151478767395, 0.010513749904930592, -0.02078726515173912, 0.006775998510420322, 0.015572785399854183, -0.01928933896124363, 0.035215407609939575, -0.010718654841184616, -0.014795559458434582, 0.00920659676194191, 0.017904464155435562, -0.003502816893160343, -0.014823822304606438, 0.03301091492176056, 0.03244565799832344, -0.019204551354050636, -0.013551997020840645, 0.02491362951695919, -0.009941428899765015, 0.027400754392147064, -0.021437309682369232, -0.0009715326596051455, 0.008655472658574581, 0.011559472419321537, 0.027485541999340057, -0.0196284931153059, -0.004253546707332134, 0.019685018807649612, 0.03159777447581291, 0.03038247674703598, -0.013438946567475796, 0.004857663065195084, 0.021931909024715424, -0.014067793264985085, -0.021338390186429024, 0.00533813051879406, 0.006980903912335634, 0.019557835534214973, -0.029619380831718445, 0.03360443189740181, -0.012138859368860722, 0.009757720865309238, 0.0029163644649088383, -0.005917517002671957, -0.02888454869389534, 0.0017169631319120526, 0.014117253012955189, 0.004741079173982143, -0.002068481408059597, -0.026453951373696327, 0.03894609585404396, -0.012449749745428562, 0.007221137173473835, 0.01700005494058132, -0.0015994959976524115, 0.012435617856681347, 0.012866625562310219, -0.03123035840690136, -0.012322567403316498, 0.014555325731635094, 0.03922872245311737, 0.013884085230529308, -0.01753704808652401, 0.015798887237906456, 0.019176287576556206, 0.008874509483575821, 0.018794741481542587, -0.011163793504238129, -0.02135252207517624, 0.0166609026491642, -0.004917721729725599, -0.005938714370131493, -0.005882188677787781, 0.010181662626564503, -0.00542291859164834, 0.02578977681696415, 0.02081552892923355, -0.017763148993253708, -0.018045777454972267, -0.00898755993694067, 0.007736932951956987, -0.0006778648239560425, -0.005009575746953487, -0.0283475574105978, -0.025719119235873222, -0.021804725751280785, -0.01663263887166977, -0.016858741641044617, 0.005963444244116545, 0.006412115413695574, -0.006535765249282122, 0.005391123238950968, 0.0241929292678833, 0.018356667831540108, -0.02269500307738781, -0.022242799401283264, -0.027429016306996346, -0.028587790206074715, 0.018512113019824028, -0.010096874088048935, -0.02532344125211239, 0.04652051627635956, -0.009468027390539646, 0.019557835534214973, -0.012866625562310219, -0.0024270652793347836, 0.034311000257730484, -0.007320057135075331, 0.0035646415781229734, 0.013728640042245388, -0.013007938861846924, 0.016123909503221512, 0.017395732924342155, -0.016802215948700905, -0.031089045107364655, 0.03272828459739685, 0.018738215789198875, 0.018017515540122986, -0.007913575507700443, 0.020080696791410446, -0.010224056430161, 0.015798887237906456, -0.004741079173982143, -0.0005528904148377478, 0.0014811457367613912, -0.010167530737817287, -0.010916493833065033, -0.0021744666155427694, -0.02757032960653305, -0.01000501960515976, -0.05090124532580376, -0.0024199995677918196, 0.005076699890196323, -0.008902772329747677, -0.007722801528871059, -0.007023297715932131, -0.0008982261060737073, -0.01779141277074814, 0.03422621265053749, 0.015276025980710983, -0.023655936121940613, -0.012760640121996403, -0.0004800254537258297, 0.017918594181537628, -0.01216005627065897, -0.02522451989352703, 0.018512113019824028, -0.008655472658574581, 0.012767705135047436, -0.012598128989338875, -0.017522916197776794, -0.030269425362348557, 0.01919041946530342, -0.022765660658478737, -0.03914393484592438, -0.002642568899318576, -0.007242334540933371, -0.008881574496626854, 0.007503765169531107, -0.025182126089930534, 0.019077368080615997, -0.03397184610366821, 0.012739443220198154, -0.028771497309207916, -0.015869544818997383, 0.014936872757971287, 0.007736932951956987, -0.015954332426190376, -0.010209925472736359, 0.0190349742770195, 0.0016092113219201565, 0.01650545746088028, -0.02976069413125515, -0.001298320945352316, -0.005016641225665808, 0.01931760273873806, 0.0005846860003657639, -0.01807403936982155, -0.001999590778723359, -0.007454304955899715, 0.04072665050625801, 0.01707071252167225, 0.00772986700758338, 0.00898755993694067, 0.00032148900208994746, 0.030269425362348557, 0.010266450233757496, 0.007616816088557243, -0.052342645823955536, 0.008690801449120045, -0.020843790844082832, 0.026595264673233032, -0.010103940032422543, 0.04440080747008324, -0.022186273708939552, 0.008054888807237148, -0.015162975527346134, -0.027768170461058617, 0.005878655705600977, 0.021705806255340576, 0.019685018807649612, -0.02212974801659584, 0.023486360907554626, 0.024334242567420006, 0.02050463855266571, 0.029902009293437004, 0.026863761246204376, 0.016251090914011, 0.03391532227396965, -0.017423996701836586, 0.02112641930580139, 0.01622282899916172, -0.01794685795903206, -0.005263940431177616, -0.04386381804943085, 0.006108290981501341, -0.020532900467514992, 0.02432011254131794, -0.02037745527923107, 0.02310481294989586, 0.007178742904216051, 0.03648723289370537, -0.010351238772273064, -0.00032259299769066274, 0.003133634338155389, -0.0023705395869910717, 0.032304342836141586, 0.013509603217244148, -0.029110651463270187, 0.012569866143167019, 0.011086070910096169, 0.023952696472406387, 0.03716554120182991, -0.025365835055708885, 0.031739089637994766, 0.005133225116878748, 0.0030665104277431965, 0.00019066328241024166, -0.004666889552026987, 0.008302188478410244, -0.012697048485279083, 0.027527935802936554, 0.01030177902430296, 0.0058609917759895325, 0.01367917936295271, 0.021267732605338097, -0.001951897400431335, 0.005885721649974585, 0.0027891818899661303, 0.021168813109397888, 0.009524553082883358, -0.02600174769759178, -0.02006656490266323, -0.014357485808432102, -0.013714508153498173, -0.028714971616864204, -0.04194194823503494, -0.0135802598670125, 0.004903590306639671, 0.021592754870653152, -0.0005851276218891144, 0.005242743529379368, 0.024701658636331558, 0.026425687596201897, 0.011432290077209473, -0.016406536102294922, -0.034678418189287186, 0.0141737787052989, 0.025210389867424965, -0.005331064574420452, -0.00507316691800952, -0.014237369410693645, -0.0005692298291251063, 0.014159646816551685, 0.0035734737757593393, -0.043807290494441986, -0.0018105836352333426, 0.014625982381403446, -0.002026087138801813, 0.0028739701956510544, 0.006503969430923462, 0.02850300259888172, -0.02078726515173912, 0.011043677106499672, 0.007920640520751476, 0.00018525360792409629, 0.005059035494923592, -0.009708261117339134, -0.011022479273378849, 0.050307728350162506, 0.011792640201747417, 0.0017010653391480446, 0.018399061635136604, 0.011736114509403706, -0.01594020053744316, 0.011128464713692665, 0.006906713824719191, -0.0036017366219311953, -0.02803666517138481, 0.009997954592108727, -0.004825867712497711, 0.013672114349901676, -0.008196203038096428, 0.036091554909944534, -0.007369516883045435, -0.00017222623864654452, -0.01609564572572708, -0.0006602006033062935, 0.006055298261344433, 0.018172960728406906, 0.02313307672739029, -0.02388203889131546, 0.0006566677475348115, -0.008938100188970566, -0.008005429059267044, -0.021338390186429024, -0.0022274593356996775, 0.005553633905947208, -0.011008348315954208, 0.004620962776243687, 0.013551997020840645, -0.003516948316246271, 0.0007701604627072811, 0.02622784860432148, 0.019812200218439102, -0.014922741800546646, -0.02723117731511593, 0.018031645566225052, -0.01694352924823761, 0.009531619027256966, 0.006871385499835014, 0.008570684120059013, 0.01735333912074566, -0.011135530658066273, 0.009884903207421303, 0.009743588976562023, 0.0015350215835496783, 0.004659824073314667, -0.011983414180576801, -0.02976069413125515, 0.0184414554387331, 0.01931760273873806, 0.02029266767203808, -0.009164202958345413, 0.007609750144183636, 0.007033896632492542, 0.02648221328854561, 0.02091444842517376, -0.006366188637912273, 0.0336892195045948, 0.016335880383849144, -0.007065691985189915, -0.028799761086702347, -0.0025648463051766157, 0.014498800039291382, -0.020363325253129005, 0.020024171099066734, 0.01609564572572708, -0.00852122437208891, 0.013417749665677547, -0.00920659676194191, -0.006846655625849962, -0.024715790525078773, 0.0031159701757133007, 0.00675126863643527, -0.015162975527346134, -0.02191777713596821, -0.004776407964527607, -0.03530019894242287, -0.007595619186758995, -0.0029534592758864164, 0.01083170622587204, -0.0060835606418550014, -0.011637195013463497, 0.00929845031350851, -0.03323701396584511, 0.0174381285905838, -0.017423996701836586, 0.00523567758500576, 0.0017726054647937417, -0.02297762967646122, -0.011241516098380089, -0.004596232902258635, -0.007595619186758995, 0.001303620170801878, 0.0028792694211006165, -0.012478012591600418, -0.0053063347004354, -0.012407355010509491, -0.003299678210169077, -0.031428199261426926, -0.018512113019824028, -0.01668916456401348, 0.008938100188970566, -0.0015544522320851684, 0.017918594181537628, 0.009482158347964287, -0.014710770919919014, 0.035215407609939575, -0.025775644928216934, 0.009058217518031597, -0.016802215948700905, -0.029365016147494316, 0.008931035175919533, 0.02003830298781395, -0.01155240647494793, -0.014979267492890358, 0.01008274219930172, -0.013820493593811989, 0.0184414554387331, -0.005878655705600977, 0.00039899078547023237, -0.00905115157365799, -0.02235584892332554, 0.004193488042801619, -0.0015571018448099494, 0.011057808063924313, -0.0024464959278702736, -0.003963853232562542, 0.005567765329033136, -0.012527472339570522, 0.01459771953523159, 0.02094271034002304, -0.01395474188029766, -0.00538405729457736, -0.003418028587475419, 0.029675906524062157, -0.014484669081866741, -0.03654376044869423, 0.006489838007837534, -0.04473996162414551, -0.0008726129890419543, 0.04154627025127411, -0.01059853844344616, 0.025775644928216934, -0.009793049655854702, -0.028828023001551628, -0.02973243221640587, 0.00016085489187389612, 0.012485077604651451, 0.01712723821401596, -0.01326936949044466, -0.016491325572133064, 0.0024588608648627996, 0.01928933896124363, -0.021013367921113968, -0.007199940271675587, -0.04516390338540077, 0.01650545746088028, 0.00867666956037283, 0.0017717223381623626, 0.008613078854978085, -0.011086070910096169, -0.008711998350918293, -0.027301834896206856, -0.028926942497491837, 0.024701658636331558, -0.008026625961065292, 0.023670068010687828, 0.008436436764895916, 0.005853925831615925, -0.012124727480113506, -0.021267732605338097, 0.0009944961639121175, -0.016703296452760696, 0.008747327141463757, 0.008238596841692924, 0.03032595105469227, 0.011404027231037617, 0.02922370284795761, 0.0015977296279743314, 0.0333218052983284, -0.0012020508293062449, 0.019359996542334557, 0.023557016626000404, 0.00017244704940821975, 0.00817500613629818, 0.0005696714506484568, -0.012965545058250427, -0.0035946709103882313, 0.006210743449628353, 0.004864729009568691, -0.016293486580252647, 0.027556199580430984, 0.026114797219634056, 0.008259793743491173, 0.013544932007789612, -0.02310481294989586, -0.03380227088928223, -0.026468083262443542, -0.005574830807745457, 0.020547032356262207, 0.013735705055296421, -0.037900373339653015, -0.02831929363310337, 0.03897435590624809, 0.002635503187775612, 0.0011729048565030098, -0.017056580632925034, 0.013841690495610237, -0.02009482868015766, 0.01334709208458662, 0.023740725591778755, 0.03589371591806412, -0.030891206115484238, -0.0015871310606598854, -0.028022535145282745, -0.03097599372267723, -0.01815882883965969, -0.031173832714557648, 0.01941652223467827, 0.002064948435872793, -0.00044513860484585166, -0.035554561764001846, -0.013361223973333836, -0.016152171418070793, -0.009178333915770054, 0.0184414554387331, -0.004984845872968435, -0.0196284931153059, -0.00981424655765295, -0.02803666517138481, -0.035780664533376694, -0.03309570252895355, 0.014237369410693645, -0.0031301015987992287, 0.025337571278214455, -0.02913891337811947, -0.01325523853302002, -0.003191926283761859, 0.006108290981501341, 0.0607084259390831, 0.004560904111713171, 0.05386883765459061, 0.022836316376924515, 0.011248582042753696, 2.639974445628468e-05, -0.004158159717917442, -0.009835443459451199, -0.00011923355486942455, 0.021182944998145103, -0.0016021457267925143, -0.022610215470194817, 0.008061954751610756, -0.028799761086702347, -0.013375354930758476, -0.014880347065627575, -0.041094064712524414, 0.01045722421258688, 0.012449749745428562, 0.01053494680672884, -0.02316133864223957, 0.011686654761433601, -0.02922370284795761, 0.013855822384357452, 0.017113106325268745, -0.01704244874417782, -0.025577805936336517, -0.005518305581063032, -0.015516259707510471, 0.011573603376746178, -0.010930625721812248, 0.014696639031171799, 0.00898755993694067, 0.039907027035951614, -0.014357485808432102, 0.012612259946763515, -0.028828023001551628, 0.005394655745476484, 0.010224056430161, 0.0023140141274780035, -0.01697179302573204, -0.02047637477517128, 0.04061359912157059, 0.01565757393836975, -0.022553689777851105, -0.015360814519226551, -0.016081515699625015, 0.034989308565855026, -0.014922741800546646, -0.014421077445149422, -0.016590245068073273, -0.024800579994916916, -0.006503969430923462, 0.00029410942806862295, -0.003167196409776807, -0.005334597546607256, -0.015389077365398407, 0.002172700362280011, 0.014343354851007462, 0.03744816780090332, -0.0038225394673645496, -0.019402390345931053, -0.0062178089283406734, -0.006733604706823826, 0.027400754392147064, 0.003260816913098097, 0.014611851423978806, -0.0373351164162159, -0.01931760273873806, -0.015162975527346134, -0.0031018387526273727, 0.035837188363075256, -0.00402391143143177, -0.013975938782095909, 0.024094009771943092, 0.0483858585357666, -0.012216581963002682, 0.012456814758479595, -0.0081255454570055, 0.005203882232308388, -0.04239415377378464, 0.007609750144183636, 0.0070974878035485744, -0.02331678383052349, 0.012887822464108467, -0.016759822145104408, -0.013905282132327557, -0.017056580632925034, -0.024871235713362694, 0.02081552892923355, -0.005006042774766684, -0.023274390026926994, -0.013163384050130844, 0.02850300259888172, 0.02622784860432148, 0.02207322232425213, -0.01177144329994917, 0.016901135444641113, -0.022016696631908417, 0.01846971921622753, 0.025182126089930534, -0.015643442049622536, 0.006500436924397945, 0.0025913426652550697, -0.006500436924397945, -0.002656700322404504, -0.03066510334610939, -0.022313455119729042, -0.03620460629463196, -0.004726948216557503, 9.069478255696595e-05, -0.010330041870474815, -0.0329543873667717, -0.026312638074159622, -0.004942451603710651, 0.028333425521850586, -0.0031954592559486628, 0.00027313316240906715, 0.00654989667236805, 0.01317751593887806, 0.004469050094485283, 0.010096874088048935, -0.01750878430902958, -0.006387385539710522, -0.003333240281790495, 0.011121399700641632, -0.018045777454972267, -9.897488780552521e-05, 0.005143824033439159, 0.02847473882138729, 0.008556553162634373, -0.016646770760416985, -0.05338836833834648, -0.022115616127848625, -0.03863520547747612, -0.0240092221647501, -0.0035964371636509895, 0.02135252207517624, 0.027937745675444603, -0.0007458720938302577, -0.00020744430366903543, 0.02422119304537773, -0.0002108667540596798, 0.03306743875145912, -0.0424506776034832, 0.007404845207929611, 0.011884493753314018, 0.034593626856803894, -0.002126773353666067, 0.004896524827927351, -0.006447444204241037, -0.02354288659989834, 0.031371671706438065, -0.008916903287172318, 0.0321347676217556, 0.03617634251713753, 0.005977575667202473, -0.010089808143675327, -0.02769751287996769, -0.007111619226634502, 0.014965135604143143, 0.005355794448405504, 0.01122031919658184, -0.011573603376746178, -0.013297632336616516, -0.02326025813817978, 0.01712723821401596, -0.020716609433293343, 0.011580669321119785, -5.3461895731743425e-05, 0.007104553282260895, 0.011969282291829586, -0.0004932736046612263, -0.023147206753492355, 0.016434799879789352, -0.02813558652997017, 0.01993938349187374, -0.005288670305162668, 0.0021744666155427694, 0.02666592225432396, -0.005747940391302109, -0.004514977335929871, -0.027400754392147064, 0.016335880383849144, -0.03128688409924507, 0.016251090914011, 0.0176642294973135, 0.008273925632238388, -0.005528904031962156, -0.01882300339639187, 0.02132425829768181, -0.005147356539964676, 0.024517951533198357, -0.02625611238181591, -0.020999236032366753, -0.01663263887166977, 0.01635001227259636, -0.00856361910700798, -0.020123090595006943, 0.006892582401633263, -0.00390732754021883, 0.010322975926101208, -8.263547351816669e-05, -0.03648723289370537, -0.04488127678632736, -0.010118070989847183, 0.005694947671145201, 0.005271006375551224, -0.0016286419704556465, -0.0037624810356646776, 0.005613692570477724, 0.031089045107364655, -0.032897863537073135, -0.022793922573328018, 0.16821999847888947, 0.0007622115081176162, 0.036685071885585785, 0.038776516914367676, -0.020801397040486336, 0.022341718897223473, 0.011933953501284122, -0.02119707688689232, -0.016519587486982346, 0.024532083421945572, -0.018370799720287323, 0.016123909503221512, -0.007645078934729099, 0.00864134170114994, 0.009453896433115005, 0.007736932951956987, -0.017734887078404427, -0.05005336180329323, -0.010506683960556984, 0.0007653027423657477, 0.0014811457367613912, -0.010351238772273064, -0.026439819484949112, -0.028375819325447083, 0.017395732924342155, -0.008316319435834885, 0.025026680901646614, -0.014625982381403446, 0.02597348392009735, -0.003370335092768073, -0.02212974801659584, 0.021423177793622017, -0.004748145118355751, -0.0138770192861557, -0.011721983551979065, -0.0028969338163733482, 0.03388705849647522, 0.008507093414664268, 0.003186627058312297, -0.014682508073747158, 0.00253658345900476, -0.026326768100261688, -0.03589371591806412, -0.026044141501188278, -0.0014104887377470732, 0.005924582947045565, -0.024390768259763718, -0.033180490136146545, 0.0032237221021205187, 0.017325077205896378, 0.003379167290404439, 0.00804782286286354, 0.016604376956820488, 0.013474274426698685, -0.004705750849097967, -0.005334597546607256, -0.0023776052985340357, 0.004977779928594828, 0.009029954671859741, 0.007312991190701723, -0.0030029190238565207, 0.01919041946530342, -0.013559062965214252, 0.005709079094231129, -0.023655936121940613, 0.0036953568924218416, -0.028093190863728523, -0.006878451444208622, -0.015671705827116966, -0.024023352190852165, 0.010075677186250687, -0.007404845207929611, -0.017155500128865242, 0.021988432854413986, -0.029251964762806892, -0.009001691825687885, 0.0341414250433445, 0.012181253172457218, 0.03179561346769333, 0.017141368240118027, -0.03863520547747612, -0.01862516440451145, -0.026750709861516953, 0.012485077604651451, -0.04120711609721184, -0.011700785718858242, 0.014216172508895397, -0.02091444842517376, -0.011898625642061234, -0.006571093574166298, -0.01622282899916172, -0.002580743981525302, 0.009015822783112526, 0.011234450154006481, 0.006850188598036766, -0.007019765209406614, -0.02847473882138729, 0.015276025980710983, 0.002121474128216505, -0.017014186829328537, -0.03063684143126011, 0.037561219185590744, 0.015530391596257687, 0.032586973160505295, 0.02256781980395317, -0.0037165540270507336, 0.004945984575897455, -0.01200461108237505, -0.00625313725322485, -0.028559526428580284, -0.01200461108237505, -0.03156951069831848, -0.00044116415665484965, -0.016519587486982346, 0.009100611321628094, 0.0024217660538852215, 0.02591695822775364, -0.01047135517001152, 0.008210333995521069, 0.025111470371484756, 0.01650545746088028, -0.011750245466828346, -0.03278481215238571, -0.0028987000696361065, -0.001352196792140603, -0.009072348475456238, -0.023274390026926994, 0.012025807984173298, -0.008309253491461277, -0.016745690256357193, 0.022921105846762657, -0.0448247492313385, 0.02037745527923107, -0.020236141979694366, -0.0228221844881773, -0.014569456689059734, -0.0036282329820096493, -0.02973243221640587, -0.012979676015675068, 0.024645134806632996, 0.010428961366415024, -0.007320057135075331, 0.0028810359071940184, -0.019642623141407967, 0.03408489748835564, -0.01993938349187374, -0.003956787753850222, 0.006228407379239798, 0.006825458724051714, -0.008966363035142422, -0.0160673838108778, -0.01288075651973486, 0.02790948376059532, -0.029251964762806892, -0.002073780633509159, -0.015855412930250168, -0.008132611401379108, -0.015106449835002422, 0.004896524827927351, 0.013813427649438381, -0.021522097289562225, 0.012859559617936611, 0.011615998111665249, 0.0168446097522974, -0.022836316376924515, -0.011093136854469776, -0.18054255843162537, 0.010570275597274303, 0.016208697110414505, -0.032558709383010864, 0.02150796726346016, 0.015586916357278824, 0.016576113179326057, 0.003347371704876423, 0.027739906683564186, -0.009757720865309238, -0.011149661615490913, -0.010330041870474815, -0.00795596931129694, -0.0198545940220356, -0.0198545940220356, -0.0058609917759895325, 0.009870772249996662, 0.007941837422549725, 0.043524663895368576, 0.020080696791410446, 0.027174651622772217, -0.00912887416779995, 0.014541193842887878, 0.019119761884212494, 0.004956583026796579, -0.014724901877343655, 0.0003698448126669973, 0.013007938861846924, 0.004970714449882507, -0.022497164085507393, 0.014004201628267765, 0.026030009612441063, 0.004069838672876358, -0.010344172827899456, 0.011615998111665249, 0.007157546002417803, -0.0061895460821688175, -0.028842154890298843, -0.011637195013463497, 0.0030947730410844088, 0.01831427402794361, 0.03363269567489624, 0.0015818318352103233, -0.005288670305162668, 0.0020773133728653193, 0.021931909024715424, 0.032247819006443024, -0.012894888408482075, 0.011460552923381329, 0.005588962230831385, 0.02656700275838375, -0.007277662865817547, 0.02860192209482193, 0.004638626705855131, 0.015261895023286343, 0.007132816128432751, -0.01887952908873558, 0.019981777295470238, -0.016420667991042137, -0.008662538602948189, 0.03190866485238075, -0.027301834896206856, -0.003456889884546399, 0.019840463995933533, -0.01519123837351799, -0.0029393278528004885, 0.0038614007644355297, -0.015445603057742119, -0.029873745515942574, 0.008938100188970566, 0.001338065485469997, 0.0031195031479001045, 0.00398505013436079, 0.005369925871491432, 0.009164202958345413, 0.03617634251713753, -0.004260612186044455, 0.008231530897319317, -0.017268551513552666, -0.009256056509912014, -0.028616052120923996, 0.024871235713362694, -0.020886186510324478, 0.004892991855740547, 0.013912348076701164, 0.008726129308342934, 0.019246945157647133, -0.00025811855448409915, -0.011347501538693905, -0.020617689937353134, 0.011580669321119785, -0.005490042734891176, -0.006708874832838774, -0.012732377275824547, 0.021606886759400368, 0.022158009931445122, -0.0014149048365652561, -0.01913389377295971, -0.008959297090768814, -0.03301091492176056, 0.018653426319360733, -0.011997545138001442, -0.007821721024811268, 0.012753574177622795, 0.02725943922996521, 0.04225283861160278, -0.025860432535409927, -0.010174596682190895, 0.0035063496325165033, 0.025266915559768677, -0.025295177474617958, -0.03298265114426613, 0.024122273549437523, 0.03236087039113045, -0.01957196742296219, 0.034056637436151505, -0.009093545377254486, -0.022779790684580803, -0.0031512987334281206, 0.0028527730610221624, 0.005214480683207512, -0.005165020935237408, -0.008288056589663029, 0.012421486899256706, 0.00996969174593687, -0.0011508245952427387, -0.10174596309661865, -0.03603503108024597, 0.009729458019137383, -0.00428180955350399, 0.0005533320363610983, 0.02757032960653305, -0.02472992241382599, 0.007539093494415283, -0.0006769816391170025, 0.029251964762806892, 0.018059909343719482, -0.014315092004835606, -0.019685018807649612, 0.00561015959829092, -0.03693943843245506, 0.012273106724023819, -0.02509733848273754, 0.004267678130418062, 0.0012205983512103558, 0.036402445286512375, 0.012485077604651451, -0.02372659370303154, 0.004857663065195084, -0.0023493426851928234, 0.003871999215334654, -0.006648816168308258, -0.028149716556072235, -0.004695152398198843, -0.001297437702305615, 0.006140086334198713, -0.00850002747029066, -0.002086145570501685, -0.005013108719140291, 0.0022574886679649353, 0.003312043147161603, 0.014202040620148182, -0.022921105846762657, -0.022158009931445122, 0.013106858357787132, -0.02297762967646122, 0.0034745540469884872, 0.002734422916546464, -0.005613692570477724, -0.016604376956820488, 0.030212899670004845, -0.01192688848823309, -0.026298506185412407, 0.020730741322040558, -0.013015004806220531, -0.013537866063416004, -0.006009371019899845, -0.023345045745372772, -0.02922370284795761, -0.022892842069268227, 0.007772261276841164, 0.001335415756329894, 0.010852903127670288, 0.010132201947271824, -0.0038614007644355297, 0.008005429059267044, 0.0024641600903123617, 0.0006195728783495724, -0.0166609026491642, 0.0182577483355999, 0.015092317946255207, -4.802462717634626e-05, -0.028517132624983788, -0.02300589345395565, 0.04420296847820282, -0.024122273549437523, -0.022483032196760178, 0.03558282554149628, -0.019812200218439102, 0.031399935483932495, -0.005553633905947208, 0.027739906683564186, 0.009234859608113766, 0.01428682915866375, 0.02472992241382599, -0.007111619226634502, 0.008994625881314278, -0.002684962935745716, -0.031739089637994766, -0.02545062266290188, 0.022172141820192337, 0.008825049735605717, 0.026369161903858185, 0.024517951533198357, 0.02913891337811947, -0.03041073866188526, 0.018399061635136604, 0.006811327300965786, 0.02362767420709133, -0.024362506344914436, 0.011714917607605457, 0.011015414260327816, 0.02109815739095211, -0.010951822623610497, -0.010153399780392647, -0.0016242259880527854, -0.03298265114426613, -0.0034604226239025593, -0.03541325032711029, 0.008697866462171078, -0.032558709383010864, -0.019543703645467758, 0.008323385380208492, -0.012711180374026299, -0.012223646976053715, -0.015671705827116966, 0.022186273708939552, 0.0025383499450981617, -0.05386883765459061, 0.02241237461566925, -0.029902009293437004, -0.012873690575361252, -0.0007229086477309465, 0.0035151818301528692, 0.01201874203979969, -0.005249809008091688, 0.03713727742433548, 0.015332551673054695, -0.0037200867664068937, -0.01288075651973486, 0.013657982461154461, 0.006913779769092798, -0.020956842228770256, 0.0023016491904854774, -0.012739443220198154, 0.02759859338402748, -0.021112287417054176, -0.04807496815919876, 0.019020842388272285, -0.00928431935608387, -0.018709952011704445, 0.010365370661020279, 0.012739443220198154, 0.021267732605338097, -0.015558653511106968, 0.013594391755759716, 0.01216005627065897, 0.01045722421258688, -0.0263832937926054, -0.0008942516287788749, 0.005037838593125343, -0.00856361910700798, -0.01125564705580473, -0.0166609026491642, -0.01921868324279785, 0.012492143549025059, 0.007553224917501211, 0.014166712760925293, 0.014484669081866741, 0.01887952908873558, -0.001338948612101376, -0.023020025342702866, 0.023528754711151123, -0.02091444842517376, -0.0010183429112657905, -0.021465571597218513, -0.0029605249874293804, 0.0004645692533813417, 0.022398244589567184, -0.006447444204241037, 0.011538275517523289, -0.0105208158493042, 0.0024164665956050158, -0.02197430282831192, -0.016406536102294922, -0.014922741800546646, -0.0004257079563103616, -0.032304342836141586, -0.010033282451331615, 0.000665941450279206, 0.010591472499072552, 0.017296813428401947, 0.04086796194314957, 0.020900316536426544, -0.028248636052012444, 0.009178333915770054, -0.013438946567475796, 0.01663263887166977, 0.023712461814284325, 0.0125062745064497, -0.01931760273873806, -0.01635001227259636, 0.046435728669166565, -0.02066008374094963, 4.2256149754393846e-05, -0.023783119395375252, -0.017452258616685867, -0.00274678785353899, 0.019402390345931053, -0.021677542477846146, -0.029619380831718445, -0.01067626103758812, 0.01405366137623787, -0.0048611960373818874, -0.005839794408529997, 0.006730071734637022, 0.011248582042753696, 0.016858741641044617, 0.02978895790874958, -0.014781427569687366, -0.0372503288090229, -0.013884085230529308, -0.02847473882138729, 0.00647923955693841, -0.009962625801563263, -0.02275152876973152, -0.005868057254701853, 0.028714971616864204, -0.004642159678041935, 0.008655472658574581, 0.016830477863550186, 0.007553224917501211, -0.01697179302573204, -0.0030665104277431965, -0.005044904071837664, -0.004317137878388166, -0.024263586848974228, 0.024616871029138565, -0.003992116078734398, 0.010796377435326576, 0.052936166524887085, -0.013078596442937851, 0.008669604547321796, 0.0048611960373818874, 0.03233260661363602, -0.01813056506216526, -0.004387794993817806, -0.0019042040221393108, -0.038748256862163544, -0.013933544978499413, -0.02819211222231388, -0.016081515699625015, 0.00826685968786478, -0.014223238453269005, 0.012930216267704964, -0.021606886759400368, -0.008874509483575821, 0.08597534149885178, 0.021832987666130066, -0.010499618016183376, 0.010428961366415024, -0.00850002747029066, 0.01635001227259636, 0.03207824379205704, -0.005931648425757885, 0.007581487763673067, -0.011835034005343914, 0.006581692025065422, -0.0003486477362457663, 0.010577340610325336, -0.04270504415035248, -0.015869544818997383, 0.02978895790874958, -0.0277540385723114, 0.032247819006443024, -0.017960989847779274, 0.00019717696704901755, 0.014060727320611477, 0.016703296452760696, 0.003301444696262479, -0.009333779104053974, -0.009524553082883358, 0.004197021014988422, 0.025139732286334038, -0.003843736369162798, -0.040811438113451004, -0.01413138397037983, 0.01588367484509945, -0.015530391596257687, -0.037532955408096313, -0.019388258457183838, 0.007489633746445179, 0.006002305541187525, -0.004970714449882507, -0.015544522553682327, 0.02651047706604004, -0.0035646415781229734, 0.0029234301764518023, -0.0030152841936796904, -0.01960022933781147, -0.034989308565855026, -0.0048470646142959595, 0.015134712681174278, -0.016646770760416985, -0.00905115157365799, -0.04182889685034752], "c82bed89-8f47-4ba3-98c6-40149c08d156": [-0.006218562368303537, 0.023778894916176796, -0.0015633063158020377, -0.025872547179460526, -0.008991611190140247, 0.004939493257552385, -0.011112993583083153, -0.009282780811190605, -0.015002194792032242, -0.025636836886405945, -0.004471541382372379, 0.015196308493614197, -0.01900925114750862, 0.018066413700580597, 0.012922408059239388, 0.008471664041280746, 0.00683903181925416, -0.008596451953053474, 0.003618828719481826, 0.01111992634832859, -0.011619075201451778, 0.004239298403263092, 0.002436816692352295, -0.005677817855030298, -0.0024662804789841175, -0.004187304060906172, 0.01309572346508503, -0.010170157067477703, -0.002020859392359853, -0.007757604122161865, 0.02947751060128212, -0.021740702912211418, -0.017289960756897926, -0.009282780811190605, -0.02565070241689682, 0.0011083530262112617, -0.017262229695916176, 0.008589519187808037, -0.002993159694597125, -0.01889832876622677, 0.02541499398648739, 0.03383119776844978, 0.005469839088618755, -0.002778248395770788, -0.0019394010305404663, 0.002691590692847967, 0.017650457099080086, -0.01665215939283371, -0.01778910867869854, -0.006870228797197342, 0.02807711996138096, 0.03632694110274315, -0.031612757593393326, -0.017054250463843346, -0.00773680629208684, -0.009005476720631123, 0.0015901701990514994, 0.007029679138213396, 0.001885673264041543, -0.029006091877818108, 0.0031144805252552032, 0.004045185167342424, -0.019023114815354347, -0.045006584376096725, 0.001312865293584764, 0.005819936282932758, -0.0032358013559132814, 0.008631114847958088, -0.006970751564949751, 0.014821946620941162, -0.00535891717299819, 0.014308932237327099, -0.0005203799810260534, 0.027106553316116333, 0.0306421909481287, 0.007778402417898178, -0.017123576253652573, -0.015861839056015015, -0.006575592327862978, 0.005650087259709835, -0.00037761125713586807, -0.0010034970473498106, -0.013733524829149246, 0.01611141487956047, 0.005570361856371164, -0.005279191769659519, 0.022517157718539238, 0.026316234841942787, -0.01415641512721777, -0.019688647240400314, -0.008319146931171417, 0.0014359194319695234, 0.0011646805796772242, 0.0191894993185997, -0.001462783315218985, 0.03596644476056099, -0.01013549417257309, 0.0070088813081383705, -0.009144129231572151, -0.026954036206007004, -0.01102980226278305, 0.02454148232936859, -0.020922653377056122, 0.0014948466559872031, -0.01435052789747715, -0.011293241754174232, 0.0072584557346999645, -0.005871931090950966, 0.023487724363803864, 0.003528704633936286, -0.019799569621682167, 0.038822684437036514, 0.011466557160019875, -0.01704038493335247, 0.008769767358899117, -0.02983800694346428, 0.01776137761771679, -0.036216020584106445, -0.01871808059513569, -0.011875581927597523, 0.019716378301382065, 0.012589641846716404, -0.0027071889489889145, -0.005147472023963928, 0.01593116670846939, -0.00889455433934927, 0.01419801078736782, -0.03746389225125313, -0.010891149751842022, -0.023030171170830727, 0.03555048629641533, 0.021504994481801987, -0.01035733800381422, 0.015958895906805992, -0.0023102962877601385, 0.03208417445421219, -0.015002194792032242, 0.017109712585806847, -0.010877284221351147, -0.007792267482727766, 0.013345297425985336, 0.01107833068817854, -0.014683294110000134, 4.186654041404836e-05, 0.010925812646746635, -0.0011395497713238, 0.0200907401740551, -0.006222028285264969, -0.010398933663964272, -0.002123115584254265, 0.011473489925265312, -0.00044065481051802635, 0.012901609763503075, 0.010322674177587032, -0.0072723207995295525, -0.005670885089784861, -0.018010953441262245, 0.004814706277102232, 0.03674289956688881, -0.013684996403753757, 0.022766731679439545, 0.01794162578880787, -0.00496375747025013, 0.009560085833072662, 0.005345051642507315, 0.03704793378710747, 0.031917791813611984, 0.00880443025380373, -0.0033155265264213085, 0.016097549349069595, -0.012402460910379887, 0.022946979850530624, -0.019452938809990883, 0.010288011282682419, -0.0029827607795596123, 0.00902627408504486, 0.015154711902141571, 0.004197702743113041, -0.02657967433333397, -0.000668998050969094, -0.0046621887013316154, 0.006617187988013029, 0.006832099054008722, 0.03679835796356201, -0.035356372594833374, -0.00382334110327065, 0.022309178486466408, -0.009816593490540981, 0.01838531345129013, 0.017872299998998642, 0.025789353996515274, 0.017206767573952675, -0.007535760290920734, 0.0005017485236749053, -0.6251561641693115, -0.02352931909263134, -0.008852958679199219, -0.014586237259209156, 0.011327904649078846, 0.004714183043688536, -0.00947689451277256, 0.006339882966130972, -0.02466627024114132, 0.011216983199119568, 0.013435421511530876, -0.01844077557325363, 0.03103041648864746, -0.013996964320540428, 0.0012990001123398542, -0.022350775077939034, 0.004523536190390587, -0.011237780563533306, -0.002736652735620737, 0.01139029860496521, -0.02523474581539631, 0.01794162578880787, -0.012943205423653126, 0.0017903497209772468, 0.004239298403263092, 0.0305867288261652, 0.001354461070150137, 0.012180617079138756, 0.005376248620450497, 0.018787406384944916, -0.029366588220000267, -0.031585026532411575, -0.012984801083803177, 0.018815137445926666, 0.042677223682403564, -0.0050122858956456184, -0.010794092901051044, 0.0026881243102252483, 0.0362437479197979, 0.017733648419380188, -0.02125542052090168, -0.028950629755854607, 0.012790688313543797, 0.018815137445926666, 0.00996911060065031, -0.015376556664705276, -0.012201415374875069, 0.015071520581841469, -0.01590343564748764, -0.011473489925265312, 0.0171651728451252, -0.0026309301611036062, 0.002116183051839471, -0.01946680247783661, 0.015986626967787743, -0.000963634520303458, 0.014641698449850082, -0.006998482160270214, 0.00934517476707697, -0.01551520824432373, 0.0013405958889052272, -0.002426417777314782, -0.03213963657617569, -0.014988329261541367, -0.018607158213853836, 0.001584970741532743, -0.02914474345743656, -0.0055980924516916275, 0.016014358028769493, -0.024624673649668694, 0.008437001146376133, 0.002897836035117507, -0.006246292497962713, -0.013504748232662678, 0.02316882275044918, 0.03763027489185333, 0.018108010292053223, 0.015071520581841469, -0.0034593786112964153, 0.01059997919946909, 0.011112993583083153, -0.012658968567848206, -0.0029186338651925325, -0.01859329268336296, 0.03668743744492531, 0.002648261608555913, -0.011820120736956596, 0.01659669727087021, -0.0005008819862268865, 0.015945030376315117, 0.004007055889815092, 0.020520562306046486, 0.007154466118663549, -0.02992119826376438, -0.00849246233701706, 0.00709900539368391, 0.02813258208334446, -0.016485774889588356, -0.010197887197136879, -0.03222282975912094, -0.0024992104154080153, -0.0035910983569920063, 0.012499517761170864, 0.014364393427968025, 0.008027976378798485, 0.010683170519769192, 0.0052306633442640305, 0.0191894993185997, 0.015279499813914299, -0.021144498139619827, -0.03557821735739708, -0.021976413205266, -0.002350158989429474, 0.006430007051676512, 0.0007032278808765113, -0.02376502938568592, 0.01080795843154192, 0.0031162137165665627, 0.00907480251044035, -0.017678186297416687, 0.010232550092041492, 0.02741158939898014, -0.011549748480319977, -0.0013085324317216873, 0.025220880284905434, -0.00021198659669607878, 0.0062289610505104065, -0.008000246249139309, -0.024222582578659058, -0.005972454324364662, 0.001642164890654385, 0.004592862445861101, 0.032333750277757645, -0.01050985511392355, -0.012035032734274864, -0.02179616503417492, 0.011189252138137817, -0.015043790452182293, 0.038545381277799606, -0.02337680198252201, -0.025387262925505638, -0.009885919280350208, 0.01471102423965931, -0.03799077123403549, -0.008644980378448963, -0.015584534965455532, -0.035356372594833374, -0.0063606807962059975, -0.011050599627196789, 0.01686013676226139, 0.0024246845860034227, 0.01050985511392355, -0.01109219528734684, 0.031945522874593735, 0.025844816118478775, -0.010031504556536674, -0.00315087684430182, -0.02541499398648739, -0.007237657438963652, -0.006294820923358202, -0.008062639273703098, 0.025331802666187286, -0.008748969063162804, -0.002743585268035531, 0.0005476771621033549, -0.016790810972452164, -0.009227320551872253, 0.020825596526265144, -0.019605455920100212, -0.045727577060461044, 0.017886165529489517, -0.006409209221601486, -0.005345051642507315, 0.004242764785885811, -0.01871808059513569, 0.02164364606142044, -0.008346877060830593, 0.015057655982673168, 0.0012331402394920588, -0.013969234190881252, 0.002135247690603137, -0.007993313483893871, 0.02675992250442505, -0.019244959577918053, -0.004315557423979044, 0.009275848977267742, 0.02350158989429474, -0.006911824457347393, -0.011591344140470028, -0.01698492467403412, 0.021907085552811623, 0.014433719217777252, -0.021130632609128952, -0.010260281153023243, -0.030836304649710655, 0.05551644042134285, 0.0070227463729679585, 0.002097118180245161, 0.011695333756506443, 0.011827053502202034, 0.020991981029510498, -0.012416326440870762, -0.0026309301611036062, -0.04145708307623863, 0.004478474147617817, -0.04472927749156952, 0.005691682919859886, 0.0016707619652152061, -0.00011861283564940095, 0.0085825864225626, 0.02089492417871952, -0.012139021418988705, -0.03180687129497528, 0.0019671316258609295, 0.017470208927989006, 0.05695842579007149, -0.011126859113574028, 0.005532232578843832, 0.000459286238765344, -0.012139021418988705, 0.01358793955296278, 0.002920367056503892, 0.019175633788108826, 0.011251646094024181, 0.009754199534654617, 0.0014957132516428828, 0.020201660692691803, -0.011799323372542858, -0.028382156044244766, -0.03937729448080063, 0.017484072595834732, -0.012520316056907177, 0.011459624394774437, 0.009178792126476765, 0.01900925114750862, 0.013581006787717342, 0.025123823434114456, -0.013178914785385132, 0.029588431119918823, 0.00737630994990468, -0.03222282975912094, 0.01683240756392479, -0.0005372782470658422, -0.03208417445421219, 0.013934570364654064, -0.011265511624515057, 0.019258825108408928, 0.025387262925505638, -0.004062516614794731, 0.015168577432632446, 0.0018458106787875295, -0.008034909144043922, -0.022905383259058, 0.013851379044353962, -0.014239606447517872, -0.016180740669369698, 0.012728294357657433, -0.0011473490158095956, 0.005306922364979982, 0.012991733849048615, 0.019785704091191292, -0.006665716413408518, 0.006918757222592831, -0.0009705671109259129, 0.006298287305980921, -0.010010706260800362, -0.017983222380280495, -0.032306019216775894, -0.019244959577918053, -0.025872547179460526, -0.038822684437036514, -0.02627463825047016, -0.03297154977917671, 0.018274392932653427, 0.023390667513012886, -0.003573766676709056, -0.0016854937421157956, 0.025664567947387695, 0.020257122814655304, -0.0034559122286736965, 0.003525238484144211, -0.03244467079639435, 0.008956948295235634, 0.026260772719979286, -0.006689980626106262, 0.0006087708752602339, -0.01892605796456337, 0.008811363019049168, 0.010010706260800362, 0.012957070954144001, -0.022641943767666817, 0.006475069094449282, -0.005528766196221113, -0.0027037227991968393, 0.006551328115165234, -9.364456491312012e-05, 0.0364655926823616, -0.00577140785753727, 0.012360865250229836, 0.014891272410750389, -0.0006555661093443632, 0.0040001231245696545, -0.03710339590907097, 0.003409116994589567, 0.05512821301817894, -0.0024177520535886288, 0.01179239060729742, 0.012541113421320915, -0.007847728207707405, -0.0027678494807332754, 0.009851256385445595, -0.01880127191543579, -0.008090370334684849, -0.019064711406826973, 0.035827793180942535, -0.03097495622932911, 0.01611141487956047, 0.005913526751101017, 0.03022623248398304, 0.012104358524084091, -0.0007543559768237174, -0.016846271231770515, -0.007688278332352638, 0.03893360495567322, 0.044646088033914566, 0.03760254383087158, -0.017484072595834732, 0.0021976411808282137, -0.01093967817723751, -0.002312029479071498, -0.012589641846716404, 0.01170226652175188, 0.008943082764744759, 0.0023189622443169355, -0.004388350062072277, 0.03319339454174042, -0.009060936979949474, -0.010482124984264374, 0.01593116670846939, 0.01403855998069048, -0.018218930810689926, -0.020784001797437668, -0.004294759593904018, -0.03166821971535683, 0.017692051827907562, 0.009275848977267742, 0.025428857654333115, 0.032306019216775894, -0.017719782888889313, -0.012936273589730263, 0.010197887197136879, -0.005549564026296139, 0.0035703005269169807, -0.031141338869929314, -0.009157993830740452, 0.008783632889389992, 0.042704954743385315, 0.030143041163682938, -0.017331555485725403, 0.02639942616224289, 0.024083929136395454, 0.016971059143543243, 0.0382680743932724, -0.012347000651061535, 0.0032392677385360003, 0.012804552912712097, 0.01644418016076088, 0.0034507126547396183, -0.0044126142747700214, 0.0016196338692680001, -0.005608491599559784, 0.014988329261541367, -0.003809476038441062, -0.008547923527657986, 0.01602822355926037, -0.019688647240400314, -0.02319655381143093, -0.02741158939898014, 0.01701265573501587, -0.004929094575345516, -0.003518305718898773, 0.005026150960475206, -0.01587570458650589, -0.028562404215335846, -0.005910060368478298, -0.019716378301382065, 0.024014603346586227, -0.003416049527004361, 0.005691682919859886, -0.018731946125626564, 0.012125156819820404, 0.030864033848047256, -0.047668710350990295, -0.011993436142802238, -0.001638698624446988, -0.019716378301382065, -0.04375871270895004, -0.015182442963123322, 0.019688647240400314, 0.013234375976026058, -0.005102409981191158, 0.005785273388028145, -0.012742159888148308, -0.005747143644839525, -0.021504994481801987, -0.04295452684164047, 0.006107640452682972, -0.022877654060721397, 0.007209927309304476, 0.008644980378448963, 0.015598400495946407, 0.010530653409659863, 0.011806256137788296, -0.006114572752267122, -0.009740334004163742, -0.007313916459679604, -0.01709584705531597, -0.019244959577918053, -0.005400512833148241, 0.04137388989329338, -0.00706434203311801, -0.003249666653573513, 0.023751163855195045, -0.029283396899700165, 0.006118039134889841, -0.008679643273353577, 0.0013137318892404437, 0.0019636652432382107, -0.024971306324005127, -0.018634889274835587, 0.006960352882742882, 0.014613967388868332, -0.001779950805939734, -0.01623620092868805, 0.017802974209189415, -0.012097425758838654, 0.03726977854967117, 0.03103041648864746, 0.0054975696839392185, 0.012742159888148308, 0.027453184127807617, -0.0008353809826076031, 0.007293118629604578, -0.037297509610652924, 0.01473875530064106, -0.04032013192772865, -0.009033206850290298, 0.019563859328627586, 0.0011092196218669415, 0.033082474023103714, 0.01916176825761795, -0.022045738995075226, -0.013255173340439796, 0.013560209423303604, 0.02634396404027939, 0.029727084562182426, -0.021033575758337975, -0.01862102374434471, -0.026135986670851707, 0.021366341039538383, -0.015529073774814606, 0.0030642191413789988, -0.0362437479197979, 0.004939493257552385, 0.00835380982607603, 0.010863418690860271, -0.004107578657567501, 0.0016187672736123204, -0.029033822938799858, -0.03738069906830788, 0.0006646651891060174, -0.0029186338651925325, -0.00250440975651145, 0.03211190551519394, 0.008651912212371826, 0.0011880781967192888, -0.025914141908288002, -0.003559901611879468, 0.007050476968288422, -0.01871808059513569, -0.014364393427968025, -0.0018163470085710287, 0.04933254048228264, 0.000598805258050561, 0.02089492417871952, -0.006398810539394617, 0.04852835461497307, 0.0056292894296348095, -0.015792513266205788, 0.035800062119960785, -0.019217228516936302, -0.007514962460845709, -0.008950015529990196, -0.013872177340090275, 0.018163470551371574, -0.004665654618293047, 0.021144498139619827, -0.006762773264199495, 0.009379837661981583, 0.037297509610652924, 0.016638293862342834, 0.023959143087267876, -0.014724889770150185, -0.03028169460594654, -0.021685242652893066, 0.035467296838760376, -0.010870351456105709, 0.02834055945277214, -0.01667988859117031, -0.02950523979961872, 0.024028468877077103, 0.005643154494464397, -0.010114695876836777, 0.0011352169094607234, 0.022711271420121193, -0.022711271420121193, 0.01367806363850832, 0.03022623248398304, 0.028978360816836357, -0.040431052446365356, -0.008388472720980644, -0.02526247501373291, -0.0007838195888325572, 0.014780350960791111, 0.007237657438963652, 0.023903680965304375, 0.004447277169674635, 0.004679520148783922, -0.006291354540735483, -0.01475261989980936, -0.028811978176236153, -0.014683294110000134, 0.017289960756897926, -0.022558752447366714, -0.030836304649710655, -0.030697651207447052, -0.02947751060128212, 0.002670792629942298, -0.003604963654652238, 0.012797621078789234, 0.011820120736956596, 0.012159819714725018, -0.03405303880572319, -0.02621917799115181, 0.008138898760080338, -0.023543184623122215, 0.015584534965455532, -0.007937852293252945, 0.03754708170890808, 0.002071121009066701, 0.007175263948738575, -0.023862086236476898, -0.008631114847958088, 0.0017816838808357716, 0.011619075201451778, 0.037685733288526535, 0.0007361578173004091, -0.0018960721790790558, -0.012499517761170864, -0.009248117916285992, 0.02257261797785759, 0.014475314877927303, -0.03327658772468567, 0.011771592311561108, 0.01722063310444355, -0.0028735718224197626, -0.02526247501373291, 0.017262229695916176, -0.04068062826991081, 0.005324253812432289, -0.0027331863529980183, 0.010953542776405811, -0.01796935684978962, 0.015237904153764248, 0.001809414359740913, 0.0069915493950247765, -0.008430068381130695, 0.033886656165122986, 0.01419801078736782, 0.00925505068153143, -0.007306983694434166, -0.009088668040931225, -0.04472927749156952, 0.01727609522640705, -0.0022842991165816784, 0.004485406447201967, -0.011626007966697216, -0.00996911060065031, 0.023279745131731033, 0.011376433074474335, -0.005393580067902803, 0.0052306633442640305, 0.013629535213112831, 0.030836304649710655, -0.016485774889588356, 0.014544641599059105, 0.009289713576436043, 0.006114572752267122, -0.02024325728416443, -0.006787037011235952, -0.015778647735714912, 0.015224038623273373, -0.0022167060524225235, -0.029311126098036766, 0.023307476192712784, 0.004509670659899712, 0.03061445988714695, 0.004977623000741005, -0.0014133884105831385, -0.011605209670960903, -0.0037089528050273657, -0.02027098834514618, 0.029588431119918823, -0.02914474345743656, 0.010516787879168987, -0.027661163359880447, 0.008825228549540043, 0.010343472473323345, 0.011036735028028488, -0.006624120753258467, 0.01877354085445404, 0.021297015249729156, -0.022586483508348465, 0.0029827607795596123, -0.015210173092782497, 0.008319146931171417, -0.02795233391225338, 0.005126674193888903, -0.0011213516118004918, -0.0009757665684446692, 0.006988083478063345, -0.020562157034873962, -0.012520316056907177, -0.013851379044353962, -0.010433596558868885, -0.01062771026045084, -0.01644418016076088, -0.020742405205965042, 0.012104358524084091, -0.0018076812848448753, 0.02350158989429474, -3.956469299737364e-05, -0.017179038375616074, 0.020021412521600723, -0.022586483508348465, 0.012118224054574966, -0.002804245799779892, 0.005299989599734545, 0.024083929136395454, -0.005643154494464397, 0.00038952671457082033, 0.007882391102612019, -0.03136318176984787, -0.009483827278017998, 0.010350405238568783, -0.004485406447201967, 0.00594125734642148, -0.004887498915195465, -0.03136318176984787, 0.014877407811582088, -0.008755901828408241, -0.006960352882742882, 0.007792267482727766, 0.009858189150691032, -0.0017591528594493866, 0.026316234841942787, 0.03446899726986885, 0.004436878487467766, -0.024388965219259262, -0.010253348387777805, 0.010967408306896687, 0.006287888623774052, -0.00786159373819828, -0.011639872565865517, -0.014863542281091213, 0.04700317978858948, 0.010142426006495953, 0.0017140908166766167, -0.026746056973934174, 0.015542939305305481, -0.030059849843382835, -0.011320971883833408, 0.024832652881741524, 0.015251768752932549, 0.014184145256876945, 0.03560594841837883, 0.005071213003247976, 0.03674289956688881, -0.021907085552811623, 0.005234129726886749, -0.011508152820169926, 0.01862102374434471, 0.005688216537237167, 0.04201168939471245, 0.018676484003663063, -0.007612019311636686, -0.008235955610871315, -0.04669814184308052, 0.012118224054574966, -0.003736683400347829, 0.005553030408918858, -0.0029532969929277897, -0.001190677867271006, -0.005747143644839525, -0.01509925164282322, -0.011535883881151676, -0.02451375313103199, -0.000704094476532191, -0.002830242970958352, -0.001987929455935955, 0.0017106245504692197, -0.026856979355216026, 0.012964003719389439, -0.011944908648729324, -0.010170157067477703, -0.004547800403088331, -0.003951594699174166, -7.544642721768469e-05, -0.009691805578768253, -0.021061306819319725, 0.018080279231071472, -0.0005052148480899632, 0.003604963654652238, -0.030143041163682938, -0.004357153084129095, 0.04276041314005852, -9.564852371113375e-05, 0.014308932237327099, -0.01665215939283371, 0.006967285182327032, -0.0067731719464063644, 0.006059112027287483, 0.029727084562182426, 0.01080795843154192, -0.00034814761602319777, 0.004242764785885811, 0.03097495622932911, -0.028174176812171936, -0.00015771714970469475, -0.036216020584106445, -0.0061735003255307674, -0.032000984996557236, 0.022766731679439545, 0.012111291289329529, -0.0018198133911937475, -0.019383611157536507, -0.005968987941741943, 0.00736937765032053, -0.02409779466688633, -0.010502922348678112, 0.0017496205400675535, -0.010787160135805607, 0.02014620043337345, 0.005067747086286545, -0.025928007438778877, 0.006932622287422419, 0.003989723976701498, 0.011050599627196789, -0.04414694011211395, -0.02818804234266281, 0.19056391716003418, -0.01140416320413351, 0.015196308493614197, 0.04470155015587807, -0.005202933214604855, 0.020368043333292007, 0.0047176494263112545, -0.023848220705986023, -0.012957070954144001, 0.005168269854038954, 0.008742036297917366, -0.0006326017901301384, -0.01091194711625576, 0.014766485430300236, 0.010891149751842022, 0.001430719974450767, 0.0028735718224197626, -0.06344735622406006, -0.004409147892147303, -0.0069291559047997, 0.008852958679199219, 0.017886165529489517, -0.026926305145025253, -0.023099496960639954, 0.01233313512057066, -0.0002998359268531203, -0.013130386359989643, 0.015820244327187538, 0.037768926471471786, 0.01737315207719803, -0.024236448109149933, 0.01688786782324314, -0.014010829851031303, 0.013241308741271496, -0.020381908863782883, -0.007494164630770683, 0.010891149751842022, 0.006669182796031237, 0.033137936145067215, 0.002551204990595579, 0.012922408059239388, -0.01670761965215206, -0.04206715151667595, -0.016069818288087845, 0.0100869657471776, 0.022558752447366714, -0.010204819962382317, -0.02350158989429474, -0.01475261989980936, 0.02063148468732834, -0.0016170341987162828, -0.0007287919288501143, 0.018842866644263268, 0.015584534965455532, -4.590154276229441e-05, -0.005514901131391525, 0.001072823302820325, 0.018371449783444405, 0.01869034953415394, 0.028035525232553482, -0.010766362771391869, 0.03643786162137985, 0.003124879440292716, 0.022946979850530624, 0.013352230191230774, 0.00625669164583087, -0.04129069671034813, -0.00478350929915905, 0.0032583323772996664, -0.003618828719481826, -0.010184021666646004, -0.016250066459178925, 0.012014234438538551, 0.01758112944662571, -0.025900276377797127, -0.0031803403981029987, 0.025636836886405945, 0.021934816613793373, -0.023307476192712784, 0.03901679813861847, -0.0421503446996212, -0.036909282207489014, -0.007050476968288422, 0.006180432625114918, -0.0048805661499500275, -0.03571686893701553, 0.02989346720278263, -0.03022623248398304, -0.023044036701321602, -0.01952226459980011, -0.01361567061394453, -0.01931428536772728, -0.016721485182642937, -0.007313916459679604, 0.031113609671592712, 0.009858189150691032, -0.01719290390610695, 0.02621917799115181, -0.013352230191230774, -0.008069572038948536, -0.02032644860446453, 0.05695842579007149, 0.03724204748868942, 0.016721485182642937, 0.01532109547406435, -0.005171736236661673, -0.008769767358899117, -0.006235893815755844, -0.004644856788218021, -0.022655809298157692, -0.015016059391200542, -0.0024506819900125265, 0.0011118192924186587, -0.008846025913953781, -0.008554856292903423, 0.0002270433760713786, -0.030309423804283142, -0.0005875397473573685, 0.027993928641080856, 0.008423135615885258, -0.026177581399679184, -0.026981765404343605, -0.015043790452182293, 0.006339882966130972, -0.009338242001831532, -0.015445882454514503, -0.04398055747151375, 0.011258578859269619, -0.011917177587747574, -0.011723063886165619, 0.034635379910469055, -0.03399758040904999, -0.011175387538969517, -0.014405989088118076, -0.009802727960050106, 0.009525422938168049, -0.019425207749009132, -0.024791058152914047, -0.020395774394273758, -0.0035841658245772123, -0.017234498634934425, 0.00014461016689892858, 0.0027418520767241716, -0.012541113421320915, 0.00977499783039093, -0.019868895411491394, -0.0005225464119575918, 0.009289713576436043, -0.007563490886241198, -0.0458662286400795, -0.007709076162427664, -0.016638293862342834, 0.002379622543230653, -0.022711271420121193, 0.008409271016716957, -0.029033822938799858, -0.011327904649078846, -0.013504748232662678, 0.0073901754803955555, -0.005955122411251068, -0.030725382268428802, 0.014419854618608952, 0.036132827401161194, -0.0015182442730292678, -0.007660547737032175, -0.025539780035614967, -0.1763659119606018, 0.016097549349069595, -0.006187365390360355, -0.009816593490540981, 0.014461450278759003, 0.02316882275044918, 0.019272690638899803, -6.441787263611332e-06, 0.008790564723312855, 0.020257122814655304, -0.0011958773247897625, -0.004870167002081871, -0.022378504276275635, 0.0017314223805442452, -0.012887745164334774, 0.010918879881501198, 0.014835811220109463, 0.0024697466287761927, 0.03721431642770767, 0.02906155213713646, 0.022378504276275635, -0.019355881959199905, 0.013373028486967087, 0.004284360446035862, -0.0015416418900713325, 0.010343472473323345, 0.005081612151116133, 0.0143782589584589, -0.01910630613565445, -0.034302614629268646, 0.021907085552811623, 0.0033692545257508755, 0.03993190452456474, -0.01089808251708746, 0.006048712879419327, 0.014419854618608952, -0.0007630217587575316, -0.035384103655815125, -0.017955491319298744, 0.0025113425217568874, 0.02006300911307335, 0.027064956724643707, -0.00688409386202693, -0.010620777495205402, 0.014211875386536121, 0.01988276094198227, 0.02818804234266281, -0.03710339590907097, -0.014544641599059105, -0.030558999627828598, 0.025359531864523888, -0.025817085057497025, 0.011230847798287868, 0.00415610708296299, 0.016721485182642937, -0.005074679385870695, -0.019979817792773247, 0.016305526718497276, -0.011112993583083153, 0.01417027972638607, -0.012035032734274864, -0.019425207749009132, -0.012617372907698154, 0.007799200247973204, -0.010308809578418732, -0.0016594964545220137, -0.03751935064792633, 0.010301876813173294, -0.028298964723944664, 0.008755901828408241, -0.011057532392442226, -0.00536584947258234, 0.0070088813081383705, -0.013553276658058167, 0.010392000898718834, 0.006689980626106262, -0.024167120456695557, 0.009982976131141186, -0.004821638576686382, -0.019716378301382065, 0.011015936732292175, 0.009130263701081276, -0.005282658152282238, -0.009858189150691032, 0.013996964320540428, -0.019924355670809746, -0.00920652225613594, 0.004228899721056223, 0.0034455133136361837, -0.01737315207719803, 0.030170772224664688, -0.032361481338739395, -0.02580321952700615, -0.0017721515614539385, -0.0042185005731880665, 0.023446127772331238, -0.005119741428643465, -0.01336609572172165, 0.015168577432632446, -0.011937975883483887, 0.013581006787717342, -0.026468751952052116, -0.02696789987385273, 5.865648199687712e-05, 0.008568720892071724, 0.012541113421320915, -0.029699353501200676, 0.01647191122174263, 0.046864528208971024, 0.012298472225666046, -0.0201184693723917, -0.007133668288588524, 0.007300051394850016, 0.017151307314634323, 0.010724767111241817, 0.027037227526307106, -0.03746389225125313, -0.02388981729745865, 0.03130772337317467, -0.004721115808933973, 0.04409147799015045, -0.004273961763828993, -0.008998543955385685, 0.012409393675625324, -0.007833863608539104, -0.011438827030360699, -0.11668989807367325, -0.01149428728967905, 0.009428366087377071, 0.03333204612135887, -0.009227320551872253, 0.021518860012292862, -0.023875951766967773, 0.01331756729632616, 0.006086842156946659, 0.03335977718234062, -0.012270741164684296, -0.020645348355174065, 0.004107578657567501, 0.002871838863939047, -0.013269038870930672, -0.00393079686909914, -0.019425207749009132, 0.004104112274944782, -0.022101199254393578, 0.03638240322470665, 0.0277720857411623, 0.0047488464042544365, -0.01659669727087021, -0.006842498201876879, -0.007965583354234695, 0.023654107004404068, -0.005622356664389372, 0.01862102374434471, 0.015404286794364452, -0.003003558609634638, -0.005764475557953119, -0.0077714696526527405, -0.0012712696334347129, -0.01408015564084053, 0.01013549417257309, -0.0016066351672634482, 0.017594994977116585, -0.01300559937953949, 0.027134284377098083, -0.025387262925505638, 0.009740334004163742, 0.015348825603723526, 0.01686013676226139, -0.00536584947258234, -0.01370579469949007, -0.015945030376315117, -0.031141338869929314, 0.006381478626281023, 0.014392123557627201, -0.030919495970010757, -0.009518490172922611, -0.028617864474654198, -0.03208417445421219, 0.013594872318208218, 0.009241185151040554, -0.0066969129256904125, 0.011022869497537613, 0.010683170519769192, 0.004800840746611357, 0.017913896590471268, -0.009989908896386623, 0.006339882966130972, -0.020437370985746384, 0.01608368381857872, 0.0024281509686261415, 0.018454641103744507, -0.022614214569330215, 0.0007244590087793767, 0.01686013676226139, -0.011806256137788296, 0.006034847814589739, 0.027577972039580345, -0.029671622440218925, 0.036216020584106445, 0.002599733415991068, 0.015584534965455532, -0.0007400574395433068, 0.014447584748268127, 0.013636467978358269, -0.002929033013060689, -0.01473875530064106, -0.04093020036816597, -0.019979817792773247, 0.004946426022797823, 0.014149482361972332, 0.022309178486466408, 0.008797497488558292, 0.017387015745043755, 0.022905383259058, -0.015570669434964657, 0.024971306324005127, 0.020964249968528748, 0.02810485102236271, 0.015279499813914299, -0.01889832876622677, -0.01167453546077013, 0.020340314134955406, -0.03380346670746803, 0.013844446279108524, 0.012561911717057228, -0.03824034333229065, 0.0013986565172672272, -0.04436878114938736, -0.0005463772686198354, -0.016097549349069595, -0.038905877619981766, -0.008409271016716957, 0.008644980378448963, 0.00737630994990468, -0.018607158213853836, 0.005060814321041107, 0.0023224283941090107, -0.031945522874593735, -0.0017088913591578603, -0.01649964042007923, -0.006735042668879032, -0.004027853719890118, -0.03790757805109024, 0.011334837414324284, -0.013220510445535183, 0.010724767111241817, 0.030337154865264893, 0.010121628642082214, 0.0016170341987162828, -0.004163039848208427, 0.0054975696839392185, -0.024236448109149933, -0.0017634858377277851, 0.004582463297992945, 0.023640241473913193, -0.018551697954535484, -0.02609439007937908, 0.019300419837236404, -0.004915229044854641, -0.012208348140120506, -0.0011690134415403008, -0.017387015745043755, 0.011418028734624386, 0.0012123422930017114, 0.019023114815354347, 0.00535891717299819, -0.0018995385617017746, 0.010156291536986828, -0.029948927462100983, -0.0005095477099530399, -0.013560209423303604, 0.0034784432500600815, -0.012998666614294052, -0.007612019311636686, 0.008083437569439411, 0.007813065312802792, 0.008076504804193974, 0.014135616831481457, 0.012312336824834347, -0.021893221884965897, -0.014627832919359207, -0.006897959392517805, -0.019120171666145325, 0.020603753626346588, -0.014045492745935917, -0.0014333196450024843, 0.014794215559959412, 0.03294382244348526, -0.0053034559823572636, 0.015764782205224037, -0.0037956107407808304, -0.01509925164282322, -0.028534673154354095, -0.02314109355211258, 0.015834109857678413, 0.008374608121812344, -0.014516911469399929, -0.008457799442112446, -0.006724643521010876, 0.0034489796962589025, 0.020728541538119316, 0.013490882702171803, 0.007494164630770683, -0.019272690638899803, 0.015806378796696663, 0.005868464708328247, 0.018482370302081108, 0.007903189398348331, 0.002993159694597125, -0.006079909857362509, 0.005740211345255375, 0.03571686893701553, 0.00938677042722702, 0.012936273589730263, -0.00902627408504486, 0.01683240756392479, -0.01701265573501587, -0.012894676998257637, 0.008437001146376133, -0.01835758425295353, 0.0041318428702652454, 0.0056847501546144485, 0.008943082764744759, -0.014794215559959412, 0.0071960617788136005, -0.012457922101020813, 0.005875397473573685, 0.008963881060481071, -0.012950138188898563, -0.013296769931912422, 0.010759430006146431, -0.028021659702062607, 0.0015321095706894994, 0.007050476968288422, -0.0008397138444706798, -0.0006022715824656188, 0.028382156044244766, -0.011910244822502136, 0.018315987661480904, 0.01327597163617611, 0.01532109547406435, -0.04375871270895004, 0.017359286546707153, -0.016763079911470413, -0.005102409981191158, -0.02914474345743656, 0.013830581679940224, -0.00281811086460948, 0.009573951363563538, 0.045783039182424545, -0.005691682919859886, 0.009650209918618202, -0.001056358334608376, 0.025761624798178673, -0.015196308493614197, -0.0007240257109515369, 0.032389212399721146, -0.025040632113814354, 0.026149850338697433, -0.021754568442702293, -0.006936088670045137, -0.013906840234994888, -0.024915844202041626, 0.014974463731050491, 0.02531793713569641, -0.0024853451177477837, 0.07564877718687057, 0.01471102423965931, -0.006943021435290575, 0.020700810477137566, -0.015612265095114708, 0.008111167699098587, 0.020991981029510498, -0.004821638576686382, -0.001031227526254952, -0.006606788840144873, 0.01491900347173214, 0.0028822377789765596, -0.001354461070150137, -0.04564438387751579, -0.0016092349542304873, 0.017525669187307358, -0.002778248395770788, 0.034968145191669464, -0.013061060570180416, 0.010697036050260067, 0.0009437032276764512, 0.004734980873763561, 0.019536130130290985, -0.0033692545257508755, -0.01991049200296402, 0.01882900297641754, 0.012672833167016506, -0.012409393675625324, -0.031890060752630234, -0.04558892548084259, 0.01532109547406435, -0.0022167060524225235, -0.03632694110274315, -0.027661163359880447, -0.010433596558868885, 0.017872299998998642, 0.013664198108017445, -0.022586483508348465, 0.01853783242404461, -0.02361251227557659, -0.003594564739614725, 0.0005875397473573685, -0.023862086236476898, -0.033470701426267624, -0.026926305145025253, 0.00745950173586607, -0.04098566249012947, 0.006461204029619694, -0.04941572993993759], "7fc185be-53f4-469d-8b85-7384546f2dae": [-0.014611979946494102, 0.001590713276527822, 0.010992193594574928, -0.047502219676971436, -0.0065687489695847034, 0.009039501659572124, -0.011171522550284863, -0.04468609020113945, -0.006518935319036245, -0.000748448830563575, 0.0084616644307971, 0.01576765440404415, -0.02153274416923523, 0.0033325275871902704, 0.004493183922022581, 0.004828595090657473, 0.015369146130979061, -0.004815311636775732, 0.0092321140691638, 0.00773106561973691, -0.021094385534524918, 0.003453740617260337, -0.004061466082930565, 0.003815719159319997, 0.0024890180211514235, 0.0014595375396311283, -0.016763925552368164, 0.013721977360546589, -0.0203505028039217, -0.027603358030319214, 0.008973084390163422, -0.00459281075745821, -0.016644373536109924, -0.008548008278012276, -0.026912610977888107, 0.0005159855354577303, -0.011443836614489555, -0.012998020276427269, -0.00025986076798290014, 0.006070613395422697, 0.040833842009305954, 0.006641808897256851, -0.01129771675914526, 0.010447565466165543, -0.0008983046864159405, 0.025066187605261803, 0.015780938789248466, -0.02445514127612114, -0.004483221098780632, 0.001163977081887424, 0.015581684187054634, 0.02211722359061241, -0.0380442813038826, -0.03403262794017792, 0.002336256206035614, -0.012506525963544846, 0.020709160715341568, 0.00029016402550041676, 0.018450945615768433, 0.007943603210151196, 0.011868912726640701, 0.0043669892475008965, -0.02829410694539547, -0.026660220697522163, -0.023697974160313606, 0.01046749111264944, 0.021041251718997955, 0.009351667016744614, -0.012161152437329292, 0.012015032581984997, 0.019154977053403854, 0.0031233106274157763, 0.007817409001290798, 0.02416290156543255, 0.033182479441165924, -0.011709509417414665, -0.008494873531162739, -0.029728736728429794, 0.02138662524521351, 0.011085179634392262, 0.001536748604848981, -0.0006106313085183501, -0.03198695182800293, 0.02209065668284893, 0.022369612008333206, -0.004891692195087671, 0.022821255028247833, 0.03732696548104286, 0.012765556573867798, -0.018065720796585083, -0.007325915154069662, -0.010739805176854134, -0.004091354552656412, 0.018955722451210022, 0.010713238269090652, 0.01221428718417883, -0.03443113714456558, 0.019805874675512314, -0.016724074259400368, -0.01993871107697487, -0.0075650205835700035, 0.006887556053698063, -0.024322304874658585, 0.004483221098780632, -0.02561081573367119, 0.00350687513127923, 0.013403170742094517, -0.011457120068371296, 0.030791426077485085, -0.0011149937054142356, -0.03482964634895325, 0.046120721846818924, 0.0054429625160992146, -0.01948706805706024, 0.013708693906664848, -0.016179446130990982, 0.001182241947390139, -0.018171990290284157, -0.028958287090063095, 0.004078070633113384, 0.0056953513994812965, 0.011311001144349575, 0.007810767274349928, 0.00210379296913743, 0.021957820281386375, -0.024880217388272285, 0.014983921311795712, -0.024269169196486473, 0.0006118766614235938, -0.02078886143863201, 0.02684619277715683, 0.02064274251461029, 0.00634956918656826, 0.013682126998901367, 0.00767793133854866, 0.025451412424445152, -0.009325100108981133, 0.012692497111856937, -0.0012611134443432093, -0.02477394789457321, 0.03304964303970337, -0.0009032860398292542, 0.008780471049249172, 0.018118854612112045, -0.00023038775543682277, -0.010859358124434948, 0.017056165263056755, -0.0019294455414637923, -0.021492894738912582, 0.0033574344124644995, 0.014492426998913288, 0.004081391729414463, -0.005692030303180218, -0.009610697627067566, -0.014067351818084717, 0.0010319710709154606, -0.01904870755970478, 0.001995863625779748, 0.019540201872587204, -0.00939151830971241, 0.039266373962163925, 0.022462598979473114, -0.0029705490451306105, -0.006987182889133692, 0.025358427315950394, 0.03482964634895325, 0.012898392975330353, -0.001969296485185623, -0.026686789467930794, 0.016856910660862923, -0.0010352919343858957, 0.010540550574660301, -0.010002564638853073, 0.0023345958907157183, -0.007292706519365311, -0.0030353066977113485, 0.018211839720606804, 0.021519461646676064, -0.03174784779548645, -0.005369902588427067, 0.004463295452296734, 0.015634818002581596, 0.019008858129382133, 0.03807085007429123, -0.029277093708515167, -0.001753437565639615, -0.0054728505201637745, 0.0013615709031000733, -0.00905278604477644, 0.014372874982655048, 0.018690049648284912, 0.027603358030319214, -0.02017781510949135, -0.009212189354002476, -0.6274118423461914, -0.010859358124434948, -0.024521559476852417, -0.006190165877342224, 0.006585353519767523, -0.0009929504012688994, -0.00029846630059182644, -0.012473316863179207, -0.01117816474288702, 0.02484036609530449, 0.0013607406290248036, -0.006807854399085045, 0.0030220230109989643, -0.010334654711186886, 0.009099278599023819, -0.025796785950660706, 0.01546213123947382, -0.02271498739719391, 0.012001749128103256, 0.0059145307168364525, -0.03254486247897148, 0.010832790285348892, -0.032305758446455, 0.01904870755970478, 0.004104638006538153, 0.028612913563847542, 0.004307213239371777, -0.013947798870503902, 0.007179795764386654, 0.027842463925480843, -0.019128410145640373, -0.0072329300455749035, -0.01290503516793251, 0.022927524521946907, 0.01757422648370266, 0.002497320296242833, -0.013761828653514385, 0.017800047993659973, 0.004841878544539213, 0.04309205710887909, -0.019659753888845444, -0.02670007199048996, 0.030605455860495567, -0.006060650572180748, 0.024202752858400345, -0.0016048271209001541, 5.334202796802856e-05, 0.012818691320717335, -0.016524821519851685, -0.025677233934402466, 0.0076447222381830215, 0.0040847123600542545, 0.004244116134941578, -0.0018264974933117628, 0.012446749955415726, 0.003985085524618626, -0.005164006724953651, 0.0008144518360495567, 0.01085271593183279, -0.030578888952732086, 0.0011830722214654088, -0.010268236510455608, -0.015687953680753708, 0.00663848826661706, -0.01656467095017433, 0.02230319380760193, -0.027603358030319214, -0.0011888837907463312, 0.004795385990291834, -0.01993871107697487, 0.01931438036262989, 0.026235146448016167, -0.009697041474282742, 0.012798765674233437, 0.03355441987514496, 0.012944885529577732, 0.030871128663420677, 0.006582032889127731, -0.0006459159194491804, 0.01624586433172226, -0.0027098581194877625, 0.004426765721291304, -0.0237776767462492, -0.014107202179729939, 0.034218598157167435, 0.010274878703057766, -0.017109299078583717, -0.0027712949085980654, 0.008468306623399258, 0.01875646784901619, 0.015807505697011948, 0.01547541469335556, 0.006153636146336794, -0.014625263400375843, -0.0046193781308829784, -0.01718900166451931, 0.0224493145942688, -0.004293929319828749, 0.004971393849700689, -0.023073645308613777, -0.009883011691272259, -0.017614077776670456, 0.01981915719807148, 0.0035633305087685585, 0.018039153888821602, 0.004815311636775732, 0.014704965054988861, -0.00183646020013839, 0.022582150995731354, -0.01609974540770054, -0.03921324014663696, -0.02126707322895527, -0.005931135267019272, 0.015037055127322674, -0.004214227665215731, -0.020509906113147736, 0.013529364950954914, 0.01051398366689682, 0.00044915234320797026, -0.04011652618646622, 0.011377418413758278, 0.028984853997826576, -0.005349976941943169, -0.006508972961455584, 0.011184806004166603, -0.003918667323887348, 3.891684900736436e-05, 0.0027862389106303453, -0.017003031447529793, 0.007996737957000732, 0.0252787247300148, -0.00023101041733752936, 0.015966909006237984, -0.014651830308139324, -0.019061991944909096, -0.027417387813329697, 0.029675602912902832, -0.007591587491333485, 0.02271498739719391, -0.020390354096889496, -0.017109299078583717, 0.004038219805806875, 0.02404334768652916, -0.0369284562766552, -0.0058049410581588745, -0.03259800001978874, -0.030871128663420677, 0.0017849861178547144, 0.0009630622807890177, -0.004091354552656412, 0.007266139145940542, -0.001352438353933394, -0.00281280605122447, 0.029463063925504684, 0.007843976840376854, -0.016989747062325478, -0.01576765440404415, -0.012074808590114117, -0.008514799177646637, -0.0247208122164011, -0.024468423798680305, 0.020483339205384254, -0.007618154864758253, 0.002407655818387866, -0.026274995878338814, -0.026766490191221237, -0.010009205900132656, 0.0182516910135746, -0.02648753486573696, -0.04256071150302887, -0.005024528596550226, 0.020430205389857292, -0.013124214485287666, -0.0069805411621928215, -0.01728198677301407, 0.03336844965815544, -0.011304358951747417, 0.017228852957487106, -0.01716243475675583, -0.010945701040327549, -0.0061768824234604836, 0.006482405588030815, 0.026713356375694275, -0.020602891221642494, 0.010640177875757217, 0.026421116665005684, 0.02315334603190422, 0.015037055127322674, -0.012088092043995857, 0.010022489354014397, 0.031375907361507416, 0.027629924938082695, -0.017467956990003586, -0.0014611979713663459, -0.0023877304047346115, 0.02503962069749832, 0.0029041310772299767, 0.008959800004959106, -0.00011737321619875729, 0.0027679738122969866, 0.034218598157167435, -0.005555873271077871, 0.014279888942837715, -0.045908182859420776, 0.00045247323578223586, -0.013708693906664848, -0.0010577080538496375, -0.009165696799755096, -0.0002961831633001566, -0.0018264974933117628, 0.017507808282971382, -0.02906455658376217, -0.018025869503617287, 0.005851433612406254, 0.01834467612206936, 0.008607784286141396, -0.00034537407918833196, 0.015010488219559193, -0.0003239957441110164, 0.0030817994847893715, 0.0020124681759625673, 0.011045328341424465, 0.04776788875460625, 0.015262876637279987, -0.016139596700668335, -0.001236206735484302, 0.022635284811258316, -0.025119321420788765, -0.01928781345486641, -0.03129620477557182, 0.01624586433172226, -0.01016196794807911, 0.026421116665005684, 0.004904976114630699, 0.02832067385315895, 0.00229308451525867, 0.05951060727238655, -0.022661851719021797, 0.029967842623591423, 0.023020509630441666, -0.02005826309323311, 0.026447683572769165, 0.007691214792430401, -0.04226847365498543, 0.012785482220351696, 0.01636541821062565, 0.014704965054988861, 0.021745283156633377, -0.002849336015060544, 0.007936961948871613, 0.023910513147711754, 0.004091354552656412, -0.026354698464274406, 0.013443021103739738, -0.025464694947004318, -0.020363787189126015, 0.01709601655602455, 0.029489632695913315, 0.01051398366689682, 0.009883011691272259, 0.006273188628256321, -0.007173153571784496, 0.0203505028039217, 0.010394430719316006, 0.014279888942837715, 0.0012934922706335783, -0.044314149767160416, -0.01588720642030239, -0.01987229287624359, -0.01128443330526352, -0.020589608699083328, -0.03862876072525978, -0.026367980986833572, 0.003398945787921548, 0.03403262794017792, -0.01943393237888813, 0.002548794262111187, 0.008428455330431461, 0.023990213871002197, -0.004210907034575939, 0.002925716806203127, -0.03443113714456558, 0.020403636619448662, 0.019394082948565483, -0.013064438477158546, 0.0013565894914790988, -0.00105604762211442, 0.004692438058555126, 0.004426765721291304, 0.012154510244727135, 0.0036828829906880856, 0.007890469394624233, 0.004137847106903791, -0.002336256206035614, 0.003988406155258417, -0.0019061991479247808, 0.02037706971168518, -0.00027791818138211966, 0.02554439753293991, -0.004360347520560026, -0.0013897985918447375, -0.0020556398667395115, -0.02693917788565159, 0.023140061646699905, 0.0551004484295845, -0.0028161269146949053, -0.015010488219559193, -0.005253670737147331, 0.007053601089864969, 0.0008426795247942209, 0.01336331944912672, -0.02351200394332409, -0.02197110466659069, -0.01774691417813301, 0.03121650218963623, -0.014439293183386326, 0.007824051193892956, 0.007824051193892956, 0.019380798563361168, 0.0007310141227208078, -0.004167735110968351, -0.0015774295898154378, -0.016020042821764946, 0.020682593807578087, 0.035786066204309464, 0.018716618418693542, 0.0017218890134245157, 0.0047389306128025055, -0.006934048607945442, -0.011470404453575611, -0.00804987270385027, -0.021399907767772675, -0.010414356365799904, 0.006880914326757193, 0.002573701087385416, 0.014093918725848198, 0.03549382835626602, -0.0069805411621928215, 0.020815430209040642, 0.01077965646982193, -0.018318109214305878, -0.03039291873574257, 0.012652645818889141, -0.016206014901399612, 0.03392636030912399, -0.0049913194961845875, 0.029675602912902832, 0.02679305709898472, -0.009252039715647697, -0.011125029996037483, 0.0069805411621928215, -0.013084364123642445, 0.010606968775391579, -0.02047005482017994, -0.006000874564051628, 0.0038721745368093252, 0.037672340869903564, 0.03270426765084267, -0.01603332720696926, 0.02129364013671875, 0.016484970226883888, 0.008322186768054962, 0.04420788213610649, -0.02093498222529888, 0.00331924413330853, 0.02781589701771736, -0.0072329300455749035, 0.006701585371047258, -0.006492368411272764, 0.02262200228869915, -0.004456653725355864, 0.007804125547409058, -0.010965626686811447, -0.0014927465235814452, 0.012792124412953854, -0.0009605716331861913, -0.03626427799463272, -0.011483687907457352, 0.004752214532345533, 0.017082732170820236, -0.01955348625779152, -0.006083896849304438, -0.008362037129700184, -0.034271735697984695, 0.008953158743679523, -0.012533093802630901, 0.0159801933914423, -0.008919949643313885, 0.006332965102046728, -0.01834467612206936, -0.0029406610410660505, 0.02855977788567543, -0.01914169266819954, -0.02383081056177616, 0.010939059779047966, -0.010029131546616554, -0.012652645818889141, -0.019619904458522797, 0.03812398388981819, 0.02725798450410366, -0.010122116655111313, 0.017507808282971382, 0.0071000936441123486, 0.002939000492915511, -0.00940480176359415, -0.04938849061727524, 0.01251981034874916, -0.014319740235805511, 0.011138313449919224, 0.006173561327159405, 0.013828245922923088, -0.0033325275871902704, 0.008189350366592407, 0.027975300326943398, 0.0020672630053013563, 0.0026351376436650753, -0.017521092668175697, -0.022409463301301003, -0.001977598527446389, 0.04734281450510025, -0.010786297731101513, 0.00487176701426506, 0.003206333378329873, -0.01091249193996191, 0.018318109214305878, -0.01303787063807249, 0.005555873271077871, 0.016617806628346443, -0.01234712265431881, -0.03682218864560127, 0.0097900265827775, 0.01827825792133808, 0.010726521722972393, -0.0070602428168058395, 0.008959800004959106, -0.024813799187541008, 0.02713843248784542, 0.007452109828591347, 0.005672105122357607, 0.0036961666774004698, 0.0030137207359075546, 0.019380798563361168, -0.011364134959876537, -0.013210558332502842, 0.029197392985224724, -0.03376695513725281, 0.0033358486834913492, 0.0018049116479232907, 0.01362899225205183, 0.016113027930259705, -0.006067292299121618, -0.019367514178156853, 0.005798299331218004, 0.01125122420489788, 0.04287951812148094, 0.01402750052511692, 0.0072329300455749035, -0.035334423184394836, -0.02938336320221424, 0.00884688924998045, -0.03937264531850815, -0.00495478929951787, -0.007033675909042358, 0.007066885009407997, 0.007266139145940542, -0.008435097523033619, 0.002606909954920411, 0.011490329168736935, -0.036636218428611755, -0.028745749965310097, -0.005164006724953651, 0.00028539024060592055, -0.01999184489250183, 0.0029556050430983305, -0.0001325248449575156, -0.0029838327318429947, -0.009550921618938446, -0.00946457777172327, -0.00804987270385027, -0.013801679015159607, 0.004343742970377207, 0.021771850064396858, 0.05456910282373428, 0.02551783062517643, 0.010640177875757217, -0.0071930792182683945, 0.04500489681959152, -0.0071000936441123486, -0.0031631614547222853, 0.051168497651815414, -0.023060360923409462, 0.013801679015159607, -0.006160277873277664, -0.0013549290597438812, 0.005751806776970625, -0.009995922446250916, 0.009623981080949306, 0.0012893411330878735, -0.0008767187828198075, 0.0430123545229435, -0.0031764451414346695, 0.037167564034461975, -0.008494873531162739, -0.03172127902507782, -0.018264975398778915, 0.016644373536109924, -0.001583241275511682, 0.011231299489736557, -0.02274155430495739, -0.0020224307663738728, 0.021373340860009193, -0.011317642405629158, -0.003377359826117754, -0.007319273427128792, 0.012911676429212093, -0.00951107032597065, 0.015528549440205097, 0.01441272534430027, 0.006060650572180748, -0.03591890260577202, -0.014917503111064434, -0.024853648617863655, -0.0029522841796278954, -0.0029954558704048395, -0.003752622054889798, 0.018836170434951782, -0.018264975398778915, 0.0022100619971752167, 0.0018962364410981536, -0.004934864118695259, -0.02078886143863201, -0.013044512830674648, 0.02563738264143467, 0.0016762265004217625, -0.024176184087991714, -0.03629084303975105, -0.03443113714456558, -0.007080168463289738, -0.004114600829780102, 0.02061617560684681, 0.016963180154561996, 0.019061991944909096, -0.032624565064907074, 0.000792035716585815, -0.004117921460419893, -0.009165696799755096, 0.039027269929647446, 0.014173620380461216, 0.031588442623615265, 0.007053601089864969, 0.01401421707123518, -0.032146356999874115, -0.016073178499937057, 0.0029888141434639692, 0.008043230511248112, 0.023697974160313606, 0.0028410337399691343, -0.017932884395122528, -0.0040050107054412365, -0.01156338956207037, 0.005240387283265591, -0.02773619443178177, -0.049627598375082016, 0.01834467612206936, 0.014585413038730621, -0.0058746798895299435, -0.0105604762211442, 0.010354580357670784, -0.03703472763299942, 0.014877651818096638, -0.0012926621129736304, -0.005210499279201031, -0.024680962786078453, 0.01981915719807148, -0.005539268720895052, 0.006014158017933369, -0.015289444476366043, 0.034218598157167435, 0.015023771673440933, 0.013183990493416786, -0.017521092668175697, 0.008069798350334167, -0.036901891231536865, 0.013775112107396126, -0.012194361537694931, 0.015023771673440933, -0.02643439918756485, 0.0091258455067873, 0.023326033726334572, -0.006030762568116188, 0.019367514178156853, -0.021625729277729988, -0.008574575185775757, 0.029011420905590057, -0.012061525136232376, -0.0075251697562634945, 0.013828245922923088, 0.019221395254135132, -0.01361570879817009, 0.021107669919729233, -0.011151596903800964, 0.0026301564648747444, 0.017932884395122528, -0.032943371683359146, 0.013449663296341896, 0.026235146448016167, -0.006153636146336794, -0.0021884760353714228, -0.007611513137817383, 0.013868097215890884, -0.018570497632026672, -0.007863901555538177, 0.027018878608942032, -0.01781333237886429, 0.008694128133356571, -0.05207178369164467, -0.002296405378729105, 0.015661384910345078, 0.02563738264143467, -0.01017525140196085, 0.0075650205835700035, 0.014731531962752342, -0.023844094946980476, 0.02093498222529888, -0.016870195046067238, 0.0007110886508598924, -0.014505710452795029, 0.004214227665215731, 0.0007081828662194312, 0.0018264974933117628, -0.0015865621389821172, -0.001294322544708848, -0.012546377256512642, -0.013721977360546589, -0.008919949643313885, -0.007438825909048319, 0.013443021103739738, -0.022050805389881134, 0.0125530194491148, 0.021625729277729988, 0.018716618418693542, -0.009092636406421661, -0.014107202179729939, 0.014545561745762825, -0.032412029802799225, 0.016484970226883888, 0.02047005482017994, -0.011815777979791164, 0.008455023169517517, -0.023140061646699905, 0.004184339661151171, -0.0028277502860873938, -0.01872990094125271, -0.02061617560684681, 0.009677115827798843, -0.007890469394624233, 0.01641855202615261, -0.009205547161400318, -0.03326217830181122, 0.011025402694940567, -0.013761828653514385, 0.03490934893488884, 0.003246184205636382, 0.0038123982958495617, 0.0020672630053013563, 0.019154977053403854, 0.022754836827516556, 0.014186903834342957, -0.016484970226883888, -0.01257958635687828, 0.015382429584860802, -0.002935679629445076, 0.01854393072426319, -0.015780938789248466, -0.004347064066678286, 0.03299650549888611, 0.016285715624690056, -0.014213471673429012, -0.042188771069049835, 0.00193110597319901, -0.028081567957997322, -0.013144140131771564, 0.005130797624588013, 0.02991470694541931, 0.0216788649559021, 0.030286649242043495, -0.0059377774596214294, 0.024375438690185547, -0.01595362462103367, -0.003217956516891718, -0.02640783227980137, 0.01046749111264944, 0.01441272534430027, 0.04210906848311424, 0.01010219193994999, 0.0035766141954809427, -0.007996737957000732, -0.020589608699083328, 0.0002198023721575737, -0.0025570965372025967, 0.013077721931040287, 0.009006292559206486, -0.01336331944912672, -0.008421814069151878, -0.04234817251563072, -0.017640644684433937, -0.014572128653526306, 0.020151248201727867, -0.0010244990698993206, -0.01230063010007143, -0.009238756261765957, 0.00033458112739026546, -0.0007252024952322245, -0.03703472763299942, 0.009949429892003536, -0.007239571772515774, -0.02276812121272087, 0.007797483820468187, 0.0016695847734808922, -0.021492894738912582, 0.013868097215890884, -0.012041599489748478, 0.007412259001284838, 0.0067513990215957165, -0.00018181951600126922, 0.04633326083421707, -0.014904219657182693, 0.01861034892499447, -0.016405267640948296, 0.012991378083825111, -0.012745631858706474, 0.01745467446744442, 0.018304824829101562, 0.014346307143568993, -0.01999184489250183, -0.009564205072820187, 0.014997204765677452, -0.019447216764092445, 0.02713843248784542, -0.022754836827516556, -0.016378700733184814, -0.034245166927576065, 0.0016587917925789952, 0.003669599536806345, -0.029702169820666313, -0.007624796591699123, 0.0017152471700683236, -0.019805874675512314, -0.02191796898841858, -0.016524821519851685, -0.010334654711186886, -0.025584248825907707, 0.024415289983153343, -0.020297368988394737, -0.0029987767338752747, -0.009969355538487434, 0.009384876117110252, 0.011882196180522442, -0.04091354459524155, -0.011158239096403122, 0.17417480051517487, -0.03395292907953262, 0.0022615359630435705, 0.03044605255126953, 0.006595316343009472, 0.0031913891434669495, 0.006103822495788336, -0.02247588150203228, -0.020656026899814606, 0.00347698712721467, -0.015873923897743225, 0.004353705793619156, -0.0330762080848217, 0.011384060606360435, 0.0027164998464286327, -0.007784200366586447, 0.010002564638853073, -0.027948731556534767, 0.002714839531108737, -0.0025836636777967215, -0.008029947057366371, 0.012858542613685131, -0.029037989675998688, -0.023286182433366776, 0.01730855368077755, -0.005745164584368467, -0.006545502692461014, 0.02619529515504837, 0.03044605255126953, -0.008275694213807583, -0.02182498387992382, 0.010294804349541664, -0.007086810190230608, -0.0037260549142956734, -0.03018037974834442, -0.015369146130979061, 0.01709601655602455, 0.023073645308613777, 0.02416290156543255, 0.008156141266226768, -0.003709450364112854, -0.006239979527890682, -0.03833652287721634, -0.0058049410581588745, 0.03068515844643116, -0.007219646591693163, -0.0018414414953440428, -0.033182479441165924, -0.020988116040825844, 0.03177441284060478, -0.00838860496878624, -0.0029157542157918215, 0.01509018987417221, 0.016139596700668335, -0.018716618418693542, -0.008348753675818443, 0.00813621561974287, 0.015993475914001465, 0.01955348625779152, 0.0315353088080883, -0.010221743956208229, 0.04317175969481468, -0.0046160570345819, 0.019978562369942665, 0.001080954447388649, 0.01984572596848011, -0.01822512410581112, 0.003662957577034831, 0.0010685010347515345, 0.002914093667641282, -0.01663108915090561, 0.019805874675512314, -0.0010867660166695714, 0.013144140131771564, -0.02909112349152565, 0.004735609982162714, 0.032119788229465485, 0.02534514293074608, 0.011868912726640701, 0.033448148518800735, -0.029994409531354904, -0.022250059992074966, -0.014479143545031548, 0.013868097215890884, -0.03966488316655159, -0.019380798563361168, 0.018437661230564117, -0.018570497632026672, -0.005386507138609886, -0.016577955335378647, -0.007452109828591347, -0.03063202276825905, -0.002176852896809578, 0.0071930792182683945, 0.023618273437023163, 0.01046749111264944, 0.001984240487217903, 0.029170826077461243, -0.01218107808381319, 0.014877651818096638, -0.011038686148822308, 0.06243300437927246, 0.017640644684433937, 0.01044092420488596, 0.010122116655111313, 0.01018853485584259, -0.004622699227184057, -0.015422280877828598, -0.015634818002581596, -0.020005129277706146, -0.006734794471412897, -0.004765497986227274, -0.004330459516495466, -0.005824866704642773, 0.012074808590114117, -0.007757632993161678, -0.024548126384615898, -0.001793288392946124, 0.024295737966895103, 5.23107337357942e-06, -0.005426357965916395, -0.027922164648771286, 0.00847494788467884, 0.0050311703234910965, -0.001045254641212523, -0.014054067432880402, -0.051992081105709076, 0.0097900265827775, -0.01150361355394125, -0.006744756828993559, 0.008322186768054962, -0.04287951812148094, 0.0074853189289569855, -0.013682126998901367, -0.018211839720606804, -0.007777558173984289, -0.013542648404836655, -0.023312749341130257, -0.005210499279201031, 0.012433466501533985, -0.006406024564057589, -0.0031150083523243666, -0.003359094960615039, -0.007691214792430401, 0.011609882116317749, -0.032943371683359146, -0.006266546901315451, -0.0028792242519557476, 0.005818224512040615, -0.04683803766965866, -0.015661384910345078, -0.025265442207455635, 0.012094734236598015, -0.023671407252550125, 0.004552959930151701, -0.04620042443275452, -0.004041540902107954, -0.017707062885165215, 0.0018049116479232907, 0.011184806004166603, -0.003453740617260337, 0.0061270687729120255, 0.022436030209064484, -0.0044699376448988914, 0.008229201659560204, -0.023206479847431183, -0.16577954590320587, 0.014864368364214897, 0.01742810755968094, -0.03304964303970337, 0.006987182889133692, 0.004878408741205931, 0.02800186723470688, -0.009351667016744614, 0.005343335215002298, 0.028506644070148468, -0.013124214485287666, -0.025717085227370262, -0.025889771059155464, -0.003166482551023364, -0.004440049175173044, -0.016910046339035034, 0.0174812413752079, 0.01709601655602455, 0.05215148255228996, 0.01934094727039337, 0.014040783978998661, -0.0010867660166695714, 0.024787230417132378, 0.018862737342715263, 0.0025189060252159834, -0.014439293183386326, 0.015541832894086838, 0.005247029010206461, 0.008594500832259655, -0.03355441987514496, 0.013655559159815311, 0.022914240136742592, 0.026766490191221237, -0.017374971881508827, 0.0027613320853561163, 0.003589897882193327, -0.008913307450711727, -0.014054067432880402, -0.019154977053403854, -0.0027314438484609127, 0.017242135480046272, 0.02887858636677265, -0.03562666475772858, -0.012539735063910484, 0.007890469394624233, 0.020284084603190422, 0.032943371683359146, -0.0388147309422493, 0.0016206013970077038, -0.016697507351636887, 0.02274155430495739, -0.022635284811258316, 0.017388256266713142, -0.001283529563806951, 0.02755022421479225, -0.025464694947004318, -0.00813621561974287, 0.007571662310510874, 0.0004744742182083428, 0.00973025057464838, 0.014266605488955975, -0.02235632948577404, -0.0015483717434108257, -0.016936613246798515, -0.004868445917963982, 0.010347938165068626, -0.01677720993757248, 0.00841517187654972, -0.04683803766965866, 0.007186437491327524, -0.007910394109785557, 0.010168609209358692, 0.017507808282971382, -0.00456956448033452, 0.02575693465769291, 0.0012918318388983607, -0.017640644684433937, 0.008840247988700867, -0.0047389306128025055, -0.017919600009918213, 0.014572128653526306, 0.025836637243628502, -0.00951107032597065, -0.0038522491231560707, 0.030605455860495567, 0.004081391729414463, 0.0028825451154261827, 0.010082266293466091, 0.0076845730654895306, -0.018796319141983986, 0.02853321097791195, -0.021107669919729233, -0.0009647227707318962, -0.008674202486872673, 0.015727803111076355, 0.01760079339146614, 0.008574575185775757, -0.014120485633611679, 0.019061991944909096, -0.012406899593770504, 0.014080635271966457, -0.04630669206380844, -0.003312602173537016, 0.01302458718419075, 0.016870195046067238, 0.01057375967502594, -0.019128410145640373, 0.017228852957487106, 0.05076998844742775, 0.03286366909742355, -0.015873923897743225, -0.02129364013671875, 0.011018761433660984, 0.025969473645091057, -0.002462450647726655, 0.02283453941345215, -0.034218598157167435, -0.02283453941345215, 0.024800514802336693, 0.006701585371047258, 0.020217666402459145, -0.000914909178391099, -0.0071000936441123486, -0.01234712265431881, -0.010460848920047283, 0.004602773580700159, -0.11923375725746155, -0.02129364013671875, 0.013788395561277866, 0.00663848826661706, -0.0023545213043689728, 0.012858542613685131, -0.021878119558095932, 0.013775112107396126, -0.013177349232137203, 0.026832908391952515, -0.009922862984240055, -0.0002517660614103079, 0.00495478929951787, 0.0007945264223963022, -0.02723141759634018, 0.021373340860009193, -0.012114659883081913, 0.012194361537694931, -0.010215102694928646, 0.037140995264053345, 0.00663848826661706, 0.0020224307663738728, -0.018849454820156097, -0.0064990101382136345, -0.020031696185469627, 0.001969296485185623, -0.015927057713270187, 0.013602424412965775, 0.010746447369456291, -0.0072329300455749035, -0.007259497418999672, -0.00800338014960289, -0.0031631614547222853, -0.016870195046067238, 0.00884688924998045, -0.0032677699346095324, 0.011742718517780304, -0.005824866704642773, 0.023578422144055367, -0.0060573299415409565, -0.0030851203482598066, 0.007226288318634033, 0.002665025880560279, 0.003350792685523629, -0.0004977205535396934, -0.017268704250454903, -0.022143790498375893, 0.0014595375396311283, -0.0004732288944069296, -0.025876488536596298, -0.029197392985224724, -0.010905850678682327, -0.02085527963936329, -0.005197215359658003, -0.0004873427387792617, 0.012805407866835594, -0.0002606910129543394, -0.00767128961160779, -0.01904870755970478, 0.009504429064691067, 0.013077721931040287, 0.006203449796885252, 0.00425407849252224, 0.026646938174962997, 0.0072329300455749035, 0.018862737342715263, -0.021067818626761436, 0.0028294106014072895, 0.030525753274559975, -0.01058704312890768, -0.014505710452795029, 0.027417387813329697, -0.003915346227586269, 0.043782804161310196, -0.004463295452296734, 0.0036563158500939608, -0.004250757861882448, 0.02191796898841858, 0.02442857436835766, -0.008853531442582607, -0.014877651818096638, -0.026035891845822334, 0.011204731650650501, -0.0159801933914423, -0.0037957937456667423, 0.02986157312989235, 0.010002564638853073, 0.006635167170315981, 0.022422747686505318, -0.010606968775391579, -0.0020290727261453867, 0.015927057713270187, 0.03445770591497421, -0.0030784783884882927, -0.016737358644604683, -0.009869728237390518, -0.007259497418999672, -0.029728736728429794, -0.0006774645298719406, -0.005466208793222904, -0.036875322461128235, -0.001211299910210073, -0.038256820291280746, 0.012015032581984997, -0.01439944189041853, -0.02191796898841858, -0.0019543522503226995, 0.005854754708707333, 0.01151689700782299, -0.010653461329638958, -0.0069406903348863125, 0.003239542245864868, -0.03745980188250542, 0.02336588315665722, -0.023870661854743958, 0.007511885836720467, 0.006233337800949812, -0.02938336320221424, 0.0017999302363023162, -0.006293113809078932, 0.0022084014490246773, 0.04309205710887909, -0.00015888451889622957, -0.011311001144349575, -0.00634956918656826, -0.004682475235313177, -0.005638896021991968, 0.00492490129545331, 0.00209715124219656, 0.02911769039928913, -0.03676905483007431, -0.024614544585347176, 0.018185272812843323, -0.007505244109779596, 0.010626894421875477, 0.001738493563607335, 0.0056953513994812965, -0.013376602903008461, 0.00980331003665924, 0.01728198677301407, 0.020151248201727867, -0.02155931293964386, -0.009617339819669724, -0.002186815720051527, -0.0030851203482598066, 0.004290608689188957, 0.022050805389881134, -0.03092426247894764, -0.00980331003665924, 0.012719064019620419, 0.010009205900132656, 0.03145560622215271, 0.001359910354949534, 0.00106351962313056, -0.01119144819676876, -0.005506059620529413, 0.002397692995145917, -0.0513278990983963, -0.0020440167281776667, -0.029781872406601906, -0.0051806108094751835, -0.007877185940742493, 0.027390820905566216, -0.02489349991083145, -0.001019517658278346, -0.022900957614183426, -0.01018853485584259, -0.03302307426929474, -0.014333023689687252, 0.006927406881004572, 0.002281461376696825, -0.029755303636193275, -0.022223493084311485, -0.0010112153831869364, 0.021931253373622894, 0.010879282839596272, 0.025384994223713875, 0.013091005384922028, -0.03334188088774681, -0.0013300222344696522, 0.009756817482411861, 0.02549126371741295, 0.025531113147735596, -0.004958110395818949, -0.010606968775391579, 0.0027015558443963528, 0.03854905813932419, -0.004652587231248617, -0.008029947057366371, -0.014970637857913971, 0.0025504545774310827, -0.019526919350028038, 0.00226319651119411, 0.007159870117902756, -0.01709601655602455, 0.0016986426198855042, -0.005994232837110758, 0.0032162959687411785, -0.020948264747858047, 0.027603358030319214, -0.003374038962647319, 0.016179446130990982, -0.007080168463289738, 0.0060872179456055164, -0.03645024821162224, 0.012725706212222576, -0.04364996775984764, 0.012220928445458412, 0.003018702147528529, -0.011410627514123917, -0.0069008395075798035, 0.025796785950660706, -0.021639013662934303, 0.015581684187054634, 0.033740390092134476, 0.005931135267019272, -0.019420649856328964, -0.007359124254435301, 7.30598985683173e-05, 0.009630623273551464, -0.03456397354602814, 0.007146586664021015, -0.012592869810760021, 0.019805874675512314, 0.04550967365503311, 0.009059427306056023, 0.016458403319120407, -0.027842463925480843, 0.02986157312989235, -0.0027214812580496073, -0.017733629792928696, 0.016232581809163094, -0.008926590904593468, 0.03018037974834442, -0.049840133637189865, -0.017707062885165215, -0.019500350579619408, -0.02462782710790634, 0.00940480176359415, 0.016059894114732742, 0.0005944418953731656, 0.07449453324079514, 0.007139944471418858, 0.00037463955231942236, 0.009331741370260715, -0.008023304864764214, 0.024083198979496956, 0.021771850064396858, -0.01481123361736536, -0.02959590032696724, -0.018623633310198784, 0.023458870127797127, -0.009809952229261398, -0.004938185214996338, -0.02720484882593155, -0.005247029010206461, -0.01697646453976631, 0.003362415824085474, 0.021612446755170822, -0.030472619459033012, -0.0174812413752079, 0.01934094727039337, 0.016179446130990982, 0.013330110348761082, -0.019925426691770554, -0.01996527798473835, 0.02534514293074608, 0.007697856519371271, -0.01362899225205183, -0.042427875101566315, -0.030233515426516533, 0.00739897508174181, -0.022940808907151222, -0.046173855662345886, -0.044287580996751785, -0.0002378597855567932, -0.002382748993113637, 0.005602365825325251, -0.00943801086395979, 0.024123050272464752, -0.025743652135133743, -0.020098114386200905, -0.0003337509115226567, -0.027443954721093178, -0.04840550571680069, -0.008069798350334167, 0.013263692148029804, -0.02023095078766346, 0.018185272812843323, -0.04856490716338158], "f395dbda-eaef-4363-890a-e136eb12c483": [0.011084189638495445, 0.017367059364914894, -0.004773883614689112, -0.018190141767263412, -0.02391057275235653, -0.005713570397347212, -0.01119393389672041, -0.0033317729830741882, -0.016008971258997917, -0.005068821832537651, -0.007243133615702391, 0.01986374519765377, -0.019273869693279266, -0.0012457709526643157, 0.021016061305999756, 0.019918616861104965, 0.023471593856811523, 0.0019599671941250563, 0.017037825658917427, 0.004873339552432299, -0.019561948254704475, -0.00276761781424284, -0.032648973166942596, 0.0013263645814731717, 0.0009568344103172421, 0.013203629292547703, 0.0041737183928489685, -0.013937545008957386, 0.008772697299718857, -0.017504239454865456, 0.015542557463049889, 0.001618730602785945, -0.011097907088696957, 0.004386348649859428, -0.036517467349767685, -0.004009102005511522, 0.005861039739102125, -0.012737215496599674, 0.016159869730472565, -0.0031500086188316345, 0.03970005363225937, 0.01574832946062088, -0.026859953999519348, 0.005600396543741226, -0.01834104023873806, 0.01930130459368229, 0.046092670410871506, -0.015377940610051155, -0.03218255937099457, 0.005926200188696384, 0.030426649376749992, 0.0231972336769104, -0.01122822891920805, -0.004815037827938795, -0.0017850620206445456, -0.0032751858234405518, 0.012476571835577488, 0.016557693481445312, 0.011269383132457733, -0.027408676221966743, 0.015158452093601227, 0.006008508615195751, -0.030179724097251892, -0.0037450294476002455, -0.013848377391695976, -0.0022806269116699696, -0.011379127390682697, 0.017325904220342636, -0.019561948254704475, 0.0283415038138628, 0.02471993677318096, 0.022182097658514977, 0.0026595881208777428, 0.009232251904904842, 0.023156078532338142, -0.008553207851946354, -0.002304633380845189, -0.006883034482598305, 0.0015527125215157866, -0.004921352490782738, 0.008244551718235016, -0.008107371628284454, -0.02543327584862709, 0.021235551685094833, 0.014705756679177284, -0.0026167191099375486, 0.010432581417262554, 0.0182038601487875, 0.015473967418074608, -0.03344462066888809, -0.014184470288455486, -0.0029785330407321453, -0.006042803637683392, 0.02643469348549843, 0.006097675766795874, -0.009767255745828152, -0.01592666283249855, 0.009479177184402943, -0.03377385437488556, 0.0019496787572279572, -0.015391658991575241, 0.026667900383472443, -0.006361748557537794, -0.0129841398447752, -0.00849833618849516, -0.010679506696760654, 0.007346019148826599, -0.014596011489629745, 0.016132434830069542, 0.005610684864223003, -0.014788064174354076, 0.03827337548136711, 0.003995384089648724, -0.03355436399579048, -0.001917098299600184, -0.04277290031313896, -0.000226990960072726, -0.041840072721242905, -0.006231427192687988, -0.0006661831284873188, 0.009534048847854137, -0.008086794055998325, 0.013368246145546436, -0.012181634083390236, 0.028012270107865334, 0.0099181542173028, 0.005432350095361471, -0.04458368197083473, -0.013375104404985905, -0.017353340983390808, 0.036051053553819656, 0.013820941559970379, 0.003988524898886681, 0.002568705938756466, 0.008217115886509418, 0.006883034482598305, 0.0023646499030292034, 0.003002539509907365, 0.004499522503465414, 0.005977643188089132, 0.02142760343849659, 0.014527421444654465, -0.0018365047872066498, 0.01769629307091236, 0.0068727461621165276, -0.004403496161103249, 0.011324255727231503, -0.010267965495586395, -0.008038780651986599, 0.000332234165398404, 0.010144502855837345, -0.014815500937402248, 0.013148756697773933, 0.0005418632063083351, -0.008491476997733116, -0.014129597693681717, -0.006413191091269255, -0.015542557463049889, 0.027724191546440125, -0.027093160897493362, 0.010761815123260021, 0.013004717417061329, 0.008903018198907375, -0.005415202584117651, -0.01250400859862566, 0.031304605305194855, 0.03391103446483612, 0.004472086206078529, -0.012620612047612667, 0.017188724130392075, -0.007222556509077549, 0.0191915612667799, -0.007977049797773361, 0.02366364747285843, -0.007956472225487232, -0.019712846726179123, 0.019287586212158203, 0.004907634574919939, -0.015515121631324291, -0.02022041566669941, -0.008018204011023045, 0.008800133131444454, -0.0057410066947340965, 0.03004254400730133, -0.013183051720261574, 0.0035838421899825335, 0.0035323994234204292, 0.00832000095397234, 0.0060942466370761395, -0.003841055789962411, 0.019534511491656303, 0.016557693481445312, -0.004547535441815853, -0.014390241354703903, -0.6075452566146851, -0.0026698766741901636, -0.0076478165574371815, -0.022003762423992157, 0.03168870881199837, -0.0141707519069314, 0.007826151326298714, 0.004554394632577896, -0.023965444415807724, 0.017710011452436447, -0.008909877389669418, 0.0003555977309588343, -0.0020011214073747396, -0.010466876439750195, 0.014074726030230522, -0.013608312234282494, 0.008786414749920368, -0.01310760248452425, -0.030179724097251892, 0.0027350373566150665, -0.04178519919514656, 0.026914825662970543, -0.01599525287747383, 0.006670404691249132, 0.008333719335496426, 0.018437067046761513, 0.011372268199920654, -0.020522212609648705, 0.009403727948665619, 0.031030243262648582, -0.017929499968886375, -0.014074726030230522, -0.019177842885255814, 0.0213178601115942, 0.026832517236471176, -0.014390241354703903, -0.004945359192788601, 0.013759210705757141, 0.00017415500769857317, 0.03618823364377022, -0.010542326606810093, -0.005970783997327089, 0.010000462643802166, -0.005034526810050011, 0.022003762423992157, -0.01986374519765377, 0.00011542458378244191, 0.019657975062727928, 0.0020920035894960165, -0.03146922215819359, 0.004135993774980307, -0.01269606128334999, 0.011969003826379776, -0.0022103218361735344, 0.011653488501906395, 0.00018551528046373278, 0.004550965037196875, 0.006639539264142513, 0.015803201124072075, -0.03827337548136711, 0.006471492815762758, 0.016255896538496017, -0.015775764361023903, 0.006423479877412319, -0.030234595760703087, 0.025158915668725967, -0.023992881178855896, -0.01599525287747383, -0.012318814173340797, -0.009232251904904842, 0.001481550047174096, 0.025035452097654343, -0.002203462878242135, 0.008827568963170052, 0.022689664736390114, 0.03777952864766121, 0.04428188502788544, 0.014554857276380062, 0.028725609183311462, 0.014705756679177284, 0.014239341951906681, -0.011660347692668438, -0.012065030634403229, -0.011427140794694424, 0.05424119532108307, -0.02167452871799469, -0.0032940483652055264, 0.018039243295788765, 0.011145920492708683, 0.008217115886509418, 0.035282839089632034, 0.028314068913459778, 0.0053191762417554855, -0.004547535441815853, -0.018217578530311584, 0.0011214511469006538, 0.007881022989749908, 0.016118716448545456, -0.0016067273681983352, -0.04024877771735191, -0.002205177443102002, -0.03915133327245712, 0.0219626072794199, 0.0032751858234405518, 0.0004070404393132776, 0.007826151326298714, -0.006498929113149643, 0.002530981320887804, 0.02156478352844715, -0.012181634083390236, -0.018711429089307785, -0.01507614366710186, -0.01592666283249855, 0.003138005267828703, -0.02259363792836666, -0.01968540996313095, 0.03369154781103134, -0.00966437067836523, 0.009959308430552483, -0.03654490038752556, -0.004039967432618141, 0.01588550955057144, 0.00046427047345787287, -0.017394496127963066, 0.03267640992999077, 0.005874757654964924, 0.01397869922220707, 0.0011463150149211287, -0.021262986585497856, -0.0023457875940948725, 0.012387405149638653, -0.006951624993234873, 0.009287124499678612, -0.028368940576910973, -0.010315977968275547, -0.01556999422609806, 0.021043498069047928, -0.0028499262407422066, 0.043541111052036285, -0.010261106304824352, 0.004153141751885414, 0.013423117808997631, -0.0024881125427782536, -0.03437744826078415, 0.0033660680055618286, -0.04749191179871559, -0.03344462066888809, -0.012833241373300552, -0.0011180215515196323, -0.01872514747083187, 0.009410586208105087, -0.011097907088696957, -0.010247387923300266, 0.021468758583068848, 0.016502821817994118, -0.008416027761995792, -0.011255664750933647, -0.0014481123071163893, -0.00025056887534447014, -0.022758254781365395, -0.005751295015215874, 0.022799409925937653, -0.0006100247846916318, 0.007359737064689398, -0.02592712640762329, -0.028286632150411606, 0.005644980352371931, 0.016338204964995384, -0.0027864801231771708, -0.04030364751815796, 0.013114461675286293, 0.018382195383310318, -0.01507614366710186, 0.0045955488458275795, -0.010425723157823086, 0.0018725147238001227, -0.02880791760981083, 0.014431395567953587, -0.017298469319939613, 0.0008749547996558249, 0.009979886002838612, 0.016022689640522003, 0.012558880262076855, -0.018821172416210175, 0.029384076595306396, 0.0008187964558601379, 0.030975371599197388, -0.0009542622719891369, -0.003631855361163616, -0.001961681991815567, -0.002186315134167671, -0.008855005726218224, -0.032895900309085846, -0.006831591948866844, -0.003631855361163616, 0.030097415670752525, 0.020124388858675957, -0.0058336034417152405, 0.016832055523991585, 0.007723265793174505, 0.029027406126260757, -0.020206697285175323, -0.003957659006118774, -0.04156570881605148, 0.011379127390682697, -0.016694873571395874, 0.017161289229989052, 0.01344369538128376, 0.029576128348708153, 0.011708361096680164, -0.004307469818741083, -0.0198363084346056, -0.03476155549287796, 0.006351460237056017, 0.03210025280714035, 0.02422608807682991, -0.006416620686650276, -0.002668161876499653, -0.00611139414831996, 0.013217346742749214, 0.01599525287747383, 0.011818105354905128, 0.023855699226260185, 0.008265129290521145, -0.022017480805516243, -0.013999276794493198, 0.023951726034283638, 0.002693883376196027, -0.03303308039903641, -0.04987885057926178, 0.0015372796915471554, 0.008292565122246742, 0.005765012931078672, 0.01724359579384327, 0.010103348642587662, 0.0035323994234204292, 0.0566830076277256, -0.017888344824314117, 0.01574832946062088, -0.015775764361023903, 0.0003665293043013662, 0.01908181607723236, 0.010062194429337978, -0.03448719158768654, 0.038931842893362045, 0.019644256681203842, 0.011660347692668438, 0.028506120666861534, -0.01098130363970995, 0.01982259191572666, 0.03854773938655853, -0.0016838914016261697, -0.01982259191572666, -0.008717824704945087, -0.03004254400730133, -0.014774346724152565, -0.006749283522367477, 0.010117066092789173, 0.016749747097492218, 0.0021640234626829624, 0.027504703029990196, -0.022195814177393913, 0.00524029741063714, -0.002448673127219081, 0.044419065117836, -0.0005242869374342263, -0.01691436395049095, -0.021880298852920532, -0.034679245203733444, -0.004571542143821716, -0.013505426235496998, -0.036270540207624435, -0.023114925250411034, 0.009444882161915302, 0.05887789651751518, -0.013093885034322739, 0.03223743289709091, 0.02163337543606758, 0.008258270099759102, 0.005494081415235996, -0.011029317043721676, -0.03377385437488556, 0.029109714552760124, 0.017408212646842003, -0.03113998845219612, -0.010706942528486252, -0.015281914733350277, 0.01930130459368229, 0.005370619241148233, 0.0024349549785256386, -0.0115986168384552, 0.01344369538128376, -0.009513472206890583, 0.005356900859624147, -0.005716999992728233, -0.007167684379965067, 0.013759210705757141, -0.015487685799598694, 0.041977252811193466, 0.010219952091574669, -0.001617015921510756, -0.02028900571167469, -0.036517467349767685, 0.007929036393761635, 0.04913807660341263, -0.012956704013049603, 0.015172170475125313, -0.01997349038720131, -0.008313141763210297, 0.010672647505998611, 0.010562903247773647, -0.02628379501402378, 0.006636109668761492, -0.007352878339588642, 0.029164588078856468, 0.018080398440361023, 0.009499753825366497, -0.004907634574919939, 0.019959772005677223, -0.004794460721313953, -0.0004117560456506908, -0.013958122581243515, -0.018190141767263412, 0.011530025862157345, 0.0501532144844532, 0.0227033831179142, -0.01340940035879612, 0.0004466942045837641, -0.009479177184402943, 0.003913075663149357, 0.000998846022412181, -0.001879373681731522, 0.014040430076420307, -0.0050036609172821045, -0.030481521040201187, -0.011571180075407028, 0.001007419778034091, 0.0014841222437098622, 0.011015599593520164, -0.008059358224272728, -0.028122015297412872, -0.0285884290933609, 0.0018056391272693872, -0.031030243262648582, 0.03583156317472458, 0.003923363983631134, 0.017613984644412994, 0.023032616823911667, -0.005830173846334219, -0.00847775861620903, -0.0011051609180867672, -0.004935070872306824, 0.00581645593047142, -0.01642051339149475, 0.0029476673807948828, 0.011207652278244495, 0.012030735611915588, 0.033636674284935, -0.02610546164214611, 0.010995022021234035, 0.019109252840280533, -0.0006258863140828907, 0.03487129881978035, -0.035913869738578796, -0.005933059379458427, 0.027902526780962944, 0.004454938694834709, 0.01156432181596756, 0.00428346311673522, 0.02138645015656948, -0.00966437067836523, 0.03037177585065365, -0.0057993084192276, -0.00675614271312952, 0.00692761829122901, 0.012229647487401962, -0.04661395400762558, -0.037367984652519226, 0.011626052670180798, -0.00013482276699505746, -0.017051544040441513, 0.012545162811875343, -0.014774346724152565, -0.006570948753505945, -0.0014721188927069306, -0.030783317983150482, 0.031030243262648582, -0.007805574219673872, -0.009149943478405476, -0.006210850086063147, -0.008923595771193504, 0.03064613789319992, -0.022223250940442085, -0.0073803141713142395, 0.028368940576910973, -0.016681157052516937, -0.0058953347615897655, -0.007922177202999592, 0.047766271978616714, 0.013676902279257774, 0.003127716714516282, 0.005017378833144903, 0.006985920015722513, -0.018327323719859123, 0.002692168578505516, -0.022470176219940186, -0.014307932928204536, -0.020673111081123352, -0.006324023939669132, 0.002033701865002513, 0.0013752351514995098, 0.013868954963982105, -0.01060405746102333, -0.006382325664162636, 0.0028584999963641167, -0.009204816073179245, -0.009712384082376957, -0.016489103436470032, 0.022291840985417366, 0.01798437163233757, -0.03824594244360924, 0.005765012931078672, 0.01688692718744278, -0.01294984482228756, 0.005295169539749622, -0.01780603639781475, -0.010974445380270481, 0.014568575657904148, -0.016187306493520737, -0.025446994230151176, 0.016900645568966866, -0.029027406126260757, 0.0030145428609102964, -0.005946777295321226, 0.03835568577051163, -0.010638352483510971, 0.02554302103817463, 0.008765838108956814, 0.011735796928405762, 0.011036176234483719, 0.009486035443842411, 0.02153734862804413, 0.005737577099353075, -0.041099295020103455, -0.003426084527745843, -0.033005643635988235, -0.004204584285616875, 0.02323838695883751, -0.007442045491188765, 0.0016684585716575384, 0.002285771071910858, -0.023334413766860962, -0.02753213793039322, 0.027463547885417938, 0.024911990389227867, 0.000632745330221951, -0.011310537345707417, -0.012421700172126293, -0.034212831407785416, 0.002539555076509714, -0.05424119532108307, 0.00014843365352135152, -0.01847822219133377, 0.01993233524262905, 0.004352053161710501, -0.016324486583471298, 0.004574971739202738, -0.0013520859647542238, -0.001826216233894229, -0.034679245203733444, -0.010315977968275547, 0.02504917047917843, -0.004077692050486803, -0.004012531600892544, 0.01908181607723236, 0.021166961640119553, -0.006056522019207478, 0.01890348084270954, 0.008772697299718857, 0.007318582851439714, -0.0037278817035257816, 0.004252597223967314, 0.009890718385577202, 0.033718980848789215, 0.020096952095627785, -0.003974806983023882, 0.04071519151329994, -0.017463086172938347, -0.001951393554918468, 0.021276704967021942, -0.01617358811199665, -0.01514473371207714, -0.01592666283249855, -0.01760026626288891, 0.028835354372859, -0.008265129290521145, 0.005199143197387457, 0.0013812368270009756, 0.0004921352956444025, 0.020261568948626518, 0.00048141804290935397, 0.027518421411514282, -0.022044915705919266, -0.03435001149773598, -0.01950707659125328, -0.007160825189203024, -0.012552021071314812, 0.02547443099319935, -0.019589385017752647, -0.014856655150651932, 0.009835846722126007, -0.009115648455917835, -0.004067403730005026, 0.002894509816542268, -0.003218598896637559, -0.003803331172093749, 0.013279078528285027, 0.032127685844898224, 0.01113906130194664, -0.025515584275126457, -0.007105953060090542, -0.03402077779173851, 0.00766153447329998, -0.018821172416210175, -0.02773790992796421, 0.0191915612667799, -0.011084189638495445, -0.018437067046761513, -0.005686134099960327, 0.0022291841451078653, -0.02480224519968033, -0.01749052107334137, 0.02856099233031273, -0.01713385246694088, -0.005813026335090399, -0.012654907070100307, -0.03717593103647232, -0.005970783997327089, 0.007421468384563923, 0.01294984482228756, 0.0033935040701180696, 0.020371314138174057, -0.02766931988298893, -0.009609498083591461, 0.0009748393786139786, -0.002630437258630991, 0.025817381218075752, 0.03259410336613655, 0.049659363925457, 0.021043498069047928, 0.013827800750732422, -0.03563950955867767, -0.01325164269655943, 0.008621797896921635, -0.004568112548440695, 0.022785691544413567, -0.012531444430351257, -0.004050256218761206, 0.012641188688576221, -0.007016785908490419, 0.0011943283025175333, -0.024706218391656876, -0.041346222162246704, 0.022538766264915466, 0.001206331537105143, 0.005360330455005169, -0.013436836190521717, 0.017723727971315384, -0.054927095770835876, 0.0003611707070376724, -0.009726101532578468, 0.0015569993993267417, -0.014198187738656998, -0.00017597693658899516, 0.00121919228695333, 0.008306283503770828, -0.0009937017457559705, 0.023896854370832443, 0.022017480805516243, -0.0026853096205741167, -0.029219459742307663, -0.007400891277939081, -0.036517467349767685, 0.006797296926379204, 0.006214279681444168, 0.037587475031614304, -0.027285214513540268, -0.024171214550733566, 0.03245691955089569, -0.006341171450912952, 0.004520099610090256, 0.003964518196880817, -0.005555812735110521, 0.0341305248439312, -0.029246896505355835, -0.011413422413170338, -0.001826216233894229, -0.003624996403232217, -0.028670737519860268, -0.0013169334270060062, -0.018395913764834404, -0.013731773942708969, 0.008999045006930828, -0.017339622601866722, 0.01784719154238701, 0.011982722207903862, 0.001745622605085373, -0.009678089059889317, -0.011646629311144352, 0.002810486825183034, -0.020947471261024475, 0.0011180215515196323, 0.04310213401913643, -0.0333348773419857, -0.027285214513540268, -0.046559084206819534, -0.02550186589360237, 0.004386348649859428, 0.029356639832258224, -0.023361850529909134, 0.013210488483309746, 0.031030243262648582, -0.03476155549287796, 0.02004208043217659, -0.02965843677520752, -0.012065030634403229, -0.018011808395385742, 0.005476933903992176, 0.00428346311673522, -0.006900182459503412, -0.003552976530045271, -6.478566501755267e-05, -0.020234132185578346, 0.0016564553370699286, -0.001216620090417564, 0.017655137926340103, -0.002846496645361185, -0.006543512921780348, -0.010549184866249561, -0.007284287828952074, 0.013093885034322739, 0.00844346359372139, -0.013080166652798653, 0.02476109191775322, -0.04249853640794754, 0.029137151315808296, 0.0011188789503648877, -0.0015484256437048316, 0.012298237532377243, -0.0030574118718504906, -0.009060775861144066, -0.0012714923359453678, -0.006468063686043024, -0.019040662795305252, -0.003372926963493228, -0.014938963577151299, 0.0245827566832304, -0.0016530257416889071, -0.05034526810050011, -0.00849833618849516, -0.006440627388656139, 0.010014181025326252, -0.01742193102836609, 0.001798780169337988, -0.017833473160862923, 0.01720244251191616, 0.001896521309390664, 0.0077026886865496635, -0.017655137926340103, -0.0003485243651084602, 0.007592943962663412, 0.042443666607141495, -0.004238879308104515, -0.031194860115647316, -0.009362573735415936, 0.05473504588007927, 0.0213178601115942, 0.009108789265155792, -0.016585130244493484, 0.011694642715156078, -0.0026990275364369154, -0.027655601501464844, -0.009534048847854137, 0.045708563178777695, 0.0021828857716172934, 0.007366596255451441, 0.004921352490782738, 0.029576128348708153, -0.022717101499438286, 0.024143779650330544, -0.027079442515969276, -0.017778601497411728, 0.004581830929964781, 0.04708036780357361, 0.01187983714044094, -0.003110569203272462, -0.015473967418074608, -0.041648019105196, 0.018354758620262146, 0.013649465516209602, -0.009245970286428928, 0.01617358811199665, -0.005596966948360205, -0.010123925283551216, -0.02653072029352188, -0.019699128344655037, 0.006207420490682125, 0.01954822987318039, -0.02422608807682991, 0.009403727948665619, -0.0031791594810783863, -0.030810754746198654, 0.022182097658514977, -0.04167545586824417, -0.006570948753505945, -0.004105128347873688, -0.012730356305837631, 0.0034518057946115732, 0.01150944922119379, -0.029877927154302597, 0.005288310814648867, -0.03585899993777275, 0.023430440574884415, -0.012702920474112034, -0.009835846722126007, 0.041483402252197266, 0.0030882772989571095, 0.005963924806565046, -0.02880791760981083, 0.013827800750732422, 0.004585260059684515, 0.016132434830069542, 0.005497511010617018, 0.0205770842730999, -0.031304605305194855, -0.008066217415034771, 0.025405840948224068, -0.013381963595747948, -0.004074262920767069, -0.02422608807682991, -0.009287124499678612, -0.03827337548136711, 0.0182038601487875, -0.012600034475326538, 0.002649299567565322, -0.004393207374960184, 0.01738077774643898, -0.002803627634420991, 0.011975863017141819, -0.015377940610051155, -0.04321187734603882, -0.006221138406544924, 0.019164124503731728, 0.008086794055998325, 0.002753899898380041, 0.006135400850325823, -0.011948427185416222, -0.01207874808460474, -0.022127224132418633, -0.015336786396801472, 0.1826147586107254, -0.0070647988468408585, 0.017504239454865456, 0.03435001149773598, -0.009986745193600655, 0.03196307271718979, 0.02529609575867653, -0.025707637891173363, -0.024953143671154976, -0.021262986585497856, -0.012860678136348724, -0.005422061774879694, -0.020302724093198776, 0.016077561303973198, 0.00790845975279808, -0.026983415707945824, 0.001030568964779377, -0.03777952864766121, 0.008793273940682411, -0.006293158512562513, 0.007490058895200491, 0.002520692767575383, -0.032017942517995834, -0.014486267231404781, 0.03193563595414162, -0.0014986976748332381, -0.02015182375907898, 0.01887604594230652, 0.0191915612667799, -0.009492894634604454, -0.02355390228331089, -0.020618239417672157, -0.006193702574819326, 0.008944172412157059, -0.017504239454865456, -0.005120264366269112, 0.0361059233546257, 0.0007382028852589428, 0.02312864363193512, -0.014678319916129112, 0.006835021544247866, -0.022003762423992157, -0.019342459738254547, 0.007105953060090542, 0.021262986585497856, -0.014719474129378796, 0.02316979691386223, 0.00024049467174336314, -0.022689664736390114, 0.027929961681365967, -0.020563365891575813, -0.009486035443842411, 0.03703875094652176, 0.025707637891173363, -0.006913900375366211, 0.0073871733620762825, 0.00897160917520523, -0.0018485080217942595, 0.003858203301206231, 0.003604419296607375, 0.010610916651785374, 0.021221833303570747, -0.0030385495629161596, 0.02156478352844715, -0.02316979691386223, 0.037121061235666275, -0.03127716854214668, 0.016091279685497284, 0.003758747363463044, -0.0013117891503497958, -0.022127224132418633, -0.007558648940175772, 0.004921352490782738, 0.003215169534087181, -0.04864422604441643, -0.015460249036550522, 0.028314068913459778, 0.028396375477313995, -0.0011643200414255261, 0.016763465479016304, -0.035666946321725845, -0.009239111095666885, -0.03756003826856613, 0.017092697322368622, -0.02447301149368286, 0.00260300119407475, 0.006955054588615894, -0.004393207374960184, 0.017284750938415527, 0.008162243291735649, -0.012942985631525517, -0.022209532558918, -0.00276761781424284, 0.02046733908355236, 0.008347436785697937, 0.0213178601115942, 0.011427140794694424, 0.01621474325656891, -0.0031465792562812567, -0.01250400859862566, -0.02096118964254856, 0.03160640224814415, 0.019589385017752647, 0.0031225725542753935, 0.006835021544247866, -0.01727103255689144, -0.01209932565689087, -0.004290322307497263, -0.000609596143476665, -0.03050895780324936, 0.019218996167182922, -0.026544438675045967, -0.008951031602919102, -0.007517494726926088, 0.009095070883631706, -0.01044629979878664, -0.016050126403570175, 0.0022103218361735344, 0.002268623560667038, 0.010274823755025864, 0.0018999507883563638, 0.0020216985139995813, 0.007099093869328499, 0.015364223159849644, -0.010754955932497978, -0.01798437163233757, -0.065682053565979, 0.002681880025193095, -0.0012406266760081053, 0.0024589616805315018, 0.017147570848464966, -0.04033108428120613, 0.011001881211996078, -0.007524353917688131, 0.0003811047354247421, -0.017367059364914894, -0.019342459738254547, 0.008875582367181778, -0.00013846662477590144, -0.00032623251900076866, 0.0017156144604086876, -0.013910109177231789, 0.006629250477999449, -0.013663183897733688, -0.00807307567447424, -0.033609237521886826, -0.004153141751885414, 0.012853818945586681, 0.0076409573666751385, -0.020481057465076447, -0.023787109181284904, -0.021619657054543495, 0.010940149426460266, -0.02642097696661949, 0.009643793106079102, -0.045461639761924744, 0.001183182350359857, -0.020673111081123352, 0.0125383036211133, -0.02209978923201561, -0.02514519728720188, 0.004166859667748213, -0.000704765145201236, 0.011365409940481186, -0.010844123549759388, -0.012037593871355057, -0.17207929491996765, -0.011056752875447273, 0.011578039266169071, -0.0338287279009819, 0.010110207833349705, 0.016832055523991585, 0.022429021075367928, -0.012250224128365517, -0.012641188688576221, 0.022730819880962372, -0.013848377391695976, -0.01642051339149475, -0.006636109668761492, -0.014637165702879429, -0.02845124900341034, -0.016982953995466232, 0.010590339079499245, 0.010988162830471992, 0.04579087346792221, 0.01628333330154419, 0.02820432372391224, -0.030097415670752525, 0.01876630075275898, 0.015473967418074608, -0.015693455934524536, -0.024815963581204414, 0.010117066092789173, 0.004996802192181349, 0.015487685799598694, -0.026091743260622025, 0.004352053161710501, 0.017655137926340103, 0.004135993774980307, -0.014253060333430767, 0.0050585330463945866, 0.010857841931283474, 0.015693455934524536, -0.0219626072794199, -0.014801782555878162, 0.0010219952091574669, 0.02411634288728237, 0.04238879308104515, -0.0028362080920487642, -0.010144502855837345, 0.020618239417672157, 0.022909153252840042, 0.036764390766620636, -0.039892107248306274, -0.002098862547427416, -0.04153827577829361, 0.014774346724152565, -0.01780603639781475, 0.023938007652759552, 0.0019188130972906947, 0.01954822987318039, -0.01851937547326088, -0.008992185816168785, 0.025200068950653076, -0.019026944413781166, 0.01617358811199665, -0.0019376754062250257, -0.03572181984782219, -0.019205277785658836, -0.0008839572547003627, 0.002692168578505516, 0.012689202092587948, -0.019136687740683556, 0.02316979691386223, -0.019671693444252014, 0.013848377391695976, 0.009390009567141533, 0.004640132654458284, 4.458368130144663e-05, -0.008107371628284454, 0.056847624480724335, -0.004015960730612278, -0.0012200495693832636, 0.010226811282336712, -0.022360431030392647, -0.031194860115647316, -0.002819060580804944, 0.03476155549287796, 0.0061491187661886215, -0.010844123549759388, 0.0029853919986635447, -0.0022360431030392647, -0.009444882161915302, 0.0014121023705229163, 0.021084653213620186, -0.010412004776299, 0.02153734862804413, -0.037230804562568665, -0.0029768182430416346, -0.0019376754062250257, 0.00925968773663044, 0.0290822796523571, 0.0040331087075173855, -0.018107833340764046, 0.015707174316048622, -0.004972795490175486, -0.003618137212470174, -0.019246432930231094, -0.007366596255451441, 0.022689664736390114, 0.003892498556524515, 0.012682342901825905, -0.015213324688374996, -0.002076570875942707, 0.03229230269789696, 0.01901322603225708, 0.0044412207789719105, 0.006999638397246599, 0.0017593407537788153, 0.038218505680561066, 0.023032616823911667, 0.034459758549928665, -0.02607802487909794, -0.024527885019779205, 0.03786183521151543, 0.012401122599840164, 0.04447393864393234, 0.01519960630685091, -0.021262986585497856, 0.007346019148826599, -0.003892498556524515, 0.010754955932497978, -0.12664508819580078, -0.018217578530311584, 0.005391195882111788, 0.01717500574886799, -0.005998220294713974, 0.04120904207229614, -0.010665788315236568, 0.02894509769976139, -0.0034518057946115732, 0.023046335205435753, -0.003834196599200368, -0.011927849613130093, -0.01642051339149475, 0.017970653250813484, -0.013985558412969112, -0.013772928155958652, -0.031222296878695488, -0.01037770975381136, -0.017586547881364822, 0.039315950125455856, 0.011468295007944107, -0.009341996163129807, 0.008916736580431461, -0.0008770982385613024, -0.006238285917788744, 0.005548953544348478, -0.01507614366710186, 0.009986745193600655, 0.0023646499030292034, 0.0006820445996709168, -0.001961681991815567, 0.005885045975446701, -0.0205770842730999, -0.0022549054119735956, 0.013807223178446293, 0.0013452268904075027, 0.00036588628427125514, -0.005624403245747089, 0.03308795019984245, -0.0022188955917954445, 0.016982953995466232, 0.005950206890702248, -0.01599525287747383, 0.006982490420341492, 0.00925968773663044, -0.02742239460349083, -0.007483199704438448, 0.03585899993777275, -0.006210850086063147, -0.024500448256731033, -0.020824009552598, -0.013375104404985905, -0.013868954963982105, -0.00040403963066637516, 0.007352878339588642, 0.0019925476517528296, 0.015954099595546722, 0.010748096741735935, -0.012565739452838898, 0.014897809363901615, -0.00037510308902710676, 0.030426649376749992, -0.0028327784966677427, 0.026805082336068153, 0.01385523658245802, 0.023210950195789337, -0.030947934836149216, 0.003991954494267702, 0.02504917047917843, -0.013608312234282494, 0.007013356313109398, 0.014486267231404781, -0.022044915705919266, 0.041977252811193466, -0.022758254781365395, 0.0018690851284191012, -0.010439440608024597, 0.017929499968886375, 0.027463547885417938, 0.009520331397652626, -0.005830173846334219, -0.01720244251191616, -0.01720244251191616, -0.03207281604409218, -0.017367059364914894, 0.025735072791576385, 0.009122507646679878, 0.001092300284653902, 0.01032283715903759, -0.007455763407051563, 0.007654675282537937, -0.017435649409890175, 0.05034526810050011, 0.0021657380275428295, 0.0014712614938616753, 0.009554626420140266, -0.005130553152412176, -0.015830636024475098, 0.0012646332615986466, 0.01326536014676094, -0.05959123745560646, 0.01950707659125328, -0.039782363921403885, 0.01695551723241806, -0.02096118964254856, -0.01986374519765377, -0.0013872383860871196, 0.0008449465385638177, 0.01769629307091236, 0.007613521069288254, 0.009280265308916569, 0.006708129309117794, -0.012716637924313545, 0.010089630261063576, -0.020631955936551094, -0.027326367795467377, 0.006426909472793341, -0.005819885525852442, 0.010844123549759388, -0.010960726998746395, -0.0001774773554643616, 0.03646259382367134, 0.0014592582592740655, 0.009047058410942554, 0.0048561920411884785, -0.013772928155958652, -0.011372268199920654, 0.004869909957051277, -0.0013743777526542544, 0.014026712626218796, -0.02149619348347187, -0.02138645015656948, 0.010665788315236568, -0.01876630075275898, -0.016489103436470032, -0.002783050760626793, -0.010706942528486252, -0.012545162811875343, 0.0243358314037323, 0.009033340029418468, -0.003417510772123933, -0.03654490038752556, -0.0020920035894960165, -0.014157034456729889, 0.01044629979878664, -0.0012492005480453372, 0.029521256685256958, -0.022826844826340675, -0.0004531245504040271, 0.018039243295788765, -0.00931456033140421, 0.027449831366539, 0.017078980803489685, 0.01131739653646946, -0.022003762423992157, 0.0017087553860619664, 0.017586547881364822, -0.03607848659157753, 0.0019633967895060778, -0.034212831407785416, 0.006776719819754362, 0.011214510537683964, 0.008683529682457447, -0.018148988485336304, 0.01592666283249855, -0.004170289263129234, -0.017531676217913628, -0.024239804595708847, -0.022922871634364128, -0.003021401818841696, 0.0035495469346642494, 0.002963100094348192, 0.004681286867707968, -0.010761815123260021, 0.009657511487603188, 0.006694411393254995, 0.03113998845219612, -0.004513240419328213, -0.023114925250411034, -0.0011677495203912258, 0.0011488872114568949, 0.03706618770956993, 0.024555319920182228, -0.016406795009970665, -0.0008338005864061415, 0.008127948269248009, 0.021619657054543495, 0.02124926820397377, -0.001015993533656001, -0.01525447890162468, 0.011763232760131359, -0.006217708811163902, -0.006231427192687988, -0.0028396376874297857, 0.003048837883397937, 0.014746910892426968, 0.015158452093601227, 0.010267965495586395, -0.0341305248439312, 0.017188724130392075, 0.015624865889549255, 0.021523630246520042, -0.0004831327823922038, 0.0015038419514894485, -0.02326582372188568, 0.012641188688576221, -0.018752582371234894, 0.011715220287442207, 0.005600396543741226, -0.002813916187733412, 0.0018776590004563332, 0.020138107240200043, 0.005559242330491543, 0.0051031168550252914, 0.01147515419870615, 0.008395450189709663, -0.016969235613942146, 0.023389285430312157, -0.003126002149656415, 0.0186977107077837, -0.027888808399438858, 0.015762045979499817, -0.0003886068006977439, 0.029384076595306396, 0.028999971225857735, -0.00875897891819477, 0.024665065109729767, 0.0024023745208978653, 0.018930917605757713, -0.011550603434443474, -0.019520793110132217, 0.005151130259037018, -0.015803201124072075, -0.009321419522166252, -0.05207374319434166, -0.018752582371234894, 0.003235746407881379, -0.028368940576910973, 0.03440488502383232, -0.0071333893574774265, -0.008875582367181778, 0.0622251033782959, -0.002937378827482462, -0.007915318012237549, 0.04005672410130501, 0.000700478267390281, 0.015940381214022636, 0.025213787332177162, -0.0009662655647844076, -0.02930176816880703, -0.033252567052841187, 0.03536514937877655, -0.0137249156832695, -0.009691806510090828, -0.05679275095462799, 0.006955054588615894, 0.0005097115063108504, -0.008752119727432728, 0.02429467812180519, -0.016091279685497284, -0.007092235144227743, 0.00395422987639904, 0.016228459775447845, 0.005991361103951931, -0.020824009552598, -0.004352053161710501, 0.017902063205838203, 0.027971116825938225, -0.019493358209729195, -0.026859953999519348, -0.026050588116049767, 0.015597430057823658, 0.0028156309854239225, -0.026791363954544067, -0.0070647988468408585, -0.009095070883631706, 0.007167684379965067, 0.004060544539242983, 0.002956241136416793, 0.025584174320101738, -0.0016333060339093208, -0.03039921261370182, 0.003354064654558897, -0.03703875094652176, -0.02731264941394329, -0.0006897610146552324, 0.006876175757497549, -0.018176425248384476, 0.025940844789147377, -0.03558463603258133], "edae333f-d2c1-4fc5-b558-50faf36e419a": [-0.004431936424225569, 0.013447497971355915, 0.014113607816398144, -0.018651066347956657, -0.01696270890533924, 0.0012951213866472244, -0.009648695588111877, -0.02003604732453823, -0.0007456634193658829, -0.01709461212158203, 0.00441874610260129, 0.029467102140188217, -0.012880316004157066, -0.0019439186435192823, 0.011917424388229847, 0.0021269337739795446, 0.016725284978747368, -0.007881197147071362, 0.006403884384781122, 0.005187080707401037, -0.03287019580602646, 0.016224052757024765, -0.02231796644628048, -0.011310671456158161, -0.010875391773879528, 0.00035160360857844353, -0.0013107848353683949, -0.003963681403547525, -0.009721241891384125, -0.002303353976458311, 0.001551507506519556, -0.007571225054562092, -0.024599885568022728, -0.02300386130809784, -0.020220709964632988, -0.011442574672400951, -0.009543173015117645, 0.0054311007261276245, -0.005223353859037161, -0.008910039439797401, 0.04548010975122452, 0.02441522292792797, -0.008982585743069649, -0.00023062393302097917, -0.009094703011214733, 0.017529891803860664, 0.027000518515706062, -0.021513359621167183, -0.020431755110621452, -0.0024995594285428524, 0.02561553753912449, 0.02667076140642166, -0.031946875154972076, -0.022331155836582184, 0.005988390650600195, 0.008514330722391605, 0.012451631017029285, 0.020154759287834167, 0.01458845753222704, -0.017543083056807518, 0.010987509042024612, 0.01423231977969408, -0.02088022418320179, -0.011343646794557571, -0.0447678342461586, 0.011706380173563957, 0.011884449049830437, 0.023518282920122147, 0.00549045717343688, 0.015617300756275654, 0.03804079070687294, -0.010644561611115932, 0.011119412258267403, 0.017556272447109222, 0.031102698296308517, 0.0016660981345921755, -0.0022423488553613424, -0.010301614180207253, -0.011152387596666813, 0.009727836586534977, -0.017134184017777443, -0.02417779713869095, -0.032105159014463425, 0.014891834929585457, 0.025285780429840088, -0.0030898249242454767, 0.015116069465875626, 0.0173188466578722, 0.0056256577372550964, -0.02417779713869095, -0.002672682050615549, 0.016065770760178566, -0.0086594233289361, 0.02101212739944458, 0.011785522103309631, 0.014205939136445522, -0.03806716948747635, 0.030970795080065727, -0.02461307682096958, 0.00557289645075798, -0.019007204100489616, 0.013223263435065746, -0.014298271387815475, 0.00082604173803702, -0.04300033673644066, -0.004952952731400728, 0.03134012222290039, -0.01705504208803177, 0.031234601512551308, 0.0004604234709404409, -0.018281739205121994, 0.03983466699719429, 0.0003874646790791303, -0.03081251122057438, 0.012880316004157066, -0.01780688762664795, 0.00458362465724349, -0.03651071712374687, -0.026182720437645912, -0.005177187733352184, 0.011053460650146008, -0.010196092538535595, 0.011917424388229847, 0.0006294240010902286, 0.028016170486807823, -0.008375832810997963, 0.013757470063865185, -0.03218430280685425, -0.017820078879594803, -0.025285780429840088, 0.03310761973261833, 0.009107893332839012, 0.007109564729034901, -0.013757470063865185, 0.013704708777368069, 0.008454973809421062, -0.01778050698339939, 0.003844968741759658, -0.0010379106970503926, -0.011871258728206158, 0.010677537880837917, 0.0056025744415819645, 0.0005754262674599886, 0.015590920113027096, -0.0009340372052974999, 0.0023264370393007994, 0.003515211632475257, -9.84634316409938e-05, -0.01941610313951969, -0.009464031085371971, 0.004474805202335119, -0.0018416938837617636, 0.0016900055343285203, -0.005569598637521267, -0.0023775494191795588, -0.010855606757104397, 0.0010881987400352955, 0.00978719349950552, 0.020695561543107033, 0.00759760569781065, 0.026129959151148796, 0.005183782894164324, -0.0031953470315784216, 0.00047155277570709586, -0.016461478546261787, 0.03738127276301384, 0.03049594536423683, 0.014205939136445522, -0.012326323427259922, 0.0227136742323637, 0.015366684645414352, 0.00776248425245285, -0.02680266462266445, 0.005886165890842676, -0.007069994229823351, -0.016184482723474503, 0.00424067722633481, -0.0022538902703672647, -0.02751494012773037, -0.006403884384781122, 0.009305748157203197, -0.002773257903754711, 0.006426967680454254, 0.015933867543935776, -0.02430970035493374, -0.0006071653915569186, -0.005965307354927063, -0.00983335915952921, 0.00068630714667961, 0.023280857130885124, 0.006713856477290392, 0.016092151403427124, 0.00962231494486332, 0.00463968375697732, -0.6078084707260132, -0.0010865499498322606, -0.024890072643756866, -0.004283546004444361, 0.010156521573662758, -0.01424551010131836, -0.010275233536958694, -0.009200225584208965, -0.022687293589115143, 0.02764684334397316, -0.001706493436358869, 0.005292602814733982, 0.02065598964691162, -0.01869063638150692, 0.01911272667348385, -0.03437389060854912, -0.009635505266487598, -0.007848220877349377, -0.0038878372870385647, 0.017200134694576263, -0.01751670241355896, 0.012853935360908508, -0.010169711895287037, 0.0035778654273599386, 0.007149135693907738, 0.034321129322052, -0.0001316967827733606, -0.017345227301120758, 0.025800202041864395, 0.029651766642928123, -0.025114307180047035, -0.01539306528866291, -0.006990852300077677, 0.012939671985805035, 0.01833449862897396, 0.00557289645075798, 0.007320609409362078, 0.007676747161895037, 0.018835730850696564, 0.034980643540620804, -0.030575085431337357, -0.01286053005605936, 0.027620462700724602, 0.008817707188427448, 0.01937653310596943, -0.020418565720319748, -0.0026528965681791306, 0.024164605885744095, -0.0026298135053366423, -0.02957262471318245, 0.008817707188427448, 0.0065489779226481915, 0.01115898322314024, -0.010862201452255249, 0.01594705693423748, -0.005896058399230242, 0.00446161488071084, -0.011759141460061073, 0.014522506855428219, -0.02055046707391739, 0.004867216106504202, 0.025866152718663216, -0.01977224089205265, 0.002845804439857602, -0.009925691410899162, 0.020827462896704674, -0.038673922419548035, -0.006420372519642115, 0.02372932620346546, -0.017213325947523117, 0.0060081761330366135, 0.008375832810997963, 0.0017147373873740435, 0.004784776829183102, 0.02065598964691162, 0.0310499370098114, -0.00896939542144537, 0.03640519455075264, 0.004455019719898701, -0.0009933934779837728, -0.0086594233289361, 0.0027336871717125177, -0.022436678409576416, -0.0013693167129531503, 0.02277962677180767, 0.006232410669326782, -0.02510111778974533, 0.02140783704817295, 0.01299243327230215, 0.005226651206612587, 0.026591619476675987, 0.01248460728675127, -0.01846640184521675, -0.006743534468114376, -0.014667599461972713, -0.004171428270637989, 0.015933867543935776, 0.0030650929547846317, -0.019231438636779785, -0.045242685824632645, 0.014324652031064034, -0.02297748066484928, 0.02886034920811653, 0.0018087181961163878, -0.0010024618823081255, 0.007478892803192139, -0.00012798700481653214, 0.001934025902301073, 0.01181190274655819, -0.03643157333135605, -0.03827821463346481, -0.025826582685112953, 0.007307419087737799, 0.003244810737669468, -0.0007275267853401601, -0.022133301943540573, 0.004939762409776449, -0.020853843539953232, 0.0037163635715842247, -0.048250071704387665, 0.015999818220734596, 0.029730908572673798, -0.010453302413225174, -0.016263624653220177, 0.019033584743738174, -0.008276904933154583, 0.00677321245893836, 0.0017097910167649388, -0.006885330192744732, 0.002034601755440235, 0.018347689881920815, 0.0030436587985605, 0.02019432932138443, -0.021262742578983307, -0.020471325144171715, -0.021526549011468887, 0.018123455345630646, 0.0001880646450445056, 0.0305487047880888, -0.029045013710856438, -0.00789438746869564, 0.010558824986219406, -8.712802809895948e-05, -0.03273829445242882, -0.006321445107460022, -0.021289123222231865, -0.03624691069126129, 0.003858159063383937, -0.03447940945625305, -0.006262089125812054, 0.022436678409576416, -0.009233200922608376, 0.0059224390424788, 0.008778136223554611, 0.011574476957321167, -0.011548096314072609, -0.00893642008304596, -0.007175516337156296, -0.007815245538949966, -0.031023556366562843, 0.0011681647738441825, 0.020801084116101265, -0.011660214513540268, 0.01196359097957611, -0.011442574672400951, -0.011244719848036766, 0.010262043215334415, 0.019231438636779785, -0.007577820215374231, -0.044266603887081146, 0.026288243010640144, -0.010763274505734444, -0.007676747161895037, 0.008745160885155201, -0.020220709964632988, 0.003007385414093733, 0.001473190262913704, 0.004451721906661987, -0.012893506325781345, -0.0010024618823081255, 0.002280270913615823, 0.011732760816812515, 0.008639638312160969, 0.00977400317788124, -0.0010288424091413617, 0.007953743450343609, 0.011429384350776672, 0.007168921176344156, -0.025048356503248215, -0.006483026314526796, 0.033054858446121216, 0.0020131675992161036, -0.01663295179605484, -0.015511778183281422, -0.0028556971810758114, 0.04094265028834343, 0.00013272726209834218, 0.006588548421859741, -0.00021032325457781553, 0.0019026990048587322, 0.03165668994188309, -0.018901681527495384, -0.006037854123860598, -0.05840659141540527, 0.008553901687264442, -0.018637876957654953, 0.022476250305771828, -0.021935448050498962, 0.02411184459924698, -0.009859739802777767, 0.015366684645414352, -0.027752364054322243, -0.016131721436977386, 0.00660833390429616, 0.022278394550085068, 0.029124153777956963, 0.007439322303980589, -0.006219220347702503, -0.0015259514329954982, 0.010189496912062168, 0.004042822867631912, 0.013487068936228752, 0.02986280992627144, 0.019745860248804092, -0.013955323956906796, -0.006417074706405401, 0.008013099431991577, -0.028279976919293404, -0.008857278153300285, -0.03316038101911545, -0.0009521738975308836, 0.010578610934317112, 0.012201015837490559, 0.03437389060854912, 0.008369237184524536, -0.0005222529289312661, 0.04624514654278755, -0.018242167308926582, 0.034162845462560654, -0.0027567700017243624, -0.0009637153707444668, 0.029757289215922356, 0.012755007483065128, -0.018875300884246826, 0.03582482039928436, -0.0025111010763794184, 0.03653709590435028, -0.007221682462841272, -0.02291152998805046, 0.019627148285508156, 0.02669714204967022, 0.014258700422942638, -0.008666018955409527, -0.007986718788743019, -0.027303894981741905, -0.024916453287005424, -0.0018730207812041044, -0.006598441395908594, 0.03450579196214676, 0.0033354938495904207, 0.014456555247306824, -0.01813664473593235, 0.016936328262090683, -0.01269565150141716, 0.018967634066939354, -0.012168040499091148, -0.004794669337570667, -0.01119195856153965, -0.016052579507231712, -0.0004822698829229921, -0.032659150660037994, -0.04458317160606384, -0.03213154152035713, -0.011719570495188236, 0.031102698296308517, 0.008395617827773094, 0.0016759908758103848, 0.006971066817641258, 0.006614929065108299, 0.0011252963449805975, -0.011317266151309013, -0.04202425479888916, 0.005863082595169544, 0.0026578428223729134, -0.02003604732453823, 0.003686685347929597, -0.009853145107626915, -0.007314014248549938, 0.002417120151221752, 0.018149835988879204, -0.010367565788328648, 0.02917691506445408, -0.008356046862900257, 0.003216781420633197, -0.0037361488211899996, 0.00037777808029204607, 0.03664261847734451, -0.0019505138043314219, 0.04162854701280594, -0.01317050214856863, -0.019231438636779785, -0.0018433426739647985, -0.022529011592268944, 0.01493140496313572, 0.05629614740610123, -0.013282619416713715, 0.008870468474924564, -0.007155730854719877, 0.009497007355093956, 0.010077379643917084, 0.018717017024755478, -0.013955323956906796, -0.0158547256141901, -0.020972557365894318, 0.02277962677180767, 0.0023660077713429928, 0.0007802879554219544, 0.006466538179665804, 0.007835030555725098, -0.006664392538368702, -0.009866335429251194, -0.003907622769474983, -0.015841534361243248, 0.005025499500334263, 0.02574744075536728, 0.022172873839735985, -0.007445917464792728, 0.013130931183695793, -0.0016281760763376951, -0.015261163003742695, 0.00190929404925555, -0.016619762405753136, -0.0006830095662735403, -0.002374251838773489, -0.013407927006483078, -0.006832568906247616, 0.0001831182889873162, -0.027040088549256325, 0.024876881390810013, 0.019033584743738174, -0.026842234656214714, -0.03255362808704376, 0.005335471127182245, -0.031287360936403275, 0.03574568033218384, 0.005078260786831379, 0.03178859129548073, 0.031973257660865784, 0.006064234767109156, -0.004725420381873846, 0.016487859189510345, 0.007795460056513548, 0.026090389117598534, -0.025074737146496773, -0.007208492141216993, 0.008745160885155201, 0.029889190569519997, 0.028253596276044846, -0.013064979575574398, 0.016395527869462967, 0.00549045717343688, 6.0438309446908534e-05, 0.04321138188242912, -0.01610534079372883, 0.008402213454246521, 0.03215792030096054, -0.006248898804187775, 0.002291812328621745, 0.009338723495602608, -0.0010502766817808151, -0.005375042092055082, 0.015630491077899933, -0.022278394550085068, -0.011000699363648891, 0.0003256352210883051, 0.020840654149651527, -0.024388842284679413, 0.013229858130216599, 0.0020692262332886457, 0.02461307682096958, 0.00896939542144537, -0.007854816503822803, -0.003709768410772085, -0.032500866800546646, 0.029757289215922356, -0.027541320770978928, 0.03189411386847496, 0.011330456472933292, 0.007096374407410622, -0.016092151403427124, -0.005886165890842676, 0.032500866800546646, -0.04321138188242912, -0.008243929594755173, 0.020563658326864243, -0.02581339329481125, -0.023017050698399544, -0.005678418558090925, 0.047959886491298676, 0.03192049637436867, -0.009008966386318207, 0.006997447460889816, 0.00859347265213728, 0.005450886208564043, -0.009365104138851166, -0.028675684705376625, 0.005196973215788603, -0.023294048383831978, -0.005243139341473579, 0.0006232410669326782, 0.012748412787914276, 0.0019158892100676894, -0.0027518237475305796, 0.0065522752702236176, -0.0015638734912499785, 0.0002009457821259275, -0.034268368035554886, -0.027620462700724602, -0.006041151471436024, 0.03310761973261833, -0.005450886208564043, 0.007604200858622789, 0.02012837864458561, -0.021381456404924393, 0.003785612527281046, -0.02594529464840889, -0.023452330380678177, -0.007063399069011211, -0.037829745560884476, -0.004487995523959398, 0.02791064791381359, -0.015630491077899933, 0.012939671985805035, 3.233165989513509e-05, 0.02738303691148758, -2.2967073164181784e-05, 0.019890952855348587, 0.029730908572673798, 0.007445917464792728, 0.027620462700724602, 0.012095493264496326, 0.011205148883163929, -0.002799638547003269, -0.05368446931242943, 0.016224052757024765, -0.044398508965969086, 0.00998504739254713, -0.014324652031064034, -0.0018548842053860426, 0.013520044274628162, 0.002687521046027541, -0.014614838175475597, -0.015076498501002789, -0.003614138811826706, 0.0223839171230793, 0.019521625712513924, 0.0009159005712717772, -0.016487859189510345, -0.0405205637216568, 0.010572015307843685, -0.04624514654278755, 0.0021302313543856144, -0.023768898099660873, 0.013955323956906796, 0.016395527869462967, -0.0014707170194014907, 0.014047656208276749, -0.01065115723758936, -0.04067884758114815, -0.029387960210442543, -0.01807069405913353, 0.0028639412485063076, -0.026288243010640144, 0.024547124281525612, 0.03242172673344612, 0.006483026314526796, -0.015709633007645607, -0.013256238773465157, -0.009365104138851166, 0.005714692175388336, 0.005447588860988617, -0.00028111800202168524, 0.033767133951187134, 0.024652646854519844, 0.004491292871534824, 0.0020758213941007853, 0.0356137752532959, -0.009470626711845398, -0.006337933242321014, 0.019759049639105797, -0.014298271387815475, -0.011139197275042534, -0.02510111778974533, -0.018571924418210983, 0.014970975928008556, -0.013572805561125278, 0.007221682462841272, -0.010202687233686447, 0.008217548951506615, 0.037038326263427734, 0.010242258198559284, 0.02830635756254196, -0.00960912462323904, -0.02411184459924698, -0.004092286806553602, 0.007063399069011211, 0.013012218289077282, 0.002858994761481881, -0.006799593102186918, -0.009681670926511288, 0.02725113369524479, -0.0039933593943715096, 0.014205939136445522, -0.004039525520056486, 0.017107803374528885, -0.010011428035795689, 0.009252986870706081, 0.02284557744860649, 0.01738479919731617, -0.039227914065122604, -0.0017971766646951437, -0.04925253242254257, 0.002474827691912651, -0.00893642008304596, -0.01607896015048027, 0.011244719848036766, -0.015432636253535748, 0.0038218856789171696, -0.015313923358917236, -0.010525849647819996, -0.03980828821659088, -0.004695742391049862, 0.035086166113615036, 0.0006632241420447826, -0.0330021008849144, -0.009233200922608376, -0.02417779713869095, -0.0011780575150623918, 0.003015629481524229, 0.016039390116930008, -0.0029381364583969116, 0.017859648913145065, -0.04925253242254257, -0.015498587861657143, 0.008441783487796783, 0.0017312251729890704, 0.039755526930093765, 0.008857278153300285, 0.03411008417606354, 0.0024286615662276745, 0.02081427350640297, -0.03149840608239174, 0.0004802088951691985, -0.01643509790301323, -0.01617129147052765, 0.010420327074825764, 0.0033833086490631104, -0.011257910169661045, -0.010083974339067936, -0.028279976919293404, 0.010097164660692215, -0.026064008474349976, -0.04065246507525444, 0.024164605885744095, 0.007498678285628557, 0.003657007124274969, -0.01094793900847435, 0.02114403061568737, -0.039359819144010544, 0.02649928815662861, 0.0017460642848163843, 0.020444946363568306, -0.007201896980404854, -0.0004468209808692336, -0.007736103609204292, 0.025562776252627373, -0.010407136753201485, 0.01063796691596508, -0.004402258433401585, 0.005134319420903921, -0.016553809866309166, 0.01423231977969408, -0.027594082057476044, 0.014113607816398144, -0.0013734386302530766, 0.011330456472933292, -0.03134012222290039, -0.024402031674981117, 0.022014589980244637, 0.006872139871120453, 0.0027963409665971994, -0.008204358629882336, 0.012576938606798649, 0.026156339794397354, 0.00862644799053669, -0.006746831815689802, 0.0053915297612547874, 0.013533234596252441, -0.01735841855406761, -0.005384935066103935, -0.0008375832694582641, -0.00355807994492352, 0.010888582095503807, -0.020510897040367126, 0.03252724930644035, 0.04028313606977463, 0.01957438699901104, -0.008145002648234367, 0.004573732148855925, -0.007373370695859194, 0.005249734502285719, -0.0052299490198493, 0.02967814728617668, -0.0441083200275898, -0.0003705646377056837, -0.03036404214799404, 0.006819378584623337, 0.008633042685687542, 0.014113607816398144, -0.009503602050244808, 0.016263624653220177, 0.055663011968135834, -0.04669361561536789, 0.030205758288502693, -0.013243048451840878, 0.007835030555725098, -0.017041850835084915, 0.01712099276483059, -0.017015470191836357, -0.014205939136445522, 0.007848220877349377, -0.024533934891223907, -0.02173759415745735, -0.004267057869583368, 0.016263624653220177, 0.011765736155211926, -0.004369282629340887, -0.028227215632796288, 0.026261862367391586, 0.007841626182198524, 0.026222290471196175, 0.01627681404352188, -0.007314014248549938, 0.03258001059293747, -0.030891653150320053, 0.008039480075240135, -0.0006166459643281996, -0.004425341263413429, 0.007808650378137827, 0.01594705693423748, 0.010004833340644836, 0.005427803378552198, -0.022370727732777596, -0.0009991643019020557, 0.008560496382415295, -0.025602348148822784, 0.0026924675330519676, -0.005107938777655363, -0.03930705785751343, 0.00016992799646686763, -0.01098091434687376, 0.017767317593097687, 0.0032959231175482273, -0.0005572896334342659, -0.027409417554736137, 0.017635414376854897, 0.009536577388644218, 0.021130841225385666, -0.01437741331756115, -0.006021365988999605, 0.01382342167198658, 0.00823733489960432, 0.005078260786831379, -0.04329052194952965, -0.0027435796801000834, 0.03068060800433159, 0.023122573271393776, 0.0016265272861346602, -0.010954533703625202, -0.0061829471960663795, -0.019943714141845703, -0.01063796691596508, 0.01979862153530121, 0.02944072149693966, 0.017951982095837593, 0.013665137812495232, -0.0028936192393302917, 0.04128560051321983, -0.0036537095438688993, 0.016118532046675682, -0.04176044836640358, 0.0014806097606197, 0.01804431341588497, 0.061255693435668945, 0.020141568034887314, -0.004906787071377039, -0.01215485017746687, -0.030073855072259903, -0.002291812328621745, 0.012148254550993443, 0.010895177721977234, 0.008586877025663853, -0.009464031085371971, -0.0007802879554219544, -0.038937728852033615, -0.014535697177052498, -0.003627329133450985, 0.01941610313951969, 0.0021813437342643738, 0.0017345227533951402, 0.0023396271280944347, -0.02264772355556488, 0.003541592275723815, -0.03302847966551781, 0.006799593102186918, 0.008547306060791016, -0.02173759415745735, 0.014219129458069801, 0.020867034792900085, -0.013955323956906796, 1.013101700664265e-05, -0.02225201576948166, 0.021355075761675835, 0.00043363068834878504, 0.01402127556502819, 0.04487335681915283, -0.0016306493198499084, 0.011924020014703274, -0.01636914722621441, 0.01218782551586628, -0.02055046707391739, 0.010090569965541363, 0.019455673173069954, 0.0346376933157444, 0.01390256267040968, -0.02160569094121456, 0.037856124341487885, -0.019759049639105797, 0.007755889091640711, -0.019732670858502388, -0.0033387914299964905, -0.02160569094121456, 0.024942833930253983, -0.010466492734849453, -0.012834149412810802, -0.001947216223925352, 0.028279976919293404, 0.006295064464211464, 0.01979862153530121, -0.023650186136364937, -0.021645260974764824, -0.01251758262515068, 0.033186763525009155, -0.00794055312871933, -0.010572015307843685, 0.008751755580306053, 0.0045704348012804985, 0.002565510803833604, -0.035112544894218445, -0.019759049639105797, 0.17928238213062286, -0.02859654277563095, 0.02601124718785286, 0.0464034304022789, -0.00364381680265069, 0.034690454602241516, 0.007564629893749952, -0.012999027967453003, -0.020167948678135872, -0.008059266023337841, -0.018413640558719635, -0.006562167778611183, -0.020669180899858475, 0.004428639076650143, -0.0032200790010392666, 0.007848220877349377, 0.009437650442123413, -0.041153695434331894, 0.0047188252210617065, 0.001031315652653575, 0.009932286106050014, 0.01941610313951969, -0.05175868794322014, -0.015551349148154259, 0.023518282920122147, 0.007571225054562092, -0.017859648913145065, 0.01505011785775423, 0.0151952113956213, -0.006858949549496174, -0.03131374344229698, -0.002817775122821331, -0.013849801383912563, -0.0042077018879354, -0.016646143049001694, -0.00415823794901371, 0.023900801315903664, 0.0035086164716631174, 0.005678418558090925, 0.00156634661834687, 0.012253777123987675, -0.03052232600748539, -0.023900801315903664, 0.0017839863430708647, 0.0015754149062559009, 0.02284557744860649, 0.00011005646229023114, -0.01617129147052765, 0.003699875669553876, 0.02130231447517872, -0.02780512534081936, -0.008290095254778862, 0.020537277683615685, 0.01898082345724106, 0.0018812647322192788, -0.006713856477290392, -0.0017114398069679737, 0.009754217229783535, 0.025536395609378815, 0.014746741391718388, -0.005595979280769825, 0.052497342228889465, -0.016619762405753136, 0.016619762405753136, -0.0032810838893055916, 0.00895620509982109, -0.009121083654463291, 0.00021228118566796184, 0.0018334499327465892, -0.002389090834185481, -0.010657751932740211, 0.0007501976215280592, 0.001904347795061767, 0.016092151403427124, -0.03440026938915253, 0.0101301409304142, 0.049753762781620026, 0.0169890895485878, -0.007650366518646479, 0.03139288350939751, -0.0418395921587944, -0.044002797454595566, 0.0015853076474741101, 0.01807069405913353, -0.02421736717224121, -0.01950843445956707, 0.010558824986219406, -0.003795505268499255, -0.017081422731280327, -0.012656080536544323, 0.005460779182612896, -0.02667076140642166, -0.015168830752372742, 0.007050208747386932, 0.023782087489962578, 0.015432636253535748, 0.004438531585037708, 0.025008784607052803, -0.025233019143342972, -0.008890253491699696, -0.02293791063129902, 0.038119930773973465, 0.013810231350362301, 0.018782969564199448, 0.003056849120184779, 0.02032623253762722, 0.0011145792668685317, -0.004699039738625288, 0.001122823217883706, -0.032237064093351364, 0.009431055746972561, -0.014456555247306824, -0.008797921240329742, 0.004286843352019787, 0.017661795020103455, -0.0084945447742939, -0.020471325144171715, -0.017147373408079147, 0.005553110968321562, -0.003426177194342017, -0.01416636910289526, -0.01758265309035778, 0.011752545833587646, -0.019627148285508156, -0.006885330192744732, -0.019455673173069954, -0.04212977737188339, 0.011185363866388798, -0.01826854795217514, -0.015036927536129951, 0.015775583684444427, -0.06442136317491531, -0.00034335965756326914, -0.02081427350640297, -0.014614838175475597, -0.013058384880423546, -0.019877763465046883, -0.002131880261003971, -0.013407927006483078, 0.016725284978747368, 0.009378294460475445, 0.0011928966268897057, 0.003881242126226425, -0.0022967588156461716, 0.0032217276748269796, -0.017239704728126526, 0.00016426030197180808, 0.0037493391428142786, -0.0039933593943715096, -0.05692927911877632, -0.02277962677180767, -0.012227396480739117, 0.010090569965541363, -0.013104550540447235, 0.014139988459646702, -0.05389551445841789, -0.012458226643502712, -0.019495245069265366, 0.004227486904710531, -0.0030090343207120895, -0.013955323956906796, -0.006898520514369011, -0.00032625350286252797, -0.005094748456031084, 0.0022571878507733345, -0.032368965446949005, -0.16324299573898315, -0.012761603109538555, 0.009899310767650604, -0.02999471314251423, 0.00403622817248106, 0.0031788593623787165, 0.03395180031657219, -0.014601647853851318, 0.01101388968527317, 0.007155730854719877, 0.0014088875614106655, 0.006021365988999605, -0.013968514278531075, 0.007670152001082897, -0.025233019143342972, -0.02048451639711857, 0.0031623714603483677, 0.01957438699901104, 0.03804079070687294, 0.03218430280685425, 0.03933343663811684, -0.01416636910289526, 0.017213325947523117, 0.0036405192222446203, 0.00023227272322401404, -0.02572106011211872, 0.017279276624321938, 0.00998504739254713, -0.007149135693907738, -0.024758169427514076, 0.00813840702176094, 0.03368799388408661, 0.03226344287395477, -0.03226344287395477, 0.00018260303477291018, 0.009576148353517056, 0.013302404433488846, -0.0326855331659317, -0.00776907941326499, 0.00789438746869564, 0.02196182869374752, 0.019099535420536995, -0.019653528928756714, 0.0017114398069679737, 0.015300733037292957, 0.021381456404924393, 0.024956023320555687, -0.035903964191675186, -0.005068367812782526, -0.0151952113956213, 0.021394645795226097, -0.016290005296468735, 0.029335198923945427, 0.013421117328107357, 0.01030820980668068, -0.014008085243403912, -0.011251315474510193, 0.008725374937057495, -0.019336961209774017, -0.014614838175475597, 0.004398960620164871, -0.025021975859999657, -0.021975018084049225, 0.008883658796548843, -0.023979943245649338, -0.00040869280928745866, -0.02088022418320179, 0.0169890895485878, -0.010585205629467964, 0.0026561941485852003, 0.0041879164054989815, 0.013612376525998116, -0.003881242126226425, -0.007953743450343609, 0.03732851520180702, -0.0050617726519703865, 0.007300823926925659, 0.02055046707391739, 0.00446161488071084, -0.04310585930943489, -0.003597650909796357, 0.034558553248643875, -0.0013421117328107357, -0.0016265272861346602, 0.010743489488959312, -0.0005605872138403356, -0.020497705787420273, 0.005193675868213177, -0.0061796498484909534, -0.00708318455144763, 0.0218958780169487, -0.021025318652391434, -0.023175334557890892, -0.005338768940418959, -0.010367565788328648, 0.015986628830432892, 0.008698994293808937, -0.026129959151148796, 0.016646143049001694, 0.00934531819075346, 0.009569553658366203, -0.03276467323303223, -0.016065770760178566, 0.01171297486871481, 0.02094617672264576, 0.01098091434687376, -0.0019241331610828638, 0.033476948738098145, 0.04941081628203392, 0.00895620509982109, -0.01904677413403988, -0.008507735095918179, 0.02150016836822033, 0.02277962677180767, 0.013012218289077282, 0.026934565976262093, -0.015234782360494137, -0.02055046707391739, 0.03389903903007507, 0.016778046265244484, 0.021843116730451584, -0.009747622534632683, -0.005793833639472723, -0.02886034920811653, 0.0026941162068396807, 0.004023037850856781, -0.10747446119785309, -0.013757470063865185, -0.0029645171016454697, 0.0253253523260355, 0.002121987519785762, 0.016092151403427124, -0.02738303691148758, -0.0059949858114123344, -0.00312939565628767, 0.04941081628203392, 0.009055132046341896, -0.01656700111925602, 0.004431936424225569, 0.008243929594755173, -0.008751755580306053, 0.011673403903841972, -0.0014707170194014907, -0.00042579896398819983, -0.028965871781110764, 0.04268376901745796, 0.02215968258678913, 0.0038482663221657276, -0.01415317878127098, -0.0018730207812041044, -0.0035646751057356596, 0.007577820215374231, -0.01636914722621441, 0.008639638312160969, 0.008125216700136662, 0.010789655148983002, -0.012431846000254154, 5.678006709786132e-05, -0.016316385939717293, -0.015366684645414352, 0.016606571152806282, -0.005807023961097002, 0.002290163654834032, -0.026723522692918777, 0.00489359674975276, -0.000939807971008122, 0.004191213753074408, 0.005477266851812601, 0.006618226878345013, -0.012755007483065128, -0.004455019719898701, -0.008890253491699696, -0.015023737214505672, 0.00789438746869564, -0.0032085373532027006, -0.005968605168163776, -0.026024436578154564, -0.04025675728917122, -0.03284381702542305, 0.0009859739802777767, 0.00012190711277071387, 0.0014863804681226611, 0.005777345970273018, -0.003571270266547799, -0.027857886627316475, 0.014390603639185429, -0.0017427667044103146, 0.02242348901927471, -0.008019695058465004, 0.022542200982570648, 0.0008590174838900566, 0.02587934397161007, -0.024599885568022728, -0.01248460728675127, 0.026881806552410126, -0.012583534233272076, 0.0005700677284039557, 0.022753246128559113, -0.03719661012291908, 0.042367205023765564, -0.011891043744981289, -2.8802229280699976e-05, -0.0050353920087218285, 0.011330456472933292, 0.02872844599187374, 0.0020411969162523746, -0.02594529464840889, -0.022885149344801903, -0.01623724400997162, -0.02010199800133705, -0.0017658497672528028, 0.02647290751338005, 0.019587576389312744, 0.020181139931082726, 0.027119230479002, -0.013797041028738022, 0.008705589920282364, -0.0018565329955890775, 0.017569463700056076, -0.015999818220734596, -0.011924020014703274, -0.003442665096372366, 0.0020840654615312815, -0.0013338677817955613, -0.000690016895532608, 0.017859648913145065, -0.047564174979925156, -0.013625566847622395, -0.03877944499254227, 0.0017707961378619075, -0.0067105586640536785, -0.01574920304119587, 0.005863082595169544, 0.009200225584208965, 0.03199963644146919, 0.006766617298126221, -0.020537277683615685, 0.005790536291897297, -0.03891134634613991, 0.0010840767063200474, -0.02342594973742962, -0.005830107256770134, -0.007920767180621624, -0.017068231478333473, 0.003459152765572071, -0.01836087927222252, 0.023188525810837746, 0.03144564479589462, 0.012926481664180756, 0.006727046798914671, 0.01882253959774971, -0.016158102080225945, -0.03542911261320114, 0.013783850707113743, -0.0015539807500317693, 0.020339423790574074, -0.01669890433549881, -0.03287019580602646, 0.0041516427882015705, 0.010149925947189331, -0.009694861248135567, 0.013111145235598087, -0.013704708777368069, -0.03411008417606354, 0.01935015246272087, 0.020431755110621452, 0.02094617672264576, -0.004656171426177025, 0.007505273446440697, -0.03294933959841728, 0.005345364101231098, -0.013130931183695793, 0.00113766232971102, -0.023874420672655106, -0.007050208747386932, 0.025470444932579994, -0.008177977986633778, 0.03875306621193886, -0.0002273263526149094, 0.010756679810583591, -0.015709633007645607, -0.00011510586773511022, 0.006064234767109156, -0.03925429657101631, 0.015933867543935776, -0.009497007355093956, -0.0032794352155178785, -0.00046413324889726937, 0.034558553248643875, -0.010585205629467964, 0.0339781790971756, -0.01153490599244833, -0.00729422876611352, -0.04176044836640358, -0.014786312356591225, -0.003502021310850978, 0.003213483840227127, 0.00372955366037786, -0.022898338735103607, 0.0027551213279366493, 0.004389068111777306, 0.01758265309035778, 0.01205592229962349, 0.004184618592262268, -0.03664261847734451, 0.009220010600984097, 0.008989180438220501, 0.03941258043050766, 0.041945114731788635, -0.011910829693078995, -0.009543173015117645, 0.013097955845296383, 0.030337661504745483, 0.004626493435353041, 0.004946357570588589, -0.010090569965541363, 0.0007250536000356078, -0.0010906718671321869, -0.0018318011425435543, -0.0005993336671963334, -0.0036504119634628296, 0.027198372408747673, 0.012233991175889969, 0.0287548266351223, -0.037038326263427734, 0.004484697710722685, 0.004778181668370962, 0.017833268269896507, 0.009450840763747692, 0.004375877790153027, -0.018545543774962425, -0.0032085373532027006, -0.04202425479888916, 0.019271010532975197, -0.009332128800451756, 1.553465517645236e-05, -0.008540711365640163, 0.04323776066303253, -0.013994894921779633, 0.02153974026441574, 0.02277962677180767, 0.004425341263413429, -0.013467282988131046, 0.017727745696902275, -0.00883749220520258, -0.017925601452589035, -0.037565939128398895, -0.015894295647740364, 0.01253077294677496, 0.011238125152885914, 0.05215439572930336, 0.005741072818636894, -0.006845759227871895, -0.011066650971770287, 0.026776283979415894, -0.009068322367966175, -0.0020675775595009327, 0.014482935890555382, -0.02574744075536728, 0.015142450109124184, -0.04582305997610092, -0.012596724554896355, -0.004906787071377039, -0.05022861436009407, 0.010182902216911316, -0.0011005646083503962, -0.016804426908493042, 0.08193806558847427, 0.0011813550954684615, -0.0031228004954755306, 0.013374951668083668, -0.0152743523940444, 0.024098655208945274, 0.015366684645414352, -0.010347780771553516, -0.03081251122057438, -0.029097773134708405, 0.0240195132791996, -0.006344528403133154, 0.004560541827231646, -0.03339780867099762, -0.016355955973267555, 0.00725465826690197, 0.006374206393957138, 0.015155640430748463, -0.006872139871120453, 0.004194511566311121, 0.00892322976142168, -0.0009159005712717772, 0.01869063638150692, -0.013572805561125278, -0.016382336616516113, 0.01565687172114849, 0.017292466014623642, -0.006760022137314081, -0.022898338735103607, -0.036774519830942154, 0.002915053628385067, -0.017200134694576263, -0.025074737146496773, -0.009747622534632683, -0.010822630487382412, 0.02539130300283432, 0.016751665621995926, 0.001975245540961623, 0.020431755110621452, -0.010018023662269115, -0.04110093414783478, 0.005068367812782526, -0.03421560674905777, -0.03603586554527283, -0.02461307682096958, 0.006753426976501942, -0.005398124922066927, 0.02068237029016018, -0.03629967197775841], "359df20b-7775-474e-b3a4-bfbbc0e8a56c": [-0.00014385978283826262, 0.012496192939579487, 0.005643761716783047, -0.023327989503741264, -0.034476812928915024, 0.0027739964425563812, -0.018916012719273567, 0.0009667707490734756, -0.011875346302986145, -0.011419618502259254, -0.0060136280953884125, 0.01948402263224125, -0.011307337321341038, 0.018982060253620148, 0.002698041731491685, -0.005600831005722284, 0.024648940190672874, -0.006347167771309614, -0.000558514439035207, -0.014596505090594292, -0.02059362083673477, -0.00022889598039910197, 0.0074435570277273655, 0.003241282654926181, 0.0015521170571446419, 0.015230560675263405, -0.011109194718301296, -0.007245414424687624, -0.0007653257925994694, 0.00735109020024538, 0.017093101516366005, -0.009775035083293915, -0.012014046311378479, -0.00889660231769085, -0.03680168464779854, 0.009107954800128937, -0.009834477677941322, -0.011485666036605835, -0.01771394908428192, -0.02561323344707489, 0.02710590697824955, 0.02940436080098152, -0.012258422560989857, 0.007886075414717197, -0.023420454934239388, 0.026471851393580437, 0.012813221663236618, -0.009022093378007412, -0.01883675716817379, -0.0008173382375389338, 0.026379384100437164, 0.03849250078201294, -0.035454314202070236, -0.018929222598671913, 0.009702382609248161, -0.020184125751256943, 0.01089123822748661, 0.017119521275162697, -0.0032495385967195034, 0.0033915408421307802, 0.010290205478668213, 0.004917238838970661, -0.03806979954242706, -0.028347600251436234, -0.023024169728159904, 0.0199859831482172, 0.004795050714164972, 0.0030712103471159935, 0.01656472124159336, 0.010739329271018505, 0.03093666397035122, 0.001969867618754506, 0.0060136280953884125, 0.02043510600924492, 0.015256980434060097, 0.003923223353922367, -0.005412595346570015, -0.009788244031369686, 0.0019186808494850993, 0.012747174128890038, 0.0007645001751370728, -0.0252433679997921, -0.01788567192852497, 0.015666475519537926, 0.03270673751831055, 0.009557077661156654, 0.01028360053896904, 0.013843562453985214, 0.01553437951952219, -0.006003720685839653, -0.016485463827848434, 0.007430347613990307, 0.0071727619506418705, 0.020170915871858597, -0.007014248054474592, 0.029668550938367844, -0.02903449535369873, 0.024265863001346588, -0.01822911947965622, -0.013566163368523121, -0.01595708355307579, 0.019127365201711655, -0.035084448754787445, -0.00850692205131054, -0.02680208906531334, -0.001016306458041072, 0.018506519496440887, -0.016445836052298546, 0.016379788517951965, -0.009543868713080883, -0.02273356169462204, 0.03336721286177635, -0.0008800833602435887, -0.04441036283969879, 0.01021755300462246, -0.02052757330238819, -0.0004928797134198248, -0.029827065765857697, -0.022139133885502815, -0.005831997375935316, 0.018110234290361404, 0.002876369981095195, 0.0321783572435379, -0.01686853915452957, 0.03223119676113129, -0.03164997696876526, 0.011564923450350761, -0.02130693383514881, -0.004861098248511553, -0.018308376893401146, 0.0296421330422163, 0.004831376951187849, -0.006733546033501625, 0.021795686334371567, 0.004692677408456802, 0.02466214820742607, 0.0005964917945675552, 0.0032643992453813553, -0.009358935058116913, -0.022614674642682076, 0.023261941969394684, 0.022878864780068398, -0.0024305491242557764, 0.026656784117221832, -0.007628490217030048, -0.002042519859969616, 0.018242329359054565, -0.0012664614478126168, -0.013064201921224594, -0.009669358842074871, 0.01578536070883274, -0.008163475431501865, -0.007159552536904812, -0.003728383220732212, 0.007549232803285122, -0.008493713103234768, -0.011082775890827179, -0.022680722177028656, 0.023697854951024055, -0.003360168309882283, 0.04129291698336601, 0.022310856729745865, 0.0066047534346580505, 0.011650784872472286, 0.0020606829784810543, 0.0369337797164917, 0.01346709206700325, 0.0031554209999740124, -0.019840678200125694, 0.02781921997666359, 0.013883191160857677, 0.0016536650946363807, -0.02316947467625141, 0.01131394226104021, 0.010699700564146042, 0.008731483481824398, -0.01560042705386877, 0.021254096180200577, -0.022112714126706123, 0.0067137316800653934, -0.013658629730343819, -0.006228282582014799, 0.011518689803779125, 0.05384194850921631, -0.027317259460687637, -0.02043510600924492, 0.013480301015079021, -0.006948200520128012, 0.011393199674785137, 0.002686483319848776, 0.03585059940814972, 0.01697421632707119, -0.01427947636693716, -0.03273315727710724, -0.6196843981742859, 0.003348609898239374, -0.006518891546875238, 0.009768430143594742, 0.01630053110420704, 0.023195894435048103, 0.0018526333151385188, -0.0009808058384805918, -0.01995956525206566, 0.010164715349674225, -0.004098249599337578, 0.01124789472669363, 0.028215505182743073, -0.006416517775505781, 0.007654909044504166, -0.008434269577264786, 0.02113521099090576, -0.01684212125837803, -0.006492472719401121, -0.0009312701877206564, -0.004260065965354443, 0.029827065765857697, -0.011862137354910374, -0.001119505730457604, 0.016274111345410347, 0.023433664813637733, -0.0019335414981469512, 0.0025378763675689697, 0.012852850370109081, 0.029483618214726448, -0.04591624438762665, -0.012007441371679306, -0.03046112135052681, 0.017370501533150673, 0.03159714117646217, 0.010541186667978764, -0.01623448356986046, 0.00865883193910122, 0.013209506869316101, 0.016353368759155273, -0.014239847660064697, -0.037488579750061035, 0.01762148179113865, 0.007694537751376629, 0.035084448754787445, -0.038201894611120224, -0.017912091687321663, 0.013896401040256023, 0.004266670439392328, -0.013869982212781906, 0.019906725734472275, 0.002159754280000925, 0.006030139978975058, -0.01446441002190113, 0.013037783093750477, 0.004768631886690855, 0.005336640868335962, -0.007615280337631702, 0.016934586688876152, -0.016815701499581337, -0.0070406668819487095, 0.014675761573016644, -0.021227676421403885, -0.0027112511452287436, -0.025230158120393753, 0.004927145782858133, -0.012456565164029598, -0.0074435570277273655, 0.0016619210364297032, -0.016828911378979683, -0.005439014174044132, 0.006654289085417986, -0.010686490684747696, -0.0099929915741086, 0.025771748274564743, 0.029457200318574905, 0.01253582164645195, 0.005247476510703564, 0.01764790154993534, 0.004137877840548754, 0.007687932811677456, -0.005554597359150648, 0.0014142427826300263, -0.0022357089910656214, 0.028743885457515717, 0.012681126594543457, -0.005590923596173525, 0.0019153784960508347, -0.0024107350036501884, 0.0004615071229636669, 0.024979177862405777, 0.017423339188098907, -0.009121164679527283, 2.5580518922652118e-05, -0.0028813236858695745, -0.005313524045050144, -0.001035295077599585, 0.010580814443528652, 0.00815026555210352, -0.020038820803165436, -0.018110234290361404, 0.00023302395129576325, 0.024847082793712616, 0.01809702441096306, 0.009524053893983364, 0.004593606106936932, -0.007007643114775419, 0.01025057677179575, 0.037964120507240295, -0.02433191053569317, -0.02489992044866085, -0.03225761651992798, -0.005310221575200558, 0.007753980346024036, -0.011228080838918686, -0.017700739204883575, 0.019867097958922386, 0.0029820462223142385, 0.013592582195997238, -0.0177932046353817, 0.008110636845231056, 0.025150900706648827, 0.012866059318184853, -0.018625404685735703, 0.020012402907013893, 0.01089123822748661, 0.01079216692596674, 0.011802693828940392, -0.01004583016037941, 0.006152327638119459, 0.018863175064325333, 0.006244794465601444, 0.02147865854203701, -0.017634691670536995, -0.01822911947965622, -0.015838198363780975, -0.006142420694231987, -0.006238189525902271, 0.02686813659965992, -0.0012648102128878236, -0.01653830148279667, 0.002207638695836067, 0.006363679654896259, -0.028743885457515717, -0.016406206414103508, -0.026313336566090584, -0.04644462466239929, -0.006901967339217663, -0.013394439592957497, -0.008493713103234768, 0.014054914936423302, 0.00921363104134798, -0.014424781315028667, 0.01948402263224125, 0.006515589077025652, -0.00992694403976202, -0.019893517717719078, -0.009874106384813786, -0.022442951798439026, -0.0019269367912784219, -0.0012070186203345656, 0.03392201289534569, -0.0031306531745940447, -0.004933750722557306, -0.01911415532231331, -0.02916659042239189, -0.01014490146189928, -0.010409091599285603, -0.014054914936423302, -0.03397485241293907, 0.02385636977851391, 0.014411571435630322, -0.009953362867236137, -0.016855331137776375, -0.012773592956364155, 0.0181234423071146, -0.0291401706635952, 0.011472456157207489, -0.001270589418709278, -0.003269352950155735, -0.010640257969498634, -0.0023265243507921696, 0.018823547288775444, -0.005614040419459343, -0.0008833857718855143, 0.019563280045986176, 0.008632412180304527, 0.013619001023471355, -0.028743885457515717, 0.007370904553681612, 0.025969890877604485, 0.012800011783838272, -0.012370702810585499, -0.012126327492296696, -0.02225801907479763, 0.016075968742370605, 0.0003304440760985017, -0.010732724331319332, 0.009233444929122925, 0.0037184760440140963, 0.023222312331199646, -0.008843764662742615, 0.009497635066509247, -0.05431748926639557, 0.004018992185592651, -0.019735002890229225, 0.0228656567633152, 0.008718274533748627, -0.01258866023272276, 0.01546833198517561, 0.009484426118433475, -0.004345927853137255, -0.021835314109921455, -0.0021845221053808928, 0.016379788517951965, 0.03212552145123482, -0.008275755681097507, 0.015877826139330864, -0.012747174128890038, 0.00639340141788125, 0.012007441371679306, 0.0063967034220695496, 0.016723236069083214, 0.010442115366458893, -0.03553357347846031, -0.011914975009858608, 0.02940436080098152, -0.013202901929616928, -0.014953161589801311, -0.0433536022901535, 0.002407432533800602, -0.009550473652780056, 0.0145700853317976, 0.012595264241099358, 0.016551511362195015, 0.006650986615568399, 0.055479928851127625, -0.020620040595531464, 0.016247693449258804, 0.005386176519095898, -0.008460689336061478, 0.03180849179625511, -0.01036946289241314, -0.02368464507162571, 0.018863175064325333, -0.0008536643581464887, 0.03801696002483368, 0.013235925696790218, -0.0013250786578282714, 0.011525294743478298, -0.0010204344289377332, -0.0032511898316442966, -0.024741405621170998, -0.0003007226623594761, -0.030038418248295784, -0.026247289031744003, 0.01595708355307579, -0.002371106529608369, 0.0033387027215212584, 0.01421342883259058, 0.02039547823369503, 0.00018482989980839193, -0.0007566570420749485, -0.01170362252742052, 0.010092062875628471, 0.02242974191904068, -0.011908370070159435, -0.028400439769029617, -0.021372981369495392, -0.019523650407791138, -0.03991913050413132, -0.05204545706510544, -0.049588486552238464, 0.004824772477149963, 0.01762148179113865, -0.009728801436722279, 0.009484426118433475, 0.02853253483772278, 0.0009775034850463271, -0.0019995891489088535, -0.0008643970941193402, -0.03936433047056198, 0.022786399349570274, 0.02394883520901203, -0.015917455777525902, -0.024279072880744934, -0.022469371557235718, 0.013196296989917755, 0.0020557295065373182, 0.016115598380565643, -0.019946355372667313, 0.020620040595531464, -0.01307741180062294, 0.01684212125837803, -0.009623125195503235, 0.009742011316120625, 0.02303737960755825, -0.0069085718132555485, 0.028294762596488, -0.019695375114679337, -0.00500640319660306, 0.007978541776537895, -0.023116637021303177, 0.0030282794032245874, 0.039047300815582275, 0.005303617101162672, 0.017396919429302216, 0.0011624365579336882, 0.0042996942065656185, 0.0032627482432872057, -0.004322811029851437, -0.02043510600924492, -0.014200219884514809, -0.015019209124147892, 0.013216111809015274, 0.004960169550031424, 0.009953362867236137, -0.0001321982708759606, -0.004986588843166828, 0.009464611299335957, -0.006231584586203098, -0.0019467510282993317, -0.02483387291431427, 0.012984945438802242, 0.04293089732527733, 0.035824183374643326, -0.0010542836971580982, 0.00982787273824215, -0.008401245810091496, -0.005402688402682543, -0.013196296989917755, 0.0005680088070221245, 0.0039100139401853085, -0.00902869738638401, -0.037382904440164566, 0.031042341142892838, 0.0025180622469633818, 0.0064099133014678955, 0.005620644893497229, -0.003563264384865761, -0.03283883258700371, -0.02388278767466545, -0.006703824736177921, -0.030144093558192253, 0.03537505865097046, 0.006882152985781431, 0.027396516874432564, 0.04953565075993538, -0.0010196088114753366, 0.013414253480732441, 0.010772353038191795, -0.014437990263104439, 0.012905688025057316, -0.02890240028500557, -0.006079675629734993, 0.010911052115261555, 0.01995956525206566, 0.03986629098653793, -0.008361618034541607, 0.022746769711375237, 0.019021689891815186, -0.02145223878324032, 0.03106875903904438, 0.0017353988951072097, -0.00037502613849937916, 0.004194018431007862, 0.016036340966820717, 0.01243675034493208, 0.001196285942569375, 0.007621885277330875, -0.010884633287787437, 0.012364097870886326, -0.04454245790839195, -0.020752135664224625, -0.004246856551617384, -0.0010047480463981628, -0.040130481123924255, -0.015587218105793, 0.03933791071176529, 0.024820663034915924, 0.0020986604504287243, -0.0049964957870543, -0.0013151714811101556, -0.032204777002334595, 0.014371942728757858, -0.012727359309792519, 0.01265470776706934, -0.006211770698428154, 0.016287321224808693, -0.02595668099820614, 0.010257181711494923, 0.04271954298019409, -0.03923223540186882, -0.017053473740816116, 0.011842322535812855, -0.009418378584086895, -0.00943819247186184, -0.007357695139944553, 0.035216543823480606, 0.03482025861740112, -0.007027457468211651, 0.0019351927330717444, 0.0012194025330245495, 0.01504562795162201, -0.007053876295685768, -0.023063799366354942, 0.015706103295087814, -0.017766786739230156, -0.007740770932286978, -0.001991333207115531, 0.011630970984697342, -0.01623448356986046, -0.018281957134604454, 0.03106875903904438, -0.009953362867236137, -0.008546550758183002, -0.02225801907479763, 0.010845004580914974, -0.0031917470041662455, 0.02290528453886509, -0.005643761716783047, -0.005858416203409433, 0.013374625705182552, -0.009458006359636784, 0.001737050130032003, 0.004339322913438082, -0.01285945437848568, 0.011353570967912674, -0.024080930277705193, -0.03822831064462662, 0.027422934770584106, 0.007370904553681612, 0.014490828849375248, -0.008956045843660831, 0.015877826139330864, 0.003649126272648573, 0.02361859753727913, 0.008460689336061478, 0.007218995131552219, 0.01751580648124218, 0.004098249599337578, 0.019365137442946434, -0.0029126962181180716, -0.015389075502753258, 0.014860695227980614, -0.03920581564307213, -0.003843966405838728, 0.006578334141522646, 0.008863578550517559, -0.0023859671782702208, -0.00035995905636809766, -0.03619404882192612, -0.007965332828462124, 0.007119923830032349, 0.0393114909529686, 0.028030572459101677, 0.004088342189788818, -0.02381674014031887, -0.012516007758677006, 0.025996308773756027, -0.014385152608156204, 0.015798570588231087, -0.023909207433462143, 0.01758185401558876, -0.007820027880370617, 0.013427463360130787, 0.015072046779096127, 0.0009428285411559045, -0.036035533994436264, -0.03500519320368767, -0.0073114619590342045, 0.01056760549545288, -0.0011929835891351104, 0.015204141847789288, 0.0259170513600111, -0.004692677408456802, -0.012430145405232906, -0.00629433011636138, 0.012278236448764801, 0.016340158879756927, -0.017938509583473206, 0.010019410401582718, 0.043247923254966736, 0.03212552145123482, 0.022310856729745865, -0.00696140993386507, 0.04808260500431061, -0.003062954405322671, 0.0013102178927510977, 0.01911415532231331, -0.0362468846142292, 0.001832819078117609, -0.005320128984749317, -0.00367554510012269, 0.02314305491745472, -0.004781841300427914, 0.009986386634409428, 0.013685048557817936, -0.009530658833682537, 0.036537494510412216, 0.008242731913924217, 0.01317648310214281, -0.035322219133377075, -0.03682810440659523, -0.02890240028500557, 0.03278599679470062, 0.003926525823771954, 0.018083814531564713, -0.015441913157701492, 0.0011880300007760525, 0.009497635066509247, -0.006224980112165213, 0.009358935058116913, -0.01133375708013773, 0.011749856173992157, 0.01751580648124218, 0.005452224053442478, 0.02316947467625141, 0.010237367823719978, -0.028955237939953804, -0.006413215305656195, -0.029483618214726448, 0.008744693361222744, -0.018506519496440887, -0.02470177784562111, 0.024688567966222763, -0.016683606430888176, -0.01795171946287155, -0.008209708146750927, 0.007635094691067934, -0.029827065765857697, -0.02855895273387432, 0.0287967249751091, -0.008401245810091496, -0.020382268354296684, -0.023724274709820747, -0.0274493545293808, -0.028585372492671013, 0.006987828761339188, 0.013057596981525421, 0.010125086642801762, 0.020038820803165436, -0.03487309813499451, -0.028400439769029617, 0.004055318422615528, 0.004946960136294365, 0.0393114909529686, 0.017251616343855858, 0.03709229454398155, 0.008295570500195026, 0.014517247676849365, -0.027502192184329033, -0.013552953489124775, -0.002333129057660699, 0.0036623356863856316, 0.02487350068986416, 0.005514969117939472, 0.0034146574325859547, 0.010197739116847515, -0.020844601094722748, 0.008004960604012012, -0.007879470475018024, -0.025520766153931618, 0.013341601938009262, 0.012337679043412209, -0.00228689587675035, -0.00542910723015666, 0.026339756324887276, -0.030751731246709824, 0.01991993561387062, -0.02134656347334385, -0.011498875916004181, -0.0030035115778446198, 0.004124668426811695, -0.00239257188513875, 0.006835919804871082, -0.006475960835814476, 0.012265026569366455, 0.0003376680251676589, 0.016419416293501854, -0.014741809107363224, 0.011294128373265266, -0.05616682022809982, 0.02639259397983551, -0.012965130619704723, 0.014134172350168228, -0.02916659042239189, -0.01167059876024723, 0.0014703832566738129, -0.008156870491802692, 0.01385677233338356, -0.013156668283045292, 0.005221057683229446, 0.02615482360124588, -0.0016033038264140487, 0.0019599604420363903, 0.009458006359636784, 0.0016776073025539517, -0.03093666397035122, -0.001561198616400361, -0.014728600159287453, 0.00607307069003582, 0.006023535039275885, -0.012549031525850296, 0.02690776437520981, 0.026960602030158043, -0.009451402351260185, -0.016419416293501854, -3.0314786272356287e-05, 0.006548612844198942, 0.001240042387507856, -0.0032660504803061485, 0.024543263018131256, -0.019497232511639595, 0.007100109942257404, -0.018480099737644196, -0.011340361088514328, -0.0015067093772813678, 0.012965130619704723, -0.01630053110420704, -0.0024437587708234787, 0.02097669616341591, -0.031148016452789307, 0.01560042705386877, -0.007938913069665432, -0.005191335920244455, -0.010138296522200108, 0.012938711792230606, 0.013196296989917755, -0.0007108365534804761, 0.013869982212781906, -0.015679683536291122, -0.02307700738310814, -0.006697219796478748, -0.004662955645471811, 0.004302996676415205, 0.011294128373265266, -0.01704026386141777, 0.005581016652286053, -0.007740770932286978, 0.019536860287189484, 0.00292590563185513, -0.02771354466676712, 0.02571890875697136, -0.055110059678554535, 0.011459247209131718, -0.0009180607157759368, -0.0006782255950383842, 0.0032330267131328583, -0.004676165524870157, -0.0033882383722811937, 0.004339322913438082, -0.015217351727187634, -0.009411773644387722, -0.0002332303556613624, -0.02344687469303608, 0.012185770086944103, 0.000881734536960721, -0.04005122557282448, 0.007476580794900656, -0.0028813236858695745, 0.001597524737007916, -0.018414052203297615, 0.004094947129487991, -0.01877070963382721, 0.007086900062859058, 0.040104061365127563, -0.0034443787299096584, -0.01701384410262108, -0.003952944651246071, -0.008104031905531883, 0.016406206414103508, 0.012819826602935791, -0.021227676421403885, 0.0027376702055335045, 0.030276188626885414, 0.029721390455961227, 0.0019038200844079256, -0.03511086851358414, 0.005561202298849821, -0.025533976033329964, -0.023354407399892807, 0.025084853172302246, 0.015455123037099838, 0.03717155009508133, 0.035692088305950165, -0.004864400718361139, 0.014715390279889107, 0.010039225220680237, 0.013698258437216282, -0.026683203876018524, 0.012885874137282372, 0.010587419383227825, 0.03981345146894455, 0.02110879123210907, 0.013004759326577187, -0.01972179301083088, -0.025996308773756027, -0.0045077442191541195, 0.006479262840002775, 0.018519727513194084, 0.012060279957950115, 0.005234267096966505, -0.0007133133476600051, -0.043961238116025925, 0.00568339042365551, -0.003005162812769413, 0.018440471962094307, -0.003976061474531889, 0.0002837979991454631, 0.0019665653817355633, -0.00815026555210352, 0.0210031159222126, -0.03936433047056198, 0.019431184977293015, -0.0024586194194853306, -0.007423742674291134, 0.031227273866534233, 0.015864618122577667, -0.012681126594543457, 0.007152947597205639, -0.01859898492693901, -0.0013382881879806519, -0.010547790676355362, 0.010871424339711666, 0.04581056907773018, -0.023473292589187622, -0.0032759576570242643, -0.020342640578746796, 0.012000836431980133, -0.02818908728659153, -0.00032280731829814613, 0.034476812928915024, 0.0233808271586895, -0.0016379788285121322, 0.000212590501178056, 0.016789283603429794, -0.008612598292529583, 0.012852850370109081, -0.019867097958922386, -0.00517482403665781, -0.02277318947017193, -0.00035995905636809766, -0.01017792522907257, 0.007991751655936241, -8.023743430385366e-05, 0.026590736582875252, -0.025401880964636803, -0.006350470241159201, -0.03344647213816643, -0.015151304192841053, -0.019827470183372498, 0.029457200318574905, 0.0015380819095298648, -0.005422502290457487, -0.008242731913924217, -0.0010600629029795527, -0.001542209880426526, -0.04858456552028656, -0.007245414424687624, 0.19423258304595947, -0.022310856729745865, 0.03336721286177635, 0.025428300723433495, 0.010706305503845215, -8.101142884697765e-05, -0.005732926074415445, -0.014807856641709805, -0.021293723955750465, 0.0005370490252971649, -0.001138494350016117, -0.000908153597265482, -0.030434703454375267, 0.00815026555210352, -0.005831997375935316, 0.0052144527435302734, -0.005290407221764326, -0.04485948383808136, 0.010164715349674225, -0.01690816879272461, 0.0019764723256230354, 0.012482983991503716, -0.05315505340695381, -0.011472456157207489, 0.018717870116233826, 0.007001038640737534, -0.02472819574177265, 0.004735608119517565, 0.011168638244271278, 0.0016321996226906776, -0.033525727689266205, -0.011228080838918686, -0.007080295588821173, 0.0031554209999740124, -0.04020973667502403, -0.01130073331296444, 0.0056173428893089294, 0.01204707007855177, 0.025388671085238457, -0.004246856551617384, 0.014068124815821648, -0.005336640868335962, -0.008130451664328575, -0.0049667744897305965, 0.006485867779701948, 0.0075756520964205265, -0.009121164679527283, -0.0036920569837093353, 0.001700724009424448, 0.013936029747128487, 0.0008086694870144129, -5.789479109807871e-05, 0.015917455777525902, -0.00011599597928579897, 0.007971936836838722, -0.013031178154051304, 0.006122606340795755, 0.015415494330227375, 0.02781921997666359, 0.02768712490797043, -0.016419416293501854, 0.038941625505685806, -0.02223159931600094, 0.007998356595635414, -0.009477821178734303, 0.02208629436790943, -0.040130481123924255, -0.003801035461947322, -0.007727561518549919, -0.002466875361278653, -0.013216111809015274, -0.018572567030787468, 0.0027954617980867624, 0.010574210435152054, -0.021663591265678406, -0.013539744541049004, 0.024384750053286552, 0.007456766441464424, 0.01504562795162201, 0.01433231495320797, -0.046603139489889145, -0.015455123037099838, -0.022508999332785606, 0.028374020010232925, -0.03571850433945656, -0.02392241731286049, 0.04610117897391319, -0.025864213705062866, -0.0037052666302770376, -0.02710590697824955, -0.015983503311872482, -0.039020881056785583, 0.002422293182462454, 0.003254492301493883, 0.012298050336539745, 0.02998558059334755, -0.005155010148882866, 0.02784563973546028, -0.012383912689983845, -0.0018212606664747, -0.009134373627603054, 0.04483306407928467, 0.018849965184926987, -0.0009675963665358722, 0.015666475519537926, -0.006155630107969046, -0.0025461323093622923, 0.0004309601499699056, -0.009484426118433475, -0.029087333008646965, -0.007912494242191315, -0.028717467561364174, 0.010765748098492622, 0.00028400440351106226, 0.007608675863593817, -0.010930866934359074, -0.033869173377752304, -0.0006179572083055973, 0.016749653965234756, 0.009312702342867851, -0.011234685778617859, -0.009398563764989376, -0.0017964928410947323, -0.010125086642801762, 0.00496347201988101, -0.017608271911740303, -0.05193978175520897, 0.017489386722445488, -0.014411571435630322, -0.013189692050218582, 0.02472819574177265, -0.04784483462572098, -0.015138094313442707, 0.01017792522907257, -0.02301095984876156, -0.0007607850129716098, -0.010627048090100288, -0.034741003066301346, 0.017225196585059166, -0.004884215071797371, -0.017132729291915894, 0.011201662011444569, 0.002460270654410124, -0.00325284106656909, 0.01569289341568947, -0.027158744633197784, 0.006759964860975742, 0.005224359687417746, 0.00346419308334589, -0.02723800204694271, -0.026590736582875252, -0.013936029747128487, 0.004989891313016415, -0.04102872684597969, -0.00824933685362339, -0.043723467737436295, -0.001486895140260458, -0.026894554495811462, 0.006855733692646027, 0.012852850370109081, -0.01636657863855362, -0.005528178531676531, 0.0028978355694562197, -0.009781640022993088, -0.019127365201711655, -0.033420052379369736, -0.16411490738391876, 0.004025597125291824, 0.011663994751870632, -0.02760786935687065, 0.006502379663288593, 0.0009065023623406887, 0.03035544604063034, -0.006406610831618309, 0.00011578958219615743, -0.00013828702503815293, -0.003959549590945244, -0.01853293739259243, -0.017119521275162697, -0.012370702810585499, -0.003231375478208065, -0.009464611299335957, 0.012443355284631252, 0.009524053893983364, 0.029245847836136818, 0.03373707830905914, 0.016855331137776375, -0.017238406464457512, 0.024107350036501884, 0.005197940859943628, -0.0005052636261098087, -0.014517247676849365, 0.019048107787966728, 0.014253057539463043, -0.0027954617980867624, -0.028506115078926086, 0.010310020297765732, 0.017529014497995377, 0.035190124064683914, -0.012489588931202888, 0.011829113587737083, 0.020118078216910362, 0.0035599619150161743, -0.03381633758544922, 0.0031438625883311033, -0.0056800879538059235, 0.020897438749670982, 0.043010152876377106, -0.02795131504535675, -0.007833237759768963, 0.01126770954579115, 0.015521170571446419, 0.032072681933641434, -0.039047300815582275, -0.01546833198517561, -0.011135614477097988, 0.026075566187500954, -0.010765748098492622, -0.0035929856821894646, 0.009821267798542976, 0.03072531148791313, -0.005201243329793215, -0.0011029938468709588, -0.007945518009364605, -0.014477618969976902, 0.011327152140438557, 0.008255941793322563, -0.03299734741449356, -0.011498875916004181, 0.0056041330099105835, -0.015983503311872482, -0.01268773153424263, -0.031729236245155334, 0.01866503246128559, -0.03878311067819595, 0.01175646111369133, -0.002709600143134594, 0.01686853915452957, 0.007595466449856758, 0.01304438803344965, 0.02301095984876156, -0.008830554783344269, -0.02703985944390297, 0.028162667527794838, -0.005468735937029123, -0.03777918964624405, 0.0012474728282541037, 0.018717870116233826, -0.01961611770093441, -0.009609916247427464, 0.013202901929616928, 0.012139536440372467, -0.005775856785476208, -0.009187212213873863, 0.002481736009940505, -0.00435253232717514, 0.035084448754787445, -0.032548222690820694, -0.010039225220680237, -0.012430145405232906, -0.017225196585059166, 0.018757499754428864, 0.012066883966326714, -0.011624366044998169, 0.0259170513600111, -0.011881951242685318, 0.009299492463469505, -0.028875980526208878, -0.0013919518096372485, 0.01717235893011093, 0.011386594735085964, 0.009266468696296215, 0.0011624365579336882, 0.019351927563548088, 0.03381633758544922, 0.013883191160857677, -0.012165955267846584, -0.012073488906025887, 0.008236126974225044, 0.018823547288775444, 0.0063801915384829044, 0.025428300723433495, -0.01781962439417839, -0.012516007758677006, 0.041662782430648804, -0.006314144004136324, 0.03703945502638817, -0.019351927563548088, 0.013909609988331795, -0.012093303725123405, -0.005349850282073021, 0.001674304949119687, -0.11698339134454727, -0.03130653128027916, 0.0014778135810047388, 0.03838682547211647, -0.005772554315626621, 0.016168436035513878, -0.01948402263224125, 0.024305492639541626, 0.0182951670140028, 0.028215505182743073, -0.011003519408404827, -0.0009494333062320948, 0.01034964807331562, 0.0003938084118999541, -0.024265863001346588, -0.005244174040853977, -0.015019209124147892, 0.018519727513194084, -0.032072681933641434, 0.03188774734735489, 0.02998558059334755, 0.019801050424575806, -0.01021755300462246, -0.008586179465055466, -0.012278236448764801, 0.012509402818977833, -0.02178247645497322, 0.03445039317011833, 0.013374625705182552, 0.007476580794900656, -0.008163475431501865, -0.017027053982019424, 0.0002034057688433677, -0.022548627108335495, 0.0053696646355092525, 0.02554718591272831, 0.00454076798632741, -0.014887114055454731, 0.004626629874110222, 0.003417959902435541, -0.0030381865799427032, 0.012760383076965809, 0.014834275469183922, -0.01427947636693716, 0.020553993061184883, -0.03212552145123482, -0.01208009384572506, 0.009398563764989376, 0.001520744408480823, -0.018083814531564713, -0.023697854951024055, -0.014094543643295765, -0.024807453155517578, 0.009543868713080883, -0.007582256570458412, 0.007694537751376629, 0.007932309061288834, -0.008130451664328575, -0.03439755365252495, -0.025626443326473236, -0.013334996998310089, 0.02585100382566452, -0.017766786739230156, 0.01818948984146118, 0.01265470776706934, 0.022759979590773582, -0.02517732046544552, -0.00710671441629529, 0.027660707011818886, -0.027660707011818886, -0.007205785717815161, 0.03083098866045475, -0.008321989327669144, 0.04285163804888725, -0.006720336619764566, 0.025877423584461212, 0.00892962608486414, 0.009867501445114613, 0.024437587708234787, 0.009101349860429764, -0.011901765130460262, -0.018995270133018494, -0.011815903708338737, -0.03246896713972092, 0.010389276780188084, 0.017938509583473206, 0.008612598292529583, 0.023367617279291153, 0.023473292589187622, -0.021372981369495392, -0.00303653534501791, 0.015389075502753258, 0.023697854951024055, 0.001297008479014039, -0.005399385932832956, 0.006901967339217663, 0.007720956578850746, -0.018308376893401146, 0.01517772302031517, 0.015336236916482449, -0.030619636178016663, 0.00510877650231123, -0.035929858684539795, 0.004223739728331566, -0.007225600071251392, -0.01421342883259058, 0.000825181370601058, 0.008731483481824398, 0.009874106384813786, -0.020210545510053635, -0.0017436548369005322, -0.013619001023471355, -0.036299724131822586, -0.007602070923894644, -0.011076170951128006, -0.0174497589468956, -0.004534163046628237, -0.021095581352710724, 0.010323229245841503, -0.004801655653864145, 0.02093706838786602, 0.04245535284280777, -0.004768631886690855, 0.00475212000310421, 0.0005271418485790491, -0.02260146662592888, -0.011862137354910374, 0.007516209036111832, 0.010693095624446869, 0.021425819024443626, -0.023909207433462143, -0.033869173377752304, 0.02961571328341961, 0.007060481235384941, -0.008018170483410358, -0.020659668371081352, -0.002587412018328905, -0.007879470475018024, -0.0020210545044392347, 0.019021689891815186, 0.009768430143594742, -0.013843562453985214, 0.00882395077496767, -0.03262748196721077, 0.004365741740912199, -0.013645419850945473, -0.0013201250694692135, -0.021425819024443626, -0.00012373592471703887, 0.007119923830032349, 0.000345304753864184, 0.018387632444500923, 0.020672878250479698, 0.014900323003530502, 0.003048093756660819, 0.001256554271094501, 0.01606276072561741, -0.04837321490049362, 0.012132931500673294, -0.02059362083673477, -0.02128051593899727, 0.014781437814235687, 0.010158110409975052, -0.012951921671628952, 0.01903489977121353, -0.019061317667365074, -0.020844601094722748, -0.03706587478518486, -0.01311043556779623, -0.0033552146051079035, 0.003305678954347968, -0.005567807238548994, -0.0014472665498033166, 0.0037779188714921474, 0.0332086980342865, -0.00253622536547482, 0.020052030682563782, -0.002856555860489607, -0.013975657522678375, -0.005022915080189705, 0.0091475835070014, 0.02141261100769043, 0.03994554653763771, 0.0038736877031624317, -0.018176281824707985, 0.015256980434060097, 0.03326153755187988, 0.006816105451434851, 0.008817345835268497, -0.0145700853317976, 0.011129009537398815, -0.004269972909241915, 0.002882974920794368, 0.011003519408404827, -0.027079489082098007, 0.005475340411067009, -0.0010534581961110234, 0.011776275001466274, -0.019087737426161766, -0.0013036131858825684, 0.007806818466633558, -0.0012986595975235105, 0.0022637792862951756, -0.0022043364588171244, -0.02842685766518116, 0.024516845121979713, -0.038809530436992645, -0.010693095624446869, -0.005498457234352827, -0.001664397888816893, 0.0024470610078424215, 0.04015690088272095, -0.01426626741886139, 0.010158110409975052, 0.015058837831020355, 0.013031178154051304, -0.009140978567302227, 0.0028747189790010452, -0.01130073331296444, 0.011578132398426533, -0.020844601094722748, 0.006987828761339188, 0.008156870491802692, 0.008817345835268497, 0.05038105696439743, 0.01985388807952404, 0.0250716432929039, -0.002556039486080408, 0.018863175064325333, -0.009510844945907593, -0.01623448356986046, 0.012945316731929779, -0.01439836248755455, -0.013440673239529133, -0.032574642449617386, -0.016894958913326263, -0.007978541776537895, -0.01785925216972828, 0.0287967249751091, 0.011287523433566093, -0.006353772711008787, 0.06853091716766357, -0.006314144004136324, 0.0020028913859277964, 0.011716832406818867, -0.010290205478668213, 0.029694970697164536, 0.037832025438547134, -0.0038637807592749596, -0.003082768525928259, -0.0005655320128425956, 0.040262576192617416, 0.0009931897511705756, -0.011459247209131718, -0.04454245790839195, -0.004418579861521721, 0.022244809195399284, -0.0060697682201862335, 0.04364420846104622, -0.02212592400610447, -0.0008363268570974469, 0.01968216523528099, 0.02574532851576805, 0.015732523053884506, -0.016934586688876152, -0.014860695227980614, 0.006565124727785587, 0.0022307555191218853, -0.022786399349570274, -0.032812412828207016, -0.03178207203745842, 0.017476176843047142, -0.006109396927058697, -0.039892710745334625, -0.04594266414642334, -0.00528380274772644, 0.002113521099090576, 0.01792529970407486, -0.011551713570952415, 0.001246647210791707, -0.01870466209948063, -0.014966370537877083, -0.0007913319859653711, -0.02537546306848526, -0.029562875628471375, -0.027264421805739403, 0.002698041731491685, -0.017608271911740303, 0.014173800125718117, -0.0332086980342865], "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e": [-0.00015834478836040944, -0.010695980861783028, 0.024959467351436615, -0.002115347422659397, -0.02458050101995468, -0.004472448956221342, -0.021823199465870857, 0.018451711162924767, -0.006664569489657879, -0.029376378282904625, -0.004547588527202606, 0.005279384553432465, -0.0012806428130716085, 0.01715799979865551, -0.0004941255901940167, 0.013695036992430687, 0.013969460502266884, -0.025665126740932465, 0.0071350098587572575, -0.004995160270482302, -0.01377344410866499, -0.00178538600448519, -0.015067154541611671, -0.013760375790297985, -0.017850592732429504, 0.016321660950779915, 0.0065208240412175655, -0.01025167666375637, 0.012845631688833237, -0.005325121805071831, 0.007324492558836937, -0.011708734557032585, -0.026540668681263924, 0.0013598662335425615, -0.02958546206355095, 0.006354209966957569, -0.016975050792098045, -0.013838782906532288, 0.01249933522194624, -0.005540740210562944, -0.005766159389168024, 0.008304576389491558, -0.0008020352106541395, 0.011421242728829384, 0.003240810474380851, 0.013048182241618633, -0.008964499458670616, -0.04179077222943306, -0.016347797587513924, 0.019235776737332344, 0.02715485543012619, 0.04009196162223816, -0.04845534265041351, -0.01264308113604784, 0.011035743169486523, 0.005269583780318499, 0.0026903299149125814, 0.011257895268499851, -0.005155240651220083, -0.014165477827191353, -0.0005190360243432224, -0.006174527574330568, -0.002878179308027029, -0.03387169539928436, -0.02987295389175415, 0.005635481793433428, 0.01264308113604784, 0.02746848203241825, 0.01476659532636404, 0.02414926514029503, 0.03627616912126541, 0.01670062728226185, -0.0017151465872302651, 0.015367713756859303, 0.01815115101635456, -0.005635481793433428, -0.029324106872081757, 0.014792731031775475, -0.0030709290876984596, 0.0014284721110016108, 0.0030055902898311615, -0.009095177054405212, -0.021104469895362854, 0.013172325678169727, 0.04040558636188507, 0.009807371534407139, -0.007193814963102341, 0.02424073964357376, 0.0014448068104684353, -0.019039761275053024, -0.0010421557817608118, 0.011564988642930984, 0.01333567313849926, 0.0033126831986010075, 0.007004332263022661, 0.028121870011091232, -0.033793289214372635, 0.03941243514418602, -0.007572780828922987, -0.009480677545070648, 0.0017919198144227266, 0.02092152088880539, -0.015158629044890404, -0.010186337865889072, -0.010499964468181133, 0.008258839137852192, -0.002971287351101637, 0.0032228422351181507, 0.001385185052640736, -0.00046472306712530553, -0.03167630732059479, 0.03875904530286789, 0.01679210178554058, -0.032826270908117294, 0.013838782906532288, -0.013257266953587532, 0.0015550662064924836, -0.022829419001936913, -0.01562906987965107, -0.0007914176676422358, -0.001390085439197719, 0.008376449346542358, 0.0036524455063045025, -0.015054087154567242, 0.030343392863869667, -0.02746848203241825, -0.007415967062115669, -0.009434940293431282, -0.01340754609555006, -0.037086371332407, 0.015485323965549469, 0.01815115101635456, -0.014936476945877075, 0.011682598851621151, -0.0008526729070581496, 0.01009486336261034, -0.018138084560632706, 0.00967015977948904, -0.011244827881455421, -0.026684414595365524, 0.02346973866224289, 0.008957965299487114, -0.00996418483555317, 0.0058805025182664394, 0.00241753994487226, 0.014152409508824348, 0.021457301452755928, 0.017706846818327904, -0.02780824340879917, -0.005560341756790876, -0.014675120823085308, 0.015393849462270737, 0.012094234116375446, -0.0012438896810635924, 0.010049126110970974, 0.010611040517687798, -0.017236405983567238, -0.0052761174738407135, 0.008971033617854118, -0.014897273853421211, 0.011375505477190018, 0.06204583868384361, -0.01296977512538433, 0.0005129104829393327, 0.002028773305937648, 0.020032912492752075, 0.011094548739492893, 0.00501149520277977, -0.03902040049433708, 0.009709362871944904, -0.009474143385887146, 0.02610943093895912, -0.023522010073065758, 0.016047239303588867, 0.009029838256537914, 0.022189097478985786, 0.013015512377023697, 0.022999299690127373, -0.027416210621595383, -0.006756043992936611, -0.015720544382929802, -0.0016408235533162951, 0.014256952330470085, 0.03355806693434715, -0.02424073964357376, 0.017719915136694908, 0.010891998186707497, -0.0016547080595046282, 0.013074317947030067, 0.017367085441946983, 0.029088886454701424, 0.027337804436683655, -0.0023080972023308277, -0.0035675049293786287, -0.6418895125389099, 0.018582388758659363, -0.0031542363576591015, -0.025743534788489342, 0.01446603611111641, 0.015994967892766, 0.01101614162325859, 0.017053456977009773, -0.012930572032928467, 0.022554995492100716, -0.0065828962251544, 0.010865862481296062, 0.01738015189766884, -0.015419985167682171, -0.005432931240648031, -0.021535707637667656, 0.017824456095695496, -0.033767152577638626, 0.006834451109170914, -0.0009506812784820795, 0.008585534058511257, 0.015041018836200237, -0.02152263931930065, -0.0181250162422657, -0.00013935565948486328, 0.015145561657845974, 0.0002878996019717306, 0.00241753994487226, 0.006625366397202015, 0.0404839925467968, -0.015158629044890404, -0.017510829493403435, 0.009983786381781101, 0.011264429427683353, 0.03021271526813507, 0.009938049130141735, -0.0037373860832303762, 0.019209641963243484, 0.020451081916689873, 0.024698110297322273, -0.006308472715318203, -0.01596883125603199, 0.020059047266840935, 0.011806742288172245, 0.02681509219110012, -0.02247658744454384, -0.0126692159101367, 0.008879559114575386, -0.0046292622573673725, -0.027390073984861374, 0.003101965179666877, 0.00045165527262724936, 0.0015215800376608968, -0.019288048148155212, 0.03316603600978851, -0.009251991286873817, 0.007017399650067091, -0.00555054098367691, 0.0006611481658183038, -0.0016383733600378036, 0.0017135131638497114, -0.010029523633420467, -0.0229339599609375, -0.014361494220793247, 0.0027164656203240156, 0.007527043577283621, -0.007533577270805836, 0.02128741890192032, -0.0058739688247442245, -0.012858699075877666, 0.03389783203601837, 0.021143674850463867, -0.020307336002588272, -0.024933330714702606, 0.012878300622105598, 0.029402513056993484, 0.021091403439641, -0.002375069772824645, 0.007853738032281399, -0.009519880637526512, 0.003301248885691166, 0.006756043992936611, -0.0007738578133285046, -0.006615565624088049, 0.030683156102895737, 0.0131657924503088, -0.0077753313817083836, 0.004335237201303244, 0.0012569574173539877, 0.00581189664080739, 0.01476659532636404, 0.026919635012745857, -0.009800837375223637, -0.021091403439641, 0.009924981743097305, 0.029794547706842422, -0.013825715519487858, -0.00011577239638427272, -0.00557014299556613, 0.006311739329248667, -0.00934346579015255, -0.007004332263022661, 0.0033812890760600567, 0.02613556757569313, 0.010284345597028732, 0.0253384318202734, 0.0029222830198705196, 0.014570578932762146, 0.025403771549463272, -0.020934589207172394, -0.0013361808378249407, -0.03287854418158531, -0.005939307622611523, 0.001371300546452403, -0.0032587784808129072, -0.02856617607176304, 0.023234520107507706, 0.01565520465373993, 0.005504803732037544, 0.004508385434746742, 0.019915303215384483, 0.012460132129490376, -0.004658665042370558, -0.01670062728226185, 0.02058175951242447, -3.476234633126296e-05, -0.0131657924503088, -0.012545072473585606, -0.03016044571995735, -0.0033714883029460907, -0.002687063068151474, 0.007291823159903288, -0.009251991286873817, -0.00535779120400548, -0.015354645438492298, -0.035152338445186615, -0.005958909168839455, -2.494874752301257e-05, 0.012505869381129742, 0.0004994343616999686, -0.028592310845851898, -0.0038549962919205427, 0.017994338646531105, -0.02186240255832672, -0.016752898693084717, -0.03902040049433708, -0.037530675530433655, -0.00019928370602428913, -0.02460663765668869, -0.0024894129019230604, 0.014570578932762146, 0.0012006026227027178, -0.02055562287569046, 0.010741718113422394, 0.003119933418929577, -0.008539796806871891, -0.020647097378969193, 0.006056917831301689, -0.008670474402606487, -0.00016150964074768126, -0.02783438004553318, 0.02749461680650711, -0.005165041424334049, -0.02230670675635338, -0.0034988990519195795, -0.015328510664403439, -0.0011475147912278771, 0.021274352446198463, -0.024737315252423286, -0.028069598600268364, 0.016060305759310722, 0.0007460888009518385, -0.005338189657777548, -0.014988748356699944, -0.018530117347836494, 0.03729545325040817, -0.03235583379864693, 0.008742347359657288, 0.008147763088345528, -0.01602110266685486, -0.006386879365891218, 0.011434311047196388, 0.0014668586663901806, -0.012211844325065613, 0.031388815492391586, 0.0024338746443390846, 0.00958521943539381, 0.028461633250117302, -0.002853677375242114, 0.009996854700148106, 0.02681509219110012, 0.023914044722914696, -0.02441062033176422, 0.0028210077434778214, -0.008330712094902992, 0.02995136007666588, 0.0020581758581101894, 0.007010865956544876, 0.003283280646428466, 0.03476030379533768, 0.026227042078971863, 0.020777776837348938, 0.03188539296388626, -0.028618445619940758, -0.006118989549577236, -0.021953877061605453, 0.023522010073065758, 0.008186966180801392, 0.026606008410453796, -0.0102647440508008, 0.021993080154061317, -0.018072744831442833, -0.01511942595243454, -0.01871306635439396, 0.027625294402241707, 0.014557510614395142, -0.013472884893417358, 0.02305157110095024, 0.009349999018013477, 0.001022554119117558, -0.00867700856178999, 0.027991192415356636, 0.028670717030763626, 0.012479733675718307, -0.02458050101995468, -0.010578370653092861, 0.03570118546485901, -0.01356435939669609, -0.00950027909129858, -0.016321660950779915, 0.002971287351101637, -0.00565508333966136, 0.018673863261938095, -0.005259783007204533, 0.015459188260138035, 0.001594269648194313, 0.05104276165366173, -0.011715267784893513, 0.02757302299141884, 0.009258524514734745, -0.009101711213588715, 0.02041187882423401, 0.01002299040555954, -0.010656777769327164, -0.003057861467823386, -0.00066523184068501, 0.037896573543548584, 0.006690705195069313, -0.016596084460616112, 0.01428308803588152, 0.0062104640528559685, -0.023887908086180687, -0.02856617607176304, 0.006399947218596935, -0.00914744846522808, -0.020908454433083534, 0.026462262496352196, 0.030813833698630333, -0.0021300488151609898, 0.008657407015562057, 0.014492171816527843, 0.0065404255874454975, -9.92334826150909e-05, 0.006932459305971861, 0.010578370653092861, 0.011114150285720825, -0.026240110397338867, -0.027259396389126778, -0.01497568003833294, 0.0034792975056916475, -0.03813179209828377, -0.03562277927994728, -0.027259396389126778, 0.018699998036026955, 0.01608644239604473, -0.007050069514662027, -0.006043849978595972, 0.01630859449505806, 0.02718099020421505, 0.005766159389168024, -0.03353193402290344, -0.013603562489151955, 0.010454227216541767, 0.035439830273389816, -0.002981088124215603, -0.003134634578600526, -0.01475352793931961, 0.0077818650752305984, -0.01645234040915966, 0.017458559945225716, -0.010532633401453495, 0.012826030142605305, 0.016373932361602783, 0.0006019347929395735, 0.006569828372448683, 0.0027883383445441723, 0.031441088765859604, -0.009702829644083977, 0.005478668492287397, 0.0025955885648727417, 0.014361494220793247, 0.004377707373350859, 0.0020402076188474894, 0.010918132960796356, 0.04414297267794609, 0.006439150311052799, 0.017732981592416763, -0.0008387883426621556, 0.011950488202273846, -0.014178545214235783, -0.011342836543917656, -0.008271907456219196, -0.025155482813715935, -0.029454784467816353, 0.040274910628795624, -0.021026063710451126, 0.0061614601872861385, -0.002028773305937648, 0.025246957316994667, 0.006971662398427725, -0.008415652438998222, -0.011813276447355747, -0.0059033711440861225, 0.003626310033723712, 0.035492099821567535, 0.020398810505867004, -0.026436125859618187, 0.006001379806548357, -0.018778406083583832, -0.005906638223677874, -0.01616484858095646, -0.010656777769327164, 0.022920893505215645, -0.004867749288678169, -0.031049054116010666, 0.023652687668800354, 0.025364568457007408, -0.012159572914242744, -0.0016187716973945498, 0.015223967842757702, -0.013048182241618633, -0.02499867044389248, 0.013361808843910694, -0.03439440578222275, 0.008931830525398254, -0.0037210513837635517, 0.04045785963535309, 0.03201606869697571, -0.03287854418158531, -0.0005786577821709216, 0.011747937649488449, 0.02033347077667713, -0.0003134226135443896, -0.02140503004193306, -0.02786051481962204, 0.017654575407505035, 0.029454784467816353, 0.015955764800310135, -0.012113835662603378, -0.0034858311992138624, 0.016413135454058647, 0.018164219334721565, 0.00155343278311193, -0.007331026718020439, 0.0038941996172070503, 0.02346973866224289, 0.008402585051953793, 0.01922271028161049, -0.013851850293576717, 0.022149892523884773, 0.0077818650752305984, 0.013100452721118927, 0.002785071497783065, 0.006644967943429947, 0.00838298350572586, -0.024789584800601006, -0.00899063516408205, -0.011506184004247189, 0.018673863261938095, 0.0033714883029460907, 0.0036328439600765705, -0.011970089748501778, -0.02814800664782524, -0.022463520988821983, -0.019941437989473343, -0.025403771549463272, 0.03402850776910782, -0.017536966130137444, 0.018935218453407288, -0.01924884505569935, 0.005174842197448015, -0.0005406795535236597, -0.02208455465734005, 0.0014905440621078014, 0.0034237592481076717, -0.005998112726956606, -0.015929628163576126, -0.03875904530286789, 0.0308661051094532, 0.02021586149930954, 0.0029271836392581463, -0.004109818022698164, -0.014910341240465641, 0.015171696431934834, -0.026540668681263924, -0.04991893470287323, 2.68502117251046e-05, -0.024894127622246742, -0.005844566039741039, 0.02033347077667713, 0.0074225012212991714, -0.00119978585280478, -0.029115021228790283, 0.019810760393738747, -0.013361808843910694, 0.008062822744250298, -0.02237204648554325, -0.011636861599981785, -0.004377707373350859, 0.037896573543548584, -0.0003222025407012552, 0.001646540709771216, 0.01138203963637352, -0.014858069829642773, 0.007984415628015995, 0.001529747387394309, -0.006050383672118187, 0.001153231947682798, -0.0015223968075588346, 0.0052663167007267475, 0.004658665042370558, 0.0181250162422657, -0.012316386215388775, -0.0077099925838410854, 0.003645911579951644, -0.027938921004533768, 0.016922779381275177, 0.006194129586219788, 0.016726763918995857, 0.0017363817896693945, -0.013139656744897366, 0.018098879605531693, -0.008291509002447128, -0.020228929817676544, 0.00012179582699900493, -0.014492171816527843, 0.01077438797801733, 0.002460010349750519, -0.0023195315152406693, 0.02825254760682583, 0.004233961924910545, -0.007206882815808058, 0.019144302234053612, -0.006504489574581385, 0.030082037672400475, -0.002172518987208605, 0.005018028896301985, -0.00027911970391869545, 0.00267889560200274, 0.026044093072414398, -0.01356435939669609, 0.02686736360192299, -0.028278684243559837, -0.0025188152212649584, -0.0019258646061643958, 0.007304891012609005, 0.001162216067314148, -0.01241439487785101, -0.017902864143252373, -0.03363647684454918, -0.02752075158059597, 0.018909083679318428, 0.013551292009651661, 0.04448273405432701, 0.01093120127916336, 0.0014243883779272437, -0.02644919417798519, -0.0029500522650778294, 0.038288604468107224, -0.009983786381781101, -0.011212158016860485, 0.00614512525498867, 0.0359625406563282, -0.006756043992936611, 0.009114779531955719, -1.2002197763649747e-05, 0.03120586834847927, 0.011290565133094788, -0.00297618773765862, 0.024110060185194016, -0.018699998036026955, -0.021927740424871445, -0.022345909848809242, 0.0020010042935609818, 0.025037873536348343, 0.015080222859978676, -0.014635917730629444, 0.011061878874897957, 0.013028580695390701, 0.03332284837961197, 0.00299415597692132, 0.02075164020061493, -0.039255622774362564, -0.02128741890192032, 0.011388573795557022, 0.00607325229793787, -0.003044793615117669, 0.007513975724577904, -0.01866079494357109, -0.023208383470773697, 0.004665198735892773, -0.008598601445555687, 0.0029451516456902027, -0.005753092002123594, 0.011336302384734154, -0.01679210178554058, 0.02553444914519787, 0.023195317015051842, 0.017942067235708237, -0.014296155422925949, 0.0016073373844847083, -0.009938049130141735, 0.0161387138068676, 0.013061249628663063, 0.004024877212941647, 0.012662682682275772, -0.023312926292419434, 0.0022835952695459127, -0.021927740424871445, -0.004518186207860708, 0.0003965255746152252, -0.010767853818833828, 0.01642620377242565, -0.02919342927634716, -0.00982697308063507, -0.030683156102895737, -0.04411683604121208, -0.02820027805864811, -0.002523715840652585, 0.02995136007666588, -0.0042470297776162624, 0.011571522802114487, -0.02305157110095024, -0.029480919241905212, 0.009265058673918247, -0.009898846037685871, 0.03797497972846031, 0.00891876220703125, 0.03387169539928436, 0.014256952330470085, -0.0029778212774544954, -0.04351571947336197, -0.011427776888012886, 0.006141858175396919, 0.02593955025076866, 0.007572780828922987, -0.009421871975064278, -0.033505797386169434, -0.006079786457121372, -0.001543631893582642, -0.0021169809624552727, 0.013472884893417358, -0.054152894765138626, -0.00356097100302577, 0.028357090428471565, -0.019549405202269554, -0.00445284740999341, 0.014949544332921505, -0.022463520988821983, 0.01085932832211256, -0.012688818387687206, -0.002830808749422431, -0.012349055148661137, -0.008899160660803318, -0.0106175746768713, -0.0010895264567807317, -0.00487101636826992, 0.013237664476037025, -0.0005096435779705644, -0.0029745541978627443, -0.004616194404661655, 0.009715897031128407, -0.04017036780714989, 0.00714154401794076, 0.001510962494648993, 0.011205624788999557, -0.030108174309134483, -0.004374440759420395, -0.004384241532534361, 0.0035315684508532286, 0.004962490871548653, -0.010219006799161434, 0.019863031804561615, 0.02613556757569313, -0.027233261615037918, -0.016922779381275177, 0.011669530533254147, 0.009278126060962677, -0.018530117347836494, 0.015001815743744373, -0.003482564352452755, -0.011355903930962086, -0.0154330525547266, 0.0018523583421483636, 0.028409361839294434, 0.007317958865314722, -0.0006052017561160028, -0.004217626992613077, -0.011636861599981785, -0.00928466022014618, -0.0014056034851819277, -0.007337560411542654, -0.0006852418882772326, -0.013067783787846565, -0.005116037093102932, -0.01544611994177103, 0.00239957170560956, 0.0067952475510537624, 0.016151780262589455, -0.010800523683428764, 0.014413765631616116, 0.03504779562354088, -0.03303535655140877, -0.00934346579015255, -0.009938049130141735, 0.020477216690778732, -0.007997483946383, 0.02499867044389248, -0.0042372290045022964, -0.013289935886859894, 0.029324106872081757, -0.001747816102579236, -0.01628245785832405, -0.03546596318483353, 0.008944897912442684, 0.026606008410453796, -0.014256952330470085, -0.011486581526696682, 0.026488397270441055, 0.005044164601713419, 0.02075164020061493, -0.019144302234053612, -0.02390097640454769, 0.011800209060311317, -0.01968008279800415, 0.023456672206521034, 0.008343779481947422, -0.024201534688472748, -0.00241753994487226, 0.005998112726956606, -0.00266092736274004, -0.002041841158643365, -0.024162331596016884, -0.009049439802765846, -0.0038876656908541918, 0.0012365389848127961, 0.00557014299556613, -0.008755414746701717, -0.01377344410866499, -0.00884688924998045, -0.020634030923247337, -0.005099702626466751, -0.01393025740981102, 0.004547588527202606, -0.018085813149809837, 0.013204995542764664, 0.031780850142240524, 0.0026952303014695644, -0.010656777769327164, -0.02361348457634449, 0.015406916849315166, 0.00312483380548656, -0.006096120923757553, -0.006680904421955347, -0.0023881373926997185, 0.04111124575138092, 0.02288168855011463, -0.0128129618242383, -0.03606708347797394, -0.00832417793571949, -0.013681969605386257, -0.011761005036532879, 0.0027981391176581383, 0.013551292009651661, 0.033845558762550354, 0.0393601655960083, -0.01681823842227459, 0.035152338445186615, -0.0001841740740928799, 0.025469111278653145, -0.027390073984861374, 0.004998427350074053, 0.016517678275704384, 0.0461554117500782, 0.010166735388338566, 0.014348426833748817, 0.0023554679937660694, -0.026971906423568726, -0.002789971884340048, -0.017824456095695496, 0.01630859449505806, 0.0040346784517169, -0.02188853733241558, -0.021731724962592125, -0.026266245171427727, 0.004766474012285471, -0.009467609226703644, 0.018307965248823166, -0.011943954043090343, -0.006644967943429947, 0.0014889106387272477, -0.017079593613743782, 0.027233261615037918, -0.02460663765668869, 0.01795513555407524, 0.0010797256836667657, 0.0045769913122057915, 0.02542990632355213, -0.009349999018013477, -0.009990320540964603, 0.02783438004553318, -0.015419985167682171, 0.009193185716867447, -0.015237036161124706, 0.011022675782442093, 0.04113738238811493, -0.02678895741701126, 0.030683156102895737, -0.022554995492100716, 0.003036626148968935, -0.0288798026740551, -0.010160202160477638, 0.01662222109735012, 0.010728650726377964, 0.018085813149809837, -0.00809549167752266, 0.025064008310437202, -0.028069598600268364, 0.005116037093102932, -0.0035446363035589457, -0.0019405658822506666, -0.043986160308122635, 0.010611040517687798, -0.008997169323265553, -0.0035740388557314873, -0.00020326529920566827, -0.008049754425883293, -0.003057861467823386, -0.030369529500603676, -0.03235583379864693, -0.013747308403253555, -0.0017592504154890776, 0.005181376356631517, -0.0033453525975346565, -0.002324432134628296, 0.00297618773765862, 0.010918132960796356, 0.020986860617995262, -0.03797497972846031, -0.02041187882423401, 0.1826353520154953, -0.009820439852774143, 0.03698182851076126, 0.03222515434026718, -0.0042894999496638775, -0.021640250459313393, 0.0016269390471279621, -0.02007211558520794, -0.003645911579951644, 0.03201606869697571, -0.00907557550817728, 0.033427391201257706, -0.004139220342040062, 0.012917504645884037, 0.016713695600628853, -0.003351886523887515, -0.007755729835480452, -0.02635771967470646, -0.002195387613028288, -0.007788399234414101, -0.001111578312702477, 0.007069671060889959, -0.026148635894060135, -0.026004889979958534, 0.033845558762550354, 0.0009131113765761256, -0.026240110397338867, 0.011924352496862411, 0.021509572863578796, 0.01727561093866825, -0.016752898693084717, -0.0030888973269611597, -0.009480677545070648, 0.0035544370766729116, -0.039543114602565765, -0.005919706076383591, 0.00572695629671216, -0.011480048298835754, 0.025495246052742004, 0.010153668001294136, 0.004459381103515625, -0.021300487220287323, -0.02135275863111019, -0.006618832238018513, 0.010669845156371593, 0.011669530533254147, -0.02016359008848667, -0.018020473420619965, 0.00808242429047823, 0.027259396389126778, -0.012447063811123371, -0.012636546976864338, -0.0031264673452824354, 0.01408707071095705, 0.003152602817863226, -0.008363381959497929, 0.002100646262988448, 0.008585534058511257, 0.012891368940472603, 0.03149335831403732, -0.0035838396288454533, 0.025782737880945206, -0.003649178659543395, 0.015576798468828201, -0.005184642970561981, 0.0022950295824557543, -0.013708105310797691, -0.0002544134040363133, -0.006589429918676615, -0.005713888444006443, 0.02242431603372097, -0.013446749188005924, -0.002909215399995446, 0.012989376671612263, -0.015851221978664398, -0.01475352793931961, 0.0288798026740551, 0.022136826068162918, 0.000178967384272255, 0.010891998186707497, -0.03131040930747986, -0.017602303996682167, -0.016034170985221863, 0.00825230497866869, -0.03204220533370972, -0.022920893505215645, 0.04003968834877014, -0.018673863261938095, -0.026971906423568726, -0.030108174309134483, -0.02584807574748993, -0.043306633830070496, -0.00441691093146801, -0.011937420815229416, -0.00632154056802392, 0.018778406083583832, -0.013257266953587532, 0.011303632520139217, 0.003193439682945609, -0.009434940293431282, -0.008369915187358856, 0.05300293117761612, 0.029376378282904625, 0.01832103356719017, 0.02477651834487915, -0.019288048148155212, 0.005785761401057243, -0.003198340069502592, 0.005364325363188982, -0.02120901271700859, -0.0102647440508008, -0.016347797587513924, 0.007768797222524881, -0.009297728538513184, -0.0009106611832976341, -0.0051944442093372345, -0.028357090428471565, -0.02305157110095024, 0.022189097478985786, -0.0026233575772494078, 0.007396365515887737, -0.013446749188005924, -0.0009033105452544987, -0.016805170103907585, -0.006736442446708679, 0.011715267784893513, -0.0390726737678051, 0.01934031955897808, 0.0010160201927646995, 0.006279069930315018, 0.023652687668800354, -0.0362500324845314, 0.02315611205995083, 0.008703144267201424, -0.03167630732059479, -0.011937420815229416, -0.018503982573747635, -0.03491711989045143, -0.01460978202521801, 0.005263050086796284, -0.020803911611437798, 0.003900733543559909, -0.003077463014051318, -0.004995160270482302, 0.02276407927274704, -0.023574281483888626, 0.013603562489151955, -0.015145561657845974, 0.014884205535054207, -0.022241367027163506, -0.015197832137346268, -0.011943954043090343, 0.001203869585879147, -0.023365197703242302, -0.0055342065170407295, -0.00424049561843276, 0.005491735879331827, -0.028592310845851898, 0.028383227065205574, 0.020686302334070206, -0.043280500918626785, 0.029742276296019554, 0.00890569481998682, -0.0045965928584337234, -0.010375820100307465, -0.025874212384223938, -0.1633995622396469, 0.012721487320959568, 0.01229025050997734, -0.016831304877996445, 0.026044093072414398, -0.012368657626211643, 0.025808872655034065, 0.002389770932495594, -0.002375069772824645, -0.011957022361457348, 0.02143116481602192, -0.00016702260472811759, -0.010650243610143661, -0.015707476064562798, -0.004410376772284508, -0.013433681800961494, 0.015668272972106934, -0.009108245372772217, 0.02069936878979206, 0.012688818387687206, 0.030500207096338272, -0.030709290876984596, 0.030029766261577606, 0.007821068167686462, 0.0033682212233543396, -0.0005610979860648513, 0.006661302875727415, 0.02018972672522068, -0.021300487220287323, -0.030134309083223343, 0.022633401677012444, 0.008428720757365227, 0.012368657626211643, 0.002901047933846712, 0.012166107073426247, 0.02276407927274704, -0.020882317796349525, -0.010682913474738598, 0.009454541839659214, 0.006308472715318203, 0.034786440432071686, 0.011747937649488449, -0.01114028599113226, 0.0014056034851819277, -0.005769426468759775, 0.027363939210772514, 0.010526100173592567, -0.016975050792098045, -1.3820712410961278e-05, -0.023574281483888626, 0.037844300270080566, -0.004113085102289915, 0.006991264410316944, -0.007481306325644255, 0.0212351493537426, 8.596151747042313e-05, -0.03611935302615166, 0.009787769988179207, -0.03462962806224823, 0.019131235778331757, -0.0005856000352650881, -0.0202419962733984, 0.0011401640949770808, 0.018020473420619965, -0.010284345597028732, 0.004429978784173727, -0.019131235778331757, -0.008049754425883293, -0.03792271018028259, -0.009572151117026806, 0.017340948805212975, 0.009996854700148106, 0.007259153760969639, -0.01204849686473608, -0.001692277961410582, 0.013218062929809093, -0.01608644239604473, 0.018111947923898697, -0.005844566039741039, -0.005985044874250889, -0.0018915616674348712, 0.030683156102895737, -0.024554366245865822, -0.01010793074965477, 0.02757302299141884, 0.005462333559989929, 0.003092164406552911, 0.017484694719314575, 0.005112770479172468, -0.028069598600268364, 0.018242625519633293, -0.042287349700927734, -0.018085813149809837, -0.005125838331878185, 0.0016988118877634406, 0.012623478658497334, 0.020686302334070206, -0.016922779381275177, 0.03120586834847927, -0.02528616227209568, -0.0009024938335642219, -0.00914744846522808, -0.011068413034081459, 0.00028095734887756407, 0.018098879605531693, 0.002948418725281954, -0.02664521150290966, 0.006932459305971861, 0.03632843866944313, 0.023325994610786438, -0.031362682580947876, 0.023012368008494377, -0.0003356786910444498, 0.03700796514749527, -0.00936960056424141, 0.025469111278653145, -0.014191613532602787, -0.013120055198669434, 0.03018658049404621, -0.008343779481947422, 0.02720712497830391, 0.016543814912438393, 0.0018507249187678099, 0.01206156425178051, 0.004273165483027697, -0.0042470297776162624, -0.12356895953416824, -0.040928296744823456, -0.00748784001916647, -0.0013149457518011332, 0.0052369143813848495, -0.010767853818833828, -0.017928998917341232, 0.029324106872081757, 0.019261913374066353, 0.037818167358636856, -0.0004146979481447488, -0.017288677394390106, 0.01025167666375637, -0.00906250812113285, -0.02720712497830391, -0.00475013954564929, -0.02171865664422512, 0.008964499458670616, -0.025403771549463272, 0.03442054241895676, 0.017079593613743782, 0.014583646319806576, -0.013152724131941795, -0.002254192717373371, -0.0028700120747089386, -0.005089901853352785, -0.015263170935213566, 0.016321660950779915, -0.000147625120007433, 0.010983471758663654, 0.002236224478110671, -0.0055962782353162766, 0.0014823767123743892, -0.016230186447501183, 0.008709677495062351, 0.002244391944259405, -0.030003631487488747, -0.018647726625204086, 0.027442345395684242, -0.014635917730629444, -0.005377393215894699, 0.0103366170078516, 0.008474458009004593, -0.01101614162325859, 0.0059033711440861225, -0.01803354173898697, 0.004681533668190241, 0.014727392233908176, -0.020803911611437798, -0.0263315849006176, -0.046364497393369675, -0.018386371433734894, -0.013681969605386257, 0.01221837755292654, -0.014060935005545616, -0.0013917189789935946, 0.0025367834605276585, 0.014034799300134182, 0.0026168236508965492, 0.024214603006839752, -0.022136826068162918, -0.002223156625404954, -0.0033584204502403736, 0.009304261766374111, 0.009546016342937946, 0.015955764800310135, -0.036197759211063385, -0.01591655984520912, 0.03810565546154976, 0.004449580330401659, -0.01693584769964218, 0.04108511283993721, -0.01342061348259449, 0.0061614601872861385, -0.011499649845063686, 0.017719915136694908, 0.008474458009004593, 0.0029549526516348124, 0.019523268565535545, -0.01325073279440403, -0.004583525005728006, -0.026031024754047394, -0.015263170935213566, -0.010212472639977932, 0.014322291128337383, 0.011885149404406548, 0.0049461559392511845, 0.017066525295376778, 0.02007211558520794, -0.013734241016209126, -0.010800523683428764, 0.011179489083588123, 0.037243183702230453, -0.03460349142551422, -0.005439464934170246, 0.0006378712132573128, 0.02375723049044609, -0.00914744846522808, 0.0019863031338900328, -0.0043091014958918095, -0.021313555538654327, -0.006279069930315018, -0.03091837652027607, 0.012956707738339901, 0.00020234646217431873, -0.00897756777703762, -0.001279009273275733, 0.0007003515493124723, 0.01817728765308857, -0.030709290876984596, -0.0032849141862243414, -0.025874212384223938, -0.03674660623073578, -0.004534521140158176, -0.008533262647688389, -0.015707476064562798, -0.009212787263095379, -0.02851390466094017, 0.009820439852774143, -0.004145754501223564, 0.010245142504572868, 0.005939307622611523, 0.0015689508290961385, 0.013374876230955124, 0.024005519226193428, -0.00012914645776618272, -0.012113835662603378, 0.012198776006698608, -0.005138905718922615, 0.02950705587863922, -0.02848776802420616, -0.035126201808452606, 0.023914044722914696, -0.02635771967470646, 0.0004855498264078051, 0.006749510299414396, -0.01982382871210575, 0.007971348240971565, 0.002370169386267662, 0.03089223988354206, 0.038576096296310425, 0.02043801359832287, -0.00637054443359375, -0.03436827287077904, 0.0039301360957324505, -0.014648985117673874, -0.0007979515357874334, -0.01917043887078762, -0.015890425071120262, 0.005197710823267698, 0.007605450227856636, -0.018477845937013626, 0.03337511792778969, 0.018268762156367302, -0.019627811387181282, -0.01832103356719017, -0.00900370255112648, -0.020124386996030807, 0.04348958283662796, -0.021509572863578796, -0.010957336984574795, 0.0004924921086058021, 0.04508385434746742, 0.006638434249907732, 0.022162960842251778, -0.016975050792098045, -0.006912857759743929, -0.02060789428651333, -0.006256201304495335, -0.0001887682155938819, -0.0007264870801009238, -0.019549405202269554, -0.014805799350142479, -0.018726134672760963, 0.021679453551769257, -0.0045671905390918255, 0.03768748790025711, -0.0080693569034338, -0.0039628054946660995, 0.016295526176691055, -0.009474143385887146, 0.00914744846522808, 0.026919635012745857, -0.020647097378969193, -0.03023885190486908, -0.0046390630304813385, 0.03975219652056694, -0.012166107073426247, -0.008814220316708088, 0.0029353508725762367, -0.0005941757699474692, 0.001752716489136219, -0.016569949686527252, 0.006716840900480747, -0.025299228727817535, -0.018242625519633293, 0.0023881373926997185, 0.0003616100875660777, -0.015054087154567242, 0.0010756419505923986, 0.004335237201303244, -0.00033588288351893425, 0.00284550990909338, -0.01078745536506176, -0.02426687441766262, 0.002170885680243373, -0.057550519704818726, 0.0024371417239308357, -0.02955932728946209, -0.0005913171917200089, -0.004877550061792135, 0.03700796514749527, -0.006102655082941055, 0.0038745978381484747, 0.0077949329279363155, 0.013355274684727192, -0.03564891219139099, 0.007553178817033768, -0.0014170377980917692, -0.008957965299487114, -0.017340948805212975, 0.023116908967494965, 0.01476659532636404, -0.0074551706202328205, 0.03909881040453911, -0.0018507249187678099, 0.02004598081111908, 0.02137889340519905, 0.013995596207678318, -0.0005157690611667931, 0.0012536904541775584, 0.012682284228503704, 0.0030153910629451275, -0.01078745536506176, -0.031049054116010666, -0.003492365125566721, -0.018647726625204086, -0.04152941703796387, 0.009238922968506813, 0.022855553776025772, -0.009552549570798874, 0.06633207201957703, 0.00565508333966136, -0.0032375433947890997, -0.0003036217822227627, 0.0027736371848732233, 0.02312997728586197, 0.0325649157166481, 0.003101965179666877, -0.005740024149417877, -0.0203857421875, 0.02412312850356102, -0.00241753994487226, 0.00546560063958168, -0.028984343633055687, -0.008644338697195053, 0.02854003943502903, -0.01662222109735012, 0.003144435351714492, -0.04957916960120201, 0.000911477894987911, 0.01459671463817358, 0.006710306741297245, 0.018216490745544434, -0.011793674901127815, -0.0039693391881883144, 0.003315950045362115, 0.011957022361457348, -0.024645840749144554, -0.0424702987074852, -0.023914044722914696, 0.005432931240648031, 0.0031771049834787846, -0.039543114602565765, -0.025037873536348343, 0.013721172697842121, -0.009153982624411583, 0.0008118360419757664, -0.011447378434240818, 0.018451711162924767, 0.010957336984574795, 0.0037373860832303762, 0.006654768716543913, -0.017942067235708237, -0.04385548084974289, -0.010820125229656696, -0.0058412994258105755, -0.00018407197785563767, -0.005909905303269625, -0.04210440069437027], "f8a816c2-2836-40c3-b2e7-5e2ea5584eab": [-0.013410366140305996, 0.008338016457855701, 0.019184935837984085, -0.024898147210478783, -0.0030935199465602636, 0.009694733656942844, -0.010103793814778328, 0.024584535509347916, -0.011671858839690685, -0.03749721124768257, 0.0019532637670636177, 0.004881455097347498, 0.006967663299292326, 0.02234833687543869, -0.00041779561433941126, -0.005399598274379969, 0.01287176925688982, -0.035206470638513565, 0.007472171448171139, 0.014044409617781639, -0.011276434175670147, 0.008399374783039093, 0.008303927257657051, 0.00172828056383878, -0.006630188785493374, 0.017398705706000328, -0.0040156105533242226, -0.007274458650499582, -0.0014981840504333377, -0.016907833516597748, 0.019743986427783966, 0.006227945908904076, -0.02337098866701126, -0.009803815744817257, -0.029888685792684555, -0.0008786278194747865, -0.02084844931960106, -0.01384669728577137, 0.0027952466625720263, -0.013942144811153412, 0.0019225842552259564, 0.00560753745958209, -0.013253559358417988, -0.0035724614281207323, -0.034333810210227966, 0.017807766795158386, -0.005668896250426769, -0.015871547162532806, -0.01937583088874817, -0.007840326055884361, 0.038560766726732254, 0.040087927132844925, -0.044423967599868774, 0.0003270353190600872, 0.011590046808123589, 0.00031339997076429427, -0.009933351539075375, 0.008215297944843769, 0.0076017072424292564, -0.017780495807528496, 0.022075630724430084, 0.011794577352702618, -0.00967427995055914, -0.024939054623246193, -0.024080026894807816, 0.02337098866701126, 0.017821401357650757, -0.006408614106476307, 0.013928509317338467, 0.017903214320540428, 0.05189613997936249, 0.013253559358417988, 0.0018220235360786319, 0.002152680652216077, 0.012708145193755627, -0.006248398683965206, -0.018871324136853218, 0.005379145033657551, 0.007349453400820494, 0.0018186146626248956, 0.00921067874878645, -0.004993946757167578, -0.01658058539032936, 0.03247940167784691, 0.026111694052815437, 8.197188435588032e-05, 0.011017362587153912, 0.005283697973936796, -0.006698365323245525, -0.004404217936098576, -0.006330210715532303, -0.004356494173407555, 0.015176143497228622, 0.025157218798995018, -0.007717607542872429, 0.04068788141012192, -0.038178976625204086, 0.01289904024451971, -0.01555793359875679, -0.0174123402684927, -0.014085316099226475, 0.03114313818514347, -0.01604880578815937, -0.01213546097278595, -0.016307877376675606, -0.003240099875256419, 0.01290585845708847, -0.006749497726559639, 0.01285813469439745, 0.012442256323993206, -0.010042434558272362, 0.04281499609351158, 0.0035247376654297113, -0.045351170003414154, 0.03553371876478195, -0.021748382598161697, -0.00015542167238891125, -0.02383458986878395, -0.021734746173024178, -0.018598616123199463, 0.01651240698993206, 0.00666086794808507, 0.010812832042574883, -0.01656694896519184, 0.03643365204334259, -0.015517027117311954, -0.011842301115393639, -0.01096282061189413, -0.02530720829963684, -0.029834143817424774, 0.026957085356116295, 0.008181209675967693, -0.02191200666129589, 0.010956003330647945, 0.0033764534164220095, 0.00925840251147747, -0.0002237049484392628, -0.00015286504640243948, -0.005188250448554754, -0.026916179805994034, 0.006698365323245525, 0.0148079888895154, -0.001102758920751512, 0.01312402356415987, -0.013335371389985085, -0.0003168088151142001, 0.009128866717219353, -0.012933128513395786, 0.002333349082618952, -0.0064597465097904205, 0.008542546071112156, -0.018734969198703766, 0.029779601842164993, 0.009422026574611664, 0.009122048504650593, 0.01114008016884327, -0.010008346289396286, 0.0040769693441689014, 0.021639298647642136, -0.0067256358452141285, 0.022048359736800194, 0.030352286994457245, -0.0017402113880962133, 0.0017811175202950835, -0.009803815744817257, 0.023180093616247177, 0.01091509684920311, 0.020712096244096756, -0.014671635814011097, 0.016880562528967857, 0.010601484216749668, 0.021298415958881378, -0.014398928731679916, 0.00237595965154469, -0.0034906493965536356, 0.010649207979440689, 3.478079452179372e-05, 0.014153492636978626, -0.028525151312351227, -0.010983273386955261, -0.013921691104769707, -0.003391793230548501, 0.012687692418694496, 0.057486630976200104, -0.02536175027489662, -0.006954028271138668, 0.024557264521718025, -0.010492401197552681, 0.0020555288065224886, 0.016171524301171303, 0.02630258910357952, 0.029343271628022194, -0.0015680651413276792, -0.020589377731084824, -0.6121726632118225, -0.006504061631858349, -0.012749051675200462, -0.025061771273612976, 0.020521201193332672, 0.003865621518343687, 0.009128866717219353, -0.024080026894807816, -0.022525597363710403, 0.02712070941925049, -0.007717607542872429, 0.0013302987208589911, 0.025852622464299202, -0.017316892743110657, -0.005522316321730614, -0.03100678324699402, 0.016389690339565277, -0.015926087275147438, -0.0013251855270937085, -0.002715138951316476, -0.015394309535622597, 0.009353849105536938, -0.026357129216194153, -0.0013464906951412559, 0.016703302040696144, 0.027461593970656395, -0.007908502593636513, -0.011010544374585152, -0.0013754658866673708, 0.013567172922194004, -0.028906939551234245, -0.00870617013424635, -0.028852399438619614, 0.005754117388278246, 0.035233743488788605, 0.0008658446604385972, -0.0076767015270888805, 0.005038261413574219, 0.013049028813838959, 0.008031221106648445, -0.013608078472316265, -0.006838127505034208, 0.03367931395769119, 0.006490426138043404, 0.01988033950328827, -0.02772066555917263, -0.009319760836660862, 0.019171301275491714, -0.02425728552043438, -0.014698906801640987, 0.0055802664719522, -0.002149272011592984, 0.005195068195462227, 0.002802064176648855, -0.0012450778158381581, -0.021216602995991707, 0.011535505764186382, -0.007144922856241465, 0.02035757713019848, -0.021080249920487404, 0.007008569315075874, 0.024052755907177925, -0.02139386348426342, -0.005525725428014994, 0.008324380964040756, 0.0074039944447577, -0.0012851316714659333, -0.015353403054177761, -0.0013541606022045016, -0.03310662880539894, 0.01947127841413021, 0.020289398729801178, -0.01191047765314579, -0.003627002937719226, 0.007922138087451458, 0.03493376448750496, 0.02677982673048973, 0.018571345135569572, 0.03449743241071701, -0.005621172487735748, 0.01602153480052948, -0.004213322885334492, 0.002087912755087018, 0.015694286674261093, 0.042542289942502975, 0.012585427612066269, 0.0010899757035076618, -0.0014308594400063157, 0.014971613883972168, 0.010056070052087307, 0.029043294489383698, 0.025470832362771034, -0.02135295607149601, -0.03839714452624321, -0.00486100185662508, 0.022661950439214706, -0.009694733656942844, -0.0005475445068441331, 0.0012467822525650263, -0.03534282371401787, -0.030215933918952942, -0.0026452578604221344, -0.0008466699509881437, 0.012339990586042404, 0.036215487867593765, -0.000798520166426897, 0.006135907024145126, 0.00015297158097382635, 0.02189837023615837, -0.03452470526099205, -0.02128477953374386, -0.04226958379149437, -0.001166674541309476, 0.019321288913488388, 0.0031651053577661514, -0.027079803869128227, 0.017766859382390976, 0.0026605974417179823, 0.024489087983965874, -0.00923113152384758, 0.028879670426249504, 0.0064154318533837795, 0.004803051706403494, -0.0065722381696105, 0.033324792981147766, 9.384955046698451e-05, 0.003967886790633202, -0.0038860745262354612, -0.028007008135318756, -0.0011632657842710614, 0.0035929144360125065, -0.0007273606606759131, 0.025429926812648773, -0.01692146807909012, -0.004578068386763334, -0.012967216782271862, -0.015367038547992706, 0.0011624135076999664, 0.050750769674777985, -0.004826913587749004, -0.016362419351935387, -0.008610722608864307, 0.016880562528967857, -0.031361304223537445, -0.017589600756764412, -0.022743763402104378, -0.03657000511884689, -0.020248493179678917, -0.0015314201591536403, -0.01900767721235752, 0.009490203112363815, 0.00212881900370121, -0.014726176857948303, 0.010601484216749668, 0.012121825478971004, -0.006248398683965206, 0.0011803099187090993, -0.0028361526783555746, -0.020221222192049026, -0.020725730806589127, 0.005409824661910534, 0.025075407698750496, -0.01644423045217991, -0.006013188976794481, -0.013062664307653904, -0.007485806941986084, 0.00029635580722242594, -0.0005807806737720966, -0.021775653585791588, -0.03659727796912193, 0.035151928663253784, 0.018653158098459244, -0.009387938305735588, -0.007444900460541248, 0.00033896625973284245, 0.018707698211073875, -0.015435215085744858, 0.004946222994476557, -0.0019157665083184838, -0.009708368219435215, -0.004312179051339626, 0.0015220458153635263, 9.337018127553165e-05, -0.0057302555069327354, 0.011705947108566761, 0.011603682301938534, 0.015939723700284958, -0.01186275389045477, -0.027434322983026505, -0.001301323645748198, 0.022184712812304497, 0.02474815957248211, -0.021571122109889984, -0.01118780393153429, 0.0038383507635444403, 0.01705782115459442, -0.00019760603026952595, 0.0026469621807336807, 0.023220999166369438, 0.021666569635272026, 0.013901238329708576, 0.0023401668295264244, -0.005501863546669483, -0.03117040917277336, 0.010553760454058647, -0.032233964651823044, 0.019212206825613976, 0.007963043637573719, 0.0009340214310213923, 0.01216273196041584, 0.02132568694651127, -0.0056348079815506935, -0.0026725283823907375, -0.033870209008455276, 0.04068788141012192, 0.02084844931960106, -0.005501863546669483, 0.009592467918992043, -0.0014930707402527332, -0.0036201851908117533, 0.006763133220374584, 0.016253335401415825, 0.005702984984964132, 0.01797139085829258, -0.02617987059056759, -0.012810410931706429, 0.007315364666283131, -0.025552645325660706, -0.01289904024451971, -0.03414291515946388, -0.007076746318489313, 0.005788205657154322, 0.0046394276432693005, -0.0021015482489019632, 0.02039848268032074, 0.015394309535622597, 0.062395356595516205, -0.031197678297758102, 0.042024146765470505, 0.0016788523644208908, 0.0006983855273574591, 0.018625887110829353, 0.01092191506177187, -0.022048359736800194, 0.01709872856736183, 0.009183407761156559, 0.03498830646276474, 0.012305902317166328, 0.0054200515151023865, 0.007860778830945492, 0.00848800502717495, -0.005130300298333168, -0.012517250142991543, 0.025348113849759102, -0.016266971826553345, -0.012264996767044067, 0.0001807749067666009, 0.0049803112633526325, 0.026357129216194153, 0.0009928238578140736, 0.014426199719309807, -0.013314918614923954, -0.009169772267341614, -0.012455891817808151, 0.009871993213891983, -0.014998883940279484, 0.0024918601848185062, -0.0213802270591259, -0.01701691560447216, 0.002079390687867999, -0.014467105269432068, -0.0349610336124897, -0.03640638291835785, 0.008590269833803177, 0.03561553359031677, 0.013914873823523521, -0.0025191307067871094, 0.02084844931960106, 0.008999330922961235, -0.005842747166752815, -0.02128477953374386, -0.02620714157819748, 0.010287870652973652, 0.03215215355157852, -0.015026154927909374, -0.009858357720077038, -0.016648761928081512, -0.009183407761156559, -0.004349676426500082, 0.03212488442659378, -0.026029881089925766, 0.01528522651642561, 0.0030253431759774685, 0.006251807790249586, -0.015367038547992706, -0.012510432861745358, 0.017712319269776344, -0.009537926875054836, 0.017153268679976463, -0.012121825478971004, 0.0007542052771896124, 0.0012510432861745358, -0.02972506172955036, 0.022102901712059975, 0.038560766726732254, 0.018612252548336983, 0.016416961327195168, -0.009837904013693333, -0.0031395391561090946, -0.016785115003585815, 0.01802593097090721, -0.02582535147666931, -0.0027083212044090033, -0.01315129455178976, 0.022252889350056648, -0.020807543769478798, 0.004056516569107771, 0.00852891057729721, 0.0042030964978039265, -0.013410366140305996, -0.007915319874882698, -0.0035281465388834476, -0.028088819235563278, 0.016116982325911522, 0.03337933495640755, 0.02337098866701126, -0.0054200515151023865, 0.0010456608142703772, -0.027338875457644463, -0.031306762248277664, 0.0055904933251440525, -0.003882665652781725, 0.025034500285983086, 0.004431488458067179, -0.03354296088218689, 0.009892445988953114, 0.013533083721995354, 0.012333173304796219, 0.017316892743110657, 0.009367484599351883, -0.023084646090865135, -0.019798526540398598, 0.000697533308994025, -0.024952689185738564, 0.0358336977660656, 0.01019924134016037, 0.033761125057935715, 0.03313389793038368, -0.005784797016531229, 0.02278466895222664, 0.032779380679130554, 0.0044519416987895966, 0.026984356343746185, -0.02331644669175148, -0.02286648005247116, 0.022443784400820732, 0.01653967797756195, 0.029970496892929077, -0.010942367836833, 0.008249386213719845, 0.006497243884950876, 0.006868807133287191, 0.013880785554647446, -0.017180539667606354, 0.012414985336363316, 0.018121378496289253, 0.012210454791784286, 0.014848895370960236, 0.009081142954528332, -0.0020265537314116955, 0.0062449900433421135, -0.004547388758510351, -0.01748051680624485, -0.026916179805994034, 0.02575717493891716, -0.00657564727589488, -0.03059772402048111, -0.013580807484686375, 0.030924972146749496, 0.02728433348238468, 0.007690337020903826, -0.019048582762479782, -0.003834941890090704, -0.008794800378382206, -0.0011726400116458535, -0.02236197330057621, 0.02623441256582737, -0.005409824661910534, 0.02920691855251789, -0.034797411412000656, 0.02038484625518322, 0.043442223221063614, -0.04082423448562622, -0.014971613883972168, 0.01750778779387474, -0.011310522444546223, -0.0080175856128335, -0.018353180959820747, 0.02630258910357952, 0.019525820389389992, 0.00340031529776752, -0.0011564480373635888, 0.009285672567784786, 0.011078720912337303, -0.0075062597170472145, -0.04420580342411995, -0.0022617634385824203, -0.030761348083615303, -0.011712765321135521, 0.011774123646318913, 0.0075062597170472145, -0.02473452314734459, -0.009272037073969841, 0.005798432044684887, -0.00472805742174387, 0.008358469232916832, -0.028552420437335968, 0.010860555805265903, 0.0027782022953033447, 0.03550644963979721, 0.004656471777707338, 0.026166236028075218, 0.008597088046371937, -0.0012101372703909874, -0.007738060783594847, 0.004881455097347498, -0.003069658065214753, 0.021202968433499336, -0.04308770224452019, -0.03359749913215637, 0.013055847026407719, 0.009115231223404408, 0.014098950661718845, -0.00903341919183731, 0.016716938465833664, -0.01236044429242611, 0.012224090285599232, 0.012455891817808151, -0.004342858679592609, -0.011515052057802677, 0.011133262887597084, 0.027066167443990707, -0.01118780393153429, 0.0012357034720480442, 0.014998883940279484, -0.03157946839928627, 0.01236044429242611, 0.011228710412979126, 0.0027679759077727795, 0.008447098545730114, 0.017153268679976463, -0.019171301275491714, -0.015230685472488403, -0.009619738906621933, 0.026943450793623924, -0.005283697973936796, 0.008331198245286942, -0.007444900460541248, -0.022743763402104378, 0.028906939551234245, 0.015203414484858513, 0.023043740540742874, -0.016294242814183235, 0.011760489083826542, 0.021993817761540413, 0.01651240698993206, 0.0261525996029377, 0.016826020553708076, -0.01357399020344019, -0.033324792981147766, -0.020180316641926765, 0.011521870270371437, 0.0039337980560958385, 0.018244097009301186, 0.01794411987066269, -0.025457197800278664, -0.04085150733590126, -0.02093026041984558, 0.018694063648581505, 0.008931153453886509, -0.011740035377442837, 0.012033195234835148, 0.023002834990620613, 0.026957085356116295, 0.0358336977660656, 0.0066335974261164665, 0.05495045706629753, 0.009660644456744194, -0.018639521673321724, 0.02958870865404606, -0.0077244252897799015, 0.0033491826616227627, -0.014944342896342278, -0.013430818915367126, 0.022689221426844597, -0.009537926875054836, 0.0014777309261262417, 0.0032707795035094023, 0.004734875168651342, 0.027925195172429085, 0.015857910737395287, 0.024952689185738564, -0.007260823622345924, -0.02229379676282406, -0.020098505541682243, 0.029915956780314445, -0.02289375104010105, 0.028961481526494026, -0.0023401668295264244, -0.005218930076807737, 0.019103124737739563, -0.0037088149692863226, 0.009128866717219353, -0.017112363129854202, 0.007029022555798292, 0.010151517577469349, 0.015448850579559803, 0.012094554491341114, 0.04764191061258316, -0.03247940167784691, 0.012080918997526169, -0.04333313927054405, 0.004786007571965456, -0.010553760454058647, -0.019607631489634514, 0.028470609337091446, -0.017862306907773018, -0.008665264584124088, -0.004871228709816933, 0.006418840494006872, -0.03215215355157852, -0.01899404078722, 0.01934855990111828, -0.0065074702724814415, -0.02128477953374386, -0.01948491483926773, -0.036160945892333984, -0.00876071210950613, -0.0010482175275683403, 0.025525374338030815, -0.005535951815545559, 0.021243873983621597, -0.04327859729528427, -0.022525597363710403, 0.000764005642849952, -0.0064597465097904205, 0.03706087917089462, 0.01193093042820692, 0.028334256261587143, -0.001898722373880446, 0.0015655085444450378, -0.030897701159119606, -0.0018544074846431613, -0.009312943555414677, -0.00207257317379117, 2.205424607382156e-06, 0.005706393625587225, -0.011562775820493698, -0.019580362364649773, -0.012237725779414177, 0.015694286674261093, -0.0021049571223556995, -0.044996652752161026, -0.0012339991517364979, -0.005798432044684887, -0.005164388567209244, -0.00643929373472929, 0.012203637510538101, -0.010158334858715534, 0.00018961657769978046, -0.006418840494006872, 0.005396189633756876, 0.005280288867652416, -0.004595112521201372, -0.008208480663597584, 0.010901461355388165, -0.006950619164854288, 0.019253112375736237, -0.01364216674119234, 0.016212429851293564, 0.0007350305677391589, -0.012701327912509441, -0.051159828901290894, 0.021707475185394287, -0.010581031441688538, 0.019825797528028488, -0.043060433119535446, -0.02522539533674717, 0.010328777134418488, -0.014698906801640987, 0.014848895370960236, -0.016744209453463554, 0.0011973540531471372, 0.02860696241259575, -0.004482620861381292, 0.004601930268108845, -0.0012254769681021571, 0.010042434558272362, -0.0006945505738258362, -0.006227945908904076, -0.00799031462520361, -0.0030065944883972406, 0.025566279888153076, -0.01652604341506958, 0.041124213486909866, 0.016321513801813126, 0.004905316978693008, -0.015148873440921307, -0.0006340437103062868, 0.0024628848768770695, -0.012994487769901752, -0.006534741260111332, -0.004721239674836397, -0.01806683838367462, 0.011733218096196651, -0.031279489398002625, -0.005263244733214378, 0.006579055916517973, 0.009067507460713387, -0.011951383203268051, 0.0025702633429318666, 0.03823351860046387, -0.035724613815546036, 0.01610334776341915, -0.018339544534683228, -0.007608524989336729, -0.011487782001495361, 0.02140749804675579, 0.01645786687731743, -0.01116735115647316, 0.019144030287861824, -0.02088935486972332, -0.023520978167653084, -0.02334371767938137, 0.0014197807759046555, 0.016798749566078186, -0.0031668099109083414, -0.006930166389793158, 0.004963267128914595, -0.001983943395316601, 0.018816782161593437, -0.011535505764186382, -0.022225618362426758, 0.014303481206297874, -0.04900544509291649, 0.014358023181557655, 0.006037050858139992, -0.02088935486972332, 0.011365063488483429, -0.026561660692095757, -0.0012953581754118204, -0.001948150573298335, -0.022225618362426758, -0.013205835595726967, 0.009572015143930912, -0.03215215355157852, -0.010778743773698807, 0.00825620349496603, -0.02431182749569416, -0.0008905587601475418, -0.0034309946931898594, -0.005658669862896204, -0.001356717199087143, 0.013908056542277336, -0.032397590577602386, 0.01307629980146885, 0.030461370944976807, -0.009176590479910374, -0.025511737912893295, -0.004826913587749004, -0.02286648005247116, 0.01599426381289959, -0.00876071210950613, -0.016703302040696144, 0.007390359416604042, 0.01705782115459442, 0.023711873218417168, -0.006037050858139992, -0.028743315488100052, 0.007192646618932486, -0.0398697629570961, -0.01898040622472763, 0.026288952678442, 0.006377934478223324, 0.027570676058530807, 0.02522539533674717, -0.023520978167653084, 0.012994487769901752, 0.013608078472316265, 0.024966323748230934, -0.027052532881498337, 0.004359902814030647, 0.012830863706767559, 0.041969604790210724, 0.006204084027558565, -0.001005606958642602, -0.011849118396639824, -0.026493484154343605, -0.016280606389045715, -0.02035757713019848, 0.009558379650115967, 0.0025583324022591114, -0.018666792660951614, -0.0003709240991156548, -0.03485195338726044, 0.008051673881709576, 0.017139634117484093, 0.01896677166223526, -0.009340214543044567, -0.018598616123199463, -0.004526935983449221, 0.0005854677874594927, 0.025416290387511253, -0.023957308381795883, 0.013458089902997017, -0.008719805628061295, -0.008222115226089954, 0.009803815744817257, 0.0008479483076371253, -0.024557264521718025, 0.012708145193755627, -0.007819872349500656, 0.004411035683006048, -0.00019164057448506355, 0.014085316099226475, 0.03441562131047249, -0.010649207979440689, 0.010383318178355694, -0.010478765703737736, 0.007492624223232269, -0.013751249760389328, -0.004625792149454355, 0.02532084286212921, 0.010506036691367626, 0.02436636947095394, 0.001840772107243538, 0.012305902317166328, -0.007738060783594847, 0.02819790132343769, -0.026629837229847908, -0.029479624703526497, -0.020057598128914833, -0.0023912994656711817, 0.012912675738334656, -0.015612474642693996, 0.009176590479910374, 0.01558520458638668, -0.021598393097519875, -0.012524068355560303, -0.0397334061563015, -0.005096211563795805, -0.011583229526877403, 0.025866257026791573, -0.001566360704600811, -0.011787759140133858, 0.005552995949983597, 0.003202602732926607, -0.00668813893571496, -0.05448685586452484, -0.0035656439140439034, 0.18325909972190857, -0.006705183070152998, 0.0008897065417841077, 0.04117875546216965, -0.009019783698022366, -0.009490203112363815, 0.00012655308819375932, -0.01361489575356245, -0.027734300121665, 0.007710789795964956, 0.0029776194132864475, -0.019212206825613976, -0.012449073605239391, 0.01407168060541153, 0.016171524301171303, -0.002333349082618952, -0.00828347448259592, -0.04554206505417824, 0.000902489700820297, 0.004554206505417824, 0.002856605686247349, 0.023520978167653084, -0.024557264521718025, -0.012783139944076538, 0.03018866293132305, 0.013785338029265404, -0.041615087538957596, 0.01986670307815075, 0.020589377731084824, 0.008569817058742046, -0.03397928923368454, 0.004816687200218439, 0.022443784400820732, 0.0013507517287507653, -0.04862365499138832, 0.010703749023377895, 0.02277103252708912, -0.01120825670659542, -0.0022481281775981188, -0.0016166410641744733, 0.011719582602381706, -0.01701691560447216, -0.016771480441093445, -0.013430818915367126, -0.007847143337130547, 0.02093026041984558, -0.0006706887506879866, -0.0028821718879044056, 0.009374302811920643, 0.011126444675028324, -0.027857018634676933, -0.01994851604104042, 0.005348465871065855, 0.017616871744394302, 0.010035617277026176, -0.00947656761854887, 0.0164715014398098, 0.01312402356415987, 0.02095753140747547, 0.027516134083271027, -0.010792379267513752, 0.035697344690561295, -0.021216602995991707, 0.012885404750704765, -0.009197043254971504, 0.02579808048903942, -0.027352510020136833, -0.006538149900734425, 0.0020061007235199213, -0.0022106310352683067, 0.021066615357995033, -0.018175920471549034, 0.013955780304968357, 0.010908279567956924, -0.016185158863663673, -0.0022736943792551756, 0.03348841890692711, 0.026997990906238556, 0.005600719712674618, 0.034224726259708405, -0.03746993839740753, -0.011535505764186382, -0.022157441824674606, 0.007697154767811298, -0.00801076740026474, -0.021230239421129227, 0.03935161605477333, -0.021134791895747185, -0.020793907344341278, -0.012939946725964546, -0.0138671500608325, -0.02290738746523857, -0.025129947811365128, -0.0003261831298004836, 0.02866150438785553, 0.027366146445274353, -0.01607607677578926, 0.026029881089925766, -0.014167128130793571, -0.01525795552879572, -0.005283697973936796, 0.060486409813165665, 0.032833922654390335, 0.00510984705761075, 0.008297109976410866, -0.010103793814778328, -0.0047178310342133045, 0.02035757713019848, -0.010287870652973652, -0.04120602458715439, -0.005849564913660288, -0.03267029672861099, 0.0011317339958623052, 0.0012305902782827616, 0.0028054730501025915, -0.0036610912065953016, -0.02327554114162922, -0.005379145033657551, 0.022511960938572884, 0.0003368357429280877, -0.012333173304796219, -0.008303927257657051, 0.022702855989336967, -0.016116982325911522, 0.02178928814828396, -0.0020759818144142628, -0.048296406865119934, 0.022089265286922455, 0.011828665621578693, -0.0025532192084938288, 0.03288846090435982, -0.03504284843802452, -0.006129089277237654, 0.0032128291204571724, -0.025975340977311134, 0.011371881701052189, -0.011746853590011597, -0.016853291541337967, -0.002839561551809311, -0.008767529390752316, -0.019566725939512253, 0.011290068738162518, -0.008787982165813446, -0.005195068195462227, 0.009374302811920643, -0.027843382209539413, -0.0037360857240855694, -0.0016311286017298698, 0.011310522444546223, -0.032315779477357864, -0.02525266632437706, -0.01602153480052948, -0.013955780304968357, -0.023698236793279648, -0.011542323045432568, -0.018666792660951614, -0.0016933399019762874, -0.02181655913591385, 0.007894867099821568, -0.0033832709304988384, -0.018775876611471176, 0.0252117607742548, 0.004523526877164841, 0.015189778991043568, -0.022593773901462555, -0.04524208977818489, -0.17115090787410736, -0.0025685590226203203, 0.012387714348733425, -0.04246047884225845, 0.015489757061004639, -0.01091509684920311, 0.026834366843104362, 0.0014189284993335605, -0.013962597586214542, 0.0005939899128861725, -0.006262034177780151, 0.004393991082906723, -0.01696237362921238, -0.00803803838789463, -0.020589377731084824, -0.031770363450050354, -0.010615119710564613, -0.010103793814778328, 0.020630283281207085, 0.027338875457644463, 0.03457924723625183, -0.0069472105242311954, 0.013785338029265404, 0.009694733656942844, 0.0003308702725917101, -0.02143476903438568, 0.009462932124733925, 0.0077721490524709225, -0.015857910737395287, -0.02582535147666931, 0.0022089264821261168, 0.02237560786306858, 0.019553091377019882, -0.01508069597184658, -0.000479367736261338, 0.013021758757531643, 0.006013188976794481, -0.025389019399881363, -0.003947433549910784, 0.01746688224375248, 0.012892222963273525, 0.03217942267656326, -0.024134568870067596, -0.0179168488830328, 0.010035617277026176, 0.04090604931116104, 0.025048136711120605, -0.041124213486909866, -0.018653158098459244, -0.024557264521718025, 0.0015612475108355284, -0.00803803838789463, 0.022498326376080513, -0.0017052708426490426, 0.016307877376675606, -0.011821847409009933, 1.8442342479829676e-05, -0.004080378450453281, -0.019634902477264404, 0.0027321830857545137, 0.0310613252222538, -0.01993488147854805, 0.0017444725381210446, 0.007649431005120277, -0.0369790680706501, 0.0008794800378382206, -0.029261458665132523, 0.005038261413574219, -0.028934210538864136, 0.01988033950328827, 0.009367484599351883, 0.018135014921426773, -0.008931153453886509, -0.02045302465558052, 0.014944342896342278, 0.010676478035748005, -0.013526266440749168, 0.02035757713019848, 0.010308324359357357, -0.035288285464048386, 0.005614355206489563, 0.026875272393226624, -0.009292490780353546, -0.006371116731315851, -0.0025481057818979025, -0.010383318178355694, -0.021298415958881378, -0.0025958295445889235, 0.0025412882678210735, -0.026588931679725647, 0.02476179413497448, -0.05336875841021538, -0.0133285541087389, 0.0014581301948055625, -0.009878810495138168, 0.028088819235563278, 0.010069705545902252, -0.04226958379149437, 0.02281193993985653, -0.009865175001323223, 0.014208033680915833, -0.007199464365839958, -0.01607607677578926, 0.0004427227540872991, 0.011821847409009933, 0.015844276174902916, -0.014903436414897442, 0.018748605623841286, 0.04232412576675415, 0.013171747326850891, 0.0059791007079184055, -0.0012476344127207994, -0.0038588037714362144, 0.009558379650115967, 0.006187039893120527, 0.030243204906582832, -0.022525597363710403, -0.017685048282146454, 0.012305902317166328, -0.010117429308593273, 0.04404217749834061, -0.010349229909479618, 0.009353849105536938, 0.0012007629266008735, -0.012285449542105198, 0.005058714654296637, -0.11497326195240021, -0.027870653197169304, -0.0023486888967454433, 0.04235139489173889, -0.011808212846517563, 0.0013703525764867663, -0.02331644669175148, 0.017194176092743874, 0.008931153453886509, 0.03534282371401787, -0.00017896396457217634, -0.035724613815546036, 0.016785115003585815, 0.004806460812687874, -0.017780495807528496, -0.0020947305019944906, -0.02243014983832836, 0.019784891977906227, -0.025089042261242867, 0.03779718652367592, 0.03337933495640755, 0.012517250142991543, -0.02421637997031212, -0.012796775437891483, -0.007199464365839958, -0.01290585845708847, -0.015244320034980774, 0.03160674124956131, 0.005126891192048788, 0.008794800378382206, -0.016839656978845596, -0.0002167807542718947, 0.0013695004163309932, -0.0193621963262558, 0.0008696796139702201, 0.015203414484858513, 0.005123482551425695, -0.021243873983621597, 0.011760489083826542, -0.009026600979268551, 0.00436672056093812, 0.008815253153443336, 0.0036406381987035275, -0.008140303194522858, 0.006647232919931412, -0.03790627047419548, -0.01434438768774271, 0.0350973904132843, -0.02480269968509674, -0.022266525775194168, -0.035670071840286255, -0.011426422744989395, 0.002500382252037525, 0.005055305548012257, 0.0009757796651683748, -0.0029486443381756544, -0.003630411811172962, -0.005870017688721418, -0.0179168488830328, 0.010117429308593273, -0.025484466925263405, 0.011112809181213379, -0.010765108279883862, 0.0023912994656711817, 0.018257733434438705, 0.010506036691367626, -0.0266571082174778, 0.00011398299830034375, 0.03430653735995293, 0.001747029135003686, 0.013430818915367126, 0.023043740540742874, -0.013164930045604706, 0.01798502542078495, -0.010533307678997517, 0.013498995453119278, 0.01528522651642561, 0.022198349237442017, 0.011801394633948803, 0.005403006915003061, -0.012449073605239391, -0.010021981783211231, -0.01503979042172432, -0.035806428641080856, -0.011610499583184719, 0.012817228212952614, 0.013471725396811962, 0.011821847409009933, -0.00499735539779067, -0.03007958084344864, -0.004884863737970591, 0.010328777134418488, 0.012524068355560303, -0.00846073403954506, -0.010103793814778328, -0.004956449382007122, -0.00022029610408935696, 0.007758513558655977, 0.008406192995607853, 0.026629837229847908, -0.033297523856163025, 0.0065108793787658215, -0.03891528770327568, 0.005157570820301771, -0.0184213574975729, -0.03776991739869118, -0.0030031856149435043, 0.0013916578609496355, 0.009026600979268551, -0.014467105269432068, -0.0035588261671364307, -0.008937971666455269, -0.03117040917277336, 0.005559813696891069, -0.011535505764186382, -0.013178564608097076, -0.010260600596666336, -0.016362419351935387, 0.015517027117311954, -0.03444289043545723, 0.008637993596494198, 0.03209761157631874, 0.004458758980035782, 0.017644142732024193, 0.02378004975616932, -0.011174168437719345, 0.004414444323629141, 0.0007013682625256479, 0.020193953067064285, 0.028497880324721336, -0.012060466222465038, -0.016839656978845596, 0.014739812351763248, -0.004656471777707338, -0.009265219792723656, 0.013805790804326534, 0.0033832709304988384, -0.0037463121116161346, 0.0010993500472977757, 0.00381448888219893, 0.034770142287015915, 0.004281499423086643, -0.0029401222709566355, 0.0012220682110637426, 0.013055847026407719, -0.01210818998515606, 0.014398928731679916, -0.014412564225494862, -0.007356270682066679, 0.016430595889687538, -0.016935104504227638, 0.01658058539032936, 0.04513300582766533, 0.020330306142568588, -0.016157889738678932, -0.002774793654680252, 0.008569817058742046, -0.03845168650150299, 0.016703302040696144, -0.0310613252222538, -0.026016246527433395, 0.015844276174902916, 0.056068554520606995, -0.005723437760025263, 0.02811609022319317, -0.012503615580499172, -0.022034725174307823, -0.02373914234340191, -0.01461709477007389, 0.014221669174730778, 0.007615342736244202, -0.004475803580135107, -0.01307629980146885, -0.010526489466428757, 0.019566725939512253, -0.003163401037454605, 0.03310662880539894, -0.001850998611189425, -0.025838986039161682, -0.00967427995055914, -0.0032128291204571724, 0.019634902477264404, 0.03749721124768257, -0.019184935837984085, -0.013533083721995354, -0.005280288867652416, 0.053259674459695816, 0.007533530239015818, 0.014508011750876904, 0.005798432044684887, -0.006613144185394049, -0.0017964572180062532, -0.014548917300999165, 0.0022089264821261168, -0.009094777517020702, 0.004642836283892393, 0.004738283809274435, 0.03302481397986412, -0.009176590479910374, -0.002725365338847041, -0.01262633316218853, 0.0041553727351129055, 0.001946446136571467, 0.01114008016884327, -0.01746688224375248, 6.615275196963921e-05, -0.03310662880539894, 0.020030327141284943, -0.009087960235774517, -0.015148873440921307, -0.011480963788926601, 0.021489311009645462, -0.006497243884950876, 0.011699129827320576, 0.005253018345683813, 0.01993488147854805, -0.03209761157631874, -0.008078944869339466, -0.009585650637745857, 0.003373044542968273, -0.01120825670659542, -0.0008428349974565208, 0.004104240331798792, 0.010540124960243702, 0.03779718652367592, 0.006405205465853214, 0.0014692088589072227, 0.009756091982126236, 0.019280383363366127, -0.02518448978662491, -0.02822517231106758, 0.018325909972190857, -0.01407168060541153, 0.01988033950328827, -0.029534166678786278, -0.026820732280611992, -0.0116650415584445, -0.019798526540398598, 0.037115421146154404, 0.004649654030799866, -0.04292408004403114, 0.06839491426944733, -0.00423036701977253, -0.003199193859472871, 0.008590269833803177, -0.02383458986878395, 0.010758290067315102, 0.032697565853595734, 0.004349676426500082, -0.003882665652781725, -0.016266971826553345, 0.049878109246492386, 0.000516864936798811, 0.009865175001323223, -0.040115196257829666, -0.01191047765314579, 0.01238089706748724, 3.094585190410726e-05, 0.017125997692346573, -0.013219471089541912, 0.013498995453119278, 0.0004546536656562239, 0.010519672185182571, -0.00045550588401965797, -0.024584535509347916, 0.012121825478971004, 0.007935773581266403, 0.015476121567189693, -0.028961481526494026, -0.041015129536390305, -0.030270475894212723, 0.03823351860046387, 0.01943037286400795, -0.04998718947172165, -0.031388573348522186, -0.010151517577469349, 0.017344163730740547, 0.01240816805511713, 0.00621431041508913, 0.029016023501753807, -0.01332173589617014, -0.010731020011007786, 0.006964254658669233, -0.02724342793226242, -0.03605186194181442, -0.014180763624608517, -0.01434438768774271, -0.01285813469439745, 0.0005858939257450402, -0.03946070000529289], "faba4ae7-0c67-498f-a704-eabd35773868": [-0.025891780853271484, 0.024356959387660027, 0.01729677803814411, -0.03953167796134949, -0.0249041561037302, 0.009128854610025883, -0.0002873620833270252, -0.04124000295996666, -0.01047682948410511, -0.010950622148811817, -0.0045777736231684685, 0.016455961391329765, -0.027306487783789635, 0.0008137059630826116, 0.005989142693579197, -0.0021537558641284704, 0.015761956572532654, -0.006452925968915224, -0.00607255706563592, 0.0010543561074882746, -0.028827963396906853, 0.006576379295438528, -0.009529243223369122, -0.027012869715690613, 0.0038303821347653866, -0.011698014102876186, -0.004727919586002827, -0.004437637981027365, -0.015414952300488949, -0.013106046244502068, 0.015655186027288437, -0.00507158599793911, -0.021153852343559265, -0.012739023193717003, -0.017123276367783546, 0.005662159062922001, -0.0002690109540708363, 0.003001244505867362, -0.006149298045784235, 0.024784039705991745, 0.029388505965471268, 0.016762927174568176, 0.0019902638159692287, 0.009856226854026318, -0.02645232528448105, 0.008248000405728817, 0.01520141214132309, -0.04268139973282814, -0.0006176824681460857, 0.0057689291425049305, 0.02318248711526394, 0.032431457191705704, -0.04796652868390083, -0.023702992126345634, -0.017510319128632545, -0.003209780203178525, -0.003570129629224539, 0.006376184988766909, 0.021607626229524612, -0.016082266345620155, 0.013880130834877491, 0.0017350163543596864, -0.006209356244653463, -0.0008791861473582685, 0.0026058610528707504, 0.003453349694609642, 0.021140506491065025, 0.013633224181830883, -0.004280819091945887, -0.008655061945319176, 0.0075606671161949635, 0.019458875060081482, 0.023956570774316788, 0.011964939534664154, 0.002208809135481715, -0.015254797413945198, -0.005391896702349186, -0.0021354046184569597, 0.002000273671001196, -0.009882919490337372, -0.01881825365126133, -0.014187094755470753, -0.02139408513903618, 0.02495754137635231, 0.026892753317952156, 0.0011252581607550383, 0.004344213753938675, 0.015735263004899025, 0.026972830295562744, -0.01630915328860283, -0.0019719128031283617, 0.005448618438094854, 0.00031384610338136554, 0.0049881720915436745, -0.004077288322150707, 0.049407925456762314, -0.016709541901946068, 0.01028330810368061, -0.01593545824289322, -0.016055574640631676, -0.029014810919761658, 0.03803689405322075, -0.03074982762336731, -0.006266077980399132, -0.030109206214547157, -0.009175566956400871, 0.007200317457318306, -0.024744002148509026, 0.003094668500125408, 0.0037369581405073404, -0.0031213611364364624, 0.042120859026908875, 0.049728237092494965, -0.033098772168159485, 0.022141477093100548, -0.025077657774090767, 0.04767290875315666, -0.0252911988645792, -0.0023622913286089897, 0.0035734663251787424, 0.008014440536499023, 0.00936908833682537, 0.007200317457318306, -0.037369582802057266, 0.01410701684653759, -0.01805751584470272, 0.00792768970131874, -0.034513477236032486, -0.0073938388377428055, -0.02646567113697529, 0.028294112533330917, 0.028774578124284744, -0.012678964994847775, 0.012458751909434795, -0.003917132969945669, 0.041773855686187744, -0.001240369863808155, -0.023649606853723526, -0.011144143529236317, -0.015308182686567307, 0.02352949045598507, 0.010436790063977242, -0.0016082266811281443, 0.014187094755470753, 0.0038937770295888186, -0.010310000739991665, 0.0206600409001112, 0.005538705736398697, -0.007447223644703627, -0.014921139925718307, 0.02320917882025242, 0.0001880991185316816, -0.010376731865108013, 0.013032641261816025, -0.0076741105876863, 0.02530454471707344, 0.008748485706746578, -0.014253825880587101, 0.02422349713742733, 0.00020394782768562436, 0.0166695024818182, 0.01117750909179449, 0.00016505594248883426, 0.00416070269420743, 0.005598763935267925, 0.04382918030023575, -9.874161332845688e-05, -0.015294835902750492, -0.01521475799381733, 0.02351614460349083, -0.0038337185978889465, 0.0011853164760395885, -0.016189036890864372, 0.008007767610251904, 0.0069400654174387455, -0.01175139844417572, -0.0025124370586127043, 0.019312066957354546, -0.03336569666862488, 0.008074498735368252, 0.0013621546095237136, 0.014734292402863503, 0.024130072444677353, 0.039291445165872574, -0.01597549580037594, -0.019285373389720917, 0.004501032643020153, 0.005265107378363609, 0.020179573446512222, 0.00846821442246437, 0.02347610518336296, 0.028747884556651115, -0.01875152252614498, -0.005265107378363609, -0.6158506870269775, 0.007146932650357485, 0.00777420774102211, -0.024383652955293655, -0.0027826991863548756, 0.0028444258496165276, 0.008001094684004784, 0.0057455734349787235, -0.0121317682787776, -0.006636437494307756, -0.021073775365948677, -0.01957899145781994, 0.033846162259578705, 0.004821343347430229, -0.0005284292274154723, -0.006866660434752703, -0.0010902241338044405, -0.03187091648578644, 0.030162591487169266, -0.006726524792611599, -0.034193165600299835, 0.018711483106017113, -0.01919194869697094, -0.009749457240104675, -0.00936908833682537, 0.035314254462718964, 0.000823298585601151, -0.004587783478200436, 0.006232712417840958, 0.004918104037642479, -0.030189283192157745, -0.008001094684004784, 0.0029562008567154408, 0.006266077980399132, 0.026559095829725266, 0.016215728595852852, -0.013599858619272709, 0.013152758590877056, 0.02350279688835144, 0.01047682948410511, -0.013499761000275612, -0.021540895104408264, 0.018564675003290176, -0.007373819127678871, 0.016002189368009567, 0.0026091975159943104, -0.011611263267695904, 0.01586872525513172, -0.02203470654785633, -0.0216877032071352, 0.0037503044586628675, 0.0018167622620239854, -0.01103070005774498, -0.019245333969593048, 0.01951226033270359, 0.0019151910673826933, 0.003096336731687188, -0.012065036222338676, 0.010196557268500328, -0.021580932661890984, 0.0028194014448672533, -0.004290828946977854, -0.01877821423113346, -0.004894747864454985, -0.033125463873147964, -0.00852159969508648, -0.027573412284255028, 0.0036735632456839085, -0.016189036890864372, -0.025504739955067635, 0.005231741350144148, 0.013299567624926567, 0.018631406128406525, 0.020753463730216026, 0.025598162785172462, 0.039558373391628265, 0.02749333530664444, 0.02673259750008583, 0.0011019022203981876, 0.01989930309355259, -0.0013037646422162652, -0.02200801484286785, -0.018190978094935417, -0.008728466928005219, 0.05205048993229866, -0.006589725147932768, -0.018711483106017113, 0.008308058604598045, 0.007740842178463936, 0.00883523654192686, 0.0008608350181020796, 0.016829658299684525, 0.007160278968513012, -0.017817283049225807, 0.0004958976642228663, -4.811959297512658e-05, 0.0037369581405073404, 0.01913856528699398, 0.01664281077682972, -0.027760261669754982, 0.003243145765736699, -0.019392143934965134, 0.0022355017717927694, -0.015815339982509613, -0.026559095829725266, 0.011517838574945927, 0.02200801484286785, 0.010903909802436829, 0.013679936528205872, -0.02247513458132744, -0.04639166593551636, -0.024049995467066765, 0.007206990849226713, 0.0004725416947621852, -0.017803937196731567, -0.024090034887194633, 0.005575408227741718, -0.015575108118355274, -0.013346279039978981, -0.019005101174116135, 0.028694501146674156, 0.026652520522475243, 0.009188912808895111, -0.005238414742052555, 0.019445529207587242, -0.02344941347837448, 0.025144390761852264, -0.011017353273928165, -0.024677271023392677, -0.003174746176227927, -0.016776273027062416, 0.004317521117627621, 0.01633584499359131, -0.013586511835455894, 0.00371026573702693, -0.015721917152404785, 0.003208111971616745, -0.0069600846618413925, 0.04075953736901283, -0.022114785388112068, 0.014026939868927002, -0.00834142416715622, 0.01921864226460457, -0.02707960084080696, -0.023729683831334114, -0.009756130166351795, -0.0252911988645792, 0.0011569556081667542, -0.024877464398741722, 0.01554841548204422, -0.01984591782093048, 0.005498667247593403, -0.0054219258017838, 0.021861204877495766, 0.025064311921596527, -0.00024398666573688388, -0.015388259664177895, -0.02164766564965248, -0.028294112533330917, -0.012658946216106415, -0.010636984370648861, 0.0241968035697937, -0.028133956715464592, -0.005225068423897028, -0.01229192316532135, -0.0234894510358572, -0.010923929512500763, 0.004200741183012724, 0.00426079984754324, -0.038116972893476486, 0.00018382414418738335, 0.0023289257660508156, -0.007213663775473833, -0.0065129841677844524, -0.013840091414749622, 0.017523664981126785, -0.007333780638873577, 0.0011361020151525736, -0.01485440880060196, 0.006946738343685865, -0.0011652969988062978, 0.009162221103906631, 0.01249879039824009, -0.028374189510941505, -0.012965910136699677, -0.006809939164668322, 0.017843974754214287, -0.007734168786555529, -0.021500855684280396, 0.0050315470434725285, 0.022648636251688004, 0.017643781378865242, -0.009155547246336937, -0.0015448317863047123, -0.014200441539287567, 0.012892506085336208, 0.0024407007731497288, 0.010009709745645523, -0.001210340647958219, 0.013666589744389057, 0.012899179011583328, -0.017283432185649872, 0.0051516639068722725, -0.04057268798351288, 0.018591366708278656, -0.0220747459679842, 0.01430721115320921, 0.007580686826258898, -0.0021537558641284704, 0.0028944741934537888, 0.025958513841032982, -0.014213787391781807, -0.00697343097999692, -0.0014238811563700438, 0.006679812911897898, 0.028000494465231895, -0.024850772693753242, 0.0195656456053257, -0.00040372496005147696, 0.013099373318254948, 0.0013121060328558087, 0.004904757719486952, 0.02713298611342907, 0.013072680681943893, -0.022248247638344765, -0.011624609120190144, 0.030296053737401962, -0.028080571442842484, -0.027319833636283875, -0.04956807941198349, 0.005648812744766474, -0.005278453230857849, 0.0069600846618413925, 0.030269362032413483, 0.015735263004899025, -0.011110777035355568, 0.03918467462062836, -0.020673386752605438, 0.018497943878173828, -0.0061993468552827835, -0.015748608857393265, 0.02598520554602146, -0.007460569962859154, -0.002093697665259242, 0.015041256323456764, -0.0011302629718557, 0.04089299961924553, 0.019045140594244003, -0.01876486837863922, 0.005979133304208517, -0.007480589672923088, -0.0033949597273021936, -0.03008251264691353, 0.02888134866952896, -0.012438732199370861, -0.028667807579040527, -0.0027960455045104027, 0.03147052600979805, 0.016923081129789352, 0.008421502076089382, 0.019432183355093002, -0.03883767127990723, 0.0011052387999370694, -0.005351857747882605, 0.030269362032413483, -0.014934486709535122, -0.018537981435656548, -0.020112842321395874, 0.004214087501168251, -0.010510195046663284, -0.0435088686645031, -0.03296530991792679, -0.03718273341655731, 0.01026996225118637, 0.023689646273851395, -0.007941036485135555, -0.0066531202755868435, 0.018644751980900764, 0.013479742221534252, 0.01740354858338833, 0.004304175265133381, -0.03283184766769409, 0.020673386752605438, 0.022341672331094742, -0.025224467739462852, -0.006749880500137806, -0.011924900114536285, -0.006933392025530338, 0.00924229808151722, 0.022888869047164917, -0.014894447289407253, 0.0072870682924985886, 0.014173748902976513, -0.0030579662416130304, -0.014560790732502937, -0.00225385301746428, 0.01877821423113346, -0.012919198721647263, 0.03107013739645481, -0.019645722582936287, 0.014667561277747154, 0.005575408227741718, -0.02346275933086872, 0.02853434532880783, 0.06843972206115723, 0.01485440880060196, 0.016816312447190285, -0.004471003543585539, -0.005138317588716745, 0.015067948959767818, 0.019966034218668938, -0.01700315997004509, -0.009349068626761436, -0.012538828887045383, 0.013312913477420807, -0.030883289873600006, 0.013486415147781372, 0.009202259592711926, 0.02459719218313694, -0.020032765343785286, 0.005899055395275354, -0.011137469671666622, -0.010189884342253208, 0.03686242178082466, 0.02642563357949257, 0.04521719366312027, -0.0006810773047618568, 0.014961179345846176, -0.012331961654126644, -0.03624849393963814, -0.0032981992699205875, 0.0075606671161949635, -0.007347126491367817, 0.005044893361628056, 0.0016107290284708142, -0.007533974479883909, 0.023969916626811028, 0.008915314450860023, 0.011624609120190144, 0.017149968072772026, -0.03109683096408844, -0.022862175479531288, -0.0060792299918830395, -0.017069891095161438, 0.03881097957491875, -0.02094031125307083, 0.03728950396180153, 0.03656880557537079, -0.008401482366025448, -0.02893473394215107, 0.014026939868927002, -0.030536286532878876, 0.007533974479883909, -0.027199717238545418, 0.0037803335580974817, 0.012732350267469883, 0.042894940823316574, 0.03467363491654396, -0.02752002701163292, 0.016923081129789352, 0.005445281974971294, 0.004367569927126169, 0.03902452066540718, -0.021100467070937157, -0.009495877660810947, 0.02569158747792244, 0.004734592512249947, 0.010016382671892643, -0.0008053645142354071, -0.007253702729940414, 0.009729437530040741, 0.012912524864077568, -0.026612481102347374, -0.0036668903194367886, 0.02236836403608322, -0.022208208218216896, -0.012545502744615078, -0.015495030209422112, -0.0015131344553083181, -0.00992963183671236, -0.009435819461941719, -0.001565685379318893, -0.0023305939976125956, -0.012972583062946796, 0.006823285482823849, -0.003503398271277547, 0.01916525699198246, -0.018364479765295982, 0.02637224830687046, -0.034139782190322876, 0.0028210696764290333, 0.02526450715959072, -0.04017230123281479, -0.031176907941699028, -0.0028027186635881662, -0.00552202295511961, -0.030482901260256767, -0.019458875060081482, 0.03843728452920914, 0.027333179488778114, -0.009355741553008556, 0.03189760819077492, 0.0036835731007158756, 0.014053631573915482, 0.004040585830807686, -0.04241447523236275, -0.00015608890680596232, -0.02890804037451744, -0.009662706404924393, -0.0019769174978137016, 0.008207961916923523, -0.002917830366641283, -0.008735139854252338, 0.004631158895790577, -0.015228104777634144, -0.02175443433225155, -0.020700078457593918, 0.01303931511938572, 0.0011644628830254078, 0.03176414594054222, -0.004724582657217979, -0.0006397872348316014, 0.010817158967256546, -0.014013593085110188, -0.00957595556974411, -0.012739023193717003, -0.01985926367342472, 0.010083113797008991, -0.013866784051060677, -0.032431457191705704, 0.00652299402281642, 0.004751275293529034, 0.0007027650135569274, 0.006129278801381588, 0.0054219258017838, -0.010570253245532513, 0.021207237616181374, 0.006566369440406561, -0.021527549251914024, 0.0002965376479551196, 0.0063861943781375885, 0.010363386012613773, -0.01630915328860283, -0.028694501146674156, 0.012365328148007393, -0.02244844101369381, -0.005098278634250164, 0.01912521757185459, 0.002952864393591881, 0.014587483368813992, 0.007253702729940414, -0.027760261669754982, -0.004734592512249947, 0.012732350267469883, 0.022982293739914894, 0.01668284833431244, -0.0198859553784132, 0.0002233416453236714, -0.030242668464779854, 0.02671925164759159, -0.020513230934739113, 0.011077411472797394, -0.025397969409823418, 0.0025274516083300114, 0.032725077122449875, -0.002839420922100544, 0.006276087835431099, -0.001421378692612052, -0.032404765486717224, -0.024383652955293655, -0.016082266345620155, 0.012785735540091991, -0.0319242998957634, 0.01840451918542385, 0.013800052925944328, -0.0060592107474803925, -0.01029665395617485, -0.02749333530664444, 0.005275116767734289, 0.00022000506578478962, 0.003419984132051468, 0.03221791982650757, 0.04551081359386444, 0.016816312447190285, 0.018965063616633415, -0.0005630461382679641, 0.041053153574466705, -0.01409367099404335, -0.010470155626535416, 0.03224461153149605, -0.024396998807787895, 0.012105075642466545, -0.012919198721647263, -0.002210477599874139, 0.009395780973136425, -0.017216701060533524, 0.004083961248397827, 0.007767534349113703, 0.009168894030153751, 0.056267913430929184, 0.018217671662569046, 0.033445775508880615, -0.009462512098252773, -0.02422349713742733, -0.028988119214773178, 0.044309645891189575, -0.020326383411884308, 0.029121581465005875, -0.017870668321847916, -0.018257709220051765, 0.02318248711526394, 0.021193891763687134, 0.017523664981126785, 0.00641622394323349, 0.038864366710186005, -0.009248971939086914, 0.011344336904585361, 0.004704563412815332, 0.014734292402863503, -0.02853434532880783, -0.0050282105803489685, -0.03718273341655731, -0.026479018852114677, -0.016736233606934547, -0.0016340850852429867, 0.0296020470559597, -0.0039771911688148975, 0.01500121783465147, 0.004858045838773251, 0.00338828656822443, -0.02463723160326481, -0.012125094421207905, 0.027306487783789635, -0.00029090719181112945, -0.017950745299458504, -0.02095365896821022, -0.05124971270561218, -0.014347250573337078, 0.008381463587284088, 0.029762202873826027, 0.008421502076089382, 0.017590396106243134, -0.02896142564713955, -0.012105075642466545, 0.006172654218971729, -0.00832140538841486, 0.04025237634778023, -0.004998181480914354, 0.04244116693735123, -0.0007165283896028996, 0.01026996225118637, -0.01209840178489685, -0.008261347189545631, -0.013719975017011166, 0.011831476353108883, 0.03755642846226692, 0.025371277704834938, -0.0036535440012812614, -0.0209803506731987, -0.011117450892925262, 0.006099249701946974, 0.01701650582253933, -0.027213063091039658, 0.024009956046938896, 0.02498423494398594, -0.000871678872499615, -0.016442615538835526, 0.016402577981352806, -0.034513477236032486, 0.015721917152404785, -0.0007540647638961673, -0.0022171505261212587, -0.007520628161728382, 0.018244363367557526, -0.00959597434848547, 0.014894447289407253, -0.023609567433595657, 0.050395552068948746, 0.008288039825856686, 0.029842279851436615, -0.024036649614572525, -0.017430240288376808, -0.03499394282698631, 0.007513955235481262, 0.007073528133332729, 0.02240840345621109, -0.014000247232615948, -0.015134681016206741, 0.006556359585374594, -0.013106046244502068, 0.014720945619046688, -0.0017008164431899786, 0.0041273366659879684, 0.02821403369307518, -0.0027276459150016308, -0.004174049012362957, 0.027213063091039658, 0.0126455994322896, 0.0020603318698704243, 0.003797016339376569, -0.024343613535165787, 0.004734592512249947, 0.00651965755969286, -0.017817283049225807, 0.017603741958737373, 0.009142201393842697, -0.0065096477046608925, -0.0048680552281439304, -0.013960207812488079, 0.002947859466075897, -0.013339606113731861, -0.001275403774343431, 0.013513107784092426, -0.02202136069536209, 0.012245210818946362, -0.020179573446512222, -0.006920045707374811, 0.0108438516035676, -0.008348098024725914, 0.004360896535217762, 0.007373819127678871, 0.007046835497021675, -0.030829904600977898, 0.012698984704911709, -0.01465421449393034, 0.016482654958963394, -0.025798358023166656, 0.0060592107474803925, 0.017537010833621025, -0.013459722511470318, 0.014413981698453426, -0.032004378736019135, -0.007947709411382675, -0.030990060418844223, -0.012425386346876621, -0.00867508165538311, -0.0043942625634372234, -0.010336693376302719, 0.018965063616633415, -0.009309030137956142, 0.014600829221308231, 0.0063695115968585014, -0.008348098024725914, 0.018965063616633415, -0.011004007421433926, 0.010636984370648861, -0.006496301386505365, -9.703422620077617e-06, -0.0035768027883023024, -0.03438001498579979, 0.004040585830807686, -0.01070371549576521, -0.03571464493870735, -0.00461447611451149, 0.010743754915893078, -0.0033949597273021936, 0.026532402262091637, -0.008201288990676403, -0.029094887897372246, 0.010737081989645958, -0.02382310852408409, 0.030562980100512505, -0.007300414610654116, 0.0037202753592282534, 0.001016819616779685, 0.019659068435430527, 0.0375831238925457, -0.0044076088815927505, -0.03352585434913635, -0.019071832299232483, 0.0008366449037566781, -0.006933392025530338, -0.0047145732678473, -0.010450136847794056, -0.014213787391781807, 0.055520523339509964, 0.02965543232858181, -0.009682725183665752, -0.019792532548308372, 0.008868602104485035, -0.028000494465231895, -0.010983987711369991, 0.012258557602763176, 0.017096582800149918, 0.023049024865031242, 0.033472467213869095, 0.001259555108845234, 0.025558125227689743, -0.014494059607386589, 0.012191826477646828, -0.03357923775911331, 0.011090758256614208, 0.010076440870761871, 0.019605685025453568, 0.004240780137479305, -0.0023305939976125956, -0.02741325832903385, -0.018004130572080612, -0.010536887682974339, -0.0166695024818182, 0.008081171661615372, 0.015681877732276917, -0.01697646640241146, -0.021954629570245743, -0.03072313405573368, 0.007647417951375246, -0.006783246528357267, 0.011464454233646393, 0.004684544168412685, -0.012872486375272274, 0.011978285387158394, -0.010717062279582024, 0.00992963183671236, -0.024396998807787895, -0.005235077813267708, 0.008281365968286991, 0.00039580059819854796, 0.00797440204769373, -0.008434848859906197, 0.0034733691718429327, 0.01298592984676361, 0.0020503222476691008, 0.004110653884708881, 0.013986900448799133, 0.005181693006306887, 0.04948800429701805, 0.012965910136699677, 0.019031794741749763, -0.012011650949716568, -0.0023139112163335085, -0.016135651618242264, 0.003002912737429142, 0.025478046387434006, 0.032378073781728745, -0.007173625286668539, -0.018177632242441177, 0.03728950396180153, -0.0224617887288332, 0.017897360026836395, -0.014026939868927002, -0.007053508423268795, -0.01768382079899311, 0.0056021008640527725, -0.0036034954246133566, -0.02206140011548996, -0.008461540564894676, 0.014173748902976513, -0.004978162236511707, -0.005308482330292463, -0.0056254565715789795, 0.010616964660584927, -0.010917256586253643, 0.00778088066726923, -0.011170836165547371, -0.0012328625889495015, -0.009702744893729687, 0.019712453708052635, 0.013152758590877056, -0.04820676147937775, -0.007533974479883909, 0.15107987821102142, -0.020072804763913155, 0.008908641524612904, 0.014614176005125046, 0.007860958576202393, 0.0011711360421031713, 0.001468090689741075, -0.007854285649955273, -0.02466392330825329, -0.004354223608970642, 0.009555935859680176, 0.013826745562255383, -0.026599135249853134, 0.014000247232615948, 0.007627398706972599, -0.024477075785398483, -0.004420955199748278, -0.03408639878034592, -0.014253825880587101, -0.006496301386505365, -0.014720945619046688, 0.0028127282857894897, -0.012105075642466545, -0.023382680490612984, 0.015388259664177895, 2.193534055550117e-05, -0.01948556676506996, 0.030109206214547157, 0.03251153603196144, 0.0024423690047115088, -0.01585537940263748, -0.003198102116584778, -0.004644505213946104, -0.011217547580599785, -0.0238764937967062, -0.0023139112163335085, 0.02561151050031185, 0.019752493128180504, 0.021861204877495766, 0.026906099170446396, 0.021514201536774635, -0.000935907824896276, -0.013599858619272709, 0.0027927090413868427, 0.021821167320013046, 0.011611263267695904, -0.00023293428239412606, -0.01498787198215723, -0.007400511763989925, 0.02132735401391983, -0.019752493128180504, -0.005708870943635702, 0.009309030137956142, 0.020526576787233353, -0.005505340173840523, 0.0025391296949237585, -0.0060758935287594795, 0.023235872387886047, 0.025918474420905113, 0.045003652572631836, -0.007533974479883909, 0.054372742772102356, 0.0014964515576139092, 0.013259528204798698, 0.006336146034300327, 0.02493084967136383, -0.01773720420897007, -0.0023272575344890356, -0.004184058401733637, 0.010049748234450817, -0.016869697719812393, -0.00677657313644886, 0.009902939200401306, 0.020793503150343895, -0.010236595757305622, 0.002745996927842498, 0.045804429799318314, 0.026505710557103157, -0.011244240216910839, 0.012345308437943459, -0.020499885082244873, -0.025157736614346504, -0.01884494535624981, 0.028133956715464592, -0.007694129832088947, -0.03544771671295166, -0.006159307900816202, -0.01729677803814411, -0.0205933079123497, -0.03907790407538414, -0.0019769174978137016, -0.011337663978338242, -0.004420955199748278, -0.010096460580825806, 0.019699107855558395, 0.016082266345620155, 0.01465421449393034, 0.031176907941699028, -0.015468337573111057, 0.007580686826258898, -0.017123276367783546, 0.05776269733905792, 0.027253102511167526, 0.019338758662343025, 0.0072670490480959415, 0.009449165314435959, -0.01429386530071497, -0.00778088066726923, 0.009962997399270535, -0.009475857950747013, 0.0013020964106544852, -0.026252131909132004, -0.013052660971879959, -0.014680907130241394, -0.0020586636383086443, -0.0030229322146624327, -0.028721192851662636, -0.0066531202755868435, 0.020700078457593918, -0.0045777736231684685, -0.012458751909434795, -0.024784039705991745, 0.029388505965471268, -0.011671321466565132, 0.004093971103429794, -0.015828687697649002, -0.04583112150430679, 0.01881825365126133, 0.0029628740157932043, -0.014013593085110188, 0.02743995003402233, -0.032378073781728745, 0.0041006444953382015, 0.0013671594206243753, -0.029148273169994354, -0.00796772912144661, -0.012979256920516491, -0.006109259091317654, 0.003228131216019392, 0.01632249914109707, -0.010910583660006523, 0.022248247638344765, 0.010730408132076263, 0.007460569962859154, 0.015708571299910545, -0.02962874062359333, -0.005058239679783583, 0.005542042665183544, -0.003917132969945669, -0.043882567435503006, -0.017496971413493156, -0.011984958313405514, -0.007493935991078615, -0.010583599098026752, -0.003870421089231968, -0.03712935000658035, 0.007453897036612034, -0.008027787320315838, 0.008274693042039871, 0.004317521117627621, -0.036301881074905396, 0.008034460246562958, 0.019365450367331505, -0.01556176133453846, 0.00280772359110415, 0.01500121783465147, -0.16570740938186646, 0.010343366302549839, 0.02091361954808235, -0.02786703035235405, 0.0069400654174387455, 0.013826745562255383, 0.02244844101369381, -0.015761956572532654, -0.010556906461715698, 0.01285913959145546, -0.0035267542116343975, -0.0031246975995600224, -0.043188560754060745, 0.000120950659038499, -0.009609321132302284, 0.002467393409460783, 0.0159621499478817, -0.004324194509536028, 0.04508373141288757, 0.026919445022940636, 0.03715604171156883, -0.01731012389063835, 0.02279544435441494, 0.009195586666464806, 0.02028634399175644, 0.010810486041009426, 0.024130072444677353, -0.006833294872194529, -0.0011444434057921171, -0.010777120478451252, 0.01064365729689598, 0.00046211492735892534, 0.04313517361879349, -0.004637831822037697, 0.005505340173840523, 0.015228104777634144, 0.007900997065007687, -0.01410701684653759, -0.0023789743427187204, 0.004250789992511272, 0.008374790661036968, -0.008221307769417763, -0.005648812744766474, 0.00777420774102211, 0.00361016858369112, 0.007040162105113268, 0.017123276367783546, -0.025851743295788765, -0.0017350163543596864, -0.01501456368714571, 0.0019302056171000004, -0.03224461153149605, 0.015308182686567307, -0.0015206417301669717, 0.013853438198566437, 0.0034099742770195007, 0.009128854610025883, 0.013986900448799133, -0.0020086150616407394, 6.553231651196256e-05, 0.01845790445804596, -0.035260871052742004, -0.012872486375272274, -0.005338511895388365, -0.012772388756275177, -0.004370906390249729, -0.019832570105791092, 0.027973800897598267, -0.03008251264691353, 0.006206019781529903, -0.025544777512550354, 0.02494419552385807, 0.01117750909179449, -0.005278453230857849, 0.024703962728381157, 0.006913372781127691, -0.00048171725939027965, 0.022194862365722656, 0.002827742835506797, -0.025157736614346504, -0.0072470298036932945, 0.028347497805953026, 0.011224220506846905, -0.0018818253884091973, 0.00922227930277586, -0.018938370048999786, -0.015721917152404785, -0.0014405640540644526, -0.013599858619272709, -0.010450136847794056, 0.01485440880060196, -0.046124741435050964, -0.012825774028897285, -0.011310971342027187, 0.014547443948686123, 0.009842881001532078, -0.0037769970949739218, -0.0058923824690282345, 0.01696312054991722, -0.006783246528357267, 0.0249041561037302, -0.016549386084079742, -0.008074498735368252, 0.018231017515063286, 0.006456262432038784, 0.011144143529236317, -0.01921864226460457, 0.021834513172507286, 0.059150710701942444, 0.008628369309008121, 0.018871638923883438, -0.01809755526483059, -0.007687456905841827, 0.02673259750008583, 0.008187942206859589, 0.01769716665148735, -0.03229799494147301, -0.0017633771058171988, 0.04473672807216644, -0.03072313405573368, 0.02861442230641842, 0.014814370311796665, -0.009202259592711926, 0.0006014166865497828, -0.005545379128307104, -0.014814370311796665, -0.12310607731342316, -0.0347537100315094, 0.014467366971075535, 0.021434124559164047, -0.0019168592989444733, 0.010630311444401741, -0.025050966069102287, 0.011431087739765644, -0.011637955904006958, 0.049381233751773834, -0.023262564092874527, -0.010183211416006088, 0.013232835568487644, 0.003910460043698549, 0.001938547007739544, 0.01480102352797985, 0.005692188162356615, 0.010403424501419067, -0.025117697194218636, 0.033419083803892136, 0.013619878329336643, 0.003341574687510729, -0.012438732199370861, -0.0012662282679229975, -0.005131644196808338, 0.030562980100512505, -0.005725553724914789, 0.01845790445804596, 0.009956324473023415, -0.007794226985424757, -0.01773720420897007, -0.003566793166100979, -0.007547320798039436, -0.04895415157079697, -0.011537858285009861, 0.0009734442573972046, 0.007400511763989925, -0.004821343347430229, 0.014907794073224068, -0.01622907631099224, 0.005548715591430664, 0.013306240551173687, 0.0026859387289732695, 0.0026475682388991117, -0.004424291662871838, -0.01103070005774498, -0.02131400816142559, 0.026265477761626244, 0.00688000675290823, -0.025544777512550354, -0.03547440841794014, -0.026692558079957962, -0.026172053068876266, -0.005014864262193441, 0.004040585830807686, 0.023262564092874527, -0.0006114264251664281, 0.01628246158361435, -0.007787554059177637, -0.008308058604598045, -0.013092699460685253, 0.0016215728828683496, -0.010743754915893078, 0.021153852343559265, 0.016789618879556656, 0.02930842898786068, -0.027973800897598267, -0.013299567624926567, 0.0128391208127141, -0.0191786028444767, -0.0036568804644048214, 0.04049261286854744, -0.011144143529236317, 0.05359865725040436, -0.005718880798667669, 0.01209840178489685, -0.011157489381730556, 0.006486291531473398, 0.02743995003402233, -0.017230046913027763, 0.0021854531951248646, -0.03219122439622879, -0.015428299084305763, -0.005271780304610729, -0.005098278634250164, 0.012925871647894382, 0.019325412809848785, 2.4646302335895598e-05, 0.011517838574945927, -0.03510071337223053, 0.013106046244502068, -0.004491022787988186, 0.022995639592409134, -0.02933512255549431, -0.0051683466881513596, -0.00697343097999692, -0.003318218747153878, -0.04836691543459892, 0.016469309106469154, -0.0033766087144613266, -0.03875759616494179, -0.011798110790550709, -0.04244116693735123, 0.00506824953481555, -0.03424655273556709, -0.03459355607628822, 0.008541618473827839, -0.0011077411472797394, 0.014881101436913013, -0.004741265904158354, 0.006139288656413555, 0.013960207812488079, -0.019672416150569916, 0.0184712503105402, -0.000660640827845782, -0.01299927569925785, 0.003983864560723305, -0.017964091151952744, -0.005281790159642696, -0.005111624952405691, 0.013172777369618416, 0.01665615662932396, -0.003870421089231968, -0.0023656280245631933, 0.01740354858338833, -0.009362414479255676, 0.0018134256824851036, 0.004691217094659805, -0.000951756548602134, 0.018978409469127655, -0.02821403369307518, -0.027680182829499245, 0.023716337978839874, -0.01768382079899311, 0.011310971342027187, 0.008354770950973034, -0.021100467070937157, -0.02454380691051483, 0.001547334250062704, 0.005542042665183544, 0.027546720579266548, 0.01139104925096035, -0.011337663978338242, -0.0397719107568264, -0.007854285649955273, 0.01014317199587822, -0.01374666765332222, -0.03285853937268257, -0.005685514770448208, 0.020886927843093872, -0.006436243187636137, 0.00697343097999692, 0.04121331125497818, 0.010063094086945057, -0.007347126491367817, -0.012545502744615078, -0.008768505416810513, -0.02204805240035057, 0.010249942541122437, -0.006005825474858284, -0.017563702538609505, -0.004047259222716093, 0.030456209555268288, -0.010443463921546936, 0.029868973419070244, -0.007634071633219719, 0.0054819840006530285, -0.047886449843645096, -0.03224461153149605, -4.3375406676204875e-05, -0.024864118546247482, -0.00496481591835618, -0.0033248919062316418, -0.01992599479854107, 0.000854996033012867, 0.013306240551173687, 0.02350279688835144, 0.014667561277747154, 0.005438608583062887, 0.006986777298152447, -0.0024090034421533346, 0.024864118546247482, 0.011444434523582458, -0.020473191514611244, -0.0036735632456839085, 0.011537858285009861, 0.03518079221248627, 0.0005125805619172752, -0.0030713125597685575, -0.005575408227741718, 0.003917132969945669, -0.0006685651605948806, 0.016816312447190285, 0.022928908467292786, -0.02455715462565422, -0.014587483368813992, -0.008374790661036968, -0.0011644628830254078, -0.00847488734871149, 0.013059333898127079, -0.006536340340971947, 0.003374940250068903, -0.0015865389723330736, 0.010056421160697937, -0.024677271023392677, 0.0007916011963970959, -0.02786703035235405, -0.008261347189545631, -0.025117697194218636, -0.0014464029809460044, -0.010403424501419067, 0.033072080463171005, -0.019071832299232483, 0.010350039228796959, -0.0022872185800224543, 0.004320858046412468, -0.025371277704834938, 0.008861929178237915, -0.00868842750787735, 0.0002715133596211672, -0.03149721771478653, 0.011431087739765644, 0.0016082266811281443, 0.014614176005125046, 0.05389227718114853, 0.0048647187650203705, 0.023289257660508156, 0.0015064612962305546, 0.02717302367091179, -0.004631158895790577, -0.008982045575976372, -0.0021971312817186117, -0.02853434532880783, 0.03787674009799957, -0.020860234275460243, -0.010750427842140198, -0.02896142564713955, -0.03438001498579979, -0.0019735810346901417, -6.746126746293157e-05, 0.01429386530071497, 0.07703472673892975, 0.0007411355618387461, -0.020686732605099678, 0.023943224921822548, 0.003128034295514226, 0.016709541901946068, 0.025785012170672417, -0.0188582930713892, -0.006826621945947409, -0.017176661640405655, 0.033792778849601746, -0.00038516527274623513, -0.0034700327087193727, -0.03424655273556709, 0.008935334160923958, 0.015067948959767818, -0.00541525287553668, 0.026492364704608917, -0.028694501146674156, 0.00416403915733099, 0.012125094421207905, -0.001081882743164897, 0.004794650711119175, -0.006082566920667887, -0.01193157397210598, 0.040279071778059006, 0.03195099160075188, -0.02741325832903385, -0.01775055192410946, -0.02462388575077057, 0.010049748234450817, 0.007120240014046431, -0.03555448725819588, -0.023302603513002396, -0.009455839172005653, -0.012792408466339111, 0.015334874391555786, -0.015428299084305763, 0.01777724362909794, -0.010943949222564697, -0.015054603107273579, 0.025197776034474373, -0.002128731459379196, -0.03144383430480957, -0.023436065763235092, -0.009669379331171513, -0.03315215930342674, -0.012071709148585796, -0.0695074200630188], "00b14091-118e-4451-ad88-dd7db709b135": [0.0025375240948051214, 0.011867165565490723, 0.0175861157476902, 0.0036245398223400116, -0.045530036091804504, 0.0038772537373006344, 0.02366509474813938, -0.019455505535006523, 0.0027002303395420313, -0.03414752706885338, -0.014034274034202099, 0.0013700206764042377, -0.029799465090036392, 0.028719373047351837, 0.007436018902808428, 0.026102226227521896, 0.016644496470689774, -0.005729334894567728, 0.011396356858313084, 0.0019334341632202268, -0.0017144731245934963, 0.009056157432496548, -0.0096169738098979, -0.015592099167406559, -0.003953414037823677, 0.005313914734870195, -0.00336663331836462, 0.005881655495613813, -0.001229816465638578, 0.010870157741010189, 0.0020407510455697775, 0.012421059422194958, -0.03049183078110218, 0.001229816465638578, -0.006670953705906868, -0.0010731684742495418, -0.007352934684604406, 0.0025132913142442703, -0.006740190088748932, -0.017807671800255775, 0.015841351822018623, 0.008744591847062111, -0.020355582237243652, 0.002663881052285433, -0.018416956067085266, 0.02275117114186287, 0.008626889437437057, -0.02676689811050892, -0.01852773316204548, 0.03074108250439167, 0.02516060695052147, 0.026503799483180046, -0.0399911031126976, -0.005265449173748493, -0.011562524363398552, 0.013071884401142597, -0.001981899840757251, 0.02014787308871746, 0.0011025940766558051, -0.007892981171607971, -0.0010800921590998769, 0.013653472065925598, -0.007664499804377556, -0.01469202246516943, -0.02230805717408657, -0.0065324800089001656, 0.003922257572412491, 0.0038357118610292673, -0.014470464549958706, 0.016741428524255753, 0.03772014006972313, 0.0076852706260979176, 0.0021584532223641872, -0.003932643216103315, 0.027154624462127686, -0.006456319708377123, -0.008017607033252716, -0.009700058028101921, -0.015439778566360474, -0.006165525875985622, 0.01611829735338688, 0.0024492472875863314, 0.0013492497382685542, 0.020729459822177887, 0.023692790418863297, 0.0009468115167692304, -0.0009468115167692304, 0.01376425102353096, 0.0012990530813112855, -0.026448410004377365, -0.0019507432589307427, 0.015107442624866962, 0.005909350235015154, 0.0037941697519272566, -0.003042951924726367, 0.028996318578720093, -0.005009273532778025, 0.026143768802285194, -0.028802456334233284, -0.005691254511475563, -0.015065900050103664, 0.01627061888575554, -0.02632378414273262, -0.0040157269686460495, -0.03979723900556564, 0.00816300418227911, 0.009893921203911304, -0.013888876885175705, 0.025299081578850746, 0.0020892166066914797, -0.0220034159719944, 0.022474223747849464, 0.01127865444868803, -0.019663214683532715, -0.0031537304166704416, -0.024786729365587234, 0.022834254428744316, -0.019206253811717033, -0.0359753742814064, -0.023983584716916084, 0.012358746491372585, -0.007346011232584715, 0.016949137672781944, -0.039852630347013474, 0.027597738429903984, -0.0030810320749878883, 0.005196212325245142, -0.028193173930048943, -0.018458496779203415, -0.024038974195718765, 0.020632529631257057, 0.017239931970834732, 0.006300537381321192, 0.014955122023820877, 0.028193173930048943, 0.01474741194397211, -0.021158726885914803, -0.0071729193441569805, -0.014401228167116642, 0.005282758269459009, 0.015633640810847282, 0.003361440496519208, 0.003970723133534193, -0.02431591972708702, 0.0031796942930668592, 0.004715017508715391, 0.04029574617743492, -0.001876313821412623, 0.003932643216103315, 0.004444994498044252, 0.033233605325222015, -0.017613809555768967, 0.00805914867669344, -0.007823743857443333, 0.007408324163407087, 0.0032662400044500828, 0.019566284492611885, -0.008924607187509537, 0.02154645323753357, 0.007103682961314917, 0.010946318507194519, 0.028608594089746475, 0.007851438596844673, 0.019566284492611885, 0.008356866426765919, 0.034036748111248016, -0.019954008981585503, 0.0018520810408517718, -0.013708861544728279, -0.0019022775813937187, -0.0018365028081461787, 0.008038378320634365, -0.020771002396941185, 0.009478501044213772, -0.0038668683264404535, -0.011791005730628967, 0.018970848992466927, 0.006757499184459448, -0.020881781354546547, 0.0055077774450182915, -0.0134111437946558, -0.01055166870355606, 0.009990852326154709, 0.042012814432382584, -0.027486959472298622, -0.011562524363398552, 0.006861354224383831, 0.004420761484652758, -0.000739101495128125, 0.011714844964444637, 0.002563487971201539, 0.007449866272509098, 0.005677407141774893, -0.009734676219522953, -0.6066240668296814, 0.021311048418283463, -0.006047823466360569, -0.027445416897535324, 0.013064960017800331, -0.00866150762885809, 0.012047180905938148, 0.03345515951514244, -0.011839471757411957, 0.028802456334233284, -0.004874262027442455, -0.004988502245396376, -0.005216983612626791, 0.0026309937238693237, 0.008827676065266132, -0.004493460059165955, 0.018624665215611458, -0.016104450449347496, 0.004046883434057236, -0.0002706721134018153, -0.0392710417509079, 0.046582434326410294, 0.011424051597714424, -0.014151976443827152, -0.0026240700390189886, 0.03389827534556389, 0.016353702172636986, -0.007927599363029003, 0.021864941343665123, 0.0199955515563488, -0.04054499790072441, -0.029605602845549583, -0.002473480300977826, 0.012151036411523819, 0.03547687083482742, 0.009049233049154282, -0.01250414364039898, 0.014359686523675919, 0.02597760036587715, 0.026614578440785408, 0.012227196246385574, -0.011389432474970818, 0.005445464514195919, 0.0029183258302509785, 0.051013581454753876, -0.019760146737098694, 0.010641677305102348, 0.04350832477211952, -0.010745531879365444, -0.025756042450666428, 0.014539701864123344, 0.009568508714437485, -0.001964590745046735, -0.01944165863096714, 0.013971961103379726, 0.006210529711097479, 0.005144285038113594, -0.022529613226652145, 5.530820271815173e-05, -0.001245394698344171, -0.018264634534716606, 0.010759378783404827, -0.0149966636672616, 0.0027348485309630632, -0.0288301520049572, 0.0029667913913726807, -0.017766131088137627, -0.01597982458770275, 0.01829233020544052, -0.011216341517865658, 0.0077752782963216305, -0.004950422327965498, -0.016602953895926476, -0.01368809025734663, 0.0007763162138871849, 0.03547687083482742, 0.03148883953690529, 0.012289510108530521, 0.00028040853794664145, -0.005708563607186079, 0.030907250940799713, -0.014539701864123344, -0.00994238629937172, -0.0014704138739034534, 0.03209812194108963, -0.0089938435703516, -0.01097401324659586, 0.011154028587043285, 0.011728692799806595, -0.027750059962272644, 0.017544573172926903, 0.03722163662314415, 0.00040395272662863135, -0.005130437668412924, -0.0204386655241251, 0.010489355772733688, -9.55249706748873e-05, -0.0035968453157693148, -0.0039014865178614855, -0.02471749298274517, 0.003904948476701975, -0.028691677376627922, -0.008502263575792313, 0.0068925111554563046, 0.006740190088748932, 0.017572268843650818, 0.014872037805616856, 1.3367275641940068e-05, 0.002646571956574917, -0.042871348559856415, -0.02567295916378498, -0.039603378623723984, 0.00713137723505497, -0.010946318507194519, -0.01592443510890007, -0.0200370941311121, 0.02286195009946823, -0.02054944448173046, 0.03251354396343231, -0.025326775386929512, -0.012635692954063416, 0.003524146741256118, -0.010759378783404827, -0.021518757566809654, 0.034175220876932144, -0.014158899895846844, 0.01155560091137886, 0.0004535002226475626, -0.00846764538437128, -0.004746173974126577, 0.002305581234395504, -0.003489528317004442, 0.017959993332624435, -0.023789720609784126, -0.0018607355887070298, -0.02521599642932415, 0.00046691481838934124, -0.00011315869051031768, 0.009533889591693878, -0.010738608427345753, -0.023014269769191742, -0.0013284786837175488, 0.01873544417321682, -0.026102226227521896, -0.02812393754720688, -0.023526621982455254, -0.025852974504232407, -0.015522862784564495, -0.005580476019531488, -0.01773843541741371, 0.0006560175097547472, 0.0010212409542873502, -0.021684926003217697, 0.036196932196617126, -0.0069998279213905334, -0.018223091959953308, -0.016242923215031624, -0.014442769810557365, -0.01183254737406969, -0.023083508014678955, -0.0043169064447283745, 0.03273509815335274, -0.003174501471221447, 0.017267625778913498, -0.017959993332624435, -0.03406444191932678, -0.018901612609624863, 0.010904775932431221, 0.027251554653048515, -0.04192972928285599, 0.0134111437946558, 0.015148984268307686, -0.02139413170516491, -0.0019455505535006523, -0.009630821645259857, 0.03736010938882828, -0.02024480327963829, -0.0007334760157391429, -0.0031052648555487394, -0.006307460833340883, -0.021518757566809654, -0.001242798287421465, -0.014276602305471897, -0.02270962856709957, 0.011887936852872372, -0.0017309169052168727, 0.020064787939190865, -0.018043076619505882, -0.009859302081167698, 0.0003760416875593364, 0.02913479320704937, 0.002670804737135768, -0.03049183078110218, -0.006594793405383825, -0.01838926039636135, 0.012490295805037022, -0.002857743762433529, 0.011721769347786903, 0.0036487728357315063, 0.016893748193979263, 0.033233605325222015, -0.008474568836390972, 0.008017607033252716, -0.04691477119922638, 0.0021446060854941607, -0.010787073522806168, 0.010087783448398113, 0.0001066136610461399, 0.024689797312021255, -0.005393536761403084, 0.013965037651360035, -0.025035981088876724, -0.036390796303749084, 0.0028698600362986326, 0.027791600674390793, 0.029024014249444008, 0.003214312717318535, -0.002201726194471121, -0.029051708057522774, 0.005943968426436186, -0.01188101340085268, 0.010717837139964104, 0.008405332453548908, 0.04710863158106804, -0.041514310985803604, -0.008287630043923855, 0.017170695587992668, -0.013999655842781067, -0.011444821953773499, -0.04051730036735535, 0.0199955515563488, -0.015315152704715729, 0.019261643290519714, -0.007636805064976215, 0.02596375346183777, 0.011216341517865658, 0.04888109117746353, -5.69038929825183e-05, 0.016506023705005646, -0.015495168045163155, -0.0026915757916867733, 0.03079647198319435, 2.7032052457798272e-05, -0.01524591539055109, 0.04118197411298752, 0.003562226891517639, 0.039215654134750366, 0.024579020217061043, -0.006788656115531921, 0.0069063580594956875, -0.006764423102140427, 0.004413838032633066, -0.011687150225043297, -0.0032212361693382263, 0.0028352418448776007, -0.015633640810847282, 0.012088723480701447, -0.012151036411523819, 0.014636632986366749, 0.025589874014258385, 0.0016712002689018846, -0.013251899741590023, 0.021587995812296867, 0.0038876391481608152, 0.02079869620501995, -0.002688113832846284, -0.007103682961314917, -0.013037266209721565, -0.013355754315853119, -6.97775831213221e-05, -0.014636632986366749, -0.03544917702674866, -0.038606368005275726, 0.0066051785834133625, 0.01858312264084816, 0.0068544307723641396, 0.02546524815261364, 0.025908363983035088, -0.004254593513906002, 0.008827676065266132, -0.019580131396651268, -0.036058459430933, 0.015301304869353771, 0.019677063450217247, -0.024689797312021255, -0.009153088554739952, -0.01747533679008484, 0.0037630132865160704, -0.0035051065497100353, 0.010655524209141731, -0.010690142400562763, 0.010461661033332348, 0.027043845504522324, 0.0007754507241770625, -0.00047383850323967636, 0.0163813978433609, 0.0312395878136158, -0.020161719992756844, 0.024814423173666, 0.004680399317294359, -0.027403876185417175, 0.0042061279527843, -0.04913034290075302, -0.009076927788555622, 0.05666329339146614, 0.01087708119302988, -0.015938282012939453, 0.008751515299081802, -0.00967236328870058, 0.0052619874477386475, -0.009561584331095219, -0.0212002694606781, -0.016132144257426262, -0.01067629549652338, 0.016007518395781517, -0.01371578499674797, 0.004081502091139555, -0.010870157741010189, 0.030159495770931244, 0.014359686523675919, -0.013528846204280853, -0.016616802662611008, 0.005739720072597265, 0.028663983568549156, 0.028774762526154518, 0.028747066855430603, -0.0072836983017623425, -0.00178630615118891, -0.01611829735338688, -0.017447641119360924, -0.009194630198180676, -0.019649367779493332, 0.009007691405713558, 0.007276774384081364, -0.0036245398223400116, 0.009353874251246452, 0.00023345740919467062, 0.0004946094704791903, 0.01092554721981287, -0.00036305980756878853, -0.031267281621694565, -0.02215573564171791, -0.0022917338646948338, -0.02391434647142887, 0.01651987060904503, -0.007463713642209768, 0.01948319934308529, 0.00992161501199007, -0.00748448446393013, 0.011195570230484009, 0.0029321731999516487, -0.002232882659882307, 0.015204373747110367, -0.030851861461997032, -0.01223412062972784, -0.0028144707903265953, 0.015425930730998516, 0.0359753742814064, -0.010177791118621826, 0.0220034159719944, 0.011957173235714436, -0.0067055718973279, 0.03486758843064308, -0.004756559617817402, 0.007096759043633938, -2.4019852844503475e-06, -0.0013959844363853335, -0.010655524209141731, -0.012947258539497852, 0.01055166870355606, -0.01953858882188797, 0.01573057286441326, -0.0030464136507362127, -0.010586287826299667, -0.004441532772034407, 0.017489183694124222, -0.020355582237243652, -0.02722386084496975, 0.010413195937871933, 0.007124453783035278, 0.0030135263223201036, -2.9155131414881907e-05, 0.0012220273492857814, -0.030519526451826096, 0.014131205156445503, -0.025700652971863747, 0.015702877193689346, -0.005995896179229021, 0.006722880993038416, -0.028442425653338432, -0.0043030595406889915, 0.01722608506679535, -0.020078634843230247, -0.021227965131402016, 0.014678174629807472, -0.0071936906315386295, -0.012822631746530533, -0.021117186173796654, 0.020535597577691078, 0.010932470671832561, -0.006439010612666607, -0.004711555782705545, -0.002286541275680065, 0.0027504269964993, 0.00360376900061965, -0.02957790717482567, -0.008287630043923855, -0.01125095970928669, -0.01251106709241867, 0.017295321449637413, 0.005694716237485409, -0.0016902403440326452, 0.009111545979976654, -0.010475508868694305, -0.044117607176303864, 0.018624665215611458, -0.022031109780073166, -0.031101113185286522, 0.018721597269177437, 0.045031532645225525, 0.015121289528906345, -0.00392918149009347, 0.01242798287421465, -0.023429689928889275, 0.00638015940785408, -0.019275490194559097, -0.010170867666602135, -0.004895032849162817, -0.014816648326814175, -0.00839148461818695, 0.019732452929019928, 0.01611829735338688, 0.01190178468823433, 0.0019213176565244794, 0.014401228167116642, 0.008322248235344887, 0.020674070343375206, 0.015785962343215942, -0.0026569573674350977, -0.011375585570931435, 0.02330506406724453, 0.0005945699522271752, 0.015661336481571198, -0.02456517145037651, -0.016409091651439667, -0.03949259966611862, -0.008668432012200356, 0.011050173081457615, -0.010724760591983795, 0.029245570302009583, 0.015010510571300983, -0.03896639868617058, -0.03791400417685509, -0.010357806459069252, 0.007789125666022301, 0.022792713716626167, 0.002419821685180068, -0.011638685129582882, 0.01001854706555605, 0.019773993641138077, -0.017793824896216393, 0.019857078790664673, -0.038550980389118195, 0.0012211618013679981, 0.02491135522723198, -0.012801861390471458, -0.0032766256481409073, 0.0029927552677690983, -0.028553204610943794, -0.028747066855430603, -0.024246683344244957, -0.009305409155786037, -0.004230360966175795, 0.04456072300672531, 0.009513119235634804, 0.0007828071247786283, -0.02732079103589058, -0.012587226927280426, 0.0005850499146617949, -0.01180485263466835, -0.020258650183677673, -0.011507134884595871, 0.013141120783984661, 0.02286195009946823, 0.03279048949480057, 0.011867165565490723, 0.04782869294285774, -0.009360798634588718, 0.001482530264183879, 0.024592867121100426, -0.008156079798936844, -0.00805914867669344, -0.015328999608755112, -0.004112658556550741, 0.02586682140827179, 0.006175911519676447, -0.016893748193979263, -0.0020494055934250355, -0.004244208335876465, 0.028442425653338432, -0.003956875763833523, 0.007886056788265705, -0.012289510108530521, -0.03273509815335274, -0.015204373747110367, 0.0062866900116205215, -0.006349002942442894, 0.008675355464220047, -0.018707748502492905, -0.004375757649540901, 0.036141544580459595, 0.02219727821648121, 0.013251899741590023, 0.02542370744049549, 0.019524741917848587, 0.005483544431626797, 0.002769466955214739, 0.023775873705744743, 0.030159495770931244, -0.04057269170880318, 0.0046388572081923485, -0.036889299750328064, -0.017544573172926903, -0.02324967458844185, -0.01087708119302988, 0.0392710417509079, -0.009603126905858517, 0.006792117841541767, -0.01762765645980835, -0.01087708119302988, -0.0352553129196167, -0.005639327224344015, 0.03697238489985466, -0.009360798634588718, 0.0004286182811483741, -0.00575010571628809, -0.026836134493350983, -0.013300364837050438, -0.005459311883896589, 0.009402340278029442, 0.0055250865407288074, 0.009374645538628101, -0.032818183302879333, -0.02783314324915409, -0.019067779183387756, -0.005268910899758339, 0.03519992530345917, 0.010108554735779762, 0.0559709258377552, 0.0049400366842746735, 0.015841351822018623, -0.019663214683532715, 0.005892041139304638, -0.005632403306663036, -0.007096759043633938, 0.027694670483469963, 0.0030100643634796143, 0.0003738780505955219, -0.013210357166826725, -0.006504785735160112, 0.005005811341106892, 0.005071586463600397, -0.025299081578850746, 0.015010510571300983, 0.01466432772576809, -0.004112658556550741, -0.019607827067375183, 0.020480208098888397, -0.04098811000585556, 0.040766552090644836, -0.010267798788845539, 0.0074983318336308, -0.008703050203621387, 0.017863061279058456, -0.009637745097279549, 0.02330506406724453, -0.010987860150635242, 0.017170695587992668, -0.018361566588282585, 0.027306944131851196, -0.01376425102353096, 0.001251452835276723, -0.02491135522723198, 0.006189758889377117, 0.012815708294510841, 0.007359858602285385, -0.02737618051469326, -0.028608594089746475, 0.03813555836677551, 0.00439652893692255, 0.013937342911958694, 0.004046883434057236, 0.019358573481440544, 0.028691677376627922, -0.018666207790374756, -0.012933410704135895, 0.0007282832521013916, -0.003724933136254549, -0.0072629270143806934, -0.00972082931548357, -0.005196212325245142, 0.009492347948253155, -0.015564404428005219, -0.0268222875893116, 0.0256175696849823, 0.021075643599033356, -0.02355431579053402, -0.010669371113181114, 0.002290003001689911, 0.0007252541836351156, 0.0015889817150309682, -0.010226257145404816, 0.017253778874874115, -0.03411983326077461, -0.020009398460388184, -0.006490938365459442, -0.014608938246965408, 0.001817462733015418, 0.007955294102430344, -0.012095646932721138, 0.017059916630387306, 0.017710741609334946, -0.02236344665288925, -0.005632403306663036, -0.019317032769322395, 0.004084963817149401, -0.010807844810187817, 0.019926315173506737, 0.004123043734580278, -0.013182662427425385, 0.010447814129292965, -0.027653127908706665, -0.01366039551794529, 0.0060409000143408775, -0.0008200218435376883, 0.0035829979460686445, -0.00023627014888916165, -0.006283228285610676, 0.007941446267068386, -0.03295665606856346, 0.0009346951264888048, -4.778953370987438e-05, -0.02797161601483822, 0.03580920770764351, -0.016215229406952858, 0.0020407510455697775, 0.001827848143875599, -0.0030810320749878883, 0.006778270471841097, 0.0016106180846691132, -0.00046258754446171224, -0.028054701164364815, -0.026642272248864174, -0.01343883853405714, -0.003460102714598179, -0.0012445292668417096, 0.025396011769771576, 0.016644496470689774, -0.020854085683822632, -0.015093594789505005, -0.0017811134457588196, 0.013251899741590023, -0.004133429378271103, 0.008218393661081791, -0.00516159413382411, 0.00876536313444376, 0.04267748445272446, 0.012469525448977947, -0.018472345545887947, -0.0187908336520195, -0.012019487097859383, 0.009610050357878208, -0.010987860150635242, -0.018500039353966713, 0.010482432320713997, 0.041209667921066284, 0.012614921666681767, -0.005428155418485403, -0.027085386216640472, 0.0019126631086692214, -0.015315152704715729, -0.014304297044873238, 0.009000767953693867, 0.022986575961112976, 0.03949259966611862, 0.02822086773812771, -0.02005094103515148, 0.026157615706324577, 0.01732301525771618, 0.02743156999349594, -0.03974185138940811, 0.013051113113760948, 0.008232240565121174, 0.01978784240782261, -0.0005197077989578247, -0.0039430283941328526, -0.019303184002637863, -0.031128808856010437, 0.011410203762352467, -0.006155140232294798, 0.04251131787896156, 0.025797585025429726, -0.013431915082037449, -0.032125815749168396, -0.03702777251601219, 0.004569620359688997, -0.0031104576773941517, 0.03519992530345917, 0.0028058162424713373, -0.008571499958634377, -0.028497815132141113, -0.024440545588731766, 0.005878193769603968, -0.028470121324062347, 0.030325664207339287, 0.007678347174078226, 0.0003870762884616852, 0.0019784378819167614, -0.00029706861823797226, -0.02486981265246868, 0.01602136716246605, -0.023194285109639168, 0.018444649875164032, -0.002802354283630848, 0.00018639811605680734, 0.03492297977209091, 0.010267798788845539, 0.024703646078705788, -0.0021307587157934904, 0.0014254100387915969, -0.03251354396343231, -0.014899732545018196, 0.03337207809090614, 0.01122326496988535, -0.01376425102353096, -0.006861354224383831, 0.019981704652309418, -0.03561534360051155, 0.007449866272509098, -0.028691677376627922, -0.0026361863128840923, -0.018666207790374756, -0.0002570411597844213, 0.007602186873555183, -0.021781858056783676, -0.0010965358233079314, 0.017295321449637413, 0.008924607187509537, 0.009561584331095219, -0.024786729365587234, -0.01787691004574299, -0.010177791118621826, 0.015121289528906345, -0.015412083826959133, -0.007616034243255854, 0.005431617144495249, 0.04123736172914505, 0.017655352130532265, -0.04697015881538391, 0.00904230959713459, 0.19076088070869446, -0.016755275428295135, 0.03024257905781269, 0.023485079407691956, -0.018776986747980118, 0.013418067246675491, 0.005102742929011583, 0.0004695112002082169, 3.775562436203472e-05, 0.012019487097859383, -0.009083851240575314, -0.0036245398223400116, -0.011915631592273712, 0.014470464549958706, 0.016810664907097816, -0.017406100407242775, -0.004687322769314051, -0.057549525052309036, -0.005023120902478695, -0.005916273687034845, 0.008149156346917152, -0.005407384131103754, -0.02732079103589058, -0.02475903555750847, 0.02164338529109955, 0.0001503734092693776, -0.04037882760167122, -0.004929651040583849, 0.02421898953616619, 0.03622462972998619, -0.012351823039352894, 0.015259763225913048, -0.00029252495733089745, 0.04838258773088455, -0.02395588904619217, 0.003700700355693698, 0.023928195238113403, -0.007089835591614246, 0.020674070343375206, -0.011244036257266998, 0.017613809555768967, -0.01938626915216446, -0.026753051206469536, -0.013757327571511269, 0.00483618164435029, 0.0018209245754405856, -0.011839471757411957, -0.012040257453918457, -0.00516159413382411, 0.048853397369384766, -0.01692144386470318, -0.009277714416384697, 0.0054558501578867435, 0.008571499958634377, -0.0046561663039028645, 0.0036868529859930277, -0.0023678941652178764, 0.012164883315563202, 0.030713388696312904, 0.022668087854981422, -0.004784254357218742, 0.029411738738417625, 0.0009459460852667689, 0.02210034616291523, -0.008813828229904175, 0.014401228167116642, -0.02817932702600956, -0.01994016207754612, 0.012898792512714863, 0.004535002168267965, 0.010129325091838837, -0.03406444191932678, -0.014124281704425812, 0.01248337235301733, -0.04868723079562187, -0.026794593781232834, 0.04611162468791008, 0.02651764638721943, -0.012241044081747532, 0.028940929099917412, -0.02718231827020645, -0.02486981265246868, -0.008349942974746227, 0.015370541252195835, -0.014096586965024471, -0.024191293865442276, 0.007359858602285385, -0.038911011070013046, -0.0014176209224388003, -0.0376647524535656, -0.005580476019531488, -0.02381741628050804, -0.011209417134523392, 0.007664499804377556, 0.017115306109189987, 0.012151036411523819, -0.02326352335512638, 0.002004401758313179, -0.01160406693816185, -0.02747311256825924, -0.029660990461707115, 0.04497614502906799, 0.034175220876932144, 0.02727925032377243, 0.00808684341609478, -0.012421059422194958, 0.004181894939392805, -0.003229890950024128, -0.006688262801617384, -0.017572268843650818, -0.0027244631201028824, -0.0343690849840641, 0.006972133181989193, -0.011285577900707722, 0.006331693846732378, -0.027556195855140686, -0.004078039899468422, -0.008156079798936844, 0.010634752921760082, -0.0007352069369517267, -0.013854258693754673, -0.022668087854981422, -0.012905715964734554, 0.00402957433834672, 0.0016339855501428246, -0.005109666381031275, -0.05289682000875473, 0.020937170833349228, -0.0033475931268185377, -0.007276774384081364, 0.008509187027812004, -0.033178213983774185, 0.017101459205150604, 0.0015716725029051304, -0.011687150225043297, -7.756671402603388e-05, -0.027999311685562134, -0.025534486398100853, 0.0038426353130489588, 0.0022207663860172033, -0.004690784495323896, 0.00405726907774806, -0.009381568990647793, 0.001583788893185556, 0.018264634534716606, -0.004760021343827248, 0.0008200218435376883, -0.00516159413382411, -0.0004898494808003306, -0.022543461993336678, -0.03143345192074776, -0.018444649875164032, 0.0030567990615963936, -0.033178213983774185, -0.0009390224004164338, -0.019704757258296013, -0.002021710854023695, -0.013632700778543949, 0.014082739129662514, -0.008093766868114471, -0.026753051206469536, 0.0043030595406889915, 0.006023590452969074, 0.005116590298712254, -0.009783142246305943, -0.026849981397390366, -0.17491953074932098, 0.015315152704715729, 0.01597982458770275, -0.032568931579589844, -0.005137361120432615, 0.004261517431586981, 0.011417127214372158, 0.010717837139964104, 0.007110606413334608, -0.009436958469450474, -0.00015188795805443078, -0.005286219995468855, -0.02039712481200695, -0.005448926240205765, -0.01818155124783516, -0.0029581368435174227, 0.022280361503362656, -0.0032350835390388966, 0.04179125651717186, 0.030602609738707542, 0.02586682140827179, -0.028165478259325027, 0.01703222095966339, 0.006899434607475996, 0.03722163662314415, -0.016201382502913475, -0.00034575065365061164, 0.013217281550168991, 0.010011622682213783, -0.012753395363688469, 0.007726812735199928, 0.030464136973023415, 0.01318958681076765, -0.027653127908706665, 0.009935462847352028, 0.022321904078125954, 0.0048673381097614765, -0.04796716943383217, -0.005518163088709116, 0.011915631592273712, 0.028774762526154518, 0.006781732197850943, -0.011867165565490723, 0.013078807853162289, 0.004766944795846939, 0.027846990153193474, 0.030879557132720947, -0.037000078707933426, -0.006293613463640213, -0.016492174938321114, 0.023291217163205147, -0.012794937007129192, 0.007449866272509098, 0.022917339578270912, 0.010032393969595432, -0.008619965985417366, -0.011728692799806595, 0.028414731845259666, -0.0024232836440205574, 0.005258525256067514, 0.0074983318336308, -0.022238818928599358, -0.008924607187509537, 0.003482604632154107, -0.010468585416674614, 0.012871097773313522, -0.015176679007709026, 0.009679286740720272, -0.034230612218379974, 0.00404342170804739, 0.005583937745541334, 0.02194802649319172, 0.005937044974416494, -0.005334685556590557, 0.036390796303749084, 0.02114487998187542, -0.011327119544148445, 0.016159839928150177, -0.0029581368435174227, -0.03697238489985466, -0.02943943440914154, 0.039104875177145004, 0.006047823466360569, 0.005916273687034845, 0.005296605639159679, -0.0014582974836230278, -0.022169582545757294, -0.003932643216103315, -0.010939394123852253, -0.02154645323753357, 0.04946267977356911, -0.022321904078125954, -0.013501151464879513, 0.0002966358733829111, 0.006328232120722532, 0.015052053146064281, 0.007920675911009312, -0.016492174938321114, 0.005698178429156542, -0.016298312693834305, 0.006494400091469288, 0.006989442277699709, -0.014075815677642822, 0.02355431579053402, 0.015993671491742134, 0.022820407524704933, -0.0030325662810355425, 0.01223412062972784, 0.022571155801415443, 0.016201382502913475, -0.008266858756542206, 0.0037076238077133894, 0.00016497801698278636, 0.02838703617453575, -0.0006066863425076008, 0.03752627596259117, -0.012199502438306808, -0.02265423908829689, 0.042622096836566925, -0.03301204741001129, 0.03184887021780014, -0.002329814014956355, -0.009859302081167698, 0.0071383011527359486, 0.000908731366507709, -0.006113598123192787, -0.12307511270046234, -0.02108949050307274, 0.018569275736808777, 0.02416360005736351, 0.0010982668027281761, 0.026129920035600662, -0.012185654602944851, 0.026503799483180046, 0.022875797003507614, 0.022972729057073593, -0.015605946071445942, -0.004753097891807556, -0.017101459205150604, -0.01904008537530899, -0.020618680864572525, 0.011964097619056702, -0.02450978197157383, -0.005677407141774893, -0.016644496470689774, 0.03400905430316925, 0.035587649792432785, -0.003863406367599964, -0.005130437668412924, -0.007706041913479567, -0.006574022118002176, 0.03492297977209091, -0.022211125120520592, 0.034175220876932144, 0.0019057394238188863, -0.0042822882533073425, -0.017558420076966286, -0.009533889591693878, 0.012164883315563202, -0.02079869620501995, 0.01250414364039898, 0.0038045551627874374, -0.010890929028391838, -0.009575432166457176, -0.0005326896789483726, -0.02261269837617874, 0.010094706900417805, 0.006047823466360569, 0.008959225378930569, -0.00531045300886035, 0.006255533546209335, -0.007816820405423641, -0.022986575961112976, 0.01632600836455822, 0.013286517933011055, -0.030934946611523628, -0.02787468582391739, -0.011687150225043297, -0.034839894622564316, -0.006369774229824543, 0.024038974195718765, 0.01653371751308441, 0.008495340123772621, 0.017101459205150604, -0.02084023877978325, -0.008834599517285824, -0.0013942535733804107, 0.009596203453838825, -0.0015240722568705678, 9.195495658786967e-05, 0.007851438596844673, 0.0063039991073310375, -0.04209589958190918, -0.020563291385769844, 0.020064787939190865, -0.02190648391842842, -0.02919018268585205, 0.029024014249444008, -0.011244036257266998, 0.05018274113535881, 0.01827848143875599, 0.01869390159845352, -0.0009044040343724191, -0.002565218834206462, -0.0021446060854941607, -0.009270790964365005, 0.009215401485562325, -0.02104794979095459, -0.032679710537195206, 0.0014236790593713522, 0.017295321449637413, -0.014512007124722004, 0.019607827067375183, 0.015896741300821304, 0.0038668683264404535, -0.017669199034571648, 0.009243096224963665, 0.024537477642297745, 0.03409213945269585, -0.01597982458770275, 0.013875029981136322, -0.009277714416384697, 0.0057916478253901005, -0.01913701742887497, -0.005306991282850504, 0.00258772075176239, -0.013141120783984661, 0.01032318826764822, -0.04165278375148773, 0.013667319901287556, -0.0013276132522150874, -0.008799981325864792, 0.012684158980846405, -0.0179876871407032, 0.0025669496972113848, -0.010932470671832561, 4.132563844905235e-05, 0.01597982458770275, -0.028913235291838646, 0.019732452929019928, -0.014110433869063854, -0.0312395878136158, -0.015605946071445942, -0.018804680556058884, 0.012095646932721138, -0.01663064956665039, 0.008301476947963238, 0.006096289027482271, -0.003718009451404214, -0.0025375240948051214, 0.021463369950652122, 0.012268738821148872, -0.0032177744433283806, 0.01414505299180746, -0.0022934647276997566, 0.012033334001898766, 0.0038530209567397833, -0.02416360005736351, 0.02592221088707447, -0.018666207790374756, -0.03198734298348427, 0.006255533546209335, 0.003731856821104884, -0.01737840473651886, 0.0424005389213562, 0.024232836440205574, 0.011943326331675053, 0.010433967225253582, -0.0051858266815543175, -0.02380356937646866, 0.02829010598361492, -0.012254890985786915, 0.008606119081377983, -0.029965633526444435, 0.013812716118991375, -0.0018520810408517718, -0.012843403033912182, 0.007526026573032141, 0.03888331726193428, 0.02636532485485077, 0.003974185325205326, -0.004022650886327028, 0.0033822115510702133, -0.016713732853531837, 0.020978711545467377, -0.02777775377035141, 0.010440890677273273, 0.014678174629807472, 0.016284465789794922, -0.013023418374359608, 0.02326352335512638, -0.013708861544728279, -0.008550729602575302, -0.042926739901304245, -0.015315152704715729, -0.010911700315773487, 0.00013436241715680808, -0.0033025892917066813, -0.02450978197157383, -0.0042268987745046616, -0.0003312542103230953, 0.03298434987664223, 0.028359342366456985, 0.015536709688603878, -0.03320590779185295, -0.005088895559310913, -0.006480552721768618, 0.02311120182275772, 0.04505922645330429, -0.0013224204303696752, -0.0051512084901332855, 0.0075121792033314705, 0.01524591539055109, -0.008121461607515812, 0.020937170833349228, -0.014913579449057579, -0.012822631746530533, 0.0068163503892719746, 0.00436883419752121, 0.004846567288041115, -0.02858089841902256, 0.005670483689755201, 0.02651764638721943, 0.01693529076874256, -0.019912468269467354, 0.006864816416054964, 0.01035088300704956, 0.01029549352824688, 0.011084791272878647, -0.012891869060695171, -0.0112024936825037, 0.021574147045612335, -0.018818527460098267, 0.011486364528536797, -0.005227368790656328, -0.01338344905525446, 0.007782202214002609, 0.04395144060254097, -0.019524741917848587, 0.006470167078077793, 0.024579020217061043, 0.007429094985127449, -0.028996318578720093, 0.0031693088822066784, 0.008183774538338184, -0.005552781280130148, -0.02290349267423153, 0.004521154798567295, 0.027556195855140686, 0.012753395363688469, 0.05104127526283264, -0.011597142554819584, 0.02581143192946911, 0.018070772290229797, 0.027666974812746048, -0.001883237506262958, -0.004811949096620083, 0.0019438195740804076, -0.03240276500582695, -0.006553251296281815, -0.022335750982165337, 0.010004699230194092, -0.009526966139674187, -0.031821176409721375, 0.021435674279928207, 0.004091887269169092, -0.020009398460388184, 0.08446874469518661, 0.011950249783694744, -0.010565516538918018, 0.02114487998187542, -0.011472516693174839, 0.02381741628050804, 0.021532606333494186, -0.00405726907774806, -0.014082739129662514, 0.0027279250789433718, 0.030353358015418053, -0.006612102501094341, -0.011043249629437923, -0.039354126900434494, 0.0018555428832769394, 0.006774808745831251, -0.014608938246965408, 0.033427465707063675, -0.031156502664089203, 0.017516879364848137, 0.005140822846442461, 0.0022536537144333124, 0.005355456843972206, 0.0009104622877202928, 0.004001879598945379, -0.0021567223593592644, 0.012365669943392277, -0.006934052798897028, -0.026406867429614067, -0.03810786455869675, 0.01928933709859848, 0.0033908660989254713, -0.03251354396343231, -0.047247108072042465, 0.010136249475181103, 0.0019092012662440538, -0.014844343066215515, -0.026614578440785408, -0.0002775957982521504, 0.005248140078037977, -0.021740315482020378, -0.006072056479752064, -0.044034525752067566, -0.02049405500292778, -0.026254547759890556, 0.003825326217338443, -0.031516533344984055, -0.0010723030427470803, -0.02772236429154873], "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b": [-0.0010022870264947414, -0.0008116757380776107, 0.0012522275792434812, -0.05383232235908508, -0.02416933886706829, 0.007998098619282246, -0.01965862698853016, 0.009903370402753353, -0.010967089794576168, -0.04055601730942726, 0.005429686047136784, 0.033015720546245575, -0.011014217510819435, 0.02043958567082882, 0.018837273120880127, -0.007796126883476973, 0.005975010804831982, -0.00904835481196642, -0.0032635340467095375, -0.005624925717711449, 0.010112074203789234, 0.010617004707455635, -0.001060354057699442, 0.00739891454577446, -0.001821115962229669, 0.023307591676712036, 0.007432576734572649, -0.0219880398362875, -0.008805987425148487, -0.02161102555692196, 0.021880321204662323, -0.0022317927796393633, -0.022836321964859962, -0.015713436529040337, -0.02846461534500122, -0.002610490657389164, -0.002741772448644042, 0.007641281466931105, 0.015120984986424446, -0.021287869662046432, 0.017827412113547325, 0.023469168692827225, -0.005890855565667152, 0.011020949110388756, -0.013559066690504551, 0.01850065402686596, 0.01549800019711256, -0.010172666050493717, -0.00467902235686779, -0.01257613580673933, 0.017611974850296974, 0.05865272507071495, -0.03266563639044762, -0.016305888071656227, -0.0017521088011562824, -0.02279592864215374, -0.008738663978874683, 0.02803374081850052, -0.021893786266446114, -0.012252979911863804, 0.005571066401898861, 0.0033173933625221252, -0.019510513171553612, -0.031857747584581375, -0.009021424688398838, 0.0012690586736425757, -0.0030834421049803495, 0.01197021920233965, -0.01462278701364994, 0.014717040583491325, -0.0010553047759458423, 0.024505959823727608, 0.005005544051527977, 0.00953982025384903, 0.035789474844932556, -0.00012118331505917013, -0.026606470346450806, -0.01042176503688097, -0.020574234426021576, 0.010038018226623535, 0.003581640310585499, -0.01575383171439171, -0.0002747663529589772, 0.0004948318819515407, 0.013175319880247116, -0.005106530152261257, 0.017086848616600037, 0.013619658537209034, -0.012717516161501408, -0.01237416360527277, 0.008536691777408123, 0.021193616092205048, 0.005493643693625927, 0.030268900096416473, 0.005826897919178009, 0.023321056738495827, -0.010340976528823376, 0.031238365918397903, -0.013787968084216118, -0.01964516192674637, 0.0060692643746733665, 0.004076472017914057, -0.01619816944003105, -0.004756445065140724, -0.012845431454479694, -0.010630469769239426, 0.027225852012634277, -0.008671339601278305, 0.004019246902316809, 0.0008108342299237847, -0.014259236864745617, 0.03433527424931526, -0.001202576095238328, -0.023644210770726204, 0.01754465140402317, 0.0002770806022454053, -0.0033173933625221252, -0.03608569875359535, -0.02803374081850052, -0.008240466006100178, 0.016009662300348282, 0.01695219986140728, 0.016117380931973457, -0.008974297903478146, 0.03139994293451309, -0.014878618530929089, 0.000787691562436521, -0.019591303542256355, 0.0008651142125017941, -0.018796879798173904, 0.02220347709953785, 0.022055363282561302, 0.004995445720851421, 0.027562472969293594, 0.0049516852013766766, 0.004652092698961496, -0.02919171378016472, 0.0012985129142180085, -0.021382123231887817, -0.018015919253230095, 0.02223040722310543, 0.01790820062160492, -0.01246168464422226, 0.007950971834361553, 0.0024606946390122175, 0.003490752773359418, 0.029272504150867462, 0.0029252306558191776, 0.010172666050493717, 0.008516494184732437, 0.014743970707058907, 0.0009997623274102807, -0.0087521281093359, 0.01811017282307148, 0.007371985353529453, 0.0008693219861015677, -0.026768047362565994, 0.002736723283305764, 0.022553561255335808, -0.021543700248003006, 0.02647182159125805, 0.014151518233120441, -0.006947843357920647, 0.001927151344716549, 0.0028932515997439623, 0.03896716982126236, 0.03315037116408348, 0.009432101622223854, 0.008859846740961075, 0.011323907412588596, -0.002275553299114108, 0.0027872163336724043, -0.008644410409033298, 0.012656924314796925, 0.0198875293135643, 0.014676646329462528, -0.011020949110388756, 0.0004990396555513144, -0.02318640798330307, -0.005830264184623957, -0.005931250285357237, -0.007910577580332756, 0.02240544930100441, 0.04308740049600601, -0.02940715104341507, -0.012805037200450897, 0.011404696851968765, 0.02593323029577732, 0.01638667657971382, 0.001433161087334156, 0.02084353007376194, 0.015578788705170155, 0.007466238923370838, -0.010556413792073727, -0.6342465281486511, 0.0011604985920712352, -0.012522276490926743, -0.03210011497139931, 0.0011941605480387807, 0.012946417555212975, -0.00216951803304255, 0.00035660716821439564, -0.03366203233599663, 0.028572333976626396, 0.010610273107886314, -0.0007119519868865609, 0.03175003081560135, -0.021368658170104027, -0.012232782319188118, -0.018204426392912865, 0.011936556547880173, -0.02570432797074318, -0.010919963009655476, 0.03172310069203377, 0.0004679022531490773, 0.021516771987080574, -0.008038493804633617, -0.0010064947418868542, 0.016090450808405876, 0.01790820062160492, 0.003170963376760483, 0.018419863656163216, 0.004258247092366219, 0.036166489124298096, -0.0354393869638443, -0.025381172075867653, -0.00245732837356627, -0.005470080301165581, 0.04015207290649414, -0.0071969423443078995, -0.016305888071656227, 0.003914894536137581, 0.021705279126763344, 0.016602113842964172, -0.03180388733744621, -0.034577641636133194, 0.014138054102659225, 0.02144944667816162, 0.012535740621387959, -0.018473723903298378, -0.03075363300740719, 0.0016309254569932818, -0.010186131112277508, -0.015834620222449303, -0.0015922141028568149, 0.0013372242683544755, 0.006796364206820726, -0.016655974090099335, 0.014380420558154583, -0.00240683532319963, 0.03737832233309746, 0.0013473228318616748, 0.020816601812839508, -0.015740366652607918, 0.009687933139503002, 0.010475624352693558, -0.01987406425178051, -0.0027333570178598166, -0.007782661821693182, 0.009472495876252651, -0.021530235186219215, -0.00741237960755825, 0.018231356516480446, -0.0069074491038918495, 0.009506157599389553, 0.019779810681939125, -0.03021503984928131, -0.033204227685928345, 0.019443189725279808, 0.043572135269641876, 0.005224347580224276, 0.0003319917886983603, 0.016682904213666916, 0.0200356412678957, 0.0006627212860621512, -0.00506613589823246, -0.005537404213100672, -0.011047879233956337, 0.05000831559300423, 0.005577798932790756, -0.03762068599462509, 0.009236861951649189, 0.0016317670233547688, 0.009102213196456432, 0.005867292173206806, 0.016992593184113503, -0.01265019178390503, -0.03258484601974487, -0.01168745756149292, 0.002672765403985977, 0.0012202486395835876, -0.010711259208619595, -0.01199041586369276, -0.029918814077973366, -0.006920913700014353, -0.008496296592056751, 0.008227000944316387, 0.011249851435422897, 0.008691537193953991, 0.018756484612822533, -0.015107519924640656, 0.013579264283180237, 0.03527780994772911, -0.009788919240236282, -0.021678349003195763, -0.03234248235821724, 0.004880994558334351, 0.006065898109227419, 0.0075402953661978245, -0.025071481242775917, 0.030888281762599945, 0.01324264332652092, 0.00993029959499836, 0.0025229693856090307, 0.014555462636053562, 0.022742068395018578, -0.004850699100643396, 0.0012210902059450746, 0.009613876231014729, 0.027050809934735298, 0.0021611026022583246, 0.0077018728479743, -0.03686665743589401, -0.005665319971740246, 0.02182646282017231, 0.015242168679833412, 0.026256386190652847, -0.003337590489536524, -0.015901943668723106, -0.021274404600262642, 0.01267712190747261, -0.027575936168432236, 0.019820204004645348, -0.029703376814723015, -0.018069779500365257, -0.026242921128869057, -6.50098008918576e-05, -0.02983802556991577, -0.019604768604040146, -0.020951248705387115, -0.04836560785770416, -0.010293849743902683, -0.004302007611840963, 0.0030278998892754316, 0.007742267567664385, 0.023536494001746178, -0.014366955496370792, 0.026215991005301476, 0.021718744188547134, -0.001215199357829988, 0.017288820818066597, -0.005678785033524036, -0.00799136608839035, 0.0015619182959198952, -0.01711377687752247, 0.03724367171525955, -0.02045305073261261, -0.004386162851005793, -0.02629677951335907, -0.007048829458653927, -0.016790620982646942, 0.024223199114203453, -0.006251039449125528, -0.036947447806596756, 0.01277810800820589, -0.017006058245897293, -0.004854064900428057, -0.00413706386461854, -0.022890182211995125, 0.022647814825177193, -0.013572531752288342, 0.01965862698853016, 0.005530672147870064, -0.02765672653913498, -0.013121460564434528, -0.003500851336866617, -0.000303799839457497, -0.02319987304508686, 0.004806938115507364, 0.010684329085052013, 0.004584768787026405, 0.00774900009855628, -0.020520374178886414, 0.0006345293368212879, 0.01910656876862049, 0.024277057498693466, -0.027333570644259453, 0.006836758926510811, -0.022445842623710632, 0.04341055825352669, 0.0066246879287064075, 0.015430675819516182, 0.01306760124862194, 0.030942140147089958, 0.026391033083200455, -0.007143083494156599, 0.00623084232211113, -0.037135954946279526, 0.0024102015886455774, -0.04233337193727493, 0.008004831150174141, 0.004056274890899658, 0.005715813022106886, 0.004827135242521763, 0.01595580391585827, -0.014663181267678738, -0.044137656688690186, -0.0127646429464221, 0.0157672967761755, 0.059891488403081894, -0.013498474843800068, 0.021705279126763344, -0.014259236864745617, -0.004056274890899658, 0.020197220146656036, 0.015901943668723106, 0.013936081901192665, 0.02398083172738552, -0.004419825039803982, -0.0056686862371861935, 0.015699971467256546, -0.028895488008856773, -0.023119084537029266, -0.04578036442399025, 0.017248425632715225, -0.01734267920255661, 0.031453803181648254, -0.003463823115453124, 0.03352738544344902, 0.01151241548359394, 0.030861351639032364, -0.01815056800842285, 0.03764761611819267, 0.009014692157506943, -0.020156824961304665, 0.010381370782852173, -0.014717040583491325, -0.04424537718296051, -0.0087521281093359, -0.012414557859301567, 0.03727060183882713, 0.019752880558371544, 0.0014962774002924562, 0.02143598161637783, 0.004884360823780298, 0.0020988276228308678, -0.0031120548956096172, 0.0026525682769715786, 0.0011015899945050478, -0.012791572138667107, 0.00672230776399374, -0.0006938586593605578, 0.018743019551038742, 0.006954575888812542, 0.017800481989979744, -0.019550908356904984, 0.00789037998765707, 0.004588135052472353, 0.011438358575105667, 0.005264741834253073, -0.00953982025384903, -0.030511265620589256, -0.02010296657681465, 0.001317027024924755, -0.05165102332830429, -0.03236940875649452, -0.031211435794830322, 0.009573481976985931, 0.023913508281111717, -0.004692487418651581, -0.006035602651536465, 0.015632648020982742, 0.009344580583274364, -0.0015955803683027625, -0.014959407038986683, -0.04532255977392197, 0.019604768604040146, 0.03589719161391258, 0.0016233514761552215, -0.015322957187891006, -0.01812363788485527, 0.002571779303252697, -0.0041909231804311275, 0.027360500767827034, -0.00885311421006918, -4.1262286686105654e-05, -0.005675418768078089, 0.01099401991814375, -0.0037028235383331776, -0.00011560803977772593, 0.027710584923624992, -0.02239198423922062, 0.008509761653840542, -0.010314046405255795, -0.009485960938036442, 0.002171201165765524, -0.03406597673892975, 0.013693714514374733, 0.042764246463775635, 0.010401568375527859, 0.012286641635000706, 0.009028157219290733, 0.0008710051188245416, -0.02631024457514286, 0.005342164542526007, -0.016467466950416565, -0.030915210023522377, -0.018783414736390114, 0.014959407038986683, -0.024465564638376236, 0.012165458872914314, 0.0007472971337847412, 0.016050057485699654, -0.0087521281093359, -0.009499425999820232, -0.022890182211995125, -0.018756484612822533, 0.03056512586772442, 0.04680369049310684, 0.029676448553800583, -0.008058690465986729, 0.014313096180558205, -0.006325095891952515, -0.004349134396761656, 0.004924755543470383, -0.018864203244447708, 0.014784364961087704, 0.0071902102790772915, -0.010650667361915112, 0.03503544256091118, 0.002595342695713043, 0.00043634409666992724, 0.019241217523813248, 0.01315512228757143, -0.006705476902425289, -0.01969902217388153, -0.001952397869899869, -0.01177497860044241, 0.019146963953971863, -0.0004948318819515407, 0.01716763712465763, 0.02010296657681465, -0.007069027051329613, -0.013229179196059704, 0.03589719161391258, 0.00026403655647300184, -0.0025010891258716583, -0.028706980869174004, -0.008987762965261936, 0.0086780721321702, 0.026040948927402496, 0.025192664936184883, -0.017288820818066597, 0.03255791962146759, 0.01831214502453804, 0.006715575698763132, 0.035977981984615326, -0.006759336218237877, 5.038785457145423e-05, 0.005520573351532221, 0.03347352519631386, 0.006715575698763132, -0.014461209066212177, 0.0019406161736696959, -0.0038980634417384863, -0.0023597085382789373, -0.024236664175987244, -0.009795651771128178, 0.005369094200432301, -0.003904795739799738, -0.013114728033542633, -0.017208030447363853, 0.013296502642333508, -0.00011371455184416845, -0.0058571938425302505, -0.00700843520462513, -0.02535424381494522, -0.032234761863946915, -0.008826185017824173, 0.001240445883013308, 0.013734109699726105, -0.0029521603137254715, 0.013208981603384018, -0.00013885588850826025, 0.002920181257650256, 0.02068195305764675, -0.035977981984615326, -0.02318640798330307, 0.0033847172744572163, -0.02161102555692196, -0.037539899349212646, -0.022324660792946815, 0.01187596470117569, 0.013188784010708332, 0.012589599937200546, 0.007217139936983585, -0.029945744201540947, 0.001240445883013308, -0.011256583966314793, -0.03158845007419586, -0.005574432667344809, -0.013316700235009193, -0.012710783630609512, -0.00017230752564501017, 0.003955288790166378, -0.00041025603422895074, -0.001564442995004356, 0.026929626241326332, -0.00943883415311575, -0.008294324390590191, -0.02548889070749283, -0.01080551277846098, -0.010778582654893398, 0.04618430882692337, 0.0047631775960326195, 0.012919488362967968, 0.016884876415133476, -0.004773276392370462, 0.007843253202736378, -0.006183715537190437, -0.000542800291441381, -0.0010266919853165746, -0.019025780260562897, -0.011445091105997562, -0.005530672147870064, 0.010879568755626678, -0.0010755019029602408, -0.014838224276900291, 0.020789671689271927, -0.01314165722578764, 0.030645914375782013, 0.015511464327573776, 0.02670072391629219, 0.010071679949760437, 0.00253306794911623, -0.0007788552902638912, 0.00744604179635644, -0.025192664936184883, 0.010691061615943909, -0.0464266762137413, -0.006695378106087446, 0.011936556547880173, -0.006035602651536465, 0.018581442534923553, -0.0004573828773573041, -0.03274642676115036, -0.020331867039203644, -0.00024089391808956861, 0.02530038356781006, 0.029703376814723015, -0.009506157599389553, -0.026646865531802177, -0.002597025828436017, 0.02183992601931095, -0.03395825996994972, 0.008455902338027954, -0.026646865531802177, 0.014461209066212177, 0.011721119284629822, 0.017787018790841103, 0.011458556167781353, 0.008536691777408123, -0.04036751016974449, -0.034577641636133194, -0.006809829268604517, 0.0021644686348736286, 0.0015686507103964686, 0.03460456803441048, 0.024209734052419662, -0.0036792601458728313, -0.010913231410086155, -0.002610490657389164, 0.014043799601495266, 0.0010712941875681281, -0.0031171042937785387, -0.018069779500365257, 0.01872955448925495, 0.017032988369464874, 0.03565482422709465, -0.007654746063053608, 0.049577441066503525, 0.030134251341223717, -0.010617004707455635, 0.018567977473139763, -0.01043523009866476, 0.0015947388019412756, -0.003218090394511819, -0.000574358447920531, 0.01421884261071682, -0.004355866927653551, 0.028976278379559517, 0.007634548936039209, -0.0006597758620046079, 0.04287196323275566, 0.004416458774358034, 0.01580769009888172, -0.018446793779730797, -0.03350045531988144, -0.030726702883839607, 0.015363351441919804, -0.003293829970061779, 0.027818303555250168, -0.02181299775838852, -0.0026576174423098564, 0.01965862698853016, 0.009647538885474205, -0.0016974080353975296, 0.007533562835305929, 0.018944991752505302, -0.007452773861587048, 0.006934378761798143, 0.015632648020982742, 0.03175003081560135, -0.018379470333456993, 0.00287137134000659, -0.02163795381784439, 0.006543898954987526, 0.014528533443808556, 0.0002625638444442302, 0.02725278213620186, -0.0007889539119787514, -0.0007641281117685139, 0.001187428249977529, 0.006065898109227419, -0.038105420768260956, -0.013565799221396446, 0.02919171378016472, -0.011997148394584656, -0.0179351307451725, -0.029299432411789894, -0.02903013676404953, -0.015605717897415161, -0.012037542648613453, 0.014865153469145298, 0.021772602573037148, 0.01850065402686596, -0.03191160783171654, -0.01696566492319107, 0.003864401252940297, -0.02587937004864216, 0.035385530441999435, -0.008213535882532597, 0.024021226912736893, 0.015928873792290688, 0.0024203001521527767, -0.013309967704117298, -0.005964912008494139, 0.01420537754893303, 0.0039014294743537903, 0.02396736666560173, 0.0009475862025283277, -0.010643934831023216, -0.013922616839408875, -0.01929507777094841, -0.0025532650761306286, 0.00877905823290348, -0.02940715104341507, 0.0020096234511584044, 0.004328937269747257, 0.00496514979749918, -0.019564373418688774, 0.018460258841514587, -0.018931526690721512, -0.005278206896036863, -0.009485960938036442, 0.0044029937125742435, -0.009452298283576965, -0.005571066401898861, 0.0001249702909262851, 0.013134924694895744, 0.0005520573467947543, 0.01501326635479927, 0.0010022870264947414, 0.0013742524897679687, 0.007688408251851797, -0.0059413486160337925, -0.02940715104341507, 0.006072630640119314, -0.008900240994989872, 0.015120984986424446, -0.009654270485043526, 0.022109223529696465, 0.0028242445550858974, -0.010899766348302364, -0.00916953757405281, -0.006856956053525209, -0.011721119284629822, 0.028922418132424355, -0.026539146900177002, 0.0014011821476742625, 0.0023428774438798428, 0.007163280621170998, -0.01672329753637314, -0.0045410082675516605, -0.018379470333456993, -0.013963011093437672, -0.009378242306411266, -0.0393441841006279, 0.028949348255991936, 0.019766345620155334, 0.010112074203789234, 0.002881469903513789, 0.007069027051329613, 0.0008163042948581278, -0.00837511382997036, -0.021139755845069885, 0.019779810681939125, -0.027212386950850487, 0.01314165722578764, -0.009809115901589394, -0.0012875727843493223, 8.504922880092636e-05, 0.01907964050769806, -0.01248188130557537, -0.0033544215839356184, 0.0350085124373436, -0.005399390123784542, -0.000407310581067577, 0.012609797529876232, 0.012010613456368446, -0.016696367412805557, 0.009277256205677986, -0.017423467710614204, 0.0024102015886455774, 0.010744920931756496, -0.012064472772181034, -0.01109500601887703, -0.010731455869972706, 0.010899766348302364, -0.00550374248996377, -0.015619182959198952, -0.031211435794830322, 0.01731574907898903, 0.02628331445157528, 0.018433328717947006, -0.010475624352693558, -0.0023883210960775614, 0.02239198423922062, -0.017625439912080765, 0.015067125670611858, 0.012347233481705189, -7.594995986437425e-05, 0.012421290390193462, 0.0030800760723650455, -0.016588648781180382, -0.008395310491323471, -0.01509405579417944, -0.006934378761798143, -0.009573481976985931, -0.005052671302109957, 0.009735059924423695, 0.0148247592151165, -0.018069779500365257, 0.004648726899176836, -0.000827244424726814, -0.009492693468928337, 0.004254880826920271, 0.013195516541600227, -0.002676131669431925, 0.021664883941411972, 0.030618984252214432, 0.022647814825177193, -0.023725001141428947, -0.007957704365253448, -0.0024539621081203222, 0.0025616807397454977, -0.0148247592151165, -0.008496296592056751, -0.006311631295830011, 0.028572333976626396, -0.0028680050745606422, -0.006197180133312941, -0.0467229001224041, 0.002726624719798565, -0.033392734825611115, -0.01548453513532877, 0.015632648020982742, 0.013855292461812496, 0.01734267920255661, 0.02846461534500122, -0.010893033817410469, 0.04017900303006172, -0.002300799824297428, 0.02006257139146328, -0.009950497187674046, 0.007648013997823, 0.01479782909154892, 0.043706782162189484, 0.015632648020982742, 0.011350837536156178, -0.013121460564434528, -0.03778226673603058, 0.01344461552798748, -0.008146211504936218, 0.02087046019732952, -0.0024017859250307083, 0.0011983683798462152, -0.008644410409033298, -0.012569403275847435, -0.004655458964407444, -0.012199120596051216, 0.0052512772381305695, 0.01443427987396717, 0.00749990064650774, -0.0018918062560260296, -0.0013262841384857893, 0.01815056800842285, -0.018648765981197357, 0.002782166935503483, -0.0117884436622262, -0.00010756071424111724, 0.010340976528823376, 0.002315947785973549, -0.005412854719907045, 0.016831016167998314, -0.016305888071656227, 0.013195516541600227, -0.01811017282307148, -0.008260662667453289, 0.027899092063307762, 0.0107045266777277, 0.003295513102784753, -0.027037344872951508, 0.003157498547807336, -0.03525087982416153, 0.010711259208619595, 0.024075085297226906, 0.013202249072492123, 0.019591303542256355, 0.007715337909758091, 0.015161379240453243, -0.02085699513554573, -0.006012038793414831, -0.02803374081850052, -0.015915408730506897, -0.01715417206287384, 0.003655696753412485, 0.013215714134275913, 0.008018296211957932, -0.002364757703617215, -0.010670864023268223, -0.004998811986297369, -0.02105896733701229, -0.012111599557101727, -0.004466951824724674, -0.023698071017861366, 0.014326561242341995, 0.009115678258240223, -0.019779810681939125, 0.004931487608700991, -0.005412854719907045, 0.011929824016988277, -0.04424537718296051, -0.009183002635836601, 0.19400101900100708, -0.000929913658183068, 0.032988790422677994, 0.036947447806596756, 4.49177750851959e-05, 0.008805987425148487, 0.004604965914040804, -0.005981743335723877, -0.0122597124427557, 0.018648765981197357, -0.020776206627488136, 0.01757158152759075, -0.008805987425148487, 0.007674943655729294, -0.009432101622223854, 0.008792523294687271, 0.0037432180251926184, -0.05806027352809906, -0.009317650459706783, -0.00029412200092338026, 0.005072868429124355, 0.009499425999820232, -0.014770899899303913, -0.03743217885494232, 0.015188309364020824, -0.011303710751235485, -0.0034453091211616993, -0.020197220146656036, 0.02765672653913498, -0.014636252075433731, -0.016629043966531754, 0.004261613357812166, 0.0007653904613107443, 0.00876559317111969, -0.019187359139323235, -0.0005789869464933872, 0.010394835844635963, -0.006405884865671396, 0.03708209469914436, -0.01909310556948185, 0.017450397834181786, -0.0041404301300644875, -0.02512534148991108, -0.015336422249674797, 0.020735811442136765, 0.013498474843800068, -0.021314799785614014, -0.01811017282307148, -0.014070729725062847, 0.004406359978020191, 0.00032673211535438895, 0.013949546031653881, 0.00013801433669868857, 0.018769949674606323, -6.452985417126911e-06, -0.0214090533554554, 0.004453486762940884, 0.014138054102659225, 0.012980080209672451, 0.030322758480906487, -0.012980080209672451, 0.03175003081560135, -0.010583342984318733, 0.01072472333908081, 0.006816561799496412, 0.006553997751325369, -0.03974812850356102, -0.002364757703617215, -0.00721040740609169, -0.02068195305764675, -0.018352540209889412, -0.018244821578264236, 0.011633598245680332, 0.013801433145999908, -0.02354995720088482, -0.002726624719798565, 0.0338505394756794, 0.02181299775838852, -0.009701398201286793, 0.033823609352111816, -0.039855845272541046, -0.02824917808175087, -0.010657399892807007, 0.026929626241326332, -0.02010296657681465, -0.03177695721387863, 0.038697872310876846, -0.036328066140413284, -0.020547304302453995, -0.02126093953847885, -0.017019523307681084, -0.011923091486096382, -0.010563145391643047, 0.0025482159107923508, 0.03002653270959854, 0.015080590732395649, -0.010812245309352875, 0.023684605956077576, -0.023711536079645157, 0.009937032125890255, -0.03336580842733383, 0.037889983505010605, 0.036705080419778824, -0.007661478593945503, 0.0194566547870636, -0.009304185397922993, 0.004709318280220032, -0.0075402953661978245, 0.002506138291209936, -0.021112827584147453, -0.026539146900177002, -0.008570353500545025, 0.004874262493103743, -0.013431151397526264, 0.010314046405255795, 0.0034974850714206696, -0.022472772747278214, -0.010172666050493717, 0.020197220146656036, 0.022836321964859962, 0.004497247748076916, -0.016413606703281403, -0.018635300919413567, -0.01052275113761425, -0.022903647273778915, -0.0060187713243067265, -0.0363011360168457, 0.012219318188726902, -0.024492494761943817, -0.014259236864745617, 0.03482000529766083, -0.03622034564614296, 0.001034265966154635, -0.0026643499732017517, -0.01403033547103405, -0.008610747754573822, 0.005443150643259287, -0.037755336612463, -0.005534037947654724, 0.004638628102838993, -0.01714070700109005, -0.013370559550821781, -0.0021425883751362562, -0.00292186439037323, -0.0028797867707908154, -0.021920716390013695, 0.00478000845760107, -0.012226049788296223, -0.001705823466181755, -0.039021026343107224, -0.004554472863674164, -0.0086780721321702, 0.017975525930523872, -0.01964516192674637, -0.003324125660583377, -0.024613678455352783, -0.01286562904715538, -0.020116429775953293, 0.0032113578636199236, 0.005062769632786512, -0.020547304302453995, 0.007876915857195854, 0.034200623631477356, 0.002704744227230549, -0.03271949663758278, -0.0182986818253994, -0.17041067779064178, 0.011418160982429981, -0.010859372094273567, -0.025852441787719727, 0.01734267920255661, -0.0007557126227766275, 0.015242168679833412, 0.0010822343174368143, 0.016588648781180382, -0.018931526690721512, -0.0154037456959486, 1.8593013010104187e-05, -0.010603540576994419, -0.005510474555194378, -0.0012463367311283946, 0.012017345987260342, -0.007136350963264704, -0.0009071917738765478, 0.030699774622917175, 0.011640330776572227, 0.014676646329462528, -0.03409290686249733, 0.03366203233599663, 0.011768247000873089, -0.00501564284786582, 0.015457605011761189, 0.011391231790184975, -0.0001685205497778952, -0.008543424308300018, -0.03605876863002777, 0.00836164876818657, -0.005348897073417902, 0.03525087982416153, -0.016831016167998314, 0.03075363300740719, 0.003440259722992778, -0.005638390313833952, -0.022863252088427544, -0.009782186709344387, 0.0008802621741779149, 0.010441962629556656, 0.028599262237548828, 0.002672765403985977, -0.021274404600262642, -0.0034166963305324316, 0.027158528566360474, 0.014959407038986683, -0.022284265607595444, 0.000355134456185624, -0.01925468258559704, 0.038670942187309265, -0.010394835844635963, 0.008099084720015526, 0.007856718264520168, 0.03266563639044762, -0.008684804663062096, -0.025259988382458687, 0.008112549781799316, -0.017410002648830414, 0.005072868429124355, 4.652198185794987e-05, -0.0241558738052845, 0.0005141875590197742, 0.007897112518548965, 0.00020754747674800456, -0.015430675819516182, -0.025825511664152145, 0.00848956499248743, -0.04028671979904175, 0.013606193475425243, -0.0018850738415494561, 0.002679497702047229, 0.011620133183896542, -0.0015324640553444624, 0.0003027479106094688, 0.016642509028315544, -0.02924557402729988, 0.013639855198562145, 0.0007451932178810239, -0.019348936155438423, -0.008038493804633617, 0.009580214507877827, -0.006442912854254246, -0.0038677675183862448, 0.003968753851950169, -0.0231460127979517, -0.007937507703900337, -0.011835570447146893, -0.005560967605561018, -0.019160429015755653, 0.014259236864745617, -0.024788720533251762, -0.01792166568338871, -0.011855768039822578, -0.004093303345143795, 0.01489208359271288, 0.017032988369464874, -0.020587699487805367, 0.017598509788513184, -0.028141459450125694, 0.012899290770292282, -0.03236940875649452, -0.033204227685928345, 0.006789632141590118, 0.02531384862959385, 0.02633717469871044, -0.030134251341223717, -0.005224347580224276, 0.03175003081560135, 0.03266563639044762, -0.008550155907869339, 0.0005474287900142372, 0.015309492126107216, 0.01711377687752247, 0.004150528460741043, 0.031130647286772728, -0.007250801660120487, -0.016103915870189667, 0.02575818821787834, -0.002364757703617215, 0.05725238472223282, -0.009452298283576965, 0.013882222585380077, 0.003425111761316657, -0.0015535027487203479, 0.00856362096965313, -0.11014217138290405, -0.011492217890918255, -0.005547503009438515, 0.010845907032489777, -0.006355391815304756, 0.0051738545298576355, -0.019187359139323235, 0.008523226715624332, 0.0038442041259258986, 0.031669240444898605, -0.003051463281735778, -0.028006810694932938, 0.015376816503703594, -0.011162330396473408, -0.038455504924058914, -0.012387627735733986, -0.009997623972594738, 0.001925468211993575, -0.030053462833166122, 0.03815928101539612, 0.018406398594379425, 0.01771969348192215, 0.007829789072275162, -0.009021424688398838, -0.007594154682010412, 0.013989940285682678, -0.03492772579193115, 0.02161102555692196, 0.01138449925929308, 0.014003405347466469, -0.003972119651734829, -0.021530235186219215, -0.005332065746188164, -0.031642310321331024, 0.01964516192674637, 0.0020735810976475477, -0.003332541324198246, -0.021664883941411972, 0.02725278213620186, -0.009075284004211426, -0.022095758467912674, -8.267579119092261e-07, 0.004399627447128296, 0.004369331989437342, 0.011323907412588596, -0.02729317545890808, -0.042387232184410095, 0.014151518233120441, 0.017800481989979744, -0.04095996171236038, -0.014501603320240974, -0.01673676259815693, -0.04055601730942726, 0.0033645201474428177, 0.003786978777498007, 0.011606669053435326, -0.0008743712678551674, -0.010980554856359959, -0.00838857889175415, 0.015457605011761189, -0.000994713045656681, -0.007075759116560221, -0.012320304289460182, 0.036920517683029175, 0.012098134495317936, 0.006836758926510811, -0.015390281565487385, 0.0010561462258920074, 0.027818303555250168, -0.021516771987080574, 0.00540275638923049, 0.017194565385580063, -0.018352540209889412, 0.02375192940235138, -0.015376816503703594, 0.028114529326558113, -0.0024842580314725637, 0.009600412100553513, 0.03368896245956421, 0.006540533155202866, -0.012973347678780556, -0.024977227672934532, -0.028006810694932938, -0.02803374081850052, 0.016063522547483444, 0.013471545651555061, 0.009034889750182629, 0.025098411366343498, 0.03541245684027672, -0.01734267920255661, 0.016305888071656227, 0.015565323643386364, 0.018244821578264236, 0.018056314438581467, -0.01673676259815693, -0.012555938214063644, 0.019173894077539444, -0.012858896516263485, 0.017800481989979744, 0.009768721647560596, -0.047827016562223434, -0.00754702789708972, -0.04850025475025177, 0.009910102002322674, -0.013592728413641453, -0.020722346380352974, -0.0003568175307009369, 0.015619182959198952, 0.00013170270540285856, -0.006550631485879421, -0.008031761273741722, -0.009862975217401981, -0.03118450753390789, -0.005291671492159367, -0.016211634501814842, -0.006119757425040007, -0.008792523294687271, -0.012327035889029503, 0.005298404023051262, -0.014111123979091644, 0.002430398715659976, 0.031076788902282715, 0.008529959246516228, -0.018850738182663918, -0.008657874539494514, 0.0017335946904495358, -0.033231157809495926, -0.013101262971758842, 0.010273652151226997, 0.02065502293407917, -0.021893786266446114, -0.016103915870189667, 0.018594907596707344, 0.002470793202519417, 0.002386638196185231, 0.0043390360660851, -0.008038493804633617, 0.010280384682118893, -0.003113738028332591, 0.018971921876072884, 0.0188776683062315, 0.012690586037933826, -0.007816324010491371, -0.018271751701831818, -0.003988950978964567, -0.01277810800820589, 0.00364896422252059, -0.011000752449035645, -0.01947011984884739, 0.014919012784957886, 0.011162330396473408, 0.027549007907509804, 0.024667536839842796, 0.020345332100987434, -0.0024741594679653645, -0.008758860640227795, -0.0010443645296618342, -0.01275117788463831, 0.008516494184732437, -0.013161854818463326, 0.0007952655432745814, -0.001641865586861968, 0.037297531962394714, 0.0014441012172028422, -0.0023479268420487642, -0.0014701893087476492, -0.0025179199874401093, -0.0255292858928442, -0.013686981983482838, 0.026000553742051125, 0.01595580391585827, -0.002637420315295458, -0.005981743335723877, -0.0042750779539346695, 0.01275117788463831, 0.005847095046192408, 0.028572333976626396, 0.010960358195006847, -0.006685279775410891, 0.018029384315013885, 0.005911052692681551, 0.014757434837520123, 0.010946893133223057, -0.00799136608839035, -0.014717040583491325, 0.003322442527860403, 0.03422755375504494, 0.021005108952522278, 0.014528533443808556, -0.008529959246516228, 0.010388103313744068, 0.003138984553515911, -0.004453486762940884, 0.0024017859250307083, -0.02865312248468399, 0.0013515306636691093, -0.004069739952683449, 0.022163081914186478, -0.009001227095723152, -0.014676646329462528, -0.0022115956526249647, 0.00710942130535841, 0.013559066690504551, -0.01928161270916462, -0.012508811429142952, -0.004305373877286911, -0.055259592831134796, -0.005685517098754644, -0.023819254711270332, -0.03040354698896408, -0.0009004593593999743, 0.037755336612463, 0.0013145023258402944, 0.029326362535357475, 0.013693714514374733, 0.0038071759045124054, -0.04058294743299484, 0.0013675200752913952, -0.020803136751055717, -0.0013624707935377955, -0.021193616092205048, 0.03296186402440071, 0.002494356594979763, 0.017854342237114906, 0.05402082949876785, 0.005409488454461098, 0.017086848616600037, 0.015053660608828068, 0.017086848616600037, -0.01792166568338871, 0.003712922101840377, 0.012912755832076073, -0.006681913509964943, 0.030672844499349594, -0.02555621601641178, -0.01265019178390503, -0.016440536826848984, -0.01548453513532877, 0.016076987609267235, 0.026929626241326332, -0.006348659284412861, 0.06910142302513123, 0.007917310111224651, -0.004971882328391075, 0.002802364295348525, -0.005904320627450943, -0.009283988736569881, 0.026242921128869057, -0.014945942908525467, 0.0014971188502386212, -0.02919171378016472, 0.008981030434370041, 0.007156548090279102, -0.030861351639032364, -0.041794780641794205, -0.006705476902425289, 0.033985186368227005, -0.003425111761316657, 0.01479782909154892, -0.01675022765994072, -0.002469110069796443, 0.004460219293832779, 0.03096907027065754, 0.0021526869386434555, -0.006065898109227419, -0.012737712822854519, 0.005298404023051262, 0.021341728046536446, -0.005355629604309797, -0.02163795381784439, -0.039451900869607925, 0.005214248783886433, -0.00818660669028759, -0.02868005260825157, -0.0331234410405159, -0.0029908716678619385, 0.00584372878074646, 0.01275117788463831, -0.004860797431319952, 0.007170013152062893, -0.019443189725279808, 0.007964436896145344, 0.005483544897288084, -0.01227990910410881, -0.015551858581602573, -0.010946893133223057, -0.004214486572891474, -0.006453011650592089, 0.007439309265464544, -0.037728406488895416], "31aa5116-27d2-4e25-9ea7-e39a90baf975": [-0.015921127051115036, -0.010066967457532883, 0.009328358806669712, -0.029134022071957588, -0.037751127034425735, 0.005604538135230541, 0.003178412327542901, -0.0013241959968581796, -0.011092813685536385, -0.03589092567563057, 0.002713362220674753, 0.021501729264855385, -0.00034622297971509397, 0.00443165423348546, 0.01076454296708107, -0.014293452724814415, 0.008446130901575089, 0.0011515120277181268, 0.020120257511734962, -0.016974329948425293, 0.015497111715376377, -0.0002844585105776787, -0.006907362025231123, -0.018301090225577354, -0.006042232271283865, 0.017986496910452843, -0.010005416348576546, -0.004202548414468765, 0.0114210844039917, -0.0031493469141423702, 0.002067079534754157, 0.007953724823892117, -0.018656717613339424, -0.033647745847702026, -0.02270538918673992, -0.0012523868354037404, -0.01613997481763363, -0.018697749823331833, 0.015319298021495342, -0.013739495538175106, 0.021105069667100906, 0.008104182779788971, 0.013787368312478065, 0.02250021882355213, -0.004486365709453821, 0.015442399308085442, 0.010826093144714832, -0.011783549562096596, -0.007659649010747671, -0.00649702362716198, 0.02995469979941845, 0.0548485592007637, -0.04322230443358421, -0.008870147168636322, 0.005460919346660376, 0.004212806932628155, -0.010545695200562477, 0.027834618464112282, -0.0035220708232373, -0.00775539455935359, -0.0048385728150606155, -0.009198417887091637, -0.007960563525557518, -0.01482689194381237, -0.016413534060120583, 0.007563903462141752, 0.026740381494164467, 0.012173371389508247, -0.010285814292728901, 0.015880094841122627, 0.030091479420661926, 0.0021782126277685165, 0.019778307527303696, 0.013760012574493885, 0.04702477529644966, -0.009027443826198578, -0.03137720376253128, 0.02239079587161541, -0.01464907918125391, 0.010689313523471355, 0.00827515684068203, -0.01722053252160549, -0.009827603586018085, -0.004698373842984438, 0.0380793996155262, 0.0034741980489343405, 0.006551735568791628, 0.0053309788927435875, -0.005912291817367077, -0.0060524907894432545, 0.010545695200562477, 0.009683985263109207, -0.0009642951190471649, 0.010976551100611687, -0.0034810369834303856, 0.013062437064945698, -0.03329211845993996, 0.032362017780542374, -0.006107202265411615, -0.023991115391254425, 0.013035081326961517, -0.0021217912435531616, 0.0012549514649435878, -0.013650588691234589, -0.016071585938334465, 0.009410426020622253, 0.008268318139016628, -0.015565501525998116, 0.0016413533594459295, 0.007310861721634865, -0.026439467445015907, 0.0441797636449337, -0.01414299476891756, -0.017890751361846924, 0.031213069334626198, 0.01291881874203682, 0.014484943822026253, -0.04259312152862549, -0.029517004266381264, -0.007037302479147911, 0.004000798799097538, 0.0001859345647972077, 0.02070840820670128, -0.00026244556647725403, 0.043140240013599396, -0.018725106492638588, 0.009984899312257767, -0.010614085011184216, -0.009157383814454079, -0.029434937983751297, 0.021310238167643547, 0.038872718811035156, -0.0067090317606925964, 0.022937914356589317, -0.009718179702758789, 0.004421395715326071, -0.017234209924936295, -0.00886330846697092, -0.020503239706158638, -0.026083840057253838, 0.032362017780542374, 0.0073518953286111355, -0.034960828721523285, 0.004212806932628155, -0.006695353891700506, 0.004954835399985313, 0.026931872591376305, 0.005549826193600893, -0.003371613333001733, -0.016536636278033257, 0.009875476360321045, -0.01883452944457531, -0.010983389802277088, -0.0036554308608174324, 0.0021081131417304277, -0.006774002220481634, -0.018451547250151634, 0.0009754084167070687, 0.016946973279118538, -0.013370190747082233, 0.020571628585457802, 0.017070075497031212, 0.008316190913319588, -0.005690025165677071, 0.0069381375797092915, 0.027355888858437538, 0.00964978989213705, 0.0024825469590723515, -0.005259169731289148, 0.011339016258716583, 0.0005154875689186156, 0.013589038513600826, -0.023744912818074226, 0.008897502906620502, 0.022158270701766014, 0.012953014113008976, 0.006216626148670912, 0.002420996315777302, -0.03356567770242691, 0.002933919196948409, 0.004722310695797205, 0.0033169016242027283, 0.025413621217012405, 0.04762660339474678, -0.0203117486089468, -0.009246290661394596, 0.01578434929251671, 0.023143082857131958, 0.011817744001746178, 0.0012250309810042381, 0.02278745546936989, 0.019463716074824333, 0.0030125672928988934, -0.012761523015797138, -0.6232765913009644, 0.01945003680884838, -0.0101558743044734, -0.025317875668406487, 0.010087484493851662, 0.005939647555351257, 0.00455475552007556, 0.006883425638079643, -0.018164310604333878, 0.03041975013911724, -0.013732656836509705, 0.023389285430312157, 0.014211384579539299, -0.02888781949877739, 0.0014926057774573565, -0.017535125836730003, 0.020174968987703323, -0.02381330169737339, 0.00832986831665039, 0.020380137488245964, -0.004677857272326946, 0.033784523606300354, -0.008083665743470192, 0.006490184925496578, 0.021200815215706825, 0.010169551707804203, 0.0019183317199349403, -0.006558574736118317, 0.017795005813241005, 0.038763295859098434, -0.018410513177514076, -0.003229704685509205, -0.003928989637643099, 0.0018602005438879132, 0.03208845853805542, 0.007994758896529675, -0.022760100662708282, 0.011906650848686695, 0.006168752908706665, 0.05104609206318855, -0.019928766414523125, -0.012358022853732109, 0.012050269171595573, 0.005587440449744463, 0.02405950427055359, -0.030994223430752754, -0.022267693653702736, 0.007023624610155821, -0.0016601606039330363, -0.030173545703291893, 0.003291255561634898, 0.023731233552098274, 0.007433963008224964, -0.013096632435917854, 0.008924858644604683, -0.004664179403334856, 0.01797281950712204, 0.006787680089473724, -0.004753085784614086, -0.031404562294483185, -0.0180275309830904, 0.003424615366384387, 0.004335908684879541, -0.0031100227497518063, 0.003587041050195694, 0.03329211845993996, -0.002957855584099889, 0.009348874911665916, 0.005642152391374111, -0.013219733722507954, 0.0033305794931948185, 0.009916510432958603, -0.035207029432058334, -0.029462292790412903, 0.030091479420661926, 0.043030813336372375, -0.007194599136710167, -0.009991738945245743, 0.019080733880400658, 0.015852738171815872, 0.002843302907422185, 0.008993248455226421, -0.00011038529191864654, -0.008582910522818565, 0.02858690544962883, -0.007215115707367659, -0.022158270701766014, 0.020284391939640045, 0.012453768402338028, 0.020325426012277603, 0.024387774989008904, 0.020475883036851883, -0.0170016847550869, -0.015579178929328918, -0.0008407661807723343, 0.011831422336399555, -0.0048967041075229645, -0.005631893873214722, 0.012474285438656807, -0.019969798624515533, -0.004742827266454697, -0.018164310604333878, 0.014402875676751137, 0.005348076578229666, 0.0073313782922923565, 0.019709918648004532, -0.01551078911870718, 0.0011686093639582396, 0.040240515023469925, -0.015579178929328918, -0.01274100597947836, -0.029817920178174973, -0.0036314944736659527, -0.005399368703365326, -0.020038189366459846, -0.028696328401565552, 0.030802732333540916, 0.012802556157112122, 0.008528199046850204, -0.0066543202847242355, 0.01010800153017044, 0.017480414360761642, 0.011509990319609642, 0.00944462139159441, 0.021187135949730873, 0.020681053400039673, 0.000203138857614249, -0.004595789592713118, -0.0350155383348465, 0.00454449700191617, 0.012316989712417126, 0.020557951182127, 0.01200923603028059, -0.0066714175045490265, -0.011099652387201786, -0.023143082857131958, -0.0026962650008499622, -0.006196109112352133, 0.018519937992095947, -0.018670395016670227, -0.006815035827457905, -0.010860288515686989, 0.014197707176208496, -0.021310238167643547, -0.0269181951880455, -0.0380793996155262, -0.042483698576688766, -0.02405950427055359, -0.011592058464884758, 0.0007510046707466245, 0.010477305389940739, 0.01888924278318882, -0.03375716879963875, 0.031650763005018234, 0.019162800163030624, -0.017904430627822876, -0.02710968628525734, -0.004701793659478426, -0.01353432610630989, 0.00390847260132432, -0.015565501525998116, 0.027903007343411446, -0.02442880906164646, 0.0033169016242027283, -0.020995644852519035, -0.02304733730852604, -0.013773690909147263, 0.003515231888741255, -0.027492668479681015, -0.03950190544128418, 0.008808596059679985, -2.5392357201781124e-05, -0.0055771819315850735, -0.018109599128365517, -0.0345231331884861, 0.015168840996921062, -0.02416892908513546, 0.013212895020842552, -0.018916597589850426, -0.01894395425915718, -0.01832844689488411, 0.011222753673791885, -0.02280113473534584, -0.024688690900802612, 0.0012002396397292614, 0.014416554011404514, -0.010928678326308727, 0.0018311348976567388, -0.003976862411946058, 0.01406092755496502, 0.02213091403245926, 0.01018323004245758, -0.02005186676979065, 0.008876985870301723, 0.006886845454573631, 0.015579178929328918, -0.0055566648952662945, 0.010326848365366459, 0.002073918469250202, 0.03066595271229744, 0.03370245546102524, -0.0024363838601857424, 0.001261790399439633, -0.039173632860183716, -0.0016499020857736468, -0.018560972064733505, 0.010661957785487175, 0.028094498440623283, 0.0006193544249981642, -0.027506347745656967, 0.017986496910452843, -0.023266185075044632, -0.02726014330983162, -0.021871034055948257, 0.031349848955869675, 0.04603996127843857, -0.029270801693201065, 0.04751718044281006, 0.007892174646258354, -0.013568521477282047, 0.005830224137753248, 0.006073007360100746, 0.011455278843641281, 0.031814899295568466, -0.01782236248254776, -0.024004792794585228, -0.0034793273080140352, -0.031760189682245255, -0.0035049733705818653, -0.014184028841555119, 0.014991027303040028, -0.002395350020378828, 0.03498818352818489, -0.004103383515030146, 0.028039786964654922, 0.004989030305296183, 0.0472162663936615, -0.013438580557703972, 0.020393814891576767, 0.01645456813275814, -0.024100538343191147, 0.017234209924936295, -0.0013797626597806811, -0.044453319162130356, -0.002694555092602968, -0.011783549562096596, 0.041006479412317276, 0.015825381502509117, -0.0009711341117508709, 0.021843677386641502, -0.003250221721827984, -0.013212895020842552, -0.013814724050462246, 0.006685095373541117, -0.006558574736118317, -0.005666088778525591, 0.015975840389728546, 0.008473486639559269, 0.021597474813461304, 0.017904430627822876, 0.014348164200782776, -0.015921127051115036, 0.003133959136903286, -0.010169551707804203, 0.01782236248254776, 0.004376942291855812, -0.00898640975356102, -0.03684838488698006, 0.01083977147936821, 0.005009547341614962, -0.040787629783153534, -0.04426182806491852, -0.039419837296009064, 0.005679766647517681, 0.03258086368441582, 0.0023149922490119934, -0.00579944858327508, 0.026890840381383896, 0.005672927480190992, 0.004233323968946934, -0.009827603586018085, -0.022924235090613365, 0.03288177773356438, 0.010005416348576546, -0.00446926848962903, -0.028805751353502274, -0.002484256634488702, -0.0035425876267254353, -0.019573139026761055, 0.028422769159078598, 0.0005783205851912498, -0.009923349134624004, 0.0012703391257673502, 0.013103471137583256, -0.010388399474322796, 0.00013175707135815173, 0.034140150994062424, -0.013548004440963268, 0.007194599136710167, -0.011680965311825275, 0.001133559737354517, 0.011708321049809456, -0.034605201333761215, 0.025044316425919533, 0.025605112314224243, 0.026685670018196106, 0.011797227896749973, -0.0011309951078146696, -0.012528997845947742, -0.002472288440912962, 0.02381330169737339, -0.013541165739297867, -0.023238828405737877, -0.03578150272369385, 0.01353432610630989, 0.0009719889494590461, -0.0013070986606180668, 0.007078336551785469, 0.004995869472622871, -0.012925658375024796, -0.017890751361846924, -0.004578691907227039, -0.018000176176428795, 0.01716582104563713, 0.03963868319988251, 0.041115902364254, -0.006661158986389637, -0.005946486722677946, -0.014320808462798595, -0.014539655297994614, -0.0014028442092239857, -0.013712139800190926, 0.04149888455867767, -0.002473998349159956, 0.00045949345803819597, 0.010217424482107162, 0.030474461615085602, 0.01086712721735239, 0.021693220362067223, 0.01664605922996998, 0.0005881516262888908, -0.03263557702302933, 0.014908960089087486, -0.028258634731173515, 0.004824894946068525, -0.011564702726900578, 0.024592945352196693, 0.013801046647131443, -0.009465137496590614, 0.013732656836509705, 0.022199304774403572, 0.005112132057547569, 0.02208988182246685, -0.009225773625075817, -0.03000941127538681, 0.015250908210873604, 0.012911980040371418, 0.02147437259554863, -0.003716981504112482, 0.01828741282224655, -0.00028745055897161365, 0.00895905401557684, 0.03304591402411461, 0.0016926457174122334, 0.004435073584318161, 0.02422364056110382, 0.019887732341885567, 0.0064833457581698895, -0.008418775163590908, 0.006667998153716326, 0.00032121798722073436, -0.0114279231056571, -0.02213091403245926, 0.0025680342223495245, 0.0051429071463644505, 0.013123988173902035, -0.0153603320941329, -0.029817920178174973, 0.012146014720201492, 0.004626564681529999, -0.003043342847377062, -0.03370245546102524, -0.014949994161725044, -0.01426609605550766, -0.01035420410335064, -0.004763344302773476, 0.019614173099398613, -0.007810106500983238, 0.04015844687819481, -0.009424104355275631, -0.020270714536309242, 0.005436982959508896, -0.02456558868288994, -0.0028244955465197563, 0.013418063521385193, -0.027246465906500816, -0.02248654142022133, -0.03441371023654938, 0.023088371381163597, 0.009458298794925213, 0.007221954874694347, -0.008555554784834385, -0.007509191520512104, 0.014047249220311642, -0.012542675249278545, -0.030802732333540916, -0.013691622763872147, -0.010019094683229923, -0.00020762693020515144, -0.010251619853079319, -0.004438492935150862, 0.004041832871735096, -0.02548201195895672, 0.0350428931415081, -0.0032998041715472937, 0.0030553110409528017, -0.03608241677284241, -0.019915087148547173, -0.013705301098525524, 0.03690309450030327, 0.009218934923410416, 0.02858690544962883, 0.023211471736431122, 0.0010856868466362357, -0.004647081717848778, 0.014498621225357056, -0.005549826193600893, -0.009253129363059998, -0.010689313523471355, -0.0012378540122881532, 0.006951815448701382, 0.006719290278851986, 0.006243981886655092, -0.014047249220311642, 0.011968201957643032, -0.03006412275135517, 0.008158894255757332, 0.01862936094403267, 0.031048934906721115, 0.009554044343531132, -0.008165732957422733, 0.017275243997573853, -0.0036075578536838293, 0.005467758513987064, 0.010641440749168396, -0.021091390401124954, 0.011147525161504745, 0.005549826193600893, 0.0007172372424975038, 0.018260056152939796, 0.009677145630121231, -0.041663020849227905, -0.008931698277592659, 0.005478017032146454, 0.02355342172086239, 0.0032023489475250244, -0.006873167119920254, -0.017029041424393654, -0.0036417527589946985, 0.01613997481763363, -0.010320009663701057, 0.005224974825978279, -0.006510701961815357, 0.007543386425822973, -0.004777022171765566, 0.018314767628908157, -0.003959765192121267, 0.001767874346114695, -0.030857443809509277, -0.022418152540922165, -0.0066748373210430145, 0.0004238025867380202, -0.018355801701545715, 0.020804153755307198, 0.018602004274725914, -0.015237230807542801, -0.025659823790192604, -0.01817798800766468, 0.0243740975856781, 0.011380050331354141, -0.008124698884785175, 0.006073007360100746, 0.011133846826851368, 0.011003906838595867, 0.030529173091053963, -0.012296472676098347, 0.04748982563614845, 0.0014267805963754654, 3.625189856393263e-05, 0.033948659896850586, -0.020557951182127, -0.006534638348966837, -0.015045739710330963, -0.0067124515771865845, 0.018971309065818787, -0.0024380937684327364, -0.002344057895243168, 0.015880094841122627, 0.008965892717242241, 0.03723136708140373, -0.0077417166903615, 0.027807261794805527, -0.011154363863170147, -0.021282881498336792, -0.0195457823574543, 0.010997068136930466, -0.0057447366416454315, 0.008220444433391094, -0.018000176176428795, -0.0023081533145159483, 0.014991027303040028, 0.01091499999165535, 0.01089448295533657, 0.014074604958295822, 0.00223976350389421, 0.0102789755910635, 0.02280113473534584, 0.019176479429006577, 0.02072208561003208, -0.01267261616885662, -0.013664267025887966, -0.026384755969047546, -0.006401278078556061, 0.013486453332006931, -0.002415867056697607, -0.006096943747252226, -0.029434937983751297, 0.0058062877506017685, -0.0006719290395267308, 0.019026020541787148, -0.029325513169169426, -0.009526688605546951, 0.030228259041905403, -0.0047120521776378155, 0.006377341691404581, -0.02010657824575901, -0.028751039877533913, -0.01645456813275814, -0.0012720489175990224, 0.02117345854640007, 0.018820852041244507, 0.02203516848385334, -0.02929815836250782, -0.00817941129207611, -0.002959565259516239, -0.019709918648004532, 0.03594563901424408, 0.015278264880180359, 0.025605112314224243, 0.009458298794925213, 0.011489473283290863, -0.022226659581065178, -0.016003195196390152, 0.013623232953250408, -0.003096344880759716, 0.00174906721804291, 0.005563504062592983, -0.01681019365787506, -0.0011147524928674102, -0.007645971141755581, -0.0018995245918631554, -0.0114210844039917, -0.036684248596429825, 0.0030279550701379776, -0.0071056922897696495, -0.010744025930762291, -0.01791810803115368, 0.016003195196390152, -0.012255438603460789, 0.00954720564186573, -0.019764630123972893, 0.007235632743686438, -0.009560883045196533, -0.022254016250371933, 0.0029954698402434587, 0.010723508894443512, -0.003942667506635189, 0.03701251745223999, 0.02583763748407364, 0.012351184152066708, 0.0055600847117602825, 0.0012335797073319554, -0.03777848556637764, 0.010436272248625755, 0.0025475171860307455, 0.024483520537614822, -0.017329955473542213, 0.006852650549262762, 0.006308951880782843, -0.0023594454396516085, -0.00904112122952938, -0.01975095272064209, -0.007468157913535833, 0.029681140556931496, -0.031349848955869675, 0.00044325090129859746, 0.006161914207041264, 0.009636112488806248, 0.00045051731285639107, 0.008343546651303768, -0.005012966692447662, -0.031349848955869675, -0.01934061385691166, -0.01960049569606781, 0.02025703713297844, 0.030830087140202522, 0.014006215147674084, -0.013219733722507954, -0.008829113095998764, 0.017740294337272644, -0.00903428252786398, -0.005734478589147329, 0.008815435692667961, -0.017439380288124084, -0.0015661247307434678, -0.031760189682245255, 0.011106491088867188, 0.008972731418907642, 0.009143706411123276, -0.004913801793009043, 0.00775539455935359, 0.02548201195895672, -0.028067143633961678, -0.007488674949854612, -0.013862596824765205, 0.015551823191344738, 0.0028210761956870556, 0.008664977736771107, -0.01980566419661045, 0.004995869472622871, 0.024141572415828705, 0.015141485258936882, -0.0073313782922923565, -0.013999376446008682, 0.009280486032366753, 0.01619468629360199, -0.010053289122879505, -0.022924235090613365, 0.026179585605859756, 0.022021491080522537, 0.005057420115917921, -0.013192377984523773, -0.01823270134627819, 0.012296472676098347, -0.010340526700019836, 0.02514006197452545, 0.020694730803370476, -0.02797139808535576, 0.001424215966835618, 0.013212895020842552, 0.003805888118222356, 0.0016789677320048213, -0.03263557702302933, 0.008849630132317543, -0.0068800062872469425, 0.0032228657510131598, 0.0009369392064400017, -0.005614796187728643, -0.012412735261023045, -0.004965093918144703, -0.0014071186305955052, 0.019709918648004532, 0.004954835399985313, 0.0035699435975402594, -0.005074517335742712, 0.016796516254544258, 0.032362017780542374, 0.022281372919678688, -0.016618702560663223, -0.010087484493851662, 0.006042232271283865, 0.00521471630781889, 0.0022226660512387753, -0.01812327653169632, 0.0012891462538391352, 0.005703703034669161, 0.0026056484784930944, -0.021159781143069267, -0.028067143633961678, -0.01485424768179655, -0.03184225410223007, -0.019682561978697777, -0.008644460700452328, 0.007775911595672369, 0.04171773046255112, 0.02407318353652954, -0.013944664970040321, 0.02761577069759369, 0.008234122768044472, 0.021693220362067223, -0.0091368667781353, 0.018697749823331833, 0.01665973663330078, 0.03594563901424408, -0.012221244163811207, 0.026740381494164467, -0.031869612634181976, -0.011892973445355892, -0.0026261655148118734, -0.008774401620030403, 0.02263699844479561, 0.0010335397673770785, -0.0001912775042001158, -0.030912155285477638, -0.044699523597955704, -0.00817941129207611, -0.013671105727553368, 0.02864161692559719, 0.016003195196390152, -0.013842079788446426, -0.01598951779305935, -0.007297183386981487, 0.006873167119920254, -0.03195168077945709, -0.01200923603028059, -0.0003145927330479026, -0.010586729273200035, 0.011934006586670876, 0.006134558469057083, -0.00575157580897212, 0.020954610779881477, -0.0297084953635931, 0.020092900842428207, 0.0057755121961236, 0.005731058772653341, 0.02858690544962883, 0.00011294990690657869, 0.016714448109269142, -0.03608241677284241, 0.012453768402338028, -0.051757343113422394, 0.0023149922490119934, 0.020735764876008034, 0.016837550327181816, 0.015551823191344738, -0.006972332485020161, 0.029434937983751297, -0.023416642099618912, 0.013760012574493885, -0.024743402376770973, -0.014567011035978794, -0.031459271907806396, 0.004342747386544943, 0.014430231414735317, -0.017138464376330376, 0.015086772851645947, -0.011940846219658852, -0.024893859401345253, -0.001042088377289474, -0.034851402044296265, -0.010627763345837593, -0.017288921400904655, 0.025700857862830162, -0.01629043184220791, -0.005970423109829426, -0.0035699435975402594, -0.007789589464664459, 0.016386177390813828, -0.03766905888915062, 0.007290344685316086, 0.1842692792415619, -0.008918019942939281, 0.006062748841941357, 0.012652099132537842, 0.003768273862078786, -0.005659249611198902, 0.0055771819315850735, -0.006760324351489544, -0.004185451194643974, 0.003918731119483709, -0.008685494773089886, 0.024182606488466263, 0.0009574561263434589, 0.0013806176139041781, 0.008535037748515606, 0.010661957785487175, -0.006161914207041264, -0.040897056460380554, -0.02014761231839657, 0.001048072474077344, -0.009396747685968876, -0.0024244156666100025, -0.024360420182347298, -0.03255350887775421, 0.027957718819379807, -0.008870147168636322, 0.007892174646258354, -0.009259968996047974, 0.009588239714503288, -0.01030633132904768, -0.027232788503170013, 0.002455191221088171, -0.002097854856401682, 0.004756505135446787, -0.03731343522667885, -0.005878096912056208, 0.022554930299520493, 0.008316190913319588, 0.024237317964434624, -0.016946973279118538, 0.014635400846600533, -0.007775911595672369, -0.007967403158545494, -0.03559001162648201, 0.012323828414082527, 0.04379677772521973, -0.022431829944252968, -0.008117860183119774, -0.012570030987262726, 0.01756248064339161, -0.01634514331817627, -0.01423874031752348, 0.0033169016242027283, 0.00944462139159441, 0.01353432610630989, -0.017453057691454887, 0.004770183470100164, -7.179585281846812e-06, 0.014881604351103306, 0.03326476365327835, -0.014963671565055847, 0.020133934915065765, -0.011564702726900578, 0.021761611104011536, -0.008234122768044472, 0.022773778066039085, -0.015825381502509117, -0.005248911213129759, -0.009000088088214397, -0.006028554402291775, 0.004770183470100164, 0.0008950505289249122, 0.0013481325004249811, 0.027561059221625328, -0.01980566419661045, -0.004527399782091379, 0.016864905133843422, -0.0017148723127320409, -0.0040110573172569275, 0.024209963157773018, -0.03266293182969093, -0.03405808284878731, 0.0077417166903615, 0.0024893858935683966, -0.04893968626856804, -0.03643804416060448, 0.03966604173183441, -0.007037302479147911, -0.018670395016670227, -0.02680877223610878, -0.01020374707877636, -0.02503063902258873, 0.005259169731289148, 0.003744337474927306, 0.005006127990782261, 0.01135269459336996, 0.0015515919076278806, 0.03835295885801315, -0.023225151002407074, 0.015524467453360558, -0.023485030978918076, 0.048967041075229645, 0.02224033884704113, -0.018697749823331833, 0.03405808284878731, -0.011482634581625462, -0.004202548414468765, -0.007905852049589157, 0.017658226191997528, -0.02660360187292099, -0.03006412275135517, -0.014635400846600533, -0.0010078935883939266, -0.0018157472368329763, 0.017152143642306328, 0.003956345375627279, -0.01574331521987915, -0.02218562737107277, 0.01462172344326973, 0.02624797634780407, 0.01750776916742325, -0.024100538343191147, 0.001657595974393189, -0.009376231580972672, 0.0040315743535757065, -0.00045949345803819597, -0.043030813336372375, 0.008822274394333363, -0.033647745847702026, -0.002650101901963353, 0.042483698576688766, -0.02654889039695263, 0.014402875676751137, -0.02020232379436493, -0.011297982186079025, -0.0077417166903615, -0.01223492156714201, -0.033127982169389725, -0.007734877988696098, 0.003614397021010518, -0.009759213775396347, -0.005679766647517681, -0.008562393486499786, -0.0026979746762663126, 0.005587440449744463, -0.021611152216792107, -0.004171773325651884, -0.034085437655448914, 0.025673503056168556, -0.01913544535636902, -0.010114840231835842, -0.006630383897572756, 0.01340438611805439, -0.03173283115029335, -0.014047249220311642, -0.03583621606230736, -0.011468957178294659, -0.02076311968266964, 0.01847890391945839, 0.037641704082489014, -0.03766905888915062, 0.021310238167643547, 0.014785858802497387, -0.013821563683450222, -0.0241142176091671, -0.02295159175992012, -0.17288921773433685, 0.0010249910410493612, -0.0031185713596642017, -0.02798507548868656, 0.0164956022053957, -0.0009301002719439566, 0.02579660341143608, 0.003147637005895376, -0.013028242625296116, -0.014594366773962975, -0.011899812147021294, -0.013035081326961517, -0.023580776527523994, -0.022103559225797653, -0.004144417122006416, 0.0011241560569033027, -0.011154363863170147, 0.009095833636820316, 0.025372587144374847, 0.018807174637913704, 0.032061103731393814, -0.030693307518959045, 0.031459271907806396, 0.014580689370632172, -0.005358335096389055, 0.007358734495937824, 0.0023081533145159483, -0.008117860183119774, -0.001779842539690435, -0.02604280784726143, -0.001522526261396706, 0.020339103415608406, 0.041362106800079346, -0.021364949643611908, 0.024442488327622414, 0.013746334239840508, -0.009998577646911144, -0.013335996307432652, 0.004318810999393463, -0.0016687093302607536, 0.028395414352416992, 0.01858832687139511, -0.011592058464884758, -0.014703790657222271, -0.022007813677191734, 0.027533702552318573, 0.011721998453140259, -0.011585219763219357, 0.00019768904894590378, -0.009704502299427986, 0.03266293182969093, 0.0017576159443706274, -0.0008091359050013125, 0.004660759586840868, 0.03974810615181923, -0.007721199654042721, -0.03041975013911724, 0.009526688605546951, -0.027451636269688606, 0.026617281138896942, 0.01813695579767227, -0.03296384587883949, -0.0020038189832121134, 0.024866504594683647, -0.016003195196390152, 0.01960049569606781, -0.022212982177734375, 0.0076391324400901794, -0.037340790033340454, 0.009984899312257767, 0.006886845454573631, 0.008740207180380821, 0.002467159414663911, 0.016687093302607536, 0.01196136325597763, 0.014471265487372875, -0.032362017780542374, 0.012200727127492428, -0.03818882256746292, -0.025167418643832207, -0.013732656836509705, 0.021597474813461304, 0.008562393486499786, -0.009465137496590614, 0.01980566419661045, 0.0026381337083876133, -0.0038093077018857002, -0.004588950425386429, -0.011003906838595867, -0.015073095448315144, 0.014512299560010433, -0.02478443644940853, -0.0228558462113142, 0.0003019833820872009, -0.0073518953286111355, -0.0006398713449016213, 0.019573139026761055, -0.015497111715376377, 0.013465936295688152, -0.04828314483165741, 0.010436272248625755, -0.023854335770010948, -0.004753085784614086, 0.005245491862297058, 0.04732568934559822, 0.01838315837085247, -0.026671992614865303, -0.005871257744729519, 0.030830087140202522, 0.03000941127538681, 0.002369703957810998, 0.005358335096389055, 0.002434674184769392, 0.021392306312918663, 0.004527399782091379, 0.024237317964434624, -0.013274445198476315, -0.02426467463374138, 0.026165908202528954, -0.013862596824765205, 0.02233608439564705, -0.011769871227443218, 0.0031938001047819853, -0.011332177557051182, 0.0005505372537299991, 0.011243270710110664, -0.11806801706552505, -0.026644635945558548, 0.0026381337083876133, 0.002803978743031621, -0.011263787746429443, -0.013301800936460495, -0.012542675249278545, 0.02274642325937748, 0.023293539881706238, 0.027656804770231247, -0.02173425443470478, -0.027506347745656967, -0.006189269945025444, -0.016878584399819374, -0.037805840373039246, -0.00010835497232619673, -0.016372499987483025, 0.025755569338798523, -0.021392306312918663, 0.05558716878294945, 0.029024599120020866, 0.0064662485383450985, 0.00033895656815730035, -0.006599608343094587, -0.022513898089528084, 0.019614173099398613, -0.0281765665858984, 0.0006847521290183067, 0.004883026238530874, 0.0014327646931633353, 0.015045739710330963, -0.009259968996047974, 0.00898640975356102, -0.022732743993401527, 0.011038101278245449, 0.007946886122226715, -0.005245491862297058, -0.03515231981873512, 0.015223552472889423, -0.013801046647131443, -0.017795005813241005, -0.0021029841154813766, 0.0073313782922923565, -0.008124698884785175, 0.02254125289618969, -0.0192995797842741, -0.03293649107217789, 0.02092725597321987, 0.0020448528230190277, -0.020270714536309242, -0.02995469979941845, 0.0068389722146093845, -0.026521535590291023, -0.0023269604425877333, 0.0065038627944886684, 0.00025859865127131343, 0.007823784835636616, -0.0032604800071567297, -0.0003524207859300077, 0.010921838693320751, 0.0008245236240327358, 0.010012255981564522, 0.008849630132317543, 0.034605201333761215, 0.009629272855818272, 0.003392130369320512, -0.004848831333220005, 0.001397714950144291, 0.031760189682245255, -0.020188646391034126, -0.0009711341117508709, 0.02853219211101532, -0.001839683623984456, 0.031158357858657837, -0.015127806924283504, 0.023293539881706238, 0.00128829141613096, 0.01767190545797348, 0.04543813318014145, -0.007940047420561314, -0.016522957012057304, -0.01720685511827469, -0.030474461615085602, -0.033428896218538284, 0.012542675249278545, 0.02117345854640007, 0.019833020865917206, 0.008158894255757332, 0.04508250579237938, -0.022883201017975807, 0.0068971035070717335, -0.0042777773924171925, 0.016837550327181816, -0.0044248150661587715, -0.003775112796574831, -0.012433252297341824, 0.009410426020622253, 0.003942667506635189, 0.020626340061426163, 0.003946087323129177, -0.04015844687819481, -0.008268318139016628, -0.03993959724903107, 0.02467501163482666, -0.013103471137583256, -0.02265067584812641, 0.011742515489459038, 0.019723596051335335, 0.014047249220311642, -0.0032211560755968094, -0.010785060003399849, -0.01464907918125391, -0.019067054614424706, -0.005840482655912638, -0.00518052140250802, -0.014033571816980839, 0.009430943056941032, -0.003723820438608527, 0.00011091958731412888, -0.014170350506901741, 0.024045826867222786, 0.018643038347363472, -0.01228963304311037, -0.02542729862034321, -0.0069381375797092915, -0.006801357958465815, -0.006732968147844076, -0.013301800936460495, 0.012542675249278545, 0.01883452944457531, -0.016878584399819374, -0.015538145788013935, 0.016208365559577942, -0.008076826110482216, 0.012193887494504452, 0.009280486032366753, 0.00637050298973918, 0.019272224977612495, -0.00974553544074297, 0.011414244771003723, 0.03848973661661148, 0.006243981886655092, -0.02579660341143608, -0.020995644852519035, 0.01089448295533657, -0.005460919346660376, 0.0010583309922367334, -0.030447104945778847, -0.015223552472889423, 0.022719066590070724, 0.0008779530762694776, 0.005108712241053581, 0.011612575501203537, 0.02635739929974079, -0.002532129641622305, -0.012556353583931923, -0.0012327247532084584, -0.03788790851831436, 0.007180921267718077, -0.022459184750914574, -0.0075980983674526215, -0.012522158212959766, 0.02092725597321987, -0.002472288440912962, 0.022527575492858887, -0.013671105727553368, -0.010518339462578297, -0.037286076694726944, -0.0036280748900026083, 0.008343546651303768, -0.003840083023533225, 0.00699284952133894, 0.004435073584318161, 0.0031510565895587206, 0.0165092796087265, -0.0062200454995036125, 0.03285442292690277, 0.023526065051555634, -0.0032279950100928545, -0.0008967602625489235, 0.00840509682893753, 0.010559373535215855, 0.029982054606080055, -0.027998752892017365, -0.023115726187825203, 0.005898613948374987, 0.04251105338335037, 0.017234209924936295, -0.010395238175988197, -0.01135269459336996, -0.015401366166770458, 0.01162625290453434, -0.013575360178947449, -0.0058233849704265594, -0.017138464376330376, -0.0022483121138066053, -0.006209786981344223, 0.022404473274946213, -0.003433164209127426, -0.004082866478711367, -0.006890264805406332, 0.005659249611198902, 0.00845296960324049, -0.0039939600974321365, -0.025153741240501404, -0.015196196734905243, -0.05197618901729584, 0.013418063521385193, -0.014895281754434109, -0.025523046031594276, -0.014033571816980839, 0.04407033696770668, -0.019737275317311287, 0.01564756967127323, 0.008042631670832634, 0.008637621998786926, -0.03433164209127426, -0.008076826110482216, 0.0045239804312586784, -0.012959852814674377, -0.017808685079216957, 0.017124786972999573, 0.01838315837085247, 0.011742515489459038, 0.05276951193809509, 0.004421395715326071, 0.028422769159078598, 0.006261079106479883, 0.017302600666880608, -0.016933295875787735, -0.013541165739297867, -0.0022021490149199963, -0.0026141973212361336, -0.001684096991084516, -0.0365748256444931, -0.003022825811058283, -0.013780529610812664, -0.013999376446008682, 0.004329069517552853, 0.020845187827944756, -0.017644548788666725, 0.06083950027823448, -0.0046710181050002575, 0.01033368706703186, 0.0021833418868482113, 0.004595789592713118, 0.0064252144657075405, 0.04562962427735329, -0.009355714544653893, 0.00824780110269785, -0.025714537128806114, 0.014690113253891468, -0.008309351280331612, -0.01568860188126564, -0.027561059221625328, -0.020776798948645592, 0.018971309065818787, -0.0003344684955663979, 0.02111874707043171, -0.02883310802280903, 0.015346653759479523, 0.025358909741044044, 0.022308727726340294, 0.013636911287903786, -0.01787707395851612, -0.00567634729668498, 0.0034741980489343405, 0.010785060003399849, 0.015907449647784233, -0.0329912044107914, -0.01731627807021141, -0.009355714544653893, -0.020899899303913116, -0.040787629783153534, -0.02005186676979065, 0.009711341001093388, -0.002032884629443288, -0.005464339163154364, 0.0021525665652006865, 0.00029129747417755425, -0.012098141945898533, -0.007256149780005217, 0.0014336196472868323, -0.013472775928676128, -0.05457499995827675, -0.015182518400251865, -0.00637392234057188, -0.006288435310125351, 0.005796029232442379, -0.05517682805657387], "bfda4cdd-355f-44cd-a333-592fb7cbade4": [-0.0016589597798883915, -0.027458645403385162, 0.00624452019110322, -0.000664495921228081, -0.005677439738065004, -0.0031736623495817184, -0.0060919723473489285, -0.022417927160859108, -0.034250348806381226, -0.007614136207848787, 0.023492395877838135, 0.0282810777425766, -0.024487275630235672, 0.020388375967741013, -0.002822138601914048, 0.03451564908027649, 0.025296442210674286, -0.009491140022873878, 0.011255391873419285, 0.012754341587424278, 0.011407939717173576, 0.0024258452467620373, -0.010665097273886204, -0.01778842695057392, -0.02004348486661911, 0.024367889389395714, 0.01979144848883152, -0.008197798393666744, 0.012522203847765923, -0.006768489722162485, 0.026729067787528038, 0.016223151236772537, -0.028307607397437096, -0.010578874498605728, -0.013198720291256905, 0.020746532827615738, -0.009212573990225792, -0.003893291112035513, -0.012270167469978333, -0.015400717966258526, 0.020985303446650505, -0.002467298647388816, -0.01194517407566309, -0.004350935108959675, 0.0026165302842855453, 0.008350346237421036, 0.019433291628956795, -0.025415828451514244, -0.008124840445816517, 0.022789349779486656, 0.024036264047026634, 0.017058849334716797, -0.016249680891633034, -0.015440513379871845, 0.004377465229481459, 0.011447735130786896, -0.006430231034755707, -0.007189654745161533, -0.012641589157283306, 0.0005003409460186958, -0.005511626601219177, -0.005150154232978821, -0.022073036059737206, -0.0003482074534986168, -0.03284425288438797, -0.01071152463555336, -7.0729642175138e-05, 0.005107042845338583, 0.014458900317549706, 0.008197798393666744, 0.03125244751572609, 0.00496775982901454, -0.013888503424823284, 0.002712701912969351, 0.030217774212360382, 0.004553227219730616, -0.014578285627067089, 0.016594571992754936, -0.015241538174450397, -0.01640886254608631, -0.0026082396507263184, -0.006678950507193804, -0.005793508607894182, 0.012595160864293575, 0.007819744758307934, -0.02849331870675087, -0.015679284930229187, 0.017164969816803932, -0.0044039953500032425, -0.04523380845785141, 0.018756775185465813, 0.02936881221830845, 0.009802868589758873, 0.02317403443157673, -0.006722061894834042, 0.010890603065490723, -0.008270756341516972, 0.010857440531253815, -0.014273189939558506, -0.027432115748524666, 0.00807841308414936, 0.021316928789019585, 0.0018836365779861808, -0.007600871380418539, -0.02891780063509941, -0.007600871380418539, -0.003304654499515891, -0.006944251712411642, 0.01798740215599537, -0.004888169467449188, -0.0015097280265763402, 0.034038107842206955, 0.007740154396742582, -0.032074879854917526, 0.01887615956366062, 0.013822178356349468, 0.027856595814228058, -0.006566197611391544, -0.010990090668201447, -0.005710602272301912, -0.008429937064647675, 0.001526309410110116, 0.03576256334781647, 0.005654226057231426, 0.03456870838999748, -0.00537566002458334, -0.008031985722482204, -0.015745609998703003, 0.005796825047582388, 0.0026414021849632263, 0.009796236641705036, 0.007706991862505674, 0.0038468632847070694, 0.012250269763171673, -0.03212794288992882, 0.01924758218228817, -0.005952689331024885, 0.005140205379575491, -0.01961900293827057, -0.015161947347223759, 0.02505767159163952, 0.010830909945070744, -0.01720476523041725, -0.009511037729680538, 0.02268322929739952, 0.03974207863211632, 0.026370910927653313, -0.013941563665866852, -0.022059772163629532, -0.005982535891234875, 0.012416083365678787, 0.011235494166612625, -0.018557799980044365, -0.001427650568075478, -0.029156571254134178, -0.00018643608200363815, -0.0004145326965954155, 0.007362100295722485, 0.01602417603135109, 0.0005368198035284877, 0.02326689101755619, 0.04082981124520302, -0.020812857896089554, -0.005637644324451685, -0.007720256689935923, 0.02318730019032955, 0.029819823801517487, -0.00226003210991621, -0.006496556103229523, 0.002493828535079956, -0.005839936435222626, 0.005889680236577988, -0.020773062482476234, 0.020733267068862915, 0.011096211150288582, -0.006788387428969145, 0.0034522281493991613, -0.00313220894895494, -0.005163419060409069, 0.012840564362704754, 0.007501383312046528, -0.01664763316512108, 0.016249680891633034, 0.06070084869861603, -0.0329769030213356, -0.01782822236418724, 0.03849516436457634, 0.015520104207098484, 0.023877082392573357, 0.014684406109154224, 0.00455985963344574, 0.027670886367559433, -0.00844983384013176, -0.02109142392873764, -0.6362977027893066, 0.002243450842797756, -0.012800768949091434, -0.001352205639705062, -0.009186044335365295, -0.004340986255556345, 0.009570730850100517, 0.017629245296120644, -0.024672985076904297, 0.04340323060750961, 0.01995062828063965, -0.0058664665557444096, 0.030907556414604187, -0.016674162819981575, -0.009643688797950745, -0.02389034815132618, 0.02062714658677578, -0.005173367913812399, -0.015281332656741142, 0.0004472807631827891, -0.02200671099126339, 0.03517890349030495, -0.024407684803009033, -0.00705037172883749, -0.0019201154354959726, 0.02217915654182434, -0.010558976791799068, 0.0038302820175886154, 0.02707395888864994, 0.00585651770234108, 0.006775122135877609, -0.01841188408434391, -0.011116108857095242, 0.002435794100165367, 0.038680873811244965, -0.013928297907114029, 0.023041384294629097, 0.026039285585284233, 0.016873138025403023, 0.03899923339486122, -0.018809834495186806, -0.011195698752999306, 0.02389034815132618, 0.017589451745152473, 0.01537418831139803, -0.019221052527427673, -0.010552343912422657, 0.0033328428398817778, -0.006572830490767956, -0.014737466350197792, 0.001230333000421524, 0.0023495713248848915, 0.003926453646272421, -0.024381155148148537, 0.0008062660926952958, 0.00853605754673481, 0.007342203054577112, -0.010618668980896473, 0.001852132030762732, -0.017801690846681595, -0.01106968056410551, 0.0023810756392776966, -0.0066491044126451015, -0.002720992546528578, 0.002062714658677578, 0.007607503794133663, -0.014631345868110657, -0.012316594831645489, -0.007919232361018658, -0.021104687824845314, -0.008993701077997684, 0.02402299828827381, 0.0019284060690551996, -0.02158222906291485, 0.014671141281723976, -0.009763074107468128, -0.0016357459826394916, -0.015241538174450397, -0.01025388017296791, 0.005849885288625956, 0.008005455136299133, 0.005388924852013588, -0.03637275472283363, -0.010200819931924343, 0.02050776034593582, 0.006271050311625004, 0.01049928367137909, 0.008940640836954117, 0.020070014521479607, 0.032074879854917526, 0.011666608043015003, 0.027432115748524666, 0.00904012843966484, -0.042448148131370544, 0.004178489558398724, 0.009928886778652668, 0.004384097643196583, -0.008005455136299133, -0.012581896036863327, -0.02670253813266754, -0.0275382362306118, -0.012097721919417381, -0.00864217709749937, 0.007494750898331404, 0.025084201246500015, -0.0006885387701913714, 0.027272934094071388, 0.022484252229332924, 0.019645532593131065, -0.019234316423535347, -0.01134161464869976, -0.042368557304143906, -0.006038912106305361, 0.009272267110645771, 0.027883127331733704, -0.02192712016403675, 0.013251780532300472, 0.006911089178174734, 0.011056415736675262, -0.02589336968958378, 0.02656988799571991, 0.002470614854246378, -0.002261690329760313, -0.03387892618775368, 0.009205942042171955, 0.010134494863450527, 0.0282810777425766, -0.0161435604095459, -0.02037511020898819, -0.02221895195543766, 0.0009525961359031498, -0.0014608132187277079, 0.018066992983222008, -0.01435277983546257, 0.005103726405650377, -0.025840310379862785, 0.012601793743669987, -0.012840564362704754, 0.018730245530605316, -0.004281293600797653, -0.012263534590601921, 0.008821255527436733, 0.012031396850943565, -0.012435981072485447, -5.33710845047608e-05, -0.03143816068768501, -0.03854822367429733, 0.004317772574722767, -0.0007341373711824417, 0.0021406468003988266, 0.0018023881129920483, 0.010174290277063847, -0.014246659353375435, 0.01862412504851818, -0.017377210780978203, -0.012004866264760494, -0.00826412346214056, 0.0036346225533634424, 0.001465787529014051, 0.0007602529367431998, 0.016713958233594894, 0.01827923394739628, -0.021529169753193855, -0.0003921479219570756, -0.0141405388712883, -0.015427248552441597, -0.022165892645716667, 0.025429092347621918, -0.011441102251410484, -0.04109511151909828, 0.00658941175788641, 0.005037401337176561, -0.008555954322218895, 0.02355872094631195, -0.0050274524837732315, 0.055341772735118866, -0.043244048953056335, 0.02125060372054577, -0.010956928133964539, -0.020109809935092926, -0.01581193506717682, -0.011633445508778095, -0.03305649384856224, -0.0139548284932971, 0.024500539526343346, 0.0062743667513132095, 0.018212908878922462, -0.00699731195345521, -0.004898118320852518, -0.000387380801839754, -0.0015254803001880646, 0.005627695936709642, -0.002125723520293832, 0.02263016812503338, -0.002888463670387864, 0.009278899990022182, 0.016289476305246353, -0.00463281711563468, 0.007919232361018658, 0.050354115664958954, 0.02196691557765007, 0.004125429317355156, 0.008403406478464603, -0.029527992010116577, -0.0004240669368300587, -0.016422126442193985, 0.025322971865534782, -0.005173367913812399, 0.017642511054873466, -0.01928737759590149, 0.0018703715177252889, -0.004576440900564194, -0.030270835384726524, -0.02598622441291809, -0.0011051441542804241, 0.041440002620220184, -0.02602601982653141, 0.03605439513921738, 0.03501972183585167, 0.03451564908027649, 0.015268067829310894, 0.012409450486302376, 0.02913004159927368, 0.019181257113814354, 0.0008332107099704444, -0.01292678713798523, 0.0068580289371311665, -0.03393198922276497, -0.0031371833756566048, -0.03183611109852791, -0.0019847825169563293, -0.0242750346660614, -0.004165224265307188, -0.009033496491611004, 0.043111398816108704, 0.00786617211997509, 0.002455691574141383, -0.019804714247584343, 0.00655956519767642, -0.0006732011097483337, -0.007149859797209501, -0.0049014342948794365, 0.011308452114462852, -0.014618081040680408, -0.013105865567922592, -0.012707914225757122, 0.01983124390244484, 0.018796570599079132, 0.01194517407566309, 0.026874983683228493, -0.01213088445365429, 0.018053727224469185, -0.039184946566820145, 0.003258226905018091, -0.0029547889716923237, -0.029315751045942307, 0.02431483007967472, -0.009146248921751976, 0.027856595814228058, 0.016767017543315887, -0.011122740805149078, 0.024301564320921898, 0.03486054018139839, 0.0008220183080993593, 0.019221052527427673, -0.0007503041415475309, 0.008045250549912453, -0.01644865609705448, -0.020560821518301964, -0.004195070825517178, -0.008250858634710312, -0.03552379459142685, -0.03435646742582321, 0.017761897295713425, 0.01804046332836151, 0.02146284468472004, 0.022749554365873337, 0.0010678361868485808, 0.026835188269615173, -0.013311473652720451, -0.015851730480790138, -0.0033328428398817778, 0.025336237624287605, 0.017708836123347282, -0.004894801881164312, -0.033162616193294525, -0.008065148256719112, 0.005962638184428215, -0.00993551965802908, 0.004052471369504929, -0.016713958233594894, 0.0035285023041069508, 0.011600282974541187, 0.0002621919265948236, 0.019565943628549576, 0.005432036239653826, 0.025628069415688515, -0.0017791743157431483, 0.005690704565495253, -0.0005223111947998405, 0.02635764703154564, -0.019738389179110527, -0.018226172775030136, -0.0246464554220438, 0.027087224647402763, 0.016965994611382484, -0.002250083489343524, -0.002704411279410124, -0.0030575930140912533, -0.0065562487579882145, 0.01652824692428112, -0.017005788162350655, -0.002886805683374405, -0.017629245296120644, 0.017350679263472557, -0.01274107675999403, 0.009749808348715305, -0.010612037032842636, 0.03016471490263939, 0.010141127742826939, -0.010837542824447155, 0.016581308096647263, -0.021648554131388664, 0.008230960927903652, 0.02330668643116951, -0.002454033587127924, -0.024752575904130936, -0.0030128236394375563, -0.020560821518301964, 0.000926066015381366, -0.011666608043015003, -0.021688349545001984, 0.0065562487579882145, 0.025163792073726654, -0.00030323065584525466, -0.005408822558820248, 0.0065065049566328526, -0.0035583486314862967, 0.005750397220253944, 0.0013008036185055971, -0.007508016191422939, 0.009186044335365295, -0.008230960927903652, -0.008277388289570808, 0.005757030099630356, 0.02317403443157673, 0.01537418831139803, 0.0036445714067667723, -0.0014060948742553592, 0.015002766624093056, 0.00931206252425909, 6.995238800300285e-05, -0.00364125519990921, -0.011918643489480019, -0.011334981769323349, 0.02142304927110672, 0.0046195522882044315, 0.03279119357466698, -0.006088655907660723, 0.015798669308423996, 0.0005915381480008364, 0.031570810824632645, -0.008211063221096992, -0.004181805532425642, -0.006055493373423815, 0.016262946650385857, 0.010937030427157879, 0.004791997838765383, -0.0008497920352965593, -0.023028120398521423, 0.0008485484286211431, 0.00728251039981842, -0.016461921855807304, -0.01619662158191204, -0.007474853191524744, -0.01689966768026352, -0.019658798351883888, -0.01853126846253872, 0.012880359776318073, 0.015493573620915413, 0.0036445714067667723, -0.021277133375406265, -0.029607582837343216, -0.028095368295907974, -0.013059438206255436, -0.0048284768126904964, 0.020176135003566742, 0.0008377705817110837, -0.02196691557765007, 0.0007884411606937647, 0.005597849376499653, 0.005584584549069405, -0.026463767513632774, -0.0064667100086808205, 0.022669963538646698, -0.03356056660413742, -0.04740927368402481, -0.012502306140959263, 0.029395341873168945, 0.03467483073472977, -0.002007996430620551, 0.016422126442193985, -0.01154722273349762, 0.008237593807280064, -0.0005844910629093647, -0.04589705914258957, -0.005362394731491804, -0.022192422300577164, 0.004118796903640032, 0.01014776062220335, 0.03167692944407463, 0.008436569012701511, -0.018929220736026764, 0.005116991698741913, -0.02833413891494274, -0.007806479465216398, 0.006708797067403793, 0.002822138601914048, -0.014153803698718548, 0.039556365460157394, 0.013662997633218765, -0.013145660981535912, 0.02886473946273327, -0.02649029716849327, 0.016660897061228752, -0.02936881221830845, -0.01757618598639965, -0.0074483235366642475, 0.015228272415697575, -0.022404663264751434, 0.028970859944820404, -0.0005227256915532053, 0.0035981438122689724, -0.029156571254134178, 0.018902691081166267, -0.013258413411676884, 0.03239324316382408, 0.03289731219410896, 0.02239139750599861, -0.0048516904935240746, 0.007819744758307934, 0.018345559015870094, -0.0019847825169563293, -0.02208630181849003, 0.007269245106726885, -0.01399462390691042, 0.01652824692428112, 0.00966358557343483, 0.003462177002802491, 0.017562920227646828, -0.018438413739204407, -0.02443421445786953, -0.03799109160900116, 0.005160103086382151, 0.040776751935482025, 0.020348580554127693, -0.01635580137372017, -0.02740558423101902, -0.012734443880617619, -0.008529424667358398, -0.007726889103651047, -0.0011192382080480456, -0.016289476305246353, 0.015705814585089684, -0.0010512549197301269, 0.005073880311101675, -0.007527913432568312, -0.014445635490119457, -0.0034157494083046913, -0.023956673219799995, -0.02075979672372341, 0.009809501469135284, 0.024925021454691887, 0.03820333257317543, 0.01594458520412445, 0.028174957260489464, -0.0384155735373497, -0.03342791646718979, 0.020613880828022957, -0.003508604597300291, 0.00828402116894722, -0.005063931457698345, 0.030774906277656555, 0.03414423018693924, 0.01744353584945202, 0.006798336282372475, 0.002044475171715021, 0.012787504121661186, -0.005637644324451685, 0.016793549060821533, -0.01594458520412445, -0.006154981441795826, -0.02577398344874382, -0.014299719594419003, 0.002525333082303405, 0.0018139950698241591, 0.008211063221096992, 0.002878515049815178, 0.01644865609705448, 0.03616051375865936, 0.016461921855807304, 0.022616904228925705, -0.007939130067825317, -0.014817056246101856, -0.002074321499094367, 0.01804046332836151, -0.005213162861764431, 0.04305833950638771, -0.011189065873622894, -0.01337116677314043, -0.002228527795523405, -0.010598771274089813, -0.0019416711293160915, 0.006125134881585836, 0.009862561710178852, 0.006519770249724388, -0.010154392570257187, 0.020242460072040558, 0.01920778676867485, -0.03239324316382408, 0.003538450924679637, -0.03586868569254875, 0.004347618669271469, -0.004593022167682648, -0.01479052659124136, 0.04040532931685448, 0.009192677214741707, 0.0063406918197870255, -0.017934342846274376, -0.011102843098342419, -0.03151774778962135, -0.02472604624927044, 0.0036512038204818964, -0.011785993352532387, -0.023001588881015778, 0.0014939757529646158, -0.008655442856252193, -0.006917721591889858, -0.0028254548087716103, 0.013211986050009727, 0.003707580268383026, 0.015825198963284492, -0.020282255485653877, -0.02623826079070568, -0.01744353584945202, 0.006851396057754755, 0.04974392428994179, -0.0017062164843082428, 0.027272934094071388, 0.03109326772391796, 0.010492651723325253, -0.00040872921817936003, -0.01590478979051113, -0.002016287064179778, 0.019433291628956795, 0.0503806434571743, 0.0012883675517514348, -0.013729322701692581, -0.03130550682544708, -0.0037971194833517075, -0.02748517505824566, -0.00828402116894722, -0.041148170828819275, 0.010326838120818138, 0.00414201058447361, -0.011268656700849533, -0.010459489189088345, 0.019977159798145294, -0.021661819890141487, 0.007216184865683317, -0.009564097970724106, -0.023903612047433853, -0.007255980279296637, -0.004931280855089426, -0.02008328028023243, -0.02008328028023243, 0.010287042707204819, 0.022908734157681465, 0.01752312481403351, 0.011666608043015003, -0.010466121137142181, 0.01290688943117857, -0.03716865926980972, -0.0020096544176340103, 0.01276097446680069, 0.029395341873168945, 0.011427837423980236, -0.026384176686406136, 0.021436315029859543, -0.00926563423126936, 0.010890603065490723, -0.0036313063465058804, 0.002805557334795594, 0.022948529571294785, -0.032950375229120255, -0.0042945584282279015, -0.007806479465216398, 0.0003515237185638398, -0.0340646393597126, 0.004639449995011091, -0.029740232974290848, 0.001149913645349443, -0.021568965166807175, 0.004360883962363005, 0.014206863939762115, 0.024235239252448082, -0.02724640443921089, -0.006741959601640701, 0.004891485907137394, -0.005614430643618107, -0.014843586832284927, -0.006775122135877609, 0.01211098674684763, -0.024447480216622353, -0.014193599112331867, -0.02167508564889431, 0.003707580268383026, 0.009583995677530766, 0.014989501796662807, -0.0061317672953009605, 0.00010705306340241805, 0.018518004566431046, -0.03746049106121063, 0.01493644155561924, 0.017483331263065338, -0.003674417734146118, -0.025575008243322372, 0.02095877192914486, 0.0035848787520080805, 0.012077824212610722, 0.018730245530605316, -0.017045583575963974, -0.010326838120818138, 0.012681383639574051, -0.029156571254134178, 0.0014351122081279755, -0.015838464722037315, -0.011182433925569057, -0.01644865609705448, 0.02322709560394287, 0.021184278652071953, -0.009278899990022182, -0.016594571992754936, 0.01693946309387684, 0.007561076432466507, 0.020560821518301964, 0.0013107523554936051, 0.011560487560927868, 0.004025941248983145, -0.02653009258210659, 0.0023329900577664375, 0.00826412346214056, -0.022669963538646698, -0.0018786621512845159, -0.011301819235086441, 0.004801946692168713, -0.01253546867519617, -2.17500128201209e-05, -0.033321794122457504, 0.023731166496872902, -0.014286454766988754, 0.015360923483967781, -0.013265046291053295, -0.003750691656023264, -0.004191754385828972, 0.03289731219410896, 0.008768195286393166, 0.00624452019110322, -0.007183022331446409, -0.004125429317355156, 0.007740154396742582, -0.0007498896447941661, -0.017297619953751564, 0.0013182139955461025, 0.02004348486661911, 0.05587237328290939, 0.0286259688436985, -0.009464610368013382, -0.015997646376490593, 0.01230333000421524, -0.025681128725409508, -0.02447400987148285, -0.003458860795944929, 0.021489374339580536, 0.016302742063999176, 0.03016471490263939, 0.0014367703115567565, 0.028811680153012276, 0.0037838544230908155, 0.027803536504507065, -0.008297285996377468, -0.001827260130085051, 0.005037401337176561, 0.013457389548420906, -0.0015055827097967267, -0.0007540349615737796, -0.02565459907054901, -0.0201230738312006, 0.022152626886963844, -0.03141162917017937, 0.01565275341272354, 0.0031753203365951777, 0.028015777468681335, -0.0003656178305391222, -0.024832166731357574, -0.0032035086769610643, 0.011394674889743328, 0.007381998002529144, 0.0003289316955488175, -0.013530346564948559, -0.037380900233983994, -0.01841188408434391, -0.002039500745013356, -0.02505767159163952, -0.021622024476528168, 0.008250858634710312, -0.01819964312016964, 0.0017509860917925835, -0.011978336609899998, -0.007879436947405338, 0.011686505749821663, -0.011892113834619522, 0.016475187614560127, -0.0003506946668494493, 0.0012162389466539025, 0.033825866878032684, -0.03234018385410309, 0.009836032055318356, -0.00566085847094655, -0.016846608370542526, -0.009345225058495998, 1.23258705571061e-05, 0.034462589770555496, -0.00022778571292292327, -0.012893624603748322, -0.014551755040884018, 0.03804415091872215, -0.01590478979051113, 0.012601793743669987, -0.03409116715192795, -0.019194521009922028, -0.009385020472109318, 0.027936186641454697, 0.009836032055318356, 0.023956673219799995, 0.02410258911550045, -0.01961900293827057, -0.001537916250526905, -0.015745609998703003, -0.043827712535858154, 0.010963560082018375, -0.020905712619423866, 0.017841486260294914, 0.014021153561770916, 0.0021074842661619186, -0.03334832563996315, 0.005332548636943102, 0.008987068198621273, -0.023956673219799995, -0.0032316967844963074, 0.1833759993314743, -0.008821255527436733, 0.008250858634710312, 0.03966248780488968, -0.0008929034229367971, 0.025455623865127563, 0.014989501796662807, -0.02225874736905098, -0.0043542515486478806, 0.026662742719054222, 0.001348889316432178, 0.00728251039981842, -0.0190353412181139, 0.012787504121661186, -0.011155903339385986, -0.0029647378250956535, -0.006310845725238323, -0.03862781450152397, 0.014511960558593273, 0.02347913198173046, -0.0016539854696020484, -0.006818233523517847, -0.04409301280975342, -0.01711190864443779, 0.031040208414196968, 0.004526697099208832, -0.02631785161793232, 0.010379898361861706, 0.034329939633607864, -0.002901728730648756, -0.01769557222723961, -0.005564686842262745, 0.0021157748997211456, 0.013450756669044495, -0.03844210505485535, -0.004556543193757534, 0.028228018432855606, 0.006350640673190355, 0.04669296368956566, -0.00847636442631483, 0.017496595159173012, -0.023956673219799995, -0.005806773900985718, -0.006383803207427263, 0.025548478588461876, 0.031544279307127, -0.03626663610339165, -0.010306940414011478, -0.005707285832613707, 0.005886364262551069, -0.021157748997211456, -0.0202955212444067, 0.011441102251410484, -0.00045971674262546003, -0.03727477788925171, -0.010724789462983608, 0.0017161653377115726, 0.011407939717173576, 0.028891270980238914, 0.02769741602241993, -0.00779321463778615, 0.004543278366327286, -0.025681128725409508, 0.005110358819365501, -0.024871962144970894, 0.007076901849359274, -0.04014002904295921, 0.0177751611918211, -0.01878330484032631, -0.0034091167617589235, -0.009968682192265987, 0.007435058243572712, 0.003254910698160529, 0.011971703730523586, -0.00416190829128027, -0.012634956277906895, 0.017231294885277748, 0.03578909486532211, -0.0019051922718062997, 0.0174037404358387, -0.011958438903093338, -0.004085634369403124, -0.0108773373067379, 0.012641589157283306, -0.044464435428380966, -0.013782382942736149, -0.007494750898331404, -0.010486018843948841, -0.00995541736483574, -4.7904431994538754e-05, -0.00047381085460074246, -0.01112937368452549, 0.008403406478464603, -0.027458645403385162, 0.020733267068862915, 0.0033676635939627886, 0.0060256472788751125, 0.017019053921103477, -0.006300896871834993, -0.01590478979051113, -0.027100488543510437, 0.0424216166138649, -0.0012950000818818808, 0.011155903339385986, 0.04255426675081253, -0.03438299894332886, 0.011003355495631695, 0.019260846078395844, 0.011354879476130009, -0.040988992899656296, -0.007992190308868885, -0.023333216086030006, 0.029634112492203712, -0.01957920752465725, 0.015254803001880646, 0.002241792855784297, 0.000620140926912427, -0.024553600698709488, 0.00324330385774374, -0.0009849296184256673, -0.008648809976875782, -0.020494496449828148, -0.015347658656537533, -0.0007751761004328728, -0.008529424667358398, -0.0013671288033947349, -0.03873393312096596, 0.029342282563447952, -0.015719080343842506, 0.004785365425050259, 0.024964816868305206, -0.04669296368956566, -0.007786582224071026, 0.0034654932096600533, -0.0050771962851285934, -0.00016508763656020164, -0.007010576780885458, -0.03494013100862503, -0.012263534590601921, -0.012203842401504517, -0.002095877192914486, 0.007110064849257469, 0.0021655187010765076, 0.012867094948887825, 0.004974392242729664, -0.013231883756816387, -0.005495045334100723, 0.012727811932563782, 0.008290654048323631, -0.0041552758775651455, 0.006440179888159037, -0.0344095304608345, 0.008045250549912453, -0.009351857006549835, -0.008211063221096992, -0.005959321744740009, -0.003462177002802491, -0.05528871342539787, 0.013238515704870224, 0.013331371359527111, -0.016369067132472992, 0.002090902766212821, 0.0040292576886713505, 0.009033496491611004, 0.0033908772747963667, -0.017058849334716797, -0.16576001048088074, -0.001231991103850305, 0.009212573990225792, -0.027272934094071388, 0.0164884515106678, -0.013019642792642117, 0.002278271596878767, 0.024593396112322807, 0.0021456212271004915, -0.03080143593251705, -0.007660564035177231, -0.0024092639796435833, -0.009159514680504799, -0.03448912128806114, 0.01114927139133215, 0.004410627763718367, 0.002876856829971075, 0.03008512407541275, 0.03937065601348877, 0.038017623126506805, 0.03523196280002594, -0.03565644472837448, 0.01290688943117857, 0.024527069181203842, 0.02944840118288994, -0.02653009258210659, -0.016846608370542526, -0.0038070681039243937, -0.014856851659715176, -0.042156316339969635, 0.017682306468486786, 0.021011833101511, 0.007813111878931522, 0.0017907811561599374, 0.012668118812143803, 0.0027956084813922644, 0.025614803656935692, 0.0010520839132368565, -0.0015752242179587483, -0.006360589526593685, 0.022311806678771973, 0.03109326772391796, 0.004808579105883837, 0.0037871706299483776, 0.007501383312046528, 0.024580130353569984, 0.019048605114221573, -0.03849516436457634, -0.00018353434279561043, -0.028307607397437096, 0.04778069630265236, -0.012296698056161404, -0.009086556732654572, -0.0064169662073254585, 0.026291321963071823, -0.005083828698843718, -0.021449578925967216, 0.01311913039535284, -0.01228343229740858, 0.00018135804566554725, -0.0040624202229082584, -0.044623613357543945, 0.019221052527427673, -0.010592139326035976, -0.000934356648940593, -0.030774906277656555, -0.031146328896284103, 0.0029299170710146427, -0.02979329414665699, -0.009703380987048149, -0.0012377946404740214, -0.01188548095524311, 0.018942486494779587, 0.014299719594419003, 0.012893624603748322, 0.028679030016064644, -0.01031357329338789, -0.011136006563901901, -0.009272267110645771, -0.010684994980692863, -0.019512882456183434, 0.02150264009833336, 0.0137691181153059, -0.01537418831139803, -0.00931206252425909, -0.005737132392823696, -0.0010429642861708999, 0.012933420017361641, -0.0193802323192358, -0.026729067787528038, 0.025880103930830956, -0.008436569012701511, 0.020176135003566742, -0.015666019171476364, -0.005766978953033686, 0.012641589157283306, 0.007348835468292236, -0.02046796679496765, 0.005979219451546669, -0.024991346523165703, -0.005123624112457037, -0.004566492047160864, -0.018809834495186806, 0.005057298578321934, 0.016621103510260582, 0.022165892645716667, -0.03509931266307831, 0.005859834142029285, 0.0384155735373497, 0.0002885147405322641, -0.024341359734535217, 0.006692215800285339, -0.006145032588392496, 0.033534035086631775, -0.026848452165722847, 0.04695826396346092, 0.0018852946814149618, -0.006095288787037134, 0.029925944283604622, -0.014803791418671608, 0.030191244557499886, -0.0068978238850831985, -0.007700358983129263, 0.02806883677840233, 0.004871588200330734, -0.021396519616246223, -0.11970377713441849, -0.002863591769710183, -0.01670069247484207, 0.0009691774030216038, -0.00567080732434988, 0.0395033061504364, -0.011600282974541187, 0.011082946322858334, 0.004954494535923004, 0.043323639780282974, 0.009749808348715305, -0.00283540366217494, 0.0019267479656264186, 0.009219206869602203, -0.015825198963284492, -0.017019053921103477, -0.005236377008259296, -0.010214085690677166, -0.013265046291053295, 0.020600616931915283, -0.008031985722482204, -0.010001844726502895, -0.0001114056576625444, 0.011262023821473122, -0.008482997305691242, 0.038680873811244965, -0.009968682192265987, 0.006778438575565815, -0.01514868251979351, 0.0015694207977503538, 0.004742254037410021, -0.0038070681039243937, -0.010366633534431458, -0.030695317313075066, -0.007740154396742582, 0.009743176400661469, -0.034329939633607864, -0.025243382900953293, 0.030854497104883194, 0.005103726405650377, 0.00013721031427849084, 0.003492023330181837, -0.008211063221096992, 0.008343714289367199, 0.008774828165769577, -0.019804714247584343, -0.022524047642946243, 0.03050960600376129, -0.00891411118209362, -0.034701358526945114, -0.03050960600376129, 0.0019731756765395403, -0.02083938755095005, -0.003478758269920945, 0.012867094948887825, -0.015016032382845879, 0.02280261367559433, 0.002069347072392702, 0.0036611526738852262, -0.009464610368013382, -0.011394674889743328, 0.011653343215584755, -0.008794725872576237, 0.007594238966703415, -0.016886403784155846, 0.011394674889743328, -0.03130550682544708, -0.013729322701692581, 0.018252702429890633, -0.031225917860865593, 0.004374148789793253, 0.008005455136299133, -0.02075979672372341, 0.024580130353569984, -0.015241538174450397, 0.015599694103002548, -0.014114009216427803, 0.007978925481438637, 0.024129118770360947, 0.01837208867073059, -0.013689527288079262, -0.002896754303947091, -0.013861972838640213, -1.062239971361123e-05, 0.018637388944625854, 0.017337415367364883, 0.025084201246500015, 0.012117619626224041, 0.007169757504016161, -0.01707211509346962, -0.020481230691075325, 0.006625890266150236, 0.01270128134638071, -0.004145327024161816, 0.01967206411063671, -0.0024424265138804913, 0.024500539526343346, 0.002061056438833475, 0.02225874736905098, -0.0030227722600102425, -0.019234316423535347, -0.0015876601682975888, -0.021741410717368126, 0.02163529023528099, -0.0076804617419838905, -0.020773062482476234, -0.01359667256474495, -0.0054187714122235775, 0.02740558423101902, -0.009908989071846008, 0.015122152864933014, -0.0014807108091190457, -0.03234018385410309, -0.011454367078840733, -0.011679872870445251, -0.010718157514929771, -0.020826121792197227, -0.01819964312016964, -0.004785365425050259, 0.003067541867494583, 0.014114009216427803, 0.01211098674684763, -0.0018620808841660619, -0.0008041934343054891, 0.018425147980451584, -0.013271678239107132, -0.008927376009523869, -0.013861972838640213, -0.0021505956538021564, 0.030244305729866028, -0.005757030099630356, -0.02075979672372341, 0.008807990700006485, 0.017138440161943436, -0.0044039953500032425, -0.003956299740821123, -0.0015404034638777375, 0.008204431273043156, 0.013417594134807587, 0.014591550454497337, 0.002281587803736329, 0.003986146301031113, -0.036797236651182175, -0.027458645403385162, -0.010214085690677166, -0.021064892411231995, 0.017881281673908234, -0.007043739315122366, -0.009491140022873878, -0.02058735117316246, -0.011421204544603825, 0.02614540606737137, 0.027020899578928947, 0.0034356468822807074, -0.013430858962237835, -0.018053727224469185, -0.017085378989577293, -0.020016955211758614, 0.011938541196286678, -0.01953941211104393, -0.022112831473350525, -0.026874983683228493, 0.02748517505824566, -0.00146412942558527, 0.009637055918574333, -0.01615682616829872, -0.021701615303754807, -0.014737466350197792, -0.030350424349308014, 0.03037695586681366, 0.01514868251979351, -0.010996723547577858, -0.010054904967546463, -0.001820627599954605, 0.0213832538574934, 0.002228527795523405, 0.03252589330077171, -0.003104020841419697, -0.034621771425008774, 0.004990973509848118, -0.004198387265205383, 0.007474853191524744, 0.025137262418866158, 0.020136339589953423, -0.034038107842206955, -0.0021108004730194807, 0.023664841428399086, 0.0019433292327448726, 0.003475442063063383, -0.0012775897048413754, 0.0033941937144845724, -0.013609937392175198, -0.012807401828467846, -0.008628912270069122, -0.029156571254134178, 0.005415454972535372, 0.017814956605434418, 0.007852907292544842, -0.02569439448416233, 0.0010487677063792944, -0.010300308465957642, 0.031199388206005096, 0.0031603972893208265, -0.006002433132380247, 0.0009832715149968863, -0.026052549481391907, -0.018597595393657684, -0.020229194313287735, 0.011096211150288582, -0.013981358148157597, -0.015957850962877274, 0.0062909480184316635, -0.00485500693321228, 0.03637275472283363, 0.007236082572489977, 0.008005455136299133, -0.0115074273198843, 0.014007888734340668, -0.006612625438719988, -0.00452006421983242, -0.011580385267734528, 0.014299719594419003, 0.0017460116650909185, 0.024964816868305206, 0.0006765173166058958, -0.011878849007189274, 0.01674048788845539, 0.03528502210974693, 0.0275382362306118, -0.014007888734340668, 0.017814956605434418, -0.008356979116797447, -0.003906555939465761, 0.00268783001229167, -0.013649731874465942, -0.005975903011858463, -0.007441690657287836, -0.05414791777729988, 0.01753639057278633, 0.027432115748524666, 0.006198092829436064, 0.05863150209188461, 0.020932242274284363, 0.00535576231777668, 0.025535212829709053, -0.009617158211767673, 0.002271639183163643, 0.01778842695057392, -0.008131473325192928, -0.008927376009523869, -0.018146583810448647, 0.019685328006744385, 0.0259066354483366, 0.010194187983870506, -0.0471174418926239, 0.015679284930229187, 0.038229864090681076, -0.018345559015870094, -0.004307823721319437, -0.032870784401893616, 0.005869782995432615, 0.03682376816868782, 0.006562881637364626, 0.00943807978183031, -0.007501383312046528, -0.007110064849257469, -0.02087918296456337, 0.0139548284932971, -0.008675339631736279, -0.03719519078731537, -0.02711375430226326, 0.0008468902669847012, 0.0129533177241683, -0.016329271718859673, -0.03494013100862503, -0.0067320107482373714, 0.01615682616829872, -0.009106454439461231, 0.011434469372034073, 0.008794725872576237, -0.003727477975189686, 0.005952689331024885, 0.006052177399396896, -0.01213088445365429, -0.028732089325785637, -0.008768195286393166, 0.002614872297272086, -0.015891525894403458, 0.008363611064851284, -0.032738134264945984], "7517e8c9-e829-47be-a792-3bb7aedb40a7": [0.01944180764257908, -0.009237919934093952, 0.020965587347745895, -0.006258384324610233, 0.004601953085511923, 0.0043570599518716335, -0.017931630834937096, -0.028706936165690422, -4.6820961870253086e-05, -0.012843293137848377, 0.02457096055150032, 0.00850323960185051, -0.01814931444823742, -0.010061033070087433, 0.005809413269162178, 0.023985939100384712, 0.027727363631129265, 0.01859828643500805, 0.006758374627679586, -0.0014498023083433509, -0.04008087143301964, 0.012714044190943241, 0.0007657167152501643, -0.018720733001828194, -0.018666312098503113, -0.012122218497097492, 0.03058445267379284, -0.02133292704820633, 0.006935242097824812, 0.0003129192045889795, 0.008496437221765518, -0.003040758427232504, -0.026026716455817223, -0.00912907812744379, -0.012992950156331062, -0.010979383252561092, 0.011836509220302105, -0.0014710604446008801, 0.024203620851039886, -0.0223397109657526, 0.035836052149534225, 0.008584870956838131, -0.008401201106607914, -0.0068264007568359375, -0.0025203602854162455, 0.021156059578061104, 0.02078871987760067, -0.011435156688094139, -0.023346494883298874, 0.01462557166814804, 0.01559154037386179, 0.014816044829785824, -0.05480168014764786, 0.01474801916629076, 0.008965815417468548, 0.0001428544201189652, 0.017727553844451904, 0.008537252433598042, -0.009782127104699612, -0.012407926842570305, -0.00042941360152326524, 0.022965548560023308, 0.010537214577198029, -0.017863605171442032, -0.026026716455817223, -0.012577991932630539, -0.009510023519396782, -0.0016606827266514301, -0.022271685302257538, 0.031047027558088303, -0.0008724323706701398, 0.012292283587157726, 0.0065202838741242886, -0.004935280419886112, 0.035890474915504456, -3.7573689041892067e-05, -0.012822885066270828, 0.006516882684081793, -0.01253037340939045, 0.0037652344908565283, 0.0062719895504415035, 0.0025288634933531284, -0.0030900773126631975, 0.02267984114587307, 0.018543865531682968, 0.008734527975320816, 0.019713910296559334, 0.03352317214012146, 0.0037822409067302942, -0.006962452549487352, -0.01295893732458353, 0.0004102812963537872, 0.011312710121273994, 0.02680221199989319, 0.010877343825995922, 0.013986128382384777, -0.03496532142162323, 0.002311180578544736, -0.0023009765427559614, -0.0013596679782494903, -0.009863757528364658, 0.01929214969277382, -0.013299066573381424, -0.01195895578712225, -0.03033955954015255, 0.0007886754465289414, 0.035536739975214005, -0.006248180288821459, 0.011469169519841671, 0.0001947241835296154, -0.034638796001672745, 0.02472061850130558, 0.01994519867002964, -0.026965472847223282, 0.005306021310389042, -0.03306059539318085, 0.0015654463786631823, -0.023210443556308746, -0.00706109032034874, -0.009360366500914097, 0.008414805866777897, -0.004295836668461561, 0.014258231967687607, -0.013074581511318684, 0.014734413474798203, 0.008054268546402454, -0.014462309889495373, -0.03621699661016464, -0.007333193905651569, -0.03850266709923744, 0.03390411660075188, 0.02541448175907135, -0.015183384530246258, 0.01691124215722084, -0.021700266748666763, -0.005663157440721989, 0.01064605638384819, -0.0019506431417539716, -0.00545907998457551, -0.01884317956864834, 0.0030050447676330805, 0.0025305640883743763, 0.0033774867188185453, 0.01114264503121376, 0.0048264386132359505, 0.006768578663468361, 0.018979230895638466, 0.007428430020809174, -0.010503201745450497, -0.027917835861444473, 0.0034540158230811357, -0.012421532534062862, 0.015373856760561466, -0.0028553877491503954, -0.007203944493085146, -0.014299048110842705, 0.003965910989791155, -0.022639025002717972, 0.009612062014639378, -0.010081441141664982, -0.006275390740483999, 0.02248936891555786, 0.02436688356101513, 0.0030900773126631975, -0.010448780842125416, 0.012598400004208088, 0.049114711582660675, 0.01432625763118267, -0.012428334914147854, -0.002076491015031934, 0.006326410453766584, 0.009006631560623646, -0.017918026074767113, 0.01432625763118267, 0.0014498023083433509, -0.005309422966092825, 0.013074581511318684, -0.013217435218393803, -0.017741158604621887, -0.01919691450893879, 0.012938529253005981, 0.006700552999973297, 0.003744826652109623, 0.03801288083195686, -0.04497873783111572, 0.0019591464661061764, 0.01208820566534996, 0.01904725655913353, 0.012414730153977871, 0.0061869570054113865, 0.02406756952404976, 0.032706860452890396, -0.03575442358851433, -0.009469207376241684, -0.6160426735877991, 0.011027000844478607, -0.02127850614488125, -0.021564215421676636, 0.021496189758181572, 0.0003390666679479182, 0.014217416755855083, 0.0011436857748776674, -0.03393132612109184, 0.03550952672958374, 0.024040358141064644, -0.004326448310166597, 0.004516921006143093, -0.008027058094739914, -0.016652744263410568, -0.028815777972340584, 0.010877343825995922, -0.012863701209425926, -0.005635946989059448, 0.011999771930277348, -0.042992379516363144, 0.022054001688957214, -0.014856860041618347, 8.808824532025028e-06, -0.020951982587575912, 0.011482774280011654, 0.01499291229993105, -0.005595131777226925, 0.03393132612109184, 0.017346609383821487, -0.007891006767749786, -0.02204039692878723, 0.011421550996601582, 0.02979535236954689, 0.04772698134183884, -0.003134294180199504, 0.017931630834937096, 0.012265073135495186, 0.009095065295696259, 0.04103323444724083, -0.029305564239621162, -0.028489254415035248, 0.03243475779891014, 0.008659699000418186, 0.005959070287644863, 0.0010833126725628972, 0.010836528614163399, 0.021509794518351555, -0.012897714041173458, -0.04179512336850166, 3.6617075238609686e-05, 0.00972090382128954, -0.0011845012195408344, -0.008788948878645897, 0.02681581676006317, -0.00587063655257225, -0.008523647673428059, -0.007258365396410227, 0.005761795211583376, -0.03148239478468895, -0.022843101993203163, -0.015469093807041645, -0.0009872261434793472, 0.0017448647413402796, -0.04223049059510231, 0.00441488204523921, -0.011863719671964645, -0.011877325363457203, 0.013448723591864109, -0.007244760170578957, 0.023156022652983665, 0.0005943764699622989, -0.01472080871462822, 0.003118988359346986, 0.0230879969894886, 0.007972637191414833, 0.015782013535499573, -0.02033974975347519, -0.019754726439714432, 0.003506735898554325, 0.021618636325001717, 0.0017355112358927727, -0.020761510357260704, -0.01621737889945507, 0.025945084169507027, 0.010666463524103165, 0.00031695826328359544, 0.012081402353942394, 0.023496150970458984, 0.01904725655913353, 0.001979554072022438, 0.02258460409939289, -0.007265167776495218, -0.03725099191069603, -0.003489729482680559, 0.012503163889050484, -0.020679878070950508, -0.010707279667258263, 5.038169547333382e-05, -0.04495152458548546, -0.00850323960185051, -0.031264711171388626, 0.006799190305173397, -0.004870655480772257, 0.020067645236849785, -0.009088262915611267, 0.010353544726967812, -0.00045960009447298944, 0.015836432576179504, -0.019332965835928917, -0.028761357069015503, -0.055781252682209015, -0.004159784875810146, 0.015251410193741322, 0.01670716516673565, -0.024707013741135597, 0.03891082480549812, 0.000792076752986759, 0.003775438293814659, -0.015333041548728943, 0.02541448175907135, 0.014802439138293266, 0.0015875548124313354, 0.007237957324832678, 0.009156288579106331, 0.022162843495607376, 0.013795656152069569, -0.013278658501803875, -0.018026867881417274, -0.009156288579106331, -8.030246681300923e-05, -0.011503182351589203, 0.0193465705960989, -0.00025467202067375183, 0.023101601749658585, -0.03082934580743313, 0.003078172681853175, 0.0009157988824881613, 0.03131913021206856, -0.03099260851740837, -0.004948885645717382, -0.0063570220954716206, 0.008714119903743267, -0.03442111238837242, 0.013897694647312164, -0.021645845845341682, -0.028924619778990746, -0.007353601511567831, -0.005955669097602367, -0.007258365396410227, 0.0075644818134605885, 0.003363881492987275, -0.02472061850130558, 0.024598171934485435, -0.010258308611810207, 0.0008222632459364831, 0.016843216493725777, -0.022013187408447266, -0.0005637647700496018, -0.027727363631129265, -0.008544054813683033, 0.010605240240693092, -0.007421627640724182, -0.014965701848268509, -0.024394093081355095, -0.00677538150921464, 0.002903006039559841, 0.020407775416970253, 0.0003741425462067127, -0.03744146600365639, 0.017183346673846245, 0.00083926972001791, -0.011428354308009148, 0.01760510727763176, -0.016897637397050858, 0.03526463359594345, -0.04073391854763031, 0.007217549718916416, -0.005312824156135321, -0.017441844567656517, -0.004734603688120842, 0.012802477926015854, -0.014897676184773445, -0.018611891195178032, 0.02301996946334839, 0.000688337255269289, 0.04258422553539276, 0.009598457254469395, 0.002620698418468237, 0.026625344529747963, 0.026543712243437767, -0.004204001743346453, -0.01144195906817913, 0.013285461813211441, 0.009870560839772224, 0.03591768443584442, 0.024258041754364967, 0.01770034432411194, 0.000546333147212863, 0.03278849273920059, 0.03423064202070236, -0.005183574743568897, -0.023305678740143776, -0.031074238941073418, 0.015196990221738815, -0.023836281150579453, 0.010897751897573471, -0.020081249997019768, 0.016829611733555794, -0.017169741913676262, 0.017986051738262177, -0.004435289651155472, -0.021264901384711266, -0.013448723591864109, 0.0051155490800738335, 0.03629862889647484, 0.005064529366791248, 0.0200948566198349, 0.010333136655390263, -0.007455640472471714, 0.015741197392344475, 0.010924962349236012, 0.0461759939789772, 0.01839420758187771, -0.006884222850203514, -0.007788967341184616, 0.02919672429561615, 0.012639215216040611, -0.008020255714654922, -0.016802402213215828, 0.01974112167954445, -0.003078172681853175, 0.002047580201178789, 0.01844862848520279, 0.02367301844060421, -0.01771394908428192, 0.04391753301024437, -0.015183384530246258, 0.015877248719334602, 0.013462329283356667, -0.002334989607334137, 0.027387233451008797, 0.024108385667204857, -0.024979116395115852, 0.009237919934093952, 0.013972523622214794, 0.026543712243437767, 0.021904345601797104, 0.008448818698525429, 0.037876829504966736, 0.01616295799612999, 0.008006650023162365, -0.038176145404577255, -0.010979383252561092, -0.018475839868187904, -0.0031019817106425762, 0.005323028191924095, 0.004445493686944246, 0.02775457315146923, 0.019428201019763947, -0.008931802585721016, 0.003506735898554325, 0.0004880859632976353, -0.023101601749658585, 0.014816044829785824, -0.009339958429336548, -0.0006590010598301888, -0.04138696938753128, -0.025006327778100967, -0.0016640840331092477, 0.007979439571499825, -0.04367263987660408, -0.005897847004234791, 0.0024982518516480923, 0.04067949950695038, 0.01835339143872261, 0.0043944744393229485, 0.009986204095184803, 0.003171708434820175, -0.015945274382829666, -0.043645426630973816, -1.4781021206999867e-07, 0.021904345601797104, -0.0042924354784190655, 0.0024268245324492455, -0.01265962328761816, -0.004353658761829138, 0.0021462177392095327, -0.010054230690002441, 0.0006913133547641337, -0.002952324692159891, 0.02386349067091942, -0.004649571608752012, 0.0019591464661061764, -0.0026649152860045433, 0.02024451270699501, 0.06182195246219635, 0.014543941244482994, 0.002287371549755335, 0.001180249615572393, -0.005275409668684006, 0.010598437860608101, -0.040761128067970276, -0.013033765368163586, 0.056325457990169525, -0.009714100509881973, 0.009339958429336548, -0.003721017623320222, -0.01953704282641411, -0.010686871595680714, 0.004850247874855995, -0.009863757528364658, -0.006013491190969944, -0.004452296067029238, 0.02272065542638302, -0.010557622648775578, 0.004795826971530914, 0.0007874000002630055, 0.03738704323768616, 0.012462347745895386, 0.008816158398985863, -0.003300957614555955, -0.00882976409047842, 0.025945084169507027, 0.054638415575027466, 0.023156022652983665, -0.02736002393066883, 0.0051801735535264015, -0.032162655144929886, -0.000735955371055752, -0.02178189903497696, -0.014666387811303139, 0.0015773508930578828, -0.012741254642605782, -0.011258289217948914, 0.014108574949204922, 0.011407946236431599, 0.002445531776174903, 0.00785699300467968, 0.01317662000656128, -0.018924809992313385, -0.017482660710811615, 0.010163071565330029, -0.016530297696590424, 0.016979269683361053, 0.008271951228380203, 0.026734184473752975, 0.03387690708041191, -0.002369002439081669, 0.005846827756613493, 0.035237424075603485, 0.03164565563201904, 0.007775362115353346, -0.023115206509828568, -0.01900644041597843, 0.014707203023135662, 0.013197028078138828, 0.02453014627099037, -0.0013741235015913844, 0.020965587347745895, 0.014475914649665356, 0.018326181918382645, 0.025700191035866737, -0.030203506350517273, 0.021115245297551155, 0.014407888986170292, 0.012346703559160233, 0.000215557127376087, -0.0048264386132359505, -0.009734508581459522, -0.0025373667012900114, 0.01839420758187771, -0.011809298768639565, -0.030802134424448013, 0.006448857020586729, 0.007707336451858282, -0.015142569318413734, -0.03395853936672211, 0.012822885066270828, 0.002317983191460371, 0.008353582583367825, -0.034339483827352524, -0.005234594456851482, -0.0408971793949604, -0.00014816895418334752, -0.0153466472402215, 0.01580922305583954, -0.008401201106607914, 0.003537347773090005, 0.013346685096621513, 0.008945408277213573, -0.017986051738262177, -0.02889741025865078, 0.000633491319604218, -0.005840024910867214, -0.03425785154104233, -0.02278868295252323, -0.014870465733110905, 0.005353639833629131, 0.01141474861651659, 0.009163090959191322, -0.01203378476202488, 0.006101924926042557, -0.0029744331259280443, -3.356122397235595e-05, -0.033604804426431656, 0.006251581944525242, -0.01780918426811695, 0.013816063292324543, 0.017074504867196083, -0.003443812020123005, -0.008986223489046097, -0.012952134944498539, 0.02665255405008793, -0.011312710121273994, 0.00845562107861042, 0.015265015885233879, -0.006666539702564478, -0.001899623777717352, 0.005435270722955465, 0.004496512934565544, 0.011564405634999275, 0.008537252433598042, -0.01900644041597843, 0.013346685096621513, -0.024053964763879776, 0.010856936685740948, -0.014897676184773445, -0.012598400004208088, -0.032053813338279724, 0.021958766505122185, 0.0009753215708769858, -0.00273634260520339, -0.014162995852530003, 0.034747637808322906, -0.002874094992876053, 0.020421380177140236, 0.036733996123075485, 0.023400915786623955, 0.011265091598033905, 0.00272273737937212, 0.01874794252216816, 0.010639253072440624, -0.01989077776670456, 0.0064760674722492695, -0.016747981309890747, 0.010027020238339901, 0.013598380610346794, -0.013346685096621513, 0.013149409554898739, -0.0159180648624897, -0.033849697560071945, -0.019605068489909172, 0.004156383685767651, 0.01640785112977028, 0.003836661810055375, -0.009856955148279667, -0.05937302112579346, -0.03297896310687065, 0.0013528653653338552, -0.02282949723303318, -0.006231173872947693, -0.020802324637770653, 0.005999885965138674, 0.002603692002594471, 0.0019251334015280008, 0.004537328612059355, 0.00991817843168974, -0.017346609383821487, -0.026448477059602737, 0.005846827756613493, 0.018639100715517998, -0.015387462452054024, 0.013319474644958973, 0.030013034120202065, -0.016992874443531036, -0.018625495955348015, -0.024979116395115852, -0.012401124462485313, -0.0041733901016414165, -0.005183574743568897, 0.04348216578364372, 0.017577897757291794, 0.0042074029333889484, 0.039019666612148285, 0.006217568647116423, 0.006350219249725342, -0.020652668550610542, -0.005778801627457142, 0.02736002393066883, -0.01258479431271553, 0.00338769075460732, -0.01138753816485405, -0.020203696563839912, 0.02172747813165188, 0.004615558311343193, -0.00554411206394434, -0.0012491259258240461, 0.024380488321185112, 0.03417621925473213, 0.010741292499005795, 0.017428239807486534, -0.03512858226895332, -0.041305337101221085, -0.009877363219857216, -0.002748247003182769, 0.0033366712741553783, 0.014013338834047318, -0.005887642968446016, -0.00630260119214654, 0.04993102326989174, 0.0022669637110084295, 0.026992684230208397, 0.01432625763118267, 0.02610834687948227, 0.00368700479157269, -0.005802610889077187, 0.006765177473425865, 0.01945541240274906, -0.042502593249082565, -0.024693407118320465, -0.037931252270936966, 0.007999847643077374, -0.004503315780311823, -0.0028060690965503454, 0.008197123184800148, -0.006554297171533108, -0.014299048110842705, -0.027672942727804184, 0.014530335552990437, -0.02178189903497696, -0.036679573357105255, 0.01725137233734131, 0.005527105648070574, -0.017333002761006355, -0.014938491396605968, -0.03251638635993004, -0.001044197822920978, 0.005248199682682753, 0.016788795590400696, 0.018176525831222534, 0.0064386529847979546, -0.02402675338089466, 0.0016020103357732296, -0.004343454726040363, 0.004431888461112976, 0.041903965175151825, 0.010176677256822586, 0.05616219714283943, 0.002675119088962674, 0.008448818698525429, -0.005792406853288412, -0.007925019599497318, 0.0001229781046276912, 0.0138296689838171, 0.014816044829785824, 0.016054116189479828, -0.006210766267031431, 0.0014421493979170918, -0.014816044829785824, -0.027196761220693588, -0.02606753073632717, -0.04342774674296379, 0.014816044829785824, 0.017224162817001343, -0.0031240901444107294, -0.011707260273396969, 0.017537081614136696, -0.03009466640651226, 0.02378186024725437, 0.01021749246865511, -0.004867254290729761, 0.012761661782860756, 0.0030815741047263145, -0.007938624359667301, 0.02322404831647873, 0.01859828643500805, 0.021128850057721138, -0.010707279667258263, -0.003952305763959885, -0.005527105648070574, 0.007319588679820299, -0.02979535236954689, 0.015278620645403862, 0.00992498081177473, 0.027047105133533478, -0.015333041548728943, -0.01696566306054592, 0.00791141390800476, -0.008911395445466042, -0.022298894822597504, -0.021945159882307053, -0.0031291921623051167, 0.028189940378069878, -0.005040720570832491, -0.007727744057774544, 0.004221008159220219, 0.007033879868686199, -0.027577705681324005, 0.017945237457752228, -0.008489634841680527, -0.0005663157789967954, -0.02028532885015011, 0.016829611733555794, 0.022516578435897827, 0.0033128622453659773, -0.006754973437637091, -0.015931669622659683, -0.002748247003182769, 0.030502820387482643, -0.028516463935375214, 0.005887642968446016, 0.019414596259593964, -0.015101753175258636, -0.039509452879428864, -0.007149524055421352, 0.0022703649010509253, 0.02715594507753849, 0.007047485094517469, -0.022652629762887955, 0.025741007179021835, 0.04590388759970665, -0.023604992777109146, 0.014380678534507751, -0.018094893544912338, 0.020462196320295334, -0.03368643298745155, 0.011877325363457203, -0.005513500422239304, -0.0026819217018783092, 0.030312348157167435, -0.026026716455817223, -0.006040701176971197, -0.017224162817001343, -0.0027839606627821922, -0.0008354432648047805, -0.01944180764257908, -0.01595887914299965, -0.0025713795330375433, -0.0035441501531749964, 0.026829421520233154, -0.014924885705113411, 0.006673342548310757, 0.021115245297551155, -0.029223933815956116, 0.020924771204590797, 0.021809108555316925, 0.015727592632174492, 0.03515579551458359, -0.011605221778154373, 0.01315621193498373, 0.013312672264873981, -0.02859809622168541, -0.014666387811303139, -0.02665255405008793, 0.010074637830257416, -0.02829878218472004, -0.00734679913148284, -0.03208102285861969, 0.01057122740894556, 0.0006670791190117598, -0.004646169953048229, 0.0013188524171710014, 0.0016657846281304955, -0.016230983659625053, 0.02114245481789112, 0.004074752330780029, 0.00940118171274662, -0.01785000041127205, 0.014162995852530003, 0.00545907998457551, 0.024434909224510193, -0.024230832234025, -0.0009804235305637121, -0.024734223261475563, 0.025482509285211563, -0.0003377911925781518, -0.007850190624594688, 0.007258365396410227, -0.006561099551618099, -0.02919672429561615, -0.023536967113614082, 0.0014685094356536865, 0.015945274382829666, -0.008788948878645897, 0.016897637397050858, -0.009095065295696259, 0.04038018360733986, -0.020747903734445572, 0.015741197392344475, -0.028924619778990746, 0.010979383252561092, 0.012122218497097492, 0.032842911779880524, -0.003040758427232504, -0.020054040476679802, -0.016081327572464943, -0.03678841516375542, 0.012448742985725403, 0.013217435218393803, 0.01676158607006073, 0.02127850614488125, -0.004367263987660408, -0.008319569751620293, -0.016435060650110245, -0.008993025869131088, 0.030502820387482643, 0.02198597602546215, -0.012353506870567799, 0.0016912943683564663, -0.025999505072832108, -0.016598323360085487, 0.030257927253842354, -0.031564027070999146, -0.009754916653037071, -0.01228548027575016, -0.016026906669139862, -0.0027210365515202284, -0.03741425275802612, -0.015482698567211628, 0.01770034432411194, -0.031101448461413383, 0.0027652534190565348, -0.00234349281527102, -0.002462538192048669, 0.002518659457564354, 0.0212376918643713, 0.004367263987660408, -0.024040358141064644, 0.017618712037801743, -0.026448477059602737, 0.0014353467850014567, 0.021074429154396057, 0.0035815644077956676, -0.010088243521749973, -0.0163126140832901, 0.015469093807041645, -0.022462157532572746, 0.025550534948706627, -0.015632355585694313, -0.03635305166244507, -0.026434870436787605, 0.031101448461413383, 0.006836604792624712, -0.009387576952576637, 0.014965701848268509, 0.00828555691987276, -0.009380773641169071, 0.010856936685740948, -0.02198597602546215, -0.017128925770521164, -0.0379856713116169, 0.031074238941073418, 0.01750987023115158, -0.006135937757790089, 0.006717559415847063, -0.012761661782860756, 0.03148239478468895, -0.031210290268063545, -0.011680049821734428, 0.19254055619239807, 0.004455697722733021, 0.00736040435731411, 0.04416242614388466, -0.006254983134567738, 0.023387311026453972, 0.029278354719281197, 0.012788872234523296, -0.022938339039683342, 0.01374803762882948, -0.019305754452943802, -0.013564367778599262, -0.008346780203282833, 0.003823056584224105, -0.0051155490800738335, 0.012441940605640411, -0.0025135576725006104, -0.03760472685098648, -0.01640785112977028, 0.018815968185663223, -0.00547268521040678, -0.004914872348308563, -0.030774924904108047, -0.00641484372317791, 0.024258041754364967, -0.014475914649665356, -0.013367092236876488, 0.009809337556362152, 0.034992530941963196, -0.012101810425519943, -0.020911166444420815, -0.0032737471628934145, -0.009652877226471901, -0.0026700173038989305, -0.035291846841573715, 0.00611552968621254, 0.013999734073877335, 0.0022210462484508753, 0.026326030492782593, -0.01880236342549324, 0.010251505300402641, -0.013761643320322037, 0.00967328529804945, -0.02372743934392929, 0.0038162539713084698, 0.015931669622659683, 0.0055305068381130695, -0.02063906379044056, 0.00690122926607728, 0.038176145404577255, -0.0005433569895103574, -0.0011930045438930392, 0.016299009323120117, 0.013122199103236198, -0.014013338834047318, -0.015441883355379105, -0.012224256992340088, 0.0011139244306832552, -0.0005412311875261366, 0.026434870436787605, -0.006425047758966684, 0.008659699000418186, 0.002309479983523488, -0.006710756570100784, -0.019605068489909172, 0.02476143278181553, -0.031155869364738464, 0.007353601511567831, -0.0014123880537226796, -0.024407699704170227, -0.0018486042972654104, -0.005945465061813593, 0.012122218497097492, 0.008598475717008114, -0.02476143278181553, -0.011224276386201382, 0.015537119470536709, 0.017537081614136696, 0.01612214185297489, 0.02740084007382393, -0.024203620851039886, -0.03161844611167908, -0.003727820236235857, -0.016938453540205956, -0.02835320122539997, -0.013890892267227173, 0.009387576952576637, -0.007339996285736561, -0.0004345155321061611, -0.011475971899926662, -0.01116305310279131, -0.009938586503267288, 0.008700515143573284, -0.011237881146371365, -0.00243702856823802, 0.018421418964862823, -0.01910167746245861, 0.010795713402330875, -0.003768635680899024, -0.00791141390800476, -0.02745525911450386, -0.0015152773121371865, -0.003346875077113509, 0.014843255281448364, -0.006561099551618099, -0.02591787464916706, -0.019482621923089027, -0.010639253072440624, 0.008516844362020493, -0.032951753586530685, 0.00030420339317061007, -0.00585703132674098, 0.023115206509828568, -0.016924848780035973, 0.037577517330646515, -0.023713834583759308, -0.012918121181428432, -0.012945331633090973, -0.007135918829590082, 0.011095027439296246, -0.00603049760684371, -0.027414444833993912, 0.004697189666330814, 0.017727553844451904, -0.014816044829785824, -0.006183555815368891, -0.022108422592282295, 0.01206099521368742, 0.001321403426118195, -0.001923432806506753, 0.032407548278570175, -0.03687004745006561, 0.0016266697784885764, -0.012836490757763386, -0.028462043032050133, -0.017237767577171326, -0.015401067212224007, -0.005561118479818106, -0.021074429154396057, 0.0008520245901308954, 0.008612081408500671, 0.01089094951748848, -0.006527086719870567, 0.005452277138829231, 0.012564387172460556, -0.030557241290807724, 0.003459117840975523, 0.0075848898850381374, 0.006394436117261648, -0.019373780116438866, 0.005809413269162178, -0.004595150705426931, -0.0023536966182291508, 0.0015782013069838285, 0.007578087039291859, -0.04740045964717865, -0.012516768649220467, -0.023006364703178406, 0.0115439984947443, -0.017047295346856117, -0.02073429897427559, 0.020026829093694687, 0.0015025223838165402, -0.005795808043330908, -0.010999790392816067, -0.0027125333435833454, -0.17098994553089142, 0.0019115282921120524, 0.017822790890932083, -0.027074314653873444, 0.02157782018184662, 0.020965587347745895, 0.03088376671075821, 0.012448742985725403, -0.0033706841059029102, 0.00885697454214096, -0.018870389088988304, -0.017142530530691147, -0.01114264503121376, -0.021060824394226074, -0.02436688356101513, -0.038176145404577255, 0.012503163889050484, 0.030720504000782967, 0.04111486300826073, 0.02522400952875614, 0.042693063616752625, -0.030693294480443, 0.01925133354961872, 0.024679802358150482, -0.002809470286592841, -0.010734489187598228, 0.000277205603197217, -0.018094893544912338, 0.010081441141664982, -0.0246253814548254, 0.005622342228889465, 0.011598418466746807, -0.00353054516017437, -0.03161844611167908, -0.006533889099955559, -0.003292454406619072, -0.019564254209399223, -0.008135899901390076, 0.009795731864869595, -0.0019217320950701833, 0.008115491829812527, 0.030203506350517273, 0.009605259634554386, -0.015373856760561466, -0.00942839216440916, 0.024856669828295708, 0.019958803430199623, -0.010836528614163399, -0.02248936891555786, -0.022067606449127197, 0.012244665063917637, -0.023591388016939163, -0.0027737568598240614, 0.023455336689949036, 0.014394284226000309, -0.011033803224563599, 0.009557641111314297, 0.023904306814074516, -0.0025424687191843987, 0.004833241458982229, 0.011836509220302105, -0.033006176352500916, -0.005037318915128708, 0.015605145134031773, -0.02750968001782894, -0.008040663786232471, -0.02159142680466175, -0.008081478998064995, -0.013945313170552254, -0.006421646568924189, -0.014924885705113411, -0.01355076301842928, -0.001858808216638863, -0.012564387172460556, 0.0032584413420408964, 0.034285061061382294, -0.011006593704223633, 0.008632488548755646, -0.0009226014954037964, -0.012101810425519943, -0.009843350388109684, 0.03164565563201904, -0.01625819317996502, -0.006499876268208027, 0.014094970189034939, -0.017469055950641632, -0.014081364497542381, 0.0015850038034841418, -0.005646151024848223, -0.05670640245079994, 0.02386349067091942, -0.02794504724442959, -0.011469169519841671, -0.005118950270116329, 0.007129115983843803, 0.022353315725922585, -0.018162919208407402, -0.01914249360561371, 0.021768292412161827, -0.03417621925473213, -0.005214186385273933, 0.001858808216638863, -0.030965397134423256, 0.013543959707021713, 0.04462500289082527, 0.00511214742437005, -0.021373743191361427, 0.007489653304219246, 0.025945084169507027, -0.001804387429729104, -0.02089756168425083, -0.0012049090582877398, -0.0031223895493894815, 0.003853668225929141, -0.009530430659651756, 0.042257700115442276, -0.003079873276874423, -0.001259329728782177, 0.004880859516561031, 0.005846827756613493, 0.021523399278521538, -0.02516958862543106, -0.014611966907978058, -0.001969350269064307, 0.002304377965629101, 0.017645923420786858, -0.12614725530147552, 0.026475686579942703, -0.00737400958314538, 0.006095122080296278, -0.012299085967242718, 0.002943821484223008, -0.028706936165690422, 0.010639253072440624, -0.010904554277658463, 0.05221669375896454, 0.006254983134567738, -0.0010714081581681967, -0.006125733722001314, 0.011564405634999275, -0.019958803430199623, -0.010394359938800335, -0.016992874443531036, -0.023700229823589325, -0.0025203602854162455, 0.0280538871884346, -0.008224333636462688, -0.004186995327472687, 0.027672942727804184, 0.001099468907341361, -0.022965548560023308, 0.0227750763297081, -0.021428164094686508, -0.006754973437637091, 0.0027669542469084263, -0.007067892700433731, -0.009659680537879467, -0.007979439571499825, 0.002350295428186655, -0.01994519867002964, 0.029223933815956116, 0.005030516535043716, -0.004309441894292831, -0.008047466166317463, 0.03550952672958374, -0.014911280944943428, 0.018217340111732483, -0.008408003486692905, -0.004761814139783382, 0.003918292932212353, 0.025142379105091095, 0.00032652440131641924, -0.017387423664331436, 0.022639025002717972, -0.007088300306349993, -0.011795694008469582, -0.011373933404684067, 0.013040567748248577, -0.02228529006242752, -0.016149353235960007, 0.008020255714654922, -0.01086373906582594, -0.0025458699092268944, -0.006697151344269514, -0.00035756122088059783, 0.024244436994194984, -0.00701347179710865, 0.007353601511567831, 0.0018009861232712865, 0.036978889256715775, 0.02829878218472004, 0.031019818037748337, -0.03118308074772358, 0.00671415776014328, 0.01940099149942398, 0.004084956366568804, -0.004731202498078346, 0.0010756597621366382, -0.018040472641587257, 0.03801288083195686, -0.021210480481386185, 0.03621699661016464, 0.020203696563839912, -0.009931784123182297, 0.005275409668684006, 0.005601934157311916, -0.007129115983843803, -0.01741463504731655, -0.028325991705060005, -0.00962566677480936, -0.00734679913148284, -0.00944880023598671, 0.005806012079119682, -0.00262920162640512, 0.02655731700360775, -0.03423064202070236, 0.011639234609901905, 0.0334143303334713, 0.025441693142056465, -0.005533908493816853, 0.009163090959191322, 0.015795618295669556, -0.014652782119810581, -0.008652896620333195, -0.019224124029278755, 0.01136032771319151, -0.03058445267379284, 0.004200600553303957, -0.03229870647192001, 0.02949603833258152, -0.006299200002104044, -0.016802402213215828, 0.03735983371734619, 0.006700552999973297, 0.0012950433883816004, 0.003474423661828041, -0.005608737003058195, 0.016326220706105232, -0.006686947774142027, 0.0235233623534441, -0.026584528386592865, -0.015128963626921177, 0.006217568647116423, -0.009251524694263935, -0.0006466713966801763, -0.00207138922996819, 0.023264862596988678, 0.04908750206232071, 0.026543712243437767, 0.008353582583367825, 0.01472080871462822, 0.009843350388109684, -0.003948904573917389, -0.014271837659180164, 0.004186995327472687, 0.044488947838544846, -0.004455697722733021, -0.02760491706430912, 0.02193155512213707, 0.0009481112356297672, -0.008714119903743267, 0.01700647920370102, 0.010700476355850697, -0.00367339956574142, 0.012972542084753513, -0.009578049182891846, 0.010129058733582497, -0.013047371059656143, -0.017577897757291794, -0.004091758746653795, 0.003489729482680559, -0.003969312179833651, -0.009754916653037071, -0.007741349283605814, 0.009088262915611267, -0.010088243521749973, -0.0020866950508207083, 7.084261596901342e-05, 0.017523476853966713, 0.009115472435951233, 0.005823018494993448, -0.02058464288711548, -0.017727553844451904, -0.01640785112977028, -0.0023792064748704433, -0.018244551494717598, 0.022162843495607376, -0.023251257836818695, 0.027468865737318993, -0.0023468942381441593, 0.0067413682118058205, -0.006758374627679586, -0.00877534318715334, -0.01621737889945507, -0.012503163889050484, 0.014843255281448364, 0.015074542723596096, -0.041006021201610565, 0.010503201745450497, -0.007142721209675074, 0.009394379332661629, 0.023196836933493614, 0.007115510758012533, -0.012346703559160233, -0.04794466495513916, 0.011972561478614807, 0.0017669731751084328, 0.04236654192209244, 0.019332965835928917, 0.009224314242601395, -0.012714044190943241, 0.004091758746653795, 0.03401295840740204, 0.016475876793265343, 0.022870313376188278, 0.014911280944943428, 0.024053964763879776, -0.008135899901390076, 0.008333174511790276, -0.004350257571786642, -0.015795618295669556, 0.011836509220302105, -0.006666539702564478, 0.016598323360085487, -0.01116305310279131, 0.009802534244954586, 0.021006403490900993, 0.0053468369878828526, 0.007088300306349993, 0.014571151696145535, -0.025741007179021835, -0.0072991810739040375, 0.0018656107131391764, 0.006544093135744333, 0.015210594981908798, -0.017128925770521164, -0.04693788290023804, 0.010401162318885326, 0.005581526551395655, 0.0023298875894397497, -0.011278697289526463, 0.0020152677316218615, -0.010095045901834965, 0.00249995244666934, -0.018026867881417274, 0.008836566470563412, -0.022312501445412636, 0.006452258210629225, -0.01695205830037594, 0.02631242386996746, 0.026434870436787605, -0.01057122740894556, 0.015441883355379105, 0.008993025869131088, 0.021754687651991844, -0.0028536871541291475, -0.004819636233150959, 0.005156364291906357, -0.012183441780507565, 0.008435213938355446, -0.034094590693712234, -0.006564500741660595, 0.006101924926042557, -0.04024413228034973, 0.028706936165690422, 0.006054306402802467, -0.007442035246640444, 0.06258384138345718, -0.00885017216205597, -0.013741235248744488, 0.026530107483267784, -0.023849885910749435, 0.021224085241556168, 0.027713758870959282, -0.022598208859562874, -0.027087919414043427, -0.04182233288884163, 0.004908069968223572, 0.008931802585721016, -0.0019999619107693434, -0.03466600552201271, 0.0016343226889148355, 0.027074314653873444, -0.007203944493085146, -3.342836134834215e-05, -0.02749607525765896, 0.0010161370737478137, 0.014734413474798203, -0.025387272238731384, -0.002076491015031934, -0.008054268546402454, -0.010884146206080914, -0.007081497926265001, 0.022570999339222908, -0.0020628860220313072, -0.030067455023527145, -0.03575442358851433, -0.010006612166762352, -0.041903965175151825, -0.03485647961497307, -0.029632089659571648, 0.00942839216440916, 0.002753349021077156, -0.019183307886123657, 0.006340015213936567, 0.025727402418851852, 0.007387614343315363, -0.009285537526011467, 0.01994519867002964, -0.036625154316425323, -0.03393132612109184, -0.016652744263410568, -0.0043944744393229485, -0.006771979853510857, -0.00701347179710865, -0.02616276778280735], "eeeefeaf-d448-4ed2-967b-ac85b7dc012e": [0.0033473491203039885, -0.01633021980524063, 0.009811971336603165, -0.012766634114086628, 0.002771293744444847, 0.007659980095922947, -0.02041277475655079, -0.019250284880399704, -0.005798611789941788, -0.015776652842760086, 0.006144591141492128, -0.0007723986636847258, 0.009728936478495598, -0.019111892208456993, 0.02497970126569271, 0.015970401465892792, 0.02226722426712513, 0.018682878464460373, -0.0011979531263932586, 0.012067755684256554, -0.013576225377619267, 0.0216998178511858, -0.009964201599359512, -0.019831528887152672, -0.02504889667034149, -0.021533748134970665, 0.039580024778842926, -0.021173929795622826, -0.0029096852522343397, 0.019360998645424843, -0.00696110213175416, -0.0008351074066013098, -0.0424032136797905, -0.020468130707740784, -0.02041277475655079, 0.004715696908533573, -0.011583385057747364, 0.0012040077708661556, 0.01193628367036581, -0.02623906545341015, 0.027470750734210014, 0.00898854061961174, -0.0009090604144148529, 0.0014487880980595946, -0.008455732837319374, 0.014780232682824135, 0.011832489632070065, -0.012517528608441353, -0.03971841558814049, -0.005698278080672026, 0.014780232682824135, 0.0020481969695538282, -0.048879947513341904, 0.006186108570545912, 0.011694097891449928, 0.004127532243728638, -0.005656760651618242, 0.004293602425605059, -0.010337859392166138, 0.0053557585924863815, -0.0036673799622803926, 0.015347639098763466, -0.010317101143300533, -0.014171309769153595, -0.031248845160007477, -0.02116009034216404, 0.014904784969985485, 0.0029148750472813845, 0.002202157862484455, 0.022779272869229317, 0.02967117913067341, 0.016219506040215492, -0.0008748949621804059, 0.0032660439610481262, 0.030584564432501793, -0.0010163140250369906, -0.02240561507642269, -0.004169049672782421, -0.008656400255858898, 0.001854448695667088, 0.026571204885840416, 0.015167729929089546, -0.031331878155469894, 0.009445233270525932, 0.01797708123922348, 0.0010249634506180882, 0.014323540031909943, 0.027290841564536095, 0.017091374844312668, -0.013825329951941967, 0.0137422950938344, 0.010787632316350937, 0.013216407038271427, 0.0181569904088974, 0.006026958115398884, 0.0018060116562992334, -0.012531368061900139, 0.019720816984772682, -0.006992240436375141, 0.0029823409859091043, -0.02012215182185173, -0.017146730795502663, 0.016496289521455765, -0.009895006194710732, -0.03670147806406021, 0.012123112566769123, 0.01199164055287838, -0.007743015419691801, 0.006421374622732401, -0.010725356638431549, -0.005926624406129122, 0.021464550867676735, 0.022530168294906616, -0.04295678064227104, 0.005943923257291317, -0.02048197016119957, -0.007819131016731262, -0.03241133317351341, 0.0018457992700859904, -0.016247184947133064, 0.006618582643568516, -0.008677159436047077, 0.022045796737074852, -0.032079193741083145, 0.02019134722650051, 0.015057016164064407, -0.01626102440059185, -0.04481123015284538, -0.007251724600791931, -0.04049341008067131, 0.05106653645634651, 0.021921243518590927, -0.0034857408609241247, 0.003214147174730897, -0.0315256267786026, 0.013202567584812641, -0.008351938799023628, -0.026751114055514336, -0.012586724944412708, -0.019776172935962677, 0.026432814076542854, 0.00608577486127615, 0.0005142116569913924, 0.0010699407430365682, -0.021713657304644585, 0.028730114921927452, 0.015748973935842514, -0.0008671104442328215, -0.013091853819787502, -0.02744307368993759, -0.005646381061524153, -0.019527068361639977, -0.010815311223268509, 0.0024132051039487123, -0.012358378618955612, -0.006324500311166048, -0.004805651493370533, -0.018738236278295517, 0.0023336298763751984, 0.002798971952870488, -0.0021865887101739645, 0.011528028175234795, 0.00691612483933568, 0.010164869949221611, 0.005006319377571344, 0.015112373046576977, 0.025685498490929604, -0.00023396845790557563, -0.026031477376818657, -0.007964441552758217, 0.017215926200151443, 0.014240505173802376, -0.022101152688264847, 0.00868407916277647, 0.006193028297275305, 0.009659740142524242, -0.01377689279615879, -0.018253864720463753, -0.011784052476286888, -0.0002514836669433862, 0.014558806084096432, 0.004324740264564753, 0.0001601235126145184, 0.0476897768676281, -0.020094474777579308, -0.014711037278175354, 0.03562202304601669, -0.015264604240655899, 0.026681918650865555, 0.018752073869109154, 0.024315420538187027, 0.012849668972194195, -0.02612835168838501, -0.01027558371424675, -0.5889950394630432, 0.002110473345965147, -0.009881166741251945, -0.014323540031909943, 0.014005239121615887, 0.00527964299544692, 0.01626102440059185, 0.010697677731513977, -0.035262204706668854, 0.038223784416913986, -0.004646501038223505, 0.011638741008937359, -0.0019426733488216996, -0.011548786424100399, 0.004549626726657152, -0.022820791229605675, -0.00020347903773654252, -0.010981380939483643, -0.0119708813726902, -0.0035532067995518446, -0.02023286558687687, 0.040548767894506454, -0.009860408492386341, -0.0015024148160591722, 0.0014816561015322804, 0.002759184455499053, 0.01538915652781725, 0.008801711723208427, 0.016344059258699417, 0.009811971336603165, 0.01295346301048994, 0.013340959325432777, -0.013915284536778927, 0.015970401465892792, 0.03324168547987938, -0.02158910408616066, 0.016676198691129684, 0.015541386790573597, -0.0006071935640648007, 0.03163634240627289, -0.03783629089593887, -0.03221758455038071, 0.049765653908252716, -0.015707457438111305, 0.013908364810049534, 0.005165469832718372, 0.001837149728089571, 0.0050824349746108055, 0.007653060834854841, -0.05101117864251137, -0.014115952886641026, 0.001694433274678886, 0.011396556161344051, -0.0010759953875094652, 0.0057743932120501995, 0.004895606078207493, -0.01073919516056776, 0.014711037278175354, -0.001211792230606079, -0.017105214297771454, -0.0424032136797905, -0.012711277231574059, -0.011195887811481953, -0.008123592473566532, -0.018129311501979828, 0.021630622446537018, -0.019319480285048485, -0.017423514276742935, 0.019139571115374565, 0.009313761256635189, -0.005272723734378815, 0.004646501038223505, 0.0057813129387795925, -0.019790012389421463, 0.03376757353544235, 0.0263359397649765, 0.018931983038783073, -0.0137422950938344, 0.008123592473566532, -0.0050824349746108055, 0.012040077708661556, -0.009611302986741066, -0.016039596870541573, -0.022779272869229317, 0.013984480872750282, 0.014095193706452847, 0.013638501055538654, 0.001359698362648487, 0.01682843081653118, 0.003868047846481204, 0.00033365373383276165, 0.027899766340851784, -0.0025342979934066534, -0.05076207220554352, -0.007715336978435516, 0.017700297757983208, 0.0038057714700698853, 0.008268903940916061, -0.006109993439167738, -0.0420987531542778, -0.03606487438082695, -0.02502121776342392, -0.009708177298307419, 0.010497010312974453, 0.0137422950938344, 0.000835972314234823, 0.0038126911967992783, 0.005968141835182905, 0.01718824915587902, -0.014614162966609001, -0.03786396607756615, -0.03116581030189991, -0.0002847841533366591, -0.005625622346997261, 0.015375317074358463, -0.027332359924912453, 0.04107465595006943, -0.0038645879831165075, -0.00033365373383276165, -0.022294901311397552, 0.01858600415289402, 0.02538103610277176, 0.03744879364967346, 0.0063660177402198315, 0.0017541147535666823, 0.03116581030189991, 0.03199616074562073, 0.02805199660360813, -0.023775693029165268, -0.01361774280667305, -0.017395835369825363, 0.006774273235350847, 0.04550318792462349, 0.004366258159279823, 0.03249436989426613, -0.02319444715976715, 0.007355518639087677, -0.017036017030477524, 0.020108312368392944, -0.05076207220554352, -0.02068955823779106, -0.009196127764880657, 0.003650080878287554, -0.02583772875368595, -0.004086014814674854, -0.0353175587952137, -0.036867547780275345, 0.014960141852498055, 0.0210493765771389, -0.0007295837276615202, 0.004566926043480635, -0.007992120459675789, -0.023208286613225937, 0.021381516009569168, 0.003961462061852217, -0.018350739032030106, -0.004836789797991514, -0.01743735373020172, -0.003331779967993498, -0.027027897536754608, -0.004937123507261276, 0.015001659281551838, -0.011507268995046616, -0.008538767695426941, -0.039801452308893204, -0.005597943905740976, -0.0019703516736626625, 0.014877106994390488, -0.011493430472910404, -0.031968481838703156, 0.014821750111877918, -0.019070375710725784, -0.014503449201583862, 0.016039596870541573, -0.017921725288033485, 0.04027198255062103, -0.012974221259355545, 0.012178469449281693, -0.014337379485368729, -0.016676198691129684, -0.014088273979723454, -0.00914769060909748, -0.026612723246216774, -0.006248385179787874, 0.04403623566031456, 0.012642080895602703, 0.027360036969184875, 0.014053676277399063, -0.022488649934530258, 0.01484942901879549, 0.014461931772530079, 0.0035341777838766575, -0.019277963787317276, 0.008891666308045387, 0.002222916577011347, 0.012102353386580944, -0.005705197807401419, 0.0011642201570793986, 0.008884746581315994, 0.04292910173535347, 0.03116581030189991, -0.003975301515311003, -0.024606043472886086, -0.025422554463148117, 0.03155330568552017, -0.020606523379683495, 0.020537327975034714, 0.0022765432950109243, 0.0031311120837926865, -0.004857548512518406, 0.01245525199919939, -0.01601191982626915, -0.03506845608353615, -0.01768645830452442, 0.02084178850054741, 0.04052108898758888, -0.000642656406853348, 0.013244085013866425, 0.02933903969824314, 0.00023807695833966136, -0.003094784216955304, 0.022530168294906616, 0.02255784533917904, 0.03877735137939453, -0.022848468273878098, -0.02834261953830719, 0.01872439682483673, -0.023429714143276215, -0.0038715077098459005, -0.020606523379683495, 0.004954422824084759, -0.005753634497523308, 0.011272003874182701, 0.014544966630637646, 0.006269143894314766, -0.01847529038786888, 0.0363139808177948, -0.005072055384516716, 0.01819850690662861, 0.019457872956991196, 0.01520924735814333, 0.0023336298763751984, 0.0010604263516142964, -0.023471230641007423, 0.0010344779584556818, 0.009521348401904106, 0.02906225621700287, 0.008483410812914371, -0.017921725288033485, 0.019416354596614838, 0.007604623679071665, 0.009486750699579716, -0.02766449935734272, -0.0005725956289097667, -0.01994224265217781, -0.015167729929089546, 0.005006319377571344, 0.00242185452952981, 0.02197660133242607, 0.018918145447969437, -0.0031207327265292406, 0.006473271641880274, -0.009549027308821678, -0.03423810377717018, 0.029006898403167725, -0.023706497624516487, 0.004265923984348774, -0.03277115151286125, -0.02491050399839878, 0.007805291563272476, 0.023443553596735, -0.02780289202928543, -0.01851680874824524, -0.017091374844312668, 0.027636820450425148, 0.017077535390853882, 0.018184669315814972, 0.01347243133932352, 0.008040557615458965, -0.01509853359311819, -0.023831048980355263, -0.01127892266958952, 0.01673155650496483, 0.007092574145644903, -0.013361718505620956, -0.0042105671018362045, -0.005916244816035032, -0.010033397935330868, 0.011957041919231415, -0.004387016873806715, -0.013174889609217644, 0.028730114921927452, -0.021824369207024574, 0.014600323513150215, 0.007646141108125448, 0.013396316207945347, 0.049018338322639465, -0.012130032293498516, -0.015887366607785225, -0.0032210666686296463, 0.005127412267029285, 0.01765877939760685, 0.0021589105017483234, -0.00178525282535702, 0.03213455155491829, -0.0022488650865852833, -4.665313826990314e-05, 0.0068123312667012215, -0.03019706718623638, -0.004414694849401712, 0.018613683059811592, -0.015638262033462524, -0.013292522169649601, 0.026100672781467438, 0.014628002420067787, -0.03362918272614479, 0.0134931905195117, -0.011403475888073444, 0.007265564054250717, 0.006065016146749258, -0.0036604602355509996, 0.005476851481944323, -0.02762298285961151, 0.030833669006824493, 0.037476472556591034, 0.033435434103012085, -0.016994500532746315, 0.01912573166191578, -0.029228325933218002, 0.006161889992654324, -0.013237165287137032, -0.007307081483304501, -0.011071335524320602, 0.03066759929060936, -0.0021969680674374104, 0.014987820759415627, 0.0010189088061451912, 0.004106773529201746, 0.014835589565336704, -0.0008969511836767197, -0.02466139942407608, -0.03689522668719292, -0.007687658537179232, -0.029975641518831253, -0.0005531343049369752, 0.0013285602908581495, 0.01608111523091793, 0.02755378559231758, 0.016496289521455765, 0.0016563755925744772, 0.01644093357026577, 0.022419454529881477, 0.005293482448905706, -0.0007321785669773817, -0.015845848247408867, 0.011500350199639797, 0.01352778822183609, 0.028314940631389618, 0.0008424594416283071, 0.015818171203136444, 0.021436873823404312, -0.0035289882216602564, 0.03852824866771698, -0.01836457848548889, 0.0022419453598558903, 0.010912184603512287, 0.016357898712158203, 0.01844761334359646, -0.01768645830452442, -0.015486030839383602, 0.010856828652322292, 0.007500829640775919, 0.0032003079541027546, -0.010074915364384651, 0.007736095692962408, 0.00449427030980587, -0.01422666572034359, -0.03922020643949509, 0.0008943563443608582, 0.023180609568953514, 0.01383224967867136, -0.0263359397649765, -0.003042887430638075, -0.020606523379683495, -0.015375317074358463, -0.01969313807785511, 0.033047936856746674, -0.009895006194710732, -0.015444513410329819, -0.006687778513878584, -0.013451673090457916, -0.006410995032638311, -0.034044355154037476, -0.01118896808475256, -0.00136488804128021, -0.008476491086184978, -0.0345148891210556, -0.009272243827581406, 0.013105693273246288, 0.023097572848200798, 0.003470171708613634, 0.009971121326088905, -0.003985680639743805, -0.002319790655747056, 0.01826770417392254, -0.021312320604920387, 0.010005719028413296, -0.031082773581147194, -0.01199164055287838, 0.003418274922296405, 0.0059404633939266205, 0.006667019799351692, -0.028259584680199623, 0.016344059258699417, -0.017271284013986588, -0.022640880197286606, 0.008379616774618626, -0.018392255529761314, 0.00608577486127615, 0.006410995032638311, 0.012303021736443043, 0.0017939023673534393, 0.004355878569185734, -0.018240025267004967, 0.0216998178511858, -0.01822618581354618, -0.015610583126544952, -0.015859687700867653, -0.0010915645398199558, -0.007729175966233015, 0.008870907127857208, -0.017921725288033485, -0.016717717051506042, -0.017063695937395096, -0.00550452945753932, -0.009376036934554577, 0.02351274900138378, -0.01322332676500082, -0.0028370297513902187, -0.008524928241968155, 0.011355038732290268, 0.010503929108381271, -0.019790012389421463, -0.002235025865957141, -0.0051343319937586784, 0.005719036795198917, 0.013936043716967106, -0.005999280139803886, -0.012316861189901829, 0.02920064702630043, -0.002212537219747901, -0.022723916918039322, -0.022474810481071472, 0.002965042134746909, 0.021935082972049713, 0.0004253382212482393, 0.00281973066739738, -0.0391094945371151, -0.0396077036857605, -0.00012898538261651993, -0.0011529758339747787, -0.008905505761504173, -0.012759714387357235, -0.004193268250674009, 0.01428202260285616, 0.01533379964530468, 0.006660100072622299, -0.00527964299544692, -0.045198727399110794, -0.024509169161319733, -0.006954182405024767, 0.03396132215857506, -0.015915045514702797, 0.01226150430738926, 0.030030997470021248, -0.0013510489370673895, -0.009452152997255325, -0.012642080895602703, -0.018143150955438614, -0.0028975761961191893, 0.019956082105636597, 0.040908586233854294, 0.01247601117938757, 0.040438052266836166, 0.043731775134801865, 0.02066187933087349, 0.007438553497195244, 0.0074593122117221355, 0.01502933818846941, 0.029643500223755836, -0.03019706718623638, -0.011963961645960808, -0.029145291075110435, -0.014365057460963726, 0.019734656438231468, -0.003366377903148532, 0.004473511595278978, 0.008912425488233566, 0.03221758455038071, 0.035400595515966415, 0.0017316261073574424, 0.016427094116806984, -0.04882458969950676, -0.04550318792462349, -0.0020810652058571577, -5.919488467043266e-05, -0.01722976565361023, 0.004155210684984922, -0.012794312089681625, -0.006708537228405476, 0.05131563916802406, 0.00691612483933568, 0.007251724600791931, 0.012787392362952232, 0.018848948180675507, -0.006473271641880274, -0.0031864687334746122, 0.006065016146749258, 0.03396132215857506, -0.02527032420039177, -0.015998080372810364, -0.04492194205522537, -0.016842268407344818, -0.013029578141868114, -0.024384615942835808, 0.021893566474318504, -0.008919344283640385, -0.036230944097042084, -0.01655164733529091, -0.0003115975414402783, -0.02513193152844906, -0.005366137716919184, 0.0028698977548629045, 0.002856058534234762, -0.001745465211570263, -0.017215926200151443, -0.04107465595006943, -0.02255784533917904, 0.014752554707229137, 0.00020315467554610223, 0.011285842396318913, 0.010296341963112354, -0.03670147806406021, 0.004248625133186579, -0.002798971952870488, 0.010033397935330868, 0.06260840594768524, 0.010856828652322292, 0.04220946505665779, 0.022931503131985664, -0.0051966081373393536, -0.020786432549357414, 0.021104732528328896, -0.022114992141723633, 0.0037054375279694796, -0.007272483315318823, 0.028730114921927452, 0.0041033136658370495, -0.0024547227658331394, 0.007805291563272476, -0.031138131394982338, -0.0024772114120423794, -0.03767021745443344, 0.012303021736443043, 0.005736335646361113, -0.005909325554966927, -0.014171309769153595, 0.02497970126569271, -0.020454293116927147, 0.018890466541051865, 0.006376397330313921, -0.014185148291289806, 0.01025482453405857, -0.016399415209889412, -0.003868047846481204, 0.02648817002773285, 0.02802431769669056, 0.03897110000252724, -0.009984960779547691, -0.011507268995046616, 0.0003464117180556059, 0.025353359058499336, -0.03855592757463455, -0.003532448085024953, 0.014780232682824135, 0.0277336947619915, -0.017105214297771454, -0.018073955550789833, 0.0031414914410561323, -0.004259004257619381, -0.014544966630637646, -0.006542467512190342, 0.0033750273287296295, 0.03570505604147911, -0.033933643251657486, 0.00889858603477478, -0.012559046037495136, -0.007874486967921257, -0.05369597673416138, 0.015319960191845894, -0.01743735373020172, -0.007493910379707813, -0.000289973831968382, 0.03127652406692505, 0.01527844276279211, 0.010732275433838367, 0.010144110769033432, -0.012157710269093513, 0.0010517769260331988, 0.03216223046183586, -0.0001609884639037773, 0.008158190175890923, 0.007327840197831392, -0.03562202304601669, 0.0015534467529505491, 0.001637346693314612, -0.009265324100852013, 0.014448093250393867, 0.016094954684376717, -0.018502969294786453, 0.027761373668909073, 0.027512269094586372, -0.03794700279831886, 0.033546146005392075, 0.005238125566393137, 0.014351218938827515, -0.02558862417936325, -0.008144350722432137, -0.00431436114013195, 0.02787208743393421, 0.022571684792637825, -0.02694486267864704, -0.009064655750989914, -0.002776483306661248, -0.0037019778974354267, 0.006708537228405476, -0.01572129689157009, -0.012012398801743984, -0.023388195782899857, 0.01093986351042986, 0.01587352715432644, -0.023111412301659584, 0.01367309968918562, -0.0031328420154750347, -0.02694486267864704, 0.010081835091114044, -0.001489440561272204, 0.013154130429029465, 0.019720816984772682, -0.016039596870541573, 0.03041849471628666, 0.009459072723984718, -0.03459792211651802, 0.007009539287537336, -0.01422666572034359, 0.00941755436360836, -0.03055688552558422, 0.016703877598047256, -0.028979221358895302, -0.0056740595027804375, -0.007307081483304501, -0.007189448457211256, -0.009389876388013363, 0.009099253453314304, -0.01894582249224186, 0.039690736681222916, -0.0033421593252569437, 0.0010785902850329876, 0.005130872130393982, -0.0119708813726902, 0.028370296582579613, 0.022364098578691483, -0.022723916918039322, -0.004639581311494112, 0.010732275433838367, 0.04126840457320213, 0.01919492706656456, -0.016344059258699417, -0.008393456228077412, 0.005559886340051889, -0.008275823667645454, -0.01829538121819496, -0.02258552424609661, 0.010718436911702156, -0.019430194050073624, 0.01565210148692131, 0.011382716707885265, 0.028647080063819885, 0.001819850760512054, 0.04320588707923889, -0.02533951960504055, -0.0039960602298378944, 0.013790732249617577, 0.016607003286480904, -0.01894582249224186, -0.020897146314382553, -0.016856107860803604, -0.02176901325583458, -0.0054007358849048615, 0.007092574145644903, 0.021962761878967285, 0.027263164520263672, 0.008642561733722687, -0.016399415209889412, -0.005023618694394827, 0.019277963787317276, 0.007493910379707813, 0.020924823358654976, -0.012669759802520275, -0.013430913910269737, -0.024993540719151497, -0.01819850690662861, 0.018682878464460373, -0.022059636190533638, -0.02280695177614689, -0.013486270792782307, -0.022059636190533638, 0.00020953366765752435, -0.005528748035430908, -0.01883510872721672, 0.015236925333738327, -0.009895006194710732, 0.028328780084848404, -0.015126212500035763, -0.010123352520167828, 0.00943831354379654, 0.0007226641173474491, 0.02509041503071785, -0.016745394095778465, 0.019360998645424843, -0.02527032420039177, -0.003982220776379108, 0.02827342227101326, 0.035511307418346405, 0.00974277500063181, -0.010711517184972763, 0.009334519505500793, -0.025118092074990273, 0.027041736990213394, -0.01583201065659523, -0.038832709193229675, -0.021077055484056473, 0.02994796261191368, 0.0221980269998312, -0.026723437011241913, 0.025976121425628662, 0.0005349703715182841, -0.010898346081376076, -0.005608323495835066, -0.03468095883727074, -0.006348718889057636, -0.01088450662791729, 0.004864468239247799, -0.0012593644205480814, -0.0055149090476334095, -0.005480310879647732, -0.019111892208456993, 0.016427094116806984, -0.006968021858483553, -0.0022159970831125975, 0.19098053872585297, -0.00029213621746748686, 0.02086946740746498, 0.044838909059762955, -0.0057951523922383785, 0.021893566474318504, 0.02255784533917904, 0.025422554463148117, 0.0015620962949469686, 0.01376305427402258, -0.00880863144993782, 0.007030298002064228, 0.004265923984348774, 0.008483410812914371, 0.00315014086663723, 0.004919824656099081, -0.018101634457707405, -0.030999738723039627, 0.015527548268437386, 0.027636820450425148, -0.03055688552558422, -0.02994796261191368, -0.0345148891210556, -0.001677134307101369, 0.04303981736302376, -0.0016805941704660654, -0.012732035480439663, 0.00925840437412262, -0.00089262641267851, 0.0012749334564432502, -0.004705317784100771, -0.01958242431282997, -0.025242645293474197, -0.0001632589555811137, -0.056491490453481674, -0.020855627954006195, 0.019665459170937538, -0.02479979209601879, 0.037005938589572906, 0.008310421369969845, 0.010261744260787964, -0.027180127799510956, 0.004473511595278978, -0.020565005019307137, -0.005722496658563614, 0.019928403198719025, -0.0038542086258530617, -0.004041037522256374, -0.01718824915587902, 0.02362346276640892, 0.003065376076847315, -0.006756974384188652, 0.005397276021540165, 0.01734047941863537, -0.02780289202928543, -0.013119532726705074, -0.009922684170305729, 0.009701257571578026, 0.02066187933087349, 0.014821750111877918, 0.013036497868597507, 0.018143150955438614, 0.006784652825444937, -0.025256484746932983, -0.015527548268437386, 0.02066187933087349, -0.04597372189164162, -0.011853248812258244, -0.004515029024332762, -0.013251004740595818, -0.006296821869909763, -0.008559525944292545, -0.0019495929591357708, 0.029726535081863403, -0.014365057460963726, -0.015236925333738327, 0.027387715876102448, 0.05054064840078354, 0.00696110213175416, 0.02172749675810337, -0.015181568451225758, -0.027193967252969742, 0.00691612483933568, -0.010753034614026546, -0.03653540834784508, -0.008995460346341133, -0.005445713177323341, -0.0003903078322764486, 0.006777733098715544, 0.006936883553862572, -0.005148170981556177, 0.009085414931178093, 0.021492229774594307, -0.0007001754711382091, -0.005269263871014118, 0.006756974384188652, 0.010026478208601475, 0.013084935024380684, -0.021312320604920387, -0.012704357504844666, -0.016468612477183342, -0.011133612133562565, 0.0038853466976433992, 0.007057976443320513, 0.01502933818846941, -0.04334427788853645, -0.02050964906811714, -0.006078855134546757, 0.020827949047088623, -0.04821566492319107, 0.0033646479714661837, -0.02994796261191368, 0.023817211389541626, -0.011299681849777699, 0.014724875800311565, -0.013119532726705074, -0.007521588355302811, -8.460273238597438e-05, -0.006625502370297909, 0.02237793616950512, -0.021935082972049713, -0.04763442277908325, 0.022779272869229317, 0.0027885925956070423, -0.0027211266569793224, 8.908965537557378e-05, -0.06487802416086197, 0.03028010204434395, -0.018682878464460373, -0.00012520122982095927, 0.031608663499355316, -0.0325220488011837, 0.022391775622963905, -0.0077845328487455845, -0.03473631665110588, 0.012655920349061489, -0.0383068211376667, -0.017949402332305908, -0.033933643251657486, 0.0004709642380475998, 0.011092094704508781, 0.013057256117463112, 0.02380337193608284, 0.012732035480439663, 0.03105509653687477, -0.029643500223755836, 0.006857308559119701, 0.01765877939760685, 0.010074915364384651, -0.005383437033742666, -0.0016183179104700685, 0.005310781300067902, 0.005978520959615707, 0.016205666586756706, 0.004265923984348774, -0.03210687264800072, 0.0035532067995518446, -0.04663800075650215, 0.01466951984912157, 0.007895246148109436, -0.0108499089255929, 0.017132891342043877, -0.0027661039493978024, -0.027332359924912453, -0.020634202286601067, -0.008441893383860588, -0.17415210604667664, -0.015569065697491169, 0.028079675510525703, -0.024426134303212166, 0.016164150089025497, 0.00604079756885767, 0.023775693029165268, 0.02502121776342392, -0.002792052458971739, -0.006829630117863417, -0.01334787905216217, 0.01215079054236412, 0.011534947901964188, 0.004196728114038706, -0.020952502265572548, -0.029892606660723686, 0.022723916918039322, 0.011652580462396145, 0.04331659898161888, 0.01520924735814333, 0.037365756928920746, -0.041655898094177246, 0.02491050399839878, 0.042015716433525085, 0.006276063155382872, -0.0104001360014081, -0.004442373290657997, 0.011867087334394455, 0.006410995032638311, -0.019056536257267, 0.014185148291289806, 0.011126692406833172, 0.009722016751766205, -0.028508689254522324, 0.0026657700072973967, -0.0005280508194118738, -1.1474076927697752e-05, -0.002577545354142785, -0.010780712589621544, 0.0008714352152310312, 0.016094954684376717, 0.026156030595302582, 0.006888446398079395, 0.0065390076488256454, -0.0008969511836767197, 0.03825146332383156, 0.011797891929745674, -0.021077055484056473, -0.0186551995575428, -0.0010656160302460194, 0.025353359058499336, -0.019720816984772682, 0.00943831354379654, 0.02944975160062313, 0.010261744260787964, -0.009604383260011673, -0.0325220488011837, 0.04096394032239914, 0.0016857838490977883, -0.010413974523544312, 0.002463372191414237, -0.040299661457538605, 0.008926264010369778, -0.013202567584812641, -0.029754213988780975, -0.01097446121275425, 0.006978400982916355, -0.025187287479639053, -0.011126692406833172, -0.0093275997787714, -0.00916844978928566, 0.003999520093202591, -0.0015110643580555916, -0.002669229870662093, 0.010877586901187897, 0.04137911647558212, -0.016842268407344818, -0.016067275777459145, 0.006715456955134869, -0.009244564920663834, -0.03373989462852478, 0.04757906496524811, -0.017312800511717796, -0.0018734775949269533, -0.0077776131220161915, -0.023858727887272835, -0.03952466696500778, 0.0022540546488016844, -0.014254344627261162, -0.039330918341875076, 0.007431633770465851, -0.019070375710725784, -0.025643980130553246, -0.008441893383860588, -0.003919944632798433, 0.019250284880399704, -0.004871387500315905, -0.015416834503412247, 0.021741334348917007, -0.01754806749522686, -0.0069265044294297695, 0.0029823409859091043, -0.03866663947701454, 0.022045796737074852, 0.022391775622963905, 0.007701497990638018, -0.016897626221179962, 0.005047836806625128, 0.013756134547293186, 0.006182648707181215, 0.007417794782668352, 0.006667019799351692, -0.004141371231526136, -0.023471230641007423, -0.018682878464460373, 0.021284641698002815, -0.01106441579759121, 0.011957041919231415, 0.03177473321557045, -0.013015738688409328, 0.0315256267786026, -0.023277482017874718, -0.043897844851017, 0.017326639965176582, 0.015167729929089546, -0.007293242495507002, -0.09853488951921463, 0.011887846514582634, -0.006864227820187807, 0.04971029609441757, 0.017132891342043877, -0.01722976565361023, -0.03199616074562073, 0.013783812522888184, -0.0039441632106900215, 0.061999477446079254, -0.013596983626484871, -0.018032437190413475, -0.010836069472134113, 0.030030997470021248, -0.004518488887697458, 0.0044838907197117805, -0.002655390650033951, -0.018599843606352806, -0.019914565607905388, 0.03235597908496857, -0.016357898712158203, 5.232936018728651e-05, 0.022045796737074852, 0.0031864687334746122, -0.0036535407416522503, -0.00036435938091017306, -0.038832709193229675, 0.012033157981932163, 0.0049163647927343845, 0.013278682716190815, 0.0023786071687936783, 0.010462411679327488, 0.015306121669709682, -0.018530648201704025, 0.004487350583076477, 0.0019772714003920555, 0.01722976565361023, -0.02402479760348797, 0.028674758970737457, -0.0012463901657611132, -0.004912904929369688, 0.017271284013986588, -0.0015370127512142062, 0.01466951984912157, 0.011244324967265129, -0.005836669821292162, -0.01901501789689064, 0.01776949316263199, -0.005698278080672026, -0.014240505173802376, -0.007604623679071665, 0.008213547058403492, -0.008033637888729572, 0.018032437190413475, -0.006023498252034187, -0.00467417947947979, 0.01376305427402258, -0.01145883183926344, 0.006355638615787029, 0.019277963787317276, 0.007708417251706123, 0.009915764443576336, 0.002667499938979745, 0.02455068565905094, 0.022294901311397552, 0.021063216030597687, -7.033109432086349e-05, -0.0006573605351150036, 0.02133999951183796, -0.011749454773962498, -0.025851568207144737, 0.02330516092479229, -0.012399896048009396, 0.04674871265888214, -0.018143150955438614, 0.00889858603477478, 0.0019686217419803143, -0.016039596870541573, 0.024536848068237305, 0.014821750111877918, -0.008829389698803425, -0.01854448765516281, -0.026820309460163116, -0.03299257904291153, 0.0011616252595558763, -0.025035057216882706, 0.004774513654410839, 0.011251244693994522, 0.025187287479639053, -0.04193268343806267, 0.006154970731586218, 0.001961702248081565, 0.008704837411642075, -0.012392976321280003, 0.0005310781416483223, 0.008649480529129505, -0.0016416715225204825, -0.009576705284416676, 0.003850748995319009, -0.018572164699435234, -0.030363136902451515, 0.006331420037895441, -0.034293461591005325, 0.039330918341875076, 0.01045549288392067, -0.007763774134218693, 0.02712477184832096, -0.009209967218339443, 0.005836669821292162, 0.012538287788629532, -0.014890946447849274, 0.014129792340099812, -0.004421614576131105, 0.023180609568953514, -0.035013098269701004, -0.026654239743947983, -0.003309291321784258, -0.000728286278899759, 0.0037331159692257643, -0.012399896048009396, -0.0056152427569031715, 0.025727014988660812, -0.006193028297275305, 0.006241465453058481, 0.007639221381396055, -0.003584344871342182, -0.011701017618179321, -0.0006461162120103836, 0.008407295681536198, 0.03653540834784508, -0.014268184080719948, -0.008351938799023628, 0.027941282838582993, 0.00348055106587708, 0.00898854061961174, 0.025367196649312973, 0.012482930906116962, -0.019651619717478752, 0.0184060949832201, -0.01801859773695469, 0.027387715876102448, -0.016814591363072395, -0.014060596004128456, -0.034930065274238586, 0.012621322646737099, -0.019167250022292137, 0.01145191304385662, 0.009009298868477345, 0.033047936856746674, 0.0062103271484375, -0.0008173759561032057, -0.00968741811811924, 0.03448721021413803, 0.010213307105004787, 0.00089262641267851, -0.017644941806793213, -0.015915045514702797, -0.008815551176667213, -0.008234306238591671, -0.01127892266958952, 0.010517768561840057, -0.021464550867676735, 0.029006898403167725, 0.009694337844848633, 0.009244564920663834, -0.014641840942203999, -0.017963241785764694, -0.019291801378130913, -0.002319790655747056, 0.0012239015195518732, 0.026585044339299202, -0.021852048113942146, 0.025920763611793518, -0.007279403042048216, 0.003868047846481204, 0.01754806749522686, 0.007922924123704433, -0.014655680395662785, -0.020634202286601067, -0.0005894621135666966, 0.004732995759695768, 0.013430913910269737, 0.027193967252969742, -0.014877106994390488, -0.017935562878847122, -0.0020741454791277647, 0.0257408544421196, 0.008102833293378353, 0.02802431769669056, 0.020274383947253227, 0.0179078858345747, -0.0024824009742587805, -0.03028010204434395, 0.008607963100075722, -0.013161050155758858, 0.009770453907549381, 0.012732035480439663, 0.046333540230989456, -0.024868987500667572, 0.0036362416576594114, -0.009694337844848633, 0.007147931028157473, 0.0058954861015081406, 0.008476491086184978, -0.020329739898443222, -0.018309220671653748, -0.007902165874838829, 0.0008900315733626485, -0.009673579595983028, 0.00014271643885876983, -0.021630622446537018, -0.00020780377963092178, -0.0038369097746908665, 0.013195647858083248, -0.03814075142145157, 0.00806131586432457, -0.024868987500667572, 0.015887366607785225, -0.016108792275190353, -0.00806131586432457, -0.015569065697491169, 0.021782852709293365, -0.0034615222830325365, 0.031608663499355316, 0.011071335524320602, -0.01466951984912157, 0.021561425179243088, 0.01527844276279211, 0.003117272863164544, 0.007300161756575108, 0.002314601093530655, 0.001108863390982151, 0.0007183394045569003, 0.003663920098915696, -0.0453924760222435, -0.008490330539643764, 0.0017835230100899935, -0.04279071092605591, 0.030722955241799355, 0.014641840942203999, -0.007888326421380043, 0.0787171944975853, -0.020288221538066864, 0.007445473223924637, 0.049765653908252716, 0.004833329934626818, 0.004729536361992359, 0.025464070960879326, -0.015486030839383602, -0.021381516009569168, -0.03373989462852478, 0.005418034736067057, 0.008981620892882347, -0.010247904807329178, -0.052920982241630554, 0.01227534282952547, 0.026792632415890694, -0.0020689559169113636, 0.006383317057043314, -0.011320440098643303, -0.0014012159081175923, 0.027152450755238533, -0.014150550588965416, 0.02845333144068718, 0.015015498735010624, -0.011382716707885265, -0.018309220671653748, 0.025145770981907845, 0.008580285124480724, -0.01154186762869358, -0.05740487575531006, -0.010842989198863506, -0.014420414343476295, -0.019001180306077003, -0.012704357504844666, -0.01976233348250389, -0.0037054375279694796, -0.0039510829374194145, 0.010628482326865196, 0.012136952020227909, -0.0002027222071774304, -0.013008818961679935, 0.02895154245197773, -0.02870243787765503, -0.028038157150149345, -0.005573725327849388, -0.010372457094490528, -0.015679778531193733, -0.010801471769809723, -0.020274383947253227], "7fd9dd64-d020-4c02-8c3e-7e498557b7e6": [-0.022745274007320404, 0.005362504627555609, 0.00941551849246025, -0.005109858233481646, -0.022005127742886543, -0.007757305633276701, -0.009059678763151169, -0.02307264693081379, -0.009173547849059105, -0.01595585234463215, 0.025492357090115547, -0.0016706674359738827, 0.016966437920928, -0.010732125490903854, 5.287555904942565e-05, -0.008362233638763428, 0.02785513363778591, 0.011721360497176647, 8.445633284281939e-05, -0.0032007782720029354, -0.014027201570570469, 0.022759508341550827, -0.014005851000547409, -0.01418377086520195, -0.015628479421138763, 0.009159314446151257, 0.026531409472227097, -0.017977021634578705, -0.01424782257527113, -0.003270166926085949, -0.006942432839423418, 0.003407165175303817, -0.021236514672636986, -0.018702935427427292, -0.03991098329424858, -0.009137963876128197, 0.0018272369634360075, -0.0006027035415172577, 0.0027292906306684017, -0.024310968816280365, 0.01631169207394123, 0.002304062247276306, -0.0041099488735198975, 0.008782124146819115, -0.015685414895415306, 0.028922652825713158, 0.01652519591152668, -0.004202466923743486, -0.02425403520464897, -0.01166442595422268, 0.012781762517988682, 0.028908418491482735, -0.045177411288022995, 0.016069721430540085, 0.016382860019803047, -0.00847610179334879, 0.023257683962583542, 0.02116534672677517, -0.010974097065627575, -0.01084599457681179, 0.012027381919324398, 0.012703477405011654, -0.027655862271785736, -0.027356958016753197, -0.01809089072048664, -0.020837973803281784, -0.00549772335216403, -0.0039035617373883724, -0.012219536118209362, 0.022830676287412643, 0.02476644329726696, 0.011934864334762096, -0.018275927752256393, -0.0032114533241838217, 0.04739784821867943, 0.0021243630908429623, -0.019016074016690254, 0.0021812974009662867, 0.009081029333174229, 0.00906679593026638, 0.0331357941031456, -0.001292587723582983, -0.014091252349317074, 0.01957118511199951, 0.018660234287381172, 0.014560961164534092, 0.009266066364943981, 0.03384747356176376, 0.023926662281155586, -0.019628118723630905, 0.01631169207394123, -0.00031625255360268056, 0.003478333121165633, 0.01622629165649414, 0.012724827975034714, 0.004608124494552612, -0.012162601575255394, 0.022232865914702415, -0.002766653662547469, -0.004497813992202282, -0.0071915206499397755, -0.0019588975701481104, 0.0012418805854395032, -0.01813359186053276, -0.037064265459775925, 0.01974198780953884, 0.0221616979688406, -0.0031972199212759733, 0.0014242484467104077, 0.002270257333293557, -0.006081300787627697, 0.018503665924072266, 0.009123730473220348, -0.031171558424830437, 0.010155665688216686, -0.021677754819393158, 0.015130304731428623, -0.02806863747537136, 0.0026563433930277824, -0.02620403654873371, 0.0021688430570065975, 0.014717530459165573, 0.021094178780913353, -0.02616133540868759, 0.01557154580950737, 0.012931215576827526, -0.02419709973037243, -0.024054763838648796, 0.0039498209953308105, -0.030602214857935905, 0.0319117046892643, 0.017421912401914597, -0.0075082178227603436, 0.0019731312058866024, -0.015799283981323242, -0.007294713985174894, -0.00984964333474636, -0.012048732489347458, -0.013543259352445602, -0.010525738820433617, 0.018717169761657715, 0.010632490739226341, 0.0070029255002737045, -0.0007579386001452804, -0.015585779212415218, 0.02658834308385849, 0.006444257218390703, 0.023200748488307, -0.014169537462294102, -0.023755859583616257, -0.011721360497176647, -0.04076499864459038, -0.01595585234463215, 0.007942342199385166, 0.0021795183420181274, 0.002791562583297491, 0.00019148625142406672, -0.014133953489363194, 0.007714604958891869, 1.5220487512124237e-05, -0.007205754052847624, 0.0038786528166383505, 0.004238050896674395, 0.006696903612464666, 0.0032203493174165487, 0.024182867258787155, 0.011201834306120872, -0.014276289381086826, -0.00728759728372097, -0.015813516452908516, 0.014660595916211605, 0.016838334500789642, -0.0265029426664114, 0.008760773576796055, 0.0192580446600914, 0.01184234581887722, -0.011315702460706234, -0.0074797505512833595, -0.02298724465072155, 0.010703658685088158, 0.004462230019271374, 0.024182867258787155, 0.017322277650237083, 0.037889812141656876, -0.0221616979688406, -0.0024428395554423332, 0.021435784175992012, 0.018375562503933907, 0.022104762494564056, 0.0006863258313387632, 0.020709872245788574, 0.01537227537482977, -0.019841622561216354, 0.0007979705696925521, -0.601226806640625, -0.002409034874290228, -0.022446369752287865, -0.02389819547533989, 0.001878833631053567, -0.00032047813874669373, 0.02163505367934704, 0.013486324809491634, -0.02580549567937851, 0.022659873589873314, 0.02281644195318222, 0.027598928660154343, -0.004718434531241655, -0.0037292002234607935, -0.0011876150965690613, -0.032594919204711914, 0.00987099390476942, -0.020581768825650215, -0.0033431141637265682, -0.000956319214310497, -0.011401104740798473, 0.025449655950069427, -0.024225568398833275, 0.01010584831237793, 0.004305660724639893, -0.013244354166090488, 0.025136517360806465, 0.012909865006804466, 0.007127469405531883, -0.00276487460359931, -0.012682127766311169, 0.014973735436797142, -0.005511957220733166, 0.014361690729856491, 0.03820295259356499, -0.011771177873015404, 0.008383583277463913, 0.009358584880828857, 0.004045897629112005, 0.03982558101415634, -0.039967916905879974, -0.03470148891210556, 0.032594919204711914, 0.002405476523563266, 0.02052483521401882, -0.006333946716040373, -0.012276469729840755, 0.011159133166074753, 0.01552884466946125, -0.053717564791440964, -0.014005851000547409, -0.009664606302976608, 0.0007592730107717216, 0.014660595916211605, -0.003757667262107134, -0.00027888937620446086, -0.01260384265333414, 0.011749827302992344, 0.0058428882621228695, -0.01830439455807209, -0.017066072672605515, -0.006828564219176769, -0.01895914040505886, 0.022104762494564056, -0.028168272227048874, 0.013799464330077171, -0.014326106756925583, -0.02563469298183918, 0.0038822111673653126, -0.0077359555289149284, 0.007084768731147051, -0.0006827674224041402, -0.014311873354017735, -0.015329575166106224, 0.020937608554959297, 0.010966979898512363, 0.01773505099117756, -0.020396731793880463, 0.006981575395911932, 0.0038928864523768425, 0.01760694943368435, 0.00580018712207675, -0.0072199879214167595, -0.01537227537482977, 0.026104401797056198, 0.011977564543485641, 0.00943686906248331, -0.0037042913027107716, 0.01440439186990261, 0.0026705770287662745, 0.013479208573698997, 0.02389819547533989, -0.004245167598128319, -0.05491318553686142, -0.009002745151519775, 0.02285914309322834, -0.012006032280623913, 0.014326106756925583, -0.0029908327851444483, -0.055112455040216446, -0.022631404921412468, -0.019144177436828613, -0.004650825168937445, 0.025221919640898705, 0.0283675417304039, 0.0016155123012140393, -0.017991255968809128, 0.0011644854675978422, 0.018816804513335228, -0.003620669012889266, -0.012297820299863815, -0.03330659866333008, -0.008511685766279697, -2.153108289348893e-05, 0.015087603591382504, -0.02603323385119438, 0.05750369653105736, 0.0008802585070952773, 0.010013329796493053, 0.00845475122332573, 0.023869728669524193, 0.008568620309233665, 0.02129344828426838, -0.006052833516150713, 0.006255662068724632, 0.026616809889674187, 0.01678140088915825, 0.017407678067684174, -0.022844908758997917, -0.002722173696383834, -0.00908814650028944, -0.003634902648627758, 0.0221616979688406, 0.0036153316032141447, 0.04164747893810272, -0.011856579221785069, 0.0023734509013593197, -0.010333585552871227, 0.007401465903967619, -0.03993944823741913, -0.015500377863645554, -0.025221919640898705, 0.011635958217084408, -0.026275204494595528, -0.007056301459670067, -0.03256645053625107, -0.035726308822631836, 0.001096875872462988, 0.024624107405543327, -0.012205301783978939, 0.0011546998284757137, -0.001461611595004797, -0.027954768389463425, 0.033676669001579285, 0.01010584831237793, -0.002640330698341131, 0.00033404454006813467, -0.015984319150447845, 0.0018770544556900859, -0.016325926408171654, -0.010974097065627575, 0.04107813537120819, -0.005572449881583452, -0.003316426184028387, -0.04341244325041771, -0.02160658687353134, -0.008533036336302757, 0.018076658248901367, 0.015486144460737705, -0.030915353447198868, 0.005600917153060436, -0.01999819278717041, -0.024581408128142357, 0.003275504568591714, -0.010539972223341465, 0.02737119048833847, -0.024709509685635567, 0.002958807162940502, -0.017364978790283203, -0.020368264988064766, -0.025122283026576042, -0.0066862283274531364, -0.029605863615870476, -0.023869728669524193, 0.023784326389431953, 0.012020265683531761, 0.027641629800200462, -0.010725009255111217, -0.0031758693512529135, 0.013052200898528099, 0.026488708332180977, 0.00619161082431674, -0.019115708768367767, -0.009209131821990013, -0.0188310369849205, 0.022873377427458763, 0.0036936162505298853, 0.015500377863645554, 0.018674468621611595, 0.04056572914123535, 0.03347739949822426, 0.0041099488735198975, -0.009643256664276123, -0.03071608394384384, 0.0196850523352623, -0.038800761103630066, 0.013543259352445602, -0.005102741532027721, 0.0014189108042046428, -0.012639426626265049, 0.021065710112452507, -0.01207720022648573, -0.030459878966212273, -0.03603944554924965, 0.019158409908413887, 0.04603142663836479, -0.002394801238551736, 0.02307264693081379, 0.014496910385787487, -0.003170531941577792, 0.0021830766927450895, 0.013493441976606846, 0.02186279185116291, 0.021051477640867233, -0.015585779212415218, -0.03236718103289604, 0.024367904290556908, -0.025648927316069603, 0.0027524202596396208, -0.01360019389539957, 0.009515154175460339, 0.010618257336318493, -0.003821718506515026, -0.016539430245757103, 0.027271555736660957, -0.004394620656967163, 0.04324164241552353, 0.014048552140593529, 0.031342361122369766, 0.006059950217604637, 0.007821356877684593, 0.0063588558696210384, -0.019927024841308594, -0.025876663625240326, 0.00443376274779439, 0.011301469057798386, 0.04173288121819496, 0.004729109816253185, -0.003611773019656539, 0.015628479421138763, 0.027741264551877975, 0.004316335543990135, -0.011828112415969372, 0.003499683691188693, -0.009173547849059105, -0.0026492266915738583, 0.002380567602813244, 0.010675190947949886, 0.025179218500852585, 0.015884684398770332, -0.01665329933166504, -0.004572540521621704, -0.001664440263994038, -0.03322119638323784, 0.008511685766279697, -0.023912427946925163, -0.004077923018485308, -0.02351388894021511, -0.023570822551846504, 0.0019891439005732536, -0.00830529909580946, -0.03387594223022461, -0.03370513767004013, -0.009187781251966953, 0.03361973538994789, -0.003490787697955966, 0.022190164774656296, 0.03461608663201332, 0.008782124146819115, -0.013756763190031052, -0.03305039182305336, -0.022887609899044037, 0.01826169341802597, 0.016411326825618744, -0.006426465231925249, -0.0260759349912405, 0.013315522111952305, -0.027058051899075508, -0.0012801333796232939, 0.012689244002103806, 0.00030602214974351227, 0.04332704469561577, -0.014817165210843086, 0.012632309459149837, -0.008646905422210693, 0.010134315118193626, 0.03444528579711914, -0.002254244638606906, -0.01887373812496662, -0.007234221324324608, -0.0033520101569592953, 0.01199179794639349, -0.0014064564602449536, -0.0067965383641421795, 0.03461608663201332, -0.001669777906499803, -0.004280751571059227, -0.014368807896971703, -0.020396731793880463, -0.004672175273299217, 0.013635777868330479, -0.026232503354549408, -0.0045760986395180225, 0.008426284417510033, 0.007269805297255516, -0.02129344828426838, -0.007422816473990679, 0.0018076658016070724, 0.03299345821142197, -0.004113506991416216, -0.00281469221226871, -0.003319984534755349, -0.032509516924619675, 0.025648927316069603, 0.028210973367094994, 0.04654383286833763, -0.023670457303524017, 0.0096290223300457, -0.018574833869934082, 0.004565423354506493, -0.007024276070296764, -0.015229939483106136, 0.006476282607764006, -0.0014349236153066158, -0.006874823477119207, 0.018759869039058685, -0.005928289610892534, 0.01595585234463215, 0.012518441304564476, -0.004661500453948975, -0.016966437920928, -0.027428125962615013, 0.0038573024794459343, -0.02029709704220295, 0.004992431029677391, -0.0017845361726358533, 0.0265029426664114, 0.02129344828426838, -0.0007912985747680068, -0.006408673245459795, 0.026702212169766426, -0.0050635989755392075, 0.015343808569014072, -0.022503303363919258, -0.029207322746515274, 0.02423980087041855, 0.01830439455807209, 0.02211899682879448, -0.013173186220228672, 0.030659150332212448, 0.02281644195318222, 0.0038822111673653126, 0.03612484782934189, -0.02875184826552868, -0.0025051115080714226, 0.008056211285293102, 0.015414976514875889, 0.02775549702346325, -0.002284490969032049, -0.002736407332122326, 0.015173004940152168, 0.01362154446542263, -0.004060131032019854, 0.008604204282164574, 0.0009260728256776929, -0.00020605343161150813, -0.03911390155553818, -0.04620222747325897, -0.00650474987924099, 0.025563525035977364, 0.009700190275907516, -0.014084136113524437, 0.004601007327437401, -0.026730678975582123, -0.008013510145246983, -0.02385549433529377, 0.015087603591382504, -0.0061133261770009995, -0.00157814915291965, -0.006953108124434948, -0.0021528303623199463, -0.018162058666348457, -0.012632309459149837, 0.0008291065460070968, 0.005593800451606512, -0.009700190275907516, -0.03236718103289604, -0.018019722774624825, 0.02328615076839924, 0.011692892760038376, 0.0023432045709341764, -0.0035139170940965414, -0.0042878687381744385, -0.006070625502616167, -0.004255842883139849, -0.038231417536735535, -0.020097827538847923, -0.009771358221769333, 0.009308766573667526, 0.0012943670153617859, -0.007088327314704657, -0.0165678970515728, -0.034673020243644714, 0.022005127742886543, -0.01743614673614502, -0.01478869840502739, -0.00378969288431108, -0.0070136007852852345, 0.0009865656029433012, 0.011571907438337803, 0.0008606872870586812, 0.015101836994290352, 0.007529568392783403, -0.0200835932046175, 0.035982511937618256, -0.008732306770980358, -0.015044903382658958, -0.01002044603228569, 0.003079792717471719, -0.030118273571133614, 0.009465336799621582, -0.007785772904753685, -0.005622267257422209, -0.0157423485070467, 0.004515605978667736, -0.014760231599211693, 0.02099454216659069, 0.0015701426891610026, 0.009522270411252975, -0.005732577759772539, 0.008433401584625244, 0.01398450043052435, -0.0028413801919668913, -0.002775549655780196, 0.004679292440414429, -0.0027292906306684017, 0.0020407408010214567, -0.0023378669284284115, -0.004622357897460461, 0.02025439590215683, -0.015898918733000755, -0.012418805621564388, -0.019016074016690254, -0.008561503142118454, 0.026403306052088737, 0.013045083731412888, 0.005853563081473112, -0.03900003433227539, -0.04876427352428436, 0.0034107237588614225, -0.026431774720549583, -0.022887609899044037, -0.00826259795576334, 0.013685595244169235, 0.008212780579924583, 0.010653841309249401, 0.023129580542445183, -0.0006556346779689193, -0.04483580216765404, -0.020880674943327904, -0.008127379231154919, 0.015984319150447845, 0.0021457134280353785, 0.013778113760054111, 0.03754820674657822, -0.009401285089552402, -0.0005858011427335441, -0.038231417536735535, -0.017863154411315918, -0.0037434338591992855, -0.010461687110364437, 0.01847519725561142, 0.018361330032348633, 0.026858782395720482, 0.03675112500786781, 0.030175207182765007, 0.010575556196272373, 0.004373270086944103, 0.006373089272528887, 0.013521908782422543, -0.015187239274382591, -0.002101233461871743, -0.02902228757739067, -0.0051276502199471, 0.010725009255111217, -0.0005729019176214933, 0.013215887360274792, 0.008746540173888206, 0.029093455523252487, 0.041533611714839935, 0.006999367382377386, -0.0022239983081817627, -0.035327766090631485, -0.039711713790893555, 0.001028376747854054, -0.006259220652282238, -0.0126251932233572, 0.013215887360274792, -0.008782124146819115, -0.015728116035461426, 0.05294894799590111, 0.003611773019656539, 0.016539430245757103, 0.02290184423327446, 0.01301661692559719, 0.0012445494066923857, 6.933314580237493e-05, -0.0009732216130942106, 0.025535058230161667, -0.03231024742126465, -0.018076658248901367, -0.030032871291041374, -0.014703297056257725, 0.0047255512326955795, -0.019969724118709564, 0.010376285761594772, -0.02290184423327446, -0.019969724118709564, -0.016724467277526855, -0.0009732216130942106, -0.03455915302038193, -0.017977021634578705, 0.013706945814192295, 0.0034107237588614225, -0.018218994140625, -0.016240524128079414, -0.0513547882437706, -0.020097827538847923, 0.020581768825650215, 0.01601278781890869, 0.013728296384215355, -0.006003016140311956, -0.031683966517448425, 0.014062785543501377, -0.013408040627837181, -0.003489008406177163, 0.051639460027217865, -0.010539972223341465, 0.04754018411040306, 0.015642713755369186, -0.005882030352950096, -0.02260293811559677, 0.010418986901640892, -0.012781762517988682, 0.021549653261899948, 0.025962065905332565, 0.028865717351436615, -0.008148729801177979, -0.002937456825748086, 0.014646362513303757, -0.030773017555475235, -0.008775006979703903, -0.04620222747325897, 0.014717530459165573, 0.014632129110395908, -0.006746720988303423, -0.00928029976785183, 0.014859866350889206, -0.035242363810539246, -0.008212780579924583, -0.010781942866742611, 0.0020265071652829647, 0.019357681274414062, -0.009885227307677269, -0.014689063653349876, 0.025221919640898705, 0.015059136785566807, 0.0322817787528038, -0.01337957289069891, -0.0074797505512833595, -0.012539791874587536, -0.006807213649153709, -0.04736938327550888, 0.011507856659591198, 0.01081752683967352, 0.021933959797024727, -0.015486144460737705, -0.017421912401914597, 0.019884323701262474, -0.016809867694973946, -0.008561503142118454, -0.016539430245757103, -0.0023254125844687223, 0.03139929473400116, -0.020183227956295013, 0.00452272268012166, 0.004113506991416216, 0.0004906139802187681, -0.036637257784605026, 0.0008940472616814077, -0.030630681663751602, -0.015884684398770332, 0.011315702460706234, 0.00925894919782877, 0.032509516924619675, 0.01635439321398735, 0.00649407459422946, -0.004490697290748358, -0.003631344297900796, 0.0271149855107069, -0.02086644060909748, -0.008646905422210693, 0.020766805857419968, -0.04566135257482529, -0.010838877409696579, -0.023001478984951973, 0.002243569353595376, 0.018233226612210274, 0.012112784199416637, -0.017977021634578705, 0.009493803605437279, 0.04489273950457573, -0.02506534941494465, 0.027912067249417305, 0.012966799549758434, 0.020354032516479492, -0.04466500133275986, -0.0005858011427335441, -0.0082839485257864, -0.0024997740983963013, 0.0393701046705246, -0.030118273571133614, -0.02411169931292534, -0.006027924828231335, -0.010397636331617832, 0.0009145080693997443, 0.0015728115104138851, -0.014560961164534092, -0.03652338683605194, 0.028381776064634323, 0.019115708768367767, -0.012973915785551071, 0.02129344828426838, 0.009251832962036133, -0.03658032417297363, 0.012888514436781406, -0.0018628209363669157, 0.012689244002103806, 0.009194898419082165, -0.01182099524885416, 0.020197462290525436, 0.00309580541215837, -0.02885148487985134, -0.006533217150717974, -0.0006894394173286855, -0.0010061367647722363, -0.01626899093389511, 0.03646645322442055, -0.016155123710632324, -0.010155665688216686, -0.010810410603880882, -0.011707126162946224, -0.010653841309249401, 0.013863515108823776, -0.02633213810622692, 0.025620458647608757, 0.01813359186053276, 0.004953288938850164, -0.011927747167646885, -0.008945810608565807, 0.02680184692144394, 0.015414976514875889, -0.01942884922027588, -0.005896264221519232, -0.005675643216818571, 0.03817448392510414, 0.027399657294154167, -0.008746540173888206, -0.020069360733032227, 0.0054194387048482895, -0.030032871291041374, -0.02616133540868759, -0.008597087115049362, 0.0023485422134399414, -0.012554025277495384, 0.023442720994353294, 0.004053014330565929, 0.036409519612789154, -0.003953379113227129, 0.03481535613536835, -0.010682308115065098, -0.0002270702098030597, 0.0027524202596396208, 0.023969363421201706, 0.012710594572126865, -0.010675190947949886, -0.010717892087996006, -0.020624469965696335, 0.006732487585395575, 0.006052833516150713, 0.041220471262931824, 0.039313171058893204, -0.004572540521621704, -0.0055973585695028305, -0.004931938368827105, 0.010191249661147594, 0.02241790108382702, 0.005362504627555609, 0.0021190254483371973, 0.010831761173903942, -0.012689244002103806, -0.020766805857419968, 0.02523615211248398, -0.012283586896955967, -0.024567173793911934, -0.014190888032317162, -0.013080667704343796, -0.004309218842536211, -0.005892705637961626, -0.014041434973478317, 0.011465155519545078, -0.015941619873046875, 0.021535418927669525, -0.02033979818224907, -0.006294804625213146, 0.020140528678894043, -0.00847610179334879, 0.0003133613499812782, -0.034331414848566055, 0.01713724061846733, -0.043782517313957214, 0.0005159676074981689, 0.013102018274366856, 0.02052483521401882, -0.001468728412874043, -0.01010584831237793, 0.03196863830089569, 0.0035281507298350334, 0.015286874026060104, -0.015059136785566807, -0.03128542751073837, -0.03347739949822426, 0.01342227403074503, 0.012006032280623913, -0.016639064997434616, 0.005732577759772539, 0.011920630000531673, -0.023926662281155586, 0.007928108796477318, -0.02351388894021511, -0.00443376274779439, -0.020453667268157005, 0.01246862392872572, 0.011251651681959629, -0.014568077400326729, -0.014703297056257725, 0.0002595405967440456, 0.013002383522689342, -0.025905130431056023, 0.0052308435551822186, 0.1939184069633484, -0.002430385211482644, 0.006408673245459795, 0.03512849658727646, -0.009643256664276123, 0.012497090734541416, 0.020112060010433197, 0.01259672548621893, -0.006209402810782194, 0.019983958452939987, -0.0026527850423008204, -0.011486506089568138, -0.009472453035414219, 0.006006574258208275, -0.006003016140311956, -0.0007993049803189933, -0.016468262299895287, -0.03410367667675018, 0.000683212245348841, 0.011315702460706234, 0.004270076751708984, 0.00847610179334879, -0.05115551874041557, -0.02224709838628769, 0.02671644650399685, -0.0019927024841308594, -0.00562938442453742, 0.002101233461871743, 0.011678659357130527, -0.012283586896955967, -0.015685414895415306, -0.00033604612690396607, -0.003964054398238659, -0.01626899093389511, -0.05548252910375595, -0.01599855348467827, -0.009287416934967041, -0.016667531803250313, 0.03458762168884277, 0.010504388250410557, 0.004611682612448931, -0.028609512373805046, 0.011671542190015316, -0.025321554392576218, 0.02116534672677517, 0.0002306286187376827, 0.0016831218963488936, -0.003786134533584118, 0.0021635054145008326, 0.02438213676214218, 0.006152468733489513, -0.00593184819445014, 0.013294171541929245, 0.012746178545057774, -0.027143454179167747, -0.015101836994290352, 0.005291336681693792, 0.010226833634078503, 0.012248002924025059, 0.020766805857419968, -0.013628660701215267, 0.021108411252498627, -0.0001395558938384056, -0.006070625502616167, -0.005593800451606512, 0.005853563081473112, -0.05650734528899193, 0.000907836074475199, -0.007636320311576128, -0.0034872291143983603, -0.008703839033842087, 0.0018610416445881128, -0.01283869706094265, 0.016468262299895287, -0.015671180561184883, -0.012497090734541416, 0.018845271319150925, 0.030089806765317917, 0.011337053030729294, 0.02285914309322834, -0.022787975147366524, -0.01416242029517889, -0.005593800451606512, -0.0041099488735198975, -0.02671644650399685, -0.0025122284423559904, 0.019713521003723145, -0.008227013982832432, 0.003264829283580184, -0.009856760501861572, -0.021891258656978607, 0.00811314582824707, -0.0015870451461523771, 0.007899641990661621, 0.006839239504188299, 0.01381369773298502, 0.005494165234267712, 0.026147102937102318, -0.02112264558672905, 0.0039000031538307667, -0.017977021634578705, 0.02186279185116291, -0.00061827152967453, 0.005355387460440397, 0.014973735436797142, -0.021535418927669525, -0.033420465886592865, -0.024140166118741035, 0.01060402300208807, -0.03874382749199867, -0.012731945142149925, -0.02146425098180771, 0.013827931135892868, -0.006970900110900402, 0.01422647200524807, -0.004917704965919256, -0.019528483971953392, 0.016041254624724388, -0.008967161178588867, 0.03370513767004013, 0.012368988245725632, -0.024367904290556908, 0.01917264424264431, 0.005095624830573797, -0.02616133540868759, -0.016496729105710983, -0.04620222747325897, 0.03495769202709198, -0.01991279050707817, -0.012660777196288109, 0.02620403654873371, -0.01626899093389511, 0.008212780579924583, 0.0016617714427411556, -0.02675914578139782, -0.01622629165649414, -0.023585056886076927, -0.016639064997434616, -0.04423799365758896, 0.008945810608565807, 0.006721812300384045, 0.01039051916450262, -0.0012516662245616317, 0.015927385538816452, 0.005252194125205278, -0.03817448392510414, 0.007864058017730713, 0.01796278916299343, 0.0003369357145857066, -0.03194017335772514, 0.006743162404745817, -0.003147402312606573, -0.006511866580694914, 0.008796357549726963, 0.011586140841245651, -0.02815403789281845, -0.0059816655702888966, -0.031000755727291107, 0.0012356534134596586, 0.006426465231925249, 0.00378969288431108, 0.01874563656747341, 0.0036509153433144093, -0.011579024605453014, -0.01790585368871689, -0.021578120067715645, -0.1812789887189865, -0.013863515108823776, 0.035897109657526016, -0.02203359454870224, 0.021720455959439278, 0.00789252482354641, 0.02506534941494465, 0.02507958374917507, -0.006177377421408892, -0.01379234716296196, -0.012539791874587536, -0.005113416817039251, 0.005330478772521019, -0.004060131032019854, -0.013927566818892956, -0.017123006284236908, 0.014703297056257725, 0.026915716007351875, 0.041704412549734116, 0.021791623905301094, 0.02425403520464897, -0.030374478548765182, 0.030516814440488815, 0.03655185550451279, -0.0023378669284284115, 0.0019446640508249402, 0.007202195934951305, 0.027257321402430534, 0.006063508801162243, -0.021264981478452682, 0.0033947108313441277, 0.009180665016174316, 8.768113184487447e-05, -0.003312867833301425, 0.007344531826674938, -0.002444618847221136, -0.00017536226368974894, -0.018589066341519356, 0.009685956872999668, -5.187475835555233e-05, 0.011956213973462582, 0.026474473997950554, 0.0032256869599223137, 0.0024695275351405144, -0.009927928447723389, 0.013692712411284447, 0.014546727761626244, -0.025406954810023308, 0.002298724604770541, -0.012731945142149925, 0.023841260001063347, -0.014468442648649216, 0.012098549865186214, 0.027513526380062103, 0.008903109468519688, -0.009173547849059105, -0.007134586106985807, 0.04048032686114311, 0.002058532787486911, 0.006049274932593107, -0.009906577877700329, -0.034502219408750534, 0.011707126162946224, -0.014703297056257725, -0.02762739546597004, -0.02211899682879448, -0.014318990521132946, 0.014689063653349876, -0.022360967472195625, -0.015898918733000755, -0.022745274007320404, -0.0037220832891762257, -0.003907119855284691, 0.0013406261568889022, 0.01618359051644802, 0.03845915570855141, -0.011614608578383923, 0.001197400619275868, -0.0006912186508998275, -0.011870812624692917, -0.0331357941031456, 0.026104401797056198, -0.010966979898512363, -0.014062785543501377, 0.0006209402927197516, -0.017165707424283028, -0.018033957108855247, 0.0029765991494059563, 0.006693345028907061, -0.03629565238952637, 0.0007539353682659566, -0.02802593633532524, -0.012098549865186214, -0.019485782831907272, -0.006910407450050116, 0.023883961141109467, -0.015514611266553402, -0.019016074016690254, 0.04090733453631401, -0.02880878373980522, -0.016454027965664864, -0.004682850558310747, -0.0372920036315918, 0.016667531803250313, 0.036637257784605026, 0.009621906094253063, 0.002476644469425082, -0.014817165210843086, 0.019115708768367767, 0.014603661373257637, -0.00767902098596096, 0.0011031031608581543, -0.005109858233481646, 0.004006755072623491, -0.018318628892302513, 0.04113507270812988, 0.008170079439878464, -0.004654383286833763, 0.043355509638786316, -0.0031580773647874594, 0.043127771466970444, -0.024709509685635567, -0.0029214441310614347, 0.015130304731428623, 0.0024784235283732414, -0.017592715099453926, -0.1259387880563736, 0.0026492266915738583, -0.0019428848754614592, 0.004497813992202282, -0.00024019180273171514, 0.006472724489867687, -0.033078860491514206, -0.016041254624724388, -0.0073587652295827866, 0.047910258173942566, -0.019628118723630905, 0.0002917885722126812, -0.01735074445605278, 0.010725009255111217, -0.015770815312862396, -0.003074455074965954, 0.0007156826322898269, -0.02021169662475586, -0.016724467277526855, 0.048821207135915756, -0.010034680366516113, -0.005725461058318615, 0.023442720994353294, -0.0015523507026955485, 0.00038608608883805573, 0.024439072236418724, -0.022275565192103386, 0.00701715936884284, 0.004366153385490179, 0.008981394581496716, -0.003122493391856551, 0.0005657851579599082, -0.0008001945680007339, -0.011344170197844505, 0.021094178780913353, 0.010831761173903942, 0.007259130012243986, -0.01084599457681179, 0.03205404058098793, 0.013785230927169323, -0.012062965892255306, 0.010155665688216686, 0.012973915785551071, 0.03410367667675018, 0.019443081691861153, -0.01847519725561142, -0.007899641990661621, 0.025164984166622162, 0.001917976071126759, -0.022019362077116966, -0.014660595916211605, 0.0013966708211228251, -0.03225331008434296, 0.00359931867569685, -0.01652519591152668, 0.010141432285308838, 0.0010363832116127014, 0.0013726516626775265, -0.02841024287045002, 0.013571727089583874, 0.010504388250410557, -0.007586502470076084, 0.0008669145172461867, 0.030374478548765182, 0.016212057322263718, 0.02732848934829235, -0.01601278781890869, 0.0015194355510175228, -0.0017596273683011532, -0.025919364765286446, -0.018574833869934082, 0.03364820405840874, -0.02406899817287922, 0.030858419835567474, -0.018845271319150925, 0.012461506761610508, -0.00011475830979179591, 0.020980309695005417, 0.032110974192619324, 0.005672085098922253, -0.014817165210843086, -0.024268267676234245, -0.023798560723662376, -0.028737615793943405, -0.006205844692885876, 0.003964054398238659, -0.0008895992650650442, 0.0252503864467144, 0.04381098598241806, -0.007671904284507036, 0.0035495010670274496, 0.011436688713729382, 0.008291065692901611, -0.015927385538816452, 0.009707307443022728, 0.008269715122878551, 0.01692373678088188, 0.0006000347202643752, 0.0018895089160650969, 0.002416151575744152, -0.05514092370867729, 0.018987607210874557, -0.04113507270812988, 0.03182630240917206, 0.0010203704005107284, -0.015770815312862396, 0.020410966128110886, -0.0034000484738498926, 0.007091885432600975, 0.02004089206457138, 0.0019339888822287321, 0.0015665843384340405, -0.004291426856070757, 0.023912427946925163, -0.02142154984176159, -0.014703297056257725, -0.014155304059386253, -0.008298181928694248, 0.00650474987924099, -0.018019722774624825, -0.0019464432261884212, 0.03800368309020996, 0.006960224825888872, 0.015856217592954636, -0.0042487261816859245, -0.004490697290748358, -0.01895914040505886, -0.023997830227017403, -0.0015994994901120663, 0.04147667810320854, -0.0026937066577374935, -0.00660438509657979, 0.03458762168884277, 0.020154761150479317, -0.0019233135972172022, 0.007572269067168236, 0.020667171105742455, -0.004995989613234997, 0.014304756186902523, -0.012283586896955967, 0.03487229347229004, -0.014689063653349876, -0.010376285761594772, -0.026389073580503464, -0.007284038700163364, -0.0335628017783165, 0.0037790178321301937, 0.0008473432972095907, 0.016539430245757103, 0.010483037680387497, 0.013493441976606846, 0.015301107428967953, 0.02137885056436062, 0.015116071328520775, -0.009365701116621494, -0.007821356877684593, -0.00023285261704586446, -0.016212057322263718, 0.014098369516432285, -0.015756582841277122, 0.017236875370144844, -0.007792889606207609, 0.018589066341519356, 0.014560961164534092, 0.013045083731412888, -0.018660234287381172, -0.007750188931822777, -0.03074455074965954, -0.005358946043998003, 0.02584819681942463, 0.0051205335184931755, -0.007259130012243986, 0.011294352822005749, -0.020795272663235664, 0.007230663206428289, 0.004967522341758013, 0.014717530459165573, -0.012966799549758434, -0.028253672644495964, 0.020183227956295013, 0.025051115080714226, 0.017293810844421387, 0.0217346902936697, -0.03014674037694931, -0.005938964895904064, 0.006960224825888872, 0.03114309161901474, 0.013906216248869896, 0.012248002924025059, 0.01991279050707817, 0.010810410603880882, -0.009451102465391159, -0.02116534672677517, 0.009031211957335472, 0.012198185548186302, 0.012276469729840755, 0.012632309459149837, 0.02923579141497612, -0.02120804600417614, -0.0017338290344923735, 0.01582775078713894, 0.01695220358669758, 0.010034680366516113, -0.004241609480232, -0.011287235654890537, -0.0026865897234529257, 0.0002205094206146896, 0.018532132729887962, 0.004266518168151379, -0.015101836994290352, -0.026915716007351875, 0.005764603149145842, 0.002234673360362649, 0.025905130431056023, -0.01838979683816433, 0.0027168362867087126, -0.031200025230646133, 0.008668255060911179, 0.0102553004398942, 0.0007739513530395925, -0.025962065905332565, 0.02762739546597004, 0.003147402312606573, 0.005245077423751354, 0.025791263207793236, -0.010511505417525768, 0.03857302665710449, 0.009451102465391159, 0.01851789839565754, -0.011749827302992344, 0.01145092211663723, -0.000792632985394448, -0.0126251932233572, 0.03347739949822426, -0.04025258868932724, -0.016539430245757103, -0.015927385538816452, -0.033335063606500626, 0.04190368577837944, 0.009152197279036045, -0.014020084403455257, 0.08750810474157333, -0.011678659357130527, 0.0009500920423306525, 0.0322817787528038, -0.009038329124450684, -0.00588914705440402, 0.03737740218639374, -0.018859505653381348, -0.00622363667935133, -0.02480914443731308, 0.010831761173903942, 0.015301107428967953, -0.01047592144459486, -0.06188764423131943, 0.011749827302992344, 0.020197462290525436, -0.01959965191781521, -0.0003291517205070704, -0.009515154175460339, -0.0008024185663089156, 0.021364616230130196, -0.008276831358671188, 0.017151474952697754, -0.004960405640304089, -0.0009625464444980025, -0.0008535705273970962, 0.02290184423327446, 0.007237779907882214, -0.019243812188506126, -0.04275770112872124, 0.011173366568982601, -0.010333585552871227, -0.022830676287412643, -0.02593359909951687, -0.02182009071111679, -0.004063689615577459, -0.007970809936523438, 0.008234131149947643, 0.014126836322247982, 0.011393987573683262, -0.00930165033787489, 0.01813359186053276, -0.015557312406599522, -0.04944748803973198, -0.02606170065701008, -0.0003920908784493804, -0.003147402312606573, -0.001646648277528584, -0.022588705644011497], "78fce47a-97ce-40a1-a41d-45c29ec1c6ff": [-0.003151586512103677, 0.028558066114783287, 0.00730270566418767, -0.04770556837320328, -0.012851130217313766, 0.02015383541584015, -0.0064493631944060326, -0.007887465879321098, 0.007901065051555634, -0.037560656666755676, 0.015570946037769318, 0.034813642501831055, -0.026246223598718643, 0.02364879846572876, -0.0018035778775811195, 0.016468483954668045, 0.010294502601027489, -0.013163908384740353, 0.007676680106669664, -0.004963663872331381, 0.012075982056558132, 0.017733199521899223, 0.006632951088249683, -0.006945729721337557, -0.018766729161143303, 0.02049381285905838, 0.015067779459059238, -0.012851130217313766, -0.02232968807220459, -0.016522880643606186, 0.03310015797615051, -0.015774931758642197, -0.015638941898941994, -0.010280903428792953, -0.01314350962638855, -0.0194602832198143, -0.012973521836102009, -0.004453698638826609, 0.012143977917730808, -0.010450892150402069, 0.024777522310614586, 0.027442941442131996, 6.900470179971308e-05, 0.0011321232886984944, 0.005276442505419254, 0.02207130566239357, 0.020249029621481895, -0.02742934226989746, 0.010906461626291275, 0.001024180673994124, 0.019841056317090988, 0.05684415251016617, -0.020289825275540352, -0.011192042380571365, -0.018209166824817657, -0.01805957779288292, -0.000569461437407881, 0.007520290557295084, -0.01076367124915123, -0.015462152659893036, 0.001307211467064917, 0.0037227480206638575, -0.014619010500609875, -0.024097567424178123, 0.0021401550620794296, -0.007554288487881422, -0.005089455284178257, 0.014483019709587097, -0.0014279033057391644, 0.022112103179097176, -0.0010904761729761958, 0.014469420537352562, -4.937634366797283e-05, 0.020534610375761986, 0.04144999384880066, 0.005874802358448505, -0.009390164166688919, -0.016074111685156822, -0.02817729115486145, 0.0027963106986135244, -0.006520758382976055, -0.014442222192883492, -0.011185242794454098, 0.0032824778463691473, 0.0009306870051659644, -0.006160382647067308, 0.017896387726068497, 0.026015037670731544, -0.019283493980765343, -0.01834515854716301, -0.004950064700096846, 0.014795797877013683, -0.0041647180914878845, 0.017121240496635437, -0.0031379875726997852, 0.02256087213754654, 0.019310692325234413, 0.01275593601167202, -0.016441287472844124, -0.02186731994152069, -0.005871402565389872, 0.012708339840173721, -0.01593811996281147, -0.006394966971129179, -0.01642768830060959, -0.005640218034386635, 0.03149546682834625, 0.005337638780474663, 0.003950532525777817, 0.010260505601763725, -0.01596531830728054, 0.02430155500769615, 0.0008142448496073484, -0.02012663707137108, 0.013544682413339615, -0.009111382998526096, -3.174003722961061e-05, -0.025471074506640434, -0.020616203546524048, -0.01731162704527378, 0.02375759184360504, 0.003440567059442401, 0.01731162704527378, 0.007166714873164892, 0.013136710040271282, -0.008275039494037628, 0.033807311207056046, -0.025729456916451454, -0.009519355371594429, -0.01886192336678505, 0.03837660327553749, 0.02436954900622368, -0.009981724433600903, 0.006996726151555777, -0.014075047336518764, 0.013524284586310387, -0.022547272965312004, 0.005752410273998976, -0.004878669511526823, -0.019800258800387383, 0.015394157730042934, 0.01656367816030979, -0.019079508259892464, -0.008315837010741234, 0.007091919891536236, 0.01860354095697403, 0.019283493980765343, 0.0017160337883979082, -0.0024427345488220453, 0.009322169236838818, 0.0031158889178186655, -0.0032229817006736994, 0.0031838843133300543, 0.010185710154473782, 0.005735411774367094, 0.007078320719301701, -0.016346093267202377, 0.0009247373673133552, 0.03285537660121918, -0.0037193482276052237, 0.02147294580936432, 0.019011512398719788, -0.011661210097372532, -0.002706216648221016, 0.011634012684226036, 0.03927414119243622, 0.032148223370313644, 0.004406101536005735, 0.013333897106349468, -0.008846201002597809, -0.027470139786601067, 0.007778673432767391, -0.01986825466156006, 0.01966426894068718, 0.013225104659795761, 0.003566358471289277, 0.015394157730042934, -0.0024818319361656904, -0.022220894694328308, 0.005456630606204271, 0.00400492874905467, 0.00552462600171566, 0.014591812156140804, 0.036336738616228104, -0.02424715831875801, -0.014972586184740067, 0.004960264079272747, 0.02373039349913597, 0.008383831940591335, 0.006867534946650267, 0.019133904948830605, 0.019297093152999878, -0.008642214350402355, -0.01094725914299488, -0.6353489756584167, -0.01329989917576313, -0.016550078988075256, -0.03949172422289848, -0.008445028215646744, 0.012633544392883778, -0.007064721547067165, 0.007758274674415588, -0.033780112862586975, 0.03176745027303696, 0.02364879846572876, -0.01086566410958767, 0.011402827687561512, -0.015666138380765915, -0.015516549348831177, -0.02983637899160385, 0.013748669065535069, -0.02201690897345543, -0.006058389786630869, 0.029401209205389023, 0.0029628993943333626, 0.013939056545495987, -0.021853720769286156, -0.0011899194214493036, 0.005157450679689646, 0.004820873495191336, 0.008519822731614113, 0.02823168784379959, 0.024723125621676445, 0.033861707895994186, -0.036445531994104385, -0.03410648927092552, 0.0035969563759863377, -0.0030648924876004457, 0.04830392822623253, -0.007343502715229988, -0.02103777602314949, -0.00931536965072155, 0.018875522539019585, 0.03815901651978493, -0.023512808606028557, -0.03125068545341492, 0.023458411917090416, 0.02436954900622368, 0.009757339023053646, -0.00900259055197239, -0.00993412733078003, 0.008853000588715076, -5.1713686843868345e-05, -0.016359692439436913, 0.0036853505298495293, -0.0060821883380413055, -0.00536823645234108, -0.026586199179291725, 0.014809397049248219, -0.004222514107823372, 0.02424715831875801, -0.010056518949568272, 0.020629802718758583, -0.020738596096634865, 0.021364154294133186, 0.004518294241279364, -0.01759720779955387, -0.010566484183073044, -0.018671534955501556, 0.0018749730661511421, -0.019473880529403687, -0.01112404651939869, 0.019528277218341827, -0.025579867884516716, -0.00018549994274508208, 0.009866132400929928, -0.012504353187978268, -0.028449272736907005, 0.009913728572428226, 0.017964383587241173, 0.020915383473038673, -0.004079723730683327, 0.0018052777741104364, 0.017298027873039246, -0.011457224376499653, -0.01169520802795887, -0.013483487069606781, -0.02373039349913597, 0.04569290578365326, 0.00255492702126503, -0.004997661802917719, 0.005613020155578852, -0.0023968378081917763, 0.02574305608868599, 0.004266710951924324, 0.01708044297993183, -0.007017124909907579, -0.030706720426678658, -0.008186645805835724, 0.0175700094550848, 0.004273510538041592, -0.029102029278874397, -0.007282306905835867, -0.021622536703944206, 0.0004725680046249181, -0.004361904691904783, 0.0009510855888947845, 0.01969146728515625, 0.010559684596955776, 0.013789466582238674, -0.018644338473677635, 0.02970038913190365, 0.0389205664396286, -0.013293099589645863, -0.021717729046940804, -0.032175421714782715, -0.005048658233135939, 0.013707871548831463, 0.010960857383906841, -0.0262870192527771, 0.0254574753344059, -0.010648079216480255, 0.012715139426290989, -0.009294970892369747, 0.010539286769926548, 0.02276485785841942, -0.029401209205389023, -0.00359015678986907, 0.011899194680154324, 0.007479493506252766, -0.004225913900882006, -0.0035561590921133757, -0.03391610458493233, 0.0005507626920007169, 0.006602352950721979, 0.007785473018884659, 0.01774679869413376, -0.003059792798012495, 0.003488163696601987, -0.015067779459059238, 0.01932429149746895, -0.019963448867201805, 0.0154485534876585, -0.028558066114783287, -0.0036377536598592997, -0.01940588653087616, 0.002316943136975169, -0.038621384650468826, -0.013061915524303913, -0.010838465765118599, -0.03712548688054085, -0.023227227851748466, 0.005007860716432333, 0.0032212818041443825, 0.02931961417198181, -0.007710678037256002, -0.024886315688490868, 0.028041301295161247, 0.017814794555306435, -0.01312991138547659, 0.019541876390576363, -0.00034125189995393157, -0.003739746753126383, -0.009539754129946232, -0.0167404655367136, 0.020317023620009422, -0.022234493866562843, 0.002150354441255331, -0.01943308487534523, -0.004875269718468189, -0.007608684711158276, 0.029537199065089226, -0.019161103293299675, -0.04838552325963974, 0.006728144362568855, -0.013626277446746826, 0.003165185684338212, 0.0048412722535431385, -0.011987588368356228, 0.03027155064046383, -0.013707871548831463, 0.009879730641841888, 0.01027410477399826, -0.026871779933571815, -0.014075047336518764, 0.001268114079721272, 0.0162780974060297, -0.016128508374094963, 0.013048316352069378, -0.0012324166018515825, 0.01868513412773609, -0.007676680106669664, -0.010573283769190311, -0.01733882538974285, 0.02817729115486145, 0.016495682299137115, -0.013993452303111553, -0.009553353302180767, -0.003309675958007574, 0.04348985478281975, 0.010967656970024109, 0.009927327744662762, 0.0021826522424817085, 0.02189451828598976, 0.03494963422417641, -0.009913728572428226, 0.0014831495936959982, -0.032637789845466614, 0.005364836659282446, -0.03707109019160271, 0.013265902176499367, 0.0039845299907028675, 0.015611742623150349, -1.9336190234753303e-05, 0.008621816523373127, -0.006840336602181196, -0.03187623992562294, -0.005011260509490967, 0.012089581228792667, 0.04449618607759476, -0.021146567538380623, 0.013150309212505817, -0.00730270566418767, -0.0036615519784390926, 0.007105519063770771, 0.011871996335685253, 0.02551187202334404, 0.020629802718758583, 0.006364368833601475, -0.002094258088618517, 0.00874420814216137, -0.02184012159705162, -0.019161103293299675, -0.05374355986714363, 0.015543747693300247, -0.032257016748189926, 0.015326161868870258, -0.00573201198130846, 0.02170412987470627, 0.002956099808216095, 0.010076917707920074, -0.01223917119204998, 0.04036206752061844, 0.01438782550394535, -0.021921714767813683, 0.00730270566418767, -0.0016692869830876589, -0.04036206752061844, -0.013993452303111553, -0.004477496724575758, 0.024083970114588737, 0.03709828853607178, -0.02046661451458931, 0.04618247225880623, -0.0041817170567810535, -0.007445496041327715, -0.002614422934129834, -0.017909986898303032, 0.0020976578816771507, -0.012551950290799141, 0.01102205365896225, 0.01406144816428423, 0.017841991037130356, 0.02043941617012024, 0.006700946483761072, -0.007622283883392811, 0.016645273193717003, 0.006932130549103022, 0.01086566410958767, 0.0021639533806592226, -0.026042236015200615, -0.03707109019160271, -0.02562066540122032, -0.015203770250082016, -0.049745433032512665, -0.017406821250915527, -0.014020650647580624, 0.009825334884226322, 0.03130507841706276, 0.005449831020087004, 0.004215714521706104, 0.013034717179834843, 0.019161103293299675, 0.00839743111282587, -0.006153583526611328, -0.016346093267202377, 0.013524284586310387, 0.02717095986008644, 0.010172110982239246, 0.00413411995396018, -0.023200029507279396, 0.006401766557246447, -0.013898259028792381, 0.026164628565311432, -0.021921714767813683, 0.009777737781405449, -0.006360969506204128, -0.00717351445928216, 0.00900259055197239, -0.008934594690799713, 0.032121025025844574, -0.013082314282655716, -0.008383831940591335, 0.0025872248224914074, -0.005623219069093466, 0.016087710857391357, -0.03206662833690643, -0.009050187654793262, 0.07593725621700287, 0.006826737895607948, -0.0017576810205355287, 0.01092006079852581, 0.0002241723268525675, -0.017243633046746254, -0.005364836659282446, -0.0032569793984293938, -0.031577061861753464, -0.013123111799359322, 0.01519017107784748, -0.02118736505508423, 0.010471290908753872, 0.007071521133184433, 0.031658656895160675, -0.008043855428695679, -0.0023968378081917763, -0.0162780974060297, 0.0073842997662723064, 0.025675062090158463, 0.0346776507794857, 0.02688537910580635, -0.027225356549024582, -0.001772979972884059, -0.00967574492096901, 0.0015732435276731849, -0.014673406258225441, -0.002386638429015875, 0.008778205141425133, -9.083760232897475e-05, 0.014455821365118027, 0.02481831982731819, 0.008411030285060406, -0.004973863251507282, 0.01728442870080471, 0.020915383473038673, -0.015339761041104794, -0.01358547993004322, -0.008710210211575031, -0.02771492302417755, 0.0027096164412796497, -0.004579490050673485, 0.014551014639437199, 0.028095697984099388, -0.019106706604361534, -0.012919125147163868, 0.016890056431293488, 0.00718031357973814, -0.014659807085990906, -0.01997704803943634, -0.02256087213754654, 0.019473880529403687, 0.0330185629427433, 0.028041301295161247, -0.010784070007503033, 0.03402489423751831, 0.0271165631711483, 0.008717009797692299, 0.039056554436683655, -0.009254173375666142, 0.02387998253107071, 0.00632697157561779, 0.020534610375761986, 0.000358675722964108, -0.007894265465438366, 0.014755001291632652, 0.00794186256825924, 0.01937868818640709, -0.008186645805835724, -0.02502230554819107, 0.004259911365807056, -0.024124765768647194, -0.021921714767813683, -0.02390718087553978, 0.006428964901715517, -0.010457691736519337, -0.005062257405370474, -0.007391099352389574, -0.023322420194745064, -0.0271165631711483, -0.002743614139035344, 0.0036683515645563602, 0.014075047336518764, -0.0032841775100678205, 0.01128043606877327, 0.0035119622480124235, 0.005385235417634249, 0.024355951696634293, -0.03418808430433273, -0.013850661925971508, 0.012415959499776363, -0.035412002354860306, -0.04025327414274216, -0.019188301637768745, 0.0055348253808915615, 0.02189451828598976, 0.007683479692786932, -0.007377500645816326, -0.004817473702132702, -0.007275507319718599, -0.014741402119398117, -0.0403076708316803, -0.00756108807399869, -0.027823716402053833, -0.0029493002220988274, 0.008601417765021324, 0.0024376348592340946, 0.008077853359282017, 0.012041985057294369, 0.010559684596955776, 0.005864602979272604, 0.004372104071080685, -0.013905058614909649, -0.01630529575049877, 0.0009969824459403753, 0.018753129988908768, 0.01596531830728054, 0.014619010500609875, 0.022424882277846336, -0.02218009904026985, 0.014822996221482754, 0.004096722695976496, -0.0030070964712649584, -0.0022897450253367424, -0.003882537130266428, -0.015924520790576935, -0.00771747762337327, 0.006592153571546078, 0.00581020675599575, -0.013680673204362392, 0.020303424447774887, -0.017216434702277184, 0.02393437922000885, 0.02178572490811348, 0.03244740143418312, 0.013395093381404877, 0.004076323937624693, -0.00012579148460645229, 0.012959922663867474, -0.03310015797615051, 0.03184904158115387, -0.05208447203040123, -0.0037465463392436504, 0.032202620059251785, -0.00813904870301485, 0.02760613150894642, 0.008173046633601189, -0.03932853788137436, -0.017977982759475708, 0.0056470176205039024, 0.025634264573454857, 0.023349618539214134, -0.020915383473038673, -0.020017843693494797, -0.013898259028792381, 0.017325226217508316, -0.02742934226989746, -0.009655346162617207, -0.030625125393271446, 0.010165311396121979, 0.013109512627124786, 0.006071988958865404, 0.009838934056460857, -0.004348305519670248, -0.027442941442131996, -0.035439200699329376, 0.0004368704103399068, -9.444985334994271e-05, 0.018671534955501556, 0.033317744731903076, -0.004127320367842913, -0.008030256256461143, -0.007309505250304937, -0.008791804313659668, 0.005993794184178114, -0.026042236015200615, -0.0162780974060297, -0.0004887169343419373, 0.03144107013940811, -0.0013259102124720812, 0.044441789388656616, -0.004589689429849386, 0.03078831546008587, 0.028966039419174194, -0.008506223559379578, 0.007030724082142115, 0.0011448725126683712, -0.0041647180914878845, -0.013265902176499367, -0.01599251665174961, 0.0066635487601161, 0.0019701665733009577, 0.03190343827009201, -0.011702007614076138, 0.003838340053334832, 0.03198503330349922, 0.007989458739757538, 0.012837531045079231, -0.007805871311575174, -0.021568140015006065, -0.009104583412408829, 0.015026982873678207, -0.006167182233184576, 0.03579277545213699, -0.022996043786406517, -0.018671534955501556, 0.01086566410958767, 0.006768941879272461, -0.006214779336005449, 0.006473161745816469, 0.015611742623150349, -0.01406144816428423, 0.019813857972621918, 0.027782918885350227, 0.012749136425554752, -0.021377751603722572, 0.00016818236326798797, -0.027646927163004875, -0.011450424790382385, 0.021119369193911552, 0.004810674116015434, 0.02064340189099312, 0.018793927505612373, 0.013320297934114933, -0.0013667074963450432, -0.0027096164412796497, -0.024410346522927284, -0.024070370942354202, 0.012409159913659096, -0.022139301523566246, -0.02218009904026985, -0.03473204746842384, -0.02931961417198181, 0.000744974531698972, -0.006687347311526537, 0.02043941617012024, 0.007792272139340639, 0.02253367379307747, -0.021935313940048218, -0.014047848992049694, -0.010396496392786503, -0.026436610147356987, 0.03195783495903015, -0.02771492302417755, 0.021880919113755226, 0.02556626871228218, -0.009084184654057026, -0.017937185242772102, 0.0031311879865825176, 0.020085839554667473, -0.0016191403847187757, 0.03516721725463867, 0.00518804881721735, -0.01943308487534523, -0.007241509854793549, -0.009050187654793262, 0.017869189381599426, 0.010267305187880993, -0.020017843693494797, 0.0031464870553463697, 0.008132249116897583, 0.002424035919830203, -0.025430278852581978, 0.028014102950692177, -0.023254426196217537, -0.0012426158646121621, -0.003336874069646001, 0.0016131907468661666, -0.02092898264527321, -0.005262843798846006, -0.013503885827958584, 0.015203770250082016, 0.005126853007823229, 0.02173132821917534, 0.007513491436839104, 0.008934594690799713, -0.000406697450671345, -0.014306231401860714, -0.028340481221675873, 0.013796266168355942, -0.00915898010134697, -0.0012009686324745417, -0.021391350775957108, 0.015026982873678207, 0.013095913454890251, 0.0026722189504653215, -0.00865581352263689, 0.0018137771403416991, -0.017692402005195618, 0.0271165631711483, -0.010410095565021038, 0.011688408441841602, -0.001183119835332036, -0.0032654788810759783, -0.008710210211575031, -0.0027572133112698793, -0.011817599646747112, -0.0008010707679204643, -0.005096254870295525, -0.02256087213754654, 0.020031442865729332, 0.005334238987416029, 0.012694740667939186, 0.006428964901715517, -0.004684882704168558, -0.014673406258225441, 0.0023084436543285847, -0.01489099208265543, 0.015135775320231915, -0.0415043905377388, 0.016890056431293488, -0.014007051475346088, -0.0007670730701647699, -0.004640685860067606, 0.008037055842578411, -0.011103647761046886, 0.018821125850081444, 0.013898259028792381, -0.0058204056695103645, 0.014782198704779148, -0.001710084150545299, -0.006360969506204128, -0.02972758747637272, 0.00544643122702837, -0.014415023848414421, -0.00552462600171566, 0.009077385067939758, -0.013952654786407948, -0.00822744332253933, -0.029510002583265305, -0.00232204282656312, -0.018181968480348587, -0.01182439923286438, -0.014469420537352562, 0.016985250636935234, 0.0009629848063923419, 0.018413152545690536, -0.0010989755392074585, -0.008730608969926834, 0.030597928911447525, -0.016985250636935234, -0.0041817170567810535, 0.0027147161308676004, -0.01252475194633007, 0.0043925023637712, -0.009369765408337116, -0.018725931644439697, -0.0033708717674016953, -0.02504950389266014, -0.017148438841104507, -0.005283242091536522, 0.019229097291827202, 0.00887339934706688, 0.020072240382432938, -0.022343287244439125, 0.000706302176695317, -0.014931788668036461, 0.0032008832786232233, -0.0035391603596508503, 0.015298964455723763, 0.018481148406863213, 0.021146567538380623, 0.019297093152999878, 0.008886998519301414, -0.028068499639630318, -0.01027410477399826, 0.006252176593989134, -0.00371594843454659, -0.014931788668036461, 0.010566484183073044, -0.00544643122702837, 0.04142279550433159, 0.0033249747939407825, -0.011559217236936092, -0.038539789617061615, 0.004504695069044828, -0.014741402119398117, -0.017094042152166367, 0.012851130217313766, 0.009594150818884373, 0.029972370713949203, 0.027701323851943016, -0.005422632675617933, 0.040090084075927734, -0.01327270083129406, 0.01066167838871479, -0.02290084958076477, -0.0010675276862457395, -0.005313840229064226, 0.029564397409558296, -0.0018868722254410386, 0.003712548641487956, -0.015788530930876732, -0.024383148178458214, 0.012415959499776363, -0.02502230554819107, 0.019038710743188858, 0.01576133258640766, 0.011328033171594143, -0.02209850400686264, 0.006755342707037926, -0.009560152888298035, -0.015271766111254692, -0.003229781286790967, -0.0004823423514608294, -0.00662955129519105, 0.004270110744982958, -0.001686285831965506, 0.017352424561977386, -0.007105519063770771, -0.00490246806293726, -0.0014907990116626024, -0.008309037424623966, 0.011933191679418087, -0.010151712223887444, -0.0032977766823023558, 0.020480213686823845, -0.0194602832198143, 0.011416426859796047, -0.035412002354860306, -0.006116185802966356, 0.030461937189102173, 0.013000719249248505, 0.004943265113979578, -0.016631674021482468, 0.012987121008336544, -0.045448124408721924, 0.014687005430459976, 0.01185159757733345, 0.01894351653754711, 0.008920995518565178, -0.012300367467105389, 0.034324076026678085, -0.023064037784934044, 0.0017287828959524632, -0.03941013291478157, -0.0064493631944060326, -0.009866132400929928, 0.01748841628432274, 0.005874802358448505, -0.017134839668869972, -0.012551950290799141, -0.002723215613514185, 0.01436062715947628, -0.0087850047275424, -0.009648546576499939, -0.002509030047804117, -0.01006331853568554, 0.0005333388689905405, 0.0031821844168007374, -0.023716794326901436, 0.0005337638431228697, 0.012069182470440865, 0.017869189381599426, -0.041694775223731995, -0.022683264687657356, 0.19724103808403015, -0.010539286769926548, 0.0302987489849329, 0.03671751543879509, -0.003862138371914625, 0.019936250522732735, 0.013184307143092155, -0.008982191793620586, -0.005956396460533142, 0.0028779050335288048, -0.018209166824817657, 0.020874585956335068, -0.0273477490991354, 0.010355698876082897, 0.013469887897372246, 0.013306698761880398, -0.004253111779689789, -0.06054310128092766, -0.005198248196393251, -0.014700604602694511, 0.0026501205284148455, 0.021160166710615158, -0.01653647981584072, -0.026327816769480705, 0.035901568830013275, -0.016890056431293488, -0.0005439631640911102, 0.001286812825128436, 0.03290977329015732, 0.00034337674151174724, -0.015897324308753014, 0.026980573311448097, -0.00018539369921199977, 0.011763203889131546, -0.03500403091311455, -0.013483487069606781, 0.022139301523566246, -0.012225572019815445, 0.029999569058418274, -0.009981724433600903, 0.0330185629427433, -0.02970038913190365, -0.04297308996319771, -0.02256087213754654, 0.017991581931710243, 0.02258807048201561, -0.010804468765854836, -0.031005900353193283, -0.012973521836102009, 0.010688875801861286, -0.008159447461366653, -0.0066941468976438046, -0.0008121200371533632, 0.02685818076133728, 0.002956099808216095, -0.02184012159705162, 0.0005592621164396405, 0.02118736505508423, 0.016087710857391357, 0.025756655260920525, -0.011504820547997952, 0.036391135305166245, 0.0004942415398545563, 0.019501078873872757, 0.0021435548551380634, 0.004827673081308603, -0.03614635393023491, -0.005942797753959894, 0.010022521018981934, -0.014523816294968128, -0.006245377007871866, -0.018018780276179314, 0.00798265915364027, 0.011858397163450718, -0.01774679869413376, -0.00640516635030508, 0.02872125431895256, 0.0060651893727481365, -0.022751258686184883, 0.028938841074705124, -0.03201223164796829, -0.029074830934405327, -0.0013123111566528678, 0.008635415695607662, 0.002362840110436082, -0.031005900353193283, 0.03562958911061287, -0.03720708191394806, -0.006564955692738295, -0.014224636368453503, -0.02476392313838005, 0.007459094747900963, -0.013939056545495987, -0.003398069879040122, 0.02470952644944191, 0.0045216940343379974, -0.013238703832030296, 0.04101482406258583, -0.0014092045603320003, 0.0004024477384518832, -0.03190343827009201, 0.0424291267991066, 0.04259231686592102, 0.014673406258225441, 0.011804000474512577, 0.0095465537160635, -0.00662955129519105, -0.011736005544662476, 0.0033011764753609896, -0.01854914426803589, -0.014945387840270996, 0.0017848791321739554, 0.007989458739757538, -0.020657001063227654, 0.0032892771996557713, 0.010138113982975483, 0.0010938759660348296, -0.002133355475962162, -0.010525687597692013, 0.011837998405098915, -0.002803110284730792, -0.010539286769926548, -0.029455605894327164, 0.009267772547900677, -0.02926521748304367, -0.011062851175665855, -0.031740251928567886, 0.015611742623150349, -0.004059324972331524, -0.006544556934386492, 0.04259231686592102, -0.03707109019160271, 0.01314350962638855, -0.0022047506645321846, -0.008057454600930214, 0.012953123077750206, 0.0040015289559960365, -0.01989545300602913, -0.028367679566144943, 0.005616419482976198, 0.006717944983392954, -0.00573201198130846, 0.0035221613943576813, -0.02041221782565117, 0.01963707059621811, -0.015421356074512005, 0.003695549676194787, -0.013123111799359322, 0.004933066200464964, -0.03405209258198738, -0.007486293092370033, -0.0036173551343381405, -0.004273510538041592, -0.015366959385573864, 0.003314775647595525, -0.012925924733281136, -0.01115124486386776, -0.005891800858080387, -0.0018834724323824048, 0.004953464493155479, -0.02926521748304367, 0.024179162457585335, 0.027769319713115692, -0.00472228042781353, -0.009118182584643364, -0.015217369422316551, -0.1726539134979248, 0.016958052292466164, -0.008669412694871426, -0.017039645463228226, 0.025552669540047646, 0.013082314282655716, 0.033236149698495865, -0.005174449644982815, 0.019161103293299675, -0.006360969506204128, -0.01994984969496727, 0.0074658943340182304, -0.010158511810004711, -0.002553227124735713, -0.00015840803098399192, 0.01317070797085762, 0.008567419834434986, 0.004368704278022051, 0.02347201108932495, 0.019582673907279968, 0.015666138380765915, -0.024995107203722, 0.017134839668869972, -0.0056810155510902405, -0.009437761269509792, 0.030652323737740517, 0.008649013936519623, 0.005514426622539759, -0.03233861178159714, -0.03815901651978493, 0.01762440614402294, -0.011062851175665855, 0.02740214392542839, -0.00902978889644146, 0.020792992785573006, -0.010287703014910221, -0.004072924144566059, -0.011654410511255264, -0.019677868112921715, 0.005048658233135939, -0.002532828599214554, 0.03622794523835182, 0.0005762609653174877, -0.027007771655917168, -0.0071259173564612865, 0.02367599681019783, 0.012402360327541828, -0.03084271214902401, 0.0025022304616868496, -0.004259911365807056, 0.030516333878040314, -0.009940926916897297, 0.013238703832030296, 0.008465426973998547, 0.025267088785767555, -0.006653349380940199, -0.027878113090991974, 0.01705324463546276, -0.011110447347164154, 0.0069695282727479935, 0.0013327097985893488, -0.020099438726902008, -0.004290509503334761, -0.007391099352389574, 0.0010173810878768563, -0.010845265351235867, -0.03407929092645645, 0.005786408204585314, -0.05053417757153511, 0.014170240610837936, -0.003569758264347911, -0.0008745907689444721, 0.013435889966785908, 0.016985250636935234, -0.006646549794822931, 0.0009196377359330654, -0.012721939012408257, -0.0020347621757537127, 0.007343502715229988, -0.014428623020648956, -0.011396028101444244, 0.0067417435348033905, -0.007057921960949898, -0.019487479701638222, 0.0026110231410712004, -0.014619010500609875, -0.0005482129054144025, 0.007839868776500225, 0.00015490200894419104, -0.015394157730042934, 0.016917254775762558, -0.03682630509138107, -0.0030971902888268232, 0.005844204220920801, -0.008302237838506699, 0.025715859606862068, 0.012300367467105389, -0.011640811339020729, 0.0265182051807642, -0.00813904870301485, 0.004232713486999273, -0.03345373645424843, -0.034840840846300125, -0.009043388068675995, 0.011375629343092442, 0.01694445312023163, -0.03519441559910774, 0.0035527595318853855, 0.03992689773440361, 0.027905309572815895, -0.0154485534876585, -0.001011431566439569, 0.010641279630362988, 0.02235688641667366, -0.007411498110741377, 0.036880701780319214, -0.03288257494568825, -0.016958052292466164, 0.00772427674382925, 0.001615740591660142, 0.059890344738960266, -0.007078320719301701, -0.0013701071729883552, 0.0060651893727481365, -0.010396496392786503, -0.0004281584988348186, -0.11368830502033234, -0.020820191130042076, -0.006609152536839247, 0.02983637899160385, -0.0029866977129131556, 0.017841991037130356, -0.01653647981584072, 0.010709274560213089, 0.0022982442751526833, 0.03081551380455494, -0.004661084618419409, -0.014619010500609875, -0.004256511572748423, -8.818152855383232e-05, -0.028938841074705124, -0.013748669065535069, -0.016808461397886276, -0.014007051475346088, -0.02095618098974228, 0.03655432537198067, 0.0031124893575906754, 0.014578212983906269, -0.011457224376499653, -0.00881220307201147, -0.018902720883488655, 0.013286300003528595, -0.021962512284517288, 0.02866685949265957, 0.013347496278584003, 0.005048658233135939, 0.008179846219718456, -0.01490459032356739, -0.011987588368356228, -0.017638005316257477, 0.009811735711991787, -0.002279545646160841, 0.005140451714396477, -0.013211505487561226, 0.030407540500164032, -0.026613397523760796, 0.008261440321803093, 0.002849007025361061, -0.0005588371423073113, 0.0033249747939407825, 0.0031345877796411514, -0.002046661451458931, -0.039682112634181976, 0.01060728169977665, 0.007588285952806473, -0.03886616975069046, -0.023145632818341255, -0.014945387840270996, -0.04642725735902786, 0.007227910682559013, 0.01179720088839531, 0.001614040695130825, 0.001277463510632515, 0.004749478306621313, -5.6873100220400374e-06, 0.027524536475539207, 0.004933066200464964, -0.007669880520552397, -0.008132249116897583, 0.028476471081376076, 0.01702604629099369, 0.004378903657197952, -0.030108360573649406, -0.007996258325874805, 0.03511282056570053, -0.00998852401971817, 0.015788530930876732, 0.019365089014172554, -0.031087495386600494, 0.0237031951546669, -0.01682206057012081, 0.014197438955307007, 0.002871105680242181, 0.0028779050335288048, 0.015421356074512005, -0.005327439401298761, -0.02243848145008087, -0.030162757262587547, -0.02530788630247116, -0.006551356520503759, 0.023281622678041458, 0.017991581931710243, 0.003168585477396846, 0.022343287244439125, 0.02737494558095932, -0.017148438841104507, 0.019215498119592667, 0.011702007614076138, 0.0012069182703271508, 0.003994729369878769, -0.01489099208265543, 0.0016199903329834342, 0.014034249819815159, -0.015298964455723763, 0.004168117884546518, 0.013082314282655716, -0.041803568601608276, -0.0033249747939407825, -0.04773276671767235, 0.002471632556989789, -1.3838125596521422e-05, -0.02152734249830246, 0.013537883758544922, -0.005286641884595156, -0.009743739850819111, -0.006207979749888182, 0.006598953157663345, 0.0064561627805233, -0.03720708191394806, -0.0071259173564612865, -0.016835659742355347, 0.01412944309413433, -0.0133270975202322, -0.03609195724129677, 0.010076917707920074, -0.004603288136422634, 0.0032399806659668684, 0.03813181817531586, 0.01917470246553421, -0.009471758268773556, 0.006639750208705664, 0.004542092327028513, -0.019052309915423393, -0.004317707847803831, -0.00518804881721735, 0.03448726609349251, -0.011450424790382385, -0.02218009904026985, -0.008295438252389431, -0.008798603899776936, -0.009118182584643364, 0.012932724319398403, -0.00513705238699913, 0.018929917365312576, -0.004701881669461727, 0.019038710743188858, 0.012123579159379005, 0.026491006836295128, -0.0011601714650169015, -0.03405209258198738, -0.003753345925360918, -0.014496617950499058, -0.0136738745495677, 0.00032914022449404, -0.017298027873039246, 0.008030256256461143, 0.009974924847483635, -0.0025889247190207243, 0.019161103293299675, 0.029428407549858093, -0.01834515854716301, -0.03187623992562294, -0.015611742623150349, -0.0033827710431069136, 0.013626277446746826, -0.009118182584643364, 0.01619650237262249, 0.0008975391974672675, 0.023526407778263092, -0.008540221489965916, 0.0035629586782306433, -0.008662613108754158, 0.005113253835588694, -0.019909052178263664, -0.02714376151561737, 0.008805403485894203, 0.012946323491632938, -0.015570946037769318, -0.009879730641841888, 0.014047848992049694, 0.008703410625457764, 0.006163782440125942, 0.020820191130042076, -0.0017270829994231462, -0.02218009904026985, 0.01759720779955387, 0.002616122830659151, 0.023118434473872185, 0.011362031102180481, -0.005874802358448505, -0.011640811339020729, 0.0032212818041443825, 0.04022607579827309, 0.01943308487534523, 0.006762142293155193, 0.004453698638826609, 0.018521945923566818, 0.0012579148169606924, 0.0178011953830719, 0.0005567123298533261, -0.033861707895994186, -0.002031362382695079, -2.4289762222906575e-05, -0.00027389396564103663, -0.01104925200343132, 0.007771873846650124, -0.014523816294968128, -0.0024818319361656904, 0.016006115823984146, -0.018249964341521263, -0.00874420814216137, 0.00581020675599575, -0.041721973568201065, -0.0021010576747357845, -0.008050655014812946, -0.012062382884323597, -0.008315837010741234, 0.030407540500164032, -0.0045964885503053665, 0.01785559020936489, 0.014755001291632652, 0.010450892150402069, -0.04251072183251381, 0.000833793543279171, -0.018997913226485252, -0.00359015678986907, -0.030706720426678658, 0.02201690897345543, -0.0011270237155258656, 0.009220175445079803, 0.035874370485544205, 0.0009119882597588003, 0.02276485785841942, 0.01728442870080471, 0.03203942999243736, -0.01543495524674654, 0.0010105816181749105, 0.024206360802054405, -0.021649733185768127, 0.02972758747637272, -0.017719600349664688, -0.00518804881721735, -0.008846201002597809, -0.013191106729209423, 0.016890056431293488, 0.026069434359669685, 0.0035221613943576813, 0.07223831117153168, 0.026096632704138756, -0.008499424904584885, -0.0048412722535431385, -0.007221111096441746, -0.006619351916015148, 0.01935148984193802, -0.012483954429626465, -0.0033283745869994164, -0.024287955835461617, 0.006962728686630726, 0.0018256764160469174, -0.008703410625457764, -0.03236581012606621, -0.01081806793808937, 0.02387998253107071, -0.003902935655787587, 0.017502015456557274, -0.007098719477653503, -0.005007860716432333, 0.005579022224992514, 0.020616203546524048, 0.0026773186400532722, -0.007105519063770771, -0.022996043786406517, -0.010831666179001331, 0.024083970114588737, -0.0016284896992146969, -0.016985250636935234, -0.029999569058418274, 0.0049704634584486485, -0.005562023259699345, -0.025321485474705696, -0.02175852656364441, -0.011681608855724335, 0.03334494307637215, 0.0012689640279859304, -0.011130846105515957, 0.01782839186489582, -0.025158297270536423, 0.014007051475346088, -0.008057454600930214, -0.010593682527542114, -0.02931961417198181, -0.02396157756447792, 0.0024325354024767876, -0.02224809303879738, -0.0023713393602520227, -0.04414261132478714], "270fc7ae-49fc-4d87-a3e7-04ec0577a426": [-0.002136601135134697, 0.012222419492900372, 0.014451916329562664, -0.030575955286622047, -0.029328498989343643, 0.011585420928895473, -0.010397682897746563, -0.015686102211475372, 0.017716536298394203, -0.00647615734487772, 0.004959966521710157, 0.024298859760165215, -0.031053705140948296, 0.0015842034481465816, -0.0004296425904612988, 0.013164647854864597, 0.016230205073952675, -0.018472973257303238, 0.006462886463850737, -0.031372204422950745, -0.00028055330039933324, 0.005248607136309147, -0.009216580539941788, 0.01599133014678955, -0.010908609256148338, -0.0010434177238494158, 0.004916836507618427, -0.0012350151082500815, 0.016017872840166092, 0.019255951046943665, 0.008387153968214989, -0.006160975433886051, -0.010789171792566776, 0.0150491027161479, -0.01784924417734146, -0.004641467239707708, -0.01001282874494791, -0.02017163671553135, 0.009375830180943012, -0.02084844931960106, 0.03790144622325897, 0.03415907546877861, -0.00850659143179655, -0.012162701226770878, 0.0010558591457083821, 0.015699373558163643, 0.01185083668678999, -0.02286561205983162, 0.0027221757918596268, -0.0030041805002838373, 0.012063169851899147, 0.059984080493450165, -0.03681323677301407, -0.013483147136867046, -0.006874281447380781, 0.0036063436418771744, 0.017703264951705933, 0.00677143270149827, -0.008141644299030304, -0.0035565781872719526, 0.015009290538728237, -0.0032496906351298094, -0.018804743885993958, -0.0071330624632537365, -0.02408652752637863, -0.007026895880699158, -0.009442184120416641, 0.01782270334661007, 0.008619393222033978, 0.023263737559318542, 0.017052995041012764, 0.02845262549817562, 0.0020669293589890003, 0.03479607403278351, 0.012474564835429192, -0.013237636536359787, 0.01372202206403017, 0.020052200183272362, -0.025267628952860832, 0.014956207014620304, 0.007491374388337135, -0.03851190209388733, -0.017106078565120697, 0.0020669293589890003, 0.028824208304286003, 0.011034681461751461, -0.0025048661045730114, 0.024325402453541756, 0.0029593915678560734, -0.014146687462925911, -0.01061001606285572, 0.010185349732637405, 0.00857294537127018, 0.01986640878021717, -0.01730514131486416, 0.053906045854091644, 0.0036295675672590733, 0.0343448668718338, -0.013317261822521687, -0.011140848509967327, -0.018207557499408722, 0.013357073999941349, -0.027205169200897217, -0.014611165970563889, -0.012003451585769653, 0.005553835537284613, 0.008480049669742584, -0.03126603737473488, 0.015075644478201866, -0.011711493134498596, -0.0225338414311409, 0.011552243493497372, 0.01092851534485817, -0.03487569838762283, -0.01118066068738699, -0.011127577163279057, -0.013775104656815529, -0.011187296360731125, -0.010271609760820866, -8.677868027007207e-05, 0.03161107748746872, -0.019959304481744766, 0.04039635881781578, -0.0013237637467682362, 0.021166948601603508, -0.010278245434165001, 0.026634523645043373, -0.027895251289010048, -0.013045210391283035, -0.01632310077548027, 0.03076174668967724, 0.027205169200897217, -0.004386004060506821, -0.005434398539364338, 0.0033890341874212027, 0.023237194865942, 0.019295763224363327, 0.017384765669703484, -0.013576042838394642, -0.0033724457025527954, 0.0032214901875704527, 0.016429267823696136, 0.00010227858001599088, -0.003327656537294388, 0.006784703582525253, 0.028346458449959755, 0.019720429554581642, 0.004402592312544584, -0.018711848184466362, -0.0037523226346820593, 0.011459347791969776, -0.015407415106892586, -0.004906883463263512, -0.004402592312544584, 0.01615058071911335, -0.021591614931821823, 0.011585420928895473, -0.004240024834871292, 0.03028399683535099, -0.013828188180923462, 0.01681412197649479, 0.014531541615724564, -0.002388746477663517, -0.010384411551058292, -0.004412545822560787, 0.031053705140948296, 0.02102096937596798, 0.009296204894781113, -0.01983986608684063, 0.0070733437314629555, -0.00044083985267207026, 0.011777847073972225, -0.01766345277428627, 0.014013979583978653, 0.002901331754401326, 0.005241971462965012, 0.028134126216173172, -0.0012292091269046068, -0.0014083650894463062, 0.005338185001164675, -0.0025231135077774525, 0.019242679700255394, -0.006078032776713371, 0.04490843415260315, -0.019972575828433037, -0.021273115649819374, -0.02456427738070488, 0.018618952482938766, 0.020065471529960632, 0.017889056354761124, 0.01735822483897209, 0.024152880534529686, -0.007962488569319248, -0.015579935163259506, -0.6144917607307434, -0.008380519226193428, -0.025652483105659485, -0.02271963283419609, 0.012746617197990417, 0.009355924092233181, 0.0027254933957010508, 0.02136601135134697, -0.020065471529960632, 0.04275856167078018, 0.004943378269672394, 0.01076263003051281, -0.004372733179479837, -0.0009480337612330914, -0.028744583949446678, -0.024683713912963867, 0.011320004239678383, -0.02237459272146225, 0.014597895555198193, -0.001763359410688281, -0.000145356883876957, 0.024126339703798294, -0.019269222393631935, 0.012401575222611427, 0.0185127854347229, 0.01564629003405571, 0.002806777134537697, 0.015579935163259506, 0.040608689188957214, 0.0057031321339309216, -0.025267628952860832, -0.010417588986456394, -0.018751660361886024, 0.01783597469329834, 0.028319917619228363, 0.008062019944190979, -0.03729098662734032, 0.0017583828885108232, 0.0068145631812512875, 0.04721755534410477, -0.0225338414311409, -0.010576838627457619, 0.02824029140174389, 0.0019391976529732347, 0.022427676245570183, -0.03681323677301407, -0.017238786444067955, 0.02307794615626335, 0.014239583164453506, -0.021087324246764183, 0.03511457517743111, 0.00432628532871604, -0.006642042193561792, -0.026170045137405396, 0.03248695284128189, -0.00568322604522109, 0.01422631274908781, -0.017371496185660362, 0.023993631824851036, -0.04071485623717308, 0.018579140305519104, 0.0016538752242922783, -0.006177563685923815, 0.012441388331353664, -0.05008405074477196, 0.016044413670897484, -0.007989030331373215, 0.001869525876827538, 0.006993718910962343, -0.007703707553446293, 0.0046779620461165905, -0.0004165791324339807, -0.009402371942996979, -0.020078741014003754, 0.020291075110435486, 0.006207423284649849, 0.0022941918577998877, 0.0046182433143258095, 0.012262231670320034, -0.0018811378395184875, 0.012136159464716911, -0.025453420355916023, -0.012076440267264843, -0.03028399683535099, 0.030920997262001038, 0.011140848509967327, 0.004213483538478613, 0.007119791582226753, -0.0014257830334827304, 0.021419093012809753, 0.028824208304286003, 0.00842033140361309, 0.0014133417280390859, 0.01684066280722618, -0.014770415611565113, 0.008307529613375664, -0.027138814330101013, -0.008188092149794102, -0.008480049669742584, -0.02083517797291279, -0.0186720360070467, -0.022148989140987396, 0.023091215640306473, 0.02672741934657097, 0.01917632669210434, 0.02792179211974144, -0.023807840421795845, 0.0024318767245858908, 0.03577811270952225, -0.014571353793144226, -0.02084844931960106, -0.04522693529725075, -0.002800141694024205, 0.018977263942360878, -0.0011952026979997754, -0.019282491877675056, 0.04896930232644081, -0.021777406334877014, 0.021604884415864944, -0.02555958740413189, -0.0061576575972139835, 0.01159869134426117, 0.0005764509551227093, 0.002883084351196885, 0.01819428615272045, 0.017743078991770744, 0.0064197564497590065, 0.007663894910365343, -0.007166239432990551, 0.0032115369103848934, 0.028479166328907013, 0.01950809732079506, 0.005802663508802652, -0.003589755157008767, 0.022494029253721237, -0.00676811533048749, 0.0040442803874611855, -0.01245465874671936, 0.01949482597410679, -0.008453508839011192, 0.0247367974370718, -0.016774307936429977, -0.0030157924629747868, -0.029222331941127777, 0.0008485026773996651, -0.01950809732079506, -0.016747767105698586, -0.02137928083539009, -0.009807131253182888, -0.019892949610948563, 0.028346458449959755, -0.01816774345934391, -0.028346458449959755, 0.023131029680371284, 0.001974033657461405, -0.008606122806668282, -0.022308237850666046, -0.0002415702911093831, -0.008911351673305035, 0.009647881612181664, 0.0005022173863835633, 0.02709900215268135, -0.007484739180654287, -0.009309476241469383, -0.00814827997237444, -0.03378749266266823, -0.00883836206048727, 0.024763338267803192, -0.01816774345934391, -0.04496151953935623, 0.010391047224402428, 0.017729807645082474, -0.008937893435359001, -0.01666814275085926, -0.01649562269449234, 0.008347341790795326, -0.022268425673246384, 0.002642550738528371, 0.003301115008071065, -0.011797753162682056, -0.007305582985281944, 0.019614262506365776, 0.002285897731781006, -0.0007261623395606875, 0.007179510314017534, 0.006555782165378332, -0.002224520081654191, 0.00984030868858099, -0.025679025799036026, 0.0018313723849132657, 0.022308237850666046, 0.012029992416501045, -0.012640450149774551, -0.016601787880063057, 0.012142795138061047, 0.019733700901269913, 0.03630894795060158, -0.00907060131430626, -0.004877024330198765, 0.01819428615272045, 0.03731752932071686, 0.003034039866179228, 0.0016746108885854483, -0.03681323677301407, 0.00840042531490326, -0.004064186941832304, 0.02554631605744362, -0.008692382834851742, -0.0013121517840772867, 0.004372733179479837, -0.0015377555973827839, -0.01531451940536499, -0.011930461972951889, -0.0011595373507589102, 0.004993143957108259, 0.02725825272500515, -0.015407415106892586, 0.0023340045008808374, -0.011651774868369102, 0.009634611196815968, 0.016402726992964745, -0.004422498866915703, 0.027656376361846924, 0.0028731313068419695, -0.026209857314825058, -0.034238699823617935, 0.02609042078256607, -0.02658144012093544, -0.016203664243221283, -0.04119260609149933, 0.016057685017585754, -0.03264620155096054, 0.008725560270249844, 0.005686543881893158, -0.007557728327810764, -0.0042831553146243095, 0.030496330931782722, -0.0027935062535107136, 0.011459347791969776, 0.01447845809161663, 0.0017268647206947207, 0.03248695284128189, 0.011227108538150787, -0.03668053075671196, -0.02054321952164173, -0.008725560270249844, 0.019136514514684677, 0.005457622464746237, -0.01397416740655899, 0.0420684814453125, 0.008951163850724697, 0.004701185971498489, -0.014996020123362541, -0.020463595166802406, -0.03662744536995888, -0.04461647570133209, 0.005437715910375118, 0.015672830864787102, 0.007292312104254961, 0.03150491416454315, 0.020636115223169327, -0.005195523612201214, 0.003027404425665736, 0.0137883760035038, 0.0275767520070076, -0.008844997733831406, -0.017610369250178337, -0.03076174668967724, -0.012335221283137798, -0.03415907546877861, -0.012209149077534676, -0.03989206627011299, -0.03532690554857254, 0.015195081941783428, 0.03243387117981911, 0.005006414372473955, 0.011120942421257496, 0.0028963552322238684, -0.0022908742539584637, -0.006874281447380781, -0.017291869968175888, -0.0013030280824750662, 0.02773600071668625, 0.007584270089864731, -0.0006303636473603547, -0.00432628532871604, -0.013761834241449833, 0.018725117668509483, 0.0073122186586260796, 0.022839071229100227, -0.017743078991770744, 0.018725117668509483, -0.009468725882470608, 0.013078386895358562, 0.011724764481186867, 0.0036428384482860565, 0.025188004598021507, -0.008785278536379337, 0.008022206835448742, -0.0014150005299597979, -0.02407325617969036, 0.018406618386507034, -0.029540831223130226, -0.004604972433298826, 0.06980448216199875, -0.004170353524386883, 0.004614925477653742, 0.004638149403035641, 0.0046779620461165905, 0.0073852078057825565, 0.0009919933509081602, -0.010477307252585888, -0.016203664243221283, -0.014345750212669373, 0.008699018508195877, 0.01697337068617344, -0.010749359615147114, -0.001680416869930923, 0.010298151522874832, 0.004933425225317478, -0.013403521850705147, -0.014611165970563889, 0.005762850865721703, 0.011472619138658047, 0.03914890065789223, 0.03601698949933052, -0.013104928657412529, 0.01019198540598154, -0.03301778435707092, 0.0031849953811615705, -0.012985491193830967, -0.002514819148927927, 0.017544016242027283, -0.016694683581590652, -0.008592852391302586, 0.009063965640962124, 0.017198974266648293, 0.010974963195621967, -0.0013453287538141012, 0.004794081673026085, -0.0400247760117054, -0.024935860186815262, -0.006934000179171562, -0.0393877774477005, 0.009667787700891495, -0.016429267823696136, -0.005454304628074169, 0.05268513038754463, -0.011160754598677158, 0.01337698008865118, 0.009501902386546135, -0.009203309193253517, 0.005421127658337355, -0.006071397569030523, -0.01613730937242508, 0.025506503880023956, 0.017942139878869057, 0.040635231882333755, -0.019255951046943665, 0.021166948601603508, 0.03745023533701897, -0.0015883505111560225, 0.03309740871191025, -0.0012814629590138793, 0.028293374925851822, 0.013058480806648731, 0.011638503521680832, 0.0024169469252228737, -0.004940060433000326, 0.032407328486442566, -0.0001797780569177121, 0.04368751868605614, 0.00014141711289994419, -0.008095196448266506, -0.012441388331353664, -0.012302044779062271, -0.03617623820900917, -0.026302753016352654, 0.01954790949821472, 0.00551402335986495, 0.000643634470179677, -0.020994428545236588, -0.02067592740058899, -0.027205169200897217, 0.022122446447610855, -0.027629835531115532, 0.021233301609754562, -0.008387153968214989, 0.02390073612332344, -0.024617359042167664, 0.0042831553146243095, 0.009183403104543686, -0.0296204574406147, -0.03076174668967724, 0.016243476420640945, -0.020609574392437935, 0.0007191122276708484, -0.02019817940890789, 0.037954527884721756, 0.014863311313092709, 0.017092809081077576, -0.010616650804877281, 0.025134921073913574, 0.010046006180346012, 0.006751526612788439, -0.006967177148908377, 0.006588959135115147, -0.027629835531115532, 0.008957799524068832, 0.027709459885954857, -0.011379723437130451, 0.008692382834851742, -0.029540831223130226, 0.011519066989421844, -0.0023340045008808374, -0.0007701219292357564, 0.02930195815861225, 0.003299456089735031, -0.005421127658337355, -0.004522029776126146, 0.011160754598677158, 0.001495454809628427, 0.024325402453541756, -0.010815713554620743, -0.001308004604652524, 0.014836770482361317, -0.0046248785220086575, -0.004528665449470282, 0.013317261822521687, -0.018472973257303238, 0.027789084240794182, -0.002267650328576565, 0.012859418988227844, 0.009999558329582214, 0.021405823528766632, -0.0055704242549836636, -0.0019043617649003863, 0.001866208272986114, 0.01681412197649479, 0.03392019867897034, -0.008407060988247395, 0.02273290418088436, 0.010138901881873608, -0.010729453526437283, 0.009780589491128922, -0.028319917619228363, -0.010968327522277832, 0.010291515849530697, -0.013297355733811855, -0.0068941880017519, -0.015579935163259506, -0.05398567020893097, -0.02455100603401661, 0.025692295283079147, 0.024803150445222855, 0.000694644171744585, -0.0027039283886551857, -0.015141998417675495, -0.03129258006811142, 0.018539326265454292, -0.012693533673882484, 0.017278600484132767, -0.021777406334877014, -0.017557287588715553, -0.012421482242643833, -0.020556490868330002, 0.029009999707341194, -0.008831726387143135, -0.009110413491725922, -0.03285853564739227, -0.010497214272618294, 0.00865257065743208, 0.00040185684338212013, 0.0198531374335289, 0.02185703068971634, -0.007876228541135788, -0.01061001606285572, -0.00349022401496768, -0.0070136249996721745, 0.0011164072202518582, -0.019906220957636833, 0.018791472539305687, 0.029673540964722633, 0.014531541615724564, 0.03280545398592949, -0.0007709513301961124, 0.03328320011496544, 0.0043428740464150906, 0.008347341790795326, 0.00012234032328706235, -7.98322435002774e-05, 0.0002600250008981675, -0.024604089558124542, -0.0191497839987278, 0.016721226274967194, 0.003735734149813652, 0.021817218512296677, 0.018937451764941216, -0.00789613462984562, 0.024789880961179733, 0.00791604071855545, 0.016907017678022385, -0.013602584600448608, -0.0021830489858984947, -0.011227108538150787, 0.0030821466352790594, 0.009906662628054619, 0.020437054336071014, -0.006622136104851961, 0.014491728506982327, 0.01092851534485817, -0.016522163525223732, 0.0014365656534209847, 0.008008936420083046, 0.005769486539065838, -0.0064861103892326355, 0.01565956138074398, 0.0300982054322958, -0.013184553943574429, -0.0070733437314629555, -0.02104751020669937, -0.04036981612443924, 0.008048748597502708, -0.0073188538663089275, -0.03269928693771362, 0.013184553943574429, 0.011174025014042854, -0.015765726566314697, -0.0022925331722944975, -0.0032845265232026577, -0.018897639587521553, -0.025506503880023956, 0.014650979079306126, 0.002972662216052413, -0.003612979082390666, -0.008108467794954777, -0.037105195224285126, -0.02826683409512043, 0.00597518403083086, 0.024988941848278046, -0.0006054808618500829, 0.015221623703837395, -0.035937365144491196, -0.029567373916506767, -0.010669734328985214, -0.004359462298452854, 0.028479166328907013, 0.0015435615787282586, 0.03999823331832886, 0.021963197737932205, 0.00618419935926795, -0.030151288956403732, -0.014120145700871944, 0.01933557540178299, 0.010371141135692596, 0.022294968366622925, 0.017610369250178337, -0.00016951390716712922, -0.0021084004547446966, -0.0030804877169430256, -0.007942582480609417, -0.00560028338804841, -0.0207157414406538, 0.011757940985262394, 0.005961913149803877, -0.00631027203053236, -0.007929311133921146, 0.030867913737893105, -0.04121914878487587, 0.005613554269075394, -0.023794569075107574, 0.013410157524049282, 0.004568477626889944, -0.01245465874671936, -0.026183316484093666, -0.007471468299627304, 0.010868797078728676, 0.01479695737361908, 0.009614705108106136, -0.002614350290969014, -0.006277095060795546, 0.002637574216350913, -0.03344245254993439, 0.03076174668967724, -0.015579935163259506, 0.009866850450634956, -0.026369107887148857, -0.009647881612181664, 0.009402371942996979, 0.005218747537583113, -0.0026077148504555225, 0.007995665073394775, -0.019600993022322655, 0.027019377797842026, 0.004807352554053068, -0.01799522340297699, -0.021113865077495575, 0.0013320579892024398, -0.014956207014620304, -0.0011520725674927235, -0.026807043701410294, -0.015686102211475372, -0.015579935163259506, -0.015686102211475372, 0.0262364000082016, 0.016216935589909554, -0.028877291828393936, -0.023980360478162766, -0.017225516960024834, -0.01718570478260517, -0.014305937103927135, 0.016747767105698586, 0.026170045137405396, -0.0063069541938602924, -0.0036162969190627337, -0.02744404412806034, -0.012992126867175102, -0.016429267823696136, 0.009893392212688923, -0.002715540351346135, 0.031398747116327286, 0.02336990274488926, -0.036733612418174744, 0.015447227284312248, -0.027709459885954857, -0.018738389015197754, -0.027337877079844475, -0.009110413491725922, -0.01186410803347826, -0.014664249494671822, 0.011253650300204754, 0.004784128628671169, -0.028691500425338745, -0.018446430563926697, 0.008373883552849293, -0.003403963753953576, 0.0001309456129092723, 0.0025629259180277586, 0.015394143760204315, -0.005291737150400877, 0.01819428615272045, 0.020145095884799957, -0.03585774078965187, 0.04036981612443924, -0.0403432734310627, -0.0016480692429468036, 0.02773600071668625, -0.020052200183272362, 0.0024998895823955536, 0.0004959966754540801, -0.03195612132549286, 0.0073188538663089275, -0.014850040897727013, -0.010683005675673485, -0.023462798446416855, 0.021764134988188744, 0.02185703068971634, 0.017544016242027283, -0.01600460149347782, -0.008294259198009968, 0.00040994375012815, 0.010729453526437283, -0.009501902386546135, 0.00395138468593359, 0.005689861718565226, -0.005762850865721703, 0.014850040897727013, 0.00867247674614191, -0.01353623066097498, -0.006482792552560568, -0.006499381270259619, -0.01043085940182209, 0.008035478182137012, -0.01634964346885681, -0.008174821734428406, -0.0010118995560333133, -0.0025911263655871153, 0.004780810791999102, -0.028532249853014946, 0.004794081673026085, 0.00958816334605217, -0.02405998483300209, -0.003845218336209655, 0.0036892862990498543, 0.0430239774286747, 0.033203575760126114, -0.005168981850147247, 0.024338671937584877, 0.01918959617614746, 0.010563568212091923, -0.04928780347108841, -0.0035565781872719526, 0.0026408920530229807, 0.028638416901230812, 0.011545607820153236, 0.002345616463571787, -0.01865876466035843, -0.01579226925969124, -0.020808637142181396, -0.014000709168612957, 0.01597806066274643, 0.026541627943515778, 0.01864549331367016, -0.02980624884366989, -0.028346458449959755, -0.007876228541135788, 0.014597895555198193, 0.01228213869035244, -0.024856233969330788, -0.0027138814330101013, 0.0020237991120666265, -0.012905866838991642, 0.043342478573322296, -0.02638237737119198, 0.005769486539065838, -0.0004777493013534695, -0.014332478865981102, 0.012142795138061047, 0.00040185684338212013, -0.009402371942996979, 0.012660356238484383, -0.023595506325364113, 0.0019873043056577444, 0.002096788492053747, 0.008095196448266506, 0.029912414029240608, -0.008048748597502708, 0.003944749478250742, -0.021618155762553215, 0.00555715337395668, -0.054781921207904816, 0.018446430563926697, 0.007245864253491163, 0.01832699403166771, -0.009740777313709259, -0.02100769802927971, 0.023608777672052383, -0.029169248417019844, 0.008599487133324146, -0.006608865223824978, 0.023237194865942, -0.030337080359458923, 0.008022206835448742, -0.026342565193772316, -0.015088915824890137, 0.0253737960010767, 0.030894454568624496, -0.018539326265454292, 0.023821111768484116, -0.024776609614491463, -0.019561178982257843, -0.028718041256070137, 0.007703707553446293, 0.0021465541794896126, -0.0023771345149725676, 0.0009430572390556335, 0.0006523434421978891, -0.008035478182137012, -0.03243387117981911, -0.011081129312515259, 0.16339026391506195, -0.016270017251372337, 0.020795365795493126, 0.010391047224402428, -0.00017200219735968858, 0.02977970615029335, 0.02352915331721306, -0.015752457082271576, -0.007464833091944456, -0.0019275856902822852, -0.022931966930627823, 0.0031020527239888906, -0.04639476537704468, 0.01901707611978054, -0.007531187031418085, 0.004638149403035641, -0.01596478931605816, -0.040475983172655106, 0.002806777134537697, -0.0005519828991964459, 0.009714235551655293, -0.007239229045808315, -0.01473060343414545, -0.015035832300782204, 0.033734407275915146, -0.005815934389829636, -0.017106078565120697, 0.012839512899518013, 0.010311422869563103, -0.0026226446498185396, -0.025957712903618813, -0.0017135938396677375, -0.01685393415391445, 0.012242325581610203, -0.02118021994829178, -0.01983986608684063, 0.003838582895696163, 0.006462886463850737, 0.02845262549817562, -0.015088915824890137, 0.024471381679177284, -0.021671239286661148, -0.024643901735544205, -0.007856321521103382, -0.0009613045840524137, 0.009528444148600101, -0.0064197564497590065, -0.012474564835429192, -0.007657259702682495, 0.006900823209434748, -0.026634523645043373, -0.02723171003162861, -0.003423870075494051, 0.027709459885954857, 0.005182252731174231, -0.007584270089864731, 0.003709192620590329, 0.012441388331353664, 0.011233744211494923, 0.013668938539922237, -0.01819428615272045, 0.035565782338380814, 0.008971069939434528, 0.0028117536567151546, -0.03713173791766167, 0.02744404412806034, -0.03097407892346382, -0.018419889733195305, -0.006628771778196096, -0.029726622626185417, 0.017265329137444496, -0.005822569597512484, -0.023502610623836517, -0.0011122600408270955, -0.018459701910614967, -0.019481554627418518, 0.011240379884839058, -0.0015933271497488022, 0.006323542911559343, 0.014438645914196968, -0.04291781410574913, -0.011718128807842731, -0.021657967939972878, 0.02051667869091034, -0.03482261672616005, 0.002017163671553135, 0.021100593730807304, -0.009216580539941788, -0.001204326399601996, -0.042811647057533264, -0.017530744895339012, -0.014942936599254608, -0.006665266118943691, -0.014252854511141777, 0.002201296156272292, 0.013522959314286709, -0.013582678511738777, 0.025493234395980835, -0.002030434552580118, 0.0004198968526907265, -0.022759446874260902, 0.057966914027929306, -0.007172875106334686, 0.012229055166244507, -0.00416040001437068, -0.006934000179171562, -0.016017872840166092, -0.0009297864162363112, -0.004774175118654966, -0.03142528608441353, 0.018963992595672607, -0.018924180418252945, -0.010656463913619518, 0.0057197208516299725, 0.02151198871433735, -0.010822349227964878, -0.021140405908226967, -0.004833893850445747, -0.017066266387701035, 0.005341502837836742, 0.010118995793163776, 0.011731399223208427, -0.00601831404492259, 0.02120676077902317, -0.007033531554043293, 0.0030025215819478035, -0.050057511776685715, 0.010523755103349686, 0.008108467794954777, -0.004986508283764124, 0.05504733696579933, -0.04761568084359169, 0.005673273000866175, 0.012547554448246956, -0.013629126362502575, 0.0036395208444446325, 0.008446873165667057, -0.02238786406815052, -0.014956207014620304, -0.011081129312515259, -0.0034404585603624582, 0.015022561885416508, 0.004216800909489393, -0.01731841266155243, 0.015035832300782204, -0.023409714922308922, -0.003755640471354127, -0.014956207014620304, 0.01965407468378544, -0.025679025799036026, -0.02895691618323326, -0.012912501581013203, -0.001869525876827538, -0.04493497684597969, -0.026554899290204048, -0.02388746477663517, -0.012255596928298473, -0.010065912269055843, 0.012812971137464046, 0.006661948747932911, -0.028479166328907013, -0.01185083668678999, -0.006014996208250523, -0.015686102211475372, -0.01556666474789381, -0.012647085823118687, -0.16466425359249115, 0.018618952482938766, 0.00014815619215369225, -0.030549414455890656, 0.015115456655621529, -0.002239449881017208, 0.036415114998817444, -0.017212245613336563, -0.021671239286661148, 0.014491728506982327, -0.017278600484132767, 0.0021067417692393064, -0.013562771491706371, -0.022998319938778877, -0.013868000358343124, -0.012149429880082607, 0.0007066708640195429, 0.016548704355955124, 0.003695921739563346, 0.020065471529960632, 0.031372204422950745, -0.01531451940536499, 0.017769619822502136, 0.0040973639115691185, -0.018406618386507034, -0.002035411074757576, -0.0006622965447604656, 0.018924180418252945, -0.013177918270230293, -0.04764222353696823, -0.003881713142618537, -0.0009231509757228196, 0.002679045544937253, 0.020490135997533798, 0.011061223223805428, 0.0020835178438574076, 0.026289481669664383, -0.02102096937596798, 0.008712288923561573, 0.005580377299338579, 0.010921879671514034, 0.05228700861334801, -0.005192205775529146, 0.004953331314027309, 0.00010393743286840618, 0.01144607737660408, 0.03553923964500427, -0.007471468299627304, 0.0034802709706127644, -0.028850749135017395, 0.037078652530908585, -0.012242325581610203, -0.021591614931821823, 0.009661152958869934, 0.03832611069083214, 0.001267362735234201, -0.003256326075643301, 0.008785278536379337, -0.030920997262001038, -0.009999558329582214, -0.007710342761129141, -0.019733700901269913, -0.018220826983451843, 0.008347341790795326, 0.007358666509389877, -0.010371141135692596, -0.01865876466035843, 0.017398037016391754, -0.04424489289522171, 0.004435769747942686, 0.00244348868727684, -0.003987879492342472, 0.03094753809273243, 0.039600107818841934, 0.0006452933303080499, 0.002257697284221649, 0.0017932187765836716, 0.00993984006345272, -0.0037655935157090425, -0.04286472871899605, -0.009581527672708035, 0.023807840421795845, -0.009614705108106136, -0.002974321134388447, 0.022507300600409508, -0.015420685522258282, -0.010729453526437283, -0.002990909619256854, 0.01447845809161663, 0.007245864253491163, 0.019720429554581642, -0.034902241080999374, 0.038113776594400406, 0.012899231165647507, 0.012925772927701473, 0.03662744536995888, 0.012083075940608978, -0.005023003090173006, 0.023237194865942, -0.010099089704453945, -0.029142707586288452, -0.02689993940293789, 0.0018147837836295366, -0.02120676077902317, 0.011505795642733574, 0.001182761276140809, -0.013868000358343124, 0.020928073674440384, 0.017039725556969643, 0.008612758480012417, -0.002775259083136916, 0.0001524070103187114, 0.01868530549108982, 0.02810758352279663, 0.015858622267842293, 0.01899053528904915, -0.020954614505171776, -0.012295409105718136, 0.01212288811802864, 0.006333495955914259, 0.03668053075671196, -0.016734495759010315, 0.005381315015256405, 0.0012524330522865057, -0.008851632475852966, 0.014637707732617855, -0.11285500228404999, -0.02557285875082016, 0.00394806731492281, 0.027895251289010048, -0.006987083703279495, 0.024179423227906227, -0.020954614505171776, 0.03110678866505623, 0.006588959135115147, 0.032248079776763916, -0.020782094448804855, 0.030708663165569305, -0.01696009933948517, 0.014690791256725788, -0.022759446874260902, -0.007405114360153675, -0.022427676245570183, 0.00031331562786363065, -0.027815626934170723, 0.024471381679177284, 0.00428647268563509, -0.00848668534308672, 0.015911705791950226, -0.01372202206403017, -0.008825091645121574, 0.02826683409512043, -0.020264532417058945, 0.03601698949933052, 0.009880120866000652, 0.001847960869781673, 0.015168540179729462, -0.004757586866617203, -0.012972220778465271, -0.0040376451797783375, 0.002547996351495385, 0.02606387808918953, -0.002821706933900714, -0.006134433671832085, 0.03569848835468292, -0.0022328144405037165, 0.014027249999344349, -0.017398037016391754, -0.015327789820730686, -0.014465187676250935, 0.015858622267842293, -0.008327435702085495, -0.019109971821308136, 0.009880120866000652, -0.01916305534541607, -0.010105724446475506, -0.011220472864806652, -0.003798770485445857, -0.01337698008865118, 0.0024318767245858908, 0.0019342211307957768, 0.018804743885993958, 0.013522959314286709, 0.011061223223805428, -0.040130943059921265, -1.334857279289281e-05, 0.012063169851899147, 0.038644611835479736, 0.011021411046385765, 0.020914802327752113, 0.00942227803170681, 0.0089047159999609, -0.038273029029369354, -0.014571353793144226, 0.031717244535684586, -0.002780235605314374, 0.021312927827239037, 0.034424491226673126, -0.024113068357110023, 0.02355569414794445, -0.010079183615744114, 0.04469610005617142, 0.0019259268883615732, -0.0007323830504901707, 0.016721226274967194, -0.006442980375140905, -0.005129169672727585, -0.011087764985859394, -0.025320712476968765, -0.022480759769678116, 0.024643901735544205, 0.01076263003051281, -0.003223148873075843, 0.021976467221975327, 0.001743453205563128, -0.010755994357168674, 0.007471468299627304, 0.010105724446475506, 0.018061578273773193, -0.0016455809818580747, -0.004167035687714815, 0.023104486986994743, 0.00019056058954447508, -0.007371937390416861, -0.006243918091058731, -0.01019198540598154, -0.025811733677983284, 0.004548571538180113, -0.03723790496587753, 0.00976068340241909, -0.004505441524088383, 0.002098447410389781, 0.003301115008071065, 0.0072524999268352985, -0.010397682897746563, -0.008300893940031528, 0.013383615761995316, 0.005772803910076618, -0.01852605678141117, 0.01920286752283573, -0.011777847073972225, -0.00411727000027895, -0.013045210391283035, -0.02824029140174389, 0.021631427109241486, -0.007843051105737686, 0.028718041256070137, 0.04745643213391304, -0.0015037490520626307, 0.01185083668678999, 0.03333628550171852, -0.006701760925352573, 0.016362912952899933, -0.01092851534485817, 0.005693179089576006, 0.0302574560046196, 0.006243918091058731, -0.04116606339812279, -0.010085818357765675, -0.011087764985859394, -0.011207202449440956, 0.014199770987033844, -0.005822569597512484, 0.0006278753862716258, -0.013151376508176327, -0.0036063436418771744, 0.017743078991770744, -0.017437849193811417, -0.0003120714973192662, -0.03837919235229492, 0.01681412197649479, -0.014597895555198193, -0.01320446003228426, 0.0026458685752004385, -0.011645139195024967, 0.01916305534541607, 0.006280412897467613, -0.008732195943593979, 0.02475006878376007, 0.019070159643888474, -0.0021498717833310366, -0.020251262933015823, 0.005673273000866175, -0.024524463340640068, 0.03277891129255295, -0.041272230446338654, 0.0011537313694134355, 0.011744670569896698, -0.01187074277549982, -0.008028842508792877, 0.0103578707203269, -0.03628240525722504, -0.014106875285506248, -0.03381403535604477, -0.026037337258458138, -0.01329072006046772, -0.021750863641500473, -0.016243476420640945, -0.007949217222630978, 0.01397416740655899, 0.02773600071668625, -0.017026454210281372, 0.04140494018793106, -0.022454217076301575, -0.02792179211974144, 0.004130540881305933, -0.0030224279034882784, 0.0274175014346838, 0.044669561088085175, -0.01404052134603262, -0.012089711613953114, -0.006542511284351349, 0.03718481957912445, 0.018579140305519104, -0.021963197737932205, -0.004309696611016989, 0.02877112478017807, 0.01681412197649479, 0.0048637534491717815, 0.011645139195024967, -0.046845972537994385, 0.011452712118625641, -0.0032480317167937756, 0.024803150445222855, -0.002927873283624649, -0.006293683312833309, 0.009953110478818417, -0.010384411551058292, 0.005663319956511259, 0.005338185001164675, -0.019946033135056496, 0.016535434871912003, -0.03636202961206436, -0.0022560383658856153, 0.008606122806668282, -0.018287181854248047, -0.007511280942708254, 0.03686632215976715, -0.005374679807573557, 0.0013594289775937796, 0.010523755103349686, 0.010464036837220192, -0.008964435197412968, 0.009860214777290821, -0.017862515524029732, -0.006011678837239742, -0.025533046573400497, 0.013642396777868271, -0.0026923164259642363, 0.016402726992964745, 0.04339556023478508, 0.017915599048137665, 0.04201539605855942, 0.010517120361328125, 0.016270017251372337, -0.017252057790756226, -0.007219322957098484, 0.024166151881217957, 0.0031800188589841127, -0.019123243167996407, -0.04220118746161461, -0.010318057611584663, -0.0071861459873616695, -0.01616385206580162, 0.019322305917739868, 0.000675567367579788, 0.0036295675672590733, 0.0709192305803299, -0.009057330898940563, -0.01680085062980652, 0.0019176326459273696, -0.009873485192656517, 0.019627533853054047, 0.0367070697247982, -0.020755553618073463, -0.022653279826045036, -0.03723790496587753, 0.036919403821229935, -0.008015572093427181, 0.003672697814181447, -0.02930195815861225, -0.011386358179152012, 0.008101832121610641, -0.0021697781048715115, 0.02609042078256607, -0.028479166328907013, 0.003735734149813652, 0.024789880961179733, 0.020078741014003754, -0.007544457912445068, -0.018592409789562225, -0.03315049409866333, -0.027523668482899666, -0.0012831218773499131, -0.021419093012809753, -0.007750155404210091, -0.023821111768484116, 0.026793774217367172, 0.0032463727984577417, -0.03381403535604477, -0.02356896549463272, 0.00606144405901432, 0.03599044680595398, 0.005368044134229422, -0.012992126867175102, 0.0031120057683438063, -0.019309034571051598, -0.005228700581938028, 0.0005938688991591334, -0.02153853140771389, -0.01498274877667427, -0.025280900299549103, -0.02122003212571144, 0.0066121830604970455, 0.005232018418610096, -0.03243387117981911], "d37333a6-d060-47f4-9e0e-29273ac89aa1": [-0.017945120111107826, 0.019022351130843163, -0.014844791032373905, -0.027745308354496956, -0.016027119010686874, 0.02334441989660263, -0.0025157323107123375, -0.010036655701696873, -0.005336899310350418, -0.038307443261146545, -0.0040199169889092445, 0.020375460386276245, -0.004611080978065729, 0.019311364740133286, -0.007002012338489294, 0.02440851554274559, 0.027719035744667053, -0.002364656887948513, 0.008657271973788738, -0.005550375673919916, 0.013005613349378109, 0.029479390010237694, -0.012913654558360577, -0.004831125494092703, -0.009734504856169224, 0.03518084064126015, 0.009879011660814285, -0.008079244755208492, -0.01059497706592083, -0.004663628991693258, 0.01797139272093773, -0.0059182108379900455, -0.014476955868303776, 0.008532471023499966, -0.01956096850335598, -0.006348447408527136, 0.0002688976237550378, -0.015081256628036499, -0.009005402214825153, -0.012966202571988106, 0.025761624798178673, 0.003299024887382984, -0.007350142113864422, -0.03397223725914955, -0.00047457352047786117, 0.022595610469579697, 0.01547536626458168, -0.03131856769323349, -0.012309353798627853, 0.00899883359670639, 0.027745308354496956, 0.05294204130768776, -0.05084012448787689, -0.011218983680009842, -0.009879011660814285, -0.013097572140395641, 0.008722957223653793, 0.015094393864274025, -0.007619450334459543, -0.007015149109065533, -0.01091026421636343, 0.0031413810793310404, -0.028402157127857208, -0.004322067368775606, -0.007993854582309723, -0.009484902024269104, 0.03292128071188927, 0.004437016323208809, 0.0019065047381445765, 0.0352596640586853, 0.006200656294822693, 0.03594278544187546, 0.02992604859173298, 0.01903548836708069, 0.033394210040569305, -0.011225552298128605, -0.01414853148162365, -0.0006408384651876986, -0.0054649850353598595, -0.014871065504848957, 0.011225552298128605, -0.021570926532149315, -0.02234600856900215, 0.02164974808692932, 0.009662250988185406, 0.021899351850152016, -0.0010706641478464007, 0.02155778929591179, -0.003612670348957181, -0.023002857342362404, -0.005543807055801153, -0.005882084369659424, 0.010608114302158356, 0.013609915040433407, -0.018680790439248085, 0.015265174210071564, 0.011317511089146137, 0.03407733514904976, -0.00849962793290615, 0.00961627159267664, -0.01516007911413908, 0.0013925202656537294, -0.023830488324165344, -0.01497616060078144, -0.022201502695679665, 0.007363279350101948, 0.010168025270104408, -0.021478967741131783, 0.00651594391092658, -0.009452059864997864, -0.0052120983600616455, 0.009596566669642925, 0.00782307330518961, -0.014923613518476486, 0.015922022983431816, -0.006804957520216703, 0.012289647944271564, -0.020533105358481407, -0.008722957223653793, 0.0071465191431343555, 0.030504075810313225, -0.009307553060352802, 0.027324926108121872, 0.007034854497760534, 0.031003281474113464, -0.042590100318193436, 0.005822967737913132, -0.010391353629529476, -0.03602160885930061, -0.023462651297450066, 0.018772749230265617, 0.038202349096536636, -0.005579933524131775, -0.0027439873665571213, -0.0012816769303753972, 0.013531092554330826, -0.009885580278933048, 0.014345585368573666, -0.0036553656682372093, -0.007074265740811825, 0.023226186633110046, 0.011396332643926144, 0.012079455889761448, 0.0006474069668911397, 0.010765757411718369, 0.019587242975831032, 0.018877845257520676, 0.004305646289139986, -0.0018753043841570616, -0.015856338664889336, 0.02693081647157669, 0.0063615841791033745, 0.010916832834482193, -0.01389892864972353, 0.015580462291836739, 0.003566690953448415, 0.011586818844079971, 0.009984107688069344, 0.009379805997014046, -0.003898399882018566, 0.011567113921046257, 0.046215906739234924, -0.005570081062614918, -0.0029706002678722143, 0.0048935264348983765, 0.020283501595258713, 0.019088037312030792, -0.0027012922801077366, -0.013425996527075768, -0.009833032265305519, -0.0213607344776392, -0.0018441040301695466, -0.02051996812224388, 0.02438224107027054, 0.011002223938703537, -0.029006458818912506, 0.040461909025907516, -0.003566690953448415, -0.019048625603318214, -0.0031331705395132303, -0.004985485225915909, 0.007566902320832014, -0.010417628102004528, 0.024158911779522896, -0.02042800933122635, -0.02636592462658882, 0.0013013824354857206, 0.03481300547719002, 0.011678778566420078, 0.014700284227728844, 0.012296216562390327, 0.037808239459991455, 0.006870642304420471, 0.012184551917016506, -0.6137598752975464, -0.004056043457239866, -0.013859517872333527, -0.04274774342775345, 0.011645935475826263, 0.006302467547357082, -0.011205846443772316, 0.011067908257246017, -0.01942959800362587, 0.03875410184264183, -0.014056571759283543, 0.006594765465706587, 0.016447503119707108, -0.006857505068182945, -0.017288269475102425, -0.029348021373152733, 0.01003008708357811, -0.026379061862826347, 0.00014563577133230865, 0.003964084666222334, 0.004460006020963192, 0.015435955487191677, -0.023305008187890053, -0.0003815883246716112, 0.0011757600586861372, 0.010772326029837132, 0.006890347693115473, 0.012999044731259346, 0.0005205529741942883, 0.014332449063658714, -0.04348341375589371, -0.023278733715415, 0.02679944597184658, -0.0018063351744785905, 0.0339459665119648, 0.013373449444770813, -0.03344675898551941, 0.021032311022281647, 0.01703866757452488, 0.05570080876350403, -0.04130267724394798, -0.014568914659321308, 0.040330540388822556, 0.016959846019744873, 0.007665429729968309, -0.00484754703938961, -0.014371859841048717, 0.02105858363211155, -0.002184023382142186, -0.02301599457859993, 0.021439556032419205, 0.02344951592385769, -0.015252037905156612, -0.003115107072517276, 0.029715856537222862, -0.021662885323166847, 0.009373237378895283, -0.028375884518027306, 0.025223007425665855, -0.006276194006204605, 0.014503229409456253, 0.007599744945764542, 0.003034643130376935, -0.0022283608559519053, -0.02693081647157669, 0.030793089419603348, -0.02234600856900215, 0.004959211219102144, 0.004318783059716225, -0.021426420658826828, 0.008006990887224674, 0.004696471616625786, -0.01740650273859501, -0.015567325055599213, 0.0006983127677813172, 4.297743726056069e-05, 0.036152977496385574, -0.009274709969758987, 0.015698695555329323, -0.008808347396552563, 0.005143128801137209, -0.006164529360830784, -0.03357812762260437, -0.04301048442721367, 0.045453961938619614, 0.008210614323616028, 0.019876256585121155, 0.001501721446402371, 0.0030231482814997435, 0.005281067453324795, 0.029164103791117668, 0.012466996908187866, -0.01006292924284935, -0.03221188485622406, -0.00038220410351641476, 0.012815127149224281, -0.019587242975831032, -0.019666064530611038, 0.006949464324861765, -0.027902953326702118, -0.008092381991446018, -0.02079584449529648, 0.003432036843150854, 0.03878037631511688, -0.005359889008104801, 0.007671998348087072, -0.014568914659321308, 0.007271320093423128, 0.04311557859182358, -0.014279901050031185, 0.00621050875633955, -0.035154566168785095, 0.007304162718355656, 0.016066530719399452, -0.011902106925845146, -0.03105582855641842, 0.043982621282339096, -0.013320901431143284, 0.020441146567463875, -0.005740861874073744, -0.024933993816375732, -0.011199277825653553, -0.009734504856169224, -0.005284351762384176, 0.010187730193138123, -0.005373026244342327, -0.012933360412716866, -0.015422818250954151, -0.017721790820360184, 0.006982306484133005, -0.002955821342766285, -0.0054715536534786224, -0.024566158652305603, 0.006916621699929237, 0.020703885704278946, -0.020204680040478706, 0.015488503500819206, -0.013636188581585884, 0.011842990294098854, -0.0282970629632473, 0.012125435285270214, 0.008979127742350101, 0.008762368001043797, -0.022030720487236977, -0.0012808558531105518, -0.02058565244078636, -0.004371331073343754, -0.024684391915798187, -0.010404490865767002, -0.00843394361436367, 0.029032733291387558, -0.009346963837742805, -0.005579933524131775, 0.008052971214056015, 0.005576649215072393, -0.010706641711294651, -0.01680220104753971, 0.006144823972135782, 0.009839600883424282, -0.028139417991042137, 0.0023515201173722744, 0.0264053363353014, -0.019350776448845863, -0.0020477273501455784, -0.006910053081810474, -0.022096406668424606, -0.01401716098189354, 0.016066530719399452, -0.01756414584815502, -0.049473877996206284, 0.020244091749191284, 0.03462908789515495, 0.014503229409456253, -0.002402425743639469, 0.0015813643112778664, 0.02919037640094757, -0.024053815752267838, 0.0011412753956392407, -0.0012389817275106907, -0.007356710731983185, 0.0036323759704828262, 0.016631420701742172, 0.020112721249461174, -0.021859940141439438, 0.01684161275625229, -0.0017406502738595009, 0.0210848581045866, -0.011665641330182552, -0.04009407386183739, 0.005451848264783621, 0.01003008708357811, 0.009103929623961449, -0.012059750966727734, -0.0169992558658123, 0.0066571664065122604, 0.026562979444861412, 0.011048203334212303, 0.014293038286268711, 0.012933360412716866, 0.031633857637643814, 0.043063029646873474, -0.01205318234860897, 0.005997032858431339, -0.045348867774009705, 0.00823688879609108, -0.031134650111198425, -0.00713338190689683, -0.01323551032692194, 0.0009548944653943181, 0.00741582689806819, -0.0067852516658604145, -0.010253415443003178, -0.02753511629998684, -0.012348764576017857, 0.0012307710712775588, 0.014582051895558834, -0.0251704603433609, 0.019534694030880928, 0.0088017787784338, 0.00700858049094677, 0.010568703524768353, 0.024434788152575493, 0.019350776448845863, 0.02086152881383896, -0.011842990294098854, -0.02238542027771473, 0.017393365502357483, -0.026681212708353996, -0.008722957223653793, -0.04253755137324333, -0.0018621673807501793, -0.01370187383145094, 0.0017833454767242074, -0.006279477849602699, 0.019179996103048325, 0.021767981350421906, 0.0377819649875164, -0.01671024225652218, 0.019981350749731064, 0.008571881800889969, -0.012821695767343044, 0.02401440590620041, 0.019902529194951057, -0.0427740179002285, 0.015265174210071564, -0.003019863972440362, 0.03407733514904976, -0.004742451012134552, -0.0022267187014222145, 0.028008049353957176, 0.0013736358378082514, -0.008387964218854904, 0.0036455129738897085, -0.008460217155516148, -0.003353215055540204, -0.005655471235513687, 0.02740374766290188, 0.0038097251672297716, -0.003973937593400478, 0.02995232120156288, 0.016789063811302185, -0.001181507483124733, 0.028769994154572487, 0.006387858185917139, 0.025551432743668556, 0.003566690953448415, -0.014923613518476486, -0.031160924583673477, -0.007337005343288183, -0.019350776448845863, -0.03171267732977867, -0.019271954894065857, -0.026786308735609055, 0.006745840888470411, 0.032238155603408813, 0.013380017131567001, 0.009064518846571445, 0.021268775686621666, 0.004657060373574495, 0.02895391173660755, -0.013688736595213413, -0.013912064954638481, 0.022096406668424606, 0.013353743590414524, -0.0035699752625077963, -0.0010624534916132689, -0.015304585918784142, -0.0017587136244401336, -0.006423984654247761, 0.035049472004175186, -0.037913333624601364, 0.021465830504894257, 0.008755799382925034, 0.015015572309494019, -0.00034977219183929265, 0.0031068965326994658, 0.021334460005164146, -0.0019311365904286504, -0.012086024507880211, 0.0025551433209329844, -0.005983896087855101, 0.007323868107050657, -0.03935840353369713, -0.004686618689447641, 0.05864349380135536, -0.00232524611055851, 0.013314332813024521, -0.009760778397321701, -0.005566796753555536, -0.012736305594444275, -0.019981350749731064, -0.011507997289299965, -0.025525158271193504, -0.010752621106803417, 0.013754421845078468, -0.001543595572002232, -0.011842990294098854, 0.0019771161023527384, 0.01862824149429798, 0.015291448682546616, -0.015054983086884022, -0.010949675925076008, 0.02271384373307228, 0.017840024083852768, 0.03733530640602112, 0.02603750117123127, -0.022543063387274742, -0.007442100904881954, -0.037414129823446274, -0.0128873810172081, -0.021978173404932022, -0.011764168739318848, 0.029873499646782875, -0.010765757411718369, 0.0011404543183743954, -0.01527831144630909, 0.017721790820360184, -0.011829853057861328, 0.009320689365267754, 0.024566158652305603, -0.024658117443323135, -0.01932450197637081, 0.002863862318918109, -0.04012034833431244, -0.007941306568682194, -0.022372283041477203, 0.002573206555098295, 0.0043089305981993675, -0.0238830354064703, -0.0055011119693517685, -0.0018375355284661055, -0.0027045763563364744, -0.004266235511749983, -0.02467125467956066, -0.024185186251997948, 0.030845636501908302, 0.028454706072807312, 0.016513187438249588, -0.014490092173218727, 0.020572515204548836, 0.012276510708034039, 0.02693081647157669, 0.024960268288850784, -0.01829981803894043, 0.030504075810313225, 0.033289115875959396, -0.0030313588213175535, 0.023029131814837456, 0.004312214907258749, 0.008709819987416267, -0.0010829800739884377, 0.020138995721936226, 0.0008629356161691248, -0.01157368253916502, -0.024723801761865616, -0.008585019037127495, -0.014765969477593899, -0.021032311022281647, -0.007941306568682194, 0.018785886466503143, -0.02234600856900215, -0.0021413282956928015, -0.03546985611319542, -0.017091214656829834, 0.004335204605013132, -0.015265174210071564, -0.005330331157892942, -0.00874923076480627, 0.0364682674407959, -0.01667083241045475, -0.0008883884875103831, 0.010437333025038242, -0.013386585749685764, 0.0060791391879320145, 0.014857928268611431, -0.007514354307204485, 0.01177073735743761, -0.020401734858751297, 0.019469009712338448, 0.037046294659376144, 0.0016191331669688225, -0.03675727918744087, -0.009209025651216507, 0.03862272948026657, -0.018142173066735268, -0.025827309116721153, 0.0019048625836148858, -0.03321029245853424, 0.005333615001291037, 0.006929758936166763, -0.012210826389491558, 0.01923254318535328, 0.00022538137272931635, 0.006758978124707937, -0.012650914490222931, 0.01819472201168537, -0.001501721446402371, -0.015146941877901554, 0.010568703524768353, 0.01238817535340786, 0.003072411986067891, 0.022162090986967087, -0.0050216116942465305, -0.014332449063658714, 0.011829853057861328, -0.015265174210071564, 0.013018750585615635, -0.005307341460138559, -0.01364932581782341, -0.010128614492714405, 0.009642546065151691, 0.031633857637643814, -0.0013596777571365237, -0.004689902998507023, 0.020979762077331543, -0.012217394076287746, 0.020336050540208817, 0.004768725018948317, 0.014529503881931305, 0.003087191144004464, -0.02112426981329918, 0.02743002027273178, -0.016263585537672043, -0.006660450715571642, 0.01986311934888363, -0.029111554846167564, -0.004502701107412577, 0.0339459665119648, -0.02480262517929077, 0.008506196551024914, 0.0026585969608277082, -0.018825296312570572, 0.0015074688708409667, 0.006450258661061525, 0.024526746943593025, -0.008663840591907501, 0.004867252428084612, -0.007921600714325905, -0.0002268182288389653, -0.0038655572570860386, -0.01925881765782833, 0.004955926910042763, 0.0047096083872020245, 0.002318677492439747, 0.0028293777722865343, -0.011553976684808731, 0.01756414584815502, 0.006758978124707937, 0.00352399586699903, -0.03370949998497963, -0.013596777804195881, 0.010581839829683304, -0.005120139103382826, 0.0339459665119648, 0.01502870861440897, -0.007836210541427135, -0.02534124068915844, 0.014647736214101315, 0.0036323759704828262, -0.0072450460866093636, -0.0008415880147367716, 0.008880600333213806, 0.01743277721107006, 0.008052971214056015, 0.020900940522551537, -0.009406080469489098, 0.03807097673416138, 0.005225235130637884, 0.000659312354400754, 0.006598049774765968, 0.0036323759704828262, -0.025998089462518692, -0.02942684292793274, -0.003898399882018566, 0.005540522746741772, 0.00233345665037632, 0.0028655044734477997, -0.004955926910042763, -0.02149210497736931, 0.01899607852101326, -0.0008867463911883533, 0.010417628102004528, -0.0072581833228468895, -0.009708230383694172, 0.012762579135596752, -0.010332236997783184, 0.003097043838351965, 0.02238542027771473, -0.015396544709801674, -0.004653776530176401, 0.010332236997783184, 0.0014114046934992075, 0.027771582826972008, 0.005425574257969856, 0.01627672277390957, -0.008893737569451332, 0.0251704603433609, -0.023278733715415, 0.020598789677023888, -0.013977750204503536, 0.0172751322388649, -0.029032733291387558, -0.005126707721501589, 0.0060791391879320145, -0.017577283084392548, 0.031029554083943367, -0.007606313563883305, -0.0020477273501455784, 0.0056718927808105946, 0.0034813005477190018, -0.02214895375072956, -0.014923613518476486, 0.03423497825860977, -0.015541051514446735, -0.01832609251141548, -0.041434045881032944, -0.050997767597436905, -0.01992880366742611, 0.006683440413326025, 0.03378831967711449, 0.013531092554330826, 0.011718189343810081, -0.02025722898542881, -0.02879626676440239, -0.013609915040433407, -0.03321029245853424, 0.036914922297000885, -0.011501428671181202, 0.035285938531160355, 0.004594659898430109, -0.015041845850646496, -0.03284245729446411, 0.010535860434174538, 0.014187942259013653, -0.0017521451227366924, 0.018286680802702904, 0.004141434095799923, 0.012512976303696632, -0.01869392767548561, 0.00700858049094677, -0.01084457989782095, -0.008604723960161209, -0.031397391110658646, 0.010700073093175888, 0.008263162337243557, 0.01115986704826355, -0.0028720730915665627, 0.028323335573077202, -0.03412988409399986, 0.0004996159113943577, -0.005491259042173624, 0.007593176327645779, -0.01614535227417946, -0.002190592000260949, -0.03255344554781914, 0.015330859459936619, 0.03349930793046951, 0.01371501013636589, -0.013517956249415874, -0.005816399585455656, -0.005691598169505596, -0.023226186633110046, -0.019153721630573273, 0.02982095256447792, -0.011613093316555023, 0.013846380636096, -0.038281168788671494, 0.001880230731330812, 0.01441127061843872, -0.0001758097787387669, 0.0034878691658377647, -0.007895327173173428, -0.0009302626131102443, 0.030004870146512985, -0.00826973095536232, -0.0042728036642074585, -0.01290051732212305, 0.008374826982617378, -0.002123264828696847, -0.01680220104753971, -0.010351942852139473, 0.0015304585685953498, -0.004630786832422018, 0.005090581253170967, 0.03166012838482857, 0.018785886466503143, 0.000908915011677891, 0.007573470938950777, -0.006174382288008928, -0.010404490865767002, 0.011067908257246017, -0.00514641311019659, 0.01766924187541008, -0.012611503712832928, -0.020178405568003654, -0.02444792538881302, 0.005297488532960415, 0.009570292197167873, 0.007166224531829357, 0.0003000979486387223, 0.011783873662352562, 0.014621462672948837, -0.02753511629998684, 0.003908252343535423, 0.0018753043841570616, -0.008171203546226025, -0.013176394626498222, -0.006640744861215353, 0.00539601594209671, -0.01706494204699993, 0.010798600502312183, -0.005780272651463747, -0.03631062060594559, -0.02115054242312908, 0.014726558700203896, -0.007763957139104605, 0.0012537608854472637, 0.004177560564130545, 0.02112426981329918, -0.018483735620975494, 0.00956372357904911, -0.008611292578279972, -0.02377793937921524, 0.021439556032419205, -0.03948977217078209, 0.004095454700291157, 0.02740374766290188, -0.00921559426933527, 0.007021717727184296, -0.0008243456832133234, -0.003635660046711564, -0.009550587274134159, -0.025157323107123375, -0.029006458818912506, -0.0005981432623229921, 0.013386585749685764, -0.003546985564753413, 0.008341984823346138, -0.000975420989561826, 0.020309776067733765, -0.002954179188236594, 0.02716728113591671, -0.008144930005073547, 0.003307235660031438, 0.0019623369444161654, 0.020533105358481407, 0.01601398177444935, 0.0006921548047102988, -0.05183853581547737, -0.012972771190106869, 0.005474837962538004, -0.004535543266683817, -0.018286680802702904, -0.005878800060600042, -0.015291448682546616, 0.0191668588668108, 0.02036232501268387, -0.01806335151195526, -0.036284346133470535, 0.012946496717631817, -0.030845636501908302, -0.0210848581045866, -0.009156477637588978, 0.010161456651985645, 0.028480980545282364, 0.029715856537222862, 0.004637354984879494, 0.009346963837742805, 0.01535713393241167, 0.012276510708034039, -0.048738207668066025, -0.01311727799475193, 0.006578344386070967, 0.04416653886437416, 0.008197478018701077, -0.002123264828696847, -0.019140584394335747, 0.010338805615901947, -0.0043089305981993675, -0.03636316955089569, 0.031870320439338684, 0.03757177293300629, -0.017117489129304886, -0.016066530719399452, -0.044087715446949005, 0.0016995972255244851, -0.013425996527075768, 0.009885580278933048, -0.014923613518476486, -0.014936749823391438, 0.00883462093770504, -0.016250448301434517, 0.001676607527770102, -0.03998897597193718, 0.010076066479086876, 0.021702297031879425, -0.013412860222160816, 0.013091003522276878, -0.0069626010954380035, -0.01762983202934265, 0.012086024507880211, -0.0018473882228136063, 0.016683969646692276, 0.010181162506341934, 0.020270364359021187, 0.01643436588346958, -0.015541051514446735, 0.003207066096365452, -0.02032291330397129, -0.0073698475025594234, -0.024237733334302902, -0.003822862170636654, 0.00849962793290615, 0.03607415780425072, 0.010319100692868233, -0.01823413372039795, 0.027009638026356697, -0.01925881765782833, 0.020309776067733765, -0.0015879328129813075, 0.0022792667150497437, -0.02879626676440239, -0.012447291985154152, -0.008946285583078861, -0.019849982112646103, 0.02038859762251377, 0.005688313860446215, 0.01123868953436613, -0.011757600121200085, -0.017892571166157722, 0.0008719672914594412, -0.011534271761775017, 0.006752409506589174, -0.04576924815773964, 0.007238477934151888, -0.00022989721037447453, 0.012710031121969223, 0.024264007806777954, -0.03875410184264183, -0.01496302429586649, 0.20052291452884674, -0.007028285879641771, 0.015751242637634277, 0.02105858363211155, -0.013156688772141933, -0.0010714852251112461, 0.022805802524089813, -0.014582051895558834, -0.004545396193861961, -0.0018621673807501793, -0.002824451308697462, 0.001420436310581863, -0.024185186251997948, 0.023265598341822624, 0.006982306484133005, -0.035154566168785095, -0.008282868191599846, -0.02616887167096138, 0.013780695386230946, -0.01396461296826601, -0.0102271419018507, -0.007317299488931894, -0.02195189893245697, -0.013320901431143284, 0.03749294951558113, 0.009537450037896633, -0.03342048451304436, -0.0005607850034721196, 0.008296005427837372, 0.008578450419008732, -0.0226481594145298, 0.015015572309494019, -0.004824557341635227, 0.019048625603318214, -0.033026374876499176, -0.017695516347885132, 0.02869117073714733, -0.013557367026805878, 0.02729865163564682, -0.019101174548268318, 0.02686513029038906, -0.01614535227417946, -0.02690454199910164, -0.02869117073714733, 0.04117130488157272, 0.01597457192838192, 0.00688377907499671, -0.022556200623512268, 0.005566796753555536, 0.033893417567014694, -0.023199912160634995, -0.021807393059134483, -0.005084012635052204, 0.0282970629632473, 0.00758003955706954, -0.018943529576063156, 0.027640212327241898, 0.011330648325383663, 0.011652504093945026, 0.011665641330182552, -0.029505664482712746, 0.035391032695770264, 0.011067908257246017, 0.006693292874842882, -0.028848815709352493, 0.02636592462658882, -0.004634070675820112, -0.004476427100598812, -0.013623051345348358, 0.004082317464053631, 0.008473354391753674, -0.014069708995521069, 0.00761288171634078, 0.017892571166157722, -0.003441889537498355, -0.004873821046203375, 0.01446381863206625, 0.010483312420547009, -0.007527491543442011, 0.006712998263537884, -0.027640212327241898, -0.02792922593653202, -0.018877845257520676, 0.010200867429375648, -0.019705474376678467, 0.006758978124707937, 0.02633965201675892, -0.03407733514904976, -0.010503018274903297, -0.01836550235748291, -0.024723801761865616, -0.006440406199544668, -0.009622840210795403, -0.003980505745857954, 0.01079203188419342, 0.007731114514172077, -0.006499522365629673, 0.028375884518027306, 0.019377050921320915, -0.028901362791657448, -0.038202349096536636, 0.053125958889722824, 0.028402157127857208, 0.014989297837018967, 0.005018327850848436, 0.008506196551024914, -0.03686237707734108, 0.013478544540703297, -0.003074054140597582, -0.0057835569605231285, 0.030109966173768044, -0.029715856537222862, -0.010135182179510593, -0.006844368297606707, 0.013583640567958355, -0.006233498454093933, -0.016815338283777237, -0.022529926151037216, 0.007534060161560774, 0.011343785561621189, 0.014371859841048717, -0.0009951264364644885, -0.002783398376777768, -0.001220918376930058, 0.0035404169466346502, 0.011186141520738602, -0.040435634553432465, 0.03236952796578407, -0.004476427100598812, -0.009655682370066643, 0.037676867097616196, -0.021978173404932022, 0.02693081647157669, 0.0062499199993908405, -0.008315710350871086, -0.021676022559404373, 0.00399364298209548, -0.00670971442013979, -0.02992604859173298, -0.0025239428505301476, -0.009944695979356766, 0.009734504856169224, -0.005622629076242447, 0.013294626958668232, -0.01414853148162365, -0.007534060161560774, -0.017826886847615242, -0.012966202571988106, 0.019009215757250786, 0.0017931981710717082, -0.027141006663441658, -0.02666807547211647, 0.009852737188339233, -0.023620296269655228, 0.008676977828145027, -0.01860196888446808, 0.011816716752946377, -0.024001268669962883, 0.0006153855356387794, 0.009399511851370335, -0.022635022178292274, 0.007100539281964302, 0.015015572309494019, -0.0008563671144656837, -0.013820106163620949, -0.017656106501817703, -0.1621629148721695, -0.0025009531527757645, -0.0001230565831065178, -0.025748487561941147, 0.028402157127857208, -0.0005353320739232004, 0.01849687285721302, -0.022464241832494736, -0.010463607497513294, -0.012217394076287746, -0.008644134737551212, 0.002566638169810176, -0.014595188200473785, -0.010246846824884415, 0.017642969265580177, -0.021400146186351776, -0.009025107137858868, 0.002675018273293972, 0.020664473995566368, 0.0012808558531105518, 0.02132132463157177, -0.011251825839281082, 0.021597201004624367, -0.005422289948910475, -0.008663840591907501, 0.011337216943502426, 0.006558638997375965, 0.006703145802021027, -0.0047917147167027, -0.03242207318544388, 0.005688313860446215, 0.003918105270713568, 0.0051694028079509735, -0.008676977828145027, 0.020966624841094017, 0.005419005639851093, -0.008000423200428486, -0.013728147372603416, -0.006292615085840225, -0.01336688082665205, 0.0075537655502557755, 0.02819196693599224, -0.019482146948575974, -0.014687146991491318, -0.003891831263899803, 0.011744462884962559, 0.023462651297450066, -0.0034287525340914726, -0.006499522365629673, -0.022306596860289574, 0.021203091368079185, -0.004069180693477392, 0.004072465002536774, 0.004128296859562397, 0.04844919592142105, -0.027009638026356697, -0.014765969477593899, 0.027482569217681885, 0.0013613199116662145, 0.011448880657553673, 0.021859940141439438, -0.02351520024240017, 0.0009762420668266714, -0.009117066860198975, 0.0034123314544558525, -0.015593599528074265, -0.011672209948301315, -0.005589786451309919, -0.06074541062116623, 0.0050216116942465305, 0.0021593915298581123, 0.017419639974832535, -0.0020099584944546223, -0.0025157323107123375, -0.013248647563159466, -0.006483101285994053, 0.004065896384418011, -0.004437016323208809, 0.0011962865246459842, -0.026589253917336464, 0.0022661297116428614, 0.039805058389902115, -0.007422395516186953, -0.02440851554274559, 0.020848393440246582, -0.0007266394095495343, -0.002556785475462675, 0.005054454319179058, 2.318215774721466e-05, 0.007310731336474419, 0.02228032425045967, -0.043089304119348526, 0.025301828980445862, 0.0010870853438973427, 0.0063615841791033745, 0.024211460724473, 0.01975802332162857, -0.031108375638723373, 0.02932174690067768, -0.02118995413184166, -0.004555249121040106, -0.016881024464964867, -0.013189530931413174, -0.02062506414949894, 0.009406080469489098, -0.00883462093770504, -0.014989297837018967, 0.007816504687070847, 0.038675278425216675, 0.027351198717951775, -0.01717003807425499, -0.024093227460980415, 0.017209447920322418, 0.02321304939687252, -0.022175228223204613, 0.03946349769830704, -0.02397499419748783, -0.00969509407877922, 0.007402690127491951, 0.0011790442513301969, 0.06321516633033752, 0.007606313563883305, -0.002161033684387803, -0.010739483870565891, -0.005231803748756647, 0.004328635986894369, -0.1284271478652954, -0.043089304119348526, 0.015094393864274025, 0.006995443720370531, 0.000254323793342337, 0.019482146948575974, -0.018982941284775734, 0.0036947764456272125, -0.005231803748756647, 0.03234325349330902, -0.018312955275177956, -0.018273543566465378, 0.012375038117170334, -0.018575694411993027, -0.021938761696219444, 0.01140946988016367, -0.029400568455457687, 0.0057901255786418915, -0.023988131433725357, 0.026392199099063873, 2.714634501899127e-05, 0.014568914659321308, -0.030609171837568283, -0.008644134737551212, -0.018588831648230553, 0.0421171672642231, -0.010351942852139473, 0.027246102690696716, -0.008539038710296154, 0.01627672277390957, 0.018588831648230553, -0.006956032477319241, -0.013990887440741062, -0.008151497691869736, -0.003901683958247304, 0.02979467809200287, -0.011245258152484894, -0.02344951592385769, 0.03336793929338455, -0.01875961199402809, 0.004955926910042763, 0.02208326943218708, -0.007389552891254425, 0.01710435189306736, 0.038176074624061584, -0.020178405568003654, -0.024290282279253006, -0.005888652987778187, -0.00415128655731678, -0.028848815709352493, -0.029768403619527817, 0.0016125646652653813, -0.02501281537115574, -0.014582051895558834, -0.004397605080157518, 0.004394320771098137, -0.008243457414209843, 0.010667230002582073, -0.009905285201966763, 0.02331814542412758, -0.010969380848109722, 0.005143128801137209, 0.01238817535340786, 0.024211460724473, 0.02086152881383896, 0.010299394838511944, -0.03168640285730362, -0.01477910578250885, 0.030740540474653244, 0.0069626010954380035, 0.005116854794323444, 0.02627396583557129, -0.04414026439189911, 0.007849347777664661, -0.002826093463227153, 0.0050643072463572025, 0.022529926151037216, 0.002589627867564559, 0.008079244755208492, -0.017918845638632774, -0.03105582855641842, -0.019876256585121155, -0.011547408066689968, -0.016815338283777237, 0.03883292153477669, 0.025853583589196205, 0.012296216562390327, 0.017353955656290054, 0.008341984823346138, -0.026549844071269035, 0.026287103071808815, 0.010036655701696873, 0.021373871713876724, -0.04789743945002556, -0.01832609251141548, 0.0004729313950520009, 0.019140584394335747, 0.007212203927338123, -0.005402584560215473, -0.0016634705243632197, -0.025314966216683388, 0.0019015783909708261, -0.034418895840644836, 0.01962665282189846, 0.008414237760007381, -0.014923613518476486, -0.006558638997375965, -0.028717445209622383, -0.00863756611943245, -0.012440723367035389, 0.01982370764017105, 0.0029837372712790966, -0.039568595588207245, 0.003448458155617118, -0.023160502314567566, 0.012893948704004288, -0.010384785011410713, -0.029032733291387558, 0.01547536626458168, -0.02308167889714241, 0.005609491840004921, 0.02291089855134487, 0.006804957520216703, 0.02284521423280239, 0.04064582660794258, -0.009675388224422932, 0.02121622860431671, -0.010424196720123291, 0.009438922628760338, 0.03045152686536312, -0.012604935094714165, -0.015081256628036499, 0.0011462017428129911, -0.03231697902083397, 0.004716177005320787, 0.019442735239863396, -0.0066735874861478806, 0.02058565244078636, 0.005517533048987389, 0.008571881800889969, 0.022963447496294975, 0.007908464409410954, -0.015002435073256493, -0.02968958206474781, -0.009951264597475529, 0.021505242213606834, 0.006269625388085842, -0.013688736595213413, 0.013215805403888226, 0.02025722898542881, -0.004190697800368071, -0.02341010421514511, 0.0320279635488987, 0.03260599076747894, -0.017721790820360184, -0.028244514018297195, -0.009570292197167873, -0.030609171837568283, 0.03715138882398605, -0.02440851554274559, 0.0021873076912015676, -0.0004152518231421709, 0.03323656693100929, -0.0004967421991750598, 0.018378639593720436, -0.028612349182367325, 0.0006798388785682619, -0.026182007044553757, -0.021846802905201912, 0.0011306016240268946, -0.005419005639851093, -0.015541051514446735, -0.023738529533147812, -0.01169191487133503, 0.009609702974557877, 0.002909841714426875, 0.024723801761865616, 0.013820106163620949, -0.0038721258752048016, -0.0024927426129579544, 0.005133276339620352, 0.020506830886006355, 0.025354377925395966, -0.015238900668919086, -0.007560333702713251, 0.0035929649602621794, 0.036520812660455704, 0.008828053250908852, -0.02497340552508831, 0.012972771190106869, 0.000262534391367808, 0.008979127742350101, 0.006864073686301708, -0.0030510644428431988, -0.03152875974774361, 0.012184551917016506, 0.002402425743639469, -0.00018586778605822474, 0.013557367026805878, 0.011225552298128605, -0.0007077549817040563, -0.007271320093423128, 0.00733043672516942, -0.0017866297857835889, -0.0201258584856987, 0.007448669523000717, -0.03575886785984039, 0.0007619450334459543, -0.015724968165159225, -0.017840024083852768, 0.002660239115357399, 0.021334460005164146, -0.0015879328129813075, 0.02158406376838684, 0.016158489510416985, 0.0088017787784338, -0.03305264934897423, -0.01270346250385046, -0.007750820368528366, -0.008828053250908852, -0.02178111858665943, -0.01087742205709219, 0.029032733291387558, 0.019153721630573273, 0.0364682674407959, 0.02514418587088585, 0.014371859841048717, 0.016683969646692276, 0.014030298218131065, -0.02966330759227276, -3.171349817421287e-05, 0.020230954512953758, -0.004535543266683817, 0.0028129564598202705, -0.022043857723474503, -0.009307553060352802, -0.01866765320301056, -0.03357812762260437, 0.028612349182367325, -0.004890242125838995, -0.0030231482814997435, 0.05838075280189514, 0.0044435844756662846, -0.01806335151195526, -0.0012586872326210141, -0.00874923076480627, 0.02866489812731743, 0.02792922593653202, -0.0016396597493439913, -0.013465408235788345, -0.02214895375072956, 0.020848393440246582, -0.0035831122659146786, -0.0029706002678722143, -0.04280029237270355, -0.011645935475826263, 0.012145141139626503, -0.023659706115722656, 0.022529926151037216, -0.017078077420592308, -0.003044495824724436, 0.014621462672948837, 0.01879902370274067, 0.007468374911695719, -0.014043435454368591, 0.012749441899359226, -0.013123846612870693, -0.004909947514533997, -0.010023518465459347, -0.0013013824354857206, -0.008926579728722572, 0.018969804048538208, 0.029085280373692513, -0.048422921448946, -0.023121090605854988, -0.0005410794983617961, 0.0035601225681602955, 0.003292456502094865, -0.001048495527356863, 0.03436634689569473, -0.008795210160315037, -0.005576649215072393, 0.002190592000260949, -0.004184129182249308, -0.03092445805668831, 0.003313804045319557, 0.014687146991491318, -0.004824557341635227, -0.00921559426933527, -0.03759804740548134], "97c67d12-52ac-46ba-8df3-c740bb16e497": [-0.022925274446606636, 0.019883187487721443, 0.0067213671281933784, -0.03529916703701019, -0.009372915141284466, -0.01209297962486744, 0.0007219816907308996, -0.028557244688272476, -0.017827723175287247, -0.023569319397211075, 0.020664263516664505, 0.007728544529527426, -0.008406847715377808, 0.0161285400390625, -0.0027097866404801607, -0.004076669923961163, 0.017539959400892258, -0.010297873988747597, 0.00818074680864811, 0.0009335231734439731, 0.0009429440833628178, 0.002223326824605465, -0.028200965374708176, -0.020253170281648636, 0.00133091292809695, 0.0038711237721145153, -0.0005031604086980224, -0.005460682325065136, -0.025213690474629402, -0.02028057724237442, 0.012846649624407291, -0.029571274295449257, -0.016320383176207542, -0.010345835238695145, -0.01749884895980358, 0.009619571268558502, 0.006680257618427277, -0.006049915216863155, 0.005652525927871466, -0.007146162912249565, 0.033654794096946716, 0.013011086732149124, 0.0004185866564512253, 0.015744853764772415, -0.0014105620793998241, 0.015868181362748146, 0.012038166634738445, -0.03743685036897659, 0.005049589555710554, 0.02193865180015564, 0.016567038372159004, 0.040533747524023056, -0.05086588114500046, -0.011770956218242645, -0.011675034649670124, -0.009229033254086971, 0.0072283814661204815, -0.00046290759928524494, -0.0021171278785914183, -0.0075983647257089615, 0.015114511363208294, 0.006673406343907118, -0.029379431158304214, -0.004265087656676769, -0.009002932347357273, -0.013161820359528065, 0.0022610102314502, 0.019828375428915024, 0.0020194933749735355, 0.0018704721005633473, 0.008667206391692162, 0.02894093096256256, 0.003521694801747799, 0.013689389452338219, 0.018074380233883858, -0.014388247393071651, -0.008194449357688427, 0.01671777293086052, -0.017416629940271378, -0.004987925756722689, -0.01179836317896843, -0.021157575771212578, 0.003124305047094822, 0.024871112778782845, 0.019061002880334854, 0.0018533433321863413, 0.02709101513028145, 0.028502432629466057, -0.012874055653810501, 0.0006367656169459224, 0.019293954595923424, 0.012332783080637455, 0.008016309700906277, 0.0003791902563534677, 0.01094191987067461, 0.019581720232963562, -0.0056662289425730705, -0.0046042390167713165, -0.010023812763392925, -0.006769327912479639, -0.0125657357275486, 0.0333259217441082, -0.020075030624866486, -0.002192494925111532, -0.013182375580072403, -0.023500803858041763, 0.005515494849532843, -0.013305703178048134, 0.022870462387800217, 0.007653177250176668, -0.006382215302437544, 0.043904710561037064, 0.014127888716757298, -0.027680248022079468, 0.012291674502193928, -0.016868507489562035, 0.056182678788900375, -0.024213364347815514, -0.0012966551585122943, -0.008379440754652023, 0.016443710774183273, -0.01490896474570036, 0.020417608320713043, -0.006649425718933344, 0.02341858483850956, -0.021143872290849686, 0.007447631098330021, -0.024268176406621933, -0.03606653958559036, -0.018458066508173943, 0.02234974503517151, 0.044562458992004395, -0.0005939434049651027, 0.009215329773724079, -0.0034154958557337523, 0.0039910259656608105, -0.009804562665522099, -0.007749098818749189, -0.025391830131411552, -0.0161285400390625, 0.03181857988238335, 0.02803652733564377, -0.03307926654815674, 0.02703620120882988, -0.006471285596489906, 0.00955105572938919, 0.00782446563243866, -0.00791353639215231, -0.008763127960264683, -0.012490369379520416, 0.019828375428915024, 0.006841268856078386, -0.006622019689530134, 0.02822837047278881, -0.00782446563243866, 0.0070913503877818584, 0.004693309310823679, -0.00604648981243372, 0.000975488917902112, -0.004052689764648676, 0.02270602434873581, 0.038697533309459686, 0.005121530964970589, 0.02099313773214817, -0.010928216390311718, 0.027488404884934425, 0.005816963035613298, -0.00987307820469141, -0.0069406162947416306, 0.011003583669662476, -0.01434713788330555, 0.006913210265338421, -0.005176343489438295, 0.006279442459344864, 0.0020708797965198755, -0.027598029002547264, 0.021267199888825417, -0.0018105211202055216, -0.019705047830939293, -0.007516146171838045, 0.008954971097409725, 0.020472420379519463, 0.005919735878705978, 0.023459695279598236, -0.017690692096948624, -0.0012024464085698128, 0.027351373806595802, 0.009838820435106754, 0.028063934296369553, 0.00268923188559711, 0.014073076657950878, 0.008845346048474312, -0.01346328854560852, -0.010058069601655006, -0.6046900749206543, 0.006933765020221472, 0.0076052164658904076, -0.0237885694950819, -0.0166629608720541, -0.01165448036044836, -0.009078298695385456, 0.001817372627556324, -0.027419889345765114, -0.0009634987218305469, -0.023911897093057632, -0.011017286218702793, 0.016882210969924927, -0.01218890119343996, -0.007433927617967129, -0.00963327381759882, 0.006368512287735939, -0.01482674665749073, 0.022144198417663574, -0.0011561984429135919, -0.015018589794635773, 0.013936045579612255, 0.0006247753626666963, 0.010003257542848587, 0.007892981171607971, 0.03872494027018547, 0.006625445559620857, 0.003412069985643029, 0.004271938931196928, 0.013148117810487747, -0.015374870039522648, 0.011675034649670124, 0.0004106645646970719, 0.011572262272238731, 0.04524761065840721, 0.002968432381749153, -0.018293628469109535, 0.001402854104526341, 0.016512226313352585, 0.03943750262260437, -0.02910536900162697, -0.040177468210458755, 0.016443710774183273, -0.011551707051694393, -0.005282542202621698, 0.0166629608720541, -0.026967685669660568, 0.000799918023403734, -0.0037477959413081408, -0.03458660468459129, 0.015868181362748146, 0.0031465727370232344, -0.03077714703977108, -0.021322011947631836, 0.02585773542523384, 0.004587110131978989, 0.009866226464509964, 0.0014439633814617991, 0.00847536325454712, -0.02004762552678585, 0.0033486932516098022, 0.004247958771884441, -0.039821188896894455, -0.004611090756952763, -0.03132526949048042, 0.004700160585343838, -0.03540879115462303, -0.009393470361828804, 0.00033208588138222694, -0.030283834785223007, 0.008379440754652023, 0.02585773542523384, -0.0008607255294919014, -0.0007678014226257801, 0.0036141907330602407, 0.013764756731688976, 0.02805023081600666, 0.030091991648077965, -0.008420550264418125, 0.00646443385630846, -0.0014722259948030114, 0.0014182700542733073, -0.020897217094898224, -0.014251216314733028, 0.042315151542425156, -0.00918792374432087, -0.022020870819687843, 0.022692320868372917, 0.004343880340456963, 0.02134941890835762, -0.0006813006475567818, 0.022870462387800217, -0.007646325975656509, -0.05640193074941635, -0.008537027053534985, -0.011736699379980564, 0.004477485548704863, 0.014031967148184776, 0.011181723326444626, -0.05034516379237175, -0.005844369065016508, -0.013305703178048134, 0.005224304273724556, -0.0056388224475085735, -0.008907009847462177, 0.009729195386171341, 0.009139962494373322, 0.0064301760867238045, -0.0051318081095814705, -0.017992161214351654, -0.010181398130953312, -0.04226033762097359, 0.004943390842527151, -0.013990857638418674, 0.00776965357363224, -0.03409329429268837, 0.028022823855280876, -0.006413047201931477, -0.014799339696764946, -0.009475688450038433, 0.008365738205611706, 0.023377476260066032, 0.018074380233883858, -0.013031641021370888, 0.01844436302781105, -0.021787917241454124, 0.02680324949324131, -0.013264593668282032, -0.03784794360399246, -0.01601891592144966, -0.0005618268041871488, 0.0010260191047564149, 0.018540283665060997, -0.029680898413062096, 0.004957093857228756, -0.028420213609933853, 0.013264593668282032, 0.0012581151677295566, 0.0354636050760746, -0.039930813014507294, 0.002423734636977315, 0.017087755724787712, 0.003929361701011658, -0.05522346496582031, -0.019403578713536263, -0.011914839036762714, -0.03872494027018547, 0.001855056150816381, -0.01482674665749073, 0.04036930948495865, -0.0177318025380373, 0.024144848808646202, -0.006580910179764032, 0.009420876391232014, 0.024501129984855652, -0.005816963035613298, -0.01867731474339962, -0.030229022726416588, -0.027529513463377953, -0.013846974819898605, 0.0055291978642344475, 0.021979760378599167, -0.016649257391691208, 0.004323325585573912, -0.02419966086745262, -0.020540935918688774, -0.009085150435566902, 0.022993789985775948, -0.004066392779350281, -0.024103740230202675, -0.008639800362288952, -0.02158237062394619, -0.0017171688377857208, 0.01903359591960907, -0.014429356902837753, 0.015580416657030582, -0.004223978146910667, 0.009975851513445377, -0.02117127738893032, -0.010503420606255531, -0.0014636615524068475, 0.0026446969714015722, 0.0003920369199477136, -0.014744527637958527, 0.017759207636117935, -0.009167369455099106, 0.029379431158304214, -0.015059699304401875, -0.014401950873434544, -0.021198684349656105, 0.015224136412143707, 0.014840449206531048, -0.022993789985775948, 0.009736047126352787, -0.013792162761092186, 0.00945513416081667, 0.012024464085698128, 0.0007014270522631705, -0.01434713788330555, 0.012195752933621407, 0.0216508861631155, -0.023089710623025894, 0.0009523649350740016, -0.03107861429452896, 0.016279274597764015, -0.012593142688274384, 0.024446317926049232, -0.0024545665364712477, 0.013038492761552334, -0.008420550264418125, 0.0062999967485666275, -0.0004389271780382842, -0.015744853764772415, -0.0050256093963980675, 0.025474049150943756, 0.022993789985775948, -0.017060350626707077, 0.006025935057550669, 0.0004534867184702307, 0.002353506162762642, -0.0021993464324623346, 0.004350732080638409, 0.02709101513028145, 0.03497029095888138, -0.007639474235475063, 0.000833319325465709, 0.025652188807725906, -0.007536700926721096, 0.00404583802446723, -0.04376767948269844, -0.005152362864464521, -0.002319248393177986, -0.013038492761552334, 0.02247307263314724, 0.009229033254086971, 0.0004993064212612808, 0.0602387972176075, -0.031763769686222076, 0.032997045665979385, -0.0103800930082798, -0.011791511438786983, 0.013627725653350353, 0.008489065803587437, -0.021143872290849686, 0.009516797959804535, -0.015484495088458061, 0.0319008007645607, 0.01701924204826355, -0.018403254449367523, 0.011448933742940426, -0.007879278622567654, -0.01655333675444126, -0.02097943425178528, 0.026830656453967094, 0.020116139203310013, -0.021979760378599167, -0.004754973109811544, 0.02033538930118084, 0.02021206170320511, 0.021335715427994728, 0.019663937389850616, -0.0297631174325943, 0.0068309917114675045, -0.023925600573420525, 0.01582707278430462, -0.036861319094896317, -0.007276342250406742, -0.022445665672421455, -0.008605542592704296, 0.009811414405703545, -0.03771091252565384, -0.029571274295449257, -0.04554907977581024, 0.002055463846772909, 0.027735060080885887, 0.0061972239054739475, 0.02241826057434082, 0.026940280571579933, 0.00585464620962739, 2.7499859243107494e-06, -0.004552852362394333, -0.03743685036897659, 0.019115814939141273, 0.0006316269282251596, -0.013853826560080051, -0.017293302342295647, -0.0033486932516098022, 0.00625546183437109, 0.0017145994352176785, 0.017759207636117935, -0.021568667143583298, 0.008859049528837204, -0.014758231118321419, -0.005769002251327038, -0.018307331949472427, 0.010414350777864456, 0.044809114187955856, 0.005385315511375666, 0.02602217346429825, -0.013394773006439209, -0.010297873988747597, 1.0926342838502023e-05, -0.001817372627556324, 0.003956768196076155, 0.05963585898280144, 0.005224304273724556, 0.014415653422474861, 0.0009403747390024364, -0.009975851513445377, -0.0038676979020237923, 0.02507665939629078, -0.030585303902626038, -0.02655659429728985, 0.012647954747080803, 0.0019115814939141273, -0.02828318253159523, 0.009667531587183475, 0.010393795557320118, 0.020006515085697174, 0.002017780439928174, 0.007036538328975439, -0.02070537395775318, -0.0036621515173465014, 0.02145904302597046, 0.033819232136011124, 0.04464467614889145, -0.028721682727336884, -0.00521745253354311, -0.019787264987826347, -0.014278622344136238, 0.004131482448428869, -0.00484746927395463, 0.010311577469110489, -0.004025283269584179, -0.0038368660025298595, 0.0019578293431550264, 0.01595040038228035, -0.001301793847233057, -0.003600487718358636, 0.02270602434873581, -0.029900148510932922, -0.009475688450038433, 0.003329851431772113, -0.017539959400892258, 0.005762150511145592, 0.013285147957503796, 0.04012265428900719, 0.01653963327407837, -0.0051283822394907475, -0.015854477882385254, -0.00428564241155982, 0.0032767520751804113, 0.006005380302667618, -0.030612709000706673, -0.025364425033330917, 0.023473398759961128, 0.019225439056754112, 0.024281879886984825, -0.01714256964623928, 0.018526582047343254, 0.027186935767531395, -0.00354224955663085, 0.02128090336918831, -0.014758231118321419, -0.001134787336923182, 0.020499827340245247, -0.0017694118432700634, 0.030968990176916122, 0.010777482762932777, -0.0018019566778093576, -0.0033127227798104286, 0.013833272270858288, -0.0020212060771882534, 0.004422673024237156, 0.03373701497912407, -0.018636206164956093, -0.012291674502193928, 0.011633926071226597, -0.00723523274064064, -0.009756602346897125, -0.03782053664326668, -0.012291674502193928, 0.00021293321333359927, -0.015840774402022362, -0.0043644350953400135, 0.004957093857228756, -0.0005622550379484892, -0.023432288318872452, 0.04409655183553696, -0.02744729444384575, -0.0005485519068315625, 0.018005864694714546, -0.022308634594082832, -0.023158226162195206, 0.01503229234367609, -0.026583999395370483, -0.020965732634067535, -0.010112882591784, 0.05053700506687164, 0.04280846193432808, -0.0015141917392611504, 0.018882861360907555, -0.0015638654585927725, 0.006642573978751898, -0.0033041583374142647, -0.06248610466718674, -0.010345835238695145, -0.03965675085783005, -0.0025813200045377016, 0.003287029452621937, 0.02567959576845169, -0.007269490510225296, -0.007961496710777283, -0.0103800930082798, 0.001913294312544167, -0.01726589724421501, -0.02033538930118084, -0.003131156787276268, 0.005707337986677885, 0.0034977144096046686, -0.002620716579258442, 0.008879603818058968, 0.00298042269423604, -0.020417608320713043, 0.011729847639799118, -0.010119734331965446, 0.01165448036044836, -0.0007061375072225928, -0.01819770783185959, -0.02774876356124878, 0.02176051214337349, 0.010428053326904774, -0.004165740218013525, 0.0028314015362411737, 0.026995092630386353, -0.0029119071550667286, 0.021719401702284813, 0.015470791608095169, -0.00487487530335784, -0.0002498673275113106, 0.004158888477832079, 0.010845998302102089, -0.015018589794635773, -0.014415653422474861, 0.020554639399051666, -0.020362796261906624, 0.016114836558699608, 0.018184004351496696, -0.009784008376300335, 0.008975525386631489, 0.005090699065476656, -0.02615920454263687, -0.0035456751938909292, 0.009146814234554768, 0.021596074104309082, 0.015813369303941727, 0.0016443710774183273, -0.02206197939813137, -0.03883456438779831, -0.003353832056745887, -0.026583999395370483, -0.0037923308555036783, -0.011873729526996613, 0.015881884843111038, 0.01168188638985157, 0.017115162685513496, 1.5737145076855086e-05, -0.007063944358378649, -0.014977480284869671, -0.02276083640754223, -0.021061653271317482, 0.008907009847462177, -0.009420876391232014, 0.008269816637039185, 0.006214352324604988, -0.01331255491822958, -0.01251092366874218, -0.021376824006438255, -0.0026327066589146852, -0.02003392204642296, -0.019554313272237778, 0.026118094101548195, 0.03571026027202606, 0.02307600900530815, 0.018512878566980362, 0.01162707433104515, 0.031407490372657776, -0.0017077479278668761, -0.001004607998766005, 0.005864923819899559, -0.01503229234367609, 0.005851220805197954, -0.018581394106149673, -0.004576832987368107, 0.02028057724237442, -0.004138334188610315, 0.01623816415667534, -0.01075692754238844, 0.01737552136182785, 0.04193146526813507, -0.0026909448206424713, 0.025405533611774445, -0.011675034649670124, -0.02591254748404026, -0.024624457582831383, 0.02040390484035015, -0.006440453696995974, 0.015676338225603104, -0.029132775962352753, -0.01981467194855213, 0.005450405180454254, 0.019321361556649208, 0.009557907469570637, 0.009468836709856987, 0.03129786252975464, 0.013614022172987461, 0.021376824006438255, -0.00471386406570673, 0.017923645675182343, -0.03379182517528534, -0.017279600724577904, -0.02633734419941902, -0.0008992654620669782, -0.008927565068006516, -0.011805213987827301, 0.0221853069961071, -0.013189226388931274, 0.010332131758332253, 0.005717615596950054, -0.016320383176207542, -0.01896508038043976, -0.028666870668530464, 0.027118420228362083, -0.011394121684134007, -0.040835216641426086, -0.030968990176916122, -0.047878604382276535, -0.007194123696535826, -0.00487487530335784, 0.030640115961432457, 0.0038163112476468086, 0.006762476172298193, -0.013977154158055782, 0.004110927693545818, -0.0031465727370232344, -0.005621693562716246, 0.03962934389710426, -0.0020914345514029264, 0.027885794639587402, -0.00388482678681612, -0.010784333571791649, -0.0161285400390625, -0.015045995824038982, 0.00862609688192606, 0.008523323573172092, 0.051907315850257874, 0.013449585065245628, -0.034120701253414154, -0.024227067828178406, 0.005923161748796701, -0.014758231118321419, 0.004008154850453138, -0.017772911116480827, 0.01678628847002983, 0.029982367530465126, 0.016704069450497627, -0.021678293123841286, 0.029269805178046227, -0.04226033762097359, 0.004223978146910667, -0.011579113081097603, -0.007344857789576054, -0.01397030334919691, -0.0013925768435001373, -0.03000977262854576, 0.016402602195739746, -0.009078298695385456, 0.050317756831645966, -0.004943390842527151, -0.010366389527916908, -0.02799541875720024, -0.029187588021159172, -0.0053750379011034966, 0.009886781685054302, -0.00336582213640213, 0.023404883220791817, -0.004062966909259558, 0.0009694938198663294, 0.021719401702284813, -0.0047344183549284935, -0.007639474235475063, -0.012051870115101337, 0.007536700926721096, 0.03423032537102699, -0.014114185236394405, -0.004182869102805853, 0.012113533914089203, 0.022678619250655174, -0.0048714494332671165, -0.010400647297501564, -0.01956801675260067, 0.02905055694282055, 0.011716144159436226, -0.000523286871612072, 0.024514833465218544, 0.013751053251326084, 0.0098456721752882, -0.0037409442011266947, -0.00886590126901865, 0.00575187336653471, -0.012826094403862953, -0.012784985825419426, 0.014237513765692711, -0.04110927879810333, 0.00271321227774024, -0.021678293123841286, 0.005892329849302769, 0.025748111307621002, -0.012223158963024616, -0.009098853915929794, 0.02028057724237442, 0.026241421699523926, -0.023199336603283882, 0.01112005952745676, 0.005837517324835062, 0.0014619487337768078, -0.03516213595867157, 0.021034248173236847, -0.00652267225086689, -0.010633599944412708, 0.0166629608720541, -0.02692657709121704, -0.013566061854362488, -0.018581394106149673, -0.0050221835263073444, -0.013661983422935009, -0.006813862826675177, -0.007577810436487198, 0.016923319548368454, 0.01343588251620531, 0.02093832567334175, -0.009400321170687675, 0.0010782621102407575, 0.006625445559620857, -0.004398692864924669, 4.576618812279776e-05, -0.0006817288813181221, 0.003424060298129916, 0.008105379529297352, -0.03535398095846176, -0.005625119432806969, 0.006077321711927652, -0.016799991950392723, -0.005642248317599297, 0.009119408205151558, 0.006313699763268232, 0.00010132794704986736, -0.014621200039982796, -0.023473398759961128, 0.007331154774874449, -0.020595747977495193, 0.047768980264663696, -0.0026429840363562107, -0.001268392545171082, -0.019252846017479897, 0.023034898564219475, 0.028475027531385422, -0.001950977835804224, -0.022980086505413055, -0.006947468034923077, 0.02188383974134922, 0.005594287533313036, -0.01102413795888424, -0.010106030851602554, 0.010893958620727062, 0.049358539283275604, 0.02894093096256256, 0.013456436805427074, -0.015840774402022362, 0.010571936145424843, -0.03398367017507553, -0.028776494786143303, -0.014703418128192425, 0.0013617448275908828, 0.016347790136933327, 0.04398692771792412, 0.014497872442007065, 0.018773237243294716, -0.011729847639799118, 0.015731150284409523, -0.022856758907437325, 0.010633599944412708, 0.011421527713537216, 0.030749740079045296, 0.00913311168551445, -0.0017985309241339564, -0.03203783184289932, -0.031462300568819046, -0.009516797959804535, 0.006628870964050293, 0.0011870304588228464, 0.010037515312433243, -0.0003719105152413249, -0.002877649385482073, -0.030640115961432457, 0.00013885086809750646, 0.005179768893867731, 0.014018263667821884, 0.012182049453258514, -0.03173636272549629, 0.0019989386200904846, -0.017279600724577904, 0.0057929824106395245, -0.012031315825879574, -0.021500151604413986, 0.010859700851142406, -0.009386618621647358, -0.011743550188839436, 0.006008806172758341, 0.0014422505628317595, 0.015676338225603104, -0.024227067828178406, 0.01780031807720661, 0.0018190855626016855, 0.004960519727319479, 0.051139943301677704, 0.009585313498973846, 0.02234974503517151, -0.016704069450497627, -0.016621852293610573, -0.034367356449365616, -0.007276342250406742, 0.023281553760170937, 0.01197650283575058, -0.01873212866485119, -0.0015458801062777638, 0.036861319094896317, -0.025515159592032433, 0.01165448036044836, -0.018992487341165543, -0.04982444643974304, -0.022610103711485863, 0.014689715579152107, -0.008201301097869873, -0.023473398759961128, 0.0052893939428031445, 0.0074887401424348354, 0.011620222590863705, 0.0066939606331288815, -0.012497220188379288, 0.0001969819568330422, -0.010770631022751331, 0.012983680702745914, -0.009489391930401325, -0.003124305047094822, -0.009948445484042168, 0.00772169278934598, 0.015758557245135307, -0.031983017921447754, 0.0020331963896751404, 0.18153856694698334, -0.01730700582265854, 0.014689715579152107, 0.04146555811166763, 0.007886129431426525, 0.007166717667132616, 0.015361166559159756, -0.021322011947631836, -0.014073076657950878, 0.007673732005059719, -0.0038779752794653177, 0.013956599868834019, -0.011325606144964695, 0.004008154850453138, 0.003266474697738886, -0.008674058131873608, -0.024980738759040833, -0.04398692771792412, -0.008345183916389942, -0.0039430647157132626, -0.020595747977495193, 0.0061937980353832245, -0.009879929944872856, -0.014813043177127838, 0.00833148043602705, 0.00284681748598814, -0.03529916703701019, 0.0023415160831063986, 0.04286327585577965, 0.0028039952740073204, 0.005347631871700287, 0.010469162836670876, -0.020828701555728912, -0.0031551371794193983, -0.029324619099497795, 0.0023517932277172804, 0.03346295282244682, 0.0036827062722295523, 0.019787264987826347, 0.013675686903297901, 0.01630667969584465, 0.00043764253496192396, -0.020677966997027397, 0.008447956293821335, 0.025282206013798714, 0.0031431468669325113, -0.008961822837591171, -0.008153339847922325, -0.023213038221001625, 0.02372005395591259, -0.03694353625178337, -0.015196729451417923, 0.0019749582279473543, 0.020266873762011528, -0.011572262272238731, -0.006409621797502041, -0.010332131758332253, 0.009756602346897125, 0.035737667232751846, 0.0450831763446331, -0.018403254449367523, 0.036724288016557693, 0.02359672635793686, 0.011202278546988964, -0.001109950477257371, 0.016525929793715477, -0.024857409298419952, 0.022843055427074432, 0.005231155548244715, 0.007940942421555519, -0.033243704587221146, -0.0011544855078682303, 0.01606002449989319, 0.01944468915462494, -0.026597702875733376, -0.004176017362624407, 0.04549426957964897, 0.01833473891019821, -0.011791511438786983, 0.010688412003219128, -0.012134088203310966, -0.03729981929063797, -0.0036690030246973038, 0.02828318253159523, -0.017649583518505096, -0.027378778904676437, -0.00220962380990386, -0.002495675813406706, -0.005361334886401892, -0.01860879920423031, 0.008797385729849339, -0.0014491020701825619, -0.00556002976372838, -0.015320057980716228, -0.0020280578173696995, 0.0007759376312606037, 0.011688738130033016, 0.046042390167713165, -0.015155620872974396, -0.011777807958424091, -0.026940280571579933, 0.04226033762097359, 0.014018263667821884, -0.0013583190739154816, 0.018307331949472427, -0.0020075030624866486, -0.001365170581266284, 0.022089386358857155, 0.018773237243294716, -0.0019064428051933646, -0.009859375655651093, -0.02639215625822544, -0.010530826635658741, -0.01832103542983532, 0.02300749346613884, 0.0025470624677836895, 0.006594613194465637, -0.011126911267638206, 0.029872741550207138, -0.004912558943033218, 0.011770956218242645, -0.002278139116242528, 0.016265571117401123, -0.016923319548368454, -0.028420213609933853, -0.025364425033330917, -0.03184598684310913, 0.013134414330124855, -0.014977480284869671, -0.0422329306602478, 0.02306230552494526, -0.025707002729177475, -0.0037649248261004686, -0.008996080607175827, -0.014114185236394405, -0.004669328685849905, -0.015525603666901588, 0.011298200115561485, -0.007660028990358114, 0.016210759058594704, 0.004902281332761049, -0.011962800286710262, 0.015731150284409523, 0.013271445408463478, -0.005464108195155859, 0.0013840124011039734, 0.01556671317666769, 0.006899507250636816, 0.0008697181474417448, -0.04305511713027954, -0.01582707278430462, -0.016909616068005562, 0.004898855462670326, -0.012867203913629055, 0.00046162292710505426, -0.038861971348524094, 0.013415328226983547, -0.0311882384121418, 0.012593142688274384, 0.013394773006439209, -0.03255854919552803, 0.01589558832347393, 0.007838169112801552, 0.0017274460988119245, -0.006471285596489906, -0.008667206391692162, -0.1723300963640213, 0.015087105333805084, 0.019472094252705574, -0.0400952510535717, 0.008948119357228279, -0.014388247393071651, 0.015347464010119438, 0.0034600310027599335, 0.01120913028717041, -0.008269816637039185, 0.0010320141445845366, 0.002159950090572238, -0.012846649624407291, 0.01544338557869196, -0.01553930714726448, 0.0007583805127069354, 0.003400079905986786, 0.004926261957734823, 0.05431906133890152, 0.03212004899978638, 0.036559849977493286, -0.031763769686222076, 0.002612152136862278, 0.019526906311511993, 0.0207601860165596, -0.0039636194705963135, 0.017211085185408592, 0.012230010703206062, 0.002034909324720502, -0.02117127738893032, 0.014566387981176376, -0.0007164148264564574, 0.027968011796474457, 0.007399669848382473, 0.01189428474754095, 0.019896890968084335, 0.008420550264418125, 0.00889330729842186, -0.005330502986907959, 0.0005485519068315625, 0.012949422933161259, 0.008427402004599571, -0.00481663690879941, 0.00848221406340599, -0.015731150284409523, 0.0025487751699984074, 0.003788905218243599, -0.03666947782039642, 0.006426750682294369, -0.013984005898237228, 0.0048954300582408905, -0.023500803858041763, 0.030393458902835846, 0.00481663690879941, 0.014018263667821884, -0.024624457582831383, 0.0056696548126637936, 0.013024789281189442, 0.003379525151103735, 0.00718727195635438, 0.018115488812327385, -0.03710797429084778, -0.017814019694924355, 0.007433927617967129, -0.006317125633358955, -0.008324628695845604, -0.015580416657030582, 0.005984825547784567, -0.027186935767531395, 0.0025350721552968025, -0.015799665823578835, 0.016909616068005562, 0.0021291179582476616, 0.009208478033542633, 0.010606193915009499, 0.015909289941191673, 0.009441430680453777, 0.015045995824038982, -0.00833148043602705, -0.015553010627627373, -0.012435556389391422, 0.036861319094896317, 0.01503229234367609, -0.02443261444568634, 0.024473723024129868, -0.015183026902377605, -0.007276342250406742, -0.02182902581989765, -0.018485471606254578, -0.006923487409949303, 0.02158237062394619, -0.04015006124973297, -0.008783682249486446, -0.012421853840351105, 0.01595040038228035, 0.007954644970595837, 0.009420876391232014, -0.011400973424315453, 0.03053048998117447, -0.012682212516665459, -0.00585464620962739, -0.005762150511145592, -0.03373701497912407, 0.0207601860165596, 0.023857085034251213, 0.01659444533288479, -0.024830004200339317, 0.022664915770292282, 0.05442868545651436, -0.0004474916204344481, 0.010448608547449112, -0.01607372798025608, 0.017567364498972893, 0.029324619099497795, -0.009708641096949577, 0.032257080078125, -0.015744853764772415, -0.01075692754238844, 0.022212713956832886, -0.02034909278154373, 0.04226033762097359, 0.005936864763498306, -0.03390145301818848, 0.009407172910869122, 0.0017231638776138425, 0.007653177250176668, -0.1250818371772766, -0.03148970752954483, 0.0068275658413767815, 0.03453179448843002, -0.009324954822659492, 0.015183026902377605, -0.018005864694714546, 0.01962282881140709, -0.013182375580072403, 0.04941335320472717, -0.014648606069386005, -0.03716278821229935, -0.0009780582040548325, 0.00769428675994277, -0.02687176503241062, 0.001163906417787075, -0.023213038221001625, 0.014717121608555317, -0.016635553911328316, 0.039821188896894455, 0.01730700582265854, 0.006848120596259832, -0.01625186763703823, -0.012175197713077068, -0.02045871689915657, 0.026734733954072, -0.01855398714542389, 0.020417608320713043, 0.004038986749947071, 0.0177318025380373, 0.012325932271778584, -0.010201952420175076, -0.002255871659144759, -0.03850569203495979, 0.0013891509734094143, 0.0028433918487280607, -0.0016049747355282307, -0.004450079519301653, 0.023514507338404655, -0.016676664352416992, -0.004778953734785318, 0.0067213671281933784, -0.0033092969097197056, -0.015155620872974396, 0.011051543988287449, 0.017169974744319916, -0.021541262045502663, 0.01684110052883625, 0.020910918712615967, -0.033408138900995255, -0.021376824006438255, -0.01263425126671791, -0.02526850253343582, -0.015155620872974396, 0.018225112929940224, -0.00271321227774024, 0.015347464010119438, 0.036203570663928986, 0.002867372240871191, -0.010112882591784, -0.004587110131978989, 0.002005790127441287, 0.017512552440166473, 0.01485415268689394, 0.018663613125681877, 0.016635553911328316, -0.02491222321987152, -0.028365401551127434, 0.01538857351988554, -0.01914322003722191, -0.016525929793715477, 0.03683391213417053, -0.01856769062578678, 0.030667521059513092, -0.015429682098329067, 0.013559210114181042, -0.004408970009535551, -0.023761162534356117, 0.01748514547944069, -0.009461985900998116, -0.01660814881324768, -0.03011939860880375, -0.013278297148644924, -0.008530175313353539, -0.007180420681834221, 0.020650560036301613, 0.008125933818519115, 0.008831643499433994, 0.019198032096028328, -0.020773889496922493, 0.01085284911096096, 0.008530175313353539, 0.0297631174325943, -0.020075030624866486, -0.018430659547448158, 0.008310926146805286, 0.001863620593212545, -0.018526582047343254, 0.02454223856329918, -0.0016529355198144913, -0.058978110551834106, -0.015607822686433792, -0.047166045755147934, 0.02040390484035015, 0.0070982021279633045, -0.026241421699523926, 0.009393470361828804, -0.016621852293610573, 0.002672103000804782, -0.004710438195616007, 0.0022661490365862846, 0.005433276295661926, -0.024816300719976425, 0.00298042269423604, -0.01949950121343136, 0.006882378365844488, -0.007015983574092388, -0.033243704587221146, 0.00998955499380827, -0.01933506317436695, 0.02744729444384575, 0.03883456438779831, -0.028968337923288345, 0.01623816415667534, 0.023692646995186806, -0.01892397180199623, 0.011565410532057285, -0.017416629940271378, -0.011202278546988964, 0.03318889066576958, -0.013572913594543934, -0.022157900035381317, 0.014950074255466461, -0.013689389452338219, 0.015333760529756546, 0.006652851589024067, -0.014566387981176376, -0.02015724964439869, 0.01660814881324768, -0.006279442459344864, 0.025816626846790314, 0.003521694801747799, -0.010818591341376305, -0.039766374975442886, -0.036148760467767715, 0.0076052164658904076, -0.016292978078126907, 0.0029701453167945147, 0.013387921266257763, 0.012812391854822636, 0.004727567080408335, -0.005227729678153992, 0.002147959778085351, 0.01701924204826355, -0.0070707956328988075, -0.012428704649209976, 0.001101386034861207, -0.021979760378599167, 0.01162707433104515, -0.00010593132901703939, -0.0093112513422966, -0.01595040038228035, 0.019321361556649208, -0.004946816246956587, 0.0012298525543883443, 0.008413698524236679, 0.016457414254546165, -0.04075299948453903, -0.030667521059513092, 0.012572587467730045, -0.004038986749947071, -0.02981792949140072, 0.00194241339340806, -0.01541597954928875, 0.014401950873434544, 0.012915165163576603, 0.014621200039982796, 0.011435231193900108, 0.0068344175815582275, -0.015868181362748146, 0.010893958620727062, 0.013922342099249363, 0.009503094479441643, -0.019526906311511993, -0.024213364347815514, 0.01803326979279518, 0.03338073566555977, 0.006711089517921209, 0.006183520425111055, 0.0055291978642344475, 0.022431962192058563, 0.0016435147263109684, 0.002730341162532568, 0.010681561194360256, -0.02924240007996559, -0.007146162912249565, 0.007331154774874449, -0.0055257719941437244, -0.013141266070306301, 0.031517114490270615, 0.0038197371177375317, 0.0011947384336963296, 0.004484337288886309, 0.0037169638089835644, -0.019910594448447227, -0.000169575767358765, -0.044617269188165665, -0.0009326667641289532, -0.00401843199506402, 0.005936864763498306, 0.011647628620266914, 0.00865350291132927, -0.00883849523961544, 0.025953657925128937, -0.0006517533329315484, 0.011668183840811253, -0.042424775660037994, 0.019705047830939293, 0.004223978146910667, -0.006885804235935211, -0.023089710623025894, 0.0139017878100276, 0.016991835087537766, 0.00818074680864811, 0.03820422291755676, -0.006532949395477772, 0.03872494027018547, 0.022267526015639305, 0.02282935194671154, -0.016416305676102638, -0.0012358477106317878, -0.0034480406902730465, -0.017471443861722946, 0.04042412340641022, -0.011757253669202328, -0.022267526015639305, -0.008756276220083237, -0.027255451306700706, -0.010078624822199345, 0.010983028449118137, 0.012613696977496147, 0.07640844583511353, -0.00356622994877398, -0.0015921280719339848, 0.012791836634278297, -0.001662356429733336, -0.0014105620793998241, 0.014196404255926609, -0.00043935541179962456, -0.00034685953869484365, -0.037683505564928055, 0.030941583216190338, 0.005587436258792877, 0.00016904048970900476, -0.03905381262302399, 0.015991508960723877, 0.027474701404571533, -0.012737024575471878, 0.03277779743075371, -0.0232541486620903, -0.0015159046743065119, -0.0003716963983606547, 0.006776179186999798, -0.004768676124513149, -0.02509036287665367, -0.0065500782802701, 0.02329525724053383, 0.039163440465927124, -0.0021548112854361534, -0.011544855311512947, -0.04162999615073204, 0.0022370298393070698, 0.0060362122021615505, -0.014141591265797615, -0.005888903979212046, 0.0022798520512878895, -0.011448933742940426, 0.010112882591784, 0.02182902581989765, 0.019198032096028328, -0.005467534065246582, -0.02794060669839382, 0.023815974593162537, -0.009359212592244148, -0.03392885625362396, -0.015429682098329067, -0.0016477969475090504, -0.03107861429452896, -0.01343588251620531, -0.06681627780199051], "1f9270dc-5439-4eb4-b6a8-bee468243ae9": [0.011466084979474545, -0.022080326452851295, 0.008951118215918541, -0.02324315905570984, 0.005455855280160904, -0.021174397319555283, -0.025257837027311325, -0.013697103597223759, -0.021620601415634155, -0.0064868563786149025, 0.005509940441697836, 0.01663123071193695, 0.006077836267650127, 0.009235065430402756, -0.011601298116147518, 0.013142729178071022, 0.0109049491584301, 0.012933149002492428, 0.022580614313483238, -0.00352568575181067, 0.005678956862539053, 0.0021363694686442614, 0.0003969776735175401, -0.032315969467163086, -0.024122046306729317, 0.007294755429029465, -0.0031487788073718548, -0.0037318861577659845, 0.025420093908905983, -0.034722764045000076, 0.018713515251874924, 0.010688608512282372, -0.019835785031318665, -0.001085931551642716, -0.013217096216976643, 0.0026975045911967754, -0.003351598745211959, -0.012263842858374119, 0.031207220628857613, 0.011195657774806023, 0.038157183676958084, -0.003016945905983448, -0.014346127398312092, 0.0031437084544450045, -0.02487923949956894, 0.005384868010878563, 0.006730240304023027, -0.030179599300026894, -0.03474980965256691, 0.013507804833352566, 0.027569985017180443, 0.010323532857000828, -0.04088849201798439, -0.003995551727712154, -0.00013141038652975112, -0.006524039898067713, 0.0071324994787573814, 0.014805852435529232, 0.02124200388789177, 0.0024997552391141653, 0.016712360084056854, 0.0030828623566776514, 0.00031648355070501566, 0.0012448071502149105, -0.022648220881819725, 0.002961170393973589, 0.0306122824549675, 0.014508383348584175, -0.01744251139461994, 0.02304033935070038, 0.01652306132018566, 0.031234264373779297, 0.00027444068109616637, 0.0007217007805593312, 0.01986282877624035, -0.01642841100692749, -0.033505845814943314, 0.02743477188050747, 0.0009025485487654805, 0.02385162003338337, 0.007315037306398153, -0.00943788606673479, 0.00851843599230051, 0.031234264373779297, 0.009539295919239521, -0.008964639157056808, 0.024838676676154137, 0.035696301609277725, -0.005668816156685352, -0.020849885419011116, 0.028529997915029526, 0.0015532623510807753, 0.015887558460235596, 0.020511852577328682, 0.011040163226425648, -0.01898394152522087, -0.030260728672146797, -0.016212070360779762, -0.01903802715241909, -0.025325443595647812, -0.032829780131578445, 0.018186183646321297, -0.007869412191212177, -0.009235065430402756, -0.01949775218963623, -0.013622736558318138, 0.0003724702983163297, 0.014670639298856258, 0.0007559266523458064, -0.011675665155053139, -0.006906017195433378, 0.048190005123615265, 0.006544321775436401, -0.03710252046585083, 0.014481340534985065, -0.034776851534843445, 0.02390570566058159, -0.007943779230117798, -0.008308854885399342, -0.01815914176404476, 0.010303250513970852, -0.007071653846651316, 0.029909173026680946, 0.014386691153049469, 0.013453719206154346, -0.008187162689864635, -0.019741136580705643, -0.025555307045578957, -0.03504727780818939, -0.008457589894533157, 0.04259217903017998, 0.01775350049138069, -0.01374442782253027, 0.011547212488949299, 0.004306542221456766, 0.012189475819468498, 0.020647065714001656, -0.01751011796295643, -0.024135567247867584, -0.0045837294310331345, 0.02497388981282711, 0.003971889615058899, -0.019376059994101524, 0.03945523127913475, -0.01008690893650055, 0.02815140038728714, -0.017117999494075775, -0.009762397967278957, 0.007213627453893423, -0.022715827450156212, 0.0009701551753096282, -0.013690343126654625, 0.01791575737297535, 0.015590089373290539, -0.02052537351846695, -0.012615397572517395, -0.005989947356283665, 0.00010912132711382583, -0.010262686759233475, -0.013595693744719028, 0.004600631073117256, 0.02262117899954319, -0.00551670091226697, -0.007707155775278807, -0.0037217449862509966, 0.028529997915029526, 0.03355993330478668, -0.02175581455230713, -0.012919627130031586, -0.005611350294202566, 0.002714406233280897, 0.029503533616662025, 0.014251478016376495, 0.023432457819581032, -0.003816394368186593, -0.01929493248462677, 0.013791752979159355, -0.033343590795993805, 0.0044654179364442825, -0.004732463974505663, 0.01626615598797798, -0.011215940117835999, 0.008856468833982944, 0.006977004464715719, -0.0397256575524807, 0.0027008848264813423, 0.02656940557062626, 0.010479027405381203, 0.019565358757972717, 0.01894337870180607, 0.012047501280903816, 0.010357336141169071, 0.0011814258759841323, 0.007619267329573631, -0.6027266383171082, 0.014346127398312092, -0.02400035411119461, -0.008694212883710861, -0.00826153066009283, -0.03553404659032822, -0.009633945301175117, 0.006331360898911953, -0.023432457819581032, 0.018348440527915955, 0.000698038493283093, 0.007118978071957827, 0.019781699404120445, -0.0007648000027984381, -0.005334163084626198, -0.015441354364156723, -0.011736511252820492, -0.011560734361410141, 0.0016960813663899899, 0.003410754492506385, -0.010580438189208508, 0.03274865075945854, -0.014995151199400425, 0.02313498966395855, -0.014886979945003986, 0.013264421373605728, 0.022242581471800804, -0.012737089768052101, 0.008254769258201122, 0.021512430161237717, 0.0061826263554394245, -0.009620423428714275, 0.02512262389063835, 0.0063009378500282764, 0.04078032076358795, -0.022607658058404922, 0.009410843253135681, 0.013277942314743996, 0.002934127813205123, 0.02113383263349533, -0.027218429371714592, -0.011689186096191406, 0.029801003634929657, 0.011046923696994781, -0.0038332960102707148, -0.0013901613419875503, -0.005337543319910765, 0.02030903287231922, 0.0027972243260592222, -0.04272739216685295, 0.007389404810965061, 0.007531378883868456, -0.026650534942746162, -0.0035290662199258804, 0.018334917724132538, 0.005915580317378044, 0.011797357350587845, 0.024906283244490623, 0.029855089262127876, -0.02072819322347641, -0.0075516607612371445, -0.0010453675640746951, -0.0038332960102707148, 0.02062002196907997, -0.00907957088202238, 0.025352487340569496, -0.03577743098139763, -0.004793310072273016, 0.005699239205569029, -0.01622559130191803, 0.02682631090283394, 0.04086144641041756, -0.015901079401373863, 0.01361597515642643, 0.008734776638448238, 0.006314459256827831, 0.03880620747804642, -0.008126317523419857, -0.007524617947638035, 0.019389580935239792, 0.02155299484729767, -0.002040030201897025, -0.0422947071492672, -0.007260952144861221, 0.02129608951508999, 0.0012186095118522644, -0.002704265294596553, 0.003978650085628033, 0.003640617011114955, 0.01389992330223322, 0.015292620286345482, 0.013244139030575752, -0.001299737486988306, -0.03447938337922096, -0.004871057812124491, 0.02293216995894909, -0.02440599352121353, 0.003911043517291546, -0.014467818662524223, -0.04816296324133873, -0.0072474307380616665, -0.011702707968652248, 0.005023172590881586, -0.013129208236932755, 0.012622158043086529, -0.006662633735686541, 0.014224435202777386, 0.01596868596971035, 0.02871929667890072, -0.025933904573321342, 0.014183871448040009, -0.039590444415807724, 0.006564604118466377, 0.004364008083939552, 0.0020974958315491676, -0.025203751400113106, 0.041483428329229355, 0.004502601455897093, -0.007186585105955601, 0.016049813479185104, 0.011925810016691685, 0.04261922091245651, -0.007754480466246605, -0.009999020956456661, 0.03142356127500534, 0.000762264768127352, 0.027651112526655197, -0.012906106188893318, -0.050082992762327194, -0.006936440244317055, -0.004816972650587559, 0.020187340676784515, 0.00044916156912222505, -0.005783747415989637, 0.015901079401373863, -0.02651531994342804, 0.023256681859493256, -0.015887558460235596, 0.0410507470369339, -0.029746918007731438, -0.011770314536988735, 0.009999020956456661, 0.017564203590154648, -0.02844887040555477, 0.004904861096292734, -0.023162031546235085, -0.028367742896080017, -0.002305386122316122, -0.0027110259979963303, -0.010276207700371742, 0.016387848183512688, -0.003914423752576113, -0.025095582008361816, 0.015062757767736912, 0.004228794947266579, -0.010249164886772633, 0.008504914119839668, -0.018699994310736656, -0.0024118665605783463, 0.002993283560499549, -0.0058344523422420025, 0.010107191279530525, 0.003045678837224841, 0.01456246804445982, 0.0008408574503846467, -0.023364851251244545, -0.009309433400630951, 0.01832139678299427, -0.006314459256827831, -0.0443229079246521, -0.004455277230590582, -0.004576968960464001, -0.0069229188375175, 0.014697681181132793, 0.0027059554122388363, 0.037481117993593216, -0.011330871842801571, 0.009262108244001865, -0.010249164886772633, -0.03090975247323513, -0.004556687083095312, 0.002589334035292268, -0.006622069515287876, -0.023824576288461685, 0.03172103315591812, 0.0019893250428140163, 0.01507627870887518, -0.02179637737572193, 0.012534269131720066, -0.012655961327254772, 0.012791174463927746, -0.0005357825430110097, -0.031910330057144165, -0.011601298116147518, 0.005006270948797464, 0.0038332960102707148, 0.01725321263074875, -0.010790018364787102, 0.0048338742926716805, 0.0345875509083271, 0.021052705124020576, -0.00043268242734484375, -0.0021566515788435936, -0.01791575737297535, -0.01723969168961048, 0.003988791257143021, 0.02344598062336445, -0.004573588725179434, 0.005364586133509874, -0.022431880235671997, 0.020795799791812897, -0.016712360084056854, -0.019578879699110985, -0.005851353984326124, 0.018659429624676704, 0.04272739216685295, -0.0024913044180721045, 0.007585464045405388, 0.02298625372350216, -0.00453978544101119, 0.011060444638133049, 0.005229372996836901, 0.01576586626470089, 0.0034242758993059397, -0.012547791004180908, -0.025501221418380737, 0.0007893074071034789, -0.013710624538362026, -0.0018591823754832149, -0.02686687558889389, 0.016874615103006363, 0.004103722516447306, -0.03182920068502426, -0.008917314931750298, 0.04800070822238922, 0.006743761245161295, 0.03245118260383606, -0.040509894490242004, 0.013406394980847836, 0.009032245725393295, -0.025447135791182518, 0.012933149002492428, 0.015360226854681969, -0.02738068625330925, -0.001107058604247868, 0.006797846872359514, 0.030639326199889183, 0.003049059072509408, -0.011324110440909863, 0.04691900312900543, 0.0068451715633273125, 0.017307298257946968, -0.026704618707299232, 0.016049813479185104, 0.0014349507400766015, -0.008917314931750298, 0.005445714108645916, 0.018037449568510056, 0.03126130625605583, 0.02471698448061943, 0.03101792186498642, -0.011486366391181946, -0.0012177644530311227, 0.003442867659032345, 0.007064892910420895, -0.04729760065674782, -0.0015507270582020283, -0.01751011796295643, -0.008464350365102291, -0.005712760146707296, -0.032937951385974884, -0.03864394873380661, -0.021323131397366524, -0.008795622736215591, 0.03539883345365524, 0.012365252710878849, 0.02861112542450428, 0.005638393107801676, 0.009593380615115166, -0.001864252844825387, -0.025933904573321342, -0.011215940117835999, 0.03310020640492439, -0.011114530265331268, 0.0022124270908534527, -0.021782856434583664, -0.003016945905983448, 0.014116264879703522, -0.019321974366903305, -0.0017527019372209907, -0.02901676669716835, 0.0041713290847837925, -0.008714495226740837, -0.00587501609697938, 0.008085752837359905, -0.012412577867507935, 0.017739979550242424, -0.001318329363130033, -0.009721833281219006, -0.013940487056970596, 0.01786167174577713, 0.0077206771820783615, -0.02103918418288231, 0.016969263553619385, 0.03342472016811371, 0.010066627524793148, 0.029368320479989052, -0.017726458609104156, 0.003725125454366207, -0.011236222460865974, 0.014481340534985065, -0.03223484009504318, -0.007173063699156046, -0.007159542292356491, 0.033695146441459656, -0.011709468439221382, 0.015197970904409885, 0.00437414925545454, 0.03285682201385498, 0.009890849702060223, -0.002016367856413126, -0.02098509855568409, -0.016144463792443275, 0.017428990453481674, 0.02635306492447853, 0.012547791004180908, -0.02262117899954319, -0.0033313168678432703, 0.0004202174604870379, -0.001586220576427877, 0.010168037377297878, -0.023878661915659904, 0.029097894206643105, 0.005080638453364372, 0.011168615892529488, 0.005638393107801676, 0.015130364336073399, 0.019254367798566818, 0.005675576627254486, 0.012987233698368073, -0.02139073796570301, -0.017685893923044205, 0.019876349717378616, -0.010073387995362282, 0.004543165676295757, 0.007125739008188248, 0.03320837765932083, 0.027150822803378105, -0.024433037266135216, 0.02083636447787285, 0.013304985128343105, 0.016455454751849174, -0.015995729714632034, -0.03188328817486763, -0.009153937920928001, -0.0073082768358290195, 0.008450828492641449, 0.04083440452814102, 0.002185384277254343, 0.03642645105719566, 0.010735932737588882, 0.02471698448061943, 0.033451762050390244, -0.004864297341555357, 0.0004597250954248011, -0.025352487340569496, -0.007693634834140539, 0.0073623619973659515, 0.018767600879073143, -0.006936440244317055, 0.009363518096506596, 0.022810477763414383, 0.006791085936129093, 0.017104478552937508, 0.030747495591640472, -0.02825957164168358, -0.03631828352808952, -0.009424364194273949, 0.006747141946107149, 0.011601298116147518, -0.024149088189005852, -0.03353288769721985, 0.022445401176810265, -0.02124200388789177, -0.016644753515720367, -0.022864563390612602, 0.01580643095076084, -0.020958054810762405, 0.02825957164168358, -0.00753813935443759, -0.009039006195962429, 0.00884970836341381, -0.009647466242313385, -0.019511273130774498, 0.015982206910848618, -0.011837921105325222, -0.03253231197595596, 0.0010183248668909073, 0.017591245472431183, 0.03685913607478142, 0.022445401176810265, 0.00346145941875875, -0.021214960142970085, -0.007909975945949554, 0.01607685722410679, -0.033343590795993805, -0.0319373719394207, -0.022445401176810265, -0.008288572542369366, 0.012710046954452991, 0.030720453709363937, -0.007876172661781311, -0.035750385373830795, -0.013277942314743996, -0.0009794511133804917, -0.009302671998739243, 0.010310010984539986, 0.003508784109726548, -0.008633366785943508, 0.002094115363433957, 0.0038738599978387356, 0.015738824382424355, 0.016347283497452736, -0.027150822803378105, 0.01934901811182499, -0.02732660062611103, -0.006699817255139351, -0.00020239735022187233, -0.016644753515720367, -0.02067410759627819, 0.014048658311367035, 0.000633812160231173, -0.014048658311367035, -0.013440198265016079, 0.04316007345914841, -0.017848150804638863, 0.02610968053340912, 0.04524235799908638, 0.012777653522789478, 0.02210736833512783, 0.003840056713670492, 0.011330871842801571, -0.006557843182235956, -0.019051548093557358, -0.0037859713193029165, -0.004012453369796276, 0.007463772315531969, -0.002195525448769331, -0.014805852435529232, -0.002584263449534774, 0.01842956803739071, -0.02037663944065571, -0.00682150898501277, 0.01705039292573929, 0.03312724828720093, 0.006608548108488321, 0.011472845450043678, -0.027394207194447517, -0.040158338844776154, -0.010607480071485043, -0.0359126441180706, -0.0326404832303524, -0.008078992366790771, 0.0061826263554394245, -0.0072474307380616665, 0.009579859673976898, 0.020281989127397537, -0.008045189082622528, 0.004462037701159716, -0.030531154945492744, 0.004489080514758825, -0.0148193733766675, 0.009863807819783688, 0.013886402361094952, -0.009052528068423271, -0.004441755823791027, -0.03009847179055214, 0.00035049812868237495, 0.009931414388120174, 0.01315625011920929, -0.006513898726552725, 0.027718719094991684, 0.03358697518706322, 0.024987410753965378, 0.021836942061781883, 0.007916736416518688, 0.014805852435529232, 0.009356757625937462, -0.0033279363997280598, 0.0076665920205414295, -0.03112609311938286, 0.005885157268494368, -0.03172103315591812, 0.008917314931750298, 0.008362940512597561, 0.019213804975152016, 0.0050569758750498295, 0.01673940196633339, 0.025555307045578957, 0.028475912287831306, 0.00013299491547513753, 0.006162344478070736, -0.021404258906841278, -0.0004753591201733798, -0.028124358505010605, -0.002829337492585182, 0.0037352663930505514, 0.020484808832406998, -0.009187741205096245, -0.036156024783849716, 0.004418093245476484, -0.0006562068592756987, 0.003025396727025509, 0.011310589499771595, 0.005391628947108984, 0.013717385940253735, 0.02047128789126873, 0.013460480608046055, 0.012750610709190369, -0.03142356127500534, -0.009106612764298916, -0.03161286190152168, 0.010100430808961391, -0.023013297468423843, -0.03526362031698227, 0.025568827986717224, 0.004681759048253298, -0.010729172267019749, -0.003988791257143021, 0.0017222788883373141, -0.04453925043344498, -0.023121468722820282, -0.011452563107013702, -0.02231018804013729, -0.015008672140538692, -0.0005235288408584893, -0.008836186490952969, -0.0025656716898083687, -0.0014079080428928137, 0.039482273161411285, 0.01504923589527607, 0.01162157952785492, -0.008241248317062855, -0.03266752511262894, -0.009640705771744251, 0.007937018759548664, 0.04462037608027458, 0.002029889030382037, 0.018402524292469025, 0.02395978942513466, 0.0034090643748641014, -0.0011966374004259706, -0.009559577330946922, 0.014765288680791855, 0.010330293327569962, 0.0378597117960453, 0.022134410217404366, -0.026528842747211456, -0.024122046306729317, -0.008984921500086784, 0.0030879329424351454, -0.0053510647267103195, -0.04748689755797386, 0.03842760995030403, 0.009086331352591515, -0.010310010984539986, -0.02646123617887497, 0.027826888486742973, -0.01703687198460102, 0.011466084979474545, 0.005570786539465189, 0.002217497443780303, 0.005564025603234768, -0.012324688956141472, -0.044755589216947556, -0.001267624320462346, 0.012378774583339691, 0.022445401176810265, -0.01775350049138069, 0.0010335363913327456, -0.003545967862010002, -0.005607970058917999, -0.0066660139709711075, -0.0018473512027412653, -0.020998619496822357, 0.027908017858862877, -0.001997775863856077, -0.02139073796570301, 0.030531154945492744, -0.0358315147459507, -0.012554551474750042, 0.010952274315059185, -0.009120134636759758, 0.029233107343316078, -0.027678154408931732, -0.009160698391497135, -0.018916334956884384, -0.0013377661816775799, -0.021688207983970642, -0.007788283750414848, -0.02236427366733551, -0.006517279427498579, -0.007490814663469791, 0.012710046954452991, 0.021728770807385445, 0.010999598540365696, -0.018564781174063683, -0.0008687452063895762, -0.012446381151676178, 0.004756126552820206, -0.022120889276266098, -0.01149312686175108, -0.0020180579740554094, -0.02701560966670513, -0.022485965862870216, -0.030314814299345016, 0.04740576818585396, 0.03364105895161629, -0.0019673530478030443, -0.032937951385974884, 0.02585277520120144, 0.02728603594005108, -0.03883324936032295, 0.028854509815573692, -0.029855089262127876, 0.01412978582084179, -0.005820930935442448, 0.024135567247867584, 0.001730729709379375, 0.010729172267019749, 0.021580036729574203, -0.02666405588388443, -0.010519592091441154, -3.266773637733422e-05, 0.013663300313055515, 0.006027131341397762, 0.009999020956456661, 0.00604065228253603, 0.0039313253946602345, 0.0007728282944299281, 0.023013297468423843, -0.041645683348178864, 0.010120713151991367, 0.02364880032837391, -0.009552816860377789, -0.00044873901060782373, 0.028394784778356552, 0.012493705376982689, 0.02226962521672249, 0.009586620144546032, -0.013034558854997158, 0.023351330310106277, -0.004651335999369621, -0.022580614313483238, -0.01507627870887518, -0.0006540941540151834, -0.016915179789066315, 0.0033955429680645466, -0.04586433991789818, -0.004316683392971754, -0.005787127651274204, 0.010634522885084152, -0.02272935025393963, 0.0022851042449474335, -0.029368320479989052, 0.01581995189189911, 0.035804472863674164, 0.005905439145863056, -0.030774539336562157, -0.02589333988726139, 0.012520748190581799, -0.001970733283087611, -0.011384956538677216, -0.010161276906728745, -0.011317349970340729, 0.02324315905570984, -0.0041172439232468605, 0.011290307156741619, -0.012135390192270279, 0.002525107702240348, -0.021106790751218796, -0.04994777962565422, -0.012121869251132011, 0.025622913613915443, 0.02148538827896118, 0.007227148860692978, 0.0014501622645184398, 0.033397674560546875, -0.017158562317490578, 0.02436543069779873, -0.032261885702610016, -0.004576968960464001, 0.018767600879073143, 0.014684160239994526, -0.013365831226110458, 0.006108259316533804, -0.011533691547811031, -0.013575411401689053, 0.0009540985920466483, -0.01504923589527607, -0.007761241402477026, 0.014657117426395416, -9.649790445109829e-05, -0.018145618960261345, -0.006611928343772888, -0.018808165565133095, 0.02368936315178871, 0.009201262146234512, -0.010438463650643826, -0.031044965609908104, 0.0015439664712175727, 0.015833472833037376, 0.01412978582084179, -0.042916689068078995, -0.02871929667890072, -0.022350752726197243, -0.007659831549972296, -0.002516656881198287, -0.0067741842940449715, -0.030666368082165718, 0.02436543069779873, -0.026434192433953285, 0.020295510068535805, 0.01980874314904213, -0.008728016167879105, 0.04402543976902962, 0.010492549277842045, 0.006686295848339796, 0.011236222460865974, 0.014400212094187737, -0.023878661915659904, -0.006216429639607668, 0.016752922907471657, -0.006047413218766451, -0.021458344534039497, -0.016752922907471657, 0.028854509815573692, -0.016036292538046837, 0.017428990453481674, -0.04067214950919151, -0.04729760065674782, -0.03631828352808952, 0.01729377545416355, -0.00041176663944497705, -0.007991103455424309, 0.03147764876484871, 0.014143307693302631, -0.009113374166190624, 0.016306718811392784, -0.025933904573321342, -0.020714672282338142, -0.031342435628175735, 0.017158562317490578, 0.018916334956884384, 0.01627967692911625, -0.025758126750588417, 0.005046835169196129, 0.004482319578528404, -0.0027110259979963303, 0.004360627848654985, 0.19070479273796082, -0.000140389398438856, -0.01863238774240017, 0.03234301134943962, 0.0010681847343221307, 0.01837548241019249, 0.016009250655770302, 0.010350575670599937, -0.013115686364471912, -0.015671217814087868, 0.0037183647509664297, 0.002209046622738242, -0.03158581629395485, 0.009201262146234512, 0.008024906739592552, -0.020336074754595757, -0.016009250655770302, -0.034776851534843445, -0.02692096121609211, 0.010168037377297878, 0.014738245867192745, 0.004664857406169176, 0.006162344478070736, -0.019065070897340775, 0.019538316875696182, 0.009627183899283409, -0.004931903909891844, 9.342127668787725e-06, 0.02482515573501587, -0.007206866983324289, -0.0032130051404237747, -0.0148193733766675, -0.023581193760037422, 0.02041720226407051, -0.03009847179055214, 0.016455454751849174, 0.009775918908417225, 0.007632788736373186, 0.024487121030688286, 0.012513987720012665, -0.005050215404480696, -0.01970057189464569, -0.03320837765932083, 0.008457589894533157, 0.018078012391924858, 0.028178444132208824, 0.004252457059919834, -0.04421473667025566, -0.024027395993471146, 0.018280833959579468, -0.023919226601719856, -0.040969617664813995, -0.017307298257946968, 0.01986282877624035, -0.010195080190896988, -0.0071392604149878025, -0.004343726206570864, -0.033397674560546875, 0.022188495844602585, 0.023473022505640984, -0.02195863425731659, 0.03485798090696335, 0.014237956143915653, 0.0058885375037789345, -0.02232370898127556, -0.0018490413203835487, -0.019943956285715103, 0.033803313970565796, 0.00025775027461349964, -0.005905439145863056, -0.007470532786101103, -0.01863238774240017, 0.015008672140538692, 0.016874615103006363, -0.008768579922616482, -0.01878112182021141, 0.01765885204076767, 0.010350575670599937, 0.011837921105325222, 0.028638169169425964, -0.0076125068590044975, -0.009809722192585468, -0.012865541502833366, -0.004431614652276039, -0.020795799791812897, -0.018307875841856003, 0.013757949694991112, 0.018037449568510056, 0.011952852830290794, -0.0034918824676424265, 0.013784992508590221, 0.0064767152070999146, -0.007085174787789583, 0.010479027405381203, -0.0047628870233893394, 0.007470532786101103, -0.008687452413141727, 0.012595115229487419, -0.0032484985422343016, -0.0077206771820783615, -0.03688617795705795, 0.01811857707798481, -0.008964639157056808, -0.0017696035793051124, -0.005993328057229519, -0.03750815987586975, 0.01116185449063778, -0.0003923297335859388, 0.0046986606903374195, -0.0345875509083271, -0.010282968170940876, -0.014603032730519772, 0.0020958054810762405, -0.02385162003338337, 0.025920381769537926, -0.02390570566058159, -0.011479605920612812, -0.029287192970514297, -0.003934706095606089, -0.003613574430346489, 0.0018743938999250531, -0.008525196462869644, -0.002584263449534774, -0.010925231501460075, -0.007734198588877916, -0.012182715348899364, -0.0163202416151762, 0.0006828269688412547, -0.010100430808961391, -0.01918676123023033, 0.025663476437330246, -0.029151979833841324, -0.010952274315059185, -0.025474179536104202, -0.015901079401373863, 0.0017780544003471732, -0.01652306132018566, 0.0017155183013528585, -0.017104478552937508, -0.01067508663982153, -0.004925142973661423, -0.015576567500829697, 0.011702707968652248, -0.009275630116462708, -0.0039380863308906555, -0.00639896746724844, -0.006081216502934694, 0.0008180402219295502, 0.025622913613915443, -0.015644174069166183, -0.002893563825637102, -0.026691097766160965, 0.017117999494075775, -0.019822264090180397, -0.022810477763414383, -0.030990879982709885, 0.010850864462554455, -0.009201262146234512, 0.010857624933123589, -0.005804029293358326, -0.020511852577328682, 0.005783747415989637, -0.0009202952496707439, 0.0022935550659894943, -0.004810211714357138, -0.027245473116636276, -0.16831347346305847, -0.015346704982221127, 0.012385535053908825, -0.04007720947265625, 0.011411999352276325, -0.021715249866247177, 0.024960368871688843, -0.010066627524793148, -0.013176532462239265, -0.005536983255296946, -0.0010757904965430498, -0.0032975133508443832, -0.019078591838479042, -0.02089044824242592, -0.0003819774719886482, -0.011783835478127003, -0.010296490043401718, 0.015427833423018456, 0.010593959130346775, 0.011885245330631733, 0.026136724278330803, -0.024784591048955917, 0.01887577213346958, 0.01841604709625244, -0.007727438118308783, -0.005922340787947178, -0.0020332694984972477, -0.02431134507060051, 0.011256503872573376, -0.02890859544277191, -0.005584307946264744, 0.03734590485692024, 0.010059867054224014, -0.02118791826069355, 0.01653658226132393, 0.029828045517206192, -0.007869412191212177, -0.0040462566539645195, -0.006652492564171553, -0.001882844720967114, 0.019470710307359695, 0.026488278061151505, 0.024013875052332878, 0.0007242360152304173, -0.03253231197595596, 0.007118978071957827, 0.021066226065158844, -0.012601875700056553, -0.011472845450043678, 0.0008712804410606623, 0.012872302904725075, -0.022905126214027405, 0.02563643455505371, -0.0055403634905815125, 0.013609214685857296, -0.03945523127913475, 0.001182270934805274, -0.0011670595267787576, -0.006044032983481884, 0.005036693997681141, 0.0037724499125033617, -0.016496017575263977, -0.010830582119524479, 0.001818618387915194, -0.006862073205411434, -0.005016412120312452, -0.026339543983340263, 0.002869901480153203, -0.010607480071485043, 0.012683004140853882, -0.0179563220590353, 0.009681269526481628, 0.002552150283008814, -0.0016377706779167056, 0.024892762303352356, 0.025203751400113106, -0.012006937526166439, -0.006838410627096891, 0.0032028642017394304, -0.005198949947953224, -0.01745603233575821, 0.037535201758146286, 0.028773382306098938, -0.03166694566607475, 0.003728505689650774, -0.007010807748883963, 0.023053862154483795, 0.03169398754835129, -0.032775696367025375, -0.03253231197595596, 0.008775340393185616, -0.02559586986899376, 0.0015786148142069578, -0.011763554066419601, -0.0010504380334168673, 0.021309610456228256, 0.024095002561807632, -0.009552816860377789, 0.0313153900206089, -0.028692254796624184, -0.016725881025195122, 0.004421473480761051, -0.027664633467793465, 0.018902814015746117, 0.04048285260796547, 0.01760476641356945, -0.03372218832373619, 0.021106790751218796, 0.04483671858906746, 0.0009507182403467596, -0.007578703574836254, 0.009059288538992405, 0.011060444638133049, 0.022796956822276115, -0.0195924025028944, 0.0061285411939024925, -0.008227727375924587, 0.010323532857000828, -0.004238935653120279, 0.006632210686802864, 0.04827113449573517, 0.010735932737588882, -0.027678154408931732, 0.006956722121685743, -0.017537159845232964, 0.008606323972344398, -0.12948021292686462, -0.032018501311540604, 0.0032721608877182007, 0.02456825040280819, 0.034668680280447006, 0.017591245472431183, 0.0017188986530527472, -0.014548947103321552, -0.009194501675665379, 0.03556108847260475, -0.006382065825164318, -0.007686873897910118, 0.014603032730519772, 0.03280273824930191, -0.006611928343772888, -0.008707733824849129, -0.009451407007873058, 0.003616954665631056, -0.01837548241019249, 0.030828623101115227, 0.008897032588720322, -0.018280833959579468, 0.0036237153690308332, 0.0015000221319496632, -0.007761241402477026, 0.005513320676982403, -0.024595292285084724, 0.0026383488439023495, -0.0058344523422420025, 0.008687452413141727, 0.026691097766160965, -0.013217096216976643, 0.01407570019364357, -0.02451416477560997, 0.01714504137635231, -0.0034124446101486683, -0.016671795397996902, 0.0044654179364442825, 0.028232529759407043, -0.030990879982709885, 0.006503758020699024, -0.002846239134669304, 0.005337543319910765, -0.012845260091125965, 0.012723567895591259, -0.0068891155533492565, -0.026677576825022697, 0.05046159029006958, -0.0068992567248642445, -0.02016029693186283, -0.04232175275683403, 0.009174220263957977, -0.013501044362783432, -0.022391315549612045, 0.038103096187114716, -0.02149890922009945, 0.0022056663874536753, 0.00496232695877552, 0.008430547080934048, 0.011459323577582836, -0.016144463792443275, -0.002580883214250207, -0.005733042489737272, 0.002787083387374878, 0.027962103486061096, 0.010438463650643826, -0.002758350456133485, 0.0025014453567564487, 0.02579868957400322, -0.0006853622035123408, -0.011810878291726112, 0.028827467933297157, -0.01550896093249321, 0.014170349575579166, -0.014657117426395416, 0.024446558207273483, 0.010282968170940876, -0.027204908430576324, 0.008187162689864635, 0.03209962695837021, -0.008099274709820747, 0.002313836943358183, -0.017104478552937508, 0.0076057459227740765, 0.0036203351337462664, 0.013271181844174862, 0.018132098019123077, 0.006554462946951389, 0.031099051237106323, -0.026704618707299232, 0.004414713010191917, 0.015982206910848618, 0.025352487340569496, -0.013365831226110458, 0.002236089436337352, 0.014603032730519772, -0.007301516365259886, 0.01633376255631447, 0.01898394152522087, 0.0270291306078434, -0.04975847899913788, -0.018645908683538437, -0.038725078105926514, 0.01699630729854107, 0.005317261442542076, -0.026069117709994316, 0.01412978582084179, -0.012385535053908825, 0.0332624614238739, -0.021255524829030037, 0.0065916464664042, -0.003434416837990284, -0.008511674590408802, 0.0058344523422420025, -0.017428990453481674, 0.0038535778876394033, 0.0017746740486472845, -0.015441354364156723, 0.031558774411678314, -0.024040918797254562, 0.021066226065158844, 0.027299556881189346, -0.006020370405167341, 0.015590089373290539, 0.005506560206413269, 0.002051861258223653, 0.005628251936286688, -0.026217851787805557, -0.004211893305182457, 0.028016187250614166, -0.020349595695734024, -0.05019116401672363, 0.0042456965893507, 0.010702129453420639, 0.003283992176875472, 0.0011915669310837984, 0.0036304760724306107, 0.0020451005548238754, -0.00776800187304616, 0.0005594448884949088, 0.015008672140538692, 0.005104300566017628, -0.006044032983481884, -0.026042073965072632, 0.00430992292240262, 0.0004829648823942989, -0.0013724146410822868, -0.019578879699110985, -0.002356091048568487, 0.009951695799827576, 0.00025373612879775465, 0.022756392136216164, 0.010621001943945885, -0.0052969795651733875, -0.025785168632864952, -0.0007994484039954841, 0.012655961327254772, -0.015062757767736912, -0.021120311692357063, -0.024581771343946457, -0.008897032588720322, -0.028827467933297157, 0.024852197617292404, 0.013359070755541325, 0.006091357674449682, 0.0010707200272008777, -0.008579281158745289, -0.030828623101115227, -0.026028553023934364, 0.01744251139461994, 0.009525774046778679, -0.005347684491425753, 0.0035696302074939013, 0.012649200856685638, 0.015846993774175644, 0.010810300707817078, 0.025785168632864952, 0.012317928485572338, -0.011587776243686676, 3.314309287816286e-05, -0.0237569697201252, -0.003971889615058899, 0.025622913613915443, -0.01479233056306839, 0.005290219094604254, -0.00949873123317957, 0.03996904194355011, 0.008295333944261074, 0.014995151199400425, 0.0012093136319890618, 0.027678154408931732, -0.0015439664712175727, -0.010519592091441154, -0.011080726981163025, -0.04213245213031769, -0.019281411543488503, 0.02350006438791752, 0.01044522412121296, -0.012892584316432476, 0.019470710307359695, 0.0014535426162183285, 0.02133665233850479, -0.024284301325678825, -0.012507226318120956, -0.010945513844490051, -0.009728594683110714, -0.0068992567248642445, 0.021417779847979546, 0.023784013465046883, -0.02548770047724247, 0.02666405588388443, -0.004881198983639479, 0.008430547080934048, 0.026069117709994316, 0.012216518633067608, 0.0027245471719652414, -0.04380909726023674, 0.02087692730128765, -0.024487121030688286, -0.01971409283578396, -0.01433260552585125, 0.027461813762784004, 0.012277363799512386, 0.030882708728313446, 0.028746340423822403, -0.004570208489894867, 0.03496614843606949, 0.010276207700371742, 0.025055017322301865, -0.019984520971775055, 0.00032556819496676326, 0.0003547235392034054, -0.01929493248462677, 0.031342435628175735, -0.028638169169425964, -0.014738245867192745, -0.007274473551660776, -0.035344745963811874, 0.007598985452204943, 0.012520748190581799, -0.004766267724335194, 0.06679534912109375, -0.008065471425652504, -0.009870568290352821, 0.018564781174063683, -0.0201738178730011, -0.008248008787631989, 0.015387269668281078, -0.01246666256338358, 0.005996708292514086, -0.03612898290157318, 0.02021438255906105, 0.0017290395917370915, -0.025109102949500084, -0.04410656541585922, -0.010100430808961391, 0.022851040586829185, -0.009546056389808655, 0.018902814015746117, -0.027056174352765083, -0.004593870602548122, 0.01940310373902321, 0.007707155775278807, 0.010898188687860966, -0.031910330057144165, 0.01246666256338358, 0.02149890922009945, 0.030260728672146797, -0.0031115952879190445, -0.005743183195590973, -0.04986665025353432, -0.009424364194273949, -0.011486366391181946, -0.004789929836988449, 0.005033313762396574, 0.004793310072273016, 0.013886402361094952, -0.005760084837675095, -0.011134812608361244, 0.03429008275270462, -0.0017112928908318281, -0.03166694566607475, 0.014089222066104412, -0.01361597515642643, -0.013034558854997158, -0.022174974903464317, 0.010066627524793148, -0.02011973410844803, 0.004681759048253298, -0.059493836015462875], "bf7b3e64-7e63-4c9a-b611-622581711e8d": [-0.007719921879470348, 0.011861828155815601, 0.02094448357820511, -0.03310839459300041, -0.005091791972517967, 0.0035175993107259274, -0.0015263628447428346, -0.006555220577865839, 0.02413986064493656, -0.007820616476237774, 0.015010213479399681, 0.014902805909514427, -0.015037065371870995, 0.012553264386951923, -0.010069463402032852, 0.02393847145140171, 0.034450992941856384, 0.0042795222252607346, 0.0003625006938818842, -0.02044772356748581, -0.0032440454233437777, 0.016715308651328087, -0.013828730210661888, -0.010579649358987808, -0.023428285494446754, 0.010438676923513412, 0.017910219728946686, -0.011465762741863728, 0.001370286219753325, 0.013761600479483604, 0.0049575325101614, -0.004876976832747459, -0.007115754298865795, -0.007733347825706005, -0.03880099952220917, -0.008478488773107529, 0.022434765473008156, -0.015104195103049278, 0.019856981933116913, -0.025764400139451027, 0.008491914719343185, 0.02509310282766819, 0.001948441145941615, 0.0038431785069406033, -0.0074849678203463554, 0.021978283300995827, 0.01293590385466814, -0.01666160486638546, -0.01082131639122963, 0.00684723537415266, 0.02336115576326847, 0.027456071227788925, -0.04478897526860237, 0.0055449181236326694, -0.0038700303994119167, -0.010593075305223465, 0.02413986064493656, 0.018742628395557404, -0.014204656705260277, -0.018353275954723358, 0.008397932164371014, 0.015829196199774742, -0.01632595621049404, -0.02200513519346714, -0.010042611509561539, -0.014325490221381187, -0.017749108374118805, 0.007478254847228527, -0.008700016885995865, 0.03898896276950836, 0.0025257570669054985, 0.015372714027762413, -0.004598388448357582, 0.0238176379352808, 0.041405633091926575, 0.004752786830067635, -0.010109741240739822, -0.0006775909569114447, -0.0007170297321863472, 0.0019568323623389006, 0.007364134304225445, 0.007693069986999035, 0.013003033585846424, 0.015654658898711205, 0.006206145975738764, 0.020206056535243988, 0.009572703391313553, 0.023455137386918068, -0.016755586490035057, -0.022152820602059364, 0.003987507428973913, -0.012479421682655811, 0.0124055789783597, 0.019722722470760345, 0.015829196199774742, 0.010754186660051346, -0.020877353847026825, 0.01125094760209322, 0.01542641781270504, -0.009398166090250015, -0.018809758126735687, 0.01945420354604721, -0.020474575459957123, -0.009592842310667038, -0.02451578713953495, -0.0008449958404526114, 0.029402833431959152, 0.0007229035836644471, 0.0010707196779549122, -0.0010665240697562695, -0.03694821894168854, 0.024260694161057472, -0.0028580494690686464, -0.024784306064248085, 0.02608662284910679, -0.018930591642856598, 0.022985229268670082, -0.0037424839101731777, -0.00783404242247343, -0.013197709806263447, 0.02130698412656784, -0.011915531940758228, 0.028865795582532883, -0.003453826066106558, 0.025187084451317787, -0.0031164989341050386, 0.006652559153735638, -0.045352865010499954, -0.014003267511725426, -0.021817171946167946, 0.021280132234096527, 0.010351408272981644, -0.0024317754432559013, -0.002369680441915989, -0.009075943380594254, 0.030799131840467453, 0.0060181827284395695, 0.009565990418195724, -0.0013535036705434322, -0.024905139580368996, -0.00242674071341753, 0.011734281666576862, 0.008700016885995865, -0.012345162220299244, -0.00018439705308992416, 0.02595236338675022, -0.0005928396712988615, 0.02875838801264763, -0.012888913042843342, -0.010351408272981644, 0.013882433995604515, -0.008733581751585007, -0.013667618855834007, 0.005215981975197792, 0.01570836268365383, -0.0036115809343755245, 0.017923645675182343, -0.009042378515005112, 0.017265774309635162, -0.015681510791182518, 0.003873386885970831, 0.026959311217069626, 0.015480121597647667, -0.008565757423639297, 0.0008416393538936973, 0.03404821455478668, 0.019360221922397614, 0.0011739316396415234, -0.01760142296552658, -0.010814603418111801, -0.009028952568769455, 0.0006457043346017599, -0.03458525240421295, 0.0005244511994533241, -0.006504873279482126, -0.007679644040763378, 0.009559277445077896, 0.005236120894551277, -0.03345746919512749, -0.00859932228922844, 0.0033346707932651043, 0.01636623404920101, -0.01407039724290371, 0.025858381763100624, -0.01805790513753891, 0.01690327376127243, -0.000980933546088636, 0.02134726196527481, 0.003947229590266943, 0.0026851901784539223, 0.027899127453565598, 0.022850969806313515, -0.015104195103049278, -0.008767146617174149, -0.6375715732574463, 0.013546785339713097, -0.03426302969455719, -0.02760375663638115, 0.010237287729978561, -0.02196485735476017, -0.0026919031515717506, 0.006894226185977459, -0.03214172646403313, 0.038774147629737854, 0.018084757030010223, 0.0005680855829268694, 0.016433363780379295, -0.0019434064161032438, -0.018192164599895477, -0.038559332489967346, 0.014379194006323814, -0.02423384226858616, -0.01821901649236679, 0.005269685760140419, -0.02315976656973362, 0.008545618504285812, -0.00024691162980161607, 0.001926623983308673, -0.03337691351771355, 0.021239854395389557, 0.027872275561094284, 0.00427616573870182, 0.0310945026576519, 0.013761600479483604, -0.03764636814594269, -0.014486601576209068, 0.0229180995374918, 0.005464362446218729, 0.03493432700634003, -0.000690597400534898, -0.004074776079505682, 0.022273654118180275, 0.008008579723536968, 0.03565932810306549, -0.0011512753553688526, -0.029939871281385422, 0.021857449784874916, 0.016191696748137474, -0.002941961633041501, -0.01065349206328392, 0.004836698994040489, 0.018850035965442657, 0.029563944786787033, -0.03222228214144707, 0.004601744934916496, 0.008283811621367931, 0.008270385675132275, -0.010546084493398666, 0.033430617302656174, -0.0035041733644902706, -0.002604634501039982, -0.011318077333271503, 0.01464771293103695, -0.03340376541018486, 0.002109552500769496, 0.0042963046580553055, 0.0007229035836644471, -0.000191844257642515, -0.04441304877400398, 0.023643100634217262, -0.018044479191303253, -0.015574103221297264, 0.029322277754545212, -0.017077811062335968, 2.7795915229944512e-05, 0.005095148459076881, -0.009183350950479507, -0.013566924259066582, 0.008793998509645462, 0.016876420006155968, 0.02985931560397148, -0.03340376541018486, 0.005924201104789972, 0.0020055014174431562, 0.025066250935196877, -0.00609873840585351, -0.020058371126651764, -0.024126434698700905, 0.027200978249311447, -0.010673630982637405, 0.0019517976325005293, 0.015412991866469383, 0.009512286633253098, 0.024582916870713234, -0.001368607976473868, 0.01764170080423355, -0.0198301300406456, -0.024166712537407875, -0.010210435837507248, 0.023347729817032814, -0.009780805557966232, -0.01472826860845089, 0.0009633119916543365, -0.03565932810306549, -0.010740760713815689, -0.027711164206266403, -0.00474943034350872, 0.022797266021370888, -0.0021599000319838524, -0.00278085027821362, -0.015520399436354637, -0.00018618018657434732, 0.02628801204264164, 0.0063101970590651035, -0.004900472238659859, -0.049219537526369095, -0.017628274857997894, 0.008518766611814499, 0.003930447157472372, -0.02230050601065159, 0.05832233279943466, 0.006934504024684429, 0.0016304139280691743, 0.004944106563925743, -0.0004134773334953934, 0.018621794879436493, -0.015520399436354637, -0.014164378866553307, 0.011056271381676197, 0.006447813007980585, 0.007807190530002117, -0.006780105642974377, -0.02814079448580742, -0.006165868137031794, 0.01710466295480728, -0.0038163266144692898, 0.009861361235380173, -0.002722111763432622, 0.021629206836223602, -0.01576206646859646, 0.023602822795510292, -0.005695960018783808, 0.0262074563652277, -0.02180374599993229, -0.014137526974081993, 0.008136126212775707, 0.022569024935364723, -0.036625996232032776, -0.004833342507481575, -0.016339382156729698, -0.007397699169814587, -0.025536159053444862, -0.01403011940419674, -0.0015892969677224755, 0.023106062784790993, -0.008344228379428387, -0.024488935247063637, 0.01945420354604721, -0.0013342038728296757, 7.748766620352399e-06, -0.008659739047288895, 0.0005571770016103983, 0.004591675475239754, -0.02106531709432602, -0.019856981933116913, 0.02168291062116623, -0.015909751877188683, 0.012130347080528736, -0.03055746480822563, -0.01045210286974907, 0.006914365105330944, 0.007511819712817669, -0.004306374117732048, -0.022877821698784828, -0.00031467073131352663, -0.004282878711819649, 0.00029537093359977007, 0.00983450934290886, 0.008740294724702835, 0.025187084451317787, -0.01961531490087509, 0.005736237857490778, -0.0072500137612223625, -0.025656992569565773, -0.007867607288062572, -2.7323909307597205e-05, -0.006293414626270533, -0.015211602672934532, 0.026851903647184372, -0.012392153032124043, 0.030745428055524826, -0.005219338461756706, -0.004061350133270025, 0.0033380272798240185, 0.031040798872709274, -0.012298171408474445, -0.027013015002012253, -0.0031550985295325518, -0.0051522087305784225, 0.014258360490202904, 0.0007514337194152176, 0.009445156902074814, 0.01847410947084427, 0.035068586468696594, 0.050293613225221634, -0.006253136787563562, 0.010895160026848316, -0.017426885664463043, 0.014164378866553307, -0.010626640170812607, 0.021293558180332184, -0.016715308651328087, 0.03345746919512749, -0.020125500857830048, 0.01905142515897751, -0.018165312707424164, -0.016070863232016563, -0.011143540032207966, 0.002297515980899334, 0.023911619558930397, -0.024663472548127174, 0.026892181485891342, 0.007592375390231609, 0.0018108251970261335, 0.004511119797825813, 0.014634286984801292, 0.025442177429795265, 0.005920844618231058, -0.005820150021463633, -0.028570424765348434, 0.042264893651008606, -0.010371547192335129, -0.011942383833229542, -0.030262093991041183, 0.013003033585846424, -0.013076876290142536, -0.010861595161259174, -0.0029503528494387865, 0.03520284593105316, 0.006360544357448816, 0.044359344989061356, -1.646776763664093e-05, 0.015251880511641502, 0.0058000111021101475, -0.016339382156729698, 0.02216624654829502, 0.007290291599929333, -0.02883894369006157, 0.02640884555876255, -0.00330614042468369, 0.02397874929010868, 0.006078599486500025, -0.005907418671995401, 0.03302783891558647, 0.006316910032182932, 0.008525479584932327, -0.009673397988080978, 0.0016018837923184037, 0.0006180133204907179, -0.022515321150422096, 0.026999589055776596, 0.01211692113429308, 0.018850035965442657, 0.04183526337146759, -0.0005357793997973204, -0.021575503051280975, 0.02838246151804924, -0.015292158350348473, 0.010257426649332047, -0.005014592781662941, -0.025616714730858803, -0.022219950333237648, -0.03340376541018486, -0.014634286984801292, -0.016218548640608788, -0.03799544274806976, -0.0004648735630325973, 0.004554754123091698, 0.036706551909446716, -0.0029486746061593294, 0.019736148416996002, 0.012190763838589191, 0.012781505472958088, 0.0025274353101849556, -0.009317610412836075, -0.024287546053528786, -0.004450703039765358, 0.008733581751585007, 0.0002955807140097022, 0.0007497554761357605, -0.02028661221265793, -0.0012888913042843342, -0.01357363723218441, 0.005823506508022547, -0.016715308651328087, 0.022569024935364723, -0.01198937464505434, -0.024502361193299294, -0.0030728646088391542, 0.016446789726614952, 0.04395656660199165, 0.009512286633253098, 0.003819683101028204, 0.027415793389081955, -0.011834976263344288, 0.004168757703155279, -0.020206056535243988, -0.009223628789186478, 0.06412234157323837, 0.01768197864294052, -0.006780105642974377, 0.006974781863391399, -0.02106531709432602, -0.002817771630361676, -0.000917999423108995, -0.012559977360069752, -0.006783462129533291, 0.018286146223545074, 0.016487067565321922, 0.007189597003161907, 0.005853714887052774, -0.0025089746341109276, 0.0348806232213974, 0.0247171763330698, 0.007162745110690594, -0.034988030791282654, -0.007599088363349438, 0.01538613997399807, 0.02525421418249607, 0.02044772356748581, -0.047903794795274734, -0.0034320089034736156, -0.043741751462221146, 0.006887513212859631, -0.008344228379428387, 0.003421939443796873, 0.00292517920024693, -0.0123585881665349, -0.012768079526722431, 0.005648969206959009, 0.010713908821344376, 0.015439843758940697, 0.008391219191253185, 0.00047326477942988276, -0.012291458435356617, -0.019816704094409943, 0.0065820724703371525, -0.019440777599811554, -4.599437306751497e-05, 0.005682534072548151, 0.00884098932147026, 0.013936137780547142, -0.018903739750385284, -0.007625940255820751, 0.009163212031126022, 0.012392153032124043, -0.004923967644572258, -0.035847291350364685, -0.0352834016084671, 0.020877353847026825, 0.0283019058406353, 0.014258360490202904, -0.006927791051566601, 0.0362769216299057, 0.023092636838555336, 0.003400122281163931, 0.021817171946167946, -0.021078743040561676, 0.02110559493303299, 0.007545384578406811, -0.00532674603164196, 0.014338916167616844, 0.004437277093529701, 0.014943083748221397, 0.009700249880552292, 0.027899127453565598, 0.0020491357427090406, -0.001302317250519991, 0.018111608922481537, -0.0006285023409873247, -0.027214404195547104, -0.009532425552606583, 0.0015104195335879922, -0.013231274671852589, -0.0018511030357331038, -0.012298171408474445, -0.011425484903156757, -0.013976415619254112, -0.009028952568769455, -0.013526646420359612, -0.00734399538487196, -0.017373181879520416, 0.008364367298781872, -0.0068505918607115746, -0.0032088023144751787, -0.005477788392454386, -0.021051891148090363, -0.017010681331157684, -0.011519466526806355, -0.03377969563007355, -0.0013769991928711534, -0.013211135752499104, 0.010062750428915024, 0.012022939510643482, -0.005534848663955927, -0.01546669565141201, 0.012472708709537983, -0.022327357903122902, -0.010009046643972397, -0.0015355931827798486, -0.007760199718177319, -0.03380654752254486, 0.006196076516062021, 0.01829957216978073, -0.0016883134376257658, -0.009673397988080978, -0.011781272478401661, 0.024341249838471413, -0.01592317782342434, 0.019225962460041046, -0.0050246622413396835, 0.002587852068245411, -0.010599788278341293, -0.0036149374209344387, -0.006780105642974377, 0.0036250068806111813, 0.010170157998800278, -0.024582916870713234, 0.01777596026659012, -0.013976415619254112, -0.0123585881665349, -0.008344228379428387, -0.005833575967699289, -0.03565932810306549, 0.007847468368709087, 0.01945420354604721, -0.008089135400950909, 0.0015095804119482636, 0.022636154666543007, -0.006860661320388317, 0.014594009146094322, 0.031363021582365036, -0.0019920754712074995, 0.018688924610614777, -0.0005156404222361743, 0.01530558429658413, 0.001505384803749621, -0.03163154050707817, 0.018608368933200836, -0.035605624318122864, -0.027952831238508224, 0.0224213395267725, -0.011344929225742817, 0.02451578713953495, -0.01423150859773159, -0.03318895027041435, -0.029590796679258347, -0.013050024397671223, 0.021588928997516632, 0.020098648965358734, -0.01702410727739334, -0.026381993666291237, -0.029188018292188644, 0.014969935640692711, -0.030718576163053513, -0.007417838089168072, -0.022595876827836037, 0.0035209557972848415, 0.004984384402632713, -0.009384740144014359, -0.0016060794005170465, 0.0016044011572375894, 0.0019014503341168165, -0.03007413074374199, -0.006048391107469797, 0.013895859941840172, 0.008921544998884201, 0.014003267511725426, 0.021092168986797333, 0.002514009363949299, -0.016191696748137474, -0.024529213085770607, -0.008975248783826828, 0.0004543845425359905, 0.005273042246699333, 0.02315976656973362, 0.019037999212741852, -0.002774137305095792, 0.03898896276950836, 0.008337515406310558, 0.018527813255786896, -0.009122934192419052, -0.0009910030057653785, 0.010861595161259174, -0.007928024046123028, -0.006296771112829447, -0.008491914719343185, -0.01855466514825821, 0.0072500137612223625, -0.012056504376232624, 0.011136827059090137, -0.010546084493398666, 0.010029185563325882, 0.03195376321673393, 0.01157988328486681, 0.0049575325101614, -0.018245868384838104, -0.019400499761104584, -0.016487067565321922, 0.0010254069929942489, 0.010378260165452957, 0.011036132462322712, -0.013291692361235619, -0.022636154666543007, 0.04701768234372139, -0.0015767101431265473, 0.00978751853108406, 0.0017403389792889357, 0.006115520838648081, -0.001276304479688406, 0.015238454565405846, 0.009908352047204971, -0.01302317250519991, -0.02056855708360672, -0.010512519627809525, -0.03821025788784027, -0.0012460961006581783, 0.0002487996534910053, 0.017963923513889313, 0.016634752973914146, -0.0005743789952248335, -0.02164263278245926, -0.008418071083724499, 0.006900939159095287, -0.02200513519346714, -0.026140326634049416, 0.015788918361067772, -0.012553264386951923, -0.03557877242565155, -0.010599788278341293, -0.040009334683418274, -0.022058838978409767, 0.004782995209097862, 0.030047278851270676, 0.016057437285780907, 0.015063917264342308, -0.0054811448790133, -0.0057832286693155766, -0.031443577259778976, -0.007491680793464184, 0.029268573969602585, 0.0018645289819687605, 0.03949914872646332, 0.007109041325747967, 0.001370286219753325, -0.03023524209856987, 0.006024895701557398, 0.013647479936480522, 0.005669108126312494, 0.033135246485471725, 0.00937802717089653, -0.01198937464505434, 0.008646313101053238, 0.009411592036485672, -0.0015120977768674493, -0.00925719365477562, -0.030181538313627243, 0.001165540423244238, 0.024784306064248085, -0.006357187870889902, -0.023669952526688576, 0.01953475922346115, -0.036384329199790955, -0.0036820671521127224, 0.011163678951561451, -0.011378494091331959, -0.0022756988182663918, 0.006692836992442608, -0.026717644184827805, 0.00933774933218956, 0.023710230365395546, 0.019561611115932465, -0.006907652132213116, -0.009438443928956985, -0.01654077135026455, -0.02369680441915989, -0.036840811371803284, 0.017668552696704865, -0.019105128943920135, 0.017131514847278595, -0.02435467578470707, -0.0063269794918596745, 0.016594475135207176, 0.00010725027823355049, -0.0021213004365563393, -0.011485901661217213, -0.02156207710504532, 0.02230050601065159, -0.009163212031126022, -0.019427351653575897, -0.014969935640692711, -0.0050615835934877396, -0.024529213085770607, 0.02443523146212101, -0.0202329084277153, -0.014298638328909874, -0.010942150838673115, 0.012043078429996967, 0.0023663239553570747, 0.017292626202106476, -0.0032625060994178057, -0.021911153569817543, -0.009807657450437546, 0.008277098648250103, -0.024260694161057472, -0.0018779549282044172, 0.021159298717975616, -0.030825983732938766, -0.014862528070807457, -0.02044772356748581, 0.0010279243579134345, 0.009270619601011276, 0.005232764407992363, -0.006471308413892984, 0.01764170080423355, 0.03394080698490143, -0.003953942563384771, 0.019185684621334076, -0.013217848725616932, -0.005417371168732643, -0.02648940123617649, 0.02423384226858616, -0.0027472854126244783, -0.010754186660051346, 0.02299865521490574, -0.009149786084890366, -0.04054637253284454, -0.01121066976338625, -0.00233443733304739, 0.011808124370872974, -0.010552797466516495, 0.003156776772812009, -0.01088173408061266, 0.0020055014174431562, 0.01580234430730343, 0.0006482216995209455, -0.01658104918897152, 0.04057322442531586, -0.03316209837794304, -0.002926857443526387, 0.013311831280589104, -0.00330614042468369, 0.01949448138475418, -0.016970403492450714, -0.005857071373611689, 0.0045883189886808395, -0.013479655608534813, -0.03337691351771355, -0.01302317250519991, 0.00788103323429823, -0.0016715310048311949, 0.03179265186190605, -0.034988030791282654, -0.0023831063881516457, -0.025818103924393654, 0.022528747096657753, -0.008921544998884201, 0.012828496284782887, -0.009653259068727493, 0.023549119010567665, 0.018004201352596283, -0.0013375603593885899, -0.009639833122491837, -0.005434154067188501, -0.0030577604193240404, 0.022367635741829872, -0.01698382943868637, 0.007545384578406811, -0.006162511650472879, 0.031980615109205246, 0.004836698994040489, -0.014177804812788963, -0.022488469257950783, 0.004736004397273064, -0.031443577259778976, -0.024408379569649696, -0.008901406079530716, 0.005377093330025673, 0.020058371126651764, 0.04854824021458626, -0.006907652132213116, 0.020622260868549347, -0.0012402222491800785, 0.011418771930038929, -0.035149142146110535, -0.0013367212377488613, 0.0018779549282044172, 0.03982137143611908, 0.004225818440318108, -0.005605334881693125, -0.012848635204136372, -0.008693303912878036, -0.0006511586252599955, -0.006817026995122433, 0.017802812159061432, 0.04986398294568062, -0.029751908034086227, -0.007639366202056408, -0.02224680222570896, -0.008297237567603588, 0.02126670628786087, 0.0036283633671700954, -0.01891716569662094, 0.005232764407992363, -0.010989141650497913, -0.014634286984801292, 0.0019031285773962736, -0.039176926016807556, 0.009639833122491837, -0.011593309231102467, -0.012747940607368946, 0.008431497029960155, -0.020998187363147736, -0.029429685324430466, 0.029402833431959152, -0.02768431231379509, 0.009988907724618912, -0.0041016279719769955, -0.021253280341625214, 0.014124101027846336, 0.018903739750385284, 0.003638432826846838, -0.0001955154148163274, 0.027550052851438522, -0.02644912339746952, 0.021709764376282692, 0.02172319032251835, 0.010062750428915024, -0.020246334373950958, -0.019158832728862762, 0.03214172646403313, -0.0148491021245718, 0.016111141070723534, -0.011244234628975391, -0.032356541603803635, -0.03509543836116791, 0.02875838801264763, 0.005363667383790016, -0.004672231152653694, 0.017131514847278595, 0.0045513976365327835, 0.006380683276802301, 0.019843555986881256, -0.024408379569649696, -0.025281066074967384, -0.02529449202120304, 0.015077343210577965, 0.016607901081442833, 0.002978882985189557, 0.010358121246099472, 0.013419238850474358, 0.024045879021286964, -0.043177857995033264, -0.008585896342992783, 0.17722256481647491, -0.02533476985991001, 0.032275985926389694, 0.0283019058406353, -0.02019263058900833, 0.007397699169814587, 0.025563010945916176, -0.009223628789186478, -0.001946762902662158, 0.02246161736547947, -0.02348198927938938, -0.0041922531090676785, -0.00958612933754921, 0.015788918361067772, 0.023106062784790993, -0.019816704094409943, -0.003970724996179342, -0.03756581246852875, -0.01149932760745287, -0.006269919220358133, 0.00605846056714654, 0.010109741240739822, -0.034692659974098206, -0.0005735398735851049, 0.025925511494278908, 0.0015280410880222917, -0.01082131639122963, 0.0004615170764736831, 0.03759266436100006, 0.00278085027821362, -0.032598208636045456, 0.005699316505342722, -0.01248613465577364, -0.011190530844032764, -0.046373236924409866, 0.0006452847737818956, 0.028704684227705002, 0.0064176046289503574, 0.026932459324598312, -0.005776515696197748, 0.026784773916006088, -0.03740470111370087, -0.017708830535411835, -0.015815770253539085, 0.02176346816122532, 0.005880566779524088, 0.008095848374068737, -0.010009046643972397, -0.01887688785791397, 0.017507441341876984, -0.005937627051025629, -0.020823650062084198, 0.005135426297783852, 0.027899127453565598, 0.008377793245017529, -0.01871577650308609, -0.004974314942955971, 0.0021296916529536247, -0.006817026995122433, 0.026677366346120834, -0.016151418909430504, 0.019024573266506195, -0.0006809475016780198, 0.014258360490202904, -0.017171792685985565, 0.015909751877188683, -0.03571303188800812, -0.010586362332105637, -0.028087090700864792, -0.014204656705260277, 0.0015658015618100762, -0.010566223412752151, 0.004195609595626593, -0.0033380272798240185, -0.01302317250519991, -0.01710466295480728, 0.03982137143611908, 0.012049791403114796, 0.009203489869832993, 0.025979215279221535, -0.0233208779245615, -0.03689451515674591, -0.001220922451466322, -0.005001166835427284, -0.009673397988080978, -0.0023814281448721886, 0.0031500637996941805, -0.0017856515478342772, -0.004433920606970787, -0.023831063881516457, -0.02698616310954094, 0.001516293385066092, -0.0025408612564206123, 0.0008634565165266395, 0.0109622897580266, 0.0008617782732471824, -0.024113008752465248, 0.01895744353532791, 0.0028060239274054766, 0.003997576888650656, -0.039096370339393616, 0.0252139363437891, 0.014661138877272606, -0.001590136089362204, 0.0078743202611804, -0.021776894107460976, -0.03783433139324188, -0.005346884950995445, -0.019306518137454987, -0.019158832728862762, 0.016030585393309593, -0.02196485735476017, 0.026180604472756386, -0.009398166090250015, 0.010505806654691696, -0.01415095292031765, -0.0015851013595238328, 0.007062050513923168, 0.010015759617090225, 0.03458525240421295, -0.007766912691295147, -0.011808124370872974, -0.007001633755862713, -0.0017688691150397062, -0.0207296684384346, -0.006676054559648037, -0.03238339349627495, 0.027711164206266403, -0.003398444037884474, -0.01777596026659012, 0.0627797469496727, -0.03641118109226227, 0.004306374117732048, 0.01855466514825821, -0.02064911276102066, -0.00015691580483689904, -0.02800653502345085, -0.006592141930013895, -0.032974135130643845, 0.0036485022865235806, -0.004323156550526619, -0.0042593833059072495, 0.003943873103708029, 0.004269452765583992, 0.021078743040561676, -0.025522733107209206, 0.005313320085406303, 0.008961822837591171, 0.03224913403391838, -0.018903739750385284, -0.012043078429996967, -0.01542641781270504, -0.0014206335181370378, -0.02373708225786686, -0.012539838440716267, -0.025079676881432533, 0.005826862994581461, -0.017050959169864655, 0.01546669565141201, -0.009733814746141434, 0.0019551541190594435, -0.007901172153651714, 0.00970696285367012, -0.0013065128587186337, 0.0006587107200175524, -0.00916992500424385, -0.16895216703414917, -0.0068505918607115746, 0.0010019115870818496, -0.021669484674930573, 0.013003033585846424, 0.01776253432035446, 0.008814137428998947, 0.01202965248376131, -0.001268752384930849, -0.0012830174528062344, -0.010082889348268509, -0.0044775549322366714, 0.006041678134351969, -0.018125034868717194, -0.017963923513889313, -0.014902805909514427, 0.01468799076974392, 0.01847410947084427, 0.021038465201854706, 0.014983361586928368, 0.0362769216299057, -0.009002100676298141, 0.022407913580536842, 0.008424784056842327, -0.006232997868210077, 0.005507996771484613, -0.007592375390231609, 0.00800186675041914, -0.004608457908034325, -0.027872275561094284, 0.010646779090166092, 0.0030997165013104677, 0.0059644789434969425, 0.0012477743439376354, 0.006041678134351969, 0.007787051610648632, 0.013432664796710014, -0.02052827924489975, -0.006947929970920086, -0.0032222282607108355, 0.019856981933116913, 0.02945653721690178, -0.01341252587735653, -0.007981727831065655, -0.0014172770315781236, 0.010579649358987808, 0.015775492414832115, -0.009841222316026688, 0.0034806779585778713, -0.008438210003077984, 0.012627107091248035, -0.017037533223628998, 0.013056737370789051, 0.0028362323064357042, -0.0007854181458242238, -0.012365301139652729, -0.00863960012793541, 0.016057437285780907, -0.020581983029842377, -0.0009221950313076377, 0.012949329800903797, -0.040492668747901917, -0.010344695299863815, -0.022797266021370888, -0.013895859941840172, -0.0007384273339994252, -0.028113942593336105, 0.020313464105129242, -0.02234078384935856, -0.01419123075902462, -0.005732881370931864, -0.0025089746341109276, -0.013050024397671223, 0.0041922531090676785, 0.008424784056842327, 0.01227803248912096, 0.007411125116050243, 0.017668552696704865, -0.0006784301367588341, 0.0014927979791536927, -0.015600955113768578, 0.040251001715660095, -0.01588289998471737, -0.012721088714897633, 0.017990775406360626, -0.012821783311665058, -0.00746482890099287, -0.007021772675216198, -0.00912964716553688, -0.01776253432035446, 0.02924172207713127, -0.035686179995536804, 0.007437977008521557, -0.0019165545236319304, 0.012244467623531818, 0.010955576784908772, -0.016339382156729698, -0.00949886068701744, 0.04167415201663971, -0.012009513564407825, -0.008297237567603588, -0.009800944477319717, -0.028570424765348434, -0.005645612720400095, 0.027576904743909836, 0.018326424062252045, -0.008572470396757126, 0.01016344502568245, 0.03015468642115593, 0.00974724069237709, -0.024999121204018593, -0.013909285888075829, 0.016930125653743744, 0.00900881364941597, 0.010425250977277756, 0.038935258984565735, 0.0046420227736234665, -0.019078277051448822, 0.012982894666492939, 0.013519933447241783, 0.03439728915691376, -0.0075588105246424675, -0.01336553506553173, 0.00709561537951231, -0.014298638328909874, 0.008834276348352432, -0.11492614448070526, -0.015829196199774742, -0.014164378866553307, 0.027281533926725388, 0.0047695692628622055, 0.02204541303217411, -0.020837076008319855, 0.012298171408474445, -0.00418554013594985, 0.04758157208561897, -0.013855582103133202, -0.002428418956696987, -0.030799131840467453, 0.006780105642974377, -0.012888913042843342, -0.01149932760745287, -0.019856981933116913, -0.014567157253623009, -0.005679177585989237, 0.021817171946167946, 0.006038321647793055, -0.002811058657243848, -0.004323156550526619, -0.01332525722682476, -0.027053292840719223, 0.04785009101033211, -0.014875954017043114, 0.014365768060088158, 0.023629674687981606, -0.009398166090250015, 0.014338916167616844, -0.02110559493303299, -0.026798199862241745, -0.011781272478401661, 0.011982661671936512, 0.025616714730858803, -0.009156499058008194, 0.005638899747282267, 0.030906539410352707, -0.023173192515969276, -0.003967368509620428, -0.0008609391516074538, 0.011647013016045094, -0.001571675413288176, 0.03230283781886101, -0.004172114189714193, -0.022985229268670082, 0.01781623810529709, 0.007189597003161907, -0.01917225867509842, -0.009733814746141434, -0.008404645137488842, -0.041405633091926575, -0.02048800140619278, -0.0044842679053545, -0.009237054735422134, -0.009438443928956985, 0.0005244511994533241, -0.020783372223377228, 0.013211135752499104, -0.005524779204279184, 0.022770414128899574, -0.012721088714897633, 0.012821783311665058, 0.019642166793346405, 0.01415095292031765, -0.02916116639971733, 0.006118877325206995, 0.01719864457845688, 0.002458627335727215, -0.010176870971918106, 0.03853248059749603, -0.0243143979460001, 0.028731536120176315, -0.015090769156813622, 0.022260228171944618, -0.0006985690561123192, 0.009532425552606583, 0.01326483953744173, 0.006585428956896067, 0.00148860237095505, -0.00974724069237709, -0.012049791403114796, -0.0035545206628739834, 0.004507763311266899, 0.012573403306305408, -0.00524619035422802, 0.023025507107377052, 0.00603496516123414, -0.019642166793346405, 0.007041911594569683, 0.016675030812621117, 0.03404821455478668, -0.006729758344590664, 0.004923967644572258, 0.020514853298664093, 0.009780805557966232, 0.011881967075169086, -0.001763834385201335, 0.0128553481772542, -0.040331557393074036, -0.002797632711008191, -0.040089890360832214, 0.016258826479315758, 0.006266562733799219, -0.018487535417079926, 0.014983361586928368, -0.018608368933200836, -0.007390986196696758, -0.0021414393559098244, 0.029671352356672287, 0.013553498312830925, -0.002445201389491558, 0.015909751877188683, -0.013801878318190575, -0.010136593133211136, -0.005662395153194666, -0.012190763838589191, 0.004061350133270025, 0.004427207633852959, 0.01686299405992031, 0.03845192492008209, 0.006075242999941111, 0.022810691967606544, 0.010539371520280838, 0.0032239065039902925, 0.006729758344590664, 0.008444923907518387, 0.0016908308025449514, 0.047205645591020584, -0.014325490221381187, -0.009243767708539963, 0.017749108374118805, -0.011761133559048176, 0.005615404341369867, -0.007572236470878124, 0.017587997019290924, 0.008726868778467178, -0.005944340024143457, 0.013298405334353447, 0.023871341720223427, -0.00646795192733407, -0.024206990376114845, -0.019561611115932465, -0.020501427352428436, 0.02011207491159439, -0.014661138877272606, 0.0033749486319720745, 6.30914801149629e-05, -0.00544086704030633, 0.005857071373611689, -0.009069230407476425, 0.028087090700864792, 0.018447257578372955, -0.0006830453057773411, -0.03163154050707817, -0.013728035613894463, -0.014285212382674217, 0.004289591684937477, -0.016809290274977684, 0.03748525679111481, -0.021575503051280975, 0.024086156859993935, -0.0016832787077873945, 0.007988440804183483, 0.0031500637996941805, -0.013734748587012291, -0.0424528568983078, -0.026677366346120834, 0.015104195103049278, -0.018742628395557404, -0.0306917242705822, -0.0036149374209344387, -0.011754420585930347, 0.01016344502568245, 0.0023998888209462166, 0.028194498270750046, -0.0017940427642315626, -0.04043896496295929, 0.011962522752583027, 0.015211602672934532, 0.025777826085686684, 0.014983361586928368, -0.008773859590291977, 0.0014911197358742356, 0.00666262861341238, 0.0607927069067955, 0.01760142296552658, 0.0017604778986424208, 0.007766912691295147, 0.010337982326745987, 0.004796421155333519, 0.008626174181699753, -0.010156732052564621, -0.01925281435251236, -0.0032776102889329195, 0.02891949936747551, 0.009190063923597336, -0.020125500857830048, 0.02003151923418045, 0.002371358685195446, 0.011801411397755146, -0.0011193887330591679, -0.007538671605288982, -0.036303773522377014, 0.01301645953208208, -0.016178270801901817, -0.0003631300351116806, 0.010593075305223465, -0.021588928997516632, -0.011163678951561451, 0.04003618657588959, -0.0030594386626034975, 0.01153960544615984, 0.010948863811790943, 0.013157431967556477, -0.021938005462288857, 0.0069412169978022575, 0.006404178682714701, 0.01166043896228075, -0.03203431889414787, 0.008129413239657879, 0.001514615141786635, 0.01053265854716301, 0.04336582124233246, -0.01785651594400406, 0.019763000309467316, 0.008142839185893536, 0.01978985220193863, -0.011727568693459034, -0.0007048624684102833, 0.020998187363147736, -0.03061116859316826, 0.018970869481563568, -0.03590099513530731, -0.00016195053467527032, 0.008753720670938492, -0.02138753980398178, 0.028650980442762375, 0.008324089460074902, -0.009807657450437546, 0.06852605938911438, -0.0005878049414604902, -0.010539371520280838, 0.02064911276102066, -0.02160235494375229, 0.03377969563007355, 0.047608423978090286, -0.022649580612778664, -0.026583384722471237, 0.0020810223650187254, 0.02529449202120304, 0.0010480632772669196, 0.014056971296668053, -0.05875196307897568, 0.0008852736791595817, 0.01588289998471737, -0.02505282498896122, 0.012110208161175251, -0.029590796679258347, 0.007129180245101452, 0.001599366427399218, 0.0029369269032031298, 0.004490980878472328, -0.043580640107393265, -0.0025240788236260414, -0.0048064906150102615, 0.017265774309635162, -0.008465062826871872, -0.014177804812788963, -0.0257106963545084, 0.011398633010685444, 0.006300127599388361, -0.031282465904951096, -0.029134314507246017, -0.005393875762820244, 0.015520399436354637, -0.007666218094527721, -0.0007254209485836327, 0.03651858866214752, 0.015600955113768578, -0.03340376541018486, 0.007263439707458019, -0.019521333277225494, -0.049917686730623245, -0.029751908034086227, 0.005689247045665979, -0.024206990376114845, 0.011727568693459034, -0.031658392399549484], "00b4a5d7-9bbd-4055-a1cf-f54e5357911b": [0.008062358945608139, 0.013840382918715477, -0.0059963795356452465, -0.026081731542944908, -0.009043279103934765, 0.02551736682653427, -0.014404747635126114, -0.017145950347185135, -0.006369263399392366, -0.020854635164141655, 0.020505266264081, 0.027680765837430954, -0.029588857665657997, 0.0318731926381588, -0.012496656738221645, 0.004813900217413902, 0.013598511926829815, 0.010004043579101562, 0.0008364697569049895, 0.000383801874704659, -0.006023254245519638, 0.011408237740397453, 0.01190541684627533, -0.012577280402183533, -0.02127118967473507, 0.00025656778598204255, 0.023609274998307228, -0.025544241070747375, -0.010212321765720844, -0.023663023486733437, 0.015399105846881866, -0.02127118967473507, -0.019537784159183502, -0.010602002032101154, -0.028594499453902245, -0.005479044746607542, 0.0003764533903449774, -0.003450017888098955, 0.009426241740584373, -0.014498809352517128, 0.028943868353962898, 0.010763249360024929, 0.005102801602333784, 0.005028896499425173, 0.0038968068547546864, 0.02231929637491703, 0.015184109099209309, -0.018516551703214645, -0.006137470714747906, -0.003374433144927025, 0.013645542785525322, 0.04181676730513573, -0.02128462679684162, -0.0005920794792473316, -0.009258275851607323, -0.008640161715447903, -0.01314164511859417, 0.0006307116127572954, 0.006218094378709793, -0.017602816224098206, -0.006033332087099552, 0.0027647172100842, -0.003507126122713089, -0.012389157898724079, -7.25927238818258e-05, -0.0020911742467433214, -0.001981996698305011, 0.01717282459139824, 0.00107330153696239, 0.0017518834210932255, 0.0016964547103270888, 0.008687191642820835, 0.0003166155656799674, 0.026525160297751427, 0.03128195181488991, 0.005492481868714094, -0.019107790663838387, -0.0032081471290439367, -0.012664622627198696, -0.00015536838327534497, -0.006832849234342575, -0.033351290971040726, -0.01002419926226139, 0.009359055198729038, 0.010467629879713058, -0.027573266997933388, 0.018986854702234268, 0.032760053873062134, -0.03429190069437027, -0.022278985008597374, 0.0039102439768612385, 0.01906747929751873, 0.009916701354086399, 0.00515655055642128, 0.012583998963236809, 0.01900029182434082, 0.021956490352749825, 0.0021583607885986567, -0.00480046309530735, -0.009661393240094185, 0.0025144482497125864, -0.003332441672682762, -0.029373861849308014, 0.0013756400439888239, -0.009641237556934357, 0.006752225570380688, 0.025974232703447342, -0.0058821626007556915, 0.02453644573688507, -0.007551742717623711, -0.010534815490245819, 0.036011870950460434, -0.005166628398001194, -0.03173882141709328, 0.002768076490610838, -0.0010279507841914892, 0.004007664509117603, -0.03077133744955063, -0.033808156847953796, -0.0009993965504691005, 0.010877465829253197, 0.016299402341246605, 0.011777762323617935, 0.007330027874559164, 0.004108443856239319, -0.0006634649471379817, -0.0016091124853119254, -0.022225236520171165, 5.364408207242377e-05, -0.027049213647842407, 0.03762434050440788, 0.018180619925260544, -0.007437526248395443, 0.010830435901880264, -0.01595003344118595, 0.027815138921141624, -0.03195381537079811, 0.020921820774674416, -0.01057512778788805, -0.01595003344118595, 0.02596079558134079, 0.0028083883225917816, -0.016044095158576965, -0.007760020438581705, -0.01119324192404747, 0.0036750920116901398, 0.009029841981828213, 0.015775348991155624, 0.004608981776982546, 0.010192165151238441, 0.005841850768774748, -0.007699552923440933, -0.004578748252242804, -0.011999477632343769, -0.0034315416123718023, 0.0026387430261820555, -0.008203450590372086, 0.00950014591217041, 0.020935259759426117, -0.02655203640460968, 0.01451224647462368, 0.03558187931776047, -0.005146472714841366, -6.9285897552617826e-06, 0.010662470012903214, 0.03877994790673256, 0.036146242171525955, 0.020276833325624466, 0.0005895600188523531, 0.002763037569820881, -0.000719313567969948, 0.018529988825321198, -0.03988180309534073, 0.021701183170080185, 0.008156419731676579, 0.018247805535793304, -0.006295358762145042, 0.012543686665594578, -0.009453115984797478, 0.0008129545021802187, 0.00819673202931881, -0.008546100929379463, 0.011576203629374504, 0.04439672455191612, -0.025544241070747375, -0.004296565428376198, 0.02993822656571865, -0.0027042494621127844, 0.0067253513261675835, 0.008048921823501587, 0.0004631657211575657, 0.020182771608233452, -0.00230952980928123, -0.0005568066844716668, -0.6428387761116028, -0.002710968255996704, -0.022870225831866264, -0.03547437861561775, -0.012268222868442535, 0.0012488258071243763, 0.00034747927566058934, 0.014539120718836784, -0.013544763438403606, 0.025221746414899826, 0.00400094548240304, -0.010884184390306473, 0.03241068497300148, -0.022305859252810478, -0.013773196376860142, -0.014646618627011776, -0.0019047323148697615, 0.0006370103219524026, -0.0338619090616703, 0.0035541565157473087, 0.016312839463353157, 0.026014544069767, -0.02284334972500801, -0.0045249988324940205, 0.00950014591217041, 0.023461464792490005, 0.012274941429495811, 0.005915755871683359, 0.03552812710404396, 0.033082544803619385, -0.03415752574801445, -0.0302607212215662, 0.010783405043184757, -0.006087081041187048, 0.04732604697346687, -0.009701705537736416, -0.0026605783496052027, -0.005395061802119017, 0.039989300072193146, 0.02993822656571865, -0.007894393056631088, -0.014149440452456474, 0.014592870138585567, 0.042327385395765305, 0.02738514542579651, -0.018771858885884285, 0.007497993763536215, -0.006849645636975765, -0.005700759589672089, -0.010857310146093369, -0.002769756130874157, 0.006261765491217375, 0.009970450773835182, -0.027479207143187523, -0.0035743124317377806, 0.001802273211069405, 0.01666220836341381, -0.021822119131684303, 0.01659502275288105, -0.015976907685399055, 0.026646096259355545, 0.011569485068321228, -0.01437787339091301, -0.01938997395336628, -0.016621896997094154, 0.0009439678397029638, -0.03439939767122269, -0.002705929335206747, -0.002591712400317192, -0.024227388203144073, 0.005038974341005087, 0.011918853968381882, -0.005304360296577215, -0.027277648448944092, 0.01428381260484457, 0.03300192207098007, 0.020679950714111328, 0.0006806814344599843, 0.01079684216529131, 0.001200955593958497, 0.008411727845668793, -0.004178989212960005, -0.007511431351304054, -0.023206155747175217, 0.022883662953972816, 0.011999477632343769, -0.005865366198122501, -0.0012740206439048052, 0.002260819775983691, 0.013188675977289677, -0.0026169074699282646, 0.013027428649365902, -0.006624571513384581, -0.050658490508794785, 0.007571898866444826, 0.020653076469898224, 7.25927238818258e-05, -0.019887153059244156, -0.017589379101991653, -0.006019894499331713, -0.006157626863569021, -0.008237043395638466, 0.00969498697668314, 0.017280323430895805, -0.0020676590502262115, 0.015412542968988419, -0.007585335988551378, 0.027680765837430954, 0.032061316072940826, -0.03163132071495056, -0.02921261452138424, -0.01918841525912285, -0.018314993008971214, 0.008579693734645844, -0.013262580148875713, -0.020720262080430984, 0.026498286053538322, 0.00898281205445528, 0.014082253910601139, -0.0014940558467060328, 0.026726720854640007, 0.0025144482497125864, -0.01580222323536873, 0.00450820242986083, 0.017401257529854774, 0.0037154038436710835, 0.005761227570474148, -0.010165290907025337, -0.04477296769618988, -0.003051938721910119, 0.015560353174805641, 0.0073501840233802795, 0.031523823738098145, -0.010602002032101154, -0.019282475113868713, -0.010057792998850346, 0.021257752552628517, -0.00923811923712492, 0.014767554588615894, -0.014431622810661793, -0.03493689000606537, -0.0055025601759552956, 0.0003489489608909935, -0.012248067185282707, -0.003796027274802327, -0.02035745605826378, -0.011126055382192135, -0.010306382551789284, -0.022171488031744957, 0.0016620217356830835, 0.0061912196688354015, -0.009594207629561424, -0.017253447324037552, 0.0214861873537302, 0.0034013076219707727, -0.015264732763171196, 0.01744157075881958, -0.00884843897074461, -0.028191382065415382, -0.007847363129258156, -0.02902449294924736, 0.03327066823840141, -0.017159387469291687, 0.01255712378770113, -0.003450017888098955, -0.005902318749576807, 0.005841850768774748, 0.028030134737491608, -0.030878834426403046, -0.041091155260801315, 0.01991402730345726, -0.00041193614015355706, -0.003688529133796692, 0.03273317590355873, 0.007679396774619818, 0.017347509041428566, -0.015452854335308075, 0.013974756002426147, 0.007618929259479046, -0.028057008981704712, -0.0037355597596615553, -0.0018661001231521368, 0.01893310621380806, -0.021754931658506393, -0.00950014591217041, 0.014821303077042103, 0.004746713675558567, 0.0033156450372189283, -0.028728872537612915, -0.013000553473830223, 0.024818629026412964, 0.01827467978000641, -0.025342682376503944, -0.014834740199148655, -0.0001262892910744995, 0.045901697129011154, 0.015076611191034317, 0.012449625879526138, 0.017414694651961327, 0.025100810453295708, 0.012966960668563843, 0.001063223578967154, -0.021553372964262962, -0.028540750965476036, 0.0038262612652033567, -0.043052997440099716, 0.013262580148875713, -0.010528096929192543, 0.005290923174470663, -0.023085221648216248, 0.006590978242456913, 0.0010791803942993283, -0.024348324164748192, -0.006429731380194426, 0.01803280971944332, 0.04313362017273903, -0.0026555394288152456, 0.009748735465109348, 0.004135318100452423, 0.007484556641429663, 0.007645803969353437, -0.0040278201922774315, -0.006265124771744013, 0.010467629879713058, 0.025329245254397392, 0.019793091341853142, 0.023219594731926918, 0.009426241740584373, -0.02407957799732685, -0.05122285336256027, 0.01509004831314087, -0.018046246841549873, 0.0015520041342824697, 0.0029410813003778458, 0.027412019670009613, 0.0020592608489096165, 0.01569472625851631, -0.01613815501332283, 0.03662998601794243, -0.0042159417644143105, -0.012389157898724079, 0.008747659623622894, 0.0195243451744318, -0.05095410719513893, -0.012422751635313034, 0.00181403080932796, 0.00969498697668314, 0.02837950363755226, -0.0021885945461690426, 0.005002021789550781, -0.011085744015872478, 0.014015067368745804, -0.02660578489303589, 0.005055770743638277, 0.006775740999728441, 0.006822771392762661, 0.0020878149662166834, -0.01737438328564167, 0.0037389190401881933, 0.009285150095820427, 0.006698476616293192, 0.014431622810661793, -0.005391702521592379, 0.01226150430738926, -0.0015125321224331856, -0.01308117713779211, -0.017844688147306442, -0.018503114581108093, -0.0201693344861269, -0.005902318749576807, -0.0244020726531744, -0.004202504642307758, -0.011851667426526546, 0.012194317765533924, 0.03977430611848831, 0.0064230128191411495, 0.007336746901273727, 0.02413332834839821, 0.021109944209456444, 0.005549590568989515, -0.005606698803603649, -0.01031310111284256, -0.006893316749483347, 0.018785296007990837, 0.005314438138157129, -0.004803822375833988, -0.026525160297751427, 0.008142982609570026, 0.021096505224704742, -0.0009414483793079853, -0.028003260493278503, -0.016353150829672813, -0.008673754520714283, -0.012980397790670395, 0.002328006085008383, 0.0034600957296788692, 0.02648484893143177, -0.02166087180376053, 0.011596359312534332, 0.01437787339091301, -0.0007377898436971009, -0.004703042563050985, -0.0318731926381588, -0.014404747635126114, 0.0637463852763176, -0.002131486078724265, 0.031013207510113716, 0.008969374001026154, 0.011522455140948296, -0.033996280282735825, 0.009708424098789692, -0.014700368046760559, -0.020679950714111328, -0.016218779608607292, 0.013423827476799488, -0.014552557840943336, 0.004568669945001602, 0.011777762323617935, 0.020854635164141655, 0.01233540941029787, -0.005243892781436443, -0.01017872802913189, -0.019309349358081818, 0.0159365963190794, 0.05030912160873413, 0.020155897364020348, -0.026135480031371117, -0.006624571513384581, -0.02277616411447525, -0.011737450957298279, -0.014471934176981449, -0.013753040693700314, 0.014337562024593353, 0.011697139590978622, 0.014915363863110542, 0.004773588385432959, 0.005176706239581108, -0.0055764648132026196, 0.004739995114505291, 0.006466683931648731, 0.007074720226228237, -0.014875052496790886, 0.004938194993883371, -0.04471921920776367, -0.002096213400363922, -0.0007424089126288891, 0.006231531500816345, 0.005159909836947918, -0.0020374252926558256, -0.025329245254397392, 0.013329766690731049, 0.015452854335308075, -0.0033979483414441347, -0.009318742901086807, -0.00522037735208869, 0.02003496140241623, 0.03090570867061615, 0.032249435782432556, -0.005307719577103853, 0.030099473893642426, 0.016742832958698273, 0.026511723175644875, 0.016581585630774498, -0.008989530615508556, 0.0266864076256752, -0.001980316825211048, 0.01666220836341381, -0.016836892813444138, -0.013591793365776539, 0.01330961100757122, 0.013356640934944153, 0.01730719767510891, -0.006103877443820238, -0.016890641301870346, -7.941633521113545e-05, -0.006211375817656517, -0.026982028037309647, -0.012536968104541302, 0.020330581814050674, 0.018113432452082634, 0.014619744382798672, -0.014821303077042103, -0.024428946897387505, -0.032948173582553864, -0.016057532280683517, -0.003473533084616065, 0.016608459874987602, -0.007437526248395443, 0.008405009284615517, -0.01607096940279007, -0.0013092935550957918, 0.014431622810661793, -0.026404226198792458, 0.0030771337915211916, 0.026471411809325218, -0.03877994790673256, -0.06681007891893387, -0.014700368046760559, 0.0034634550102055073, 0.005217018071562052, -0.0059997388161718845, -0.010944652371108532, -0.01756250485777855, 0.01711907610297203, -0.029427610337734222, -0.041091155260801315, -0.003500407561659813, -0.023515213280916214, -0.0044510941952466965, 0.02433488704264164, 0.014068816788494587, 0.0026622582226991653, -0.011757606640458107, 0.015170671977102757, -0.012086819857358932, 0.016178466379642487, 0.009197807870805264, -0.019994650036096573, 0.005361468531191349, 0.029642606154084206, 0.005986301694065332, 0.019739342853426933, 0.024388635531067848, -0.013598511926829815, 0.015788786113262177, 0.004615700338035822, -0.009735298343002796, -0.02545017935335636, 0.007880955934524536, 0.0032736535649746656, 0.015197547152638435, 0.029911352321505547, -0.005630214232951403, -0.022561168298125267, 0.03488314151763916, -0.008384853601455688, 0.031846318393945694, 0.008875313214957714, 0.0201693344861269, 0.03474876657128334, 0.015976907685399055, 0.028916994109749794, 0.012180880643427372, -0.0312282033264637, 0.0014411467127501965, -0.041171781718730927, 0.018073121085762978, 0.02694171667098999, 0.009157496504485607, 0.01187182404100895, 0.01437787339091301, -0.032034438103437424, -0.0403386689722538, -0.004887805320322514, 0.011522455140948296, 0.02778826467692852, -0.028997618705034256, -0.03300192207098007, -0.01034669391810894, 0.0017535630613565445, -0.017522193491458893, 0.005035615060478449, -0.03974742814898491, 0.012637747451663017, 0.004659371450543404, -0.008304229937493801, 0.021835556253790855, 0.0037120445631444454, -0.015506603755056858, -0.032571930438280106, 0.005966145545244217, -0.010830435901880264, 0.008599849417805672, 0.026646096259355545, 0.016030658036470413, 0.002427106024697423, -0.03364691138267517, 0.008667035959661007, 0.022426795214414597, -0.031792569905519485, -0.018368741497397423, -0.003678451292216778, 0.03155069798231125, 0.0007671838393434882, 0.03039509430527687, -0.0035978276282548904, 0.015331919305026531, 0.006137470714747906, -0.011428393423557281, 0.009426241740584373, 0.0020424642134457827, -0.017360946163535118, -0.004373829811811447, -0.0034029872622340918, 0.002747920574620366, -0.0019198491936549544, 0.025262057781219482, -0.007081438787281513, 0.012946804985404015, 0.036603108048439026, 0.013336485251784325, 0.0013781595043838024, -0.0133432038128376, -0.03359316289424896, -0.017253447324037552, 0.01389413233846426, -0.010649032890796661, 0.010635594837367535, -0.025342682376503944, -0.014498809352517128, 0.020774012431502342, -0.0018358663655817509, 0.011710576713085175, -0.005458889063447714, 0.012859462760388851, -0.008452039211988449, -0.0020609404891729355, 0.028272004798054695, 0.015184109099209309, -0.029750104993581772, 0.010111541487276554, -0.026175791397690773, 0.020975571125745773, 0.01900029182434082, 0.011703858152031898, 0.017414694651961327, 0.009809203445911407, 0.003923681564629078, -0.007827206514775753, -0.012315253727138042, -0.024496134370565414, -0.012483219616115093, 0.013685854151844978, -0.010091385804116726, -0.02172805741429329, -0.04195114225149155, -0.0009355695801787078, -0.014391310513019562, -0.01796562410891056, 0.0022322656586766243, 0.014001630246639252, 0.019564658403396606, -0.021943053230643272, -0.00963451899588108, -0.005616776645183563, -0.03727497160434723, 0.03942493721842766, -4.5718195906374604e-05, 0.022426795214414597, 0.0390218161046505, 0.017132513225078583, -0.02088150940835476, 0.01659502275288105, 0.01441818568855524, 0.0038766509387642145, 0.03310941904783249, -0.006486839614808559, -0.020276833325624466, -0.0010674226796254516, -0.02746577002108097, 0.01310805231332779, 0.01337007898837328, -0.02284334972500801, -0.02147275023162365, 0.030153222382068634, -0.012798994779586792, -0.018825607374310493, 0.03278692811727524, -0.045847948640584946, 0.010548252612352371, 0.006738788448274136, -0.004383907653391361, -0.022816475480794907, -0.006517073605209589, -0.005912396591156721, 0.013061021454632282, 0.004592185374349356, 0.030556339770555496, 0.022037114948034286, 0.0051431129686534405, 0.003325723111629486, -0.014350999146699905, -0.039532434195280075, 0.03273317590355873, -0.02264179103076458, -0.0026185871101915836, -0.003927040845155716, -0.005862006917595863, 0.019685592502355576, 0.004783666227012873, -0.016447212547063828, -0.01730719767510891, 0.0022137893829494715, 0.02394520677626133, -0.013383516110479832, 0.009009686298668385, 0.0033089264761656523, 0.00506248977035284, -0.02323303185403347, -0.008277354761958122, -0.00793470535427332, -0.01815374568104744, 0.006648086942732334, -0.031846318393945694, 0.005915755871683359, 0.001510012662038207, 0.016017219051718712, -0.00946655310690403, -0.010272788815200329, -0.02375708520412445, -0.003927040845155716, -0.013605230487883091, 0.007081438787281513, -0.04181676730513573, -0.003796027274802327, 0.008646880276501179, 0.0042260196059942245, -0.017226573079824448, 0.012362283654510975, -0.0058720847591757774, 0.028003260493278503, 0.04823978245258331, -0.013323048129677773, -0.002568197203800082, 0.000247539603151381, 0.008048921823501587, -0.03853807598352432, 0.008270636200904846, -0.010803560726344585, -0.007975016720592976, -0.0018711391603574157, -0.018046246841549873, -0.008693910203874111, -0.02518143504858017, -0.007753301877528429, 0.03439939767122269, -0.019107790663838387, -0.00018560222815722227, -0.0011304098879918456, 0.016218779608607292, 0.013255861587822437, 0.005559668410569429, -4.406478183227591e-05, 0.006224812939763069, -0.02291053719818592, -0.010548252612352371, 0.00393711868673563, -0.00243214494548738, 0.006836208514869213, 0.00047324367915280163, -0.004625778645277023, 0.0005950189079158008, -0.022144611924886703, -0.02518143504858017, 0.007484556641429663, 0.006866442505270243, 0.0005941790877841413, 0.016863767057657242, -0.011603077873587608, -0.011771043762564659, -0.012127131223678589, 4.2975628389285703e-07, 0.00855281949043274, 0.011327614076435566, -0.014821303077042103, 0.03192694112658501, 0.00866031739860773, 0.0016065930249169469, -0.019228726625442505, 0.014350999146699905, -0.00044300983427092433, -0.023085221648216248, -0.026269853115081787, 0.0025026905350387096, -0.009883108548820019, 0.03286755084991455, -0.0007776817074045539, -0.012342127971351147, -0.028164507821202278, 0.015573790296912193, -0.019363099709153175, -0.0034281823318451643, 0.015331919305026531, 0.016621896997094154, 0.03864557296037674, 0.004871008452028036, -0.004676168318837881, 0.032437559217214584, -0.009479990229010582, 0.024361761286854744, -0.013188675977289677, -0.0038598543033003807, -0.005898959469050169, 0.04522983357310295, 0.0021869149059057236, 0.000491719925776124, -0.01128730271011591, -0.022158049046993256, -0.012442907318472862, -0.02367646060883999, 0.003947196528315544, 0.00761221069842577, -0.0035507972352206707, -0.016097843647003174, -0.006214735098183155, 0.007383777294307947, -0.00881484616547823, 0.006866442505270243, 0.0032870909199118614, -0.023663023486733437, 0.004689605440944433, 0.017723752185702324, 0.019873714074492455, 0.005976223386824131, -0.01742813177406788, -0.0016872165724635124, -0.011327614076435566, 0.010911059565842152, -0.007719708606600761, -0.007162062451243401, 0.02837950363755226, -0.01666220836341381, 0.02166087180376053, -0.022211799398064613, 0.0028335831593722105, 0.025423305109143257, 0.013168519362807274, -0.007820487953722477, -0.009533739648759365, 0.004904601722955704, -0.02915886417031288, -0.00871406588703394, 0.007316590752452612, -0.014713805168867111, -0.003344199387356639, 0.009036560542881489, 0.03456064686179161, -0.028406377881765366, 0.005455529782921076, -0.040446165949106216, -0.014256938360631466, -0.008828283287584782, 0.009950295090675354, 0.008331104181706905, -0.006769022438675165, -0.0211502555757761, 0.004370470531284809, 0.007484556641429663, 0.01353804487735033, -0.015210984274744987, -0.005888881161808968, -0.003947196528315544, 0.01441818568855524, 0.02355552464723587, -0.006443168502300978, 0.014780991710722446, 0.01301399152725935, 0.030475717037916183, -0.013921006582677364, -0.013020710088312626, 0.18597175180912018, -0.0020508626475930214, 0.017347509041428566, 0.03128195181488991, -0.013598511926829815, 0.018570300191640854, 0.012012914754450321, -0.019927464425563812, -0.01207338273525238, 0.011972603388130665, -0.03652248531579971, 0.026108605787158012, -0.01710563898086548, 0.0032585368026047945, -0.0055731055326759815, 0.0012034750543534756, -0.015896284952759743, -0.04522983357310295, -0.024093016982078552, 0.0011816394980996847, 0.006785818841308355, -0.00894249975681305, -0.022225236520171165, -0.03292129933834076, 0.03937118500471115, -0.010165290907025337, -0.004121880978345871, 0.0027025698218494654, 0.04203176498413086, 0.0020307067316025496, -0.01586941070854664, 0.0028100679628551006, -0.007323309313505888, -0.003067055717110634, -0.028513876721262932, -0.005116238724440336, 0.009164215065538883, 0.0018862560391426086, 0.03585062175989151, -0.04079553484916687, 0.025933921337127686, -0.008821564726531506, -0.04248863086104393, -0.0195243451744318, 0.027344834059476852, 0.028540750965476036, -0.0059896609745919704, -0.01842248998582363, -0.023783959448337555, 0.010937933810055256, -0.003940477967262268, -0.011381363496184349, 0.00400094548240304, 0.016380026936531067, -0.009345618076622486, -0.016111280769109726, -0.024039266631007195, 0.00999060645699501, 0.008015329018235207, 0.019148102030158043, -0.0013966357801109552, 0.026914842426776886, -0.011804637499153614, 0.022037114948034286, -0.020545577630400658, -0.0010791803942993283, -0.02270897850394249, 0.025665177032351494, 0.006621212232857943, -0.027277648448944092, -0.00480046309530735, -0.0018375460058450699, -0.001676298794336617, -0.004377189092338085, -0.010272788815200329, 0.0026236260309815407, 0.039989300072193146, 0.01693095453083515, -0.006023254245519638, 0.02382427081465721, -0.035555001348257065, -0.029373861849308014, -0.0028268645983189344, 0.0072292485274374485, -0.013061021454632282, -0.04469234496355057, 0.013323048129677773, -0.03853807598352432, -0.0032417401671409607, -0.01795218512415886, -0.014082253910601139, -0.00924483872950077, -0.002139884512871504, 0.0004421700141392648, 0.012274941429495811, 0.006013175938278437, -0.013753040693700314, 0.010776686482131481, 0.006527151446789503, 0.0004858410975430161, -0.028325755149126053, 0.05240533500909805, 0.04455797001719475, 0.00694706616923213, 0.011072305962443352, 0.009049997664988041, -0.005112879443913698, 0.013813508674502373, 0.0032350216060876846, -0.008304229937493801, 0.0024640585761517286, -0.00720909284427762, 0.0091104656457901, -0.015063174068927765, 0.007927986793220043, 0.007282997481524944, -0.005025537218898535, -0.008767815306782722, -0.004504843149334192, 0.004578748252242804, -0.0056940410286188126, -0.004666090477257967, -0.016151592135429382, 0.005754508543759584, 0.004535077139735222, -0.004410782363265753, -0.009755454026162624, 0.003782590152695775, -0.022305859252810478, -0.014592870138585567, 0.020088711753487587, -0.03104008175432682, -0.002899089828133583, -0.010716218501329422, 0.0015242897206917405, 0.004252894315868616, 0.00608372176066041, -0.0273313969373703, -0.023609274998307228, 0.009473271667957306, -0.010474348440766335, 0.00362806161865592, -0.015466292388737202, -0.003300528274849057, 0.010635594837367535, -0.01619190350174904, -0.0020827760454267263, -0.012194317765533924, 0.002989791566506028, -0.03735559806227684, -0.008351259864866734, -0.008546100929379463, 0.007880955934524536, -0.005505919456481934, 0.0063020773231983185, -0.011744169518351555, 0.0064196535386145115, -0.017979061231017113, 0.005912396591156721, -0.02499331347644329, -0.030529465526342392, -0.011589640751481056, 0.03482938930392265, -0.0028218256775289774, -0.004011023789644241, -0.02479175478219986, -0.17016951739788055, 0.02062620222568512, -0.007995172403752804, 0.007854081690311432, 0.036414988338947296, 0.013679135590791702, 0.02199680358171463, 0.006295358762145042, 0.014633181504905224, 0.0005324516096152365, -0.017602816224098206, 0.008122826926410198, -0.015923159196972847, -0.013101333752274513, -0.00800189096480608, 0.01945715956389904, 0.017347509041428566, 0.0004176050133537501, 0.02577267400920391, 0.025141123682260513, 0.014364436268806458, -0.03517875820398331, 0.02382427081465721, -0.011851667426526546, -0.0023364045191556215, 0.021754931658506393, -0.0012463063467293978, 0.019309349358081818, -0.016675645485520363, -0.053910307586193085, 0.020411206409335136, 0.0004749233485199511, 0.013517888262867928, 0.012872899882495403, 0.018986854702234268, -0.016366587951779366, -0.005055770743638277, -0.023085221648216248, -0.01639346405863762, 0.0006197938346303999, 0.0029041289817541838, 0.04445047304034233, -0.0024741364177316427, -0.022104300558567047, 0.007739864755421877, 0.0058821626007556915, 0.017589379101991653, -0.025288932025432587, -0.006863083224743605, -0.026431100443005562, 0.020935259759426117, -0.0110588688403368, -0.017844688147306442, -0.00457202922552824, 0.009385929442942142, -0.015184109099209309, -0.03794683516025543, 0.02062620222568512, -0.015143797732889652, -0.013679135590791702, -0.007813769392669201, -0.0134977325797081, 0.0014025145210325718, 0.027734514325857162, 0.008257199078798294, -0.020088711753487587, -0.013282736763358116, 0.0008977772668004036, -0.033673785626888275, 0.009977169334888458, 0.0031056879088282585, 0.0014251898974180222, 0.004118521697819233, -0.005059130489826202, -0.022373046725988388, 0.023864582180976868, -0.019833402708172798, -0.006627930793911219, -0.004209223203361034, 0.006795896682888269, 0.005344672128558159, 0.029696356505155563, -0.0020139100961387157, -0.0253829937428236, -0.006822771392762661, -0.012859462760388851, -0.008801408112049103, 0.00963451899588108, 0.0038766509387642145, -0.02622954174876213, 0.019604969769716263, -0.013679135590791702, 0.0026908123400062323, -0.0061912196688354015, 0.014136002399027348, -0.0003300528333056718, 0.005811617244035006, -0.008895469829440117, 0.02011558599770069, -0.0067287106066942215, 0.016971265897154808, -0.02966948039829731, -0.025651738047599792, -0.027049213647842407, 0.029454484581947327, 0.02870199829339981, -0.023125533014535904, 0.008996249176561832, 0.048320405185222626, 0.01310805231332779, -0.02792263589799404, 0.012093538418412209, 0.00894249975681305, 0.020814323797822, 0.015909722074866295, 0.01568128913640976, 0.003789308713749051, -0.024576757103204727, 0.0009548856178298593, 0.006103877443820238, 0.028352629393339157, -0.008378135040402412, -0.0018593815620988607, 0.017844688147306442, -0.011334332637488842, -0.008203450590372086, -0.10964807868003845, -0.01789843663573265, -0.021875867620110512, 0.03144320100545883, 0.005290923174470663, 0.011986040510237217, -0.015184109099209309, 0.02531580813229084, 0.024227388203144073, 0.025221746414899826, -0.009318742901086807, -0.02536955662071705, -0.010884184390306473, -0.011119336821138859, -0.028594499453902245, -0.01389413233846426, -0.01764312945306301, -0.017790939658880234, -0.02745233289897442, 0.03552812710404396, 0.013087895698845387, 0.006090440321713686, -0.014552557840943336, -0.024415509775280952, -0.015963470563292503, 0.006255046930164099, -0.025786111131310463, 0.01187182404100895, 0.011777762323617935, 0.0063020773231983185, 0.0021113301627337933, -0.012846025638282299, -0.004904601722955704, -0.009083591401576996, 0.02003496140241623, 0.001824108767323196, -0.009473271667957306, -0.024764878675341606, 0.021889304742217064, -0.028809495270252228, 0.007995172403752804, 0.015331919305026531, 0.015560353174805641, -0.0015662811929360032, 0.002437183866277337, -0.002581634558737278, -0.058801472187042236, 0.02135181427001953, 0.009815922006964684, -0.017481882125139236, -0.012631028890609741, -0.023192718625068665, -0.03794683516025543, 0.014969113282859325, 0.025020187720656395, -0.020800886675715446, 0.005754508543759584, 0.00963451899588108, -0.0009977169102057815, 0.0031342420261353254, -0.011334332637488842, 0.0040278201922774315, -0.024294575676321983, 0.012342127971351147, 0.008747659623622894, -0.012416033074259758, -0.0312282033264637, -0.011777762323617935, 0.02082776091992855, -0.01216744352132082, 0.007135187741369009, 0.013578356243669987, -0.03214193880558014, 0.007014252245426178, 0.0023364045191556215, 0.02589360997080803, -0.012503375299274921, 0.0069269100204110146, -0.009318742901086807, -0.005966145545244217, -0.016675645485520363, -0.0351250097155571, -0.027761388570070267, -0.007269560359418392, 0.02778826467692852, 0.026189228519797325, 0.011475424282252789, 0.008774533867835999, 0.019833402708172798, -0.02304491028189659, 0.0169175174087286, 0.031013207510113716, 0.010010762140154839, 0.005146472714841366, -0.02160712145268917, 0.00435703294351697, 0.011347770690917969, -0.008465477265417576, -0.007383777294307947, 0.01568128913640976, -0.013611949048936367, -0.0026622582226991653, -0.044611718505620956, -0.004666090477257967, -0.0036683734506368637, -0.017132513225078583, 0.009029841981828213, 0.019080916419625282, -0.015573790296912193, 0.00012408474867697805, -0.0048306966200470924, 0.004390626214444637, -0.02784201316535473, -0.006251687649637461, -0.034587521106004715, 0.004635856486856937, -0.008176575414836407, -0.028970742598176003, 0.00751814991235733, 0.008210169151425362, -0.0020659794099628925, 0.009271712973713875, 0.012624310329556465, -0.00855281949043274, 0.017723752185702324, 0.014364436268806458, -0.013605230487883091, 0.0107430936768651, -0.0004904601955786347, 0.04195114225149155, -0.014969113282859325, -0.030663838610053062, -0.007477838080376387, 0.0054992008954286575, -0.0006722831749357283, -0.003974071238189936, -0.00515655055642128, 0.04450422152876854, 8.828702993923798e-05, 0.018180619925260544, 0.012570561841130257, 0.03310941904783249, -0.010944652371108532, -0.027317959815263748, 0.016675645485520363, -0.004716480150818825, -0.0041487556882202625, -0.009426241740584373, -0.0038262612652033567, -0.010722937062382698, 0.019080916419625282, 0.014727242290973663, 0.031013207510113716, 0.020653076469898224, -0.026457974687218666, -0.024428946897387505, 0.005623495206236839, 0.0029998694080859423, -0.0010010761907324195, -0.013349922373890877, -0.012698215432465076, -0.005106160882860422, 0.035420630127191544, 0.011253708973526955, 0.00582169508561492, 0.005865366198122501, 0.0048844460397958755, -0.006342389155179262, -0.01664877124130726, 0.008250480517745018, 0.018771858885884285, -0.016675645485520363, -0.015842534601688385, 0.0005496680969372392, 0.025678614154458046, -0.0011975961970165372, 0.024415509775280952, 0.01337007898837328, -0.036791231483221054, 0.012980397790670395, -0.007887674495577812, 0.016165029257535934, 0.021822119131684303, 0.005579824093729258, -0.012147287838160992, 0.01808655820786953, 0.0429455004632473, 0.013336485251784325, 0.0061811418272554874, -0.004961709957569838, 0.00024523009778931737, 0.00026307645021006465, -0.017145950347185135, -3.7818554119439796e-05, -0.01652783527970314, 0.005932552274316549, 0.015479729510843754, 0.002428785664960742, 0.005771305412054062, 0.01595003344118595, 0.00537154683843255, 0.0182209312915802, 0.007847363129258156, -0.011233553290367126, -0.006769022438675165, 0.006453246343880892, -0.03235693275928497, 0.006779100280255079, -0.00012167023669462651, -0.036925602704286575, -0.0011707217199727893, 0.03507126122713089, -0.0224536694586277, 0.023663023486733437, 0.023918332532048225, 0.008895469829440117, -0.029266363009810448, 0.01141495630145073, -0.006849645636975765, -0.02739858254790306, -0.018704673275351524, 0.014404747635126114, -0.0017586020985618234, 0.014001630246639252, 0.029051367193460464, -0.00937249232083559, 0.015170671977102757, 0.02174149453639984, 0.031147580593824387, -0.01867779903113842, 0.001830827328376472, 0.0013915967429056764, -0.006476761773228645, 0.01499598752707243, -0.010864028707146645, -0.016353150829672813, -0.010984963737428188, -0.018691236153244972, 0.0021583607885986567, 0.011052150279283524, 0.016124717891216278, 0.08056984096765518, 0.03474876657128334, -0.008519225753843784, 0.0005605858750641346, -0.005405139643698931, -0.004373829811811447, 0.022225236520171165, -0.012039788998663425, -0.004682886879891157, -0.022104300558567047, 0.02264179103076458, -0.0008793010492809117, 0.0008625044720247388, -0.02244023233652115, -0.006073643919080496, 0.031523823738098145, -0.02543674223124981, 0.017132513225078583, 0.008431883528828621, 0.019309349358081818, -0.00583849148824811, 0.0037691527977585793, 0.016299402341246605, 0.004750072956085205, -0.03286755084991455, -0.003654936095699668, 0.025342682376503944, 0.0024422230198979378, -0.015157234854996204, -0.023797396570444107, 0.003607905702665448, -0.010353412479162216, 0.00940608512610197, -0.01441818568855524, -0.0009582449565641582, 0.013390234671533108, -0.022601479664444923, -0.029239488765597343, 0.019148102030158043, -0.005717556457966566, 0.0059963795356452465, -0.015452854335308075, -0.01213385071605444, -0.030825085937976837, -0.01291321124881506, 0.01742813177406788, -0.017065325751900673, 0.011791200377047062, -0.04391298070549965], "cf0db177-d4a6-45eb-838d-074b79670592": [0.0025290248449891806, -0.004768054932355881, -0.008612172678112984, -0.013144184835255146, -0.01878896728157997, 0.025074437260627747, 0.0011844265973195434, -0.0512818768620491, -0.03107665665447712, -0.009691222570836544, 0.013933240436017513, 0.03264128044247627, -0.01596994884312153, 0.006207912694662809, -0.022538669407367706, -0.004781542811542749, 0.014068122021853924, 0.023631207644939423, -0.0006019079010002315, 0.0038609777111560106, 0.007324055768549442, 0.026355810463428497, 0.015336005948483944, -0.010352141223847866, 0.0003032722161151469, 0.003601331263780594, 0.013299298472702503, -0.020097317174077034, 0.006642905063927174, -0.01702202297747135, 0.0071352217346429825, -0.006629416719079018, -0.020717771723866463, -0.020717771723866463, -0.019827554002404213, -0.007931021973490715, 0.0013623012928292155, -0.00236379518173635, 0.020016388967633247, -0.017062487080693245, 0.005611062981188297, -0.008450314402580261, 0.004818635061383247, -0.009171930141746998, -0.020731259137392044, 0.007634282577782869, 0.009677735157310963, -0.04402526468038559, -0.01954430341720581, -0.005961754359304905, 0.015201125293970108, 0.037362124770879745, -0.03949325159192085, -0.004892820026725531, 0.02371213585138321, 0.006106751970946789, -0.002948842942714691, -0.0027111144736409187, -0.0013724174350500107, -0.017575036734342575, 0.012820469215512276, 0.004403875209391117, 0.0064203510992228985, 0.004872587509453297, -0.006174192298203707, 0.021365201100707054, 0.013670221902430058, 0.00018504030595067888, -0.006545116193592548, 0.01853269338607788, -0.000652909919153899, 0.0030432597268372774, -0.0017416550545021892, 0.029080413281917572, 0.04588662460446358, -0.004970376845449209, -0.0190182663500309, 0.020785212516784668, 0.0032607559114694595, -0.014823457226157188, 0.013542084954679012, -0.030887821689248085, -0.028459958732128143, 0.03795560449361801, 0.020218709483742714, -0.00355075066909194, 0.005948266480118036, 0.040410444140434265, -0.01673877239227295, -0.02410329133272171, -0.007108245510607958, 0.00893588736653328, 0.022929824888706207, 0.0001630167244002223, 0.013636501505970955, 0.017156904563307762, 0.005314324051141739, 0.017480619251728058, -0.008342409506440163, -0.019193612039089203, -0.013434180058538914, -0.011208637617528439, -0.01864059828221798, -0.0071419659070670605, -0.024157244712114334, 0.013602781109511852, 0.0028645419515669346, -0.0078028845600783825, 0.02725951559841633, -0.018708039075136185, 0.0028089035768061876, 0.029781796038150787, -0.019760113209486008, -0.03574354946613312, 0.01255745068192482, -0.004322946537286043, 0.013528596609830856, -0.01992197148501873, -0.04666893556714058, -0.005277231801301241, 0.004036323633044958, -0.009482156485319138, -0.001738283084705472, -0.0056785037741065025, 0.0053783925250172615, 0.012699075974524021, -0.01802014373242855, -0.04313504695892334, -0.003139362670481205, -0.026450227946043015, 0.043431784957647324, 0.021918214857578278, 0.005199674982577562, -0.00043709977762773633, -0.017682941630482674, 0.027704622596502304, -0.02905343659222126, 0.0063765146769583225, -0.02043451927602291, -0.0018832804635167122, 0.014216491021215916, -0.011532353237271309, -0.013737662695348263, -0.004194809123873711, -0.01725132018327713, 0.016563426703214645, 0.0024244918022304773, 0.006410234607756138, 0.005270487628877163, -0.009313555434346199, 0.023536790162324905, -0.006865459028631449, 0.01571367308497429, -0.021729381754994392, 0.008726821281015873, -0.004548872355371714, 0.01085120253264904, 0.014553694985806942, 0.022268906235694885, 0.0057526882737874985, 0.024575376883149147, 0.04618336260318756, -0.006470931228250265, -0.0032034313771873713, 0.011080500669777393, 0.028055313974618912, 0.027623694390058517, 0.023671671748161316, -0.013548828661441803, -0.010507254861295223, 0.000578303646761924, 0.018600134178996086, -0.021419154480099678, 0.005560482386499643, 0.017210856080055237, 0.009468669071793556, 0.011579561047255993, 0.008173808455467224, -0.025654427707195282, 0.007317311596125364, 0.0010428011883050203, -0.0013665163423866034, 0.008605428040027618, 0.05238790437579155, -0.027070680633187294, 0.0033737190533429384, 0.0153494942933321, 0.011876299977302551, 0.019706161692738533, 0.011397471651434898, 0.01864059828221798, 0.03018643893301487, 0.006649649236351252, 0.0002866228169295937, -0.6344817280769348, 0.008200784213840961, -0.04858425259590149, -0.005850477144122124, 0.02282191999256611, 0.004157716874033213, 0.013083487749099731, 0.010001449845731258, 0.0032186054158955812, 0.03296499326825142, 0.008389618247747421, -0.009596806019544601, 0.01739969104528427, -0.04291923716664314, 0.0002552207442931831, -0.018977802246809006, 0.005128862336277962, 0.004360038787126541, -0.026436738669872284, 0.02131124958395958, -0.029350174590945244, 0.032668255269527435, -0.013164416886866093, 0.008032182231545448, -0.0050546773709356785, 0.0184113010764122, -0.0266390610486269, -0.005044561345130205, 0.030132487416267395, 0.020394055172801018, -0.02399538643658161, -0.030672011896967888, 0.023671671748161316, -0.007088013458997011, 0.04089601710438728, -0.020205222070217133, 0.01250349823385477, 0.013083487749099731, 0.026746965944767, 0.038522105664014816, 0.011013059876859188, -0.0013589293230324984, 0.021864261478185654, 0.014176026917994022, 0.031535252928733826, -0.029080413281917572, 0.011431192047894001, 0.017291786149144173, -0.012591171078383923, -0.007121733855456114, -0.0049804928712546825, 0.016549937427043915, 0.015187636949121952, -0.0425955206155777, 0.009724942967295647, 0.005944894161075354, 0.004869215656071901, -0.014068122021853924, 0.01803363300859928, -0.03358544781804085, 0.0034242996480315924, 0.03412497416138649, -0.0014288990059867501, 0.000458174996310845, 0.0003481624007690698, 0.012793493457138538, -0.016806213185191154, 0.005573970731347799, -0.005880825687199831, -0.03601331263780594, 0.018613621592521667, 0.004882704000920057, -0.005469437688589096, -0.010014938190579414, 0.012874421663582325, 0.023536790162324905, 0.02727300301194191, 0.0037800490390509367, 0.02500699646770954, 0.020623354241251945, 0.008126599714159966, 0.013737662695348263, -0.026976265013217926, -0.0008615544647909701, 0.032155707478523254, 0.013825335539877415, -0.00950913317501545, -0.003962138667702675, 0.014756016433238983, -0.0031477927695959806, -0.008106367662549019, 0.006831739097833633, -0.0027549508959054947, -0.02384701743721962, -0.0012569252867251635, -9.457499254494905e-05, -0.008018694818019867, -0.021473105996847153, -0.010702832601964474, -0.024818163365125656, -0.00723638292402029, -0.0010571323800832033, 1.9362845705472864e-05, -0.006902551744133234, 0.020097317174077034, 0.01490438636392355, 0.018289906904101372, 0.00523676723241806, 0.011633514426648617, -0.012078622356057167, -0.021284272894263268, -0.038522105664014816, -0.02016475796699524, 0.004420735407620668, -0.026450227946043015, -0.02929622307419777, 0.026558132842183113, 0.0015688383718952537, 0.038117460906505585, 0.0050310734659433365, 0.021338224411010742, -0.005250255577266216, 0.0042757377959787846, 0.0050749098882079124, 0.021877750754356384, -0.003742956556379795, 0.020488472655415535, 0.00444433931261301, -0.04426804929971695, -0.020083827897906303, 0.028702745214104652, 0.0037395847029983997, 0.0020316499285399914, -0.023064706474542618, 0.008430082350969315, 0.008639148436486721, 0.01761550083756447, -0.008430082350969315, 0.01027121301740408, -0.008119856007397175, -0.017993168905377388, 0.011147941462695599, 0.007034061010926962, -0.010763529688119888, 4.802512557944283e-05, -0.03296499326825142, -0.012570939026772976, -0.007094757631421089, -0.01553832832723856, -0.008733565919101238, -0.01815502531826496, -0.03412497416138649, -0.01775038242340088, 0.006798018701374531, 0.002847681986168027, -0.021095437929034233, 0.004012719262391329, -0.018478741869330406, -0.017291786149144173, -0.006919411942362785, -0.004022835288196802, 0.00792427733540535, -0.005941522307693958, 0.03334266319870949, -0.0004006396629847586, -0.04008672758936882, 0.004889447707682848, 0.01737271435558796, -0.019476862624287605, -0.03277616202831268, 0.011033291928470135, 0.02129776030778885, 0.007668002974241972, 0.020394055172801018, 0.004666893742978573, 0.028621817007660866, -0.04097694531083107, 0.02079869993031025, -0.02727300301194191, -0.00983959250152111, -0.013494876213371754, 0.017345737665891647, 0.0005833617178723216, -0.027205562219023705, 0.0008792576263658702, 0.027488812804222107, 0.003353486768901348, -0.007964742369949818, -0.03695748373866081, -0.0025290248449891806, 0.024427007883787155, 0.009347275830805302, -0.026746965944767, 0.003877837909385562, 0.025438617914915085, 0.01676574908196926, 0.0229702889919281, 0.0026318717282265425, 0.02576233260333538, 0.013225113973021507, 0.013258833438158035, -0.0059651262126863, -0.01764247752726078, -0.019557790830731392, 0.001541862147860229, -0.013427435420453548, 0.0354737862944603, 0.0006411077920347452, 0.0006541744223795831, -0.0332617349922657, 0.003055061912164092, -0.010156563483178616, -0.013784871436655521, -0.003328196704387665, 0.030537130311131477, 0.013171160593628883, -0.015228101052343845, 0.029916677623987198, 0.014189515262842178, 0.006703601684421301, 0.001487909583374858, 0.009502389468252659, -0.021661940962076187, 0.018316883593797684, 0.011228869669139385, 0.008214272558689117, 0.0026605341117829084, -0.015659721568226814, 0.006494535598903894, -0.04521222040057182, 0.003297848394140601, -0.005014213267713785, 0.013191393576562405, -0.005756060592830181, 0.029350174590945244, -0.005132234189659357, 0.04305411875247955, -0.01699504628777504, 0.012449545785784721, -0.031535252928733826, -0.018303396180272102, 0.015942972153425217, 0.026193952187895775, -0.05236092954874039, 0.010298188775777817, 0.00719591835513711, 0.004147600848227739, 0.020704282447695732, 0.00672720605507493, 0.011282822117209435, -0.006238261237740517, 0.023887481540441513, -0.028567863628268242, -0.006666509434580803, -0.011303055100142956, -0.0050175851210951805, 0.01167397852987051, -0.01571367308497429, 0.0034411596134305, 0.015187636949121952, 0.01452671829611063, 0.025937678292393684, 0.011195149272680283, 0.02295680157840252, 0.015821579843759537, -0.008160320110619068, -0.012348384596407413, -0.0012088738149031997, -0.017345737665891647, 0.02170240506529808, -0.011754906736314297, -0.02792043425142765, -0.016199246048927307, 0.0020485101267695427, 0.050931185483932495, 0.01878896728157997, 0.02042103186249733, 0.012537218630313873, 0.009468669071793556, -0.0057594324462115765, -0.019598256796598434, -0.013407203368842602, 0.00990028865635395, -0.0011574503732845187, -0.002974133240059018, -0.007189174648374319, -0.03283011540770531, -0.0043701548129320145, 0.0013985506957396865, -0.009792383760213852, -0.016914118081331253, -0.020124293863773346, -0.005381764844059944, 0.006110123824328184, -0.012085366062819958, 0.009684478864073753, 0.02334795705974102, -0.014270443469285965, 0.005192930810153484, 0.015268565155565739, 0.004977120552212, -0.013751151040196419, 0.0019473490538075566, -0.0025189085863530636, 0.05217209458351135, 0.010102611035108566, 0.025209318846464157, 0.004788286983966827, -0.0011810546275228262, -0.02816322073340416, 0.016684819012880325, 0.016037389636039734, -0.01750759594142437, -0.023671671748161316, -0.002589721465483308, -0.009171930141746998, -0.01675225980579853, -0.006862087175250053, 0.006258493289351463, -0.012537218630313873, 0.0026773943100124598, -0.015079732052981853, -0.006019079126417637, -0.0067238337360322475, 0.019085707142949104, 0.03185896947979927, -0.008726821281015873, -0.02117636799812317, -0.007546609733253717, -0.03145432472229004, -0.002658847952261567, -0.02283540740609169, -0.013225113973021507, 0.0007072839071042836, 0.008841470815241337, -0.019368957728147507, 0.015282053500413895, 0.0266390610486269, -0.00018651557911653072, 0.005901057738810778, 0.010035170242190361, -0.029512032866477966, 0.004167832899838686, -0.01915314793586731, 0.003400695277377963, -0.0016522961668670177, -0.005243511404842138, 0.006477675400674343, 0.024953044950962067, -0.006892435718327761, -0.005270487628877163, 0.009057280607521534, -0.005691991653293371, 0.010149819776415825, -0.012705820612609386, 0.014702063985168934, 0.013218369334936142, 0.03264128044247627, -0.00033825705759227276, 0.01263163611292839, -0.0018714782781898975, -0.002781927352771163, 0.01939593441784382, -0.020623354241251945, 0.028055313974618912, -0.0011717814486473799, 0.005088397767394781, -0.003297848394140601, -0.029727842658758163, 0.002564431168138981, -0.011444680392742157, 0.024953044950962067, 0.0053547886200249195, -0.022687038406729698, -0.000652909919153899, 0.0031882573384791613, -0.0487191341817379, -0.0030314577743411064, 0.016442032530903816, 0.017723405733704567, -0.014445789158344269, -0.03412497416138649, -0.023010753095149994, -0.019382445141673088, 0.010736552998423576, -0.0028999485075473785, 0.0265311561524868, -0.0030432597268372774, 0.02538466453552246, -0.030725965276360512, -0.012240479700267315, -0.00047629966866225004, -0.03220966085791588, 0.012928375042974949, 0.03461054712533951, -0.03614819422364235, -0.03501519188284874, 0.0005024329293519258, 0.0021226948592811823, 0.007539866026490927, -0.0031848852522671223, -0.007492657285183668, -0.03007853403687477, 0.01091189868748188, -0.023280516266822815, -0.01953081600368023, -0.002658847952261567, -0.01230792049318552, -0.0014145678142085671, 0.012638379819691181, -0.003914930392056704, -0.005088397767394781, -0.020218709483742714, 0.04232575744390488, -0.02576233260333538, 0.03231756389141083, 0.02156752347946167, -0.029080413281917572, 0.004336434416472912, 0.0054357172921299934, -0.0014525032602250576, -0.005783036816865206, 0.024292126297950745, -0.004397131036967039, 0.02283540740609169, 0.004720846191048622, -0.009846336208283901, -0.009171930141746998, 0.01637459173798561, 0.014445789158344269, 0.011903276666998863, 0.026854870840907097, 0.009421460330486298, -0.017534572631120682, 0.03285709023475647, -0.007634282577782869, 0.014068122021853924, 0.008524499833583832, 0.002470014151185751, 0.003007853403687477, -0.007620794698596001, 0.05794501677155495, -0.0023519929964095354, -0.016576914116740227, 0.0023621092550456524, -0.03131944313645363, 0.017709918320178986, 0.010176795534789562, -0.0034394736867398024, 0.025546522811055183, -0.0025340828578919172, -0.02019173465669155, -0.04513128846883774, -0.01553832832723856, 0.02588372491300106, -0.0011136139510199428, -0.0016683132853358984, -0.05686596408486366, -0.016307150945067406, -0.003510286333039403, -0.027488812804222107, -0.0057526882737874985, -0.046749867498874664, 0.011525608599185944, -0.006858715321868658, -0.02042103186249733, 0.02894553169608116, -0.017602011561393738, 0.0035709829535335302, -0.02181030996143818, -0.017993168905377388, -0.005108629819005728, 0.00294715678319335, 0.004076787736266851, 0.005698735825717449, -0.0070542930625379086, -0.03336963802576065, -0.0002921023697126657, 0.004161088727414608, -0.009994706138968468, -0.0020636841654777527, 0.00819404050707817, 0.03587843105196953, 0.024453982710838318, 0.035689596086740494, 0.008092879317700863, 0.01638808101415634, -0.006477675400674343, 0.0031747689936310053, 0.01837083511054516, 0.00581001304090023, -0.011694210581481457, -0.012409081682562828, -0.01687365397810936, -0.006986852269619703, -0.003844117745757103, 0.025087926536798477, -0.020609864965081215, -0.011019803583621979, 0.016657842323184013, 0.02348283864557743, -0.0008632404496893287, -0.014985314570367336, -0.018195489421486855, -0.013245346024632454, 0.014513229951262474, 0.0006567034288309515, 0.005199674982577562, -0.01375789474695921, -0.006143844220787287, 0.01827641949057579, -0.021135903894901276, 0.005668387748301029, -0.008564963936805725, -0.0131239527836442, 0.0034495897125452757, -0.004838867578655481, 0.01186281256377697, 0.0035406346432864666, -0.020380567759275436, 0.021850774064660072, -0.024669794365763664, 0.020016388967633247, 0.013825335539877415, -0.007229638751596212, -0.00223397184163332, -0.0110400365665555, 0.011330030858516693, -0.017669452354311943, -0.006275353487581015, -0.004211669322103262, -0.012092110700905323, 0.017318760976195335, 0.020070340484380722, -0.017345737665891647, -0.02259262092411518, -0.014607647433876991, -0.02028615027666092, 0.005836989264935255, 0.0022424019407480955, 0.00850426685065031, 0.019827554002404213, -0.013164416886866093, -0.018869897350668907, -0.02864879183471203, -0.026935799047350883, 0.0340440459549427, 0.02206658385694027, 0.03695748373866081, 0.02472374588251114, 0.028486935421824455, -0.03212872892618179, 0.0012594542931765318, -0.013973704539239407, -0.011120964772999287, 0.022363323718309402, 0.0017045626882463694, -0.0015873844968155026, 0.008544731885194778, -0.00456236070021987, -0.0017720033647492528, -0.013852311298251152, -0.03083387017250061, -0.008618916384875774, 0.024521423503756523, -0.01274628471583128, -0.030024582520127296, 0.024197708815336227, -0.04135461151599884, 0.0046567777171730995, -0.008578452281653881, -0.007816372439265251, -0.027502302080392838, -0.005263743456453085, -0.025560010224580765, 0.015416935086250305, 0.0060696592554450035, 0.025573497638106346, 0.024265149608254433, 0.009846336208283901, -0.023941434919834137, -0.017575036734342575, -0.035716574639081955, 0.02626139298081398, -0.018613621592521667, 0.002255890052765608, -0.01389277633279562, -0.032263610512018204, -0.005735828075557947, -0.007762419991195202, -0.013063255697488785, -0.02587023749947548, -0.023820040747523308, 0.03237151727080345, 0.01663086749613285, 0.00969796720892191, -0.005037817172706127, 0.008645893074572086, -0.03161618113517761, -0.014459277503192425, -0.0020670562516897917, 0.005263743456453085, -0.009529365226626396, -0.011417703703045845, 0.009819360449910164, 0.019058730453252792, 0.004026207607239485, -0.018114561215043068, -0.016064364463090897, -0.013629757799208164, -0.020704282447695732, -0.009171930141746998, 0.010817482136189938, -0.014459277503192425, -0.02054242603480816, 0.00918541755527258, -0.005233395379036665, -0.0039891148917376995, 0.004582592751830816, 0.00729033537209034, 0.036364004015922546, 0.035986337810754776, -0.03436776250600815, 0.01180886011570692, -0.0234693493694067, 0.027434861287474632, -0.022511692717671394, 0.007587074302136898, -0.0057897805236279964, -0.01350836455821991, -0.007661259267479181, -0.016158781945705414, -0.03231756389141083, -0.04364759474992752, 0.007438704837113619, 0.021365201100707054, -0.023024242371320724, 0.006646276917308569, -0.009880056604743004, 0.018586646765470505, 0.006835110951215029, -0.004872587509453297, 0.0013041337952017784, -0.007883813232183456, -0.0073914965614676476, -0.0038272575475275517, 0.039816964417696, -0.018060609698295593, 0.00819404050707817, 0.006814878899604082, -0.005617807153612375, -0.008180552162230015, 0.001964209135621786, -0.009104489348828793, 0.005526761990040541, 0.004825379233807325, -0.025829773396253586, 0.011518864892423153, -0.018343860283493996, -0.01261140312999487, -0.018748503178358078, 0.02537117712199688, 0.015551816672086716, 0.00843682698905468, -0.023051217198371887, 0.030402250587940216, -0.0031545369420200586, 0.0006853656959719956, -0.01299581490457058, 0.014162538573145866, 0.0034310435876250267, 0.018114561215043068, -0.008025438524782658, -0.025681404396891594, -0.018950825557112694, 0.048125654458999634, -0.007708467543125153, -0.012584427371621132, -0.03301894664764404, 0.013225113973021507, -0.022525180131196976, -0.013252089731395245, -0.0012645124224945903, 0.019746625795960426, 0.04297319054603577, -0.004859099630266428, 0.01066236849874258, 0.041300661861896515, -0.007539866026490927, 0.018451765179634094, -0.024130268022418022, 0.01356906071305275, -0.007910789921879768, 0.037119340151548386, -0.015255077742040157, 0.011370494961738586, -0.021351713687181473, -0.008173808455467224, -0.006167448591440916, -0.00393516244366765, 0.008726821281015873, 0.02789345756173134, 0.004899564199149609, 0.002542512957006693, -0.017467131838202477, 0.00014879096124786884, 0.01383882388472557, 0.028082290664315224, -0.004623057320713997, -0.025573497638106346, -0.021877750754356384, 0.010574695654213428, 0.01447276584804058, -0.022929824888706207, -0.0009171929559670389, -0.00926634669303894, 0.006477675400674343, -0.0029842492658644915, -0.004781542811542749, -0.004262249916791916, 0.001374946441501379, -0.024170732125639915, 0.007614050526171923, 0.030752941966056824, 0.0028544259257614613, 0.028379030525684357, -0.00830194540321827, -0.019733136519789696, 0.006511395797133446, 0.02310517057776451, -0.021756356582045555, -0.0040093474090099335, 0.0016320639988407493, -0.007904045283794403, -0.002775183180347085, 0.007027316838502884, 0.018182002007961273, -0.011802115477621555, 0.0314812995493412, -0.034178927540779114, -0.02193170227110386, -0.015942972153425217, -0.009826104156672955, 0.0018563042394816875, -0.004053183831274509, -0.014931362122297287, 0.008922399021685123, 0.03261430189013481, 0.017723405733704567, -0.03388218954205513, -0.008618916384875774, -0.023294003680348396, 0.009165185503661633, 0.024008875712752342, 0.009731687605381012, -0.002793729305267334, 0.015093219466507435, 0.023442374542355537, -0.018694551661610603, 0.0010048658587038517, 0.19476862251758575, -0.0011212009703740478, 0.024022363126277924, 0.024265149608254433, -0.02194519154727459, -0.01827641949057579, 0.015686698257923126, -0.018735015764832497, -0.015174148604273796, 0.024912580847740173, -0.018923848867416382, 0.02118985541164875, -0.008018694818019867, -0.003254011971876025, 0.00526037160307169, 0.024656305089592934, -0.02005685307085514, -0.0238605048507452, -0.014823457226157188, -0.005762804299592972, -0.006440583150833845, -0.011363751254975796, -0.02918831817805767, -0.022633085027337074, 0.03045620210468769, 0.009987961500883102, -0.014041145332157612, -0.005833616945892572, 0.029215294867753983, -0.02117636799812317, -0.02170240506529808, -0.010689344257116318, -0.011896532960236073, -0.00415434455499053, -0.04858425259590149, -0.003011225489899516, 0.017183881253004074, 0.007775908336043358, 0.011957229115068913, -0.03790165111422539, -0.0036249354016035795, 0.009765408001840115, -0.03676864877343178, -0.007701723370701075, 0.01041283831000328, 0.026841383427381516, -0.004677009768784046, -0.011019803583621979, -0.0035271465312689543, 0.022916335612535477, -0.02052893675863743, -0.029512032866477966, 0.012334897182881832, 0.003641795599833131, -0.019760113209486008, -0.024534912779927254, -0.003662027884274721, 0.006106751970946789, -0.0008860016823746264, 0.01663086749613285, -0.02145961858332157, 0.013521852903068066, -0.021864261478185654, 0.02765067107975483, -0.040545325726270676, 0.01967918500304222, -0.028621817007660866, 0.01599692553281784, -0.006939643993973732, -0.01878896728157997, 0.002262634225189686, -0.005294091999530792, -0.01154584065079689, -0.018546180799603462, -0.013933240436017513, -0.009657502174377441, 0.040680207312107086, 0.006959876045584679, 0.017844798043370247, 0.015133684501051903, -0.036579813808202744, -0.031238514930009842, 0.006939643993973732, 0.004451083485037088, -0.007573586422950029, -0.018991289660334587, 0.0017720033647492528, -0.014068122021853924, -0.0158485546708107, -0.0035440067294985056, -0.005523390136659145, -0.01611831784248352, 0.002768439007923007, 1.1387197446310893e-05, 0.008854959160089493, 0.007991718128323555, -0.016307150945067406, 0.031049679964780807, 0.009212394244968891, -0.009414716623723507, -0.027812529355287552, 0.022754479199647903, 0.009246114641427994, 0.00624837726354599, -0.0001804037601687014, 0.009286578744649887, -0.007297079544514418, 0.014958338811993599, -0.004215041175484657, -0.013420691713690758, -0.0026976263616234064, 0.00047082011587917805, -0.0020670562516897917, -0.012233735993504524, 0.02956598624587059, 0.005668387748301029, -0.018573157489299774, -0.01637459173798561, 0.004977120552212, -0.0039216745644807816, -0.008558220230042934, -0.0050546773709356785, -0.01864059828221798, -0.018195489421486855, -0.00918541755527258, -0.009232626296579838, 0.005924662109464407, 0.001211402821354568, -0.007418472785502672, 0.008477291092276573, -0.0036822601687163115, -0.026800919324159622, 0.013555572368204594, -0.01789875142276287, -0.001604244695045054, 0.005145722534507513, -0.0008092879434116185, -0.022660061717033386, 1.2019453606626485e-05, -0.015443910844624043, 0.009165185503661633, -0.006325934082269669, -0.02043451927602291, 0.0019793834071606398, 0.0050243292935192585, 0.0006124455248937011, 0.010830970481038094, -0.02120334282517433, -0.007829860784113407, 0.009232626296579838, -0.0261400006711483, -0.025438617914915085, 0.027502302080392838, -0.004150972701609135, -0.016280176118016243, -0.005351416300982237, 0.008854959160089493, -0.009691222570836544, 0.004859099630266428, 0.013521852903068066, -0.016320640221238136, -0.00482200738042593, 0.02538466453552246, -0.014809968881309032, -0.01008912269026041, -0.01876199245452881, -0.17070579528808594, 0.013400459662079811, 0.007944509387016296, -0.03131944313645363, 0.029997605830430984, 0.01700853370130062, 0.03488031029701233, 0.014931362122297287, 0.005297463852912188, -0.006079775746911764, -0.014756016433238983, -0.007600562646985054, -0.016779236495494843, -0.007378008216619492, -0.017952702939510345, -0.00106219039298594, -0.000322029140079394, -0.00719591835513711, 0.010311677120625973, 0.024265149608254433, 0.02676045335829258, -0.01452671829611063, 0.03844117745757103, -0.005138978362083435, 0.009960985742509365, -0.029080413281917572, -0.0023115286603569984, 0.022929824888706207, 0.014621134847402573, -0.04124670848250389, 0.0028358798008412123, 0.02044800855219364, -0.006056171376258135, 0.005095141939818859, 0.01636110432446003, 0.00868635717779398, 0.009475412778556347, 0.006612556986510754, -0.018047120422124863, -0.003510286333039403, 0.014000681228935719, 0.050040971487760544, 0.006383258383721113, -0.021594500169157982, -0.0018647342221811414, -0.002542512957006693, 0.035096120089292526, -0.011397471651434898, 0.001977697480469942, -0.022619597613811493, -0.003211861476302147, -0.015079732052981853, 0.014809968881309032, -0.004703985992819071, 0.017602011561393738, 0.015120196156203747, -0.03995184600353241, 0.0070610372349619865, -0.005553738214075565, -0.02905343659222126, -0.0005264586652629077, -0.011127709411084652, 0.0016430231044068933, 0.0184113010764122, -0.011761651374399662, -0.005594202782958746, -0.007270103320479393, 0.011269334703683853, -0.025586986914277077, 0.024831650778651237, -0.002825763775035739, 0.011222125962376595, 0.004424107261002064, 0.01224722433835268, -0.02042103186249733, 0.014890898019075394, -0.015362982638180256, 0.016900628805160522, 0.014014169573783875, 0.014499741606414318, -0.012260711751878262, 0.06846576184034348, -0.012618147768080235, -0.0009635584428906441, -0.00811311136931181, 0.015079732052981853, 0.006636160891503096, -0.013973704539239407, 0.0014196259435266256, -0.01992197148501873, 0.04704660549759865, -0.01672528311610222, 0.022107047960162163, -0.03056410700082779, 0.008908911608159542, -0.005654899403452873, 0.009300067089498043, -0.021500082686543465, -0.002640301827341318, -0.017224345356225967, 0.016941094771027565, -0.002662220038473606, -0.002174961380660534, -0.01737271435558796, 0.04151647165417671, 0.020636841654777527, -0.014324395917356014, 0.006008962634950876, 0.041300661861896515, 0.027812529355287552, -0.025856750085949898, -0.014351372607052326, -0.0009357391390949488, 0.025964654982089996, 0.0050749098882079124, 0.00415434455499053, -0.0014339570188894868, -0.017844798043370247, -0.01660389080643654, -0.01115468516945839, 0.01876199245452881, -0.015093219466507435, -0.005685247480869293, 0.010048658587038517, -0.021257296204566956, -0.005884197540581226, -0.09058629721403122, -0.029269246384501457, -0.012415825389325619, 0.026976265013217926, 0.009488901123404503, 0.025708379223942757, -0.006585580296814442, 0.021149391308426857, 0.029134364798665047, 0.012105599045753479, 0.005506529938429594, -0.006298957858234644, -0.01162002608180046, -0.009819360449910164, -0.022660061717033386, -0.0006689270376227796, -0.003473194083198905, -0.011566073633730412, -0.02564093843102455, 0.030914798378944397, 0.027556253597140312, -0.007890556938946247, -0.00805915892124176, -0.018330371007323265, 0.015430423431098461, 0.010237492620944977, -0.03536588326096535, 0.009556341916322708, 0.01052074320614338, 0.007229638751596212, 0.0050175851210951805, -0.008355897851288319, 0.010406093671917915, -0.017979679629206657, -0.005085025914013386, 0.012186527252197266, -0.03830629587173462, -0.027475325390696526, 0.025816284120082855, -0.004457827657461166, 0.0010335281258448958, 0.032020825892686844, 0.004956888500601053, 0.004926540423184633, 0.026463715359568596, -0.017723405733704567, -0.03577052801847458, 0.02918831817805767, -0.018047120422124863, 0.006612556986510754, -0.01904524303972721, 0.01777735725045204, -0.025843260809779167, -0.0006246691336855292, 0.021095437929034233, -0.01815502531826496, 0.006899179425090551, -0.00893588736653328, 0.0006019079010002315, -0.0014676774153485894, -0.015147172845900059, 0.0034091253764927387, -0.016968069598078728, 0.024575376883149147, 0.008463802747428417, 0.0003612290311139077, -0.026193952187895775, 0.0005336242029443383, 0.020582890138030052, 0.0006263551185838878, 0.021918214857578278, 0.03245244547724724, -0.002643673913553357, -0.00015079310105647892, 0.004424107261002064, 0.018721526488661766, -0.030294345691800117, 0.023900970816612244, -0.009374251589179039, 0.0073847523890435696, 0.002621755702421069, -0.016900628805160522, -0.0378207229077816, -0.00598873058333993, -0.009731687605381012, 0.023159122094511986, -0.001637122011743486, 0.002345249056816101, 0.03644493222236633, -0.03007853403687477, 0.0010343710891902447, 0.03110363334417343, 0.012705820612609386, -0.0090640252456069, -0.010770273394882679, -0.0026352438144385815, 0.008126599714159966, 0.01637459173798561, -0.03207477927207947, -0.008315433748066425, -0.03363940119743347, -0.0017281669424846768, -0.03536588326096535, 0.0037800490390509367, 0.00646755937486887, -0.009171930141746998, 0.00615396024659276, -0.009178673848509789, 0.007910789921879768, -0.0022424019407480955, -0.0066934856586158276, 0.007438704837113619, -0.03212872892618179, 0.015767626464366913, -0.03145432472229004, 0.009246114641427994, -0.011950485408306122, -0.02260611020028591, 0.006750809960067272, -0.011525608599185944, 0.017858287319540977, -0.004478059709072113, 0.03007853403687477, -0.010945619083940983, 0.029107389971613884, 0.016212735325098038, 0.004184693098068237, 0.00444433931261301, -0.0017079347744584084, 0.03261430189013481, -0.007620794698596001, -0.033045925199985504, -0.004747822415083647, -0.011815603822469711, 0.008214272558689117, 0.00013435444270726293, 0.02294331230223179, 0.037631887942552567, -0.004835495259612799, 0.014364860951900482, 0.01888338476419449, 0.028217172250151634, -0.0024211197160184383, -0.01497182622551918, 0.04224482923746109, 0.006100007798522711, 0.009799128398299217, 0.018101073801517487, -0.010642136447131634, -0.020124293863773346, 0.00212438078597188, 0.012368617579340935, 0.026355810463428497, 0.024319102987647057, -0.033153828233480453, -0.006889063399285078, 0.02044800855219364, -0.020758235827088356, -0.007694979198276997, -0.026854870840907097, -0.02475072257220745, -0.010460046119987965, 0.04170530289411545, -0.023698648437857628, 0.010601671412587166, -0.004950144328176975, -0.014068122021853924, -0.013144184835255146, -0.022687038406729698, -0.015039267018437386, 0.007162197958678007, -0.022673550993204117, -0.03210175409913063, -0.010372373275458813, 0.027084169909358025, 0.003685632022097707, 0.030132487416267395, 0.02144612930715084, -0.03258732706308365, 0.014742528088390827, 0.0028932043351233006, 0.01700853370130062, 0.023267028853297234, -0.021270783618092537, -0.01255070697516203, -0.020623354241251945, 0.03094177506864071, 0.026706501841545105, 0.004795031156390905, -0.015794603154063225, -0.021527059376239777, -0.0021985655184835196, 0.00415434455499053, -0.0020131038036197424, 0.019261052832007408, 0.0022609480656683445, 0.01008237898349762, -0.002240716014057398, 0.003618191462010145, 0.00013393293193075806, 0.011316542513668537, 0.01712992787361145, 0.008895423263311386, -0.007573586422950029, -0.02271401509642601, 0.0009618723997846246, -0.03183199092745781, 0.01714341528713703, 0.012948607094585896, -0.03401706740260124, -0.010136331431567669, 0.03593238443136215, -0.01255070697516203, 0.012382104992866516, 0.01356906071305275, 0.010257724672555923, -0.019908482208848, -0.0002014789788518101, 0.006872203201055527, -0.03396311774849892, -0.008369386196136475, 0.002574547193944454, 0.012422570027410984, 0.030914798378944397, 0.01853269338607788, -0.017682941630482674, 0.01777735725045204, 0.006433838978409767, 0.028082290664315224, -0.0042824819684028625, -0.027812529355287552, 0.005216535180807114, -0.013879287987947464, 0.0061202398501336575, -0.012490009889006615, -0.024076316505670547, 0.006218028720468283, -0.02116287872195244, 0.010709577240049839, -0.0006457443232648075, 0.0013521852670237422, 0.07337544113397598, 0.02854088693857193, 0.008079390972852707, -0.0006411077920347452, 0.012840702198445797, 0.03652586042881012, 0.04588662460446358, -0.006835110951215029, -0.010041913948953152, -0.0018360719550400972, 0.008962864056229591, -0.018681062385439873, -0.013467899523675442, -0.025344200432300568, 0.004434223286807537, 0.022646574303507805, -0.026072559878230095, 0.011080500669777393, -0.013144184835255146, 0.013670221902430058, 0.013784871436655521, -0.007249870803207159, 0.011458167806267738, -0.0015283739194273949, -0.020974045619368553, 0.007270103320479393, 0.00331639451906085, -0.0035271465312689543, 0.0027583229821175337, -0.007688235491514206, 0.007728699594736099, -0.0020232198294252157, -0.007081269286572933, -0.02244425192475319, 0.008430082350969315, 0.022376811131834984, -0.018681062385439873, 0.005472809541970491, 0.01269233226776123, -0.006784530356526375, -0.005219907034188509, -0.01129631046205759, -0.030510155484080315, -0.023280516266822815, -0.0030786660499870777, 0.04666893556714058, -0.0078703248873353, 0.021095437929034233, -0.03283011540770531], "fd76a23c-a4e7-463d-a4e4-2a999724795f": [-0.0088979946449399, 0.011562597937881947, -0.0038016836624592543, -0.010391267947852612, -0.007445819675922394, -0.0009341523982584476, -0.002056676661595702, -0.027289923280477524, -0.00793216098099947, -0.0093295369297266, 0.007466369308531284, 0.04030469432473183, -0.026467937976121902, 0.028550300747156143, -0.013644961640238762, 0.016152016818523407, 0.011048857122659683, 0.009185689501464367, 0.007254023104906082, -0.011131055653095245, -0.00431884964928031, 0.01445324718952179, -0.01259692944586277, -0.02148122526705265, -0.013370966538786888, 0.0030105223413556814, -0.0018717297352850437, -0.01679590716958046, -0.0014470372116193175, -0.027522819116711617, -0.003555087838321924, -0.009925476275384426, -0.015494429506361485, -0.017919287085533142, -0.01168589573353529, 0.012302384711802006, -0.00018740844097919762, -0.014179252088069916, 0.014288850128650665, 0.0044387225061655045, 0.023919781669974327, 0.009404885582625866, 0.009843277744948864, 0.015275233425199986, -0.015371131710708141, 0.02356358803808689, 0.01475464180111885, -0.05079871043562889, -0.003005384933203459, 0.014384748414158821, 0.03622216731309891, 0.03679755702614784, -0.02352248877286911, -0.031564246863126755, 0.0148642398416996, 0.005521003622561693, -0.010836510919034481, 0.014686143025755882, 0.00034292213968001306, -0.0020172896329313517, 0.013069571927189827, -0.0003915134584531188, -0.007438969798386097, -0.020604439079761505, -0.024385573342442513, -0.008487001992762089, 0.003464326960965991, 0.029564082622528076, 0.011857142671942711, 0.01354221347719431, 0.003397540654987097, 0.006339563988149166, -0.003983205184340477, 0.024399273097515106, 0.02400198020040989, 0.003757159225642681, -0.024645868688821793, 0.013631261885166168, -0.003863332560285926, -0.001834055408835411, -0.0020652390085160732, -0.01913856528699398, 0.01170644536614418, -0.001899129361845553, 0.03397540748119354, -0.0007183811976574361, -0.004288025200366974, 0.0273447223007679, -0.017261698842048645, -0.029975075274705887, 0.017069902271032333, 0.0061580422334373, 0.014371048659086227, 0.019823553040623665, 0.015343732200562954, 0.01066526398062706, 0.019905751571059227, 0.017754890024662018, -0.016741108149290085, -0.027372121810913086, 0.006411487702280283, 0.023974580690264702, -0.01638491451740265, -0.0031732069328427315, -0.02107023261487484, 0.03660576045513153, 0.025070561096072197, -0.012268135324120522, 0.0269063301384449, -0.003733184654265642, -0.014795741066336632, 0.02868729829788208, -0.0019042667699977756, -0.03997590020298958, 0.017179500311613083, 0.005688825622200966, 0.04496261477470398, -0.04307204857468605, -0.02623504213988781, 0.0021097632125020027, -0.002304984722286463, -0.009685730561614037, 0.021864818409085274, -0.020316744223237038, 0.014151852577924728, 0.001459024497307837, 0.0012321221875026822, -0.03518098592758179, -0.01575472392141819, -0.012233885936439037, 0.03600297123193741, 0.016508212313055992, 0.0004597982042469084, 0.009795328602194786, 0.00024509726790711284, 0.02534455619752407, -0.02920788899064064, 0.010192621499300003, -0.017960386350750923, -0.00717182457447052, 0.023659486323595047, 0.002707415260374546, -0.010391267947852612, -0.013549063354730606, -0.008185607381165028, -0.014097053557634354, 0.003178344340994954, 0.0015249545685946941, 0.00826780591160059, 0.0009255900513380766, 0.015056036412715912, -0.004520921036601067, -0.0002363208623137325, -0.01687810570001602, 0.0006203422672115266, 0.01672740839421749, 0.0009418585104867816, 0.009761079214513302, 0.019522158429026604, -0.014549145475029945, 0.01790558733046055, 0.0407978855073452, 0.008343154564499855, 0.010172071866691113, 0.004024304449558258, 0.041373275220394135, 0.032413631677627563, 0.021166130900382996, -0.024399273097515106, 0.00793216098099947, -0.012254435569047928, 0.018754972144961357, -0.03564677760004997, 0.0051442598924040794, 0.003839357988908887, -0.005979945417493582, -0.0035722125321626663, 0.012781876139342785, -0.010363868437707424, 0.0066889082081615925, -0.009877527132630348, -0.00021320252562873065, 0.0035961871035397053, 0.042715854942798615, -0.03633176535367966, -0.009411735460162163, 0.005428530275821686, 0.007555417716503143, 0.005709375254809856, 0.0049901376478374004, 0.02117983065545559, 0.02608434483408928, 0.012939424254000187, -0.020892133936285973, -0.6198867559432983, 0.002370058558881283, -0.02076883614063263, -0.03386580944061279, 0.020481141284108162, 0.005709375254809856, 0.011884542182087898, 0.01045976672321558, -0.018590575084090233, 0.014850540086627007, 0.0019196789944544435, 0.0010214884532615542, 0.037509944289922714, -0.010692663490772247, 0.009767929092049599, -0.020056448876857758, 0.0150834359228611, -0.0038427829276770353, -0.031865641474723816, 0.017823388800024986, -0.007233473472297192, 0.03389320895075798, -0.03657836094498634, -0.002532743150368333, 0.0004970444133505225, 0.02612544409930706, -0.007493768818676472, -0.0013973755994811654, 0.027824213728308678, 0.025385655462741852, -0.02849550172686577, -0.018796071410179138, 0.01657671108841896, -0.014905339106917381, 0.036468762904405594, -0.0008921968983486295, 0.0014153565280139446, -0.0056374515406787395, 0.038660723716020584, 0.018741272389888763, 0.010583065450191498, -0.014535445719957352, 0.01631641387939453, 0.01623421534895897, 0.029481884092092514, -0.025878848508000374, 0.0033444541040807962, 0.005822398234158754, -0.002469381783157587, -0.01701510325074196, -0.0010300508001819253, -0.0033906907774508, 0.013364116661250591, -0.030276469886302948, 0.010247420519590378, 0.012179086916148663, 0.009103490971028805, 0.004890814423561096, 0.007829412817955017, -0.015467029996216297, 0.001262946636416018, 0.006404637824743986, -0.014631344005465508, -0.005716225132346153, -0.010658414103090763, 0.019220763817429543, -0.020974332466721535, 0.0135627631098032, -0.005884047131985426, -0.02482396550476551, 0.005431955214589834, 0.008254106156527996, 0.0031184079125523567, -0.032413631677627563, 0.006336139049381018, 0.04225006327033043, 0.012473631650209427, -0.003561937715858221, 0.0095487330108881, 0.006993727758526802, 0.0067779566161334515, 0.0073704710230231285, -0.04203086718916893, -0.014768341556191444, 0.02352248877286911, 0.007055376656353474, -0.005514153745025396, 0.014576544985175133, 0.030523067340254784, 0.0031577947083860636, -0.004311999771744013, 0.02404307946562767, 0.005979945417493582, -0.033016424626111984, -0.011829743161797523, -0.005301807541400194, 0.004356523975729942, -0.027399521321058273, -0.017152100801467896, -0.015699924901127815, -0.013295617885887623, 0.011692745611071587, 0.008795246481895447, 0.009836427867412567, -0.012453082017600536, 0.01306272204965353, 0.027468020096421242, 0.0013793946709483862, 0.006305314600467682, -0.020344143733382225, -0.01976875402033329, -0.014699842780828476, -0.03367401286959648, -0.017960386350750923, -0.016521912068128586, -0.017974086105823517, 0.03359181433916092, 0.0021508624777197838, 0.013644961640238762, 0.009733679704368114, 0.014316249638795853, 0.014891639351844788, -0.0019385161576792598, 0.008089708164334297, 0.00891854427754879, 0.008219856768846512, 0.02448147162795067, -0.011829743161797523, -0.0412362776696682, -0.022659404203295708, 0.01631641387939453, 0.013227119110524654, 0.017549393698573112, -0.02627614140510559, -0.019234463572502136, -0.02627614140510559, 0.02504316158592701, 0.006017619743943214, 0.013179169967770576, -0.010144672356545925, -0.02385128289461136, 0.010939259082078934, 0.00782256294041872, -0.012192786671221256, 0.002626929199323058, -0.03578377515077591, -0.012014689855277538, 0.014905339106917381, -0.025481553748250008, -0.008445902727544308, 0.0009504209156148136, -0.018302880227565765, -0.012322934344410896, 0.042496658861637115, 0.021563423797488213, -0.005068911239504814, 0.01244623214006424, -0.010918709449470043, -6.940855382708833e-05, -0.002690290566533804, -0.019083766266703606, 0.025837749242782593, -0.014740942046046257, 0.014398448169231415, -0.010172071866691113, -0.019302962347865105, -0.010898159816861153, 0.02738582156598568, 0.004055128898471594, -0.041674669831991196, 0.01092555932700634, -0.0011105368612334132, -0.00496958801522851, 0.032413631677627563, -0.012494181282818317, 0.027509119361639023, -0.021426426246762276, -0.0029403110966086388, 0.009274737909436226, -0.02200181595981121, -0.014836840331554413, 0.024810265749692917, -0.011124205775558949, -0.02983807772397995, -0.013110671192407608, 0.004767516627907753, 0.015165635384619236, 0.0014684430789202452, -0.02148122526705265, -0.0073704710230231285, 0.030194271355867386, 0.0015951658133417368, -0.026317240670323372, 0.006733432412147522, -0.010473466478288174, 0.042715854942798615, 0.012048939242959023, 0.013781959190964699, 0.02345398999750614, 0.017754890024662018, 0.01092555932700634, 0.008213006891310215, -0.0023580712731927633, -0.03838672861456871, 0.0019419410964474082, -0.041674669831991196, 0.02002904936671257, -0.008514401502907276, 0.014001155272126198, -0.026056945323944092, 0.01868647336959839, -0.0297284796833992, -0.035427581518888474, -0.005942271091043949, 0.007884211838245392, 0.010487166233360767, -0.008445902727544308, 0.023919781669974327, -0.005634026601910591, 0.004277750384062529, 0.0011293740244582295, 0.008343154564499855, -0.01419295184314251, 0.0015532103134319186, 0.0010411818511784077, 0.0038256582338362932, 0.028933893889188766, 0.019385160878300667, -0.001352851395495236, -0.031345050781965256, 0.015658825635910034, -0.02478286623954773, 0.01928926259279251, -0.01694660447537899, 0.042825452983379364, 0.004370223730802536, 0.0325506292283535, -0.023700585588812828, 0.025837749242782593, -0.01605611853301525, -0.023207394406199455, 0.005517578683793545, 0.017261698842048645, -0.0403594933450222, -0.006894404534250498, 0.020207146182656288, 0.016932904720306396, 0.014617644250392914, 0.0031252577900886536, -0.008096558041870594, 0.009541883133351803, 0.02857770025730133, -0.038660723716020584, 0.008925394155085087, 0.007555417716503143, -0.009185689501464367, 0.006438887678086758, -0.01920706406235695, 0.01898786798119545, 0.01043921709060669, 0.016823306679725647, -0.0022399108856916428, -0.0022536106407642365, 0.022125113755464554, 0.018535776063799858, -0.015412230975925922, -0.024549970403313637, -0.015699924901127815, -0.02367318607866764, 0.00016760801372583956, -0.02035784348845482, -0.03307122364640236, -0.011233803816139698, 0.011459849774837494, 0.04161987081170082, -0.001060019014403224, -0.0025121935177594423, 0.03098885901272297, 0.014645043760538101, 0.008069158531725407, -0.0107954116538167, -0.02560485154390335, 0.002534455619752407, 0.020261945202946663, -0.00865824893116951, 0.0060826935805380344, -0.04707237705588341, 0.020864734426140785, 0.011644796468317509, 0.001840905286371708, -0.01690550521016121, -0.0026611785870045424, 0.006171741988509893, 0.005568952765315771, 0.008562350645661354, 0.021837418898940086, 0.026851531118154526, -0.010857060551643372, 0.015617727302014828, 0.007836262695491314, 0.01153519842773676, -0.005370306316763163, -0.01694660447537899, -0.01905636675655842, 0.05110010504722595, -0.01172699499875307, 0.01261747907847166, 0.02091953344643116, 0.0034335025120526552, -0.028440702706575394, 0.019275562837719917, -0.006829330697655678, -0.03444119915366173, -0.008254106156527996, 0.015206734649837017, -0.0203989427536726, 0.009425435215234756, -0.01220648642629385, 0.028043409809470177, -0.008487001992762089, 0.009692580439150333, -0.016220515593886375, -0.004332549404352903, 0.006829330697655678, 0.027358422055840492, 0.030112072825431824, -0.004661343526095152, -0.016439713537693024, -0.03857852518558502, -0.01928926259279251, -0.018631674349308014, -0.01683700643479824, -0.007678715977817774, 6.635821773670614e-05, -0.0027587893418967724, -0.001108824391849339, 0.005510728806257248, 0.022358009591698647, -0.0025550052523612976, -0.002621791558340192, -0.015617727302014828, -0.03055046685039997, -0.017700091004371643, -0.050963107496500015, 0.01694660447537899, 0.00383250811137259, 0.005349756684154272, -0.0025310306809842587, 0.007849962450563908, -0.026769332587718964, 0.006945778615772724, 0.004175002221018076, 0.00033671443816274405, -0.031125856563448906, -0.01983725279569626, 0.014412147924304008, 0.02233061008155346, 0.018700173124670982, 0.0006717164069414139, 0.03704415261745453, 0.017823388800024986, 0.005192209035158157, 0.02028934471309185, -0.010829661041498184, 0.029591482132673264, 0.004366798792034388, -0.0012012977385893464, -0.012768176384270191, -0.02827630564570427, 0.007130725309252739, 0.0038256582338362932, 0.021577123552560806, -0.013439465314149857, -0.012829826213419437, -0.005842947866767645, 0.00018494676623959094, -0.022015515714883804, -0.009247338399291039, 0.01131600234657526, -0.000370749767171219, 0.0070211272686719894, -0.01716580055654049, -0.03605777025222778, -0.03334521874785423, -0.0012501031160354614, -0.003048196667805314, 0.008856895379722118, -0.0116653461009264, 0.008815796114504337, -0.010466616600751877, -0.0034917264711111784, 0.010000824928283691, -0.019042667001485825, 0.00876784697175026, 0.04994932562112808, -0.038742922246456146, -0.034167204052209854, -0.011439300142228603, 0.009302137419581413, -0.006233390886336565, -0.016672609373927116, -0.009802178479731083, -0.013131220825016499, -0.003072171239182353, -0.01653561182320118, -0.02701592817902565, 0.004038004204630852, -0.012959973886609077, -0.001907691708765924, 0.004688743036240339, 0.006658083759248257, 0.02590624801814556, -0.029783278703689575, 0.03589337319135666, -0.023919781669974327, 0.025056861340999603, -0.01608351804316044, -0.006890979595482349, -0.007521168328821659, 0.026413138955831528, 0.0007590523455291986, -0.012939424254000187, 0.025536352768540382, -0.009644631296396255, -0.0127476267516613, 0.0027861888520419598, 0.0008532382198609412, -0.024234876036643982, 0.019686555489897728, -0.000376957468688488, 0.01954955793917179, 0.03315342217683792, -0.010206321254372597, -0.023467689752578735, 0.026139143854379654, -0.0029403110966086388, 0.0201797466725111, 0.025919947773218155, -0.00464421883225441, 0.017384996637701988, -0.003904431825503707, 0.03159164637327194, -0.012679127976298332, -0.02961888164281845, 0.013179169967770576, -0.03668795898556709, 0.005955970846116543, 0.016521912068128586, 0.009637781418859959, 0.011398200877010822, 0.007589667569845915, -0.02586514875292778, -0.027358422055840492, -0.015302632935345173, 0.024618469178676605, 0.007418420165777206, -0.0024077328853309155, -0.031893040984869, -0.0071512749418616295, 0.006904679350554943, -0.031975239515304565, 0.00928843766450882, -0.03660576045513153, 0.0028735247906297445, -0.0014204939361661673, -0.002486506476998329, 0.01675480790436268, -0.0022125113755464554, -0.013268218375742435, -0.03139984980225563, -0.0006066425121389329, -0.0014496059156954288, 0.013549063354730606, 0.01764529198408127, 0.01548072975128889, -0.0003572640707716346, -0.030276469886302948, -0.014631344005465508, 0.010521416552364826, -0.0173575971275568, -0.012103738263249397, 0.00779516389593482, 0.020220845937728882, 0.0021183255594223738, 0.018330279737710953, 0.005743624642491341, 0.016261614859104156, -0.004952463321387768, -0.00795271061360836, 0.026070645079016685, -0.0003835932875517756, -0.012103738263249397, -0.013316167518496513, -0.013686060905456543, -0.008582900278270245, 0.0075485678389668465, 0.027879012748599052, -0.02827630564570427, 0.000701256503816694, 0.019330361858010292, 0.033646613359451294, 0.01972765475511551, -0.015453330241143703, -0.019124865531921387, -0.013144920580089092, 0.016974003985524178, -0.00018494676623959094, 0.015193034894764423, -0.017261698842048645, -0.01512453518807888, 0.035509780049324036, -0.011261203326284885, 0.00446954695507884, -0.0020412644371390343, -0.01172699499875307, -0.010172071866691113, -0.016700008884072304, 0.012555830180644989, 0.022138813510537148, -0.01983725279569626, 0.01976875402033329, -0.0401402972638607, 0.010980358347296715, 0.02222101204097271, 0.02541305497288704, 0.02013864740729332, -0.018124783411622047, 0.015699924901127815, -0.014220351353287697, -0.01328191813081503, 0.002746802056208253, -0.012925724498927593, 0.015069736167788506, -0.006192291621118784, -0.028194107115268707, -0.016549311578273773, -0.012377733364701271, -0.021864818409085274, -0.005233308300375938, 0.004623669199645519, 0.013055872172117233, 0.02434447407722473, -0.01802888512611389, -0.01517933513969183, -0.002983122831210494, -0.018275480717420578, 0.0427432544529438, 0.016891805455088615, 0.03534538298845291, 0.03570157662034035, 0.010357018560171127, -0.026769332587718964, -0.009802178479731083, -0.020631838589906693, -0.00628818990662694, 0.026481637731194496, -0.012151687406003475, -0.02385128289461136, 0.0025943920481950045, -0.013370966538786888, 0.016371214762330055, -0.007596517447382212, -0.03227663412690163, -0.009761079214513302, 0.010610464960336685, -0.019234463572502136, -0.03356441482901573, 0.02178261987864971, -0.06641644239425659, 0.02445407211780548, -5.10262580064591e-05, 0.008336304686963558, -0.008165057748556137, 0.0002883371489588171, -0.027440620586276054, 0.029125690460205078, -0.0002491643826942891, 0.026892630383372307, 0.022467607632279396, 0.010343318805098534, -0.029673680663108826, -0.01672740839421749, -0.0405786894261837, 0.008829495869576931, -0.013514813967049122, 0.007856812328100204, 0.0014410435687750578, 0.017494594678282738, 0.02098803222179413, 0.016453413292765617, -0.00958983227610588, -0.005586077459156513, -0.0017244573682546616, 0.02526235766708851, -0.018439877778291702, -0.006545060779899359, 0.008569200523197651, -0.0026714534033089876, -0.004356523975729942, -0.0082472562789917, -0.0241937767714262, -0.00904869195073843, -0.012850375846028328, -0.02102913334965706, 0.003335891757160425, 0.021577123552560806, 0.00704167690128088, -0.021768920123577118, -0.021878518164157867, -0.012213336303830147, -0.0035071386955678463, -0.013960056006908417, 0.018385078758001328, -0.025221258401870728, -0.028522901237010956, 0.007514318451285362, 0.004757241811603308, 0.0004589419695548713, 0.006918379105627537, 0.010589915327727795, 0.025632251054048538, 0.05170289799571037, -0.024385573342442513, -0.018385078758001328, -0.015261533670127392, 0.0067128827795386314, -0.019796153530478477, 0.010055623948574066, -0.0038462078664451838, -0.01590542122721672, 0.015521829016506672, -0.024248575791716576, -0.021905917674303055, -0.022714203223586082, -0.014508046209812164, 0.03139984980225563, -0.029673680663108826, 0.003555087838321924, 0.002027564449235797, 0.013768259435892105, 0.013439465314149857, 0.003178344340994954, 0.005086035933345556, 0.013686060905456543, -0.004185277037322521, -0.002161137294024229, 0.013069571927189827, -0.015809522941708565, -0.0009110340615734458, 0.010740612633526325, 0.007082776166498661, -0.009706280194222927, -0.024645868688821793, -0.015412230975925922, -0.014124453067779541, 0.0028409878723323345, 0.005884047131985426, 0.02102913334965706, -0.004517496097832918, -0.012473631650209427, -0.01794668659567833, 0.010829661041498184, -0.008171907626092434, -0.004175002221018076, -0.0266871340572834, 0.034578196704387665, 0.016439713537693024, -0.011610547080636024, -0.026509037241339684, 0.0017878187354654074, -0.010850210674107075, 0.0017321634804829955, -0.01222703605890274, -0.02738582156598568, -0.024960963055491447, 0.05452504754066467, -0.007939010858535767, -0.02013864740729332, -0.03413980454206467, -0.002445407211780548, -0.022974498569965363, -0.01094610895961523, -0.007363621145486832, 0.021823719143867493, 0.0410170815885067, 0.0002376052289037034, -0.004613394383341074, 0.023399190977215767, 0.001402513007633388, 0.022399108856916428, -0.02096063271164894, 0.002770776627585292, -0.015562928281724453, 0.04518181085586548, -0.015398531220853329, -0.0020652390085160732, -0.022056614980101585, -0.014069654047489166, 0.003627011552453041, -0.017330197617411613, 0.00010638720414135605, 0.01543963048607111, 0.004387348424643278, -0.014905339106917381, -0.030851861461997032, 0.017234299331903458, -0.004863414913415909, 0.024317074567079544, 0.00472984230145812, -0.011302302591502666, -0.01077486202120781, 0.004267475567758083, -0.002010439755395055, -0.017220599576830864, 0.0005856647621840239, 0.005455929785966873, 0.001189310452900827, -0.0018220681231468916, -0.017631592229008675, -0.032386232167482376, 0.008322604931890965, -0.029153089970350266, 0.014631344005465508, -0.00220223655924201, -0.000476922927191481, 0.036660559475421906, 0.005223033484071493, -0.016028719022870064, -0.005079186055809259, 0.0233306922018528, -0.021618222817778587, -0.013658661395311356, 0.011863992549479008, 0.006767681799829006, -0.012090038508176804, 0.013254518620669842, 0.040414292365312576, -0.01367236115038395, 0.011624246835708618, -0.01913856528699398, -0.022618304938077927, -0.01419295184314251, 0.010028224438428879, 0.01207633875310421, -0.0186590738594532, -0.019261863082647324, 0.011822893284261227, 0.027851613238453865, 0.016563011333346367, -0.028111908584833145, -0.001214141258969903, -0.0024162952322512865, 0.02701592817902565, 0.017220599576830864, 0.01548072975128889, 0.024851365014910698, 0.029591482132673264, 0.034359000623226166, -0.035098787397146225, 0.016604110598564148, 0.16943864524364471, -0.007164974696934223, 0.025700751692056656, 0.03159164637327194, -0.022138813510537148, 0.0052641332149505615, 0.01672740839421749, -0.012473631650209427, -0.013788809068500996, 0.026659734547138214, -0.016809606924653053, 0.03983890265226364, 0.007247173227369785, 0.007891061715781689, 0.00559292733669281, 8.824572432786226e-05, -0.012494181282818317, -0.03131765127182007, -0.021152431145310402, -0.005240158177912235, -0.015576628036797047, -0.016371214762330055, -0.023810183629393578, -0.025029461830854416, 0.02738582156598568, -0.0005094598163850605, -0.010726912878453732, -0.02367318607866764, 0.03633176535367966, -0.0018871419597417116, -0.005277832970023155, -0.0038016836624592543, 0.0014770054258406162, 0.0012124287895858288, -0.028029710054397583, 0.005976520478725433, 0.02139902673661709, 0.010357018560171127, 0.021193530410528183, -0.01575472392141819, 0.023495089262723923, -0.006271065212786198, -0.032906826585531235, -0.033317819237709045, 0.02530345693230629, 0.013651811517775059, -0.006757406983524561, -0.01772749051451683, -0.03433160111308098, 0.027098126709461212, 0.005243583116680384, -0.019371461123228073, 0.002282722620293498, 0.002226211130619049, -0.0021491500083357096, -0.0022296360693871975, -0.020220845937728882, 0.002861537504941225, -0.0009136027656495571, 0.02983807772397995, 0.0025875421706587076, 0.021467525511980057, -0.023029297590255737, 0.03307122364640236, -0.03693455457687378, 0.007877361960709095, -0.011822893284261227, 0.021686721593141556, -0.013439465314149857, -0.005089460872113705, 0.004887389484792948, 0.0036372863687574863, -0.020152347162365913, -0.0006807068712078035, -0.017234299331903458, -0.0037845587357878685, 0.030276469886302948, 0.015069736167788506, -0.014480646699666977, 0.03422200307250023, -0.041373275220394135, -0.04109928011894226, 0.00952818337827921, 0.011254353448748589, -0.007945860736072063, -0.03589337319135666, 0.018549475818872452, -0.021618222817778587, -0.010411817580461502, -0.023289592936635017, -0.019275562837719917, -0.014302549883723259, -0.007925311103463173, 0.0009838140103965998, 0.015631426125764847, 0.0016653771745041013, -0.01533003244549036, 0.007596517447382212, -0.008993892930448055, 0.002102913334965706, -0.011542048305273056, 0.04529140889644623, 0.021878518164157867, 0.008130807429552078, 0.014850540086627007, -0.006503961514681578, -0.0029951101168990135, 0.013466864824295044, 0.005534703377634287, -0.012213336303830147, -0.0053531816229224205, 0.007493768818676472, 0.008781546726822853, -0.013946356251835823, 0.0020138646941632032, 0.008165057748556137, -0.006000495050102472, -0.04504481330513954, -0.003214306430891156, 0.014946438372135162, -0.01107625663280487, -0.009185689501464367, -0.015234134159982204, -0.030221670866012573, -0.0020207145716995, -0.014275150373578072, -0.025659652426838875, 0.00622311607003212, -0.004818890709429979, -0.00152324209921062, 0.01924816332757473, -0.04255145788192749, 0.011863992549479008, -0.011644796468317509, -0.013001073151826859, -0.0063018896616995335, -0.012535280548036098, -0.018782371655106544, -0.009535033255815506, 0.005110010504722595, -0.0022364859469234943, -0.0051613845862448215, -0.02708442695438862, -0.010939259082078934, 0.027098126709461212, -0.015672525390982628, 0.002616654150187969, -0.006192291621118784, 0.019330361858010292, -0.027974911034107208, -0.0203989427536726, -0.010261120274662971, 0.018713872879743576, -0.016412314027547836, -0.012569529935717583, -0.02100173383951187, 0.008706198073923588, -0.022125113755464554, 0.01030906941741705, 0.002421432640403509, -0.029372286051511765, 0.004815465770661831, 0.021864818409085274, -0.0022861475590616465, 0.009137740358710289, -0.020453741773962975, -0.1729457825422287, 0.013439465314149857, -0.017042502760887146, -0.013768259435892105, 0.022207312285900116, 0.02028934471309185, 0.014905339106917381, 0.006312164478003979, 0.026289841160178185, 0.011103656142950058, -0.024358173832297325, -0.006497111637145281, -0.005038086790591478, -0.00565800117328763, -0.019782453775405884, 0.026618635281920433, 0.007473219186067581, -0.00602789456024766, 0.01961805671453476, 0.02846810221672058, 0.04729157313704491, -0.019193364307284355, 0.047209374606609344, -0.010541966184973717, 0.007137575186789036, -0.004140752833336592, 0.0030447717290371656, 0.01434364914894104, 0.0040277293883264065, -0.025248657912015915, 0.009726829826831818, 0.017850788310170174, -0.002820438239723444, 0.0037023602053523064, 0.024906164035201073, 0.01543963048607111, 0.005538128316402435, -0.03170124441385269, -0.02274160273373127, -0.011850292794406414, 0.019796153530478477, 0.02887909486889839, -0.0017133263172581792, -0.026878930628299713, 0.0037503093481063843, 0.001321170711889863, 0.022426508367061615, -0.024385573342442513, -0.0024745191913098097, -0.026358339935541153, 0.03046826831996441, -0.02445407211780548, -0.0017013390315696597, -0.00526755815371871, 0.01590542122721672, -0.01597392000257969, -0.03997590020298958, 0.014850540086627007, -0.020892133936285973, -0.011240653693675995, -0.004866839852184057, -0.012192786671221256, -0.014768341556191444, 0.020385242998600006, -0.005041511729359627, -0.02096063271164894, -0.026509037241339684, -0.01066526398062706, -0.02408417873084545, 0.007185524329543114, -0.0007444963557645679, -0.003471176838502288, 0.018193282186985016, -0.0007406432996504009, -0.007815713062882423, 0.003089295933023095, -0.023974580690264702, 0.017823388800024986, -0.006863580085337162, -0.006199141498655081, -0.01222703605890274, 0.0410170815885067, -0.0019419410964474082, -0.023796483874320984, 0.015850622206926346, 0.01360386237502098, -0.0008451039902865887, -0.010226870886981487, -0.0034198027569800615, -0.024700667709112167, 0.0386333242058754, -0.0011533485958352685, -0.00839795358479023, -0.012994223274290562, 0.02204291522502899, -0.006682058330625296, -0.003186906687915325, -0.004918213933706284, 0.010726912878453732, -0.03087926097214222, 0.027714615687727928, -0.012569529935717583, -0.0070211272686719894, -0.02054964005947113, 0.03778393939137459, 0.03244103118777275, -0.014521745964884758, 0.019563257694244385, 0.046058595180511475, 0.022604605183005333, -0.0512097030878067, 0.0010137822246178985, 0.013049022294580936, 0.020672937855124474, 0.018960468471050262, 0.016782207414507866, 0.000896478071808815, -0.029454484581947327, 0.010994058102369308, -0.013699760660529137, 0.011192704550921917, -0.0012509593507274985, -0.011247503571212292, 0.03567417711019516, -0.00793216098099947, -0.0049421885050833225, -0.10614574700593948, -0.031756043434143066, -0.013014772906899452, 0.033126022666692734, 0.007363621145486832, 0.031043658033013344, -0.003537963144481182, 0.01970025524497032, 0.02207031473517418, 0.013610712252557278, 0.021686721593141556, -0.010487166233360767, -0.004017454572021961, -0.012822975404560566, -0.008034909144043922, 0.01434364914894104, -0.032687630504369736, 0.007596517447382212, -0.021152431145310402, 0.018111083656549454, 0.02530345693230629, -0.004127053078263998, -0.004716142546385527, -0.010809111408889294, 0.0068190558813512325, 0.02296079881489277, -0.029701080173254013, 0.012836676090955734, 0.008411653339862823, 0.0028974993620067835, -0.0036201616749167442, -0.00971997994929552, -0.004250350873917341, -0.026810431852936745, 0.018275480717420578, 0.027399521321058273, -0.0206181388348341, -0.025919947773218155, 0.014466946944594383, -0.018796071410179138, -0.008863745257258415, 0.0030362093821167946, 0.00457914499565959, 0.004493521526455879, 0.01133655197918415, -0.0173575971275568, -0.02931748703122139, 0.015069736167788506, 0.007521168328821659, -0.02857770025730133, -0.026659734547138214, -0.01672740839421749, -0.03627696633338928, 0.015932820737361908, 0.008959643542766571, -0.013651811517775059, 0.02122092992067337, 0.004524345975369215, -0.005291532725095749, -0.00717182457447052, -0.02087843418121338, 0.015672525390982628, -0.029262688010931015, 0.019631756469607353, -0.003382128430530429, 0.00680193118751049, -0.01475464180111885, -0.0012124287895858288, 0.025961047038435936, -0.01244623214006424, -0.010281669907271862, 0.025769250467419624, -0.02983807772397995, 0.023097796365618706, 0.013028472661972046, 0.024317074567079544, -0.01835767924785614, 0.027509119361639023, 0.004829165525734425, -0.013836758211255074, -0.01802888512611389, -0.02445407211780548, -0.023385491222143173, 0.014658743515610695, 0.004281175322830677, 0.02437187358736992, 0.01850837655365467, 0.005959395784884691, 0.019892051815986633, -0.018563175573945045, 0.011254353448748589, 0.0301668718457222, 0.009240488521754742, 0.011911941692233086, -0.0035996120423078537, -0.0060826935805380344, 0.026413138955831528, 0.004370223730802536, -0.011644796468317509, -0.010425517335534096, -0.028194107115268707, -0.012302384711802006, -0.05008632317185402, -0.00526755815371871, 0.001849467633292079, -0.02128942869603634, 0.007528018206357956, 0.0029933976475149393, 0.016604110598564148, -0.01030906941741705, 0.0020309893880039454, -0.010966658592224121, -0.023358091711997986, 0.01590542122721672, -0.029180489480495453, -0.01306272204965353, -0.01090500969439745, -0.02013864740729332, 0.017604192718863487, 0.007671866100281477, 0.025687051936984062, -0.008582900278270245, -0.0020601016003638506, -0.013151770457625389, 0.025892548263072968, 0.010733762755990028, -0.009103490971028805, 0.01319286972284317, -0.003007097402587533, 0.033427417278289795, -0.01575472392141819, -0.03153684735298157, -0.00239745806902647, -0.0013597012730315328, 0.011994140222668648, -0.004099653568118811, 0.007254023104906082, 0.04307204857468605, -0.0023169720079749823, 0.016220515593886375, 0.0019607781432569027, 0.017672691494226456, -0.017741190269589424, -0.02775571495294571, 0.013007923029363155, 5.247115404927172e-05, 0.002126887906342745, -0.00042148170177824795, -0.0028307130560278893, -0.010966658592224121, 0.013138070702552795, 0.011418750509619713, 0.03504398837685585, 0.022453907877206802, -0.0213716272264719, -0.006486836820840836, 0.015247833915054798, -0.014782041311264038, 0.012548980303108692, -0.01783708855509758, -0.008302055299282074, -0.014439547434449196, 0.04690797999501228, -0.0067813815549016, -0.0034609020221978426, -0.0069081042893230915, -0.008137657307088375, -0.01434364914894104, -0.021303128451108932, -0.005781298968940973, 0.0021166130900382996, -0.024385573342442513, -0.023769084364175797, -0.006154617294669151, 0.028632499277591705, 0.0032091690227389336, 0.032687630504369736, 0.030523067340254784, -0.029180489480495453, 0.017754890024662018, 0.0028649624437093735, 0.016289014369249344, 0.03433160111308098, 0.003152657300233841, -0.026180243119597435, -0.004945613443851471, 0.05581282451748848, 0.0008279792964458466, 0.007569117471575737, -0.0353727824985981, -0.011309152469038963, 0.018741272389888763, 6.432466034311801e-05, -0.011254353448748589, -0.01612461730837822, 0.002322109416127205, 0.00930898729711771, 0.005695675499737263, 0.00565800117328763, 0.008473302237689495, 0.0045037963427603245, 0.019796153530478477, 0.009110340848565102, -0.01861797459423542, -0.015028636902570724, -0.003657836001366377, -0.031262852251529694, -0.007678715977817774, -0.02393348142504692, -0.036660559475421906, -0.0037194848991930485, 0.05682660639286041, -0.02898869290947914, 0.005640876479446888, 0.02545415423810482, 0.00843905285000801, -0.03367401286959648, 0.03641396388411522, 0.0025806922931224108, -0.00919938925653696, -0.01597392000257969, 0.0027262524235993624, 0.0035585127770900726, 0.005997070111334324, 0.047428570687770844, -0.02983807772397995, 0.0010625877184793353, 0.010637864470481873, 0.026810431852936745, -0.017111001536250114, -0.013357266783714294, 0.01194619107991457, -0.027372121810913086, -0.0013074708404019475, -0.009966575540602207, -0.006130642723292112, -0.0004996131174266338, -0.002859825035557151, 0.0021149006206542253, 0.009096641093492508, 0.01601501926779747, 0.07134835422039032, 0.02608434483408928, 0.005647726356983185, 0.0049421885050833225, 0.003513988573104143, 0.03745514526963234, 0.043647438287734985, -0.0014641619054600596, -0.006969753187149763, 0.001703051500953734, 0.022426508367061615, -0.01030906941741705, -0.005764174275100231, -0.03460559621453285, 0.0067813815549016, 0.01179549377411604, -0.007103325799107552, 0.036770157516002655, -0.031865641474723816, 0.017700091004371643, 0.003733184654265642, 0.016042418777942657, 0.023179994896054268, 0.007397870533168316, -0.0049010892398655415, 0.02404307946562767, 0.028961293399333954, -0.0060826935805380344, -0.016110917553305626, -0.0164945125579834, 0.010137822479009628, 0.0040277293883264065, -0.011363951489329338, -0.0031988939736038446, -0.009404885582625866, 0.006466287188231945, -0.013124370947480202, -0.01564512588083744, 0.027221424505114555, 0.007356771267950535, -0.005318932235240936, -0.013199719600379467, -0.023837583139538765, -0.029372286051511765, -0.023947181180119514, 0.01497383788228035, -0.015467029996216297, 0.0014067941810935736, -0.06751242280006409], "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b": [-0.022019149735569954, 0.017108114436268806, 0.0015674051828682423, -0.04403829947113991, -0.012733804062008858, 0.010137395933270454, -0.009936124086380005, -0.016437208279967308, -0.017604585736989975, -0.008896219544112682, 0.01909399777650833, 0.052733246237039566, -0.025722553953528404, 0.029573556035757065, -0.013190020807087421, 0.009003564715385437, 0.007306171115487814, 0.011251101270318031, 0.024796701967716217, 0.003210287308320403, 0.016423789784312248, -0.004079111386090517, -0.014786778017878532, -0.009399399161338806, -0.007413516286760569, 0.011955552734434605, 0.003468586364760995, 0.00204291008412838, 0.017779020592570305, -0.004300510510802269, -0.013337620534002781, -0.002603116910904646, -0.025320008397102356, -0.03486029803752899, -0.017872948199510574, 0.009546998888254166, -0.025252917781472206, 0.005380669608712196, 0.02774869091808796, -0.011620099656283855, 0.020878609269857407, 0.0030643651261925697, -0.0035625132732093334, -0.00979523453861475, -0.007581242825835943, 0.029009994119405746, 0.01940261386334896, -0.01358585525304079, -0.009815361350774765, 0.017363058403134346, 0.01619568094611168, 0.03869788348674774, -0.03926144540309906, -0.03558487817645073, 0.008305821567773819, 0.0068835001438856125, 0.013767000287771225, 0.037839122116565704, 0.001129638752900064, -0.020476065576076508, -0.01965755969285965, -0.01386092696338892, -0.022153330966830254, -0.005293451715260744, -0.026661822572350502, -0.0016881683841347694, 0.012250751256942749, 0.024407576769590378, 0.00408582016825676, 0.028526941314339638, 0.005377314984798431, 0.026044588536024094, 0.009553708136081696, 0.015565029345452785, 0.02801705338060856, -0.011284646578133106, -0.0074470615945756435, 0.03104954957962036, 0.006192466709762812, -0.007661751471459866, -0.002505835611373186, -0.017550911754369736, -4.402823469717987e-05, -0.003622894873842597, 0.026165351271629333, -0.02014061063528061, -0.03247187286615372, 0.024447830393910408, -0.018060801550745964, -0.01561870239675045, 0.024434411898255348, 0.0070981900207698345, 0.005685932002961636, 0.012257460504770279, 0.00675938231870532, 0.005773149896413088, -0.0006335872458294034, 0.018262073397636414, 0.004448109772056341, -0.049566566944122314, -0.0036832764744758606, 0.009365853853523731, -0.006712418980896473, -0.005444405600428581, 0.006148857530206442, -0.004401146434247494, 0.000914110045414418, -0.005541687365621328, -0.002056328346952796, -0.011371864005923271, -0.02349514327943325, 0.05055950954556465, 0.01984541304409504, -0.03942246362566948, 0.026406878605484962, 0.0004650220216717571, 0.010030051693320274, -0.004773499444127083, -0.0242331400513649, 0.008855964988470078, 0.007118317298591137, -0.010238032788038254, 0.03467244654893875, -0.00970801617950201, 0.010607031174004078, -0.008755329065024853, 0.011365154758095741, -0.030673842877149582, -0.017604585736989975, -0.005384024232625961, 0.028983158990740776, 0.02698385715484619, 0.001299042603932321, 0.02319994568824768, -0.012170243076980114, 0.03558487817645073, -0.011539590544998646, 0.00783618725836277, -0.04033489525318146, -0.02758767269551754, 0.012257460504770279, 0.0010206163860857487, -0.015216157771646976, 0.017765602096915245, 0.02388427034020424, 0.003632958512753248, 0.016866588965058327, -0.001806415617465973, -0.007930113933980465, -0.021214062348008156, 0.03907359018921852, -0.006303166039288044, 0.025870151817798615, -0.01184820756316185, -0.010365504771471024, 0.022099658846855164, 0.002400167752057314, 0.009090782143175602, 0.021053044125437737, 0.011693899519741535, 0.01359256450086832, 0.014142707921564579, -0.017295967787504196, 0.006266266107559204, 0.020985953509807587, 0.025682298466563225, 0.01347180176526308, 0.016383536159992218, -0.03408204764127731, 0.00795694999396801, -0.010030051693320274, 0.0016353344544768333, 0.0014290307881310582, 0.00346523174084723, 0.00945307221263647, 0.0019070515409111977, 0.03086169622838497, -0.010747921653091908, -0.01618226431310177, 0.008003913797438145, -0.001871829037554562, -0.004193165339529514, -0.003185128327459097, 0.0393151193857193, -0.007681878749281168, 0.0023582361172884703, 0.012861276976764202, 0.006786218844354153, 0.0045286184176802635, 0.00972143467515707, 0.01981857605278492, 0.01579313725233078, -0.013283947482705116, -0.017161786556243896, -0.6230305433273315, 0.012545950710773468, -0.006232720799744129, -0.0030861697159707546, -0.0009074009722098708, 0.010251450352370739, -0.015377175994217396, 0.01981857605278492, -0.04197190701961517, 0.025829898193478584, 0.008708365261554718, 0.007728842087090015, -0.008144804276525974, -0.01200922578573227, 0.0019489831756800413, -0.01352547388523817, 0.02295841835439205, -0.013706618919968605, -0.02758767269551754, 0.026688657701015472, -0.006574883125722408, 0.033411141484975815, -0.02310601808130741, 0.009741561487317085, -0.0031717102974653244, 0.002908379537984729, -0.014411070384085178, -0.0037872667890042067, 0.03845635801553726, 0.009466489776968956, -0.028392760083079338, -0.0009501712629571557, 0.0038174577057361603, 0.005061989184468985, 0.029600393027067184, -0.0120494794100523, 0.004575581755489111, 0.017336223274469376, 0.004860717337578535, 0.03477979078888893, -0.005548396147787571, -0.011345027945935726, 0.011620099656283855, -0.005397442262619734, 0.01394143607467413, -0.025279754772782326, -0.0075074429623782635, 0.013834090903401375, 0.01564553752541542, -0.030566496774554253, -0.006641973741352558, 0.00970801617950201, 0.014612342230975628, -0.028983158990740776, 0.04452135041356087, 0.004394437186419964, 0.0024236494209617376, -0.007312880363315344, 0.015390593558549881, -0.02313285507261753, 0.0012336291838437319, -0.0002845062699634582, 0.008755329065024853, 0.0025863442569971085, -0.017041023820638657, 0.016638480126857758, -0.017524076625704765, 0.011009574867784977, 0.025481026619672775, -0.006598365027457476, -0.007057935930788517, 0.007212244439870119, 0.0016948773991316557, -0.03445775434374809, 0.020596828311681747, 0.009493325836956501, 0.023830596357584, -0.01586022786796093, 0.012961912900209427, 0.037678107619285583, 0.0023934587370604277, -0.014142707921564579, -0.0311032235622406, -0.004136138129979372, 0.007722133304923773, -0.008949891664087772, -0.0061018941923975945, 0.01634328067302704, 0.017134951427578926, 0.021079881116747856, 0.012787477113306522, 0.017779020592570305, -0.011083374731242657, -0.003911384381353855, 0.009124327450990677, 0.0068835001438856125, 0.0020143967121839523, -0.018570691347122192, -0.022690055891871452, -0.029841918498277664, -0.01918792352080345, -0.010721084661781788, 0.00963421631604433, 0.02404528670012951, 0.007339716423302889, 0.022086240351200104, 0.010144105181097984, 0.03676567226648331, 0.022488784044981003, -0.0239647775888443, -0.015149067156016827, -0.017752185463905334, -0.021764205768704414, 0.018852470442652702, 0.014491579495370388, -0.02350856177508831, 0.03142525628209114, 0.009546998888254166, 0.021697115153074265, 0.021683696657419205, 0.007816060446202755, 0.030620170757174492, -0.014679432846605778, -0.022368021309375763, -0.004277028609067202, 0.0034048501402139664, 0.025776226073503494, 0.009023691527545452, -0.030217627063393593, -0.014115871861577034, 0.026272695511579514, 0.013257111422717571, 0.014343979768455029, -0.016678733751177788, 0.0025712489150464535, 0.007816060446202755, 0.021415334194898605, -0.004357537254691124, 0.012411769479513168, -0.004417919088155031, -0.012666713446378708, 0.0035189043264836073, 0.006601719651371241, -0.04744650423526764, -0.0072592077776789665, -0.015041722916066647, -0.01623593643307686, 0.008507093414664268, -0.00404892023652792, -0.01576630212366581, 0.021093297749757767, -0.004069047514349222, -0.022743728011846542, 0.022609546780586243, -0.020502900704741478, -0.0023867497220635414, -0.01394143607467413, -0.007494024932384491, 0.005176043137907982, -0.010633867233991623, -0.011680481024086475, 0.02348172478377819, -0.017242295667529106, -0.010667412541806698, -0.03220351040363312, -0.02018086612224579, -0.015565029345452785, 0.004280383232980967, -0.01159326359629631, -0.04342106357216835, -0.01619568094611168, -0.004927807953208685, 0.010425886139273643, 0.008802292868494987, -0.010331959463655949, 0.04425298795104027, -0.01960388571023941, -0.007863023318350315, -0.014357398264110088, -0.029922427609562874, -0.003928157035261393, 0.0051223705522716045, -0.0191208329051733, -0.009419526904821396, 0.01967097632586956, 0.018718289211392403, 0.01641037128865719, -0.0045051369816064835, -0.026299532502889633, -0.00293018389493227, 0.04218659549951553, -0.013780418783426285, -0.0035591586492955685, 0.025628626346588135, -0.0011916975490748882, 0.037892796099185944, 0.004307219292968512, -0.013914600014686584, 0.013250402174890041, 0.03426990285515785, 0.030298134312033653, 0.017134951427578926, 0.024743029847741127, -0.03408204764127731, -0.01166706345975399, 0.0009367531165480614, 0.022542456164956093, -0.021978894248604774, 0.028285415843129158, -0.010016633197665215, 0.0002272695564897731, -0.041676707565784454, -0.025132155045866966, -0.01406219881027937, 0.017832692712545395, 0.01399510819464922, 0.0064440565183758736, 0.003767139744013548, 0.003978474996984005, 0.021965477615594864, -0.0007761549204587936, 0.014773359522223473, 0.028607450425624847, 0.011754280887544155, 0.00782947801053524, -0.002351527102291584, -0.006212593521922827, -0.02350856177508831, -0.02036871947348118, -0.016571389511227608, 0.006423929240554571, -0.0066688102670013905, 0.008748619817197323, -0.003445104695856571, 0.037275563925504684, 0.012210497632622719, 0.016544552519917488, -0.006229366175830364, 0.053162626922130585, -0.0034820043947547674, -0.011955552734434605, 0.010560067370533943, 0.025226082652807236, -0.021214062348008156, 0.002000978449359536, 0.001117059262469411, 0.01965755969285965, 0.03255238011479378, 0.004870780743658543, 0.024622267112135887, -0.005115661770105362, 0.012559368275105953, -0.018731707707047462, 0.025749389082193375, -0.005981130991131067, 0.0009543644264340401, 0.025199245661497116, 0.010721084661781788, 0.011150465346872807, 0.008533930405974388, 0.005954294931143522, 0.002650080481544137, 0.037785451859235764, 0.010419176891446114, 0.025923825800418854, 0.0020445873960852623, -0.00606163963675499, -0.04057642072439194, -0.0053135789930820465, -0.018852470442652702, -0.030110280960798264, -0.041274163872003555, -0.040898457169532776, 0.005025089252740145, 0.002215668559074402, -0.003287441562861204, 0.000135439244331792, -0.00817164033651352, 0.02772185392677784, 0.013169893994927406, -0.010392340831458569, -0.022421693429350853, 0.02298525534570217, 0.011968971230089664, -0.0016873297281563282, -0.005608777981251478, -0.018476763740181923, 0.005112307146191597, -0.002613180549815297, 0.009318890981376171, -0.02785603515803814, 0.01193542592227459, 0.012713677249848843, -0.0021703823003917933, -0.0008415682823397219, 0.008782165125012398, 0.013344328850507736, -0.00805087760090828, 0.012948494404554367, 0.00706464471295476, -0.00011730379628716037, -0.01577971875667572, -0.011116920039057732, -0.017228877171874046, 0.045514293015003204, 0.014840450137853622, 0.022180167958140373, 0.012995458208024502, 0.007118317298591137, 0.004736599512398243, 0.01917450688779354, -0.022260675206780434, -0.040630094707012177, -0.009278636425733566, 0.033625829964876175, 0.007936823181807995, 0.018798798322677612, 0.005149207077920437, 0.03856370225548744, 0.006306520663201809, 0.0041260747238993645, -0.009258508682250977, -0.0031868056394159794, 0.0047466629184782505, 0.0316399484872818, 0.04393095523118973, -0.0015833391807973385, -0.01352547388523817, -0.010734503157436848, 0.020543156191706657, -0.022676637396216393, -0.033706340938806534, 0.007561115548014641, 0.010466140694916248, -0.00676609156653285, 0.0042837378568947315, 0.006745964288711548, 0.007165280636399984, 0.010835139080882072, 0.011029701679944992, -0.012217205949127674, -0.014089035801589489, 0.025212664157152176, -0.017805857583880424, -0.0034031730610877275, 0.0006193305016495287, -0.010694248601794243, 0.012935075908899307, 0.0009057237184606493, -0.015041722916066647, 0.012418478727340698, 0.015014885924756527, 0.008305821567773819, -0.03418939188122749, -0.014089035801589489, 0.022488784044981003, 0.03451142832636833, 0.01971123181283474, -0.008245440199971199, 0.0074537708424031734, 0.024957720190286636, 0.012452024035155773, 0.03520917147397995, 0.0021653505973517895, 0.012237333692610264, 0.007024390622973442, -0.004139492753893137, -0.009419526904821396, 0.002557830885052681, 0.003424977418035269, -0.012532532215118408, 0.01552477478981018, 0.003612831234931946, -0.009238381870090961, 0.012465441599488258, -0.02793654426932335, -0.018127892166376114, -0.028634287416934967, 0.002197218593209982, 0.005602068733423948, -0.009144455194473267, -0.041193656623363495, -0.025628626346588135, -0.012405060231685638, -0.015122231096029282, -0.0015028304187580943, 0.03537018597126007, 0.005863722413778305, 0.006380320526659489, 0.004796980880200863, -0.018919561058282852, 0.029493046924471855, -0.025158992037177086, 0.0008906283183023334, 0.022730309516191483, -0.030432315543293953, -0.033947866410017014, -0.02735956571996212, 0.0045051369816064835, -0.0018785380525514483, -0.001326717552728951, -0.02401845157146454, 0.012733804062008858, -0.017309386283159256, -0.012760641053318977, -0.017202042043209076, -0.015323502942919731, -0.034162554889917374, -0.011908589862287045, 0.04358208179473877, 0.020744428038597107, 0.007594660855829716, -0.02780236303806305, 0.022354602813720703, -8.973373769549653e-05, 0.00971472542732954, -0.016786079853773117, -0.006537983193993568, -0.015430848114192486, 0.018704872578382492, -0.013887763023376465, -0.018262073397636414, 0.029707737267017365, -0.008554057218134403, 0.010935775004327297, -0.021884968504309654, -0.009600671008229256, -0.009828779846429825, 0.02405870519578457, -0.025588372722268105, -0.0019741421565413475, -0.01933552324771881, 0.016544552519917488, -0.01535033993422985, 0.017282549291849136, -0.024649102240800858, 0.01157313585281372, 0.0316399484872818, 0.029144175350666046, -0.014652596786618233, -0.003505486296489835, 0.010479558259248734, 0.0035289679653942585, -0.024689357727766037, 0.00776238739490509, -0.0324450358748436, 0.015377175994217396, 0.03636312857270241, 0.017148368060588837, 0.03663149103522301, 0.026017751544713974, -0.029385702684521675, -0.03282074257731438, 0.015242994762957096, 0.0313715860247612, 0.005276679061353207, 0.0041227200999855995, -0.015323502942919731, -0.011271228082478046, -0.00950674433261156, -0.03102271445095539, -0.00979523453861475, -0.033679503947496414, 0.001538891694508493, -0.008440002799034119, 7.070724677760154e-05, 0.0010424208594486117, -0.0121836606413126, -0.0032488645520061255, -0.024877211079001427, -0.0066922917030751705, 0.0018701517255976796, 0.021388497203588486, 0.021683696657419205, -0.004146202001720667, 0.014102453365921974, -0.021750787273049355, -0.015122231096029282, 0.008493675850331783, 0.003877839306369424, 0.007487316150218248, 0.007594660855829716, 0.01017765048891306, 0.002197218593209982, 0.036712002009153366, -0.004488364327698946, 0.0313715860247612, 0.004069047514349222, -0.021026207134127617, 0.026554476469755173, -0.0022425048518925905, 0.007420225068926811, -0.03180096670985222, -0.009057236835360527, -0.006571528501808643, -0.012948494404554367, 0.02027479186654091, -0.0022290865890681744, 0.015041722916066647, 0.02731931023299694, 0.02319994568824768, 0.04602418094873428, -0.0035289679653942585, -0.02358907088637352, -0.005199525039643049, 0.017456986010074615, -0.010721084661781788, 0.02750716358423233, -0.022032568231225014, -0.03663149103522301, 0.04006653279066086, 0.005202879663556814, -0.00985561590641737, 0.01583339273929596, 0.001501991762779653, -0.0023649451322853565, 0.007722133304923773, 0.030485989525914192, 0.005753022618591785, -0.017711929976940155, -0.01548452116549015, -0.03934195265173912, 0.0022240548860281706, 0.005152561701834202, 0.013424837961792946, 0.022072821855545044, -0.0028580615762621164, 0.012646586634218693, -0.01634328067302704, 0.009466489776968956, -0.014250053092837334, -0.029680900275707245, 0.01145237311720848, -0.012961912900209427, -0.022126493975520134, -0.013317492790520191, -0.012686841189861298, -0.018490182235836983, 0.005548396147787571, 0.008936474099755287, -0.007547697518020868, 0.030405480414628983, -0.009084072895348072, -0.0198588315397501, -0.0012252428568899632, -0.015135649591684341, 0.04250863194465637, -0.0068835001438856125, 0.017054442316293716, 0.017483821138739586, -0.001190858893096447, -0.02825857885181904, -0.006943881511688232, 0.014491579495370388, -0.011807953007519245, 0.02338779903948307, 0.008715074509382248, -0.008795583620667458, -0.01392801757901907, -0.008352785371243954, 0.0022324412129819393, -0.02003326639533043, -0.037624433636665344, 0.024850374087691307, 0.0007421902846544981, 0.0019993011374026537, -0.026406878605484962, 0.014451324939727783, -0.021817877888679504, 0.02010035701096058, -0.0011506045702844858, -0.01367307361215353, -0.013337620534002781, -0.005347124300897121, -0.0056892866268754005, 0.020395556464791298, -0.004951289389282465, 0.03633629158139229, 0.002915088552981615, -0.010030051693320274, -0.020502900704741478, -0.014464743435382843, -0.056731849908828735, -0.001299042603932321, -0.014102453365921974, 0.0075074429623782635, -0.009271927177906036, 0.018141310662031174, 0.0052867429330945015, 0.013082675635814667, -0.00803745910525322, -0.011069956235587597, -0.011620099656283855, 0.02419288642704487, -0.02036871947348118, 0.01011726912111044, 0.012539241462945938, 0.010861975140869617, -0.026393460109829903, 0.010023342445492744, -0.01932210475206375, -0.021777622401714325, -0.0135321831330657, -0.0029167658649384975, 0.021495843306183815, 0.001979174092411995, 0.0029285065829753876, -0.0014776714378967881, -0.013646237552165985, 0.009379272349178791, 8.197638089768589e-05, -0.005565168801695108, 0.041569363325834274, -0.021589769050478935, -0.033652666956186295, -0.022797400131821632, 0.016692152246832848, 0.022676637396216393, -0.013887763023376465, 0.009077364578843117, 0.02020770125091076, 0.03180096670985222, -0.02701069414615631, 0.006064994260668755, -0.016383536159992218, -0.004012020770460367, -0.015162485651671886, -0.005162625107914209, -0.013270529918372631, -0.016625061631202698, 0.014800196513533592, 0.0049110352993011475, -0.020328465849161148, -0.01967097632586956, 0.009379272349178791, -0.004434691742062569, 0.0016445594374090433, -0.0016361731104552746, 0.0016143686370924115, 0.007467188872396946, 0.017899783328175545, 0.01580655574798584, -0.0240989588201046, 0.029466211795806885, -0.000141204844112508, 0.003203578293323517, 0.0027960026636719704, -0.01610175520181656, -0.018771963194012642, -0.009010273963212967, -0.008319240063428879, -0.004216647241264582, -0.008513802662491798, -0.003807394066825509, -0.020516319200396538, 0.012519114650785923, -0.006833182182163, -0.008795583620667458, -0.03496764227747917, -0.008366202935576439, -0.0033780138473957777, 0.04293801262974739, -0.0028916068840771914, 0.000533789920154959, 0.01626277156174183, 0.010888811200857162, 0.01565895602107048, 0.009439653716981411, 0.004800335504114628, -0.02354881539940834, 0.008010623045265675, -0.00496135326102376, -0.004105947446078062, -0.026715494692325592, -0.030512824654579163, 0.013069257140159607, 0.001178279402665794, -0.024152632802724838, -0.026219023391604424, -0.020972535014152527, -0.017886366695165634, -0.008245440199971199, -0.00803745910525322, 0.003074428765103221, 0.04964707791805267, 0.03633629158139229, -0.012706968002021313, 0.025279754772782326, 0.005608777981251478, 0.026259278878569603, -0.017188623547554016, 0.004971416667103767, 0.018194982782006264, 0.02389768697321415, -0.018758544698357582, 0.015202740207314491, -0.004461527802050114, -0.022676637396216393, 0.005199525039643049, -0.0005711091216653585, 0.0064742472022771835, 0.013257111422717571, 0.009399399161338806, -0.04430666193366051, -0.026661822572350502, -0.005300160963088274, -0.017966873943805695, 0.01604808308184147, 0.008943183347582817, -0.006605073809623718, -0.02352198027074337, -0.021066462621092796, 0.021509259939193726, -0.028795303776860237, -0.020261375233530998, 0.006990845315158367, -0.017175205051898956, 0.004327346570789814, -0.006672164425253868, -0.008916346356272697, 0.017322804778814316, -0.021683696657419205, 0.02008693851530552, -0.007715424057096243, -0.02358907088637352, 0.02674233168363571, 0.02336096204817295, 0.011915298178792, -0.018302327021956444, 0.03816115856170654, -0.049969110637903214, 0.005511496681720018, 0.011271228082478046, 0.007789223920553923, -0.0031901602633297443, -0.029385702684521675, 0.029976099729537964, -0.03477979078888893, 0.025346845388412476, -0.01926843263208866, -0.014196380041539669, -0.01948312297463417, 0.030539661645889282, 0.0009224963723681867, -0.01623593643307686, 0.02370983362197876, -0.024582011625170708, -0.0025494445580989122, -0.010774757713079453, -0.03113005869090557, 0.005833531729876995, -0.013498637825250626, -0.01953679509460926, 0.0029503111727535725, -0.003284086938947439, -0.006269620731472969, 0.006977426819503307, 0.029197849333286285, -0.01949654147028923, -0.007279335055500269, 0.16391585767269135, -0.01591389998793602, 0.01584680937230587, 0.03400154039263725, -0.0007233209908008575, 0.02010035701096058, 0.0072860438376665115, -0.021267734467983246, -0.0160883367061615, 0.010083723813295364, -0.030163953080773354, 0.033840522170066833, -0.02397819608449936, 0.005602068733423948, 0.028902649879455566, -5.985088137094863e-06, 0.005323642864823341, -0.0477953739464283, -0.025306591764092445, 0.005494723562151194, -0.011620099656283855, 0.007567824795842171, -0.013498637825250626, -0.009439653716981411, 0.022609546780586243, -0.00970130693167448, -0.0005442728288471699, 0.004464882425963879, 0.018584107980132103, 0.02318652719259262, -0.017255714163184166, -0.01627619005739689, -0.0012193724978715181, -0.022327765822410583, -0.010251450352370739, -0.01603466458618641, 0.004129429347813129, 0.010841848328709602, 0.009104200638830662, 0.024608848616480827, 0.028768468648195267, -0.0116469357162714, -0.029976099729537964, -0.033760011196136475, 0.025642044842243195, 0.028956321999430656, -0.010291704908013344, -0.01592731848359108, -0.021066462621092796, 0.0231596902012825, -0.014759941957890987, 0.0024488086346536875, 0.018423091620206833, 0.009882451966404915, -0.012371514923870564, -0.02727905660867691, 0.024635685607790947, -0.020677337422966957, 0.0018701517255976796, 0.016947096213698387, 0.005843595135957003, 0.01942945085465908, 0.013075966387987137, 0.026769166812300682, -0.010700957849621773, 0.024394158273935318, -0.026648404076695442, 0.01897323504090309, -0.007795932702720165, -0.02307918108999729, -0.004384373780339956, 0.0024169404059648514, -0.0231596902012825, 0.009211545810103416, -0.03569222241640091, -0.010761339217424393, 0.006605073809623718, 0.009218254126608372, 0.012096443213522434, 0.04747334122657776, -0.03888573870062828, -0.049244534224271774, 0.02387085184454918, 0.002096582669764757, -0.01979174092411995, -0.024461248889565468, 0.016973933205008507, 0.002524285577237606, -0.002034523757174611, -0.01984541304409504, 0.008540638722479343, -0.010244741104543209, -0.01586022786796093, 0.0065346285700798035, -0.0009895870462059975, -0.00798378698527813, -0.0030140471644699574, 0.033276960253715515, -0.0019104060484096408, -0.01602124609053135, -0.02389768697321415, 0.041327837854623795, 0.01193542592227459, -0.012311133556067944, 0.010425886139273643, -0.011063246987760067, -0.00013732616207562387, 0.014947795309126377, 0.01374016422778368, -0.025843316689133644, -0.014102453365921974, -0.01407561730593443, 0.014478160999715328, 0.0051223705522716045, -0.00168984557967633, -0.009439653716981411, 0.0030828150920569897, -0.030137117952108383, 0.01193542592227459, 0.0029419248457998037, -0.005373960826545954, -0.02305234596133232, -0.006611783057451248, -0.005300160963088274, -0.004022084176540375, 8.428261935478076e-05, -0.05018380284309387, -0.00021259348432067782, -0.005950940307229757, -0.013351038098335266, 0.009889161214232445, -0.03859053924679756, 0.025293173268437386, -0.015068558976054192, -0.018181564286351204, 0.0019087288528680801, -0.00346523174084723, -0.021978894248604774, -0.02305234596133232, 0.017591167241334915, -0.0022726955357939005, -0.007614788133651018, 0.009097491391003132, -0.022381439805030823, 0.011472499929368496, -0.045755818486213684, 0.0014734782744199038, -0.021254315972328186, 0.020328465849161148, -0.022113077342510223, -0.0055047874338924885, -0.0033310505095869303, -0.004672863520681858, -0.04331371933221817, 0.0009350758627988398, -0.028392760083079338, -0.005451114848256111, -0.020999372005462646, 0.013049130327999592, -0.0063199386931955814, -0.02785603515803814, -0.011492627672851086, 0.015269830822944641, -0.0027507164049893618, -0.02424655854701996, 0.0005350479041226208, -0.16767293214797974, 0.024474667385220528, -0.020637081936001778, -0.005937522277235985, 0.00241358601488173, -0.003277377923950553, 0.02825857885181904, 0.006356838624924421, 0.0051257251761853695, 0.017242295667529106, -0.012109861709177494, -0.010311831720173359, -0.021831296384334564, -0.018503598868846893, -0.018329164013266563, 0.003542385995388031, -0.03660465404391289, -0.0008084422443062067, 0.022139912471175194, 0.030029771849513054, 0.037114545702934265, -0.0014399329666048288, 0.023830596357584, 0.01372674573212862, -0.005900622345507145, -0.012740513309836388, -0.005145852454006672, -0.0014474806375801563, -0.017631420865654945, -0.022220421582460403, 0.01624935492873192, 0.01619568094611168, 0.021992312744259834, -0.012908239848911762, 0.008433294482529163, 0.004974771291017532, -0.00024152631522156298, -0.033035434782505035, -0.013351038098335266, -0.0020781327039003372, -0.00956041645258665, 0.014236634597182274, -0.00964092556387186, -0.03464560955762863, -0.00998308788985014, 0.033303797245025635, -0.004230065271258354, -0.028607450425624847, 0.025990916416049004, -2.6600391720421612e-06, 0.04071060195565224, -0.03249870985746384, 0.017524076625704765, 0.0010659026447683573, 0.015055140480399132, 0.00951345358043909, -0.025910407304763794, 0.02753400057554245, -0.03198881819844246, -0.0053135789930820465, -0.007856314070522785, -0.021670278161764145, 0.01916108839213848, 0.002889929572120309, -0.0055047874338924885, -0.013049130327999592, -0.029278356581926346, -0.003424977418035269, -0.021871550008654594, 0.009157872758805752, 0.016973933205008507, -0.02729247510433197, 0.024944301694631577, 0.012639877386391163, -0.0003197288606315851, 0.007245789747685194, -0.012800894677639008, 0.009486617520451546, -0.028365924954414368, -0.013317492790520191, -0.016571389511227608, 0.04720497876405716, -0.0011556363897398114, -0.017269132658839226, -0.002096582669764757, 0.00019047452951781452, 0.0191208329051733, 0.004843944683670998, -0.007433643564581871, -0.03582640364766121, 0.017966873943805695, -0.009164582006633282, 0.017389895394444466, 0.0009962960612028837, 0.020757844671607018, 0.028983158990740776, 0.01603466458618641, 0.021804459393024445, -0.0005526591558009386, -0.02401845157146454, 0.009882451966404915, -0.011110210791230202, -0.012015934102237225, 0.014504997059702873, 0.012961912900209427, 0.03075435198843479, -0.026581313461065292, -0.009265217930078506, 0.033518485724925995, 0.025239501148462296, -0.014920959249138832, -0.009057236835360527, 0.014035362750291824, 0.009882451966404915, 0.011002865619957447, 0.011559718288481236, -0.009218254126608372, -0.01967097632586956, -0.0003167936229147017, 0.012371514923870564, 0.018087638542056084, -0.01996617577970028, -0.013619400560855865, 0.008191768079996109, 0.008809001184999943, -0.03198881819844246, -0.1328931450843811, -0.003185128327459097, 0.0065077925100922585, 0.02812439762055874, 0.01575288362801075, 0.021576350554823875, -0.010030051693320274, 0.00398182962089777, -0.0032119646202772856, 0.007151862606406212, 0.011137046851217747, -0.01157984510064125, -0.010794884525239468, 0.01909399777650833, -0.01611517369747162, -0.0073195891454815865, 0.00033042143331840634, 0.0010709344642236829, 0.0009166259551420808, 0.0399860255420208, 0.0059140403755009174, 0.00579327717423439, 0.0035490950103849173, 0.012606332078576088, -0.004230065271258354, 0.004830526188015938, -0.017993710935115814, 0.000388496759114787, -0.0030207561794668436, 0.014666015282273293, 0.008352785371243954, -0.012317842803895473, -0.016786079853773117, -0.013767000287771225, -0.008225313387811184, 0.014357398264110088, 0.0041831014677882195, 0.0017980292905122042, 0.04229394346475601, -0.014236634597182274, -0.0066956463269889355, 0.0026433714665472507, -0.00496135326102376, -0.01897323504090309, -0.0013778741704300046, -0.005132434424012899, -0.037275563925504684, 0.03596058487892151, -0.026312950998544693, -0.018396254628896713, -0.06553414463996887, 0.014961213804781437, -0.021146971732378006, 0.017752185463905334, 0.008654693141579628, -0.03228401765227318, 0.0072860438376665115, -0.014920959249138832, -0.003310923231765628, 0.006487665232270956, -0.026460550725460052, 0.004770144820213318, -0.02332070842385292, 0.009037110023200512, -0.006615137681365013, -0.013981690630316734, -0.01965755969285965, -0.0016856524161994457, 0.018114473670721054, -0.0015825005248188972, 0.00032601860584691167, 0.018758544698357582, -0.01897323504090309, 0.02375008910894394, -0.018785379827022552, 0.015497938729822636, -0.005263261031359434, 0.011881752870976925, 0.0020982599817216396, 0.012606332078576088, -0.013565728440880775, -0.0019439514726400375, -0.015390593558549881, -0.017846111208200455, 0.004186456091701984, 0.029385702684521675, 0.008607729338109493, -0.007675169967114925, 0.025749389082193375, -0.026634985581040382, -0.0015690824948251247, 0.017309386283159256, 0.015028304420411587, -0.004776854068040848, -0.014343979768455029, 0.017926620319485664, 0.014692851342260838, -0.026782585307955742, 0.0005685932119376957, -0.01987224817276001, -0.053269971162080765, -0.018892725929617882, -0.04226710647344589, 0.0014147739857435226, -0.010721084661781788, -0.01949654147028923, -0.013753581792116165, -0.007789223920553923, 0.017738766968250275, 0.00031616466003470123, 0.005454469472169876, 0.0008948214817792177, -0.025293173268437386, -0.002457194961607456, -0.010378922335803509, -0.0098623251542449, -0.033545322716236115, -0.018101055175065994, 0.02377692423760891, -0.0012445314787328243, 0.006537983193993568, 0.026272695511579514, -0.0239647775888443, -0.0236964151263237, 0.008379621431231499, 0.008728493005037308, -0.012733804062008858, 0.016611643135547638, -0.0008403102983720601, 0.01920134201645851, -0.005045216530561447, -0.02306576445698738, 0.010399050079286098, 8.454469207208604e-05, -0.001148088602349162, -3.409567580092698e-05, 0.007728842087090015, -0.007856314070522785, 0.001009714207611978, 0.010593612678349018, 0.006638619117438793, -0.0032304145861417055, -0.013250402174890041, -0.017443567514419556, -0.0005438535590656102, -0.018543854355812073, 0.024769866839051247, -0.01989908516407013, -0.009110909886658192, 0.009218254126608372, 0.0013929695123806596, 0.004146202001720667, 0.010586903430521488, -0.0005652387044392526, -0.018597526475787163, -0.006437347270548344, 0.00809784047305584, -0.02764134481549263, -0.002717171097174287, -0.009010273963212967, 0.00572618655860424, 0.0024270040448755026, 0.03952980786561966, -0.02408554218709469, -0.0027037530671805143, -0.006081766914576292, -0.00010509120329516008, -0.03502131626009941, -0.018919561058282852, 0.008728493005037308, -0.014706268906593323, 0.005115661770105362, 0.0014919282402843237, -0.009593961760401726, 0.02400503307580948, 0.008325949311256409, 0.03424306586384773, 0.018382836133241653, -0.008668111637234688, -0.01904032565653324, 0.011479209177196026, 0.02741323783993721, 0.029976099729537964, 0.010915648192167282, -0.0054745967499911785, 0.003700049128383398, 0.06392396986484528, 0.009815361350774765, -0.004988189321011305, -0.0325792171061039, 0.0133980019018054, 0.017228877171874046, -0.015310085378587246, 0.014223217032849789, -0.03577273339033127, -0.018758544698357582, -0.0005920749390497804, 0.020717591047286987, 0.0031901602633297443, 0.0031683556735515594, -0.021589769050478935, 0.02815123461186886, 0.01992592215538025, -0.006964008789509535, -0.018678035587072372, -0.005444405600428581, -0.020556572824716568, 0.020731009542942047, 0.0079770777374506, -0.03488713502883911, -0.010976029559969902, 0.048815153539180756, -0.016490880399942398, 0.01345838326960802, 0.029949264600872993, 0.014880704693496227, -0.02761450968682766, -0.00353232235647738, 0.0019271788187325, -0.010848557576537132, -0.02385743334889412, 0.010653994046151638, -0.014545251615345478, 0.012458732351660728, 0.05182081460952759, -0.013149766251444817, 0.028956321999430656, 0.012794186361134052, 0.022891327738761902, -0.0048774899914860725, -0.005018380004912615, 0.008359494619071484, -0.009828779846429825, -0.005370606202632189, -0.0016797820571810007, -0.01914766989648342, -0.01586022786796093, -0.018932979553937912, -0.0015103780897334218, 0.02003326639533043, 0.03397470340132713, 0.07498050481081009, 0.0006105248467065394, -0.006340065971016884, 0.009245091117918491, -0.021965477615594864, 0.012914949096739292, 0.028607450425624847, -0.00795694999396801, 0.008399748243391514, -0.021482424810528755, 0.016920261085033417, 0.017872948199510574, -0.01193542592227459, -0.02419288642704487, -0.008024041540920734, 0.007534279488027096, -0.0032790552359074354, 0.010727793909609318, -0.03520917147397995, 0.005997903645038605, 0.020529737696051598, 0.021536096930503845, -0.006383674684911966, 0.01950995996594429, -0.0017141660209745169, 0.004407855216413736, 0.022274093702435493, 0.011284646578133106, -0.03510182350873947, -0.036926690489053726, 0.004421273246407509, -0.037463415414094925, -0.026071423664689064, -0.006782864220440388, 0.01976490393280983, 0.01564553752541542, -0.024622267112135887, -0.012646586634218693, 0.014974632300436497, 0.007802641950547695, -0.008580893278121948, 0.032632891088724136, -0.01591389998793602, -0.021428752690553665, 0.009365853853523731, -0.001437417115084827, -0.00498483469709754, 0.004206583369523287, -0.041113145649433136], "932ade67-eecb-47cd-b5fe-567427a3003a": [-0.010511931963264942, -0.003316017799079418, -0.007283858489245176, -0.021051453426480293, -0.012829523533582687, 0.015657536685466766, -0.010442955419421196, -0.017671633511781693, -0.015119523741304874, -0.009904943406581879, 0.013208890333771706, 0.023672539740800858, -0.01692669279873371, 0.017547477036714554, -0.020127177238464355, 0.0010786111233755946, 0.017685428261756897, 0.007732201833277941, 0.00016877548478078097, -0.005190438590943813, 0.009387624450027943, 0.01724398322403431, -0.025534888729453087, -0.022030912339687347, -0.019602959975600243, 0.016140367835760117, 0.014981572516262531, 0.0035384651273489, 0.001751988660544157, -0.0046972609125077724, -0.006190589629113674, -0.028500854969024658, -0.015243680216372013, -0.023589767515659332, -0.01968573033809662, 0.023024166002869606, 0.008152955211699009, 0.004021296743303537, 0.03777122125029564, 0.003286703024059534, 0.026597118005156517, -0.009773889556527138, 0.023438021540641785, -0.004276507534086704, -0.009332443587481976, 0.026431577280163765, 0.026100492104887962, -0.04469640180468559, -0.0005703447386622429, 0.015285066328942776, 0.007504581473767757, 0.03799194097518921, -0.04295821115374565, -0.026293624192476273, -0.016305910423398018, 0.00603194534778595, 0.014457355253398418, 0.03928868845105171, -0.03578471392393112, -0.018830429762601852, 0.010098076425492764, -0.006849309895187616, -0.03059772215783596, -0.011443106457591057, -0.01388485450297594, -0.02663850411772728, 0.01589205488562584, 0.017299164086580276, -0.004086823668330908, 0.026886817067861557, 0.04400664195418358, 0.015823079273104668, 0.00012340224930085242, 0.03297049552202225, 0.008001208305358887, -0.0033436082303524017, -0.021341152489185333, 0.020251333713531494, -0.009870455600321293, -0.004590348340570927, 0.0050628334283828735, -0.013457204215228558, -0.004721402656286955, -3.3760483347577974e-05, 0.02888711914420128, 0.0004457569448277354, -0.0018451061332598329, 0.024307118728756905, -0.02390705794095993, -0.026569528505206108, -0.0033936158288270235, 0.016871511936187744, -0.004821417387574911, -0.0075804549269378185, 0.012022504583001137, 0.019809886813163757, 0.01147069688886404, 0.014512536115944386, -0.001798547338694334, -0.05291833356022835, -0.008408165536820889, 0.002828013151884079, -0.02214127406477928, -0.002900437917560339, -0.006069881841540337, 0.013270968571305275, 0.0038626519963145256, -0.014140065759420395, 0.021382538601756096, -0.0036246851086616516, -0.024265732616186142, 0.01637488603591919, 0.02705235965549946, -0.037274591624736786, 0.020113380625844002, -0.008146057836711407, 0.037495315074920654, -0.030349409207701683, 0.01808548904955387, -0.013615848496556282, 0.012470847927033901, -0.0018468305934220552, 0.025700431317090988, 0.01148449257016182, 0.03131507337093353, 0.009463497437536716, -0.016554223373532295, -0.04422736540436745, -0.03114953078329563, -0.02023753710091114, 0.018002718687057495, 0.0325014591217041, 0.011953528970479965, -0.011443106457591057, -0.012188047170639038, 0.0053732250817120075, -0.000787618919275701, 0.014857415109872818, -0.005404264200478792, 0.001390727236866951, 0.005255965981632471, 0.00899446103721857, -0.0113396430388093, 0.0014148687478154898, -0.009222081862390041, 0.008966870605945587, 0.016885308548808098, 0.005090423859655857, -0.003976462408900261, -0.012436360120773315, 0.02243097312748432, -0.008966870605945587, -0.0005871576140634716, -0.006235423963516951, -0.009166900999844074, 0.0018657989567145705, 0.016554223373532295, -0.0050111012533307076, 0.009911840781569481, 0.0028435327112674713, 0.007732201833277941, 0.049690261483192444, -0.0014321127673611045, 0.009939431212842464, -0.015491994097828865, 0.047151945531368256, 0.03815748542547226, 0.006676869932562113, -0.007408014964312315, 0.01047054585069418, 0.0014855690533295274, -0.0009320372482761741, -0.031453024595975876, 0.0009285884443670511, 0.017906151711940765, 0.0065147764980793, 0.006859656423330307, -0.00286767422221601, -0.014498740434646606, 0.024113984778523445, 0.0048421104438602924, 0.007001056801527739, -0.004417908377945423, 0.04974544048309326, 0.005290453787893057, -0.022044707089662552, 0.018513139337301254, 0.014140065759420395, 0.016940489411354065, 0.0018071694066748023, 0.012091480195522308, 0.04110965505242348, 0.01338133029639721, -0.005066282115876675, -0.615817129611969, 0.0030642556957900524, -0.016747355461120605, -0.031121939420700073, 0.004035091958940029, -0.01567133143544197, -0.007587352301925421, 0.00928416009992361, -0.0059733157977461815, 0.05360809341073036, -0.00454551400616765, -0.0030935704708099365, -0.005500830244272947, -0.011436209082603455, 0.0006656177574768662, -0.022224044427275658, -0.0021899857092648745, -0.025976335629820824, -0.015423018485307693, 0.02528657577931881, 0.008228828199207783, 0.038847245275974274, -0.00802879873663187, -0.00878063589334488, -0.005490484181791544, 0.009994612075388432, 0.01647145301103592, -0.02422434650361538, 0.050021346658468246, 0.005773285403847694, -0.024279527366161346, -0.028224950656294823, -0.0012570862891152501, 0.007897743955254555, 0.04105447232723236, 0.012491540983319283, -0.021548081189393997, 0.020678984001278877, 0.019092537462711334, 0.039399050176143646, 0.0018899404676631093, -0.024169165641069412, 0.004435152281075716, 0.013429613783955574, 0.00595952058210969, -0.01992024853825569, 0.014471150003373623, -0.0009648008272051811, 0.016678379848599434, -0.003641929244622588, -0.012305306270718575, 0.016802536323666573, 0.002612463431432843, -0.02516241930425167, 0.022706875577569008, -0.0005677581066265702, -0.006721704266965389, -0.024720974266529083, 0.009035847149789333, 0.0050111012533307076, -0.007552864495664835, 0.024210551753640175, 0.006535469554364681, 0.0038005737587809563, -0.019671935588121414, 0.037688449025154114, -0.008449551649391651, -0.012360487133264542, -0.00823572650551796, -0.031646158546209335, -0.006180243566632271, -0.007739099208265543, 0.0010234303772449493, 0.0037074561696499586, 0.010442955419421196, 0.023920852690935135, 0.014760849066078663, -0.006697562988847494, -0.004580001812428236, 0.017368139699101448, 0.01611277647316456, 0.009070334956049919, -0.022472357377409935, -0.004814520012587309, 0.0024676139000803232, -0.009518678300082684, -0.01608518697321415, -0.006432005669921637, 0.007283858489245176, 0.02632121555507183, -0.0013967625563964248, 0.02461061254143715, 0.0015623047947883606, -0.022210249677300453, 0.019009767100214958, 0.011663829907774925, -0.010339492000639439, -0.0258935634046793, 0.0037074561696499586, -0.02020994760096073, -0.03001832589507103, -0.020403079688549042, 0.00454551400616765, 0.013512385077774525, 0.008359882980585098, 0.010353286750614643, -0.025507299229502678, 0.008477142080664635, 0.008352985605597496, -0.00159679283387959, -0.027521396055817604, -0.034405194222927094, -0.008773738518357277, -0.011794883757829666, -0.004359278827905655, -0.03343953192234039, 0.0334671214222908, -0.0033142934553325176, 0.005487035494297743, 0.03484664112329483, 0.02255512960255146, 0.02007199637591839, 0.0165680181235075, -0.017092235386371613, 0.010684371925890446, -0.011884552426636219, 0.024445069953799248, -0.0016312807565554976, -0.029080253094434738, 0.001870972104370594, 0.01924428530037403, -7.280193676706403e-05, 0.010877504013478756, -0.008621991612017155, 0.01233979407697916, -0.0005841398960910738, 0.030183866620063782, -0.00863578636199236, 0.01277434267103672, -0.013043348677456379, -0.012263920158147812, 0.00510766776278615, 0.009222081862390041, -0.045055076479911804, -0.015974825248122215, -0.029880372807383537, -0.010311901569366455, -0.008628888987004757, -0.020637597888708115, 0.009449702687561512, 0.005904339719563723, -0.02535555139183998, -0.04033712297677994, 0.01618175394833088, 0.015850668773055077, -0.013360638171434402, -0.004597245715558529, 0.011036149226129055, 0.00301252375356853, 0.0007557175122201443, -0.013374432921409607, 0.002809044672176242, -0.010511931963264942, 0.004562757909297943, -0.007463195826858282, -0.013767595402896404, -0.011180998757481575, 0.02323109284043312, -0.014719463884830475, -0.045993149280548096, 0.010332594625651836, 0.02419675700366497, -0.004721402656286955, 0.017078440636396408, 0.006590649951249361, 0.028500854969024658, -0.0143194030970335, 0.011553468182682991, -0.018513139337301254, -0.023782901465892792, -0.007483888417482376, 0.02941133640706539, 0.0011941457632929087, -0.035757120698690414, 0.0013502038782462478, -0.0016416271682828665, 0.0164024755358696, -0.0004323928733356297, -0.0202651284635067, -0.007004505954682827, 0.01404349971562624, 0.003731597913429141, -0.019258080050349236, -0.007345936726778746, -0.008456449024379253, 0.03760567680001259, 0.006859656423330307, -0.006749294698238373, 0.023672539740800858, 0.015560969710350037, 0.02963205985724926, 0.014002113603055477, -0.00595952058210969, -0.009725606068968773, 0.004304097965359688, -0.012843318283557892, 0.028528444468975067, -0.02036169543862343, -0.0016890481347218156, -0.03004591539502144, 0.010705064050853252, -0.021961936727166176, 0.007028647232800722, -0.0019416724098846316, 0.003362576710060239, 0.01460910215973854, -0.003036665264517069, 0.02049964666366577, -0.0003813075600191951, 0.02535555139183998, 0.012974372133612633, 0.012574312277138233, 0.011043046601116657, 0.02065139450132847, 0.0037764322478324175, -0.01676115021109581, -0.0036315827164798975, 0.003174617188051343, -0.010629191063344479, -0.021092839539051056, 0.0010846465593203902, -0.02748000994324684, 0.007842563092708588, -0.014050397090613842, 0.02335524931550026, -0.0115051856264472, 0.01654042862355709, -0.02036169543862343, 0.0050835260190069675, 0.0031056413426995277, 0.0074562979862093925, 0.005038691684603691, 0.017837176099419594, -0.028611216694116592, 0.01558856014162302, -0.003924730233848095, 0.03023904748260975, 0.019644344225525856, -0.022955190390348434, 0.02724549174308777, -0.0014976399252191186, 0.017395729199051857, -0.004728300031274557, 0.016485247761011124, -0.0047007096000015736, -0.007063135504722595, 0.015091933310031891, 0.004338586237281561, 0.00809087697416544, 0.0283077210187912, 0.02699717879295349, -0.012450155802071095, 0.02238958701491356, 0.008408165536820889, 0.016774946823716164, -0.02049964666366577, -0.033218808472156525, -0.011270667426288128, -0.0204306710511446, -0.021548081189393997, -0.01804410293698311, -0.019409826025366783, -0.02214127406477928, 0.011870757676661015, 0.023244889453053474, 0.01433319877833128, 0.002691785804927349, -0.007987412624061108, 0.020968683063983917, 0.019120128825306892, 0.00084150634938851, -0.008311599493026733, 0.023686334490776062, 0.021244587376713753, 0.004186838865280151, -0.011498287320137024, -0.01760265789926052, -0.01579548791050911, -0.008435755968093872, 0.004155799746513367, -0.028018023818731308, 0.0005630160449072719, 0.0025262434501200914, -0.014181450940668583, 0.007359731942415237, 0.005186989903450012, 0.0165680181235075, -0.007539069280028343, 0.012174251489341259, 0.013615848496556282, 0.010325697250664234, -0.011084431782364845, -0.0054663424380123615, -0.01423663180321455, 0.0862475037574768, 0.028018023818731308, 0.007118315901607275, -0.0017269848613068461, -0.014009011909365654, -0.011153408326208591, -0.0001631711784284562, 0.013008860871195793, -0.02383808232843876, -0.007683918811380863, -0.0013674477813765407, -0.002853879239410162, -0.0019175308989360929, -0.001369172241538763, 0.03912314772605896, 0.01625072956085205, -0.013457204215228558, -0.03194965049624443, -0.009967021644115448, 0.007442502770572901, 0.0382954366505146, 0.028142180293798447, -0.006507879123091698, -0.0062112826853990555, -0.022279225289821625, -0.012808830477297306, -0.021699827164411545, -0.0035229455679655075, 0.004924881272017956, -0.008973768912255764, 0.021148020401597023, -0.01876145228743553, 0.04160628095269203, 0.01862350106239319, 0.0005979351117275655, -0.008684069849550724, -0.040364716202020645, -0.021175609901547432, 0.00566292367875576, -0.018775248900055885, -0.011091330088675022, -0.016333499923348427, -0.0002571508812252432, 0.008828919380903244, -0.003586748382076621, 0.01389865018427372, 0.027838686481118202, -0.002828013151884079, -0.003962667193263769, -0.02692820318043232, -0.01760265789926052, 0.0275076013058424, 0.03252904862165451, 0.03641929104924202, 0.0041489023715257645, 0.02760416828095913, 0.02721790224313736, -0.002333110896870494, 0.023796696215867996, 0.008621991612017155, 0.010939582251012325, 0.017864765599370003, 0.0021503246389329433, -0.01734054833650589, -0.005773285403847694, 0.022831033915281296, 0.006135409232228994, 0.03879206255078316, -0.0063044000416994095, -0.01663699373602867, -0.010242925956845284, -0.0011372406734153628, -0.02342422679066658, -0.026983384042978287, -0.013070939108729362, 0.015947235748171806, -0.010511931963264942, 0.003384993877261877, -0.004073028918355703, -0.006073330529034138, -0.012422565370798111, 0.010415365919470787, 0.003319466719403863, -0.012160456739366055, 0.007387322373688221, 0.0006979501922614872, -0.005966417957097292, 0.04875218868255615, -0.015754101797938347, 0.012767444364726543, 0.016554223373532295, -0.042516764253377914, -0.0034625916741788387, -0.019906453788280487, 0.026983384042978287, 0.013243379071354866, 0.0031522000208497047, -0.0130295529961586, 0.019809886813163757, -0.0033677497413009405, -0.004517923574894667, -0.01972711645066738, -0.001600241637788713, -0.015685126185417175, -0.003666070755571127, 0.025631455704569817, 0.017961332574486732, 0.013312354683876038, -0.021465308964252472, 0.028418082743883133, -0.026197059080004692, 0.024334708228707314, 0.022182660177350044, -0.027493806555867195, 0.00595952058210969, -0.007718406617641449, 0.010994763113558292, 0.017713019624352455, -0.012732956558465958, -0.006766538601368666, -0.0004114845360163599, 0.0076011475175619125, -0.0252589862793684, 0.0020606559701263905, 0.015050548128783703, -0.013553770259022713, 0.0069596716202795506, 0.013139914721250534, -0.0027762812096625566, -0.0017657838761806488, 0.01856832019984722, -0.008566810749471188, -0.019064947962760925, 0.021189406514167786, 0.01412627100944519, -0.016167957335710526, -0.013305457308888435, 0.020472055301070213, 0.0030211457051336765, -0.02294139377772808, -0.00044446365791372955, -0.023189708590507507, 0.003065980039536953, 0.0395645946264267, -0.012346691451966763, 0.0312047116458416, -0.008173647336661816, -0.04577242583036423, -0.03390856832265854, -0.009228979237377644, 0.028528444468975067, -0.0008941005216911435, 0.008421961218118668, -0.03812989592552185, 0.0035057016648352146, 0.006694113835692406, -0.015850668773055077, -0.022886212915182114, -0.0550152026116848, 0.011684522964060307, 0.003319466719403863, -0.023865671828389168, 0.0004789516096934676, -0.008359882980585098, 0.012284613214433193, -0.03617097809910774, 0.006897592917084694, -0.006676869932562113, 0.02274826169013977, 0.01987886242568493, 0.011767293326556683, -0.0036971098743379116, -0.028528444468975067, -0.011353437788784504, 0.008532322943210602, -0.023631153628230095, -0.010829221457242966, 0.033991336822509766, 0.008118467405438423, 0.01269157137721777, 0.02490031160414219, -0.008277111686766148, 0.025245189666748047, 0.007011403329670429, 0.0032160028349608183, -0.0006035394035279751, -0.005493932869285345, -0.0176992230117321, -0.03423965349793434, -0.017864765599370003, 0.0005703447386622429, 0.0029159574769437313, 0.029163023456931114, 0.003009075066074729, -0.0018433817895129323, 0.021175609901547432, 0.0016062769573181868, 0.028142180293798447, -0.0188166331499815, -0.009456600062549114, 0.0001464660745114088, -0.012422565370798111, -0.001957192085683346, 0.024624407291412354, -0.023700129240751266, -0.030156277120113373, 0.04030953347682953, -0.0453585721552372, 0.020127177238464355, -0.00020832887094002217, 0.011898348107933998, 0.0017761301714926958, 0.02866639755666256, 0.006576855201274157, 0.0029263037722557783, -0.014705668203532696, 0.012705366127192974, -0.05131809413433075, -0.02458302117884159, 0.006276809610426426, 0.005918134935200214, 0.005073179490864277, -0.012325998395681381, 0.029300974681973457, 0.008553015068173409, 0.011367233470082283, 0.013802084140479565, -0.009677323512732983, 0.01782338134944439, 0.0008419374353252351, 0.00022675837681163102, -0.002995279850438237, -0.005311146844178438, -0.02287241816520691, -0.0046075922437012196, -0.005990559700876474, 0.0045731039717793465, 0.017657838761806488, -0.028418082743883133, -0.02618326246738434, -0.016899103298783302, -0.0077666896395385265, 0.047952067106962204, 0.010656781494617462, 0.0283077210187912, 0.04549652338027954, 0.005766387563198805, -0.03059772215783596, 0.015740307047963142, 0.006487186066806316, -0.002755588386207819, 0.023824285715818405, 0.01992024853825569, -0.024955492466688156, -0.010484341531991959, -0.014484945684671402, 0.012746752239763737, 0.0028004227206110954, -0.018168259412050247, 0.019120128825306892, 0.019768502563238144, -0.020320309326052666, -0.02098247781395912, 0.023493202403187752, -0.027148926630616188, 0.012760546989738941, -0.020954888314008713, -0.013595156371593475, -0.01782338134944439, 0.0026866125408560038, -0.010918890126049519, 0.011084431782364845, 0.0120638906955719, 0.0472898967564106, 0.0011579333804547787, -0.0018864916637539864, -0.016361091285943985, -0.004107516724616289, -0.036115795373916626, 0.029163023456931114, -0.015326451510190964, 0.014305608347058296, -0.009973919950425625, -0.003838510485365987, -0.006880349013954401, 0.0031487513333559036, 0.01092578750103712, -0.020954888314008713, -0.00851162988692522, 0.027493806555867195, -0.012319101020693779, -0.015685126185417175, 0.0238104909658432, -0.0015847219619899988, -0.009960124269127846, -0.002709029708057642, -0.011001660488545895, -0.02120320126414299, -0.025755612179636955, -0.009711811318993568, 0.008553015068173409, -0.0094910878688097, -0.00715970154851675, -0.012726059183478355, -0.028197361156344414, 0.007207984570413828, -0.007980515249073505, -0.0023313865531235933, 0.01423663180321455, -0.019354647025465965, -0.005890544503927231, 0.016609404236078262, 0.014691873453557491, -0.0015562694752588868, -0.0019158064387738705, -0.012595005333423615, 0.016140367835760117, 0.03672278672456741, -0.03760567680001259, 0.007373527158051729, -0.018195850774645805, -0.01029810681939125, -0.04820038005709648, -0.018140669912099838, -0.013960728421807289, -0.014209041371941566, 0.012670878320932388, -0.019906453788280487, -0.032998085021972656, -0.015367837622761726, -0.008242623880505562, 0.010456751100718975, 0.013064040802419186, -0.009311750531196594, 0.003398789092898369, 0.0031625463161617517, 0.014140065759420395, 0.014760849066078663, -0.013498589396476746, -0.0009070335072465241, -0.0260591059923172, -0.004759339150041342, 0.00900825671851635, -0.015685126185417175, 0.016802536323666573, -0.00624232180416584, -0.0067803338170051575, -0.004611040931195021, -0.03308085724711418, -0.009504883550107479, -0.02045826055109501, 0.028528444468975067, -0.012305306270718575, 0.015229885466396809, -0.015354041941463947, -0.01177419163286686, -0.01132584735751152, 0.03818507492542267, -0.002008924027904868, -0.018995970487594604, -0.005031794309616089, 0.011988016776740551, 0.0034901821054518223, -0.005618089344352484, -0.014567716978490353, -0.005773285403847694, -0.0028366351034492254, 0.025590069591999054, -0.017078440636396408, -0.014181450940668583, -0.00716659938916564, 0.03040459007024765, 0.032611820846796036, -0.02516241930425167, -0.046986404806375504, 0.007787382695823908, -0.03239109739661217, -0.018140669912099838, -0.006059535313397646, 0.041909776628017426, 0.03655724227428436, 0.02786627598106861, -0.002029616851359606, 0.011387926526367664, 0.017644042149186134, 0.018678681924939156, -0.031673748046159744, -0.009898046031594276, -0.0008359020575881004, 0.023782901465892792, -0.01837518811225891, -0.00665962602943182, -0.010332594625651836, -0.007470093201845884, -0.006769987754523754, -0.011456902138888836, 0.0005143017624504864, 0.02335524931550026, 0.004397215787321329, -0.01531265676021576, -0.02731446921825409, -0.004093721508979797, 0.01119479350745678, 0.007408014964312315, -0.0031487513333559036, 0.002498653018847108, 0.01811307854950428, 0.006380273494869471, -0.0018623501528054476, -0.02187916450202465, -0.01627831906080246, 0.014595306478440762, -0.0009466946357861161, -0.0061595505103468895, -0.01907874271273613, -0.03197723999619484, 0.013008860871195793, -0.020347898826003075, 0.030183866620063782, -0.012581209652125835, -0.0060147009789943695, 0.03352230042219162, 0.01869247667491436, -0.00439031794667244, -0.003662621835246682, 0.0228448286652565, -0.030073504894971848, 0.01444355957210064, 0.00805638823658228, -0.004897290840744972, -0.011298257857561111, -0.006821719463914633, 0.034570734947919846, -0.038626521825790405, 0.021465308964252472, -0.029907964169979095, -0.026555733755230904, -0.014885005541145802, -0.0028124935925006866, 0.0016381783643737435, -0.03730218484997749, -0.0005604294128715992, 0.006801026873290539, -0.007773587480187416, 0.012222534976899624, -0.02197573147714138, -0.01756127178668976, -0.016098981723189354, 0.012388077564537525, 0.021768802776932716, -0.006549264770001173, 0.005238722078502178, 0.00716659938916564, 0.017478501424193382, -0.04624146223068237, 0.005255965981632471, 0.18430368602275848, -0.022596515715122223, 0.017864765599370003, 0.03178410977125168, -0.00530769769102335, 0.03079085610806942, 0.005976764485239983, -0.0067803338170051575, 0.0033211910631507635, 0.026072902604937553, -0.021437719464302063, 0.020734164863824844, -0.006052637938410044, 0.013146812096238136, 0.006680319085717201, -0.0018088937504217029, -0.025824587792158127, -0.035950254648923874, -0.012850215658545494, 0.0016338673885911703, -0.005076628644019365, 0.005697411950677633, -0.02982519194483757, -0.02265169471502304, 0.016485247761011124, 0.008277111686766148, -0.008277111686766148, 0.0014683251501992345, 0.030514951795339584, 0.006763089913874865, -0.003576402086764574, 0.013919343240559101, -0.015547174960374832, -0.013843469321727753, -0.030128685757517815, -0.02313452772796154, 0.013360638171434402, 0.01277434267103672, 0.023148322477936745, -0.007318346295505762, 0.043510016053915024, -0.030487360432744026, -0.020113380625844002, -0.029300974681973457, 0.028997480869293213, -0.0002271894773002714, 0.0015666157705709338, -0.012850215658545494, -0.009484190493822098, 0.04797965660691261, -0.0063044000416994095, -0.023175911977887154, 0.004000604152679443, 0.021189406514167786, -0.010311901569366455, -0.026845432817935944, 0.004593797028064728, -0.00403854064643383, -0.007318346295505762, 0.002521070186048746, -0.013960728421807289, 0.01711982674896717, 0.00940831657499075, -0.005073179490864277, -0.01987886242568493, 0.0083667803555727, -0.012815727852284908, -0.009132413193583488, 0.012595005333423615, -0.002798698376864195, 0.014691873453557491, 0.006345785688608885, -0.0012113897828385234, 0.008904792368412018, -0.020085791125893593, -0.004931779112666845, 0.03625375032424927, -0.0021192855201661587, 0.0075804549269378185, 0.026293624192476273, -0.023396635428071022, -0.04254435375332832, -0.00998771470040083, 0.006238873116672039, -0.009594552218914032, -0.01567133143544197, -0.010305004194378853, 0.00759425014257431, -0.00702174985781312, -0.014484945684671402, -0.033991336822509766, -0.014167656190693378, -0.00665962602943182, -0.020251333713531494, -0.018416574224829674, 0.016167957335710526, 0.002679714933037758, 0.006894144229590893, -0.005980213172733784, -0.01978229731321335, -0.01859591156244278, 0.04146832972764969, 0.01727157272398472, 0.0007320070872083306, 0.02107904478907585, -0.001820964622311294, -0.018002718687057495, 0.012243228033185005, 0.004504128359258175, -0.024182960391044617, -0.00913931056857109, -0.03835061565041542, 0.006269912235438824, -0.005262863356620073, 0.004828315228223801, -0.008097774349153042, -0.01171211339533329, -0.016140367835760117, -0.0072355750016868114, 0.020637597888708115, 0.017078440636396408, -0.031066758558154106, -0.0027228249236941338, -0.0009242774685844779, -0.010767143219709396, 0.018347596749663353, -0.05415990203619003, 0.018057897686958313, -0.0002256806183140725, 0.00751147884875536, 0.025272781029343605, -0.04262712597846985, 0.010125666856765747, -0.019189104437828064, -0.014967776834964752, -0.0008755632443353534, -0.01756127178668976, 0.0010993039468303323, -0.02905266173183918, 0.008297804743051529, -0.007897743955254555, 0.00269523449242115, -0.0006957947043702006, -0.0022020565811544657, 0.030928807333111763, -0.0014096956001594663, 0.001007048529572785, -0.009773889556527138, 0.01727157272398472, -0.03040459007024765, -0.02644537203013897, -0.015850668773055077, -0.004986959975212812, -0.014581511728465557, 0.004259263630956411, -0.010449853725731373, -0.023313865065574646, -0.00530769769102335, 0.02219645492732525, -0.00411786325275898, -0.013857264071702957, 0.02490031160414219, 0.0060147009789943695, -0.01412627100944519, -0.014209041371941566, 0.01611277647316456, -0.17426079511642456, 0.04428254812955856, -0.006045740097761154, -0.01763024739921093, 0.024376094341278076, -0.003062531352043152, 0.01756127178668976, 0.013533077202737331, 0.0031125389505177736, -0.0025227947626262903, -0.03277736157178879, -0.014940186403691769, -0.011063739657402039, 0.025424528867006302, -0.0049559203907847404, 0.0024676139000803232, -0.008449551649391651, 0.0029349259566515684, 0.004614489618688822, 0.02567284181714058, 0.039233509451150894, -0.026307420805096626, 0.027783505618572235, 0.000697088020388037, -0.0016554223839193583, 0.008932382799685001, 0.01064988411962986, 0.03214278444647789, -0.01939603127539158, -0.033191218972206116, -0.0022451665718108416, 0.026100492104887962, 0.012381179258227348, -0.00794602744281292, 0.0067803338170051575, 0.0018520037410780787, -0.017519885674118996, -0.042930617928504944, -0.014595306478440762, 0.0034074110444635153, 0.03446037322282791, 0.02828013151884079, -0.01567133143544197, -0.030928807333111763, -0.010980968363583088, 0.026486758142709732, 0.023769104853272438, -0.0030435628723353148, -0.006756192538887262, -0.007045891135931015, 0.005780182778835297, -0.024376094341278076, 0.0032125539146363735, 0.02982519194483757, 0.026100492104887962, -0.0082012377679348, -0.02306555025279522, 0.03294290602207184, -0.01147069688886404, -0.003098743734881282, 0.0029849333222955465, -0.031287483870983124, 0.003824715269729495, 0.009677323512732983, -0.021437719464302063, -0.017657838761806488, -0.023920852690935135, -0.0202651284635067, -0.021603262051939964, 0.005580152850598097, -0.008015003055334091, -0.015974825248122215, -0.0031625463161617517, 0.013312354683876038, -0.014036601409316063, 0.00764943053945899, -0.003976462408900261, -0.0007126075797714293, -0.005780182778835297, 0.020196152850985527, 2.445142854412552e-05, 0.03719182312488556, 0.01772681437432766, -0.0009096200810745358, -0.009304853156208992, -0.018540730699896812, -0.00602504750713706, 0.0178509708493948, -0.007559761870652437, -0.019258080050349236, 0.025314167141914368, -0.0089254854246974, -0.018940789625048637, -0.005549113731831312, 0.00920138880610466, 0.006383722182363272, 0.004635182674974203, 0.008442654274404049, 0.01369172241538763, -0.036281339824199677, 0.0029883822426199913, -0.004210980609059334, -0.03192206099629402, -0.011594854295253754, 0.023727720603346825, 0.021354947239160538, -0.023438021540641785, 0.013960728421807289, 0.03343953192234039, 0.029383746907114983, -0.01840277761220932, 0.02902507223188877, 0.00180544494651258, 0.008759942837059498, 0.005290453787893057, 0.013539975509047508, -0.011739703826606274, -0.014119372703135014, 0.010753347538411617, 0.023093141615390778, 0.02545211836695671, -0.004073028918355703, -0.02564525045454502, 0.007642533164471388, -0.008421961218118668, 0.026597118005156517, -0.13044728338718414, -0.027949046343564987, 0.025327961891889572, 0.04999375343322754, -0.008615093305706978, 0.014374583959579468, -0.011691420339047909, 0.026873022317886353, 0.014098680578172207, 0.018651092424988747, -0.0030435628723353148, -0.012857113033533096, -0.010670576244592667, 0.0126294931396842, -0.01618175394833088, -0.006404415238648653, -0.0260591059923172, -0.006176794413477182, -0.006669972557574511, 0.02049964666366577, -0.008401268161833286, -0.001661457703448832, -0.006411312613636255, -0.009787684306502342, -0.030156277120113373, 0.028335312381386757, -0.018513139337301254, 0.019327055662870407, 0.004524820949882269, 0.018071694299578667, 0.018099283799529076, -0.008001208305358887, 0.0005850021261721849, -0.012470847927033901, -0.009270365349948406, -0.00969801563769579, -0.018926994875073433, 0.005714655853807926, 0.027452420443296432, -0.03137025237083435, 0.014912595972418785, 0.0035522603429853916, 0.025121033191680908, -0.011636239476501942, 0.012815727852284908, 0.005983661860227585, -0.04334447532892227, 0.005659474991261959, -0.002112387912347913, -0.017009465023875237, -0.03142543509602547, 0.01104994397610426, -0.02516241930425167, -0.0073804245330393314, 0.0252589862793684, -0.015878260135650635, 0.003979911096394062, 0.010532625019550323, -0.012905396521091461, -0.005897441878914833, -0.021823983639478683, 0.016071392223238945, -0.009753196500241756, 0.03851616010069847, 0.0024003623984754086, 0.012243228033185005, 0.0012864010641351342, -0.017285367473959923, 0.03851616010069847, -0.023341454565525055, -0.0022089541889727116, 0.029880372807383537, -0.034350015223026276, 0.020085791125893593, 0.00179164984729141, 0.0028435327112674713, -0.016788741573691368, -0.0002935788070317358, -0.0019261528505012393, -0.009173798374831676, -0.01296747475862503, -0.012036300264298916, -0.01804410293698311, -0.000390145112760365, 0.009663527831435204, 0.019037356600165367, -0.012801933102309704, 0.011981119401752949, 0.011932835914194584, -0.03741254657506943, 0.00744940061122179, 0.019547779113054276, 0.001311404863372445, 0.00037915207212790847, -0.011015456169843674, 0.01161554642021656, 0.014885005541145802, 0.0023710476234555244, -0.011891450732946396, -0.01975470595061779, -0.03043218143284321, 0.006742397323250771, -0.04814520105719566, 0.0015502340393140912, -0.011015456169843674, -0.036281339824199677, 0.014774644747376442, -0.010242925956845284, -0.015740307047963142, -0.0030573580879718065, 0.0047731343656778336, 0.009684220887720585, -0.03614338859915733, 0.02538314275443554, -0.02888711914420128, 0.014057294465601444, -0.005190438590943813, -0.011608649045228958, 0.03895760700106621, -0.00759425014257431, 0.013215788640081882, 0.021603262051939964, -0.00164680031593889, -0.019354647025465965, 0.03677796572446823, -0.001390727236866951, 0.0047007096000015736, 0.01367102935910225, -0.009532473981380463, 0.025824587792158127, -0.006056086625903845, -0.04894531890749931, -0.01007048599421978, -0.0005949173937551677, -0.0007035544840618968, 0.005800875835120678, 0.03454314544796944, 0.006273360922932625, -0.00899446103721857, -0.008918588049709797, 0.026624709367752075, -0.004252366255968809, -0.014305608347058296, -0.02738344483077526, 0.02243097312748432, -0.008773738518357277, -0.006994159426540136, -0.004838661756366491, -0.007387322373688221, 0.009187594056129456, -0.01055331714451313, -0.0023710476234555244, 0.024638202041387558, 0.03755049780011177, -0.019299466162919998, -0.0283077210187912, 0.006566508673131466, 0.004652426578104496, -0.004583450499922037, -0.01354687288403511, 0.012622594833374023, -0.0019589164294302464, 0.01876145228743553, -0.009325546212494373, 0.02245856262743473, -0.00878063589334488, 0.008242623880505562, -0.03887483477592468, -0.0032125539146363735, -0.011084431782364845, -0.026748865842819214, -0.01808548904955387, 0.0027711079455912113, -0.023631153628230095, 0.030321819707751274, -0.008766841143369675, 0.05305628478527069, 0.015836874023079872, -0.045027486979961395, 0.006094023585319519, -0.002062380313873291, 0.03194965049624443, 0.02603151649236679, -0.003569504478946328, -0.037274591624736786, 0.0038626519963145256, 0.04257194325327873, 0.03898519650101662, -0.005745694972574711, -0.03081844560801983, 0.008228828199207783, 0.01586446352303028, 0.006062984466552734, 0.0020675535779446363, -0.017616452649235725, 0.0005668959347531199, 0.0009268640424124897, 0.011015456169843674, 0.0022693080827593803, -0.0156023558229208, -0.00017416421906091273, 0.014512536115944386, 0.008408165536820889, -0.0005535318632610142, -0.034957002848386765, -0.021534286439418793, -0.02869398705661297, -0.00616989703848958, 0.012084582820534706, -0.00665962602943182, 0.006497532594949007, 0.030928807333111763, -0.015809282660484314, 0.013057143427431583, 0.02332765981554985, 0.01433319877833128, -0.032087601721286774, 0.00694242725148797, 0.008649582043290138, -0.015657536685466766, -0.02709374576807022, 0.0014726361259818077, 0.01644386164844036, 0.0017356068128719926, 0.01949259825050831, -0.0014165932079777122, 0.033577483147382736, 0.007373527158051729, 0.012898499146103859, -0.011974221095442772, -0.006225077901035547, -0.018554525449872017, -0.02786627598106861, 0.0035591579508036375, -0.029300974681973457, -0.023976033553481102, 0.019989224150776863, -0.005728451069444418, -0.007421810179948807, 0.0051766433753073215, -0.014071090146899223, 0.07951544970273972, -0.002636604942381382, -0.031839288771152496, 0.018168259412050247, -0.008966870605945587, 0.02808699943125248, 0.03393615782260895, -0.003824715269729495, 0.0005565495230257511, 0.01007048599421978, 0.02422434650361538, 0.0014743604697287083, 0.0065216743387281895, -0.024914106354117393, 0.01502295769751072, -0.0023607013281434774, 0.01063608843833208, 0.013567565940320492, -0.009063437581062317, -0.0016916346503421664, 0.013429613783955574, 0.014346993528306484, 0.017616452649235725, 0.022527538239955902, -0.004559309221804142, -0.002277930034324527, 0.008601298555731773, 0.013270968571305275, -0.01808548904955387, -0.022568924352526665, 0.0021537733264267445, -0.01502295769751072, -0.0008259867900051177, -0.001639902708120644, -0.002738344483077526, 0.002745242090895772, -0.011601751670241356, 0.004445498809218407, 0.009704913012683392, 0.015050548128783703, -0.007139008957892656, 0.026721276342868805, -0.034405194222927094, -0.030542541295289993, -0.04105447232723236, -0.0036177875008434057, -0.0002860345703084022, 0.001983057940378785, -0.04373073950409889], "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935": [-0.0023723342455923557, 0.012623551301658154, 0.030461903661489487, -0.01352380495518446, -0.02288643829524517, 0.01428401842713356, 0.012563535012304783, -0.014710805378854275, 0.0122767873108387, -0.012136748060584068, 0.018071752041578293, 0.03214237838983536, -0.008929179050028324, 0.038784246891736984, -0.012923636473715305, -0.013210383243858814, 0.010629657655954361, -0.01165661308914423, 0.011376534588634968, -0.01732487417757511, 0.004201182164251804, 0.017951717600226402, -0.008295667357742786, -0.020832527428865433, -0.0054682050831615925, 0.009642712771892548, 0.008569077588617802, -0.008309004828333855, 0.014003939926624298, -0.015150929801166058, 0.0014153982046991587, -0.015791108831763268, -0.004631303250789642, -0.020619135349988937, -0.030061790719628334, -0.01301699597388506, -0.012343472801148891, -0.00767549267038703, 0.009335960261523724, 0.005384848453104496, 0.03795734792947769, -0.0050847637467086315, 0.008955853059887886, 0.005091432482004166, 0.012590209022164345, 0.044785935431718826, 0.0009127568337135017, -0.023339899256825447, -0.010269556194543839, 0.001692142803221941, 0.030115140601992607, 0.007061986718326807, -0.021779460832476616, -0.015751099213957787, 0.0127835962921381, -0.006135059520602226, 0.003362612798810005, -0.00020526608568616211, 0.0006985298823565245, -0.011243163608014584, 0.011843332089483738, 0.002937493147328496, -0.010049493983387947, -1.5525201888522133e-05, -0.010556302964687347, 0.0020122327841818333, 0.006471820641309023, -0.002604065928608179, 0.010142853483557701, 0.003195899073034525, 0.030995387583971024, -0.0003646859258878976, -0.0031042066402733326, 0.02300647273659706, 0.054308611899614334, -0.0009260938968509436, -0.018551886081695557, 0.008162296377122402, -0.011776646599173546, 0.0006318444502539933, -0.0025223763659596443, -0.03211570158600807, -0.0227263942360878, 0.009569359011948109, 0.026100676506757736, -0.012590209022164345, 0.007902223616838455, 0.026594148948788643, 0.002105592517182231, -0.019898932427167892, 0.021726112812757492, 0.02534046210348606, -0.006115053780376911, 0.002100591082125902, 0.002080585341900587, 0.029181543737649918, -0.006458483636379242, 0.022553011775016785, -0.007875549606978893, -0.03467642143368721, -0.006798579357564449, 0.0030608612578362226, -0.019858920946717262, -0.00920258928090334, -0.0169380996376276, 0.009335960261523724, 0.025633879005908966, -0.0127835962921381, 0.010716348886489868, -0.0035476647317409515, -0.004878039006143808, 0.04689319431781769, -0.00930261705070734, -0.03520990535616875, 0.005564899183809757, -0.008822482079267502, 0.012363478541374207, -0.01836516708135605, -0.04467923566699028, 0.0030658626928925514, 0.0064684865064918995, -0.01809842512011528, -0.0036443585995584726, -0.013123692013323307, 0.010769696906208992, -0.012556865811347961, -0.001912204665131867, -0.022019527852535248, -0.006835256237536669, -0.02643410488963127, 0.04190512374043465, 0.013683849945664406, 0.006618528626859188, -0.007488773670047522, -0.006181739270687103, 0.02020568586885929, -0.015564379282295704, -0.0034876479767262936, -0.03486314043402672, -0.0127835962921381, 0.018431851640343666, -0.017271526157855988, -0.020072314888238907, -0.013397102244198322, 0.011029769666492939, 0.002835797844454646, 0.016017839312553406, 0.019778897985816002, 0.004597960505634546, 0.0043278844095766544, 0.02031238190829754, -0.009275943040847778, -0.008955853059887886, -0.014644119888544083, -0.017805010080337524, 0.01165661308914423, 9.544352360535413e-05, 0.0015979495365172625, 0.03152887150645256, -0.009576027281582355, 0.019592178985476494, 0.02035239338874817, -0.009195921011269093, 0.004427912645041943, -0.009989477694034576, 0.03961114585399628, 0.03190230950713158, 0.014244007878005505, -0.01267023105174303, -0.0030458569526672363, 0.014804164879024029, 0.025753913447260857, -0.02716764435172081, 0.017191503196954727, 0.0028007880318909883, 0.01689808815717697, -0.003080866765230894, 0.0059783486649394035, -0.025327125564217567, -0.004711325746029615, -0.018271807581186295, 0.01688474975526333, 0.014230670407414436, 0.05900326743721962, -0.02311316877603531, 0.011376534588634968, 0.020725831389427185, 0.0031625565607100725, 0.0047913482412695885, 0.028007879853248596, 0.013657175935804844, 0.01619122177362442, -0.012656894512474537, -0.002587394556030631, -0.6239622235298157, -0.0006560179172083735, -0.024220148101449013, -0.022112887352705002, -0.005198128987103701, 0.012503517791628838, 0.0059783486649394035, -0.009716066531836987, -0.015004221349954605, 0.03171559050679207, 0.01692476123571396, 0.00705531844869256, 0.03128880262374878, -0.016244569793343544, -0.008182302117347717, -0.01903202198445797, 0.026287395507097244, -0.037263818085193634, -0.010076167993247509, 0.013143697753548622, 0.003414293983951211, 0.04393235966563225, -0.03262251242995262, 0.009135903790593147, 0.018751943483948708, -4.5247106754686683e-05, 0.019685538485646248, -0.016124537214636803, 0.03355610743165016, 0.02347327023744583, -0.028861453756690025, -0.013763872906565666, -0.011329853907227516, -0.013990603387355804, 0.04521271958947182, 0.013490462675690651, 0.004184510558843613, 0.027741137892007828, 0.03376949951052666, 0.0454527884721756, 0.001730486867018044, -0.017111480236053467, 0.029635004699230194, 0.012503517791628838, 0.022739730775356293, -0.02538047358393669, 0.004094485193490982, 0.010836382396519184, 0.0116166016086936, -0.005078095477074385, 0.008769134059548378, 0.0116166016086936, 0.00564158707857132, -0.04222521185874939, 0.009282611310482025, 0.01180998980998993, 0.03291592746973038, -0.0006926949135959148, -0.001683807116933167, -0.014830839820206165, 0.0034209624864161015, 0.016871413215994835, 0.00020714160928037018, -0.016484638676047325, -0.025487171486020088, 0.024900339543819427, -0.005298157222568989, 0.008402364328503609, 0.003199233440682292, -0.008022257126867771, 0.01206339430063963, -0.006621863227337599, -0.01385723240673542, -0.022286269813776016, 0.006478489376604557, 0.029635004699230194, -0.005648255813866854, -0.0108563881367445, 0.012716911733150482, 0.005104769486933947, 0.018418515101075172, 0.000406155944801867, -0.027847835794091225, -0.02502037212252617, 0.01165661308914423, 0.01704479567706585, 0.003714378457516432, 0.0007843873463571072, 0.011303179897367954, -0.006615194492042065, 0.007428756915032864, -0.00406781118363142, -0.004661311395466328, -0.03577006235718727, -0.012843613512814045, -0.012936973012983799, 0.0021456037648022175, -0.02923489175736904, -0.018858639523386955, -0.011076449416577816, -0.015150929801166058, -0.01257020328193903, -0.005254811607301235, -0.011509904637932777, -0.0007622978300787508, 0.009235931560397148, -0.003000844269990921, 0.02499369904398918, 0.012983652763068676, -0.0227263942360878, -0.008922510780394077, -0.04265199974179268, -0.010469612665474415, -0.017191503196954727, -0.005911663174629211, -0.03443635627627373, 0.015257625840604305, 0.012736916542053223, 0.02183280885219574, -0.00875579658895731, 0.027100957930088043, 0.02175278775393963, 0.0033209342509508133, 0.00655851187184453, -0.0004626301524695009, 0.015030895359814167, 0.023913394659757614, 0.011356528848409653, -0.025833934545516968, -0.009095892310142517, 0.009802757762372494, 0.01747158169746399, -0.0010611319448798895, -0.041158247739076614, -0.02311316877603531, -0.015577715821564198, 0.0032775888685137033, -0.01623123325407505, 0.019592178985476494, 0.008855825290083885, -0.00410448806360364, -0.00681191636249423, 0.013137029483914375, -0.0075487904250621796, -0.02067248336970806, -0.027501070871949196, -0.019578842446208, -0.0005722443456761539, 0.0045946259051561356, -0.02027237042784691, 0.008435706607997417, -0.01580444723367691, -0.033369388431310654, 0.013390433974564075, -0.0010294562671333551, -0.01362383272498846, 0.009576027281582355, -0.004274535924196243, -0.010963084176182747, -0.029101520776748657, -0.01856522262096405, 0.04262532666325569, -0.0387575700879097, 0.014590771868824959, -0.017845021560788155, -0.01206339430063963, 0.0033659469336271286, 0.006671877112239599, -0.024820316582918167, -0.03894428908824921, 0.01301699597388506, 0.0020922552794218063, -0.01856522262096405, 0.018751943483948708, -0.014724142849445343, 0.06924615055322647, -0.022673046216368675, -0.00456461776047945, 0.0026507459115236998, -0.008402364328503609, -0.02020568586885929, 0.01763162761926651, -0.027581093832850456, -0.02065914496779442, -0.005238140467554331, 0.025580530986189842, 0.0006260094814933836, 0.006895273458212614, -0.021966179832816124, 0.02420681156218052, 0.055749017745256424, 0.014937535859644413, 0.019685538485646248, -0.0074354251846671104, -0.013423777185380459, 0.031235454604029655, 0.005244809202849865, 0.010609651915729046, 0.019018683582544327, 0.025553856045007706, 0.016244569793343544, 0.005491544958204031, 0.013543810695409775, -0.006181739270687103, 0.007528785150498152, -0.019352111965417862, 0.014270681887865067, -0.0107030114158988, 0.003510987851768732, -0.021432697772979736, 0.009369302541017532, -0.01341043971478939, -0.034116264432668686, -0.022939788177609444, 0.007668824400752783, 0.041825100779533386, -0.007488773670047522, 0.024020090699195862, -0.006955290213227272, 0.003907766193151474, 0.008409032598137856, -0.015190940350294113, -0.005544893443584442, 0.027847835794091225, 0.0006672710878774524, 0.009996145963668823, 0.012536861002445221, -0.0072820489294826984, 0.002544049173593521, -0.02674085646867752, 0.012550197541713715, 0.0031675577629357576, 0.017458245158195496, -0.004591291770339012, 0.03198233246803284, 0.013403771445155144, 0.05212133005261421, -0.011683287099003792, 0.01673804223537445, -0.0038044038228690624, -0.02300647273659706, -0.007835538126528263, 0.012830276973545551, -0.02840799279510975, -0.01732487417757511, 0.0073954141698777676, 0.02175278775393963, 0.025780586525797844, -0.018418515101075172, 0.018858639523386955, 0.007128672208636999, -0.0011761642526835203, -0.025940632447600365, 0.0012820273404940963, 2.3717610019957647e-05, -0.007215363439172506, 0.010536298155784607, 0.006065039895474911, 0.0040044598281383514, 0.0108030391857028, -0.01432402990758419, 0.0035143219865858555, 0.00630510738119483, 0.00672522559762001, 0.01615121029317379, 0.004644640255719423, -0.015030895359814167, -0.02257968671619892, -0.024820316582918167, 0.014537423849105835, -0.022553011775016785, -0.03280923143029213, -0.021699437871575356, 0.015150929801166058, 0.018898651003837585, 0.017644964158535004, 0.015070906840264797, 0.038864266127347946, 0.015711087733507156, -0.004761339630931616, -0.008489055559039116, -0.01813843660056591, 0.012743585743010044, 0.008975858800113201, -0.0019588845316320658, -0.020792515948414803, -0.026007317006587982, 0.015604390762746334, -0.006511832121759653, 0.007108666934072971, -0.021686101332306862, -0.010569640435278416, 0.0049313874915242195, -0.004808019381016493, 0.005788295064121485, 0.00996280275285244, 0.03897096589207649, -0.01883196458220482, 0.03374282643198967, 0.012256781570613384, -0.0013495463645085692, -0.010176196694374084, -0.00828899908810854, 0.0026940912939608097, 0.0432121567428112, -0.00023902558314148337, 0.0203924048691988, 0.0073954141698777676, 0.005338168703019619, -0.03520990535616875, 0.01973888650536537, -0.0107030114158988, -0.00659518875181675, -0.02546049654483795, -0.005448199342936277, -0.013203714974224567, 0.0022406303323805332, -0.009642712771892548, 0.023059820756316185, -0.006781908217817545, -0.013923917897045612, -0.010189533233642578, -0.010429601185023785, 0.01883196458220482, 0.027114294469356537, 0.02942161075770855, -0.005111438222229481, -0.006191742140799761, -0.024700282141566277, -0.028034554794430733, -0.0025807260535657406, -0.02452690154314041, -0.009762747213244438, -0.004377898294478655, 0.009582696482539177, 0.008975858800113201, 0.034543052315711975, 0.029981769621372223, -0.002659081481397152, 0.009516010992228985, -0.0027624438516795635, -0.031155431643128395, 0.009309286251664162, -0.0478801392018795, 0.02031238190829754, 0.003105873940512538, 0.01062298845499754, 0.031208781525492668, 0.015577715821564198, -0.007528785150498152, 0.03168891742825508, 0.013083681464195251, 0.001172830001451075, -0.012676900252699852, -0.009562690742313862, 0.027447722852230072, 0.024740293622016907, 0.025980643928050995, -0.00028362145530991256, 0.019725549966096878, 0.012076730839908123, 0.013570484705269337, 0.018191784620285034, -0.013843894936144352, 0.03515655919909477, 4.529920261120424e-05, 0.01592447981238365, -0.017258189618587494, -0.009609370492398739, 0.0037977350875735283, 0.0028257949743419886, 0.01696477271616459, -0.016804728657007217, -0.005061423871666193, 0.023259878158569336, 0.012430164031684399, -0.035823412239551544, -0.019098706543445587, 0.036997076123952866, 0.005384848453104496, 0.013397102244198322, -0.02355329319834709, -0.030301859602332115, -0.018658582121133804, 0.010436269454658031, -0.009169246070086956, -0.003350942861288786, -0.013763872906565666, 0.028541363775730133, -0.0021339338272809982, 0.010576308704912663, 0.009589364752173424, -0.016791390255093575, 0.011409876868128777, 0.02627405896782875, -0.03761058300733566, -0.03897096589207649, -0.027501070871949196, 0.021379347890615463, 0.013323748484253883, 0.005888323299586773, -0.019725549966096878, -0.0013570485170930624, -0.003315933048725128, 0.007115335203707218, -0.03507653623819351, 0.0006010024226270616, -0.02475363202393055, -0.007288717199116945, 0.023326562717556953, 0.011189814656972885, -0.00771550415083766, -0.03155554458498955, 0.033022623509168625, -0.0036777013447135687, 0.028888128697872162, 0.014417389407753944, 0.0006376794190146029, 0.007535453420132399, 0.01356381643563509, 0.003135882318019867, -0.018738605082035065, 0.014950873330235481, -0.025193754583597183, 0.022286269813776016, -0.0005159784923307598, -0.015591053292155266, -0.02724766544997692, 0.008415700867772102, -0.00477801077067852, 0.006308441516011953, 0.024927012622356415, 0.009549353271722794, -0.005344836972653866, 0.03942442685365677, -0.017378222197294235, 0.016431288793683052, 0.028354644775390625, 0.0093826400116086, 0.021579405292868614, 0.004511269275099039, 0.021686101332306862, 0.0002609067305456847, -0.023793360218405724, 0.0111097926273942, -0.03400956839323044, 0.021312663331627846, 0.005104769486933947, -0.005011409986764193, 0.007488773670047522, 0.012590209022164345, -0.029715027660131454, -0.02790118381381035, -0.010649663396179676, 0.016004502773284912, 0.035396624356508255, -0.019472144544124603, -0.013790546916425228, -0.009109229780733585, 0.016204558312892914, -0.016871413215994835, 0.023713339120149612, -0.036330223083496094, -0.008062268607318401, 8.392986637772992e-05, -0.007088661193847656, 0.020325718447566032, -0.007242037449032068, -0.019472144544124603, -0.026994261890649796, -0.009322622790932655, -0.010716348886489868, 0.019632190465927124, 0.047186609357595444, 0.010843050666153431, 0.0011753307189792395, -0.04486595839262009, -0.011489899829030037, 0.010342909954488277, -0.025113731622695923, 0.007008638698607683, 0.017885031178593636, 0.02814125083386898, 0.01829848252236843, 0.014644119888544083, 0.0012903630267828703, 0.008202307857573032, -0.0023323227651417255, -0.020365729928016663, 0.026260722428560257, -0.016431288793683052, -0.016204558312892914, -0.02451356314122677, -0.01631125621497631, -0.018711932003498077, -0.017618291079998016, 0.004197847563773394, -0.003540996229276061, -0.004277870059013367, 0.03203567862510681, 0.015310974791646004, -0.0019772229716181755, -0.03187563642859459, -0.007928897626698017, -0.015857795253396034, 0.01797839254140854, 0.003152553690597415, 0.01763162761926651, -0.02101924642920494, 0.0009335959912277758, 0.017351549118757248, -0.001810509362258017, -0.0013453785795718431, 0.0026857557240873575, 0.006351787131279707, -0.021939506754279137, 0.003097538137808442, -0.001713815494440496, 0.015244289301335812, -0.007795526646077633, 0.0062650959007442, -0.02300647273659706, 0.013590490445494652, -0.005338168703019619, 0.012190096080303192, 0.022713057696819305, 0.008782470598816872, 0.008168964646756649, -0.052441421896219254, -0.01257020328193903, -0.026474114507436752, -0.005384848453104496, 0.012183427810668945, 0.0010402926709502935, -0.026007317006587982, -0.0182584710419178, -0.013803883455693722, -0.02452690154314041, -0.007242037449032068, 0.005251477472484112, 0.018378503620624542, 0.01911204308271408, -0.020179010927677155, -0.012770259752869606, -0.019778897985816002, -0.032249074429273605, 0.056335851550102234, 0.020925886929035187, 0.04969398304820061, 0.023846710100769997, 0.017658300697803497, -0.03280923143029213, -0.016471300274133682, 0.0003957363369408995, 0.005438196938484907, 0.01403061393648386, -0.0033526099286973476, -0.013723861426115036, -0.017925042659044266, -0.017271526157855988, 0.0058849891647696495, -0.007168683689087629, -0.025540519505739212, 0.01852521300315857, 0.01961885392665863, 0.00019297095423098654, -0.019485482946038246, 0.0029441616497933865, -0.03435633331537247, 0.011356528848409653, 0.007682161405682564, 0.0025473833084106445, -0.013950591906905174, -0.0033909541089087725, -0.021205967292189598, 0.020072314888238907, 0.009395976550877094, 0.04630636051297188, 0.022206248715519905, 0.003182562068104744, 0.00019338775018695742, -0.018165111541748047, -0.023206530138850212, 0.029981769621372223, -0.02471362054347992, 0.0011078116949647665, -0.01797839254140854, -0.003292592940852046, 0.012663562782108784, -0.0075021106749773026, -0.0035309933591634035, -0.015964491292834282, 0.0024123454932123423, 0.03008846566081047, -0.021859483793377876, 0.00846238061785698, 0.01058964617550373, 0.017724987119436264, -0.044225774705410004, -0.012463506311178207, -0.0014987550675868988, -0.007322059944272041, -0.020619135349988937, -0.021779460832476616, 0.017351549118757248, 0.009762747213244438, -0.014297355897724628, -0.004247861914336681, -0.001827180734835565, -0.010943078435957432, -0.015631064772605896, -0.021125944331288338, 0.002447355305776, -0.010896398685872555, -0.029875071719288826, -0.014790828339755535, -0.002545716241002083, -0.015044232830405235, -0.0028758090920746326, -0.013457119464874268, 0.014844176359474659, 0.041745077818632126, -0.007602138910442591, 0.014630783349275589, -0.017684975638985634, 0.008509060367941856, -0.03176893666386604, 0.008935847319662571, 0.019525494426488876, 0.0017604953609406948, 0.019565504044294357, -0.012130079790949821, -0.010149522684514523, -0.014657457359135151, -0.003761058207601309, 0.053375016897916794, -0.027661116793751717, -0.009842769242823124, 0.005998354405164719, 0.016431288793683052, 0.034889817237854004, -0.00385775207541883, -0.004724662750959396, -0.004214519169181585, 0.0013728862395510077, 0.00027445220621302724, 0.017031459137797356, -0.041931796818971634, -0.004574620630592108, 0.014524086378514767, 0.010102842934429646, 0.002645744476467371, -0.006648537237197161, -0.02315318025648594, 0.0075621274299919605, -0.006445146631449461, -0.0084690498188138, 0.004147833678871393, 0.008515729568898678, -0.029474958777427673, -0.009442656300961971, 0.015937818214297295, -0.012030051089823246, 0.005928334780037403, -0.010289561934769154, 0.030195161700248718, 0.020018965005874634, 0.00334260705858469, -0.004494598135352135, -0.009702729992568493, 0.002457357943058014, -0.002494035055860877, -0.01832515560090542, -0.008122284896671772, -0.009602702222764492, 0.031155431643128395, 0.0023873383179306984, -0.01860523410141468, -0.018071752041578293, 0.012263450771570206, -0.023459933698177338, -0.01880529150366783, -0.01128317415714264, 0.006238421890884638, 0.046066295355558395, 0.012336804531514645, -0.010436269454658031, 0.04262532666325569, 0.012043388560414314, 0.05537557974457741, -0.030328532680869102, 0.002313984325155616, -0.0037543897051364183, 0.03881091997027397, 0.004251196049153805, 0.0034543052315711975, -0.01696477271616459, -0.01969887502491474, -0.013337085954844952, -0.010756359435617924, 0.026207374408841133, 0.007275380194187164, 0.016591334715485573, -0.004741333890706301, -0.01588446833193302, 0.009475999511778355, 0.01195002906024456, 0.021712776273489, 0.012436832301318645, -0.02678086794912815, -0.010229544714093208, -0.006155065260827541, 0.01411063689738512, -0.0004688819171860814, -0.01665801927447319, 0.008709116838872433, 0.00406781118363142, 0.01716483011841774, -0.0037743952125310898, -0.01539099682122469, 0.025247102603316307, -0.01649797521531582, 0.024860328063368797, 0.010456275194883347, 0.001671303529292345, 0.025673890486359596, -0.010689673945307732, 0.014950873330235481, -0.0019322102889418602, 0.01677805371582508, -0.023446597158908844, -0.01743157021701336, 0.008282329887151718, -0.008909173309803009, -0.006448480766266584, -0.00013962261436972767, 0.028381317853927612, -0.012643557041883469, 0.014724142849445343, -0.024246821179986, -0.013883906416594982, -0.005078095477074385, 0.028621386736631393, 0.0055148848332464695, 0.0003150886623188853, -0.002692424226552248, 0.011096455156803131, 8.06476891739294e-05, -0.001241182559169829, -0.04705324023962021, -0.013897242955863476, -0.021299326792359352, 0.006605191621929407, 0.019405459985136986, 0.024353519082069397, -0.005508216563612223, 0.009922792203724384, 0.021672764793038368, -0.02452690154314041, 0.006861930713057518, 0.18170446157455444, -0.006935284473001957, 0.028674734756350517, 0.0330759733915329, -0.0021289323922246695, 0.0088758310303092, 0.019512156024575233, -0.012656894512474537, -0.00385775207541883, 0.030221836641430855, -0.0019772229716181755, 0.01988559402525425, -0.009569359011948109, 0.00638179574161768, 0.0033242686185985804, 0.0002936242672149092, -0.03566336631774902, -0.04611964151263237, -0.009429319761693478, 0.0039010976906865835, 0.01000281423330307, -0.01592447981238365, -0.014043951407074928, -0.035983458161354065, 0.024246821179986, -0.0029641673900187016, 0.017604952678084373, -0.002063913969323039, 0.024113450199365616, -0.019898932427167892, -0.006371792871505022, -0.01615121029317379, -0.007608807645738125, -0.014217333868145943, -0.028621386736631393, -0.022739730775356293, 0.026367418467998505, -0.007081992458552122, 0.023886719718575478, -0.019578842446208, 0.029288239777088165, -0.03366280347108841, -0.024460215121507645, -0.02958165667951107, 0.0033692813012748957, 0.0012995322467759252, -0.015257625840604305, 0.003000844269990921, -0.006588520482182503, 0.03665031120181084, -0.012016714550554752, -0.016164548695087433, 0.01000281423330307, 0.012896961532533169, -0.011443219147622585, -0.00672522559762001, -0.011609933339059353, 0.007402082439512014, 0.005868317559361458, 0.01488418783992529, -0.006198410410434008, 0.03518323227763176, -0.007982245646417141, 0.01923207752406597, -0.02432684414088726, 0.0018688591662794352, -0.050494205206632614, -0.004287872929126024, -0.0032225733157247305, -0.009642712771892548, -0.004157836548984051, -0.009869443252682686, -0.016978111118078232, -0.0008514895453117788, -0.01576443575322628, -0.004087816923856735, 0.037503886967897415, 0.00357100460678339, 0.012623551301658154, 0.016671357676386833, -0.041825100779533386, -0.03689038008451462, -0.013037001714110374, 0.022833090275526047, -0.05484209582209587, -0.04499932751059532, 0.028194598853588104, -0.020072314888238907, -0.007762183900922537, -0.03323601931333542, -0.010342909954488277, -0.01265022624284029, -0.008329009637236595, -0.013417107984423637, 0.0068252538330852985, 0.014230670407414436, -0.007895554415881634, 0.03355610743165016, -0.008735790848731995, 0.011103124357759953, -0.03179561346769333, 0.03761058300733566, 0.020619135349988937, -0.013517136685550213, -0.008335678838193417, 0.014230670407414436, -0.00639179814606905, 0.009722735732793808, -0.0012970316456630826, -0.02225959673523903, -0.0044812606647610664, -0.020499100908637047, 0.007202026434242725, -0.0038510835729539394, 0.022633034735918045, -0.003841080702841282, 0.00904921256005764, -0.019778897985816002, 0.013003658503293991, 0.003102539572864771, 0.0028458007145673037, -0.023606641218066216, -0.017058132216334343, -0.014964209869503975, -0.0032942602410912514, -0.004788013640791178, -0.04638638347387314, 0.01348379347473383, 0.0074554309248924255, -0.006815250962972641, 0.014804164879024029, -0.03601013123989105, -0.01385723240673542, -0.009249269030988216, -0.005128109361976385, 0.009522679261863232, -0.01235681027173996, -0.02249966375529766, -0.0004667979956138879, 0.005951674655079842, -0.007908891886472702, 0.0022256262600421906, -0.02440686710178852, -0.0016271244967356324, -0.0024256824981421232, 0.002717431169003248, -0.003507653484120965, -0.008789139799773693, 0.004294541664421558, 0.0006264262483455241, -0.017311537638306618, -0.003961114678531885, -0.0009269274887628853, -0.008309004828333855, 0.0021456037648022175, -0.024380192160606384, 0.0002698675962164998, -0.016017839312553406, 0.010309567674994469, 0.004571286030113697, -0.027954531833529472, 0.01436404138803482, -0.0014762487262487411, -0.005668261554092169, 0.00019276257080491632, -0.022366292774677277, -0.16708700358867645, 0.02832796983420849, 0.001207006280310452, 0.0027741137892007828, 0.024646934121847153, 0.01639127917587757, 0.02447355166077614, -0.002198952017351985, 0.00809561088681221, -0.018751943483948708, -0.028007879853248596, 0.005414856597781181, -0.025500508025288582, -0.038624200969934464, -0.030621949583292007, -0.0025473833084106445, 0.0022406303323805332, -0.006095048040151596, 0.031235454604029655, 0.03838413208723068, 0.040224649012088776, -0.013843894936144352, 0.038624200969934464, -0.012476843781769276, 0.021966179832816124, 0.010229544714093208, -0.008309004828333855, -0.0033859526738524437, -0.0014128974871709943, -0.033689480274915695, 0.008015588857233524, 0.023179855197668076, 0.01403061393648386, 0.005178123712539673, 0.018698593601584435, -0.0018871976062655449, 0.0032442461233586073, -0.017925042659044266, 0.002278974512591958, -0.00021506051416508853, 0.0072220321744680405, 0.027447722852230072, 0.00518479198217392, -0.023299889639019966, 0.015004221349954605, 0.010629657655954361, 0.007762183900922537, -0.030141813680529594, -0.0009269274887628853, -0.012130079790949821, 0.02806122787296772, -0.014497412368655205, -0.008068936876952648, 0.009982808493077755, 0.02678086794912815, 0.005724944174289703, -0.02467360906302929, -0.0011128131300210953, -0.025047047063708305, -0.014790828339755535, 0.000535984116140753, -0.021499382331967354, 0.010756359435617924, 0.0009911122033372521, -0.015110918320715427, -0.004667980130761862, -0.022099550813436508, 0.004424578044563532, -0.024380192160606384, 0.007908891886472702, 0.0039311060681939125, -0.006868598982691765, 0.011796652339398861, 0.007528785150498152, -0.017951717600226402, 0.02308649569749832, -0.009982808493077755, 0.01860523410141468, -0.009736072272062302, -0.016604671254754066, -0.023326562717556953, 0.031928982585668564, -0.011343191377818584, -0.018071752041578293, 0.003427630988880992, -0.00288581196218729, 0.005574902053922415, 0.009222595021128654, 0.003984454553574324, -0.03406291827559471, 0.027421047911047935, -0.013577152974903584, -0.0025390477385371923, -0.017311537638306618, 0.0036276872269809246, 0.009602702222764492, -0.0021506049670279026, -0.001362883485853672, 0.00019349194189999253, -0.026087339967489243, 0.010529628954827785, 0.0033609457314014435, 0.0008685776847414672, -0.020845865830779076, 0.030915364623069763, 0.023886719718575478, -0.0036777013447135687, 0.016978111118078232, 0.05156117305159569, 0.029101520776748657, -0.007582133170217276, -0.003427630988880992, -0.003464308101683855, 0.0073487344197928905, -0.0016196223441511393, 0.0501207672059536, 0.005031415726989508, 0.006405135616660118, -0.026100676506757736, -0.013597158715128899, 0.018458526581525803, -0.01805841363966465, -0.00705531844869256, 0.012230107560753822, -0.008048931136727333, -0.007662155665457249, -0.10797704756259918, -0.009142572060227394, -0.020725831389427185, 0.006128390785306692, 0.001304533681832254, 0.01747158169746399, -0.012850281782448292, 0.002017234219238162, 0.008782470598816872, 0.04627968743443489, -0.014710805378854275, -0.007028643973171711, 0.007582133170217276, 0.014310693368315697, -0.014604109339416027, 0.0005113938823342323, -0.021539393812417984, 0.003811072325333953, -0.007242037449032068, 0.0454527884721756, -0.006615194492042065, 0.009942797012627125, -0.0283012967556715, 0.002629073103889823, -0.01547101978212595, 0.018965335562825203, -0.026674171909689903, 0.008449044078588486, 0.00039740349166095257, 0.0075021106749773026, 0.014083962887525558, -0.00834901537746191, 0.010756359435617924, -0.010989759117364883, 0.007115335203707218, 0.01058964617550373, -0.021085932850837708, -0.015777772292494774, 0.0075154476799070835, -0.0011411544401198626, -0.0024890336208045483, 0.004624634515494108, -0.0024506894405931234, 0.00308920256793499, 0.021085932850837708, -0.011936691589653492, -0.04558615759015083, 0.013283737003803253, 0.016804728657007217, -0.016978111118078232, -0.016978111118078232, -0.0062650959007442, -0.028034554794430733, 0.006821919232606888, -0.0019238746026530862, -0.026220710948109627, 0.004831359256058931, -0.0016988113056868315, 0.004631303250789642, -0.013323748484253883, -0.004294541664421558, 0.013377097435295582, -0.012470175512135029, 0.010889730416238308, 0.018205121159553528, 0.010022819973528385, -0.012150085531175137, -0.01428401842713356, 0.021072596311569214, -0.025540519505739212, -0.0031092080753296614, 0.03544997423887253, -0.028167925775051117, 0.038277436047792435, 0.006248424760997295, 0.021392686292529106, -0.020565785467624664, 0.00401779729872942, -0.01688474975526333, 0.0007852209382690489, -0.012510186061263084, -0.02463359758257866, -0.01568441279232502, -0.02343326061964035, 0.017858358100056648, 0.03670366108417511, 0.023673327639698982, -0.007615475915372372, 0.0024540238082408905, -0.005074761342257261, 0.008215644396841526, 0.02526044100522995, 0.013223720714449883, 0.006318444386124611, -0.010562972165644169, 0.007795526646077633, 0.010669668205082417, 0.013217052444815636, -0.020299045369029045, 0.0210992693901062, -0.027847835794091225, -0.017738323658704758, -0.04457253962755203, 0.015604390762746334, -0.00788221787661314, -0.011936691589653492, 0.003837746335193515, -0.006338450126349926, -0.0023523285053670406, -0.0116166016086936, 0.0009119232418015599, -0.003254248993471265, -0.03617017716169357, 0.0019822244066745043, -0.027821160852909088, -0.006855261977761984, 0.017778335139155388, -0.022513000294566154, 0.0006997802411206067, -0.004457920789718628, 0.022913113236427307, 0.007622144650667906, -0.01895199902355671, -0.015417670831084251, 0.018431851640343666, -0.01895199902355671, -0.00941598229110241, 0.004464589525014162, -0.0026990927290171385, 0.044465843588113785, -0.01210340578109026, -0.03398289531469345, 0.019632190465927124, 8.898336818674579e-05, -0.011243163608014584, -0.021539393812417984, 0.019285425543785095, 0.0222195852547884, 0.016377940773963928, 0.01373719796538353, 0.032169051468372345, 0.0008339846390299499, -0.02408677712082863, -0.028461340814828873, 0.010542966425418854, -0.015484356321394444, 0.016177885234355927, -0.017498256638646126, -0.016044514253735542, -0.014804164879024029, 0.0027007597964257, -0.015164266340434551, 0.02447355166077614, 0.032675858587026596, -0.020259033888578415, -0.005985017400234938, 0.0015220949426293373, -0.01432402990758419, -0.008275661617517471, 0.0027107626665383577, -0.00017421568918507546, -0.027421047911047935, 0.029554981738328934, -0.03694372624158859, 0.013217052444815636, -0.03000844269990921, -0.009435988031327724, -0.020219022408127785, -0.028888128697872162, -0.014750816859304905, -0.0007547956774942577, -0.04059809073805809, -0.015324311330914497, -0.004694654140621424, 0.03817074000835419, -0.004921384621411562, 0.033342715352773666, 0.025193754583597183, -0.04291874170303345, 0.00042407764703966677, -0.011796652339398861, 0.02814125083386898, 0.026727519929409027, -0.008789139799773693, -0.0385441780090332, 0.014524086378514767, 0.054121892899274826, 0.0091292355209589, -0.01206339430063963, 0.0012420160928741097, -0.007495442405343056, -0.004211185034364462, -0.0007314558024518192, -0.006848593708127737, -0.016484638676047325, -0.007035312708467245, 0.006968627218157053, 0.00041574196075089276, -0.0010302899172529578, -0.0109564159065485, 0.016524650156497955, -0.007335396949201822, 0.0237400121986866, -0.02164608985185623, -0.009989477694034576, -0.02233961783349514, -0.026060665026307106, -0.009836100973188877, -0.021966179832816124, -0.019672201946377754, -0.014177322387695312, 0.04587957635521889, -0.03670366108417511, 0.017818346619606018, 0.010829713195562363, 0.013557147234678268, -0.0458528995513916, 0.010136185213923454, 0.012443500570952892, -0.00045221057371236384, -0.016511311754584312, 0.02148604579269886, 0.00023756684095133096, 0.015084244310855865, 0.03256916254758835, -0.004274535924196243, 0.009856106713414192, 0.016551323235034943, 0.01789836958050728, -0.021846147254109383, -0.01645796373486519, 0.006618528626859188, -0.005661592818796635, 0.005411522462964058, -0.0017871694872155786, -0.014137310907244682, 0.007628812920302153, -0.026834215968847275, 0.016511311754584312, -0.003861086443066597, -0.014697468839585781, 0.0691928043961525, 0.003000844269990921, -0.0021972849499434233, -0.009002532809972763, 0.02207287773489952, 0.016604671254754066, 0.0229264497756958, -0.0019305432215332985, -0.006485158111900091, -0.011423214338719845, 0.027767812833189964, -0.0008385692490264773, 0.00048180221347138286, -0.029261566698551178, 0.012130079790949821, 0.018418515101075172, -0.015337648801505566, 0.005774958059191704, -0.019312100484967232, 0.01377720944583416, 0.009155909530818462, 0.022059539332985878, 0.01588446833193302, -0.00871578510850668, -0.02315318025648594, 0.00820897612720728, 0.0074354251846671104, 0.0005889157182537019, -0.0237400121986866, -0.00730872293934226, 0.016484638676047325, -0.012556865811347961, 0.0032342432532459497, -0.031128758564591408, -0.004571286030113697, 0.024820316582918167, -0.012296793051064014, -0.00920258928090334, 0.018165111541748047, 0.007355402689427137, 0.008535735309123993, -0.008042262867093086, -0.034969840198755264, -0.03248913958668709, -0.02105925790965557, 0.023633316159248352, 0.01747158169746399, -0.0020922552794218063, -0.05601575970649719], "4a21db87-f1d9-4f48-97ed-ef89e1c22707": [0.0055402107536792755, -0.008955316618084908, -9.330222383141518e-05, -0.004063500091433525, -0.009063947945833206, 0.015303474850952625, 0.013395632617175579, -0.03753221407532692, -0.0035848424304276705, 0.004178921226412058, 0.026397475972771645, -0.008547947742044926, -0.0012713290052488446, 0.015846632421016693, -0.01674284227192402, -0.0214275810867548, 0.023776737973093987, 0.008615843020379543, 0.013158001005649567, -0.005818579345941544, 0.002167539671063423, 0.014991158619523048, -0.0062802634201943874, -0.020463474094867706, -0.010421842336654663, 0.0009530724491924047, 0.012587685137987137, -0.01906484365463257, 0.0214275810867548, -0.01246547419577837, 0.01671568490564823, -0.0013332830276340246, -0.014352948404848576, -0.0034100133925676346, -0.03337705507874489, -0.0026971185579895973, -0.01865747570991516, -0.006283658090978861, 0.019132738932967186, 0.0037206318229436874, 0.03210063278675079, -0.0011032895417883992, -0.004223052877932787, 0.019431475549936295, -0.0006908290088176727, 0.0297650545835495, 0.00875842198729515, -0.021685579791665077, -0.021672001108527184, 0.01781558059155941, 0.03315979242324829, 0.01769336871802807, -0.025827160105109215, -0.0032046318519860506, -0.007692473940551281, 0.028108423575758934, -0.0012017369735985994, -0.004647395107895136, 0.005594526883214712, -0.0039412896148860455, -0.01251978985965252, 0.0039412896148860455, -0.005550395231693983, 0.000827891519293189, -0.012193895876407623, 0.02881452813744545, 0.018127895891666412, 0.012832106091082096, 0.0014385198010131717, 0.0024476053658872843, 0.016321895644068718, -0.01130447443574667, -0.004715289920568466, 0.023736001923680305, 0.05887832120060921, -0.01526273787021637, -0.01720452681183815, 0.024414949119091034, 0.00041649179183878005, 0.000330350361764431, -0.0027073028031736612, -0.03674463555216789, -0.02074863202869892, -0.003292894922196865, 0.0325080007314682, -0.01488252729177475, -0.0044912369921803474, 0.024374211207032204, -0.0038598161190748215, -0.0322907380759716, 0.011963053606450558, 0.028407160192728043, 0.006731763482093811, 0.005981526803225279, 0.00529918447136879, 0.02634315937757492, -0.008140579797327518, 0.00433847401291132, -0.0010888619581237435, -0.01876610703766346, 0.0008448651642538607, 0.00044895397149957716, -4.4476360926637426e-05, 0.0027667107060551643, -0.014217158779501915, 0.006870947778224945, 0.009091106243431568, -0.004820526577532291, 0.012553737498819828, -0.02081652730703354, -0.0010124803520739079, 0.03090568631887436, 0.00664350064471364, -0.03449052944779396, 0.006025658454746008, -0.026519685983657837, 0.009851526468992233, -0.0046609737910330296, -0.027348002418875694, 0.012804947793483734, -0.011589632369577885, -0.019947474822402, 0.007821474224328995, -0.007495579309761524, 0.006986368913203478, -0.0014402172528207302, -0.009478106163442135, -0.024428527802228928, 0.004966500215232372, -0.036636002361774445, 0.06284337490797043, 0.005801605526357889, 0.025759264826774597, -0.005777842365205288, -0.014773895964026451, 0.001611651387065649, -0.021305369213223457, 0.013042579405009747, -0.01398631650954485, -0.019404316321015358, 0.03707052767276764, 0.0018212763825431466, -0.011019316501915455, 0.00938305351883173, 0.005733710713684559, 0.011990210972726345, 0.0035305265337228775, 0.005686184391379356, -0.004192500375211239, -0.0011270527029410005, 0.015330632217228413, -0.008256000466644764, -0.010659473948180676, -0.029031790792942047, -0.004192500375211239, -0.00023932896147016436, 0.0031095792073756456, 0.005611500237137079, 0.030552633106708527, 0.0037749477196484804, 0.016539158299565315, 0.018779685720801353, 0.0024408160243183374, 0.0019265132723376155, -0.014244317077100277, 0.02729368582367897, 0.022921264171600342, 0.0006971941329538822, -0.021902844309806824, -0.0058830794878304005, 0.009831158444285393, 0.015507158823311329, -0.026424633339047432, 0.008323894813656807, 0.027307264506816864, -0.004633815959095955, -0.006524684838950634, 0.012105632573366165, -0.033594317734241486, 0.0023220002185553312, 0.009165789932012558, 0.00600528996437788, 0.027497369796037674, 0.05219747871160507, -0.01705515943467617, 0.01766621135175228, 0.005723526701331139, 0.0059645529836416245, 0.010863158851861954, -0.016349053010344505, 0.008656579069793224, 0.035115160048007965, 0.005231289658695459, -0.012207474559545517, -0.6226762533187866, -0.0009293092880398035, -0.0014206974301487207, -0.021590527147054672, 0.0008542006835341454, 0.015181263908743858, -0.004423342179507017, -0.015941685065627098, -0.01270989514887333, 0.05336526781320572, 0.015113369561731815, 0.019309263676404953, 0.01398631650954485, -0.012159948237240314, 0.01701442152261734, -0.030824212357401848, 0.015928106382489204, -0.02524326555430889, -0.017299579456448555, 0.014352948404848576, 0.0010786777129396796, 0.027225790545344353, -0.006609553005546331, -0.009369473904371262, -0.006168237421661615, 0.0068743424490094185, -0.0006458487478084862, -0.019594421610236168, 0.031150106340646744, 0.02539263293147087, 0.00883310567587614, 0.0030399870593100786, 0.0010684934677556157, -0.004494631662964821, 0.045652423053979874, -0.018562423065304756, 0.0009581645135767758, 0.012648790143430233, 0.008629421703517437, 0.05181726813316345, -0.00024017764371819794, 0.005136237014085054, 0.03459915891289711, 0.02351873740553856, 0.02345084398984909, -0.006986368913203478, 0.028271369636058807, 0.006351552903652191, 0.0011448750738054514, 0.008860263973474503, -0.0077535794116556644, -0.016960106790065765, -0.004436921328306198, -0.023124948143959045, 0.021251054480671883, -0.0011482698610052466, 0.018643895164132118, -0.005696368869394064, 0.007407316472381353, -0.017992107197642326, -0.01094463188201189, 0.013354895636439323, 0.016702106222510338, -0.02256821282207966, -0.004494631662964821, 0.01876610703766346, -0.003079026471823454, -0.004029552917927504, -0.015167685225605965, -0.023613790050148964, 0.02520252764225006, 0.003662921255454421, -0.019635159522294998, -0.0240618959069252, 0.008099842816591263, 0.042502108961343765, 0.022011475637555122, -0.002568118507042527, 0.006388895213603973, 0.015846632421016693, 0.009926211088895798, -0.0032810133416205645, -0.02043631672859192, -0.010822421871125698, 0.02484947443008423, 0.004087263252586126, -0.013293790630996227, 0.002907592337578535, 0.0031706844456493855, 0.001724526402540505, 0.004521789960563183, 0.0057303160429000854, 0.005170184653252363, -0.019214211031794548, 0.000855898077134043, 0.00472886860370636, 0.0016880329931154847, -0.0072851055301725864, 0.01644410565495491, -0.02641105465590954, -0.012811738066375256, -0.0011474210768938065, 0.010951422154903412, -0.007054263725876808, -0.002125105354934931, -0.010897105559706688, -0.0065450528636574745, 0.026655474677681923, 0.0037443949840962887, -0.009532421827316284, -0.01868463307619095, -0.04377852752804756, -0.004467473831027746, -0.015384947881102562, 0.002675052732229233, -0.02949347533285618, -0.00864300038665533, -0.0023067237343639135, 0.00938305351883173, -0.011175474151968956, 0.03223642334342003, -0.005845737177878618, -0.0060154739767313, 0.010591579601168633, 0.015602211467921734, 0.009410210885107517, 0.012506211176514626, -0.0037545792292803526, -0.020843684673309326, 0.0016625724965706468, 0.022242316976189613, -0.006511105690151453, 0.014407264068722725, -0.02157694846391678, -0.0020860659424215555, 0.01368757989257574, 0.008873842656612396, -0.007441263645887375, 0.0025409606751054525, -0.002547750249505043, -0.015738001093268394, -0.012669159099459648, 0.001693973783403635, -0.01899694837629795, -0.011413105763494968, -0.017788421362638474, -0.007624579593539238, -0.001884079072624445, -0.022215159609913826, -0.008873842656612396, -0.0045353686437010765, -0.012268579564988613, -0.02256821282207966, 0.009308368898928165, -0.012675948441028595, -0.028108423575758934, 0.005204131826758385, -0.017910633236169815, -0.008710895664989948, -0.010340369306504726, -0.009430579841136932, 0.03424610570073128, -0.016919368878006935, 0.008235632441937923, -0.0011805198155343533, -0.016267579048871994, -0.017448948696255684, 0.05317516252398491, -0.01720452681183815, -0.050187792629003525, 0.00433847401291132, 0.0059509738348424435, -0.009186158888041973, 0.03970484435558319, 0.009097895585000515, 0.027076423168182373, -0.011019316501915455, 0.013748684898018837, -0.011548895388841629, -0.008425737731158733, 0.009070737287402153, 0.004966500215232372, -0.009321947582066059, -0.032372213900089264, 0.009878684766590595, 0.015860211104154587, 0.00831710547208786, -0.008446105755865574, 0.001233986928127706, 0.009233685210347176, 0.030769895762205124, 0.005845737177878618, -0.0035916317719966173, 0.0214275810867548, 0.0030247108079493046, 0.03723347559571266, 0.022323790937662125, 0.01598242297768593, -0.0023118159733712673, 0.03196484595537186, 0.012560526840388775, 0.003019618568941951, -0.009091106243431568, -0.0158330537378788, 0.016878632828593254, -0.0080726845189929, 0.018589580431580544, -0.0279726330190897, -0.0015547896036878228, -0.0325080007314682, -0.00964784249663353, -0.0010090855648741126, -0.023287896066904068, -0.009919421747326851, 0.020015370100736618, 0.019811686128377914, -0.008167737163603306, 0.021441159769892693, 0.0028617633506655693, 0.001138934283517301, -0.0002367829147260636, -0.006629921495914459, -0.0006314211059361696, 0.019933896139264107, 0.027741791680455208, 0.015846632421016693, 0.007427684497088194, 0.0049087898805737495, -0.00639568455517292, -0.03962337225675583, 0.01431221142411232, 0.0016871843254193664, 0.013409211300313473, -0.022092949599027634, 0.023613790050148964, 0.005153210833668709, 0.04722758010029793, -0.023885369300842285, 0.0121395792812109, -0.010897105559706688, -0.011311263777315617, 0.009512052871286869, 0.024156948551535606, -0.004114421084523201, 0.03003663383424282, 0.011983421631157398, 0.023722423240542412, 0.015738001093268394, -0.024034738540649414, 0.012078474275767803, 0.021142423152923584, 0.0025969739072024822, -0.021685579791665077, 0.0039548687636852264, -0.007040684577077627, -0.008235632441937923, 0.010482948273420334, -0.0010837698355317116, 0.011969842948019505, 0.016498422250151634, 0.006375316064804792, 0.01436652708798647, -0.00013324343308340758, 0.018032843247056007, 0.03253515809774399, 0.005509658250957727, -0.023002738133072853, 0.001413907972164452, -0.0010311513906344771, 0.00197403971105814, -0.030634107068181038, -0.0540442131459713, -0.028189895674586296, 0.031883370131254196, 0.03959621116518974, 0.030878528952598572, 0.009512052871286869, 0.02664189599454403, 0.005754079204052687, -0.01876610703766346, -0.018372317776083946, -0.00862263236194849, 0.023722423240542412, 0.007291895337402821, 0.011073632165789604, -0.0053331321105360985, -0.017109474167227745, -0.005961158312857151, -0.010931053198873997, 0.005397631786763668, -0.02349158003926277, -0.00964784249663353, -0.02078936994075775, -0.0017669606022536755, 0.008928158320486546, 0.005866105668246746, 0.030579790472984314, -0.029629265889525414, 0.021794211119413376, 0.0016354145482182503, -0.004077079240232706, -0.02489021234214306, -0.0218485277146101, -0.006925263442099094, 0.05043221265077591, 0.009376264177262783, 0.03329557925462723, -0.02100663259625435, -0.005231289658695459, -0.03367578983306885, 0.011969842948019505, 0.007488789968192577, -0.0080726845189929, -0.032453685998916626, -0.007882579229772091, -0.0008499572868458927, -0.0033013818319886923, -0.006225947756320238, 0.016077473759651184, -0.01914631761610508, 0.0002639408048707992, -0.027198633179068565, -0.01130447443574667, -0.013273421674966812, 0.042312003672122955, 0.018032843247056007, 0.007570263464003801, -0.004885026719421148, -0.005638658069074154, -0.013008632697165012, -0.02218800224363804, -0.03552252799272537, -0.00594757916405797, -0.0032165134325623512, 0.020925158634781837, 0.012173526920378208, 0.02389894798398018, 0.021223895251750946, 0.021590527147054672, -0.00921331625431776, 0.024333475157618523, 0.0038700001314282417, 0.019472211599349976, -0.02188926376402378, 0.009546000510454178, 0.0035542896948754787, 0.00824242178350687, 0.011318053118884563, 0.022242316976189613, 0.009159000590443611, 0.02402115985751152, 0.01317157968878746, 0.015846632421016693, 0.027538107708096504, -0.005285605788230896, 0.02737515978515148, 0.005536816082894802, 0.02531115896999836, -0.001763565931469202, 0.02725294977426529, 0.003696868661791086, 0.030579790472984314, 0.0181550532579422, -0.020259790122509003, 0.030389685183763504, 0.004800158087164164, 0.015738001093268394, -0.017571158707141876, -0.03750505670905113, 0.00689810561016202, -0.02455073781311512, 0.03098716028034687, -0.009749684482812881, -0.00460665812715888, 0.005329736974090338, 0.0109785795211792, -0.029900843277573586, -0.01298147439956665, 0.01056442130357027, 0.004705105442553759, -0.008283158764243126, -0.032182108610868454, -0.029058950021862984, -0.024347053840756416, 0.008011579513549805, -0.007135737221688032, -0.00999410543590784, -0.004861263558268547, 0.00919294822961092, -0.008385000750422478, 0.02465936914086342, 0.00428076321259141, -0.027320843189954758, 0.0034507501404732466, 0.027429474517703056, -0.025718528777360916, -0.023315053433179855, -0.0013129145372658968, 0.02013758011162281, 0.013117264024913311, 0.004022763576358557, 0.0022150659933686256, -0.012180316261947155, 0.00696600042283535, 0.0005614046240225434, -0.040329474955797195, 0.005523237399756908, -0.00422644754871726, 0.005390842445194721, 0.029412001371383667, 0.009546000510454178, -0.021780632436275482, -0.03603852912783623, 0.03386589512228966, -0.00312994746491313, 0.03098716028034687, 0.013714737258851528, -0.0222694743424654, 0.019051264971494675, -0.0072036320343613625, -0.005380658432841301, 0.020273368805646896, 0.008059105835855007, -0.02562347613275051, 0.017462527379393578, 0.010462579317390919, -0.015846632421016693, -0.02588147483766079, -0.00510907918214798, 0.004969894886016846, -0.009885474108159542, 0.015887370333075523, 0.010435421951115131, -0.0162540003657341, 0.03182905539870262, -0.008772000670433044, 0.024238422513008118, 0.009206526912748814, 0.005672605708241463, 0.030253896489739418, 0.012044526636600494, 0.04701031744480133, 0.007712842430919409, -0.02710358053445816, -0.006225947756320238, -0.018372317776083946, 0.019662316888570786, 0.017530422657728195, -0.003808894893154502, -0.006270079407840967, 0.0018229738343507051, -0.03354000300168991, -0.021346107125282288, 0.001174579025246203, 0.014393685385584831, 0.013422789983451366, 0.011922316625714302, -0.04244779050350189, -0.01891547441482544, -0.007787526585161686, -0.026709791272878647, 0.014230737462639809, -0.04448463395237923, -0.014135684818029404, -0.0038835792802274227, -0.0019112369045615196, 0.012872843071818352, -0.019458632916212082, -0.0054146056063473225, -0.032372213900089264, 0.00045871385373175144, -0.00159892113879323, 0.0004315559344831854, -0.006745342630892992, 0.011664316058158875, -0.0005495230434462428, -0.03277958184480667, -0.002642802894115448, 0.018793264403939247, -0.016186106950044632, -0.006351552903652191, 0.03867284581065178, 0.017978526651859283, 0.02355947531759739, 0.00964784249663353, -0.0005109079065732658, 0.018901895731687546, -0.005893263500183821, -0.0074141058139503, 0.02233736962080002, -0.003944684285670519, 0.009335527196526527, -0.017761263996362686, -0.008065895177423954, -0.010048422031104565, -0.0003087088989559561, 0.02127821184694767, -0.00760421110317111, -0.013232684694230556, -0.0074684214778244495, 0.022541053593158722, -0.006314211059361696, -0.020585685968399048, -0.007556684780865908, -0.006813237443566322, 0.0025358686689287424, -0.008588684722781181, 0.02161768637597561, -0.017598316073417664, -0.00268353964202106, -4.025945963803679e-05, -0.038537055253982544, -0.005628474056720734, 0.015154106542468071, -0.004922368563711643, -0.00905715860426426, -0.01766621135175228, 0.019309263676404953, 0.02687273919582367, -0.0054587372578680515, 0.005499474238604307, -0.024048317223787308, 0.015059053897857666, -0.0035508950240910053, 0.019662316888570786, 0.023165686056017876, -0.011671106331050396, 0.0020877632778137922, -0.051219791173934937, -0.001267085550352931, -0.010822421871125698, 0.0014631316298618913, 0.01785631664097309, 0.02478158101439476, -0.004467473831027746, -0.01368757989257574, 0.011379159055650234, 0.003072237130254507, -0.005231289658695459, 0.015900949016213417, 0.03620147705078125, 0.009091106243431568, -0.030199581757187843, -0.019689474254846573, -0.006443210877478123, -0.013375263661146164, 0.05423431843519211, 0.022215159609913826, 0.040519580245018005, 0.019879579544067383, 0.024605054408311844, -0.0004735658294521272, -0.006809842307120562, -0.0056488425470888615, 0.01436652708798647, 0.037477895617485046, -0.005462131928652525, 0.007488789968192577, -0.020721474662423134, -0.015615790151059628, 0.007135737221688032, -0.009226894937455654, -0.023994000628590584, 0.0022761712316423655, 0.013545000925660133, 0.0027056054677814245, -0.012669159099459648, 0.013898053206503391, -0.04087263345718384, 0.018820421770215034, -0.007251158356666565, 0.005967947654426098, -0.021264633163809776, -0.0031265527941286564, -0.006908290088176727, 0.006803052965551615, 0.00848684273660183, 0.02619379200041294, 0.026546843349933624, 0.0066672638058662415, -0.0157244224101305, -0.01406779047101736, -0.028108423575758934, 0.018182212486863136, -0.0033319343347102404, 0.014244317077100277, -0.009315158240497112, -0.024754421785473824, 0.018209369853138924, 0.000408641470130533, -0.011963053606450558, -0.024985264986753464, 0.004260395187884569, 0.02431989647448063, 0.021074527874588966, 0.00837142113596201, 0.004111026413738728, -0.0019774343818426132, -0.026438212022185326, 0.00010353948164265603, 0.001488592242822051, -0.014706000685691833, -0.021020211279392242, -0.006663868669420481, 0.013504263944923878, 0.012187105603516102, -0.03533242270350456, -0.006616342347115278, -0.019363580271601677, -0.009865106083452702, -0.01845378987491131, 0.008724474348127842, -0.01328700128942728, -0.007298684678971767, -0.02794547565281391, -0.011779737658798695, 0.005031000357121229, -0.002269381657242775, 0.0007621184922754765, 0.012832106091082096, 0.02078936994075775, 0.04888421297073364, -0.03022673912346363, 0.018861159682273865, -0.004494631662964821, 0.014434422366321087, -0.009715737774968147, 0.009471316821873188, -0.001169486902654171, -0.004419947508722544, -0.0035475001204758883, -0.012804947793483734, 0.0021624474320560694, -0.04339831694960594, -0.013069737702608109, 0.026207370683550835, -0.02444210648536682, -0.012241422198712826, -0.010578000918030739, 0.01334131695330143, 0.010883526876568794, -0.008412158116698265, -0.0163626316934824, 0.0028346055187284946, -0.0006416052929125726, 0.020843684673309326, 0.04255642369389534, 0.0063685267232358456, -0.00900284294039011, 0.011793316341936588, 0.00026542600244283676, -0.013585737906396389, -0.025256844237446785, -0.005923816002905369, 0.00019381826859898865, 0.01777484267950058, -0.00306375022046268, -0.01016384270042181, -0.010747737251222134, -0.0079165268689394, -0.0237495806068182, 0.011270526796579361, 0.02138684317469597, -0.01379621122032404, -0.019173474982380867, 0.047254741191864014, -0.012662368826568127, 0.008093053475022316, -0.006762315984815359, 0.006993158254772425, -0.004599868785589933, 0.010937842540442944, -0.015371369197964668, -0.004966500215232372, -0.010421842336654663, 0.04586968570947647, 0.003537316108122468, -0.0022812632378190756, -0.01720452681183815, -0.023464422672986984, -0.031041475012898445, 0.0033862502314150333, -0.017000842839479446, 0.020151158794760704, 0.04820526763796806, -0.00026775989681482315, 0.0009700460941530764, 0.01663421094417572, -0.025555580854415894, 0.03003663383424282, -0.03753221407532692, -0.0059645529836416245, -0.016457684338092804, 0.024116212502121925, -0.013368474319577217, -0.0016430527903139591, -0.011901947669684887, -0.010415052995085716, -0.011942684650421143, -0.006993158254772425, 0.022364526987075806, 0.022432422265410423, 0.007957263849675655, 0.0016125000547617674, 0.005394237115979195, -0.019024105742573738, 0.027388738468289375, 0.020911579951643944, 0.005872895009815693, -0.021563369780778885, 0.003683289745822549, 0.010516894981265068, 0.0219571590423584, -0.00826278980821371, -0.002588486997410655, -0.006769105792045593, -0.00612750044092536, 0.0003997302846983075, 0.0009734408231452107, -0.007651737425476313, -0.003662921255454421, -0.039107371121644974, 0.014162843115627766, -0.0032725264318287373, -0.0011245066998526454, 0.01290679071098566, -0.020694317296147346, -0.010645895265042782, -0.021672001108527184, 0.02066715992987156, -0.02393968589603901, 0.01857600174844265, 0.013320947997272015, -0.017720527946949005, -0.03090568631887436, -0.005767658352851868, 0.027348002418875694, -0.029873685911297798, 0.01796494796872139, -0.024238422513008118, -0.01610463298857212, -0.004155158065259457, 0.005944184493273497, -0.001002296106889844, 0.010021263733506203, 0.00013875987497158349, 0.029792211949825287, 0.013483895920217037, -1.6748253983678296e-05, -0.03622863441705704, -0.009688579477369785, -0.020911579951643944, 0.011813685297966003, 0.01553431712090969, 0.01713663339614868, -0.007142526563256979, 0.011141527444124222, -0.00062463158974424, -0.013470316305756569, 0.009050369262695312, 0.19684043526649475, -0.0003698141663335264, 0.02588147483766079, 0.014420842751860619, -0.01777484267950058, 0.01021815836429596, 0.02451000176370144, -0.03098716028034687, -0.02017831616103649, 0.019703052937984467, -0.008785579353570938, 0.014801053330302238, -0.0063821058720350266, 0.0014436119236052036, -0.009871895425021648, 0.01735389605164528, -0.014909685589373112, -0.02832568623125553, -0.0181550532579422, 0.01094463188201189, 0.00031825658516027033, -0.005988316144794226, -0.039378948509693146, -0.026927053928375244, 0.03772231936454773, 0.012743842788040638, 0.010931053198873997, 0.0051803686656057835, 0.05442442372441292, -0.025188948959112167, -0.02112884260714054, -0.010157053358852863, 0.002999250078573823, 0.0006488191429525614, -0.039107371121644974, -0.00951884314417839, 0.031611792743206024, -0.006823421455919743, 0.026601159945130348, -0.01906484365463257, 0.009233685210347176, -0.0013561974046751857, -0.029602106660604477, -0.011739000678062439, -0.014420842751860619, 0.010625527240335941, -0.007407316472381353, -0.023382948711514473, 0.0006301480461843312, 0.028950316831469536, -0.019662316888570786, -0.012078474275767803, 0.0017398027703166008, 0.007801105733960867, -0.007434474304318428, -0.022283054888248444, -0.009498474188148975, -0.0017134934896603227, 0.006249710917472839, 0.002082671271637082, 0.004576105624437332, 0.01796494796872139, -0.012173526920378208, 0.023192843422293663, -0.035685475915670395, 0.01488252729177475, -0.03185621276497841, 0.01488252729177475, 0.000868628325406462, -0.03576694801449776, -0.00951884314417839, 0.026818422600626945, -0.007407316472381353, -0.013755474239587784, -0.004820526577532291, -0.03307831659913063, 0.027429474517703056, 0.008846684359014034, 0.022391686215996742, 0.017041580751538277, -0.024007581174373627, -0.002753131790086627, -0.004912184551358223, 0.013898053206503391, -0.03810252994298935, -0.026234528049826622, 0.0108699481934309, -0.005713342688977718, -0.014896105974912643, -0.029710737988352776, -0.021183159202337265, -0.025338318198919296, -0.015099790878593922, -0.02275831811130047, 0.00403634225949645, 0.023192843422293663, -0.027239369228482246, 0.02070789597928524, -0.012567316181957722, 0.03052547574043274, -0.018413053825497627, 0.02455073781311512, -0.007061053067445755, -0.016226842999458313, 0.005421394947916269, 0.00850721076130867, -0.004935947712510824, 0.01558863278478384, 0.015140526928007603, -0.008873842656612396, 0.00016146218695212156, -0.003223302774131298, -0.005095500499010086, 0.0014979277038946748, 0.020531369373202324, -0.011888368986546993, -0.02188926376402378, -0.03617431968450546, 0.013850526884198189, 0.006769105792045593, 0.008588684722781181, -0.006599368993192911, -0.013008632697165012, 0.00516678998246789, 0.014149264432489872, -0.007638158276677132, -0.024605054408311844, -0.012214263901114464, -0.0036153949331492186, -0.007889368571341038, -0.001200039521791041, -0.029167581349611282, 0.008120210841298103, -0.0054892897605896, 0.002233736915513873, -0.015507158823311329, -0.003988815937191248, -0.04304526746273041, -0.007244369015097618, -0.0067487373016774654, 0.002272776560857892, -0.0002794292813632637, -0.011026105843484402, 0.011942684650421143, -0.0004181891563348472, -0.010618737898766994, -0.0016277764225378633, -0.021033789962530136, -0.007882579229772091, -0.006616342347115278, -0.011732211336493492, 0.0036934739910066128, 0.00027645888621918857, -0.011542106047272682, 0.009675000794231892, -0.026438212022185326, 0.005214316304773092, -0.0026003685779869556, 0.006025658454746008, 0.01406779047101736, -0.032182108610868454, 0.00894852727651596, -0.0011474210768938065, -0.020490633323788643, -0.021984316408634186, -0.01455663237720728, -0.17152927815914154, 0.021590527147054672, 0.0065145003609359264, -0.031313054263591766, 0.04000358283519745, -0.006456790026277304, 0.024156948551535606, -0.006402473896741867, -0.009613895788788795, -0.004616842605173588, -0.009729316458106041, -0.03324126452207565, -0.02615305408835411, -0.021142423152923584, -0.019825264811515808, 0.00017578373081050813, 0.015928106382489204, 0.004705105442553759, 0.057194530963897705, 0.022391686215996742, 0.03641873970627785, -0.038238316774368286, 0.013898053206503391, 0.02112884260714054, 6.492434476967901e-05, 0.0020877632778137922, -0.018752528354525566, 0.007420895155519247, 0.005988316144794226, -0.052659161388874054, 0.020110422745347023, 0.02326073870062828, -0.0012102237669751048, 0.016091054305434227, 0.013422789983451366, -0.03707052767276764, -0.007230789866298437, -0.021794211119413376, -0.010313211008906364, -0.02558273822069168, 0.01792421191930771, 0.04024800285696983, 0.010258895345032215, -0.013653632253408432, -0.00864300038665533, 0.00886705331504345, 0.01488252729177475, -0.012533369474112988, 0.012193895876407623, -0.019920317456126213, 0.0015607303939759731, -0.03489789739251137, -0.03079705499112606, 0.004114421084523201, 0.013755474239587784, -0.008914579637348652, -0.027891159057617188, 0.010177421383559704, -0.010768106207251549, -0.015154106542468071, 0.01151494774967432, -0.028841685503721237, 0.011419895105063915, 0.02332863211631775, -0.011127947829663754, -0.009613895788788795, -0.004776394926011562, 0.013001843355596066, -0.044593267142772675, 0.02135968580842018, 0.015181263908743858, -0.021223895251750946, -0.014420842751860619, 0.01132484246045351, -0.01807357929646969, 0.025066738948225975, -0.029140422120690346, 0.0010905592935159802, -0.024618633091449738, -0.03840126469731331, -0.006921868771314621, 0.04266505688428879, 0.012737053446471691, -0.015249159187078476, -0.0028651580214500427, -0.012927158735692501, 0.006076579447835684, 0.0027259739581495523, -0.007638158276677132, -0.03954189643263817, 0.032453685998916626, -0.0007018618634901941, -0.009274421259760857, -0.019662316888570786, 0.02256821282207966, 0.020042527467012405, 0.010795263573527336, -0.00978363212198019, -0.004739053081721067, -0.013674001209437847, -0.0001252870133612305, -0.008391790091991425, -0.0006946480716578662, -0.018942633643746376, 0.043832845985889435, 0.012193895876407623, -0.02645179070532322, 0.0006369375623762608, 0.026506107300519943, 0.01252658013254404, -0.008738053031265736, 0.009172579273581505, 0.00913863256573677, 0.03582126647233963, -0.005462131928652525, 0.02028694935142994, -0.01270989514887333, -0.029819371178746223, -0.03940610587596893, -0.0030111316591501236, 0.018643895164132118, 0.007312263827770948, 0.009668211452662945, 0.007366579491645098, -0.005984921474009752, 0.004253605380654335, -0.10504674166440964, -0.01743537001311779, -0.0072172111831605434, -0.007251158356666565, -0.006110526621341705, 0.007624579593539238, 0.0018501316662877798, 0.040709685534238815, 0.0024051712825894356, 0.01800568588078022, 0.004902000539004803, -0.007746790070086718, 0.0037613685708492994, 0.003038289723917842, -0.029710737988352776, 0.004260395187884569, -0.02131894789636135, -0.003737605409696698, -0.005889868829399347, 0.03041684441268444, -0.0032351843547075987, -0.008364631794393063, -0.006405869033187628, -0.0035950264427810907, -0.00529918447136879, -0.0016659671673551202, -0.046385686844587326, -0.00875163171440363, 0.00023062994296196848, -0.001367230317555368, 0.01617252640426159, 0.002293144818395376, 0.01553431712090969, -0.0026003685779869556, 0.01225500088185072, 0.028217054903507233, -0.030824212357401848, -0.013633264228701591, 0.030878528952598572, -0.009091106243431568, 0.0065178950317204, 0.0055537899024784565, 0.021210316568613052, -0.01807357929646969, 0.005821974016726017, -0.008378211408853531, -0.03389305621385574, 0.029330527409911156, 0.016050316393375397, 0.0010243619326502085, -0.00894852727651596, 0.016878632828593254, -0.023464422672986984, -0.0157244224101305, 0.022921264171600342, -0.03052547574043274, 0.004345263354480267, -0.01629473827779293, 0.00886705331504345, 0.004949526395648718, 0.003369276411831379, -0.0079165268689394, -0.006175026763230562, 0.004657579120248556, 0.005934000480920076, 0.03125873953104019, -0.019621580839157104, -0.0161453690379858, 0.02832568623125553, -0.022527474910020828, 0.007312263827770948, 0.01678358018398285, -0.015317053534090519, 0.024333475157618523, 0.00886705331504345, 0.022731158882379532, -0.02313852868974209, 0.0003029802755918354, -0.007332631852477789, -0.0007396283326670527, -0.010224947705864906, -0.013164790347218513, -0.020640000700950623, -0.01260126382112503, -0.0018433422083035111, 0.023885369300842285, 0.00211322377435863, 0.005794816184788942, -0.000327804300468415, -0.016579896211624146, 0.0217398963868618, 0.004810342565178871, 0.029140422120690346, 0.0023949870374053717, 0.010435421951115131, 0.008099842816591263, 0.005339921452105045, -0.00032483390532433987, -0.016878632828593254, -0.004192500375211239, -0.01640336960554123, -0.012268579564988613, -0.03582126647233963, 0.029058950021862984, -0.0023525527212768793, -0.013524631969630718, 0.007332631852477789, -0.020151158794760704, 0.02908610738813877, -0.01861673779785633, -0.008140579797327518, 0.016579896211624146, -0.0489656887948513, 0.018738947808742523, -0.01876610703766346, 0.005696368869394064, 0.007427684497088194, 0.0024662765208631754, 0.018440211191773415, -0.002354250056669116, 0.01701442152261734, 0.0003439293068367988, -0.0019655528012663126, -0.01018421072512865, -0.0064771585166454315, -0.009342316538095474, 0.006304026581346989, -0.004494631662964821, -0.013124053366482258, 0.03753221407532692, -0.03299684450030327, -0.06420126557350159, -0.007393737323582172, -0.023695264011621475, 0.0004778092261403799, 0.0182636845856905, 0.008337474428117275, 0.013090105727314949, 0.020884422585368156, -0.023315053433179855, 0.031611792743206024, 0.018969791010022163, -0.01251978985965252, -0.01252658013254404, 0.012954317033290863, -0.012621632777154446, 0.0032657370902597904, -0.02161768637597561, -0.03449052944779396, -0.008269579149782658, -0.0077400002628564835, 0.0016710592899471521, 0.01747610606253147, 0.01417642179876566, -0.038428422063589096, -0.0020860659424215555, 0.007685684598982334, -0.030009476467967033, 0.0005537664983421564, -0.00913863256573677, 0.002518894849345088, -0.028461474925279617, 0.0242791585624218, -0.04663010686635971, 0.004049921408295631, 0.007081421557813883, 0.006494131870567799, -0.006663868669420481, -0.020775791257619858, 0.0017228290671482682, -0.007169684860855341, -0.008962105959653854, -0.022215159609913826, -0.004980079364031553, 0.02516179159283638, -0.008364631794393063, 0.04266505688428879, 0.039867792278528214, -0.024387791752815247, 0.009471316821873188, 0.0009114869171753526, 0.01895621232688427, 0.026397475972771645, -0.010727369226515293, -0.03970484435558319, -0.01106005348265171, 0.039894949644804, 0.023396527394652367, -0.03408316150307655, -0.016118211671710014, -0.0009276118944399059, -0.003924316260963678, 0.01663421094417572, 0.0006377862300723791, -0.024754421785473824, -0.011189053766429424, 0.022541053593158722, 0.022975580766797066, -0.002907592337578535, -0.005764263682067394, -0.014950421638786793, 0.017951369285583496, 0.015330632217228413, -0.016036737710237503, -0.021834949031472206, -0.024156948551535606, -0.026981370523571968, 0.006599368993192911, 0.00478657940402627, -0.03859136998653412, -0.021902844309806824, 0.02870589680969715, 0.00037787665496580303, 0.037586528807878494, 0.029058950021862984, 0.01208526361733675, -0.025093896314501762, 0.007040684577077627, -0.00010677508544176817, -0.022731158882379532, -0.00999410543590784, 0.036826107650995255, 0.012506211176514626, 0.02503957971930504, 0.03875431790947914, -0.027076423168182373, 0.015941685065627098, -0.003832658054307103, 0.01808715984225273, -0.014162843115627766, -0.007067842409014702, -0.01239079050719738, 0.004861263558268547, -0.012750632129609585, -0.025569159537553787, -0.02081652730703354, -0.010068790055811405, -0.034354738891124725, 0.019200632348656654, -0.02535189688205719, 0.019010527059435844, 0.059964634478092194, -0.014149264432489872, 0.013158001005649567, -0.03090568631887436, 0.007420895155519247, 0.012933948077261448, 0.031313054263591766, 0.0049868687056005, -0.00883310567587614, -0.014855368994176388, 0.03174757957458496, -0.012594474479556084, 0.010211369022727013, -0.031313054263591766, -0.005672605708241463, 0.010503316298127174, -0.020870843902230263, 0.006724974140524864, -0.015059053897857666, 0.030118107795715332, 0.02043631672859192, 0.0069999475963413715, 0.02520252764225006, -0.011297685094177723, -0.037287790328264236, 0.006609553005546331, 0.009675000794231892, -0.0026512895710766315, -0.04217621311545372, -0.014352948404848576, -0.0032317896839231253, -0.02957494929432869, 0.008710895664989948, -0.01906484365463257, 0.0077535794116556644, 0.035495370626449585, -0.009159000590443611, 0.022323790937662125, 0.013029000721871853, 0.008418947458267212, 0.0035542896948754787, -0.01853526383638382, -0.025324737653136253, -0.0692526325583458, -0.01671568490564823, 0.027809685096144676, -0.007488789968192577, 0.01705515943467617, -0.044892001897096634], "ff5d255c-4788-45d5-b921-9cca84b2584a": [-0.018507415428757668, 0.0019113931339234114, 0.0058537498116493225, -0.02581333927810192, -0.016483383253216743, 0.015970444306731224, 0.023983391001820564, -0.01992146484553814, -0.005690856836736202, -0.028613710775971413, 0.01951943151652813, 0.028308719396591187, -0.013641420751810074, 0.007624777965247631, -0.003011787310242653, 0.009128938429057598, 0.01616452820599079, -0.004644182976335287, 0.020697806030511856, -0.016622016206383705, -0.0005203044274821877, 0.007603982929140329, -0.0337153822183609, -0.029445504769682884, -0.007208880968391895, 0.02057303674519062, 0.00687269726768136, -0.008865537121891975, -0.002907813061028719, 0.008643724955618382, -0.0014980955747887492, -0.015942716971039772, -0.0031122956424951553, 0.011201491579413414, -0.010896500200033188, 0.0012147657107561827, -0.012594746425747871, -0.01434844546020031, 0.01028651837259531, 0.006987069267779589, 0.039427030831575394, 0.00029740965692326427, -0.001626330427825451, 0.006411744747310877, 0.010459808632731438, 0.02469041757285595, 0.02137710340321064, -0.02435769885778427, -0.019061943516135216, 0.015374324284493923, 0.018396509811282158, 0.048299502581357956, -0.016524972394108772, -0.02348431572318077, 0.004082722123712301, 0.01707950234413147, -0.0005103402654640377, -0.002538704313337803, 0.00837339274585247, -0.0073891025967895985, -0.008276349864900112, -0.003971816040575504, -0.008220897056162357, -0.0007590119494125247, -0.025189492851495743, -0.01219964399933815, 0.006304305046796799, 0.023498179391026497, -0.009634946472942829, -0.0014764342922717333, 0.01129160262644291, 0.02665899507701397, 0.0034086222294718027, 0.02950095757842064, 0.018285604193806648, -0.03163589537143707, -0.015637725591659546, 0.0033566351048648357, 0.005503703374415636, 0.003718812018632889, 0.008643724955618382, -0.005888408049941063, -0.013655283488333225, 0.007153427693992853, 0.02421906590461731, -0.013752326369285583, -0.012636336497962475, 0.015152513049542904, -0.026700586080551147, -0.027324430644512177, 0.01752312481403351, 0.02753238007426262, 0.0017727608792483807, 0.023137735202908516, 0.006879629101604223, 0.033881738781929016, 0.00921211764216423, 0.04081335663795471, 0.006089424714446068, -0.03754163160920143, -0.015859536826610565, 0.020268045365810394, -0.012594746425747871, -0.0029857936315238476, -0.03867841884493828, 0.025411304086446762, 0.0235259048640728, -0.016802238300442696, 0.023622948676347733, -0.001304876757785678, -0.016940869390964508, 0.009773578494787216, 0.004463960882276297, -0.030166393145918846, 0.008733836002647877, 0.0016601220704615116, 0.028017591685056686, -0.015083196572959423, -0.0012294953921809793, 0.004450097680091858, -0.0012138992315158248, 0.004983832128345966, 0.021099839359521866, -0.024565648287534714, -0.0030551098752766848, -0.020586900413036346, -0.007978290319442749, -0.0302218459546566, 0.0066404882818460464, -0.021654369309544563, 0.042366039007902145, 0.015651589259505272, 0.028669163584709167, -0.0008083997527137399, -0.015429777093231678, 0.030249573290348053, -0.03593349829316139, 0.013225523754954338, -0.022305941209197044, -0.014847521670162678, 0.048160869628190994, 0.007950563915073872, -0.0035871113650500774, -0.030637742951512337, 0.014597984030842781, -0.009080417454242706, 0.024413151666522026, 0.013780052773654461, 0.012636336497962475, 0.013170070946216583, 0.020670078694820404, -0.012372935190796852, -0.013183933682739735, -0.005888408049941063, 0.01678837463259697, 0.017634032294154167, 0.005545292980968952, 0.007153427693992853, 0.020406678318977356, -0.021363241598010063, 0.00425947830080986, 0.03415900468826294, 0.00043387585901655257, -0.003178145969286561, -0.004987298045307398, 0.0383734256029129, -0.0028523600194603205, 0.0162754338234663, -0.016885416582226753, -0.009711193852126598, -0.01762016862630844, 0.02457951009273529, -0.03998156264424324, 0.014445488341152668, 0.001108192140236497, 0.01463957317173481, -0.0030915008392184973, 0.017356766387820244, -0.03210724517703056, 0.010404355823993683, -0.006789518054574728, 0.0009444326860830188, 0.013558241538703442, 0.025009270757436752, -0.0308041013777256, -0.014695025980472565, 0.021793000400066376, -0.00047438248293474317, -0.010043911635875702, 0.014695025980472565, 0.006134480237960815, 0.04036973416805267, 0.008428845554590225, -0.003529925597831607, -0.622847318649292, 0.013953343033790588, -0.0064325397834181786, -0.044916871935129166, 0.001666187192313373, 0.01545750442892313, 0.0022995637264102697, 0.01493070088326931, -0.025425167754292488, 0.020919617265462875, -0.0005653599509969354, 0.021695958450436592, -0.0018143504858016968, 0.009579493664205074, 0.009891415946185589, -0.024967681616544724, -0.008151580579578876, -0.015152513049542904, -0.018978765234351158, 0.027518516406416893, 0.010556851513683796, 0.028059182688593864, -0.020337361842393875, -0.006092890631407499, 0.003663359209895134, 0.02312387153506279, 0.026409458369016647, -0.001157579943537712, 0.013294839300215244, 0.012885874137282372, -0.019394662231206894, -0.025147903710603714, 0.020517583936452866, -0.005954258143901825, 0.03970429673790932, 0.01945011503994465, -0.010972748510539532, -0.00422482006251812, 0.03762481361627579, 0.032024066895246506, -0.009759715758264065, -0.0013066095998510718, 0.011735226027667522, -0.007680230773985386, 0.02068394236266613, -0.015013880096375942, 0.01294825877994299, 0.0031729473266750574, -0.009302228689193726, -0.02039281465113163, 0.0028194349724799395, 0.01470888964831829, 0.01172829419374466, -0.015097060240805149, 0.01330870296806097, 0.01752312481403351, 0.023026829585433006, -0.01791129633784294, 0.006345894653350115, -0.030970461666584015, -0.004782814998179674, 0.0037222779355943203, 0.008498161099851131, -0.0006676012999378145, -0.005465579219162464, 0.006498390343040228, -0.029556410387158394, 0.007160359527915716, 0.01032117661088705, -0.02287433296442032, 0.007486145477741957, -0.0012355606304481626, -0.006869231816381216, -0.012102602049708366, -0.0006364089786075056, 0.04053609073162079, 0.0010189475724473596, -0.016802238300442696, -0.0038678417913615704, 0.007021727040410042, 0.0014365774113684893, -0.004169367253780365, -0.025300398468971252, -0.017231997102499008, 0.044195983558893204, -0.0038505126722157, -0.0036806880962103605, 0.020628489553928375, 0.004082722123712301, -0.0016687866300344467, 0.0016826498322188854, 0.01312848087400198, 0.0013802580069750547, -0.017744937911629677, 0.0098844850435853, -0.008387255482375622, -0.003301182296127081, -0.0337153822183609, -0.014251402579247952, -0.023900212720036507, -0.0029338065069168806, -0.02650650031864643, -0.005164054222404957, 0.02661740593612194, -0.012969053350389004, 0.042837388813495636, -0.002401805017143488, 0.03407582640647888, 0.004058461170643568, -0.018341057002544403, -0.0296395905315876, -0.018451962620019913, -0.006370155140757561, -0.04427916556596756, -0.01871536299586296, -0.031081367284059525, 0.0424492172896862, -0.01545750442892313, 8.280031761387363e-05, 0.006002779584378004, 0.011859995312988758, 0.01154114119708538, -0.0009504978661425412, -0.009413134306669235, 0.03440854325890541, 0.003507397836074233, 0.029334599152207375, 0.0010588043369352818, -0.019963053986430168, -0.002878353698179126, 0.00952404085546732, -0.001623731106519699, 0.024967681616544724, -0.01545750442892313, 0.0031521525233983994, -0.03000003471970558, 0.01780039072036743, 0.004571401048451662, 0.010764800012111664, -0.029916854575276375, -0.020420541986823082, -0.017634032294154167, 0.015748631209135056, -0.022569341585040092, -0.025120176374912262, -0.02272183820605278, -0.0072989920154213905, 0.0031434879638254642, -0.033160850405693054, -0.008491230197250843, 0.0035351242404431105, 0.006630090996623039, -0.00017123257566709071, 0.03673756495118141, 0.020475994795560837, -0.018992628902196884, 0.0002824633556883782, -0.020559173077344894, -0.00788124743849039, -0.010231065563857555, -0.01391175389289856, 0.01889558508992195, -0.031913161277770996, -0.0048486655578017235, -0.02334568277001381, -0.019602609798312187, -0.01620611920952797, 0.02585492841899395, 0.007707957178354263, -0.02726897783577442, 0.00892098993062973, 0.009842894971370697, -0.016441794112324715, 0.003978747874498367, 0.00955869909375906, 0.02502313442528248, -0.00815851241350174, -0.003635632572695613, 0.006758325733244419, -0.029556410387158394, -0.0013611961621791124, 0.0013629290042445064, -0.02287433296442032, -0.02975049614906311, -0.007305923383682966, 0.008352597244083881, 0.012476908974349499, 0.00950324535369873, -0.002639212878420949, -0.0024364630226045847, 0.02941777929663658, 0.012969053350389004, -0.03382628783583641, 0.002164397155866027, -0.012130328454077244, 0.04125697910785675, -0.011894653551280499, 0.018327193334698677, 0.01969965361058712, 0.02406657114624977, 0.02858598530292511, 0.006831107661128044, 0.009267570450901985, -0.022084128111600876, 0.0029667317867279053, -0.026742175221443176, 0.023761579766869545, -0.020988933742046356, 0.0027258580084890127, -0.007014795672148466, 0.008657588623464108, -0.015928853303194046, -0.02509245090186596, 0.0009426997858099639, 0.018798543140292168, 0.011222286149859428, -0.013225523754954338, 0.01580408401787281, -0.013280976563692093, -0.009447792544960976, 0.008311008103191853, 0.006342428736388683, -0.00859520398080349, 0.013897890225052834, -0.004408508073538542, 0.015485230833292007, 0.02520335651934147, -0.011444098316133022, -0.023359546437859535, -0.034824438393116, 0.0200600977987051, -0.006917752791196108, 0.02782350778579712, -0.021113703027367592, 0.005132861901074648, -0.009108143858611584, 0.048299502581357956, -0.010834116488695145, 0.028502805158495903, -0.0061760698445141315, -0.013814711011946201, 0.01817469671368599, 0.03646029904484749, -0.01806379109621048, 0.0039094313979148865, 0.011319329030811787, 0.019020354375243187, 0.021099839359521866, -0.018285604193806648, 0.015637725591659546, -0.009808236733078957, 0.0038643761072307825, -0.03113682009279728, 0.01660815253853798, 0.008283281698822975, 0.009933006018400192, -0.006165672559291124, 0.004658046178519726, 0.018341057002544403, 0.01376619003713131, -0.00453327689319849, -0.012463046237826347, 0.015124786645174026, 0.025064723566174507, 0.018743090331554413, -0.0030065884348005056, -0.03426991030573845, -0.017939021810889244, -0.03812388703227043, 0.008096127770841122, -0.010113228112459183, -0.026534225791692734, -0.02090575359761715, 0.024745870381593704, 0.01748153567314148, -0.0017571647185832262, -0.014847521670162678, 0.030249573290348053, 0.002419134136289358, 0.0027709135320037603, 0.002937272423878312, -0.02650650031864643, 0.004138174932450056, 0.04378008842468262, -0.01086877379566431, 0.008220897056162357, -0.003405156545341015, 0.02341499924659729, -0.010813320986926556, 0.008408050052821636, -0.021058250218629837, 0.019422387704253197, 0.0037604018580168486, 0.020628489553928375, 0.0032197358086705208, 0.022915922105312347, 0.015318871475756168, -0.027657147496938705, 0.009399271570146084, 0.01240066159516573, -0.0073891025967895985, -0.016829963773489, -0.024745870381593704, 0.0010163482511416078, 0.06033278629183769, -0.012151123024523258, 0.010771731846034527, 0.004391178954392672, 0.015443640761077404, -0.021903907880187035, -0.002826366573572159, -0.018549004569649696, -0.027518516406416893, -0.02581333927810192, 0.001781425322405994, 0.0012381599517539144, 0.0013819909654557705, -0.007333649788051844, 0.036321669816970825, -0.00645333481952548, -0.005060079973191023, -0.028724616393446922, -0.0071395644918084145, -0.01886785961687565, 0.012608610093593597, 0.032717227935791016, -0.009593356400728226, 0.0011211888631805778, -0.026451047509908676, 0.0023168926127254963, -0.0006481060991063714, -0.015207965858280659, -0.003003122750669718, -0.009593356400728226, 0.013280976563692093, -0.004748157225549221, 0.005423989612609148, 0.007465350441634655, 0.0018455428071320057, -0.007735683582723141, 0.004363452550023794, -0.007777273189276457, 0.018146971240639687, -0.04849358648061752, 0.019145123660564423, -0.018008338287472725, 0.00014339780318550766, 0.02986140176653862, -0.025951970368623734, -0.017398357391357422, 0.009059621952474117, 0.016178391873836517, 0.012040217407047749, -0.01674678549170494, -0.024149751290678978, 0.021363241598010063, 0.012366003356873989, 0.029722770676016808, -0.002474586945027113, 0.022458435967564583, 0.019838284701108932, -0.0030897678807377815, 0.017453810200095177, -0.0012017689878121018, 0.016358613967895508, 0.0014876980567350984, 0.012109532952308655, -0.024967681616544724, -8.642859029350802e-05, -0.0004865128139499575, -0.011222286149859428, 0.013752326369285583, 0.0013594632036983967, -0.0107578681781888, 0.006747928448021412, -0.0010440746555104852, -0.021876180544495583, -0.004356520716100931, 0.019616473466157913, -0.006047835107892752, 0.014889111742377281, -0.007673298940062523, -0.014667299576103687, -0.04231058433651924, -0.011700567789375782, -0.04111834615468979, 0.006144877523183823, -0.011825337074697018, -0.003030849155038595, -0.0007750413496978581, -0.003384361509233713, 0.012026353739202023, -0.012033285573124886, 0.016289297491312027, 0.021973222494125366, -0.04450097680091858, -0.04882630333304405, -0.020850300788879395, -0.003937157802283764, 0.003334107343107462, -0.013177001848816872, -0.016829963773489, 0.00640134746208787, 0.00534427585080266, -0.022000949829816818, -0.017606304958462715, -0.002150533953681588, -0.02516176737844944, 0.010695483535528183, 0.005968121346086264, -0.008435776457190514, 0.010383561253547668, -0.027213525027036667, 0.017828116193413734, -0.024149751290678978, 0.02225048840045929, -0.018341057002544403, -0.009454724378883839, -0.00848429836332798, 0.036793019622564316, 0.009801304899156094, 0.005129395984113216, -0.0035697822459042072, -0.009295296855270863, 5.648184014717117e-05, -0.009738920256495476, -0.037486180663108826, -0.012116464786231518, 2.8674146960838698e-05, -0.0032959834206849337, 0.024842912331223488, 0.008983374573290348, 0.00924677588045597, -0.020586900413036346, 0.010113228112459183, -0.008040674962103367, 0.00016462588973809034, 0.015305008739233017, 0.006047835107892752, 0.004280272871255875, 0.010383561253547668, 0.013981069438159466, 0.007617846131324768, -0.019727379083633423, 0.003923294600099325, -0.048743125051259995, -0.001003351411782205, 0.016178391873836517, -0.0013993199681863189, 0.03044365718960762, 0.01945011503994465, -0.0342976376414299, -0.032024066895246506, -0.009052691049873829, 0.007659435737878084, 0.031164545565843582, -0.004145106300711632, -0.023941801860928535, -0.021765274927020073, 0.008366460911929607, -0.016871552914381027, 0.014500941149890423, -0.027185797691345215, -0.020198728889226913, -0.005236836150288582, -0.012636336497962475, 0.0008837810601107776, 0.0008521555573679507, -0.02392793819308281, -0.029944581910967827, -0.012712583877146244, -0.008491230197250843, 0.022749563679099083, 0.035850320011377335, 0.0034328829497098923, 0.008123854175209999, -0.021820727735757828, -0.00505314813926816, 0.009399271570146084, -0.02144641987979412, -0.011256944388151169, -0.0024676553439348936, 0.02880779653787613, 0.014078112319111824, 0.018729226663708687, 0.0002605854533612728, 0.009399271570146084, 0.019866012036800385, -0.022167308256030083, 0.01871536299586296, -0.01678837463259697, -0.03332721069455147, -0.03163589537143707, -0.00848429836332798, -0.014778205193579197, -0.011312397196888924, 0.009371545165777206, -0.022125719115138054, -0.02024031989276409, 0.03454717621207237, 0.021987086161971092, 0.023401135578751564, -0.015138649381697178, -0.039565663784742355, -0.025147903710603714, 0.01701018586754799, 0.009288365952670574, 0.00851895660161972, -0.030887281522154808, -0.012823489494621754, 0.025480620563030243, -0.0011645115446299314, 0.006429073866456747, 0.008976442739367485, 0.01963033713400364, -0.021529600024223328, 0.0012485573533922434, 0.01580408401787281, 0.015582272782921791, -0.01631702482700348, 0.014251402579247952, -0.023331819102168083, 0.010626167990267277, 0.01911739818751812, 0.001634994987398386, 0.024718143045902252, -0.017107227817177773, 0.0024156682193279266, -0.004786280915141106, -0.011298534460365772, -0.0284750796854496, 0.006903889589011669, 0.020739395171403885, -0.0029667317867279053, -0.006387484259903431, -0.029695043340325356, 0.0016835163114592433, -0.023512041196227074, -0.009496314451098442, 0.0035385899245738983, 0.005715117324143648, 0.020073959603905678, -0.02356749400496483, -0.006411744747310877, 0.003947555553168058, -0.02672831155359745, 0.03565623238682747, 0.004297601990401745, 0.04275420680642128, 0.03579486533999443, 0.0004059327766299248, -0.013849369250237942, -0.009475518949329853, -0.007964426651597023, -0.009156664833426476, 0.014944564551115036, -0.012670994736254215, -0.00786738470196724, 0.007832726463675499, -0.0070355902425944805, 0.012955190613865852, 0.005351207684725523, -0.02290206030011177, 0.011444098316133022, 0.022305941209197044, 0.003450211836025119, -0.020087823271751404, 0.029584137722849846, -0.036432575434446335, 0.024149751290678978, 0.010272654704749584, 0.008706109598279, -0.019242165610194206, -0.00726433377712965, -0.00906655378639698, 0.0033081138972193003, -0.009974596090614796, 0.02883552387356758, 0.007236607372760773, -0.0021869249176234007, -0.008061469532549381, -0.009454724378883839, -0.0148197952657938, 0.005711651872843504, -0.01402265951037407, 0.012081806547939777, -0.0005748909316025674, -0.011042064055800438, 0.013003711588680744, -0.0073891025967895985, -0.02377544343471527, -0.025577664375305176, 0.01762016862630844, 0.02516176737844944, -0.033049944788217545, -0.006144877523183823, 0.012206575833261013, -0.000642474158667028, 0.002595890313386917, -0.011353987269103527, -0.016483383253216743, -0.018590593710541725, -0.014292992651462555, -0.005375468172132969, 0.013780052773654461, 0.03044365718960762, -0.01283735316246748, 0.00935768149793148, -0.004048063885420561, -0.011776816099882126, -0.0010102830128744245, -0.006224591284990311, 0.026159919798374176, -0.03280040621757507, -0.030887281522154808, -0.008782357908785343, 0.010903432033956051, -0.0030204516369849443, 0.005358139052987099, -0.012885874137282372, 0.011118312366306782, 0.053761616349220276, -0.013010643422603607, 0.00851895660161972, -0.027227388694882393, -0.014119702391326427, -0.022597068920731544, 0.02355363219976425, -0.017980612814426422, 0.006075561512261629, 0.027809644117951393, -0.016483383253216743, 0.002235446125268936, -0.019353073090314865, -0.018507415428757668, 0.0394824855029583, 0.006550377234816551, 0.002793441293761134, 0.005157122388482094, -0.0021349377930164337, 0.004540208727121353, 0.002486717188730836, -0.009225981310009956, 0.030637742951512337, 0.00225797388702631, -0.00999539066106081, 0.016580425202846527, -0.0024797855876386166, -0.003951021004468203, 0.010515261441469193, 0.009711193852126598, -0.022999102249741554, -0.044778238981962204, -0.032717227935791016, 0.01864604651927948, 0.00591613445430994, 0.009364613331854343, 0.010210270993411541, -0.01743994653224945, -0.020309634506702423, -0.017925160005688667, 0.03185770660638809, -0.0010943289380520582, 0.0008933120407164097, 0.009406203404068947, 0.01638634130358696, 0.008823947049677372, 0.01750926300883293, -0.012615540996193886, -0.00489025516435504, 0.017689485102891922, -0.030637742951512337, -0.016219981014728546, -0.015235692262649536, -0.01338495034724474, 0.031109092757105827, -0.000630777096375823, -0.022749563679099083, -0.05262482911348343, -0.009967664256691933, -0.03227360546588898, -0.017287449911236763, -0.005954258143901825, 0.012171917594969273, 0.05132168531417847, 0.005472511053085327, -0.01802220195531845, 0.036571208387613297, -0.010931158438324928, 0.026381731033325195, -0.025827201083302498, 0.015332735143601894, 0.004782814998179674, 0.026381731033325195, -0.015665452927350998, -0.023498179391026497, -0.005826023407280445, -0.02581333927810192, -0.0025127108674496412, -0.019755106419324875, 0.011042064055800438, 0.022236624732613564, -0.017093366011977196, -0.01043208222836256, -0.03382628783583641, -0.0008725171792320907, 0.00888633169233799, 0.014667299576103687, -0.008428845554590225, -0.02101665921509266, -0.001666187192313373, -0.004831336438655853, 0.01389095839112997, 0.007465350441634655, 0.011887721717357635, -0.002857558662071824, 0.002711994806304574, 0.01362062618136406, -0.0072851283475756645, -0.009988458827137947, 0.017176544293761253, -0.026645133271813393, 0.00819317065179348, 0.003937157802283764, -0.014695025980472565, 0.03787435218691826, 0.0027969072107225657, 0.005787899252027273, 0.0018663376104086637, 0.00024910495267249644, -0.02021259255707264, 0.0034415475092828274, 0.011700567789375782, 0.010307312943041325, 0.004969968926161528, 0.0003383495204616338, 0.03845660760998726, -0.02108597569167614, 0.018479688093066216, -0.015013880096375942, -0.01441776193678379, -0.011021269485354424, -0.0022319804411381483, 0.02464882656931877, -0.01889558508992195, -0.013814711011946201, 0.017939021810889244, 0.009766647592186928, 0.0354621484875679, 0.0016809168737381697, -0.011236149817705154, -0.024773595854640007, 0.032245878130197525, -0.007271265145391226, 0.0033583680633455515, 0.005486374255269766, 0.013863231986761093, 0.015956580638885498, -0.027282841503620148, 0.009316092357039452, 0.17478762567043304, -0.013204729184508324, 0.016219981014728546, 0.03000003471970558, -0.02534198947250843, 0.0284750796854496, 0.013468130491673946, -0.01576249487698078, -0.004138174932450056, 0.030388204380869865, -0.023761579766869545, 0.028669163584709167, 0.0022181172389537096, 4.0344173612538725e-05, 0.009281434118747711, -0.018521279096603394, -0.03296676650643349, -0.029695043340325356, -0.01493070088326931, 0.0024295314215123653, -0.0013715935638174415, -0.019311482086777687, -0.013211660087108612, -0.02475973218679428, 0.03593349829316139, 0.012033285573124886, 0.010168680921196938, 0.017495399340987206, 0.04882630333304405, 0.004023803398013115, -0.004276806954294443, -0.013558241538703442, -0.004609524738043547, -0.003548987442627549, 0.010085501708090305, -0.006234988570213318, -0.00038773726555518806, 0.002992725232616067, 0.03693165257573128, 0.015429777093231678, 0.013107686303555965, -0.015790222212672234, -0.01904808171093464, -0.03693165257573128, 0.015526819974184036, 0.019824422895908356, -0.009385407902300358, -0.02115529216825962, -0.024787459522485733, 0.014195949770510197, -0.010827184654772282, 0.007132633123546839, 0.008130786009132862, 0.021862316876649857, -0.011756020598113537, 0.012047149240970612, -0.028641438111662865, -0.0018698034109547734, 0.008803152479231358, 0.005139793269336224, -0.002630548318848014, 0.02516176737844944, -0.02683921717107296, 0.028350310400128365, -0.018382646143436432, 0.004585264250636101, -0.01334336120635271, 0.0062800440937280655, -0.02435769885778427, -0.02858598530292511, 0.0031937421299517155, -0.016178391873836517, -0.018257876858115196, -0.012074875645339489, -0.020988933742046356, -0.0015561478212475777, 0.04059154540300369, 0.009440861642360687, -0.0023948734160512686, 0.04391872137784958, -0.03055456466972828, -0.03382628783583641, 0.0016852491535246372, -0.0004360419698059559, -0.014653436839580536, -0.025106314569711685, 0.02010168693959713, -0.025397442281246185, -0.008040674962103367, -0.03646029904484749, -0.0033566351048648357, -0.0217791385948658, -0.011201491579413414, 0.0012728179572150111, 0.015942716971039772, -0.0006857967819087207, -0.03158044442534447, -0.00022354461543727666, -0.02658967860043049, -0.00737523939460516, -0.024676553905010223, 0.051654402166604996, 0.02374771609902382, 0.023622948676347733, 0.015263418667018414, 0.018701501190662384, -0.007569324690848589, -0.007825794629752636, 0.010404355823993683, -0.03219042718410492, 0.01780039072036743, -0.02428838238120079, 0.00895564816892147, -0.018881723284721375, -0.009718125686049461, -0.0034311499912291765, 0.00023892414174042642, -0.014778205193579197, 0.004294136073440313, 0.0034710068721324205, 0.000921038503292948, -0.024745870381593704, -0.008248623460531235, -0.0030256505124270916, -0.02115529216825962, -0.018770815804600716, -0.0033375732600688934, 0.006952411029487848, -0.016622016206383705, -0.022860469296574593, 0.025868792086839676, -0.035739414393901825, 0.03310539945960045, -0.008983374573290348, 0.0024052707012742758, 0.005756707396358252, -0.021349377930164337, -0.030471384525299072, -0.01835491880774498, -0.0002415235067019239, 0.0011523811845108867, 0.02726897783577442, -0.013405745849013329, 0.0010821985779330134, 0.024829048663377762, -0.03182998299598694, 0.014805932529270649, -0.0052091097459197044, -0.012622472830116749, -0.01638634130358696, -0.027047166600823402, -0.01860445737838745, 0.006910821422934532, -0.0012346941512078047, 0.0056769936345517635, -0.02388634905219078, 0.013897890225052834, -0.01703791320323944, 0.021293925121426582, 0.007839658297598362, -0.03451944887638092, -0.01387709565460682, 0.01441776193678379, 0.004557537380605936, 0.013523583300411701, -0.02330409362912178, -0.17689484357833862, 0.023830896243453026, -0.013260181993246078, 0.004023803398013115, 0.03146953880786896, 0.017273588106036186, 0.0027917083352804184, 0.0079921530559659, -0.00017838081112131476, 0.007985222153365612, -0.008207033388316631, -0.007326718419790268, -0.025064723566174507, -0.028239404782652855, 0.002249309327453375, 0.016109075397253036, 0.0062072621658444405, 0.012684857472777367, 0.027476927265524864, 0.034574899822473526, 0.035628508776426315, -0.0217791385948658, 0.018562868237495422, -0.0031642827671021223, 0.000538066728040576, 0.01820242404937744, -0.011333192698657513, 0.028267130255699158, 0.006487992592155933, -0.029362326487898827, 0.0014374438906088471, 0.008186238817870617, 0.003053376916795969, 0.006824176292866468, 0.017453810200095177, -0.0032873188611119986, -0.027144208550453186, -0.017426082864403725, -0.005819091573357582, -0.0077980682253837585, 0.023387273773550987, 0.02366453781723976, -0.0032630583737045527, -0.0022441106848418713, 0.015748631209135056, 0.01522182859480381, 0.010750936344265938, -0.027005575597286224, 0.017273588106036186, -0.005413592327386141, 0.02130778878927231, -0.028447352349758148, -0.0015292877797037363, 0.013371087610721588, 0.015637725591659546, -0.018590593710541725, -0.0372089147567749, 0.01522182859480381, -0.020004644989967346, -0.003829717868939042, 0.00184380984865129, -0.030249573290348053, -0.0010111494921147823, 0.011658978648483753, 0.0029442040249705315, -0.010785594582557678, -0.0145286675542593, -0.0003914196859113872, -0.029112787917256355, 0.003425951348617673, 0.002268371405079961, -0.009579493664205074, 0.03476898744702339, 0.011804542504251003, -0.017176544293761253, 0.010702415369451046, -0.01707950234413147, 0.011839200742542744, -0.008754631504416466, -0.022402983158826828, 0.0032353317365050316, 0.026520363986492157, 0.011104448698461056, -0.014209813438355923, 0.031192272901535034, -0.007513871882110834, -0.011922379955649376, 0.0015760762616991997, 0.013260181993246078, -0.028142360970377922, 0.042005594819784164, 0.0007434158469550312, 0.005423989612609148, -0.0037326752208173275, 0.019200576469302177, -0.00045402086107060313, -0.008747699670493603, 0.015360461547970772, 0.0001376575673930347, -0.009128938429057598, 0.012393729761242867, -0.003791593946516514, -0.012594746425747871, -0.01752312481403351, 0.044445522129535675, 0.023719990625977516, -0.016122939065098763, 0.034824438393116, 0.058170121163129807, 0.007513871882110834, -0.03707028180360794, 0.0014253135304898024, 0.01701018586754799, 0.01219964399933815, 0.010695483535528183, 0.016732921823859215, -0.013003711588680744, -0.026853080838918686, 0.018992628902196884, -0.034463994204998016, 0.01674678549170494, 0.0046719093807041645, 0.010265723802149296, 0.008200101554393768, -0.0038886365946382284, -0.01475047878921032, -0.11173765361309052, -0.020295772701501846, 0.010536056943237782, 0.010036979801952839, -0.009835963137447834, 0.0030481782741844654, -0.009142802096903324, 0.02025418169796467, 0.006449868902564049, 0.014119702391326427, 0.008699178695678711, -0.015540683642029762, -0.006966274231672287, -0.010411287657916546, -0.008830878883600235, 0.02028190903365612, -0.006470663473010063, -0.012594746425747871, -0.00788124743849039, 0.03232905641198158, 0.010945022106170654, -0.006605830043554306, -0.007839658297598362, -0.01158273033797741, -0.013246318325400352, 0.023401135578751564, -0.014625710435211658, -0.004276806954294443, -0.002680802484974265, 0.007777273189276457, -0.006657817400991917, -0.00422482006251812, -0.009253707714378834, -0.018923312425613403, 0.004872926045209169, 0.025106314569711685, -0.018257876858115196, -0.02014327608048916, 0.014182087033987045, -0.012885874137282372, 0.0042386832647025585, -0.014133565127849579, 0.024732006713747978, 0.008311008103191853, 0.023858623579144478, -0.008324870839715004, -0.036543481051921844, 0.01777266338467598, 0.01363448891788721, -0.004072324372828007, -0.03321630507707596, -0.024191340431571007, -0.042920567095279694, 0.00996073242276907, 0.0020222989842295647, -0.01556841004639864, 0.0111806970089674, 0.0011879056692123413, -0.01402265951037407, -0.013953343033790588, -0.008567477576434612, -0.001314407680183649, -0.001603802666068077, 0.030887281522154808, 0.009115074761211872, -0.005839886609464884, -0.03390946611762047, -0.020309634506702423, 0.03379856050014496, 0.004831336438655853, 0.0003333674103487283, 0.029195968061685562, -0.020004644989967346, 0.004027268849313259, 0.010127090848982334, 0.008657588623464108, -0.03135863319039345, 0.008636794053018093, -0.00014913805352989584, -0.018230149522423744, -0.012788832187652588, -0.031552717089653015, -0.019963053986430168, 0.006883095018565655, 0.02764328569173813, 0.032134972512722015, 0.010750936344265938, 0.00492491340264678, 0.011922379955649376, -0.004027268849313259, 0.01732904091477394, 0.01674678549170494, 0.004935310687869787, -0.01860445737838745, -0.003767333459109068, -0.0003374830703251064, 0.025827201083302498, 0.0206423532217741, -0.009094280190765858, -0.016774510964751244, -0.009919142350554466, -0.017647894099354744, -0.05207030102610588, -0.0023567494936287403, -0.02549448423087597, 0.008248623460531235, -0.0005333012086339295, 0.0036390984896570444, 0.00826941803097725, -0.010903432033956051, -0.0008729504188522696, 0.0212246086448431, -0.023650674149394035, 0.03579486533999443, -0.0159843061119318, -0.009835963137447834, 0.014306855387985706, -0.020295772701501846, 0.0014097174862399697, 0.01853514090180397, 0.015887264162302017, -0.0002844128757715225, -0.03393719345331192, -0.013655283488333225, 0.030637742951512337, 0.011007406748831272, 0.004363452550023794, 0.00763864116743207, -0.006422142498195171, 0.02647877298295498, -0.011243081651628017, -0.0447227880358696, 0.004935310687869787, -0.01806379109621048, -0.0010536056943237782, 0.006200330797582865, 0.00461645657196641, 0.025286534801125526, 0.015956580638885498, 0.016400203108787537, 0.017204271629452705, 0.014597984030842781, -0.027296705171465874, -0.030499111860990524, 0.0037292095366865396, -0.026423320174217224, 0.012844284996390343, -0.004068858455866575, -0.015429777093231678, -0.005434386897832155, 0.013904822058975697, 0.0002298264007549733, 0.04314237833023071, 0.023692263290286064, -0.023678401485085487, -0.01587340049445629, -0.004893721081316471, -0.027837369590997696, 0.012442250736057758, 3.5362074413569644e-05, 0.010820252820849419, -0.01522182859480381, 0.03651575371623039, -0.008096127770841122, 0.02090575359761715, -0.01951943151652813, 0.009801304899156094, -0.014916838146746159, -0.015152513049542904, -0.019782831892371178, -0.002465922385454178, -0.021030522882938385, -0.025536073371767998, -0.019866012036800385, 0.005118998698890209, 0.016940869390964508, 0.042366039007902145, 0.00921211764216423, -0.02010168693959713, 0.02050372026860714, 0.0005190047668293118, 0.023248640820384026, 0.042366039007902145, 0.0025456359144300222, -0.0022805016487836838, 0.005292288959026337, 0.04017564654350281, 0.015152513049542904, -0.01032117661088705, -0.0307763759046793, -0.005981984548270702, 0.0284750796854496, 0.0006351093179546297, 0.0027501187287271023, -0.008200101554393768, 0.0013819909654557705, 0.018673773854970932, -0.012865079566836357, -0.008546683005988598, 0.0014244471676647663, 0.0016090014250949025, 0.03532351553440094, -0.00018238814664073288, -0.015471367165446281, -0.013371087610721588, -0.02392793819308281, -0.022513888776302338, 0.009530971758067608, -0.029944581910967827, -0.02305455505847931, 0.005008092615753412, 0.04660818725824356, -0.025258809328079224, 0.01725972443819046, 0.055147938430309296, 0.01780039072036743, -0.050489891320466995, 0.02800372987985611, 0.0026894670445472, -0.04000928997993469, -0.00786738470196724, 0.014306855387985706, -0.00031322240829467773, 0.00917745940387249, 0.038650691509246826, -0.018008338287472725, 0.019866012036800385, 0.003971816040575504, 0.01857673190534115, -0.008678383193910122, -0.009260639548301697, -0.000777207431383431, -0.010646962560713291, 0.006345894653350115, -0.0026842684019356966, -0.0034744725562632084, -0.006325099617242813, -0.005867613013833761, -0.008123854175209999, 0.01889558508992195, 0.01470888964831829, 0.09449179470539093, 0.017758799716830254, -0.007222744170576334, 0.004876391962170601, 0.0077980682253837585, 0.007922837510704994, 0.018257876858115196, -0.005455181933939457, -0.007222744170576334, -0.015207965858280659, 0.036903925240039825, -0.02017100341618061, -0.00399607652798295, -0.04067472368478775, -0.008969510905444622, -0.003332374384626746, -0.030055487528443336, 0.02327636629343033, -0.0072851283475756645, 0.01545750442892313, 0.009842894971370697, 0.002990992274135351, 0.02356749400496483, 0.009094280190765858, -0.03820706903934479, 0.008345665410161018, 0.01667746901512146, -0.006377086974680424, -0.023220913484692574, -0.0020413610618561506, 0.013773120939731598, -0.001676584710367024, -0.005871078930795193, -0.018341057002544403, 0.006650885567069054, 0.010376629419624805, -0.0057081859558820724, -0.00023242575116455555, 0.022167308256030083, 0.0003123559581581503, -0.0013837239239364862, -0.013038369826972485, -0.015665452927350998, -0.0243992879986763, -0.015928853303194046, -0.005039284937083721, -0.013738463632762432, 0.0003604440425988287, -0.056284721940755844], "9e3a1ee4-9a16-458d-9d23-3a155e95ef79": [0.013304864056408405, 0.028844133019447327, 5.144314854987897e-05, -0.03466712683439255, -0.013203300535678864, 0.024822205305099487, 0.008395944721996784, 0.0030062899459153414, -0.014476234093308449, -0.03878384828567505, 0.015600207261741161, 0.017699193209409714, -0.017076268792152405, 0.022994056344032288, -0.0008776809554547071, 0.009465751238167286, 0.008957931771874428, -0.0032669706270098686, -0.0012441572034731507, 0.01797003112733364, 0.015491873025894165, 0.013365802355110645, 0.01227568369358778, -0.024402407929301262, -0.012356935068964958, 0.008714178577065468, 0.01725231297314167, -0.01335903163999319, 0.006276646163314581, -0.010650662705302238, 0.02673160471022129, -0.013243925757706165, -0.01990651525557041, -0.0005213610711507499, -0.02830245904624462, 0.009872006252408028, -0.022899262607097626, 0.014719987288117409, -0.00427922373637557, -0.0029453516472131014, 0.02356281317770481, 0.008118337020277977, -0.0037612479645758867, 0.004079481121152639, 0.016832515597343445, 0.010048050433397293, 0.020204436033964157, -0.021694038063287735, -0.022520091384649277, -0.005870390683412552, 0.01148348581045866, 0.06315917521715164, -0.01616896502673626, -0.02368468977510929, -0.011476715095341206, -0.010379825718700886, -0.0050849635154008865, 0.009770442731678486, -0.008456883020699024, -0.044281840324401855, 0.01784815452992916, 0.00028501354972831905, -0.00558939715847373, -0.038350511342287064, -0.008822512812912464, -0.0022479465696960688, -0.008490737527608871, 0.017292939126491547, -0.02066485770046711, 0.0035411929711699486, -0.007319367956370115, 0.023982610553503036, 0.004055783152580261, 0.00989909004420042, 0.03897343575954437, 0.01543770544230938, -0.02610868029296398, 0.0010097139747813344, -0.017455440014600754, -0.0024476887192577124, -0.0018264566315338016, 0.0025255545042455196, -0.010643891990184784, 0.010725142434239388, -0.009370957501232624, -0.021599246188998222, 0.013616327196359634, 0.022885721176862717, 0.0010681131388992071, -0.024849288165569305, 0.009269393980503082, 0.021910708397626877, 0.0009403119911439717, 0.015518956817686558, -0.0018721603555604815, 0.022452382370829582, -6.829111225670204e-05, 0.01871483214199543, -0.0022987285628914833, -0.0265961866825819, -0.000680477824062109, 0.012729335576295853, -0.02429407276213169, -0.0044958931393921375, -0.0010511858854442835, 0.0036935387179255486, 0.025580547749996185, 0.009919403120875359, 0.01281058695167303, 0.011219420470297337, -0.010515243746340275, 0.03935260698199272, -0.0013931174762547016, -0.01519395224750042, 0.014625194482505322, -0.014692903496325016, -0.0023664378095418215, -0.032012924551963806, -0.019622135907411575, -0.001129051437601447, 0.011618904769420624, 0.02455136738717556, 0.011720468290150166, 0.004580529872328043, 0.0212606992572546, -0.013182987459003925, -0.00010288629709975794, -0.017171062529087067, -0.004749802872538567, -0.00832823570817709, 0.02660972811281681, 0.00717040803283453, -0.0035005672834813595, 0.012803816236555576, -0.0017485909629613161, 0.0044654239900410175, -0.0230888482183218, 0.006960509344935417, -0.031092079356312752, -0.03350253030657768, 0.024402407929301262, 0.005020639859139919, -0.0027134474366903305, 0.01700855977833271, 0.009993882849812508, 0.013210071250796318, 0.03545255586504936, 0.011266816407442093, -0.004147190600633621, 0.010806393809616566, -0.005592782516032457, 0.009831381030380726, 0.01568145863711834, 0.006696443073451519, -0.00753603782504797, 0.03073999285697937, -0.028410794213414192, 0.02113882265985012, 0.036996323615312576, -0.006889414507895708, 0.019960682839155197, 0.03872968256473541, -0.0044247983023524284, -0.007007905747741461, 0.01439498271793127, 0.030604572966694832, 0.030929578468203545, 0.018267951905727386, 0.01446269266307354, 0.024849288165569305, -0.0014946813462302089, 0.01203870214521885, -0.013778829015791416, 0.009377729147672653, 0.009513147175312042, 0.009012099355459213, 0.009878776967525482, -0.005470905918627977, -0.027923287823796272, -0.009540230967104435, 0.01797003112733364, -0.005372727755457163, 0.012973088771104813, 0.0347483791410923, -0.024578452110290527, 0.005244079977273941, 0.020109642297029495, 0.010027737356722355, 0.017171062529087067, 0.013128820806741714, 0.017320021986961365, 0.03707757592201233, -0.007752707228064537, -0.001334718312136829, -0.6313750743865967, -0.01726585440337658, -0.010549098253250122, -0.03875676542520523, 0.005667262710630894, 0.01652105338871479, 0.006483159027993679, -0.010847019031643867, -0.03038790449500084, 0.05116109549999237, 0.007224575150758028, -0.0019686459563672543, 0.0281941257417202, -0.0024324541445821524, -0.011293900199234486, -0.022452382370829582, 0.012688710354268551, -0.024348240345716476, -0.051215264946222305, 0.01675126515328884, -0.004015157464891672, 0.003151864744722843, -0.016101256012916565, 0.0031044683419167995, 0.01191682554781437, 0.012363705784082413, -0.0014549021143466234, 0.03003581613302231, 0.009249080903828144, 0.02673160471022129, -0.020827360451221466, -0.0265961866825819, 0.008565218187868595, 0.002578029176220298, 0.042115144431591034, -0.001061342190951109, -0.006141227670013905, 0.006401908118277788, 0.030902493745088577, 0.02721911109983921, -0.0259868036955595, -0.01944609172642231, 0.014814780093729496, 0.011097542941570282, 0.01703564263880253, -0.018511705100536346, -0.015640832483768463, 0.011510569602251053, -0.0025103199295699596, -0.017089810222387314, -0.0026525091379880905, 0.010562640614807606, -0.0006838632398284972, -0.01354184653609991, 0.0035411929711699486, -0.013623097911477089, 0.029710812494158745, 0.007163636852055788, -0.003346528857946396, -0.02759828418493271, 0.005701117683202028, 0.0057959104888141155, -0.007590204942971468, -0.03623798117041588, 0.0016800353769212961, 0.001391424797475338, -0.03198584169149399, 0.000931848306208849, 0.0043029217049479485, -0.014056436717510223, 0.004262296482920647, 0.03826925903558731, -0.029358724132180214, -0.014963740482926369, 0.0009682420641183853, 0.029954565688967705, 0.02237113006412983, -0.027760785073041916, 0.0032297305297106504, 0.02063777483999729, 0.009391270577907562, -0.018010655418038368, -0.008538134396076202, -0.02284509502351284, 0.02758474089205265, 0.02503887377679348, -0.001360955648124218, 0.0013203300768509507, 0.0035615055821835995, 0.024971164762973785, -0.01702210120856762, 0.02235758863389492, -0.016615845263004303, -0.03816092386841774, -0.01299340184777975, 0.018917959183454514, -0.00042043201392516494, -0.02368468977510929, -0.030604572966694832, -0.015952294692397118, -0.012722564861178398, -0.03282543644309044, -0.012593917548656464, 0.002087137196213007, 0.0019144786056131124, 0.014814780093729496, 0.004072710406035185, 0.02333260141313076, 0.04325265809893608, -0.028735797852277756, -0.025445129722356796, -0.03195875883102417, -0.02067839913070202, 0.0379442535340786, -0.003991459496319294, -0.026095138862729073, 0.01690022461116314, -1.5380046534119174e-05, 0.003016446251422167, -0.01329809334129095, 0.008199588395655155, 0.0078881261870265, -0.013501221314072609, 0.0020972935017198324, 0.02455136738717556, 0.01270225178450346, -0.0031586356926709414, 0.003727393224835396, -0.03862134739756584, -0.01944609172642231, 0.013812683522701263, 0.022086752578616142, 0.013013714924454689, -0.0066896723583340645, 0.00034849095391109586, -0.01591167040169239, 0.0011654451955109835, -0.01725231297314167, 0.01593875326216221, -0.016846057027578354, -0.0177533607929945, -0.012526208534836769, 0.010298574343323708, -0.03212125971913338, -0.02589201182126999, -0.01885025016963482, -0.009709504432976246, -0.008910534903407097, -0.01581687666475773, -0.008213129825890064, -0.0052982475608587265, -0.0027557658031582832, -0.03136291727423668, 0.028248291462659836, -0.005078192334622145, -0.008199588395655155, 0.01870129071176052, -0.004438340198248625, -0.0038797392044216394, -0.009174601174890995, -0.013013714924454689, 0.012431415729224682, -0.01931067369878292, -0.002908111549913883, 0.0024815434589982033, -0.019865889102220535, -0.014042895287275314, 0.029114970937371254, -0.004655009601265192, -0.038458846509456635, 0.008504279889166355, -0.005484447814524174, 0.006753996014595032, 0.0056029390543699265, -0.02005547471344471, 0.02979206293821335, -0.011774635873734951, 0.006422220729291439, -0.0007896589231677353, -0.02623055689036846, -0.003910208120942116, 0.008172504603862762, 0.0019297131802886724, -0.010474618524312973, 0.0005501375417225063, -0.01038659643381834, 0.026149306446313858, 0.0019381768070161343, -0.01191005390137434, 0.0005302479257807136, 0.03038790449500084, 0.037131745368242264, -0.01270225178450346, 0.0121538070961833, -0.004021928645670414, 0.0469360426068306, 0.013277780264616013, 0.01955442689359188, 0.021531537175178528, 0.04544643685221672, 0.015491873025894165, -0.009370957501232624, 0.007982918992638588, -0.03913593664765358, 0.022276338189840317, -0.034937962889671326, 0.004577144049108028, -0.013304864056408405, 0.0159252118319273, -0.0014235866256058216, 0.004956315737217665, 0.0049224612303078175, -0.04371308162808418, -0.020109642297029495, 0.039190106093883514, 0.03501921519637108, 0.007867813110351562, 0.009337102994322777, 0.0018112220568582416, -0.0020448188297450542, 0.0036089022178202868, 0.01772627793252468, 0.007373535539954901, 0.020136727020144463, 0.02027214504778385, 0.010366283357143402, 0.007590204942971468, -0.005264393053948879, -0.009621482342481613, -0.05313820764422417, 0.0011417469941079617, -0.031200414523482323, 0.018146075308322906, -0.002859022468328476, 0.02270967699587345, 0.009262623265385628, 0.01740127243101597, -0.011354838497936726, 0.03412545472383499, -0.004550060722976923, -0.01773981936275959, -0.004228441510349512, 0.007271971553564072, -0.03491088002920151, -0.0031738702673465014, 0.0024341470561921597, 0.024822205305099487, 0.027557658031582832, 0.009526689536869526, 0.031064996495842934, 0.008165733888745308, -0.004319848958402872, -0.020976319909095764, 0.009127204306423664, 0.008829284459352493, 0.004573758691549301, 0.014300189912319183, 0.00905949529260397, 0.022560717537999153, 0.019175255671143532, -0.010894415900111198, -0.006469617132097483, 0.008246984332799911, 0.016317924484610558, 0.009174601174890995, 0.015762709081172943, -0.017225228250026703, -0.03818800672888756, -0.022818012163043022, 0.008091253228485584, -0.04276515170931816, -0.02090861089527607, -0.011720468290150166, 0.013704349286854267, 0.035425469279289246, -0.008951161056756973, 0.0012670090654864907, 0.002004193374887109, 0.023725315928459167, 0.0007045991951599717, -0.020691942423582077, -0.0259868036955595, -0.011029833927750587, 0.03783591836690903, 0.0025238615926355124, -0.010197010822594166, -0.030062898993492126, 0.004011772107332945, 0.006205551326274872, 0.011307441629469395, -0.01234339363873005, 0.0018112220568582416, 0.011232961900532246, 0.00011880854435730726, 0.0026948275044560432, -0.00820635911077261, 0.02258780039846897, -0.017468981444835663, -0.020326312631368637, 0.006611806806176901, -0.006946967449039221, -0.0014870640588924289, -0.018430452793836594, -0.005068036261945963, 0.049861080944538116, -0.0010325658367946744, 0.002550945384427905, -0.011009521782398224, -0.008687094785273075, -0.03981303051114082, 0.011991305276751518, -0.009276164695620537, -0.036400485783815384, 0.006831861566752195, 0.017225228250026703, -0.0350462980568409, 0.017468981444835663, 0.007712081540375948, 0.036887992173433304, -0.0036698405165225267, -0.002535710809752345, -0.017821069806814194, -0.026826398447155952, 0.017915863543748856, 0.04352349415421486, 0.01933775655925274, -0.017455440014600754, 0.013061110861599445, -0.027665993198752403, 0.009025640785694122, -0.008761574514210224, -0.0035310364328324795, 0.024984708055853844, 0.006716756150126457, -0.010440764017403126, 0.021165907382965088, 0.006953738164156675, -0.007671456318348646, 0.012241829186677933, 0.02115236409008503, -0.008118337020277977, -0.003866197308525443, 0.010190240107476711, -0.042115144431591034, 0.004475580528378487, 0.001790909213013947, 0.031200414523482323, 0.01222151704132557, -0.0011425933334976435, -0.021964875981211662, 0.011679843068122864, 0.015004366636276245, -0.004049011971801519, -0.006743839476257563, -0.0055826264433562756, 0.006757381372153759, 0.03621089830994606, 0.01281058695167303, -0.024158654734492302, 0.026176389306783676, 0.0159252118319273, 0.020989863201975822, 0.015207493677735329, -0.01593875326216221, 0.03458587825298309, 0.007299055345356464, 0.02002839185297489, -0.013264238834381104, -0.02163987047970295, 0.01906692050397396, 0.006835246924310923, -0.0037815608084201813, -0.015613749623298645, -0.009235539473593235, 0.008240213617682457, -0.026650354266166687, -0.01519395224750042, -0.01955442689359188, -0.004397714510560036, -0.01463873591274023, -0.005839921534061432, -0.022750303149223328, -0.0020448188297450542, -0.027137860655784607, -0.03344836086034775, -0.004871679469943047, 0.02066485770046711, -0.004485736601054668, -0.006208936683833599, 0.021111739799380302, -0.004854752216488123, 0.003635985776782036, -0.028844133019447327, 0.003581818426027894, 0.01725231297314167, -0.012783503159880638, -0.03984011337161064, -0.014327273704111576, -0.007326139137148857, 0.0077459365129470825, -0.007705310825258493, -0.009127204306423664, -0.019134629517793655, 0.011862657964229584, -0.020624233409762383, -0.044281840324401855, -0.013893934898078442, -0.02954830974340439, 0.0003941947070416063, 0.019148170948028564, 0.01341996993869543, 0.00406593969091773, 0.009675649926066399, 0.02127424068748951, -7.400407776003703e-05, -0.011876199394464493, 0.007265200838446617, -0.02551283873617649, -0.015952294692397118, 0.025133667513728142, 0.0007799257291480899, 0.027869120240211487, 0.006239405833184719, -0.02258780039846897, 0.003175562946125865, -0.00814542081207037, 0.006953738164156675, -0.01811899058520794, 0.0014853712636977434, 0.007448015734553337, -0.003346528857946396, 0.014652278274297714, -0.021694038063287735, -0.011172023601830006, 0.023603439331054688, -0.016236674040555954, 0.021545078605413437, 0.011842344887554646, 0.021477369591593742, -0.000559024338144809, -0.009235539473593235, 0.01482832245528698, 0.01702210120856762, -0.029981648549437523, 0.010176697745919228, -0.04219639301300049, 0.00965533684939146, 0.01618250645697117, -0.019879430532455444, 0.04444434121251106, -0.0017316637095063925, -0.02711077779531479, -0.02258780039846897, -0.012566833756864071, 0.015491873025894165, 0.01589812897145748, -0.020082559436559677, -0.011822031810879707, -0.010731913149356842, 0.02029922790825367, -0.01702210120856762, -0.008172504603862762, -0.015992920845746994, 0.01081316452473402, 0.0012119952589273453, 0.010596495121717453, 0.01799711398780346, -0.011063688434660435, -0.02892538532614708, -0.03610256314277649, -0.012431415729224682, 0.013372574001550674, 0.01920233853161335, 0.03637339919805527, 0.006980821955949068, -0.0034565564710646868, -0.004942773841321468, -0.01451685931533575, 0.014801238663494587, -0.017292939126491547, -0.017563775181770325, -0.022181544452905655, 0.040273454040288925, -0.005210225470364094, 0.03417962044477463, 0.010731913149356842, 0.038594264537096024, 0.01667001284658909, -0.01439498271793127, 0.01738773100078106, -0.0039034374058246613, -0.01099597942084074, -0.01784815452992916, 0.013934560120105743, -0.006676130462437868, -0.0014616730622947216, 0.01799711398780346, -0.003889895509928465, 0.017347104847431183, 0.035425469279289246, 0.0012187662068754435, 0.012776732444763184, -0.028275376185774803, -0.0405442900955677, -0.006946967449039221, 0.005975340027362108, -0.0015733933541923761, 0.02514720894396305, -0.03710465878248215, -0.019744012504816055, 0.0243076141923666, 0.018024198710918427, -0.00632065674290061, -0.002038047881796956, 0.015762709081172943, -0.013738203793764114, 0.014530401676893234, 0.025851385667920113, 0.03775466978549957, -0.022574258968234062, 0.0009826302994042635, -0.01994713954627514, 0.0163856353610754, 0.013609555549919605, 0.009282936342060566, 0.029927480965852737, 0.011585050262510777, 0.017821069806814194, -0.01299340184777975, 0.00832823570817709, -0.027313904836773872, -0.019649218767881393, 0.007637601345777512, -0.01979818008840084, -0.01629084162414074, -0.03580464422702789, -0.026068054139614105, 0.0009563929052092135, 0.007326139137148857, 0.013128820806741714, 0.01615542359650135, 0.01871483214199543, -0.013399657793343067, -0.018823167309165, 0.011747552081942558, -0.0444985069334507, 0.037619251757860184, -0.010373055003583431, 0.016466885805130005, 0.013778829015791416, 0.0006440840661525726, -0.011578278616070747, 0.022168003022670746, -0.00012864754535257816, 0.010589724406599998, 0.03756508231163025, 0.012566833756864071, -0.027381613850593567, 0.013988727703690529, -0.014855406247079372, 0.014300189912319183, 0.0007371843094006181, -0.03125458210706711, -0.002574643585830927, 0.015573123469948769, -0.0038695826660841703, -0.025661800056695938, 0.02077319286763668, -0.030198318883776665, -0.0001528747525298968, -0.008050628006458282, -0.0031501720659434795, -0.015627291053533554, -0.0031840268056839705, -0.0278149526566267, 0.0024544596672058105, 0.0017367418622598052, 0.030306652188301086, 0.0067201415076851845, 0.012065785005688667, -0.003913593478500843, -0.010847019031643867, -0.021477369591593742, 0.0005814530304633081, -0.010555869899690151, 0.001894165761768818, -0.008917305618524551, 0.0076240599155426025, 0.024402407929301262, 0.004543289542198181, -0.020231518894433975, -0.0021125280763953924, -0.00692665483802557, 0.03187750652432442, -0.006334198638796806, -0.003727393224835396, -0.0015827033203095198, 0.006726912222802639, -0.005518302321434021, 0.001790909213013947, -0.022289879620075226, -0.018078366294503212, 0.00021582318004220724, -0.02358989790081978, 0.02150445245206356, -0.001775674638338387, 0.004695635288953781, -0.0019364841282367706, 0.0027236039750277996, -0.008585531264543533, 0.00026850943686440587, -0.017672110348939896, -0.01069128792732954, -0.03897343575954437, 0.0033025178126990795, -0.017306480556726456, -0.013778829015791416, 0.012918922118842602, 0.01761794276535511, -0.02307530678808689, 0.010948583483695984, 0.03233793005347252, -0.013284551911056042, -0.002429068787023425, -0.006804777774959803, -0.005660491995513439, -0.048181891441345215, 0.01665647141635418, -0.006946967449039221, -0.002071902621537447, 0.02456491068005562, -0.010305345058441162, -0.0070349895395338535, -0.026068054139614105, -0.0140970628708601, -0.00747509952634573, -0.01629084162414074, -0.018620038405060768, 0.015532498247921467, 0.013826225884258747, 0.015640832483768463, -0.012390789575874805, -0.00784072931855917, 0.007739165332168341, -0.020366936922073364, 0.01834920234978199, -0.01293246354907751, -0.021680496633052826, 0.010975666344165802, -0.004668551497161388, -0.02101694606244564, 0.021815914660692215, -0.018782541155815125, -0.007644372526556253, -0.002452766988426447, 0.003828957211226225, -0.005020639859139919, 0.02150445245206356, -0.02319718338549137, -0.012925692833960056, -0.014313732273876667, 0.005257621873170137, -0.008443341590464115, 0.008734490722417831, 0.01234339363873005, 0.02113882265985012, 0.008064169436693192, 0.007211033254861832, -0.03209417685866356, -0.029575392603874207, -0.01040013786405325, -0.004512820392847061, -0.020204436033964157, -0.004130263347178698, 0.0012788581661880016, 0.057525765150785446, 0.006056590937077999, -0.015546039678156376, -0.017076268792152405, -0.008395944721996784, -0.018823167309165, -0.015180409885942936, 0.010941811837255955, 0.011442860588431358, 0.005186527501791716, 0.01822732575237751, -0.014300189912319183, 0.04119429737329483, -0.006581337656825781, 0.027665993198752403, -0.009993882849812508, 0.007312597241252661, 0.007928751409053802, 0.025973262265324593, 0.008368860930204391, -0.003676611464470625, -0.016981475055217743, -0.025851385667920113, 0.015613749623298645, -0.0043435473926365376, 0.02078673429787159, 0.003554734867066145, 0.006919883657246828, -0.010880873538553715, 0.008775116875767708, -0.003964375704526901, -0.023251350969076157, 0.001958489650860429, 0.0028725641313940287, -0.018322119489312172, 0.011036604642868042, -0.008653240278363228, 0.023671148344874382, -0.0011493642814457417, 0.001615711604245007, -0.0208002757281065, -0.01402935292571783, 0.02043464593589306, -0.010711601004004478, -0.013948102481663227, 0.011612133122980595, -0.013088194653391838, 0.01883670873939991, -0.01932421512901783, 0.003893280867487192, 0.0384046770632267, 0.0013050955021753907, 0.01354184653609991, -0.023860733956098557, 0.001763825537636876, -0.01872837357223034, -0.004610999021679163, 0.009635023772716522, 0.017184603959321976, 0.025458671152591705, -0.016927309334278107, 0.031904589384794235, -0.03301502391695976, 0.0007084078388288617, -0.024768037721514702, 0.002767615020275116, -0.026271183043718338, 0.014652278274297714, 0.02078673429787159, -0.007691768929362297, -0.006398522760719061, -0.024456575512886047, 0.009465751238167286, -0.00904595386236906, -0.0008501740521751344, 0.0009555465658195317, -0.0030739991925656796, 0.0034667127765715122, 0.015044991858303547, -0.022763844579458237, -0.010684517212212086, 0.010088675655424595, 0.008165733888745308, -0.018768999725580215, -0.0013626483269035816, 0.18915250897407532, 0.010494931600987911, 0.02784203737974167, 0.05056525394320488, -0.001319483737461269, 0.02223571203649044, 0.005873776040971279, -0.022641967982053757, -0.010528786107897758, 0.023007597774267197, -0.01258037518709898, 0.020258603617548943, -0.015356454066932201, 0.00400500139221549, 0.009844922460615635, 0.010914728045463562, 0.004878450185060501, -0.060342468321323395, -0.01052201446145773, 0.008179275318980217, 0.015952294692397118, 0.015356454066932201, -0.008991786278784275, -0.031525418162345886, 0.03488379716873169, -0.014801238663494587, -0.005731586832553148, 0.0032754342537373304, 0.03645465150475502, 0.006980821955949068, -0.00485813757404685, 0.018552329391241074, 0.015613749623298645, 0.013988727703690529, -0.027977455407381058, -0.005538615398108959, 0.014191855676472187, -0.013399657793343067, 0.030929578468203545, -0.002170081017538905, 0.0153158288449049, -0.003916979301720858, -0.029250388965010643, -0.017685651779174805, 0.008362090215086937, 0.012912150472402573, -0.01221474539488554, -0.019405465573072433, -0.011287129484117031, 0.03556089103221893, -0.014977282844483852, 0.002620347309857607, 0.012817357666790485, 0.008964702486991882, 0.0007562275277450681, -0.012059014290571213, -0.009039183147251606, 0.016196047887206078, 0.01786169596016407, 0.009689191356301308, -0.019053379073739052, 0.0339900366961956, -0.007982918992638588, 0.0030824628192931414, 0.008524592965841293, -0.006747225299477577, -0.028139958158135414, -0.005941485054790974, -0.007549579720944166, -0.01848462037742138, -0.009560544043779373, -0.009601169265806675, 0.005508146248757839, -0.0009877084521576762, -0.02051589824259281, -0.027977455407381058, 0.008030314929783344, 0.010163156315684319, 0.002703291131183505, 0.03334002569317818, -0.02502533234655857, -0.022154461592435837, -0.007590204942971468, 0.01015638466924429, -0.0022750303614884615, -0.04921106994152069, 0.0449589304625988, -0.041979726403951645, -0.007569892331957817, -0.005877161398530006, -0.020380480214953423, 0.002908111549913883, -0.0043740165419876575, 0.009073037654161453, 0.007407390046864748, 0.009337102994322777, -0.02795037254691124, 0.029250388965010643, -0.011625675484538078, 0.01679188944399357, -0.03482963144779205, 0.03607548028230667, 0.03003581613302231, 0.012119952589273453, 0.007014676462858915, -0.0010130994487553835, -0.016074171289801598, -0.012918922118842602, 0.014002269133925438, -0.016561677679419518, -0.009811067953705788, 0.0013973492896184325, 0.0062529477290809155, -0.01822732575237751, -0.000985169317573309, 0.0037781752180308104, 0.007976147346198559, 0.003971146419644356, 0.01920233853161335, 0.004512820392847061, -0.008788658306002617, -0.014598110690712929, -0.0403817854821682, 0.004539904184639454, 0.006980821955949068, -0.013799142092466354, -0.020109642297029495, 0.004509435035288334, -0.002862407825887203, -0.005057879723608494, 0.04493184760212898, -0.03599422797560692, 0.006550868507474661, -0.005701117683202028, 0.0011205878108739853, 0.008890222758054733, -0.011253274977207184, -0.025079499930143356, -0.02139611728489399, 0.0009487756178714335, -0.009980341419577599, -0.001380422036163509, -0.00991263147443533, -0.008768346160650253, 0.0028454805724322796, -0.024727411568164825, -0.0010748840868473053, -0.007827186957001686, -0.002031276933848858, -0.024740954861044884, -0.004512820392847061, 0.004732875619083643, -0.005172985605895519, -0.030062898993492126, -0.00845011230558157, -0.033475443720817566, 0.0011349760461598635, -0.023291977122426033, 0.013921018689870834, -0.01606062985956669, -0.024916997179389, -0.0004018119943793863, 0.0408422090113163, 0.0026626656763255596, -0.025485755875706673, -0.007833958603441715, -0.17127728462219238, 0.019716929644346237, 0.002102371770888567, -0.009844922460615635, 0.014977282844483852, 0.004946159664541483, 0.02345447801053524, -0.009249080903828144, 0.017198145389556885, -0.006770923268049955, -0.004577144049108028, -0.001931405859068036, -0.008836055174469948, -0.00845011230558157, -0.012018389068543911, 0.015992920845746994, -0.003368534380570054, 0.001319483737461269, 0.037375498563051224, 0.022181544452905655, 0.029737895354628563, -0.008307922631502151, 0.009872006252408028, 0.006347740534693003, -0.019148170948028564, 0.03147125244140625, 0.0035987456794828176, 0.0004930078866891563, -0.028167041018605232, -0.026393059641122818, 0.03147125244140625, -0.016087714582681656, 0.03285251930356026, -0.0026795929297804832, 0.005112047307193279, -0.0003463750472292304, -0.005677419248968363, -0.01427310612052679, -0.024118028581142426, 0.011998075991868973, 0.0015657760668545961, 0.00777979101985693, 0.009567314758896828, -0.013514762744307518, -0.0031874121632426977, 0.018037740141153336, 0.021680496633052826, -0.03073999285697937, 0.010224094614386559, -0.030360819771885872, 0.01824086718261242, -0.01870129071176052, 0.010806393809616566, 0.008456883020699024, 0.02104402892291546, -0.015085617080330849, -0.030550405383110046, 0.02723265439271927, -0.014489776454865932, -0.002032969845458865, -0.008402715437114239, -0.03136291727423668, -0.0052373092621564865, 0.010549098253250122, 0.006615192163735628, -0.02563471533358097, -0.014327273704111576, 0.0016064015217125416, -0.04189847409725189, 0.0028725641313940287, -0.0032534287311136723, -0.018863791599869728, 0.004668551497161388, -0.0012915536062791944, -0.010054821148514748, 0.03182334080338478, 0.010542327538132668, 0.0013127127895131707, 0.01750960759818554, -0.004451882094144821, -0.010257949121296406, 0.014124145731329918, 0.0011502106208354235, -0.005914401728659868, 0.008599072694778442, -0.016087714582681656, -0.010698058642446995, 0.0016258680261671543, 0.004817511886358261, -0.03163375332951546, 0.00565033545717597, -0.047586049884557724, -0.02211383543908596, 0.004560216795653105, 0.007908438332378864, 0.023481562733650208, -0.0044958931393921375, -0.015992920845746994, 0.016196047887206078, -0.013514762744307518, 0.013013714924454689, -0.0036292148288339376, -0.04736937955021858, -0.011050147004425526, 0.01885025016963482, 0.014232480898499489, -0.03025248646736145, 0.008666781708598137, 0.05411322042346001, 0.013988727703690529, -0.011537653394043446, -0.0072178044356405735, 0.009797526523470879, 0.03000873327255249, 0.007366764824837446, 0.03388170152902603, -0.019974224269390106, -0.00723134633153677, 0.01519395224750042, 0.014977282844483852, 0.04596102610230446, -0.004875064827501774, -0.0006474695401266217, 0.026040971279144287, 0.0002127551124431193, -0.011205878108739853, -0.11981826275587082, -0.021179448813199997, -0.022059667855501175, 0.019771095365285873, -0.0048005846329033375, 0.01799711398780346, 0.0017672110116109252, 0.01476061251014471, -0.007183949463069439, 0.017766902223229408, 0.023048223927617073, -0.030171234160661697, -0.006672745104879141, -0.00045153594692237675, -0.029006635770201683, 0.0015116085996851325, -0.01274964865297079, -0.0020363552030175924, -0.017577316612005234, 0.03182334080338478, 0.018132532015442848, 0.009370957501232624, -0.011781406588852406, 0.0002687210217118263, 0.008660010993480682, 0.0016470270929858088, -0.03320460766553879, 0.028762882575392723, 0.0024781578686088324, 0.021057572215795517, -0.004699020646512508, -0.02284509502351284, 0.0025797218549996614, -0.006361282430589199, 0.005782368592917919, -0.008423028513789177, -0.001943254959769547, -0.01677834801375866, 0.045121435075998306, -0.01894504390656948, -0.005291476845741272, 0.002163310069590807, -0.0018383057322353125, -0.0033888472244143486, -0.01847107894718647, 0.011002750135958195, -0.040517207235097885, 0.0208002757281065, 0.0035310364328324795, -0.0176044013351202, -0.014083520509302616, -0.033123355358839035, -0.041600551456213, 0.0057045030407607555, 0.0012018389534205198, -0.02199195884168148, 0.004665166139602661, 0.003087541088461876, -0.004299536347389221, 0.01727939583361149, -0.021937791258096695, 0.0023291977122426033, -0.016832515597343445, 0.0030096755363047123, 0.013961643911898136, 0.002010964322835207, -0.03206709399819374, -0.004387558437883854, 0.019134629517793655, -0.01679188944399357, -0.004269067198038101, 0.01992005668580532, -0.021870082244277, 0.023738857358694077, -0.015722084790468216, 0.012614230625331402, 0.0008844518451951444, 0.0039677610620856285, 0.009140746667981148, -0.0006834400701336563, -0.024212822318077087, -0.02235758863389492, -0.004001615568995476, -0.011070460081100464, 0.01966276206076145, 0.02136903442442417, 0.011158482171595097, 0.015708541497588158, 0.031064996495842934, -0.017699193209409714, 0.01736064814031124, 0.0189721267670393, 0.011314213275909424, 0.003727393224835396, 0.0020295842550694942, -0.007861042395234108, 0.018254408612847328, -0.015356454066932201, 0.002010964322835207, 0.025242002680897713, -0.02673160471022129, -0.011205878108739853, -0.04558185487985611, 0.004448496736586094, 0.005000326782464981, -0.01662938855588436, 0.01748252473771572, -0.0016174042830243707, -0.0021463828161358833, 0.0035005672834813595, -0.00470579182729125, -0.00537611311301589, -0.031092079356312752, -0.01591167040169239, -0.000802354421466589, 0.0075224959291517735, -0.022425297647714615, -0.04200680926442146, 0.013880392536520958, -0.006269874982535839, 0.002635581884533167, 0.012465270236134529, 0.024984708055853844, -0.01834920234978199, 0.017658568918704987, 0.021897166967391968, -0.0490756519138813, 0.008186046034097672, -0.012532979249954224, 0.020488813519477844, -0.03133583441376686, -0.021680496633052826, -0.0029741281177848577, 0.0016910381382331252, -0.006774308625608683, 0.02747640758752823, -0.009885547682642937, 0.015776252374053, 0.01044753473252058, 0.02419928088784218, 0.0097162751480937, 0.018890876322984695, -0.0024916997645050287, -0.023359686136245728, -0.0017672110116109252, -0.0169950183480978, -0.005291476845741272, -0.01885025016963482, -0.020380480214953423, 0.004820897243916988, 0.023048223927617073, 0.002726989332586527, 0.02540450356900692, 0.013250697404146194, -0.020136727020144463, -0.022506549954414368, -0.01372466143220663, 0.001304249162785709, 0.003483640030026436, -0.0163856353610754, -0.008395944721996784, -0.002669436624273658, 0.03913593664765358, -0.01848462037742138, 0.011050147004425526, 0.00041810452239587903, -0.004137034062296152, -0.019229423254728317, -0.03401711955666542, 0.022384673357009888, 0.009404812939465046, -0.00759697612375021, -0.011226191185414791, 0.0022225556895136833, 0.0032144959550350904, 0.006513628177344799, 0.023007597774267197, -0.00808448251336813, -0.00886313896626234, 0.007549579720944166, 0.003087541088461876, 0.02357635460793972, 0.020935695618391037, 0.01495019905269146, -0.015166868455708027, 0.012797045521438122, 0.04311724007129669, -0.001673264428973198, 0.006483159027993679, -0.002941966289654374, 0.002947044325992465, 0.0044654239900410175, 0.020001307129859924, 0.012587146833539009, -0.003991459496319294, 0.011260045692324638, 0.021071113646030426, 0.02090861089527607, -0.011740781366825104, 0.004773500841110945, -0.012316309846937656, -0.0008230903767980635, 0.0159252118319273, -0.015843961387872696, -0.0027760786470025778, 0.0016411026008427143, -0.04021928459405899, -0.007556350436061621, -0.01281058695167303, -0.030658740550279617, -0.027192028239369392, 0.030956661328673363, 0.00735322292894125, 0.0075834342278540134, 0.026054512709379196, 0.013778829015791416, -0.03244626522064209, -0.004049011971801519, -0.008599072694778442, 0.0030739991925656796, -0.011693384498357773, 0.024862831458449364, -0.019175255671143532, 0.007556350436061621, 0.0326087661087513, 0.0077459365129470825, 0.02235758863389492, 0.027056610211730003, 0.01787523739039898, -0.017766902223229408, 0.004803969990462065, 0.02456491068005562, -0.0034091598354279995, 0.0195815097540617, -0.0047701154835522175, -0.013122049160301685, -0.00467532267794013, -0.02124715782701969, 0.003642756724730134, 0.01723877154290676, 0.013101737014949322, 0.08921368420124054, 0.016114797443151474, -0.0147064458578825, -0.0071568661369383335, -0.007238117046654224, 0.01179494895040989, 0.024646161124110222, -0.0064763883128762245, -0.00983815174549818, -0.02708369307219982, 0.002938580699265003, 0.005731586832553148, -0.014679362066090107, -0.02163987047970295, -0.0028725641313940287, 0.007691768929362297, -0.018389828503131866, -0.003224652260541916, -0.030062898993492126, 0.0069740512408316135, 0.0006796314264647663, 0.011679843068122864, 0.013304864056408405, 0.015640832483768463, -0.02455136738717556, -0.0013643410056829453, 0.008287610486149788, 0.00443156948313117, -0.03220251202583313, -0.02708369307219982, -0.012424644082784653, 0.006154769565910101, -0.0240774042904377, -0.027665993198752403, -0.012986631132662296, 0.013866851106286049, -0.006425606086850166, -0.024713870137929916, 0.02368468977510929, -0.011808490380644798, 0.0034497855231165886, 0.0070349895395338535, -0.023860733956098557, -0.03426087275147438, -0.01040013786405325, 0.017414815723896027, -0.011869428679347038, -0.010637120343744755, -0.04934648796916008], "a5376a45-de84-4321-b327-d9e9c6742a8c": [-0.007599104195833206, 0.01591041497886181, 0.02284434624016285, -0.014916013926267624, -0.016757000237703323, 0.019646137952804565, -0.016340425238013268, -0.01337737962603569, 0.0030823068227618933, -0.037760358303785324, 0.023771557956933975, 0.0008020717068575323, -0.0020156775135546923, 0.017039194703102112, -0.012302352115511894, -0.003295632777735591, 0.018853304907679558, 0.016259798780083656, 0.019269878044724464, -0.0010044793598353863, 0.014445689506828785, -0.0020912655163556337, -0.007733482867479324, -8.11520148999989e-05, -0.019914893433451653, 0.016340425238013268, 0.027843225747346878, -0.006510638631880283, 0.007968645542860031, -0.015601344406604767, -0.0020408735144883394, -0.020882420241832733, -0.020868981257081032, -0.005922732409089804, -0.024295633658766747, -0.005664053838700056, -0.02843449078500271, -0.012188130058348179, 0.013773797079920769, 0.009776036255061626, 0.013189250603318214, -0.004370660986751318, 0.0007714165840297937, -0.01621948555111885, 0.0015831467462703586, 0.019001120701432228, 0.002425532089546323, -0.03249272331595421, -0.0027413214556872845, 0.01842329278588295, 0.006460246630012989, 0.047569990158081055, -0.04969317093491554, -0.03399776294827461, 0.025894736871123314, 0.0010279956040903926, 0.008633818477392197, -0.01168421097099781, -0.005217245314270258, -0.022790594026446342, 0.010951847769320011, 0.0006026035989634693, -0.01702575571835041, -0.02757446840405464, -0.03671220690011978, -0.007827548310160637, 0.02859574556350708, 0.00825755950063467, -0.005422172602266073, 0.03184770420193672, 0.019323628395795822, 0.028622621670365334, 0.010978723876178265, -0.0001296542613999918, 0.040206048637628555, -0.01090481597930193, -0.015090705826878548, 0.017415454611182213, -0.01599104143679142, 0.005156775005161762, -0.0019787235651165247, -0.009050392545759678, -0.010078388266265392, 0.01615229621529579, 0.02217245288193226, -0.007699888199567795, -0.018248600885272026, 0.033944010734558105, 0.00434714462608099, -0.001751959789544344, 0.025236282497644424, 0.00024818029487505555, 0.012698768638074398, 0.013773797079920769, 0.03402463719248772, 0.017670772969722748, -0.01492945197969675, 0.026701008901000023, -0.002032474847510457, -0.020976483821868896, -0.0018191490089520812, 0.013081747107207775, -0.03144456818699837, -0.004639417864382267, 0.007276596035808325, 0.008533035404980183, -0.013155655935406685, 0.008553192019462585, -0.002324748085811734, 0.0010977044003084302, -0.03367525339126587, 0.0604165755212307, 0.001471444615162909, -0.03552967682480812, 0.011979843489825726, 0.003853303613141179, 0.010374020785093307, -0.016192609444260597, -0.03418589010834694, 0.007840985432267189, 0.006853303872048855, 0.016931692138314247, 0.00954759307205677, -0.00029500279924832284, 0.025384100154042244, -0.005385218653827906, 0.006104143336415291, -0.015614782460033894, -0.02800448052585125, -0.01814109832048416, 0.007027995772659779, 0.027950728312134743, 0.006651735864579678, 0.009406494908034801, -0.0010271556675434113, -0.004222844261676073, -0.01600448042154312, 0.0123426653444767, -0.016555432230234146, -0.023892497643828392, 0.023126540705561638, -0.0073840986005961895, 0.0013496640603989363, -0.0016973684541881084, 0.012436730787158012, 0.029455767944455147, 0.033137738704681396, 0.016824189573526382, 0.013216125778853893, -0.01659574545919895, -0.009870100766420364, 0.008486002683639526, 0.006631579250097275, -0.012792833149433136, -0.016636058688163757, 0.006907055154442787, -0.023408735170960426, 0.019511759281158447, 0.015386338345706463, -0.0071825310587882996, 0.01931019127368927, 0.06100784242153168, -0.019108623266220093, 0.007827548310160637, 0.002141657518222928, 0.03738410025835037, -0.00027589587261900306, 0.0013647816376760602, -0.025075029581785202, 0.013316909782588482, 0.011643897742033005, 0.015346025116741657, -0.014324748888611794, 0.014270996674895287, -0.0008961366256698966, 0.0058958567678928375, 0.009527435526251793, 0.012712206691503525, -0.017227323725819588, -0.009366181679069996, 0.01753639429807663, 0.00047662376891821623, 0.010434490628540516, 0.05092945322394371, -0.02107054926455021, -0.004723404534161091, 0.007041433826088905, -0.0002553191443439573, 0.012880180031061172, 0.00309574487619102, 0.020895857363939285, 0.04257110878825188, -0.01410974282771349, -0.007243001367896795, -0.6235162615776062, 0.008936170488595963, -0.01275251992046833, -0.038351625204086304, -0.0067256442271173, 0.008116461336612701, -0.000542973168194294, -0.004972004797309637, -0.02189025841653347, 0.05815901607275009, -0.029455767944455147, 0.017670772969722748, 0.007330347318202257, 0.015278835780918598, 0.005633818916976452, -0.01974020153284073, 0.025236282497644424, -0.018262038007378578, -0.0019686450250446796, 0.0136326989158988, -0.0024725645780563354, 0.025236282497644424, -0.019511759281158447, 0.014472564682364464, 0.011180291883647442, 0.011865622363984585, -0.009493840858340263, 0.0047838748432695866, 0.006262038368731737, 0.011509519070386887, -0.013310191221535206, -0.005197088699787855, 0.016111982986330986, -0.00046696531353518367, 0.03633594885468483, -0.0014857223723083735, -0.018530795350670815, 0.02838074043393135, 0.0191623754799366, 0.029670773074030876, -0.0023012319579720497, 0.002076147822663188, 0.02867637202143669, 0.020143337547779083, 0.01671668514609337, -0.022347144782543182, -0.017428891733288765, 0.029805151745676994, -0.0006026035989634693, -0.0268891379237175, -0.008318029344081879, 0.00950727891176939, 0.0042497203685343266, -0.016488242894411087, 0.016273237764835358, -0.017133260145783424, 0.017670772969722748, -0.0036080628633499146, 0.00010655795631464571, -0.014055991545319557, 0.01448600273579359, 0.0009784435387700796, -0.0037256439682096243, -0.0071153417229652405, 0.01716013438999653, 0.019726764410734177, -0.026284435763955116, 0.02284434624016285, -0.013135498389601707, -0.010219485498964787, 0.01212766021490097, 0.026136619970202446, -0.02557222917675972, 0.006322508677840233, 0.015171333216130733, 0.031041434034705162, 0.014123180881142616, -0.004239641595631838, 0.006194849032908678, 0.014257559552788734, 0.009823068976402283, -0.015601344406604767, -0.03227771818637848, 0.0025867861695587635, 0.031229564920067787, 0.022817470133304596, -0.0004039753694087267, 0.013814110308885574, 0.011731243692338467, 0.0022340426221489906, 0.020250840112566948, 0.019417693838477135, -0.021917134523391724, -0.0246987696737051, -0.003991041798144579, 0.03179395571351051, -0.0011438970686867833, 0.004159014672040939, -0.0023348266258835793, -0.010595745407044888, -0.028918253257870674, -0.011482642963528633, -0.01996864564716816, 0.01518477126955986, 0.012060470879077911, 0.017334826290607452, 0.006564389914274216, 0.027816349640488625, 0.02425532042980194, -0.022683091461658478, -0.004007838666439056, -0.006631579250097275, -0.04523180425167084, 0.004394176881760359, -0.01054199319332838, -0.032976485788822174, 0.03488466143608093, -0.013814110308885574, 0.009661814197897911, 0.008385218679904938, 0.01776483841240406, 0.0009003359591588378, 0.015225084498524666, -0.007027995772659779, 0.0052508399821817875, 0.009440089575946331, -0.0025464727077633142, -0.01054199319332838, -0.02859574556350708, 0.001541993347927928, 0.020667413249611855, 0.026566630229353905, 0.006372900679707527, 0.001242161262780428, 0.002086226362735033, -0.013652856461703777, 0.002044233027845621, -0.008237401954829693, 0.025249721482396126, -0.0039843227714300156, -0.02594848908483982, 0.018880179151892662, 0.020398657768964767, -0.02438969910144806, -0.019363941624760628, -0.024940650910139084, -0.009829787537455559, 0.005153415724635124, -0.010414334014058113, -0.014620381407439709, -0.0030201568733900785, -0.014606943354010582, -0.027520718052983284, 0.02180963195860386, -0.0021786114666610956, -0.012550951912999153, -0.004746920429170132, -0.00041867303662002087, 0.00484770443290472, -0.0016931691206991673, -0.022064950317144394, 0.029670773074030876, -0.019955208525061607, -0.02447032555937767, -0.02705039270222187, -0.02593505196273327, -0.022347144782543182, 0.03781411051750183, -0.043807391077280045, -0.04082418978214264, 0.001291713328100741, 0.006574468221515417, -0.005012318026274443, -0.002566629322245717, -0.02520940825343132, 0.031202688813209534, -0.040877941995859146, -0.002635498298332095, -0.01558790635317564, -0.014432251453399658, 0.003507278859615326, 0.020358342677354813, -0.0034669653978198767, -0.021554311737418175, 0.012980963103473186, 0.014324748888611794, 0.027063829824328423, 0.006987682078033686, -0.03789473697543144, 0.005701008252799511, 0.015789473429322243, 0.02195744775235653, -0.03574468195438385, 0.013525196351110935, -0.004387458320707083, 0.01710638403892517, -0.000700447941198945, 7.32782791601494e-05, 0.005281075369566679, 0.021204927936196327, 0.020761478692293167, -0.0044076149351894855, 0.028649497777223587, -0.028461366891860962, 0.019861143082380295, -0.030100785195827484, 0.007256439421325922, -0.002316349418833852, 0.01857110857963562, -0.005919373128563166, -0.001001959666609764, -0.01499664131551981, -0.024188131093978882, -0.025518478825688362, 0.027440089732408524, -0.0011229004012420774, -0.005240761674940586, 0.006853303872048855, 0.005254199728369713, -0.0022928332909941673, -0.017939530313014984, 0.03300336003303528, 0.01960582286119461, 0.00821724534034729, 0.005959686823189259, -0.0070683094672858715, 0.011737962253391743, 0.0006231802981346846, -0.026217246428132057, -0.04649496078491211, -0.0019316909601911902, -0.02519596926867962, 0.016044793650507927, -0.007216125726699829, 0.020103024318814278, -0.014701008796691895, 0.03501903638243675, -0.01865173690021038, 0.051171332597732544, -0.01636730134487152, 0.006181410979479551, -0.00843896996229887, 0.003364501753821969, -0.023610303178429604, 0.010313550010323524, 0.005190369673073292, 0.0339171327650547, 0.006594625301659107, -0.00011516657832544297, 0.012671892531216145, 0.003225084161385894, -0.01635386422276497, -0.014150056056678295, 0.003685330506414175, -0.005019037052989006, 0.005993281491100788, 0.004864501766860485, 0.014647256582975388, 0.009755879640579224, 0.010320269502699375, 0.03036954253911972, -0.01570884697139263, -0.0024725645780563354, 0.01776483841240406, 0.027681970968842506, 0.002538074040785432, -0.01902799680829048, -0.0038936170749366283, -0.01539977639913559, 0.0010397536680102348, -0.023973125964403152, -0.03544905036687851, -0.0298589039593935, 0.02123180404305458, 0.019363941624760628, -0.011744680814445019, -0.007706607226282358, 0.017509518191218376, 0.017348265275359154, 0.03058454766869545, -0.03343337029218674, -0.011818589642643929, 0.0038600226398557425, 0.038512878119945526, -0.012591266073286533, -0.025182532146573067, -0.004545352887362242, 0.020304592326283455, -0.013424412347376347, 0.028945129364728928, -0.007169093005359173, -0.013464726507663727, 0.028353864327073097, -0.017724525183439255, -0.0027228444814682007, -0.0030755880288779736, 0.021272117272019386, -0.0055834269151091576, -0.005116461776196957, -0.0027161254547536373, 0.008351624011993408, -0.01893393136560917, -0.014701008796691895, -0.013283315114676952, 0.0331914909183979, 0.004528555553406477, 0.017522957175970078, -0.016044793650507927, -0.004421052988618612, -0.02217245288193226, 0.006708846893161535, -0.03606719151139259, -0.019699888303875923, -0.004501679912209511, 0.0272788368165493, -0.007693169172853231, 0.02197088487446308, 0.005932811181992292, 0.008620381355285645, 0.01219484955072403, -0.0009633259032852948, -0.03311086446046829, -0.028837626799941063, 0.0008554031373932958, 0.024860022589564323, 0.021419933065772057, -0.009151176549494267, 0.009789474308490753, -0.02594848908483982, -0.020008958876132965, -0.011328107677400112, 0.0004298012354411185, 0.014660694636404514, -0.009608062915503979, -0.0063124303705990314, -0.008391937240958214, 0.04082418978214264, -0.0008868981385603547, 0.01615229621529579, 0.015561031177639961, -0.01083090715110302, -0.026647256687283516, 0.020694289356470108, -0.007941769436001778, 0.003351063933223486, -0.025625981390476227, 0.01784546487033367, 0.004108622670173645, 0.02003583498299122, 0.001227043685503304, 0.015319149009883404, 0.0024036956019699574, 0.017885778099298477, -0.025088466703891754, -0.014405375346541405, 0.010877939872443676, 0.023328108713030815, 0.008076148107647896, -0.014055991545319557, 0.02085554413497448, 0.025760360062122345, 0.019511759281158447, 0.0036651736591011286, -0.022817470133304596, 0.014660694636404514, 0.021178051829338074, -0.011758118867874146, 0.0022357222624123096, -0.022951848804950714, 0.027735723182559013, 0.004484882578253746, -6.86590137775056e-05, -0.010703247971832752, -0.016864502802491188, -0.0013412653934210539, -0.017307952046394348, -0.011623740196228027, -0.01544009055942297, 0.016931692138314247, 0.007464725989848375, -0.016851063817739487, -0.042114224284887314, -0.024900337681174278, -0.018597984686493874, -0.027762599289417267, -0.0014554872177541256, 0.01227547600865364, -0.004189250059425831, 0.012477044016122818, -0.00757222855463624, -0.03561030328273773, -0.009124300442636013, -0.02018365077674389, 0.017200447618961334, 9.663704258855432e-05, -0.0018325868295505643, -0.024000000208616257, -0.0324120968580246, 0.029455767944455147, 0.013659575022757053, -0.0028656215872615576, -0.008707727305591106, -0.007081747055053711, 0.011845464818179607, -0.012356103397905827, -0.03848600387573242, -0.013021277263760567, -0.02379843220114708, 0.007431131321936846, 0.03324524313211441, 0.00850615929812193, 0.013760359026491642, -0.018248600885272026, 0.03515341505408287, -0.021500561386346817, -0.006900336127728224, 0.004290033597499132, -0.0324389711022377, -0.0031931691337376833, 0.017213886603713036, -0.00972900353372097, 0.004599104169756174, 0.0036819709930568933, -0.001688969787210226, 0.003967525437474251, 0.003631578991189599, 0.015292273834347725, -0.010602463968098164, 0.0165823083370924, 0.017052631825208664, -0.002425532089546323, 0.007666293531656265, -0.007054871413856745, -0.013612542301416397, -0.002507838886231184, -0.022589026018977165, 0.015574468299746513, -0.007908174768090248, 0.0014286114601418376, 0.0009028555941767991, -0.011852184310555458, 0.025518478825688362, -0.026660695672035217, -0.015480403788387775, 0.005795072764158249, -0.031041434034705162, 0.007552071940153837, 0.01518477126955986, 0.013605823740363121, 0.030127661302685738, 0.004162373952567577, -0.01518477126955986, -0.023005599156022072, -0.01205375138670206, 0.029213886708021164, -0.007867861539125443, -0.010407615453004837, -0.01020604744553566, -0.0024876820389181376, 0.00872788392007351, -0.007619261275976896, 0.01592385210096836, -0.01988801918923855, 0.02320716716349125, -0.019498320296406746, 0.007108622696250677, 0.010004479438066483, -0.014150056056678295, 0.009493840858340263, -0.026768198236823082, -0.0390772707760334, 0.00689361710101366, 0.006900336127728224, 0.03730347380042076, 0.0004442889185156673, -0.008868981152772903, -0.023717805743217468, -0.008989921770989895, 0.006127659697085619, 0.012000000104308128, -0.011381858959794044, 0.01108622644096613, 0.03340649604797363, -0.0019820828456431627, 0.0228577833622694, 0.016743561252951622, 0.04574244096875191, 0.009386338293552399, 0.0035778277087956667, 0.02675475925207138, 0.004824188072234392, -0.020385218784213066, -0.02108398638665676, -0.009399776346981525, -0.0053146700374782085, 0.013048152439296246, 0.00788129959255457, -0.01753639429807663, 0.012362821958959103, 0.03281522914767265, -0.0007403415511362255, 0.028918253257870674, -0.020385218784213066, -0.03456215187907219, 0.007169093005359173, 0.01260470412671566, 0.0024910415522754192, 0.0250615905970335, -0.019928332418203354, 0.021984323859214783, 0.020103024318814278, -0.01396192703396082, 0.0030890258494764566, -0.012033594772219658, 0.016044793650507927, -0.02160806395113468, 0.016622621566057205, 0.041092947125434875, 0.02594848908483982, -0.014244121499359608, -0.009675252251327038, -0.019780516624450684, 0.008089586161077023, 0.02484658546745777, 0.011321389116346836, -0.006769317202270031, -0.001343785086646676, 0.012463605962693691, -0.026055991649627686, -0.02698320336639881, -0.01537290122359991, -0.020909294486045837, 0.006796192843466997, -0.022387458011507988, -0.004417693242430687, -0.04378051683306694, -0.037625979632139206, -0.018154535442590714, 0.011617021635174751, 0.009749160148203373, -0.007135498337447643, 0.021393056958913803, -0.013720044866204262, -0.016904816031455994, 0.006446808576583862, -0.020546473562717438, 0.03569092974066734, -0.005751399789005518, 0.022306831553578377, 0.02276371791958809, 0.006124300416558981, -0.014848824590444565, 0.004098544362932444, -0.014176932163536549, 0.011811870150268078, 0.027655096724629402, 0.01275251992046833, -0.035045914351940155, 0.022387458011507988, -0.008734602481126785, 0.006063830107450485, -0.0005757278995588422, -0.04805375263094902, 0.010159014724195004, 0.01754983328282833, -0.013814110308885574, -0.015171333216130733, 0.009164613671600819, -0.04894065111875534, -0.00529115367680788, -0.015090705826878548, -0.015413214452564716, -0.005573348607867956, 0.012430011294782162, -0.022589026018977165, 0.008197088725864887, 0.008371780626475811, 0.0589652881026268, 0.002260918263345957, 0.015547593124210835, -0.015211646445095539, 0.0019686450250446796, -0.050956327468156815, -0.004619261249899864, 0.005586786195635796, -0.009265397675335407, -0.019417693838477135, 0.01488913781940937, 0.029428891837596893, 0.0021802913397550583, 0.002106382977217436, -0.0101388581097126, -0.008667413145303726, 0.02843449078500271, -0.016340425238013268, -0.011381858959794044, -0.0044546471908688545, -0.00678275479003787, -0.002509518526494503, 0.003994401078671217, -0.013290033675730228, -0.009621500968933105, -0.006399776320904493, -0.020371781662106514, 0.007357222959399223, 0.0030067190527915955, -0.004975364077836275, -0.025988802313804626, -0.0021920492872595787, -0.007901456207036972, 0.00325195980258286, 0.0048275478184223175, -0.009110862389206886, -0.02123180404305458, -0.02762822061777115, -0.014405375346541405, -0.015493841841816902, 0.011200448498129845, 0.008714445866644382, -0.013988802209496498, 0.014190370216965675, 0.04230235144495964, -0.030530795454978943, -0.007888018153607845, -0.012369541451334953, -0.006238522008061409, -0.026942890137434006, 0.011670772917568684, -0.011187010444700718, -0.0030033595394343138, 0.023637179285287857, 0.005889137741178274, -0.01230907067656517, -0.03303023800253868, 0.0027413214556872845, 0.022427773103117943, 0.022011198103427887, 0.0030067190527915955, 0.0038331467658281326, 0.025625981390476227, 0.016783874481916428, -0.02062710002064705, -0.010938410647213459, -0.00869428925216198, -0.013048152439296246, 0.017294513061642647, 0.009809630922973156, -0.029213886708021164, 0.010562150739133358, 0.0037760359700769186, -0.010091825388371944, 0.010219485498964787, -0.0037390817888081074, 0.01664949581027031, -0.02261590212583542, 0.007061590440571308, -0.005734602455049753, 0.0028790594078600407, -0.008499440737068653, -0.02343561127781868, -0.012779396027326584, 0.028649497777223587, 0.002704367507249117, 0.003997760359197855, 0.020452408120036125, 0.02128555439412594, 0.01615229621529579, 0.0224815234541893, -0.024134378880262375, -0.02404031530022621, 0.0030033595394343138, -0.022965285927057266, 0.007807391230016947, -0.018745800480246544, 0.015077267773449421, 0.028541993349790573, 0.028730124235153198, -0.02682194858789444, -0.020156776532530785, -0.026432251557707787, -0.022454647347331047, -0.037545353174209595, -0.018826428800821304, 0.0036819709930568933, 0.02757446840405464, 0.027762599289417267, -0.0060503920540213585, 0.014566630125045776, 0.002087906002998352, 0.020358342677354813, -0.007894736714661121, -0.0016671332996338606, 0.002706047147512436, 0.032250840216875076, 0.008486002683639526, -0.0016990482108667493, -0.022884659469127655, -0.015104143880307674, -0.0029949608724564314, -0.008748040534555912, 0.021567750722169876, 0.0034283315762877464, 0.0003204087552148849, -0.03109518624842167, -0.03604031354188919, 0.005721164867281914, -0.010494961403310299, 0.019256439059972763, 0.012423292733728886, -0.02821948565542698, -0.015413214452564716, -0.0069608064368367195, 0.00462597981095314, -0.0070683094672858715, 0.011166853830218315, 0.028918253257870674, -0.01499664131551981, 0.0068163494579494, -0.013256439007818699, -0.013303471729159355, -0.002269316930323839, -0.007088466081768274, 0.02226651832461357, 0.011522957123816013, 0.021057112142443657, 0.05291825532913208, -0.021043673157691956, 0.030100785195827484, -0.027655096724629402, 0.0031629339791834354, -0.013867861591279507, 0.007041433826088905, 0.007780515588819981, 0.01615229621529579, 0.013552072457969189, -0.008801791816949844, 0.034615904092788696, -0.03160582482814789, 0.031283315271139145, -0.002205487107858062, -0.009755879640579224, -0.023341545835137367, 0.012705487199127674, 0.011731243692338467, -0.017227323725819588, -0.00042623182525858283, -0.0191623754799366, -0.0007075868197716773, -0.02512877993285656, -0.02240089699625969, -0.0005475924117490649, 0.0006517357542179525, 0.006792833562940359, 0.0011951287742704153, -0.004410974215716124, -0.012967525981366634, 0.02042553201317787, 0.029294513165950775, -0.020103024318814278, 0.004135498311370611, 0.1820022463798523, 0.016770437359809875, -3.0838815291645005e-05, 0.030853305011987686, -0.0004468085244297981, -0.0064300112426280975, 0.006681971251964569, -0.026432251557707787, 0.00019715845701284707, 0.027238523587584496, -0.012624860741198063, 0.022078387439250946, -0.017482643947005272, 0.01068309135735035, 0.022199328988790512, -0.009923852980136871, -0.0095811877399683, -0.03190145641565323, -0.008418813347816467, -0.0013479844201356173, 0.0004522676463238895, -0.0042497203685343266, -0.02116461470723152, -0.011455767787992954, 0.035395298153162, -0.004266517702490091, 0.008150056004524231, 0.01533258706331253, 0.03192833438515663, 0.017375141382217407, -0.012900336645543575, 0.0027178053278476, 0.009131019003689289, -0.01835610345005989, -0.026418814435601234, -0.008936170488595963, 0.0088488245382905, -0.009655095636844635, 0.032842107117176056, -0.012799552641808987, 0.010629340074956417, -0.02969764918088913, -0.031498320400714874, -0.013122061267495155, 0.027601344510912895, 0.024886898696422577, -0.002215565647929907, -0.01396192703396082, 0.015749160200357437, 0.04297424480319023, -0.018181411549448967, -0.03426652029156685, 0.0020778276957571507, 0.0026119821704924107, -0.013733482919633389, -0.011113102547824383, -0.001723404275253415, 0.006127659697085619, 0.011234043166041374, 0.007908174768090248, -0.009440089575946331, 0.03362150117754936, -0.002484322525560856, 0.02233370766043663, -0.012268757447600365, 0.012665173970162868, -0.015117581933736801, 0.005694289226084948, -0.008976483717560768, -0.013249720446765423, -0.00488129910081625, -0.00015852463548071682, -0.0022659574169665575, 0.0016326988115906715, -0.01908174715936184, -0.02675475925207138, 0.009144457057118416, -0.001641097478568554, 0.007558790966868401, 0.017630459740757942, -0.0331914909183979, -0.014512878842651844, -0.004367301240563393, 0.0012732363538816571, -0.01659574545919895, -0.040797315537929535, 0.018557671457529068, -0.029052631929516792, -0.013048152439296246, -0.028730124235153198, -0.02455095201730728, -0.012846585363149643, -0.004639417864382267, -0.003322508418932557, -0.016904816031455994, -0.019283315166831017, -0.012235162779688835, 0.031229564920067787, -0.014875700697302818, 0.02402687631547451, -0.01998208276927471, 0.06251288205385208, 0.03074580244719982, 0.025075029581785202, 0.027211647480726242, 0.01499664131551981, -0.02585442364215851, 0.005465845577418804, 0.013827548362314701, -0.011724524199962616, -0.016098544001579285, -0.028730124235153198, 0.010891377925872803, 0.007767077535390854, -0.0017586786998435855, -0.003866741433739662, -0.001479003462009132, -0.008425531908869743, 0.009346025064587593, 0.013720044866204262, 0.018073908984661102, -0.031659577041864395, -0.013162374496459961, -0.0059395297430455685, 0.013975364156067371, 0.0052038077265024185, -0.03480403125286102, 0.013095185160636902, -0.007807391230016947, -0.014983203262090683, 0.006665173918008804, -0.04154983162879944, 0.03163269907236099, -0.01799328252673149, -0.02292497269809246, -0.001988801872357726, -0.009944009594619274, -0.04326988011598587, -0.024443449452519417, 0.02498096413910389, -0.0011170213110744953, -0.00033531634835526347, -0.03375587984919548, -0.006040313746780157, 0.01967301219701767, -0.03507278859615326, 0.012692050077021122, -0.017146697267889977, -0.005684210918843746, -0.039829786866903305, -0.010058230720460415, 0.0062250844202935696, 0.007357222959399223, -0.03139081969857216, -0.0026119821704924107, -0.0269025769084692, 0.023838747292757034, -0.03402463719248772, 0.018597984686493874, -0.002858902560546994, -0.02233370766043663, 0.004464725963771343, 0.015131019987165928, 0.007699888199567795, -0.010777155868709087, -0.014875700697302818, -0.1686718910932541, 0.005391937680542469, 0.00025804873439483345, -0.01960582286119461, 0.009077267721295357, -0.01636730134487152, 0.02851511910557747, -0.005963046103715897, 0.0037491603288799524, -0.0032569989562034607, 0.005764837842434645, -0.022575588896870613, -0.003658454865217209, -0.014687570743262768, -0.01514445710927248, 0.0037793954834342003, 0.002522956347092986, -0.0013211086625233293, 0.044183652848005295, 0.03337962180376053, 0.02455095201730728, -0.015050392597913742, 0.03235834464430809, 0.0059361704625189304, -0.00800224021077156, 0.005089585669338703, -0.0023936170618981123, 0.014821949414908886, -0.012833147309720516, -0.024362822994589806, 0.03058454766869545, -0.005872340407222509, 0.025370661169290543, -0.0033661816269159317, 0.014096304774284363, 0.006376259960234165, -0.0044042556546628475, 0.0002023026318056509, -0.01592385210096836, 0.002931131049990654, 0.022279955446720123, 0.019646137952804565, -0.010159014724195004, -0.01615229621529579, -0.012174692936241627, 0.004165733698755503, 0.01193281076848507, -0.039238523691892624, 0.0018057111883535981, -0.015480403788387775, 0.04378051683306694, -0.019780516624450684, 0.004552071914076805, -0.012181411497294903, 0.020653976127505302, -0.00687010120600462, -0.031041434034705162, 0.022575588896870613, -0.002129899337887764, 0.0013135499320924282, -0.0004921612562611699, -0.016770437359809875, 0.007290033623576164, 0.018114222213625908, 0.007216125726699829, -0.03480403125286102, -0.002438969910144806, -0.0019518478075042367, -0.030638298019766808, 0.004105263389647007, 0.012335946783423424, -0.03531467169523239, 0.0070683094672858715, -0.00303023518063128, -0.02748040482401848, 0.038862261921167374, -0.015036954544484615, 0.011623740196228027, -0.032546475529670715, -0.013283315114676952, -0.02549160271883011, 0.03862038254737854, 0.015856662765145302, -0.015077267773449421, 0.007928331382572651, -0.0033409856259822845, -0.004162373952567577, -0.005734602455049753, 0.012302352115511894, -0.014230683445930481, 0.004541993606835604, -0.034239642322063446, 0.006094065029174089, -0.008163494057953358, 0.013975364156067371, 0.013276596553623676, 0.016165733337402344, -0.008398656733334064, 0.012430011294782162, -0.02217245288193226, 0.0217290036380291, -0.006732363253831863, 0.0020543113350868225, -0.013202687725424767, -0.00409182533621788, 0.00023033315665088594, -0.015534155070781708, 0.016246361657977104, 0.056062713265419006, 0.01249720063060522, -0.028649497777223587, -0.0072228447534143925, 0.010031355544924736, 0.02049272134900093, 0.005989921744912863, 0.018678613007068634, 0.0007735162507742643, 0.0020139978732913733, 0.007263157982379198, 0.00381299015134573, 0.020304592326283455, 0.0073840986005961895, 0.021540874615311623, 0.009043673053383827, 0.0019417693838477135, -0.011025756597518921, -0.12373572587966919, -0.05299888178706169, 0.019941769540309906, 0.010481523349881172, 0.011455767787992954, -0.012080627493560314, 0.003967525437474251, 0.02121836505830288, -0.02003583498299122, 0.027655096724629402, -0.0032116463407874107, -0.021406495943665504, 0.005573348607867956, 0.007619261275976896, -0.021325869485735893, 0.01716013438999653, -0.017966406419873238, 0.015480403788387775, -0.004824188072234392, 0.02578723430633545, 0.019646137952804565, -0.015802912414073944, -0.0027362823020666838, 0.01101903710514307, 0.01599104143679142, 0.02330123260617256, -0.026566630229353905, 0.03604031354188919, 0.01061590202152729, 0.012423292733728886, -0.0015587906818836927, -0.02563941851258278, 0.02291153557598591, -0.02049272134900093, -0.004279955290257931, -0.000721444608643651, -0.023234043270349503, 0.01039417739957571, 0.026418814435601234, -0.0020358343608677387, -0.0036147816572338343, 0.003280515316873789, 0.004521836526691914, -0.0006034434773027897, -0.002731243148446083, 0.004192609339952469, -0.011737962253391743, 0.02573348395526409, -0.014432251453399658, -0.01319596916437149, -0.04154983162879944, -0.007236282341182232, -0.029536394402384758, 0.00020114782091695815, -0.007417693268507719, -0.034615904092788696, 0.00018561030447017401, -0.0029882420785725117, -0.00298488256521523, -0.0008512038621120155, -0.04007166996598244, 0.011482642963528633, 0.004276596009731293, 0.014687570743262768, 0.0033561030868440866, 0.014324748888611794, -0.028541993349790573, -0.005459126550704241, 0.02682194858789444, -0.011805151589214802, -0.016326988115906715, 0.03370212763547897, -0.004804031457751989, 0.02100335992872715, -0.0101388581097126, 0.012866741977632046, -0.000483762618387118, 0.016111982986330986, 0.01842329278588295, -0.01983426697552204, -0.029428891837596893, -0.023314669728279114, 0.024577828124165535, -0.012920493260025978, 0.023704368621110916, 0.027399776503443718, 0.013054871931672096, -0.009366181679069996, 0.01894736848771572, -0.02159462496638298, -0.0069608064368367195, 0.019525196403265, 0.028407616540789604, -0.023005599156022072, 0.0032166854944080114, 0.0029378500767052174, 0.014378500171005726, 0.0019501680508255959, -0.0056707728654146194, -0.00462597981095314, -0.02991265431046486, -0.013652856461703777, -0.03827099874615669, -0.002383538754656911, 0.01259798463433981, -0.015238522551953793, 0.0037256439682096243, -0.007122060749679804, 0.0035139978863298893, -0.011072788387537003, -0.009036954492330551, -0.02662038244307041, -0.028058230876922607, 0.0027346026618033648, -0.0025582308880984783, 0.0012152856215834618, -0.01237626001238823, -0.05071444809436798, 0.022804033011198044, 0.0008428051951341331, -0.002482642885297537, 0.001753639429807663, -0.0020223965402692556, 0.014150056056678295, 0.013001120649278164, 0.005993281491100788, -0.011993281543254852, -0.003661814145743847, -0.013303471729159355, 0.009157895110547543, -0.025316910818219185, -0.018382979556918144, 0.021796192973852158, -0.006077267695218325, -0.008734602481126785, 0.03604031354188919, 0.00029290313250385225, 0.004615901503711939, -0.015574468299746513, 0.003655095351859927, 0.03964165970683098, -0.0041455770842731, -0.01666293479502201, -0.013988802209496498, 0.02778947539627552, -0.004525196272879839, 0.013773797079920769, -0.002553191501647234, 0.002591825323179364, -0.00041510359733365476, -0.0006206607213243842, 0.0030016798991709948, 0.034615904092788696, 0.012846585363149643, -0.006167973391711712, -0.009722284972667694, 0.009198208339512348, -0.03934602439403534, 0.011442329734563828, -0.0217424426227808, 0.0008768197149038315, -0.002161814132705331, 0.05025755986571312, -0.011213886551558971, -0.0073370663449168205, -0.02100335992872715, -0.0024725645780563354, -0.031229564920067787, -0.007894736714661121, 0.011502799578011036, -0.009849944151937962, -0.007968645542860031, -0.027305712923407555, -0.01857110857963562, 0.014875700697302818, -0.013148936443030834, 0.061652857810258865, 0.005657334811985493, -0.018477044999599457, -0.014418813399970531, 0.0037928333040326834, 0.027950728312134743, 0.021554311737418175, -0.008096304722130299, -0.02062710002064705, 0.014942890033125877, 0.02573348395526409, -0.00022466406517196447, -0.0195386353880167, -0.028326988220214844, -0.009628219529986382, 0.001480683102272451, 0.011543113738298416, 0.011301232501864433, -0.014270996674895287, -0.007599104195833206, 0.01783202774822712, 0.005475923884660006, 0.01857110857963562, -0.011630459688603878, 0.006376259960234165, 0.009903695434331894, 0.004370660986751318, -0.0045587909407913685, -0.009406494908034801, 0.001604983233846724, -0.04356551170349121, 0.007720045279711485, -0.026701008901000023, -0.0056237406097352505, 0.011139977723360062, 0.03819037228822708, -0.025464726611971855, 0.01539977639913559, 0.012685330584645271, 0.008842105977237225, -0.030047032982110977, 0.0035274357069283724, 0.00991713348776102, -0.015117581933736801, -0.00019663354032672942, 0.010179171338677406, -0.005744681227952242, -0.01429787278175354, 0.03531467169523239, -0.009016797877848148, 0.02256215177476406, 0.008123180828988552, 0.016246361657977104, 0.0028941771015524864, -0.014378500171005726, 0.019767077639698982, 0.005993281491100788, -0.0019300113199278712, -0.012456887401640415, -0.017415454611182213, 0.0056270998902618885, -0.033567748963832855, 0.020653976127505302, -0.011455767787992954, -0.009910414926707745, 0.07810078561306, -0.001009518513455987, -0.0095811877399683, 0.008821948431432247, -0.015292273834347725, 0.025384100154042244, 0.019807390868663788, -0.010159014724195004, -0.021944010630249977, -0.02070772834122181, 0.04480179399251938, 0.004888018127530813, -0.006292273290455341, -0.020586786791682243, 0.004290033597499132, 0.007256439421325922, -0.024201568216085434, 0.006967525463551283, -0.032170213758945465, 0.000912094081286341, 0.02969764918088913, 0.0027026876341551542, 0.002314669778570533, 0.016972005367279053, -0.025115342810750008, 0.006597984582185745, -0.0039843227714300156, 0.023489361628890038, -0.01709294505417347, -0.01389473769813776, -0.00347368442453444, 0.019632698968052864, -0.04120044782757759, -0.019041433930397034, -0.0011035834904760122, 0.010044793598353863, -0.009131019003689289, 0.0017704367637634277, 0.03477715700864792, -0.0029512878973037004, -0.011516237631440163, 0.01607166975736618, -0.011314669623970985, -0.018544234335422516, 0.014674132689833641, 0.008748040534555912, -0.01908174715936184, -0.008042553439736366, -0.04590369760990143], "87d37a51-fbbf-4575-a224-dfbce78025c6": [0.027759941294789314, -0.0003045046469196677, 0.025890499353408813, -0.010755696333944798, -0.028400160372257233, -0.006424608174711466, -0.003966163378208876, -0.009648116305470467, -0.013828752562403679, -0.03974486142396927, -0.005006520543247461, 0.019641950726509094, 0.008284447714686394, 0.001826227642595768, -0.006523842457681894, 0.01874564215540886, 0.035416971892118454, -0.0005049735773354769, -0.013047684915363789, 0.0031594859901815653, 0.004750432912260294, 0.0007454562000930309, -0.024225926026701927, -0.004916890058666468, -0.01695302687585354, 0.01874564215540886, 0.026133781298995018, -0.010166694410145283, -0.007125649135559797, -0.02919403463602066, 0.008310056291520596, -0.02622341364622116, -0.01791335642337799, 0.013086097314953804, -0.017823725938796997, 0.023598510771989822, -0.007663433905690908, -0.020474236458539963, 0.005649941973388195, -0.001975078834220767, -0.0033707586117088795, 0.0236241202801466, -0.0014204882318153977, -0.005336233880370855, -0.02283024601638317, 0.005797192454338074, -0.008604557253420353, -0.0331633985042572, -0.0195523202419281, 0.006213335320353508, 0.02034619264304638, 0.053522396832704544, -0.06074407696723938, -0.0026297038421034813, 7.66513494454557e-06, 0.0007958735222928226, 0.006466222461313009, 0.011037393473088741, -0.0032843288499861956, 0.0027561471797525883, -0.0016981837106868625, 0.005800393410027027, -0.0016421644249930978, 0.0052530053071677685, -0.02468688413500786, -0.017157897353172302, -0.017503615468740463, 0.014865909703075886, 0.009033504873514175, 0.00923837535083294, 0.01440495066344738, 0.03211343660950661, 0.02747824415564537, 0.007106442470103502, 0.02225404791533947, -0.002256775740534067, -0.002388020744547248, 0.014853104948997498, -0.016107935458421707, 0.0005293819704093039, -0.006360586266964674, -0.030115950852632523, -0.003918146714568138, 0.010045052506029606, 0.016440851613879204, -0.00046976146404631436, -0.0018598391907289624, 0.014328124932944775, 0.02042301930487156, -0.015954283997416496, 0.0010019444162026048, 0.026658762246370316, -0.0006926380447112024, -0.005854812450706959, 0.011255068704485893, 0.014865909703075886, 0.014392146840691566, 0.025941716507077217, -0.005550707690417767, -0.010089867748320103, -0.006238944362848997, 0.0249173641204834, -0.025058211758732796, -0.012362648732960224, -0.0008939072140492499, -0.00044375250581651926, -0.01198491919785738, -0.00026709178928285837, -0.011927299201488495, -0.0041006095707416534, -0.022586962208151817, 0.028605030849575996, 0.020448628813028336, -0.007618618663400412, 0.011216655373573303, -0.020704716444015503, -0.0038701300509274006, -0.015314063057303429, -0.017554834485054016, 0.0022279657423496246, 0.01354705635458231, 0.007343323901295662, 0.017478007823228836, -0.014379342086613178, 0.0297574270516634, -0.01452019065618515, 0.0029578167013823986, -0.018540771678090096, -0.02533990889787674, -0.04020581766963005, 0.012439475394785404, 0.012125767767429352, 0.019411472603678703, 0.01067246776074171, -0.01133829727768898, 0.02514784410595894, -0.018271880224347115, 0.0033323452807962894, -0.009673724882304668, -0.01673535257577896, 0.019462689757347107, 0.0018710431177169085, -0.01901453547179699, 0.0069527896121144295, 0.015390889719128609, -0.002831373130902648, 0.022548550739884377, 0.0014500983525067568, -0.01557015161961317, 0.0021511393133550882, 0.020154127851128578, 0.015288454480469227, 0.01749081164598465, 0.00029190033092163503, 0.005198586732149124, 0.02176748216152191, -0.01459701731801033, -0.006799136754125357, -0.010313944891095161, -0.009731344878673553, -0.0021015224047005177, 0.03731202334165573, -0.007343323901295662, -0.018617598339915276, -0.004936096724122763, 0.02366253361105919, 0.022779028862714767, 0.01635121926665306, -0.02587769366800785, 0.0064214072190225124, -0.024866146966814995, 0.034392621368169785, -0.0012620337074622512, 0.00804116390645504, -0.03303535282611847, -0.011760842055082321, 0.027836767956614494, 0.012042539194226265, -0.028067246079444885, -0.025006994605064392, -0.002882590750232339, -0.005246603395789862, 0.01901453547179699, 0.019155383110046387, -0.013278163969516754, -0.005006520543247461, -0.017554834485054016, 0.017593245953321457, 0.0075417920015752316, 0.0290403813123703, 0.017657268792390823, 0.03764493763446808, 0.010947762988507748, -0.005771583877503872, -0.6449320912361145, 0.0006806339370086789, 0.002893794560804963, -0.01455860398709774, 0.02507101744413376, 0.026453891769051552, 0.009027102962136269, 0.009167950600385666, -0.03285609185695648, 0.047350674867630005, -0.03144760802388191, -0.0053106253035366535, 0.005256206728518009, -0.0035244112368673086, -0.02096080407500267, -0.016133544966578484, 0.011978517286479473, -0.02233087457716465, -0.00430547958239913, 0.0061109005473554134, 0.014148863032460213, 0.02038460597395897, -0.03411092236638069, -0.012753183022141457, 0.010019443929195404, 0.004808052442967892, 0.00013514644524548203, -0.019565124064683914, 0.012465083971619606, 0.026812415570020676, -0.028220899403095245, -0.02503260411322117, 0.006568657699972391, 0.019693167880177498, 0.038618072867393494, -0.016607308760285378, -0.006824745796620846, 0.033854834735393524, -0.002477651461958885, 0.021895525977015495, -0.010480402037501335, 0.018233466893434525, 0.0031754914671182632, 0.009974628686904907, 0.0387205071747303, 0.0032379128970205784, -0.004587176721543074, -4.6465971536235884e-05, -0.013380599208176136, -0.020973607897758484, 0.004103810526430607, -0.01581343449652195, 0.01082612108439207, -0.008098783902823925, 0.028553813695907593, -0.01569819636642933, 0.025006994605064392, -0.02088397741317749, -0.005249804351478815, 0.00362044433131814, 0.024072274565696716, 0.003601237665861845, -0.016965830698609352, -0.01573660783469677, -0.012682759203016758, 0.04991155490279198, -0.0014837099006399512, -0.007196073420345783, -0.02030777931213379, -0.004551964346319437, 0.010838924907147884, 0.03741445764899254, -0.014276906847953796, -0.007676238194108009, 0.0023816186003386974, 0.014929931610822678, 0.02427714318037033, -0.001093975966796279, 0.019232209771871567, 0.0006158116739243269, 0.01681217923760414, -0.007714651525020599, -0.012247409671545029, -0.022804638370871544, 0.05690275877714157, -0.005140966735780239, -0.020589476451277733, 0.011415123008191586, 0.0254935622215271, 0.020128518342971802, 0.005646740552037954, 0.03326583281159401, -0.020000474527478218, -0.029322078451514244, -0.020871173590421677, 0.02286865934729576, -0.02503260411322117, -0.01129988394677639, 0.006235743407160044, -0.02175467647612095, 0.0016565693076699972, -0.0189761221408844, 0.008425295352935791, 0.014801887795329094, -0.005099352449178696, -0.001474906923249364, 0.0033707586117088795, 0.01354705635458231, 0.023419249802827835, -0.01585184782743454, 0.01343181636184454, -0.024494819343090057, 0.026325847953557968, 0.015762217342853546, -0.01463543064892292, -0.02146017551422119, 0.01223460491746664, -0.0005393853643909097, 0.012733976356685162, -0.0331633985042572, 0.0059636496007442474, 0.01206174585968256, -0.002804163843393326, -0.03188295662403107, 0.017516421154141426, 0.0059540462680161, -0.0027401417028158903, 0.018015792593359947, -0.016210371628403664, -0.016184762120246887, 0.031345173716545105, -0.007196073420345783, -0.018054205924272537, -0.021216891705989838, 0.006450216751545668, -0.014097644947469234, -0.00555390864610672, -0.009993834421038628, 0.030039124190807343, -0.01573660783469677, -0.009065515361726284, -0.006443814840167761, 0.008745405822992325, -0.03441822901368141, -0.012586725875735283, -0.024149099364876747, -0.037055935710668564, -0.009801768697798252, -0.027990419417619705, -0.02595452032983303, -0.0005141767323948443, -0.017209114506840706, -0.03452066332101822, 0.021332131698727608, -0.012759585864841938, -0.0031754914671182632, 0.0016821781173348427, 0.009385625831782818, -0.020909586921334267, -0.010570032522082329, 0.0004717621486634016, 0.030115950852632523, -0.005416261497884989, -0.019769994542002678, -0.006203732453286648, -0.0027929600328207016, -0.003684466239064932, 0.021524198353290558, -0.018246270716190338, -0.03178052231669426, 0.004763237200677395, -0.00044575321953743696, 0.014673843048512936, -0.009782562032341957, -0.0029466126579791307, 0.025967324152588844, -0.04112773388624191, -0.002240770263597369, 0.008124392479658127, 0.0013460626360028982, 0.0029354088474065065, 0.005960448645055294, -0.012401062063872814, -0.008092381060123444, 0.042126480489969254, -0.009360017254948616, 0.03352192044258118, 0.013380599208176136, -0.008879851549863815, 0.04215208813548088, 0.01702985353767872, 0.014673843048512936, -0.037132762372493744, 0.011459939181804657, -0.016402438282966614, 0.009718540124595165, 0.017324354499578476, 0.01186967920511961, 0.01962914690375328, 0.029398905113339424, 0.00843810010701418, 0.0019846821669489145, 0.01722191832959652, -0.0165816992521286, 0.022702202200889587, -0.026044150814414024, 0.009059113450348377, 0.0010987776331603527, 0.02469968982040882, 0.001199612277559936, 0.00859175343066454, -0.015250041149556637, -0.026159390807151794, -0.02190832979977131, 0.025903303176164627, 0.015314063057303429, -0.015314063057303429, 0.018796861171722412, 0.014584212563931942, 0.014686647802591324, -0.007394541520625353, 0.02202356979250908, 0.010077063925564289, 0.0021143266931176186, -0.02321437932550907, 0.000203970106667839, 0.019501103088259697, -0.012721172533929348, 0.001326856086961925, -0.03380361944437027, 0.004683209583163261, -0.005115358158946037, 0.011043795384466648, -0.002780155511572957, 0.0024872547946870327, 0.0075930096209049225, 0.059207551181316376, -0.021242501214146614, 0.0013108504936099052, -0.017554834485054016, -0.007490574382245541, 0.021857112646102905, -0.00023828189296182245, -0.026453891769051552, 0.008278044871985912, -0.0021111255045980215, 0.02325279265642166, 0.003026640275493264, 0.014789083041250706, 0.008790221065282822, 0.007855500094592571, -0.010179498232901096, -0.018131030723452568, -0.01619756780564785, -0.0027081307489424944, 0.006126905791461468, 0.0005157772684469819, 0.0026601143181324005, -0.0070424205623567104, 0.007074431516230106, 0.018271880224347115, 0.005787589121609926, 0.015134802088141441, 0.014340928755700588, 0.03170369565486908, 6.852354999864474e-05, -0.011498351581394672, -0.044533707201480865, -0.01596708782017231, 0.01158158015459776, -0.02934768609702587, -0.03531453758478165, -0.016492068767547607, 0.0002204757765866816, 0.01681217923760414, 0.006200531031936407, 0.019577929750084877, -0.004478339105844498, 0.03398288041353226, 0.0031226733699440956, -0.013483034446835518, -0.027759941294789314, 0.016146348789334297, 0.0454300157725811, -0.019962061196565628, -0.01009626965969801, -0.020871173590421677, 0.0009747350122779608, 0.0018518364522606134, 0.013739122077822685, -0.015250041149556637, 0.006098095793277025, -0.007189671043306589, 0.00679273484274745, -0.0014084840659052134, 0.013303772546350956, 0.012842814438045025, 0.015787826851010323, 0.03551940619945526, 0.009705736301839352, 0.015211627818644047, -0.013623882085084915, -0.016415242105722427, -0.00937282107770443, 0.03902781382203102, 0.007253692951053381, 0.016940223053097725, -0.015749413520097733, -0.011498351581394672, -0.027964811772108078, 0.018054205924272537, -0.029450122267007828, -0.04292035102844238, -0.0046127852983772755, 0.036185238510370255, 0.0011243864428251982, 0.0029562159907072783, 0.009846583940088749, 0.05347117781639099, -0.01733715832233429, 0.003026640275493264, -0.018950512632727623, 0.008021957240998745, 0.0001652568025747314, 0.045327577739953995, 0.014750669710338116, -0.018361510708928108, 0.01335498970001936, -0.006536646746098995, -0.009180755354464054, -0.035877931863069534, -0.014020819216966629, 0.026377065107226372, -0.005826002452522516, -0.04435444623231888, -0.0027577478904277086, 0.024110686033964157, -0.028246508911252022, 0.010032247751951218, 0.02537832222878933, -0.019731581211090088, -0.006696701515465975, 0.002709731226786971, -0.011344699189066887, -0.010589239187538624, -0.0033003343269228935, 0.010281933471560478, -0.00046535994624719024, -0.0003463190223556012, 0.00927678868174553, 0.025122234597802162, 0.00429587671533227, 0.011248665861785412, -0.024021055549383163, -0.01021150965243578, 0.022727811709046364, 0.018195053562521935, 0.006366988178342581, -0.033445093780756, 0.02507101744413376, 0.01870722882449627, 0.03083299659192562, -0.000505373696796596, -0.024789320304989815, 0.022074786946177483, 0.016786569729447365, 0.015787826851010323, -0.0006802338175475597, -0.020320584997534752, 0.021332131698727608, -0.0024648471735417843, 0.009142342023551464, 0.014673843048512936, -0.03669741377234459, 0.008162805810570717, -0.017004244029521942, -0.0230991393327713, -0.0119080925360322, 0.0056403386406600475, -0.01668413355946541, -0.023828990757465363, 0.0012244208483025432, -0.028758684173226357, -0.01702985353767872, -0.01315012015402317, -0.01669693924486637, 0.001664572162553668, -0.026120977476239204, -0.007048822473734617, -0.018233466893434525, -0.007791477721184492, 0.01565978303551674, -0.021857112646102905, 0.0035308136139065027, 0.018912099301815033, 6.272155587794259e-05, -0.0076122162863612175, -0.024289948865771294, 0.02819528989493847, 0.010986176319420338, -0.005156972445547581, -0.019962061196565628, -0.031268347054719925, -0.006664690561592579, -0.013675100170075893, -0.0135854696854949, -0.01928342692553997, -0.017170701175928116, 0.0013980804942548275, -0.0003609240520745516, 0.0069335829466581345, -0.011127023957669735, -0.016376828774809837, 0.024366775527596474, 0.016415242105722427, 0.018284684047102928, -0.010205107741057873, 0.0009067116188816726, -0.007048822473734617, 0.03367557376623154, 0.007234486285597086, 0.009263983927667141, -0.0076122162863612175, -0.02327840030193329, 0.010019443929195404, -0.01829748973250389, -0.019078556448221207, 0.0012932445388287306, 0.006722310557961464, 0.02009010501205921, 0.004513551481068134, -0.005902828648686409, 0.014353733509778976, -0.0033995683770626783, 0.012874824926257133, -0.01939866691827774, 0.025250278413295746, -0.004369501955807209, 0.004737628158181906, -0.01024992298334837, -0.01440495066344738, 0.04187038913369179, 0.0225229412317276, -0.015262845903635025, -0.008508523926138878, -0.041409432888031006, 0.024110686033964157, 0.0046896119602024555, -0.010966969653964043, -0.0024488416966050863, -0.008380480110645294, 0.006334977224469185, -0.007253692951053381, 0.003966163378208876, 0.01859199069440365, -0.0014957140665501356, 0.003244315041229129, 0.0038029069546610117, 0.005595523398369551, 0.004350295290350914, -0.011792853474617004, 0.02157541550695896, -0.018233466893434525, 0.01737557165324688, 0.03913024812936783, 0.01495554018765688, 0.004331088624894619, -0.017426788806915283, -0.0029850259888917208, -0.035801105201244354, -0.03695350140333176, -0.004042989574372768, 0.007881108671426773, 0.05557110160589218, 0.02809285558760166, 0.011901690624654293, -0.015839044004678726, -0.004609584342688322, 0.03116591088473797, -0.013009271584451199, -0.006424608174711466, 0.01169682014733553, 0.023752164095640182, 0.022996703162789345, 0.009936215355992317, -0.012317833490669727, 0.030167168006300926, 0.03490479663014412, 0.010313944891095161, 0.010544423945248127, -0.009507267735898495, -0.014712256379425526, -0.0005858013173565269, -0.005211391020566225, 0.01673535257577896, 0.004036587197333574, 0.008150001056492329, 0.02134493552148342, 0.0249173641204834, 0.058285631239414215, 0.006107699126005173, 0.013521447777748108, -0.02335522696375847, -0.02614658698439598, 0.0021255305036902428, 0.013188532553613186, 0.004628791008144617, 0.03334265947341919, -0.014187276363372803, -0.009123135358095169, -0.016901809722185135, -0.01847675070166588, -0.006347781512886286, -0.008502122014760971, 0.021639438346028328, -0.011056600138545036, 0.01627439260482788, 0.002301590982824564, 0.02279183268547058, -0.02286865934729576, 0.003223507897928357, -0.018284684047102928, 0.010307542979717255, 0.0036780640948563814, -0.015390889719128609, 0.0230991393327713, 0.002277582883834839, -0.00241523003205657, -0.012042539194226265, 0.007093638181686401, -0.00599245959892869, -0.007759466767311096, -0.0014388945419341326, -0.01843833737075329, -0.008111587725579739, -0.022305266931653023, -0.05088469013571739, -0.013995209708809853, 0.008310056291520596, 0.019232209771871567, -0.010525217279791832, 0.001237225253134966, -0.01350864302366972, -0.03831076622009277, -0.009270385839045048, -0.00751618342474103, 0.0464799739420414, -0.003946956712752581, 0.02553197555243969, 0.002139935502782464, -0.013803143985569477, -0.0290403813123703, -0.0004125417908653617, 0.01604391448199749, 0.009148744866251945, 0.017055461183190346, 0.0027113319374620914, -0.0076506296172738075, -0.008828634396195412, 0.0006894369726069272, -0.01683778688311577, 0.006226140074431896, -0.0476323701441288, 0.009103928692638874, -0.0044207195751369, -0.003962961956858635, -0.009673724882304668, 0.02366253361105919, -0.008796622976660728, 0.0009059113799594343, -0.010390771552920341, -0.004452730529010296, -0.01186967920511961, -0.008598155342042446, -0.019296232610940933, 0.021012021228671074, 0.017170701175928116, 0.018912099301815033, 0.007452161516994238, -0.012529105879366398, 0.00880302581936121, -0.018310293555259705, -0.001218818943016231, 0.010922153480350971, -0.005966851022094488, 0.021895525977015495, -0.03792663663625717, -0.015121997334063053, -0.003671661950647831, 0.0036140421871095896, -0.008508523926138878, -0.014251298271119595, -0.00309706456027925, 0.02435396984219551, -0.015019562095403671, -0.024571646004915237, -0.008828634396195412, 0.0015141203766688704, 0.0017542028799653053, 0.014968344941735268, -0.006178123410791159, -0.016325611621141434, 0.0021687455009669065, -0.012407464906573296, 0.0025592795573174953, -0.0028217697981745005, 0.009193560108542442, -0.009942617267370224, -0.013534251600503922, -0.007368932478129864, 0.00543226720765233, -0.014712256379425526, 0.004094207193702459, -0.010448391549289227, -0.018246270716190338, -0.008534133434295654, 0.012849216349422932, 0.012874824926257133, 0.006696701515465975, -0.03242074325680733, 0.0006502234609797597, 0.03849002718925476, -0.01806700974702835, 0.02400825172662735, -0.015762217342853546, 0.016210371628403664, -0.014891518279910088, 0.018796861171722412, -0.004148625768721104, -0.0070104096084833145, 0.03398288041353226, 0.003396367421373725, -0.025403931736946106, -0.02290707267820835, 0.019040144979953766, 0.028553813695907593, -0.021818699315190315, -0.010243521071970463, 0.02473810315132141, 0.00313387718051672, 0.006094894837588072, -0.020640693604946136, -0.019065752625465393, 0.0031754914671182632, -0.037363242357969284, 0.0171066801995039, -0.006379792932420969, -0.015685390681028366, 0.008425295352935791, -0.018015792593359947, -0.03800346329808235, -0.01082612108439207, -0.019693167880177498, 0.0015653379959985614, 0.0017029852606356144, 0.0020054893102496862, 0.010307542979717255, 7.247491157613695e-05, -0.022510137408971786, 0.002186351455748081, -0.0008987088804133236, 0.003879733383655548, -0.0219467431306839, -0.00555390864610672, 0.0027257369365543127, 0.010966969653964043, -0.01448177732527256, 0.007932326756417751, -0.01619756780564785, -0.0026713181287050247, 0.005048134829849005, 0.0005305823870003223, -0.015723804011940956, -0.013041282072663307, 0.002760948846116662, 0.0435093529522419, 0.010922153480350971, -0.00727930199354887, -0.009110331535339355, 0.007484172470867634, -0.017977379262447357, -0.019142579287290573, -0.006779930088669062, 0.012759585864841938, 0.0349816232919693, 0.028630640357732773, -0.017810922116041183, 0.04358617961406708, 0.008745405822992325, 0.012228203006088734, -0.026351457461714745, 0.007874706760048866, -0.012189789675176144, 0.017977379262447357, 0.018002986907958984, 0.004228653386235237, 0.002007089788094163, -0.02080715075135231, 0.0011868078727275133, -0.013828752562403679, -0.0033675574231892824, 0.03303535282611847, -0.012087354436516762, -0.009635311551392078, -0.014545799233019352, 0.017772508785128593, 0.020986413583159447, 0.01760605163872242, -0.006875963415950537, -0.00011734032887034118, -0.0030810588505119085, -0.0016853793058544397, 0.006072487216442823, -0.04238256812095642, 0.005246603395789862, 0.014981148764491081, 0.003601237665861845, 0.015262845903635025, -0.020640693604946136, -0.016850590705871582, 0.0033355464693158865, -0.00016045515076257288, 0.018771251663565636, -0.0010515614412724972, 0.0020326985977590084, 0.022087590768933296, -0.008207621052861214, 0.02385459840297699, -0.01307329349219799, -0.011517558246850967, -0.006613472942262888, 0.002442439552396536, -0.009712138213217258, -0.0007114445324987173, -0.00021607425878755748, -0.03347070515155792, 0.0059540462680161, -0.021511392667889595, 0.003191496944054961, -0.020986413583159447, -0.009494462981820107, -0.02275342121720314, 0.028067246079444885, -0.0009963423945009708, -0.013201337307691574, 0.025237474590539932, -0.019180992618203163, 0.009283190593123436, -0.0009235173929482698, -0.021204087883234024, 0.0012572321575134993, -0.0015981493052095175, 0.01615915447473526, -0.026838025078177452, 0.0033707586117088795, -0.01162639632821083, 0.004452730529010296, 0.002512863604351878, -0.017862139269709587, -0.003039444563910365, 0.19442202150821686, 0.011760842055082321, 0.019526710733771324, 0.029219642281532288, 0.0029049983713775873, -0.0383363775908947, 0.020256562158465385, -0.006735114846378565, -0.006507836747914553, 0.013636686839163303, -0.023368030786514282, 0.011555971577763557, -0.013790340162813663, 0.013521447777748108, 0.01901453547179699, -0.0176828783005476, -0.010224314406514168, -0.035724278539419174, 0.0034411826636642218, -0.023649727925658226, -0.009283190593123436, -0.0015269247815012932, -0.027811158448457718, -0.007983543910086155, 0.032369524240493774, -0.006946387700736523, -0.0051825810223817825, -0.0003615242603700608, 0.024610059335827827, -0.0005801994120702147, -0.004174234811216593, -0.0022951888386160135, 0.009820975363254547, 0.004356697201728821, -0.04345813766121864, 0.0007498577469959855, 0.002596092177554965, 0.0012180185876786709, 0.03270243853330612, 0.013303772546350956, -0.001109981443732977, -0.0107108810916543, -0.008412491530179977, -0.004702416248619556, 0.01756763830780983, 0.014507385902106762, -0.020794346928596497, 0.0014765075175091624, 0.016940223053097725, 0.020320584997534752, -0.024930167943239212, 0.0026713181287050247, -0.002351208124309778, 0.0271709393709898, -0.029859863221645355, -0.002532070269808173, -0.0020711119286715984, -0.010275531560182571, 0.004004576243460178, 0.013079695403575897, -0.007503379136323929, 0.01806700974702835, 0.01242026872932911, 0.028067246079444885, -0.019309036433696747, 0.02408507838845253, -0.010986176319420338, 0.009353614412248135, 0.004577573388814926, -0.03413653373718262, 0.014891518279910088, -0.0046511986292898655, -0.02416190505027771, 0.01105019822716713, -0.01569819636642933, -0.008361273445189, 0.030961040407419205, 0.0027753538452088833, -0.0027113319374620914, 0.019116969779133797, -0.02213880978524685, -0.004148625768721104, 0.0031946981325745583, 0.0045423610135912895, -0.016748156398534775, -0.011530363000929356, 0.017196310684084892, -0.011709624901413918, 0.015301259234547615, -0.008585350587964058, -0.018527967855334282, -0.020256562158465385, 0.020743129774928093, -0.009981030598282814, 0.008303654380142689, 0.001270036562345922, 0.015390889719128609, 0.011120622046291828, -0.004513551481068134, -0.008258838206529617, -0.01021150965243578, 0.016210371628403664, 0.0301415603607893, 0.026966068893671036, 0.014853104948997498, -0.01257392205297947, 0.01699144020676613, -0.0041006095707416534, 0.007170464377850294, -0.0056595453061163425, 0.009302397258579731, -0.02507101744413376, -0.0025192659813910723, -0.027196547016501427, -0.021780285984277725, -0.0021815497893840075, -0.007394541520625353, -0.026761198416352272, 0.025736846029758453, 0.0030330424197018147, -0.0020150926429778337, -0.00622934103012085, -0.01691461354494095, 0.02316316030919552, 0.004814454820007086, -0.003329144325107336, -0.04537879675626755, 0.01503236684948206, 0.0024280345533043146, 0.007625020574778318, 0.03708154335618019, -0.06299765408039093, 0.0301415603607893, 0.006543048657476902, 0.008060370571911335, -0.014494582079350948, -0.007618618663400412, -0.030423255637288094, -0.009865790605545044, -0.0014949138276278973, 0.012465083971619606, -0.0088414391502738, -0.020896783098578453, -0.0036652598064392805, 0.009878595359623432, -0.0206534992903471, -0.007343323901295662, 0.008361273445189, -0.011824863962829113, -0.011920897290110588, 0.0022983900271356106, -0.027452634647488594, 0.0007554596522822976, -0.030704952776432037, 0.00013424614735413343, 0.0025224669370800257, -0.005099352449178696, -0.01822066307067871, 0.01985962502658367, 0.01650487259030342, -0.04509710147976875, -0.00430547958239913, -0.005422663874924183, -0.0049617053009569645, -0.0007302509620785713, -0.016018304973840714, -0.15867213904857635, 0.008335664868354797, 0.005048134829849005, -0.0016565693076699972, 3.0760573281440884e-05, 0.002914601704105735, 0.025135038420557976, 0.0033995683770626783, -0.0014452968025580049, -0.00923837535083294, 0.011152633465826511, 0.0029674198012799025, -0.00425746338441968, 0.0006434211391024292, -0.007132051512598991, 0.0008130794740281999, -0.023047922179102898, 0.0013740722788497806, 0.023905815556645393, 0.010358760133385658, 0.0029626183677464724, -0.028297726064920425, 0.020115714520215988, 0.0171066801995039, 0.0068631586618721485, 0.009641713462769985, -0.0005205789348110557, 0.02165224216878414, -0.006043677218258381, -0.004836862441152334, 7.347525388468057e-05, -0.003023439086973667, 0.00977616012096405, 0.006850354373455048, -0.017017047852277756, 0.026044150814414024, -0.0176828783005476, 0.0034379817079752684, -0.01507078018039465, -0.0012908437056466937, -0.0056403386406600475, 0.02701728604733944, -0.0089374715462327, -0.016184762120246887, 0.0011307887034490705, -0.005256206728518009, 0.005995660554617643, -0.03585232421755791, 0.009667322970926762, -0.03475114330649376, 0.02175467647612095, -0.006939985323697329, 0.014379342086613178, -0.012080952525138855, 0.026082564145326614, -0.01569819636642933, -0.01503236684948206, 0.010269129648804665, -0.01347022969275713, 0.0160055011510849, -0.006283759605139494, -0.029142815619707108, 0.018771251663565636, -0.024251535534858704, 0.005838806740939617, -0.03195978328585625, -0.012964456342160702, -0.0009579292382113636, -0.04187038913369179, -0.00490728672593832, 0.02389301173388958, -0.00028889928944408894, 0.020358996465802193, -0.0219467431306839, -0.00465760100632906, 0.023982642218470573, 0.00043895086855627596, 0.006216536741703749, 0.014430560171604156, -0.010217911563813686, -0.019731581211090088, 0.0219467431306839, -0.021601025015115738, -0.007868303917348385, -0.0005665947101078928, 0.0020711119286715984, -0.015954283997416496, 0.011453536339104176, -0.04135821387171745, -0.02049984596669674, 0.01596708782017231, -0.03293291851878166, -0.01288122683763504, 0.0008338866173289716, 0.0001577542134327814, 0.0024568443186581135, -0.004113413859158754, -0.010403575375676155, 0.022420505061745644, -0.014264103025197983, -0.008310056291520596, 0.006072487216442823, -0.008182012476027012, -0.014033623039722443, 0.0035212102811783552, 0.009795366786420345, -0.0007262495928443968, 0.00027329393196851015, 0.04161430150270462, -0.0052209943532943726, -0.020448628813028336, -0.01459701731801033, 0.013995209708809853, 0.021997960284352303, -0.02306072600185871, 0.031089086085557938, 0.011952907778322697, -0.026377065107226372, 0.016300002112984657, -0.008931069634854794, 0.04230574145913124, -0.018156640231609344, 0.013854362070560455, 0.0005169776850380003, 0.002544874558225274, -0.0019814809784293175, -0.12404903769493103, -0.03444383665919304, -0.0018198254983872175, -0.001491712755523622, -0.010723685845732689, 0.021408958360552788, -0.013367794454097748, 0.017900552600622177, -0.00011824064131360501, 0.04358617961406708, -0.003639650996774435, -0.014763474464416504, -0.004209446720778942, -0.011069404892623425, -0.014750669710338116, -0.021511392667889595, -0.007913120090961456, -0.0007998748915269971, -0.05019325017929077, 0.0212296973913908, 0.008092381060123444, 0.012977260164916515, 0.0042318543419241905, -0.010909349657595158, -0.009097526781260967, 0.02302231267094612, -0.02709411270916462, 0.011402319185435772, 0.009334408678114414, 0.027042895555496216, -0.01444336399435997, -0.024213122203946114, 0.0005373847088776529, -0.020589476451277733, 0.014981148764491081, 0.001521322876214981, -0.029783036559820175, -0.03155004233121872, 0.032984137535095215, 0.004465534817427397, -0.0029402105137705803, -0.006146112456917763, 0.00015165212971623987, -7.192471821326762e-05, 0.024853341281414032, -0.00782989151775837, -0.009334408678114414, 0.01557015161961317, -0.020781543105840683, 0.005541104357689619, -0.03262561187148094, -0.007753064855933189, -0.018323097378015518, 0.0010419581085443497, 0.021665045991539955, 0.024648470804095268, 0.007119246758520603, 0.005281815305352211, 0.0003579230105970055, 0.015147605910897255, -0.020243758335709572, 0.002431235508993268, -0.011479145847260952, 0.030115950852632523, 0.007298508659005165, 0.017170701175928116, -0.012183387763798237, -0.0254935622215271, 0.03772176429629326, 0.002021494787186384, -0.0075417920015752316, 0.015262845903635025, -0.003847722429782152, 0.0006210134597495198, -0.029450122267007828, 0.012855618260800838, -0.006927181035280228, -0.011389514431357384, 0.014763474464416504, -0.03710715472698212, -0.019718777388334274, -0.00013934788876213133, 0.005323429591953754, -0.006347781512886286, 0.006366988178342581, 0.006639081984758377, 0.012522703967988491, -0.002431235508993268, 0.028144072741270065, -0.020525455474853516, 0.00897588487714529, 0.011351101100444794, 0.042356956750154495, -0.03879733383655548, -0.009968225844204426, 0.015109192579984665, -0.012804401107132435, -0.006094894837588072, -0.008534133434295654, -0.00289539503864944, -0.012721172533929348, -0.00912953820079565, -0.017439594492316246, 0.023841794580221176, 0.007260095328092575, -0.01928342692553997, -0.012503497302532196, -0.00555390864610672, 0.01878405548632145, -0.023227183148264885, 0.004327887669205666, -0.01339340303093195, -0.029962297528982162, 0.024968581274151802, 0.0014661039458587766, 0.006338178645819426, -0.029629383236169815, -0.010333151556551456, 0.012151376344263554, -0.0008090781047940254, 0.0034379817079752684, 0.007311312947422266, 0.003617243142798543, -0.0027577478904277086, 0.01912977546453476, 0.001258832635357976, -0.027145329862833023, 0.007945130579173565, -0.02186991646885872, 0.032215870916843414, -0.017234724014997482, -0.005473881494253874, 0.008066772483289242, -0.009161548689007759, 0.008873449638485909, 0.023560097441077232, -0.0068631586618721485, 0.03231830894947052, 0.029962297528982162, 0.018323097378015518, 0.016786569729447365, 0.026133781298995018, -0.031422000378370285, -0.012106561101973057, 0.032446350902318954, 0.01843833737075329, -0.012503497302532196, -0.0172987449914217, -0.002383219078183174, 0.0012180185876786709, 0.006373390555381775, -0.002634505508467555, 0.03897659480571747, 0.025583192706108093, -0.01491712685674429, -0.016364024952054024, -0.0019494700245559216, -0.03874611854553223, 0.03362435847520828, -0.004097408149391413, -0.013700708746910095, 0.005502691492438316, 0.0509871244430542, 0.01573660783469677, 0.003994972910732031, -0.009769758209586143, 0.010045052506029606, -0.02610817365348339, -0.024776516482234, 0.00747777009382844, -0.020154127851128578, -0.0050321295857429504, -0.0017462001414969563, 0.008950276300311089, 0.018809664994478226, 0.021997960284352303, 0.04317643865942955, -0.008745405822992325, 0.016607308760285378, 0.015595760196447372, -0.013054086826741695, 0.02119128406047821, 0.023073529824614525, 0.011479145847260952, -0.02046143263578415, 0.008361273445189, 0.0521395206451416, -0.006491831038147211, -0.014289711602032185, 0.002285585505887866, 0.0003271124151069671, -0.00643101055175066, 0.0038541245739907026, 0.008982286788523197, -0.0171066801995039, 0.012657150626182556, 0.012522703967988491, 0.014340928755700588, -0.014468972571194172, 0.012682759203016758, 0.006773528177291155, 0.025429539382457733, 0.022279657423496246, -0.013854362070560455, -0.027427027001976967, -0.005809996742755175, -0.026133781298995018, -0.005390652921050787, -0.02576245367527008, -0.02587769366800785, 0.012221801094710827, 0.043765440583229065, 0.006018068641424179, 0.0033547531347721815, 0.016556089743971825, -0.004026983864605427, -0.037977851927280426, -0.0034347805194556713, -0.008303654380142689, -0.003261921228840947, -0.0076826405711472034, 0.035416971892118454, 0.011139828711748123, -0.0002736940805334598, 0.024712493643164635, 0.022382093593478203, 0.015903064981102943, 0.02001327835023403, 0.027887985110282898, -0.017401181161403656, 0.009801768697798252, -0.004638394340872765, 0.005694757215678692, -0.01589026115834713, 0.014020819216966629, -0.003924549091607332, -0.03971925005316734, -0.04005216434597969, 0.006728712469339371, 0.018566381186246872, -0.008354871533811092, 0.06274156272411346, 0.018195053562521935, -0.0014869110891595483, 0.004318284336477518, -0.0009931413223966956, 0.008694187738001347, 0.03060251846909523, 0.005224195774644613, -0.003604438854381442, -0.0416911281645298, -0.002568882890045643, -0.014020819216966629, 0.01615915447473526, -0.03521210327744484, 0.0024792521726340055, 0.009545681066811085, -0.04425200819969177, 0.013521447777748108, -0.03257439658045769, -0.006959191989153624, 0.012452280148863792, 0.03398288041353226, 0.0042318543419241905, 0.013572664931416512, -0.0009083122131414711, -0.008495720103383064, -0.00025248678866773844, -0.018796861171722412, -0.03067934513092041, -0.008194816298782825, 0.022894268855452538, 0.003847722429782152, -0.03731202334165573, -0.040000949054956436, 0.014929931610822678, -0.016453655436635017, 0.0038541245739907026, -0.013623882085084915, 0.02092239074409008, -0.0026601143181324005, -0.013329381123185158, 0.024328362196683884, -0.03372679278254509, -0.027529461309313774, -0.004548763390630484, -0.017695682123303413, 0.020141322165727615, -0.01215777825564146, -0.03754250332713127], "ddbf5900-58bf-41be-acf1-43b900410da6": [0.008467908017337322, 0.02129187248647213, 0.000618757912889123, -0.02102786861360073, -0.017147019505500793, -0.0009075115667656064, -0.008355706930160522, -0.016236206516623497, 0.012969165109097958, -0.005332868080586195, 0.0059895762242376804, 0.0056529720313847065, 0.011451145634055138, 0.015787402167916298, -0.00343864387832582, 0.004517757799476385, 0.012962565757334232, 0.007900300435721874, 0.007926701568067074, -0.0073326933197677135, 0.019311847165226936, -0.011556747369468212, -0.0028710365295410156, -0.01380737591534853, -0.019430648535490036, 0.026532338932156563, 0.029251573607325554, -0.011470946483314037, 0.014084579423069954, -0.008533908985555172, 0.004468257073312998, 0.0012424658052623272, -0.04585738480091095, -0.01846703514456749, -0.028855567798018456, 0.02093546651303768, 0.0002571970399003476, 0.016619011759757996, -0.011741549707949162, 0.010447933338582516, 0.016077805310487747, -0.006633084733039141, 0.002064176369458437, 0.005121665541082621, 0.005184365902096033, 0.013193568214774132, 0.015840202569961548, -0.04382455721497536, -0.014203380793333054, 0.011206942610442638, 0.009055315516889095, 0.06489203125238419, -0.02758835256099701, -0.034531641751527786, 0.004382455721497536, 0.0035574454814195633, -0.014058179222047329, 0.022321484982967377, -0.008751711808145046, -0.03313242271542549, 0.03329082578420639, 0.007154491264373064, -0.002778635360300541, -0.03688127174973488, -0.04218773916363716, -0.0021879279520362616, 0.002344680018723011, 0.021991480141878128, -0.009471121244132519, 0.03265721723437309, 0.016553010791540146, 0.01370177511125803, 0.016975415870547295, 0.03587805852293968, 0.02735074982047081, -0.014902990311384201, -0.018863040953874588, 0.014770988374948502, -0.020209457725286484, -0.004808161407709122, -0.012685362249612808, -0.013048366643488407, -0.014784188941121101, 0.009886926040053368, 0.009853925555944443, -0.004339555278420448, -0.010513934306800365, 0.014546585269272327, 0.03688127174973488, -0.00011096391244791448, 0.009616322815418243, 0.020130256190896034, 0.007213891949504614, -0.0017671725945547223, 0.004217453766614199, 0.022572288289666176, 0.004801561124622822, 0.022968292236328125, -0.0018331733299419284, -0.026175934821367264, -0.005111765116453171, 0.038174886256456375, -0.043666157871484756, -0.0004533432947937399, -0.01376777607947588, -0.00036754217580892146, 0.013404770754277706, -0.019496649503707886, 0.014704987406730652, 0.0036663466598838568, -0.01791262812912464, 0.02422230876982212, 0.007966301403939724, -0.014784188941121101, 0.0153913963586092, -0.011853750795125961, 0.013483972288668156, -0.015642199665308, 0.0022077281028032303, 0.015523398295044899, 0.013596173375844955, 0.023443499580025673, 0.028116358444094658, -0.022585488855838776, 0.025317922234535217, -0.010579935275018215, -0.005019363947212696, -0.00115088967140764, -0.00775509886443615, -0.03582525625824928, 0.004719060380011797, 0.008943114429712296, -0.0073392936028540134, -0.005471469834446907, 0.005577071104198694, 0.001445418456569314, -0.016117405146360397, 0.016091005876660347, -0.012784362770617008, -0.02407710626721382, 0.03403003513813019, 0.006524183321744204, 0.00903551559895277, 0.007022489793598652, -0.001026313053444028, 0.008811112493276596, 0.03664366900920868, 0.017529822885990143, 0.009616322815418243, -0.0025756829418241978, 0.011965952813625336, 0.00611167773604393, 0.014678587205708027, -0.01235535740852356, 0.006923488341271877, 0.03714527562260628, -0.02716594561934471, 0.0307827927172184, 0.025977931916713715, -0.01345097180455923, 0.022849490866065025, 0.03735647723078728, -0.009873726405203342, 0.008679110556840897, -0.00045870585017837584, 0.02100146748125553, 0.017437422648072243, -0.008791312575340271, -0.02105426788330078, 0.0316276028752327, -0.002164827659726143, 0.007246892433613539, -0.01776742748916149, -0.0038643493317067623, 0.0015864952001720667, 0.01362257357686758, 0.007682498078793287, -0.0023166295140981674, -0.015840202569961548, -0.0038049486465752125, 0.0032802417408674955, -0.005758573301136494, 3.289729284006171e-05, 0.04274214431643486, -0.019509848207235336, 0.008085102774202824, 0.007233692333102226, 0.005742073059082031, 0.01770142652094364, 0.005270167253911495, 0.008309505879878998, 0.022387485951185226, 0.0017275720601901412, -0.006398781668394804, -0.617979109287262, -0.01235535740852356, 0.022242283448576927, -0.047520607709884644, -0.001130264368839562, 0.025133119896054268, 0.01204515341669321, 0.009537121281027794, -0.029013970866799355, 0.037990085780620575, -0.007550496142357588, -0.00056843226775527, 0.029779579490423203, 0.020750664174556732, -0.022598687559366226, -0.04073571786284447, 0.011847151443362236, -0.004580458626151085, -0.009827525354921818, 0.008038902655243874, -0.004055751953274012, 0.009431520476937294, -0.022479886189103127, 0.015298995189368725, 0.014229781925678253, 0.02732434868812561, -0.02159547619521618, -0.0046134586445987225, 0.011913152411580086, 0.020724264904856682, -0.009827525354921818, -0.007306293118745089, 0.00895631406456232, 0.011774550192058086, 0.028406761586666107, 0.000994962640106678, -0.01845383457839489, 0.010507334023714066, 0.023205896839499474, 0.01878383941948414, 0.0059631760232150555, -0.004233954008668661, 0.02740355022251606, 0.013351970352232456, 0.002677984070032835, -0.02129187248647213, -0.008177503943443298, 0.02115987055003643, 0.007893701083958149, -0.014308982528746128, -0.02172747626900673, -0.005553971044719219, -0.0009768124436959624, -0.016803814098238945, 0.016790613532066345, -0.02711314521729946, 0.02082986570894718, 0.010322531685233116, -0.016183406114578247, -0.026017531752586365, -0.002885886700823903, 0.010302731767296791, -0.001753972377628088, -0.01846703514456749, -0.0031432900577783585, 0.025251921266317368, -0.015998603776097298, 0.016077805310487747, -0.01212435495108366, -0.005049064289778471, -0.011418146081268787, 0.026651140302419662, -0.014757787808775902, -0.0034815443214029074, -0.0015741201350465417, 0.032604414969682693, 0.01873103901743889, -0.023839503526687622, 0.004943463020026684, -0.0023529299069195986, 0.012322356924414635, -0.01059973519295454, -0.014031779021024704, -0.017199819907546043, 0.02141067385673523, 0.015180193819105625, -0.002809985773637891, 0.025793129578232765, -0.006923488341271877, 0.025067118927836418, 0.017094217240810394, 0.01812383159995079, -0.018810240551829338, -0.04654379189014435, 0.02110707014799118, 0.03878209367394447, -0.018902640789747238, 0.018981842324137688, -0.016223007813096046, -0.020724264904856682, -0.008230305276811123, -0.022110281512141228, -0.007913501001894474, 0.01507459208369255, 0.012454358860850334, 0.0047322604805231094, -0.007095090579241514, 0.04950063303112984, 0.02168787643313408, -0.01817663200199604, -0.009121316485106945, -0.02444671094417572, -0.015470596961677074, 0.02108066901564598, 0.009873726405203342, -0.03461084142327309, 0.020249057561159134, 0.011008940637111664, -0.018995042890310287, -0.002199477981775999, 0.01841423474252224, -0.0021978281438350677, 0.026941543444991112, -0.02455231361091137, -0.004230653867125511, -0.002065826440230012, 0.0038379488978534937, 0.004101952537894249, -0.02488231658935547, -0.019404247403144836, -0.005247066728770733, -5.744135705754161e-05, -0.005883974954485893, -0.0012952665565535426, -0.007537296041846275, -0.0005663697374984622, 0.01090333890169859, -0.010566734708845615, -0.017120618373155594, -0.02150307409465313, -0.037699680775403976, -0.03437323868274689, 0.020394260063767433, -0.023496299982070923, -0.016737813130021095, -0.025185922160744667, -0.0037290474865585566, -0.008916713297367096, -0.02695474401116371, -0.013952578417956829, 0.0008134603849612176, -0.025713928043842316, -0.035376451909542084, 0.016130605712532997, -0.012599560432136059, -0.0012416408862918615, -0.014005378820002079, -0.034769244492053986, -0.011352145113050938, -0.02151627466082573, 0.0037224474363029003, 0.01829543337225914, -0.04213493689894676, -0.009721923619508743, 0.0018843240104615688, -0.04857661947607994, 0.005072164814919233, 0.03585165739059448, -0.014097779989242554, -0.03339642658829689, 0.009616322815418243, 0.010863738134503365, 0.004009551368653774, -0.0007767474162392318, -0.008613109588623047, 0.04947423189878464, -0.03255161643028259, 0.008533908985555172, -0.011246543377637863, -0.025515925139188766, 0.019272245466709137, 0.01090993918478489, -0.008844112977385521, -0.0056562721729278564, 9.58043456193991e-05, 0.0039666504599153996, 0.013846976682543755, 0.02121267095208168, -0.035376451909542084, -0.028195559978485107, 0.02467111498117447, 0.017213020473718643, -0.022493086755275726, 0.008547108620405197, 0.011041941121220589, 0.026004331186413765, -0.003646546509116888, 0.01791262812912464, -0.008982714265584946, 0.029911581426858902, 0.01061293575912714, 0.014757787808775902, 0.016223007813096046, -0.020301859825849533, 0.032340411096811295, -0.013444371521472931, 0.02397150546312332, -0.0006938338628970087, 0.022189483046531677, -0.001185540109872818, 0.012381757609546185, -0.020262258127331734, -0.02085626684129238, -0.031997207552194595, 0.040973324328660965, 0.026809541508555412, 0.005098565015941858, 0.04820701479911804, 0.013477372005581856, -0.010038727894425392, -0.005709073040634394, 0.041290126740932465, 0.016737813130021095, 0.011055140756070614, -0.0006583583890460432, -0.00454085785895586, 0.00900911446660757, -0.009121316485106945, -0.008797911927103996, -0.05771113559603691, -0.019575849175453186, -0.028829168528318405, 0.017384622246026993, -0.005956576205790043, 0.00116491480730474, 0.004854361992329359, 0.02748274989426136, -0.004880762193351984, 0.005788273643702269, 0.00472236005589366, 0.016896216198801994, 0.0306771919131279, -0.015008591115474701, -0.02727154828608036, 0.0023760301992297173, 0.008811112493276596, 0.03656446561217308, 0.03426763787865639, -0.012936164624989033, 0.01532539539039135, 0.020473461598157883, -0.004049151670187712, -0.028987569734454155, 0.00926651805639267, -0.01090993918478489, 0.0069762892089784145, -0.0003828048938885331, 0.010309331119060516, 0.009873726405203342, 0.0002067682653432712, 0.02143707312643528, 0.006319580599665642, -0.005352668464183807, 0.011688749305903912, 0.028617965057492256, 0.03094119392335415, 0.00938531942665577, -0.019364647567272186, -0.0020856265909969807, -0.002240728586912155, -0.028591563925147057, -0.028855567798018456, -0.008032302372157574, 0.005870774853974581, -0.012757962569594383, 0.009583322331309319, 0.0021202771458774805, -0.006646284833550453, 0.00751089584082365, 0.02435431070625782, -0.0009479370783083141, -0.019641850143671036, 0.011715149506926537, 0.02164827659726143, -0.003201040904968977, -0.027905156835913658, -0.018995042890310287, 0.0020361258648335934, -0.010969339869916439, 0.04519737511873245, 0.02438071183860302, 0.0024898818228393793, 0.014704987406730652, -0.009642723016440868, 0.0005222316831350327, 0.02416950836777687, 0.0313900001347065, -0.00916091725230217, -0.008778112009167671, -0.005207466427236795, 0.019127044826745987, 0.0016079455381259322, -0.0010997389908879995, 0.008698911406099796, 0.04564618319272995, 0.001960224937647581, 0.031706806272268295, -0.017041416838765144, -0.007398694287985563, -0.021938679739832878, -0.0042768544517457485, -0.022479886189103127, -0.010381932370364666, -0.0019371247617527843, 0.007035689894109964, -0.022572288289666176, 0.022387485951185226, -0.012672161683440208, 0.020684663206338882, -0.0015312195755541325, -0.017054617404937744, -0.035323649644851685, -0.025040719658136368, -0.01224315632134676, 0.03331722319126129, 0.013780975714325905, -0.023166295140981674, 0.01349717192351818, -0.03759407997131348, -0.025938330218195915, 0.0007680847775191069, -0.020420661196112633, 0.0306507907807827, 0.008870513178408146, -0.006784886587411165, -0.00454415800049901, 0.013252968899905682, -0.0028710365295410156, 0.03387163206934929, -0.0004160115495324135, -0.023324698209762573, -0.028855567798018456, -0.004517757799476385, -0.011437945999205112, -0.009853925555944443, -0.004068952053785324, 0.025436723604798317, 0.02766755223274231, 0.010685536079108715, -0.011787750758230686, -0.002953537739813328, 0.023628301918506622, 0.007656097877770662, -0.017133818939328194, 0.011457745917141438, 0.016011804342269897, 0.01217715535312891, 0.01507459208369255, -0.02457871288061142, 0.028010757640004158, 0.015827002003788948, 0.004936863202601671, 0.005577071104198694, -0.014982190914452076, 0.014625786803662777, 0.021938679739832878, 0.010203730314970016, 0.009642723016440868, -0.009913326241075993, 0.025766728445887566, 0.011840551160275936, 0.005570471286773682, 0.002379330340772867, -0.0027769855223596096, -0.012823963537812233, -0.007609897293150425, -0.0018612237181514502, -0.010824138298630714, -0.011569947935640812, -0.0047289603389799595, -0.03371322900056839, -0.016434209421277046, -0.005560570862144232, -0.020645063370466232, -0.03585165739059448, 1.4515028851747047e-05, 0.019668251276016235, -0.00013705487072002143, -0.003468344220891595, -0.004012851044535637, -0.016949016600847244, -0.0019849753007292747, -0.028301160782575607, -0.0074778953567147255, 0.013417971320450306, -0.023179495707154274, -0.014929390512406826, -0.004699259996414185, 0.02431471087038517, 0.019364647567272186, -0.007675897795706987, -0.006494482979178429, -0.0017028216971084476, -0.007075290195643902, -0.008355706930160522, -0.025779929012060165, -0.025225521996617317, -0.014256182126700878, 0.009801125153899193, 0.044537369161844254, 0.0023166295140981674, -0.010329131968319416, -0.008243504911661148, 0.03664366900920868, 0.00890351366251707, -0.005329567939043045, 0.016368208453059196, -0.026321135461330414, 0.008375506848096848, 0.001963525079190731, -0.019998254254460335, 0.023641502484679222, -0.02146347425878048, -0.03603645786643028, -0.0026053832843899727, 0.0028776368126273155, 0.01792582869529724, -0.02448631264269352, 0.0015072942478582263, 0.0022770289797335863, 0.00224237865768373, 0.0061050779186189175, -0.02434111014008522, 0.007458094973117113, 0.012097954750061035, -0.029383575543761253, 0.009418319910764694, 0.0003198978374712169, -0.0056793722324073315, -0.014480584301054478, -0.00907511543482542, 0.04371895641088486, -0.002064176369458437, -0.007279892917722464, 0.012196955271065235, -0.016209807246923447, 0.00038032984593883157, 0.001429743249900639, -0.015008591115474701, 0.029040370136499405, -0.008566909469664097, -0.025278322398662567, -0.01776742748916149, -0.014150580391287804, 0.031284399330616, 0.0016698213294148445, -0.015100992284715176, -0.01826903223991394, -0.016051404178142548, 0.014361782930791378, -0.003304992103949189, 0.004814761225134134, -0.017622224986553192, -0.002201128052547574, 0.003544245148077607, -0.011127742007374763, -0.0024469811469316483, -0.04604218900203705, -0.003676246851682663, -0.02785235457122326, -0.02793155610561371, 0.029779579490423203, 0.009985927492380142, 0.007345893885940313, -0.002163177588954568, -0.0024486312177032232, 0.00529656745493412, -0.003547545289620757, 0.02703394554555416, -0.010296131484210491, 0.0025921829510480165, 0.004930262919515371, 0.02782595530152321, 0.008982714265584946, 0.011847151443362236, 0.02691514417529106, 0.020235858857631683, 0.014308982528746128, 0.003138340078294277, 0.02403750643134117, -0.021991480141878128, -0.008520708419382572, -0.03614206239581108, -0.0039171501994132996, -0.011596348136663437, 0.01077793724834919, 0.007121490780264139, 0.02154267393052578, 0.016658611595630646, 0.020051056519150734, 0.01521979458630085, 0.025872329249978065, -0.02391870506107807, -0.02456551417708397, -0.010289531201124191, 0.007675897795706987, 0.00343864387832582, 0.015048191882669926, -0.011338944546878338, -0.0038742495235055685, 0.028802767395973206, -0.014955790713429451, -0.006771686486899853, -0.022545887157320976, 0.025238722562789917, -0.005557270720601082, 0.011899951845407486, -0.0025047319941222668, 0.026030732318758965, -0.013391571119427681, 0.0021169770043343306, -0.01821623183786869, 0.020090656355023384, 0.010705336928367615, 0.011899951845407486, 0.011266343295574188, 0.0020872766617685556, -0.011503946967422962, -0.02088266611099243, 0.0009462870657444, -0.01854623667895794, -0.004686059895902872, 0.0018760738894343376, 0.006253579631447792, 0.014216581359505653, -0.011734949424862862, -0.01800503022968769, -0.014533385634422302, 0.0007911850698292255, 0.016830215230584145, -0.0006241204682737589, 0.02494831755757332, -0.010183929465711117, -0.014493784867227077, 0.00688388803973794, -0.022110281512141228, 0.041474927216768265, -0.00028689741156995296, 0.02690194360911846, 0.0031152397859841585, -0.0037323476281017065, -0.008256705477833748, 0.018942242488265038, 0.00013736425898969173, 0.022941892966628075, 0.025661127641797066, 0.014097779989242554, -0.01859903708100319, 0.023034293204545975, 0.005072164814919233, -0.0036630467511713505, 0.007840899750590324, -0.062199193984270096, 0.02480311691761017, 0.040999721735715866, -0.015048191882669926, -0.019457047805190086, 0.023892303928732872, -0.04337575286626816, 0.0032637417316436768, -0.017648624256253242, -0.02394510619342327, -0.023403897881507874, -0.003927050158381462, -0.05449029430747032, 0.020869465544819832, -0.008289705961942673, 0.04855021834373474, 0.014124180190265179, 0.004022751469165087, -0.022651489824056625, -0.004194353707134724, -0.034663643687963486, -0.002440381096675992, 0.025159521028399467, -0.01078453753143549, -0.01793902926146984, 0.007524095941334963, 0.02721874788403511, 0.014256182126700878, -0.005309767555445433, -0.009675723500549793, -0.004092052113264799, 0.031838804483413696, -0.02777315489947796, -0.038333289325237274, -0.016671812161803246, 0.0005964825977571309, 0.0032934420742094517, 0.01041493285447359, -0.008454707451164722, 0.015774201601743698, 0.014084579423069954, -0.008837512694299221, 0.003303342033177614, 0.013048366643488407, -0.03403003513813019, -0.023892303928732872, -0.001717671868391335, -0.0006909462972544134, 0.002024575835093856, 0.006359180901199579, -0.0313900001347065, -0.0153781957924366, -0.03693407028913498, -0.02088266611099243, -0.011391744948923588, 0.008144503459334373, 0.015642199665308, -0.003138340078294277, 0.011860351078212261, 0.028855567798018456, -0.0315220020711422, 0.0042570545338094234, 0.006009376607835293, 0.004012851044535637, -0.05155985802412033, 0.005771773401647806, -0.007735298480838537, -0.019549449905753136, 0.03564045578241348, -0.006778286304324865, 0.011147541925311089, -0.050530243664979935, -0.009933127090334892, -0.0006171079003252089, -0.011946151964366436, -0.012487359344959259, -0.00901571474969387, 0.023153094574809074, 0.0310203954577446, -0.016711413860321045, -0.023839503526687622, -0.004468257073312998, -0.016473809257149696, 0.0025591826997697353, 0.002382630482316017, -0.03569325432181358, 0.006679285317659378, -0.014572985470294952, -0.012520359829068184, 0.04583098366856575, -0.008863912895321846, 0.006682585459202528, -0.014836989343166351, 0.010296131484210491, -0.015127393417060375, 0.01508779264986515, -0.04189733415842056, -0.0013893176801502705, -0.007656097877770662, 0.016949016600847244, -0.028565164655447006, -0.009167516604065895, 0.008184104226529598, 0.037514880299568176, 0.017635425552725792, 0.0012581410119310021, -0.014137380756437778, -0.02440711110830307, 0.005824574269354343, -0.008725311607122421, -0.0063888817094266415, -0.008606510236859322, -0.016421008855104446, 0.04181813448667526, 0.03400363400578499, -0.04311174899339676, -0.014744588173925877, -0.020367858931422234, -0.04007571190595627, -0.01883663982152939, 0.01533859595656395, 0.008712111040949821, 0.020803464576601982, 0.037726081907749176, -0.008487707935273647, 0.032050009816884995, -0.0005548195913434029, 0.04358695447444916, -0.011959352530539036, 0.008837512694299221, -0.004900562576949596, 0.020407460629940033, -0.0071940915659070015, -0.0061281779780983925, -0.01770142652094364, -0.017015017569065094, 0.014876590110361576, 0.0039171501994132996, 0.002922187326475978, 0.028485963121056557, 0.009372119791805744, 0.003504644613713026, -0.017516624182462692, 0.016500210389494896, 0.0032422912772744894, 0.025278322398662567, 0.013846976682543755, -0.013404770754277706, 0.0026598339900374413, -0.0013728175545111299, 0.018810240551829338, -0.002194528002291918, -0.013101167045533657, -0.0004896437749266624, -0.003940250258892775, 0.028670765459537506, 0.014480584301054478, 0.005131565500050783, 0.016275808215141296, -0.007801299449056387, 0.023337896913290024, 0.022176282480359077, 0.013312369585037231, 0.04530297964811325, -0.017120618373155594, 0.025911930948495865, -0.015919402241706848, -0.005949975922703743, -0.02126547135412693, 0.01791262812912464, 0.010870338417589664, 0.005847674794495106, -0.0041349525563418865, -0.02185947820544243, 0.028617965057492256, -0.016711413860321045, 0.014612586237490177, 0.014718187972903252, -0.017160218209028244, -0.017292220145463943, 0.028565164655447006, 0.0054582697339355946, 0.006365781184285879, 0.025185922160744667, -0.019536249339580536, -0.008646110072731972, 0.004494657274335623, -0.008877113461494446, -0.004844461567699909, 0.017186619341373444, 0.020222658291459084, -0.004131652880460024, -6.527896039187908e-05, -0.00925991777330637, 0.009880325756967068, 0.02106746844947338, -0.02445991151034832, -0.007893701083958149, 0.18828719854354858, -0.004884062334895134, 0.028142759576439857, 0.023245496675372124, -0.008533908985555172, -0.0005977201508358121, 0.013068166561424732, -0.019998254254460335, -0.007887100800871849, 0.023786703124642372, -0.02158227562904358, 0.0034584440290927887, -0.022004680708050728, 0.014982190914452076, 0.008566909469664097, -0.02440711110830307, -0.03870289400219917, -0.04023411497473717, -0.01871783845126629, 0.00928631890565157, -0.003854449139907956, -0.00015860827988944948, -0.031838804483413696, -0.026241933926939964, 0.03706607222557068, -0.009781325235962868, -0.017199819907546043, 0.016883015632629395, 0.014982190914452076, 0.019589049741625786, -0.011213542893528938, 0.005900475196540356, 0.01217715535312891, -0.006593483965843916, -0.031099596992135048, -0.013147368095815182, 0.01545739732682705, 0.005118365399539471, 0.03289481997489929, 0.011530347168445587, 0.023430299013853073, -0.01363577414304018, -0.005633171647787094, -0.02793155610561371, 0.014520185068249702, 0.03334362432360649, -0.0032191909849643707, 0.015879802405834198, -0.01085713878273964, 0.029779579490423203, -0.026637939736247063, -0.025951530784368515, 0.029040370136499405, 0.01820303127169609, -0.016764214262366295, -0.003296741982921958, -0.008111503906548023, 0.004818061366677284, 0.02703394554555416, 0.011873551644384861, -0.02393190562725067, 0.031152397394180298, 0.004801561124622822, 0.026717141270637512, 0.013378370553255081, -0.002613633405417204, -0.038227688521146774, -0.00037063597119413316, -0.028406761586666107, -0.022281885147094727, -0.0057981740683317184, 0.009068516083061695, -0.0024585314095020294, -0.004296654835343361, -0.013292569667100906, -0.022031081840395927, 0.00908171571791172, 0.023166295140981674, 0.014955790713429451, 0.0003894049732480198, -0.004679459612816572, -0.01809743046760559, 0.003639946458861232, 0.019285446032881737, -0.020288659259676933, -0.0305451899766922, 0.017252620309591293, -0.012573160231113434, 0.005718972999602556, -0.02105426788330078, -0.022281885147094727, -0.007458094973117113, 0.002819885965436697, -0.01228935644030571, -0.014625786803662777, 0.004012851044535637, -0.019707851111888885, 0.04593658447265625, -0.02155587449669838, 0.016751013696193695, -0.01816343143582344, 0.03297401964664459, 0.01865183748304844, 0.002859486499801278, 0.017147019505500793, -0.00763629749417305, -0.01803142949938774, 0.01782022789120674, 0.0056793722324073315, -0.008045502938330173, 0.004900562576949596, -0.0156554002314806, 0.0002074901422020048, -0.0010098129278048873, 0.01065253559499979, -0.008408507332205772, -0.00309213949367404, -0.02713954634964466, 0.014361782930791378, 0.017305420711636543, -0.022189483046531677, -0.017028218135237694, -0.004969863221049309, 0.014546585269272327, 0.016315408051013947, -0.017081018537282944, -0.03094119392335415, 0.002232478465884924, -0.006520883180201054, -0.015959003940224648, 0.019734252244234085, -0.03978530690073967, 0.014229781925678253, 0.008890313096344471, 0.02101466804742813, -0.010032127611339092, -0.005636471789330244, -0.02155587449669838, -0.02468431554734707, 0.02131827175617218, -0.016685012727975845, -0.008177503943443298, -0.007081890478730202, 0.010216929949820042, 0.014110979624092579, -0.023601900786161423, -0.029832379892468452, -0.009721923619508743, 0.01825583353638649, -0.016236206516623497, -0.014203380793333054, 0.0035277449060231447, -0.00023739677271805704, -0.02787875570356846, -0.01842743530869484, -0.03777888044714928, 0.015549798496067524, -0.05517670512199402, 0.02122587151825428, 0.012269556522369385, -0.014084579423069954, -0.005131565500050783, -0.012903164140880108, -0.022598687559366226, -0.013952578417956829, -0.007062090095132589, -0.16442129015922546, 0.02143707312643528, 0.019905854016542435, -0.022031081840395927, 0.011695349588990211, 0.006831087172031403, 0.017384622246026993, 0.02179347723722458, -0.029436375945806503, -0.00466295937076211, -0.002644983818754554, -0.028433162719011307, -0.014797388575971127, 0.0023067293222993612, -0.01532539539039135, -0.003745547728613019, -0.0007251842762343585, -0.01071193628013134, 0.041474927216768265, 0.03281562030315399, 0.05369828641414642, -0.011279543861746788, 0.040603719651699066, 0.015642199665308, 0.002303429413586855, -0.007550496142357588, 0.0032142410054802895, 0.011576547287404537, -0.014691787771880627, -0.023271895945072174, 0.03886129707098007, -0.013153967447578907, 0.022757090628147125, -0.00885071326047182, -0.01212435495108366, -0.013530172407627106, -0.005098565015941858, -0.008870513178408146, -0.0015782450791448355, -0.009530521929264069, 0.011503946967422962, -0.008527308702468872, -0.008177503943443298, -0.0016524960519745946, -0.0041646528989076614, 0.027905156835913658, 0.0036663466598838568, -0.022889092564582825, 0.005283367354422808, -0.02457871288061142, 0.005544070620089769, -0.012018753215670586, 0.014361782930791378, 0.005256967153400183, 0.03355482965707779, -0.028829168528318405, -0.010012327693402767, 0.023588700219988823, -0.007807899732142687, 0.002093876712024212, -0.011979152448475361, -0.02745635062456131, 0.005633171647787094, 0.02123907022178173, 0.0009075115667656064, -0.037514880299568176, -0.010084928944706917, 0.001963525079190731, -0.019351447001099586, -0.00890351366251707, 0.009167516604065895, -0.02732434868812561, -0.002024575835093856, -0.0018711239099502563, 0.011569947935640812, 0.035138849169015884, 0.0008167604100890458, 0.015351795591413975, -0.008362306281924248, -0.013015366159379482, -0.01519339345395565, 0.019074242562055588, 0.004738860297948122, -0.00302943866699934, 0.00775509886443615, -0.0311259962618351, -0.01817663200199604, 0.005775073543190956, 0.008652710355818272, -0.025608327239751816, 0.01837463490664959, -0.04268934577703476, -0.020328259095549583, -0.0012342158006504178, 0.022453486919403076, 0.0013035166775807738, 0.002653233939781785, -0.025555526837706566, 0.023351097479462624, -0.025925131514668465, 0.016883015632629395, -0.01222995575517416, -0.017516624182462692, -0.003128439886495471, 0.01580060087144375, 0.019100643694400787, -0.014665386639535427, 0.025595126673579216, 0.04572538286447525, 0.013490571640431881, -0.002451931359246373, 0.02146347425878048, 0.016157006844878197, 0.017001817002892494, -0.003448544070124626, 0.014678587205708027, -0.015589399263262749, -0.01780702732503414, 0.019826652482151985, -0.013186967931687832, 0.00894971378147602, 0.019245846197009087, 0.017305420711636543, 0.03263081610202789, 0.007372294086962938, -0.02488231658935547, -0.10179969668388367, -0.05808074027299881, -0.012342157773673534, 0.005398869048804045, -0.011880151927471161, -0.002409030683338642, 0.0002051182382274419, 0.01877063885331154, 0.001579070114530623, 0.016143806278705597, -0.007121490780264139, -0.02167467586696148, 0.0005725573282688856, 0.014718187972903252, -0.0076164971105754375, -0.005448369309306145, -0.014942590147256851, 0.010560134425759315, -0.007187491748481989, 0.009860525839030743, -0.008375506848096848, -0.02457871288061142, -0.011523746885359287, 0.008157704025506973, 0.000535431841854006, 0.0056562721729278564, -0.03046598844230175, 0.019391046836972237, 0.00018738051585387439, 0.02464471384882927, 0.006029176991432905, -0.015483797527849674, 0.003478244412690401, -0.0034584440290927887, 0.0012102904729545116, 0.0053427680395543575, -0.0304395891726017, -0.014203380793333054, 0.028697166591882706, -0.023139895871281624, -0.008778112009167671, 0.009497521445155144, 0.01247415877878666, -0.019549449905753136, -0.011259743943810463, 0.009787924587726593, -0.03674926981329918, 0.015893002972006798, 0.011668948456645012, -0.013846976682543755, -0.011827350594103336, -0.006897088140249252, -0.02411670796573162, -0.0301491841673851, 0.0071676913648843765, -0.005850974470376968, -0.009550321847200394, -0.0006249454454518855, -0.006451582070440054, 0.0009858876001089811, -0.01805783063173294, 0.025476325303316116, -0.025199120864272118, 0.013675374910235405, 0.01879703998565674, 0.016658611595630646, -0.02147667482495308, -0.0005519320257008076, 0.0314164012670517, -0.03601006045937538, 0.016566211357712746, 0.0314691998064518, 0.0032851919531822205, 0.035244449973106384, -0.0076890978962183, 0.00337924319319427, -0.022928692400455475, 0.008857312612235546, 0.011635947972536087, -0.007537296041846275, -0.005883974954485893, -0.02092226780951023, 0.0007524095708504319, -0.01393937785178423, 0.012599560432136059, 0.03347562626004219, -0.01824263297021389, 0.00751749612390995, 0.005223966669291258, -0.014836989343166351, -0.0035145448055118322, 0.02449951320886612, 0.04213493689894676, -0.008718711324036121, 0.001084888819605112, -0.014902990311384201, 0.001513069262728095, -0.016209807246923447, -0.004682759754359722, 0.01060633547604084, -0.01849343627691269, -0.005138165317475796, -0.04055091738700867, 0.0016854965360835195, 0.016091005876660347, -0.023535899817943573, 0.007543896324932575, 0.0045903585851192474, 0.026307934895157814, -0.015827002003788948, -0.0059895762242376804, -0.029251573607325554, -0.01836143434047699, 0.01071853656321764, 0.007385494187474251, 0.014638986438512802, -0.028274761512875557, -0.034954044967889786, 0.010929739102721214, 0.004458356648683548, 0.006164478603750467, 0.016817014664411545, 0.002640033606439829, -0.007411894388496876, 0.008329305797815323, 0.0056265718303620815, -0.011061741039156914, 0.019932255148887634, -0.011028740555047989, 0.0030327385757118464, -0.013609373942017555, -0.015364996157586575, 0.008071903139352798, -0.008877113461494446, 0.00016675525694154203, 0.053856685757637024, 0.004864261951297522, 0.01519339345395565, -0.007999301888048649, 0.01073173712939024, 0.0156289990991354, 0.0006579458713531494, -0.009352318942546844, -0.03878209367394447, 0.013860177248716354, 0.0008868863224051893, 0.013477372005581856, -0.004494657274335623, -0.012394958175718784, -0.011926352046430111, 0.013358570635318756, -0.012738162651658058, 0.005336168222129345, 0.022163081914186478, -0.02684914320707321, -0.00618427898734808, 0.00902891531586647, -0.04018131271004677, 0.003278591902926564, -0.002610333263874054, -0.006279980298131704, -0.023773502558469772, 0.04237253963947296, -0.015496998094022274, 0.011332344263792038, -0.008164304308593273, 0.014493784867227077, -0.04488057270646095, -0.035112448036670685, 0.0008394481847062707, -0.007781499065458775, 0.007722098380327225, -0.016223007813096046, 0.001289491425268352, 0.00021512150124181062, -0.032393213361501694, 0.04234613850712776, 0.02713954634964466, 0.006230479571968317, -0.015549798496067524, 0.004230653867125511, 0.025793129578232765, 0.02138427272439003, -0.010560134425759315, -0.00921371765434742, 0.025647927075624466, 0.04649099335074425, -0.008844112977385521, -0.008296306245028973, -0.009774724952876568, -0.008190704509615898, 0.007161091547459364, 0.002930437447503209, 0.0152725949883461, -0.009721923619508743, 0.010375332087278366, 0.007121490780264139, 0.011563347652554512, 0.015127393417060375, -0.003709247335791588, 0.000559769629035145, 0.0036630467511713505, 0.0055143702775239944, 0.006791486404836178, -0.017450623214244843, -0.011081540957093239, -0.034426040947437286, -0.0007738598505966365, -0.003709247335791588, -0.029383575543761253, -0.029541976749897003, 0.04202933609485626, 0.0021780277602374554, 0.009240117855370045, 0.03598365932703018, -0.00523716676980257, -0.029964381828904152, -0.006402081809937954, -0.00599617650732398, -0.014850188978016376, -0.02147667482495308, 0.0063888817094266415, -0.008481108583509922, 0.0023644801694899797, 0.017133818939328194, -0.002889186842367053, 0.00915431696921587, 0.004144852980971336, 0.02729794755578041, 0.002475031651556492, 0.0008703860803507268, 0.0018067730125039816, -0.0017358221812173724, -0.017424222081899643, -0.008058702573180199, -0.028274761512875557, -0.01800503022968769, -0.025634726509451866, 0.0012630911078304052, 0.008659310638904572, 0.0010700386483222246, 0.07291772961616516, 0.0016714712837710977, -0.01532539539039135, 0.007220492232590914, -0.014916189946234226, 0.028116358444094658, 0.03936290368437767, 0.00171932193916291, -0.01073833741247654, -0.0300699844956398, 0.01206495426595211, 0.00302613852545619, -0.006312980316579342, -0.022123482078313828, 0.01248075906187296, 0.007821099832654, -0.035244449973106384, -0.003328092396259308, -0.026109933853149414, 0.0021499774884432554, 0.011642548255622387, -0.002369430148974061, 0.012553360313177109, 0.003884149482473731, 0.005943375639617443, -0.0027423349674791098, 0.008098303340375423, -0.00013066103565506637, -0.03632686287164688, -0.006444982253015041, -0.006646284833550453, 0.0014346933458000422, -0.03622126206755638, -0.035244449973106384, 0.004402256105095148, 0.014704987406730652, -0.013305769301950932, 0.008672510273754597, 0.022572288289666176, -0.016434209421277046, -0.00931931845843792, 0.00039683005888946354, -0.011569947935640812, -0.04464296996593475, -0.041052524000406265, 0.011180542409420013, -0.0025360824074596167, -0.013483972288668156, -0.041369326412677765], "98b2ce96-a564-4c85-8471-1014e50c45b1": [0.001617436995729804, 0.006915006786584854, 0.0069824703969061375, -0.007333280518651009, -0.032922178506851196, -0.007724568713456392, -0.007947198115289211, -0.024030491709709167, -0.003202828811481595, -0.018336573615670204, 0.00748169980943203, 0.007036441005766392, 0.01940249651670456, 0.01551660057157278, -0.004604382440447807, 0.018646905198693275, 0.02038746327161789, -0.017837343737483025, -0.001163745066151023, 8.891475590644404e-05, 0.024111447855830193, -0.0005907270824536681, 0.009944116696715355, -0.013141886331140995, -0.023544754832983017, 0.031276069581508636, 0.012791075743734837, -0.01370857935398817, 0.04174640029668808, -0.018188154324889183, 0.023463798686861992, -0.008021407760679722, -0.027309216558933258, -0.019793786108493805, -0.015003877691924572, 0.02860451489686966, -0.006429269909858704, -0.00011616368283284828, 0.004445843398571014, -0.011340610682964325, 0.008034900762140751, -0.022303426638245583, -0.0050530144944787025, -0.006577689200639725, -0.0140458969399333, 0.0180802121758461, 0.01793179288506508, -0.03273328021168709, -0.032598353922367096, 0.00846666656434536, 0.026553625240921974, 0.071025550365448, -0.03481115773320198, -0.006486613769084215, 0.009876653552055359, -0.0015550332609564066, -0.0016031009145081043, -0.002202682662755251, -0.022222470492124557, -0.033758725970983505, 0.01579994708299637, -0.0070499335415661335, -0.017877822741866112, -0.02529880590736866, -0.025028951466083527, -0.002786241704598069, 0.03205864503979683, 0.018673891201615334, -0.013681594282388687, 0.022060558199882507, 0.0032180079724639654, 0.020927172154188156, 0.025204356759786606, -0.00019005726790055633, 0.02149386517703533, -0.01739208586513996, -0.012730359099805355, 0.026526641100645065, -0.009505604393780231, -0.012716866098344326, -0.008972642943263054, -0.0068104383535683155, -0.006280850153416395, 0.01612377166748047, 0.011374343186616898, 0.009849668480455875, -0.008561115711927414, 0.02233041264116764, 0.010315165854990482, -0.00768409064039588, 0.007630119565874338, 0.015462629497051239, -0.014275272376835346, 0.01839054562151432, 0.009188526310026646, 0.009134555235505104, -0.005140717141330242, 0.02237088978290558, 0.01519277598708868, -0.0271203201264143, 0.0027997344732284546, 0.036889031529426575, -0.03416350483894348, -0.013964940793812275, -0.020954156294465065, -0.007036441005766392, -0.009181779809296131, -0.021399416029453278, 0.004314289428293705, -0.004783160984516144, -0.030493494123220444, 0.029872829094529152, 0.00844642799347639, -0.02484005317091942, 0.012635909952223301, -0.015165789984166622, 0.012386295013129711, -0.009006374515593052, -0.011819601990282536, -0.008102363906800747, -0.0012101262109354138, 0.02268122136592865, 0.032274529337882996, -0.0192136000841856, 0.02233041264116764, -0.03232850134372711, -0.014720531180500984, -0.0009175033192150295, -0.007103904616087675, -0.036727119237184525, 0.016326162964105606, 0.009343692101538181, 0.012554953806102276, -0.002440491458401084, -0.015692004933953285, -0.019119150936603546, -0.004314289428293705, 0.0072050997987389565, -0.008837715722620487, -0.021925631910562515, 0.028064807876944542, 0.002489402424544096, -0.0013627622975036502, 0.013256574049592018, -0.020657317712903023, 0.0236526969820261, 0.032625339925289154, 0.0012413280783221126, 0.007279309444129467, -0.022802656516432762, -3.483856198727153e-05, -0.024259867146611214, 0.026863958686590195, 0.00281322724185884, 0.008723028004169464, 0.0026766136288642883, -0.0054476759396493435, 0.01165094319730997, 0.02500196546316147, -0.015300717204809189, 0.02579803578555584, 0.03956058621406555, -0.017189694568514824, 0.015408659353852272, -0.01758098229765892, 0.008190066553652287, 0.0280917938798666, 0.024718619883060455, -0.028010837733745575, 0.006665391847491264, 0.01134735718369484, 0.009485365822911263, -0.013189110904932022, 0.021979602053761482, 0.010497317649424076, -0.00681718485429883, 0.007495192810893059, 0.012669641524553299, -0.01891675963997841, -0.008675803430378437, 0.02053588442504406, -0.0049383267760276794, 0.023423319682478905, 0.04058602824807167, -0.006898141000419855, -0.015853917226195335, 0.02102162130177021, -0.0007661321433261037, 0.029845843091607094, 0.010463586077094078, -0.0013450531987473369, 0.03186974674463272, 0.0146935461089015, 0.0017827224219217896, -0.6070634126663208, 0.019308047369122505, -0.01905168779194355, -0.038346242159605026, 0.014558618888258934, 0.034568287432193756, 0.0024337449576705694, 0.003096573753282428, -0.03168085217475891, 0.029036281630396843, -0.010531049221754074, 0.021277980878949165, 0.009067092090845108, 0.014639575034379959, -0.0037678354419767857, -0.044957663863897324, -0.003106693271547556, -0.007340026553720236, -0.015273732133209705, 0.010544542223215103, -0.018296096473932266, 0.027241753414273262, -0.02697189897298813, -0.009141301736235619, 0.01590788923203945, 0.015894396230578423, 0.001861992059275508, -0.016798406839370728, 0.02054937556385994, 0.006348313298076391, -0.010875113308429718, -0.012602178379893303, 0.0066384063102304935, 0.03437938913702965, 0.041989270597696304, 0.015489615499973297, -0.021129561588168144, 0.023936042562127113, 0.000468027894385159, 0.026998884975910187, -0.019928712397813797, 0.015705497935414314, 0.02857753075659275, 0.010814395733177662, 0.012143426574766636, -0.029818858951330185, -0.02582501992583275, 0.03723984211683273, -0.002825033152475953, -0.014734024181962013, -0.026229800656437874, 0.010321912355720997, 0.0048034000210464, -0.0338936522603035, 0.022465338930487633, -0.016312669962644577, 0.030763346701860428, 0.005356600508093834, -0.001496845972724259, -0.02954900451004505, -0.0010456839809194207, 0.00734677305445075, -0.008567862212657928, 0.0033461886923760176, 0.006324701476842165, 0.04946422576904297, 0.0014664874179288745, 0.01771591044962406, -0.01952393166720867, -0.023571740835905075, 0.02153434231877327, 0.013991925865411758, -0.018350066617131233, -0.011974767781794071, 0.018484992906451225, 0.010794157162308693, 0.016366640105843544, -0.014922921545803547, -0.005353227257728577, -0.0017793492879718542, 0.023423319682478905, -0.019496945664286613, -0.017756387591362, -0.0027727491687983274, 0.025420239195227623, 0.024759097024798393, -0.0006109661189839244, 0.014653068035840988, 0.001732124830596149, 0.01903819479048252, 0.037779550999403, 0.01859293505549431, -0.009323452599346638, -0.02925216592848301, -0.0005405511474236846, 0.02450273558497429, -0.019753307104110718, 0.024367809295654297, 0.010052058845758438, -0.009896893054246902, -0.011104488745331764, -0.00434802146628499, -0.0021571447141468525, 0.012534714303910732, 0.011664436198771, 0.0032601726707071066, -0.003960106521844864, 0.02546071819961071, 0.0469815693795681, -0.012541460804641247, -0.00693524582311511, -0.03435240313410759, -0.029171209782361984, 0.012716866098344326, -0.03502703830599785, -0.039857424795627594, 0.025852005928754807, -0.01157673355191946, -0.007124143652617931, 0.0003910773666575551, 0.0012438578996807337, -0.0074277292005717754, 0.00894565787166357, -0.007333280518651009, 0.018174661323428154, 0.01938900351524353, -0.012865285389125347, -0.015152297914028168, -0.019335033372044563, -0.011462044902145863, 0.012669641524553299, -0.00024961488088592887, -0.0018215139862149954, -0.005882815457880497, 0.011158459819853306, -0.006665391847491264, -0.00537683954462409, -0.024057477712631226, 0.009478619322180748, -0.015826933085918427, -0.02169625461101532, -0.013431979343295097, 0.026216307654976845, -0.04123368114233017, -0.012622416950762272, -0.014059389010071754, -0.015476122498512268, -0.004371633753180504, -0.02693142183125019, -0.02482656016945839, -0.006709243170917034, -0.009330199100077152, -0.031950704753398895, 0.017675431445240974, 0.007211846299469471, -0.002663120860233903, -0.0028351526707410812, 0.007657105103135109, -0.00150949542876333, -0.02560913749039173, 0.008264276199042797, 0.021237503737211227, -0.0374557226896286, -0.0010726692853495479, -0.006486613769084215, -0.04104478284716606, -0.0290632676333189, 0.016838883981108665, -0.012851793318986893, -0.04126066341996193, 0.017176201567053795, 0.019996175542473793, 0.011812855489552021, -0.015584063716232777, -0.009593307040631771, 0.02745763584971428, -0.03405556455254555, 0.008041647262871265, -0.011522762477397919, -0.0023747144732624292, 0.007373758591711521, 0.013425232842564583, -0.029279150068759918, 0.003020677249878645, 0.014248287305235863, 0.022235963493585587, 0.020252536982297897, 0.003467622911557555, -0.03238246962428093, 0.0006341566913761199, 0.007704329676926136, 0.007393997628241777, -0.024678140878677368, 0.01091559138149023, 0.012055723927915096, 0.01593487337231636, 0.003646401222795248, 0.015408659353852272, 0.02118353359401226, 0.0345413014292717, 0.010895351879298687, -0.005228419788181782, 0.005076626781374216, -0.02844260260462761, 0.008770252577960491, -0.03567468747496605, 0.01608329452574253, 0.0016469522379338741, 0.01596185937523842, 0.012541460804641247, -0.004735936410725117, -0.007232085335999727, -0.0085543692111969, -0.038858965039253235, 0.025096414610743523, 0.026013918220996857, -0.013897476717829704, 0.01907867193222046, 0.00636180629953742, -0.02003665454685688, -0.0011106175370514393, 0.04414810240268707, 0.014275272376835346, 0.015111819840967655, 0.0007167994626797736, -0.025663107633590698, -0.004138884600251913, -0.008682549931108952, 0.0015221447683870792, -0.03405556455254555, -0.011536255478858948, -0.0010676095262169838, 0.022870119661092758, -0.01771591044962406, 0.045740239322185516, 0.004236706532537937, 0.04463383927941322, 6.0875248891534284e-05, 0.012514475733041763, -0.004584143403917551, 0.00837221834808588, 0.006311208475381136, -0.0011182072339579463, -0.03945264220237732, 0.01034215185791254, 0.011138220317661762, 0.03413652256131172, 0.0006468061474151909, -0.011144966818392277, 0.0024219390470534563, 0.015611049719154835, -0.01724366657435894, -0.017459549009799957, 0.014059389010071754, -0.011367596685886383, 0.010126268491148949, 0.0078729884698987, 0.01791829988360405, 0.02909025363624096, 0.006287596188485622, 0.010281434282660484, -0.007765046786516905, -0.010166746564209461, 0.008986135944724083, 0.011819601990282536, 0.011374343186616898, 0.01306767575442791, -0.03119511343538761, -0.008486906066536903, 0.002089681336656213, -0.015543585643172264, -0.02399001456797123, -0.024597184732556343, 0.01776988059282303, 0.02330188639461994, -0.00455378508195281, 0.004931580275297165, 0.01329705212265253, 0.004091660026460886, 0.02795686572790146, -0.011752137914299965, -0.0192136000841856, 0.007798778358846903, 0.012291845865547657, 0.012878778390586376, -0.01772940345108509, -0.016029322519898415, 0.011030279099941254, -0.007555909920483828, 0.031114157289266586, 0.00045411355677060783, 0.009249242953956127, -0.001786095672287047, -0.0056534395553171635, -0.013357768766582012, 0.037887491285800934, 0.004223213996738195, -0.005532005336135626, 0.00480677280575037, -0.026702046394348145, 0.0036126694176346064, 0.001188200549222529, 0.01480148732662201, 0.02925216592848301, 0.016137264668941498, 0.00029093626653775573, 0.02595994807779789, -0.020954156294465065, -0.010976308025419712, -0.010038565844297409, 0.025501195341348648, -0.04209721088409424, -0.02269471436738968, -0.004702204372733831, 0.019591394811868668, -0.011664436198771, -0.00338666676543653, -0.01242002658545971, 0.015314210206270218, 0.012210889719426632, -0.03216658905148506, -0.00690826028585434, -0.026877449825406075, -0.009660770185291767, 0.05737094208598137, 0.0371318981051445, -0.015840426087379456, 0.008911925368010998, -0.04282581806182861, -0.019753307104110718, -0.01272361259907484, -0.010922337882220745, 0.019456468522548676, 0.006941992323845625, -0.020158087834715843, 0.008324993774294853, 0.004179362673312426, -0.0016520119970664382, 0.020940665155649185, 0.01891675963997841, -0.017702417448163033, -0.02349078468978405, 0.0021993094123899937, -0.010375883430242538, -0.016366640105843544, -0.012500982731580734, 0.01973981410264969, 0.014180823229253292, -0.003646401222795248, 0.00921551138162613, 0.018134184181690216, 0.019335033372044563, -0.011623958125710487, -0.02659410424530506, -0.008608340285718441, 0.012035485357046127, 0.0040174503810703754, 0.03284122422337532, -0.010099283419549465, 0.02318045124411583, 0.006921753287315369, 0.02285662665963173, 0.019658857956528664, -0.009370677173137665, 0.009309960529208183, 0.01706826128065586, 0.010483824647963047, 0.0032331873662769794, 0.008001169189810753, 0.02909025363624096, 0.01577296108007431, -0.012264860793948174, 0.0018113944679498672, -0.005980637390166521, 5.444513590191491e-05, -0.024273360148072243, -0.0063820453360676765, -0.03351585566997528, 0.02169625461101532, 0.02053588442504406, -0.010652483440935612, -0.019604887813329697, -0.011387835256755352, -0.015273732133209705, -0.010969561524689198, 0.0028503320645540953, -0.004702204372733831, -0.01628568395972252, 0.04323059692978859, 0.005764754489064217, -0.02761954814195633, -0.0017093559727072716, -0.022789163514971733, 0.019685843959450722, 0.025878991931676865, 0.006854289676994085, 0.000343009625794366, -0.033947624266147614, 0.03238246962428093, 0.015071341767907143, -0.001350112957879901, -0.01659601554274559, -0.01612377166748047, 0.007751553785055876, 0.00656756991520524, -0.03432541713118553, -0.026823479682207108, -0.026877449825406075, -0.006132430396974087, 0.019119150936603546, 0.02482656016945839, -0.018323080614209175, -0.015584063716232777, 0.016663480550050735, -0.019631871953606606, -0.006257237866520882, 0.004638114478439093, -0.021412909030914307, -0.010625498369336128, 0.011050517670810223, -0.013789535500109196, 0.01673094369471073, -0.016474582254886627, -0.010652483440935612, -0.0011477224761620164, -0.02216850034892559, 0.01496339961886406, -0.011286640539765358, -0.0038724038749933243, 0.009249242953956127, 0.0030712748412042856, 0.007076919078826904, -0.02909025363624096, -0.02088669314980507, 0.02367968112230301, -0.015138804912567139, 0.01741907000541687, -0.013600638136267662, -0.012048977427184582, 0.00489447545260191, -0.014895936474204063, 0.029845843091607094, -0.003956733271479607, -0.006904887035489082, -0.0020154714584350586, -0.003788074478507042, 0.00986316055059433, 0.003300650743767619, -0.03964154049754143, 0.007994422689080238, 0.003960106521844864, -0.030790332704782486, -0.021480372175574303, -0.005656812805682421, 0.023463798686861992, -0.0070499335415661335, -0.011974767781794071, -0.016865869984030724, -0.0274441447108984, -0.012467251159250736, 0.012143426574766636, 0.012028738856315613, -0.014922921545803547, -0.008871447294950485, -0.02299155481159687, 0.0031994555611163378, 0.011684674769639969, -0.03759065270423889, -0.026985391974449158, -0.0259869322180748, 0.001861992059275508, 0.02281614951789379, 0.015813440084457397, 0.005731022451072931, 0.016393626108765602, -0.007414236664772034, 0.0031404250767081976, -0.0027963612228631973, 0.0012194024166092277, -0.003680132795125246, 0.00510023906826973, -0.015476122498512268, 0.01043660007417202, 0.00011057686060667038, 0.03154592216014862, 0.016474582254886627, 0.02200658805668354, 0.0022009960375726223, 0.01050406415015459, 0.024408286437392235, 0.004260318819433451, -0.007441221736371517, -0.04028918966650963, 0.004853997379541397, 0.003177529899403453, 0.021291473880410194, -0.00020449867588467896, 0.02319394424557686, 0.020427942276000977, 0.03057445026934147, 0.02400350570678711, 0.002565298927947879, -0.03205864503979683, -0.0201850738376379, 0.002273519290611148, 0.005768127739429474, -0.014585604891180992, 0.017500026151537895, -0.023585231974720955, 0.008250784128904343, 0.04185434430837631, -0.005599468946456909, 0.01248749066144228, -0.013337530195713043, 0.01363436970859766, 0.0009428021148778498, 0.012453758157789707, 0.022627251222729683, 0.029333122074604034, -0.021480372175574303, 0.0029093625489622355, -0.0393986739218235, -0.005515139549970627, 0.012291845865547657, -0.0058592031709849834, 0.028847385197877884, 0.012683134526014328, 0.008061885833740234, -0.018039735034108162, 0.0027896149549633265, -0.03958757221698761, -0.008507144637405872, 0.004280557855963707, 0.0013391501270234585, 0.004351394716650248, -0.016366640105843544, -0.013438724912703037, -0.013937954790890217, 0.0003271978930570185, 0.03154592216014862, 0.014126853086054325, 0.017877822741866112, -0.03651123493909836, 0.0037847012281417847, 0.007926958613097668, -0.01709524542093277, 0.022128021344542503, 0.017351606860756874, 0.022289933636784554, -0.00221954844892025, -0.010288180783390999, 0.0047629219479858875, 0.007576148957014084, -0.009600053541362286, 0.0038285525515675545, 0.040181249380111694, 0.0061459229327738285, -0.007913466542959213, -0.001971620135009289, 0.014814980328083038, -0.008041647262871265, -0.0030780213419348, -0.038049403578042984, -0.0037475964054465294, 0.01274385116994381, -0.011273147538304329, -0.000298947561532259, 0.03346188738942146, -0.03216658905148506, -0.014612589962780476, -0.039182789623737335, -0.010564780794084072, -0.004708950873464346, -0.013128393329679966, -0.05375489965081215, -0.006901514250785112, 0.0029093625489622355, 0.04638788849115372, 0.007191607262939215, 0.01470703911036253, -0.00042249003308825195, -0.009262735955417156, -0.04941025376319885, -0.004317662678658962, 0.002386520616710186, 0.01611027866601944, -0.01971282996237278, 0.007110650651156902, 0.03073636256158352, 0.003990464843809605, -0.014680053107440472, 0.004884356167167425, -0.025190863758325577, 0.03715888410806656, -0.022748686373233795, -0.01132711861282587, -0.012730359099805355, -0.006230252329260111, -0.006132430396974087, -0.011947782710194588, -0.013910969719290733, -0.0012733731418848038, -0.0001416733139194548, 0.004162496887147427, 0.03373173996806145, 0.024880532175302505, -0.022384382784366608, -0.014895936474204063, -0.005417317617684603, 0.006385418586432934, -0.02003665454685688, -0.01043660007417202, -0.02203357219696045, -0.01825561746954918, -0.009640531614422798, -0.01724366657435894, -0.005801859311759472, 0.029198193922638893, 0.015665020793676376, -0.001958127599209547, 0.021939123049378395, 0.03386666625738144, -0.02330188639461994, 0.013485949486494064, -0.0026799868792295456, -0.002879003994166851, -0.035404834896326065, 0.0011182072339579463, 0.01207596343010664, 0.005677051842212677, 0.01774289458990097, -0.02071128785610199, 0.0018316335044801235, -0.03370475396513939, -0.010760425589978695, -0.006749721243977547, -0.005120478104799986, 0.00985641498118639, -0.015449137426912785, 0.024057477712631226, 0.002976826159283519, -0.02133195288479328, -0.013991925865411758, -0.002174010733142495, -0.014666561037302017, 0.022276440635323524, -0.01059851236641407, -0.03281423822045326, 0.002276892540976405, 0.006058220751583576, -0.002332549775019288, 0.01690634898841381, 0.0016815272392705083, 0.02350427582859993, -0.0018957237480208278, -0.0019058433827012777, -0.012217636220157146, 0.012845046818256378, -0.016960319131612778, -0.01265614852309227, -0.017540505155920982, 0.020090624690055847, -0.008561115711927414, -0.011387835256755352, -0.0033411288168281317, 0.020266029983758926, 0.020333493128418922, 0.018107198178768158, -0.02168276347219944, -0.009397663176059723, 0.0006767430459149182, 0.017958778887987137, -0.00263107568025589, -0.026364728808403015, 0.012946241535246372, 0.025541674345731735, 0.018835803493857384, -0.01642061211168766, -0.02235739678144455, -0.013897476717829704, -0.041476547718048096, -0.022262949496507645, -0.005724276416003704, 0.024286853149533272, 0.02216850034892559, 0.030817318707704544, -0.017014289274811745, 0.0364842489361763, 0.006665391847491264, 0.022775670513510704, -0.018970731645822525, 0.009579814039170742, 0.015692004933953285, 0.031114157289266586, 0.023086003959178925, 0.006439389195293188, -0.018822310492396355, 0.008318247273564339, 0.02168276347219944, -0.011704914271831512, 0.01134735718369484, -0.0005413944600149989, 0.005737768951803446, -0.015813440084457397, -0.0314919538795948, -0.016663480550050735, -0.0010448406683281064, 0.019618380814790726, 0.00844642799347639, 0.0006455411785282195, 0.002922855317592621, 0.0021335326600819826, 0.021790703758597374, -0.007441221736371517, -0.0001652855280553922, 0.0157459769397974, 0.015098326839506626, 0.03397461026906967, 0.017189694568514824, -0.007468207273632288, 0.025244833901524544, 0.007670597638934851, 0.01805322803556919, -0.016326162964105606, 0.02465115673840046, 0.011279894039034843, -0.019348526373505592, 0.018781833350658417, -0.03205864503979683, 0.004415484610944986, -0.025015458464622498, -0.00677333353087306, 0.007441221736371517, 0.022802656516432762, -0.010585020296275616, -0.02281614951789379, 0.03526990860700607, -0.008756759576499462, 0.01988823339343071, -0.004928207490593195, 0.011468791402876377, -0.012757344171404839, -0.002457357244566083, 0.0037813279777765274, -0.022546295076608658, 0.03667314723134041, -0.012878778390586376, -0.0002888280141633004, -0.002597344107925892, -0.022951075807213783, -0.013249827548861504, 0.02743065170943737, 0.013357768766582012, -0.01612377166748047, -0.009728234261274338, -0.010301673784852028, 0.003322576405480504, 0.021304966881871223, -0.03157290816307068, -0.0006775863585062325, 0.20767958462238312, 0.01857944205403328, 0.00393649423494935, 0.015597556717693806, 0.00022178619110491127, 0.0076975831761956215, -0.00016001494077499956, -0.015975352376699448, 0.001732124830596149, 0.024111447855830193, -0.017513519152998924, 0.00812934897840023, -0.014936414547264576, 0.007947198115289211, 0.018849296495318413, -0.01789131574332714, -0.007866241969168186, -0.022897105664014816, 0.009552828967571259, 0.011974767781794071, 0.006668765097856522, -0.0024877157993614674, -0.032139603048563004, -0.017527012154459953, 0.026418698951601982, -0.029683930799365044, -0.019335033372044563, -0.0028587649576365948, 0.01903819479048252, 0.010794157162308693, -0.002857078332453966, -0.0051744491793215275, 0.03378571197390556, -0.0007846846128813922, -0.05013885721564293, 0.0031960823107510805, 0.014626082964241505, -0.010510810650885105, 0.020792244002223015, -0.004712324123829603, 0.01936201937496662, -0.022789163514971733, -0.017027782276272774, -0.0013728818157687783, -0.008203559555113316, 0.024273360148072243, -0.018943745642900467, -0.005926666781306267, 0.010382629930973053, 0.021089084446430206, -0.03678109124302864, -0.030763346701860428, 0.005801859311759472, -0.011057264171540737, -0.008230544626712799, -0.005481407977640629, -0.017850836738944054, -0.001673937658779323, 0.03351585566997528, -0.010058805346488953, -0.004580770153552294, 0.02909025363624096, -0.011583480052649975, 0.013351023197174072, -0.01874135434627533, 0.003521593753248453, -0.023949535563588142, 0.001712729106657207, -0.026229800656437874, -0.016393626108765602, 0.01272361259907484, 0.00812934897840023, -0.0008411852759309113, 0.007670597638934851, -0.02118353359401226, -0.030358565971255302, -0.01157673355191946, 0.011360850185155869, 0.004857370629906654, -0.005069880746304989, 0.0005675365100614727, -0.0052081807516515255, -0.003535086289048195, 0.001969933742657304, -0.03208563104271889, -0.029009297490119934, 0.03087128885090351, -0.018943745642900467, -0.017864329740405083, -0.012642656452953815, -0.03562071919441223, -0.00038791500264778733, 0.009485365822911263, -0.0019665604922920465, -0.0058423373848199844, 0.009923878125846386, -0.01306093018501997, 0.04711649566888809, -0.0072050997987389565, 0.004209720995277166, -0.015853917226195335, 0.05043569952249527, 0.015988845378160477, -0.008500398136675358, 0.021979602053761482, -0.022262949496507645, -0.022101035341620445, 0.016987305134534836, 0.013647861778736115, -0.027309216558933258, -0.0008491965709254146, -0.012143426574766636, -0.01265614852309227, 0.0037813279777765274, 0.03383968025445938, -0.008271022699773312, -0.00201378483325243, -0.01315537840127945, 0.008972642943263054, 0.0137220723554492, 0.01050406415015459, -0.015260239131748676, -0.012264860793948174, 0.00995086319744587, -0.012629163451492786, -0.008507144637405872, -0.020481912419199944, 0.009141301736235619, 0.0054949005134403706, -0.0058895619586110115, 0.006685630884021521, -0.05154209956526756, 0.008763506077229977, -0.010045312345027924, -0.007906720042228699, -0.006915006786584854, 0.014464170671999454, -0.012129933573305607, -0.03502703830599785, 0.027484621852636337, -0.00846666656434536, 0.008453174494206905, -0.012777583673596382, 0.004057928454130888, -0.004088286776095629, -0.011286640539765358, -0.005761381238698959, 0.01771591044962406, 0.009755219332873821, 0.0014074568171054125, -0.01724366657435894, -0.007124143652617931, -0.007211846299469471, -0.02909025363624096, -0.005488154012709856, -0.04201625660061836, -0.00028166003176011145, -0.03106018714606762, 0.017135724425315857, 0.0031960823107510805, -0.03197769075632095, 0.009822682477533817, -0.011785870417952538, -0.012224382720887661, -0.03446034714579582, -0.01594836637377739, -0.16903649270534515, 0.0042873043566942215, 0.0015137118753045797, -0.023382842540740967, 0.019267570227384567, -0.014787995256483555, 0.019847756251692772, -0.0016773107927292585, -0.01157673355191946, -0.0015761156100779772, 0.00023042995599098504, -0.019942205399274826, -0.01643410325050354, -0.0054476759396493435, -0.023099495097994804, -0.0031033200211822987, -0.012777583673596382, 0.01875484734773636, 0.0456862673163414, 0.03054746426641941, 0.03856212645769119, -0.011711659841239452, 0.03319203108549118, 0.013364515267312527, -0.002808167366310954, -0.005791740026324987, -0.0038892696611583233, -0.003707118332386017, 0.0026057770010083914, -0.025514688342809677, 0.027201276272535324, 0.00879049114882946, 0.01627219095826149, -0.020427942276000977, -0.012116441503167152, -0.005167702678591013, 0.00743447570130229, -0.0034777424298226833, 0.013485949486494064, -0.02281614951789379, 0.0005085059674456716, 0.047413334250450134, -0.018862789496779442, -0.007846002466976643, -0.014396706596016884, 0.021966109052300453, 0.013398246839642525, -0.029872829094529152, 0.0007994422339834273, -0.04142257571220398, 0.009957609698176384, -0.02446225844323635, -0.0016730943461880088, -3.3573622204130515e-05, 0.05785668268799782, -0.005849083885550499, -0.011333865113556385, 0.009492111392319202, 0.0036025498993694782, 0.005029402673244476, -0.005589349195361137, -0.024543214589357376, 0.03025062382221222, 0.022451845929026604, -0.006857662927359343, -0.01223787572234869, -0.006921753287315369, -0.007711075711995363, -0.0342174768447876, 0.0020441433880478144, 0.018943745642900467, -0.007562655955553055, 0.006007622927427292, 0.019119150936603546, -0.002197622787207365, 0.04109875112771988, -0.0021301594097167253, 0.002830093028023839, -0.01871437020599842, -0.01577296108007431, -0.034406375139951706, 0.03929072991013527, 0.015152297914028168, -0.007353519555181265, -0.001087848679162562, 0.0015322642866522074, -0.002001978689804673, 0.00427718460559845, -0.01972632110118866, -0.011198937892913818, 0.008756759576499462, -0.04287979006767273, -0.0014023970579728484, 0.0048034000210464, 0.014599096961319447, 0.01536818128079176, 0.00318090314976871, -0.01658252440392971, 0.03586358577013016, -0.02973790280520916, -0.020738273859024048, -0.0015980411553755403, -0.0036666402593255043, -0.01957790181040764, 0.028685471042990685, 0.007178114261478186, -0.03008871152997017, 0.010173493064939976, 0.03267930820584297, -0.0016031009145081043, -0.019672350957989693, 0.0063348207622766495, 0.010585020296275616, 0.03526990860700607, -0.0034389509819447994, 0.013351023197174072, -0.002293758327141404, -0.006210013292729855, 0.03197769075632095, -0.0029481539968401194, 0.031114157289266586, 0.010760425589978695, 0.008271022699773312, 0.00542406365275383, 0.010456839576363564, 0.009154794737696648, -0.09374725073575974, -0.0522976890206337, -0.02069779671728611, -0.0015811753692105412, 0.005960398353636265, 0.0028267197776585817, -0.02088669314980507, 0.017796866595745087, -0.0030729614663869143, 0.03006172738969326, -0.014841965399682522, -0.010470332577824593, 0.018336573615670204, 0.02774098329246044, 0.0031303055584430695, -0.001352642779238522, -0.01922709122300148, 0.010321912355720997, -0.015611049719154835, 0.03335394337773323, 0.009019867517054081, 0.0010507437400519848, 0.01313513983041048, -0.0007189077441580594, -0.00686440896242857, 0.0057343957014381886, -0.020967649295926094, 0.0071848607622087, 4.031996923004044e-06, 0.02166927047073841, 0.03451431542634964, 0.0003347875317558646, 0.006608047988265753, -0.01644759625196457, 0.005440929904580116, 0.016137264668941498, -0.010564780794084072, -0.024219390004873276, 0.029387092217803, -0.001685743685811758, -0.005987383890897036, -0.01430225744843483, -0.004668472800403833, -0.0030611553229391575, 0.0007665537996217608, -0.018849296495318413, -0.02811877802014351, 0.006166161969304085, 0.007953944616019726, -0.00583559088408947, -0.04398619011044502, -0.008324993774294853, -0.040828898549079895, -0.013897476717829704, 0.01132711861282587, -0.01907867193222046, 0.008594847284257412, -0.022546295076608658, 0.005737768951803446, -0.0013914343435317278, -0.02662109024822712, 0.02334236353635788, -0.01906517893075943, 0.00814284197986126, 0.0013838446466252208, 0.0007606507278978825, -0.03265232592821121, 0.011313625611364841, 0.017634954303503036, -0.03238246962428093, 0.020630331709980965, 0.028793413192033768, 0.00034511787816882133, 0.024192404001951218, -0.01969933696091175, 0.016042815521359444, -0.016515059396624565, 0.005774873774498701, 0.014275272376835346, 0.014720531180500984, -0.013263320550322533, -0.0036329084541648626, -0.016690464690327644, -0.027187783271074295, 0.01306093018501997, 0.02431383915245533, 0.0020593227818608284, -0.0004886885872110724, 0.013776042498648167, -0.019186614081263542, 0.0018788579618558288, 0.009593307040631771, 0.03915580362081528, -0.0284156184643507, 0.0031303055584430695, -0.002007038565352559, 0.00587944220751524, 0.0035148472525179386, 0.014275272376835346, 0.012588685378432274, -0.0561835877597332, -0.016690464690327644, -0.0453624427318573, 0.018336573615670204, 0.0020475166384130716, -0.021412909030914307, 0.020104117691516876, -0.024273360148072243, 0.012089455500245094, -0.003919628448784351, -0.0017844090471044183, -0.019496945664286613, -0.028388632461428642, 0.003074648091569543, 0.015071341767907143, -0.003371487371623516, -0.006749721243977547, -0.04498464986681938, 0.0043379017151892185, -0.016218220815062523, 0.013964940793812275, 0.007420982699841261, 0.012662895023822784, -0.0018603054340928793, 0.03910183161497116, -0.029656946659088135, -0.007839256897568703, 0.007501938845962286, -0.013580398634076118, 0.014653068035840988, -0.020454926416277885, -0.019173121079802513, -0.003518220502883196, -0.005754634737968445, -0.009417901746928692, 0.0437433198094368, 0.005144090391695499, 0.01379628200083971, -0.021939123049378395, 0.0157459769397974, 0.0157459769397974, -0.004961939062923193, -0.009600053541362286, -0.021777210757136345, 0.020481912419199944, -0.02184467576444149, 0.011657689698040485, -0.017796866595745087, -0.0003202407096978277, -0.0006611421122215688, -0.0005936786183156073, 0.010564780794084072, 0.03502703830599785, 0.014990385621786118, -0.04654980078339577, 0.003106693271547556, 0.028847385197877884, -0.05146114155650139, 0.018120691180229187, -0.038508154451847076, -0.02037397027015686, 0.011806108988821507, 0.05634550005197525, 0.010072297416627407, 0.028145764023065567, -0.007157875224947929, 0.0033360691741108894, -0.03321901708841324, -0.021143054589629173, 0.011462044902145863, 0.019496945664286613, -0.011158459819853306, -0.006223506294190884, -0.019685843959450722, 0.024421779438853264, -0.020765259861946106, 0.04984201863408089, 0.013641116209328175, 0.0016899601323530078, -0.011408074758946896, 0.0009444887400604784, 0.029522018507122993, 0.02249232493340969, 0.0035789376124739647, -0.016312669962644577, 0.028685471042990685, 0.029980771243572235, 0.011286640539765358, -0.008992881514132023, 4.725078906631097e-05, -0.009208764880895615, 0.004675219301134348, 0.005535378586500883, 0.005356600508093834, -0.024232883006334305, 0.0012067529605701566, -0.013344276696443558, 0.02989981509745121, -0.00014093542995397002, 0.006678884383291006, 0.013391501270234585, 0.014882443472743034, 0.013587145134806633, 0.0028317796532064676, -0.024448765441775322, 0.0018805444706231356, -0.04579421132802963, 0.003290531225502491, 0.015260239131748676, -0.040181249380111694, -0.012271607294678688, 0.034919098019599915, 0.0010001461487263441, 0.022910598665475845, 0.008527384139597416, 0.003858911106362939, -0.033596813678741455, -0.007299548480659723, 0.007738061249256134, -0.0007893227157182992, -0.009013121016323566, 0.011340610682964325, 0.012177158147096634, -0.008864701725542545, 0.03270629420876503, -0.0009841235587373376, -0.0036598937585949898, 0.024718619883060455, 0.021966109052300453, 0.004897848702967167, -0.00398034555837512, 0.01454512681812048, -0.012507729232311249, -0.020900186151266098, -0.01575946994125843, -0.030925258994102478, -0.014153838157653809, -0.02779495343565941, 0.01658252440392971, -0.026040904223918915, -0.006915006786584854, 0.06859686970710754, 0.004020823631435633, -0.002089681336656213, -0.0016773107927292585, -0.01905168779194355, 0.01625869795680046, 0.04090985283255577, 0.025568658486008644, 0.0017894688062369823, -0.02890135534107685, -0.008405949920415878, 0.009721487760543823, 9.903428144752979e-05, -0.03643028065562248, -0.014261779375374317, 0.008190066553652287, -0.023720160126686096, -0.007313041482120752, -0.03133004158735275, 0.02149386517703533, 0.03599851205945015, 0.010807649232447147, 0.016339654102921486, -0.008439681492745876, -0.001931142178364098, 0.008426188491284847, -0.017297636717557907, -0.0025771050713956356, -0.04422905668616295, -0.02183118276298046, 0.0020053519401699305, -0.0032618592958897352, -0.03354284167289734, -0.006183028221130371, 0.007549163419753313, 0.0038656573742628098, -0.01052430272102356, 0.0020812484435737133, 0.024772590026259422, -0.016555538401007652, -0.021561328321695328, 0.015233254060149193, 0.0013315604301169515, -0.025892483070492744, -0.02612186037003994, 0.014315750449895859, -0.011657689698040485, -0.022060558199882507, -0.05850433185696602], "1146c533-2788-4aa9-a68e-2f129677a095": [-0.007843559607863426, -0.007918130606412888, 0.005799624137580395, 0.000179119742824696, -0.02513735368847847, 0.007945247925817966, -0.00996545609086752, -0.021517248824238777, 0.007992702536284924, -0.020554600283503532, 0.018453041091561317, 0.007572390604764223, 0.0110026765614748, 0.025313613936305046, -0.011619585566222668, 0.010155273601412773, 0.0030404808931052685, -0.01149755995720625, -0.0027557534631341696, 0.01143654715269804, 0.015632884576916695, 0.01069761160761118, -0.005491169635206461, -0.030831899493932724, -0.010060364380478859, 0.012860183604061604, 0.03121153637766838, -0.017178546637296677, -0.002793039195239544, -0.019388573244214058, 0.03793652355670929, -0.022371431812644005, -0.025178028270602226, -0.009484130889177322, -0.02360524982213974, -0.005430156365036964, -0.01652774214744568, -0.029909925535321236, 0.012514443136751652, 0.015551534481346607, 0.008352001197636127, 0.0042607407085597515, 0.00018420415290165693, 0.01043322216719389, -0.007707974873483181, 0.03251314535737038, 0.011300962418317795, -0.02553054876625538, -0.011300962418317795, 0.006663974840193987, 0.026981301605701447, 0.06041642278432846, -0.018181871622800827, -0.008948571979999542, -0.0013372014509513974, -0.001671078149229288, 0.007877455092966557, 0.012514443136751652, -0.0015278670471161604, -0.006264000665396452, 0.004894597921520472, -0.0029201495926827192, 0.0018083573086187243, 0.0026506755966693163, -0.023713717237114906, 0.010189170017838478, 0.0159989632666111, 0.0021100325975567102, -0.0030726820696145296, 0.00761984521523118, 0.03405880928039551, 0.03994317352771759, 0.003140474436804652, 0.00586741603910923, 0.013910962268710136, -0.019185196608304977, -0.015280365012586117, 0.022439222782850266, -0.01759885996580124, 0.001101623522117734, 0.0004003977810498327, -0.017653092741966248, -0.022642599418759346, 0.024920418858528137, 0.015782028436660767, 0.010948442853987217, -0.02920488640666008, 0.009111274033784866, -0.0021608767565339804, -0.0016939579509198666, 0.011090806685388088, 0.024839067831635475, 0.004640377126634121, 0.02186976931989193, -0.01659553498029709, 0.028716782107949257, -0.015063430182635784, 0.029720107093453407, -0.004711559042334557, -0.012812728993594646, 0.003945507109165192, 0.0313200019299984, -0.02474415861070156, -0.016920937225222588, -0.015470183454453945, 0.0015465099131688476, -0.005558961536735296, -0.005447104573249817, 0.020554600283503532, -0.003013364039361477, -0.026642341166734695, 0.04127189889550209, 0.008250312879681587, -0.03286566585302353, 0.020378340035676956, -0.018100520595908165, 0.001889707986265421, -0.014493975788354874, -0.009518027305603027, -0.0018439482664689422, -0.0012033118400722742, 0.005897922907024622, 0.013938079588115215, -0.008311325684189796, 0.017436157912015915, -0.022561248391866684, -0.0054708318784832954, 0.005196273326873779, -0.03508925065398216, -0.03240467980504036, 0.006416533142328262, 0.02828291244804859, 0.01443974208086729, -0.000529202981851995, -0.018046287819743156, 0.01713787205517292, -0.02680504135787487, 0.017680209130048752, -0.023673040792346, -0.03761111944913864, 0.01754462532699108, 0.01004002708941698, -0.006447039544582367, 0.010934884659945965, -0.015117663890123367, 0.007965585216879845, 0.004640377126634121, 0.02814732864499092, -0.00013007631059736013, -0.0040404158644378185, -0.00596910435706377, 0.008670624345541, -0.0044437795877456665, -0.006162312347441912, 0.0008410471491515636, 0.02386285923421383, -0.021259639412164688, 0.00639958493411541, 0.0014168573543429375, -0.013022884726524353, 0.01974109373986721, 0.046912211924791336, -0.0216799508780241, -0.0009329903405159712, -0.012405975721776485, 0.030913250520825386, -0.0033184289932250977, 0.008718078956007957, -0.023618808016180992, 0.0034285911824554205, 0.01186363771557808, 0.014182131737470627, -0.027564315125346184, 0.01753106713294983, -0.002506617223843932, -0.003308260114863515, 0.00471494859084487, 0.015985405072569847, -0.027049094438552856, -0.01640571653842926, -0.0019202145049348474, -0.016500625759363174, 0.003813312156125903, 0.04029569402337074, -0.022113820537924767, 0.003955675754696131, 0.017897143959999084, 0.01173483207821846, 0.016432832926511765, 0.03395034000277519, 0.0016753150848671794, 0.04607158899307251, -0.0044878446497023106, 0.00043471757089719176, -0.6113230586051941, 0.0014897339278832078, 0.0014210942899808288, -0.046641044318675995, 0.008623169735074043, 0.01327371597290039, 0.016758235171437263, -0.010745066218078136, -0.02227652259171009, 0.022032469511032104, -0.008684182539582253, 0.009118053130805492, 0.011761949397623539, 0.005362363997846842, 0.005891143344342709, -0.020785093307495117, 0.03395034000277519, -0.030913250520825386, -0.005684377159923315, 0.022751066833734512, 0.012480546720325947, 0.014887170866131783, -0.013151689432561398, 0.00623688381165266, -0.003704844508320093, 0.010385767556726933, -0.02227652259171009, -0.02353745698928833, 0.015212573111057281, 0.028554081916809082, -0.01848015747964382, 0.0024744158145040274, 0.00883332546800375, -0.017910704016685486, 0.041515953838825226, -0.0013922826619818807, -0.006318234372884035, 0.021313872188329697, 0.027171120047569275, 0.022154495120048523, -0.013626235537230968, 0.005972494371235371, 0.03047938086092472, 0.005064078606665134, 0.01826322264969349, -0.01740904152393341, -0.018575066700577736, 0.014100780710577965, -0.024581456556916237, -0.008785870857536793, -0.009823092259466648, 0.015117663890123367, -0.009192624129354954, -0.01913096383213997, 0.013910962268710136, -0.022791743278503418, 0.030235327780246735, -0.000835539074614644, 0.0008359627681784332, 0.009355325251817703, 0.02866254933178425, 0.04900021478533745, -0.009192624129354954, -0.00979597494006157, -0.0025862730108201504, 0.005542013794183731, -0.02866254933178425, 0.004870870616286993, -0.009233299642801285, -0.017748001962900162, 0.021951118484139442, -0.005830130539834499, -0.009538364596664906, 0.004091260023415089, 0.0009177371393889189, 0.0433327853679657, 0.022357871755957603, -0.021354548633098602, 0.007369013968855143, 0.0007694416563026607, 0.019483482465147972, -0.0006211461732164025, -0.01885979436337948, 0.011219611391425133, 0.04566483572125435, 0.012860183604061604, -0.009355325251817703, 0.003582818666473031, 0.03053361363708973, -0.00498272804543376, 0.0014448215952143073, 0.00973496213555336, -0.02365948259830475, -0.055047277361154556, 0.0063317930325865746, 0.02901506796479225, -0.029855690896511078, 0.009640052914619446, 0.02073085866868496, -0.025028886273503304, -0.00406753271818161, -0.01496852096170187, -0.021883327513933182, 0.016365040093660355, 0.032296210527420044, 0.021815534681081772, 0.0018202209612354636, 0.030506497249007225, 0.026723690330982208, -0.030750548467040062, -0.0020117340609431267, -0.045230966061353683, 0.008779091760516167, 0.0223307553678751, -0.02961163967847824, -0.030886134132742882, 0.021286755800247192, 0.002599831437692046, 0.01606675423681736, -0.00179988332092762, 0.030289562419056892, -0.007131740916520357, -0.01952415704727173, 0.002001565182581544, 0.017029404640197754, 0.006535169668495655, 0.005375922657549381, 0.0026150846388190985, -0.023184938356280327, 0.013219482265412807, 0.0008406234555877745, -0.0013329643988981843, -0.0037251822650432587, -0.015917612239718437, 0.013138131238520145, -0.00561658525839448, -0.0036743381060659885, -0.008019818924367428, 0.007707974873483181, -0.00523355882614851, 0.01247376762330532, 0.009518027305603027, 0.028120210394263268, -0.023523898795247078, -0.007646962068974972, -0.02772701531648636, -0.02294088527560234, -0.016188781708478928, -0.01030441652983427, -0.019442807883024216, 0.007124961819499731, -0.002854052232578397, -0.013036442920565605, 0.034682497382164, -0.007755429483950138, -0.01974109373986721, 0.0006622452056035399, 0.009599377401173115, -0.011260286904871464, -0.02246634103357792, 0.0011541624553501606, 0.03085901588201523, -0.023022236302495003, 0.008440130390226841, -0.004592922516167164, 0.019686859101057053, -0.012250053696334362, 0.026425406336784363, 0.006599572021514177, -0.03975335508584976, 0.011395871639251709, 0.001566000166349113, 0.008182520046830177, -0.01739548332989216, 0.00010878532339120284, 0.028310028836131096, -0.020296989008784294, -0.0046268184669315815, -0.005914870649576187, -0.006267390213906765, -0.0015380359254777431, 0.022900210693478584, -0.00041268509812653065, -0.01574135199189186, 0.01073828712105751, 0.009829871356487274, 0.023510340601205826, -0.0025337340775877237, -0.030967483296990395, 0.01826322264969349, 0.033163949847221375, 0.031780991703271866, -0.029909925535321236, 0.008975689299404621, -0.003484519897028804, 0.010819637216627598, -0.009023143909871578, 0.03739418461918831, 0.048701927065849304, 0.04016010835766792, 0.017951378598809242, -0.022574808448553085, 0.009077377617359161, -0.012256832793354988, 0.017585299909114838, -0.030723432078957558, 0.016568416729569435, 0.005799624137580395, 0.02319849655032158, -0.0025981366634368896, 0.013368625193834305, 0.0159989632666111, -0.0024896690156310797, -0.0326758474111557, 0.02220872975885868, 0.013212703168392181, -0.00645042909309268, 0.018032729625701904, -0.01307033933699131, -0.017639534547924995, -0.024581456556916237, 0.015985405072569847, 0.017124313861131668, 0.0073215593583881855, 0.006416533142328262, -0.0058402991853654385, 0.015144781209528446, -0.03140135481953621, -0.009450234472751617, -0.03454691171646118, -0.005650481209158897, 0.00719953328371048, 0.007131740916520357, -0.011226390488445759, 0.039373718202114105, 0.0032031822483986616, 0.04840364307165146, 0.0021185067016631365, 0.00428446801379323, 0.012222936376929283, 0.013043222017586231, 0.023171378299593925, 0.00803337711840868, -0.009314650669693947, 0.004155662842094898, 0.014209248125553131, 0.0400245226919651, -0.0008507922757416964, 0.0038505978882312775, 0.0073215593583881855, 0.008853663690388203, 0.0032370781991630793, -0.016704002395272255, 0.009579040110111237, 0.01203989703208208, 0.009490909986197948, 0.004114987328648567, 0.015158339403569698, 0.01820898987352848, 0.008853663690388203, -0.003704844508320093, -0.001577016431838274, -0.023428989574313164, 0.017300574108958244, 0.008724858053028584, -0.018371690064668655, 0.007552052848041058, -0.03574005514383316, -0.010717948898673058, 0.034167274832725525, -0.02280530147254467, 0.0005817419732920825, -0.02620846964418888, 0.010250182822346687, 0.01519901491701603, 0.007450364530086517, 0.0156735610216856, 0.0074639227241277695, 0.015307482331991196, 0.0001570872700540349, -0.012731377966701984, -0.024161145091056824, 0.018019171431660652, 0.028418496251106262, -0.022913768887519836, -0.011477221734821796, -0.03907543420791626, 0.006975818891078234, -0.00730122160166502, 0.020120728760957718, -0.028255796059966087, 0.024771274998784065, 0.013782157562673092, -0.006413143593817949, -0.01681246981024742, 0.014846495352685452, 0.013036442920565605, -0.00873163715004921, 0.001745649497024715, -0.010595923289656639, 0.012222936376929283, -0.004420052282512188, -0.020703742280602455, 0.00161345477681607, 0.05019335448741913, 0.002657454926520586, 0.012826287187635899, -0.007958806119859219, -0.018493715673685074, -0.00993833877146244, -0.0034252016339451075, -0.01686670258641243, -0.01759885996580124, -0.013992313295602798, 0.02620846964418888, -0.023889977484941483, 0.0034692666959017515, 0.013022884726524353, 0.03294701501727104, -0.022384990006685257, -0.020039379596710205, -0.011056910268962383, -0.02939470484852791, 0.0028320197016000748, 0.04674950987100601, 0.04300738126039505, -0.02874389849603176, 0.007111403159797192, -0.0313471220433712, -0.03915678337216377, -0.004375987686216831, -0.030994601547718048, 0.0346553809940815, 0.004145493730902672, -0.019686859101057053, -0.006562286522239447, 0.015104105696082115, -0.017151430249214172, -0.008609611541032791, 0.020283430814743042, -0.009280754253268242, -0.019158080220222473, 0.006538559217005968, -0.05087127909064293, 0.00601994851604104, -0.010684053413569927, 0.03446556255221367, 0.013016105629503727, 0.004636987578123808, 0.012060235254466534, 0.018981819972395897, 0.0052877929992973804, -0.0033641885966062546, 0.0028387990314513445, -0.010643377900123596, 0.0260050930082798, 0.013531326316297054, 0.013341507874429226, -0.034167274832725525, 0.00787067599594593, 0.009931559674441814, 0.012751715257763863, -0.014493975788354874, -0.011951767839491367, 0.02454078197479248, 0.04189559072256088, 0.011145040392875671, 0.006816507317125797, 0.031780991703271866, 0.0033540199510753155, -0.018181871622800827, 0.01243309210985899, -0.012209378182888031, -0.03622816130518913, 0.01725989766418934, -0.019903793931007385, -0.035170599818229675, -0.011687377467751503, 0.030831899493932724, -0.00322690955363214, 0.0002887524606194347, -0.020554600283503532, -0.014141456224024296, -0.010873870924115181, -0.016175221651792526, -0.02540852315723896, 0.010006130672991276, -0.024757716804742813, 0.003606545738875866, 0.009484130889177322, 0.012446650303900242, 0.008541818708181381, -0.01841236650943756, 0.011145040392875671, 0.012751715257763863, 0.0040370263159275055, -0.012995767407119274, -0.045583486557006836, 0.003167591290548444, 0.019903793931007385, 0.014507533982396126, -0.013707585632801056, -0.014588885009288788, -0.010962001048028469, -0.02139522321522236, -0.039102550595998764, -0.03771958872675896, -0.017992053180933, -0.018710650503635406, 0.02534073032438755, 0.021490132436156273, -0.021924002096056938, -0.016392158344388008, 0.021883327513933182, 0.017680209130048752, 0.004535299260169268, -0.007165637332946062, -0.011850079521536827, -0.02153080701828003, 0.02426961250603199, 0.015321040526032448, 0.017856469377875328, -0.001982922200113535, -0.02294088527560234, 0.012046677060425282, -0.003704844508320093, 0.006901247426867485, -0.012121248058974743, -0.0042166756466031075, -0.0030794613994657993, -0.003881104290485382, 0.015971845015883446, -0.013694027438759804, -0.005158987361937761, 0.010555247776210308, -0.006521611008793116, 0.015700677409768105, 0.012568676844239235, 0.012514443136751652, -0.0313471220433712, -0.028391379863023758, 0.005403039511293173, -0.002250701654702425, 0.017897143959999084, 0.015158339403569698, -0.02013428881764412, 0.008128286339342594, 0.008223195560276508, -0.02733382023870945, 0.0183310154825449, -0.0007787630893290043, -0.014087222516536713, -0.004189558792859316, -0.010595923289656639, 0.025178028270602226, 0.01123317051678896, -0.004636987578123808, -0.007165637332946062, 0.011199274100363255, -0.0013261851854622364, 0.0020354613661766052, 0.01396519597619772, -0.020351223647594452, 0.012304287403821945, 0.005321688950061798, 0.02326628752052784, 0.016893820837140083, -0.013633014634251595, -0.008474026806652546, -0.03012686036527157, -0.03305548429489136, 0.013646572828292847, 0.04040415957570076, 0.032431796193122864, 0.01853439211845398, -0.006572455167770386, -0.0028387990314513445, -0.005101364105939865, 0.001911740517243743, -0.013910962268710136, -0.030181095004081726, 0.009775637648999691, 0.02721179462969303, 0.006050455383956432, 0.023917093873023987, 0.008921455591917038, 0.03351647034287453, 0.020459691062569618, -0.010724727995693684, 0.014616001397371292, 0.012405975721776485, -0.008623169735074043, -0.033570703119039536, -0.014263481833040714, 0.003006584709510207, 0.016378598287701607, -0.011985663324594498, 0.008223195560276508, 0.023835742846131325, 0.05922327935695648, -0.002055798890069127, 0.017503950744867325, -0.003484519897028804, -0.012297507375478745, -0.01580914482474327, 0.008216416463255882, -0.009253636933863163, 0.018032729625701904, -0.012283949181437492, -0.0028201560489833355, -0.0020642729941755533, -0.0034574030432850122, 0.030886134132742882, 0.00630128663033247, 0.003250636626034975, 0.01403298880904913, 0.008345222100615501, -0.0003972200211137533, 0.018588624894618988, -0.02341543138027191, 0.007274104747921228, -0.04224810749292374, 0.00793846882879734, 0.008528260514140129, -0.02285953424870968, 0.008582494221627712, -0.00913839042186737, 0.017015846446156502, -0.026438964530825615, 0.007646962068974972, -0.0048471433110535145, -0.012609352357685566, -0.005775896832346916, -0.01953771710395813, -0.00953158549964428, -0.03346223756670952, -0.04975948482751846, -0.014860053546726704, -0.006752104498445988, 0.044905561953783035, -0.01349742989987135, 0.01913096383213997, -0.014616001397371292, -0.012155144475400448, -0.00761984521523118, -0.011748391203582287, 0.04406493902206421, 0.007131740916520357, 0.014182131737470627, 0.02081220969557762, 0.0006152143469080329, -0.018181871622800827, 0.028771016746759415, 0.005196273326873779, 0.0035082472022622824, 0.013402520678937435, 0.006443649996072054, -0.02852696366608143, -0.005904702004045248, 0.0028998120687901974, 0.0006431786459870636, 0.0014677015133202076, -0.029286237433552742, 0.022778185084462166, 0.010555247776210308, -0.011660261079668999, -0.006362299434840679, 0.01126706600189209, -0.03351647034287453, -0.010521351359784603, -0.03007262572646141, 0.001580405980348587, 0.004613260272890329, -0.008243533782660961, -0.029448937624692917, 0.014521092176437378, 0.00396584440022707, 0.030235327780246735, -0.016839586198329926, 0.01848015747964382, -0.022696834057569504, -0.016907379031181335, -0.006155533250421286, 0.013924521394073963, -0.004460727795958519, 0.029584523290395737, -0.026750808581709862, -0.009179065935313702, 0.01666332595050335, -0.0027557534631341696, -0.0010897598695009947, -0.014643118716776371, -0.019768210127949715, 0.02607288584113121, -0.01517189759761095, -0.01660909317433834, -0.009124832227826118, 0.010880650952458382, 0.00033535962575115263, -0.0014516008086502552, -0.006389416288584471, -0.013592339120805264, 0.01400587148964405, -0.0014024514239281416, 0.006660585291683674, -0.004514961503446102, 0.01460244320333004, -0.010094260796904564, -0.005206441972404718, -0.0059216502122581005, -0.01914452202618122, -0.0013312696246430278, -0.005362363997846842, -0.029909925535321236, -0.00021089734218548983, -0.004165831487625837, -0.0026760976761579514, 0.012121248058974743, 0.0022185002453625202, -0.019103845581412315, -0.0013372014509513974, 0.040431275963783264, -0.03592987358570099, 0.0040743122808635235, 0.009443455375730991, 0.0024134027771651745, -0.039834704250097275, 0.005596247501671314, 0.021151171997189522, -0.0042980266734957695, 0.02393065206706524, -0.010446780361235142, -0.0072808838449418545, -0.011619585566222668, -0.00596910435706377, 0.03487231582403183, -0.01979532651603222, -0.013558442704379559, 0.015754910185933113, -0.00044869972043670714, 0.007816442288458347, -0.027455847710371017, -0.01879200153052807, -0.0005783523083664477, -0.014304157346487045, 0.0076944162137806416, 0.012941533699631691, -0.017897143959999084, -0.003748909570276737, -0.01753106713294983, -0.021788418292999268, 0.004213286098092794, -0.014561767689883709, 0.0021981624886393547, 0.014155014418065548, -0.009484130889177322, -0.0004082362574990839, -0.007314779795706272, -0.029232002794742584, 0.001630402752198279, -0.002152402885258198, 0.009782416746020317, -0.02574748359620571, 0.0044844551011919975, -0.0083384420722723, 0.022574808448553085, -0.014995638281106949, 0.008968910202383995, -0.018222548067569733, -0.007965585216879845, -0.006277559325098991, -0.0005546250613406301, -0.015687119215726852, -0.013897404074668884, -0.0007169026648625731, 0.01933434046804905, 0.03142847120761871, -0.023645924404263496, -0.013694027438759804, -0.005057299043983221, -0.04555637016892433, -0.03771958872675896, 0.014195689931511879, 0.008684182539582253, 0.04327854886651039, 0.026452522724866867, -0.01674467697739601, 0.04346836730837822, 0.020622391253709793, 0.026100002229213715, -0.011694157496094704, 0.0007618149975314736, -0.01327371597290039, 0.02561189979314804, -0.01572779379785061, 0.004057364072650671, -0.031699638813734055, 0.005548792891204357, -0.010846754536032677, -0.01496852096170187, 0.00740290991961956, 0.01861574314534664, 0.006840234622359276, -0.014087222516536713, -0.017124313861131668, 0.010229845531284809, 0.006230104714632034, 0.008785870857536793, 0.0007156315841712058, -0.018751326948404312, 0.009592598304152489, 0.005796234589070082, 0.042492158710956573, -0.026425406336784363, 0.0009448539931327105, 0.009416338987648487, 0.013456754386425018, 0.023496782407164574, -0.01380249485373497, -0.0015795585932210088, 0.020161405205726624, -0.016310807317495346, 0.03405880928039551, 0.0075045982375741005, 0.018710650503635406, 0.02280530147254467, -0.0005372533341869712, 0.030750548467040062, -0.027252471074461937, -0.002249006647616625, -0.03812634199857712, -0.043115850538015366, -0.0007003783248364925, 0.0034472341649234295, -0.008026598021388054, -0.03527906909584999, 0.03362493962049484, -0.014249923638999462, 0.009389221668243408, 0.002033766359090805, 0.016514183953404427, -0.013144910335540771, 0.007613065652549267, 0.015768468379974365, -0.03405880928039551, 0.015836261212825775, -0.008894338272511959, -0.010541689582169056, -0.025028886273503304, -0.03012686036527157, 0.0032675848342478275, 0.0005635228008031845, 0.015849819406867027, -0.029692990705370903, 0.009958676062524319, -0.014629559591412544, 0.003887883620336652, 0.014534651301801205, -0.01601252146065235, -0.015510858967900276, 0.19122828543186188, 0.017083637416362762, 0.01926654763519764, 0.02127319760620594, -0.0025506820529699326, -0.026289820671081543, 0.03522483631968498, -0.009823092259466648, -0.006969039794057608, 0.019293664023280144, -0.016188781708478928, -0.009646832011640072, -0.012873741798102856, 0.007802884094417095, 0.00924007873982191, -0.01190431322902441, -0.03552312031388283, -0.03273008018732071, 0.0028743899893015623, 0.0015939644072204828, 0.003877714741975069, 0.0023032405879348516, -0.02920488640666008, -0.0048912083730101585, 0.03080478310585022, -0.0007474091835319996, -0.026506755501031876, 0.028554081916809082, 0.022818859666585922, 0.022778185084462166, -0.028825249522924423, 0.00317437038756907, 0.024961093440651894, -0.011924650520086288, -0.04585465416312218, 0.006264000665396452, 0.014358391053974628, 0.00650127325206995, 0.005053909495472908, -0.012304287403821945, 0.016148105263710022, -0.03319106996059418, -0.0005423377151601017, -0.010514572262763977, -0.0006211461732164025, 0.0017346333479508758, -0.02481195144355297, -0.0035455329343676567, -0.01037220936268568, 0.009782416746020317, -0.010243403725326061, -0.014249923638999462, -0.007152078673243523, 0.018290339037775993, -0.01753106713294983, -0.01880555972456932, -0.010412883944809437, 0.012019559741020203, 0.0313471220433712, -0.014697352424263954, -0.01580914482474327, 0.013388962484896183, -0.01698872819542885, -0.010338312946259975, -0.008867221884429455, 0.035035017877817154, -0.036445096135139465, -0.0031387796625494957, -0.017029404640197754, -0.035984106361866, 0.014738027937710285, -0.01439906656742096, 0.000997392926365137, 0.004931883420795202, -0.020974911749362946, -0.019890235736966133, 0.034763846546411514, 0.02620846964418888, 0.011944988742470741, 0.023686600849032402, -0.02527293749153614, -0.019768210127949715, -0.02285953424870968, -0.01443974208086729, -0.01940213143825531, -0.03359782323241234, 0.038099225610494614, -0.02887948416173458, -0.005972494371235371, -0.012094130739569664, -0.017354806885123253, -0.004962390288710594, 0.004989507142454386, 0.013504208996891975, 0.021096937358379364, 0.021246079355478287, 0.00703683216124773, 0.027754133567214012, -0.005152208264917135, -0.006830065511167049, -0.030235327780246735, 0.05249829217791557, 0.021151171997189522, -0.0019269937183707952, 0.009023143909871578, -0.004630208481103182, -0.0009075682610273361, 0.018453041091561317, 0.026764366775751114, -0.02460857480764389, -0.0046641044318675995, -0.041705772280693054, 0.007518156431615353, -0.01296865101903677, 0.004830195102840662, -0.007070728112012148, 0.010846754536032677, -0.0015863378066569567, 0.019117403775453568, 0.010087481699883938, -0.011592469178140163, 0.001170263160020113, 0.0089960265904665, 0.005125091411173344, -0.0014016040368005633, 0.012616131454706192, -0.04986795410513878, 0.0068334550596773624, 0.0016465034568682313, -0.001015188405290246, 0.010778962634503841, -0.021707067266106606, 0.011565351858735085, 0.008941792882978916, -0.002703214529901743, 0.014114338904619217, 0.0062843384221196175, -0.02534073032438755, 0.0008990942733362317, 0.035712938755750656, -0.0028557470068335533, 0.010833196341991425, -0.015917612239718437, 0.014127898029983044, 0.008487585000693798, -0.029964158311486244, -0.012236494570970535, 0.013355066068470478, 0.02106982097029686, -0.01919875480234623, -0.015293924137949944, -0.005525065585970879, 0.0076876371167600155, -0.013022884726524353, -0.028418496251106262, -0.03308260068297386, 0.0014499060343950987, -0.039916057139635086, 0.009694286622107029, -0.00587080605328083, -0.0593317449092865, 0.009287533350288868, 0.004494623746722937, -0.010046806186437607, -0.022181613370776176, -0.013063560239970684, -0.17018558084964752, 0.0075113773345947266, 0.004972558934241533, -0.02159859985113144, -0.004870870616286993, -0.013843170367181301, 0.0018642859067767859, 0.010650156997144222, -0.021910443902015686, 0.00322521454654634, 0.010338312946259975, 0.003028617240488529, -0.032296210527420044, -0.00067326141288504, -0.011877195909619331, -0.008846883662045002, -0.007877455092966557, -0.00396923441439867, 0.02186976931989193, 0.023917093873023987, 0.04048551246523857, -0.02239854820072651, 0.014114338904619217, 0.018751326948404312, -0.004972558934241533, -0.025422081351280212, 0.01620233990252018, 0.0010033247526735067, 0.008575715124607086, -0.0339774563908577, 0.008419793099164963, -0.0074639227241277695, 0.004355649929493666, 0.003884493838995695, 0.009023143909871578, -0.011694157496094704, -0.005979273468255997, 0.0036878965329378843, -0.0031879288144409657, 0.005894532892853022, -0.005396260414272547, 0.011050131171941757, -0.018683534115552902, -0.00017700123135000467, 0.0005385244148783386, 0.027374496683478355, 0.016026079654693604, -0.032567381858825684, 0.013775378465652466, -0.025910183787345886, 0.014575325883924961, -0.015076988376677036, 0.020974911749362946, -4.5494933146983385e-05, 0.0380178727209568, -0.008657066151499748, 0.013117793947458267, 0.027659224346280098, -0.031835224479436874, 0.012460209429264069, 0.002481195144355297, -0.04539366811513901, -0.002703214529901743, -0.0023490001913160086, -0.03495366498827934, -0.02700841799378395, -0.024689923971891403, -0.006080961786210537, -0.021693509072065353, -0.0063284034840762615, 0.024378079921007156, 0.00539964996278286, 0.004294636659324169, -0.0052877929992973804, -0.011375533416867256, 0.04493268206715584, -0.0038539874367415905, 0.025327172130346298, 0.006091130431741476, -0.00919940322637558, -0.013619456440210342, 0.039970289915800095, -0.0030913250520825386, 0.006036896724253893, -0.007009714841842651, -0.0005525065353140235, 0.004426831845194101, -0.004250572063028812, 0.014941404573619366, -0.02052748203277588, 0.021557925269007683, -0.06247730553150177, 0.014954962767660618, 0.014114338904619217, -0.010731508024036884, 0.008494364097714424, -0.0010075618047267199, -0.024120470508933067, 0.01020272821187973, -0.013402520678937435, 0.018453041091561317, 0.007260546088218689, -0.002203247044235468, -0.008494364097714424, 0.023510340601205826, 0.007457143627107143, -0.029584523290395737, 0.009538364596664906, 0.06226037070155144, -0.005040351301431656, -0.007409689016640186, -0.00681989686563611, 0.013524547219276428, 0.014860053546726704, -0.01980888471007347, 0.03948218747973442, 0.006731766741722822, -0.009748520329594612, 0.007294442504644394, -0.01841236650943756, 0.03167252242565155, 0.0089960265904665, -0.005636922549456358, 0.024283170700073242, -0.0002559155982453376, -0.011592469178140163, -0.12300219386816025, -0.03888561576604843, -0.016758235171437263, 0.00396584440022707, -0.012094130739569664, 0.013083897531032562, -0.021991794928908348, 0.007531715091317892, -0.009890884160995483, 0.026574548333883286, -0.009477351792156696, -0.025245821103453636, -0.006223325151950121, -0.005562351085245609, -0.010141715407371521, -0.013483871705830097, -0.020974911749362946, 0.0038370394613593817, -0.02520514652132988, 0.04615294188261032, 0.022751066833734512, 0.018290339037775993, 0.03565870597958565, -0.017042962834239006, 0.025584781542420387, 0.01349742989987135, -0.021815534681081772, 0.022778185084462166, 0.002145623555406928, 0.024256054311990738, 0.007423247676342726, -0.0027184677310287952, 0.019510598853230476, -0.0069148060865700245, -0.008887559175491333, -0.010595923289656639, -0.008196079172194004, -0.011850079521536827, 0.008853663690388203, -0.007409689016640186, -0.005891143344342709, 0.006253832019865513, -0.005864026490598917, -0.002757448237389326, -0.0040777018293738365, -0.0010702696163207293, -0.020364781841635704, 0.028038859367370605, -0.013558442704379559, -0.009382442571222782, -0.0379907563328743, -0.010575585998594761, -0.00402007857337594, 0.007308000698685646, -0.0022337534464895725, 0.01170093659311533, -0.002916760044172406, -0.0007813052507117391, -0.010941663756966591, 0.0005453036283142865, -0.03080478310585022, -0.0023625586181879044, -0.027021976187825203, 0.00031841156305745244, 0.006908026523888111, -0.009884105063974857, -0.035441771149635315, -0.020852886140346527, 0.021191846579313278, -0.012283949181437492, -0.017097197473049164, 0.030316678807139397, -0.018019171431660652, -0.007328338455408812, -0.028499847277998924, 0.01946992427110672, 0.009477351792156696, -0.011395871639251709, 0.019171638414263725, -0.003711623838171363, -0.009077377617359161, -0.009789195843040943, 0.008623169735074043, -0.043576836585998535, -0.0029387925751507282, 0.03327241912484169, 0.0002595170808490366, 0.017585299909114838, 0.030425146222114563, -0.023822184652090073, -0.006891078781336546, 0.006304676178842783, 0.02974722348153591, -0.024296730756759644, -0.002210026141256094, 0.008392675779759884, -0.00534880580380559, 0.0008779091876931489, -0.01400587148964405, 0.023388314992189407, -0.029774341732263565, -0.007924909703433514, -0.045773304998874664, 0.010317974723875523, 0.00030231091659516096, -0.022113820537924767, 0.00349129899404943, -0.016243014484643936, 0.0008762143552303314, -0.008345222100615501, 0.0002775243774522096, -0.021842651069164276, -0.03313683345913887, 0.0036404419224709272, -0.007945247925817966, 0.0007804578635841608, -0.004681052640080452, -0.015212573111057281, 0.007911351509392262, -0.019781768321990967, 0.005799624137580395, 0.020039379596710205, 0.024920418858528137, 0.0021879938431084156, 0.010758624412119389, 0.017748001962900162, -0.007308000698685646, 0.014222806319594383, -0.0012541559990495443, 0.020174963399767876, -0.020459691062569618, -0.02553054876625538, -0.0059182601980865, -0.027713457122445107, -0.014290599152445793, 0.0156600009649992, 0.005789455026388168, 0.014046547003090382, 0.025286495685577393, 0.013734702952206135, 0.025489872321486473, 0.018846236169338226, -0.015917612239718437, 0.0002912946802098304, 0.03140135481953621, -0.010141715407371521, 0.005986052565276623, -0.03611969202756882, -0.007646962068974972, -0.014656676910817623, 0.0025761041324585676, -0.002318493789061904, 0.05705392733216286, 0.013992313295602798, -0.023035794496536255, -0.019768210127949715, -0.013795715756714344, -0.03921101614832878, 0.01263646874576807, -0.02547631412744522, -0.02060883305966854, -0.004555637016892433, 0.05146785080432892, 0.008806209079921246, 0.018656417727470398, -0.01645994931459427, 0.0026303378399461508, -0.030153976753354073, -0.0433599017560482, -0.00035230765934102237, -0.003420117311179638, -0.009640052914619446, -0.016758235171437263, -0.030723432078957558, 0.02379506826400757, -0.009775637648999691, 0.009850208647549152, -0.0028608315624296665, -0.009389221668243408, 0.006162312347441912, -0.01928010582923889, 0.023184938356280327, 0.03047938086092472, -0.007809663191437721, 0.0022083313670009375, 0.003115052357316017, 0.03492654860019684, -0.0016583671094849706, 0.013775378465652466, 0.005426766816526651, -0.010765403509140015, 0.0206630676984787, 0.01243309210985899, 0.01659553498029709, -0.00017498865781817585, 0.011097585782408714, -0.011375533416867256, 0.01513122208416462, -0.013680469244718552, 0.01047389768064022, 0.017585299909114838, 0.005064078606665134, 0.02287309430539608, 0.001044000149704516, -0.026764366775751114, -0.016324365511536598, -0.04162441939115524, 0.02561189979314804, -0.006141974590718746, -0.029964158311486244, 0.0023032405879348516, 0.022764625027775764, 0.003589597763493657, 0.01083997543901205, 0.01083997543901205, 0.0010651851771399379, -0.03519771993160248, 0.008243533782660961, 0.003064208198338747, -0.0037319613620638847, -0.01423636544495821, 0.026357613503932953, 3.3922588045243174e-05, 0.00498272804543376, 0.018290339037775993, 0.01157213095575571, 0.0011795845348387957, 0.02239854820072651, -0.006975818891078234, -0.01747683249413967, 0.00232527288608253, 0.0240120030939579, 0.0032811432611197233, 0.01206701435148716, -0.008474026806652546, -0.006853792816400528, -0.02214093692600727, -0.035712938755750656, 0.0025862730108201504, 0.006721598096191883, -0.026059327647089958, 0.06459242105484009, 0.008880780078470707, -0.026764366775751114, -0.00013939774362370372, -0.004952221177518368, 0.0078367805108428, 0.03511636704206467, 0.010392546653747559, 0.0019066560780629516, -0.03742130100727081, 0.010629819706082344, 0.0026506755966693163, 0.023849301040172577, -0.03519771993160248, -0.006314844824373722, 0.005647091660648584, -0.02692706696689129, 0.015754910185933113, -0.026777924969792366, 0.01040610484778881, 0.014155014418065548, 0.00910449493676424, 0.01120605319738388, 0.01037220936268568, -0.01946992427110672, 0.009124832227826118, 0.008379117585718632, 0.00936888437718153, -0.04260062798857689, 0.0033607990480959415, 0.012134806253015995, 0.020500365644693375, -0.029991276562213898, -0.03728571906685829, -0.002203247044235468, 0.012921196408569813, 0.011999222449958324, -0.003193013370037079, 0.02093423530459404, 0.014900729060173035, 0.012609352357685566, 0.008677403442561626, -0.032567381858825684, -0.013144910335540771, 0.001349912490695715, 0.0065046632662415504, 0.004155662842094898, -0.012921196408569813, -0.049705252051353455], "5501c185-c58a-4ee2-8d66-f373eb14f7f4": [0.0028571588918566704, 0.03534233570098877, 0.008183890953660011, -0.013301394879817963, -0.02673998847603798, 0.02679486759006977, 0.007648816332221031, 0.012615402229130268, -0.00567315798252821, -0.05180615559220314, 0.016985174268484116, 0.017012614756822586, -0.008019252680242062, 0.0038484178949147463, 0.006688426714390516, 0.017822084948420525, 0.02599911577999592, -0.0071549019776284695, 0.010708343237638474, -0.004963155835866928, -0.0004917708574794233, 0.017602568492293358, -0.010516265407204628, -0.010797522030770779, -0.01887851394712925, 0.0034368224442005157, 0.004946005996316671, -0.006359150633215904, -0.0025913366116583347, -0.003934166859835386, 0.015997344627976418, -0.02658906951546669, -0.021457845345139503, 0.0073812794871628284, 0.0021025671157985926, -0.015187874436378479, -0.02745342068374157, -0.01287607941776514, -0.0167656559497118, 0.019344989210367203, 0.02748085930943489, 0.022102678194642067, -0.007532197516411543, 0.0053953309543430805, 0.008149591274559498, 0.027563178911805153, -6.999267498031259e-05, -0.016518699005246162, 0.0036357601638883352, 0.010235007852315903, 0.01795928366482258, 0.06689798831939697, -0.015736667439341545, 0.004980305675417185, 0.00908254086971283, 0.001654099440202117, -0.0009929741499945521, 0.012478203512728214, 0.00814273115247488, -0.020579775795340538, 0.006750166416168213, 0.0004724773461930454, -0.01959194615483284, -0.020223058760166168, -0.005916685331612825, -0.008911042474210262, -0.0016883990028873086, 0.018357159569859505, -0.016724497079849243, -0.009521575644612312, 0.019194070249795914, 0.02328258566558361, 0.00512093398720026, 0.000771312799770385, 0.0054502105340361595, -0.013123036362230778, -0.014515601098537445, -0.011277716606855392, -0.005323302000761032, -0.017369329929351807, -0.0143235232681036, 0.0028845984488725662, -0.030183671042323112, 0.026342112571001053, -0.0074841780588030815, 0.0026342112105339766, 0.005083204247057438, 0.00760079687461257, 0.00743615860119462, -0.013404293917119503, 0.009048241190612316, 0.009336357936263084, -0.0010581434471532702, 0.021759681403636932, 0.000400876859202981, 0.034134987741708755, 0.0007541630184277892, 0.039019253104925156, -0.018384598195552826, -0.006441469769924879, -0.012663421221077442, 0.03331179544329643, -0.02203407883644104, -0.01854923740029335, -0.010701483115553856, 0.00643803970888257, 0.005573689006268978, 0.0021557314321398735, 0.006976543925702572, 0.0072715203277766705, -0.028427530080080032, 0.053287897258996964, 0.024339014664292336, -0.034134987741708755, 0.006043593864887953, -0.005885815713554621, 0.02513476461172104, -0.012855499982833862, -0.006736446171998978, -0.017136093229055405, -0.009103120304644108, 0.010207568295300007, 0.02444877289235592, -0.028057092800736427, 0.017259571701288223, -0.0008472007466480136, -0.014597920700907707, -0.020415136590600014, 0.0004480388597585261, -0.015681788325309753, 0.02536800317466259, 0.018837355077266693, 0.013623811304569244, 0.012759460136294365, -0.004218854010105133, 0.012121487408876419, -0.016683338209986687, 0.012635981664061546, -0.0012099192244932055, -0.01540739182382822, 0.007340119685977697, 0.0013248230097815394, -0.0005800924263894558, 0.003923877142369747, 0.014543040655553341, 0.007052002940326929, 0.030512945726513863, 0.021389245986938477, -0.007504757959395647, 0.010756362229585648, -0.003697499632835388, 0.021156009286642075, 0.022281035780906677, -0.0005882385885342956, 0.015969906002283096, 0.03948573023080826, 0.005872095935046673, 0.002045972738415003, 0.019523346796631813, -0.0046373093500733376, 0.008465147577226162, 0.026136314496397972, -0.004270303528755903, 0.019825182855129242, -0.0058892457745969296, 0.02968975529074669, 0.001089013065211475, 0.002812569262459874, -0.0013994247419759631, 0.014735119417309761, -0.02732994221150875, 0.016024785116314888, -0.02114228904247284, 0.014460721984505653, -0.024764329195022583, -0.0038312680553644896, 0.020538615062832832, 0.019043151289224625, -0.04275105148553848, -0.006088183261454105, 0.00545707019045949, 0.001136175123974681, 0.0070074135437607765, 0.019509626552462578, -0.028921443969011307, 0.009775393642485142, 0.027645498514175415, 0.03004647232592106, 0.009418677538633347, 0.01885107345879078, 0.01765744760632515, 0.03847045823931694, -0.0029583426658064127, 0.015640629455447197, -0.6396743059158325, -0.0011310301488265395, 0.0011061629047617316, -0.050132330507040024, 0.0007906063692644238, 0.022610312327742577, 0.007689976133406162, 0.007511618081480265, -0.0031830051448196173, 0.052986059337854385, -0.011908830143511295, 0.016148263588547707, 0.0017647157656028867, 0.005402191076427698, -0.01091414038091898, -0.047360923141241074, 0.015599469654262066, -0.0315556563436985, -0.032049570232629776, -0.007511618081480265, -0.012450763955712318, -0.014474442228674889, -0.007731135468930006, -0.006372870411723852, -0.008355388417840004, 0.009089400991797447, 0.01592874526977539, -0.003462547203525901, 0.01391878817230463, 0.0031452756375074387, -0.030924541875720024, -0.013582651503384113, 0.01786324568092823, 0.0034042377956211567, 0.036632001399993896, 0.01216264721006155, -0.019838903099298477, 0.021787121891975403, 0.02007213979959488, 0.02060721442103386, -0.010523124597966671, -0.0007644529105164111, 0.012231246568262577, 0.00584465591236949, 0.030979420989751816, -0.012354725040495396, -0.013884488493204117, 0.028811685740947723, 0.0017201262526214123, -0.014803717844188213, 0.01979774422943592, 0.013767869211733341, 0.015887586399912834, 0.0071549019776284695, 0.022610312327742577, -0.015832707285881042, 0.015462270937860012, 0.003016652073711157, -0.009240319021046162, -0.011270856484770775, 0.007806594483554363, 0.02715158276259899, -0.005048905033618212, -0.03114406019449234, 0.004946005996316671, 0.009007081389427185, -0.028509847819805145, 0.004417791962623596, -0.007854614406824112, -0.021059969440102577, 0.00026517896912992, 0.014501881785690784, -0.018288560211658478, -0.01768488623201847, -0.00935007818043232, 0.026904625818133354, 0.01046824548393488, -0.022322196513414383, 0.00649977894499898, 0.02269263193011284, 0.017561407759785652, -0.011298296973109245, 0.0022895000874996185, -0.016216862946748734, 0.03789422661066055, 0.004318322986364365, 0.008492587134242058, -0.0025690419133752584, 0.014213765040040016, 0.008924762718379498, -0.001931068953126669, 0.022610312327742577, -0.02697322517633438, -0.02015445940196514, -0.023543262854218483, 0.03139101713895798, -0.015215313993394375, -0.015503430739045143, -0.017616286873817444, -0.006393450312316418, -0.005522239487618208, -0.024339014664292336, 0.0014868887374177575, 0.016422661021351814, -0.014007966965436935, 0.021073689684271812, -0.011010179296135902, 0.024544812738895416, 0.04906218498945236, -0.03882717713713646, -0.012512503191828728, -0.020579775795340538, -0.013452312909066677, 0.022884709760546684, -0.004757358226925135, -0.029168400913476944, 0.03114406019449234, 0.0006979973986744881, 0.010097810067236423, -0.028839124366641045, -0.0039170170202851295, 0.003735229140147567, -0.00858862604945898, 0.009583314880728722, 0.007731135468930006, 0.014042266644537449, -0.004609869793057442, -0.0021454414818435907, -0.008897323161363602, -0.019509626552462578, 0.022555433213710785, 0.013562072068452835, 0.009370657615363598, -0.005861805751919746, 0.020881611853837967, -0.02638327144086361, -3.0065764804021455e-05, -0.007566497195512056, 0.022171277552843094, -0.021361807361245155, 0.005872095935046673, -0.015393671579658985, -0.00022552003792952746, -0.028098253533244133, -0.0174242090433836, -0.0041433945298194885, -0.010694622993469238, -0.015091835521161556, -0.024695729836821556, -0.001629232196137309, -0.0043457625433802605, 0.0040645054541528225, 0.002268920186907053, 0.03501305729150772, 0.0031932950951159, -0.014213765040040016, -0.022912150248885155, -0.0015126134967431426, -0.008403408341109753, 0.0008326233946718276, -0.0029943573754280806, 0.017341891303658485, -0.015736667439341545, 0.019166629761457443, -0.010557424277067184, -0.03745518997311592, -0.02040141634643078, 0.02760433778166771, -0.013129896484315395, -0.03380570933222771, 0.006204802077263594, 0.011949989013373852, 0.0029497677460312843, -0.014927197247743607, -0.0031332706566900015, 0.020058421418070793, -0.025079885497689247, -0.004599579609930515, 0.0011481799883767962, -0.007648816332221031, 0.005302722100168467, 0.009638194926083088, -0.0029051783494651318, -0.002009958028793335, 0.01250564306974411, -0.0022963599767535925, 0.026163754984736443, -0.015613188967108727, -0.0013471178244799376, 0.01271144114434719, 0.023803940042853355, 0.033037398010492325, -0.02480548806488514, 0.0038895774632692337, -0.013212216086685658, 0.033695951104164124, -0.009549015201628208, 0.042119938880205154, 0.016422661021351814, 0.02295330911874771, 0.014611640013754368, -0.007943793199956417, 0.009116840548813343, -0.010427085682749748, 0.03320203721523285, -0.031034300103783607, 0.007230360992252827, 0.009843992069363594, 0.04047355800867081, 0.011421775445342064, 0.013171056285500526, -0.01804160326719284, -0.019989822059869766, -0.01819252036511898, 0.03786678612232208, 0.021059969440102577, 0.0038175482768565416, 0.028894003480672836, 0.014954636804759502, -0.031308699399232864, 0.02363930083811283, 0.016710776835680008, 0.025820758193731308, 0.005995574407279491, -0.024284135550260544, 0.007758575025945902, 0.010413366369903088, -0.0060367342084646225, -0.025985395535826683, -0.05855632200837135, -0.0025621820241212845, -0.01338371355086565, 0.006016154307872057, -0.015805266797542572, 0.009843992069363594, -0.003006362123414874, 0.040775395929813385, -0.006544368341565132, 0.03328435495495796, 0.0008219047449529171, -0.004314892925322056, 0.02084045298397541, 0.02256915345788002, -0.025121046230196953, 0.021402966231107712, 0.013356273993849754, 0.019331268966197968, 0.020620934665203094, 0.0017715756548568606, 0.024105776101350784, 0.01503695547580719, 0.017547687515616417, -0.01938614808022976, -0.005155233666300774, -0.009699934162199497, 0.005669727921485901, 0.011977429501712322, 0.04080283269286156, 0.015379952266812325, 0.014817438088357449, -0.013184775598347187, -0.011737331748008728, -0.006047023925930262, 0.004901416599750519, 0.03144589811563492, 0.007120602298527956, -0.015860145911574364, -0.03402522951364517, -0.012196946889162064, -0.00037386591429822147, -0.021938040852546692, -0.03281788155436516, -0.025436602532863617, 0.008705245330929756, 0.032653242349624634, -0.0261088740080595, 0.010756362229585648, -0.0077105555683374405, 0.035561852157115936, 0.007394999265670776, -0.033092278987169266, -0.03523257374763489, -0.024339014664292336, 0.052272628992795944, -0.008437708020210266, -0.0007593079353682697, -0.030238550156354904, 0.02040141634643078, 0.0008257635054178536, 0.022527994588017464, -0.015530870296061039, 0.01469395961612463, 0.028454968705773354, 0.0006388305337168276, 0.02048373594880104, -0.0014122871216386557, 0.031281258910894394, 0.005117503926157951, -0.030293429270386696, 0.00291375326924026, 0.009109980426728725, -0.01908431202173233, -0.005515379831194878, 0.017575128003954887, 0.03561672940850258, 0.010557424277067184, -0.016175704076886177, 0.006712436676025391, -0.009075680747628212, -0.01992122270166874, 0.02516220510005951, -0.023776499554514885, -0.031637974083423615, -0.021745963022112846, 0.026191193610429764, -0.029278161004185677, 0.015215313993394375, 0.006571808364242315, 0.022322196513414383, 0.0018384598661214113, 0.01979774422943592, -0.008197610266506672, -0.0037523789796978235, -0.006695286836475134, 0.009377517737448215, 0.03185749053955078, -0.038635097444057465, 0.023707900196313858, -0.035863686352968216, -0.01623058319091797, -0.009206019341945648, 0.015764107927680016, 0.008959062397480011, -0.010742642916738987, -0.011545253917574883, 0.011030759662389755, 0.02569727972149849, -0.015009515918791294, 0.0073675597086548805, 0.012354725040495396, -0.021814562380313873, 0.007065722718834877, -0.002390683861449361, -0.05032441020011902, 0.014899756759405136, -0.012553662993013859, 0.026122594252228737, 0.016697058454155922, -0.027919894084334373, -0.009850852191448212, -0.004791657440364361, -0.0008630643133074045, 0.009549015201628208, -0.0009698218782432377, -0.01171675231307745, 0.0004548987781163305, 0.013342554681003094, 0.012519363313913345, -0.03114406019449234, -0.0019808034412562847, 0.0050660548731684685, 0.02566983923316002, 0.008108431473374367, -0.012533082626760006, 0.002186601050198078, 0.01694401539862156, 0.012759460136294365, -0.0026136315427720547, -0.017218410968780518, -0.0017184112221002579, -0.00028704499709419906, -0.00169354397803545, 0.01577782817184925, -0.020140739157795906, 0.0016335196560248733, 0.0051449439488351345, -0.015832707285881042, -0.01502323616296053, 0.003989046439528465, -0.02167736366391182, -0.006232242099940777, 0.0009621044737286866, -0.0018281700322404504, -0.01946846768260002, -0.014886037446558475, -0.020058421418070793, 0.020922770723700523, -0.017108652740716934, -0.0132190752774477, -0.002829719102010131, -0.012539942748844624, 0.003157280618324876, -0.03605576604604721, 0.017067493870854378, 0.0038175482768565416, -0.04165346547961235, -0.023351185023784637, -0.01436468306928873, -0.0062082321383059025, -0.004719628486782312, -0.01415888499468565, -0.004524120595306158, -0.0057554771192371845, 0.01944102719426155, -0.01590130664408207, -0.024105776101350784, -0.01839831843972206, -0.04697676748037338, 0.009768533520400524, -0.003359648399055004, -0.0016352346865460277, 0.01658729836344719, 0.00256046699360013, 0.01854923740029335, -0.008794424124062061, -0.009500996209681034, -0.015338792465627193, -0.014844877645373344, -0.005607988685369492, 0.022116398438811302, 0.020209338515996933, 0.008108431473374367, -0.010104669257998466, -0.02226731739938259, -0.00037772461655549705, -0.00672272639349103, -0.012498783878982067, -0.015544590540230274, 0.012780040502548218, -0.002436988288536668, 0.0019327838672325015, 0.043162647634744644, -0.016299182549118996, -0.03926621004939079, 0.006125913001596928, -0.01783580519258976, 0.02012702077627182, 0.0010049790143966675, -0.024915248155593872, 0.003289334010332823, -0.011840230785310268, 0.025148484855890274, -0.01780836470425129, -0.02804337441921234, -0.0006714151822961867, -0.019015712663531303, 0.018082762137055397, 0.012539942748844624, -0.02063465490937233, 0.0333392359316349, -0.005433060694485903, -0.03462890163064003, -0.009007081389427185, -0.008993362076580524, -0.005110644269734621, 0.007196061313152313, -0.032049570232629776, -0.0026445011608302593, -0.0036906397435814142, 0.014721399173140526, -0.006582098081707954, 0.013623811304569244, -0.016161983832716942, -0.004150254651904106, -0.0007940363138914108, -0.0008420557714998722, -0.01320535596460104, 0.011325736530125141, -0.00942553672939539, -0.030156230553984642, -0.029113521799445152, 0.009137419983744621, 0.01959194615483284, 0.060367342084646225, 0.0045035406947135925, 0.00832108873873949, -0.011943129822611809, -0.008533746935427189, 0.011812791228294373, -0.0063008409924805164, -0.033421553671360016, -0.011469794437289238, 0.03213188797235489, -0.002006527967751026, 0.033037398010492325, 0.00501803494989872, 0.02411949634552002, 0.005752047058194876, 0.014817438088357449, 0.009871432557702065, -0.005446780472993851, -0.027179023250937462, -0.03534233570098877, -0.0036734899040311575, 0.014172605238854885, 0.010811242274940014, 0.027055544778704643, 0.01311617624014616, 0.01714981347322464, 0.037235673516988754, -0.00622195191681385, 0.003095541149377823, -0.026849746704101562, -0.04373888298869133, 0.0016583869000896811, 0.01305443700402975, 0.00621509226039052, 0.017876964062452316, -0.032708123326301575, -0.010722062550485134, 0.016546139493584633, -0.0044246516190469265, 0.019098030403256416, -0.005309581756591797, 0.023776499554514885, -0.007014273200184107, 0.01487231720238924, -0.002610201481729746, 0.029497677460312843, -0.011963709257543087, 0.01183337066322565, -0.022706352174282074, -0.004009626340121031, -0.014886037446558475, -0.004599579609930515, 0.02468200959265232, 0.005498229991644621, -0.00836910866200924, -0.017287010326981544, 0.005930405110120773, -0.009212879464030266, 0.005899535492062569, 0.01402168720960617, -0.023447223007678986, -3.37368983309716e-05, -0.04140650853514671, -0.048156674951314926, -0.004760787822306156, 0.015352512709796429, 0.018178801983594894, 0.0010238437680527568, 0.009679353795945644, -0.014748838730156422, 0.00770369591191411, -0.010289887897670269, -0.028153132647275925, 0.0481841117143631, -0.022143838927149773, 0.04272361472249031, 0.0019173490582033992, -0.013198495842516422, -0.01765744760632515, 0.030951982364058495, 0.001470596413128078, 0.005175813566893339, 0.025285683572292328, 0.007950653322041035, -0.01870015636086464, 0.013342554681003094, -0.0015271907905116677, 0.004181124269962311, 0.016244303435087204, -0.039046693593263626, 0.008012392558157444, 0.03078734315931797, -0.0037592388689517975, -0.03391547128558159, 0.006297411397099495, -0.025203363969922066, -0.014611640013754368, -0.00046733240014873445, -0.0031555655878037214, -0.004606439732015133, -0.0009115125285461545, -0.030979420989751816, 0.022500554099678993, 0.00863664597272873, 0.04859570786356926, -0.0020716972649097443, -0.0015906451735645533, -0.019166629761457443, -0.02572471834719181, -0.013953087851405144, 0.0014294368447735906, 0.003992476500570774, -0.001355692744255066, -0.00803983211517334, -0.016504978761076927, 0.004843106959015131, 0.0025621820241212845, -0.002701095538213849, -0.025477761402726173, -0.00045404129195958376, 0.028619607910513878, -0.0064757694490253925, -0.007786015048623085, -0.009103120304644108, 0.006019584368914366, -0.0031692853663116693, -0.01732817105948925, -0.015009515918791294, -0.01240274403244257, -0.005906395614147186, -0.008163310587406158, 0.006616397760808468, 0.0036357601638883352, 0.008183890953660011, -0.004513830877840519, -0.003704359522089362, -0.027672937139868736, 0.000909797556232661, -0.014035406522452831, 0.00980969239026308, -0.023104228079319, -0.0043320427648723125, -0.016930295154452324, -0.018535517156124115, 0.0170949324965477, 0.012052888050675392, -0.02796105481684208, -0.007182341534644365, 0.024558531120419502, -0.011840230785310268, 0.01250564306974411, -0.0070451428182423115, -0.02048373594880104, -0.042531535029411316, 0.01730073057115078, 0.006156782619655132, -0.0031367007177323103, 0.0276592168956995, -0.006119053345173597, -0.030705025419592857, -0.026986945420503616, -0.003947886638343334, 0.003567161038517952, -0.023858819156885147, -0.005680018104612827, 0.00655122846364975, -0.006297411397099495, 0.008458287455141544, -0.005264992360025644, -0.021361807361245155, 0.013129896484315395, -0.039019253104925156, 0.013349413871765137, -0.006431179586797953, -0.027371101081371307, -0.001895054243505001, -0.009686213918030262, -0.02495640702545643, 0.02483292855322361, -0.027535738423466682, -0.01183337066322565, 0.010214428417384624, -0.00550851970911026, 0.014035406522452831, 0.009384377859532833, -0.019989822059869766, -0.025121046230196953, 0.0027988494839519262, -0.001809305278584361, -0.018947113305330276, 0.007024563383311033, 0.014254923909902573, 0.0021951759699732065, 0.01714981347322464, 0.02447621338069439, -0.009103120304644108, -0.009212879464030266, -0.016065943986177444, -0.009089400991797447, -0.02096393145620823, 0.005556539166718721, 0.013452312909066677, 0.04766276106238365, 0.021361807361245155, -0.01502323616296053, -0.0408577136695385, -0.009699934162199497, -0.01503695547580719, -0.018082762137055397, -0.007724275812506676, 0.010145829059183598, 0.00973423384130001, 0.035122815519571304, -0.012690861709415913, 0.03210444748401642, -0.009336357936263084, 0.021128568798303604, -0.04258641600608826, 0.012526223435997963, 0.010022350586950779, 0.02173224277794361, 0.013575791381299496, 0.005131223704665899, -0.014666520059108734, -0.017876964062452316, 0.02051117643713951, 2.7359310479369015e-05, 0.02197919972240925, 0.01050940528512001, -0.018357159569859505, -0.018329719081521034, -0.007676256354898214, 0.01057114452123642, -0.017040053382515907, 0.017259571701288223, 0.005021465010941029, -0.028921443969011307, -0.010523124597966671, -0.014556760899722576, -0.008080991916358471, -0.022102678194642067, 0.015887586399912834, -0.019756583496928215, -0.002718245377764106, 0.006729586515575647, -0.006410600151866674, -0.020744413137435913, 0.011332595720887184, -0.0036803497932851315, 0.026643948629498482, -0.0031589954160153866, 0.0073675597086548805, 0.04173578321933746, -0.027590619400143623, 0.01643638126552105, 0.0005848085856996477, -0.01095530018210411, -0.0032104449346661568, 0.007333260029554367, 0.005004315171390772, 0.015709228813648224, -0.00035178553662262857, -0.03281788155436516, 0.022733790799975395, -0.029936712235212326, 0.004661318846046925, -0.006671277340501547, -0.0011713322019204497, -0.011408055201172829, -0.012725161388516426, 0.006698716897517443, -0.01590130664408207, -0.006143062841147184, -0.0047299182042479515, -0.008945342153310776, -0.007374419365078211, -0.007587077096104622, 0.018027883023023605, -0.0024730029981583357, -4.960047226632014e-05, -0.024037176743149757, -0.008739544078707695, -0.024613410234451294, -0.01287607941776514, -0.0033819430973380804, -0.01034476701170206, -0.02420181594789028, 0.17012614011764526, 0.010111529380083084, 0.033778272569179535, 0.022912150248885155, -0.019043151289224625, -0.004215423949062824, 0.03495817631483078, -0.008533746935427189, 0.002946337917819619, 0.0239960178732872, 0.00512093398720026, 0.003134985687211156, 0.004136534873396158, 0.014982076361775398, 0.009109980426728725, -0.010536844842135906, -0.03435450419783592, -0.02834521047770977, 0.005566829349845648, -0.008053552359342575, 0.017163531854748726, 0.00418455433100462, -0.009830272756516933, -0.028235452249646187, 0.029497677460312843, -0.0015915025724098086, -0.003035516943782568, 0.003020081901922822, 0.0322142094373703, 0.019852623343467712, -0.014213765040040016, 0.02905864268541336, 0.03144589811563492, 0.016340341418981552, -0.03380570933222771, -0.0055839791893959045, 0.01338371355086565, -0.02732994221150875, 0.008760124444961548, 0.02700066566467285, -0.00020118874090258032, -0.009103120304644108, -0.0079369330778718, -0.023694181814789772, 0.005714317783713341, 0.022020358592271805, -0.009432396851480007, -0.01956450566649437, 0.007065722718834877, 0.048101793974637985, -0.021567603573203087, 0.012903518974781036, 0.013616951182484627, 0.014817438088357449, -0.0005946697783656418, 0.007333260029554367, -0.005107214208692312, 0.02411949634552002, 0.03786678612232208, -0.005669727921485901, -0.014433282427489758, 0.02593051642179489, -0.015105554834008217, 0.02417437545955181, 0.007580216974020004, 0.011133658699691296, -0.0283177699893713, -0.026726268231868744, -0.009000221267342567, -0.02658906951546669, 0.001172189717181027, -0.014927197247743607, -0.02429785393178463, 0.009549015201628208, -0.0004844822105951607, -0.017945563420653343, 0.006256251595914364, 0.03347643464803696, 0.0025827616918832064, 0.02063465490937233, -0.01138747576624155, 0.004150254651904106, -0.014186324551701546, 0.021238327026367188, 0.005741757340729237, -0.03838814049959183, 0.020113300532102585, -0.04308032989501953, -0.020291658118367195, -0.014968356117606163, -0.00594755494967103, 0.0107769425958395, 0.011099359020590782, -0.002340949373319745, 0.012807480059564114, 0.005378181114792824, -0.010365346446633339, 0.013500332832336426, -7.61022920414689e-06, -0.0018761894898489118, -0.019482187926769257, 0.06426377594470978, 0.013253374956548214, 0.016367781907320023, 0.0023255145642906427, -0.01610710471868515, -0.026040274649858475, -0.021553885191679, 0.006527218502014875, -0.025093605741858482, -0.010900421068072319, -0.020744413137435913, 0.0015803552232682705, -0.016024785116314888, -0.004496681038290262, 0.003297908930107951, -0.022075239568948746, 0.004225713666528463, 0.026328392326831818, 0.0007327257189899683, -0.0023323744535446167, 0.005014605354517698, -0.015969906002283096, 0.0014071421464905143, -0.0022054659202694893, -0.01326709520071745, -0.01452932134270668, 0.024517372250556946, 0.01328081451356411, -0.01837087981402874, 0.0486505888402462, -0.03292763978242874, 0.03117149882018566, -0.004486390855163336, 0.003553441260010004, -0.010221288539469242, 0.014597920700907707, -0.019509626552462578, -0.0075939372181892395, 0.004006196279078722, -0.000985256745480001, -0.009041381068527699, -0.009713653475046158, 0.0052238330245018005, -0.0073263999074697495, -0.008451427333056927, -0.0045961495488882065, 0.004047355614602566, -0.005796636454761028, -0.011277716606855392, -0.007216641213744879, -0.01168931182473898, 0.0035105666611343622, -0.03885461390018463, -0.012704581022262573, -0.007401858922094107, 0.003560301149263978, -0.0224456749856472, 0.02060721442103386, -0.0019259239779785275, -0.03803142532706261, -0.011915690265595913, 0.024585971608757973, 0.016450099647045135, -0.020415136590600014, -0.00660953763872385, -0.17484577000141144, 0.008005532436072826, 0.010626023635268211, -0.021444125100970268, -0.003321918658912182, 0.012203807011246681, 0.020881611853837967, -0.005916685331612825, 0.001460306579247117, 0.0016746792243793607, 0.017465369775891304, -0.009295198135077953, 0.004640739411115646, 0.006276831496506929, -0.023886259645223618, 0.018658995628356934, 0.010310467332601547, 0.004753928165882826, 0.04096747189760208, 0.01885107345879078, 0.03391547128558159, -0.025889357551932335, -0.0055290996097028255, 0.021087409928441048, -0.00462358957156539, 0.024105776101350784, 0.02116972953081131, 0.021608764305710793, 0.004568709991872311, -0.031198939308524132, 0.0162031427025795, -0.010317327454686165, 0.018412038683891296, 0.006122482940554619, -0.010365346446633339, 0.01605222374200821, -0.016244303435087204, 0.0022895000874996185, -0.011236556805670261, 0.01682053692638874, 0.014556760899722576, 0.005707457661628723, -0.011600133031606674, 0.0007057148031890392, 0.003109260927885771, 0.01872759498655796, 0.025271963328123093, -0.02295330911874771, 0.0014534465735778213, -0.03712591528892517, 0.008286789059638977, -0.01819252036511898, 0.03007391095161438, 0.004753928165882826, 0.03600088506937027, -0.0006315418286249042, -0.01679309643805027, 0.01628546230494976, -0.01007722970098257, 0.0010049790143966675, -0.013987387530505657, -0.023680461570620537, -0.0007816026918590069, -0.004939145874232054, 0.022075239568948746, -0.007696835789829493, -0.025793317705392838, -0.0174242090433836, -0.01763000711798668, -0.00015788545715622604, -0.0016841115429997444, -0.015942465513944626, 0.010927860625088215, 0.004551560152322054, -0.012142067775130272, 0.01691657491028309, 0.01730073057115078, 0.017108652740716934, 0.011037619784474373, -0.015997344627976418, -0.018412038683891296, 0.019482187926769257, -0.00963133480399847, -0.0011396050686016679, 0.00025981967337429523, 0.01643638126552105, -0.005920115392655134, -0.01111993845552206, 0.013726710341870785, -0.020085860043764114, -0.0008592056110501289, -0.05282142385840416, -0.022802390158176422, -0.0005406478303484619, -0.007065722718834877, 0.005124364048242569, -0.010283027775585651, -0.006084753666073084, 0.0018110201926901937, -0.02420181594789028, 0.03257092460989952, 0.0052615622989833355, -0.007333260029554367, -0.014927197247743607, 0.009775393642485142, -0.013761010020971298, -0.005299292039126158, -0.012231246568262577, 0.038333259522914886, 0.02236335538327694, -0.005865235812962055, 0.008252489380538464, 0.011572693474590778, 0.013857048936188221, -0.0071000223979353905, 0.031583093106746674, -0.0370984748005867, -0.0073263999074697495, 0.020209338515996933, -0.022706352174282074, 0.037235673516988754, 0.0009775393409654498, 0.016504978761076927, 0.015352512709796429, 0.005494799930602312, -0.024435052648186684, -0.10213056206703186, -0.03923876956105232, -0.00980969239026308, 0.01260854210704565, -0.020360257476568222, 0.021512724459171295, -0.005762337241321802, 0.00016656755178701133, -0.035891126841306686, 0.03254348412156105, -0.008718964643776417, -0.0002115858078468591, -0.02027793787419796, -0.0027696946635842323, -0.024435052648186684, 0.021663643419742584, -0.010632883757352829, 0.010763222351670265, -0.01336999423801899, 0.02870192565023899, 0.01699889451265335, -0.01562690921127796, -0.023364905267953873, -0.0053164418786764145, 0.016093384474515915, 0.008190750144422054, -0.009775393642485142, 0.010427085682749748, 0.010605444200336933, 0.013342554681003094, -0.00854746624827385, -0.016751937568187714, 0.016559859737753868, 0.008465147577226162, -0.027947334572672844, -0.007724275812506676, -0.011723611503839493, 0.0023683891631662846, 0.04308032989501953, 0.0017955853836610913, -0.0015134710120037198, 0.007189201656728983, 0.004349192604422569, -0.010145829059183598, 0.013397433795034885, 0.006204802077263594, -0.01854923740029335, 0.009377517737448215, -0.020017260685563087, -0.0012159217149019241, -0.020854171365499496, -0.026547910645604134, -0.04327240586280823, -0.009418677538633347, 0.007662536110728979, -0.015448551625013351, 0.007909493520855904, 0.008506307378411293, -0.0037523789796978235, 0.01992122270166874, -0.030869662761688232, 0.0007610229076817632, -0.006681567057967186, -0.008664085529744625, 0.013541491702198982, -0.0010204138234257698, -0.043601684272289276, -0.01649126037955284, 2.202679024776444e-05, -0.016847975552082062, -0.012642841786146164, 0.028235452249646187, -0.01893339306116104, 0.0016017925227060914, -0.008403408341109753, 0.005155233666300774, -0.002054547658190131, 0.0062493919394910336, 0.024928968399763107, -0.014817438088357449, 0.00029969296883791685, -0.013026997447013855, -0.008334808982908726, -0.013809029012918472, 0.013171056285500526, 0.020552335307002068, 0.016120823100209236, -0.0004887696704827249, -0.0011987718753516674, -0.0289763230830431, 0.005059194751083851, -0.009645055048167706, 0.0234335046261549, -0.030375748872756958, 0.0025947666727006435, 0.0003620754287112504, 0.023213986307382584, -0.012985838577151299, -0.015091835521161556, 0.01745164953172207, -0.017259571701288223, -0.009013941511511803, -0.04028147831559181, 0.023543262854218483, -0.015215313993394375, -0.014447001740336418, -0.015160433948040009, 0.000812901125755161, -0.0069662537425756454, -0.01997610181570053, 0.0019276388920843601, -0.019838903099298477, -0.03045806661248207, 0.009679353795945644, 0.005467360373586416, 0.008122151717543602, -0.022486833855509758, -0.035177696496248245, 0.013630671426653862, -0.008074131794273853, 0.00010413151903776452, 0.017575128003954887, 0.007278380449861288, 0.001233929069712758, 0.03440938517451286, 0.015475991182029247, -0.019660545513033867, -0.019331268966197968, -0.006232242099940777, 0.008225049823522568, -0.017726046964526176, -0.015325072221457958, 0.007250940892845392, -0.01959194615483284, 0.023707900196313858, 0.0346563421189785, 0.013171056285500526, 0.008012392558157444, 0.020085860043764114, 0.023625582456588745, 0.03858022019267082, 0.019633105024695396, -0.020003542304039, -0.035479530692100525, -0.006496348883956671, -0.017341891303658485, -0.023954859003424644, -0.029497677460312843, -0.016038505360484123, 0.00022787813213653862, 0.013006418012082577, -0.005484510213136673, 0.048787787556648254, 0.023831380531191826, 0.00179044040851295, -0.007278380449861288, -0.024229254573583603, -0.018110202625393867, 0.02501128613948822, -0.007443018723279238, 0.009158000349998474, -0.00550851970911026, 0.04083027318120003, -0.015229033306241035, 0.020854171365499496, -0.019866343587636948, 0.01592874526977539, -0.01989378221333027, -0.034162428230047226, 0.015050675719976425, 0.01210090797394514, -0.004085085354745388, 0.004880836699157953, -0.00429431302472949, -0.002186601050198078, 0.022884709760546684, 0.028839124366641045, -0.008122151717543602, 0.0057005975395441055, 0.005313011817634106, -0.01628546230494976, 0.02215755730867386, 0.02429785393178463, 0.012183226644992828, 0.002147156512364745, 0.02147156558930874, 0.03262580186128616, -0.024133216589689255, -0.008766984567046165, 0.007854614406824112, 0.0004789085069205612, 0.013466033153235912, 0.018892234191298485, 0.029113521799445152, -0.007545917760580778, 0.007024563383311033, 0.03117149882018566, -0.0039856163784861565, -0.007587077096104622, 0.016861695796251297, 0.003786678658798337, 0.01592874526977539, 0.011373755522072315, -0.0034368224442005157, -0.01006351038813591, -0.0009166575036942959, -0.02569727972149849, -0.005745187401771545, -0.01590130664408207, -0.01714981347322464, -0.02223987691104412, 0.011874530464410782, 0.018741315230727196, -0.007003983482718468, -0.008568046614527702, 0.0029446228872984648, -0.026218634098768234, 0.011380615644156933, -0.00039787564310245216, 0.004256583284586668, -0.018686436116695404, 0.020113300532102585, -0.019166629761457443, 0.006119053345173597, 0.023598141968250275, 0.012828059494495392, 0.02549148164689541, 0.010715203359723091, 0.0031435606069862843, -0.024668291211128235, 0.010632883757352829, 0.02417437545955181, -0.02358442172408104, 0.00025317410472780466, -0.006859925109893084, -0.013431733474135399, -0.008122151717543602, -0.02442133240401745, 0.016065943986177444, 0.01673821732401848, -0.0027165303472429514, 0.08917902410030365, 0.033778272569179535, -0.013109317049384117, 0.004215423949062824, 0.009919451549649239, 0.006324850954115391, 0.019276389852166176, -0.0022534853778779507, -0.002922327956184745, -0.010186988860368729, 0.013514052145183086, -0.002085417276248336, 0.005247842520475388, -0.020566055551171303, -0.030677584931254387, 0.002937762998044491, -0.03259836509823799, 0.01994866132736206, -0.01789068430662155, -0.006612967699766159, 0.012011729180812836, 0.018412038683891296, 0.020826732739806175, 0.002028822898864746, -0.008259349502623081, -0.007744855247437954, -0.00026517896912992, 0.003707789583131671, -0.01371299009770155, -0.024970127269625664, 0.0029068931471556425, 0.003954746760427952, -0.036220405250787735, -0.027865014970302582, -0.007340119685977697, -0.002783414674922824, -0.007882053963840008, -0.02420181594789028, 0.021046249195933342, -0.026040274649858475, -0.016902854666113853, 0.005988714750856161, -0.01786324568092823, -0.035177696496248245, 0.003697499632835388, 0.0024438484106212854, -0.020593494176864624, -0.013925648294389248, -0.0348484180867672], "7ce69457-887b-4129-bc12-be646345587b": [0.021875476464629173, 0.0228774081915617, -0.007100484799593687, -0.03350900113582611, 0.0028875074349343777, -0.002558748936280608, -0.007215289399027824, 0.010742918588221073, -0.026189344003796577, -0.02414373680949211, -0.0024630785919725895, 0.01303900871425867, -0.003496319055557251, 0.018452215939760208, -0.006147259380668402, -0.004077299498021603, 0.006801297422498465, 0.01029065903276205, 0.0017464200500398874, 0.011396956630051136, 0.014653230085968971, 0.01403398159891367, 0.015140279196202755, -0.011675270274281502, -0.018229564651846886, 0.019495893269777298, 0.015168110840022564, -0.023698434233665466, -0.004379965830594301, -0.0037189703434705734, 0.03860214725136757, -0.019788121804594994, -0.02582753635942936, -0.007458813954144716, -0.027956636622548103, -0.015084616839885712, -0.005900255870074034, 0.013080756179988384, 0.017436370253562927, 0.008669479750096798, 0.017798177897930145, 0.008412039838731289, -0.002409155247732997, 0.0016498799668624997, -0.012600664980709553, 0.019454145804047585, 0.03707141801714897, -0.024742111563682556, -0.004094694275408983, -0.01738070696592331, 0.014653230085968971, 0.04105130955576897, -0.020219508558511734, -0.010568972676992416, -0.01809040829539299, -0.002633545780554414, -0.006126386113464832, 0.01946806162595749, -0.007507518865168095, -0.022585177794098854, 0.00038224682793952525, 0.0009280031081289053, -0.01050635240972042, -0.018104322254657745, 0.0025709252804517746, -0.01710239239037037, -0.011689186096191406, 0.0054514748044312, -0.011953584849834442, 0.0023708869703114033, 0.0015872593503445387, 0.01511244848370552, -0.011389998719096184, 0.005962876603007317, 0.04016070440411568, -0.003125813789665699, -0.026245007291436195, 0.0007997177890501916, -0.005482784938067198, -0.004272119142115116, 0.0012489339569583535, -0.009761862456798553, -0.02607801742851734, 0.012398887425661087, -0.0003254968614783138, -0.015376846306025982, 0.01584997959434986, 0.014848049730062485, -0.019022759050130844, -0.0185774564743042, 0.009365264326334, 0.00021460615971591324, 0.00755622424185276, 0.040856488049030304, 0.0037154913879930973, 0.015863895416259766, 6.0337595641613007e-05, 0.011911837384104729, -0.00037789816269651055, -0.02733043022453785, 0.010304574854671955, 0.023990662768483162, -0.014361000619828701, 0.0008353767334483564, 0.009448759257793427, -0.02198680303990841, 0.02251559868454933, -4.403013736009598e-05, 0.0021499753929674625, -0.017700767144560814, -0.036709610372781754, 0.04959554970264435, 0.0040077208541333675, -0.022000718861818314, -0.0015142018673941493, -0.004049468319863081, -0.0038476905319839716, -0.022348610684275627, -0.001591607928276062, -0.009079992771148682, 0.02076222188770771, 0.026773802936077118, 0.011786595918238163, 0.001091512618586421, 0.011605692096054554, -0.008954751305282116, 0.019231494516134262, -0.009573999792337418, -0.0032754074782133102, -0.030642367899417877, 0.025173498317599297, 0.0035258899442851543, 0.0036285181995481253, 0.007250078488141298, -0.009156528860330582, -0.0033867331221699715, -0.028095794841647148, 0.014013107866048813, -0.021485837176442146, -0.006881312467157841, 0.010269785299897194, 0.020191678777337074, 0.0019360214937478304, 0.013769582845270634, -0.01880010776221752, 0.019495893269777298, 0.026147596538066864, 0.02198680303990841, -0.014848049730062485, 0.00979665108025074, 0.014277506619691849, 0.003038840601220727, -0.003934663720428944, 0.010631592944264412, -0.005395811982452869, 0.016559680923819542, -0.01987161673605442, 0.012753737159073353, 0.03231225162744522, -0.017004983499646187, 0.025006510317325592, 0.024366388097405434, -0.0028631549794226885, 0.0007088308921083808, 0.01454190444201231, 0.026467658579349518, 0.03231225162744522, 0.012016205117106438, 0.01511244848370552, 0.02020559273660183, -0.01605871506035328, 0.009587915614247322, -0.014131391420960426, 0.008363334462046623, 0.027386093512177467, 0.0233366247266531, 0.0219589713960886, -0.013080756179988384, -0.018939264118671417, -0.023809758946299553, 0.013616510666906834, -0.00381638016551733, 0.01664317399263382, 0.029890919104218483, -0.03295237198472023, 0.019885532557964325, 0.04155227541923523, -0.002969261957332492, 0.02727476879954338, 0.0002359145728405565, 0.0027744423132389784, 0.020442159846425056, 0.005486263893544674, 0.015182026661932468, -0.6283215880393982, -0.027525249868631363, -0.03325852006673813, -0.04274902492761612, -0.0077162547968328, 0.004379965830594301, 0.00859990157186985, 0.002643982646986842, -0.02254343032836914, 0.04213673248887062, 0.009713157080113888, 0.007904116064310074, 0.013560847379267216, -0.004766126628965139, -0.0027935763355344534, -0.0350118950009346, 0.002137799048796296, -0.014472326263785362, -0.03860214725136757, 0.0154325095936656, -0.016267450526356697, 0.011396956630051136, -0.0042442879639565945, -0.006735197734087706, 0.018897518515586853, 0.021291017532348633, -0.006338600534945726, 0.013588679023087025, 0.010812497697770596, 0.017519863322377205, -0.023044396191835403, -0.016114378347992897, 0.0018786191940307617, 0.002183025237172842, 0.057388339191675186, -0.0154325095936656, -0.010381110943853855, -0.0063420794904232025, 0.04355613514780998, 0.044335413724184036, -0.020372582599520683, -0.012545001693069935, 0.024310724809765816, 0.021972887217998505, 0.011327378451824188, -0.022000718861818314, -0.008272882550954819, 0.016531849279999733, 0.0035363268107175827, -0.016406608745455742, 0.009956682100892067, -0.0058550299145281315, 0.010993401519954205, -0.0026805114466696978, 0.006015060469508171, -0.015460340306162834, 0.020372582599520683, 0.009921892546117306, -0.003251055022701621, -0.029556943103671074, 0.014214885421097279, 0.00784845370799303, 0.0019168873550370336, -0.0056462944485247135, -0.022807829082012177, -0.0024178526364266872, -0.0185774564743042, -0.0052636126056313515, -0.0030927639454603195, -0.009706199169158936, 0.012872020713984966, 0.03801768645644188, -0.013804372400045395, -0.00795282144099474, 0.014917627908289433, 0.02813754230737686, 0.02511783502995968, -0.023447951301932335, -0.008829510770738125, 0.004630448296666145, 0.012475423514842987, -0.01544642448425293, -0.0014533207286149263, -0.017617274075746536, 0.03913094475865364, 0.0044251917861402035, 0.0006066374480724335, 0.011556987650692463, 0.003687659977003932, 0.01584997959434986, -0.0017168492777273059, 0.02643982693552971, -0.014987207017838955, -0.028332361951470375, -0.024895183742046356, 0.033091530203819275, 0.0028214077465236187, -0.0155855817720294, -0.03328634798526764, -0.008759931661188602, -0.009469632059335709, -0.0074936035089194775, 0.008161556906998158, 0.020344750955700874, 0.0036285181995481253, -0.006189006846398115, 0.0048739733174443245, 0.025604885071516037, 0.033119361847639084, -0.030753692612051964, -0.02847151830792427, -0.04132962226867676, -0.00878080539405346, 0.022766081616282463, -0.004564349073916674, -0.027260852977633476, 0.018939264118671417, 0.003899874398484826, 0.013435606844723225, -0.0020647416822612286, -0.014138349331915379, 0.020010773092508316, -0.0081406831741333, 0.007959779351949692, 0.0279427208006382, 0.014166180975735188, 0.009059119038283825, -0.016086546704173088, -0.031866949051618576, -0.010221079923212528, 0.0013785238843411207, 0.021597163751721382, 0.01468106172978878, -0.0013332978123798966, -0.008620775304734707, -0.02585536614060402, 0.02239035815000534, -0.021819815039634705, 0.00423037214204669, -0.008293756283819675, -0.020010773092508316, -0.004985298961400986, -0.005663689225912094, -0.02669030800461769, -0.025020424276590347, -0.02481168881058693, -0.018382636830210686, -0.005848072003573179, 0.0021273624151945114, 0.005820240825414658, -0.006592561956495047, -0.005924608558416367, -0.032173093408346176, 0.026425911113619804, -0.005493221804499626, -0.023169636726379395, 0.01052026730030775, -0.020957041531801224, -0.009413969703018665, -0.006136822979897261, -0.0008819073555059731, 0.022738249972462654, -0.015279436483979225, -0.005079229827970266, -0.006790860556066036, -0.006683013867586851, -0.016072630882263184, 0.04901108890771866, -0.02438030205667019, -0.038407325744628906, 0.007931947708129883, 0.0038685640320181847, -0.004279077053070068, -0.007695381063967943, 0.011007317341864109, 0.037544552236795425, -0.007187458220869303, -0.00671084551140666, -0.005500179715454578, -0.025604885071516037, 0.000319843617035076, -0.001779469894245267, 0.006877833977341652, -0.017130224034190178, 0.013352111913263798, 0.011424788273870945, 0.013651300221681595, -0.010541141033172607, -0.02401849441230297, 0.0008479878306388855, 0.02598060853779316, 0.004832226317375898, -0.029473448172211647, 0.003357162233442068, -0.0023848027922213078, 0.04984603077173233, -0.005117497872561216, 0.001469845650717616, 0.026912959292531013, 0.024950847029685974, 0.006039413157850504, -0.016963236033916473, -0.003913789987564087, -0.01839655265212059, 0.009539211168885231, -0.032173093408346176, 0.007333572953939438, -0.0016707534668967128, 0.01646227017045021, 0.005719352047890425, 0.0015055045951157808, 0.0002201506868004799, -0.04572698473930359, -0.025451811030507088, 0.03353683277964592, 0.03612515330314636, -0.011236926540732384, 0.011153431609272957, -0.0018681824440136552, -0.0039311847649514675, 0.0233366247266531, 0.01738070696592331, 0.01015150174498558, 0.002416113158687949, -0.0067978184670209885, 0.013783498667180538, 0.022613009437918663, 0.013018135912716389, -0.018939264118671417, -0.06301028281450272, -0.009052161127328873, 0.00482178945094347, 0.016295282170176506, 0.005670647136867046, 0.04127395898103714, 0.030698029324412346, 0.024268977344036102, -0.001069769263267517, 0.03626430779695511, -0.004539996385574341, -0.03055887296795845, -0.0024039368145167828, 0.021485837176442146, -0.05939219892024994, -0.011111685074865818, -0.006756071466952562, 0.022960901260375977, 0.017366791144013405, 4.17742739955429e-05, 0.022320779040455818, 0.002217814326286316, -0.006143780890852213, -0.02208421193063259, 0.0009271333692595363, 0.0011210833908990026, -0.00046443642349913716, -0.0015933474060148, -0.00633512157946825, -0.003959015943109989, 0.021597163751721382, 0.001422010362148285, 0.014667145907878876, 0.014319253154098988, -0.011160389520227909, -0.00026983406860381365, -0.0021517148707062006, -0.0162813663482666, -0.04341697692871094, -0.00690914411097765, -0.006387305445969105, -0.021861562505364418, -0.014214885421097279, -0.013226871378719807, 0.0012402365682646632, 0.03295237198472023, -0.00426864018663764, 0.006557772867381573, 0.01133433636277914, 0.018994927406311035, -0.009629663079977036, -0.02213987521827221, -0.03384297713637352, -0.006108991336077452, 0.03403779864311218, 0.007229205220937729, -0.01418705377727747, -0.011877047829329967, -0.0042825560085475445, 0.007079611532390118, 0.015613413415849209, -0.024213314056396484, 0.001887316582724452, 0.0068360865116119385, 0.0026665956247597933, 0.012398887425661087, -0.0003796376404352486, 0.03709924966096878, -0.017547694966197014, -0.034260448068380356, 0.004752210807055235, -0.014903713017702103, 0.0262589231133461, -0.022251201793551445, -0.00947658997029066, 0.05249001458287239, -0.008314630016684532, -0.003230181522667408, -0.010729002766311169, 0.0016681442502886057, -0.031115500256419182, 0.018925350159406662, -0.01882793940603733, -0.0254935584962368, -0.0056462944485247135, 0.015682991594076157, -0.01454190444201231, 0.019523724913597107, -0.02213987521827221, 0.03058670461177826, -0.0005501049454323947, -0.0054723480716347694, -0.0025917987804859877, -0.029139472171664238, 0.015557750128209591, 0.04837096482515335, 0.01511244848370552, -0.016712753102183342, 0.002344795037060976, -0.03534587472677231, 0.004066862631589174, -0.009775778278708458, -0.006192485801875591, 0.027233021333813667, 0.005127934738993645, -0.008314630016684532, 0.016448354348540306, -0.004842662718147039, 0.007472729776054621, 0.0057123941369354725, 0.01809040829539299, -0.004094694275408983, 0.009163486771285534, 0.021875476464629173, -0.0251874141395092, 0.012663285247981548, -0.0003391951322555542, 0.024672532454133034, 0.010081923566758633, -0.026801634579896927, -0.021291017532348633, 0.014583651907742023, 0.020859630778431892, -0.009977555833756924, -0.013533016666769981, -0.004929636139422655, 0.02134668081998825, 0.02282174490392208, 0.023684518411755562, -0.0014359260676428676, 0.03977106511592865, 0.020247340202331543, 0.035735514014959335, 0.020539570599794388, -0.013860035687685013, 0.019913364201784134, 0.021541500464081764, 0.007702338974922895, -0.016239618882536888, -0.012496297247707844, 0.010833370499312878, 0.01649010181427002, 0.013185123912990093, 0.0016472707502543926, -0.031115500256419182, 0.01630919799208641, -0.013261660002171993, -0.035819005221128464, -0.017700767144560814, 0.003077108645811677, 0.013045966625213623, -0.01044373121112585, -0.01572473905980587, -0.017366791144013405, -0.008335502818226814, -0.02844368666410446, -0.0020560442935675383, 0.021917223930358887, 0.01180746965110302, 0.017770346254110336, 0.0074936035089194775, -0.0030231853015720844, 0.0074936035089194775, -0.031922612339258194, 0.003353683277964592, 0.014778471551835537, -0.006536899134516716, -0.033731650561094284, -0.0011576120741665363, 0.007618844509124756, -0.005180118605494499, -0.008627733215689659, -0.007187458220869303, -0.007100484799593687, 0.02076222188770771, -0.013519100844860077, -0.03712708130478859, -0.01360259484499693, -0.018535709008574486, -0.011362167075276375, 0.01414530724287033, 0.01159177627414465, 0.012621537782251835, 0.008648606017231941, 0.01052026730030775, -3.084827767452225e-05, -0.005886340048164129, 0.028638506308197975, -0.015808232128620148, -0.006943933200091124, 0.018048660829663277, 0.009059119038283825, 0.03142164647579193, 0.006474278401583433, -0.0027379135135561228, 0.0013907001120969653, 0.006895228289067745, 0.008050231263041496, -0.010951654054224491, -0.020442159846425056, 0.006178569979965687, -0.001570734428241849, 0.018967095762491226, -0.02127710171043873, -0.00824505090713501, 0.035735514014959335, -0.01765902154147625, 0.029306460171937943, 0.017158055678009987, 0.023726265877485275, 0.021291017532348633, -0.0038233380764722824, 0.01722763478755951, 0.002320442581549287, -0.023239215835928917, -0.007034385576844215, -0.025451811030507088, 0.005374938249588013, 0.025326570495963097, -0.014764555729925632, 0.034594424068927765, 0.018285227939486504, -0.022933069616556168, -0.020400414243340492, 0.0018960138550028205, 0.014569736085832119, 0.006801297422498465, -0.02020559273660183, -0.025423981249332428, -0.0175059475004673, 0.010499394498765469, -0.008231135085225105, 0.01001234445720911, -0.026272837072610855, 0.020567402243614197, -0.011181263253092766, 0.002969261957332492, 0.0065890830010175705, 0.0003585466474760324, -0.008391166105866432, -0.03320285677909851, -0.005848072003573179, -0.0020543048158288, 0.01753377914428711, 0.028944652527570724, 0.008182430639863014, -0.0014550602063536644, -0.017895586788654327, -0.002701384946703911, 0.017130224034190178, -0.022738249972462654, -0.013533016666769981, -0.013658257201313972, 0.016977151855826378, 0.018841855227947235, 0.023086143657565117, 0.01054809894412756, 0.0208874624222517, 0.02048390731215477, -0.007688423153012991, 0.033063698559999466, 0.009177402593195438, -0.004369528964161873, -0.0077927908860147, -0.0025465728249400854, 0.02094312570989132, -0.001485500717535615, 0.03743322938680649, -0.00263702473603189, -0.01953764073550701, 0.01328253373503685, 0.012781568802893162, 0.01849396340548992, -0.025883197784423828, -0.04272119328379631, -0.0052636126056313515, 0.00750056141987443, -0.020623063668608665, 0.019064506515860558, -0.026634646579623222, -0.02183373086154461, 0.0337873138487339, 0.01515419501811266, -0.009608789347112179, 0.0045295595191419125, 0.016114378347992897, -0.0110560217872262, 0.024004578590393066, 0.02223728597164154, 0.04489204287528992, -0.025757957249879837, 0.0014359260676428676, -0.031616464257240295, 0.01651793345808983, 0.011543071828782558, -0.007131795398890972, 0.025340486317873, 0.0061716120690107346, -0.002729216357693076, -0.007827579975128174, -0.002976219868287444, -0.026425911113619804, -0.02653723582625389, -0.007959779351949692, -0.014583651907742023, -0.015516003593802452, -0.02282174490392208, -0.015307268127799034, -0.011932711116969585, 0.020163847133517265, 0.01486196555197239, 0.0053992909379303455, 0.011570902541279793, -0.01667100563645363, -0.018911434337496758, 0.00926089659333229, -0.03556852415204048, 0.041969746351242065, -0.007291825953871012, 0.025938861072063446, 0.019050590693950653, -0.01349822711199522, 0.005013130139559507, 0.006529941223561764, 0.01540467794984579, 0.020219508558511734, 0.024853436276316643, 0.011842259205877781, -0.024032410234212875, 0.019523724913597107, 0.003167560789734125, 0.03314719349145889, -0.0008305932278744876, -0.01946806162595749, 0.004480854608118534, 0.01854962483048439, -0.002431768225505948, -0.032785385847091675, 0.026523320004343987, -0.031310319900512695, 0.007584055420011282, -0.005886340048164129, 0.00017546825984027237, -0.01969071291387081, -0.0007418806781060994, -0.025938861072063446, 0.019301073625683784, 0.007584055420011282, 0.03437177464365959, 0.0020195157267153263, -0.0032423576340079308, 0.00809197872877121, -0.012350182048976421, -0.017032815143465996, -0.004616532940417528, -0.018967095762491226, 0.008098936639726162, -0.007069174665957689, -0.004842662718147039, 0.023670602589845657, -0.0173528753221035, -0.03228441998362541, -0.02689904347062111, 0.002424810314550996, 0.027316514402627945, -0.027831396088004112, -0.015961306169629097, -0.015808232128620148, 0.021611079573631287, -0.003224963089451194, -0.0020560442935675383, -0.015975221991539, 0.0001395918516209349, -0.0033658593893051147, -0.02152758464217186, 0.018173901364207268, 0.001256761490367353, 0.018744444474577904, -0.016476185992360115, 0.006780423689633608, -0.018020829185843468, -0.0020038604270666838, -0.012489339336752892, -0.021791983395814896, -0.055328816175460815, 0.009497463703155518, -0.022988732904195786, 0.0011489148018881679, 0.015961306169629097, 0.01151524018496275, -0.030391884967684746, 0.013240786269307137, 0.031087668612599373, -0.014305337332189083, 0.012266688048839569, -0.02119360864162445, 0.003374556777998805, -0.042081069201231, -0.004286034964025021, -0.012725905515253544, -0.022279033437371254, 0.03350900113582611, -0.019398482516407967, -0.0037537594325840473, -0.027066033333539963, -0.009434843435883522, 0.007479687687009573, -0.024241145700216293, -0.010854244232177734, 0.003673744387924671, 0.008293756283819675, 0.021416259929537773, -0.0028596760239452124, -0.013915698044002056, 0.013240786269307137, -0.008516407571732998, -0.000661430531181395, 0.0054723480716347694, -0.013748710043728352, 0.018299143761396408, -0.0013793936232104897, -0.02223728597164154, 0.0020821362268179655, -0.02506217174232006, -0.010061049833893776, -0.001111516379751265, 0.0024422050919383764, -0.013338197022676468, 0.026453742757439613, -0.02300264872610569, -0.0005875033675692976, -0.016837995499372482, -0.0036424340214580297, -0.01740853860974312, 0.008655563928186893, -0.013825246132910252, 0.021597163751721382, 0.005093145649880171, 0.012405844405293465, -0.009838398545980453, -0.009052161127328873, 0.005040961783379316, -0.016323113813996315, -0.019078422337770462, -0.00720137357711792, 0.001212405157275498, 0.04016070440411568, 0.0205813180655241, -0.01633702963590622, -0.018786191940307617, -0.0011793554294854403, -0.014075728133320808, -0.00918436050415039, 0.004188625141978264, 0.029306460171937943, 0.016977151855826378, 0.0035224109888076782, 0.0013541713124141097, 0.031004175543785095, -0.0340934619307518, 0.01811823807656765, -0.009650536812841892, 0.006449926178902388, 0.009775778278708458, 0.027511335909366608, 0.008133725263178349, 0.0065890830010175705, 0.004459981340914965, -0.011981415562331676, 0.02155541628599167, -0.02404632605612278, -2.3836068066884764e-05, -0.005858508870005608, 0.0004692199290730059, -0.021903308108448982, 0.0008432043250650167, -0.018034745007753372, -0.020970957353711128, -0.0030840665567666292, -6.05006716796197e-05, -0.027998384088277817, 0.006818692199885845, -0.00221433537080884, 0.016629260033369064, 0.0002772267907857895, 0.002729216357693076, -0.012002289295196533, -0.015863895416259766, 0.010798581875860691, 0.006662140600383282, -0.008787763305008411, 0.02140234410762787, -0.027191273868083954, 0.022042466327548027, -0.013226871378719807, 0.018688783049583435, 0.04416842386126518, 0.020289087668061256, 0.004379965830594301, -0.023948917165398598, 0.00698568020015955, -0.031616464257240295, -0.01689365692436695, 0.004338218830525875, -0.0013045966625213623, 0.012155362404882908, -0.012802442535758018, 0.04219239577651024, -0.031950443983078, -0.011570902541279793, -0.03314719349145889, -0.013407775200903416, -0.027316514402627945, 0.01962113380432129, 0.013018135912716389, -0.0164344385266304, -0.01483413390815258, -0.010916865430772305, 0.011062979698181152, -0.004056425765156746, -0.004818310495465994, -0.004947030451148748, 0.00140287633985281, -0.008746015839278698, 0.01569690741598606, -0.008231135085225105, 0.014625398442149162, -0.006258585024625063, 0.017283296212553978, -0.014388831332325935, -0.016350945457816124, 0.19292724132537842, -0.0007127446588128805, 0.0110560217872262, 0.027970552444458008, 0.00039203130290843546, 0.03289670869708061, 0.008439870551228523, -0.01280940044671297, -0.005434080027043819, 0.010861202143132687, -0.02035866677761078, 0.027372177690267563, -0.011633523739874363, 0.007771917153149843, -0.019802037626504898, -0.0016542286612093449, 0.006376868579536676, -0.044335413724184036, -0.017297212034463882, 0.0024213313590735197, 0.011856175027787685, -0.004595659207552671, -0.018229564651846886, -0.038156844675540924, 0.035485029220581055, -0.018716614693403244, -0.005948960781097412, -0.0005505398148670793, 0.03793419152498245, 0.0018751403549686074, -0.014500156976282597, 0.013665215112268925, 0.005809803958982229, 0.014333168976008892, -0.03765587881207466, -0.0005927217425778508, 0.032173093408346176, -0.018187817186117172, 0.03325852006673813, -0.023016564548015594, 0.006561251822859049, -0.020831799134612083, -0.012217982672154903, -0.03236791491508484, 0.02325313165783882, 0.021541500464081764, -0.007771917153149843, -0.010555056855082512, -0.008975625038146973, 0.02051173895597458, -0.012155362404882908, -0.020010773092508316, 0.0012202328070998192, 0.010882075875997543, 0.00439040269702673, -0.006394263356924057, -0.004174709320068359, 0.0155855817720294, 0.01603088341653347, 0.0014924586284905672, -0.012614579871296883, 0.021458005532622337, 0.001212405157275498, 0.009469632059335709, -0.008864299394190311, -0.0008940835832618177, -0.032228756695985794, 0.00712483748793602, 0.0110560217872262, -0.011932711116969585, -0.013978318311274052, -0.009413969703018665, 0.005496700759977102, 0.0064464472234249115, -0.0254935584962368, -0.01849396340548992, 0.011216052807867527, 0.02419939823448658, -0.0009767080191522837, 0.027970552444458008, -0.027873143553733826, -0.02364277094602585, -0.012391929514706135, 0.004853099584579468, 0.007424024865031242, -0.0368487685918808, 0.04341697692871094, -0.019120169803500175, -0.00690914411097765, -0.008975625038146973, -0.012447591871023178, 0.011508282274007797, 0.004905283451080322, 0.002390021225437522, 0.005441037937998772, 0.005207949783653021, -0.00435213465243578, 0.03862997889518738, 0.00407034158706665, -0.009365264326334, -0.014207927510142326, 0.032757554203271866, 0.023294879123568535, 0.008300714194774628, 0.016545765101909637, 0.0003424566239118576, -0.013331239111721516, -0.0008188518695533276, 0.01836872100830078, -0.03968757018446922, -0.008175472728908062, -0.00824505090713501, 0.004585222341120243, -0.02419939823448658, 0.004602617118507624, 0.018201733008027077, -0.0170467309653759, -0.007333572953939438, 0.015947390347719193, -0.004052947275340557, 0.0034180432558059692, -0.01357476320117712, -0.03089284896850586, 0.015098532661795616, -0.00615769624710083, -0.020901378244161606, -0.025423981249332428, 0.0015455122338607907, -0.007472729776054621, -0.005987229291349649, 0.03709924966096878, -0.025911029428243637, -0.0006936105783097446, -0.004640885163098574, 0.00401467876508832, -0.0028631549794226885, -0.0008584246388636529, -0.014555820263922215, -0.02177806757390499, 0.00381638016551733, -0.012649369426071644, 0.002835323568433523, -0.0325627326965332, 0.004675674717873335, 0.0025465728249400854, -0.02666247822344303, -0.0017020638333633542, -0.014527988620102406, -0.01944022998213768, -0.0233366247266531, -0.014458410441875458, 0.004209498874843121, 0.003179736901074648, -0.03618081659078598, 0.001802082872018218, -0.008446828462183475, -0.01605871506035328, -0.027622660622000694, 0.009219150058925152, -0.022348610684275627, -0.025312654674053192, 0.01852179318666458, 0.040494680404663086, 0.00734053086489439, -0.02284957654774189, -8.327675459440798e-05, -0.1781209409236908, 0.008947793394327164, 0.00389639544300735, -0.010068007744848728, 0.03381514549255371, -0.008940836414694786, 0.0340934619307518, -0.005841114092618227, 0.007145710755139589, 0.003955536987632513, -0.0041781882755458355, 0.0013272097567096353, -0.014333168976008892, 0.0013254702789708972, -0.014374916441738605, 0.005093145649880171, -0.012322350405156612, -0.00608116015791893, 0.037516720592975616, 0.009295686148107052, 0.025604885071516037, -0.023545360192656517, 0.024616869166493416, 0.02213987521827221, -0.016754500567913055, 0.04004937782883644, 0.011167347431182861, -0.0032214841339737177, 0.0015228992560878396, -0.04458589479327202, 0.002553530503064394, -0.005447995848953724, 0.00972011499106884, -0.009650536812841892, -0.004564349073916674, -0.010318489745259285, -0.011570902541279793, -0.03771154209971428, -0.01159177627414465, 0.011723975650966167, 0.003952058032155037, 0.015543834306299686, 0.002449162770062685, -0.008488575927913189, -0.0005788060370832682, 0.014263590797781944, 0.0185774564743042, -0.02220945432782173, -0.0015863896114751697, -0.053241461515426636, 0.028722001239657402, -0.023684518411755562, 0.00889213103801012, 0.0025883198250085115, 0.023113975301384926, -0.006088118068873882, -0.047619517892599106, 0.02101270481944084, 0.0058167618699371815, 0.007758001796901226, -0.011960542760789394, -0.02168065682053566, -0.004247766919434071, 0.032200925052165985, 0.020344750955700874, -0.02122144028544426, -0.0299465823918581, 0.007270952221006155, -0.02552139014005661, 0.0010558535577729344, 0.00442867074161768, -0.017422454431653023, -0.00507575087249279, -0.026704223826527596, 0.0048461416736245155, 0.027135610580444336, -0.03236791491508484, -0.005086187738925219, 0.015321183949708939, -0.001676841638982296, -0.004063383676111698, 0.01497329119592905, -0.00397641072049737, -0.012197108939290047, -0.0059211296029388905, -0.018814023584127426, -0.009372222237288952, 0.013032050803303719, -0.0069404542446136475, -0.01910625398159027, 0.018229564651846886, -0.03542936593294144, -0.0064186155796051025, -0.00209605204872787, 0.01291376817971468, 0.02205638214945793, -0.002094312570989132, -0.03503972664475441, 0.013686088845133781, -0.023935001343488693, 0.015307268127799034, -0.014875881373882294, -0.039353594183921814, -0.0065125469118356705, 0.003162342356517911, 0.02488126792013645, -0.03740539774298668, -0.005141850560903549, 0.04152444377541542, 0.005802846048027277, -0.02376801148056984, 0.0016063933726400137, 0.010575930587947369, 0.02552139014005661, -0.003122334834188223, 0.03885262832045555, -0.005886340048164129, -0.012496297247707844, 0.010819455608725548, -0.007994568906724453, 0.051209770143032074, -0.0018125196220353246, -0.0012384970905259252, 0.021903308108448982, 0.000586198759265244, -0.01155002973973751, -0.11722584068775177, -0.03303586691617966, -0.004414755385369062, 0.02643982693552971, 0.0010228038299828768, 0.020873546600341797, -0.0008849514415487647, 0.012364097870886326, 0.004647843074053526, 0.02014993131160736, 0.01738070696592331, -0.03259056434035301, -0.021360596641898155, 0.0029414307791739702, -0.006182048935443163, -0.02745567262172699, -0.023197468370199203, -0.019913364201784134, -0.027525249868631363, 0.048565786331892014, 0.016754500567913055, -0.000690566492266953, -0.019273241981863976, -0.008300714194774628, -0.000659691053442657, -0.01781209371984005, -0.036653947085142136, 0.013595636934041977, 0.007083090487867594, 0.03200610727071762, 0.006752592511475086, -0.0139713604003191, 0.0016081328503787518, 0.005068792961537838, -0.003899874398484826, -0.015168110840022564, -0.009761862456798553, -0.016476185992360115, 0.047369036823511124, -0.03356466442346573, 0.01022803783416748, 0.012169278226792812, 0.007194415666162968, -0.0047313375398516655, 0.0006249017897062004, -0.010109754279255867, -0.029222965240478516, 0.03167212754487991, 0.017394622787833214, -0.027539165690541267, -0.030419716611504555, -0.02966826781630516, -0.029250796884298325, -0.023837590590119362, 0.03300803527235985, -0.02017776295542717, -0.004609575029462576, 0.01544642448425293, 0.002515262458473444, 0.008182430639863014, -0.011445662006735802, -0.005395811982452869, -0.00541320675984025, 0.02419939823448658, 0.011577860452234745, 0.0056462944485247135, -0.03211743012070656, 0.017672937363386154, 0.011459576897323132, -0.013073798269033432, -0.004571306984871626, 0.02361493930220604, -0.01600305363535881, 0.018535709008574486, -0.01903667487204075, 0.024115905165672302, 0.014333168976008892, -0.005204471293836832, 0.006763029377907515, 0.00012176235759397969, -0.017060644924640656, -0.026787718757987022, -0.031894780695438385, 0.006790860556066036, 0.01486196555197239, 0.01151524018496275, -0.008725143037736416, 0.021583247929811478, 0.014444494619965553, -0.0030492772348225117, 0.021791983395814896, 0.019273241981863976, 0.026370247825980186, 0.019078422337770462, -0.002348273992538452, 0.0029675227124243975, 0.009824482724070549, -0.006554293911904097, 0.014931543730199337, 0.0161282941699028, -0.03885262832045555, -0.018048660829663277, -0.055968936532735825, 0.015655159950256348, -0.008759931661188602, -0.0062968535348773, 0.01500112283974886, -0.0014402747619897127, -0.0029031625017523766, -0.005628899671137333, 0.00033288958366028965, -0.006738676689565182, -0.03208959847688675, -0.022766081616282463, -0.0005401030066423118, 0.0032423576340079308, -0.0008827770943753421, -0.03119899518787861, 0.018591372296214104, -0.018299143761396408, 0.019203662872314453, 0.013240786269307137, 0.005642815493047237, 0.0040355524979531765, 0.0006549075478687882, 0.02849934995174408, -0.01867486722767353, -0.008655563928186893, 5.1749000704148784e-05, 0.023475782945752144, -0.025632716715335846, -0.026036271825432777, 0.005228823516517878, 0.00896866712719202, -0.011174305342137814, 0.011508282274007797, -0.011348252184689045, 0.011097769252955914, -0.005107061006128788, 0.012057952582836151, 0.014486242085695267, 0.020692642778158188, 0.007368362043052912, -0.03490057215094566, 0.017060644924640656, -0.026648562401533127, 0.0025239598471671343, -0.013623468577861786, -0.01288593653589487, 0.009921892546117306, 0.013004220090806484, 0.013101629912853241, 0.0205813180655241, -0.0010558535577729344, -0.02883332595229149, -0.02284957654774189, 0.01913408562541008, -0.0066934507340192795, -0.00041225255699828267, -0.00942788552492857, 0.00645688408985734, 0.010715087875723839, 0.04533734545111656, 0.014597566798329353, 0.001974289771169424, -0.01033240556716919, 0.0031153769232332706, -0.007855411618947983, -0.023545360192656517, 0.019231494516134262, 0.01854962483048439, -0.005454953759908676, -0.015168110840022564, -0.005681083537638187, 0.008252008818089962, 0.011765723116695881, 0.022306863218545914, 0.0036772231105715036, -0.03331417962908745, 0.003045798512175679, -0.022529514506459236, 0.03334201127290726, 0.027692239731550217, 0.014194011688232422, -0.01187009084969759, 0.011556987650692463, 0.04158010706305504, 0.01188400574028492, 0.007277910131961107, 0.0035119743552058935, 0.01237801369279623, -0.0007157887448556721, 0.0015950868837535381, -0.001632485305890441, -0.010102796368300915, -0.017088476568460464, 0.005757620092481375, 0.019607217982411385, 0.0027535688132047653, -0.002283914014697075, -0.011640481650829315, 0.005444516893476248, -0.006084639113396406, -0.027873143553733826, -0.0011593515519052744, 0.0011176045518368483, -0.03523454815149307, 0.0069021862000226974, -0.000660560792312026, -0.03420478478074074, 6.816517998231575e-05, 0.016323113813996315, -0.003604165744036436, 0.007514476776123047, 0.01882793940603733, 0.01137608289718628, -0.046478431671857834, 0.018104322254657745, -0.021416259929537773, -0.007375319954007864, -0.015863895416259766, 0.025256991386413574, -0.010951654054224491, 0.01689365692436695, 0.03826817125082016, 0.00028896817821078, 0.02109619788825512, 0.016323113813996315, 0.024338556453585625, -0.02340620383620262, 0.004811352584511042, 0.02465861663222313, -0.003019706578925252, 0.013880908489227295, -0.013706962577998638, -0.021332764998078346, -0.0004966164706274867, -0.013407775200903416, -0.0050166090950369835, 0.009622705169022083, -0.0033989092335104942, 0.0819912925362587, 0.02251559868454933, -0.00043312611524015665, -0.0014002671232447028, -0.01312946155667305, -0.0002578752755653113, 0.01692148856818676, 0.0019360214937478304, -0.0042060199193656445, -0.025730125606060028, 0.0029275149572640657, 0.012496297247707844, -0.013693046756088734, -0.027984468266367912, -0.006644745822995901, 0.014625398442149162, -0.005677604582160711, 0.007563181687146425, -0.004432149697095156, 0.005127934738993645, 0.006856960244476795, 0.003708533477038145, 0.012120572850108147, 0.011556987650692463, -0.014117475599050522, -0.01486196555197239, 0.022793913260102272, 0.01515419501811266, -0.01679624803364277, -0.032757554203271866, 0.0037572383880615234, -0.019454145804047585, -0.02315572090446949, -0.021179692819714546, -0.0005748922703787684, 0.02272433415055275, -0.013059882447123528, -0.0277896486222744, 0.03089284896850586, 0.004668716806918383, -0.003353683277964592, -0.00720137357711792, -0.013011178001761436, 0.0042164563201367855, -0.02266867272555828, -0.001050635240972042, -0.013700004667043686, -0.004359092563390732, -0.03492840379476547], "a19ef6b2-886a-49f0-972c-adb25d81ea44": [0.023240525275468826, 0.011797985062003136, -0.006182663608342409, -0.028818251565098763, -0.02717774547636509, -0.013759758323431015, -0.005577726289629936, -0.008667348884046078, -0.015133683569729328, -0.03685674071311951, -0.005512789357453585, 0.017744824290275574, -0.007177221123129129, 0.015147354453802109, -0.017621787264943123, -0.020451663061976433, 0.021723056212067604, 0.01319925207644701, -0.001194494660012424, -0.005834055598825216, 0.004942029714584351, 0.007436968386173248, -0.016965584829449654, -0.01722533069550991, -0.015817228704690933, 0.027560530230402946, 0.008291399106383324, -0.018264319747686386, 0.013759758323431015, -0.011428870260715485, 0.01007545180618763, -0.014135708101093769, -0.03177116811275482, -0.02030128240585327, -0.02117622084915638, -0.014053682796657085, -0.02388305775821209, 0.030267367139458656, 0.027164073660969734, -0.017990902066230774, 0.027697239071130753, -0.006247600074857473, -0.00748481648042798, 0.00643557496368885, -0.021135207265615463, 0.007512158248573542, 0.026945339515805244, -0.044977255165576935, -0.021846095100045204, 0.009849881753325462, 0.008352918550372124, 0.03168914094567299, -0.037266865372657776, -7.353448017966002e-05, -0.01971343532204628, -0.008147855289280415, 0.0062954481691122055, 0.03833319619297981, -0.026043059304356575, -0.002055761171504855, 0.005194941069930792, -0.0027991163078695536, -0.034751422703266144, -0.008332411758601665, -0.01934432052075863, -0.0236643236130476, -0.0023872805759310722, 0.004572915378957987, -0.00413544662296772, 0.013472669757902622, 0.020561030134558678, 0.011422035284340382, 0.01256355457007885, 0.0025940528139472008, 0.03920813277363777, -0.009945577941834927, -0.018360015004873276, 0.011750136502087116, -0.005437599495053291, 0.004402028862386942, 0.018674446269869804, -0.02605673111975193, 0.007361778523772955, 0.00775139918550849, 0.022310905158519745, -0.02630280703306198, 0.014067353680729866, 0.0066713979467749596, 0.012180769816040993, -0.022242549806833267, 0.01734836958348751, 0.009884059429168701, 0.02030128240585327, 0.037540286779403687, -0.0036056991666555405, 0.023021791130304337, -0.03609117120504379, 0.020328624173998833, -0.02583799697458744, -0.0050206370651721954, 0.0022950018756091595, 0.017649129033088684, -0.020191915333271027, -0.0066919042728841305, -0.017990902066230774, -0.019891155883669853, 0.021969132125377655, -0.030404075980186462, 0.0030554456170648336, -0.009706337004899979, -0.020670397207140923, 0.04207902401685715, 0.007737728301435709, -0.03054078482091427, 0.00019523750233929604, 0.0017908875597640872, 0.018947863951325417, -0.02381470426917076, -0.007040512282401323, -0.02154533565044403, 0.018742801621556282, 0.008838235400617123, 0.03600914403796196, -0.009726843796670437, 0.03445066139101982, -0.009521780535578728, 0.028408125042915344, -0.01753976196050644, -0.016992926597595215, -0.03445066139101982, -0.005082156043499708, 0.006623549852520227, -0.012255960144102573, 0.020684069022536278, 0.013465833850204945, -0.008243551477789879, -0.011517731472849846, -0.003711648751050234, -0.026576224714517593, -0.00973367877304554, 0.013171910308301449, 0.007724057417362928, -0.018086597323417664, 0.020410649478435516, -0.018277989700436592, 0.022803056985139847, 0.018920522183179855, 0.03130635619163513, 0.017020268365740776, -0.008858741261065006, 0.010902540758252144, 0.004613928031176329, 0.00566658703610301, 0.01263874489814043, -0.00011032841575797647, 0.010424059815704823, 0.0010714565869420767, 0.008441779762506485, 0.004460130352526903, 0.010553932748734951, 0.030950913205742836, 0.017922546714544296, 0.008728868328034878, 0.0034091800916939974, 0.012378998100757599, 0.011962035670876503, 0.019645079970359802, 0.0021890525240451097, -0.005492283031344414, 0.015311405062675476, -0.006630385294556618, -0.000533165002707392, -0.002148039871826768, 0.00855114683508873, 0.028435466811060905, 0.0011876592179760337, 0.009603805840015411, -0.006907220929861069, -0.005533295683562756, -0.030704835429787636, 0.01639140583574772, -0.0191529281437397, 0.017375711351633072, 0.04194231331348419, -0.021258246153593063, -0.007881272584199905, 0.04084864258766174, 0.012481529265642166, 0.032728128135204315, 0.009767856448888779, -0.003667218377813697, 0.013575201854109764, 0.012556719593703747, 0.0022386095952242613, -0.6089564561843872, 0.0033955092076212168, -0.023267867043614388, -0.04847700148820877, -0.0013551277806982398, 0.006131397560238838, 0.027013693004846573, 0.0034775345120579004, -0.030732177197933197, 0.060589417815208435, -0.001526868436485529, 0.030294708907604218, 0.008865577168762684, -0.0011885137064382434, 0.018401028588414192, -0.009453426115214825, 0.013998999260365963, -0.015420773066580296, -0.03177116811275482, 0.014682544395327568, -0.020328624173998833, 0.029091671109199524, 0.010437730699777603, -0.004613928031176329, 0.0441569983959198, -0.006756841205060482, -0.009460261091589928, 0.014053682796657085, 0.00972000788897276, 0.008332411758601665, -0.02226989157497883, 0.00486683938652277, 0.0072592468932271, -0.01369823981076479, 0.04527801275253296, -0.003626205725595355, -0.004193547647446394, 0.014791911467909813, 0.023842046037316322, 0.039290159940719604, -0.003923547454178333, 2.380391742917709e-05, 0.034341294318437576, 0.00594000518321991, -0.012823302298784256, -0.03554433584213257, -0.010594945400953293, 0.010752161033451557, 0.009193678386509418, -0.02242027223110199, 0.008100006729364395, -0.03125167265534401, 0.01026000827550888, 8.133116352837533e-05, 0.014354442246258259, -0.029064329341053963, 0.011804820038378239, -0.0029802557546645403, -0.005222282838076353, -0.026658250018954277, 0.01002760324627161, -0.002448799554258585, -0.015434443950653076, 0.015024316497147083, -0.0064834230579435825, 0.008120513521134853, -0.01089570578187704, 0.0025444957427680492, -0.006705575156956911, -0.008168361149728298, -0.0010364248882979155, 0.025605591014027596, 0.00617924565449357, 0.007648867089301348, 0.015434443950653076, 0.008667348884046078, 0.03822382912039757, -0.018387356773018837, -0.0021292422898113728, 0.017703812569379807, 0.0341499038040638, -0.0031682306434959173, -0.01306254230439663, -0.019043561071157455, 0.04475851729512215, -0.0037936740554869175, -0.020096220076084137, 0.007272917777299881, 0.034067876636981964, -0.006394562311470509, 0.006777347531169653, 0.026917997747659683, -0.005413675680756569, -0.0319625586271286, -0.0174440648406744, 0.009863552637398243, 0.008291399106383324, -0.01102557871490717, -0.019877485930919647, -0.025386856868863106, -0.029064329341053963, -0.02873622626066208, 0.02105318196117878, 0.017047610133886337, -0.0013192415935918689, -0.024539262056350708, 0.0010603490518406034, 0.0013764884788542986, 0.03980965539813042, -0.028216732665896416, -0.011962035670876503, -0.04166889563202858, -0.007170385681092739, 0.014245075173676014, 0.00387911731377244, -0.03371243551373482, 0.018865838646888733, -0.014983303844928741, 0.007737728301435709, -0.008817728608846664, -0.003824433544650674, 0.033876486122608185, -0.000777532288338989, -0.004542155656963587, -0.0023975337389856577, 0.023090146481990814, 0.013985328376293182, -0.011558744125068188, -0.027697239071130753, -0.023035462945699692, 0.02873622626066208, 0.01983647234737873, -0.008824564516544342, -0.005253042560070753, 0.019412674009799957, -0.012556719593703747, 0.009918236173689365, -0.016063304618000984, 0.026917997747659683, -0.0062954481691122055, -0.016063304618000984, -0.0076215253211557865, 0.0038927881978452206, -0.015994951128959656, -0.01207823771983385, -0.03901674225926399, -0.026535212993621826, -0.0038346867077052593, -0.013465833850204945, -0.020684069022536278, -0.013828112743794918, 0.0022625336423516273, -0.02354128658771515, 0.01051292009651661, -0.008161526173353195, -0.0149422911927104, -0.015789886936545372, -0.01026000827550888, -0.005707599688321352, 0.0016490520210936666, 0.0029563317075371742, 0.035134207457304, -0.017799509689211845, -0.004460130352526903, -0.02313115820288658, -0.012912162579596043, -0.045633457601070404, 0.013130897656083107, -0.004948865156620741, -0.03628256171941757, -0.015461785718798637, 0.0009834502125158906, -0.003187027992680669, -0.00256500206887722, 0.019357990473508835, 0.04779345914721489, -0.033876486122608185, -0.005591397173702717, -0.014340771362185478, -0.008667348884046078, -0.013342795893549919, -0.004542155656963587, -0.025414198637008667, -0.019522041082382202, 0.020506346598267555, -0.014914949424564838, 0.014573177322745323, -0.023992424830794334, -0.0298845823854208, 0.015120012685656548, 0.04500459507107735, -0.0016294000670313835, -0.012495200149714947, 0.00032126609585247934, -0.01859242096543312, 0.013595707714557648, 0.0005088137113489211, -0.004316586069762707, 0.018879510462284088, 0.01550279837101698, 0.02397875487804413, -0.00511633325368166, -0.003053736872971058, -0.037704337388277054, 0.013458998873829842, -0.01934432052075863, 0.024238500744104385, -0.00115433637984097, 0.007942792028188705, -0.020779764279723167, -0.013288112357258797, -0.004914687946438789, -0.037950411438941956, -0.019016219303011894, 0.026685591787099838, 0.03034939244389534, -0.005844308994710445, 0.009972919709980488, -0.0031716483645141125, 0.006285195238888264, 0.02792964316904545, -0.0006925163906998932, 0.019891155883669853, -0.003065698780119419, -0.017854193225502968, 0.009439755231142044, 0.02076609432697296, 0.016405077651143074, 0.00769671518355608, -0.014696215279400349, -0.0025000653695315123, 0.004227725323289633, 0.014778240583837032, -0.01365039125084877, 0.030677493661642075, 0.011251148767769337, 0.03382180258631706, -0.005270130932331085, 0.04456712678074837, 0.004627598915249109, -0.025332173332571983, 0.004408864304423332, 0.004808738362044096, -0.040001045912504196, 0.010827351361513138, -0.0012397795217111707, 0.056542832404375076, 0.00935772992670536, 0.002571837743744254, 0.007354943081736565, 0.035927120596170425, -0.01656912826001644, -0.0170749519020319, -0.004531902726739645, 0.0062065874226391315, -0.009603805840015411, -0.002341141225770116, -0.01111443992704153, 0.005888739135116339, 0.028845593333244324, -0.01971343532204628, 0.0062578534707427025, 0.003164812922477722, -0.021367613226175308, -0.01080684456974268, -0.009412413462996483, 0.0026521540712565184, -0.042899277061223984, 0.026439515873789787, -0.025988375768065453, -0.03141572326421738, -0.026767617091536522, -0.024757996201515198, 0.010362540371716022, 0.03691142424941063, 0.016268368810415268, 0.01732102781534195, 0.0324547104537487, 0.0031767748296260834, -0.004402028862386942, -0.02285774052143097, -0.02397875487804413, 0.02898230403661728, 0.0061382330022752285, -0.012303807772696018, -0.04060256481170654, -0.014354442246258259, -0.037239525467157364, -0.007949627004563808, 0.014409125782549381, -0.030513443052768707, 0.005167599301785231, 0.0020130397751927376, 0.021353941410779953, -0.004094433970749378, 0.011285326443612576, 0.030732177197933197, 0.0033459521364420652, -0.01313773263245821, -0.027109390124678612, -0.022187866270542145, -0.008325576782226562, 0.0017490204190835357, -0.008318740874528885, 0.02273470349609852, -0.0032724712509661913, 0.0004942883970215917, -0.023965083062648773, 0.009255197830498219, -0.015543811023235321, 0.035708386451005936, -0.014040011912584305, -0.020123561844229698, -0.011059756390750408, 0.023117488250136375, -0.017717482522130013, 0.007970133796334267, -0.012091908603906631, 0.017744824290275574, -0.0014636404812335968, 0.0019429763779044151, -0.004374687094241381, -0.02205115742981434, 0.003855193266645074, 0.03983699530363083, 0.010430894792079926, 0.009993426501750946, 0.015489127486944199, -0.022844070568680763, -0.014655202627182007, -0.020191915333271027, -0.007874436676502228, 0.015106341801583767, -0.0027341796085238457, 0.0040329149924218655, 0.013705074787139893, -0.015680519863963127, 0.006852537393569946, 0.011374186724424362, -0.00041418548789806664, -0.01472355704754591, -0.009125323966145515, 0.015817228704690933, -0.009309881366789341, 0.0161043182015419, 0.008585323579609394, 0.024990400299429893, 0.007922285236418247, -0.0036364588886499405, -0.015926595777273178, 0.02900964580476284, -0.0012713934993371367, 0.0008356336038559675, -0.016213685274124146, -0.003674053819850087, 0.010506085120141506, -0.0028469644021242857, 0.011415199376642704, 0.0029717113357037306, 0.025550907477736473, 0.02991192415356636, 0.037950411438941956, 0.028271416202187538, -0.017840521410107613, 0.005444434937089682, 0.0032656355760991573, 0.013759758323431015, -0.023267867043614388, -0.008093171752989292, -0.01159975677728653, 0.02503141388297081, 0.006804689299315214, -0.004948865156620741, -0.004542155656963587, 0.004808738362044096, -0.004439624026417732, -0.025865338742733, -0.03373977541923523, 0.005034307949244976, 0.01473722793161869, -0.01414937898516655, -0.024074450135231018, -0.009214185178279877, -0.01678786240518093, -0.0006587663665413857, -0.009323552250862122, 0.011360515840351582, 0.010902540758252144, 0.01239266898483038, 0.009022792801260948, -0.008756210096180439, -0.00033045123564079404, -0.022584322839975357, -0.0012893365928903222, 0.014983303844928741, 0.0026880402583628893, -0.00013681578275281936, -0.010335198603570461, 0.022529639303684235, 0.020779764279723167, -0.0014260455500334501, -0.011982541531324387, -0.009535451419651508, 0.01235849130898714, 0.003882535034790635, -0.03959092125296593, -0.025824325159192085, -0.0018575332360342145, -0.020848119631409645, -0.00019384906045161188, 0.012734441086649895, 0.013021529652178288, -0.018947863951325417, 0.032099269330501556, -0.03764965385198593, 0.016309380531311035, 0.01974077709019184, -0.004983042366802692, -0.004511396400630474, 0.015037987381219864, 0.005372663028538227, 0.009473931975662708, 0.01844204030930996, -0.014655202627182007, -0.0018865838646888733, -0.012987352907657623, -0.002055761171504855, -0.01747140660881996, -0.008332411758601665, -0.014026341028511524, -0.010082286782562733, 0.007211398333311081, 7.999611261766404e-05, -0.016897229477763176, 0.02963850647211075, -0.0002817486529238522, 0.01588558405637741, 0.02898230403661728, 0.008393931202590466, 0.014914949424564838, -0.0003919702721759677, 0.048805106431245804, -0.028134707361459732, -0.015461785718798637, -0.01130583230406046, -0.013554695062339306, 0.007997475564479828, -2.1200572518864647e-05, -0.016035962849855423, -0.00827089324593544, -0.0001919265923788771, -0.010191653855144978, -0.015475456602871418, -0.002621394582092762, 0.00592291634529829, -0.009084311313927174, 0.0010082287481054664, -0.02462128736078739, -0.026904325932264328, 0.0012525960337370634, -0.0048121558502316475, 0.026658250018954277, -0.005745194852352142, 0.038196489214897156, -0.015571152791380882, 0.020082548260688782, 0.009138994850218296, 0.0034125978127121925, 0.005263295490294695, -0.029720531776547432, -0.022693689912557602, -0.007279753219336271, 0.015994951128959656, 0.017033938318490982, 0.010041274130344391, 0.00041247662738896906, -0.012324314564466476, 0.0037936740554869175, 0.018947863951325417, -0.010697477497160435, -0.014750898815691471, 0.011989377439022064, 0.009583299048244953, 0.04131345450878143, 0.009186843410134315, 0.011257984675467014, 0.04771143198013306, 0.022064829245209694, 0.0016610140446573496, 0.020082548260688782, 0.00036890062619931996, 0.006688486784696579, -0.03764965385198593, -0.0025308248586952686, 0.0237873625010252, 0.004374687094241381, 0.015625836327672005, 0.01800457201898098, -0.007853930816054344, 0.016924571245908737, 0.017457736656069756, 0.011873174458742142, -0.025209134444594383, -0.03715749830007553, -0.007546335458755493, 0.011797985062003136, -0.014846595004200935, 0.019699763506650925, -0.006182663608342409, -0.009275703690946102, 0.034778762608766556, 0.009788362309336662, 0.010943553410470486, 0.01573520340025425, 0.00929621048271656, 0.022133182734251022, 0.01834634505212307, -0.011134945787489414, 0.02381470426917076, -0.00957646407186985, -0.003991902340203524, -0.03472407907247543, 0.015926595777273178, -0.007020005956292152, -0.03322027996182442, 0.0024624704383313656, -0.004883928224444389, 0.0014422796666622162, -0.03313825652003288, -0.007566841784864664, -0.03311091288924217, -0.01868811808526516, -0.005461523775011301, -0.003106711432337761, -0.015215708874166012, -0.0009159501641988754, -0.020109890028834343, -0.010547097772359848, 0.023801032453775406, 0.022351916879415512, -0.004388357978314161, 0.00259576179087162, -0.019084572792053223, -0.0060493722558021545, 0.007806082721799612, -0.030486101284623146, 0.04817624390125275, 0.008496463298797607, 0.03896205872297287, 0.027464833110570908, 0.0073959557339549065, 0.0149422911927104, 0.005591397173702717, 0.007272917777299881, 0.023609640076756477, 0.023062804713845253, 0.0028196226339787245, -0.02742382138967514, 0.017020268365740776, -0.0007591620669700205, -0.0022266474552452564, -0.028380783274769783, -0.004292661789804697, 0.0016208557644858956, -0.01438178401440382, 0.013814441859722137, -0.012085073627531528, 0.020383307710289955, -0.02422483079135418, 0.005779372062534094, -0.031579773873090744, -0.011121274903416634, 0.0001249605556949973, -0.010157477110624313, -0.020971156656742096, 0.04027446359395981, 0.011825326830148697, 0.023582298308610916, -0.006804689299315214, -0.01319925207644701, -0.00413544662296772, -0.017307355999946594, -0.024306856095790863, 0.013978492468595505, -0.019207611680030823, 0.027287112548947334, -0.007710386533290148, -0.007402791175991297, 0.01517469622194767, -0.037075474858284, -0.03322027996182442, -0.01893419399857521, -0.0020865206606686115, 0.03106028027832508, -0.007013170514255762, -0.027355466037988663, 0.018879510462284088, 0.018947863951325417, -0.018018243834376335, -0.013616214506328106, -0.018045585602521896, -0.008790386840701103, -0.009644818492233753, 0.0019053813302889466, 0.016678495332598686, 0.01974077709019184, -0.03352104127407074, -0.000801456393674016, 0.010861528106033802, 0.0014448430156335235, 0.018742801621556282, -0.008892918936908245, -0.026849642395973206, -0.023185841739177704, -0.027533188462257385, -0.02083444781601429, 0.0014952544588595629, 0.02151799388229847, -0.0019566472619771957, -0.021408624947071075, 0.021695714443922043, 0.0380597785115242, -0.022474955767393112, 0.020506346598267555, -0.04738333076238632, 0.005249624606221914, -0.017772167921066284, -0.01365039125084877, -0.0037219019141048193, -0.016528114676475525, 0.03447800502181053, -0.014026341028511524, -0.03890737518668175, -0.029091671109199524, -0.0043781050480902195, 0.006896967999637127, -0.01438178401440382, 0.0016934825107455254, -0.013903303071856499, 0.01133317407220602, 0.019289636984467506, -0.01959039643406868, -0.008694690652191639, 0.017389381304383278, 0.009767856448888779, 0.01878381334245205, 0.003105002688243985, -0.018072927370667458, 0.036802057176828384, 0.010608616285026073, -0.017854193225502968, -0.011852668598294258, -0.007566841784864664, -0.0014209189685061574, -0.00856481771916151, 0.010697477497160435, -0.027232429012656212, 0.01673317886888981, -0.0004729276115540415, -0.024388881400227547, -0.013793935999274254, 0.009111653082072735, -0.021900778636336327, -0.014012670144438744, -0.04410231485962868, -0.007935956120491028, -0.009658489376306534, 0.015817228704690933, -0.007655702531337738, 0.014026341028511524, -0.0022625336423516273, 0.01866077445447445, -0.009583299048244953, -0.02422483079135418, 0.016035962849855423, 0.04754738137125969, 0.02164103090763092, -0.01620001345872879, -0.0015234507154673338, -0.0034604459069669247, -0.02036963775753975, -0.013978492468595505, -0.015352417714893818, 0.026015717536211014, 0.03909876570105553, -0.007724057417362928, -0.0030110152438282967, 0.04076661542057991, 0.01712963543832302, 0.028380783274769783, -0.027341796085238457, -0.0018934193067252636, -0.0013790518278256059, 0.031224330887198448, 0.004008990712463856, 0.027628883719444275, -0.010608616285026073, -0.006808107253164053, 0.014641531743109226, -0.02064305543899536, 0.0002488530590198934, -0.005071903113275766, 0.0024265842512249947, -0.023363564163446426, -0.009159501641988754, 0.0032673445530235767, 0.017949888482689857, -0.0020540524274110794, 0.0015140519244596362, -0.013007858768105507, -0.008633172139525414, 0.007587348110973835, 0.03603648766875267, -0.02941977232694626, -0.01912558637559414, -0.0019463940989226103, -0.021012170240283012, 0.006893550045788288, 0.023144830018281937, -0.013342795893549919, 0.004983042366802692, -0.03327496349811554, 0.050828397274017334, 0.012809631414711475, 0.019330648705363274, 0.0133564667776227, 0.027369137853384018, 0.013800770975649357, -0.01790887676179409, 0.012378998100757599, -0.0378137044608593, -0.025140780955553055, 0.006097220350056887, 0.004067092202603817, 0.005106080323457718, -0.007744563743472099, 0.03866129741072655, -0.030212683603167534, 0.004470383748412132, -0.002662407234311104, -0.0322086364030838, -0.024320527911186218, 0.003292977577075362, 0.011777478270232677, -0.055394478142261505, 0.020533688366413116, 0.00980886910110712, -0.012461023405194283, 0.021559005603194237, -0.04071193188428879, -0.014108366332948208, 0.022488627582788467, 0.009774691425263882, 0.001215000986121595, -0.0007771051023155451, -0.006182663608342409, -0.0051881056278944016, 0.013780265115201473, -0.015311405062675476, 0.0062065874226391315, 0.1976265013217926, -0.005611903499811888, -0.015024316497147083, 0.02210584096610546, 0.0015576279256492853, 0.026316478848457336, 0.010499249212443829, 0.005393169354647398, -0.006039118859916925, 0.024757996201515198, -0.016282038763165474, 0.007942792028188705, -0.004029497038573027, 0.020000522956252098, -0.018797485157847404, 0.003190445713698864, -0.010280515067279339, -0.01635039411485195, -0.017963560298085213, 0.016035962849855423, 0.018606090918183327, -0.011073427274823189, -0.030212683603167534, -0.014996974729001522, 0.03404053673148155, -0.015694189816713333, -0.013281277380883694, -0.026384832337498665, 0.020574701949954033, -0.011285326443612576, -0.016487102955579758, 0.006110891234129667, 0.0012295263586565852, 0.011948364786803722, -0.056980300694704056, 0.0029050656594336033, 0.03915344923734665, -0.009289374575018883, 0.034778762608766556, -0.01890685223042965, -0.002576964208856225, -0.007949627004563808, -0.021586347371339798, -0.017020268365740776, 0.0034689903259277344, 0.020670397207140923, -0.004436206072568893, -0.0056050680577754974, -0.013992163352668285, 0.037759020924568176, -0.015967609360814095, -0.035216230899095535, 0.013486340641975403, -0.009405577555298805, -0.013042036443948746, 0.014327100478112698, 0.006240764632821083, 0.00922102015465498, 0.028353441506624222, 0.020793436095118523, -0.014463809318840504, 0.026138756424188614, -0.035134207457304, -0.0010005388176068664, -0.023117488250136375, -0.005898992531001568, -0.03825117275118828, -0.00019021773186977953, -0.0029870911967009306, -0.014067353680729866, -0.00803848821669817, -0.004969371482729912, 0.01105292048305273, 0.018045585602521896, -0.020383307710289955, -0.017799509689211845, -0.0032160787377506495, 0.013069378212094307, 0.004716459661722183, 0.01656912826001644, -0.02105318196117878, -0.010212160646915436, 0.002300128573551774, -0.018961535766720772, -0.016719507053494453, -0.007826589047908783, 0.02876356802880764, 0.0033015217632055283, 0.011784314177930355, -0.008093171752989292, -0.0066543095745146275, 0.0011637351708486676, 0.0050308904610574245, 0.00540342228487134, -0.016145329922437668, 0.005782789550721645, -0.004716459661722183, 0.0006220258655957878, -0.0019207610748708248, -0.012037225067615509, -0.009767856448888779, 0.0066919042728841305, 0.01788153499364853, 0.0014679126907140017, 0.027683567255735397, -0.03554433584213257, 0.002416331088170409, 0.01284380815923214, 0.02509976737201214, -0.05140257626771927, -0.01759444549679756, -0.02319951355457306, 0.005827220156788826, -0.018305331468582153, 0.008455450646579266, 0.005335067864507437, 0.002183925826102495, -0.020547358319163322, 0.009966084733605385, 0.008851906284689903, 0.02478533796966076, -0.028872935101389885, 0.003294686321169138, -0.022775715216994286, 0.010328363627195358, -0.010130135342478752, -0.02605673111975193, 0.014327100478112698, 0.004173041321337223, -0.016268368810415268, 0.029556481167674065, -0.0029306986834853888, 0.016705837100744247, 0.012529377825558186, -0.009952413849532604, -0.02400609664618969, 0.00748481648042798, -0.0006741461693309247, 0.003551015630364418, 0.008325576782226562, -0.0028110784478485584, 0.005232536233961582, -0.043856240808963776, 0.019234953448176384, 0.00879722274839878, -0.03223597630858421, 0.014791911467909813, -0.009487602859735489, -0.0026299390010535717, -0.005003548692911863, -0.0022232297342270613, -0.00464810524135828, 0.02195546217262745, -0.032509393990039825, -0.007457474712282419, -0.009993426501750946, -0.01315140351653099, -0.021996473893523216, 0.022023815661668777, -0.022037487477064133, -0.016965584829449654, -0.008407602086663246, -0.003933800850063562, 0.0012389251496642828, -0.03078686073422432, 0.005468359217047691, -0.17181584239006042, 0.012037225067615509, 0.00827089324593544, 0.00822304468601942, 0.01583089865744114, -0.02515445090830326, 0.03322027996182442, -0.0007523265667259693, 0.004518231842666864, -0.017430394887924194, -0.0021856348030269146, -0.009754185564815998, -0.02129925787448883, -0.019945839419960976, -0.018305331468582153, -0.006688486784696579, -0.04038383066654205, 0.0025872173719108105, 0.04760206490755081, 0.014641531743109226, 0.03827851265668869, -0.005222282838076353, 0.03691142424941063, 0.03937218710780144, 0.005823802202939987, 0.016473431140184402, 0.020848119631409645, -0.01632305234670639, -0.0009962667245417833, -0.0159812793135643, -0.005724688526242971, 0.01234482042491436, -0.009371400810778141, -0.001142374356277287, 0.00828456413000822, -0.005540131125599146, -0.017375711351633072, -0.012864314951002598, 0.011811655946075916, -0.019207611680030823, 0.012467858381569386, 0.0018319003283977509, -0.008175197057425976, 0.004709624219685793, -0.001109906006604433, 0.00541709316894412, 0.020164573565125465, -0.028162049129605293, -4.023836663691327e-05, -0.017608115449547768, 0.019316978752613068, -0.013910138048231602, -0.004716459661722183, 0.009754185564815998, 0.02652154117822647, -0.026453187689185143, -0.02941977232694626, 0.009207349270582199, -0.0027341796085238457, 0.008619501255452633, 0.005212029907852411, -0.041996996849775314, 0.028380783274769783, 0.021353941410779953, -0.0046241809614002705, -0.013889632187783718, -0.004371269606053829, -0.005106080323457718, -0.034067876636981964, 0.005458105821162462, -0.008236715570092201, -0.008920260705053806, 0.008633172139525414, -0.02993926592171192, 0.018551407381892204, 0.0373215489089489, -0.0282987579703331, 0.015366088598966599, -0.017744824290275574, -0.01190735213458538, -0.025455212220549583, 0.0252501480281353, -0.02288508228957653, -0.010519756004214287, -0.010964060202240944, 0.012385833077132702, 0.016678495332598686, 0.012713935226202011, -0.00029563315911218524, -0.036364588886499405, 0.005847726482897997, -0.019330648705363274, -0.02773825079202652, -0.031087622046470642, 0.002662407234311104, 0.017703812569379807, -0.0010996528435498476, -0.03174382448196411, 0.012980516999959946, -0.03581775352358818, 0.006216840818524361, -0.0019361409358680248, -0.015803556889295578, -0.0049625360406935215, 0.00901595689356327, 0.02232457511126995, -0.007963297888636589, 0.0014072480844333768, 0.026220781728625298, -0.0004156807262916118, -0.008557981811463833, 0.010581274516880512, -0.0009543995256535709, 0.013007858768105507, -0.0010347160277888179, 0.034505344927310944, 0.016131659969687462, 0.009993426501750946, 0.00879722274839878, -0.02188710682094097, 0.02832609973847866, -0.016377735882997513, -0.005174434743821621, 0.019918497651815414, -0.023842046037316322, -0.00032831516000442207, -0.12435048818588257, -0.014764569699764252, -0.007231904659420252, 0.04164155572652817, -0.0028555088210850954, 0.016842545941472054, -0.013787100091576576, 0.0018284826073795557, 0.01881115511059761, 0.028271416202187538, 0.01881115511059761, -0.02925572171807289, -0.01369823981076479, -0.0028708884492516518, -0.0032793066930025816, -0.0056358277797698975, -0.018496723845601082, -0.022146854549646378, -0.029173696413636208, 0.042215730994939804, 0.008127348497509956, 0.00467202952131629, 0.01924862340092659, -0.005451270379126072, 0.00980886910110712, 0.0015089253429323435, -0.040411174297332764, -0.00020634511020034552, -0.014860265888273716, 0.03152509033679962, 0.02164103090763092, -0.010553932748734951, -0.008510134182870388, -0.006302283611148596, -0.0040329149924218655, -0.002952913986518979, -0.006086967419832945, -0.003443357301875949, 0.028380783274769783, -0.007040512282401323, -0.0005485447472892702, 0.0032126610167324543, -0.008250386454164982, 0.0037697500083595514, 0.020602043718099594, -0.004227725323289633, -0.007054183166474104, 0.0014850012958049774, -0.0020455080084502697, -0.03393116965889931, -0.02605673111975193, -0.007491651922464371, -0.009432919323444366, -0.03857927396893501, 0.02114887908101082, -0.018455712124705315, 0.02242027223110199, 0.015243050642311573, -0.005543549079447985, 0.011784314177930355, -0.024552932009100914, 0.004272155463695526, -0.023992424830794334, 0.016965584829449654, 0.009193678386509418, 0.020342295989394188, -0.009419248439371586, 0.02036963775753975, 0.00362278800457716, -0.022844070568680763, 0.009043298661708832, 0.017990902066230774, 0.0027187997475266457, 0.024648629128932953, -0.03379445895552635, 0.03404053673148155, -0.004183294717222452, -0.017621787264943123, 0.020629385486245155, 0.013575201854109764, -0.03034939244389534, -0.0020369638223201036, -0.023404577746987343, -0.0052086119540035725, -0.002805951749905944, 0.018633432686328888, -0.005581143777817488, 0.02730078250169754, 0.03190787509083748, -0.014217733405530453, -0.004548991098999977, 0.02114887908101082, 0.05883954465389252, 0.011825326830148697, 0.0026196858379989862, 0.010717983357608318, 0.00490443455055356, -0.002874306170269847, 0.025386856868863106, 0.00439861137419939, -0.051293209195137024, -0.013233428820967674, -0.052004095166921616, 0.01769014075398445, 0.005075320601463318, -0.006438992917537689, 0.009603805840015411, -0.005136839579790831, -0.00042657472658902407, -0.007026841398328543, -0.00018989731324836612, -0.025824325159192085, -0.02319951355457306, -0.004702788777649403, -0.013315454125404358, -0.01983647234737873, 0.015557481907308102, -0.015037987381219864, 0.0073070949874818325, -0.0040124086663126945, 0.03332964703440666, -0.006876461673527956, -0.020479004830121994, -0.0013517100596800447, 0.007799247279763222, 0.01438178401440382, 0.008790386840701103, -0.0191529281437397, 0.0005263295606710017, -0.0031784838065505028, -0.014983303844928741, -0.02232457511126995, 0.03242737054824829, 0.03313825652003288, -0.00621000537648797, 0.017744824290275574, 0.01550279837101698, 0.005471776705235243, 0.009207349270582199, 0.0020950650796294212, 0.01978178881108761, -0.004791649524122477, -0.011257984675467014, -0.02176406979560852, 0.018059255555272102, -0.0034758257679641247, 0.021107865497469902, -0.018975205719470978, -0.01450482290238142, 0.012529377825558186, -0.002612850395962596, 0.009412413462996483, 0.0118321618065238, 0.015229379758238792, -0.013233428820967674, 0.0016866469522938132, 0.028134707361459732, -0.0051505109295248985, -0.004661776125431061, -0.011128110811114311, 0.016965584829449654, -0.01051292009651661, 0.03912610933184624, 0.03893471509218216, 0.0002400951343588531, -0.02505875565111637, 0.017403053119778633, -0.020848119631409645, -0.015994951128959656, 0.019822802394628525, -0.005960511509329081, 0.003074243199080229, 0.002332596806809306, -0.009166336618363857, 0.011162287555634975, 0.007436968386173248, 0.03149774670600891, -0.008619501255452633, -0.021367613226175308, -0.011360515840351582, -0.00959013495594263, 0.021121537312865257, 0.04735599085688591, 0.003414306789636612, -0.018797485157847404, 0.008667348884046078, 0.03620053827762604, 0.022625336423516273, 0.005181270185858011, -0.00011502778943395242, 0.005287219770252705, -0.00984304677695036, 0.0058921570889651775, -0.027847617864608765, -0.011715959757566452, 0.012461023405194283, 0.026945339515805244, 0.024539262056350708, 0.016364064067602158, -0.0046241809614002705, 0.0002597470593173057, 0.005393169354647398, -0.0005686238873749971, -0.010642793960869312, -0.0007600164972245693, -0.0009569628164172173, -0.03540762513875961, 0.006832031067460775, -0.019453687593340874, -0.04235244169831276, -0.023554956540465355, 0.04481320083141327, -0.0005233390256762505, 0.04153218865394592, 0.00848962739109993, 0.01438178401440382, -0.035462308675050735, 0.0063467142172157764, 0.012884820811450481, 0.020287612453103065, -0.004419117700308561, 0.017061280086636543, 0.005564055405557156, 0.006223676260560751, 0.03644661232829094, -0.016596470028162003, 0.01661013998091221, 0.014204062521457672, 0.024183817207813263, -0.02922837994992733, 0.0033681674394756556, 0.023158499971032143, 0.0058306376449763775, -0.003899623639881611, -0.00905013456940651, -0.025113439187407494, 0.0001504866813775152, 0.008277728222310543, 0.02698635123670101, 0.00747798103839159, 0.00021958879369776696, 0.06644055992364883, -0.0004485763201955706, 0.003824433544650674, -0.002773483283817768, -0.012816466391086578, 0.007860765792429447, 0.015625836327672005, -0.012864314951002598, -0.009473931975662708, -0.027505846694111824, 0.005294055212289095, 0.0012713934993371367, -0.00490443455055356, -0.025632932782173157, -0.008927096612751484, -0.01588558405637741, 0.0005382915842346847, 0.006233929190784693, -0.036364588886499405, 0.009692666120827198, 0.013335960917174816, 0.012960011139512062, -0.0066713979467749596, 0.010171147994697094, -0.0052393716759979725, -0.0022266474552452564, 0.019508371129631996, 0.009385071694850922, -0.014887607656419277, -0.03696610778570175, 0.024525590240955353, -0.016500772908329964, -0.025209134444594383, -0.014135708101093769, -0.0010295894462615252, 0.014873936772346497, -0.008414437994360924, -0.006674815900623798, 0.030650151893496513, 0.02239293046295643, -0.028681542724370956, -0.006544942501932383, -0.031579773873090744, -0.006145068444311619, -0.02310381643474102, -0.009542286396026611, -0.004552409052848816, -0.006264688912779093, -0.029146354645490646], "914c76dc-6aab-47cf-9ab6-731981d942fe": [0.026515884324908257, 0.0063481112010777, -0.006835386157035828, -0.030996108427643776, -0.009454489685595036, 0.01926090009510517, -0.01871948316693306, -0.022928999736905098, -0.00935974158346653, -0.01375875249505043, 0.02004595473408699, 0.026664774864912033, 0.0034058496821671724, 0.004104615654796362, 0.0006941132014617324, -0.0191796887665987, 0.02084454521536827, 0.009420651011168957, 0.018705949187278748, -0.015051385387778282, 0.00905519537627697, 0.02206273190677166, -0.0021284446120262146, -0.028884584084153175, -0.031781163066625595, 0.018354028463363647, 0.004947195295244455, -0.017095234245061874, 0.02278010919690132, -0.017271194607019424, 0.02311849407851696, -0.002145363949239254, -0.027828820049762726, -0.006672961171716452, -0.028153670951724052, -0.015484518371522427, -0.01608007773756981, -0.0030285499524325132, 0.020194845274090767, -0.00861529354006052, 0.02594739757478237, -0.011159952729940414, -0.011613389477133751, -0.0007397952140308917, -0.007924987934529781, 0.010408736765384674, 0.02231990545988083, -0.02716558426618576, -0.029832063242793083, 0.014699464663863182, 0.01809685491025448, 0.02777467854321003, -0.017217053100466728, 0.003800068749114871, -0.0013696152018383145, -0.023754660040140152, -0.013670772314071655, 0.04147252067923546, -0.011694601736962795, -0.018042713403701782, 0.014009158127009869, 0.026218105107545853, -0.01472653541713953, -0.00021127941727172583, -0.015227345749735832, -0.00617215083912015, -0.009853784926235676, 0.004784770309925079, -0.02453971467912197, 0.010185402818024158, 0.013792591169476509, 0.025703759863972664, 0.008040038868784904, -0.014482897706329823, 0.029994487762451172, -0.008324282243847847, -0.01507845614105463, 0.014482897706329823, 0.018299885094165802, -0.005400632042437792, 0.019910600036382675, -0.019545143470168114, -0.028153670951724052, -0.001406837604008615, 0.021737882867455482, -0.007038417737931013, 0.026515884324908257, -0.01916615292429924, -0.0013586176792159677, -0.02996741607785225, 0.0035259765572845936, 0.010050048120319843, 0.025812042877078056, 0.033973898738622665, 0.010408736765384674, 0.01916615292429924, -0.019910600036382675, 0.016810989007353783, -0.007491854019463062, 0.00861529354006052, -0.003192666918039322, 0.00569502729922533, -0.025446586310863495, -0.0063075050711631775, -0.03798038512468338, -0.012012683786451817, 0.015281487256288528, -0.015443912707269192, 0.026570025831460953, -0.005454773548990488, -0.028370236977934837, 0.0437464714050293, 0.012790970504283905, -0.034596528857946396, 0.01644553430378437, -0.023673446848988533, 0.004865983035415411, 0.0054716928862035275, 0.013697843998670578, -0.013765520416200161, 0.018340492621064186, 0.019220294430851936, 0.03689755126833916, -0.0027426141314208508, 0.03410925343632698, -0.022387582808732986, 0.013691076077520847, 0.01309551764279604, -0.020018884912133217, -0.024363752454519272, 0.007146701216697693, 0.011092275381088257, -0.010550858452916145, 0.02390354871749878, 0.02391708455979824, -0.004185828380286694, -0.00304377730935812, -0.005891290958970785, -0.028153670951724052, 0.0013552338350564241, 0.020194845274090767, 0.0022485714871436357, -0.005833765491843224, 0.0039997161366045475, -0.025026988238096237, -0.0084461010992527, 0.007512157317250967, 0.007681350223720074, 0.010320756584405899, -0.015565731562674046, 0.009637217968702316, -0.007485086563974619, 0.0034718348179012537, 0.005772856064140797, -0.001708846539258957, 0.02654295600950718, 0.005999574437737465, 0.0018678877968341112, 0.023226778954267502, -0.004043706227093935, 0.029588425531983376, 0.019491001963615417, 0.0016657024389132857, 0.00762720825150609, 0.020979898050427437, 0.021507779136300087, 0.015227345749735832, -0.006527455523610115, -0.010422272607684135, 0.036166638135910034, 0.003691785503178835, 0.016675636172294617, -0.011498337611556053, 0.019409790635108948, 0.011139649897813797, 0.01854352280497551, 0.008243069984018803, -0.0045005264692008495, -0.00808741245418787, -0.023673446848988533, 0.008412262424826622, -0.014997243881225586, 0.01617482490837574, 0.03700583428144455, -0.025351839140057564, 0.004595274571329355, 0.04247414320707321, 0.022116873413324356, 0.020966364070773125, 0.008886002004146576, -0.004429465625435114, 0.02188677154481411, -0.011620156466960907, -0.013460973277688026, -0.6306422352790833, 0.0016766999615356326, -0.03286399692296982, -0.023064352571964264, -0.006074019242078066, 0.010043280199170113, 0.011708136647939682, 0.011099043302237988, -0.03632906451821327, 0.048835791647434235, 0.012093896046280861, 0.017785539850592613, 0.0010371514363214374, -0.007593369577080011, 0.01748776063323021, -0.02855973318219185, 0.01050348486751318, -0.009819946251809597, -0.03007569909095764, -0.0002573844394646585, -0.012087129056453705, 0.028018316254019737, 0.01932857744395733, -0.007417409215122461, 0.04583092778921127, 0.00843933317810297, -0.007288822904229164, 0.01671624183654785, 0.003255268093198538, 0.012445817701518536, -0.011518641375005245, -0.007024882361292839, 0.008784486912190914, -0.01767725683748722, 0.04006483778357506, -0.013339155353605747, -0.007809936534613371, 0.022116873413324356, 0.02214394509792328, 0.05205722153186798, -0.016594422981142998, -0.023984761908650398, 0.02883044071495533, -0.003860978176817298, 0.010016209445893764, -0.03289106860756874, -0.001691081328317523, 0.007776097860187292, -0.002590340794995427, -0.007430944591760635, 0.018421703949570656, -0.0006881914450787008, 0.014807747676968575, 0.0007600983371958137, 0.012026219628751278, -0.014361078850924969, -0.01608007773756981, 0.004294111393392086, -0.0059691197238862514, -0.03351369500160217, 0.01310228556394577, 0.0018915747059509158, -0.025013454258441925, 0.002147055696696043, -0.022184550762176514, 0.01582290418446064, -0.029480140656232834, -0.008229534141719341, -0.011268235743045807, -0.01574169099330902, 0.0032011265866458416, 0.036789268255233765, -0.006774477194994688, -0.010868941433727741, 0.0049099731259047985, 0.005180681589990854, 0.03245793282985687, -0.025703759863972664, -0.005001337267458439, 0.017365941777825356, 0.02926357463002205, -0.006551142781972885, -0.027707001194357872, -0.019639892503619194, 0.021778488531708717, 0.00826337281614542, -0.007160236593335867, -0.018773624673485756, 0.037411898374557495, 0.0007330275257118046, 0.009982370771467686, -0.004825376905500889, -0.011295306496322155, -0.021304748952388763, -0.014604716561734676, 0.01932857744395733, 0.0030809997115284204, 0.0022485714871436357, -0.0012782510602846742, -0.021426567807793617, -0.02541951648890972, -0.024011831730604172, 0.010706515982747078, -0.0007795555284246802, 0.014428756199777126, -0.018868373706936836, 0.003177439561113715, 0.018002105876803398, 0.045154158025979996, -0.02172434702515602, 0.005952200386673212, -0.029696708545088768, 0.007471551187336445, 0.0032146619632840157, -0.020641513168811798, -0.03351369500160217, 0.018692413344979286, -0.023497486487030983, 0.00709932716563344, -0.03681633993983269, -0.011132881976664066, 0.01582290418446064, 0.00195079215336591, 0.0026309469249099493, 0.018083319067955017, 0.0005063092685304582, 0.016986949369311333, -0.0032704954501241446, -0.010956921614706516, -0.03245793282985687, 0.03194358944892883, 0.00958984438329935, 0.0046595679596066475, 0.004317798651754856, 0.003238348988816142, -0.011417125351727009, 0.033703193068504333, -0.011126114055514336, 0.021385962143540382, -0.01609361171722412, -0.019653428345918655, -0.01582290418446064, 0.013927945867180824, -0.009772571735084057, -0.0021284446120262146, -0.038819581270217896, -0.02937185764312744, 0.009434186853468418, -0.00507578207179904, -0.026664774864912033, -0.007126397918909788, 0.007261752150952816, -0.03481309488415718, 0.03724947199225426, -0.01652674563229084, -0.006128160748630762, -0.01468592882156372, -0.014428756199777126, -0.01968049816787243, -0.003187590977177024, -0.004818608984351158, 0.010902779176831245, -0.005698411259800196, 0.006730486638844013, -0.016567353159189224, -0.023619305342435837, -0.021480709314346313, 0.027097908779978752, -0.03340541198849678, -0.03175409138202667, -0.01838109828531742, -0.0009694743785075843, -0.010740354657173157, -0.013853500597178936, 0.025189414620399475, 0.033188845962285995, -0.03145631402730942, -0.014645323157310486, -0.01961282081902027, 0.0007630592444911599, 0.005793159361928701, -0.013332387432456017, -0.011450964026153088, -0.005593511741608381, 0.02918236330151558, -0.00013577716890722513, 0.019409790635108948, -0.011471266858279705, -0.02945307083427906, 0.021385962143540382, 0.04824023321270943, -0.0014922799309715629, -0.02014070190489292, -0.006903063505887985, -0.007979129441082478, 0.014076835475862026, 0.006165382917970419, -0.01671624183654785, 0.0053972480818629265, 0.018421703949570656, 0.030400549992918968, -0.02593386173248291, -0.0039117359556257725, -0.04756345972418785, 0.0029321101028472185, -0.008012968115508556, 0.030292266979813576, -0.009508631192147732, 0.014983708038926125, -0.021074647083878517, 0.007288822904229164, 0.009657520800828934, -0.02153485082089901, -0.016228966414928436, 0.021142324432730675, 0.018936051055788994, -0.0006107857334427536, 0.03437996283173561, -0.00904842745512724, -0.006852305494248867, 0.020438481122255325, -0.013515115715563297, 0.030887825414538383, 0.007065488491207361, -0.017217053100466728, 0.012188644148409367, 0.014970173127949238, 0.011904400773346424, 0.0030014789663255215, -0.017636651173233986, 0.00762720825150609, 0.022807180881500244, 0.00014455404016189277, -0.010232776403427124, 0.03532744199037552, 0.016025936231017113, 0.00653083948418498, -0.005065630190074444, 0.04491052031517029, 0.007200842723250389, -0.01230369508266449, 0.012202179990708828, 0.021480709314346313, -0.060692816972732544, 0.0004720477154478431, 0.0016462452476844192, 0.04244707152247429, 0.009671056643128395, 0.012141270563006401, 0.0039997161366045475, 0.02820781245827675, -0.010868941433727741, -0.020167773589491844, 0.008364888839423656, 0.018787160515785217, -0.007417409215122461, 0.010009442456066608, -0.004953963216394186, 0.021764952689409256, 0.024038903415203094, -0.014212189242243767, 0.0019186455756425858, -0.004994569346308708, -0.0172441229224205, -0.009305600076913834, -0.0005151918740011752, 0.004825376905500889, -0.03662684187293053, 0.024851027876138687, -0.022455260157585144, -0.034082185477018356, -0.024296076968312263, -0.0327286422252655, 0.002295945305377245, 0.03535451367497444, -0.02223869226872921, 0.023280920460820198, 0.045045871287584305, -0.0033500161953270435, -0.010767425410449505, 0.005437854211777449, -0.003267111722379923, 0.017420083284378052, -0.0018052865052595735, -0.00975226890295744, -0.03140217065811157, -0.028451450169086456, -0.011187023483216763, 0.0030742320232093334, 0.013359458185732365, -0.021588992327451706, 0.008764183148741722, -0.003163904184475541, -0.012120967730879784, 0.0044125462882220745, 0.017893822863698006, 0.019897066056728363, 0.000125837090308778, -0.029507212340831757, -0.01529502309858799, 0.00441593024879694, 0.01662149466574192, 0.0014618252171203494, -0.02330799028277397, 0.025960933417081833, 0.005918361712247133, 0.023849407210946083, -0.03570643439888954, -0.0022519552148878574, 0.001693619298748672, 0.028451450169086456, -0.03454238921403885, -0.01419865433126688, -0.014117441140115261, 0.03067125752568245, -0.006950437556952238, 0.004744164180010557, -0.018760090693831444, 0.012276624329388142, 0.02847851999104023, -0.012384908273816109, 0.0028915037401020527, -0.021819094195961952, 0.00551229901611805, 0.04537072405219078, 0.005579976364970207, 0.006490233354270458, 0.015064921230077744, -0.03294520825147629, -0.006429323926568031, -0.03348662704229355, -0.021155858412384987, 0.020452016964554787, -0.009671056643128395, -0.011227630078792572, 0.020073026418685913, -0.005278813187032938, -0.010259847156703472, -0.019585750997066498, -0.0025700374972075224, -0.0019541759975254536, -0.01028691790997982, 0.0031486768275499344, -0.03876543790102005, 0.009982370771467686, -0.001431370503269136, 0.04252828657627106, 0.015322093851864338, -0.015349164605140686, -0.005363409407436848, 0.012621778063476086, 0.012642080895602703, -0.009393580257892609, -0.01590411737561226, -0.010598232969641685, -0.00019816699204966426, -0.004666335415095091, 0.025636082515120506, 0.01191793568432331, 0.010313988663256168, 0.01626957394182682, 0.030806612223386765, 0.025784973055124283, -0.02145363762974739, 0.0031537525355815887, -0.0022248844616115093, 0.013697843998670578, -0.012939860112965107, 0.004642648622393608, 0.006195837631821632, 0.029777919873595238, 0.016107147559523582, -0.005955584347248077, -0.008825092576444149, -0.01139005459845066, -0.01120055839419365, -0.02945307083427906, -0.028965795412659645, -0.003840675111860037, 0.008107715286314487, -0.01590411737561226, -0.01750129647552967, -0.02417425811290741, -0.01942332647740841, -0.011681065894663334, -0.022739503532648087, 0.009440954774618149, 0.004020019434392452, 0.001029537757858634, -0.002092914190143347, -0.022265763953328133, 0.009508631192147732, -0.03657270222902298, -0.002309480682015419, 0.014618252404034138, 0.002901655388996005, -0.003456607460975647, -0.01783968135714531, 0.018394634127616882, 0.03164580836892128, 0.0006082478794269264, -0.03844058886170387, -0.0008231226238422096, 0.01494310237467289, -0.0029710244853049517, -0.01723058708012104, -0.034515317529439926, -0.001998166088014841, -0.0019761710427701473, 0.009380045346915722, 0.01855705864727497, -0.006141696125268936, -0.03015691228210926, 0.042582426220178604, -0.015674015507102013, 0.014577645808458328, 0.01978878118097782, -0.02462092600762844, -0.00033944292226806283, 0.014185118488967419, -0.008926608599722385, 0.02092575654387474, 0.021480709314346313, -0.017217053100466728, 0.010733586736023426, 0.005532602313905954, 0.006838770117610693, -0.013941480778157711, -0.010226008482277393, -0.00997560378164053, 0.007430944591760635, 0.015024314634501934, -0.002505744341760874, -0.009779339656233788, 0.02945307083427906, 0.012642080895602703, 0.017717862501740456, 0.002854281337931752, -0.00013503694208338857, 0.007363267708569765, 0.014185118488967419, 0.03159166872501373, -0.026664774864912033, -0.0018425087910145521, -0.005596895702183247, -0.019748175516724586, 0.011153184808790684, 0.023605769500136375, 0.008980750106275082, -0.003759462386369705, -0.0018864989979192615, -0.005025024060159922, -0.015525124967098236, -0.005224671680480242, 0.013312084600329399, -0.002781528513878584, -0.00643947534263134, -0.03716826066374779, -0.0430426299571991, -0.005129923578351736, -0.0002645751228556037, 0.011464499868452549, -0.005468308925628662, 0.028992867097258568, -0.0028999634087085724, -0.008527313359081745, 0.007430944591760635, -0.016770383343100548, 0.009061962366104126, -0.026691844686865807, -0.0003572081623133272, 0.00021762415417470038, 0.027314474806189537, 0.005766088142991066, -0.0019677113741636276, 0.008906305767595768, -0.004358404781669378, -0.0018475846154615283, 0.005830381531268358, -0.023511022329330444, 0.0006869225180707872, 0.012323998846113682, 0.01601240038871765, 0.03638320416212082, 0.02777467854321003, 0.0003119490866083652, 0.032403793185949326, 0.020763332024216652, 0.0030877673998475075, 0.023280920460820198, -0.003339864546433091, 0.0010752198286354542, -0.022387582808732986, 0.00643947534263134, 0.029696708545088768, 0.0010193862253800035, 0.008723577484488487, 0.003942190669476986, -0.004267040640115738, 0.001212265924550593, 0.0038643619045615196, 0.012547332793474197, -0.026597097516059875, -0.036085426807403564, 4.594640267896466e-05, 0.011444196105003357, -0.00010278458648826927, -0.006730486638844013, -0.018421703949570656, -0.025013454258441925, 0.034840166568756104, 0.016824524849653244, -0.00459189061075449, 0.014009158127009869, -0.0007182231638580561, 0.01977524720132351, 0.0039117359556257725, 0.0031486768275499344, 0.031510453671216965, -0.007979129441082478, 0.004717093426734209, -0.030454691499471664, 0.015010778792202473, -0.002571729477494955, -0.007018114440143108, 0.017988571897149086, -0.011234397068619728, 0.008351352997124195, -0.023714052513241768, -0.00883186049759388, -0.012411979027092457, -0.01050348486751318, 0.00496749859303236, -0.0191796887665987, -0.00372562394477427, -0.010767425410449505, -0.0054716928862035275, -0.019382718950510025, 0.04131009802222252, 0.03586886078119278, -0.006409020628780127, 0.0018746554851531982, -0.015863509848713875, 0.007498621940612793, -0.003992948681116104, -0.025825578719377518, 0.047428105026483536, -0.000747408892493695, 0.029561353847384453, 0.02329445444047451, 0.00957630854099989, -0.014740070328116417, -0.005620582494884729, 0.002833978272974491, 0.02874922938644886, 0.029777919873595238, 0.0030725400429219007, -0.02451264299452305, -0.007437712512910366, -0.0032214296516031027, -0.019910600036382675, -0.01086217351257801, -0.01695987954735756, 0.01547098346054554, 0.0016547049162909389, 0.006595132872462273, -0.0161883607506752, -0.004053857643157244, -0.027558112516999245, -0.013704610988497734, -0.03075247071683407, 0.005349874030798674, 0.0063075050711631775, -0.0020472321193665266, -0.03216015547513962, 0.03267449885606766, 0.01819160208106041, 0.01599886454641819, 0.002301021246239543, 0.0064834654331207275, -0.0037425432819873095, -0.00862206146121025, -0.0327286422252655, 0.024147186428308487, -0.011241164989769459, -0.0024465268943458796, -0.022116873413324356, -0.021588992327451706, 0.018570594489574432, -0.024187792092561722, -0.015498054213821888, -0.018218673765659332, -0.02190030738711357, 0.03224136680364609, -0.029128219932317734, -0.03692462295293808, 0.005830381531268358, 0.004277192056179047, -0.013873804360628128, -0.016066541895270348, -0.01792089454829693, -0.008466403931379318, -0.0053972480818629265, 0.012554100714623928, 0.0327286422252655, 0.026745986193418503, -0.04114767163991928, 0.01248642336577177, -0.009251458570361137, 0.007972361519932747, 0.008229534141719341, 0.004547900520265102, 0.021318284794688225, -0.02804538793861866, -0.0191796887665987, -0.018137460574507713, -0.0006568907992914319, 0.006297353655099869, 0.00791145209223032, -0.025690224021673203, 0.027328010648489, 0.03876543790102005, -0.013372993096709251, 0.008899537846446037, -0.051569946110248566, -0.01182318851351738, -0.008398727513849735, -0.008940143510699272, 0.0021504396572709084, 0.0016648564487695694, 0.030481763184070587, -0.0050723981112241745, -0.046561840921640396, -0.02171081118285656, -0.01633724942803383, 0.011843491345643997, 0.0007626362494193017, 0.011295306496322155, 0.0022502632346004248, 0.007965593598783016, 0.016770383343100548, -0.024120116606354713, -0.019206758588552475, 0.013677540235221386, -0.014997243881225586, 0.03622078150510788, 0.035381585359573364, -0.016418462619185448, 0.0027578414883464575, 0.015024314634501934, -0.006913214921951294, -0.013305316679179668, -0.031077321618795395, -0.011017831042408943, 0.003952342085540295, 0.012750363908708096, -0.007816703990101814, 0.008811557665467262, -0.004219666589051485, -0.03316177427768707, -0.02619103528559208, 0.02750397101044655, -0.017352405935525894, 0.0030725400429219007, -0.030969036743044853, 0.018516452983021736, 0.013860268518328667, 0.018150996416807175, -0.005502147600054741, 0.01028014998883009, -0.01270299032330513, 0.003989564720541239, 0.006950437556952238, -0.00716700404882431, -0.007424177136272192, 0.02364637702703476, 0.02207626774907112, -0.013941480778157711, -0.017988571897149086, 0.0011868870351463556, -0.03516501560807228, -0.0030759237706661224, -0.01085540559142828, 0.02769346721470356, 0.030373478308320045, -0.004845679737627506, -0.017203517258167267, 0.03245793282985687, 0.011139649897813797, -0.005461541470140219, -0.03153752535581589, -0.012811273336410522, 0.005065630190074444, 0.022577079012989998, 0.006591748911887407, 0.00591159425675869, -0.026583561673760414, 0.004304263275116682, 0.010889244265854359, -0.023240312933921814, 0.01494310237467289, 0.013738449662923813, -0.00551229901611805, -0.01995120756328106, -0.022915463894605637, -0.002827210584655404, 0.007309126202017069, 0.010212473571300507, -0.001465209061279893, -0.016756847500801086, -0.009319135919213295, 0.010273382999002934, 0.0323767215013504, -0.03383854776620865, 0.008371656760573387, -0.003718856256455183, -0.028640946373343468, 0.004246737342327833, 0.025514263659715652, -0.010780961252748966, 0.01503784954547882, -0.03164580836892128, 0.01748776063323021, -0.010841870680451393, 0.03332420065999031, -0.0005947124445810914, -0.00017648916400503367, 0.013650469481945038, -0.025270625948905945, 0.02207626774907112, -0.047617603093385696, -0.021047575399279594, 0.02180555835366249, 0.019233830273151398, -0.005491996183991432, -0.016283107921481133, 0.05151580274105072, -0.016648564487695694, 0.014144512824714184, -0.006591748911887407, -0.010557626374065876, -0.008980750106275082, -0.004050474148243666, 0.003976029343903065, -0.028153670951724052, 0.01419865433126688, -0.0010760658187791705, 0.01142389327287674, 0.008858931250870228, -0.03367612138390541, -0.016594422981142998, 0.01085540559142828, 0.025622546672821045, 0.0033026421442627907, 0.006033412646502256, 0.008473171852529049, 0.009332670830190182, 0.013873804360628128, -0.018232209607958794, 0.023443344980478287, 0.1749858856201172, 0.006750789936631918, 0.0005672186380252242, 0.015674015507102013, 0.012398443184792995, 0.03738482668995857, 0.0168922021985054, 0.0014711307594552636, -0.02750397101044655, 0.006930134259164333, -0.004351636860519648, 0.005613815039396286, -0.024282541126012802, 0.010009442456066608, -0.010029745288193226, -0.00577962351962924, 0.014306937344372272, -0.015267952345311642, -0.012087129056453705, 0.009948533028364182, 0.0037696140352636576, -0.008161857724189758, -0.036166638135910034, -0.009738733991980553, 0.030914895236492157, -0.01124793291091919, 0.0009745501447468996, 0.008608526550233364, 0.025378908962011337, 0.0027375384233891964, -0.017433619126677513, 0.01072005182504654, 0.002544658724218607, -0.004033554811030626, -0.04853801056742668, -0.02057383581995964, 0.024323146790266037, -0.006916598882526159, 0.014496433548629284, -0.009955300018191338, 0.0013019380858168006, -0.006537606939673424, -0.04271778091788292, -0.007315893657505512, 0.02453971467912197, 0.03595007210969925, -0.003942190669476986, -0.010841870680451393, -0.031348031014204025, 0.020262520760297775, -0.016851596534252167, -0.03816987946629524, 0.016134219244122505, -0.010517019778490067, 0.01828635111451149, -0.00281367520801723, -0.014063299633562565, 0.007586602121591568, 0.018340492621064186, 0.00349552184343338, -0.0027375384233891964, 0.009339438751339912, -0.028613874688744545, 0.006409020628780127, -0.020357269793748856, 0.005244974512606859, -0.03316177427768707, -0.004395626951009035, -0.011877330020070076, -0.014049764722585678, -0.00935974158346653, 0.00516714621335268, -0.0032992581836879253, 0.021656669676303864, -0.000503348361235112, -0.01494310237467289, 0.010422272607684135, 0.021304748952388763, 0.012087129056453705, 0.019315041601657867, -0.011714904569089413, -0.012560868635773659, -0.0016174825141206384, -0.018123924732208252, -0.032214295119047165, -0.015538660809397697, 0.024323146790266037, -0.022008590400218964, -0.004517445806413889, 0.00804680585861206, -0.019274435937404633, -0.015024314634501934, 0.0044226981699466705, -0.00265970965847373, -0.010645606555044651, 0.010672677308321, -0.005620582494884729, 0.009671056643128395, 0.003179131541401148, -0.006243211682885885, -0.014428756199777126, 0.04713032767176628, -0.0004168486048001796, -0.00958307646214962, 0.029588425531983376, -0.008770951069891453, -0.0009356358204968274, 0.010374898090958595, 0.0023060969542711973, -0.03873836621642113, 0.0016970031429082155, -0.03973998874425888, 0.005938665010035038, -0.007410641759634018, -0.004280576016753912, -0.008676202967762947, 0.002201197436079383, -0.0337844043970108, -0.0013848425587639213, 0.021913843229413033, 0.007850542664527893, -0.01529502309858799, 0.0009643985540606081, 0.00226210686378181, 0.011362983845174313, -0.026705380529165268, -0.027463363483548164, 0.005204368382692337, -0.018584130331873894, -0.0024532945826649666, 0.021210001781582832, -0.039333924651145935, 0.01968049816787243, -0.015498054213821888, -0.0020404644310474396, -0.032755713909864426, 0.01402269396930933, -0.019991813227534294, 0.01358279213309288, 0.007390338461846113, -0.03229551017284393, 0.00452421372756362, -0.032214295119047165, 0.023145565763115883, 0.014239259995520115, -0.03264743089675903, -0.010726818814873695, 0.022265763953328133, 0.01897665672004223, -0.005312651861459017, -0.016838060691952705, -0.012770667672157288, 0.03716826066374779, -0.035652291029691696, -0.0010075427126139402, -0.023443344980478287, -0.013521882705390453, -0.026515884324908257, 0.007593369577080011, -0.011938239447772503, -0.01195854227989912, 0.00046570299309678376, -0.015200274996459484, -0.01081479899585247, -0.01926090009510517, -0.0006831156788393855, -0.1705462783575058, 0.002314556622877717, 0.01731180027127266, -0.03998362645506859, 0.019409790635108948, -0.01635078527033329, 0.01996474154293537, 0.0038169880863279104, -0.013440670445561409, 0.004838912282139063, -0.005698411259800196, -0.0066560423001646996, -0.008161857724189758, -0.021683741360902786, 2.804898213071283e-05, 0.0009863936575129628, -0.01678391918540001, -0.00033923142473213375, 0.03852180019021034, 0.023524558171629906, 0.028099529445171356, -0.02188677154481411, 0.01706816256046295, 0.02972377836704254, 0.008019735105335712, 0.011660763062536716, 0.005133307538926601, 0.008716809563338757, 0.007417409215122461, -0.042149294167757034, -0.010212473571300507, 0.012770667672157288, -0.0013882264029234648, -0.003590269712731242, 0.009556005708873272, 0.0013653853675350547, 0.005816846154630184, -0.013704610988497734, 0.0044869910925626755, -0.012439049780368805, 0.009197317063808441, 0.011829955503344536, -0.016472604125738144, -0.0028644329868257046, 0.010760657489299774, 0.013521882705390453, 0.023443344980478287, -0.033270057290792465, 0.002106449566781521, -0.012472888454794884, 0.013366226106882095, -0.015714621171355247, -0.00496749859303236, -0.005065630190074444, 0.03375733271241188, -0.03348662704229355, -0.017433619126677513, 0.00958984438329935, -0.00919054914265871, 0.0021910457871854305, 0.011816420592367649, -0.026502350345253944, 0.021480709314346313, 0.016296643763780594, -0.003563198959454894, 0.0034853701945394278, -0.0010143104009330273, -0.006605284288525581, -0.018746554851531982, 0.003456607460975647, -0.008324282243847847, 0.0044091627933084965, -0.003280647099018097, -0.021561922505497932, 0.030562974512577057, 0.03383854776620865, -0.01459118165075779, 0.02487809956073761, -0.018245743587613106, 0.007004579063504934, -0.0013653853675350547, 0.029155291616916656, -0.024052439257502556, -0.0032637277618050575, 0.003624108387157321, 0.001849276595748961, 0.024905169382691383, 0.025825578719377518, 0.0009246382978744805, -0.03197065740823746, 0.021588992327451706, -0.015240881592035294, -0.00791822001338005, -0.016459068283438683, -0.0071331653743982315, 0.020722726359963417, -0.004091080278158188, -0.017393013462424278, 0.001171659678220749, 0.0029067310970276594, 0.007011346984654665, -0.008141553960740566, -0.00795205868780613, -0.01486188918352127, 0.0007444480434060097, 0.01235106959939003, -0.011092275381088257, 0.005789775401353836, 0.032214295119047165, 0.0036884015426039696, -0.010706515982747078, 0.011945006437599659, -0.009156710468232632, 0.026759522035717964, -0.010253079235553741, 0.011302074417471886, 0.0310231801122427, -0.009352974593639374, 0.0010303837480023503, -0.0032501923851668835, 0.04239293187856674, -0.015146133489906788, -0.005329571198672056, -2.5101327992160805e-05, -0.007965593598783016, -0.026312854140996933, -0.11434721946716309, -0.022658290341496468, 0.0008383499807678163, 0.029074078425765038, -0.0008747264510020614, 0.02295606955885887, 0.0042365859262645245, 0.004534365143626928, 0.006652658339589834, 0.005332954693585634, -0.0058980584144592285, -0.012581171467900276, -0.006943669635802507, 0.0033787789288908243, -0.013034608215093613, -0.00808741245418787, -0.014076835475862026, 0.0024397592060267925, -0.029561353847384453, 0.041634947061538696, 0.015308558009564877, -0.028640946373343468, 0.004253505263477564, -0.006104473955929279, -0.0018238977063447237, 0.03129388764500618, -0.03603128343820572, 0.007072256412357092, -0.005925129633396864, 0.018570594489574432, 0.004128302447497845, -0.004070776980370283, 0.00862206146121025, 0.002476981608197093, -0.003759462386369705, -0.0020539998076856136, 0.013027840293943882, 0.016662100329995155, 0.027910033240914345, -0.022211622446775436, -0.003637643763795495, 0.0110245980322361, -0.009989138692617416, 0.0016132526798173785, 0.017880287021398544, -0.026042144745588303, -0.012330765835940838, 0.023064352571964264, -0.01103136595338583, -0.01306167896836996, -0.04385475441813469, 0.020018884912133217, -0.033188845962285995, -0.02891165390610695, 0.014712999574840069, -0.02996741607785225, 0.016296643763780594, 0.01402269396930933, -0.01828635111451149, 0.042934346944093704, -0.004463304299861193, 0.004957347176969051, -0.027639323845505714, 0.008845396339893341, 0.004608809947967529, 0.008100948296487331, -0.021142324432730675, 0.02708437293767929, -0.00316559593193233, -0.008946911431849003, 0.01143066119402647, 0.044612739235162735, -0.01402269396930933, 0.02761225402355194, -0.04675133526325226, 0.02092575654387474, 0.0036951692309230566, -0.0028982714284211397, 0.01270299032330513, 0.004970882553607225, -0.033540766686201096, -0.004243353847414255, -0.010449343360960484, -0.02047908864915371, -0.0036342598032206297, 0.03508380427956581, 0.023686982691287994, 0.01560633722692728, 0.039956554770469666, -0.0014939717948436737, 0.00551229901611805, 0.01801564171910286, 0.04710325598716736, 0.018150996416807175, -0.010787728242576122, 0.02444496564567089, 0.00326541974209249, 0.004168909043073654, 0.01344743836671114, 0.03121267445385456, -0.03973998874425888, -0.02416072227060795, -0.028695087879896164, 0.004449768923223019, 0.001429678639397025, 0.007329429034143686, 0.0008040884858928621, -0.018963120877742767, 0.0005511453491635621, 0.01327147800475359, 0.009285297244787216, -0.009095801040530205, -0.01199914887547493, -0.012154805473983288, -0.018854837864637375, -0.017541902139782906, 0.015240881592035294, 0.001708846539258957, 0.010401968844234943, -0.019098475575447083, 0.024187792092561722, -0.00496749859303236, -0.014780676923692226, 0.009704895317554474, 0.005370177328586578, 0.0042602731846272945, -0.018394634127616882, -0.00861529354006052, -0.011653995141386986, -8.385614637518302e-05, -0.021480709314346313, -0.02303728275001049, 0.026664774864912033, 0.012675919570028782, -0.015267952345311642, 0.015552195720374584, -0.0014762065839022398, 0.006767709273844957, 0.014929566532373428, 0.024065973237156868, 0.018949585035443306, -0.006310889031738043, -0.009738733991980553, -0.023971226066350937, 0.030021557584404945, -0.014564109966158867, 0.004832144360989332, -0.02014070190489292, -0.0003132180427201092, 0.004818608984351158, -0.00958984438329935, 0.006889528129249811, -0.004189211875200272, 0.0029321101028472185, -0.01916615292429924, -0.01010418962687254, 0.01916615292429924, -0.021074647083878517, 0.014049764722585678, -0.007403873838484287, -0.015240881592035294, -0.0021504396572709084, 0.026069216430187225, 0.036599770188331604, 0.010483182035386562, -0.021074647083878517, 0.003113146172836423, -0.022265763953328133, -0.019585750997066498, 0.028613874688744545, 0.014740070328116417, 0.00281367520801723, -0.007525692693889141, -0.02214394509792328, 0.02390354871749878, 0.006226292345672846, 0.01809685491025448, -0.010868941433727741, -0.009156710468232632, -0.01283834408968687, -0.0073700351640582085, 0.013900875113904476, 0.06713567674160004, -0.007079023867845535, -0.002962564816698432, 0.004757699556648731, 0.03868422657251358, -0.012784202583134174, -0.006950437556952238, -0.00905519537627697, -0.0032434246968477964, 0.005678107962012291, 0.009501864202320576, -0.030102770775556564, -0.006192454136908054, 0.0018323572585359216, 0.03086075372993946, 0.019991813227534294, 0.011525409296154976, 0.007309126202017069, -0.017772004008293152, 0.014347543939948082, 0.005133307538926601, -0.013853500597178936, 0.001659780740737915, 0.015105526894330978, -0.005018256604671478, 0.005282197147607803, -0.0035293602850288153, -0.04951256141066551, -0.013494811952114105, 0.01230369508266449, -0.01915261708199978, 0.02207626774907112, -0.00043820918654091656, 0.0012706373818218708, -0.031239746138453484, 0.01950453780591488, 0.010652374476194382, -0.00865590013563633, -0.0028119832277297974, 0.020614443346858025, 0.012892486527562141, -0.00637179845944047, 0.04588506743311882, -0.018475845456123352, 0.023768195882439613, 0.014306937344372272, 0.02030312828719616, -0.036247849464416504, -0.004182444419711828, 0.02092575654387474, 0.0007423331262543797, -0.008547617122530937, -0.018313420936465263, -0.02198152057826519, -0.026150427758693695, -0.02918236330151558, 0.02769346721470356, -0.01574169099330902, 0.008175392635166645, 0.0599348321557045, 0.012317230924963951, -0.01287218276411295, 0.018936051055788994, -0.025365374982357025, 0.0037560786586254835, 0.00804680585861206, -0.007762562483549118, -0.03183530271053314, -0.010131260380148888, 0.003481986466795206, 0.015958258882164955, -0.014496433548629284, -0.02321324311196804, -0.01015833206474781, -0.014469362795352936, 0.014090370386838913, 0.022022126242518425, -0.0060706352815032005, 0.015051385387778282, 0.02953428402543068, 0.012892486527562141, -0.005904826335608959, -0.019463932141661644, -0.0026546339504420757, -0.007606905419379473, 0.033107634633779526, 0.012371372431516647, -0.03197065740823746, -0.028695087879896164, 0.004206131212413311, 0.014455826953053474, -0.020113632082939148, -0.007153468672186136, -0.008040038868784904, -0.002876276383176446, 4.7294655814766884e-05, -0.02190030738711357, 0.0010997527278959751, 0.014076835475862026, -0.017257658764719963, -0.01924736425280571, -0.021737882867455482, -0.01820513792335987, -0.010726818814873695, 0.010923082940280437, -0.0072076101787388325, -0.004077544901520014, -0.025351839140057564], "935bce25-2dce-433f-a117-7583d47ec888": [0.020831426605582237, -8.459119271719828e-05, 0.004177957773208618, -0.03960305452346802, -0.0020597982220351696, 0.0002503942232578993, 0.004977846052497625, -0.026914697140455246, -0.029798414558172226, -0.022287016734480858, 0.0015577224548906088, 0.01989765092730522, -0.016478385776281357, -0.004095565527677536, -0.011273962445557117, 0.006944953463971615, 0.02171027474105358, 0.01871670037508011, -0.004995010793209076, 0.0031600738875567913, 0.003281945362687111, 0.005293681751936674, -0.01117097306996584, -0.01495413575321436, -0.02602211944758892, 0.001178376260213554, -0.003707636846229434, -0.012674625962972641, 0.007065108045935631, -0.010278393514454365, 0.01801637001335621, -0.010916930623352528, -0.0179889053106308, -0.039520662277936935, -0.013409286737442017, -0.028727320954203606, -0.009907630272209644, 0.0006496947025880218, 0.012914935126900673, 0.003996008541435003, 0.018922680988907814, 0.004627680405974388, -0.016519581899046898, -0.0017628440400585532, -0.012928667478263378, 0.020790230482816696, 0.03564824163913727, -0.045288097113370895, -0.009275957942008972, 0.001017025439068675, 0.00048619823064655066, 0.020295878872275352, -0.00605237390846014, -0.0022640617098659277, 0.003707636846229434, -0.007820367813110352, -0.01085513737052679, 0.03779043257236481, -0.005482496693730354, -0.01118470449000597, -0.0005539999110624194, 0.007580057717859745, -0.014226340688765049, 0.025747478008270264, -0.027326658368110657, -0.009571196511387825, -0.00013925094390287995, -0.005173526704311371, 0.0103058572858572, 0.005437867715954781, 0.023550361394882202, 0.03034769557416439, 0.013429884798824787, -0.005997445899993181, 0.04767746478319168, -0.013429884798824787, -0.0009912779787555337, -0.009227896109223366, 0.000683166435919702, 0.0034862086176872253, 0.0009329169988632202, -0.031556110829114914, -0.027930865064263344, 0.017233645543456078, 0.0077105117961764336, -0.021366974338889122, -0.009646722115576267, 0.0007406691438518465, 0.0027893101796507835, -0.011576066724956036, 0.01211161445826292, 0.008809071034193039, 0.012001758441329002, 0.03864181786775589, 0.023921124637126923, 0.009083710610866547, -0.03141878917813301, 0.019018804654479027, -0.00614506471902132, -0.026859769597649574, 0.002847671043127775, -0.01009987760335207, -0.0021593552082777023, -0.008548162877559662, -0.0038689877837896347, -0.004002874717116356, 0.031528644263744354, 0.0031532079447060823, 0.006368209607899189, -0.010168537497520447, -0.015530879609286785, 0.05528498813509941, 0.0063338796608150005, -0.007195562124252319, 0.016052694991230965, -0.015187579207122326, 0.011232766322791576, -0.027354121208190918, 0.005492795258760452, -0.03504403680562973, 0.02672244980931282, -0.011177838779985905, 0.03026530332863331, -0.014748156070709229, 0.015778055414557457, -0.025912262499332428, 0.019938847050070763, -0.012605966068804264, -0.010759012773633003, -0.01624494232237339, 0.009564329870045185, 0.005705641116946936, -0.014047824777662754, 0.022616585716605186, -0.003903317730873823, 0.006069539114832878, 0.004813062027096748, 0.00037183650420047343, -0.03850449621677399, -0.008912060409784317, 0.009990021586418152, -0.005973414983600378, 0.00030382024124264717, 0.009667320176959038, -0.023934856057167053, 0.008500101044774055, 0.004713505040854216, 0.006920922081917524, 0.0003508093941491097, -0.006426570937037468, 0.010964993387460709, -0.004133328795433044, 0.011431880295276642, -0.005094567779451609, -0.0029592434875667095, 0.011644726619124413, 0.0032476154156029224, 0.015654467046260834, 0.0209962110966444, 0.01045690942555666, 0.03328634053468704, -0.0004874856094829738, 0.004627680405974388, 0.02195744961500168, -0.0008874297491274774, 0.006042074877768755, 0.013107183389365673, 0.021737737581133842, -0.006879726424813271, 0.00721616018563509, -0.021820129826664925, 0.000984411919489503, -0.023165864869952202, 0.018181152641773224, 0.02603585086762905, 0.005523692350834608, 0.018126225098967552, -0.003048501443117857, -0.0018297875067219138, -0.03910870477557182, 0.022808833047747612, 0.004287813324481249, -0.0002538272237870842, 0.04594723507761955, -0.010587363503873348, -0.0008565327734686434, 0.027546368539333344, 0.010244064033031464, 0.021463098004460335, 0.009131772443652153, 0.015421023592352867, 0.013457348570227623, -0.01694527454674244, -0.0011311725247651339, -0.6327700614929199, -0.003297393675893545, -0.01694527454674244, -0.033780694007873535, -0.014295000582933426, -0.0006110735121183097, 0.012214603833854198, -0.005873857997357845, -0.04762253537774086, 0.03367083519697189, 0.017947709187865257, 0.0034312806092202663, 0.016341065987944603, -0.011500540189445019, -0.004950381815433502, -0.024003516882658005, 0.0003160503110848367, -0.020803963765501976, -0.006165662780404091, 0.005784600041806698, -0.028590001165866852, 0.01338182296603918, 0.006066105794161558, 0.006900324486196041, 0.004552154336124659, 0.007607521954923868, -0.007346613798290491, 0.011246498674154282, 0.017082594335079193, 0.02636541798710823, -0.003081114962697029, -0.005980281159281731, 0.0194582287222147, -0.012139078229665756, 0.054708242416381836, -0.02160041779279709, 0.008582493290305138, 0.024772508069872856, 0.011267096735537052, 0.04256916418671608, -0.01875789649784565, -0.00704450998455286, 0.03400040417909622, -0.0031463420018553734, 0.0018658339977264404, -0.027354121208190918, 0.00153712450992316, 0.0005951958592049778, -0.008431441150605679, -0.03644469752907753, 0.01738469861447811, -0.026626326143741608, 0.004751268308609724, -0.002516387030482292, 0.007188695948570967, -0.009516268037259579, 0.010470641776919365, -0.00558548653498292, 0.0006522694602608681, -0.043255764991045, -0.005437867715954781, -0.010051815770566463, 0.008568760938942432, 0.0013955133035779, -0.023179596289992332, 0.02019975520670414, -0.004418267402797937, 0.020117362961173058, -0.024442939087748528, -0.0263516865670681, 0.0004741827433463186, 0.008294121362268925, -0.016299869865179062, -0.020776499062776566, 0.005925353150814772, 0.018620576709508896, 0.032654669135808945, -0.014459784142673016, -0.015215043909847736, 0.032297637313604355, 0.02098247781395912, -0.007566325832158327, -0.03353351727128029, -0.0048370929434895515, 0.055642019957304, 0.002102710772305727, -0.013484813272953033, 0.003482775529846549, 0.02525312639772892, 0.015970302745699883, -0.0003636831243056804, 0.014308732002973557, -0.008218594826757908, -0.042019885033369064, -0.023261988535523415, 0.02561015821993351, 0.006100436206907034, -0.016821686178445816, -0.0045109582133591175, -0.0241820327937603, -0.024003516882658005, -0.02449786849319935, 0.032242707908153534, 0.004490360151976347, 0.011610396206378937, -0.025005951523780823, -0.012873739004135132, 0.014349928125739098, 0.04509584978222847, -0.012715821154415607, -0.008335317485034466, -0.027175605297088623, -0.006072971969842911, 0.016176283359527588, 0.010504971258342266, -0.03358844295144081, 0.014569640159606934, -0.004950381815433502, 0.006962118204683065, 0.009433875791728497, 0.0007861563353799284, 0.007978285662829876, 0.004181390628218651, -0.00425691669806838, -0.006268652621656656, 0.02489609643816948, 0.025376714766025543, -0.019581815227866173, 0.0028837176505476236, -0.0014066705480217934, -0.00024224085791502148, -6.216943438630551e-05, -0.0049469489604234695, -0.014899207279086113, 0.007188695948570967, 0.003628677921369672, 0.007875295355916023, -0.026502737775444984, 0.007367211859673262, -0.0052353208884596825, -0.004109297413378954, -0.0038209259510040283, 0.002289809053763747, -0.010800208896398544, 0.011802644468843937, -0.042376916855573654, -0.007634985726326704, 0.013100317679345608, 0.00010835397552000359, -0.006629117764532566, 0.0013079718919470906, -0.01664317026734352, -0.027203069999814034, 0.015063991770148277, -0.02195744961500168, -0.0028270732145756483, 0.005496228579431772, -0.03946573659777641, -0.010916930623352528, -0.017082594335079193, -0.01944449543952942, 0.030375158414244652, -0.012784481048583984, -0.010607961565256119, -0.013107183389365673, -0.00016821686585899442, -0.03386308252811432, 0.033066630363464355, -0.01732976920902729, -0.035840488970279694, -0.01954061910510063, 0.009440742433071136, 0.0040784007869660854, -0.0018658339977264404, 0.009378948248922825, 0.025472838431596756, -0.020433198660612106, -0.022657781839370728, -0.015805518254637718, -0.0184420607984066, -0.009687918238341808, 0.011445612646639347, -0.0194582287222147, 0.006000879220664501, 0.011946829967200756, -0.0008367930422537029, 0.016794221475720406, -0.005842961370944977, -0.025431642308831215, 0.023165864869952202, 0.02738158591091633, -0.007030778098851442, -0.010017485357820988, 0.00524561945348978, -0.0011457628570497036, 0.0241820327937603, -0.009646722115576267, 0.0077242436818778515, 0.008335317485034466, 0.025541499257087708, 0.021792666986584663, -0.007133767940104008, -0.007415273692458868, -0.016038963571190834, -0.008671751245856285, -0.01386930886656046, 0.020803963765501976, 0.0004540138761512935, 0.019719135016202927, -0.001915612374432385, 0.0015396992675960064, 0.012956131249666214, -0.03619752079248428, -0.014377391897141933, 0.01660197414457798, 0.02349543198943138, -0.004524690099060535, 0.027312925085425377, 0.0025335520040243864, 0.009351484477519989, 0.02094128355383873, -0.009564329870045185, 0.04333815723657608, -0.003367770230397582, -0.014528444036841393, 0.00851383339613676, 0.00021971181558910757, 0.006907190196216106, -0.005499661434441805, -0.03172089532017708, 0.0015474234241992235, 0.005139196757227182, 0.006086703855544329, -0.015489683486521244, 0.03460461273789406, 0.01064915768802166, 0.024003516882658005, -0.016093891113996506, 0.03831224888563156, 0.01351227704435587, -0.014226340688765049, 0.0023773505818098783, 0.017824120819568634, -0.04369518905878067, -0.005293681751936674, 0.013986030593514442, 0.03781789541244507, 0.01702766679227352, 0.0019430763786658645, 0.040921326726675034, 0.020364539697766304, 0.005897889379411936, -0.040646687150001526, 0.014006628654897213, 0.01028525922447443, 0.003067383076995611, -0.01191936619579792, 0.01808502897620201, 0.03575809672474861, 0.027821009978652, -0.004559020046144724, 0.009001318365335464, 0.006289250683039427, -0.008143069222569466, -0.004445731174200773, -0.01264716126024723, -0.00021155845024622977, -0.02922167256474495, 0.019732868298888206, -0.0009603809448890388, -0.021215923130512238, -0.04188256710767746, -0.03369830176234245, -0.008719813078641891, 0.019746599718928337, 0.002763562835752964, 0.018661772832274437, 0.018854020163416862, 0.015105187892913818, -0.008307852782309055, -0.016162550076842308, -0.01727484166622162, 0.02168281003832817, 0.007298551965504885, -0.001622091163881123, -0.026887234300374985, -0.018139956519007683, -0.021174727007746696, 0.007037644274532795, 0.011349488981068134, -0.030869510024785995, -0.0009148937533609569, 0.0030519345309585333, 0.003893018700182438, -0.00524561945348978, 0.003297393675893545, 0.01084827072918415, -0.0011655025882646441, -0.021724006161093712, 0.0007973135798238218, -0.012894337065517902, 0.0190737321972847, -0.003132609883323312, -0.013910504989326, 0.05454345792531967, -0.004569319076836109, 0.005945951212197542, -0.0381474643945694, -0.019925115630030632, -0.006340745836496353, 0.021064870059490204, -0.006769870407879353, -0.005142629612237215, 0.006738973315805197, 0.013148379512131214, -0.0076693156734108925, 0.01301105972379446, -0.014775619842112064, 0.02489609643816948, 0.007772305514663458, -0.012605966068804264, 0.006378508638590574, -0.02197118103504181, 0.024099640548229218, 0.051385100930929184, 0.03029276616871357, -0.010401981882750988, 0.004229452461004257, -0.041717782616615295, 0.001809189561754465, -0.004500659182667732, -0.030402623116970062, 0.031611036509275436, 0.007751707453280687, 0.008980720303952694, -0.005431001540273428, -0.001071095117367804, 0.000877130776643753, -0.020034970715641975, 0.01624494232237339, 0.0011843839893117547, -0.003467327216640115, 0.025733746588230133, -0.007429006043821573, 0.015984034165740013, 0.0023927991278469563, 0.018222348764538765, 0.009550598450005054, -0.011692788451910019, -0.018345937132835388, 0.037680577486753464, 0.006189693696796894, -0.005211289506405592, -0.018606845289468765, -0.013210172764956951, 0.016904078423976898, -0.00307424901984632, 0.01665690168738365, -0.017618142068386078, 0.011260231025516987, 0.009282824583351612, 0.03216031938791275, 0.014940403401851654, -0.022465532645583153, 0.026200635358691216, 0.009784041903913021, 0.007676181849092245, -0.006907190196216106, 0.014336195774376392, 0.004823361057788134, 0.01242745015770197, 0.012592233717441559, -0.00714063411578536, -0.029029423370957375, -0.004315277561545372, -0.005214722827076912, -0.03540106862783432, -0.02702455408871174, 0.011569200083613396, -0.004373638425022364, -0.022177161648869514, -0.040619224309921265, -0.011933098547160625, 0.0023859329521656036, -0.010443177074193954, -0.012139078229665756, 0.013326895423233509, -0.0014341345522552729, 0.02025468274950981, 0.007621253840625286, -0.018620576709508896, -0.012544171884655952, -0.04284380376338959, 0.0037522658240050077, 0.00612789997830987, -0.013656462542712688, -0.010044950060546398, 4.7230532800313085e-05, 0.0009063112665899098, 0.020323343575000763, 0.004380504600703716, -0.02633795514702797, -0.005623249337077141, 0.00513576390221715, -0.007875295355916023, -0.03932841494679451, -0.003467327216640115, -0.006361343897879124, -0.01881282404065132, 0.020131096243858337, 0.014706959947943687, 0.010470641776919365, -0.024113371968269348, 0.02279510162770748, -0.009626124054193497, 0.0067321076057851315, 0.011013055220246315, -0.007223025895655155, 0.011981160379946232, 0.007387809921056032, -0.01623121090233326, 0.014500980265438557, 0.007538861595094204, -0.021765202283859253, 0.00917983427643776, -0.006539859808981419, -0.005945951212197542, -0.01665690168738365, -0.013313163071870804, 0.009427010081708431, -0.010607961565256119, 0.004583051428198814, -0.007985151372849941, -0.02197118103504181, 0.03281945362687111, -0.014226340688765049, 0.004469762090593576, 0.02559642679989338, 0.010916930623352528, 0.009118040092289448, -0.0009123189956881106, 0.014748156070709229, 0.00577086815610528, -0.006831664592027664, -0.011507406830787659, 0.0005767435068264604, 0.021504294127225876, 0.009090576320886612, -0.02375634014606476, 0.026942161843180656, 0.007429006043821573, -0.027615029364824295, -0.012496110051870346, 0.005211289506405592, 0.010051815770566463, -0.013594668358564377, -0.004195122513920069, -0.016093891113996506, -0.034851785749197006, -0.002737815259024501, -0.007703645620495081, -0.0003392230428289622, 0.015819251537322998, 0.0032716463319957256, 0.018167421221733093, -0.006660014390945435, 0.00702734524384141, -9.977148147299886e-05, 0.012811945751309395, -0.02750517427921295, -0.03710383176803589, -0.003937647677958012, 0.01658824272453785, -0.008149934932589531, 0.007792903576046228, 0.011061117053031921, -0.014528444036841393, -0.0103058572858572, 0.0032390328124165535, -0.015269971452653408, -0.008479502983391285, 0.017906513065099716, 0.008431441150605679, 0.018222348764538765, 0.015379827469587326, -0.009159236215054989, 0.0052490527741611, 0.012557903304696083, 0.004861123859882355, 0.02026841603219509, -8.893608173821121e-05, 0.002741248346865177, -0.03460461273789406, -0.0016263824654743075, 0.023316916078329086, 0.0010032934369519353, 0.003676739986985922, 0.021490562707185745, -0.004387370310723782, 0.04487613961100578, 0.006780169438570738, 0.0014796217437833548, -0.02566508762538433, -0.027491440996527672, -0.005963115952908993, 0.013052254915237427, -0.004957247991114855, 0.0015165264485403895, -0.03284691646695137, -0.013477946631610394, 0.059706687927246094, 0.022547924891114235, -0.00904938019812107, 0.01908746361732483, 0.005358908791095018, 0.018675504252314568, -0.008383379317820072, 0.00828038901090622, 0.024374280124902725, 0.0023327216040343046, 0.004613948054611683, -0.03971290960907936, 0.015434755012392998, -0.004888588096946478, -0.03438489884138107, 0.017741728574037552, 0.0015216759638860822, -0.0018984474008902907, -0.0367467999458313, -0.01809876039624214, -0.025857334956526756, -0.023275719955563545, -0.0007303701713681221, 0.006591354496777058, -0.009433875791728497, -0.021586686372756958, -0.010930662974715233, -0.011555468663573265, 0.020776499062776566, 0.03347858786582947, 0.006048941053450108, 0.008575626648962498, -0.02268524467945099, -0.014418588019907475, 0.0158879105001688, -0.03290184587240219, 0.05591665953397751, 0.011383818462491035, 0.04869363084435463, 0.0216278824955225, 0.002078679855912924, 0.0019997209310531616, 0.008603091351687908, 0.011534870602190495, 0.015819251537322998, 0.025019682943820953, 0.007580057717859745, -0.02810938097536564, 0.010244064033031464, -0.00010433093120809644, -0.001877849455922842, -0.030567407608032227, -0.016450922936201096, 0.019005073234438896, -0.0038209259510040283, -0.010058681480586529, -0.007806635461747646, 0.007147500291466713, -0.022492997348308563, 0.023619020357728004, -0.013395555317401886, -0.013100317679345608, 0.0040784007869660854, -0.02342677302658558, -0.02595345862209797, 0.04649651423096657, 0.013711391016840935, 0.014349928125739098, -0.005211289506405592, -0.011411282233893871, 0.00972224771976471, -0.02025468274950981, -0.01800263673067093, 0.022465532645583153, 0.006749272346496582, 0.017769193276762962, -0.01731603778898716, -0.010971859097480774, 0.016711831092834473, -0.008712946437299252, -0.0359778106212616, -0.01772799715399742, -0.003632111009210348, 0.0317758210003376, -0.0005715940496884286, -0.00882280245423317, 0.004119596444070339, 0.029770951718091965, -0.014967868104577065, -0.009784041903913021, -0.022589121013879776, -0.01943076401948929, -0.00849323533475399, 0.0016023514326661825, 0.0188265573233366, 0.021792666986584663, -0.015709394589066505, -0.0001640328991925344, 0.007827233523130417, 0.0006299549713730812, 0.0033334402833133936, -0.007483934052288532, 0.009269092231988907, -0.036334842443466187, -0.02129831537604332, -0.0324074923992157, 0.004092132672667503, 0.012317594140768051, -0.0111641064286232, -0.018854020163416862, 0.015764322131872177, 0.022232089191675186, 0.0019001639448106289, 0.02160041779279709, -0.025829870253801346, -0.007834099233150482, -0.030375158414244652, -0.0049057528376579285, -0.020803963765501976, -0.007065108045935631, 0.05003936588764191, -0.02171027474105358, -0.022575389593839645, -0.010896333493292332, 0.007799769751727581, 0.004579618107527494, -0.02676364593207836, -0.008726678788661957, -0.012873739004135132, 0.015311167575418949, 0.012681491672992706, -0.013656462542712688, -0.040591757744550705, 0.0206117145717144, 0.02025468274950981, 0.01336122490465641, 0.0013671910855919123, 0.0023224225733429193, 0.014391124248504639, -0.0017233645776286721, -0.002367051551118493, -0.008761009201407433, -0.020652910694479942, 0.02453906461596489, -0.005685043521225452, 0.012860007584095001, -0.018648041412234306, -0.001380923087708652, -0.020392002537846565, -0.018318472430109978, -0.012166542001068592, 0.0017491120379418135, -0.015091455541551113, 0.008603091351687908, -0.027312925085425377, -0.008946390822529793, 0.009509402327239513, 0.023289453238248825, -0.0018057564739137888, 0.01104051899164915, 0.00882966909557581, -0.007875295355916023, -0.02853507176041603, -0.028809713199734688, -0.0017731430707499385, 0.0339454747736454, 0.018181152641773224, -0.011507406830787659, -0.010154806077480316, -0.0015156682347878814, -0.04616694524884224, -0.014253804460167885, 0.0009269092115573585, 0.020007507875561714, 0.036334842443466187, -0.003412399208173156, -0.0029300630558282137, 0.04226706176996231, -0.00792335718870163, 0.019980043172836304, -0.04086639732122421, 0.022479265928268433, 0.006718375254422426, 0.009042514488101006, 0.004359906539320946, 0.006430003792047501, -0.001326853409409523, 0.005921920295804739, 0.021064870059490204, -0.0148030836135149, 0.011665324680507183, -0.008726678788661957, 0.02378380484879017, -0.016395995393395424, -0.011891902424395084, 0.006491797510534525, 0.017068861052393913, 0.006121033802628517, 0.00532457884401083, -0.04361279681324959, -0.02305600978434086, 0.01265402790158987, 0.01658824272453785, -0.016698097810149193, -0.02021348662674427, -0.001814338960684836, -0.016354799270629883, -0.0022005510982125998, 0.007916491478681564, -0.024703847244381905, 0.018963877111673355, -0.014377391897141933, 0.03180328756570816, 0.006920922081917524, 0.036334842443466187, 0.02522566355764866, 0.014013494364917278, 0.0227813683450222, -0.02206730656325817, 0.021504294127225876, -0.034824322909116745, -0.02702455408871174, 0.02386619709432125, -0.011136642657220364, 0.011994891799986362, -0.018538184463977814, 0.042459309101104736, -0.029743487015366554, 0.0003078969311900437, -0.007703645620495081, -0.009241628460586071, -0.017041398212313652, 0.01300419308245182, 0.020007507875561714, -0.04158046096563339, 0.030759654939174652, 0.003669874044135213, -0.010189135558903217, -0.003614946035668254, -0.036664411425590515, -0.0039548128843307495, -0.004867990035563707, -0.011596664786338806, -0.00863742083311081, -0.00022035550500731915, -0.00811560545116663, -0.0037213689647614956, 0.015750590711832047, -0.015627002343535423, -0.011074848473072052, 0.1847776472568512, -0.008287254720926285, 0.008520699106156826, 0.010704085230827332, -0.0008363639353774488, 0.029688559472560883, 0.027628760784864426, 0.0016950423596426845, 0.0008466629078611732, 0.02451159991323948, -0.010779610835015774, 0.003996008541435003, -0.014418588019907475, 0.008431441150605679, -0.0030622335616499186, 0.001311404863372445, 0.008143069222569466, -0.045672595500946045, -0.011850706301629543, 0.03251734748482704, 0.01242058351635933, -0.013649596832692623, -0.03345112502574921, -0.017576945945620537, 0.01662943884730339, -0.001761127496138215, -0.010086145251989365, 0.010964993387460709, 0.012118480168282986, -0.0012822244316339493, -0.01807129755616188, -0.010566765442490578, -0.007442737929522991, 0.019018804654479027, -0.0455627366900444, -0.013251368887722492, 0.03567570820450783, -0.014295000582933426, 0.001513951807282865, -0.018263544887304306, 0.0003988713724538684, 0.0030828313902020454, -0.00624118885025382, -0.024415476247668266, 0.003129177028313279, 0.048583775758743286, -0.008246059529483318, -0.00851383339613676, -0.001263342914171517, 0.032270174473524094, -0.0025953459553420544, -0.028287896886467934, 0.028617464005947113, -0.008273523300886154, 0.0005368349375203252, -0.003360904287546873, 0.01152113825082779, -0.00972911436110735, 0.023550361394882202, 0.017123790457844734, -0.01428126823157072, 0.02092755027115345, -0.020652910694479942, -0.0006157938623800874, -0.01392423640936613, 0.0032321668695658445, -0.013072852976620197, 0.003321424825116992, -0.020117362961173058, -0.012777615338563919, -0.010683487169444561, 0.0040234727784991264, -0.016409726813435555, 0.019746599718928337, -0.023261988535523415, -0.025541499257087708, 0.02957870438694954, 0.027875937521457672, 0.014212608337402344, 0.011308292858302593, -0.026420345529913902, -0.016066426411271095, -0.000527823343873024, -0.011685922741889954, -0.011157240718603134, -0.03941080719232559, 0.04537048935890198, -0.002777294721454382, 0.009289690293371677, 0.012317594140768051, 0.0031703729182481766, -0.009227896109223366, 0.011500540189445019, -0.0035016571637243032, -0.004020039923489094, 0.02519819885492325, 0.0006999023025855422, 0.01838713325560093, 0.01248237770050764, -0.006697777658700943, -0.01878536120057106, 0.028617464005947113, 0.0012847991893067956, -0.0017576945247128606, 0.0055030942894518375, -0.02563762292265892, -0.002722366712987423, -0.004346174653619528, 0.02275390550494194, -0.024442939087748528, -0.00976344384253025, -0.005671311169862747, 0.00423288531601429, -0.01873043179512024, 0.0216278824955225, 0.002679454395547509, 0.010532435029745102, -0.02063917927443981, 0.0004130324814468622, -0.0017568363109603524, 0.022094769403338432, -0.018895216286182404, -0.002700052224099636, -0.00373853393830359, 0.007023912388831377, -0.020488128066062927, -0.027587564662098885, 0.011514272540807724, -0.00667031342163682, 0.011658458039164543, 0.02241060510277748, -0.0446564257144928, 0.017247376963496208, -0.0012745001586154103, -0.018222348764538765, -0.027312925085425377, 0.0005578620475716889, 0.016890347003936768, -0.013498544692993164, 0.01734350249171257, -0.012564769946038723, -0.0017010500887408853, -0.013017925433814526, -0.005533991381525993, -0.00937208253890276, -0.017920244485139847, -0.006059240084141493, -0.009735980071127415, -0.0007102012750692666, 0.0009826954919844866, 0.01081394124776125, -0.012303861789405346, 0.02666752226650715, -0.022465532645583153, 0.009440742433071136, 0.0042809476144611835, 0.003560018027201295, -0.03822985664010048, 0.020474394783377647, -0.02166907861828804, -0.013265101239085197, 0.006028342992067337, 0.032297637313604355, 0.010086145251989365, -0.014858012087643147, 0.00010781757009681314, -0.17423146963119507, 0.006536426488310099, 0.023934856057167053, -0.020501859486103058, 0.027917133644223213, 0.0010281826835125685, 0.046331729739904404, -0.006587921641767025, -0.004744402132928371, -0.0006720091914758086, 0.00992822740226984, 0.0074496036395430565, -0.02598092332482338, -0.008699215017259121, -0.004823361057788134, -0.02673618122935295, -0.029358992353081703, 0.006526127457618713, 0.03718622401356697, 0.00792335718870163, 0.03427504375576973, -0.02235567755997181, 0.02670871838927269, 0.03831224888563156, 0.0016486968379467726, 0.011534870602190495, 0.01447351649403572, -0.012702089734375477, -0.006495230831205845, -0.033066630363464355, -0.013745720498263836, -0.0049469489604234695, -0.01734350249171257, -0.0034261310938745737, -0.001961957896128297, -0.005537424236536026, -0.0035497189965099096, 0.006999881472438574, -0.008953256532549858, 0.006539859808981419, -0.00994882546365261, -0.010868868790566921, -0.002523252973333001, -0.022245822474360466, -0.015407291240990162, 0.02489609643816948, 0.020048703998327255, -0.04152553528547287, 0.008953256532549858, -0.007648717612028122, 0.006972417235374451, -0.02598092332482338, -0.009001318365335464, 0.0014701810432597995, 0.015942838042974472, -0.021943718194961548, -0.005475630518049002, 0.007319150026887655, 0.018991339951753616, -0.006272085942327976, 0.0021988346707075834, -0.026846038177609444, 0.030512478202581406, 0.018565649166703224, -0.014102752320468426, -0.02382500097155571, -0.006426570937037468, -0.0027669956907629967, -0.009694783948361874, 0.005025907885283232, -0.010429445654153824, -0.011761448346078396, -0.0005527125322259963, -0.006244621705263853, 0.023385576903820038, 0.026873501017689705, -0.03405533358454704, 0.018675504252314568, 0.00212674168869853, 0.00031626486452296376, 0.0021301747765392065, 0.015956571325659752, -0.008252925239503384, 0.001452157855965197, -0.02279510162770748, 0.010511836968362331, 0.026159439235925674, 0.02164161391556263, -0.007586923893541098, -0.025019682943820953, 0.003178955288603902, -0.028727320954203606, -0.01373885478824377, -0.011692788451910019, 0.025211932137608528, 0.010319589637219906, 0.0034467291552573442, -0.015805518254637718, 0.026571398600935936, -0.017261110246181488, 0.01242745015770197, 0.005043072625994682, -0.019403299316763878, -0.00532457884401083, 0.020776499062776566, 0.013821247033774853, -0.014377391897141933, -0.005455032456666231, 0.032297637313604355, -0.005623249337077141, -0.011782046407461166, -0.0029746920336037874, -0.0014633151004090905, 0.011960562318563461, -0.030594870448112488, 0.03430250659584999, 0.0162724070250988, 0.005894456058740616, -0.0005758852930739522, -0.018689237534999847, 0.03397294133901596, -0.004861123859882355, -0.02703828550875187, 0.040289655327796936, -0.0035256880801171064, -0.02894703298807144, -0.12820184230804443, -0.02777981385588646, -0.006800767499953508, 0.015297435224056244, 0.0016255241353064775, 0.03314901888370514, -0.016876613721251488, -0.005520259495824575, -0.017508285120129585, 0.030375158414244652, -0.0012461779406294227, -0.02565135434269905, -0.015489683486521244, 0.01066288910806179, 0.016505850479006767, -0.02817803993821144, -0.018606845289468765, -0.0031944038346409798, -0.03757072240114212, 0.05336250737309456, -0.004438865464180708, -0.007298551965504885, -0.009296556003391743, 0.016684366390109062, 0.002382500097155571, 0.01535236369818449, -0.024635188281536102, -0.016080159693956375, -0.0037282349076122046, 0.022094769403338432, 0.02820550464093685, -0.0046208142302930355, 0.020749034360051155, -0.004102431703358889, -0.0018109059892594814, -0.005098000634461641, -0.020405735820531845, 0.00972911436110735, 0.04358533397316933, -0.018936412408947945, 0.0009269092115573585, 0.005671311169862747, -0.02092755027115345, -0.014967868104577065, 0.024113371968269348, -0.0066771795973181725, -0.003917049616575241, 0.029468847438693047, 0.0003366482851561159, -0.0296061672270298, -0.03726861625909805, 0.009804639965295792, -0.012187140062451363, -0.028370289131999016, -0.0002658427110873163, -0.0263516865670681, -0.011768314056098461, 0.0023636184632778168, 0.01173398457467556, 0.013423019088804722, -0.018194885924458504, 0.003112012054771185, -0.013821247033774853, 0.009941959753632545, 0.01985645480453968, 0.012770749628543854, -0.016038963571190834, 0.020776499062776566, 0.0029197640251368284, -0.014706959947943687, 0.009207298047840595, 0.009509402327239513, -0.015681931748986244, 0.029468847438693047, -0.04839152842760086, 0.02386619709432125, 0.006920922081917524, -0.0012375954538583755, -5.3774681873619556e-05, 0.0005312563152983785, -0.014665763825178146, -0.0006316714570857584, 0.0038827199023216963, -0.009324020706117153, -0.009083710610866547, 0.031199079006910324, 0.016395995393395424, -0.005578620359301567, 0.02670871838927269, -0.0070582423359155655, 0.0005921919946558774, 0.02206730656325817, 0.03432997316122055, -0.020419467240571976, 0.022822564467787743, 0.02238314226269722, 0.004438865464180708, -0.014171412214636803, 0.001007584622129798, 0.00747706787660718, -0.051110461354255676, -0.009227896109223366, -0.03924602270126343, 0.022671513259410858, 0.005115165840834379, -0.017741728574037552, 0.0025335520040243864, -0.005283382721245289, 0.0031480584293603897, -0.012660893611609936, -0.010182269848883152, -0.0006544151110574603, -0.010779610835015774, -0.016437189653515816, -0.017906513065099716, -0.015942838042974472, -0.002025468274950981, 0.0077654398046433926, -0.0035874820314347744, 0.003985709510743618, 0.027189336717128754, 0.0034741931594908237, 0.0003971548576373607, 0.00027785819838754833, 0.006430003792047501, 0.02850760892033577, 0.009433875791728497, -0.01242745015770197, 0.009701649658381939, 0.019320908933877945, -0.015132651664316654, -0.02740904875099659, 0.02308347262442112, 0.016492119058966637, 0.002754980232566595, -0.0017714265268296003, -0.006584488786756992, 0.009454473853111267, -0.0068591283634305, 0.009076844900846481, 0.01694527454674244, 0.009440742433071136, -0.015984034165740013, -0.012564769946038723, 0.005743404384702444, -0.014226340688765049, 0.000767703983001411, -0.01949942484498024, 0.0014375675236806273, 0.02205357328057289, 0.000613648269791156, 0.015613270923495293, -0.002955810632556677, -0.01264716126024723, -0.022616585716605186, 0.008424575440585613, 0.0033111257944256067, -0.0190737321972847, -0.01208414975553751, 0.010058681480586529, 0.019719135016202927, 0.006769870407879353, 0.042019885033369064, 0.020501859486103058, 0.0005574329406954348, -0.010704085230827332, -0.004898887127637863, -0.027285462245345116, -0.009523133747279644, 0.025747478008270264, -0.007429006043821573, -0.009845836088061333, 0.006979283411055803, -0.006042074877768755, 0.0324074923992157, 0.022506728768348694, -0.003412399208173156, 0.0007544011459685862, -0.027436513453722, 0.0076006557792425156, -0.003937647677958012, 0.013477946631610394, 0.04550781100988388, 0.0024717580527067184, -0.02598092332482338, 0.032242707908153534, 0.04177270829677582, 0.006193127017468214, 0.006495230831205845, -0.001140613341704011, -0.005537424236536026, -0.004208854399621487, 0.016011498868465424, -0.00043277221266180277, -0.022218357771635056, -0.014143948443233967, 0.028397751972079277, 0.03935587778687477, 0.017233645543456078, 0.019980043172836304, -0.0006737256771884859, 0.012489243410527706, -0.004071534611284733, -0.002413396956399083, 0.022245822474360466, -0.008987586945295334, -0.03246242180466652, 0.02525312639772892, -0.019362103193998337, -0.033423662185668945, -0.015695663169026375, 0.027628760784864426, -0.0010110177099704742, 0.019691672176122665, -0.010765879414975643, 0.004771865904331207, -0.03526374697685242, -0.007820367813110352, -0.015132651664316654, -0.00569877540692687, -0.017782924696803093, 0.030539942905306816, -0.013354359194636345, 0.01207041833549738, 0.03935587778687477, -0.005856693256646395, 0.01584671437740326, -0.0017422460950911045, 0.01954061910510063, -0.02458025887608528, -0.004840525798499584, 0.026104509830474854, -0.00740154180675745, 0.0014701810432597995, -0.017233645543456078, -0.023028545081615448, -0.01654704660177231, -0.021215923130512238, 0.00812933687120676, -0.0036492759827524424, 0.009344618767499924, 0.06833037734031677, 0.007065108045935631, -0.015627002343535423, -0.006793901324272156, -0.011315158568322659, 0.012393119744956493, 0.016382262110710144, -0.014102752320468426, -0.00046045074122957885, -0.046331729739904404, 0.0299906637519598, 0.009832103736698627, -0.02416829951107502, -0.0375157929956913, -0.013429884798824787, 0.004847391974180937, -0.0012264382094144821, -0.005691909231245518, -0.011026786640286446, 0.02239687368273735, 0.024099640548229218, 0.014363660477101803, -0.0032081359531730413, 0.028809713199734688, -0.009063112549483776, -0.009681051596999168, 0.03205046057701111, 0.011534870602190495, -0.003220151411369443, -0.017796657979488373, -0.015091455541551113, -0.004593349993228912, -0.04938023164868355, 0.0030141714960336685, -0.004637978971004486, 0.010910064913332462, -0.010573631152510643, -0.014542176388204098, 0.029688559472560883, 0.007634985726326704, -0.0010196001967415214, 0.0113906841725111, -0.034439828246831894, -0.018840288743376732, 0.002845954615622759, -0.010539301671087742, 0.016121353954076767, -0.024085907265543938, -0.04144314303994179], "51d8576b-7e29-4750-b6b9-0f17693077d5": [0.019083421677350998, 0.014613672159612179, -0.004295777063816786, -0.020220931619405746, -0.0025677639059722424, 0.007059259805828333, -0.006232891697436571, -0.019725780934095383, -0.024757593870162964, -0.04954195395112038, 0.03380415216088295, 0.021866977214813232, -0.019525043666362762, 0.0074272784404456615, -0.021987419575452805, 0.007955886423587799, 0.03966568037867546, 0.006263002287596464, 0.014091755263507366, 0.01716972514986992, -0.022562867030501366, 0.024583620950579643, 0.015617357566952705, -0.030271178111433983, -0.040254510939121246, 0.004332578741014004, 0.0050050485879182816, -0.02151903323829174, 0.004325887653976679, -0.0074741169810295105, 0.021679623052477837, -0.005312846042215824, -0.02617613784968853, -0.008798982948064804, -0.024476561695337296, 0.0009008084307424724, -6.39327263343148e-05, -0.010552087798714638, -0.012713358737528324, -0.005346301943063736, 0.020675936713814735, -0.009468106552958488, -0.014720731414854527, -0.009601932018995285, 0.004931445233523846, 0.024195529520511627, 0.00266478699631989, -0.030752945691347122, -0.00978928618133068, 0.00867184903472662, 0.0048377676866948605, 0.0381133109331131, -0.013683589175343513, -0.0033322384115308523, -0.01834738440811634, 0.00918707437813282, -0.021840212866663933, 0.0211443230509758, 0.016795016825199127, 0.0009125180658884346, -0.02232198230922222, 0.0031231369357556105, -0.0048310765996575356, -0.021304912865161896, -0.007166319992393255, -0.005035159178078175, -0.013108142651617527, -0.014172050170600414, -0.017330314964056015, -0.00576450489461422, 0.01852135732769966, 0.01754443533718586, -0.003445989452302456, 0.004583500325679779, 0.03289414569735527, -0.002979275304824114, 0.002852141857147217, -0.004362689331173897, -0.009421268478035927, 0.012218207120895386, -0.0008773890440352261, 0.0013148289872333407, 0.012137912213802338, 0.009334282018244267, -0.005925094708800316, -0.0010413244599476457, 0.007166319992393255, 0.0221480093896389, -0.015041911043226719, -0.02149226889014244, -0.009976641274988651, 0.006216163281351328, 0.00682841194793582, 0.011689599603414536, -0.009448032826185226, 0.011421949602663517, -0.0210907943546772, 0.016072362661361694, -0.008210153318941593, 0.0019454784924164414, 0.0030963721219450235, 0.019819457083940506, -0.016299864277243614, -0.012713358737528324, -0.029468229040503502, 0.007340291980654001, 0.01276019774377346, 0.00046127746463753283, 0.024878036230802536, -0.01522926613688469, -0.014988381415605545, 0.04517926275730133, 0.025011861696839333, -0.030940301716327667, 0.019083421677350998, -0.010826429352164268, 0.030726181343197823, -0.02040828764438629, -0.0018752204487100244, -0.012004087679088116, 0.026925556361675262, 0.0018936214037239552, 0.035704463720321655, 0.015416620299220085, 0.0013533036690205336, -0.022388894110918045, -0.010097083635628223, -0.0021629438269883394, -0.02283051609992981, -0.03731036186218262, 0.02448994480073452, 0.01651398465037346, -0.014787644147872925, 0.0028872708790004253, -0.0033222015481442213, -0.0038073165342211723, -0.012699976563453674, 0.01746414043009281, -0.009929802268743515, -0.028451159596443176, 0.024824505671858788, 3.988607204519212e-05, -0.0024055014364421368, 0.006015426013618708, -0.011013783514499664, 0.012599607929587364, 0.02177330106496811, 0.017357081174850464, 0.0033155102282762527, -0.003934449981898069, 0.004596882965415716, 0.0017681606113910675, 0.02137182652950287, -0.0010053591104224324, 0.0036099248100072145, 0.005935131572186947, 0.018360767513513565, 0.00687190517783165, 0.0010379789164289832, -0.0009710664162412286, 0.036962419748306274, 0.004376071970909834, 0.0017296859296038747, 0.02394126169383526, -0.00917369220405817, 0.024958331137895584, 0.013409248553216457, 0.01605897955596447, 0.008062946610152721, -0.005199094768613577, -0.019618719816207886, 0.009120162576436996, -0.03209119662642479, 0.022884046658873558, -0.001982280286028981, -0.03538328409194946, 0.02443641424179077, 0.00038202808354981244, -0.013663515448570251, 0.015523680485785007, 0.018842536956071854, -0.014506611973047256, 0.0221212450414896, 0.005135527811944485, -0.01832062005996704, 0.022415660321712494, 0.03158266097307205, 0.0274608563631773, 0.01872209459543228, 0.0031164458487182856, 0.00878559984266758, 0.015363090671598911, -0.007674854248762131, 0.012539386749267578, -0.649211049079895, -0.01277357991784811, -0.005928440019488335, -0.04400160536170006, -0.0019003126071766019, -0.00518571212887764, 0.010364733636379242, -0.022214923053979874, -0.01413190271705389, 0.04405513405799866, 0.009468106552958488, -0.003210123162716627, 0.0019923171494156122, -0.006905361544340849, 0.0025108885020017624, -0.030271178111433983, 0.02486465312540531, -0.044938378036022186, -0.011796658858656883, 0.0029173814691603184, 0.004540007561445236, 0.010250981897115707, -0.008123167790472507, -0.025587307289242744, -0.010398189537227154, 0.025854958221316338, 0.01543000340461731, 0.011221212334930897, 0.002574455225840211, 0.011067314073443413, -0.019417982548475266, -0.0034694087225943804, -0.0011659488081932068, -0.0011023820843547583, 0.03918391093611717, -0.007333600893616676, 0.0002613766409922391, 0.014841173775494099, 0.020997116342186928, 0.026938939467072487, -0.01769164204597473, -0.025707749649882317, 0.007708310149610043, 0.005557076074182987, 0.0044931685552001, 0.0028320681303739548, 0.009407885372638702, 0.019310923293232918, -0.015309561043977737, -0.009622005745768547, 0.011408567428588867, 0.001549858832731843, -0.004710634239017963, -0.005961896385997534, 0.01711619645357132, -0.02912028320133686, 0.013609985820949078, -0.021666239947080612, 0.003753786673769355, -0.015403238125145435, 0.022014185786247253, -0.015523680485785007, -0.0220944806933403, -0.0033506392501294613, -0.027674974873661995, 0.011870263144373894, -0.03345621004700661, -0.01174312923103571, -0.013342335820198059, -0.0189495962113142, 0.0037571322172880173, 0.011716363951563835, 0.0032770356629043818, -0.006420246325433254, -0.012619681656360626, -0.006885287817567587, 0.026684671640396118, -0.006898669991642237, 0.00916031002998352, -0.015068676322698593, 0.02171977050602436, 0.008665157482028008, -0.0037571322172880173, -0.01872209459543228, 0.03003029339015484, -0.004623647779226303, 0.004978283774107695, 0.003971252124756575, -0.006115794647485018, 0.026912173256278038, 0.02391449734568596, 0.017838850617408752, 0.005814689211547375, -0.05545701086521149, 0.0038240444846451283, 0.013797339983284473, -0.01920386403799057, -0.014600289054214954, 0.015162353403866291, -0.03375062346458435, -0.007326909806579351, -0.02622966654598713, 0.015844861045479774, 0.030993830412626266, 0.008364052511751652, 0.004707288462668657, 0.00443629315122962, 0.006256310734897852, 0.04600897803902626, -0.01453337725251913, 0.001733031589537859, -0.01454675942659378, -0.007801987696439028, 0.011368419975042343, 0.014453082345426083, -0.020501963794231415, 0.0019320959690958261, -0.016219569370150566, 0.006363370921462774, -0.02680511400103569, 0.025507012382149696, -0.0030746255069971085, -0.006192744243890047, -0.032760318368673325, 0.013636750169098377, -0.005894984118640423, -0.02283051609992981, -0.010404881089925766, -0.005393140949308872, -0.008531332947313786, 0.0007339455769397318, -0.007152937352657318, -0.016554132103919983, 0.0018166721565648913, 0.0017296859296038747, -0.02717982418835163, -0.013154980726540089, -0.009146926924586296, 0.01980607584118843, -0.0169689878821373, -0.008725378662347794, -0.01683516427874565, 0.00958854891359806, -0.01708943024277687, -0.005540348123759031, -0.02192050777375698, -0.01683516427874565, -0.016995754092931747, -0.009106779471039772, -0.0014737460296601057, 0.004329233430325985, 0.023954644799232483, 0.000851460499688983, 0.0402277447283268, 0.007286762353032827, 0.007186393719166517, -0.009615314193069935, -0.018066352233290672, -0.006159287877380848, -0.024329354986548424, 0.003566431812942028, 0.028210274875164032, -0.022669926285743713, 0.003526284359395504, 0.0066812047734856606, -0.0020073724444955587, -0.016219569370150566, 0.0253464225679636, -0.036989182233810425, -0.030672650784254074, 0.005854836665093899, 0.001149220741353929, 0.000945974315982312, 0.01980607584118843, 0.004981629550457001, 0.04097716510295868, -0.024048322811722755, 0.013476160354912281, 0.01104724034667015, -0.011769894510507584, 0.008163315244019032, -0.020568877458572388, -0.013984695076942444, 0.004824385046958923, 0.029842937365174294, -0.006229545921087265, 0.019471513107419014, -0.008277066051959991, -0.009889654815196991, 0.0011299834586679935, 0.02726011909544468, 0.013717045076191425, -0.0012796999653801322, -0.01628648303449154, -0.028504690155386925, 0.010331276804208755, 0.01245909184217453, -0.002427247818559408, 0.011301507242023945, 0.05146903172135353, 0.023620083928108215, -0.01834738440811634, 0.0038742288015782833, -0.01496161613613367, 0.016447072848677635, -0.02580142766237259, 0.003596542403101921, -0.02992323227226734, 0.030619122087955475, -0.017638113349676132, 0.010511940345168114, 0.0034208972938358784, -0.01175651140511036, -0.02423567697405815, 0.008752143941819668, 0.03728359937667847, -0.006038845516741276, 0.047936055809259415, 0.0010580526432022452, -0.004884606227278709, 0.029682347550988197, 0.01014392264187336, 0.030217647552490234, -0.009153618477284908, -0.0074072047136723995, 0.013094759546220303, 0.017825467512011528, 0.011823424138128757, -0.0049448274075984955, -0.06182707101106644, 0.015871625393629074, 0.0038006252143532038, -0.005105417221784592, 0.002368699526414275, 0.012084382586181164, 0.02997676283121109, 0.014279109425842762, -0.016125893220305443, 0.026791730895638466, -0.007868899963796139, -0.012526004575192928, 0.016139274463057518, 0.01580471359193325, -0.023901114240288734, 0.019618719816207886, 0.01625971682369709, 0.0464639812707901, -0.005881601478904486, 0.01749090477824211, 0.01227173674851656, 0.008384126238524914, -0.008451038040220737, -0.013108142651617527, -0.012218207120895386, -0.000194255102542229, -0.01237210538238287, 0.02237551286816597, 0.012699976563453674, 0.006657785270363092, 0.01988637074828148, -0.013717045076191425, 0.009046558290719986, -0.0009668844286352396, 0.0010705986060202122, 0.0021227963734418154, -0.0014662183821201324, 0.011348346248269081, -0.025533778592944145, -0.017785320058465004, 0.00234695291146636, -0.002980948192998767, -0.041218049824237823, -0.01476087886840105, -0.0018651835853233933, 0.03193060681223869, 0.0008740434423089027, -0.0005156437982805073, 0.01723663881421089, 0.018467826768755913, 0.0010061954380944371, -0.029816173017024994, -0.009635387919843197, 0.01265982910990715, 0.03918391093611717, -0.004148569889366627, -0.03538328409194946, -0.013389174826443195, -0.010337968356907368, -0.014867939054965973, 0.005175675265491009, -0.01779870316386223, 0.029842937365174294, 0.005088689271360636, 0.0179459098726511, -0.015082058496773243, 0.0033824227284640074, 0.0337238572537899, 0.008645083755254745, -0.017705025151371956, -0.0022030912805348635, -0.009046558290719986, -0.014078372158110142, -0.026791730895638466, -0.028477923944592476, 0.047106340527534485, -0.0056440625339746475, 0.0005240078899078071, -0.010110465809702873, 0.023124931380152702, -0.01708943024277687, 0.008123167790472507, -0.03345621004700661, 0.015844861045479774, 0.006293112877756357, 0.04172658175230026, -0.012653137557208538, -0.0006695423508062959, 0.005737739615142345, 0.0201138723641634, 0.017410609871149063, 0.012425635941326618, -0.005038504954427481, 0.016340011730790138, 0.01983284018933773, 0.055992309004068375, 0.006165978964418173, -0.03755124658346176, 0.014774261973798275, -0.024623768404126167, 0.01706266589462757, -0.023446111008524895, -0.015603975392878056, 0.03581152483820915, -0.0020241006277501583, 0.0003238979261368513, 0.01734369806945324, 0.021987419575452805, -0.01565750502049923, -0.0009744120761752129, 0.0034292612690478563, 0.010926797986030579, -0.0004788419755641371, -0.003047860460355878, -0.0036199616733938456, 0.02517245151102543, -0.006349988281726837, 0.024623768404126167, -0.0019672249909490347, -0.016192805022001266, -0.01116099115461111, 0.017705025151371956, 0.006186052691191435, -0.010585544630885124, -0.02351302281022072, -0.020769614726305008, 0.009882964193820953, 0.019337687641382217, 0.011381802149116993, 0.005419905763119459, 0.040763042867183685, 0.024677298963069916, 0.025333041325211525, 0.003676837310194969, -0.02046181634068489, 0.021505650132894516, 0.007788605056703091, 0.0021830175537616014, -0.019163716584444046, 0.014774261973798275, -0.0019990084692835808, -0.003914376255124807, 0.023727143183350563, 0.014881321229040623, 0.008437655866146088, -0.014827791601419449, -0.014412934891879559, -0.021224617958068848, -0.003753786673769355, 0.0253196582198143, 0.017410609871149063, 0.001614262000657618, -0.0034392981324344873, -0.018026204779744148, -0.05187050625681877, 0.001169294468127191, -0.01902989111840725, 0.01126135978847742, -0.014064989984035492, 0.008732070215046406, -0.0057109748013317585, -0.008765526115894318, -0.013241967186331749, -0.02169300615787506, 0.005637370981276035, 0.0025476901791989803, -0.009889654815196991, -0.04633015766739845, -0.01777193695306778, -0.019270775839686394, 0.0032368882093578577, -0.0040649292059242725, -0.0066310204565525055, -0.006309840828180313, 0.031074125319719315, -0.02451670914888382, -0.036534179002046585, -0.022991105914115906, -0.033590033650398254, -0.004269012250006199, -0.004399491474032402, 0.0027919206768274307, -0.014653819613158703, -0.002684860723093152, -0.0015515316044911742, -0.026243049651384354, 0.00279359333217144, -0.005376412533223629, 0.005915057845413685, -0.018735475838184357, 0.01923062838613987, 0.006587527226656675, 0.01963210292160511, 0.012091073207557201, -0.03666800260543823, 0.008103094063699245, -0.027393942698836327, -0.0011157644912600517, -0.024168765172362328, -0.006403518375009298, -0.025333041325211525, 0.0003328892635181546, 0.013596602715551853, 0.005523620173335075, -0.03131501004099846, 0.009508254006505013, -0.010003406554460526, 0.013295496813952923, 0.02783556468784809, 0.0032920909579843283, 0.02791585959494114, 0.025078773498535156, 0.003733712946996093, 0.01394454762339592, -0.01104724034667015, 0.004366035107523203, -0.018481209874153137, 0.005162293091416359, 0.03203766420483589, -0.03830066695809364, 0.01104724034667015, -0.0028872708790004253, -0.02640363946557045, -0.02222830429673195, 0.005225859582424164, 0.013696971349418163, 0.013589912094175816, -0.017638113349676132, -0.005363030359148979, -0.036052409559488297, -0.01414528489112854, 0.0009986677905544639, 0.005165638402104378, -0.008377434685826302, -0.0035597404930740595, 0.0168886948376894, 0.00974244810640812, 0.013797339983284473, -0.0005675009451806545, 0.011984013952314854, -0.03581152483820915, -0.004095039796084166, -0.003696911036968231, -0.007039186079055071, 0.03126148134469986, -0.006206126417964697, 0.0075209555216133595, -0.012967626564204693, -0.0035798142198473215, 0.004339270293712616, -0.00937442947179079, -0.012204824946820736, -0.011602613143622875, 0.04346630722284317, 0.019779309630393982, 0.005279389675706625, -0.012164677493274212, 0.023124931380152702, -0.004439638927578926, -0.0022047641687095165, 0.020849909633398056, -0.015135589055716991, -0.015844861045479774, -0.030137352645397186, 0.023138314485549927, 0.036132704466581345, 0.0033590032253414392, 0.008290448226034641, -0.01453337725251913, 0.004707288462668657, 0.03035147301852703, 0.0015189117984846234, -0.016246335580945015, -0.02683187834918499, -0.03249267116189003, -0.016166040673851967, -0.011341654695570469, 0.0014946560841053724, 0.0242892075330019, -0.005035159178078175, -0.004048201255500317, 0.02174653485417366, -0.007628015708178282, 0.03345621004700661, 0.03292090818285942, 0.02743409015238285, 0.011649452149868011, -0.0026413677260279655, 0.019926518201828003, 0.013616676442325115, -0.0263501089066267, -0.015269413590431213, -0.036962419748306274, 0.007715001702308655, -0.0009735756320878863, -0.009521637111902237, 0.014453082345426083, 0.011522318236529827, -0.020274462178349495, -0.012338649481534958, -0.00888596847653389, -0.021612711250782013, -0.020274462178349495, 0.008163315244019032, -0.02345949411392212, -0.011930483393371105, -0.023339051753282547, -0.005941822659224272, 0.005955204833298922, -0.006062265019863844, 0.030244411900639534, 0.01957857236266136, 0.017638113349676132, -0.03771183639764786, -0.029682347550988197, -0.017383845522999763, -0.02509215660393238, 0.025868339464068413, -0.01822694204747677, 0.04678516089916229, 0.014801026321947575, 0.012592916376888752, -0.016179421916604042, 0.012385488487780094, 0.016768252477049828, 0.01015730481594801, 0.030164116993546486, -0.021652858704328537, -0.013021156191825867, -0.0179726742208004, 0.0033322384115308523, 0.008384126238524914, -0.013683589175343513, -0.035302989184856415, -0.01454675942659378, 0.01194386649876833, 0.013971312902867794, 0.0023636810947209597, 0.00044956780038774014, -0.02700585126876831, 0.01501514669507742, -0.008377434685826302, 0.018507974222302437, -0.015389855951070786, -0.003051206236705184, -0.039050087332725525, 0.01948489621281624, 0.00707264244556427, 0.011863571591675282, -0.014653819613158703, -0.008845821022987366, 0.0007924939272925258, -0.028129979968070984, -0.03345621004700661, 0.013034538365900517, 0.01716972514986992, 0.0025476901791989803, -0.01943136565387249, -0.0013047921238467097, 0.025881722569465637, 0.02234874665737152, 0.009013102389872074, -0.013101451098918915, -0.0011207829229533672, 0.024048322811722755, -0.005781232845038176, -0.03463386744260788, 5.7346031098859385e-05, 0.0189228318631649, -0.0029558560345321894, -0.0036333443131297827, -0.015496915206313133, -0.015296177938580513, -0.016928842291235924, 0.00868523120880127, 0.028049685060977936, 0.01857488602399826, -0.002775192493572831, 0.022884046658873558, 0.0007862208876758814, -0.013904400169849396, 0.02602892927825451, -0.020194167271256447, 0.009642079472541809, -0.018066352233290672, -0.00218970887362957, -0.02091682143509388, 0.0037203303072601557, -0.0024339391384273767, -0.006343297194689512, -0.018615033477544785, 0.003606579266488552, 0.015670888125896454, -0.026564229279756546, 0.015309561043977737, -0.021933890879154205, -0.01245909184217453, -0.013850870542228222, 0.013389174826443195, 0.006259656511247158, -0.009896346367895603, 0.019699014723300934, -0.031823545694351196, -0.027594679966568947, -0.012117838487029076, -0.023526405915617943, -0.006062265019863844, -0.02637687511742115, -0.006858522538095713, -0.013282114639878273, -0.01663442701101303, 0.031422071158885956, -0.009448032826185226, 0.0067782276310026646, 0.014426317065954208, -0.013422630727291107, 0.011167682707309723, 0.021050646901130676, -0.012385488487780094, 0.011294815689325333, -0.0037905883509665728, -0.0035597404930740595, -0.01017068699002266, -0.022161392495036125, -0.02879910357296467, 0.016594279557466507, 0.027782035991549492, 0.003830735804513097, 0.0024690681602805853, -0.009809359908103943, -0.001891948631964624, -0.016955606639385223, -0.007019112352281809, -0.0037404040340334177, -0.008029489777982235, -0.006005389150232077, 0.003059570211917162, 0.0018166721565648913, 0.01646045409142971, -0.010364733636379242, -0.006252965424209833, -0.0024055014364421368, -0.014867939054965973, -0.023927880451083183, -0.002582819201052189, -0.010030170902609825, 0.04421572387218475, 0.016420306637883186, 0.005352993495762348, -0.00269322469830513, 0.010324586182832718, -0.03297444060444832, -0.01671472191810608, -0.020194167271256447, 0.015269413590431213, 0.01142864115536213, -0.004496514331549406, -0.00623623700812459, 0.05229874327778816, -0.007199775893241167, 0.01968563348054886, -0.007032494992017746, 0.008136549964547157, 0.006306495051831007, 0.014305874705314636, -0.015724418684840202, -0.009347664192318916, 0.007440660614520311, -0.002176326233893633, 0.010224217548966408, -0.03458033502101898, -0.005326228216290474, 0.004419565200805664, -0.023874349892139435, 0.003743749810382724, -0.0220944806933403, 0.018441062420606613, 0.017276786267757416, -0.001133329002186656, 0.013342335820198059, -0.025386570021510124, -0.010592235252261162, -0.010806355625391006, -0.004503205418586731, -0.021465502679347992, -0.009702300652861595, -0.020421668887138367, -0.012425635941326618, 0.014453082345426083, -0.00804287288337946, -0.015256031416356564, -0.00221814657561481, -0.025279510766267776, 0.03562416881322861, -0.02471744641661644, 0.007500881794840097, -0.0013834142591804266, -0.018186794593930244, 0.005851490888744593, -0.0011065640719607472, -0.01857488602399826, -0.008899351581931114, -0.0076882364228367805, 0.030244411900639534, -0.003405841998755932, -0.001881911768577993, -0.025466864928603172, 0.03417886048555374, -0.00563067989423871, -0.0023034599144011736, -0.004640376195311546, 0.015001763589680195, -0.01965886726975441, 0.0038876114413142204, 0.0017581237480044365, 0.01097363606095314, 0.02597540058195591, 0.0110606225207448, -0.015737799927592278, 0.006654439959675074, -0.022040950134396553, 0.02394126169383526, -0.003951178397983313, 0.012780271470546722, -0.0021746535785496235, -0.008651775307953358, -0.02003357745707035, -0.0008665157947689295, 0.010913414880633354, -0.027674974873661995, -0.018052969127893448, 0.17964646220207214, -0.01620618812739849, 0.002358662663027644, -0.003496173769235611, -0.02486465312540531, 0.00905994139611721, 0.02823703922331333, -0.001535639981739223, -0.019725780934095383, 0.00681502977386117, 0.009240604937076569, 0.01127474196255207, -0.02788909524679184, 0.014172050170600414, 0.00433592451736331, -0.017477523535490036, -0.000322016014251858, -0.03637358918786049, -0.005684209987521172, 0.01413190271705389, 0.004352652467787266, 0.012479165568947792, -0.04825723543763161, -0.005547039210796356, 0.04600897803902626, 0.022268451750278473, -0.024837888777256012, 0.01729016751050949, 0.041619524359703064, -0.020649172365665436, -0.012720050290226936, 0.004911371506750584, 0.03433945029973984, 0.02234874665737152, -0.010485175997018814, 0.001664446317590773, 0.023539789021015167, 0.0020726120565086603, 0.008062946610152721, -0.009347664192318916, 0.019070038571953773, 0.008430964313447475, -0.008926115930080414, -0.026256432756781578, 0.01726340316236019, 0.03385768458247185, -0.019792692735791206, -0.02738056145608425, -0.006186052691191435, 0.017250020056962967, 0.002159598283469677, -0.014091755263507366, 0.011977322399616241, 0.02317846193909645, -0.01065914798527956, 0.00437941774725914, -0.025761280208826065, 0.03222502022981644, 0.02222830429673195, 0.02280375175178051, -0.02539995312690735, 0.02126476541161537, -0.013342335820198059, 0.011609304696321487, -0.0014344349037855864, 0.004697251599282026, -0.032278548926115036, -0.015068676322698593, -0.00878559984266758, 0.003425915725529194, 0.003081316826865077, -0.013703662902116776, -0.010224217548966408, 0.005168984178453684, -0.01394454762339592, -0.025025242939591408, 0.020568877458572388, 0.03854155167937279, 0.005804652348160744, -0.005399832036346197, -0.012706668116152287, -0.012084382586181164, -0.017664877697825432, -0.029013223946094513, -0.0075811767019331455, -0.02137182652950287, 0.027996154502034187, -0.010364733636379242, -0.014667201787233353, 0.0006030481308698654, -0.02300448901951313, -0.006186052691191435, -0.019083421677350998, 0.008210153318941593, 0.024958331137895584, 0.01600545085966587, -0.010665839537978172, -0.010083701461553574, -0.002280040644109249, -0.0253196582198143, -0.01365682389587164, 0.05245933309197426, -0.003208450274541974, 0.0338309183716774, 0.018240325152873993, -0.00402143644168973, -0.010424954816699028, 0.0008251137332990766, -0.004650413058698177, -0.029655583202838898, 0.011308198794722557, -0.03334914892911911, 0.01175651140511036, -0.028183510527014732, 0.0066410573199391365, 0.010705986991524696, -0.005148910451680422, -0.012740124017000198, -0.0010915087768808007, -0.01044502854347229, -0.00867184903472662, -0.006457048002630472, -0.015148971229791641, 0.010190760716795921, 0.010465102270245552, -0.010351350530982018, -0.03939802944660187, 0.015095441602170467, -0.015603975392878056, -0.01726340316236019, 0.02003357745707035, -0.021639475598931313, -0.011917101219296455, -0.0008468602900393307, -0.00661429250612855, -0.026256432756781578, 0.00311142741702497, -0.010652456432580948, -0.019190480932593346, 0.015711035579442978, -0.025680985301733017, 0.00380397099070251, -0.020649172365665436, 0.017678260803222656, 0.006487158592790365, 0.0013533036690205336, 0.009113471023738384, 0.01245909184217453, 0.00197224342264235, -0.019391218200325966, 0.008618319407105446, -0.01097363606095314, 0.011334963142871857, -0.009822743013501167, -0.009936493821442127, -0.0094747981056571, 0.004366035107523203, -0.019672250375151634, 0.015108823776245117, -0.005235896445810795, -0.01880238950252533, -0.0008410054142586887, 0.03814007714390755, -0.001441126223653555, 0.0004984975093975663, -0.011850189417600632, -0.1690475344657898, 0.01225835457444191, -0.001574114547111094, -0.0018518011784180999, 0.01585824228823185, 0.01413190271705389, 0.028906164690852165, -0.002326879184693098, -0.01327542308717966, 0.0012052599340677261, -0.002407174091786146, -0.009990023449063301, -0.011361728422343731, -0.01814664714038372, -0.007915738970041275, -0.001950496924109757, 0.0056741731241345406, 0.025306275114417076, 0.023968027904629707, 0.005610606167465448, 0.03460710123181343, -0.02426244132220745, 0.010491866618394852, 0.028103215619921684, 0.00016184440755750984, 0.007909047417342663, -0.0026380219496786594, 0.0105453971773386, -0.012184751220047474, -0.03037823736667633, 0.009401194751262665, -0.008069637231528759, -0.0013951238943263888, 0.010150613263249397, 0.011087387800216675, 0.003007713006809354, -0.01799944043159485, -0.011281433515250683, -0.0100569361820817, 0.00208934023976326, 0.014680583961308002, 0.04349306970834732, 0.006490504369139671, -0.0004048201080877334, 0.0021144323982298374, 0.031877074390649796, 0.013415939174592495, -0.022482572123408318, -0.003375731408596039, -0.01668795756995678, 0.02063578926026821, -0.013556455262005329, -0.001783215906471014, -0.0008042036206461489, 0.03380415216088295, -0.028022920712828636, -0.010665839537978172, 0.0078889736905694, -0.010886650532484055, -0.002755118766799569, 0.0029190541245043278, -0.03385768458247185, 0.010779590345919132, 0.022696692496538162, 0.005359684582799673, -0.005861527752131224, -0.017410609871149063, 0.017624730244278908, -0.028584985062479973, -0.0169154591858387, -0.00576450489461422, -0.027782035991549492, 0.009929802268743515, -0.01680839993059635, 0.009407885372638702, 0.018481209874153137, -0.010491866618394852, -0.009033176116645336, 0.003037823596969247, -0.004687214735895395, 0.009046558290719986, 0.0026597685646265745, 0.0027818838134407997, -0.023994792252779007, 0.020849909633398056, 0.005319537129253149, 0.010163996368646622, 0.010277747176587582, -0.006704624276608229, -0.009153618477284908, 0.021786682307720184, -0.03385768458247185, -0.00825699232518673, -0.0009317554067820311, 0.015389855951070786, 0.023620083928108215, -0.009802669286727905, -0.029628818854689598, 0.015269413590431213, -0.021077411249279976, 0.014667201787233353, -0.0067079695872962475, -0.022790368646383286, -0.006487158592790365, 0.04351983591914177, 0.007929121144115925, 0.009153618477284908, -0.019712397828698158, 0.032305315136909485, 0.002959201578050852, -0.042074527591466904, 0.019244011491537094, -0.01453337725251913, 0.009367737919092178, 0.006784919183701277, 0.04084333777427673, 0.006788264494389296, -0.031074125319719315, 0.029441462829709053, 0.0036634549032896757, 0.04555397480726242, 0.007159628439694643, 0.004734053276479244, 0.018936213105916977, -0.0137438103556633, -0.016768252477049828, -0.10925459116697311, -0.02497171424329281, -0.01294755283743143, 0.013837487436830997, -0.0034995193127542734, 0.027594679966568947, -0.017330314964056015, 0.01631324738264084, -0.033643562346696854, 0.038702141493558884, -0.011355036869645119, -0.023191843181848526, -0.007326909806579351, -0.025292893871665, 0.007715001702308655, -0.002586164977401495, -0.031127655878663063, -0.014988381415605545, -0.03262649476528168, 0.04483132064342499, 0.002425575163215399, -0.00908670574426651, 0.00727337971329689, 0.009668843820691109, -0.013877634890377522, 0.03340267762541771, -0.011401875875890255, -0.00974244810640812, 0.009441342204809189, 0.006450356915593147, 0.00653734290972352, -0.006182707380503416, 0.003934449981898069, -0.03278708457946777, 0.020020194351673126, 0.004774200730025768, 0.006958891171962023, -0.006761499680578709, 0.03846125677227974, 0.004185371566563845, -0.012552768923342228, 0.0008297139429487288, -0.010010097175836563, -0.0003433443489484489, 0.0274608563631773, -0.011582539416849613, 0.0022633124608546495, 0.020247697830200195, -0.022161392495036125, -0.025654220953583717, -0.029842937365174294, -0.0378991924226284, -0.038220372051000595, -0.022241687402129173, 0.014479846693575382, -0.01025767344981432, -0.0105721615254879, 0.023298904299736023, 0.007755149155855179, -0.00206090253777802, -0.012940861284732819, -0.005523620173335075, -0.01563074067234993, -0.0040448554791510105, 0.02957528829574585, 0.004095039796084166, -0.025279510766267776, -0.0074741169810295105, 0.009247295558452606, -0.028210274875164032, -0.0018651835853233933, 0.030190883204340935, -0.02262977883219719, 0.031154420226812363, -0.006992347538471222, 0.019190480932593346, -0.005081998184323311, 0.000599702529143542, 0.030672650784254074, -0.0015532044926658273, -0.011769894510507584, -0.012726741842925549, 0.0030629157554358244, -0.021987419575452805, 0.00612248620018363, 0.02572113275527954, 0.006898669991642237, 0.005352993495762348, 0.020555494353175163, -0.037015948444604874, 0.01142864115536213, 0.013609985820949078, 0.029307639226317406, -0.018213558942079544, -0.005881601478904486, 0.001823363360017538, 0.025881722569465637, -0.02920057810842991, 0.016500601544976234, 0.01940460130572319, -0.008825747296214104, -0.0028571602888405323, -0.022616397589445114, 0.020046960562467575, -0.0009083360782824457, -0.01127474196255207, -0.011903719045221806, 0.0033439479302614927, 0.007393822073936462, -0.009113471023738384, 0.01605897955596447, 0.004713979549705982, -0.037952721118927, -0.004499860107898712, -0.010351350530982018, -0.017022518441081047, -0.015938537195324898, -0.0253464225679636, 0.017450757324695587, -0.017196491360664368, 0.00016173985204659402, -0.010886650532484055, -0.001891948631964624, 0.009876272641122341, 0.013917782343924046, 0.013502925634384155, 0.005858181975781918, -0.011555774137377739, -0.011488862335681915, 0.01852135732769966, -0.0067681907676160336, 0.002009045332670212, 0.020368140190839767, -0.011435331776738167, -0.011963940225541592, 0.009334282018244267, -0.009722374379634857, 0.000664105755276978, 0.036507412791252136, 0.013783957809209824, 0.012726741842925549, 0.0464104525744915, -0.00677153654396534, -0.0036433811765164137, -0.011984013952314854, -0.021278148517012596, 0.0012194787850603461, -0.015617357566952705, -0.019123569130897522, 0.005025122314691544, 0.010398189537227154, 0.012291810475289822, 0.0232855211943388, 0.011870263144373894, -0.017638113349676132, -0.019645486027002335, 0.0002285477239638567, -0.015068676322698593, 0.018240325152873993, -0.009514945559203625, 0.0074272784404456615, -0.003626652993261814, 0.055082302540540695, 0.019672250375151634, 0.0038173533976078033, -0.04108422249555588, -0.026162754744291306, -0.027701741084456444, -0.01683516427874565, 0.044162195175886154, 0.01454675942659378, -0.009909728541970253, -0.0038876114413142204, -0.007527647074311972, -0.006303149741142988, 0.020609024912118912, 0.026698054745793343, -0.006801647134125233, -0.02731364779174328, 0.004854495637118816, 0.0007331091910600662, 0.022669926285743713, 0.023767290636897087, 0.008203462697565556, 0.015256031416356564, 0.02643040381371975, 0.0358382910490036, -0.03131501004099846, 0.01789237931370735, -0.011114152148365974, -0.0016736468533053994, 0.008551406674087048, 0.005015085451304913, 0.014908086508512497, -0.020609024912118912, 0.020368140190839767, 0.0016744831809774041, 0.004406182561069727, -0.014412934891879559, 0.013589912094175816, 0.018093116581439972, 0.012706668116152287, 0.008564788848161697, -0.005389795172959566, 0.016366777941584587, 0.0015013472875580192, -0.01882915385067463, 0.006196089554578066, -0.012706668116152287, -0.016353394836187363, -0.008129858411848545, 0.035195931792259216, 0.006346642505377531, 0.01395792979747057, 0.016902076080441475, -0.0047808922827243805, -0.0013349027140066028, 0.0075142644345760345, 0.006072301883250475, -0.007259997073560953, -0.027969390153884888, -0.0013273750664666295, -0.016942223533988, 0.011716363951563835, 0.032733555883169174, -0.021452121436595917, 0.01127474196255207, 0.01703590154647827, 0.02051534689962864, -0.03538328409194946, 0.003159938845783472, -0.004442984238266945, -0.015416620299220085, 0.01456014160066843, 0.002127814805135131, -0.008049563504755497, -0.00041966632124967873, -0.02423567697405815, 0.017049282789230347, -0.0020324646029621363, 0.008511259220540524, 0.05700938031077385, 0.029361167922616005, 0.00022645671560894698, 0.019739162176847458, 0.0023837548214942217, 0.0006143396021798253, 0.011334963142871857, -0.0007887301035225391, 0.00018223178631160408, -0.005945167969912291, 0.035329755395650864, 0.025841575115919113, 0.014667201787233353, -0.01703590154647827, -0.03623976558446884, 0.005476781167089939, -0.022067714482545853, 0.016554132103919983, -0.015189118683338165, 0.0013691952917724848, 0.01565750502049923, 0.00707264244556427, 0.0008941171690821648, 0.0002910690091084689, 0.0018317274516448379, -0.011769894510507584, 0.02517245151102543, 0.001722994726151228, 0.019980046898126602, -0.029387934133410454, 0.0057210116647183895, 0.019538424909114838, -0.04046862944960594, -0.03294767439365387, 0.02129153162240982, -0.014653819613158703, -0.011181064881384373, -0.006500541232526302, 0.040254510939121246, 0.005195748992264271, 0.013810723088681698, -0.005647407844662666, -0.016326630488038063, -0.039906565099954605, -0.02917381376028061, 0.004125150386244059, -0.005811343435198069, -0.014466464519500732, -0.02823703922331333], "55da5c49-c77a-4ce6-bd25-70b055db9658": [0.014806823804974556, 0.02173565700650215, -0.004000011831521988, -0.039810288697481155, -0.011830543167889118, 0.015972929075360298, 0.006139001343399286, -0.0028067880775779486, -0.031945858150720596, -0.02869161032140255, 0.008549178019165993, 0.022671254351735115, -0.016501743346452713, 0.01242715585976839, -0.008874602615833282, 0.002344074659049511, 0.019945822656154633, -0.0009813588112592697, -0.012935631908476353, 0.021505149081349373, 0.001548309694044292, 0.017857680097222328, 0.019566159695386887, -0.019728872925043106, -0.014522076584398746, 0.020352602005004883, 0.016040725633502007, -0.03007466532289982, -0.012081392109394073, -0.009586469270288944, 0.030047547072172165, -0.01541699469089508, -0.025139058008790016, 0.010352573357522488, -0.03075263276696205, -0.006467815954238176, -0.0001001062264549546, 0.003044076729565859, -0.013139021582901478, -0.006922054570168257, 0.016989881172776222, 0.010962744243443012, -0.00592205161228776, -0.002096616430208087, 0.012149188667535782, 0.018400054425001144, 0.010020368732511997, -0.031756024807691574, -0.006159340497106314, -0.0007665277225896716, 0.01722039096057415, 0.057003557682037354, -0.007227140013128519, -0.006074594333767891, -0.017572933807969093, 0.011077999137341976, -0.015145807527005672, 0.009871215559542179, -0.0019525481620803475, -0.03549841046333313, 0.011945798061788082, 0.011193253099918365, -0.021410232409834862, -0.03159331530332565, -0.0009745791903696954, 0.0151593666523695, -0.0003052975225728005, 0.020284805446863174, -0.02124752104282379, -0.0048000141978263855, -0.002559329615905881, 0.02485431171953678, -0.014644111506640911, 0.014074617996811867, 0.04705098643898964, 0.005403405986726284, -0.022115319967269897, -0.0071118855848908424, -0.002052548574283719, -0.006969511974602938, -0.005905102472752333, -0.010610201396048069, -0.009532231837511063, 0.014766145497560501, -0.012976309284567833, -0.010189861059188843, 0.01143732201308012, 0.02508481964468956, -0.016854288056492805, -0.018915310502052307, -0.009430536068975925, 0.015430553816258907, 0.0025406854692846537, 0.028393303975462914, -0.004206791985780001, 0.028827203437685966, 0.0063051036559045315, 0.012318680994212627, 0.006766121834516525, 0.0004843234783038497, -0.0015728860162198544, 0.012589868158102036, -0.015322078950703144, -0.005047472659498453, -0.008298330008983612, -0.00968138501048088, 0.027756014838814735, 0.014142414554953575, 0.01960683800280094, 0.0005542389117181301, -0.00637290021404624, 0.04851539805531502, -0.01549835130572319, -0.02435261383652687, 0.003644078504294157, -0.004925438202917576, -0.002893229015171528, -0.03319332003593445, -0.016379710286855698, -0.006142390891909599, 0.012406816706061363, 0.0213017575442791, 0.005850865039974451, 0.015145807527005672, 0.01876615732908249, -0.028257710859179497, 0.0035796717274934053, -0.002488143043592572, -0.005518660414963961, -0.013586481101810932, 0.026359399780631065, 0.0061288317665457726, 0.0088203651830554, 0.00791188795119524, -0.009179688058793545, 0.006752562243491411, -0.03229840099811554, 0.019620398059487343, -0.016596660017967224, -0.024989904835820198, 0.025776347145438194, 0.003915265668183565, 0.0012042408343404531, 0.007098325993865728, -0.010027148760855198, -0.005867814179509878, 0.024637361988425255, 0.011593254283070564, -0.005403405986726284, 0.01837293617427349, 0.001486445078626275, -0.00657629081979394, -0.003140687244012952, 0.0008351719588972628, 0.014603433199226856, 0.024230580776929855, -0.01450851745903492, 0.01976954936981201, 0.033328913152217865, -0.0036135700065642595, 0.03376281261444092, 0.03189162164926529, -0.003384755691513419, 0.0027271267026662827, 0.009654265828430653, 0.02313227206468582, 0.03625773638486862, 0.02188481017947197, 0.009159348905086517, 0.024149224162101746, -0.00975596159696579, 0.008135617710649967, -0.020515315234661102, 0.014739026315510273, 0.027593301609158516, 0.0006872901576571167, 0.019878024235367775, -0.012725461274385452, -0.02787804789841175, -0.007267818320542574, 0.027091605588793755, -0.009627147577702999, 0.0076949382200837135, 0.024650920182466507, -0.03026449680328369, 0.015579706989228725, 0.01562038529664278, 0.0029983138665556908, 0.017166152596473694, 0.011301728896796703, 0.01753225550055504, 0.033084843307733536, -0.0058610341511666775, 0.009559350088238716, -0.6339272856712341, -0.021776335313916206, -0.026454316452145576, -0.03387128561735153, 0.0029695003759115934, 0.012122069485485554, 0.005203405395150185, -0.0011796645121648908, -0.015200044959783554, 0.04474589601159096, -0.008027142845094204, -0.0012618681648746133, 0.02245430462062359, -0.023064475506544113, -0.003972893115133047, -0.029125509783625603, 0.004864421207457781, -0.022847525775432587, -0.03140348196029663, 0.006786460988223553, -0.004118656273931265, 0.010074606165289879, -0.010189861059188843, 0.004244080279022455, 0.0017144118901342154, 0.029776358976960182, 0.012698343023657799, 0.015010214410722256, 0.02206108160316944, 0.03793909400701523, -0.03764079138636589, -0.01598648726940155, 0.010067826136946678, -0.00979663897305727, 0.04113910347223282, -0.011647491715848446, -0.003694926155731082, 0.009403417818248272, 0.03181026503443718, 0.0360679030418396, -0.013966143131256104, -0.02074582502245903, 0.017016999423503876, 0.029206866398453712, 0.011355966329574585, -0.019742431119084358, 0.0008966128225438297, 0.0034983153454959393, -0.0026084822602570057, -0.0120881712064147, 0.013416988775134087, 0.01926785334944725, -0.014427161775529385, -0.015132248401641846, 0.01892887055873871, -0.017016999423503876, 0.02812211774289608, -0.015728861093521118, -0.005220354534685612, -0.023240746930241585, 0.022725490853190422, -0.0018288189312443137, -0.0035288240760564804, -0.014766145497560501, -0.017179712653160095, 0.00848816055804491, -0.028420424088835716, -0.005566118285059929, -0.0035966208670288324, -0.015145807527005672, 0.003474586643278599, 0.033735692501068115, -0.019823787733912468, -0.01968819461762905, -0.0006970359827391803, 0.025315329432487488, 0.027498386800289154, -0.014196651987731457, 0.005250862799584866, 0.010216979309916496, 0.013871227391064167, -0.013939023949205875, -0.006535612512379885, -0.017233949154615402, 0.033979762345552444, 0.011362745426595211, -0.005884763319045305, 0.0065593416802585125, 0.00616950960829854, 0.006389849353581667, -0.008501719683408737, 0.015728861093521118, -0.0012491561938077211, -0.03739672154188156, -0.009152569808065891, 0.00888816174119711, -0.013518684543669224, -0.0060508656315505505, -0.023417018353939056, -0.017274627462029457, -0.0012127154041081667, -0.024732276797294617, -0.000401060504373163, 0.0069966306909918785, 0.0053084902465343475, 0.016664456576108932, -0.0013983092503622174, 0.019200056791305542, 0.03639332950115204, -0.021288199350237846, -0.019878024235367775, -0.03747807815670967, -0.010847489349544048, 0.02762042172253132, -0.00241695623844862, -0.01993226259946823, 0.010237318463623524, 0.015145807527005672, 0.012861055321991444, -0.015457672998309135, -0.007179682143032551, 0.011261050589382648, -0.012908512726426125, -0.001813564682379365, 0.019457684829831123, 0.012203426100313663, -0.013939023949205875, -0.022996678948402405, -0.029233984649181366, 0.0054847621358931065, 0.0009576299344189465, 0.0052915411069989204, 0.005569507833570242, -0.0062474762089550495, -0.0072474791668355465, -0.018061069771647453, 0.010291555896401405, -0.012732241302728653, 0.005203405395150185, -0.011674610897898674, -0.018589885905385017, -0.010684777051210403, 0.016596660017967224, -0.03132212534546852, -0.018183104693889618, -0.013335633091628551, -0.01123393140733242, -0.010671217925846577, -0.012813596986234188, 0.007647480349987745, 0.0014194957911968231, -0.00034555187448859215, -0.021694978699088097, 0.029396697878837585, 0.0013466142117977142, -0.004969506058841944, 0.00504069309681654, 0.007105106022208929, -0.020230568945407867, -0.005600016564130783, -0.0054847621358931065, 0.028908560052514076, -0.030128903687000275, 0.007166123017668724, -0.005050862208008766, -0.017274627462029457, -0.018061069771647453, 0.050061166286468506, -0.028556017205119133, -0.046291664242744446, 0.008962738327682018, 0.007145783863961697, 0.01426444947719574, -0.0029423816595226526, -0.00013612328621093184, 0.031267888844013214, -0.013633938506245613, 0.0013186479918658733, 0.0003974588180426508, -0.030454328283667564, 0.011539016850292683, 0.002044073771685362, 0.014481399208307266, -0.022603457793593407, 0.013023767620325089, -0.002113565569743514, 0.01254240982234478, 0.004359335172921419, -0.01934920996427536, 0.005803407169878483, 0.017762765288352966, 0.023878036066889763, -0.008074600249528885, 0.004498318303376436, -0.00044788268860429525, 0.03517298400402069, 0.010311895050108433, 0.010318675078451633, 0.014983095228672028, 0.05190523713827133, 0.014413601718842983, -0.022250913083553314, -0.0021847521420568228, -0.023972952738404274, 0.008508499711751938, -0.028420424088835716, 0.0058000171557068825, -0.019566159695386887, 0.009606808423995972, -0.0019745822064578533, 0.008311889134347439, -0.0029576357919722795, -0.034061118960380554, -0.027823811396956444, 0.019145820289850235, 0.03270518034696579, -0.004135605413466692, 0.020596671849489212, 0.0006661036750301719, -0.009559350088238716, 0.021206842735409737, 0.012020374648272991, 0.015145807527005672, 0.014128855429589748, 0.006023746449500322, 0.00889494176954031, 0.018305139616131783, 0.008745788596570492, -0.016922084614634514, -0.05336964875459671, -0.006518663372844458, -0.008481381461024284, 0.009715283289551735, 0.0002853822079487145, 0.030888227745890617, 0.02557295747101307, 0.014332246035337448, -0.017328865826129913, 0.03435942530632019, -0.008833924308419228, -0.01852208934724331, 0.023294983431696892, 0.013783091679215431, -0.04146452993154526, -0.001801700214855373, 0.003333908272907138, 0.03170178830623627, 0.01600004732608795, 0.001722886459901929, 0.025383125990629196, -0.003266111481934786, -0.002603397471830249, -0.019389888271689415, -0.0029678053688257933, 0.009518672712147236, 0.0015567842638120055, 0.009444096125662327, 0.00208983663469553, 0.010616980493068695, 0.020298365503549576, -0.004128825850784779, 0.009206807240843773, 0.0369085855782032, 0.005332219414412975, 0.018155986443161964, 0.018061069771647453, -0.009518672712147236, -0.03091534599661827, -0.01821022294461727, -0.011172914877533913, -0.031349245458841324, -0.024081427603960037, -0.010284775868058205, -0.005322049837559462, 0.0241899024695158, 0.007064427714794874, 0.014698348939418793, 0.01796615496277809, 0.010874608531594276, 0.010827151127159595, -0.024217020720243454, -0.015959369018673897, -0.004589844029396772, 0.03186450153589249, 0.0018678021151572466, -0.005511880852282047, -0.03140348196029663, -0.003610180225223303, -0.01156613603234291, 0.004274589009582996, -0.01821022294461727, 0.004474589601159096, -0.008522058837115765, -0.004020350985229015, -0.006264425348490477, -0.0065627312287688255, 0.020691586658358574, -0.02490854822099209, -0.026264484971761703, 0.010094945318996906, -0.008020362816751003, -0.0026017026975750923, -0.033491626381874084, -0.013640718534588814, 0.051851000636816025, -0.005962729454040527, 0.015566147863864899, -0.015078010968863964, 0.0042305211536586285, -0.04170859977602959, 0.01065087877213955, -0.013023767620325089, -0.0217220988124609, -0.005745779722929001, 0.02869161032140255, -0.02313227206468582, 0.023647528141736984, 0.0022644135169684887, 0.03598654642701149, 0.017600052058696747, -0.011810204945504665, -0.021911930292844772, -0.011722068302333355, 0.013755973428487778, 0.05133574455976486, 0.004322046879678965, -0.02328142523765564, 0.0008063583518378437, -0.024745836853981018, 0.0014567839680239558, 0.00625086622312665, -0.012908512726426125, 0.024976344779133797, -0.0046034036204218864, -0.00790510792285204, 0.021139046177268028, 0.010379691608250141, -0.000734747969545424, -0.009328841231763363, 0.021613623946905136, 0.0023017018102109432, -0.01012206356972456, 0.0034661120735108852, -0.025233972817659378, 0.0029067883733659983, 0.01287461444735527, 0.030481446534395218, 0.0046067931689321995, -0.010142402723431587, -0.010596641339361668, 0.016203437000513077, 0.007437310181558132, -0.004657641053199768, -0.02558651566505432, -0.0027711945585906506, 0.017925476655364037, 0.03178314492106438, 0.021789895370602608, -0.017030559480190277, 0.03991876170039177, 0.010888167656958103, 0.021179724484682083, 0.01562038529664278, -0.013518684543669224, 0.032922130078077316, 0.009905113838613033, 0.012840716168284416, -0.01549835130572319, -0.009186468087136745, 0.008705110289156437, 0.005905102472752333, 0.013633938506245613, -0.009498333558440208, -0.012644105590879917, -0.0020932266488671303, -0.020555993542075157, -0.023728884756565094, -0.0054406942799687386, 4.443868965608999e-05, 0.0031678059604018927, -0.0061288317665457726, -0.0034339085686951876, -0.015335639007389545, -0.020298365503549576, -0.02409498579800129, -0.018223783001303673, 0.01680004969239235, 0.010644099675118923, 0.016827167943120003, 0.004945777356624603, -0.0007190699107013643, 0.007389852311462164, -0.02490854822099209, -0.0019508532714098692, 0.015308519825339317, -0.016027165576815605, -0.04385097697377205, -0.008827145211398602, 0.002786448923870921, 0.013105123303830624, -0.011206813156604767, -0.020149212330579758, -0.007545785047113895, 0.013559361919760704, -0.032922130078077316, -0.05138998478651047, -0.000418221578001976, -0.021003451198339462, 0.001129664364270866, 0.007993243634700775, 0.019620398059487343, 0.01745089888572693, 0.0008241549949161708, 0.014806823804974556, -0.002581363543868065, -0.003949164412915707, -0.006539002526551485, -0.014481399208307266, -0.013437327928841114, 0.019471244886517525, -0.012000035494565964, 0.020474636927247047, -0.0014881399692967534, -0.023010237142443657, 0.008854263462126255, -0.0021440740674734116, 0.0005245778011158109, -0.02409498579800129, -0.014088177122175694, 0.011003422550857067, -0.002271193079650402, 0.0241763424128294, -0.022603457793593407, -0.00894239917397499, 0.04585776478052139, -0.015457672998309135, 0.034630611538887024, 0.017410220578312874, 0.01529496069997549, 0.016840727999806404, -0.002661024918779731, 0.028881441801786423, 0.03181026503443718, -0.020366162061691284, 0.01575597934424877, -0.04699674993753433, 0.0034271287731826305, 0.031105177477002144, -0.021871251985430717, 0.02344413660466671, 0.006532222963869572, -0.022725490853190422, -0.016989881172776222, -0.012650884687900543, 0.023349221795797348, 0.016908524557948112, -0.026169568300247192, -0.01463055144995451, 0.00017118695541284978, 0.016420388594269753, -0.01553902868181467, 0.006071204319596291, -0.018061069771647453, 0.00824409257620573, 0.006033916026353836, -0.005481372121721506, 0.009355960413813591, -0.01574241928756237, -0.010149182751774788, -0.03731536492705345, -0.002722041914239526, -0.007464428897947073, 0.018223783001303673, 0.02673906274139881, 0.01934920996427536, 0.00864409375935793, -0.015959369018673897, 0.003011873224750161, 0.025762788951396942, -0.012989869341254234, -0.006237306632101536, -0.018739039078354836, 0.03476620465517044, 0.006715273950248957, 0.02631872147321701, -0.006355951074510813, 0.027905168011784554, 0.022644134238362312, -0.015972929075360298, 0.01163393259048462, -0.005840695463120937, -0.013796650804579258, -0.000100953686342109, 0.0031000091694295406, 0.014033939689397812, -0.0043695042841136456, 0.01696276292204857, -0.01811530813574791, -0.0029881445225328207, 0.014535636641085148, 0.007294937036931515, 0.013261056505143642, -0.023145832121372223, -0.028257710859179497, -0.001055935281328857, 0.004311877302825451, 0.011667830869555473, 0.027200080454349518, -0.02056955173611641, -0.010698337107896805, 0.030617039650678635, 0.010094945318996906, -0.001011019921861589, 0.012345799244940281, 0.010752574540674686, -0.006084763910621405, 0.019389888271689415, 0.03335602954030037, 0.027240758761763573, -0.01680004969239235, 0.010840710252523422, -0.03563400357961655, 0.02303735725581646, 0.025301769375801086, 0.006823749281466007, 0.03918655589222908, 0.008400024846196175, -0.009769520722329617, -0.00856951717287302, 0.010467827320098877, -0.004562725313007832, -0.01886107213795185, 0.018386494368314743, -0.01975599117577076, -0.027037369087338448, -0.03793909400701523, -0.028067879378795624, -0.010508505627512932, 0.0033576369751244783, 0.024786513298749924, 0.025762788951396942, 0.0208949763327837, -0.012915292754769325, -0.042169615626335144, 0.020108534023165703, -0.037098415195941925, 0.04298317804932594, -0.013952584005892277, 0.03140348196029663, 0.005783068016171455, 0.004338996019214392, -0.005223744083195925, 0.012101731263101101, 0.015308519825339317, 0.014983095228672028, 0.030156021937727928, -0.0017322085332125425, -0.012155968695878983, -0.007525445893406868, -0.021762777119874954, 0.01483394205570221, -0.00757968332618475, -0.02631872147321701, 0.013722074218094349, 0.029613647609949112, -0.007010190282016993, -0.023498374968767166, 0.013294954784214497, -0.03319332003593445, 0.017857680097222328, -0.005037303082644939, -0.0009703418472781777, -0.01811530813574791, 0.00660340953618288, -0.02477295510470867, 0.019118700176477432, 0.012800037860870361, 0.010874608531594276, 0.004467810038477182, 0.0009135620202869177, -0.012135629542171955, -0.020610230043530464, -0.01877971738576889, 0.0012593257706612349, -0.0001951276935869828, 0.02385091781616211, -0.01463055144995451, 0.005322049837559462, 0.03246111422777176, 0.004318656865507364, -0.023918714374303818, -0.012562748976051807, 0.007891548797488213, 0.031105177477002144, -0.01053562480956316, -0.015308519825339317, -0.00888816174119711, 0.02253565937280655, -0.005850865039974451, -0.0034678068477660418, -0.009898334741592407, -0.005084760952740908, -0.008325448259711266, -0.014169533737003803, 0.01564750447869301, 0.013084784150123596, 0.00033305183751508594, -0.000197670073248446, -0.003328823484480381, -0.025640754029154778, 0.013925464823842049, -0.017410220578312874, -0.009084772318601608, -0.0320000946521759, 0.0026474655605852604, -0.005216964520514011, -0.0018508529756218195, 0.0014796653995290399, 0.005671203136444092, -0.025613635778427124, 0.024881429970264435, 0.034711968153715134, -0.012942411005496979, 0.0034610272850841284, -0.002445769961923361, -0.0026152620557695627, -0.03506451100111008, 0.022969558835029602, -0.012894953601062298, -0.011681390926241875, 0.02877296693623066, -0.008718670345842838, -0.01144410204142332, -0.02730855531990528, -0.01033223420381546, -0.0041728937067091465, -0.015850894153118134, -0.017342424020171165, 0.009247484616935253, 0.010725455358624458, 0.018006833270192146, -0.010244098491966724, -0.022752609103918076, 0.022752609103918076, -0.015511910431087017, 0.006105103064328432, 0.01697632111608982, -0.0007580530946142972, -0.001316953101195395, -0.005057642236351967, -0.01352546364068985, 0.008264431729912758, -0.033166199922561646, -0.007410191465169191, -0.009559350088238716, 0.016691574826836586, 0.008257651701569557, 0.017762765288352966, -0.01123393140733242, 0.0024728886783123016, -0.019050903618335724, -0.0007881379569880664, -0.007816972211003304, 0.012027154676616192, -0.01008138619363308, 0.017993273213505745, 0.026115331798791885, -0.003583061508834362, -0.03132212534546852, -0.02303735725581646, -0.008393244817852974, 0.0029169577173888683, -0.041844192892313004, -0.0014584788586944342, -0.03492891788482666, 0.04903065413236618, 0.028230592608451843, -0.01254240982234478, -0.008759347721934319, 0.0061728996224701405, -0.026210246607661247, -0.01307800505310297, -0.009661045856773853, 0.01745089888572693, 0.012691562995314598, 0.012698343023657799, 0.005667813587933779, 0.023471256718039513, -0.024745836853981018, 0.014861061237752438, -0.0022135658655315638, 0.01673225313425064, -0.006183069199323654, 0.0299390722066164, -0.0009847487090155482, -0.005983068607747555, -0.0010610200697556138, -0.01438648346811533, 0.0184407327324152, -0.02326786518096924, 0.015050891786813736, 0.008074600249528885, 0.0038067910354584455, -0.019145820289850235, -0.0013135632034391165, -0.02385091781616211, -0.011939018033444881, 0.004335606005042791, -0.006749172694981098, -0.012325460091233253, -0.0029135679360479116, 0.008467821404337883, 0.022969558835029602, 0.004135605413466692, -0.0011432237224653363, -0.016854288056492805, -0.01640682853758335, 0.0180339515209198, -0.007227140013128519, -0.01574241928756237, 0.02730855531990528, -0.012691562995314598, 0.01772208698093891, -0.024488208815455437, 0.008393244817852974, 0.021139046177268028, 0.004064418841153383, -0.01045426819473505, -0.02370176464319229, -0.010440709069371223, -0.018400054425001144, -0.01098308339715004, 0.019457684829831123, 0.012969530187547207, 0.01541699469089508, -0.0043695042841136456, 0.03075263276696205, -0.027661098167300224, -0.00220509129576385, -0.0336000993847847, 0.0013033937430009246, -0.026278043165802956, -0.0049966247752308846, 0.012983089312911034, -0.00604747561737895, -0.0035525530111044645, -0.023905156180262566, 0.02245430462062359, -0.012678003869950771, -0.007227140013128519, 0.0011322067584842443, 0.01143732201308012, 0.001531360438093543, 0.01332207303494215, 0.004074588418006897, 0.004728827625513077, -0.00516611710190773, 0.010488166473805904, -0.02097633294761181, -0.007979684509336948, 0.18505817651748657, -0.00506103178486228, 0.021044129505753517, 0.03959333896636963, -0.00869833119213581, 0.030156021937727928, 0.01581021584570408, -0.012861055321991444, -0.012406816706061363, 0.01242037583142519, 9.920580487232655e-05, 0.026711944490671158, -0.012678003869950771, 0.009572910144925117, 6.705528357997537e-05, -0.009491553530097008, 0.01463055144995451, -0.045125558972358704, -0.00274746585637331, 0.005037303082644939, 0.0006542392075061798, -0.002696618204936385, -0.030969582498073578, -0.01933564990758896, 0.02682041935622692, 0.0035288240760564804, -0.021844131872057915, 0.007986464537680149, 0.0434713140130043, -0.0009864435996860266, -0.012223765254020691, 0.02066446840763092, 0.009410197846591473, 0.007477988488972187, -0.03590518981218338, -0.0058000171557068825, 0.02269837260246277, -0.022671254351735115, 0.04048825427889824, -0.030156021937727928, 0.006969511974602938, 0.0036474685184657574, -0.024379733949899673, -0.021505149081349373, 0.01640682853758335, 0.02550516091287136, -0.02180345542728901, -0.004698318894952536, -0.007193241734057665, 0.009091552346944809, -0.014481399208307266, -0.01057630218565464, 0.016366150230169296, 0.013389870524406433, 0.012576308101415634, -0.020528875291347504, -0.0029678053688257933, 0.02722719870507717, 0.016542421653866768, 0.01696276292204857, -0.02197972685098648, 0.02024412713944912, 0.00027648385730572045, 0.00876612775027752, -0.0034288237802684307, -0.003830519737675786, -0.0336272194981575, -0.002435600385069847, -0.010291555896401405, -0.002881364431232214, -0.01426444947719574, -0.009579689241945744, -0.0004745776823256165, -0.003344077616930008, -0.023552611470222473, -0.018955988809466362, 0.017844120040535927, 0.01795259490609169, 0.006949173286557198, 0.025857703760266304, -0.025396686047315598, -0.029966190457344055, -0.007023749873042107, -0.001604242017492652, 0.002108480781316757, -0.029125509783625603, 0.04951879009604454, -0.035308580845594406, -0.0009144094656221569, -0.0011033931514248252, -0.019579719752073288, -0.015444113872945309, 0.004491538740694523, 0.003935604821890593, 0.005454253405332565, 0.023349221795797348, -0.013939023949205875, 0.024894988164305687, -0.015864454209804535, 0.006494934670627117, -0.027932286262512207, 0.04894929751753807, 0.025233972817659378, 0.0018661072244867682, 0.019457684829831123, -0.00975596159696579, -0.00864409375935793, 0.00647459551692009, 0.011701730079948902, -0.017328865826129913, 0.003052551532164216, -0.017030559480190277, -0.006511883810162544, -0.017559373751282692, 0.00692544411867857, 0.0005504253786057234, -0.015010214410722256, -0.015376316383481026, 0.013023767620325089, 0.002950856229290366, -0.007179682143032551, -0.005983068607747555, -0.03812892735004425, 0.007084766868501902, -0.002000005915760994, 0.00296102580614388, -0.020962774753570557, 0.0022457693703472614, -0.022806847468018532, 0.005454253405332565, 0.0344407819211483, -0.045532338321208954, -0.00297119515016675, 0.0012694953475147486, -0.008962738327682018, -0.008481381461024284, -0.006528832949697971, -0.024488208815455437, -0.014318686909973621, -0.0018847513711079955, -0.038074690848588943, 0.00241865124553442, -0.021342435851693153, -0.004789844620972872, -0.009932233020663261, -0.02263057604432106, -0.0035695021506398916, -0.0013178004883229733, 0.005728830583393574, -0.02065090835094452, -0.018345817923545837, 0.003169500967487693, 0.0017983104335144162, -0.034711968153715134, 0.0032135688234120607, -0.015945810824632645, 0.007633920758962631, -0.03536281734704971, 0.012813596986234188, -0.007477988488972187, -0.02950517274439335, 0.015511910431087017, 0.03533569723367691, 0.0013016987359151244, -0.017844120040535927, -0.03224416449666023, -0.17160728573799133, 0.013010208494961262, -0.005067811813205481, -0.034386541694402695, 0.023254306986927986, -0.005271201953291893, 0.030888227745890617, -0.0015050892252475023, 0.007877989672124386, -0.009152569808065891, -0.005908492021262646, 0.013267835602164268, -0.015688182786107063, 0.005132218822836876, -0.004667810630053282, 0.015200044959783554, -0.013125462457537651, 0.0040983171202242374, 0.029206866398453712, 0.011125456541776657, 0.02787804789841175, -0.014861061237752438, 0.021830573678016663, 0.008732229471206665, -0.006467815954238176, 0.03506451100111008, 0.007105106022208929, 0.006447476800531149, -0.023810239508748055, -0.04238656535744667, 0.01722039096057415, 0.008908500894904137, 0.00926782377064228, -0.011240711435675621, 0.021518707275390625, 0.008528838865458965, -0.007179682143032551, -0.02597973868250847, -0.031050939112901688, 0.005444083828479052, 0.0032966199796646833, 0.028718728572130203, 0.0068169692531228065, 0.004728827625513077, 0.0024271258153021336, 0.014494958333671093, 0.030210258439183235, -0.02189837023615837, 0.012467833235859871, -0.03164755180478096, 0.03400687873363495, -0.0241763424128294, -0.002979669952765107, -0.0023864477407187223, 0.025613635778427124, -0.020718704909086227, -0.02673906274139881, 0.02082717977464199, -0.00864409375935793, -0.000847883871756494, -0.0007991549209691584, -0.03311196342110634, -0.01065087877213955, 0.026671266183257103, 0.010833930224180222, -0.015362757258117199, -0.010169521905481815, 0.006789850536733866, -0.04772895574569702, 0.0012008510529994965, 0.0065627312287688255, 0.009105111472308636, -0.004925438202917576, -0.00670171482488513, -0.0077423956245183945, 0.02974924072623253, -0.013911905698478222, -0.011200033128261566, 0.007789853494614363, -0.015132248401641846, 0.004400013014674187, 0.0074847680516541, -0.004298317711800337, -0.006210187915712595, 0.000836019404232502, -0.025071261450648308, -0.004867811221629381, -0.0026152620557695627, 0.00033156879362650216, -0.006433917209506035, 0.02983059734106064, -0.039078082889318466, -0.004983065649867058, 0.00017044541891664267, 0.017857680097222328, 0.021694978699088097, 0.012027154676616192, -0.03585095331072807, 0.017600052058696747, -0.017817001789808273, 0.016867846250534058, -0.010366132482886314, -0.04748488590121269, -0.011722068302333355, 0.021084807813167572, 0.019484803080558777, -0.020800061523914337, 0.006230527069419622, 0.042928941547870636, 0.0047389972023665905, -0.03297637030482292, -0.008759347721934319, 1.0944153473246843e-05, 0.016867846250534058, -0.003044076729565859, 0.03650180250406265, -0.0013296649558469653, -0.023417018353939056, 0.00616950960829854, 0.014698348939418793, 0.04257639870047569, -0.006637307815253735, -0.005569507833570242, 0.012800037860870361, 0.0019898363389074802, -0.015471232123672962, -0.12680715322494507, -0.03905096277594566, -0.015674622729420662, 0.012772919610142708, 0.006240696646273136, 0.016433946788311005, -0.005227134097367525, 0.02033904381096363, -0.016027165576815605, 0.019294971600174904, 0.015023773536086082, -0.03346450626850128, -0.0018067850032821298, -0.019959380850195885, -0.025220414623618126, -0.013430547900497913, -0.01886107213795185, -0.0014898349763825536, -0.012101731263101101, 0.022983118891716003, 0.033491626381874084, 0.009586469270288944, -0.015376316383481026, 0.011552576906979084, -0.005847475025802851, 0.009742401540279388, -0.03625773638486862, 0.02490854822099209, -0.00165085238404572, 0.017572933807969093, 0.0151729267090559, -0.019972940906882286, -0.0005580525030381978, -0.019240735098719597, 0.011728848330676556, 0.008345787413418293, -0.009200027212500572, -0.017505137249827385, 0.04781031236052513, -0.01796615496277809, 0.003674587234854698, -0.0005309337866492569, -0.0046135731972754, -0.0116881700232625, -0.005437304265797138, 0.001186444191262126, -0.037993334233760834, 0.005128828808665276, 0.004355945158749819, -0.03837299346923828, -0.027362793684005737, -0.025966178625822067, -0.04330860450863838, -0.0026847536209970713, 0.013172920793294907, -0.017342424020171165, -0.008345787413418293, 0.0056779831647872925, 0.004016960971057415, 0.008657652884721756, -0.020298365503549576, -0.008183075115084648, -0.010379691608250141, 0.027105165645480156, 0.007016969844698906, 0.0012033934472128749, -0.02303735725581646, -0.010718676261603832, 0.012230544351041317, -0.016854288056492805, 0.00703052943572402, 0.020461076870560646, -0.033247556537389755, 0.019810227677226067, -0.01796615496277809, 0.012115290388464928, 0.012732241302728653, 0.008305109106004238, -0.0009000026620924473, -0.004650861024856567, -0.027579743415117264, -0.026183128356933594, -0.021193282678723335, -0.030210258439183235, 0.01640682853758335, 0.008901720866560936, 0.008989857509732246, 0.031050939112901688, 0.01406105887144804, -0.017193270847201347, 0.01430512685328722, 0.037993334233760834, 0.014698348939418793, 0.0090237557888031, 0.007349174469709396, -0.011586475186049938, 0.0023322103079408407, -0.009111891500651836, 0.0030152632389217615, 0.014169533737003803, -0.032515350729227066, -0.0057423897087574005, -0.04656285047531128, -0.00036695023300126195, -0.005406795535236597, -0.013227158226072788, 0.0072339195758104324, -0.004732217639684677, 0.0028118726331740618, -0.01385766826570034, 0.0037728925235569477, 0.007939006201922894, -0.017857680097222328, -0.014671229757368565, 0.00657629081979394, -0.006820359267294407, -0.010352573357522488, -0.04965438321232796, 0.015783097594976425, -0.010711896233260632, -0.0019661076366901398, 0.014020380564033985, 0.023105153813958168, -0.014820382930338383, 0.021166164427995682, 0.021600063890218735, -0.025789907202124596, 0.003861028468236327, -0.00816273596137762, 0.03476620465517044, -0.021694978699088097, -0.012508511543273926, -0.015945810824632645, 0.00043305213330313563, -0.0042474702931940556, 0.01332207303494215, -0.017911918461322784, 0.018183104693889618, 0.011911899782717228, 0.014101737178862095, 0.013755973428487778, 0.0360950231552124, 0.00018654715677257627, -0.026088213548064232, 0.006362730637192726, -0.010339013300836086, -0.0039017065428197384, -0.009532231837511063, -0.008223753422498703, -0.0030152632389217615, 0.014820382930338383, 0.0017728866077959538, 0.027240758761763573, 0.004972896073013544, -0.019783109426498413, -0.03370857611298561, 0.009810199029743671, -0.0066067990846931934, 0.0034000100567936897, -0.024122105911374092, 0.0012254273751750588, 0.010027148760855198, 0.03745095804333687, -0.0018576326547190547, 0.006918664555996656, -0.013010208494961262, -0.008976297453045845, -0.008000023663043976, -0.018806835636496544, 0.013505124486982822, 0.0048610311932861805, -0.010684777051210403, -0.026332281529903412, 0.0064271376468241215, 0.009586469270288944, 0.008000023663043976, 0.018657682463526726, 0.004162724129855633, -0.026766180992126465, 0.010928845964372158, -0.011755967512726784, 0.0368814654648304, 0.02287464402616024, 0.016922084614634514, -0.013267835602164268, 0.023376340046525, 0.04032554477453232, 0.0020135652739554644, 0.021545827388763428, -0.006091543473303318, 0.00770849734544754, -0.005294931121170521, 0.0006228832062333822, 0.008474601432681084, -0.007959345355629921, -0.0014661060413345695, 0.014603433199226856, 0.010223759338259697, -0.0036881465930491686, 0.011532237753272057, -0.0028457711450755596, -0.006522053387016058, 0.004084757994860411, -0.019444124773144722, 0.011152575723826885, 0.0021152605768293142, -0.05477982386946678, 0.003491535782814026, 0.003089839592576027, -0.032678063958883286, -0.008250871673226357, 0.04851539805531502, 0.00045805220725014806, 0.008922060020267963, 0.016610218212008476, 0.007057648152112961, -0.02901703491806984, -0.0016423776978626847, -0.02844754233956337, -0.008406804874539375, -0.018793275579810143, 0.011071219108998775, -0.014454280026257038, 0.02181701362133026, 0.05293574929237366, -0.0025169565342366695, 0.013864448294043541, 0.029857715591788292, 0.02345769666135311, -0.014481399208307266, -0.0015432249056175351, 0.01655598171055317, -0.00405763927847147, 0.004525437019765377, -0.01008138619363308, -0.016623778268694878, 0.007464428897947073, -0.038074690848588943, -0.002825432224199176, 0.01549835130572319, 0.02269837260246277, 0.07647480070590973, 0.018969547003507614, -0.005566118285059929, -0.016447506844997406, -0.006315272767096758, -0.001801700214855373, 0.02321362867951393, -0.003277975833043456, 0.0008966128225438297, -0.012325460091233253, 0.01656953990459442, 0.01307800505310297, -0.018400054425001144, -0.037911977618932724, -0.01471190806478262, 0.01877971738576889, -0.02271193265914917, 0.012454274110496044, -0.014467839151620865, -0.005837305448949337, -0.0009398332913406193, 0.011369525454938412, 0.004328826442360878, -0.008677992038428783, -0.0149695361033082, -0.0011703424388542771, 0.014739026315510273, 3.5593326174421236e-05, -0.0021711927838623524, -0.03728824481368065, 0.002820347435772419, 0.008955959230661392, -0.036691635847091675, -0.02238650619983673, 0.010427149944007397, -0.006081373896449804, -0.0008258498855866492, -0.028718728572130203, 0.00647459551692009, -0.00781019264832139, 0.0032525521237403154, 0.0024305155966430902, -0.021139046177268028, -0.0434441976249218, -0.018969547003507614, 0.006135611329227686, -0.014318686909973621, -0.005586457438766956, -0.03951198235154152], "ba390c38-cbab-4d5e-8737-21c68d6599e7": [0.012702696956694126, 0.0106464559212327, -0.00769737409427762, -0.012459194287657738, -0.003165528178215027, 0.003444541012868285, -0.009300430305302143, -0.0031012706458568573, -0.0212929118424654, -0.02533775381743908, 0.004910626914352179, 0.01465071365237236, -0.0017417168710380793, 0.006973631680011749, -0.022321032360196114, -0.01342643890529871, 0.02682582288980484, 0.021238800138235092, 0.015232413075864315, 0.0047550564631819725, -0.0018634679727256298, 0.011674576438963413, 0.007535039447247982, -0.0125403618440032, -0.020697684958577156, 0.03078949637711048, 0.0012530215317383409, -0.019628981128335, 0.01596291922032833, -0.017491573467850685, -0.0017028242582455277, -0.015557083301246166, -0.02015656791627407, -0.026406457647681236, -0.01889847405254841, -0.0025601547677069902, -0.0006785086588934064, 0.010470593348145485, 0.010355605743825436, -0.001762008760124445, 0.004403330851346254, -0.014271932654082775, 0.0011913005728274584, 0.0066624898463487625, -0.01313558965921402, 0.026541735976934433, 0.030221324414014816, -0.04539962857961655, -0.025013083592057228, 0.01361582987010479, 0.008001752197742462, 0.023984963074326515, -0.03235873207449913, -0.030248381197452545, 0.008306129835546017, -0.010450301691889763, -0.006733511574566364, 0.036741770803928375, 0.008265545591711998, -0.027975693345069885, 0.013108533807098866, -0.01097788941115141, -0.01954781264066696, -0.007196841761469841, -0.01274328026920557, -0.009719794616103172, 0.0035307814832776785, 0.00039717063191346824, -0.0059691849164664745, 0.0038283951580524445, 0.011079348623752594, 0.016734009608626366, -0.004410095047205687, 0.008231726475059986, 0.03084360808134079, -0.0038283951580524445, -0.03509136661887169, 0.0029456999618560076, 0.004180120769888163, -0.00633443845435977, 0.01350084226578474, -0.018276190385222435, -0.015773529186844826, 0.012418610975146294, 0.03281868249177933, -0.008996052667498589, 0.0017112791538238525, 0.009740087203681469, 0.0002261695481138304, -0.01335203554481268, 0.017396876588463783, -0.009077220223844051, -0.0015303435502573848, 0.03162822499871254, 0.011674576438963413, 0.029057925567030907, -0.008725494146347046, 0.033630356192588806, -0.017234543338418007, -0.028002750128507614, -0.004680652637034655, 0.012418610975146294, -0.027245188131928444, -0.00623974297195673, 1.2134154530940577e-05, -0.013744344934821129, 0.016815178096294403, -0.006161957513540983, 0.00969950295984745, -0.03262929245829582, -0.030978886410593987, 0.07321298867464066, -0.0033836655784398317, -0.02970726415514946, 0.0072509534657001495, 0.009706267155706882, -0.002105279127135873, -0.018046217039227486, 0.010741150937974453, -0.00712243840098381, 0.012939434498548508, 0.02000776119530201, 0.0150565505027771, -0.0031587642151862383, 0.035930097103118896, -0.0190743375569582, -2.9922548492322676e-06, -0.00936130527406931, -0.01227656751871109, -0.026257650926709175, 0.013216756284236908, 0.012560653500258923, 0.00504590617492795, 0.012966490350663662, 0.004210558254271746, -0.012547126039862633, -0.017599795013666153, 0.022902732715010643, -0.04442561790347099, -0.01038266159594059, 0.008096447214484215, 0.010321786627173424, 0.0036931161303073168, 0.023700878024101257, -0.019358422607183456, 0.008434644900262356, 0.013974319212138653, 0.012655348517000675, -0.00914485938847065, -0.002267614006996155, 0.006807914935052395, 0.028381530195474625, -0.022199280560016632, -0.0030995795968919992, 0.004582575522363186, 0.029247315600514412, -0.013203228823840618, -0.004257906228303909, 0.03495609015226364, 0.002338635502383113, 0.029220260679721832, 0.038987401872873306, 0.012418610975146294, 0.0021018972620368004, 0.012858266942203045, 0.01954781264066696, 0.0399072989821434, 0.003050541039556265, 0.005211622919887304, 0.02053534984588623, -0.008745786733925343, 0.009665682911872864, -0.0177350752055645, -0.0016799959121271968, 0.016084671020507812, 0.023511487990617752, 0.016436396166682243, 0.0004963047686032951, -0.00044515240006148815, -0.02222633734345436, -0.0018025924218818545, 0.0003014184767380357, 0.0036694423761218786, 0.03590304031968117, -0.023254457861185074, 0.01889847405254841, 0.03160117194056511, -0.0008594442624598742, 0.02321387268602848, 0.002245631068944931, 0.01235097087919712, 0.027894526720046997, 0.0007457254105247557, 0.008218198083341122, -0.6229326725006104, -0.007399760186672211, -0.02859797701239586, -0.04824048653244972, -0.002636249177157879, 0.014826576225459576, 0.009313957765698433, 0.005671571474522352, -0.019683092832565308, 0.05089195445179939, -0.030681272968649864, 0.045859575271606445, -0.005996240768581629, -0.009253082796931267, 0.009875365532934666, -0.03460436314344406, 0.0006696309428662062, -0.019818371161818504, -0.0334409661591053, 0.016247006133198738, 0.0009663992095738649, 0.012344207614660263, 0.0035071077290922403, -0.0001712124649202451, 0.019588395953178406, 0.0015125881182029843, -0.005972567014396191, -0.011491949670016766, 0.005316464230418205, 0.02702874131500721, -0.015029494650661945, -0.01709926314651966, 0.008596979081630707, -0.00338535662740469, 0.04025902599096298, -0.0067774769850075245, -0.0199536494910717, 0.00915838684886694, 0.008502284064888954, 0.063743457198143, -0.013054422102868557, -0.004159828647971153, 0.02778630331158638, 0.008928412571549416, 0.015543554909527302, -0.03739111125469208, 0.004054987337440252, 0.0034310133196413517, 0.0029981203842908144, -0.03682293742895126, 0.019507229328155518, -0.0048700436018407345, 0.0015565537614747882, -0.0031875111162662506, -0.003635622560977936, -0.031114166602492332, 0.003919708542525768, 0.0022523950319737196, -0.00504590617492795, -0.023930851370096207, 0.011383726261556149, 0.013257340528070927, 0.00838729739189148, 0.019561341032385826, -0.014366627670824528, 0.027475161477923393, -0.004991794470697641, -0.00949658453464508, -0.008968996815383434, -0.026338817551732063, -0.0027123435866087675, 0.02568947896361351, -0.04071897268295288, -0.008732258342206478, 0.0031520002521574497, 0.019317839294672012, 0.026325291022658348, -0.025202475488185883, 0.0003257264324929565, 0.006385168060660362, 0.01539474818855524, -0.011877494864165783, -0.024945445358753204, -0.0190743375569582, 0.04675241559743881, 0.007311828900128603, 0.005093253683298826, 0.017342764884233475, 0.014041958376765251, -0.011356670409440994, 0.009198971092700958, 0.00532322796061635, -0.009591279551386833, -0.00949658453464508, -0.02222633734345436, 0.005610696040093899, 0.016882816329598427, -0.012804156169295311, -0.030978886410593987, -0.022970370948314667, -0.023930851370096207, -0.026663487777113914, 0.007014215458184481, 0.004839605651795864, -0.0020579316187649965, 0.014001375064253807, 0.01811385527253151, 0.028273306787014008, 0.037851057946681976, -0.03349507600069046, -0.020657101646065712, -0.027651024982333183, -0.013825512491166592, 0.019141975790262222, -0.002473914297297597, -0.03078949637711048, 0.030545994639396667, -0.0014111289056017995, 0.025608312338590622, 0.02353854291141033, -0.020048344507813454, 0.0061721038073301315, 0.021333495154976845, 0.0009663992095738649, 0.013182937167584896, 0.005174421239644289, 0.018925528973340988, -0.01016621571034193, -0.03850039839744568, -0.009002815932035446, 0.017058679834008217, 0.008996052667498589, 0.004866661503911018, -0.019899537786841393, -0.003177365055307746, -0.018100328743457794, 0.03206111863255501, -0.02353854291141033, 0.01697751320898533, -0.006797769106924534, -0.022388672456145287, 0.012810919433832169, -0.007825889624655247, -0.00712243840098381, -0.014731881208717823, -0.03652532398700714, -0.010044464841485023, -0.0025973564479500055, -0.0009114421554841101, 0.0042917258106172085, -0.010971125215291977, -0.009489820338785648, -0.02970726415514946, 0.02359265461564064, -0.017491573467850685, -0.02487780526280403, -0.02685287781059742, 0.0006125601357780397, -0.0022084293887019157, -0.01578705757856369, -0.01044353749603033, 0.027191076427698135, -0.01841146871447563, -0.012567417696118355, -0.013047657907009125, -0.008502284064888954, -0.0343608632683754, 0.02391732484102249, -0.02935553900897503, -0.04142242297530174, 0.012614765204489231, 0.03346801921725273, -0.0006400386919267476, -0.007068326696753502, 0.019412534311413765, 0.04710414260625839, -0.01429898850619793, -0.015692362561821938, -0.01144460216164589, -0.008049099706113338, 0.0009638627525418997, 0.025473032146692276, 0.003838541219010949, -0.035930097103118896, 0.010342078283429146, 0.0009951459942385554, 0.014975383877754211, -7.509040733566508e-05, -0.04450678452849388, 0.024012019857764244, 0.028381530195474625, 0.021576998755335808, -0.04458795115351677, 0.020427126437425613, 0.004883571527898312, 0.02182050049304962, -0.015854697674512863, -0.003781047649681568, 0.020237736403942108, 0.030140157788991928, 0.015151246450841427, -0.004305253736674786, 0.004295107908546925, -0.019764259457588196, 0.00019858531595673412, -0.006317528430372477, 0.018195023760199547, -0.009503348730504513, 0.026460569351911545, -0.016531091183423996, 0.003106343559920788, -0.011376962065696716, -0.03841923177242279, -0.020088929682970047, 0.04407389461994171, 0.005414541345089674, 0.00426805205643177, 0.008671382442116737, 0.0034597599878907204, 0.003595039015635848, 0.011072584427893162, 0.0010281202849000692, 0.015354164876043797, -0.01233744341880083, -0.03087066486477852, 0.013318215496838093, 0.020197153091430664, -0.0035578373353928328, 0.008367004804313183, -0.04031313583254814, -0.0125403618440032, 0.009388361126184464, 0.006500155199319124, 0.003967056050896645, 0.04150359332561493, 0.031032998114824295, 0.032953958958387375, 0.012438902631402016, 0.04199059680104256, 8.491926564602181e-05, -0.018276190385222435, 0.00799498800188303, 0.024539606645703316, -0.04832165315747261, -0.0012006009928882122, 0.0061890133656561375, 0.029896656051278114, -0.0028391676023602486, 0.0043762749992311, 0.00961157213896513, 0.003341390984132886, 0.006740275304764509, -0.028246251866221428, -0.0011219700099900365, 0.007041271310299635, 0.006939811632037163, -0.013331743888556957, -0.01977778784930706, 0.013933734968304634, 0.020088929682970047, 0.017166903242468834, 0.017491573467850685, 0.015854697674512863, -0.016233477741479874, 0.00647309934720397, -0.015908807516098022, -0.00923279020935297, -0.016761066392064095, 0.004041459411382675, -0.01206012163311243, -0.012134524993598461, -0.03041071631014347, -0.014718353748321533, 0.004582575522363186, 0.038662731647491455, -0.00969950295984745, 0.014704825356602669, 0.012533597648143768, 0.011214627884328365, -0.015070078894495964, -0.02755632810294628, -0.025243058800697327, 0.006679399870336056, 0.009909185580909252, 0.004714472685009241, -0.027475161477923393, -0.02228044904768467, -0.022348087280988693, -0.005647897720336914, 0.01409607008099556, -0.0421258769929409, 0.0005051824264228344, 0.0005495708901435137, 0.009577752090990543, 0.009259846061468124, 0.012006009928882122, 0.022916259244084358, -0.016247006133198738, -0.024620775133371353, 0.013696997426450253, -0.021008826792240143, 0.01504302304238081, -0.0019057426834478974, -0.020143041387200356, 0.03890623524785042, 0.011431073769927025, 0.015841169282794, -0.028706200420856476, -0.003074214793741703, -0.016409341245889664, 0.023254457861185074, -0.012513305991888046, -0.014745409600436687, -0.011221392080187798, 0.025554200634360313, -0.011552825570106506, 0.026961101219058037, -0.011769271455705166, 0.019060809165239334, -0.002578755607828498, -0.0007461481145583093, 0.0012301933020353317, -0.030167212709784508, 0.004278197884559631, 0.05871107801795006, 0.015475915744900703, -0.002245631068944931, 0.004210558254271746, -0.033630356192588806, -0.016490507870912552, -0.017992105334997177, -0.010321786627173424, 0.025121307000517845, -0.0027360173407942057, -0.000944416387937963, 0.005275880452245474, 0.004565665498375893, 0.015313580632209778, -0.019141975790262222, 0.024634303525090218, 8.618750871391967e-05, -0.018709084019064903, 0.027529273182153702, -0.02604120410978794, 0.006726747378706932, 0.0042917258106172085, 0.011383726261556149, -0.01017974317073822, -0.002845931565389037, -0.014718353748321533, 0.01524594146758318, -0.0005043369601480663, 0.01255388930439949, -0.032575178891420364, -0.00022342169540934265, 0.016504036262631416, 0.01980484277009964, 0.0033346270211040974, -0.009097511880099773, 0.013636121526360512, 0.0058440519496798515, 0.03736405447125435, 0.021238800138235092, -0.02811097353696823, 0.006070644594728947, 0.027623968198895454, -0.007535039447247982, -0.014353100210428238, 0.0009630172862671316, 0.010802026838064194, 0.028083916753530502, 0.012770336121320724, 0.005066197831183672, -0.0180597435683012, 0.003052232088521123, 0.006550884805619717, -0.03574070706963539, -0.018979640677571297, -0.019710147753357887, 0.014731881208717823, -0.03847334161400795, -0.02775924652814865, -0.015205358155071735, 0.005035760346800089, -0.02859797701239586, -0.014217820949852467, 0.0006785086588934064, 0.0077041382901370525, 0.008191142231225967, 0.0022540860809385777, -0.0009122876217588782, 0.014975383877754211, -0.011694868095219135, -0.0008201288292184472, 0.020061872899532318, 0.011850439012050629, 0.005999622866511345, -0.003387047443538904, 0.009672447107732296, 0.010274439118802547, 0.0038723608013242483, -0.0075959148816764355, 0.012310387566685677, 0.027651024982333183, 0.0010458756005391479, -0.03430674970149994, -0.010436773300170898, -0.016761066392064095, 4.755901682074182e-05, 0.016084671020507812, 0.0169504564255476, 0.015421804040670395, -0.0205082930624485, 0.040962476283311844, -0.01030825823545456, 0.02038654312491417, 0.0205082930624485, -0.00433230958878994, 0.0038655968382954597, 0.010795262642204762, -0.0022625410929322243, 0.013277632184326649, 0.0028154938481748104, 0.023132706061005592, -0.008921649307012558, 0.006723365280777216, -0.001611510873772204, -0.017491573467850685, -0.015340636484324932, 0.015516499057412148, 0.0014018284855410457, 0.021779917180538177, -0.024241993203759193, -0.0021982835605740547, 0.049241550266742706, -0.01826266199350357, 0.003997494000941515, 0.01707220822572708, 0.004643450956791639, 0.0028408586513251066, -0.01869555562734604, 0.027542801573872566, -0.00846170075237751, -0.019642507657408714, -0.014813048765063286, -0.02889559045433998, 0.010172979906201363, 0.006939811632037163, -0.002177991671487689, 0.029247315600514412, 0.0012428757036104798, -0.015191829763352871, 0.0020410215947777033, -0.003030249150469899, 0.019331365823745728, -0.011559588834643364, -0.001959854271262884, -0.02478311024606228, -0.016260534524917603, 0.026135899126529694, -0.006679399870336056, 0.011146987788379192, -0.004927536938339472, 0.00923279020935297, -0.005032378248870373, 0.008076155558228493, -0.004180120769888163, 0.007575623225420713, 0.007636498659849167, -0.03162822499871254, -0.00834671314805746, -0.008529339917004108, 0.042044706642627716, 0.02015656791627407, 0.02690698951482773, -0.007298300974071026, -0.018654972314834595, 0.003933236468583345, -0.001853322028182447, -0.020454181358218193, -0.008725494146347046, -0.005681717302650213, 0.002834094688296318, 0.001855013077147305, 0.028354475274682045, -0.0045521375723183155, 0.016476979479193687, 0.01823560707271099, 0.008718730881810188, 0.03005898930132389, 0.0036592965479940176, -0.01937195099890232, -0.004153064917773008, -0.008786370046436787, -0.000483622367028147, -0.01076144352555275, 0.033359795808792114, -0.001762008760124445, -0.020467709749937057, 0.004254524130374193, 0.005123691633343697, 0.03985318914055824, -0.026162955909967422, -0.018709084019064903, 0.0033447728492319584, 0.0012969872914254665, -0.018370885401964188, 0.003510489594191313, -0.020061872899532318, -0.002648086054250598, 0.05097312107682228, 0.016679897904396057, -0.005269116256386042, -0.0017924464773386717, 0.006922902073711157, -0.011573117226362228, 0.026135899126529694, -0.012695932760834694, 0.02076532319188118, -0.016233477741479874, 0.006980395410209894, -0.05067550763487816, 0.015530027449131012, -0.005499090533703566, -0.0058339061215519905, 0.01538122072815895, -0.025473032146692276, 0.014217820949852467, -0.025188947096467018, -0.0051203095354139805, 0.0015743091935291886, -1.7438305803807452e-05, 0.007149494253098965, 0.002416420727968216, -0.012736516073346138, -0.015949392691254616, -0.021252328529953957, -0.021888138726353645, 0.021333495154976845, 0.010484120808541775, 0.006483245175331831, 0.003983966074883938, -0.0005005322163924575, 0.003561219200491905, 0.021779917180538177, -0.0188443623483181, 0.04050252586603165, 0.0019953649025410414, 0.05489621311426163, 0.02813802845776081, -0.005712155252695084, 0.005434833001345396, 0.004585957620292902, 0.0006429979111999273, 0.018506165593862534, 0.014339571818709373, 0.017018096521496773, -0.028625033795833588, 0.013933734968304634, -0.0009943004697561264, 0.0069026099517941475, -0.004159828647971153, -0.025378337129950523, 0.023497959598898888, 0.004014404024928808, -0.02708285301923752, -0.029842544347047806, 0.0051101637072861195, -0.03303512930870056, 0.011174043640494347, -0.008820190094411373, -0.010687039233744144, -0.02962609753012657, -0.0002458272792864591, -0.04483145475387573, 0.020873546600341797, 0.0018736139172688127, 0.03839217498898506, -0.0020207297056913376, -0.005986094940453768, -5.833906107000075e-05, 0.010592344217002392, -0.006987159606069326, 0.011207863688468933, -0.02930142730474472, 0.004799021873623133, -0.019669564440846443, 0.0068857003934681416, 0.015232413075864315, -0.007487691938877106, -0.00968597549945116, -0.032494012266397476, 0.00484298774972558, 0.030545994639396667, -0.018167966976761818, -0.02548656053841114, -0.007372704800218344, 0.016855761408805847, -0.007602679077535868, 0.002626103349030018, -0.009570987895131111, -0.0032179488334804773, -0.0018381031695753336, -0.012012774124741554, 0.016476979479193687, 0.008224962279200554, -0.002326798625290394, -0.01677459478378296, -0.0044067129492759705, -0.011728688143193722, -0.01680164970457554, 0.0008886138093657792, -0.019899537786841393, -0.027326354756951332, -0.03414441645145416, -0.006736893206834793, 0.005072962027043104, 0.009821253828704357, -0.007507983595132828, -0.027299297973513603, 0.023335624486207962, 0.03890623524785042, -0.03988024592399597, 0.0009841546416282654, -0.04180120676755905, -0.0013527898117899895, -0.02364676631987095, -0.01814091205596924, 0.003248386550694704, -0.017965048551559448, 0.03998846560716629, -0.01010533981025219, -0.023876739665865898, -0.00859021581709385, 0.011512241326272488, 0.0163958128541708, -0.014353100210428238, 0.007223897613584995, 0.0026785237714648247, 0.014055486768484116, 0.01239155512303114, -0.0028882063925266266, -0.02111705020070076, 0.015841169282794, -0.0031722921412438154, 0.019236670807003975, 0.0020004380494356155, -0.006090936250984669, 0.013162645511329174, -0.0109237777069211, 0.008245253935456276, 0.012120996601879597, -0.010220327414572239, -0.004271433688700199, -0.023335624486207962, 0.012722988612949848, -0.022740397602319717, 0.019304310902953148, -0.024742526933550835, -0.007034507114440203, -0.01674753800034523, 0.024688415229320526, -0.02068415656685829, 0.0017450988525524735, -0.03087066486477852, 0.010795262642204762, 0.01558413915336132, 0.017045151442289352, -0.010193271562457085, 0.0087525499984622, 0.00044261591392569244, -0.006682781968265772, -0.021035881713032722, -0.03587598726153374, -0.004961356520652771, 0.03649827092885971, 0.037174664437770844, -0.023552071303129196, -0.020143041387200356, -0.02341679111123085, -0.014921272173523903, -0.023335624486207962, 0.008245253935456276, 0.02927437238395214, 0.02213164232671261, 0.018005631864070892, -0.011931606568396091, 0.0044270046055316925, -0.014799520373344421, 0.02114410512149334, -0.024214938282966614, 0.00016117222548928112, 0.014380156062543392, 0.04228821024298668, -0.0011312705464661121, 0.018195023760199547, -0.006300618872046471, 0.009239554405212402, 0.009090747684240341, 0.0018499400466680527, 0.01576000079512596, 0.005444979295134544, 0.005438215099275112, -0.01566530577838421, -0.029923710972070694, -0.01586822420358658, -0.020778851583600044, 0.023727932944893837, -0.01484010461717844, -0.025405393913388252, -0.011755743995308876, -7.070440915413201e-05, 0.02412024326622486, -0.02481016516685486, 0.014569546096026897, -0.0017155066598206758, -0.026311762630939484, -0.0031131075229495764, -0.002259158995002508, -0.019913066178560257, 0.01770801842212677, -0.024972500279545784, 0.04418211430311203, 0.016328172758221626, 0.034414973109960556, 0.036362990736961365, 0.02288920432329178, 0.0030370131134986877, -0.022699814289808273, 0.007447108160704374, -0.03960968554019928, -0.009936241433024406, -0.014921272173523903, -0.010693803429603577, 0.0015616267919540405, -0.025121307000517845, 0.026108844205737114, -0.024715470150113106, 0.008394060656428337, 0.0021492447704076767, -0.011370198801159859, -0.03122239001095295, 0.0036795884370803833, 0.028029805049300194, -0.01849263720214367, 0.022997427731752396, -0.020873546600341797, -0.0016005195211619139, 0.005505854729562998, -0.014326044358313084, -0.019141975790262222, -0.010741150937974453, -0.0010340387234464288, 0.005502472631633282, 0.008583451621234417, 0.005428069271147251, 0.002588901435956359, 0.03262929245829582, -0.02035948634147644, 0.010057992301881313, 0.18495342135429382, -0.01218863669782877, -0.015205358155071735, 0.012195399962365627, 0.012344207614660263, 0.010971125215291977, 0.003983966074883938, -0.003994111903011799, 0.01240508258342743, 0.016436396166682243, -0.026609376072883606, 0.02134702354669571, -0.013216756284236908, 0.014542490243911743, -0.016788121312856674, -0.0245260801166296, 0.014041958376765251, -0.02784041501581669, -0.02763749659061432, 0.0009368069586344063, -0.010044464841485023, -0.019439589232206345, -0.031844671815633774, -0.0037134080193936825, 0.03262929245829582, -0.021401135250926018, 0.016476979479193687, -0.00527926255017519, 0.01715337485074997, 0.006466335617005825, -0.025621838867664337, 0.004075279459357262, 0.003561219200491905, -0.00490724528208375, -0.04196354001760483, 0.008103211410343647, 0.0323316752910614, 0.002073150360956788, 0.01621994934976101, -0.018573803827166557, -0.010301494970917702, -0.010653220117092133, -0.021049410104751587, -0.03701233118772507, 0.03360329940915108, 0.030627161264419556, -0.006865408271551132, -0.013771400786936283, -0.015408276580274105, 0.040123745799064636, -0.005901545751839876, -0.032926905900239944, 0.015705889090895653, 0.006077408324927092, 0.020657101646065712, -0.003309262217953801, 0.003764137625694275, 0.00352401752024889, 0.008806661702692509, 0.00010473552538314834, -0.003444541012868285, 0.024715470150113106, -0.004450678359717131, 0.005160893313586712, -0.024512551724910736, 0.011830147355794907, -0.004795639775693417, 0.00394000019878149, 0.007907056249678135, 0.0016267297323793173, 0.0036119488067924976, 0.0169504564255476, 4.927642658003606e-05, 0.019493700936436653, -0.013128825463354588, -0.013365563936531544, 0.017166903242468834, 0.016815178096294403, 0.006415606010705233, 0.03157411515712738, -0.019263727590441704, -0.019101392477750778, 0.008360241539776325, -0.0030708329286426306, -0.019669564440846443, -0.017139846459031105, 0.029139092192053795, -0.0021475539542734623, 0.011119932867586613, -0.00888106506317854, -0.022334560751914978, 0.0036018029786646366, 0.010402954183518887, 0.013960790820419788, -0.027651024982333183, 0.007507983595132828, 0.005056052003055811, 0.017193958163261414, 0.008894593454897404, 0.009334249421954155, -0.00853610411286354, 0.004132772795855999, 0.0100918123498559, 0.006604996509850025, 0.012878559529781342, -0.0023876740597188473, -0.01785682514309883, -0.0013908370165154338, 0.010125631466507912, -0.03433380648493767, -0.002015656791627407, -0.03852745518088341, 0.0008260472677648067, -0.01573294587433338, 0.00901634432375431, -0.0019141975790262222, -0.03260223567485809, -0.03303512930870056, 0.014123125933110714, -0.005289408378303051, 0.02021067962050438, -0.015354164876043797, -0.027542801573872566, -0.008177614770829678, 0.037824004888534546, -0.013879623264074326, -0.027596913278102875, 0.004058369435369968, -0.0019226525910198689, 0.00490724528208375, 0.02306506596505642, -0.012520070187747478, 0.02490486018359661, -0.015543554909527302, -0.005377339664846659, -0.022334560751914978, -0.01889847405254841, -0.0062870909459888935, -0.0019141975790262222, 0.002531407866626978, -0.027109907940030098, -0.018452053889632225, -0.04956622049212456, 0.006513683125376701, 0.008833717554807663, -0.040556639432907104, 0.008380533196032047, -0.03262929245829582, 0.007514747325330973, -0.019331365823745728, -0.0207382682710886, -0.014623657800257206, 0.021049410104751587, -0.037174664437770844, 0.006858644541352987, -0.012526833452284336, -0.013142352923750877, -0.026325291022658348, 0.010659984312951565, -0.0011109786573797464, -0.0087525499984622, -0.008928412571549416, 0.006009768694639206, 0.01091025024652481, -0.039420295506715775, 0.0052251508459448814, -0.1702350676059723, 0.0028729874175041914, 0.0045419917441904545, -0.025013083592057228, 0.022212808951735497, -0.010592344217002392, 0.03925796225667, 0.0011997554684057832, 8.291121775982901e-05, 0.010118868201971054, -0.017410404980182648, 0.015746474266052246, -0.001139725442044437, -0.003077596891671419, -0.017288653180003166, 0.006449425593018532, -0.021035881713032722, -0.007237425539642572, 0.02973432093858719, 0.025067195296287537, 0.033711522817611694, -0.01707220822572708, 0.04488556832075119, 0.020373014733195305, -0.009882129728794098, 0.015570610761642456, 0.02190166711807251, 0.006293854676187038, 0.0046502151526510715, -0.017423933371901512, -0.0025956653989851475, 0.021982835605740547, -0.01902022585272789, -0.0016165839042514563, -0.004991794470697641, -0.001510051661171019, 0.00470432685688138, -0.037174664437770844, -0.0005030687316320837, 0.01604408770799637, 0.00504590617492795, 0.007284773048013449, -0.0084752282127738, -0.011857203207910061, 0.004027931950986385, 0.01103876531124115, 0.02359265461564064, 0.0025415539275854826, 0.004105716943740845, -0.027475161477923393, 0.02353854291141033, -0.015827640891075134, 0.008813425898551941, 0.0006603305228054523, 0.026352345943450928, -0.003189201932400465, -0.01925019919872284, 0.016382284462451935, 0.002952463924884796, 0.02361971139907837, 0.0015218885382637382, -0.04531845822930336, -0.0058237602934241295, 0.024593718349933624, -0.003990729805082083, 0.011640756390988827, 0.0006958412704989314, 0.004964738618582487, -0.02475605346262455, 0.00637840386480093, -0.010348842479288578, -0.0053705754689872265, -0.014231349341571331, -0.01788388192653656, -0.006784241180866957, 0.022321032360196114, -0.01586822420358658, 0.028625033795833588, 0.017545683309435844, -0.0014686224749311805, -0.005039141979068518, 0.021049410104751587, -0.024228466674685478, 0.0009866910986602306, 0.0032044209074229, -0.009652155451476574, -0.007582386955618858, 0.025987092405557632, -0.01293267123401165, -0.011877494864165783, 0.016761066392064095, -0.029139092192053795, 0.0036931161303073168, 0.0037269359454512596, 0.03049188293516636, 0.003767519723623991, 0.014380156062543392, -0.009719794616103172, 0.005143983289599419, -0.03771578148007393, 0.009706267155706882, -0.011289031244814396, -0.012019537389278412, -0.002891588257625699, 0.004815931897610426, 0.012587709352374077, -0.01841146871447563, 0.009922713041305542, 0.03960968554019928, -0.014055486768484116, -0.024458440020680428, -0.00529279001057148, 0.008238489739596844, 0.03614654392004013, -0.012087177485227585, 0.015097134746611118, 0.01543533243238926, -0.00688908202573657, -0.0076162065379321575, 0.012283331714570522, 0.029571985825896263, -0.00936130527406931, -0.025121307000517845, 0.017572740092873573, -0.0032111848704516888, -0.021942250430583954, -0.11363434791564941, -0.048592209815979004, 0.009293666109442711, 0.030004877597093582, 0.013507606461644173, 0.01424487680196762, 0.0029845924582332373, 0.0036153309047222137, 0.011972189880907536, 0.004575811792165041, 0.029382595792412758, -0.028625033795833588, -0.02566242404282093, -0.010599108412861824, -0.010605872608721256, -0.0032297857105731964, -0.023376207798719406, -0.008921649307012558, -0.019872482866048813, 0.021509358659386635, 0.007663554511964321, -0.01320999301970005, -0.006070644594728947, 0.012790627777576447, -0.013419674709439278, -0.009083983488380909, -0.031790561974048615, 0.007433580234646797, 0.001418738393113017, 0.024823693558573723, -0.005231914576143026, -0.006490009371191263, -0.009719794616103172, -0.0070074512623250484, -0.016909873113036156, 0.0016884508077055216, -0.023903796449303627, 0.013182937167584896, 0.03841923177242279, -0.019764259457588196, 0.0014069013996049762, 0.004788876045495272, 0.008914885111153126, 0.001395064522512257, 0.020048344507813454, 0.002142480807378888, -0.025121307000517845, 0.0318717285990715, 0.005654661450535059, -0.020494766533374786, -0.060334425419569016, 0.010125631466507912, -0.025256585329771042, -0.024214938282966614, 0.03005898930132389, -0.025960037484765053, -0.005509236827492714, 0.015746474266052246, -0.015408276580274105, -0.010599108412861824, -0.02283509261906147, 0.006598232313990593, -0.0190743375569582, 0.00914485938847065, -0.003387047443538904, 0.016206422820687294, -0.026406457647681236, 0.008583451621234417, 0.025757119059562683, 0.007014215458184481, -0.016679897904396057, 0.021604053676128387, -0.011843674816191196, 0.014704825356602669, -0.02248336747288704, 0.008015279658138752, 0.012317151762545109, 0.002636249177157879, -0.0016529400600120425, 0.021401135250926018, -0.03319746255874634, -0.013446730561554432, -0.01057205256074667, -0.007893528789281845, -0.0035172535572201014, 0.021712277084589005, 0.009618335403501987, 0.01524594146758318, -0.005563348066061735, -0.00866461917757988, -0.003444541012868285, 0.033684466034173965, 0.0239714365452528, -0.01029473077505827, -0.007075090892612934, 0.01306118629872799, 0.01139049045741558, -0.007149494253098965, 0.012472722679376602, 0.010917013511061668, -0.02432316169142723, -0.03049188293516636, -0.04556196182966232, 0.007771777454763651, -0.004210558254271746, 0.007095382548868656, 0.00433230958878994, -0.004284961614757776, -0.0023555452935397625, -0.0022270302288234234, 0.009970061480998993, -0.016476979479193687, -0.028029805049300194, -0.011045528575778008, -0.0037404638715088367, 0.0037945755757391453, 0.0013434893917292356, -0.02306506596505642, 0.027069324627518654, -0.015178302302956581, 0.013656413182616234, -0.003551073372364044, -0.03265634551644325, -0.01192484237253666, 0.03262929245829582, 0.01960192434489727, -0.0007212060736492276, 0.008806661702692509, 0.008522575721144676, 0.007812361232936382, -0.02344384789466858, -0.018167966976761818, 0.015137718059122562, 0.0026091933250427246, -0.00704803504049778, 0.028814423829317093, -0.013216756284236908, 0.003912944812327623, 0.010693803429603577, 0.02114410512149334, 0.01735629327595234, 0.00488695316016674, -0.019710147753357887, -0.01975073106586933, 0.022578062489628792, -0.008360241539776325, 0.024363745003938675, -0.022402198985219002, 0.010896721854805946, 0.009280138649046421, -0.014366627670824528, 0.014163709245622158, 0.009334249421954155, 0.0010661674896255136, -0.025824757292866707, 0.00030015024822205305, 0.020873546600341797, -0.03051893785595894, -0.004447296727448702, -0.011478421278297901, 0.0006873863167129457, -0.002889897208660841, 0.0365794375538826, 0.0013384164776653051, 0.012012774124741554, -0.022753924131393433, 0.021982835605740547, -0.028814423829317093, 0.0023775282315909863, -0.004156446550041437, -0.011106404475867748, 0.00580346817150712, -0.019791314378380775, -0.01782977022230625, 0.00488695316016674, 0.004467588383704424, 0.03988024592399597, 0.004687416832894087, -0.029599040746688843, -0.002866223454475403, -0.023754989728331566, 0.04491262137889862, 0.03836511820554733, 0.020075401291251183, -0.030302492901682854, 0.00555658433586359, 0.05454448610544205, 0.0018854507943615317, 0.010247383266687393, -0.0039602923206985, -0.006811297032982111, 0.010409717448055744, -0.004569047596305609, -0.015922335907816887, -0.005516000557690859, -0.008948705159127712, 0.024417856708168983, 0.0058237602934241295, 0.014055486768484116, 0.01157988142222166, -0.005935365334153175, 0.01861438900232315, 0.008481992408633232, -0.012878559529781342, 0.003997494000941515, 0.004454060457646847, -0.04694180563092232, 0.0190743375569582, -0.008759314194321632, -0.05135190114378929, -0.01593586429953575, 0.03230462223291397, -0.018830833956599236, 0.0045217000879347324, 0.025324225425720215, 0.0016918327892199159, -0.046617139130830765, 0.001243721111677587, -0.021888138726353645, -0.0038994166534394026, -0.01881730742752552, 0.03165528178215027, 0.004903863184154034, 0.0007178240921348333, 0.02725871466100216, -0.00779206957668066, 0.032899849116802216, 0.0019547813571989536, 0.028381530195474625, -0.03049188293516636, -0.0051304553635418415, 0.024052603170275688, -0.0011075966758653522, 0.0010289658093824983, -0.02589239738881588, -0.010112104006111622, 0.009557460434734821, -0.00470432685688138, -0.0075959148816764355, 0.011857203207910061, -0.007190078031271696, 0.06341879069805145, -0.01677459478378296, -0.02260511741042137, 0.011776035651564598, -0.007832652889192104, 0.021482301875948906, 0.02513483539223671, -0.010626164264976978, -0.03208817541599274, -0.016558147966861725, 0.02251042239367962, 0.013250576332211494, -0.013460258953273296, -0.022848621010780334, 0.012499777600169182, -0.010132395662367344, -0.004443914629518986, 0.0180597435683012, -0.02566242404282093, -0.007068326696753502, 0.020454181358218193, 0.017694491893053055, 0.004602867178618908, 0.004788876045495272, 0.0022067383397370577, -0.004065133631229401, 0.010348842479288578, 0.015719417482614517, -0.00541792344301939, -0.023890268057584763, 0.01063292846083641, -0.011133460327982903, -0.029463762417435646, -0.00394000019878149, 0.006121374201029539, 0.0010560215450823307, -0.022348087280988693, -0.014664242044091225, 0.020400071516633034, 0.02601414918899536, -0.0201836246997118, 0.013365563936531544, -0.019764259457588196, -0.018303247168660164, -0.014867160469293594, -0.01010533981025219, -0.0018397942185401917, -0.0011828455608338118, -0.03536192700266838], "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107": [0.0007648732862435281, 0.018275734037160873, -0.0033217836171388626, -0.005201815161854029, 0.015243315137922764, 0.02094263583421707, -0.016854288056492805, -0.02845599316060543, -0.0242864191532135, -0.007709651719778776, -0.0035366928204894066, 0.02614106796681881, 0.00235723122023046, 0.007811183575540781, 0.009977196343243122, -0.011405411176383495, 0.013090839609503746, 0.034629128873348236, 0.021172774955630302, -0.011330954730510712, 0.010139647871255875, 0.017463479191064835, -0.01149340532720089, -0.031001059338450432, -0.0217413529753685, 0.015107939019799232, -0.009855357930064201, -0.017707154154777527, 0.004623083397746086, -0.0130637651309371, 0.015311002731323242, -0.020861411467194557, -0.015202702954411507, -0.009422156028449535, -0.015013176016509533, -0.03035125508904457, -0.0030121116433292627, -0.007757033221423626, 0.03308584541082382, 0.003996970597654581, 0.007513356860727072, -0.008704664185643196, -0.0007610658067278564, -0.00293088611215353, -0.029972203075885773, 0.008840040303766727, 0.029214097186923027, -0.04878943786025047, -0.03221943974494934, 0.019318126142024994, 0.012265047989785671, 0.0061595989391207695, -0.04169574752449989, -0.003382702823728323, 0.0012014602543786168, 0.003032417967915535, 0.007086923345923424, 0.04724615439772606, -0.024408256635069847, -0.004734768532216549, -0.0024739927612245083, 0.0045384736731648445, -0.018492333590984344, 0.01571713015437126, -0.012170284986495972, -0.014309221878647804, 0.0038277506828308105, 0.008704664185643196, -0.020130380988121033, 0.018275734037160873, 0.018722472712397575, 0.03579336032271385, -0.009137867018580437, -0.007736727129667997, 0.044430337846279144, -0.004501245450228453, -0.024841459468007088, 0.014309221878647804, 0.0029562690760940313, -0.0032287128269672394, 0.010417168028652668, -0.02237761951982975, -0.018695397302508354, 0.006058067083358765, 0.017233340069651604, -0.0060952953062951565, 0.003959742374718189, -0.015392228960990906, -0.004332025535404682, -0.01757177896797657, 0.01969718001782894, 0.014160308986902237, 0.0056045581586658955, 0.045919470489025116, 0.0032777865417301655, -0.0014696735888719559, -0.0072155301459133625, 0.02235054410994053, 0.006856784224510193, -0.02534235082566738, -0.022540070116519928, 0.002262467984110117, -0.019182750955224037, -0.006751867942512035, -0.003450390649959445, -0.018343420699238777, 0.02218809351325035, -0.00221847090870142, 0.0090904850512743, -0.019507652148604393, -0.00867081992328167, 0.04702955484390259, 0.008244385942816734, -0.022919123992323875, -0.01129034161567688, -0.0006379584665410221, -0.011270035058259964, -0.019737791270017624, 0.010112572461366653, -0.020035618916153908, 0.012698249891400337, 0.00857605691999197, 0.03257141634821892, -0.015933731570839882, 0.03143426030874252, -0.02763020060956478, 0.01800498180091381, -0.0043929447419941425, -0.02698039636015892, -0.038365501910448074, 0.03663269057869911, 0.007019235286861658, 0.006721408572047949, 0.006068220362067223, 0.002013714984059334, -0.002643212443217635, -0.00961845088750124, 0.0057230121456086636, -0.031001059338450432, 0.009408618323504925, 0.005066439509391785, 0.011784463189542294, 0.016218021512031555, 0.010782682336866856, -0.008819733746349812, -0.0015424380544573069, 0.019751328974962234, 0.006183289922773838, -0.010044884867966175, -0.012691481038928032, 0.01326682884246111, 0.00835945550352335, -0.007371212355792522, -0.012102596461772919, 0.014891338534653187, 0.010545775294303894, 0.009225861169397831, -0.001017010654322803, 0.02675025910139084, -0.0048126098699867725, 0.0076351952739059925, 0.03595581278204918, 0.003597612027078867, 0.020022081211209297, -0.0018072669627144933, 0.005922691430896521, 0.02864551916718483, 0.008352686651051044, -0.028158167377114296, 0.012285353615880013, -0.0060242232866585255, -0.007987172342836857, -0.007100460585206747, 0.022675447165966034, 0.016245096921920776, 0.014282147400081158, 0.017625929787755013, -0.016651224344968796, -0.0045283203944563866, -0.025382962077856064, 0.01800498180091381, -0.0022286241874098778, 0.016177408397197723, 0.0414520688354969, -0.02572140283882618, -0.002573832403868437, 0.035278934985399246, 0.02197149209678173, 0.030892757698893547, 0.012366579845547676, -0.015974344685673714, 0.022648371756076813, 0.008521907031536102, 0.00465354323387146, -0.6142812371253967, -0.005347344093024731, -0.04164159670472145, -0.014986101537942886, 0.002438456518575549, 0.014173846691846848, 0.014620586298406124, 0.0005931152263656259, -0.029403623193502426, 0.04689417779445648, 0.005929460283368826, 0.025166360661387444, -0.0015424380544573069, 0.009774132631719112, 0.011655856855213642, -0.04854576289653778, 0.013043458573520184, -0.020644810050725937, -0.02262129634618759, 0.02197149209678173, -0.0016998123610392213, 0.019561802968382835, 0.028401842340826988, 0.005279656033962965, 0.013781256973743439, 0.004575701896101236, -0.0021490908693522215, 0.00555040780454874, 0.02363661490380764, -0.003597612027078867, 0.0030002661515027285, 0.0018614173168316483, 0.02277020923793316, 0.0037397565320134163, 0.040260761976242065, -0.021010324358940125, -0.007283218204975128, -0.003553614718839526, 0.009659063071012497, 0.039665110409259796, -0.024137506261467934, -0.01906091347336769, 0.03912360593676567, -0.005621480289846659, 0.014986101537942886, -0.04085641726851463, -0.001061007846146822, 0.035874586552381516, 0.008129317313432693, -0.018343420699238777, 0.011114353314042091, 0.015121476724743843, 0.023771990090608597, -0.002633059397339821, 0.005259349942207336, -0.009489843621850014, -0.0019883320201188326, 0.002695670584216714, -0.007750264834612608, -0.027711426839232445, 0.023785527795553207, 0.0009036334813572466, 0.001748040085658431, 0.003372549545019865, -0.012048446573317051, -0.004616315010935068, -0.012075521051883698, 0.005266118794679642, -0.0029071953613311052, -0.00992981530725956, 0.007357674650847912, 0.023352324962615967, -0.02698039636015892, -0.009029566310346127, 0.007743495982140303, 0.004447095096111298, 0.01612325757741928, -0.01946704089641571, 0.0055131795816123486, -0.0006058067083358765, 0.01586604304611683, -0.008115779608488083, -0.017896680161356926, -0.013578193262219429, 0.03435837849974632, 0.0003860325668938458, -0.007581044919788837, 0.005831312853842974, 0.012014602310955524, 0.007154610939323902, 0.015202702954411507, 0.016894899308681488, -0.02275667153298855, -0.016014957800507545, -0.007987172342836857, 0.022093331441283226, -0.010890983045101166, 0.0020221760496497154, 0.009611682035028934, -0.013307441025972366, -0.013436048291623592, -0.008515138179063797, 0.005587636027485132, -0.004007123876363039, -0.0007851796690374613, -0.015947269275784492, -0.008738508448004723, 0.009449230507016182, 0.04432203620672226, -0.027278224006295204, -0.006965084932744503, -0.05201138183474541, 0.005076592788100243, 0.03221943974494934, -0.02360953949391842, -0.03427715227007866, 0.01738225296139717, -0.005462413653731346, 0.01884431205689907, -0.024354105815291405, -0.026493044570088387, 0.02255360782146454, 0.01860063523054123, 0.008474525064229965, 0.013700030744075775, 0.026398280635476112, 0.0038582102861255407, -0.026696108281612396, -0.005296578165143728, -0.017869606614112854, 0.009679369628429413, 0.0011532326461747289, 0.0020594042725861073, -0.0020526356529444456, 0.0019697179086506367, -0.008000710047781467, 0.014959026128053665, -0.019615953788161278, 0.014322759583592415, -0.011994295753538609, -0.0009535533026792109, 0.010714994743466377, 0.007053079083561897, -0.01906091347336769, -0.006799249444156885, -0.011953683570027351, -0.0257484782487154, 0.01570359244942665, -0.008515138179063797, -0.021646590903401375, -0.00019439119205344468, -0.02363661490380764, -0.04635267332196236, -0.0031897923909127712, -0.02359600178897381, -0.0014688274823129177, -0.006108833011239767, 0.0018292655004188418, -0.007493050768971443, -0.018722472712397575, -0.005337190814316273, 0.04280582815408707, -0.014661199413239956, 0.0002952884533442557, -0.02864551916718483, -0.01675952412188053, -0.02551833912730217, 0.04104594141244888, -0.026005690917372704, -0.03159671276807785, -0.0016828904626891017, -0.0012336119543761015, -0.0061697522178292274, -0.024841459468007088, 0.030080502852797508, 0.014214458875358105, -0.026384742930531502, -0.020996786653995514, -0.02027929574251175, -0.007574276067316532, 0.0032473269384354353, -0.008616670034825802, 0.012170284986495972, 0.0004069735005032271, 0.023013886064291, -0.00015060558507684618, -0.00816992949694395, -0.025261124595999718, -0.049899522215127945, 0.019291052594780922, 0.03184038773179054, -0.006998928729444742, -0.011730313301086426, 0.0023589234333485365, -0.011581399478018284, 0.025030985474586487, -0.007885640487074852, -0.00994335301220417, 0.023947978392243385, 0.022296395152807236, 0.01692197471857071, -0.012833626009523869, -0.010674381628632545, -0.018519409000873566, 0.00403081439435482, -0.012711787596344948, 0.008772351779043674, -0.017314564436674118, 0.030188804492354393, -0.0033556276466697454, 0.00019079526828136295, -0.007012466434389353, -0.021199850365519524, -0.021226925775408745, 0.03132595866918564, 0.0050224424339830875, -0.004345563240349293, 0.033356595784425735, 0.018086206167936325, 0.0033370135352015495, 0.019927317276597023, 0.0038615947123616934, 0.02402920462191105, 0.002633059397339821, 0.006558957509696484, 0.0030121116433292627, 0.018695397302508354, -0.003556999145075679, -0.02152475155889988, -0.030459554865956306, -0.008711433038115501, 0.004991982597857714, 0.013571424409747124, 0.004149268381297588, 0.0577242411673069, 0.010532237589359283, 0.03912360593676567, 0.010647307150065899, 0.029647300019860268, -0.0029765754006803036, -0.008088704198598862, 0.01841110922396183, 0.007960096932947636, -0.06270606815814972, 0.011107584461569786, -0.0002180819574277848, 0.03563091158866882, 0.01225151028484106, 0.008934803307056427, 0.01758531667292118, 0.017734229564666748, -0.0005254273419268429, -0.012170284986495972, 0.006318665575236082, 0.013781256973743439, -0.014891338534653187, 0.0077164205722510815, -0.0007564122788608074, 0.012779476121068, 0.020428208634257317, 0.0032879398204386234, 0.03430422767996788, -0.000287039001705125, -0.011838614009320736, 0.014701811596751213, 0.005069823935627937, -0.0006773020722903311, -0.027332374826073647, 0.018952611833810806, -0.01349019818007946, -0.0347103551030159, -0.029836826026439667, -0.009056640788912773, -2.4457542167510837e-05, 0.025816164910793304, -0.00528642488643527, 0.008860345929861069, 0.012061984278261662, 0.0017260414315387607, -0.012048446573317051, -0.023771990090608597, -0.015622367151081562, 0.017625929787755013, -0.008474525064229965, -0.0006904166075401008, -0.008027785457670689, -0.01674598641693592, -0.022242244333028793, -0.005479335784912109, 0.040044162422418594, -0.02427288144826889, 0.004250800237059593, -0.004101886879652739, -0.011364798992872238, 0.007141073700040579, 0.0057500870898365974, 0.009334161877632141, -0.0005787315312772989, -0.023379400372505188, 0.00590915372595191, -0.0031136434990912676, 0.004318488296121359, -0.009828283451497555, -0.010769144631922245, 0.04053151607513428, 0.003485926892608404, 0.012948695570230484, -0.03563091158866882, -0.0040375832468271255, -0.014322759583592415, 0.01359849888831377, -0.025802627205848694, -0.03010757826268673, -0.015730667859315872, 0.026411818340420723, -0.007892409339547157, 7.32404223526828e-05, -0.024191655218601227, 0.03644316643476486, 0.020793722942471504, 0.006792481057345867, 0.015987882390618324, -0.015486991964280605, -0.0055131795816123486, 0.041316695511341095, 0.01298253983259201, -0.01326682884246111, 0.006548804230988026, -0.04196649789810181, -0.012799781747162342, -0.022052718326449394, -0.021876730024814606, 0.014566436409950256, -0.0060783736407756805, -0.012806550599634647, -0.006792481057345867, 0.012258279137313366, 0.0005376957706175745, -0.005083361174911261, 0.02470608428120613, 0.0073509057983756065, -0.011655856855213642, 0.013788025826215744, -0.03132595866918564, 0.02492268569767475, -0.0027582820039242506, 0.02258068323135376, 0.030080502852797508, -0.012149978429079056, -0.0057331654243171215, 0.025897391140460968, 0.007723189424723387, -0.002145706443116069, -0.005976841785013676, -0.014079083688557148, -0.005841465666890144, 0.013557886704802513, 0.01984609290957451, -7.831701805116609e-05, 0.020346982404589653, 0.012975770980119705, 0.027115773409605026, 0.01716565154492855, -0.01819450780749321, 0.008318843320012093, 0.02467900887131691, -0.0009129405370913446, -0.011534018442034721, -0.014931950718164444, 0.010857139714062214, 0.010613462887704372, 0.016678297892212868, -0.015053789131343365, -0.03885285556316376, 0.007391518913209438, -0.01242749858647585, -0.04648805037140846, -0.034439604729413986, -0.015838969498872757, 0.009977196343243122, -0.023474164307117462, -0.025599563494324684, -0.01920982636511326, 0.012677944265305996, -0.026926247403025627, -0.01014641672372818, 0.01606910675764084, 0.011317417025566101, 0.029647300019860268, 0.003665299853309989, -0.007438900414854288, -0.00014838456991128623, -0.041343770921230316, 0.010505162179470062, 0.017463479191064835, -0.0037363721057772636, 0.015527604147791862, 0.0114121800288558, 0.017653005197644234, 0.017639467492699623, 0.0025636793579906225, -0.010092265903949738, -0.007865333929657936, 0.006183289922773838, -0.01202137116342783, -0.015297465957701206, -0.01884431205689907, -0.0014629047363996506, 0.005218737293034792, 0.01567651703953743, 0.01696258783340454, 0.0034690049942582846, -0.020346982404589653, 0.03468327969312668, -0.014837187714874744, 0.028780896216630936, 0.02401566691696644, -0.01654292270541191, 0.021998567506670952, 0.01013287901878357, -0.018099743872880936, 0.018573559820652008, 0.009124329313635826, 0.0074998196214437485, 0.008528675884008408, -0.014959026128053665, 0.011635550297796726, -0.022106869146227837, -0.015784818679094315, 0.01736871525645256, -0.0019697179086506367, 0.023528315126895905, -0.002617829479277134, 0.0008084473665803671, 0.03389810025691986, -0.0009992426494136453, 0.018492333590984344, 0.012292122468352318, -0.004470786079764366, 0.0105525441467762, -0.006342356093227863, 0.01796436868607998, -0.022512996569275856, -0.015405766665935516, -0.0043387943878769875, -0.004562164656817913, 0.004731384105980396, 0.015040251426398754, -0.01816743239760399, 0.02469254657626152, 0.0129690021276474, -0.019385814666748047, 0.010044884867966175, 0.0035366928204894066, 0.007655501365661621, -0.009997502900660038, 0.010390092618763447, -0.023365862667560577, -0.04643389955163002, -0.015730667859315872, -0.012515492737293243, 0.01694905012845993, -0.0028361231088638306, 0.021281076595187187, -0.00053515745094046, -0.012833626009523869, 0.00564517080783844, -0.008230849169194698, 0.0022692368365824223, -0.03479158133268356, -0.015446378849446774, 0.019399352371692657, 0.02068542316555977, 0.015744205564260483, 0.0163398589938879, -0.015473454259335995, -0.029836826026439667, -0.001781883998773992, 0.003100105794146657, -0.010247948579490185, -0.00308656832203269, 0.02008976973593235, -0.0005372727173380554, 0.03931313380599022, 0.03346489742398262, -0.014187384396791458, 0.0003407662734389305, 0.027697889134287834, 0.010322405025362968, 0.005205199588090181, 0.008149622939527035, 0.007594582624733448, -0.02761666290462017, 0.010613462887704372, 0.01298253983259201, -0.011236191727221012, 0.007811183575540781, 0.018316345289349556, -0.007418593857437372, 0.028943346813321114, 0.016610611230134964, 0.01651584729552269, -0.018546484410762787, -0.033600274473428726, 0.016989663243293762, -0.012603486888110638, -0.009388311766088009, 0.007486281916499138, -0.0048227631486952305, -0.028104016557335854, 0.04635267332196236, 0.02573494054377079, -0.015744205564260483, 0.01087067648768425, 0.014200921170413494, 0.007933021523058414, 0.0009400157141499221, -0.011825076304376125, 0.030026352033019066, -0.008772351779043674, -0.0026516735088080168, -0.04448448866605759, 0.02842891775071621, -0.004142499528825283, -0.02386675402522087, 0.008190236054360867, -0.011513711884617805, -0.004805841017514467, -0.024205192923545837, -0.007242605555802584, -0.019710715860128403, -0.03319414705038071, 0.002132168971002102, -0.01776130497455597, 0.0035400772467255592, -0.006694333162158728, 0.0014189076609909534, -0.02195795439183712, 0.040260761976242065, 0.024151042103767395, 0.003936051391065121, 0.012772707268595695, -0.011351261287927628, -0.016055570915341377, 0.01107374019920826, -0.029809750616550446, 0.047354456037282944, 0.014755962416529655, 0.04229139909148216, 0.01822158321738243, -0.001961256843060255, 0.003631455823779106, 0.0036145339254289865, 0.0015940500888973475, 0.00555040780454874, 0.009259704500436783, 0.027481287717819214, -0.017287489026784897, 0.01587958075106144, -0.011933377012610435, 0.015162089839577675, -0.024421794340014458, -0.018329882994294167, 0.02718346007168293, 0.013334516435861588, 0.006674027070403099, -0.024949761107563972, -0.00919878575950861, -0.028510143980383873, 0.00910402275621891, -0.021809041500091553, -0.0021626283414661884, -0.0023741531185805798, 0.0022743134759366512, -0.038175977766513824, 0.024123968556523323, 0.01858709752559662, 0.03324829787015915, 0.005049517378211021, 0.007662270218133926, -0.001343604875728488, -0.016258634626865387, -0.028158167377114296, 0.008731739595532417, -0.02383967861533165, 0.003929282538592815, -0.017869606614112854, -0.02277020923793316, 0.022012105211615562, -0.02360953949391842, -0.033979326486587524, -0.031921613961458206, -0.013530811294913292, 0.03010757826268673, -0.008724970743060112, -0.03246311843395233, -0.025599563494324684, 0.01753116585314274, -0.008846808224916458, -0.0035468460991978645, -0.02275667153298855, -0.0046840026043355465, 0.0007259527337737381, 0.021998567506670952, 0.015987882390618324, 0.01627217046916485, -0.012833626009523869, -0.012610255740582943, 0.008501600474119186, 0.002243853872641921, 0.011770926415920258, 0.008129317313432693, 0.017869606614112854, -0.04264337569475174, -0.027508363127708435, -0.03614534065127373, 0.0041932654567062855, 0.021795503795146942, -0.003851441666483879, -0.032760944217443466, 0.012759169563651085, 0.04053151607513428, -0.027102235704660416, 0.023704303428530693, -0.030838606879115105, -0.0017251953249797225, -0.010985746048390865, -0.006301743444055319, -0.0004518167406786233, -0.0016913514118641615, 0.04304950311779976, -0.00334885879419744, -0.024827921763062477, -0.023717841133475304, 0.010484855622053146, 0.0031204121187329292, -0.014349834993481636, 0.004365869797766209, -0.007872102782130241, 0.003611149499192834, 0.0038920543156564236, -0.010863907635211945, -0.027968641370534897, 0.006613107863813639, 0.0045486269518733025, 0.023271100595593452, 0.027359450235962868, -0.02511221170425415, -0.0048295315355062485, 0.009638757444918156, -0.017490552738308907, -0.002599215367808938, -0.018695397302508354, 0.009645526297390461, 0.007452437654137611, 0.018993224948644638, -0.005990379024296999, 0.004859991371631622, -0.02194441668689251, -0.02864551916718483, -0.024421794340014458, 0.010484855622053146, -0.011006052605807781, -0.00674509909003973, -0.03934020921587944, 0.022932661697268486, 0.010735301300883293, -0.0030730306170880795, 0.008488062769174576, 0.012001064606010914, -0.004365869797766209, 0.009455999359488487, 0.0001655180676607415, -0.03054078109562397, -0.016610611230134964, 0.012197359465062618, 0.020793722942471504, -0.02218809351325035, -0.000642611994408071, -0.006704486440867186, -0.03362734988331795, 0.001280993572436273, -0.006115601863712072, 0.02321694977581501, 0.03657853975892067, -0.008975415490567684, -0.010295329615473747, 0.03557676076889038, -0.008603132329881191, 0.005638401955366135, -0.03758032247424126, -0.0071343048475682735, 0.011865689419209957, 0.034629128873348236, -0.002968114335089922, 0.0032896320335566998, -0.01127680391073227, 0.007838258519768715, 0.010918058454990387, -0.0244759451597929, 0.015351615846157074, 0.009070178493857384, 0.009388311766088009, -0.02450302056968212, -0.005191661883145571, -0.009002490900456905, 0.003206714289262891, 0.004210187587887049, -0.007777339778840542, -0.029376549646258354, -0.0008824809920042753, 0.010721763595938683, 0.002352154580876231, -0.02304096147418022, -0.006680795922875404, 0.00025679098325781524, -0.012529030442237854, -0.005049517378211021, 0.019169213250279427, -0.012400423176586628, 0.0026753642596304417, -0.03804060071706772, 0.015947269275784492, 0.008488062769174576, 0.03221943974494934, 0.014146771281957626, 0.01024117972701788, 4.206697121844627e-05, -0.003611149499192834, 0.02383967861533165, -0.043482705950737, -0.010065190494060516, -0.00017175804532598704, 0.017057351768016815, -0.00868435762822628, -0.02490914799273014, 0.0647096335887909, -0.04264337569475174, 0.013524042442440987, -0.014363372698426247, -0.022526534274220467, -0.014607048593461514, 0.0038040599320083857, 0.016190946102142334, -0.044890616089105606, 0.02278374694287777, 0.014891338534653187, 0.011148197576403618, 0.005922691430896521, -0.032950468361377716, 0.005482719745486975, 0.025355888530611992, -0.006998928729444742, -0.0037600628565996885, 0.016664762049913406, 0.005069823935627937, 0.00827823020517826, 0.020157456398010254, -0.037932299077510834, -0.005242427811026573, 0.18400278687477112, 0.005526717286556959, -0.002220163121819496, 0.010863907635211945, 0.010890983045101166, 0.021050937473773956, 0.0034283921122550964, 0.002949500223621726, -0.012833626009523869, 0.00014954795187804848, -0.014403984881937504, 0.008846808224916458, -0.014011395163834095, 0.006122370716184378, -0.020766647532582283, -0.02550480142235756, 0.011737082153558731, -0.009259704500436783, 0.009895971044898033, 0.0008376377518288791, -0.006626645568758249, -0.020807260647416115, -0.03259849175810814, -0.02802279032766819, 0.037742774933576584, -0.013463123701512814, -0.0004287605406716466, 0.015013176016509533, 0.008731739595532417, -0.011594937182962894, -0.024367643520236015, 0.007526894565671682, -0.010173491202294827, 0.015094402246177197, -0.05745349079370499, -0.009483074769377708, 0.03828427568078041, -0.019155675545334816, 0.024963296949863434, -0.005519948434084654, -0.0011066971346735954, -0.021809041500091553, -0.025586025789380074, -0.011933377012610435, 0.02381260320544243, 0.04586532339453697, 0.006020838860422373, -0.010505162179470062, -0.00869789533317089, 0.03647024184465408, -0.022296395152807236, -0.04835623502731323, 0.02176842838525772, -0.013192371465265751, 0.025234049186110497, 0.0026838253252208233, 0.007357674650847912, 0.002780280541628599, 0.014349834993481636, 0.009489843621850014, -0.018695397302508354, 0.02007623203098774, -0.026100454851984978, 0.01254933699965477, -0.016014957800507545, 0.010065190494060516, -0.02508513629436493, -0.011114353314042091, -0.0029918053187429905, -3.675241532619111e-05, -0.006088526453822851, -0.008420375175774097, -0.009530456736683846, 0.018966149538755417, -0.014552898705005646, -0.01864124834537506, 0.021078012883663177, 0.012826857157051563, 0.01883077435195446, 0.01759885437786579, -0.005340575240552425, -0.005926075857132673, -0.007161379791796207, -0.010647307150065899, -0.010599925182759762, -0.027061622589826584, 0.03132595866918564, 0.004054505378007889, 0.0024469175841659307, -0.0034233154729008675, 0.0031796391122043133, -0.006399890873581171, 0.003695759456604719, -0.004494476597756147, -0.021240463480353355, 0.009070178493857384, 0.015730667859315872, 0.023068036884069443, 0.009388311766088009, -0.010092265903949738, -0.026696108281612396, 0.02945777401328087, 0.0030053427908569574, -0.004521551541984081, 0.008379762060940266, -0.0015932039823383093, -0.010830064304172993, 0.013652649708092213, 0.014755962416529655, -0.04624437540769577, 0.00921232346445322, -0.03156963735818863, -0.005689167883247137, -0.008176698349416256, 0.0036923750303685665, -0.009963658638298512, -0.018329882994294167, -0.010457780212163925, 0.007696114480495453, -0.001742963446304202, 0.022039180621504784, 0.013056996278464794, -0.015798356384038925, -0.0008740200428292155, 0.018099743872880936, -0.030053427442908287, -0.021389376372098923, -0.019155675545334816, -0.011330954730510712, -0.017477016896009445, 0.035008180886507034, -0.03300461918115616, 0.020184531807899475, 0.008603132329881191, -0.010809757746756077, -0.03530601039528847, -0.01904737576842308, -0.004646774381399155, -0.003685606177896261, 0.010586387477815151, -0.015243315137922764, 0.0031999454367905855, -0.04202064871788025, 0.006426966283470392, 0.021917343139648438, -0.027548976242542267, 0.0005140050197951496, -0.004237262532114983, 0.0009543994092382491, -0.01674598641693592, -0.020563583821058273, 0.0027701272629201412, 0.01949411630630493, -0.03912360593676567, -0.007445669267326593, -0.014146771281957626, -0.024800846353173256, -0.039665110409259796, 0.021023862063884735, -0.02216101810336113, 0.006998928729444742, 0.0072899870574474335, -0.011933377012610435, -0.007100460585206747, -0.019196288660168648, 0.008928034454584122, -0.16894899308681488, -0.006978622637689114, 0.02695332281291485, -0.04391590878367424, 0.030026352033019066, -0.010105803608894348, 0.04448448866605759, 0.008528675884008408, 0.002719361335039139, 0.009185248054564, 0.022120406851172447, 0.008014247752726078, -0.015581754967570305, -0.019724253565073013, -0.020401133224368095, -0.006535266991704702, -0.024787308648228645, -0.005577483214437962, 0.04832915961742401, 0.018952611833810806, 0.036957595497369766, -0.033139996230602264, 0.024191655218601227, 0.03931313380599022, -0.0065149604342877865, 0.010823295451700687, 0.01777484267950058, 0.0013072225265204906, 0.0070056975819170475, -0.029132872819900513, -0.006636798847466707, 0.010796220041811466, -0.013530811294913292, -0.020577121526002884, -0.003986817318946123, -0.0009273242321796715, 0.0021778582595288754, -0.019115062430500984, -0.018952611833810806, -0.014972563832998276, 0.009029566310346127, 0.007723189424723387, -0.0029139642138034105, -0.007987172342836857, -0.008014247752726078, 0.009733520448207855, 0.02383967861533165, -0.01900676265358925, 0.004115424584597349, -0.01180476974695921, -0.0048938351683318615, -0.01655646041035652, 0.007032772991806269, -0.006122370716184378, 0.03860917687416077, -0.01610971987247467, -0.030649080872535706, 0.016055570915341377, 0.0037397565320134163, 0.020170994102954865, 0.0265742689371109, -0.024205192923545837, 0.013036689721047878, 0.015338078141212463, 0.0029748831875622272, -0.009503381326794624, -0.0021017093677073717, 0.002098324941471219, -0.02780618891119957, 0.001133772311732173, 0.013889557681977749, -0.010843602009117603, -0.023122187703847885, -0.025477726012468338, 0.01368649397045374, 0.030378330498933792, -0.033789798617362976, 0.010281791910529137, 0.009625219739973545, -0.008318843320012093, -0.005726396571844816, 0.041316695511341095, -0.012068753130733967, 0.003069646190851927, -0.00251291343010962, -0.001046624151058495, -0.002912272000685334, 0.0059599196538329124, -0.01225151028484106, -0.014972563832998276, 0.031082283705472946, -0.0363619402050972, -0.006088526453822851, -0.014728887006640434, 0.021470602601766586, 0.01632632128894329, -0.002291235374286771, -0.015392228960990906, 0.02304096147418022, -0.014539361000061035, 0.0016575074987486005, -0.007141073700040579, -0.015514066442847252, -0.019588878378272057, 0.010423936881124973, 0.008907727897167206, -0.02382614091038704, 0.009239398874342442, 0.01900676265358925, 0.002780280541628599, 7.572583854198456e-05, -0.007053079083561897, 0.002490914659574628, 0.017003200948238373, -0.015432841144502163, 0.037986449897289276, 0.013666187413036823, -0.003577305469661951, 0.006792481057345867, 0.0020712497644126415, 0.0414520688354969, -0.0047584595158696175, -0.009564300067722797, 0.0034097780007869005, -0.010714994743466377, -0.024624858051538467, -0.1439315527677536, -0.018343420699238777, 0.009300317615270615, 0.0314071848988533, 0.0022506227251142263, 0.01099251490086317, 0.0032405583187937737, 0.011222654022276402, -0.00983505230396986, 0.00668756477534771, 0.00401727668941021, -0.021470602601766586, -0.008312074467539787, -0.004355716519057751, 0.020360520109534264, -0.011344492435455322, -0.0014696735888719559, -0.02653365768492222, -0.026398280635476112, 0.0509825274348259, -0.0001964006805792451, -0.007655501365661621, 0.005208584014326334, 0.006162983365356922, 0.010329173877835274, 0.02130815200507641, -0.04773350805044174, 0.005452260375022888, -0.003699143882840872, 0.02967437542974949, 0.014146771281957626, -0.0064845010638237, 0.004755075089633465, 0.003553614718839526, -0.013679725117981434, 0.00037736003287136555, -0.0005859233788214624, 0.019764866679906845, 0.048220861703157425, -0.007824721746146679, 0.005875309929251671, 0.017409328371286392, -0.013151759281754494, 0.005858387798070908, 0.015324540436267853, -0.029403623193502426, -0.007621657568961382, 0.01885784976184368, -0.003460543928667903, -0.016258634626865387, -0.031921613961458206, -0.0016482004430145025, -0.01923690177500248, -0.04053151607513428, 0.030053427442908287, -0.02637120708823204, -0.009124329313635826, 0.0035908431746065617, -0.011324185878038406, 0.015094402246177197, -0.008867114782333374, -0.0037939068861305714, -0.012183821760118008, 0.03119058534502983, 0.01822158321738243, 0.026411818340420723, -0.03135303407907486, 0.02595154196023941, 0.00569255230948329, -0.01235981099307537, 0.01606910675764084, 0.026669032871723175, -0.006193442735821009, 0.02742713689804077, -0.04681295156478882, 0.0032287128269672394, 0.01755824126303196, -0.015229777432978153, 0.008494831621646881, 0.0017395790200680494, -0.032733868807554245, -0.001771730836480856, -0.0065961857326328754, -0.009131098166108131, 0.00952368788421154, 0.005252581089735031, 0.005019058007746935, 0.005032595247030258, 0.016448160633444786, -0.021172774955630302, 0.0006294974591583014, 0.02256714552640915, 0.04532381892204285, -0.013997857458889484, 0.013903094455599785, 0.026181679219007492, -0.003763447282835841, -0.0001170789182651788, 0.0018901845905929804, -0.0036043806467205286, -0.053040239959955215, -0.030432479456067085, -0.030432479456067085, 0.009313855320215225, 0.0016879669856280088, -0.01839757151901722, 0.014661199413239956, -0.015378691256046295, 0.010721763595938683, 0.004166190512478352, 0.008027785457670689, -0.003831135109066963, -0.019115062430500984, -0.019940854981541634, -0.009361236356198788, -0.010281791910529137, 0.01629924587905407, 0.0052390433847904205, 0.008968646638095379, -0.00814285408705473, 0.028347693383693695, -0.007222298998385668, -0.0072899870574474335, -0.003946204669773579, -0.0002250622637802735, 0.013733875006437302, -0.0033217836171388626, 0.015595292672514915, 0.0013562963576987386, 0.018736010417342186, -0.024787308648228645, -0.022688984870910645, 0.0228243600577116, 0.01212967187166214, -0.013672956265509129, 0.017057351768016815, 0.006058067083358765, -0.002375845331698656, 0.0013562963576987386, 0.0035265395417809486, 0.03701174259185791, 0.0003936474386136979, 0.005492873024195433, -0.04581117257475853, 0.0194535031914711, -0.010227642022073269, -0.00972675159573555, -0.012231203727424145, 0.01629924587905407, 0.019778404384851456, -0.009787670336663723, 0.00888742133975029, 0.00974028930068016, 0.005296578165143728, -0.03722834587097168, -0.011188809759914875, 0.01571713015437126, -0.028807969763875008, 0.004629852250218391, -0.016773061826825142, -0.0018614173168316483, 0.004040967673063278, 0.04976414516568184, -0.0035130020696669817, 0.018668323755264282, 0.007229067850857973, 0.004914141725748777, -0.0062882062047719955, -0.010985746048390865, 0.01865478605031967, -0.005980226211249828, -0.0008025246788747609, -0.004237262532114983, -0.008298536762595177, 0.010139647871255875, 0.0058008530177176, 0.01880369894206524, -0.005530101712793112, -0.030919833108782768, -0.020022081211209297, -0.014593511819839478, 0.015500529669225216, 0.05046809837222099, 0.014647661708295345, -0.013916632160544395, 0.0030645697843283415, 0.034168850630521774, 0.02382614091038704, -0.010613462887704372, -0.0046670809388160706, -0.009767363779246807, -0.0053033470176160336, 0.020374057814478874, -0.01942642778158188, -0.012867470271885395, -0.02737298794090748, 0.017436403781175613, 0.02867259457707405, 0.023704303428530693, 0.01864124834537506, -0.018884925171732903, 0.007736727129667997, -0.005672246217727661, -0.00971321389079094, 0.007276449352502823, 0.00011327147512929514, -0.03362734988331795, 0.02217455580830574, 0.000710722932126373, -0.06059420853853226, -0.0024790694005787373, 0.02277020923793316, -0.013727106153964996, 0.020590659230947495, 0.006931241136044264, 0.01200783345848322, -0.026276443153619766, 0.004991982597857714, -0.018560022115707397, -0.02929532341659069, -0.021010324358940125, 0.022445308044552803, -0.00031919075991027057, 0.0011227730428799987, 0.03332952409982681, 0.008569288067519665, 0.02006269432604313, 0.010484855622053146, 0.02528820000588894, -0.01696258783340454, 0.0026652109809219837, 0.01046454906463623, -0.006518344860523939, 0.0010356248822063208, -0.027048084884881973, -0.020211607217788696, -0.011148197576403618, -0.030161729082465172, 0.004650158807635307, -0.00321179092861712, 0.006829709280282259, 0.05493550002574921, 0.007235836703330278, -0.002627982757985592, 0.002653365721926093, -0.026641957461833954, 0.02302742376923561, 0.021470602601766586, 0.0034926957450807095, -0.02490914799273014, -0.03446668013930321, -0.007242605555802584, 0.015270390547811985, -0.017016738653182983, -0.032733868807554245, -0.0046129305846989155, 0.011567862704396248, -0.026520119979977608, 0.007147842552512884, -0.00028111631399951875, 0.02573494054377079, 0.021281076595187187, 0.008109010756015778, 0.014796575531363487, -0.004054505378007889, -0.00984859000891447, -0.0018258810741826892, 0.0347103551030159, 0.00941538717597723, -0.023528315126895905, -0.012786244042217731, 0.004101886879652739, -0.00030755691113881767, -0.04001708701252937, -0.005631633568555117, -0.018262196332216263, 0.0026076764333993196, 0.007086923345923424, -0.019575340673327446, 0.02026575803756714, 0.007824721746146679, -0.0005288117099553347, -0.011811538599431515, -0.006751867942512035, -0.008636976592242718, -0.015419303439557552, -0.00039407049189321697, -0.0028107401449233294, 0.009625219739973545, -0.029809750616550446], "b62efdf3-cde0-49ba-a7d5-68d8a09f3118": [0.008146137930452824, 0.0074922675266861916, 0.012178340926766396, -0.017749862745404243, -0.038142453879117966, 0.008289172314107418, 0.000888855429366231, -0.02680869586765766, -0.017245838418602943, 0.015311471186578274, 0.01911209337413311, 0.01949351839721203, -0.010856976732611656, 0.0153250927105546, -0.006334371864795685, 0.024274947121739388, 0.021019216626882553, 0.0023038722574710846, 0.01063902024179697, -0.0010557286441326141, -0.010380196385085583, 0.005339943338185549, -0.013819828629493713, 0.0006521678296849132, -0.021169062703847885, 0.021318906918168068, 0.012798155657947063, -0.0037801896687597036, 0.005108364392071962, -0.00935171265155077, 0.005500005558133125, 0.0025695073418319225, -0.03135854750871658, -0.011395057663321495, -0.020378967747092247, 0.0048597571440041065, -0.01119072362780571, 0.00811208225786686, 0.038496632128953934, -0.007730658166110516, 0.023062562569975853, -0.0011246915673837066, -0.008820442482829094, 6.741976540070027e-05, -0.016210542991757393, 0.017586395144462585, 0.014003729447722435, -0.013833451084792614, -0.04372759908437729, 0.022299712523818016, 0.01631952077150345, 0.04116660729050636, -0.026672473177313805, 0.0068383971229195595, 0.005033441819250584, 0.0065114619210362434, -0.015461316332221031, 0.022027267143130302, 6.912255776114762e-05, -0.039177749305963516, -0.010945522226393223, 0.0026256993878632784, -0.010523230768740177, -0.015801873058080673, -0.01637401059269905, 0.013452026061713696, 0.007117654196918011, 0.004471521824598312, -0.017232215031981468, 0.01949351839721203, 0.0006628102855756879, 0.022640271112322807, -0.0062083653174340725, 0.005339943338185549, 0.03530901297926903, -0.016360389068722725, -0.0034822016023099422, 0.013165958225727081, -0.011531281284987926, -0.02005203254520893, 0.017627263441681862, -0.027639657258987427, 0.016741812229156494, 0.034083008766174316, 0.015733761712908745, -0.019915809854865074, 0.020855749025940895, 0.026045847684144974, -0.00924273394048214, -0.015134381130337715, -0.004042419139295816, 0.0026222937740385532, 0.010938710533082485, 0.012900322675704956, 0.0010667967144399881, 0.025855135172605515, -0.01018267311155796, 0.008588863536715508, 0.013220447115600109, -0.012076172977685928, -0.0199566762894392, -0.004536227788776159, -0.017831597477197647, -0.01293437834829092, -0.012689176946878433, -0.0035486104898154736, 0.02281736023724079, -0.01577463001012802, 0.0044885496608912945, -0.014684844762086868, -0.024288570508360863, 0.02822541631758213, -0.006807746831327677, 0.00036865362199023366, 0.0041411807760596275, -0.0398588627576828, -0.023907145485281944, -0.007723846938461065, -0.03149477019906044, -0.013697227463126183, 0.012014873325824738, 0.0033187340013682842, 0.003926629200577736, 0.0018304972909390926, 0.03737960383296013, -0.007465023081749678, -0.005169664975255728, -0.023335007950663567, -0.019439028576016426, -0.03149477019906044, 0.05416228622198105, 0.022326957434415817, 0.02942417934536934, 0.02228609099984169, -0.01769537478685379, -0.006613628938794136, -0.018049554899334908, 0.0001226007443619892, -0.027735013514757156, -0.013656361028552055, 0.02307618409395218, 0.01961611956357956, -0.02134615182876587, 0.007560379337519407, -0.03386504948139191, 0.016837168484926224, 0.02539197728037834, 0.010768432170152664, 0.009678647853434086, -0.010564097203314304, 0.01097276620566845, -0.0068826694041490555, 0.0017845219699665904, 0.0008939637918956578, -0.010652642697095871, -0.03413749486207962, -0.0023685782216489315, 0.004498766269534826, 0.013908373191952705, -0.022395068779587746, 0.011728804558515549, 0.027421699836850166, 0.0018611474661156535, -0.013663171790540218, 0.011013633571565151, 0.02363469824194908, 0.024996928870677948, 0.020133767277002335, -0.007560379337519407, 0.007546756882220507, -0.016387632116675377, 0.017082370817661285, -0.007376478053629398, -0.002169352024793625, 5.020564276492223e-05, 0.0012038712156936526, 0.02423408068716526, 0.01051641907542944, -0.016823546960949898, 0.01051641907542944, 0.00848669558763504, -0.006157281808555126, 0.016401255503296852, 0.039150506258010864, -0.0378427617251873, 0.018894137814641, -0.0003084175114054233, 0.011640259996056557, 0.006620440166443586, -0.02228609099984169, 0.003732511540874839, 0.008500318042933941, 0.01918020471930504, -0.006484217010438442, -0.6159461140632629, 0.0003318308445159346, -0.022626647725701332, -0.015978964045643806, -0.014357909560203552, 0.0107479989528656, 0.01384707260876894, -0.0043318928219377995, -0.018471846356987953, 0.040975894778966904, -0.007240254897624254, 0.003301706165075302, -0.007805580738931894, 0.003027557395398617, -0.005561306141316891, -0.024996928870677948, 0.018935004249215126, -0.035908397287130356, 0.030159782618284225, 0.006334371864795685, -0.027040274813771248, 0.01386069506406784, -0.0074105337262153625, -0.008588863536715508, -0.0065557342022657394, 0.0063275606371462345, -0.01258700992912054, -0.04062171280384064, 0.034246474504470825, 0.022681137546896935, -0.0074105337262153625, -2.1883488443563692e-05, 0.0017913330812007189, 0.015202492475509644, 0.03593564033508301, -0.034709632396698, 0.0007624233840033412, 0.013370292261242867, 0.003732511540874839, 0.025105908513069153, -0.01980683207511902, -0.006034681107848883, 0.012205584906041622, 0.010495985858142376, 0.016932524740695953, 0.0009518585866317153, 0.019125716760754585, 0.0034379293210804462, -0.0037938118912279606, -0.03803347423672676, 0.013056979514658451, 0.03152201324701309, 0.02319878526031971, -0.03490034490823746, 0.019725097343325615, -0.009658214636147022, 0.0032778671011328697, 0.0026614577509462833, -0.018880514428019524, -0.04852265119552612, -0.004294431768357754, 0.0021710549481213093, -0.01442602090537548, 0.002693810733035207, -0.004498766269534826, 0.04637032747268677, -0.0107343764975667, 0.023689188063144684, 0.019820453599095345, -0.015570295043289661, 0.020487947389483452, 0.02640002779662609, -0.01933005079627037, -0.0006185377715155482, 0.017000636085867882, -0.0002909639151766896, 0.022899094969034195, -0.00960372481495142, -0.005322915501892567, 1.0509395451663295e-06, 0.011592581868171692, -0.010952332988381386, -0.0015401719138026237, -0.014861934818327427, 0.04340066388249397, 0.006777096539735794, -0.02725823223590851, -0.0046962895430624485, -0.0002756388275884092, 0.0031671859323978424, 0.011803727596998215, 0.025732534006237984, -0.01901673711836338, -0.024029746651649475, -0.03356536105275154, 0.03411025181412697, 0.012164718471467495, 0.009501557797193527, -0.0036609945818781853, -0.052064448595047, -0.012804966419935226, -0.036916445940732956, -0.006358210928738117, 0.006436538882553577, 0.014807445928454399, 0.003160374704748392, 0.013261313550174236, 0.0037154837045818567, 0.039368461817502975, -0.029287956655025482, -0.02319878526031971, -0.024942440912127495, -0.019384540617465973, -0.0042229145765304565, -0.01798144169151783, -0.013949240557849407, 0.008473074063658714, 0.0029424179811030626, 0.02640002779662609, -0.0034498488530516624, 0.0015205898089334369, 0.008908987045288086, -0.020855749025940895, -0.022613026201725006, 0.03089538775384426, 0.00012111080286558717, 0.01562478393316269, -0.015583916567265987, -0.02058330364525318, -0.005166259128600359, 0.020855749025940895, 0.0068758586421608925, 0.013363481499254704, -0.007574001792818308, 0.0011417194036766887, 0.011435925029218197, 0.005455733276903629, -0.007921370677649975, 0.00926997885107994, -0.005030035972595215, -0.037951741367578506, 0.017123237252235413, 0.014030974358320236, -0.04045824706554413, 0.008227872662246227, -0.01800868660211563, -0.013962863013148308, -0.02288547158241272, -0.01678268052637577, 0.006552328821271658, 0.0021965967025607824, -0.0037427283823490143, -0.03724338114261627, 0.044871874153614044, -0.0016678809188306332, -0.017177727073431015, -0.008861309848725796, -0.010618587024509907, 0.007580812554806471, -0.01359506044536829, 0.0006117266602814198, 0.036889202892780304, 0.013867506757378578, 0.008840875700116158, 0.004100313875824213, -0.028497861698269844, -0.01697339117527008, 0.01555667258799076, 0.004233131185173988, -0.03135854750871658, 0.0214415080845356, -0.0016678809188306332, 0.005220748484134674, 0.02319878526031971, -0.01612880825996399, 0.0153387151658535, -0.02769414521753788, -0.0067362296395003796, -0.021632220596075058, -0.015924474224448204, -0.002331116935238242, 0.0007705116295255721, -0.014480509795248508, -0.006341183092445135, 0.002254491439089179, 0.01728670485317707, 0.01439877599477768, -0.008541185408830643, -0.013002489693462849, -0.0024366897996515036, 0.011115800589323044, -0.010039638727903366, -0.021209929138422012, 0.0015146300429478288, 0.026890430599451065, 0.018185777589678764, 0.016864413395524025, 0.005500005558133125, 0.004665639251470566, 0.024029746651649475, 0.003572449553757906, 0.01089103240519762, -0.003507743589580059, -0.052255161106586456, -0.007444589864462614, -0.009583291597664356, 0.02156410925090313, -0.01678268052637577, 0.012028494849801064, -0.017627263441681862, -0.00592570286244154, -0.02593686804175377, -0.022149868309497833, -0.007117654196918011, 0.027013029903173447, 0.03737960383296013, -0.0026989192701876163, -0.009467502124607563, 0.014480509795248508, 0.00517988158389926, 0.02021550014615059, 0.019411785528063774, 0.005346754565834999, 0.04277403652667999, -0.004420437850058079, -0.011374624446034431, -0.005673690233379602, -0.000708359875716269, 0.0075944350101053715, -0.020406212657690048, -0.012294130399823189, -0.004379570949822664, -0.001393732032738626, 0.017218593508005142, 0.03827867656946182, 0.013526949100196362, 0.03822418674826622, -0.015161625109612942, 0.013036546297371387, -0.021768443286418915, -0.005912080407142639, 0.03906876966357231, 0.017899708822369576, -0.026958541944622993, 0.01625140942633152, 0.013683605007827282, 0.02901550941169262, 0.013887939974665642, -0.0158699844032526, 0.023498475551605225, 0.014289798215031624, -0.0153250927105546, 0.004512388724833727, 0.012798155657947063, 0.007955426350235939, -0.0003786575107369572, 0.026209315285086632, 0.014167197048664093, 0.0011340569471940398, 0.003538393648341298, 0.022109001874923706, -0.011939950287342072, 0.012300941161811352, 0.019874943420290947, 0.034437187016010284, -0.012287318706512451, -0.00417183106765151, -0.002160838106647134, -0.02524213120341301, -0.01185140572488308, -0.01769537478685379, -0.04220190271735191, -0.020760392770171165, 0.0013111468870192766, 0.04544400796294212, 0.012137473560869694, 0.02615482546389103, 0.023621076717972755, 0.0017019367078319192, -0.022122623398900032, -0.029369689524173737, -0.018376490101218224, 0.027530677616596222, -0.02185017801821232, 0.005190098192542791, 0.008663785643875599, 0.0013017815072089434, 0.01567927375435829, -0.012151096016168594, 0.020419836044311523, -0.03133130073547363, -0.003899384755641222, -0.00554087245836854, -0.01646936684846878, -0.013990106992423534, 0.006078953389078379, 0.04786878079175949, -0.04113936051726341, 0.010243973694741726, -0.004280809313058853, 0.009065643884241581, 0.017545528709888458, -0.02634553797543049, -0.003913007210940123, 0.039150506258010864, 0.024438414722681046, 0.020038411021232605, -0.0037904062774032354, -0.008663785643875599, 0.008779575116932392, 0.023348631337285042, -0.018022309988737106, 0.0011630043154582381, -0.03664400056004524, 0.030323250219225883, 0.018812403082847595, -0.011810538358986378, 0.014385154470801353, 0.015039024874567986, 0.021959155797958374, -0.0018441195134073496, -0.030759165063500404, 0.0040219854563474655, 0.00480186240747571, 0.03367433696985245, 0.02543284371495247, -0.006644279230386019, -0.00730836670845747, 0.003168888622894883, 0.003293192246928811, -0.01923469454050064, -0.0010931899305433035, 0.003129724645987153, -0.002550776582211256, -0.004427249077707529, 0.015161625109612942, -0.0016602184623479843, 0.013642738573253155, 0.024806218221783638, 0.003868734696879983, -0.010945522226393223, 0.0002266836672788486, 0.01221239659935236, 0.020324479788541794, -0.012791343964636326, 0.002322603017091751, 0.01709599234163761, 0.009276789613068104, -0.014480509795248508, 0.015365960076451302, 0.01867618039250374, -0.0002894739736802876, 0.0060006254352629185, -0.02680869586765766, -0.013022923842072487, 0.022490425035357475, 0.003902790369465947, 0.036262575536966324, 0.003885762533172965, 0.0057622347958385944, 0.002688702428713441, -0.0014737631427124143, 0.033456381410360336, 0.00084373151184991, 0.03084089793264866, -0.0035622327122837305, -0.002910064999014139, -0.003417495870962739, -0.005956352688372135, 0.008820442482829094, -0.024819839745759964, 0.004423843696713448, 0.0011791808065026999, -0.002554182196035981, 0.003065018681809306, -0.0019139338983222842, -0.031004365533590317, -0.027326343581080437, 0.015665650367736816, 0.004314864985644817, -0.02432943694293499, 0.00812570471316576, -0.009991960600018501, -0.019411785528063774, 0.023566586896777153, -0.012580198235809803, -0.0012421839637681842, -0.011606203392148018, 0.035281769931316376, -0.0024809623137116432, -0.008793197572231293, 0.012995678931474686, -0.018281133845448494, -0.01596534065902233, 0.024411169812083244, -0.0008820442599244416, -0.00730836670845747, -0.004512388724833727, 0.03154926002025604, 0.019670607522130013, -0.002547370968386531, -0.005227559711784124, -0.003461768152192235, 0.007587623782455921, 0.02012014389038086, -0.014153574593365192, -0.019275560975074768, 0.008078026585280895, 0.022803738713264465, 0.02420683577656746, 0.010114561766386032, -0.03530901297926903, -0.028470616787672043, 0.0214959979057312, -0.0099783381447196, 0.0008654420380480587, -0.01360868290066719, -0.02360745519399643, 0.02055605873465538, -0.014167197048664093, -0.00878638681024313, 0.014684844762086868, 0.0240433681756258, -0.031140590086579323, 0.010455119423568249, -0.014112708158791065, 0.011871838942170143, -0.02461550571024418, -0.026985786855220795, 0.019793208688497543, 0.006787313614040613, -0.0016576641937717795, -0.005619200877845287, -0.009208678267896175, 0.037488583475351334, -0.004461304750293493, 0.024411169812083244, 0.022013645619153976, 0.016769057139754295, 0.016333144158124924, 0.02291271649301052, 0.032012417912483215, 0.0074105337262153625, -0.028552351519465446, -0.0044510881416499615, -0.03236659616231918, 0.0026597550604492426, 0.02502417378127575, -0.013520137406885624, -0.000998685252852738, 0.00026669917860999703, -0.04067620262503624, -0.028116436675190926, -0.002232355298474431, 0.015829117968678474, -0.006426322273910046, -0.026509005576372147, 0.0025439653545618057, -0.004199075512588024, -0.02423408068716526, -0.03225761651992798, -0.010938710533082485, -0.04841367155313492, 0.015583916567265987, -0.004423843696713448, -0.009310845285654068, 0.008575241081416607, -0.0219727773219347, -0.0007615719805471599, -0.02825266122817993, -0.015761006623506546, -0.003752944990992546, 0.00811208225786686, 0.00730836670845747, 0.005806507542729378, 0.0014839798677712679, -0.019902188330888748, 0.0007722144364379346, -0.017300328239798546, 0.0013264719163998961, 0.02567804418504238, 0.026413649320602417, 0.03108610026538372, 0.031167833134531975, 0.013887939974665642, 0.007689791265875101, 0.028688574209809303, 0.003569043939933181, 0.026863185688853264, 0.03111334517598152, -0.007458211854100227, 0.014562243595719337, -0.022367823868989944, -0.0032097555231302977, 0.020161012187600136, 0.014153574593365192, -0.02408423461019993, -0.003752944990992546, 0.011143045499920845, 0.030731920152902603, -0.002331116935238242, 0.016305899247527122, -0.02772139012813568, -0.02716287598013878, -0.031195078045129776, 0.01129970233887434, 0.0029356067534536123, 0.026073092594742775, -0.02473810501396656, 0.0016023236094042659, 0.03846938908100128, 0.005384216085076332, 0.008902176283299923, -0.01340434793382883, -9.265561857318971e-06, 0.0004520902584772557, 0.008016726933419704, 0.025814268738031387, 0.014861934818327427, -0.03931397199630737, 0.003185916692018509, -0.04541676491498947, -0.0013979889918118715, -0.014003729447722435, -0.004045824520289898, 0.041629765182733536, -0.0019360700389370322, 0.00014665263006463647, -0.0079349922016263, -0.00031586718978360295, -0.02012014389038086, -0.015011779963970184, 0.031821705400943756, -0.015978964045643806, -0.013949240557849407, -0.008091649040579796, -0.011435925029218197, -0.02565080113708973, -0.00990341603755951, 0.0074854567646980286, 0.015365960076451302, 0.0035145545843988657, -0.02426132559776306, 0.00517988158389926, -0.010979577898979187, 0.003981118556112051, 0.022681137546896935, 0.0038721400778740644, 0.04615236818790436, -0.0014328962424769998, 0.021931910887360573, 0.0010259298142045736, -0.025623556226491928, 0.010536853224039078, 0.007260688580572605, 0.015256981365382671, 0.018648935481905937, 0.007131276652216911, -0.014780201017856598, -0.017831597477197647, -0.006344588473439217, -0.017640884965658188, -0.04307372868061066, 0.01863531395792961, 0.029396934434771538, -0.01176967192441225, -0.02153686434030533, 0.006443350110203028, -0.03639879822731018, 0.009937471710145473, 0.013738094829022884, -0.004359137732535601, -0.01211704034358263, 0.012757288292050362, -0.02942417934536934, 0.018117666244506836, 0.010713943280279636, 0.019275560975074768, 0.033047713339328766, 0.04010406509041786, -0.02716287598013878, 0.007390100508928299, -0.01593809761106968, 0.0037904062774032354, 0.00941301230341196, 0.012593820691108704, -0.010203106328845024, -0.0028181143570691347, 0.03530901297926903, 0.014344287104904652, -0.03002355992794037, -0.012539331801235676, -0.007648924365639687, 0.03247557580471039, -0.02394801191985607, -0.00015857214748393744, -0.010645831003785133, -0.026440894231200218, -0.005193503573536873, -0.002463934477418661, -0.011728804558515549, 0.00888174306601286, -0.013683605007827282, -0.008132516406476498, 0.037297870963811874, 0.02266751602292061, -0.01359506044536829, -0.031195078045129776, -0.0014788714470341802, 0.012076172977685928, 0.005707745905965567, -0.01255976501852274, 0.0020893209148198366, -0.015665650367736816, -0.014875557273626328, -0.02389352209866047, 0.02122355066239834, 0.0219727773219347, 0.0035009323619306087, -0.001408205833286047, 0.01238267496228218, 0.03500932455062866, -0.03105885535478592, 0.0045328219421207905, -0.0020535625517368317, 0.0014048002194613218, -0.03427371755242348, 0.004365948960185051, -0.0036099108401685953, -0.021114572882652283, 0.0029509318992495537, -0.024506526067852974, -0.021918289363384247, -0.022013645619153976, 0.007526323664933443, 0.02112819440662861, 0.0019054198637604713, 0.0048154848627746105, -0.021073706448078156, -0.003722294932231307, 0.002108051674440503, 0.005009602755308151, -0.013206824660301208, 0.02106008306145668, -0.02819817140698433, 0.02495606243610382, 0.023907145485281944, 0.010114561766386032, 0.004720128607004881, 0.005765640642493963, -0.007805580738931894, -0.010250784456729889, 0.0011102178832516074, 0.002576318336650729, -0.009249544702470303, -0.026168446987867355, -8.593758684583008e-05, -0.012375864200294018, -0.0337015837430954, -0.008350472897291183, -0.019466273486614227, 0.03378331661224365, -0.01156533695757389, -0.008554807864129543, -0.018594445660710335, -0.009358523413538933, -0.021509619429707527, -0.008064404129981995, -0.0153387151658535, -0.00629350496456027, 0.00843901839107275, 0.03560870513319969, 0.008827253244817257, -0.029505912214517593, -0.018035931512713432, 0.0531814768910408, 0.020910238847136497, -0.01304335705935955, -0.024874329566955566, -0.025923246517777443, -0.03272077813744545, -0.005346754565834999, -0.024601882323622704, 0.026604361832141876, 0.013254502788186073, 0.01625140942633152, -0.00960372481495142, 0.029969070106744766, -0.027176499366760254, 0.022585781291127205, -0.03438269719481468, -0.005295671056956053, -0.005411460530012846, 0.040403757244348526, -0.008534373715519905, 0.02803470380604267, -0.011585770174860954, -0.007587623782455921, 0.019697852432727814, -0.00019284075824543834, 0.002843656111508608, 0.010979577898979187, -0.012314563617110252, -0.012607443146407604, -0.01867618039250374, -0.04440871253609657, 0.01562478393316269, 0.028961019590497017, -0.0020518596284091473, -0.002528640441596508, 0.006518273148685694, -0.0051628537476062775, 0.007608057465404272, -0.037134405225515366, 0.012580198235809803, 0.011715182103216648, 0.004359137732535601, 0.0239888783544302, -0.007832825183868408, -0.017708996310830116, -0.006058520171791315, -0.016932524740695953, 0.014793823473155499, -0.012253263033926487, -0.005895052570849657, 0.011544903740286827, 0.004049230366945267, 0.01964336447417736, -0.03517279028892517, 0.018158532679080963, -0.053453925997018814, 0.007029109168797731, 0.01302973460406065, -0.005230965092778206, -0.00022647081641480327, 0.011272457428276539, 0.009392579086124897, 0.01646936684846878, 0.011238401755690575, -0.02411147952079773, -0.024533770978450775, -0.022749248892068863, -0.013990106992423534, -0.007144899107515812, -0.01822664402425289, -0.0007760456646792591, 0.04538952186703682, -0.0009756975923664868, 0.01788608729839325, -0.04212016612291336, -0.02825266122817993, -0.001684908871538937, 0.015706516802310944, -0.008445829153060913, 0.019970299676060677, -0.032012417912483215, 0.017777107656002045, -0.004093502648174763, -0.02983284741640091, -0.0016525558894500136, 0.19779586791992188, 0.01904398202896118, 0.01631952077150345, 0.010502797551453114, -0.020665036514401436, 0.016823546960949898, -0.00015463444287888706, 0.017967820167541504, -0.007008675951510668, 0.013288558460772038, -0.021931910887360573, 0.008609296754002571, -0.014984535053372383, 0.008588863536715508, 0.00730155548080802, -0.01246440876275301, 0.002434987109154463, -0.043264441192150116, -0.015039024874567986, 0.01097276620566845, -0.017491038888692856, 0.0036337499041110277, -0.03639879822731018, -0.018240265548229218, 0.024220459163188934, -0.005663473159074783, -0.002339630853384733, 0.022013645619153976, -0.0058814301155507565, -0.012641498818993568, -0.015256981365382671, -0.005510222166776657, 0.001461843610741198, 0.005581739358603954, -0.025310242548584938, 0.013281747698783875, 0.03808796405792236, 0.013091035187244415, 0.0020024788100272417, -0.0012685771798714995, 0.0018168749520555139, 0.014671222306787968, -0.005513628013432026, -0.013840261846780777, 0.010046449489891529, 0.004335298668593168, -0.013513326644897461, -0.0034839045256376266, -0.005336537957191467, 0.030105294659733772, -0.011020444333553314, -0.05269107595086098, 0.01675543561577797, -0.02514677494764328, -0.01554305013269186, -0.02420683577656746, -0.002387308981269598, -0.0029390123672783375, -0.015788251534104347, 0.010427874512970448, -0.00858205184340477, 0.014371532015502453, 0.02002478763461113, -0.009024777449667454, -0.025092285126447678, 0.027666902169585228, -0.017708996310830116, -0.01037338562309742, 0.005203720647841692, -0.016551099717617035, 0.017245838418602943, 0.0066102235578000546, -0.0153250927105546, 0.021550485864281654, -0.027271853759884834, -0.03966815397143364, 0.034437187016010284, 0.004689478315412998, 0.01678268052637577, 0.012600632384419441, -0.02259940467774868, -0.023675566539168358, 0.0029270928353071213, 0.000753483735024929, -0.03293873369693756, 0.0035486104898154736, 0.002813006052747369, -0.0074105337262153625, 0.004284214694052935, -0.012961623258888721, -0.03307495638728142, -0.004900624044239521, -0.0044510881416499615, 0.005094741936773062, 0.005111769773066044, 0.015461316332221031, 0.014262553304433823, 0.017777107656002045, 0.0038585178554058075, 0.0031501580961048603, -0.010026016272604465, 0.047133173793554306, 0.01634676568210125, 0.010053261183202267, 0.005946136079728603, 0.0039061959832906723, -0.019071226939558983, 0.008152949623763561, -0.00026542210252955556, -0.027244610711932182, -0.0019769370555877686, 0.012525709345936775, -0.0058541856706142426, -0.01144273579120636, 0.023144295439124107, -0.009569669142365456, -0.003250622423365712, -0.01098638866096735, -0.011347380466759205, 0.010012393817305565, 0.006065331399440765, -0.019779587164521217, -0.017736241221427917, 0.0023294142447412014, -0.017681751400232315, -0.03416474163532257, -0.045089829713106155, -0.00043804224696941674, -0.004679261706769466, -0.02240869216620922, 0.005506816785782576, -0.04454493895173073, 0.0012702799867838621, -0.003569043939933181, -0.018444601446390152, -0.009542424231767654, -0.008854498155415058, 0.004004957620054483, -0.01051641907542944, -0.0005082822754047811, -0.003589477390050888, -0.0054897889494895935, 0.004137774929404259, 0.005724773742258549, -0.002297061262652278, -0.006548922974616289, -0.004726939834654331, -0.006024464499205351, -0.004907435271888971, -0.024383926764130592, 0.0010736079420894384, 0.006974620278924704, 0.0260322242975235, -0.02445203810930252, 0.0035520161036401987, -0.04296474903821945, 0.003923223819583654, -0.03026876226067543, 0.01100001111626625, 0.0006794124492444098, -0.008479884825646877, -0.0007194280042313039, 0.018213022500276566, -0.016006208956241608, -0.03846938908100128, -0.009998772293329239, -0.1717500239610672, 0.013458837755024433, 0.013744905591011047, -0.03702542558312416, 0.03255730867385864, 0.008466262370347977, 0.02077401429414749, -0.01606069691479206, 0.021196305751800537, 0.007158521097153425, 0.007682980038225651, -0.04051273688673973, -0.027775879949331284, -0.032175883650779724, -0.006334371864795685, -0.014167197048664093, -0.004403410013765097, 0.008650164119899273, 0.033238425850868225, -0.0007883909274823964, 0.03024151735007763, -0.023743677884340286, 0.02392076700925827, 0.01584274135529995, -0.00599721958860755, -0.016551099717617035, -0.013881129212677479, -0.01452137716114521, 0.014807445928454399, -0.017640884965658188, -0.00025307689793407917, 0.036916445940732956, 0.021073706448078156, -0.014071840792894363, -0.0007415642030537128, -0.01554305013269186, -0.005510222166776657, -0.02577340044081211, 0.007049542851746082, -0.004682667553424835, -0.008908987045288086, 0.03825143352150917, -0.008949854411184788, -0.027639657258987427, -0.02221797965466976, -0.0010361465392634273, -0.004764401353895664, -0.035908397287130356, -0.00788731500506401, -0.02096472680568695, 0.008779575116932392, -0.01798144169151783, 0.023552965372800827, -0.0043046483770012856, 0.0034787962213158607, -0.00692353630438447, -0.019943054765462875, 0.0029730680398643017, 0.0058984579518437386, 0.0035452048759907484, 0.018689801916480064, -0.016891658306121826, 0.008152949623763561, 0.019820453599095345, -0.0028572785668075085, -0.020501568913459778, 0.003923223819583654, 0.013615493662655354, -0.026359159499406815, 0.03124956786632538, 0.01983407698571682, 0.0032574336510151625, 0.0009561155457049608, -0.004372759722173214, 0.031985171139240265, 0.030731920152902603, 0.001526549574919045, -0.0022170301526784897, -0.012709610164165497, -0.006228799000382423, -0.02112819440662861, 0.02879755198955536, -0.01634676568210125, 0.02065141499042511, -0.005782668478786945, -0.010475552640855312, 0.01302973460406065, 0.006531895138323307, -0.010318895801901817, -0.01911209337413311, 0.01719134859740734, -0.006892886478453875, 0.002400931203737855, -0.004829107318073511, 0.0019479895709082484, 0.03367433696985245, 0.011694748885929585, -0.026168446987867355, 0.0035826661624014378, -0.020665036514401436, 0.023021696135401726, -0.029287956655025482, -0.035254526883363724, 0.00813932716846466, 0.011292890645563602, 0.013070601969957352, -0.01918020471930504, 0.0015682678204029799, 0.043645866215229034, 0.021237174049019814, -0.024601882323622704, -0.007914558984339237, 0.016918903216719627, 0.04024028778076172, -0.033810559660196304, 0.0034123873338103294, 0.0021540268789976835, -0.012811778113245964, 0.003688239026814699, -0.005929108243435621, 0.03378331661224365, -0.002370281144976616, -0.006399077828973532, 0.002215327462181449, 0.0010395521530881524, -0.0019394756527617574, -0.09900691360235214, -0.03149477019906044, 0.022626647725701332, 0.02024274505674839, 0.008289172314107418, 0.010407441295683384, -0.000296285143122077, 0.0010710536735132337, 0.0005853334441781044, 0.028961019590497017, 0.0043693543411791325, -0.03171272575855255, -0.007056354079395533, 0.009910226799547672, -0.0074922675266861916, 0.006886075250804424, -0.03359260410070419, -0.008064404129981995, -0.022681137546896935, 0.031222322955727577, 0.01839011162519455, -0.015107136219739914, -0.010134994983673096, -0.009930660016834736, -0.00555449491366744, -0.002889631548896432, -0.036099109798669815, 0.016047075390815735, -0.004869974218308926, 0.0016270140185952187, 0.002104646060615778, -0.010897844098508358, -0.005775857251137495, 0.0056907180696725845, 0.0009450474171899259, 0.02593686804175377, -0.01832200028002262, -0.03291149064898491, 0.02860684134066105, -0.013778961263597012, 0.006681740749627352, -0.006896291859447956, -0.030595697462558746, -0.00982168223708868, 0.03560870513319969, -0.009058833122253418, -0.016728190705180168, 0.02966937981545925, 0.006436538882553577, -0.0107207540422678, -0.026454515755176544, 0.016932524740695953, -0.03601737320423126, -0.032393842935562134, 0.021196305751800537, -0.018499089404940605, -0.009719514288008213, -0.006021058652549982, -0.017995065078139305, 0.01015542820096016, 0.00023243058240041137, -0.009433446452021599, -0.0012353727361187339, 0.01860806904733181, 0.021196305751800537, 0.017041504383087158, -0.01935729570686817, 0.0012234533205628395, 0.012246452271938324, -0.016428500413894653, 0.00480186240747571, 0.02646813914179802, 0.012416730634868145, 0.046915218234062195, -0.012893511913716793, 0.0348186120390892, 0.00693034753203392, 0.0033987651113420725, 0.019629741087555885, 0.011435925029218197, -0.0038278677966445684, -0.0016576641937717795, -0.0260594692081213, -0.01798144169151783, -0.005401243921369314, 0.019602496176958084, 0.011701559647917747, 0.004566877614706755, 0.007642113137990236, -0.035254526883363724, 0.01663283444941044, 0.020733147859573364, -0.003936846274882555, -8.285128569696099e-05, -0.011524469591677189, 0.009528802707791328, -0.012014873325824738, -0.021795688197016716, -0.002933903830125928, 0.010039638727903366, -0.048113979399204254, -0.01980683207511902, -0.03705266863107681, 0.01750466227531433, 0.0066749295219779015, -0.01439877599477768, -0.007042731624096632, -0.006821369286626577, -0.0057554240338504314, -0.008098460733890533, 0.0042876205407083035, 0.010107750073075294, -0.005888241343200207, 0.0074105337262153625, 0.0018407140159979463, 0.005377404857426882, -0.0006393969524651766, -0.010448307730257511, 0.0035622327122837305, -0.017545528709888458, 0.040403757244348526, 0.022626647725701332, 0.012518898583948612, -0.003293192246928811, 0.007417344953864813, 0.018948625773191452, -0.0040594469755887985, -0.013887939974665642, -0.050565995275974274, 0.0015393204521387815, 0.004403410013765097, -0.03233935311436653, 0.025623556226491928, -0.00564985116943717, -0.01460311096161604, 0.011143045499920845, 0.017940575256943703, 0.013104657642543316, -0.006034681107848883, 0.007614868693053722, 0.018499089404940605, -0.005786073859781027, -0.021141817793250084, 0.003821056568995118, 0.042038433253765106, 0.010659453459084034, 0.01213066279888153, -0.021604975685477257, -0.015393204987049103, 0.0013315803371369839, -0.015297848731279373, 0.014671222306787968, 0.016401255503296852, 0.0153250927105546, -0.02319878526031971, -0.004985763691365719, 0.023866279050707817, -0.02945142425596714, -0.005724773742258549, -0.030977120622992516, 0.0013715957757085562, 0.00544551620259881, 0.022054512053728104, 0.006954186595976353, 0.021359773352742195, 0.014221686869859695, 0.010039638727903366, -0.0317399688065052, -0.023784544318914413, -0.0026989192701876163, 0.018117666244506836, -0.0024877735413610935, -0.025609932839870453, -0.012546142563223839, 0.012675554491579533, 0.03490034490823746, 0.03187619522213936, 0.0326390415430069, -0.019575253129005432, 0.002482665004208684, -0.008159760385751724, 0.022544914856553078, 0.044299736618995667, 0.030813653022050858, -0.01618329808115959, 0.009801248088479042, 0.03868734464049339, 0.005878024734556675, 0.014575866051018238, -0.02253129333257675, 0.005339943338185549, -0.01798144169151783, 0.01898949407041073, -0.005731584969907999, -0.023362252861261368, -0.020011166110634804, -0.006225393153727055, 0.025718912482261658, 0.011640259996056557, 0.013254502788186073, 0.00812570471316576, 0.014439643360674381, -0.008146137930452824, 0.0031893220730125904, -0.020392591133713722, 0.009787626564502716, -0.026222936809062958, 0.012239640578627586, 0.024492904543876648, -0.018349245190620422, -0.015597539022564888, 0.03454616665840149, -0.009263167157769203, 0.021645842120051384, 0.006038086488842964, 0.014235308393836021, -0.00842539593577385, -0.0021233768202364445, 0.003943657502532005, -0.03724338114261627, -0.018689801916480064, 0.002486070618033409, -0.002004181733354926, 0.028089193627238274, 0.035663194954395294, -0.018403733149170876, 0.015856362879276276, 0.01832200028002262, 0.014970913529396057, -0.017041504383087158, -0.01175604946911335, -0.007240254897624254, -0.028961019590497017, -0.0030258544720709324, -0.018376490101218224, -0.0016261626733466983, -0.00969908107072115, -0.01656472310423851, 0.01882602460682392, -0.028552351519465446, 0.003943657502532005, 0.08266014605760574, 0.006811152677983046, 0.0022749248892068863, -0.001458437996916473, -0.029941827058792114, 0.02445203810930252, 0.01964336447417736, -0.00555449491366744, 0.00536718824878335, 0.0024758540093898773, -0.029587646946310997, 0.0007756199920549989, -0.014439643360674381, -0.019697852432727814, -0.006862236186861992, -0.00935171265155077, -0.01798144169151783, 0.026522627100348473, -0.029614891856908798, 0.01574738509953022, 0.035254526883363724, 0.02209537848830223, -0.008227872662246227, -0.024125102907419205, -0.011599392630159855, 0.019316429272294044, 0.01694614812731743, -0.0087046530097723, -0.005932513624429703, -0.03844214603304863, -0.005639634095132351, -0.015733761712908745, -0.02012014389038086, -0.007042731624096632, 0.0034839045256376266, 0.003807434346526861, -0.005557900294661522, -0.012709610164165497, 0.02901550941169262, -0.013547382317483425, -0.015761006623506546, 0.0072674998082220554, -0.02228609099984169, -0.01918020471930504, -0.02517401985824108, 0.02697216346859932, -0.00720619922503829, 0.0119944391772151, -0.046070635318756104], "63f94e80-9f22-4700-ae0d-393029b21a47": [0.0020071477629244328, 0.017305633053183556, -0.010552052408456802, -0.03384094312787056, -0.020572850480675697, 0.010180174373090267, 0.007796167396008968, -0.02502211183309555, -0.003742027562111616, -0.00024798818049021065, 0.00642486521974206, 0.01632281020283699, -0.005176416132599115, 0.020984573289752007, -0.014822014607489109, -0.012265350669622421, 0.03689566254615784, 0.030069034546613693, 0.018713457509875298, 0.018620489165186882, -0.006043025758117437, 0.02476976439356804, 0.003479720326140523, -0.027040880173444748, -0.002294357633218169, 0.016628282144665718, -0.002855495782569051, -0.01710641197860241, 0.010870805941522121, 0.0016933754086494446, -0.020426755771040916, 0.0027426041197031736, -0.017199380323290825, -0.0020901565439999104, -0.038462862372398376, -0.007039128802716732, 0.016495468094944954, -0.020400192588567734, -0.005817242432385683, 0.0037353867664933205, 0.017637666314840317, 0.008646175265312195, 0.0076434314250946045, 0.005803961306810379, -0.017544696107506752, 0.021396296098828316, 0.019204869866371155, -0.026164310052990913, -0.024371324107050896, 0.016761096194386482, 0.022033801302313805, 0.033814381808042526, -0.011016900651156902, -0.024623669683933258, 0.004548870958387852, -0.0048543429002165794, -0.0034133135341107845, 0.04037538170814514, 0.009848140180110931, -0.024490855634212494, 0.007337959948927164, -0.007437570486217737, -0.021688485518097878, -0.012564181350171566, -0.006209042854607105, -0.0046351999044418335, 0.01117627788335085, 0.011402061209082603, -0.009642278775572777, 0.01725250668823719, 0.021369732916355133, 0.023335376754403114, -0.005790679715573788, -0.010186814703047276, 0.02105098031461239, 0.00890516210347414, -0.006451427936553955, -0.009157508611679077, -0.008798911236226559, 0.0021266802214086056, 0.011687610298395157, -0.012816526927053928, -0.021130667999386787, 0.028979960829019547, 0.0051332516595721245, -0.028714334592223167, -0.007437570486217737, 0.011448545381426811, 0.002262814436107874, 0.010054001584649086, 0.03216749057173729, 0.001599575625732541, 0.025779150426387787, 0.02216661535203457, 0.013839193619787693, 0.009967672638595104, -0.024344760924577713, 0.027492446824908257, 0.001363001181744039, -0.030679976567626, -0.014516543596982956, 0.009542668238282204, -0.012577462941408157, -0.013513799756765366, 0.0005188037175685167, -0.006826627068221569, 0.00617251917719841, -0.003941248171031475, -0.0004752242239192128, -0.009828218258917332, -0.016973597928881645, 0.03931287303566933, -0.018421268090605736, -0.03012215904891491, 0.013839193619787693, 0.02059941366314888, 0.01628296636044979, -0.006946159526705742, 0.002022089436650276, 0.009243837557733059, 0.01478217076510191, 0.011289169080555439, 0.0021731650922447443, -0.007550462149083614, 0.03376125544309616, -0.032220616936683655, -0.029697155579924583, -0.003129424061626196, -0.01625640317797661, -0.028661208227276802, 0.023959601297974586, 0.009243837557733059, -0.005335792433470488, 0.018434548750519753, -0.008938365615904331, 0.0014601212460547686, -0.00834734458476305, 0.030998731032013893, -0.04528949037194252, -0.013321219943463802, 0.02026737853884697, 0.00010464271326782182, 0.012703635729849339, 0.030945604667067528, 0.0015713527100160718, 0.025593210011720657, 0.0020337107125669718, 0.021396296098828316, 0.003082939190790057, -0.012497774325311184, -0.002667896216735244, 0.020254097878932953, -0.0010317969135940075, -0.012975904159247875, 0.004827780183404684, 0.03402688354253769, -0.007968825288116932, 0.012796605005860329, 0.030175285413861275, -0.017504852265119553, 0.02948465384542942, 0.03870192915201187, -0.0010301367146894336, -0.01599077694118023, 0.00436957273632288, 0.01781032420694828, 0.035115957260131836, -0.0014667619252577424, -0.0062322854064404964, 0.02067910134792328, -0.018341580405831337, -0.01136221643537283, -0.02063925750553608, -0.008380548097193241, -0.002463695127516985, 0.006215683650225401, 0.01628296636044979, -0.028050264343619347, -0.017823606729507446, -0.021967394277453423, -0.002025409834459424, -0.005156494211405516, -0.0008288408280350268, 0.0447051115334034, -0.03041435033082962, -0.0028604762628674507, 0.02123691886663437, 0.0032721988391131163, 0.03078622929751873, 0.01565874181687832, 0.013467314653098583, 0.031078418716788292, 0.01273683924227953, 0.021316608414053917, -0.6098807454109192, -0.0003899328876286745, -0.021701768040657043, -0.02911277487874031, 0.00029364292277023196, -7.367013313341886e-05, 0.006341856904327869, 0.010538771748542786, -0.031583111733198166, 0.05625990778207779, -0.029829969629645348, 0.03097216784954071, 0.005017039366066456, 0.010757913812994957, 0.019536903128027916, -0.02799713984131813, 0.022140052169561386, -0.015738429501652718, -0.013241531327366829, 0.018726740032434464, 0.0004768843937199563, 0.012637228704988956, 0.007331319153308868, 0.030812790617346764, 0.006477991119027138, 0.016827503219246864, -0.012564181350171566, -0.004608637187629938, -0.005438723135739565, 0.020732227712869644, -0.019576746970415115, 0.0002816066553350538, 0.039472248405218124, -0.0030198527965694666, 0.03245967999100685, -0.023361939936876297, -0.02305646799504757, 0.03134404495358467, 0.0027509049978107214, 0.06757564097642899, -0.007065691985189915, -0.0011978140100836754, 0.017982982099056244, -0.012929419055581093, 0.016163434833288193, -0.03150342404842377, -0.015353269875049591, 0.027200257405638695, 0.0029833288863301277, -0.03227374330163002, 0.0011247665388509631, 0.0076633538119494915, -0.0029800087213516235, -0.011946597136557102, 0.03198155388236046, -0.008114919997751713, -0.005993220489472151, 0.0073645226657390594, -0.0029102812986820936, -0.019284557551145554, 0.0023624247405678034, 0.01286301203072071, 0.015313426032662392, 0.001289953594096005, -0.012776683084666729, 0.02190098725259304, -0.025978369638323784, 0.0059865801595151424, -0.012039566412568092, -0.02636353112757206, -0.012378241866827011, 0.02353459782898426, -0.037612855434417725, -0.012152458541095257, 0.01807595230638981, 0.033814381808042526, 0.011667688377201557, -0.019576746970415115, 0.025672899559140205, -0.007596946787089109, -0.006381700746715069, 0.007377804256975651, -0.029644029214978218, -0.01832829788327217, 0.03955193608999252, -0.010312988422811031, 0.0038316769059747458, 0.02171504870057106, -0.0020038275979459286, 0.0014775530435144901, 0.008486798964440823, 0.004030897282063961, -0.016336092725396156, -0.028953397646546364, -0.02097129262983799, 0.0223525557667017, -0.00210509798489511, -0.014489980414509773, -0.01137549802660942, -0.024079132825136185, -0.035859715193510056, -0.019975189119577408, 0.001323987147770822, 0.007231709081679583, 0.004103945102542639, -0.00709225470200181, 0.009635637514293194, 0.018434548750519753, 0.051930177956819534, -0.01747829094529152, 0.0009429776691831648, -0.027572136372327805, -0.02882058545947075, 0.02607133984565735, -0.001333948108367622, -0.03551439940929413, 0.02384006977081299, 0.01275676116347313, 0.019961906597018242, -0.0005619681905955076, -0.022485367953777313, -0.011156355030834675, 0.019988469779491425, 0.004465862642973661, 0.014968110248446465, 0.006225644610822201, -0.0009562590275891125, 0.018354861065745354, -0.035673774778842926, -0.006873111706227064, 0.0037221054080873728, 0.032140929251909256, -0.0015323386760428548, -0.00989462435245514, -0.012185662053525448, -0.003476399928331375, 0.011574719101190567, -0.020254097878932953, -0.009250477887690067, -0.004870944656431675, -0.011488390155136585, 0.00280735082924366, 0.022551774978637695, -0.001091563026420772, -0.008798911236226559, -0.03814411163330078, 0.013460674323141575, -0.005724272690713406, -0.009974312968552113, -0.0021698446944355965, 0.00782937090843916, -0.008353984914720058, -0.024743203073740005, 0.026801815256476402, -0.007238349411636591, -0.0065311165526509285, -0.008068435825407505, -0.015339988283813, 0.0046551222912967205, -0.012969262897968292, -0.005239502526819706, 0.028103390708565712, -0.03737379238009453, -0.009808295406401157, -0.010146970860660076, -0.030069034546613693, -0.04157070443034172, 0.01658843830227852, -0.034823767840862274, -0.03373469412326813, -0.00894500594586134, 0.03806442394852638, 0.013307938352227211, 0.0013057251926511526, 0.001949041849002242, 0.03647065535187721, -0.014994672499597073, -0.03620503097772598, -0.018607206642627716, -0.005770757794380188, -0.004784615710377693, -0.007085613906383514, 0.004074061755090952, -0.022392399609088898, 0.0011770619312301278, -0.007251631002873182, 0.012477852404117584, -0.0029102812986820936, -0.03498314321041107, 0.002234591403976083, 0.0268416590988636, -0.0070988950319588184, -0.02055956982076168, -0.0048543429002165794, -0.002687818370759487, 0.006730337161570787, -0.016043901443481445, 0.009310244582593441, 0.002526781754568219, 0.03748004138469696, 0.01929783821105957, -0.005784038919955492, 0.02008143998682499, -0.022857246920466423, 0.028900273144245148, -0.025128362700343132, 0.004578754305839539, -0.01729235053062439, 0.024304917082190514, -0.015791555866599083, 0.004346330184489489, -0.01329465676099062, -0.03514251857995987, -0.028023703023791313, 0.026257280260324478, -0.010253221727907658, -0.006076229270547628, 0.02291037328541279, 0.0025218012742698193, 0.022857246920466423, 0.003285480197519064, 0.02535414509475231, 0.013945444487035275, -0.0042467196471989155, -0.003868200583383441, 0.00021582235058303922, 0.03219405561685562, -0.007590305991470814, 0.010545412078499794, -0.02607133984565735, -0.015432958491146564, -0.005618021823465824, -0.0009853120427578688, -0.0006146786618046463, 0.03474407643079758, 0.032964374870061874, 0.02863464504480362, 0.0050568836741149426, 0.03097216784954071, 0.008964928798377514, 0.009077819995582104, 0.013321219943463802, 0.02216661535203457, -0.05679116025567055, 0.00709225470200181, 0.0032107725273817778, 0.020944729447364807, 0.0044791437685489655, -0.013334500603377819, 0.030919041484594345, 0.01188019011169672, 0.006567640230059624, -0.014569669030606747, 0.015818119049072266, -0.015286862850189209, -0.005989900324493647, 0.007450851611793041, -0.011993082240223885, 0.004880905617028475, 0.030440913513302803, 0.005654545500874519, 0.007603587582707405, -1.7522595953778364e-05, 0.003864880185574293, 0.01881970837712288, 0.0023557839449495077, -0.018195483833551407, 0.012046207673847675, -0.009549308568239212, -0.02818307839334011, -0.03676284849643707, -0.037055037915706635, -0.019350964576005936, 0.0033352854661643505, 0.031104981899261475, -0.01844783127307892, 0.013865755870938301, 0.019165024161338806, 0.015818119049072266, -0.005418801214545965, -0.023786943405866623, -0.019922062754631042, 0.003351887222379446, 0.021993957459926605, 0.0014111461350694299, -0.019988469779491425, -0.03267218545079231, -0.0204533189535141, 0.0018909358186647296, 0.024929141625761986, -0.03418625891208649, -0.0018129077507182956, 0.020293941721320152, 0.005385597702115774, 0.006272129714488983, 0.01729235053062439, 0.01919158734381199, -0.0059102121740579605, -0.02609790302813053, 0.02223302237689495, 0.007570384070277214, 0.002772487234324217, -0.011236043646931648, -0.02603149600327015, 0.03251280635595322, 0.006036384962499142, 0.01962987333536148, -0.02658931352198124, -0.004827780183404684, -0.01468920148909092, 0.023813506588339806, -0.020440036430954933, -0.03272530809044838, 0.006750259082764387, 0.0063551380299031734, -0.00927704107016325, 0.02985653281211853, -0.0013746223412454128, 0.0166548453271389, 0.019311120733618736, -0.009203992784023285, -0.011388779617846012, -0.022631464526057243, -0.005259424913674593, 0.017611103132367134, 0.013945444487035275, -0.0032140929251909256, 0.008214530535042286, -0.042845718562603, -0.010459083132445812, 0.02216661535203457, -0.041889458894729614, 0.03309718891978264, -0.004940671846270561, -0.020572850480675697, 0.013945444487035275, 0.0033834304194897413, 0.017797043547034264, -0.0007736401166766882, 0.02599165216088295, -0.004276602994650602, -0.0074442108161747456, 0.020108003169298172, -0.025526802986860275, 0.008154764771461487, -0.013301297090947628, 0.016415780410170555, 0.0012285272823646665, -0.007470773532986641, -0.032114364206790924, 0.007158661261200905, -0.015393114648759365, 0.012803246267139912, -0.02059941366314888, -0.013507158495485783, 0.020944729447364807, 0.024623669683933258, 0.0008857017382979393, 0.0025533444713801146, 0.02993622049689293, 0.013693097978830338, 0.037108164280653, 0.0022030482068657875, -0.03506283089518547, 0.024756483733654022, 0.02067910134792328, -0.010797758586704731, 0.015446240082383156, -0.005674467887729406, 0.001528188236989081, 0.03394719585776329, -0.006826627068221569, -0.006451427936553955, -0.030095597729086876, -0.01781032420694828, -0.004851022269576788, -0.05179736390709877, -0.014529825188219547, -0.0015779933892190456, 0.022777559235692024, -0.016947034746408463, -0.028794022276997566, -0.017531415447592735, 0.0003930457169190049, -0.031662799417972565, -0.029458090662956238, 0.02469007670879364, 0.0014908344019204378, 0.0011031843023374677, -0.01029970683157444, 0.004173672292381525, 0.017265787348151207, -0.012816526927053928, 0.0007126288255676627, 0.033336251974105835, 0.018394704908132553, -0.021967394277453423, 0.00012606930977199227, 0.02101113647222519, 0.004240079317241907, -0.029165901243686676, -0.001059189671650529, -0.000901473336853087, 0.041703518480062485, -0.02055956982076168, -0.021834582090377808, -0.00470492709428072, 0.0028305931482464075, 0.01117627788335085, 0.027120567858219147, 0.006893034093081951, 0.0334690660238266, -0.010180174373090267, 0.03803785890340805, 0.007590305991470814, 0.020200971513986588, 0.008446955122053623, -0.021356452256441116, -0.002224630443379283, 0.008553205989301205, -0.026204153895378113, -0.009243837557733059, -0.0003949133970309049, -0.023919757455587387, -0.009124305099248886, -0.008506720885634422, 0.0014327283715829253, -0.016336092725396156, -0.0017730636755004525, 0.018979085609316826, -0.013022388331592083, 0.021648641675710678, -0.007225068286061287, 0.02212677150964737, 0.013772786594927311, -0.02483617141842842, 0.018500955775380135, 0.027412759140133858, -0.00234748306684196, 0.009376650676131248, -0.01710641197860241, 0.03022840991616249, -0.026602594181895256, -0.01747829094529152, -0.010034078732132912, -0.02919246256351471, 0.0024022688157856464, 0.016947034746408463, -0.010047360323369503, 0.04959265515208244, 0.011461826972663403, -0.002118379343301058, -0.005618021823465824, -0.011435264721512794, 0.00615259725600481, -0.019908782094717026, 0.0014252576511353254, -0.024291636422276497, -0.012351679615676403, 0.007523899432271719, -0.018899397924542427, 0.002068574307486415, -0.00171993812546134, -0.003941248171031475, 0.00983485858887434, 0.010206736624240875, 0.0005084276781417429, -0.013394267298281193, 0.015419676899909973, -0.026947909966111183, -0.022472087293863297, 0.00010189305612584576, -0.013015748001635075, 0.016535311937332153, 0.02063925750553608, -0.004598676227033138, -0.020426755771040916, -0.0037254258058965206, -0.0007524729007855058, 0.012066129595041275, -0.006610804703086615, -0.014304041862487793, 0.022857246920466423, -0.002963406965136528, 0.029351839795708656, -0.008593049831688404, 0.042898841202259064, 0.013639972545206547, 0.0054453639313578606, 0.01737203821539879, -0.008586409501731396, 0.010332910344004631, -0.022219741716980934, 0.0032937810756266117, 0.0010376074351370335, -0.011541515588760376, 0.02591196447610855, -0.018474392592906952, -0.014118102379143238, 0.01733219437301159, 0.0028339135460555553, 0.0315299853682518, -0.029776843264698982, -0.03918005898594856, 0.01919158734381199, 0.012072769924998283, 0.005598099902272224, 0.01318176556378603, -0.02279083989560604, -0.0004557172069326043, 0.013560283929109573, -0.004688325338065624, 0.002656275173649192, 0.008958287537097931, 0.01117627788335085, -0.013002466410398483, 0.013400907628238201, -0.002651294693350792, 0.026974473148584366, -0.012909497134387493, 0.013473954983055592, -0.04507698863744736, 0.021728331223130226, 0.0030547163914889097, -0.009283681400120258, 0.02051972597837448, -0.023773662745952606, -0.0011787221301347017, -0.013009107671678066, 0.0019257994135841727, 0.003091240068897605, -0.02368069253861904, 0.006723696365952492, -0.01284973043948412, -0.014622794464230537, -0.030069034546613693, -0.024530701339244843, -0.020718945190310478, 0.025858838111162186, 0.005807281471788883, 0.02219317853450775, -0.003629135899245739, 0.013653254136443138, -0.020426755771040916, 0.020984573289752007, -0.011939956806600094, 0.027837762609124184, -0.002468675607815385, 0.046166062355041504, 0.01621655933558941, 0.0028787381015717983, 0.004711567889899015, 0.030254973098635674, -0.01468920148909092, 0.026190873235464096, 0.03578002378344536, 0.005352394189685583, -0.014981391839683056, 0.008573127910494804, -0.013082155026495457, 0.011561437509953976, -0.029059650376439095, -0.023322096094489098, 0.013865755870938301, 0.011793861165642738, 0.0076766349375247955, -0.015751712024211884, 0.0038482786621898413, -0.04231446236371994, -0.010890727862715721, -0.0015124166384339333, 0.0022030482068657875, -0.013972006738185883, 0.005418801214545965, -0.04629887640476227, 0.04130507633090019, 0.02498226799070835, 0.052859872579574585, -0.004226797726005316, 0.003406672738492489, -0.001995526719838381, -0.0016261384589597583, -0.030281536281108856, -0.00382503611035645, -0.016375936567783356, 0.00879227090626955, -0.02097129262983799, 0.003828356508165598, 0.01225206907838583, 0.005236182361841202, -0.023933038115501404, -0.024557262659072876, -0.004226797726005316, 0.0316096730530262, -0.016986878588795662, -0.046537939459085464, -0.0033452464267611504, 0.017650948837399483, -0.009057898074388504, 0.02123691886663437, -0.017119692638516426, -0.00035403165384195745, 0.007537180557847023, -0.010193455964326859, 0.004445940256118774, 0.001175401732325554, 0.009914547204971313, -0.013427470810711384, -0.0042799231596291065, -0.011534874327480793, -0.004409416578710079, 0.005654545500874519, 0.0031045214273035526, -0.02613774687051773, -0.03729410097002983, -0.031742487102746964, 0.005803961306810379, 0.019975189119577408, -0.018580643460154533, -0.006727016530930996, 0.010366113856434822, 0.027465883642435074, -0.029139338061213493, -0.010040719993412495, -0.013732941821217537, 0.0049771955236792564, -0.006853189785033464, 0.0056113810278475285, 0.020586131140589714, 0.0005661186296492815, 0.04972546920180321, -0.0056445845402777195, -0.025553366169333458, -0.011866909451782703, 0.0158446803689003, 0.029059650376439095, -0.02409241534769535, 0.004688325338065624, -0.01739860139787197, 0.018979085609316826, 0.008931725285947323, -0.015512646175920963, -0.011833705939352512, 0.01095049362629652, -0.00832742266356945, 0.004648481495678425, 0.01777048036456108, -0.016269685700535774, 0.006013142876327038, 0.0003160552296321839, 0.0035726900678128004, 0.02495570480823517, -0.030919041484594345, 0.008234452456235886, -0.023813506588339806, 0.014290760271251202, 0.0015788235468789935, 0.014582950621843338, -0.029590904712677002, -0.019802531227469444, -0.02152911014854908, 0.01599077694118023, -0.032884687185287476, -0.0024769764859229326, -0.0018826349405571818, 0.021183794364333153, 0.01650875061750412, 0.007596946787089109, -0.02826276794075966, -0.005408840253949165, 0.003172588534653187, -0.01022665947675705, -0.023481471464037895, -0.030095597729086876, -0.010757913812994957, 0.04034882038831711, 0.04247383773326874, -0.007836011238396168, -0.015977494418621063, -0.008261015638709068, -0.03179561346769333, -0.0046351999044418335, 0.0033850905019789934, 0.0024952383246272802, 0.022777559235692024, 0.012099333107471466, -0.010525490157306194, 0.00940985418856144, 0.007331319153308868, 0.032034676522016525, -0.02260490134358406, 0.010864165611565113, 0.0005901911063119769, 0.05163798853754997, 0.006036384962499142, 0.011534874327480793, 0.009250477887690067, 0.017385320737957954, -0.001912518055178225, -0.014237634837627411, 0.019390808418393135, 0.021037699654698372, 0.010306347161531448, -0.017876731231808662, -0.021688485518097878, 0.00885203666985035, 0.015339988283813, 0.040959760546684265, 0.00397777184844017, -0.02078535221517086, -0.02301662415266037, 0.005913532339036465, 0.010459083132445812, -0.026004932820796967, 0.005339113064110279, 0.004658442456275225, -0.024344760924577713, 0.006338536273688078, 0.002862136345356703, -0.017929857596755028, 0.005720952525734901, -0.018899397924542427, 0.032964374870061874, 0.009356728754937649, 0.020838478580117226, 0.03471751511096954, 0.0018660333007574081, 0.005498489364981651, -0.016203278675675392, 0.024557262659072876, -0.026018215343356133, 0.013892319053411484, -0.011873549781739712, -0.0035726900678128004, 0.0005827203276567161, -0.026416655629873276, 0.05102704465389252, -0.011242683976888657, 0.00018635430024005473, 0.009210634045302868, -0.009416495449841022, -0.03237999230623245, 0.00540219945833087, 0.012424726970493793, -0.007437570486217737, 0.03450501337647438, -0.032140929251909256, 0.0029617466498166323, -0.01327473483979702, -0.024822890758514404, -0.0028206321876496077, 0.015339988283813, -0.0013165163109079003, -0.019736124202609062, -0.005757476203143597, -0.007636791095137596, 0.0025168205611407757, 0.021183794364333153, -0.02799713984131813, -0.005827203392982483, 0.18572676181793213, 0.009489542804658413, -0.01385247427970171, 0.0037320666015148163, -0.018487675115466118, -0.015486083924770355, 0.009974312968552113, -0.013473954983055592, 0.0057541560381650925, 0.026854941621422768, -0.01810251548886299, -0.0018245289102196693, -0.01624312251806259, 0.016189996153116226, 0.0013098756317049265, -0.03251280635595322, 0.018832990899682045, -0.018872834742069244, -0.003629135899245739, 0.010777836665511131, 0.0026446538977324963, -0.02386663109064102, -0.045980121940374374, -0.002071894472464919, 0.0315299853682518, -0.013241531327366829, -0.005063524469733238, 0.0056113810278475285, 0.017225943505764008, 0.01735875755548477, -0.01881970837712288, 0.0008429522858932614, -0.002151582855731249, -0.01278996467590332, -0.05115985870361328, -0.0036822613328695297, 0.011076667346060276, 0.00616255821660161, 0.02900652401149273, -0.023959601297974586, 0.009237196296453476, 0.005249463487416506, -0.008028591051697731, -0.014463418163359165, 0.0296705923974514, 0.013062233105301857, -0.0029949501622468233, 0.0044990661554038525, 2.4059522729658056e-06, 0.04056132212281227, -0.015140768140554428, -0.04892858862876892, 0.03150342404842377, -0.008526642806828022, -0.005960017442703247, -0.014091539196670055, 0.014078257605433464, 0.00664732838049531, 0.01280988659709692, -0.0068664709106087685, -0.006165878381580114, 0.03899411857128143, -0.005817242432385683, 0.002642993815243244, -0.012677072547376156, 0.003964490722864866, -0.030201848596334457, 0.006766860838979483, -0.0157251488417387, -0.0018975764978677034, -0.0071985055692493916, 0.0025168205611407757, -0.02584555745124817, 0.0033817703370004892, -0.01985565572977066, -0.023707255721092224, 0.038808178156614304, 0.014489980414509773, 0.02291037328541279, 0.020240815356373787, -0.029139338061213493, -0.010034078732132912, 0.005388918332755566, -0.0143704479560256, -0.013626690953969955, -0.0040342179127037525, 0.030281536281108856, 0.008765707723796368, 0.0062654889188706875, -0.01188019011169672, -0.02330881357192993, -0.006577601190656424, 0.0020469920709729195, 0.023003341630101204, -0.022432243451476097, -0.003157647093757987, 0.005883649457246065, 0.019470496103167534, 0.013487236574292183, 0.019908782094717026, -0.01929783821105957, 0.02789088897407055, 0.03644409403204918, -0.0020171089563518763, 0.00420023500919342, -0.01474232692271471, -0.0352487713098526, 0.008081717416644096, -0.001402015215717256, -0.009954391047358513, -0.006119393743574619, -0.0314502976834774, 0.018859554082155228, 0.004495745524764061, -0.012451289221644402, -0.016535311937332153, -0.013972006738185883, -0.02706744335591793, 0.022365836426615715, 0.011089948937296867, -0.00025213861954398453, -0.016296247020363808, -0.0003280914679635316, -0.007085613906383514, 0.020891603082418442, -0.01706656813621521, -0.04778638854622841, 0.001759782200679183, -0.004074061755090952, -0.007039128802716732, 0.036683160811662674, -0.02279083989560604, 0.008453595452010632, -0.005936774890869856, -0.006302012596279383, -0.01680094003677368, -0.01385247427970171, -0.013958726078271866, -0.022113490849733353, 0.015366551466286182, -0.023189282044768333, 0.009502824395895004, -0.02985653281211853, 0.014197790063917637, 0.011627844534814358, -0.028315892443060875, -0.007928981445729733, -0.019138462841510773, 0.014357167296111584, -0.017491571605205536, -0.025048675015568733, -0.019231431186199188, 0.026615876704454422, -0.02510179951786995, -0.007278193719685078, -0.007530539762228727, 0.00304475543089211, -0.04977859556674957, 0.0185142382979393, 0.01232511643320322, 0.013998569920659065, -0.009356728754937649, 0.006043025758117437, -0.008473517373204231, -0.032140929251909256, -0.01520717516541481, -0.16426405310630798, 0.000780280795879662, 0.03373469412326813, -0.01844783127307892, 0.030626852065324783, -0.019165024161338806, 0.027226820588111877, 0.007377804256975651, -0.009456339292228222, 0.01609702780842781, 0.017823606729507446, 0.001167931011877954, -0.0049008275382220745, -0.00445258105173707, -0.01684078387916088, 0.005342433229088783, -0.01866033300757408, -0.01413138397037983, 0.03487689048051834, 0.01830173470079899, 0.028767459094524384, -0.026801815256476402, 0.046537939459085464, 0.03097216784954071, 0.0011139754205942154, 0.007258271798491478, 0.019271275028586388, -0.009150867350399494, 0.00897820945829153, -0.028156515210866928, 0.010293065570294857, 0.0028936797752976418, 0.010399317368865013, 0.0016211578622460365, -0.012132536619901657, 0.012955982238054276, 0.02446429431438446, -0.010870805941522121, -0.010014156810939312, 0.004691645968705416, 0.008652816526591778, 0.004080702550709248, 0.006288731470704079, 0.0013563605025410652, -0.02427835389971733, 0.01178722083568573, 0.0296705923974514, -0.0013497198233380914, 0.017982982099056244, -0.032884687185287476, 0.0017465008422732353, -0.00927704107016325, 0.010512208566069603, -0.0030198527965694666, 0.03261905908584595, -0.008958287537097931, -0.008593049831688404, 0.01747829094529152, 0.009111023508012295, 0.019736124202609062, 0.011986440978944302, -0.015871243551373482, 0.008818833157420158, 0.012630588375031948, 0.014423573389649391, -0.01807595230638981, 0.011939956806600094, -0.0034133135341107845, -0.036125339567661285, 0.0005179736181162298, 0.0019789249636232853, -0.002659595338627696, -0.020134564489126205, -0.027200257405638695, -0.007158661261200905, 0.024623669683933258, -0.010000876151025295, 0.019045492634177208, 0.00515981437638402, -0.034823767840862274, -0.019736124202609062, 0.021648641675710678, -0.0036623391788452864, -0.012238787487149239, -0.004349650349467993, 0.0059434156864881516, -0.012630588375031948, -0.002030390314757824, -0.001676773652434349, -0.01714625582098961, 0.006650648545473814, -0.029617467895150185, -0.0031410453375428915, -0.010658304207026958, 0.007616868708282709, 0.010166892781853676, 0.0018178882310166955, -0.01277004275470972, 0.012743479572236538, -0.014025132171809673, -0.006159238051623106, -0.006159238051623106, -0.009542668238282204, 0.004455901682376862, -0.01371966116130352, 0.008652816526591778, 0.0007927321130409837, 0.013055591844022274, 0.0334690660238266, -0.009768451564013958, -0.020918166264891624, -0.0195634663105011, 0.007603587582707405, 0.019536903128027916, -0.013918881304562092, 0.0175845418125391, 0.0031161427032202482, 0.003878161543980241, 0.01966971717774868, -0.0063750604167580605, 0.03793160989880562, -0.0019556826446205378, -0.00022038782481104136, 0.002765846438705921, 0.002111738780513406, -0.03878161683678627, -0.12696994841098785, -0.05288643762469292, 0.01803610846400261, 0.00514985341578722, 0.007278193719685078, 0.02033378556370735, 0.0005594779504463077, 0.007145380135625601, -0.014529825188219547, -0.002508519683033228, -0.008805551566183567, -0.019457215443253517, -0.007351241540163755, -0.00044160574907436967, -0.0022478727623820305, -0.006076229270547628, -0.0016336091794073582, 0.0039246464148163795, -0.04547543078660965, 0.02791745215654373, -0.006557679269462824, -0.01277004275470972, -0.02628384158015251, 0.028050264343619347, 0.0026380131021142006, 0.0013522100634872913, -0.05097391828894615, 0.01830173470079899, -0.006683852057904005, 0.0287408959120512, 0.00780944898724556, -0.012092692777514458, -0.006112752947956324, -0.02041347324848175, 0.001599575625732541, 0.03822379931807518, -0.00968876387923956, -0.011488390155136585, 0.0465645007789135, -0.011050104163587093, -0.002701099729165435, 0.007125457748770714, 0.0156853049993515, 0.007988747209310532, 0.019868938252329826, -0.001832829788327217, -0.014450136572122574, 0.03243311867117882, 0.007796167396008968, -0.016747813671827316, -0.03439876064658165, 0.004455901682376862, -0.009429777041077614, -0.015512646175920963, -0.002191426930949092, -0.002496898639947176, -0.011428623460233212, 0.0018245289102196693, -0.026615876704454422, -0.012132536619901657, -0.02565961703658104, 0.0033817703370004892, -0.02156895399093628, 0.0010218358365818858, 0.0018643731018528342, 0.00741764809936285, -0.020200971513986588, 0.015446240082383156, 0.009695404209196568, -0.018022825941443443, -0.023481471464037895, 0.010850884020328522, -0.0017797043547034264, 0.027080724015831947, -0.020572850480675697, 0.0020818556658923626, 0.007623509503901005, 0.009768451564013958, 0.008705941960215569, -0.011621203273534775, -0.036869097501039505, -0.011169636622071266, 0.011667688377201557, -0.04010975360870361, 0.00012399409024510533, 0.03498314321041107, 0.004535589832812548, 0.013639972545206547, 0.001988885924220085, -0.023667411878705025, -0.010405957698822021, 0.03439876064658165, 0.04714888334274292, -0.025566648691892624, 0.008878599852323532, 0.01747829094529152, 0.014211071655154228, -0.0014335584128275514, -0.0027608659584075212, 0.01826189085841179, -0.017040004953742027, -0.016867347061634064, -0.04196914657950401, 0.015339988283813, 0.0033419260289520025, -0.018049389123916626, -0.012238787487149239, -0.0176642294973135, 0.02107754349708557, 0.0003210357390344143, 0.011607922613620758, -0.007072332315146923, -0.02725338190793991, 0.0058770086616277695, 0.008639534935355186, -0.008028591051697731, -0.0021349810995161533, -0.024743203073740005, 0.027678387239575386, -0.005329152103513479, 0.014516543596982956, 0.00171993812546134, -0.007158661261200905, -0.0009604094666428864, 0.039100367575883865, 0.018766583874821663, -0.0035726900678128004, -0.008798911236226559, 0.0007238349644467235, 0.01238488219678402, -0.022299429401755333, -0.017093129456043243, 0.019961906597018242, -0.012670432217419147, -0.0018212086288258433, 0.033256564289331436, -0.013268094509840012, 0.005973298568278551, 0.013108717277646065, 0.016575155779719353, 0.03291124850511551, -0.007590305991470814, -0.015339988283813, -0.017013441771268845, 0.025194769725203514, 0.006999284960329533, 0.0038416378665715456, -0.017943138256669044, 0.013879037462174892, 0.008500080555677414, -0.0016311189392581582, -0.0022329313214868307, 0.010087205097079277, 0.015897806733846664, -0.020572850480675697, 0.014981391839683056, -0.005618021823465824, -0.018315017223358154, -0.006132675334811211, 0.0028256126679480076, -0.02621743455529213, -0.0185142382979393, 0.02472992055118084, -0.02126348204910755, 0.011335654184222221, -0.008745785802602768, -0.0060662683099508286, -0.04566136747598648, -0.014596231281757355, 0.00036959577118977904, -0.01944393292069435, 0.0017099770484492183, -0.019497059285640717, -0.009721966460347176, 0.006292051635682583, 0.01141534186899662, 0.027306508272886276, 0.007019206881523132, -0.01329465676099062, -0.013214968144893646, -0.014755608513951302, 0.029883094131946564, 0.03609877824783325, -0.0021216997411102057, -0.027970576658844948, 0.006999284960329533, 0.055463023483753204, 0.0009421475697308779, -0.007072332315146923, 0.0008022781112231314, 0.0036191747058182955, -0.016296247020363808, 0.011760657653212547, 0.0011065045837312937, -0.0038748413790017366, -0.005050242878496647, 0.014197790063917637, 0.023747099563479424, 0.016628282144665718, -0.0008923424175009131, 0.00875906739383936, -0.0031128223054111004, 0.012989184819161892, -0.015446240082383156, 0.008619613014161587, -0.00829421915113926, -0.044598858803510666, 0.014237634837627411, 0.00013966196274850518, -0.026868222281336784, -0.008101639337837696, 0.03182217478752136, -0.007012566085904837, -0.0006225644610822201, 0.0015173971187323332, 0.011216121725738049, -0.035009704530239105, -0.005774077959358692, 0.0008881919784471393, 0.00836726650595665, -0.005000438075512648, 0.015007954090833664, -0.01888611540198326, 0.0204533189535141, 0.019550183787941933, -0.0019606631249189377, 0.015499365516006947, 0.010312988422811031, 0.02182129956781864, -0.03851598873734474, 0.0045588319189846516, 0.02700103633105755, 0.01515404973179102, 0.0030879199039191008, -0.004987156484276056, -0.011906753294169903, -0.008094998076558113, -0.031370609998703, -0.0010450782719999552, -0.0034232744947075844, -0.018421268090605736, 0.0629005953669548, -0.008506720885634422, -0.006468029692769051, 0.004509027116000652, -0.0032937810756266117, 0.043376971036195755, 0.02710728719830513, -0.03312375023961067, -0.02762526087462902, -0.012776683084666729, 0.005608060862869024, 0.002075214870274067, -0.01565874181687832, -0.04332384839653969, -0.01371966116130352, 0.0076434314250946045, -0.03235343098640442, 0.014516543596982956, -0.028900273144245148, 0.0020054876804351807, 0.033150311559438705, 0.019204869866371155, 0.02249865047633648, 0.00885203666985035, 0.012491133995354176, -0.0016145171830430627, -0.012650510296225548, 0.017757199704647064, -0.0076965573243796825, -0.01227199099957943, -0.003934607375413179, 0.01033955067396164, -0.0630599707365036, -0.00988798402249813, 0.002418870572000742, -0.0025184808764606714, 0.0010035738814622164, -0.01773063652217388, 0.03570033609867096, -0.0006702943937852979, -0.01907205581665039, 0.0013721321010962129, -0.02725338190793991, -0.04762701317667961, -0.0022047082893550396, 0.0014227672945708036, 0.003436555853113532, -0.01323489099740982, -0.050814542919397354], "51feec6d-2627-4b9e-a339-7524953b135c": [0.005753290373831987, -0.009559007361531258, 0.015779318287968636, -0.030313249677419662, -0.02278793230652809, 0.004729820881038904, 0.004007761366665363, -0.007651180494576693, -0.027848972007632256, -0.027822475880384445, 0.014361696317791939, 0.008810450322926044, -0.012884455733001232, 0.025848403573036194, -0.009287407621741295, 0.0018399268155917525, 0.010413555428385735, 0.011162112466990948, 0.003464560490101576, 0.006657520774751902, 0.007902908138930798, 0.02943882904946804, -0.010585789568722248, -0.015077131800353527, -0.02535819821059704, 0.026524093002080917, 0.024404285475611687, -0.018124355003237724, 0.003765970701351762, -0.00022999085194896907, -0.00044342069304548204, 0.00873758178204298, -0.02498723194003105, 0.01874704845249653, -0.02829943224787712, 0.006684018298983574, 0.012420747429132462, -0.029067862778902054, 0.004855684470385313, -0.004686762113124132, 0.04054132103919983, -0.004693386610597372, 0.0028783013112843037, -0.004252864047884941, -0.0029710428789258003, 0.02395382709801197, -0.0024278422351926565, -0.03275102749466896, -0.0024377787485718727, 0.009234411641955376, 0.021251071244478226, 0.053048186004161835, -0.02832593023777008, -0.026683079078793526, 0.004925240762531757, 0.007240468170493841, 0.0015683263773098588, 0.00809501577168703, -0.005965271033346653, -0.019171010702848434, 0.014467687346041203, 0.003395004430785775, -0.01620328053832054, -0.007551814895123243, -0.027848972007632256, -0.0010988221038132906, 0.02097284607589245, -0.003375131171196699, -0.015845561400055885, 0.008949562907218933, 0.03921644017100334, 0.02062837779521942, -0.009373524226248264, 0.003043911186978221, 0.02933283895254135, -0.010373808443546295, -0.01732942834496498, 0.01360651571303606, -0.01254661101847887, 0.004729820881038904, 0.01481215562671423, -0.021039091050624847, 0.006995365023612976, -0.00818775687366724, 0.02525220811367035, -0.022310975939035416, -0.02395382709801197, 0.015010887756943703, 0.008075142279267311, -0.018058111891150475, 0.024550022557377815, 0.005723480600863695, 0.013964232988655567, 0.006276617757976055, 0.0021380246616899967, 0.030101267620921135, -0.0008942938293330371, 0.024576520547270775, -0.026431351900100708, -0.02311915159225464, -0.010625535622239113, 0.0012180613121017814, -0.009830608032643795, -0.012612855061888695, -0.007611434441059828, 0.004338981118053198, 0.016084039583802223, 0.007485570851713419, -0.0013505492825061083, -0.0037759074475616217, -0.010466550476849079, 0.03073721006512642, 0.005531372968107462, -0.03616921603679657, 0.02628561481833458, -0.004173371475189924, 0.010844141244888306, -0.015832312405109406, -0.030551727861166, 0.010612286627292633, 0.028776388615369797, 0.009260909631848335, 0.00817450787872076, 0.009625251404941082, 0.027583997696638107, -0.014918146654963493, 0.011148863472044468, 0.004693386610597372, -0.01857481524348259, -0.014931394718587399, 0.012804962694644928, 0.02856440842151642, -0.006544906180351973, 0.013739002868533134, -0.00605801260098815, 0.008876694366335869, -0.011711937375366688, -0.0018150852993130684, -0.04809313639998436, -0.004428410436958075, 0.032194577157497406, -0.007545190397650003, -0.0068231308832764626, 0.019992435351014137, 0.008240751922130585, 0.025503935292363167, 0.005292894784361124, 0.027875469997525215, 0.006246807985007763, 0.007041736040264368, -0.0019873196724802256, 0.0016693485667929053, 0.002363254316151142, 0.0025123031809926033, 0.006485286634415388, -0.011857673525810242, -0.021092085167765617, 0.02513296902179718, 0.012944075278937817, -0.01316268090158701, 0.0231456495821476, 0.037785571068525314, -0.023821339011192322, 0.0033155116252601147, -0.0130368173122406, 0.02608688361942768, 0.01648150384426117, 0.012275011278688908, -0.02097284607589245, 0.012460494413971901, 0.008267249912023544, 0.015169873833656311, -0.010658658109605312, 0.005183591973036528, -0.005001421086490154, -0.019290249794721603, 0.009625251404941082, -0.008134761825203896, -0.022390468046069145, -0.006478662136942148, 0.008346742950379848, -0.0016395386774092913, 0.015501093119382858, 0.05437306687235832, -0.017037954181432724, -0.014971141703426838, 0.015474596060812473, 0.020999344065785408, 0.006895999424159527, -0.004902055021375418, 0.012308132834732533, 0.04183970391750336, -0.007783668581396341, -0.0019575098995119333, -0.6219515800476074, -0.02726602554321289, -0.021158330142498016, -0.028829384595155716, -0.0027557499706745148, -0.0009116829023696482, 0.020336903631687164, 0.0007928577251732349, -0.028113948181271553, 0.05251823365688324, -0.020124923437833786, 0.004550962243229151, 0.005008045583963394, 0.003343665273860097, 0.012314757332205772, -0.03240656107664108, 0.005359138827770948, -0.029067862778902054, -0.02965080924332142, 0.015183121897280216, 0.004769567400217056, 0.013281919993460178, -0.028246436268091202, 0.031081680208444595, 0.010367183946073055, 0.006048076320439577, 0.017779886722564697, 0.010724902153015137, 0.01849532127380371, 0.01987319625914097, -0.01739567145705223, 0.008008898235857487, 0.009161544032394886, -0.008518977090716362, 0.03961390629410744, 0.012838085182011127, -0.006710515823215246, 0.038951463997364044, 0.015607084147632122, 0.028034456074237823, -0.019886445254087448, -0.008419610559940338, 0.03198259696364403, -0.0049153040163218975, 0.01762090064585209, -0.03805054724216461, 0.0030124452896416187, 0.010493047535419464, 0.010228072293102741, -0.024483777582645416, -0.007836664095520973, 0.02938583306968212, -0.007737298030406237, -0.019197508692741394, 0.022483209148049355, -0.025689419358968735, 0.02407306618988514, 0.0031084991060197353, -0.009804110042750835, -0.018296590074896812, 0.01413646712899208, 0.01732942834496498, 0.010188325308263302, -0.004719884134829044, -0.0024063128512352705, 0.015474596060812473, -0.025477437302470207, 0.013977481983602047, -0.034526366740465164, 0.012732094153761864, 0.015845561400055885, 0.015792567282915115, -0.0027160034514963627, 0.005657236557453871, 0.011413839645683765, 0.04112426936626434, 0.025901399552822113, 0.00467020133510232, 0.02617962472140789, 0.01087726280093193, 0.013175928965210915, -0.01303019281476736, -0.04496641829609871, -0.02309265360236168, 0.05371062457561493, 0.02175452560186386, -0.014653170481324196, 0.031240664422512054, 0.03582474961876869, 0.0071477266028523445, 0.000797826040070504, 0.03738810867071152, -0.03913694992661476, -0.04276711866259575, 0.0008288779063150287, 0.02935933507978916, -0.011884171515703201, -0.010844141244888306, -0.0006309740128926933, -0.0251197200268507, -0.038818977773189545, -0.028087452054023743, 0.005037855356931686, 0.007677678484469652, -0.00873758178204298, 0.019382990896701813, 0.0009149950928986073, 0.009168167598545551, 0.015540840104222298, -0.01630927063524723, 0.0019426050130277872, -0.019224004819989204, 0.004531088750809431, 0.016123786568641663, 0.012447245419025421, -0.02519921399652958, 0.03076370805501938, 0.011817927472293377, -0.012175644747912884, -0.024735504761338234, -0.0018597999587655067, -0.005422070622444153, -0.006929120980203152, -0.008452733047306538, 0.024722255766391754, 0.01091038528829813, 0.0008976060198619962, -0.0006471209926530719, -0.005458504892885685, -0.0026530716568231583, 0.0037229121662676334, 0.002338412683457136, -0.022403717041015625, -0.018203848972916603, 0.0010367183713242412, 0.0033916921820491552, 0.004189932253211737, 0.0008827011333778501, 0.006101071368902922, 0.003385067917406559, 0.004232991021126509, 0.0003748995659407228, 0.019237253814935684, 0.007664429489523172, -0.015315609984099865, -0.017846129834651947, -0.01259298250079155, -0.012294883839786053, 0.009823983535170555, -0.014480936340987682, 0.00809501577168703, -0.0177136417478323, -0.018283341079950333, 0.007319960743188858, -0.014785658568143845, 0.010069086216390133, 0.0011327721877023578, -0.0009017462725751102, -0.01316268090158701, -0.0004682621802203357, -0.003340353025123477, 0.010499672032892704, -0.04014385864138603, -0.015010887756943703, -0.017700394615530968, -0.018932532519102097, -0.026577088981866837, 0.02522571012377739, -0.006200437434017658, -0.026974551379680634, -0.013791998848319054, -0.008161259815096855, -0.0004645359585992992, 0.002070124726742506, -0.01360651571303606, 0.012659226544201374, -0.015779318287968636, 0.005186904221773148, -0.008982684463262558, -0.018203848972916603, 0.007485570851713419, 0.004772879183292389, -0.018349584192037582, 0.0017952120397239923, 0.011195234023034573, 0.0045940205454826355, 0.021648535504937172, -0.01100975088775158, -0.033333975821733475, 0.020283909514546394, 0.01848207227885723, 0.029253344982862473, -0.011307848617434502, 0.01372575480490923, 0.00043224202818237245, -0.015474596060812473, 0.013844993896782398, 0.017779886722564697, 0.03150564059615135, 0.03603672981262207, 0.01101637538522482, 0.001603932585567236, 0.018376082181930542, -0.025437692180275917, 0.02065487578511238, -0.008393113501369953, 0.0016552716260775924, -0.006723764818161726, 0.02065487578511238, -0.004554274026304483, -0.006150754168629646, 0.003229394555091858, -0.02628561481833458, -0.03195609897375107, 0.01763414964079857, 0.02930634096264839, -0.008704460225999355, 0.0024228738620877266, 0.021078838035464287, 0.013421031646430492, -0.01538185402750969, 0.026815567165613174, 0.007591560948640108, 0.009247660636901855, 0.007180848158895969, 0.009691495448350906, 0.0015881996368989348, -0.028855880722403526, -0.011387341655790806, -0.03394341841340065, -0.022721687331795692, -0.021370310336351395, 0.0242320504039526, 0.006627711001783609, 0.02837892435491085, 0.014176213182508945, 0.02074761688709259, -0.008810450322926044, 0.04830511659383774, -0.01852181926369667, -0.00047695671673864126, 0.011135614477097988, 0.006909247953444719, -0.03394341841340065, -0.0028633964248001575, -0.00031672907061874866, 0.02938583306968212, -0.007439199835062027, -0.004733133129775524, 0.016653738915920258, 0.012513489462435246, -0.0013853274285793304, -0.011049496941268444, -0.009929973632097244, -0.01156620029360056, 0.007717424537986517, 0.025636423379182816, 0.022363970056176186, 0.021290818229317665, 0.012215391732752323, 0.001619665534235537, -0.016865719109773636, 0.02737201564013958, 0.0217942725867033, 0.016971709206700325, 0.03468535095453262, 0.0011857673525810242, -0.0195552259683609, -0.01312955841422081, -0.009088675491511822, -0.04162772372364998, -0.04348255321383476, -0.009949847124516964, -0.002311915159225464, 0.023847835138440132, 0.009638500399887562, -0.0036003608256578445, 0.021264320239424706, 0.01971421018242836, 0.00495173828676343, -0.026656581088900566, -0.026457849889993668, 0.028166944161057472, 0.026007389649748802, -0.003365194657817483, -0.008492479100823402, -0.00735308276489377, 0.006415730342268944, 0.009598754346370697, 0.007240468170493841, -0.005359138827770948, 0.014957892708480358, 0.018111106008291245, -0.010771272704005241, -0.014215960167348385, 0.0008868413860909641, 0.025570180267095566, -0.006124256644397974, -0.009419894777238369, -0.006051388569176197, -0.00233675679191947, 0.004329044837504625, -0.0033221361227333546, -0.00976436398923397, 0.049656495451927185, 0.010406930930912495, 0.02183401957154274, -0.028643900528550148, 0.0002850561577361077, -0.03275102749466896, 0.004759630654007196, -0.03198259696364403, -0.04626480117440224, 0.0026033888570964336, 0.033121995627880096, -0.003636794863268733, 0.03153213858604431, 0.008267249912023544, 0.02278793230652809, -0.006438915617763996, -0.004835810977965593, -0.01267909910529852, -0.005647299811244011, 0.010771272704005241, 0.031267162412405014, 0.02415255829691887, -0.019329996779561043, 0.02097284607589245, -0.0411507673561573, -0.0033072312362492085, -0.003669916884973645, -0.02624586783349514, 0.020389899611473083, -0.014388194307684898, -0.023158898577094078, -0.02417905628681183, 0.009075426496565342, -0.0004508731362875551, 0.022536205127835274, 0.03415540233254433, 0.008863445371389389, -0.0035473655443638563, -0.007200721651315689, -0.009717993438243866, 0.02636510692536831, -0.010148579254746437, 0.027901967987418175, 0.02408631518483162, 0.0068297553807497025, -0.014109969139099121, 0.026020638644695282, -0.01536860503256321, -0.002086685737594962, -0.03145264461636543, -0.015395103022456169, 0.018044862896203995, 0.020045431330800056, 0.019250502809882164, 0.006425667088478804, 0.033121995627880096, 0.02292042039334774, 0.01089713629335165, -0.0031929602846503258, -0.029889287427067757, 0.018800044432282448, 0.017952121794223785, -0.009996217675507069, 0.005637363530695438, -0.026908308267593384, 0.0009497731807641685, -0.028696896508336067, 0.012089528143405914, -0.02408631518483162, 0.001154301455244422, -0.011904045008122921, -0.010817643254995346, -0.015487844124436378, -0.012076279148459435, 0.0011220076121389866, 0.010691779665648937, 0.0035937363281846046, -0.036540184170007706, -0.03044573776423931, -0.01087726280093193, -0.011851049959659576, -0.006895999424159527, 0.013831744901835918, -0.007154350634664297, -0.0007117088534869254, -0.0071477266028523445, -0.024881241843104362, -0.0025752349756658077, -0.009009182453155518, -0.010592414066195488, 0.02091985195875168, -0.022628946229815483, -0.012500240467488766, -0.02502697892487049, 0.026815567165613174, 0.012513489462435246, 0.004501278977841139, -0.00353411678224802, -0.01619003154337406, 0.02837892435491085, -0.003977951593697071, -0.0260736346244812, -0.02285417541861534, -0.023304635658860207, -0.008181132376194, 0.01652125082910061, 0.0028435231652110815, -0.0019823512993752956, -0.015103629790246487, 0.0396404042840004, 0.012155772186815739, -0.006213685963302851, -0.01649475283920765, -0.0034479997120797634, 0.005809597671031952, 0.01526261493563652, -0.0016271179774776101, 0.023569611832499504, 0.01483865361660719, -0.004120375961065292, -0.009115172550082207, 0.00922116357833147, -0.007525316905230284, -0.026524093002080917, -0.006458789110183716, -0.008624967187643051, -0.00014552976062987, 0.002167834434658289, -0.017965368926525116, 0.008810450322926044, 0.0009365243604406714, -0.013831744901835918, 0.0184025801718235, 0.017090948298573494, -0.009433143772184849, 0.00577978789806366, -0.006157378666102886, 0.03601023182272911, -0.011360843665897846, -0.012857957743108273, 0.007598185446113348, -0.04356204718351364, -0.015739571303129196, -0.0030256942845880985, 0.012831460684537888, 0.013063314370810986, -0.002472556894645095, -0.049815479665994644, -0.005849344190210104, -0.0045940205454826355, 0.024298295378684998, -0.008571972139179707, -0.009539134800434113, 0.0021810834296047688, -0.012427371926605701, 0.004401912912726402, -0.033386971801519394, 0.009618626907467842, -0.0070616090670228004, 0.008836948312819004, -0.00989022757858038, 0.033280979841947556, 0.03269803151488304, -0.03052522987127304, 0.005726792849600315, -0.035665761679410934, -0.02175452560186386, 0.025702668353915215, -0.0033867238089442253, 0.028643900528550148, 0.01424245722591877, 0.010956755839288235, -0.01368600782006979, -0.0032823896035552025, -0.004252864047884941, 0.008989308960735798, -0.008492479100823402, -0.002754093846306205, 0.03402291238307953, 0.02965080924332142, 0.008022147230803967, -0.00289320619776845, 0.049656495451927185, 0.0240333192050457, -0.011022999882698059, 0.0207078717648983, -0.01637551374733448, -0.019277000799775124, -0.024603016674518585, -0.004411849658936262, 0.005425382871180773, 0.013791998848319054, 0.010817643254995346, 0.0009853793308138847, 0.009472890757024288, 0.0418132059276104, 0.002485805656760931, 0.03052522987127304, -0.00922116357833147, -0.013089812360703945, 0.008313620463013649, 0.01413646712899208, -0.019475731998682022, 0.016176782548427582, -0.029253344982862473, -0.004587396048009396, 0.010546042583882809, 0.010148579254746437, 0.003497682511806488, 0.010645409114658833, 0.006157378666102886, 0.008452733047306538, 0.0066674575209617615, 0.03524180129170418, 0.012314757332205772, -0.006836379412561655, -0.002661352278664708, -0.0396404042840004, 0.007975776679813862, 0.00023247499484568834, -0.012765216641128063, 0.01640201173722744, -0.0028849258087575436, -0.001005252473987639, -0.0372026227414608, 0.002927984343841672, -0.01371250580996275, -0.028829384595155716, 0.005100787151604891, -0.02957131713628769, -0.0026033888570964336, -0.02407306618988514, -0.04080629721283913, -0.019237253814935684, 0.0032658285927027464, 0.022377219051122665, -0.005316080059856176, 0.01944923587143421, -0.002770654857158661, -0.013050065375864506, 0.007922780700027943, 0.0016511314315721393, 0.04801364243030548, -0.0043621668592095375, 0.03185011073946953, 0.024682510644197464, 0.007187472656369209, -0.013765500858426094, -0.000809418736025691, -0.0017057827208191156, 0.0018084609182551503, 0.02057538367807865, 0.003497682511806488, -0.025331702083349228, -0.0018796732183545828, -0.014335199259221554, -0.013884739950299263, -0.03142614662647247, -0.018243594095110893, 0.007922780700027943, 0.008624967187643051, 0.000578806851990521, -0.009671621955931187, 0.0019326683832332492, -0.02721303142607212, 0.007876410149037838, -0.005392260849475861, -0.010141954757273197, -0.010777897201478481, -0.007253716699779034, -0.03582474961876869, 0.007293463218957186, 0.021264320239424706, 0.027689987793564796, 0.011148863472044468, 0.013003694824874401, -0.03728211671113968, -0.042210668325424194, -0.03807704523205757, 0.005806285422295332, -0.0037759074475616217, 0.01154632680118084, -0.02183401957154274, 0.012844709679484367, 0.024258548393845558, -0.011798053979873657, -0.006005017552524805, -0.016216527670621872, -0.015196370892226696, 0.030366243794560432, -0.010387057438492775, 0.0016693485667929053, -0.004550962243229151, -0.003779219463467598, 0.023185396566987038, 0.006051388569176197, -0.033386971801519394, -0.028113948181271553, 0.00023288902593776584, -0.012155772186815739, 0.016825973987579346, 0.020336903631687164, -0.022549454122781754, 0.009241036139428616, -0.0009489451185800135, 0.005607553757727146, -0.010824267752468586, 0.001324879820458591, 0.007015238516032696, -0.028723392635583878, -0.052014779299497604, -0.012427371926605701, -0.0024626203812658787, 0.0042760493233799934, 0.008141386322677135, -0.007836664095520973, 0.012049781158566475, 0.031108176335692406, -0.02628561481833458, 0.02534494921565056, 0.004425098653882742, 0.00353742903098464, -0.020191168412566185, 0.018866287544369698, 0.0031449333764612675, -0.002341724932193756, 0.02417905628681183, -0.01626952365040779, -0.010035964660346508, -0.01951547898352146, -0.023622605949640274, 0.02278793230652809, -0.007969152182340622, -0.0069423699751496315, 0.010791146196424961, 0.014573677442967892, 0.0198202021420002, -0.037812069058418274, -0.005703607574105263, 0.013414408080279827, -0.00934040267020464, 0.002936264732852578, 0.013924486003816128, -0.010546042583882809, 0.011400590650737286, -0.006415730342268944, -0.008366615511476994, -0.02827293425798416, -0.017806384712457657, -0.0109965018928051, 0.0099101010710001, -0.0015824033180251718, 0.01764739863574505, 0.017104197293519974, -0.05341915413737297, -0.00830037146806717, -0.018945781514048576, 0.023225141689181328, -0.0087574552744627, 0.014653170481324196, 0.005133909173309803, 0.010102208703756332, 0.010214823298156261, 0.018018364906311035, -0.033360473811626434, -0.031002186238765717, 0.01198353711515665, 0.007750546559691429, -0.00409387843683362, -0.028855880722403526, -0.0177136417478323, 0.026709577068686485, 0.03203559294342995, -0.013619763776659966, -0.010088959708809853, -0.01632251963019371, -0.03041923977434635, -0.038818977773189545, 0.005975207779556513, -0.0016362265450879931, 0.026616834104061127, 0.015964800491929054, -0.019104765728116035, -0.0013000383041799068, 0.004580772016197443, 0.04062081500887871, -0.010579165071249008, 1.6573934772168286e-05, -0.009499387815594673, 0.024814998731017113, -0.0045973327942192554, -0.006369359325617552, -0.0177136417478323, -0.010155203752219677, -0.006743637844920158, -0.015222868882119656, 0.026033887639641762, 0.014467687346041203, -0.009717993438243866, -0.026524093002080917, -0.012354504317045212, 0.025411194190382957, -0.0007133649778552353, 0.021555794402956963, 0.011327722109854221, -0.03179711475968361, 0.005716856103390455, 0.024907739832997322, 0.025464188307523727, -0.015872059389948845, -0.0023185396566987038, 0.04488692805171013, -0.016971709206700325, 0.024536773562431335, 0.02080061286687851, -0.01987319625914097, 0.006574715953320265, -0.018230345100164413, 0.02501372992992401, 0.005054416134953499, 0.024523524567484856, 0.023569611832499504, -0.013739002868533134, 0.026577088981866837, -0.004130312707275152, 0.0013637981610372663, -0.00679000886157155, -0.004292610567063093, 0.014017228037118912, 0.01100975088775158, -0.002754093846306205, -0.036672670394182205, 0.03836851939558983, -0.013414408080279827, 0.009982968680560589, 0.004895430989563465, 0.010254569351673126, -0.019210755825042725, 0.004819250199943781, 0.0019525415264070034, -0.026616834104061127, 0.01952872797846794, -0.00989022757858038, 0.012294883839786053, -0.004348917864263058, -0.02930634096264839, 0.012182269245386124, 0.01471941452473402, 0.026510844007134438, -0.0032906702253967524, 0.014202711172401905, -0.02827293425798416, 0.006190500687807798, 0.01734267547726631, -0.041018277406692505, 0.01526261493563652, 0.1740362048149109, 0.015143375843763351, -0.006303115747869015, 0.03296300768852234, 0.004464844707399607, 0.015474596060812473, 0.009691495448350906, -0.0206416267901659, -0.0011037904769182205, 0.013765500858426094, -0.007187472656369209, 0.019210755825042725, -0.012944075278937817, 0.007949278689920902, 0.004786128178238869, -0.01630927063524723, -0.01045992597937584, -0.03145264461636543, 0.00026849517598748207, 0.019184259697794914, 0.008326869457960129, 0.00144411891233176, -0.01632251963019371, -0.008823699317872524, 0.032274071127176285, 0.00929403118789196, -0.0007725704926997423, 0.01872055046260357, 0.025742413476109505, -0.018323088064789772, -0.016044294461607933, 0.01471941452473402, 0.004226366523653269, 0.0043588546104729176, -0.030021775513887405, 0.005935461260378361, 0.034367382526397705, -0.003216145560145378, 0.014070223085582256, -0.00988360308110714, 0.007386204786598682, -0.02168828248977661, -0.008287123404443264, -0.002681225538253784, 0.01759440265595913, 0.009578880853950977, -0.024920988827943802, -0.004239615052938461, 0.015898557379841805, 0.02856440842151642, -0.01743541844189167, -0.0239670742303133, 0.0026944743003696203, 0.023596107959747314, -0.010029340162873268, 0.005319392308592796, 0.013447529636323452, 0.011751683428883553, 0.005458504892885685, 0.018084608018398285, -0.021622037515044212, 0.020588630810379982, -0.01844232715666294, 0.013950983993709087, -0.026550590991973877, 0.006909247953444719, -0.020310407504439354, 0.004027634393423796, -0.022297726944088936, -0.010678530670702457, -0.011890796013176441, 0.013507149182260036, 0.010095584206283092, -0.013387910090386868, -0.0082142548635602, -0.019290249794721603, 0.016097288578748703, 0.0018730487208813429, 0.016772978007793427, 0.032194577157497406, -0.02933283895254135, -0.01862780936062336, 0.0051935287192463875, 0.011493331752717495, -0.03508281707763672, -0.012049781158566475, 0.030896196141839027, 0.006293179001659155, 0.018018364906311035, -0.014586926437914371, -0.029809795320034027, -0.0015815752558410168, -0.008850197307765484, -0.0016859094612300396, -0.006167315412312746, 0.01087063830345869, -0.0008454389171674848, -0.0034711849875748158, -0.02747800573706627, 0.010016091167926788, -0.025623174384236336, 0.049577001482248306, 0.02391408011317253, 0.0030025087762624025, 0.010029340162873268, -0.015116877853870392, 0.00735970726236701, 0.023688850924372673, -5.672141560353339e-05, -0.007962527684867382, 0.001316599315032363, -0.006438915617763996, -0.005541309714317322, 5.07180520799011e-05, -0.010546042583882809, -0.01632251963019371, 0.026696328073740005, 0.002805433003231883, 0.005806285422295332, 0.007174224127084017, 0.01630927063524723, -0.01766064763069153, -0.017700394615530968, -0.019475731998682022, 0.01148008368909359, 0.003981263842433691, -0.04287311062216759, 0.022151989862322807, -0.0016494753072038293, -0.0007767107454128563, 0.037573590874671936, -0.02829943224787712, 0.028670398518443108, -0.013950983993709087, 0.004892118740826845, -0.013288544490933418, -0.017740139737725258, -0.032327067106962204, -0.025490686297416687, 0.008028771728277206, 0.017687145620584488, 0.01314943190664053, -0.016057543456554413, -0.011784805916249752, 0.0013787030475214124, -0.03608972579240799, -0.026815567165613174, 0.013619763776659966, 0.024682510644197464, -0.028166944161057472, -0.013235548511147499, -0.004885494243353605, -0.006399169098585844, -0.03320148587226868, -0.009466266259551048, -0.043191079050302505, -0.007724049035459757, -0.04019685089588165, 0.04814613237977028, -0.007452448830008507, -0.03198259696364403, -0.020018933340907097, 0.00820763036608696, -0.019409488886594772, -0.026696328073740005, -0.018111106008291245, -0.16523900628089905, -0.008578596636652946, 0.0066641452722251415, -0.01976720616221428, 0.0010375464335083961, -0.01413646712899208, 0.026656581088900566, -0.016786227002739906, -0.00381234148517251, -0.018230345100164413, -0.001609728904440999, 0.010678530670702457, -0.029041364789009094, -0.014997638761997223, 0.002292041899636388, -0.0060712615959346294, -0.024682510644197464, 0.011904045008122921, 0.023529864847660065, 0.023264888674020767, 0.04912654310464859, -0.0063892328180372715, 0.02501372992992401, 0.007671053986996412, -0.0038752732798457146, -0.00988360308110714, -0.0037527219392359257, 0.006074573844671249, 0.003832214744761586, -0.022522956132888794, 0.017051203176379204, 0.007021863013505936, 0.01868080534040928, -0.020946349948644638, 0.020204417407512665, -0.0026547277811914682, -0.0063461740501224995, -0.010161828249692917, 0.0005949538317508996, -0.005432006902992725, 0.012897704727947712, 0.007114604581147432, -0.005412133876234293, 0.0012594638392329216, -0.0015815752558410168, 0.029889287427067757, 0.03404941037297249, -0.036699168384075165, 0.025689419358968735, -0.014454438351094723, 0.03473834693431854, 0.0025785472244024277, 0.008081766776740551, -0.01043342798948288, 0.03351945802569389, -0.02277468331158161, -0.008075142279267311, 0.013619763776659966, -0.012155772186815739, -0.0032774212304502726, 0.0006810710183344781, -0.032274071127176285, -0.00736633175984025, 0.00439197663217783, -0.013063314370810986, -0.03839501738548279, -0.02424529939889908, 0.029783297330141068, -0.056280892342329025, -0.0011112429201602936, 0.0014358384069055319, 0.011599322780966759, -0.0010035964660346508, -0.010565916076302528, 0.004070693161338568, 0.046317797154188156, 0.011115740984678268, 0.006008329801261425, -0.0020055368077009916, -0.028060954064130783, -0.009439768269658089, 0.013964232988655567, 0.027093790471553802, -0.00380902923643589, -0.009605377912521362, -0.0034711849875748158, -0.0045973327942192554, 0.027795977890491486, -0.012791714631021023, -0.01425570622086525, 0.01630927063524723, -0.03730861470103264, -0.0173161793500185, 0.002017129445448518, 0.008691211231052876, 0.02280118130147457, 0.008353366516530514, -0.032300569117069244, 0.024709008634090424, -0.023543113842606544, 0.01257310900837183, -0.013560144230723381, -0.011811302974820137, -0.0069887409918010235, 0.026484346017241478, 0.001319911447353661, -0.013394534587860107, 0.021516047418117523, 0.040885791182518005, -0.002176115056499839, -0.022536205127835274, -0.03068421594798565, 0.00988360308110714, 0.017726890742778778, -0.006077886093407869, 0.011619195342063904, 0.004686762113124132, -0.0019757270347326994, 0.0032757653389126062, 0.013368036597967148, 0.038818977773189545, 0.0031730870250612497, 0.019263751804828644, 0.009711368940770626, -0.00706823356449604, 0.007114604581147432, -0.1216769590973854, -0.058930654078722, 0.008552098646759987, 0.0028617403004318476, -0.013844993896782398, 0.023662352934479713, -0.0195552259683609, -0.0006972179980948567, -0.022178487852215767, 0.04504591226577759, 0.017740139737725258, -0.036566682159900665, -0.014997638761997223, 0.010175076313316822, 0.008704460225999355, -0.009512636810541153, -0.01367275882512331, 0.011049496941268444, -0.029094358906149864, 0.016613991931080818, 0.009486138820648193, -0.005730105098336935, 0.01098325289785862, 0.0119172940030694, -0.013341539539396763, 0.022589199244976044, -0.029889287427067757, 0.012367752380669117, -0.01368600782006979, 0.013460778631269932, 0.013858241960406303, -0.019237253814935684, 0.007319960743188858, -0.01523611694574356, 0.01538185402750969, 0.007896283641457558, -0.022257979959249496, -0.014918146654963493, 0.015342107973992825, 0.0015815752558410168, 0.0002312329161213711, -0.008976060897111893, -0.015858810395002365, 0.03608972579240799, -0.010499672032892704, 0.006286554504185915, -0.006995365023612976, 0.023874333128333092, -0.011784805916249752, -0.024205554276704788, -0.03608972579240799, -0.02208574488759041, -0.02739851363003254, -0.010565916076302528, 0.002923015970736742, -0.008724333718419075, 0.004716571886092424, -0.0009754427592270076, -0.0068231308832764626, -0.007300087716430426, -0.027133537456393242, 0.009724617935717106, -0.032300569117069244, 0.018217096105217934, 0.013911237940192223, -0.005713543854653835, 0.002452683635056019, -0.008538850583136082, 0.012334630824625492, -0.011738434433937073, -0.005269709508866072, 0.023185396566987038, -0.011513205245137215, 0.015885308384895325, -0.015845561400055885, 0.021211324259638786, -0.0070616090670228004, 0.005408821627497673, 0.01983344927430153, -0.008598470129072666, -0.037918057292699814, -0.010075710713863373, 0.017991866916418076, -0.019290249794721603, 0.008545474149286747, 0.015090380795300007, -0.0044317226856946945, 0.0011220076121389866, 0.027093790471553802, -0.01852181926369667, -0.010605662129819393, 0.01372575480490923, 0.032088588923215866, -0.035665761679410934, 0.0060679493471980095, 0.006087822373956442, -0.007690927013754845, -0.008585221134126186, 0.0005353342276066542, 0.03789156302809715, -0.04573484882712364, -0.0053492020815610886, -0.04125675559043884, 0.024762002751231194, 0.0037262244150042534, -0.002209237078204751, 0.00735308276489377, 0.002797152381390333, 0.02840542234480381, -0.015593835152685642, 0.005418758373707533, 0.0050776018761098385, -0.030074771493673325, 0.0019624782726168633, -0.0019674464128911495, -0.01155295129865408, -0.009572256356477737, -0.03420839458703995, 0.011851049959659576, -0.009956471621990204, 0.025742413476109505, 0.01154632680118084, -0.0031813676469027996, -0.0009961440227925777, 0.020151421427726746, -0.010771272704005241, -0.014374945312738419, 0.009837232530117035, -0.02405981719493866, 0.02731902152299881, -0.02296016737818718, -0.0038421512581408024, 0.00038835537270642817, -0.015143375843763351, -0.02973030135035515, 0.024748753756284714, -0.017779886722564697, -0.008452733047306538, 0.01467966753989458, 0.015474596060812473, 0.014374945312738419, 0.017249934375286102, -0.0008545474265702069, -0.030366243794560432, 0.003802404971793294, 0.011539703235030174, -0.003659980371594429, -0.022204985842108727, -0.006164003163576126, -0.0013000383041799068, 0.004345605615526438, 0.009797485545277596, 0.04080629721283913, 0.012361127883195877, -0.013083187863230705, -0.028908876702189445, 0.0025404570624232292, -0.038871973752975464, 0.018230345100164413, -0.024854743853211403, -0.001006908598355949, -0.005104099400341511, 0.03063121996819973, -0.005180279724299908, 0.013447529636323452, -0.006283242255449295, -0.0051935287192463875, -0.021198077127337456, -0.024735504761338234, 0.0039249565452337265, -0.008889943361282349, -0.017143944278359413, -0.02938583306968212, 0.0029876038897782564, 0.004123688209801912, -0.004246239550411701, 0.04048832505941391, -0.008333493955433369, -0.0015103629557415843, -0.0087574552744627, -0.006472037639468908, 0.003043911186978221, 0.04732470586895943, 0.0017869316507130861, -0.00986372958868742, 0.024920988827943802, 0.01629602164030075, 0.005849344190210104, -0.03073721006512642, -0.003383411793038249, -0.005547934211790562, 0.007982400245964527, 0.011950415559113026, 0.01629602164030075, -0.016799475997686386, -0.0012072967365384102, -0.0008868413860909641, 0.006097759120166302, -0.018800044432282448, -0.0025570180732756853, 0.019131263718008995, 0.00606132484972477, 0.016680236905813217, -0.00467020133510232, -0.01142708770930767, -0.013103061355650425, -0.050636906176805496, 0.028246436268091202, -0.02407306618988514, -0.022350721061229706, -0.010400306433439255, 0.04403900355100632, -0.0028600841760635376, 0.008704460225999355, 0.009651749394834042, 0.0006905935588292778, -0.017899125814437866, -0.002624918008223176, 0.008591845631599426, 0.003659980371594429, -0.011387341655790806, 0.005070977378636599, -0.011605946347117424, -0.020350152626633644, 0.017925623804330826, 0.0024096250999718904, 0.04056781902909279, 0.012381001375615597, 0.020482640713453293, -0.026987800374627113, 0.00623355945572257, 0.01523611694574356, 0.0007315820548683405, -0.01762090064585209, -0.017170442268252373, -0.02617962472140789, -0.022748185321688652, -0.02526545710861683, 0.023755094036459923, 0.0016726606991142035, 0.002936264732852578, 0.07975776493549347, 0.0010772928362712264, 0.006862877402454615, 0.0027408450841903687, -0.02280118130147457, 0.030101267620921135, 0.03844800963997841, -0.007565063424408436, -0.02076086588203907, -0.03495032712817192, -1.6237539966823533e-05, 0.011817927472293377, -0.0060712615959346294, -0.015434849075973034, -0.009022431448101997, 0.002764030359685421, -0.017051203176379204, 0.012096152640879154, -0.030233755707740784, -0.007889659143984318, 0.03169112280011177, 0.016229776665568352, -0.001755465753376484, 0.018309839069843292, -0.012930826283991337, -0.016799475997686386, 0.006203749682754278, 0.029200350865721703, -0.0147326635196805, -0.028802886605262756, -0.019965937361121178, -0.002061844104900956, -0.02529195509850979, -0.02301316149532795, -6.417386612156406e-05, 0.0046668890863657, 0.004080629907548428, 0.0005841891979798675, 0.019051771610975266, 0.00081438705092296, -0.005640675779432058, 0.00820763036608696, -0.02072111889719963, -0.03908395394682884, -0.00829374697059393, -0.011764932423830032, -0.014547179453074932, -0.014109969139099121, -0.04931202530860901], "02835535-81cb-4b99-9c36-7f722fe56e53": [0.009006684646010399, 0.0006305180140770972, -0.006092364434152842, -0.02790803834795952, -0.017065297812223434, 0.031139494851231575, 0.00192118133418262, -0.0074977814219892025, -0.025304177775979042, -0.023461446166038513, 0.03463801369071007, -0.01188428420573473, -0.0032998917158693075, 0.001841062563471496, -0.018454022705554962, -0.0006876860861666501, 0.021458476781845093, -0.004820479080080986, 0.003788950154557824, 0.007991846650838852, -0.00028229347663000226, 0.016477759927511215, 0.0073041608557105064, -0.015502981841564178, -0.023661741986870766, 0.04532051458954811, 0.02143177017569542, -0.02037687413394451, 0.004426561761647463, -0.02201930806040764, 0.007090510800480843, 0.0027090157382190228, -0.03178044408559799, 0.00154061708599329, -0.029056405648589134, -0.0069569796323776245, -0.002693993505090475, -0.02288726158440113, -0.0037388757336884737, -0.009821225889027119, 0.032688457518815994, -0.012385026551783085, -0.00042688281973823905, -0.00740430923178792, -0.005287838634103537, 0.015382803045213223, -0.015489628538489342, -0.034531187266111374, -0.013913959264755249, 0.009787842631340027, 0.018053429201245308, 0.052824974060058594, -0.028922874480485916, -0.014207728207111359, 0.020323460921645164, -0.015169152989983559, 0.012698824517428875, -0.005114248022437096, -0.006129085551947355, -0.0034985195379704237, 0.014047490432858467, 0.0037755968514829874, -0.0009063435718417168, -0.0035519320517778397, -0.0273205004632473, 0.010896152816712856, 0.0050040846690535545, -0.009193629026412964, -0.011710693128407001, -0.006272631697356701, 0.012992593459784985, 0.023274501785635948, -0.007885022088885307, 0.00608902657404542, 0.03851041942834854, -0.016597937792539597, -0.011083096265792847, 0.021698832511901855, -0.0011258355807512999, 0.008252233266830444, 0.01599704660475254, -0.015529687516391277, -0.012712177820503712, 0.01566321961581707, 0.03036501258611679, -0.03220774605870247, -0.012511881068348885, 0.018654320389032364, 0.016304168850183487, -0.00621254276484251, 0.016637997701764107, 0.006733314599841833, 0.022366490215063095, 0.01637093536555767, 0.006533017847687006, 0.02139171026647091, -0.008339028805494308, 0.023755215108394623, -0.016050459817051888, -0.006766697391867638, -0.009153569117188454, 0.010789327323436737, 0.0024553064722567797, -0.008345704525709152, -0.024703286588191986, -0.001947887591086328, 0.009607575833797455, 0.01721218228340149, 0.015062328428030014, -0.004276339430361986, -0.00816543772816658, 0.04727007448673248, 0.009707723744213581, -0.025718124583363533, 0.004139469470828772, -0.018787851557135582, 0.008906536735594273, -0.007758167572319508, -0.032688457518815994, -0.003515210933983326, 0.031086081638932228, 0.020643936470150948, -0.007484428118914366, -0.004012614954262972, 0.025905068963766098, -0.006379456724971533, -0.016758175566792488, -0.00016472335846628994, -0.018534142524003983, -0.029056405648589134, 0.021899130195379257, 0.025971833616495132, -0.006776712369173765, 0.007678048685193062, -0.009467368014156818, -0.004650226794183254, -0.029430294409394264, -0.0005474782665260136, -0.016731468960642815, -0.027253733947873116, 0.044546034187078476, 0.009701047092676163, -0.008078642189502716, 0.025971833616495132, 0.009660988114774227, 0.009494073688983917, 0.03955196589231491, 0.014821971766650677, 0.01036202721297741, 0.0025454401038587093, 0.009634281508624554, -0.004656903445720673, 0.0006384464213624597, -0.01536945067346096, -0.0017959957476705313, 0.008612767793238163, -0.022606845945119858, 0.007524487562477589, 0.016304168850183487, 0.0032598322723060846, 0.039792321622371674, 0.038483716547489166, -0.017092004418373108, 0.010749268345534801, -0.007651342544704676, 0.026839787140488625, 0.019936220720410347, 0.01491544395685196, -0.010201789438724518, 0.015062328428030014, 0.015409509651362896, 0.013279685750603676, -0.0060022310353815556, 0.01297256350517273, 0.017813073471188545, -0.003892436856403947, 0.012458468787372112, -0.01536945067346096, -0.016277462244033813, -0.0004243791045155376, 0.026706255972385406, -0.0064829434268176556, 0.019882807508111, 0.04000597074627876, -0.02953711897134781, 0.006479605566710234, 0.008853123523294926, 0.016571231186389923, -0.006479605566710234, 0.005374634172767401, 0.0023852025624364614, 0.026465900242328644, -0.0019228503806516528, 0.002947703003883362, -0.6212943196296692, 5.15412466484122e-06, -0.03087243251502514, -0.03322258219122887, -0.0007657184032723308, 0.017092004418373108, 0.011603868566453457, -0.013279685750603676, -0.03228786215186119, 0.047643959522247314, -0.01966915838420391, 0.012999270111322403, 0.0096876947209239, -0.025504473596811295, 0.003705492941662669, -0.03303563967347145, 0.02088429220020771, -0.0402730330824852, -0.021231474354863167, 0.017532657831907272, 0.0012001123977825046, 0.014341259375214577, 0.0004502507799770683, 0.023821979761123657, 0.010502235032618046, 0.015089035034179688, 0.003132977755740285, 0.01896144077181816, 0.02577153779566288, 0.02610536478459835, -0.028014862909913063, 0.004389840643852949, -0.01165728084743023, -0.022793790325522423, 0.04353119805455208, 0.005408016964793205, 0.005424708127975464, 0.02669290266931057, 0.01925520971417427, 0.02431604638695717, 0.015970341861248016, 0.0010799341835081577, 0.04467956721782684, -0.0016090519493445754, 0.037495583295822144, -0.022166192531585693, -0.014221081510186195, 0.020416932180523872, 0.008692886680364609, -0.016157284379005432, -0.014488143846392632, 0.02710684947669506, 0.021191414445638657, -0.01599704660475254, 0.011663957498967648, -0.018106842413544655, 0.02088429220020771, 0.005197705235332251, -0.01578339748084545, -0.005017437972128391, 0.021698832511901855, 0.019775982946157455, -0.014221081510186195, 0.012625382281839848, 0.0054113552905619144, 0.020643936470150948, -0.014821971766650677, 0.02618548460304737, -0.042997073382139206, -0.006576415617018938, 0.013059359043836594, 0.024129102006554604, -0.016758175566792488, 0.0006722465623170137, -0.003505196189507842, 0.03538578748703003, 0.02263355255126953, 0.006422854494303465, 0.02463652193546295, 0.017933251336216927, 0.014728500507771969, -0.020163223147392273, -0.014581616036593914, -0.005117586348205805, 0.047643959522247314, 0.024449577555060387, -0.012471821159124374, 0.03129973262548447, 0.027961449697613716, 0.01129674632102251, 0.008492588996887207, 0.015169152989983559, -0.022500021383166313, -0.04139469563961029, -0.014394671656191349, 0.010335320606827736, -0.019882807508111, 0.0006801749696023762, -0.014474790543317795, -0.02535758912563324, -0.034397657960653305, -0.014474790543317795, 0.0029093127232044935, 0.01687835343182087, -0.007143923547118902, 0.008779681287705898, 0.010181760415434837, 0.01966915838420391, 0.03578638285398483, -0.012985916808247566, -0.00574518321081996, -0.03303563967347145, 0.0014296192675828934, 0.010662472806870937, -0.0003033663670066744, -0.028175100684165955, 0.00912686251103878, -0.01617063768208027, -0.004219588357955217, -0.023915452882647514, 0.0004435742157511413, 0.005992216058075428, -0.017559362575411797, -0.0007715604151599109, 0.03087243251502514, -0.009494073688983917, 0.005962171591818333, -0.025865009054541588, -0.011724046431481838, -0.005247779190540314, 0.00721736578270793, 0.008439176715910435, -0.0062826466746628284, -0.012571970000863075, 0.008806387893855572, 0.00366543373093009, -0.0021682141814380884, -0.006012246012687683, 0.022379841655492783, 0.002466990379616618, 0.0005015768692828715, 0.00757122365757823, -0.0019512258004397154, -0.007364250253885984, -0.021778952330350876, -0.02121812105178833, -0.02176559902727604, -0.010916181840002537, 0.009060096926987171, -0.00669325515627861, 0.0026155440136790276, -0.018106842413544655, -0.009467368014156818, 0.01484867837280035, -0.015596453100442886, -0.003772258758544922, 0.003541917074471712, 0.004102748353034258, -0.015543040819466114, -0.007591253146529198, 0.0016866669757291675, 0.02322109043598175, -0.040540095418691635, 0.010488881729543209, -0.01791989803314209, -0.002889283001422882, -0.04385167360305786, 0.026198837906122208, -0.024249279871582985, -0.023501506075263023, -0.014287847094237804, 0.002640580991283059, 0.0061524538323283195, -0.00816543772816658, -0.016637997701764107, 0.04443921148777008, -0.013132801279425621, 0.0006563896895386279, -0.019495567306876183, -0.007204012479633093, 0.012244818732142448, 0.004900597967207432, -0.020617229864001274, -0.015502981841564178, 0.0065897684544324875, 0.0013603499392047524, 0.03148667514324188, -0.013066035695374012, -0.017225535586476326, 0.028789343312382698, 0.023488152772188187, 0.02418251521885395, -0.014715147204697132, 0.008192144334316254, -0.02080417424440384, -0.002617213176563382, 0.005878714378923178, 0.004807126242667437, 0.03421071544289589, 0.04457274079322815, 0.01950892060995102, -0.001615728484466672, 0.008959949016571045, -0.02681308053433895, 0.030925843864679337, -0.015756690874695778, 0.007437692489475012, -0.010061581619083881, 0.02133829891681671, -0.0033032300416380167, -0.012224788777530193, -0.0009322152473032475, -0.038830894976854324, -0.03656086325645447, 0.020149869844317436, 0.025157293304800987, -0.013019300065934658, 0.012565293349325657, 0.013573454692959785, 0.002108125016093254, -0.006843477953225374, 0.03778935223817825, 0.019281916320323944, 0.022192899137735367, 0.01762612909078598, -0.014728500507771969, -0.004633535631000996, -0.02176559902727604, -0.015129094012081623, -0.03867065906524658, -0.003892436856403947, 0.003909128252416849, 0.014207728207111359, 0.005932127125561237, 0.03738875687122345, 0.020790820941329002, 0.03413059562444687, -0.02581159584224224, 0.05359945446252823, -0.016718115657567978, -0.007424339186400175, 0.029804181307554245, 0.0005449745221994817, -0.03538578748703003, -0.0042229266837239265, -0.007170629687607288, 0.032688457518815994, -0.005127601325511932, -0.0018160253530368209, 0.028789343312382698, 0.004513357300311327, -0.01075594499707222, 0.004533386789262295, 0.009834579192101955, -0.00209811027161777, 0.007898375391960144, 0.009300453588366508, 0.016090519726276398, 0.023902099579572678, 0.02694661170244217, -0.0012844039592891932, -0.004780419636517763, 0.017185475677251816, 0.00616246834397316, 0.013439923524856567, 0.015489628538489342, -0.003999261651188135, -0.03386353328824043, -0.009580869227647781, 0.0031930666882544756, -0.04996740445494652, -0.04339766502380371, -0.012451792135834694, -0.0020363519433885813, 0.02894958108663559, 0.017612775787711143, 0.006356088910251856, 0.027347205206751823, 0.013727015815675259, 0.01570327766239643, -0.03127302601933479, -0.029937712475657463, 0.021992601454257965, 0.02777450531721115, -0.011690663173794746, -0.010689178481698036, -0.02364838868379593, 0.009767812676727772, 0.004887244664132595, -0.003127970267087221, -0.008779681287705898, -0.008826417848467827, 0.024529695510864258, -0.00046402119915001094, -0.011016330681741238, 0.007183982990682125, 0.014047490432858467, -0.01595698855817318, -0.00018308390281163156, -0.008746298961341381, 0.0010290254140272737, -0.009100156836211681, -0.003022814402356744, 5.030895408708602e-05, 0.04067362844944, 0.009247041307389736, 0.017278946936130524, -0.01662464439868927, -0.013700309209525585, -0.027667680755257607, 0.016824942082166672, -0.04155493527650833, -0.02910981886088848, -0.0062425872310996056, 0.01737242005765438, -0.021111294627189636, 0.027173615992069244, -0.002463652053847909, 0.02977747470140457, -0.0071305702440440655, -0.006232572253793478, -0.021578654646873474, -0.009981462731957436, 0.0205905232578516, 0.029643943533301353, 0.014341259375214577, -0.024089042097330093, 0.011517073027789593, -0.0334896445274353, -0.0031763752922415733, 0.008846446871757507, -0.015048975124955177, 0.021859070286154747, -0.01808013580739498, -0.006436207797378302, -0.015302685089409351, 0.009160245768725872, -0.006573077291250229, 0.008846446871757507, 0.01410090271383524, 0.0044799745082855225, -0.002173221670091152, -0.0031530072446912527, -0.019535625353455544, 0.001846069935709238, -0.0030011155176907778, 0.038830894976854324, 0.012732207775115967, -0.006766697391867638, 6.760020914953202e-05, 0.020363520830869675, 0.006462913937866688, 0.01188428420573473, -0.02806827425956726, -0.022486668080091476, 0.0041561610996723175, 0.021071236580610275, 0.028308631852269173, -0.012144669890403748, 0.021565301343798637, 0.012485174462199211, 0.012398378923535347, 0.00585868488997221, -0.023835333064198494, 0.009060096926987171, 0.009053421206772327, 0.001393732731230557, 0.013066035695374012, -0.007504458073526621, 0.004536725115031004, -0.02335462160408497, 0.0034100550692528486, -0.0054180314764380455, -0.002019660547375679, -0.011049713008105755, -0.004573446232825518, -0.005160984117537737, -0.023821979761123657, 0.021618714556097984, 0.006386133376508951, -0.00036554186954163015, -0.041421402245759964, -0.020443638786673546, -0.008385764434933662, -0.012124639935791492, -0.013994078151881695, 0.014154315926134586, -0.010508911684155464, 0.007090510800480843, -0.005561577621847391, -0.011163215152919292, -0.006659872364252806, -0.012151346541941166, 0.0006284315604716539, 0.015729984268546104, -0.02243325486779213, -0.018360551446676254, -0.026198837906122208, 0.03129973262548447, 0.021939190104603767, 0.023448092862963676, -0.0003344541182741523, 0.0022483328357338905, 0.008005199953913689, 0.004820479080080986, -0.05448076128959656, -0.014474790543317795, -0.024129102006554604, 0.004242956638336182, 0.01842731609940529, 0.010475528426468372, 0.001045716810040176, -0.024462930858135223, 0.03282198682427406, -0.0051109096966683865, -0.00456343125551939, -0.007678048685193062, -0.012004462070763111, 0.007344220299273729, 0.012672118842601776, 0.0047303456813097, 0.02406233735382557, 0.024756699800491333, -0.022313077002763748, 0.003036167472600937, -0.016517819836735725, -0.0036153593100607395, -0.04045997932553291, -0.02585165575146675, -0.009727753698825836, -0.0025137262418866158, 0.006586430594325066, -0.0058019342832267284, -0.0016958472551777959, 0.02294067293405533, -0.015169152989983559, 0.025798242539167404, 0.028922874480485916, 0.002725707134231925, 0.012231465429067612, -0.017305653542280197, 0.04144810885190964, -0.014314552769064903, -0.006406163331121206, 0.00022157846251502633, -0.046388767659664154, 0.0030511897057294846, -0.01004822924733162, -0.004780419636517763, 0.016477759927511215, -0.002680640434846282, -0.03821665048599243, -0.0022082736250013113, -0.007057128008455038, 0.02326114848256111, 0.006646519526839256, -0.008118702098727226, 0.005818625446408987, 0.0033132447861135006, 0.008826417848467827, -0.023007439449429512, 0.0006613971199840307, -0.0041127633303403854, -0.005578269250690937, 0.009160245768725872, 0.013600160367786884, 0.019482214003801346, -0.02983088791370392, 0.01462167501449585, -0.028976287692785263, -0.017519304528832436, 0.01503562182188034, 0.01194437313824892, 0.0316736176609993, 0.012985916808247566, -0.012785620056092739, -0.003635389031842351, 0.00034780724672600627, 0.00011371022992534563, 0.004443253390491009, -0.012999270111322403, -0.003808979643508792, 0.029457001015543938, 0.03546590730547905, 0.017986662685871124, -0.004192882217466831, 0.01976262964308262, 0.01330639235675335, -0.014902090653777122, 0.01954897865653038, -0.018814558163285255, -0.020710701122879982, -0.031086081638932228, 0.002885944675654173, -0.0030912491492927074, 0.008799711242318153, 0.020456992089748383, -0.017866484820842743, 0.012244818732142448, 0.03236798197031021, -0.006032275501638651, 0.024075688794255257, -0.03495848923921585, -0.018908029422163963, -0.01491544395685196, 0.006072334945201874, -0.016597937792539597, 0.0205905232578516, -0.029002994298934937, 0.0038690688088536263, -0.0010106648551300168, 0.008078642189502716, 0.004727007355540991, 0.022646905854344368, 0.0062592788599431515, 0.0031580147333443165, 0.010896152816712856, 0.03701487183570862, 0.01884126290678978, 0.0005345424287952483, -0.013279685750603676, -0.019642451778054237, 0.020270047709345818, -0.010315291583538055, -0.006179159972816706, 0.024623168632388115, -0.0017192151863127947, -0.004316398408263922, -0.029857594519853592, 0.007337543647736311, -0.0026205512695014477, -0.037362050265073776, 0.02689320035278797, -0.023781921714544296, -0.013106094673275948, -0.02569141797721386, -0.021231474354863167, -0.03621368482708931, 0.012411732226610184, 0.025931773707270622, -0.01543621625751257, 0.0009055089903995395, -0.0058086104691028595, -0.010321968235075474, 0.01153042633086443, -0.020443638786673546, 0.047136541455984116, -0.0023735184222459793, 0.0425964780151844, 0.02514394000172615, 0.00727745471522212, -0.011537102982401848, 0.01900150068104267, 0.020363520830869675, 0.002947703003883362, 0.03714840114116669, 0.003203081665560603, -0.009767812676727772, 0.001362019102089107, -0.011103126220405102, -0.012057874351739883, -0.02217954583466053, -0.03234127536416054, -0.011870930902659893, 0.008379087783396244, 0.007137246895581484, -0.00174425239674747, 0.0067166234366595745, -0.05004752427339554, 0.005918773822486401, -0.021832363680005074, -0.0033716647885739803, -0.019602391868829727, -0.010829387232661247, -0.04777749255299568, 0.014528202824294567, 0.01338651031255722, 0.0175059512257576, 0.026959965005517006, 0.0011166553013026714, -0.014608321711421013, -0.031513381749391556, -0.01896144077181816, 0.01658458448946476, 0.007204012479633093, 0.019775982946157455, -0.01048220507800579, -0.003989247139543295, 0.03442436456680298, -0.012184728868305683, 0.0012810657499358058, -0.023154323920607567, -0.0017692894907668233, 0.03079231269657612, -0.020603876560926437, 0.012812326662242413, -0.00806528888642788, 0.010916181840002537, -0.002295068930834532, -0.0014938812237232924, -0.015008916147053242, -0.0196290984749794, 0.005167660303413868, -0.008225526660680771, 0.016637997701764107, 0.01555639412254095, -0.010562323965132236, -0.002548778196796775, -0.00740430923178792, -0.0011266701621934772, -0.015583100728690624, -0.010622412897646427, -0.005768551491200924, -0.012652088887989521, -0.03872407227754593, -0.02247331477701664, -0.002495365682989359, 0.009887991473078728, -0.003173036966472864, -0.025451062247157097, 0.025117233395576477, 0.04406532272696495, -0.03284869343042374, 0.01633087545633316, 0.0026305662468075752, -0.015155800618231297, -0.04526710510253906, 0.017065297812223434, -0.0006672391318716109, -0.006726638413965702, 0.026038600131869316, -0.012819002382457256, -0.03057866357266903, -0.027934743091464043, -0.006676563993096352, 0.00833235215395689, -0.01514244731515646, -0.017238888889551163, 0.0038223329465836287, 0.007644665893167257, 0.02647925354540348, -0.03741546347737312, 0.00242860009893775, 0.003585314843803644, -0.013146154582500458, 0.012692147865891457, 0.00929377693682909, -0.01207122765481472, 0.008178791031241417, 0.0003413393278606236, -0.006816771812736988, -0.011049713008105755, -0.01190431322902441, -0.009640958160161972, 0.0005579103599302471, -0.021405063569545746, 0.007030421867966652, 0.00413613161072135, -0.030632074922323227, -0.004840509034693241, -0.005100894719362259, 0.0020046383142471313, -0.004152822773903608, 0.005137615837156773, -0.01384719368070364, 0.03474484011530876, -0.000520354718901217, 0.0296973567456007, -0.040166210383176804, -0.008439176715910435, 0.009887991473078728, 0.01813354715704918, -0.011730723083019257, -0.026425840333104134, -0.015636513009667397, 0.046388767659664154, 0.006753344554454088, -0.011023007333278656, -0.009640958160161972, -0.012672118842601776, -0.026959965005517006, -0.03415730223059654, 0.009620929136872292, -0.007097187452018261, 0.0301513634622097, 0.020363520830869675, -0.0008671187679283321, 0.01817360706627369, 0.0014705131761729717, 0.027827918529510498, -0.02643919363617897, -0.010468852706253529, -0.02991100586950779, 0.01432790607213974, 0.00893991906195879, 0.016357582062482834, -0.015342744067311287, -0.030525250360369682, 0.009427308104932308, -0.0002424427366349846, 0.021939190104603767, 0.02322109043598175, -0.007030421867966652, -0.02547776885330677, -0.022660257294774055, 0.01117656845599413, 0.023661741986870766, 0.011557132005691528, -0.0047436985187232494, -0.03522555157542229, -0.017906544730067253, 0.009413954801857471, 0.013666926883161068, -0.0021648758556693792, -0.004780419636517763, 0.015209212899208069, -0.022820495069026947, 0.02259349264204502, -7.719777204329148e-05, -0.02017657645046711, -0.003301560878753662, -0.019789336249232292, 0.02005639858543873, 0.0043130605481565, 0.02498370222747326, 0.01666470430791378, -0.018974794074892998, 0.013807134702801704, -0.02844216302037239, -0.004009276628494263, -0.010989624075591564, -0.0175059512257576, 0.02347479946911335, 0.011189920827746391, -0.020537110045552254, -0.021378356963396072, 0.0292433500289917, -0.012565293349325657, 0.010595707222819328, 0.007945111021399498, -0.000743602286092937, -0.024583108723163605, -0.0026689565274864435, -0.010081611573696136, -0.014821971766650677, 0.007751490920782089, -0.00346179842017591, 0.004252971149981022, 0.0074310158379375935, -0.03346293792128563, -0.0008579384884797037, 0.027347205206751823, -0.002924334956333041, 0.003418400650843978, 0.01225817110389471, -0.02447628416121006, -0.007284131366759539, 0.021044529974460602, -0.03746887668967247, -0.0025020423345267773, 0.18309809267520905, 0.016517819836735725, 0.009013361297547817, 0.026198837906122208, -0.0048538618721067905, 0.02080417424440384, -0.0020079766400158405, -0.010969595052301884, -0.005995554383844137, 0.01825372502207756, -0.0007281627622433007, 0.012391703203320503, -0.0010507242986932397, 0.0030244835652410984, 0.00638947170227766, -0.019775982946157455, -0.01758606918156147, -0.017773013561964035, -7.672832725802436e-05, 0.022112779319286346, 0.01650446653366089, -0.0009914697147905827, -0.009834579192101955, -0.022780437022447586, 0.03634721413254738, 0.005631681531667709, -0.006573077291250229, 0.016571231186389923, 0.014968856237828732, -0.03116620145738125, -0.02100447006523609, -0.00490727461874485, 0.004626858979463577, -0.007337543647736311, -0.02402227744460106, 0.008679533377289772, 0.034397657960653305, -0.01255194004625082, 0.0222596637904644, -0.013980724848806858, 0.011390218511223793, 0.007551193702965975, -0.014221081510186195, 0.006469590589404106, 0.016384288668632507, 0.010629089549183846, -0.024716639891266823, -0.0031847211066633463, -0.0032781928312033415, 0.032314568758010864, -0.03199409320950508, -0.02814839407801628, 0.001271050889045, 0.010388733819127083, -0.015409509651362896, -0.00816543772816658, -0.0029794166330248117, 0.0037655821070075035, 0.006689917296171188, 0.0068067568354308605, 0.008639473468065262, 0.00904006790369749, -0.004369811154901981, 0.024075688794255257, -0.015222566202282906, 0.013066035695374012, -0.024997055530548096, 0.020310107618570328, -0.021778952330350876, -0.019348682835698128, -0.018013369292020798, 0.013860546983778477, 0.016237404197454453, -0.0015823456924408674, -0.0033883561845868826, -0.018640967085957527, 0.001313613960519433, -0.008218850009143353, 0.02999112568795681, 0.01621069759130478, -0.014274493791162968, -0.020189929753541946, -0.0017192151863127947, -0.00395586434751749, -0.03923149034380913, -0.01255194004625082, 0.022446608170866966, 0.0011675640707835555, 0.015983693301677704, -0.006379456724971533, -0.030311601236462593, -0.0002987762272823602, 0.00851929560303688, 0.006285985000431538, -0.017599422484636307, 0.018654320389032364, -0.010669149458408356, 0.004930642433464527, -0.03554602712392807, -0.006666549015790224, -0.024716639891266823, 0.05923447385430336, 0.03154008835554123, -0.0030244835652410984, 0.011483689770102501, -0.006669887341558933, 0.003802303224802017, 0.029189936816692352, 0.002583830151706934, -0.01617063768208027, -0.009440661408007145, -0.03036501258611679, -0.01225817110389471, -0.019108325242996216, 0.022419901564717293, -0.014821971766650677, 0.015409509651362896, -0.01084273960441351, 0.017345713451504707, 0.009140215814113617, -0.007003715727478266, -0.02221960574388504, -0.02113800123333931, 0.0032431408762931824, 0.017118709161877632, -0.007691401522606611, -0.028789343312382698, 0.014821971766650677, 0.010562323965132236, 0.003581976518034935, 0.019014853984117508, -0.02481011115014553, 0.013686955906450748, -0.00799852330237627, -0.01766618900001049, -0.0089799789711833, -0.005561577621847391, -0.024756699800491333, 0.0015172491548582911, 0.020951056852936745, 0.008632796816527843, 0.004887244664132595, -0.012465144507586956, -0.009887991473078728, -0.013833840377628803, -0.03434424474835396, -0.029964419081807137, 0.0020213297102600336, 0.017826424911618233, -0.026866493746638298, -0.006800080183893442, -0.003571961773559451, 0.0067399912513792515, -0.023661741986870766, -0.0026956626679748297, -0.018454022705554962, -0.0022967380937188864, -0.03645404055714607, 0.03234127536416054, -0.006012246012687683, -0.02151188999414444, -0.018120193853974342, 0.01536945067346096, -0.0034551217686384916, -0.021672125905752182, -0.013486659154295921, -0.16707433760166168, -0.0004174938949290663, -0.0019145046826452017, -0.017732953652739525, 0.001578172785229981, -0.02849557437002659, 0.03525225818157196, -0.016931766644120216, 0.017359066754579544, -0.013299715705215931, -0.010255202651023865, -0.000133739915327169, -0.02589171566069126, -0.014688440598547459, -0.004446591716259718, -0.010315291583538055, -0.020603876560926437, 0.016143931075930595, 0.01611722633242607, 0.0184673760086298, 0.024489637464284897, -0.02426263317465782, 0.028762636706233025, 0.008732945658266544, 0.007731460966169834, 0.00370215461589396, 0.007070481311529875, 0.017439184710383415, 0.0045701079070568085, -0.030471837148070335, 0.02418251521885395, 0.017519304528832436, 0.020670641213655472, -0.01301262341439724, 0.00626595551148057, 0.001947887591086328, -0.004780419636517763, -0.014821971766650677, -0.007103864103555679, -0.009300453588366508, 0.0175059512257576, 0.01016840711236, -0.009146892465651035, 0.0012693817261606455, -0.012758913449943066, 0.013740369118750095, 0.02977747470140457, -0.04067362844944, 0.011730723083019257, -0.011643927544355392, 0.032314568758010864, -0.02197924815118313, 0.007270778063684702, -0.010729238390922546, 0.04903268441557884, -0.034237418323755264, -0.005524856504052877, 0.00035385790397413075, -0.02100447006523609, -0.000675584829878062, -0.0017242226749658585, -0.04537392780184746, 0.006863507907837629, 0.022086072713136673, -0.015302685089409351, -0.03466472029685974, -0.015796750783920288, 0.034771546721458435, -0.04900597780942917, 0.0017876500496640801, 0.005888729356229305, 0.020016338676214218, -0.0016958472551777959, -0.011383541859686375, 0.011483689770102501, 0.0378427654504776, -0.005738506559282541, 0.009407279081642628, -0.0005161818698979914, -0.024569755420088768, -0.02639913372695446, 0.02294067293405533, 0.004860538523644209, -0.001278562005609274, 0.004710315726697445, 0.007925081066787243, -0.01088279951363802, 0.020670641213655472, -0.0018711070297285914, -0.027640974149107933, 0.009607575833797455, -0.05287838727235794, -0.023862039670348167, -0.008439176715910435, -0.01213799323886633, 0.01484867837280035, 0.007290808018296957, -0.031353145837783813, 0.022406548261642456, -0.02339467965066433, 0.010502235032618046, -0.0012193075381219387, -0.004917289596050978, -0.014274493791162968, 0.027587562799453735, 0.016384288668632507, -0.006179159972816706, 0.030979257076978683, 0.03971220180392265, -0.004820479080080986, -0.021952541545033455, 0.0013278016122058034, 0.0064161778427660465, 0.02820180542767048, -0.006125747226178646, 0.03386353328824043, 0.008465883322060108, -0.006646519526839256, 0.00656973896548152, 0.016344228759407997, 0.03340952470898628, 0.001353673404082656, 0.011757428757846355, -0.0021331622265279293, -0.01678488217294216, 0.009961433708667755, -0.1208190992474556, -0.04620182141661644, -0.0019545641262084246, 0.0004590137687046081, -0.00679674232378602, 0.021485183387994766, -0.008559354580938816, -0.002613874850794673, -0.02455640211701393, 0.04585464298725128, 0.013700309209525585, -0.02406233735382557, 0.002488689264282584, -0.004723669029772282, -0.024302693083882332, 0.0013278016122058034, 0.006306014489382505, 0.008779681287705898, -0.006689917296171188, 0.018200313672423363, 0.011690663173794746, -0.009407279081642628, -4.415399598656222e-05, 0.018267078325152397, -0.008512618951499462, 0.029430294409394264, -0.026425840333104134, 0.015810104086995125, -0.009474044665694237, 0.021231474354863167, 0.004249632824212313, -0.005655049812048674, 0.01958903856575489, -0.012999270111322403, 0.013172861188650131, 0.015209212899208069, -0.01012834720313549, -0.011049713008105755, 0.032314568758010864, 0.017986662685871124, -0.004757051821798086, -0.0068902140483260155, -0.02539764903485775, 0.001220142119564116, 0.011023007333278656, -0.011096449568867683, -0.01829378493130207, 0.018654320389032364, 0.0032715164124965668, -0.030605370178818703, -0.04318401589989662, 0.0016115555772557855, -0.045934759080410004, -0.007791550364345312, 0.004002599976956844, -0.015543040819466114, 0.0016791558591648936, 0.006533017847687006, -0.0029410263523459435, 0.0005295349983498454, -0.016718115657567978, 0.0013762067537754774, -0.012785620056092739, 0.007858315482735634, 0.0015990370884537697, -0.007778197061270475, -0.004833832383155823, -0.011697339825332165, 0.020937705412507057, -0.024369457736611366, -0.011737399734556675, 0.030044537037611008, -0.01432790607213974, 0.02113800123333931, -0.011577161960303783, 0.024623168632388115, -0.015516335144639015, 0.004339766688644886, 0.021538594737648964, -0.003351635066792369, -0.026252249255776405, -0.00598553940653801, 0.02101782336831093, -0.009320483542978764, 0.0006551378173753619, 0.012445115484297276, 0.012398378923535347, -0.0035619467962533236, 0.027934743091464043, -0.007945111021399498, -0.018160253763198853, 0.022660257294774055, 0.03613356500864029, -0.03087243251502514, -0.005988877732306719, 0.0032865386456251144, 0.0005704289069399238, -0.004169514402747154, -0.0031930666882544756, 0.042089059948921204, -0.052985209971666336, 0.0018477390985935926, -0.03800300136208534, 0.015636513009667397, 0.004172852262854576, -0.0072574252262711525, -0.003925819415599108, -0.004873891826719046, 0.02518399991095066, -0.01984274759888649, -9.232436241290998e-06, -0.005070850253105164, -0.028922874480485916, 0.003855715738609433, -0.009640958160161972, -0.005334574729204178, 0.0020129841286689043, -0.026959965005517006, 0.023087557405233383, -0.010862769559025764, 0.01084273960441351, 0.005578269250690937, 0.018534142524003983, -0.0031847211066633463, 0.019575685262680054, -0.0052744853310287, -0.02201930806040764, -0.001511407201178372, -0.03007124364376068, 0.012451792135834694, -0.012745561078190804, -0.01236499659717083, -0.0027807888109236956, -0.0094606913626194, -0.029270056635141373, 0.0369347520172596, 0.007905052043497562, -0.0022383180912584066, 0.027253733947873116, 0.009080126881599426, 0.016891706734895706, 0.009914697147905827, -0.0010932873701676726, -0.03944513946771622, 0.0012618706095963717, 0.004810464568436146, 0.018066782504320145, -0.01004822924733162, 0.0006776712252758443, 0.005818625446408987, 0.0036454040091484785, 0.008245556615293026, 0.043424371629953384, 0.011683986522257328, -0.024823464453220367, -0.03362317755818367, -0.006426192820072174, -0.02176559902727604, 0.012171376496553421, -0.035198844969272614, 0.002300076186656952, 0.01177745871245861, 0.0087529756128788, -0.001246848376467824, 0.008806387893855572, -0.022540079429745674, -0.012892444618046284, -0.03407718241214752, -0.012785620056092739, 0.028709225356578827, -0.015048975124955177, -0.015289331786334515, -0.015983693301677704, -0.006215881090611219, 0.022820495069026947, -0.015155800618231297, 0.036988165229558945, 0.024823464453220367, -0.012518557719886303, 0.01010831817984581, -0.0010265216697007418, 0.01737242005765438, 0.03129973262548447, -0.018908029422163963, -0.013359804637730122, 0.02639913372695446, 0.02785462513566017, 0.007397633045911789, -0.019402094185352325, 0.002715692389756441, -0.010629089549183846, 0.009827902540564537, 0.00697700958698988, -0.001291915075853467, -0.015890222042798996, -0.01783977821469307, -0.020416932180523872, 0.006770035717636347, -0.017813073471188545, 0.00988131482154131, 0.030525250360369682, 0.0102952616289258, 0.02310091070830822, -0.007070481311529875, 0.017479244619607925, -0.01683829352259636, -0.04467956721782684, 0.014862031675875187, -0.022326430305838585, -0.016931766644120216, -0.011310099624097347, 0.04369143396615982, -0.004273001104593277, 0.01687835343182087, 0.01110980287194252, 0.0018744453554973006, 0.0031980741769075394, -0.005194366909563541, 0.011790812015533447, -0.010508911684155464, -0.015008916147053242, 0.009747783653438091, -0.011063066311180592, -0.000638029130641371, 0.02431604638695717, -0.0089799789711833, 0.025704771280288696, 0.023621683940291405, 0.010388733819127083, -0.026719609275460243, -0.007918404415249825, 0.024075688794255257, 0.001979601103812456, -0.014728500507771969, -0.012705501168966293, -0.019909514114260674, -0.008385764434933662, -0.02523741126060486, 0.016571231186389923, 0.009761136956512928, 0.002076411386951804, 0.06575080007314682, -0.007504458073526621, 0.006406163331121206, -0.01395401917397976, -0.013299715705215931, 0.0031663605477660894, 0.043718140572309494, -0.009253717958927155, -0.01466173492372036, -0.024302693083882332, 0.025838302448391914, 0.010228496044874191, -0.004947334062308073, -0.020109809935092926, -0.001286907703615725, 0.009373895823955536, -0.024195868521928787, 0.007511134259402752, -0.028308631852269173, -0.02205936796963215, 0.03250151500105858, 0.01582345739006996, 0.013613513670861721, 0.022152839228510857, -0.015502981841564178, -0.002084757201373577, 0.003333274507895112, 0.03725522756576538, -0.022273017093539238, -0.024796757847070694, -0.00432307505980134, 0.0005608313949778676, -0.03263504430651665, -0.03383682668209076, 0.005134277511388063, 0.0013586807763203979, 0.006409501191228628, 0.0062425872310996056, 0.02376856841146946, -0.0034250773023813963, -0.007317514158785343, -0.0021198091562837362, -0.01587686873972416, -0.036240387707948685, 0.012164699845016003, -0.004459944553673267, -0.0107759740203619, -0.0013678610557690263, -0.05485465005040169], "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b": [0.011887394823133945, 0.01288309134542942, -0.007227265276014805, -0.0159311406314373, -0.021336350589990616, 0.011785793118178844, 0.008473578840494156, -0.0025739087723195553, 0.000706978258676827, -0.01813928410410881, 0.00649573327973485, 0.015064139850437641, 0.002011712873354554, 0.019087566062808037, -0.004968321416527033, -0.009150923229753971, 0.020740287378430367, 0.019182395190000534, 0.005784521345049143, 0.020659005269408226, 0.010458198375999928, 0.04784760996699333, 0.0051241107285022736, -0.03386722132563591, -0.01967008225619793, 0.027730481699109077, 0.02233881875872612, -0.015971781685948372, 0.011155863292515278, -0.005642279051244259, 0.011792566627264023, 0.006272209342569113, -0.017949627712368965, -0.01763805001974106, -0.024912727996706963, 0.005642279051244259, -0.016974251717329025, -0.013743318617343903, -0.0070172883570194244, -0.009015454910695553, 0.02152600698173046, 0.0026162429712712765, 0.0028770205099135637, -0.0016205465653911233, 0.007593031041324139, 0.006150287576019764, -0.0016069996636360884, -0.0314558744430542, -0.01903337799012661, 0.00574388075619936, 0.01915530115365982, 0.04107416793704033, -0.027798214927315712, -0.011880621314048767, 0.015876954421401024, -0.008873212151229382, 0.008162000216543674, 0.02275877259671688, -0.0007493122830055654, -0.01580921933054924, 0.025671353563666344, 0.006516053341329098, -0.006881819572299719, -0.008107813075184822, -0.012822129763662815, 0.020035848021507263, 0.02546815015375614, -0.010031471028923988, -0.02114669419825077, 0.012666340917348862, 0.016459470614790916, 0.02399154007434845, -0.009313485585153103, 0.014129404909908772, 0.025210760533809662, -0.007085022982209921, 0.0024689205456525087, 0.01843731477856636, 0.004033586010336876, 0.008805477991700172, 0.027107324451208115, -0.010668175294995308, 0.008575180545449257, 0.015240250155329704, 0.02385607175529003, -0.018938550725579262, -0.009469275362789631, 0.00932703260332346, 0.013242083601653576, -0.010376917198300362, -0.00211500795558095, 0.014007482677698135, -0.002184435725212097, -0.0025248012971132994, -0.007308546453714371, 0.02068609930574894, -0.00055499910376966, 0.02148536592721939, -0.023625774309039116, -0.011203276924788952, 0.011596136726439, -0.0017712557455524802, 0.007613351568579674, -0.014319061301648617, -0.013038880191743374, 0.0050631496123969555, 0.0007721726433373988, 0.010112752206623554, 0.01137938629835844, 0.009184790775179863, -0.0268770270049572, 0.04467763751745224, 0.00970634538680315, -0.02809624746441841, 0.008202641271054745, -0.03343372046947479, 0.007674312684684992, -0.015538281761109829, -0.0354386605322361, -0.017990268766880035, 0.020916396751999855, 0.018979191780090332, 0.013777186162769794, -0.02144472487270832, 0.03381303325295448, -0.006990194786339998, -0.01055302657186985, -0.007721726782619953, -0.035411566495895386, -0.03026374988257885, 0.02890906110405922, 0.020780926570296288, 0.006634588818997145, 0.006106260232627392, -0.002153955399990082, 0.00017991961794905365, -0.028665216639637947, 0.007918156683444977, -0.034950971603393555, -0.020794473588466644, 0.029857343062758446, 0.0009093349217437208, 0.004568688105791807, 0.02619968354701996, 0.011995770037174225, 0.000507161661516875, 0.02767629362642765, 0.012280254624783993, 0.016852330416440964, -0.01017371378839016, -0.0036136326380074024, -0.0060825529508292675, -0.0031005442142486572, -0.0104040103033185, 0.003650886472314596, 0.015578921884298325, -0.010702041909098625, 0.03747069463133812, 0.002441826742142439, -0.0159311406314373, 0.018586331978440285, 0.027879497036337852, 0.001672194106504321, -0.00036661268677562475, -0.007803007960319519, 0.0134385135024786, -0.0013081214856356382, 0.032106127589941025, 0.0018339100060984492, 0.02088930271565914, 0.01190771535038948, -0.008026531897485256, -0.026267416775226593, -0.012578286230564117, 0.00736273406073451, 0.0035221909638494253, 0.02279941365122795, -0.022149162366986275, -0.015375718474388123, -0.0038981172256171703, 0.032106127589941025, -0.008886759169399738, 0.007125663571059704, 0.05565061792731285, -0.037226852029561996, -0.0003956114815082401, 0.0017780291382223368, 7.202076085377485e-05, 0.0011421720264479518, 0.01674395427107811, 0.003735554637387395, 0.03505934774875641, 0.001989699201658368, 0.019710723310709, -0.6168711185455322, -0.0007471955614164472, -0.021458271890878677, -0.0410199798643589, 0.02546815015375614, 3.381430360605009e-05, 0.0039015039801597595, -0.007701406255364418, -0.02928837388753891, 0.05242646113038063, -0.01606661081314087, 0.022027241066098213, 0.00818232074379921, -0.023449664935469627, -0.009211884811520576, -0.03587216138839722, 0.016093702986836433, -0.03175390884280205, -0.009035774506628513, 0.0066549088805913925, -0.003999718930572271, 0.012957599014043808, -0.012984693050384521, 0.03492387756705284, 0.01564665697515011, 0.022352365776896477, 0.01158936321735382, 0.005676146596670151, 0.02055063098669052, 0.023788336664438248, -0.020875755697488785, -0.015267343260347843, -0.010363370180130005, -0.00758625753223896, 0.039692383259534836, 0.006942780688405037, -0.0019168847938999534, 0.019277222454547882, 0.002893954049795866, 0.03421944007277489, -0.0009829960763454437, 0.024560509249567986, 0.013364005833864212, 0.0029532217886298895, 0.021973052993416786, -0.038175132125616074, -0.01771933026611805, 0.013824599795043468, 0.003349468344822526, -0.027906591072678566, -0.004670289810746908, 0.023083899170160294, 0.0020946876611560583, -0.001957525499165058, 0.01652720384299755, -0.014508717693388462, 0.022826507687568665, -0.011067807674407959, -0.016256267204880714, -0.01430551428347826, 0.009950189851224422, 0.02801496535539627, 0.0013724691234529018, -0.0015959928277879953, 0.0010109365684911609, 0.02030678652226925, -0.017963174730539322, 0.023341288790106773, -0.03408397361636162, -0.004406125750392675, 0.023869618773460388, 0.0220001470297575, -0.0247908066958189, -5.752135984948836e-05, -0.015863407403230667, 0.029423842206597328, 0.027188606560230255, -0.00666506914421916, 0.011162635870277882, 0.00871064979583025, 0.026118401437997818, -0.005933537147939205, -0.024099914357066154, 0.004402738995850086, 0.05329345911741257, 0.0314558744430542, -0.012070277705788612, 0.009950189851224422, 0.03129331395030022, 0.014847390353679657, 0.002921047853305936, 0.0254816971719265, -0.029478030279278755, -0.02530558779835701, -0.006990194786339998, 0.0293696541339159, -0.016215626150369644, 0.008690329268574715, -0.012212520465254784, -0.029234185814857483, -0.022853601723909378, -0.01201609056442976, 0.010756229981780052, 0.008927399292588234, -0.016296906396746635, 0.023585133254528046, 0.007714953273534775, 0.015497640706598759, 0.02785240299999714, -0.02118733339011669, -0.006011432036757469, -0.04055938497185707, 0.0017475486965849996, 0.028475560247898102, -0.01023467443883419, -0.031808093190193176, 0.016852330416440964, 0.00887998566031456, 0.0056117987260222435, -0.031347502022981644, -0.002685670740902424, -0.0009652158478274941, 0.007342413533478975, 0.00824328139424324, 0.02289424277842045, -0.002109927823767066, 0.006644749082624912, -0.01891145668923855, -0.0160259697586298, 0.001079517649486661, 0.00784364901483059, 0.0072814528830349445, -0.010986526496708393, -0.01419713906943798, -0.0006201934884302318, 0.004064066801220179, 0.012598606757819653, -0.004419672302901745, -0.004619488958269358, 0.00660072173923254, -0.006553307641297579, -0.0027398583479225636, 0.008195867761969566, -0.013844920322299004, -0.0225013829767704, -0.030615968629717827, -0.017475485801696777, -0.017570314928889275, -0.0012082131579518318, -0.010918792337179184, 0.007735273335129023, -0.009807947091758251, -0.028502654284238815, 0.029776060953736305, -0.015592468902468681, -0.005462782923132181, -0.007857195101678371, 0.010492064990103245, -0.023558039218187332, -0.012835676781833172, 0.014386795461177826, 0.014847390353679657, -0.02373414859175682, -0.003850703127682209, -0.014224233105778694, -0.01666267402470112, -0.004399352241307497, 0.027229245752096176, -0.01738065853714943, -0.03535737842321396, -0.02174275554716587, 0.007633671630173922, 0.005977564491331577, -0.01666267402470112, -0.014752562157809734, 0.036224380135536194, -0.005036056041717529, -0.013140481896698475, -0.004023425746709108, -0.01933141052722931, 0.012727301567792892, -0.009320259094238281, -0.017868345603346825, -0.011440347880125046, 0.009489595890045166, -0.0031259446404874325, 0.00824328139424324, -0.005564384628087282, -0.034056879580020905, 0.016012422740459442, 0.006234955508261919, 0.025237854570150375, -0.009597971104085445, -0.0010067031253129244, -0.019439784809947014, 0.006644749082624912, 0.008717423304915428, 0.029938623309135437, 0.037362318485975266, 0.03868991509079933, 0.012165105901658535, -0.00611303374171257, 0.015673751011490822, -0.020455801859498024, 0.021593740209937096, 0.007003741338849068, 0.03216031566262245, -0.009056095033884048, 0.008378750644624233, -0.0042300159111619, -0.009672478772699833, 0.0011692658299580216, -0.031076563522219658, -0.033758845180273056, 0.03267509490251541, 0.0076675391755998135, 0.00024659570772200823, 0.016987798735499382, 0.023205820471048355, 0.014183592051267624, -0.02178339660167694, 0.027987871319055557, 0.011359065771102905, 0.008825797587633133, -0.0029786222148686647, -0.005991111509501934, 0.0013411419931799173, -0.021011224016547203, -0.011514855548739433, -0.0479830801486969, -0.009178017266094685, -0.01754322089254856, 0.01375686563551426, -0.002849926706403494, 0.03928597643971443, 0.02098412998020649, 0.03679335117340088, 0.001816976466216147, 0.02369350753724575, -0.006119806785136461, -0.004260496702045202, 0.03768744319677353, 0.0036000856198370457, -0.04074903950095177, -0.008168773725628853, 0.012117692269384861, 0.03129331395030022, 0.0033308411948382854, 0.008981587365269661, 0.01644592359662056, 0.011338746175169945, 0.004934454336762428, -0.013391099870204926, 0.02034742757678032, -0.007057928945869207, 0.004639809485524893, 0.015822766348719597, -0.0010922178626060486, 0.019006285816431046, 0.024695977568626404, -0.001685741008259356, 0.0033020542468875647, 0.020239051431417465, 0.013174349442124367, 0.01385846734046936, -0.0013775492552667856, 0.005052989348769188, -0.020333880558609962, -0.008168773725628853, 0.004805758595466614, -0.03711847588419914, -0.04018007218837738, -0.014332608319818974, -0.007633671630173922, 0.016757501289248466, 0.021512459963560104, 0.029694780707359314, 0.019805550575256348, 0.014427436515688896, 0.019588802009820938, -0.01678459532558918, -0.02441149391233921, 0.013418192975223064, 0.02745954319834709, -0.023869618773460388, -0.013655263930559158, -0.023002617061138153, -0.003864249913021922, 0.014657733961939812, 0.002724617952480912, -0.003911664243787527, 0.00541536882519722, 0.024533415213227272, 0.010478518903255463, -0.007444015238434076, -0.0034510698169469833, 0.010492064990103245, -0.017787065356969833, -0.020415160804986954, -0.001252240501344204, -0.006817471701651812, -0.00921865738928318, -0.0001691244397079572, -0.008202641271054745, 0.0422121062874794, 0.005127497483044863, 0.013391099870204926, -0.012754395604133606, -0.005726947449147701, -0.04012588411569595, 0.0036305661778897047, -0.013323364779353142, -0.022826507687568665, 0.008060398511588573, 0.04177860543131828, -0.017407752573490143, 0.005960631184279919, -0.0035966988652944565, 0.035628318786621094, -0.002782192314043641, -0.038717009127140045, -0.003146264934912324, -0.011853527277708054, 0.021715663373470306, 0.03234997019171715, 0.02462824434041977, -0.034273628145456314, 0.008927399292588234, -0.054024990648031235, -0.008791930973529816, 0.01229380164295435, -0.038554444909095764, 0.020753834396600723, -0.017231643199920654, -0.01333013828843832, -0.006434772163629532, 0.007945249788463116, -0.006031752098351717, -0.013038880191743374, 0.03321697190403938, -0.006431385409086943, -0.013140481896698475, 0.02500755712389946, -0.03362337872385979, -0.005933537147939205, -0.006475412752479315, 0.023219367489218712, 0.01911466009914875, 0.000649403955321759, 0.0045145004987716675, 0.006150287576019764, -0.007355960551649332, -0.003186905523762107, -0.015416359528899193, -0.03554703667759895, 0.022230444476008415, 0.019615894183516502, 0.025820370763540268, -0.008568407036364079, 0.026971856132149696, 0.02271813154220581, 0.0036102458834648132, 0.012110918760299683, -0.034056879580020905, 0.025495244190096855, -0.003566218540072441, 0.0020642071031033993, -0.0011116915848106146, 0.011440347880125046, 0.010871377773582935, 0.0074643357656896114, 0.002126861596480012, -0.0072814528830349445, -0.017407752573490143, -0.01622917316854, -0.004314683843404055, -0.03535737842321396, -0.012334441766142845, 0.008954493328928947, 0.018532143905758858, 0.004155508242547512, -0.013255630619823933, -0.011006847023963928, 0.0042638834565877914, 0.01034304965287447, -0.016554297879338264, 0.006783604621887207, 0.00709856953471899, 0.015443453565239906, -0.007952023297548294, -0.009360900148749352, -0.0019592188764363527, -0.009286392480134964, -0.008419391699135303, 0.008581954054534435, -0.016093702986836433, 0.0024756938219070435, -0.009780853986740112, 0.008548086509108543, 0.017028439790010452, 0.007159530650824308, -0.015497640706598759, -0.011799340136349201, 0.00824328139424324, -0.01034304965287447, -0.05602993071079254, -0.024912727996706963, -0.02279941365122795, 0.005073309876024723, 0.01606661081314087, 0.014278421178460121, 0.0041047073900699615, -0.021295709535479546, 0.023679962381720543, 0.0019778457935899496, 0.011291331611573696, -0.02377478964626789, -0.00033697884646244347, 0.0028685536235570908, 0.01656784489750862, 0.005618572235107422, 0.0194126907736063, -0.002482467330992222, -0.023788336664438248, 0.004541594535112381, -0.008087492547929287, 0.0009745293064042926, -0.026809291914105415, -0.02275877259671688, -0.0025705222506076097, 0.004589008633047342, 0.01100007351487875, -0.006218021735548973, 0.01823411136865616, 0.018572784960269928, -0.02195950597524643, 0.011900941841304302, 0.017150361090898514, -0.003708460833877325, -0.006045299116522074, -0.0148338433355093, 0.037145569920539856, -0.010525932535529137, -0.008751289919018745, 0.011961902491748333, -0.04408157616853714, 0.004094547126442194, -0.010593666695058346, -0.016256267204880714, 0.03178099915385246, -0.0023605453316122293, -0.020591270178556442, -0.011900941841304302, -0.024655338376760483, 0.015497640706598759, -0.003650886472314596, -0.0028109794948250055, -0.005486489739269018, -0.010105978697538376, 0.014291967265307903, -0.016459470614790916, -0.007166304159909487, 0.0013953294837847352, 0.0018542304169386625, -0.0018051229417324066, 0.002451986772939563, 0.04031554237008095, -0.029315467923879623, -8.472097397316247e-05, -0.025034651160240173, -0.007200171239674091, -0.0021945959888398647, 0.012043183669447899, 0.03551994264125824, 0.004158894997090101, 0.002043886808678508, 0.0070376088842749596, -0.0011252384865656495, 0.0031615050975233316, -0.004633035976439714, 0.0062857563607394695, -0.003154731821268797, 0.019046925008296967, 0.0192094873636961, 0.013059200718998909, 0.006451705936342478, 0.018626971170306206, 0.022094976156949997, -0.008046851493418217, 0.003039583098143339, -0.0021962893661111593, -0.0021082344464957714, -0.01358075626194477, -0.0003062866744585335, 0.007660765666514635, 0.0036678200121968985, -0.0027855790685862303, -0.0015079380245879292, 0.008087492547929287, 0.03749778866767883, -0.006820858456194401, 0.025400416925549507, -0.03646822273731232, -0.037443600594997406, -0.010796870104968548, 8.334511949215084e-05, 0.003644112963229418, 0.018193472176790237, -0.009496369399130344, -0.005560997873544693, 0.01686587557196617, 0.0015401119599118829, 0.000868694216478616, 0.010227900929749012, 0.020144224166870117, 0.011718058958649635, 0.02980315499007702, 0.012910185381770134, 0.037443600594997406, -0.007450788747519255, -0.003066676901653409, -0.02317872643470764, 0.005036056041717529, -0.004345164634287357, -0.011501308530569077, 0.011819660663604736, 0.006394131574779749, 0.000890707946382463, -0.026091307401657104, 0.016432376578450203, -0.01622917316854, -0.03454456478357315, 0.014698374085128307, -0.016933610662817955, 0.008290695957839489, -0.03213322162628174, -0.030074093490839005, -0.020835114642977715, 0.01670331321656704, 0.022393006831407547, 0.003881183685734868, 0.018708253279328346, -0.03679335117340088, -0.024276023730635643, -0.003965851850807667, -0.015741484239697456, 0.047495391219854355, 0.003532351227477193, 0.02403218112885952, 0.011758699081838131, -0.0076675391755998135, -0.023964446038007736, 0.011155863292515278, 0.0065126665867865086, 0.005699853412806988, 0.010539479553699493, 0.019981661811470985, -0.01273407507687807, -0.016987798735499382, -0.01532153133302927, -0.0012192199937999249, -0.02106541208922863, -0.034896787256002426, 0.008026531897485256, 0.0056287324987351894, -0.016215626150369644, -0.013838146813213825, 0.00017505120194982737, -0.04139929264783859, 0.02624032273888588, -0.02331419475376606, 0.0014478237135335803, -0.018748894333839417, -0.015673751011490822, -0.06556694209575653, 0.03633275628089905, 0.017096173018217087, 0.017746424302458763, 0.018450861796736717, -0.000612573348917067, -0.005452622659504414, -0.031130749732255936, -0.004738024435937405, 0.017272282391786575, -0.006204475183039904, 0.011887394823133945, -0.030751436948776245, 0.01322176307439804, 0.0382293201982975, -0.01137938629835844, 0.007227265276014805, -0.020835114642977715, -0.0055101970210671425, 0.03508644178509712, -0.01644592359662056, -0.006218021735548973, -0.015118327923119068, -0.0024045726750046015, -0.0011895861243829131, -0.011718058958649635, -0.02128216251730919, -0.01066140178591013, 0.009238977916538715, -0.0057134004309773445, 0.019480425864458084, 0.017272282391786575, -0.006698936689645052, -0.00012171032722108066, -0.013885561376810074, -0.009767306968569756, -0.017610955983400345, -0.005120723973959684, 0.005984338000416756, -0.030670156702399254, -0.02512947842478752, -0.027960779145359993, 0.01674395427107811, -0.0009067948558367789, 0.00850067287683487, -0.021851131692528725, 0.021607287228107452, 0.043675169348716736, -0.029017435386776924, 0.01271375548094511, -0.0134385135024786, 0.006776831112802029, -0.04489438980817795, 0.0211060531437397, 0.012693434953689575, 0.0135401152074337, 0.02945093624293804, 0.005208778660744429, -0.010688494890928268, -0.007085022982209921, -0.011013620533049107, 0.0059403106570243835, -0.01729937642812729, -0.014996405690908432, 0.004131800960749388, 0.012287028133869171, 0.015158968046307564, -0.027608558535575867, -0.01708262600004673, -0.0032986674923449755, -0.008385524153709412, 0.0199139267206192, 0.019060472026467323, -0.016432376578450203, -0.0056253457441926, 0.004081000108271837, -0.011074581183493137, 0.01218542642891407, -0.011237144470214844, -0.005489876493811607, -0.010004376992583275, -0.0018931777449324727, -6.37127086520195e-05, -0.001998166088014841, -0.022650398313999176, -0.011494535021483898, -0.012171879410743713, 0.01212446577847004, -0.01957525499165058, -0.00029273980180732906, -0.007660765666514635, 0.0342465341091156, 0.0029261279851198196, 0.02017131820321083, -0.03462584689259529, -0.008466805331408978, 0.02466888353228569, 0.02674155868589878, -0.020117130130529404, -0.03169972077012062, -0.007823328487575054, 0.039177604019641876, 0.0222981795668602, -0.018491502851247787, -0.008365203626453876, 0.0009770693723112345, -0.04012588411569595, -0.021431177854537964, 0.012280254624783993, 0.012151558883488178, 0.03327115997672081, 0.00268059060908854, -0.015050593763589859, 0.019507519900798798, 0.01636464148759842, 0.037037193775177, -0.007410148158669472, 0.005869189742952585, -0.019507519900798798, 0.03283765912055969, -2.41436246142257e-05, 0.013695904985070229, -0.015470546670258045, -0.011426800861954689, -0.002834686543792486, 0.012347988784313202, 0.027445996180176735, 0.030372124165296555, -0.008263601921498775, -0.019615894183516502, -0.02980315499007702, -0.0004927680711261928, 0.023083899170160294, 0.010200806893408298, -0.014007482677698135, -0.015741484239697456, -0.010437877848744392, 0.017272282391786575, 0.00639074482023716, -0.0033359213266521692, -0.0035221909638494253, 0.008846118114888668, 0.0007256052340380847, 0.0045145004987716675, -0.00306329014711082, -0.026944762095808983, 0.008703876286745071, -0.012266707606613636, 0.02644352614879608, 0.014183592051267624, 0.01855923794209957, 0.015158968046307564, -0.0019253515638411045, 0.015375718474388123, -0.01396684255450964, -0.015673751011490822, -0.02128216251730919, -0.007762367371469736, 0.006712483242154121, 0.032485440373420715, -0.001049883896484971, -0.016581391915678978, 0.037579070776700974, -0.008507446385920048, 0.0084600318223238, -0.0012564739445224404, -0.00038883803063072264, -0.02517011947929859, 0.000474141095764935, 0.011304878629744053, -0.01517251506447792, 0.02823171578347683, -0.0176245030015707, -0.011067807674407959, -0.0003943414776585996, -0.02182403765618801, 0.0072814528830349445, 0.012524099089205265, 0.008622595109045506, -0.017326470464468002, -0.0016832009423524141, -0.03234997019171715, 0.017949627712368965, 0.019642988219857216, -0.02576618269085884, -0.0021116212010383606, 0.1919323205947876, 0.005059762857854366, 0.0034409097861498594, 0.020184863358736038, -0.0010591973550617695, 0.027093777433037758, -0.013465607538819313, -0.015335078351199627, 0.0012454671086743474, 0.009293165989220142, -0.013255630619823933, 0.012198973447084427, -0.011535176075994968, 0.00978762749582529, 0.0050225090235471725, -0.02034742757678032, -0.018613426014780998, -0.018884362652897835, 0.004754957742989063, 0.010641081258654594, 0.007748820353299379, 0.010498838499188423, -0.020320333540439606, -0.01472546812146902, 0.024303117766976357, 0.00025400417507626116, -0.012022864073514938, 0.010952659882605076, 0.01261215377599001, -0.008432937785983086, -0.017489032819867134, -0.002316517988219857, 0.016811689361929893, -0.021973052993416786, -0.03589925542473793, 0.009835041128098965, 0.01771933026611805, -0.015876954421401024, 0.008412618190050125, -0.0067328037694096565, -0.013695904985070229, -0.014156498946249485, 0.0023385316599160433, -0.009679252281785011, 0.00417582830414176, 0.029938623309135437, -0.02793368510901928, 0.0013284417800605297, -0.0008068865863606334, 0.038337696343660355, -0.023896710947155952, -0.02928837388753891, 0.027825308963656425, 0.011453894898295403, -0.014061670750379562, -0.0054695564322173595, 0.002043886808678508, -0.005005575250834227, 0.028150435537099838, -0.0026602703146636486, -0.002451986772939563, 0.032024845480918884, -0.019046925008296967, 0.013086294755339622, -0.02284005470573902, 0.004778665024787188, -0.013289498165249825, -0.0025468149688094854, -0.0070376088842749596, -0.022325271740555763, 0.0027889658231288195, -0.0018508436623960733, 0.006455092690885067, 0.012923731468617916, -0.013594303280115128, -0.02419474348425865, 0.021268615499138832, -0.0067497375421226025, 0.02839427813887596, 0.02729698084294796, -0.026985403150320053, -0.019480425864458084, -0.005066536366939545, -0.011189729906618595, -0.03237706422805786, -0.013187896460294724, 0.02721569873392582, -0.01246313750743866, 0.0069766477681696415, -0.0005922530544921756, -0.016635579988360405, -0.012828903272747993, 0.011839981190860271, 0.009719892404973507, -0.019344957545399666, -0.0016603405820205808, -0.018505049869418144, -0.004189375322312117, -0.01823411136865616, -0.0005710860132239759, -0.011298105120658875, 0.03340662643313408, 0.018410222604870796, 0.005615185480564833, 0.01062076073139906, -0.0247908066958189, -0.0053069936111569405, 0.027960779145359993, 0.0040437462739646435, -0.009990830905735493, 0.0080129848793149, -0.0220001470297575, -0.010993300005793571, -0.014156498946249485, 0.0016264733858406544, -0.015592468902468681, 0.01652720384299755, -0.01322176307439804, 0.008866438642144203, 0.012144785374403, 0.005659212823957205, -0.01670331321656704, -0.02420829050242901, 0.013005013577640057, 0.013912654481828213, 0.011006847023963928, -0.04665548354387283, -0.009557330049574375, -0.0033037473913282156, 0.004883653484284878, 0.03635985031723976, -0.031428780406713486, 0.025779729709029198, -0.013025333173573017, -0.004697383847087622, -0.005388274788856506, -0.011162635870277882, -0.03386722132563591, -0.014386795461177826, 0.018288299441337585, 0.003718620864674449, 0.017407752573490143, -0.018030909821391106, -0.003562831785529852, -0.009923095814883709, -0.029098717495799065, -0.01750257983803749, 0.003368095261976123, 0.005947084166109562, -7.546040433226153e-05, -0.02483144775032997, -0.012557965703308582, 0.0013716224348172545, -0.02377478964626789, -0.025535885244607925, -0.004639809485524893, -0.019561707973480225, -0.03291894122958183, 0.04771214351058006, 0.005686306394636631, -0.0268770270049572, -0.012036411091685295, 0.017787065356969833, -0.00411148089915514, -0.002118394710123539, -0.030913999304175377, -0.17014892399311066, 8.360970241483301e-05, 0.008311016485095024, -0.023327741771936417, 0.0074643357656896114, -0.002521414775401354, 0.03996332362294197, 0.0001546250277897343, -0.006990194786339998, 0.007437241729348898, 0.006851338781416416, 0.027445996180176735, -0.03687462955713272, -0.008195867761969566, -0.029559310525655746, -0.016540750861167908, -0.04045100882649422, 0.014319061301648617, 0.010559800080955029, 0.03711847588419914, 0.02674155868589878, -0.03776872530579567, 0.010072112083435059, 0.019995206966996193, -0.007091796025633812, -0.006424611900001764, 0.0021827423479408026, 0.010674947872757912, 0.013695904985070229, -0.02645707316696644, 0.017895439639687538, 0.004754957742989063, 0.0222033504396677, -0.012341215275228024, 0.0027534051332622766, 0.016811689361929893, -0.012327669188380241, 0.00048557130503468215, -0.017326470464468002, 0.007328866980969906, 0.01309984177350998, 0.0222981795668602, -0.007803007960319519, 0.00020500252139754593, -0.028854873031377792, 0.014332608319818974, 0.036522410809993744, -0.0254816971719265, -0.0022758773993700743, -0.009564103558659554, 0.0057980683632195, -0.027202151715755463, 0.020293239504098892, -0.006847952492535114, 0.045327890664339066, -0.02771693468093872, -0.0014766108943149447, 0.005279900040477514, -0.013628169894218445, 0.012944051995873451, 0.005279900040477514, -0.04589685797691345, -0.0024756938219070435, 0.021133147180080414, -0.01614789105951786, -0.022528475150465965, -0.007410148158669472, 0.023747695609927177, -0.03709138184785843, -0.0036915272939950228, 0.012117692269384861, 0.020184863358736038, -0.008893532678484917, 0.005218938924372196, 0.004704156890511513, 0.03904213383793831, 0.0033613217528909445, 0.0027093777898699045, 0.027134418487548828, -0.03617019206285477, -0.005378114990890026, 0.025820370763540268, -0.005191844888031483, 0.0005859029479324818, 0.013770412653684616, -0.007877515628933907, -0.010417557321488857, 0.007613351568579674, -0.002836379921063781, -0.013005013577640057, 0.015524734742939472, -0.07114826142787933, -0.004788825288414955, -0.003420589491724968, 0.007830101996660233, 0.007891062647104263, 0.00824328139424324, -0.018342487514019012, 0.02289424277842045, -0.020333880558609962, 0.007369507569819689, -0.0036949138157069683, 0.0019422852201387286, -0.017394205555319786, 0.018545690923929214, 0.014752562157809734, -0.0019930859562009573, 0.03568250313401222, 0.04784760996699333, -0.011921262368559837, -0.02755437232553959, -0.0038845704402774572, 0.01019403338432312, 0.02831299789249897, -0.00835165660828352, 0.01316080242395401, 0.0069766477681696415, -0.006133353803306818, 0.014915124513208866, 0.00932703260332346, 0.031076563522219658, 0.001214139861986041, 0.025928745046257973, -0.003894730471074581, -0.0019219648092985153, -0.0065126665867865086, -0.12853288650512695, -0.061611250042915344, 0.006969874259084463, -0.005110563710331917, -0.009611517190933228, 0.02712087146937847, -0.00974698644131422, 0.005486489739269018, -0.027744028717279434, 0.031130749732255936, 0.00011080931290052831, -0.04218501225113869, -0.01494221854954958, -0.005682919640094042, -0.020157771185040474, 0.011115222238004208, -0.008595501072704792, 0.0019355117110535502, -0.02411346137523651, 0.01919594220817089, 0.022352365776896477, -0.008426165208220482, -0.003982785157859325, 0.021878225728869438, -0.01218542642891407, 0.025115931406617165, -0.03313568979501724, 0.01584986038506031, -0.008764836937189102, 0.021688569337129593, 0.0030057160183787346, -0.01027531549334526, 0.02162083424627781, -0.010756229981780052, -0.012971146032214165, 0.01333013828843832, -0.002951528411358595, -0.0019490586128085852, 0.017475485801696777, -0.0007162917172536254, -0.005696466658264399, -0.013445287011563778, -0.007660765666514635, -0.006400905083864927, -0.016337547451257706, -0.01002469751983881, -0.02890906110405922, 0.03034503012895584, -0.013377552852034569, -0.015050593763589859, -0.03711847588419914, 0.012009317055344582, -0.0497712679207325, -0.017069078981876373, 0.013418192975223064, -0.017746424302458763, -0.014007482677698135, -0.0016738874837756157, 0.0015765192219987512, -0.0014393569435924292, -0.018247658386826515, 0.000635857111774385, -0.022826507687568665, 0.013553662225604057, -0.00011631273810053244, 0.00978762749582529, 0.003115784376859665, -0.007511749863624573, 0.02377478964626789, -0.01305242720991373, -0.014142951928079128, 0.043079107999801636, -0.008168773725628853, 0.016093702986836433, -0.017746424302458763, 0.010641081258654594, -0.007105343043804169, 0.00835165660828352, 0.0296676866710186, -0.013634943403303623, -0.012422497384250164, -0.00454498128965497, -0.00021675022435374558, -0.04581557959318161, -0.002743244869634509, 0.021498912945389748, 0.019480425864458084, -0.00023834058083593845, 0.021769849583506584, -0.012436043471097946, -0.00881902500987053, 0.03790419548749924, 0.03253962844610214, -0.026010027155280113, 0.00047625781735405326, 0.023828977718949318, 0.0015062446473166347, 0.011006847023963928, -0.013065974228084087, 0.03291894122958183, -0.05047570914030075, 0.006621041800826788, -0.030399218201637268, 0.017651595175266266, 0.005682919640094042, -0.004419672302901745, 0.005452622659504414, -0.008446484804153442, 0.019710723310709, -0.006553307641297579, -0.006339943967759609, -0.012388629838824272, -0.027242792770266533, 0.014400342479348183, -0.014915124513208866, -0.01370945107191801, -0.010478518903255463, -0.02755437232553959, 0.020239051431417465, -0.015795672312378883, 0.016933610662817955, -0.0018711639568209648, 0.02191886678338051, 0.00018859808915294707, 0.02050998993217945, 0.00019134979811497033, -0.013634943403303623, 0.006356877740472555, -0.01784125156700611, 0.03267509490251541, -0.028258809819817543, -0.01479320228099823, -0.013126934878528118, -0.01110844872891903, -0.007897836156189442, 0.04860623553395271, 0.01186707429587841, 0.020957037806510925, 0.013885561376810074, 0.003230932867154479, 0.024655338376760483, -0.007301772944629192, -0.02022550441324711, -0.04248304292559624, 0.020916396751999855, -0.005811615381389856, -0.005696466658264399, -0.0067734443582594395, -0.007985890842974186, -0.00887998566031456, 0.008229735307395458, 0.008202641271054745, 0.016459470614790916, 0.02343611791729927, -0.02733762189745903, -0.03362337872385979, 0.001524024992249906, -0.03188937529921532, 0.0036847537849098444, -0.01775997132062912, -0.018843721598386765, 0.0056253457441926, 0.019182395190000534, 0.002565442118793726, 0.023896710947155952, -0.006465252488851547, -0.008317789994180202, -0.02661963552236557, -0.01708262600004673, 0.009245751425623894, -0.018721800297498703, -0.01093233935534954, -0.03459875285625458, -0.004826079122722149, 0.039421446621418, 0.01881662756204605, 0.020929943770170212, -0.013560435734689236, -0.030588874593377113, 0.001247160485945642, -0.009482822380959988, 0.006563467439264059, 0.03132040798664093, -0.0035391247365623713, -0.01957525499165058, 0.030697250738739967, 0.035330284386873245, 0.011535176075994968, -0.011074581183493137, -0.02072674036026001, -0.00964538473635912, 0.020076489076018333, 0.01584986038506031, 0.007593031041324139, 0.006414451636373997, 0.012889864854514599, -0.01724519021809101, 0.021973052993416786, -0.009110283106565475, 0.0032631068024784327, 0.020537083968520164, 0.0026653504464775324, 0.015307984314858913, -0.0063026901334524155, -0.002184435725212097, -0.008920625783503056, -0.03985494747757912, 0.01137938629835844, -0.0016654205974191427, -0.01479320228099823, -0.020239051431417465, 0.039231788367033005, 0.011677417904138565, -0.008568407036364079, 0.014806749299168587, 0.00606223288923502, -0.0030615967698395252, -0.011785793118178844, 0.004517887253314257, -0.013770412653684616, -0.014820296317338943, -0.0013445287477225065, 0.0038439296185970306, -0.005300220102071762, 0.03340662643313408, 0.0029396747704595327, 0.014698374085128307, 0.031347502022981644, 0.013025333173573017, -0.03500515967607498, -0.010214353911578655, 0.020957037806510925, -0.005212165415287018, -0.01720454916357994, -0.0055948649533092976, -0.01847795583307743, -0.024614697322249413, -0.02309744618833065, 0.001964298775419593, 0.004277430009096861, -0.015741484239697456, 0.07960151880979538, -0.0006019898573867977, -0.004765118006616831, -0.014982858672738075, -0.02450632117688656, 0.010986526496708393, 0.04608651623129845, -0.011596136726439, -0.01911466009914875, -0.0314558744430542, 0.034950971603393555, 0.010410783812403679, -0.0007370354142040014, -0.028800684958696365, -0.004534821026027203, 0.005991111509501934, -0.025400416925549507, 0.0038134492933750153, -0.036224380135536194, -0.001710294745862484, 0.020821567624807358, 0.023503851145505905, 0.015253797173500061, 0.0022707972675561905, -0.01664912700653076, -0.0129914665594697, -0.017218096181750298, 0.016594938933849335, -0.018301846459507942, -0.014888030476868153, -0.0034290561452507973, 0.00736273406073451, -0.05619249492883682, -0.028204621747136116, 0.0031665852293372154, -0.006492346525192261, 0.012998240068554878, -0.006268822588026524, 0.0220001470297575, 0.012469911016523838, -0.005560997873544693, 0.00558470468968153, -0.024736618623137474, -0.05505455657839775, -0.0039252107962965965, -0.002804205985739827, -0.0022437034640461206, 0.0017526287119835615, -0.048552047461271286], "d428515b-e422-458d-bb7c-b19c19acc64f": [0.0031070108525455, 0.03600713238120079, -0.006137262564152479, -0.0450228713452816, -0.013705040328204632, 0.01349569670855999, -0.013391025364398956, 0.0017724441131576896, -0.020083049312233925, -0.02634940668940544, 0.009818224236369133, -0.001674750354140997, 0.002772060688585043, 0.02283243089914322, 0.00685949856415391, 0.019468972459435463, 0.014570328406989574, 0.0029081343673169613, -0.009371624328196049, -0.007773633114993572, -0.005798823200166225, 0.0016067136311903596, 0.008296992629766464, -0.017766309902071953, -0.025372467935085297, 0.0022835920099169016, 0.02768920734524727, -0.024437399581074715, -0.016998715698719025, -0.009385580196976662, 0.035728007555007935, -0.025833025574684143, -0.02655874937772751, -0.010690489783883095, -0.011960509233176708, -0.011458083987236023, -0.013502675108611584, 0.012532715685665607, -0.0014627898344770074, -0.012651343829929829, 0.020571516826748848, 0.02276264876127243, -0.004022889770567417, -0.0009612369467504323, 0.010509058833122253, 0.0075922016985714436, 0.016468379646539688, -0.014891321770846844, -0.022050879895687103, -0.008694745600223541, 0.032908845692873, 0.04848402366042137, -0.030787494033575058, 0.010041524656116962, -0.026028411462903023, 0.0036739837378263474, -0.006402431055903435, -0.0007392452680505812, 0.009197170846164227, -0.03692824766039848, 0.004022889770567417, 0.010934724472463131, -0.0018806051230058074, -0.04122677072882652, -0.004399708937853575, -0.009008761495351791, -0.014416809193789959, 0.009601902216672897, -0.018645554780960083, -0.01507275365293026, 0.012344306334853172, 0.01790587231516838, 0.0015788011951372027, 0.0057604433968663216, 0.02390706166625023, 0.0016215421492233872, -0.030731670558452606, -0.002660410711541772, -0.018813028931617737, 0.0019277074607089162, -0.002032379386946559, -0.009448383003473282, -0.009141345508396626, 0.03539305925369263, -0.000891891831997782, -0.0038309914525598288, 0.01207913737744093, 0.030871232971549034, -0.012581562623381615, -0.016161341220140457, 0.0027493818197399378, 0.012267546728253365, 0.009511186741292477, 0.018561817705631256, -0.0011627303902059793, 0.022720780223608017, -0.01595199666917324, 0.029866382479667664, -0.00107550376560539, -0.011332477442920208, 0.0011374346213415265, 0.008597051724791527, -0.018617641180753708, 0.0018910723738372326, -0.0006716446951031685, -0.016049690544605255, 0.015282097272574902, -0.010732358321547508, 0.016412554308772087, 0.0037577212788164616, -0.018184997141361237, 0.03586757183074951, 0.0053277998231351376, -0.01176512148231268, -0.0031192225869745016, -0.027451951056718826, -0.0028086958918720484, -0.04131050780415535, -0.005118455737829208, -0.008897111751139164, 0.008415620774030685, 0.01910611055791378, 0.017696529626846313, -0.01024388987571001, 4.064213499077596e-05, -0.0027842724230140448, 0.0013755632098764181, -0.015254184603691101, -0.01614738442003727, -0.029112745076417923, 0.03385787084698677, 0.02143680490553379, -0.017249928787350655, 0.005746487062424421, -0.002328949747607112, 0.01383762527257204, -0.030229244381189346, 0.017431359738111496, -0.010934724472463131, -0.034527771174907684, 0.004260146524757147, 0.012776949442923069, -0.014179552905261517, 0.01867346651852131, 0.0033617124427109957, 0.005683684255927801, 0.03000594489276409, 0.004692790098488331, -0.0012202998623251915, -0.008925024420022964, 0.000819929875433445, 0.008583095856010914, -0.014137684367597103, 0.019748099148273468, 0.01772444136440754, 0.02849866822361946, -0.024325748905539513, 0.011548799462616444, 0.026433143764734268, 0.008694745600223541, 0.020794818177819252, 0.035532619804143906, 0.008080670610070229, 0.009106455370783806, 0.009218105114996433, 0.03410908207297325, 0.025442250072956085, 0.01734762266278267, 0.008143473416566849, 0.023181336000561714, -0.011800012551248074, 0.017194103449583054, -0.012267546728253365, 0.010690489783883095, -0.002632498275488615, 0.0013153768377378583, 0.007187470328062773, -0.0007915812311694026, -0.025958631187677383, -0.024563005194067955, 0.020641298964619637, -0.00797599833458662, 0.024130361154675484, 0.03662120923399925, -0.032936759293079376, -0.009099476970732212, 0.03184816986322403, 0.007780611049383879, 0.0035047640558332205, 0.0035937351640313864, 0.00952514261007309, 0.022302092984318733, -0.0020777371246367693, -0.002171941800042987, -0.631045937538147, -0.02231604978442192, -0.012616452760994434, -0.0330204963684082, 0.010934724472463131, 0.01564496010541916, -0.00345940631814301, 0.016300903633236885, -0.032629720866680145, 0.02541433647274971, 0.018631597980856895, -0.025512030348181725, 0.034136995673179626, 0.001774188713170588, -0.015658916905522346, -0.02636336162686348, -0.0003105266368947923, -0.01504484098404646, -0.031624868512153625, 0.026279624551534653, -0.010446255095303059, 0.00591396214440465, -0.0038658820558339357, -0.011276653036475182, 0.012253589928150177, 0.01684519834816456, 0.017696529626846313, 0.017682572826743126, 0.023851236328482628, 0.021394936367869377, -0.030312981456518173, -0.02100416086614132, 0.0003944822237826884, 0.001435749582014978, 0.04111512377858162, 0.006751337554305792, -0.01727784238755703, -0.006964170373976231, 0.0437668114900589, 0.026056325063109398, -0.024060580879449844, -0.020529648289084435, 0.0008365029352717102, -0.002313249045982957, 0.0043508620001375675, -0.010990549810230732, -0.014765716157853603, 0.028177674859762192, -0.005547610577195883, -0.007271207869052887, 0.0007824224303476512, 0.006866476498544216, 0.012616452760994434, -0.009915918111801147, 0.02231604978442192, -0.015533309429883957, 0.0327971950173378, 0.0027493818197399378, 0.010383452288806438, -0.008973870426416397, 0.006569906137883663, 0.011074286885559559, -0.021032074466347694, -0.005837203003466129, -0.014416809193789959, 0.007892261259257793, -0.03304840624332428, -0.007438682951033115, 0.012735080905258656, -0.03341127187013626, 0.005868604406714439, 0.029810557141900063, -0.014388897456228733, -0.01847807876765728, 0.010195042937994003, 0.028470756486058235, 0.01658002845942974, -0.003382646944373846, -0.0048742215149104595, 0.02143680490553379, 0.007114199921488762, -0.02826141193509102, -0.012253589928150177, -0.020083049312233925, 0.022748691961169243, -0.0076829176396131516, -0.014528459869325161, 0.004151985514909029, 0.016928935423493385, 0.012735080905258656, -0.014256312511861324, 0.030229244381189346, -0.0032273835968226194, -0.032573893666267395, -0.009755421429872513, 0.011688361875712872, 0.0005216149729676545, 0.00490213418379426, 0.004727680701762438, -0.021520541980862617, -0.006458256393671036, -0.015910128131508827, 0.0026412210427224636, -0.009734486229717731, 0.005722064059227705, 0.018519947305321693, -0.0004710235516540706, 0.015170447528362274, 0.035476796329021454, -0.02025052346289158, -0.024437399581074715, -0.027144912630319595, -0.010376473888754845, 0.03134574368596077, -0.00122204446233809, -0.029224393889307976, 0.01075329352170229, -0.0029186015017330647, 0.00033211521804332733, -0.021283285692334175, 0.005987232550978661, 0.019092153757810593, -0.005879071541130543, -0.008345839567482471, 0.03198773413896561, -0.003052930347621441, -0.003953108564019203, -0.019831836223602295, -0.019971398636698723, -0.01695684716105461, 0.002555738901719451, 0.03235059604048729, 0.03561635687947273, -0.010718402452766895, -0.0028435864951461554, -0.005945364013314247, 0.019217761233448982, -0.019664360210299492, 0.03438820689916611, -0.03801683336496353, -0.024507179856300354, -0.014137684367597103, 0.02206483669579029, -0.02787063829600811, -0.008052757941186428, -0.018492035567760468, -0.026279624551534653, -0.009636793285608292, -0.01829664781689644, 0.02706117555499077, 0.001547399559058249, 0.025707418099045753, -0.01948292925953865, 0.015924084931612015, 0.011604624800384045, 0.0038554149214178324, 0.008094626478850842, -0.015812434256076813, -0.025805111974477768, 0.0028226522263139486, -0.0005909600877203047, 0.012839753180742264, -0.027130955830216408, -0.002246956806629896, -0.012986293993890285, -0.010202021338045597, 0.0018683933885768056, 0.011841881088912487, -0.011025439947843552, -0.020892510190606117, 0.010516037233173847, -0.00800391100347042, 0.0034419610165059566, -0.00017205443873535842, 0.0013938808115199208, 0.014598241075873375, -0.021073943004012108, 0.007724786177277565, 0.0027668271213769913, -0.023572111502289772, 0.0079411081969738, 0.008241167291998863, 0.009943830780684948, -0.01547748502343893, 0.015184403397142887, 0.0036042022984474897, 0.03128992021083832, 0.005770910531282425, -0.0077666547149419785, 0.006772271823137999, 0.012288480997085571, 0.04111512377858162, -0.00069388747215271, 0.008764526806771755, -0.022036923095583916, 0.03595130890607834, 0.009762398898601532, 0.010948680341243744, 0.03631417080760002, 0.0304525438696146, 0.015812434256076813, -0.01249084621667862, 0.0021457739640027285, -0.030033856630325317, 0.018938636407256126, -0.042343273758888245, -0.001541293691843748, -0.004793973173946142, 0.019580623134970665, 0.025177080184221268, 0.01582639105618, -0.002267891075462103, -0.035030197352170944, -0.012735080905258656, 0.019664360210299492, 0.040138185024261475, 0.006726914085447788, 0.008806395344436169, -0.014026034623384476, -0.00294128037057817, 0.005303376354277134, 0.012714146636426449, 0.017877960577607155, -0.01625903509557247, 0.011046374216675758, 0.0013415447901934385, -0.0028226522263139486, -0.00461951969191432, -0.01447263453155756, -0.049656350165605545, -0.008443533442914486, 0.0015692062443122268, -0.0008757548639550805, 0.028777794912457466, 0.014200488105416298, 0.0085133146494627, 0.024074537679553032, -0.0021300732623785734, 0.031234094873070717, 0.010348562151193619, -0.006234955973923206, 0.013621303252875805, -0.00011094131332356483, -0.02787063829600811, 0.018310604616999626, -0.008115561679005623, 0.025805111974477768, 0.017263885587453842, -0.010453233495354652, 0.03008968196809292, -0.006943236105144024, -0.005606924649327993, -0.014109771698713303, 0.01147901825606823, 0.013391025364398956, -0.004884688649326563, -0.0024615342263132334, 0.013321244157850742, 0.0077875894494354725, 0.004472979344427586, 0.005976765416562557, -0.007480551954358816, -0.0024894466623663902, 0.0032465734984725714, 0.0031994711607694626, -0.006308226380497217, -0.0022888255771249533, -0.035923395305871964, -0.03254598379135132, -0.003305887570604682, -0.048093248158693314, -0.00425665732473135, -0.012435021810233593, 0.0007824224303476512, 0.02641918696463108, 0.011834902688860893, -0.0057953340001404285, 0.017794223502278328, 0.03128992021083832, 0.011116155423223972, 0.0016416042344644666, -0.016873110085725784, -0.0038309914525598288, 0.03274137154221535, 0.0067757610231637955, 0.005006805993616581, -0.02761942520737648, -7.223451393656433e-05, -0.0054324716329574585, 0.006095393560826778, -0.0027075130492448807, 0.008324905298650265, 0.004846308846026659, -0.010027567856013775, 0.0015290819574147463, -0.009971742518246174, 0.027828769758343697, -0.018561817705631256, -0.01346778403967619, 0.010146196000277996, 0.002328949747607112, 0.005952341947704554, -0.019092153757810593, -0.006660622078925371, 0.049600522965192795, -0.0055336542427539825, 0.006454767193645239, 0.0018178019672632217, 0.006971148308366537, -0.018896766006946564, 0.014430765993893147, -0.012776949442923069, -0.0327971950173378, -0.013551522046327591, 0.023627936840057373, -0.036035045981407166, -0.005470851436257362, 0.0072293393313884735, 0.032127294689416885, 0.014319116249680519, 0.007107221987098455, -0.03000594489276409, -0.010425320826470852, 0.021841537207365036, 0.059118688106536865, 0.01582639105618, -0.03179234638810158, 0.005104499403387308, -0.017864003777503967, -0.004685812164098024, -0.000615819648373872, -0.0070723313838243484, 0.009888005442917347, -0.0002418357034912333, -0.014347027987241745, -0.000547346833627671, 0.017417404800653458, -0.022413741797208786, 0.0051359012722969055, 0.021422848105430603, 0.005606924649327993, -0.0031192225869745016, -0.0165102481842041, -0.0412546843290329, -0.0035187203902751207, -0.005055652931332588, 0.041533809155225754, 0.016370685771107674, -0.008938980288803577, -0.01878511719405651, 0.01987370476126671, 0.02523290552198887, -0.028289325535297394, -0.03134574368596077, -0.002686578780412674, -0.0019259629771113396, 0.033718306571245193, 0.028331194072961807, -0.030312981456518173, 0.022483523935079575, 0.025191036984324455, 0.033522918820381165, 0.016300903633236885, -0.011318521574139595, 0.0062838029116392136, 0.011911662295460701, 0.012065180577337742, -0.01747322827577591, -0.0007614880451001227, 0.02011096104979515, -0.002683089580386877, 0.01122082769870758, -0.02281847409904003, -0.020445911213755608, 0.0165102481842041, -0.019399192184209824, -9.833433978201356e-06, -0.002198109868913889, 0.004584629088640213, -0.027731075882911682, -0.00756428949534893, 0.005320821423083544, -0.001694812555797398, -0.030731670558452606, -0.02622379921376705, -0.01450054720044136, 0.02150658704340458, -0.004891666583716869, -0.005352223291993141, -0.014654065482318401, -0.018771160393953323, 0.006817629560828209, -0.03438820689916611, -0.020264480262994766, -0.004703257232904434, -0.00854820478707552, -0.05091241002082825, -0.03346709534525871, 0.003872860223054886, 0.009099476970732212, 0.016942892223596573, -0.002779038855805993, -0.009413492865860462, 0.006664110813289881, -0.03380204364657402, -0.03583965823054314, -0.013356134295463562, -0.031624868512153625, 0.007347967475652695, 0.0009969997918233275, 0.020222611725330353, 0.008869199082255363, 0.0012168107787147164, 0.00883430801331997, 0.0007074075983837247, -0.006046546623110771, 0.0033582234755158424, -0.025707418099045753, -0.016803329810500145, 0.03955202177166939, 0.0026638999115675688, 0.03299258276820183, 0.011116155423223972, -0.03491854667663574, -0.004696279298514128, 6.400250276783481e-05, 0.0027546153869479895, -0.022399786859750748, 0.0008059735991992056, -0.002998849842697382, -0.00822721142321825, 0.021087897941470146, -0.011841881088912487, -0.003646071068942547, 0.02667040005326271, -0.021394936367869377, 0.024674655869603157, 0.02453509345650673, 0.01403301302343607, 0.010864943265914917, 0.00315236859023571, -0.003918217960745096, 0.0023760520853102207, -0.024297837167978287, 0.008611008524894714, -0.044045936316251755, 0.01024388987571001, 0.008031823672354221, -0.022343961521983147, 0.028777794912457466, 0.006849031429737806, -0.026028411462903023, -0.02754964306950569, 0.006276824977248907, 0.004734659101814032, 0.029056919738650322, -0.023111555725336075, -0.003213427262380719, -0.014088837429881096, 0.024856086820364, -0.009860092774033546, 0.005767421796917915, -0.02231604978442192, -0.007026973646134138, 0.014612196944653988, -0.003005828009918332, 0.007989955134689808, -0.018701380118727684, -0.03380204364657402, -0.03807266056537628, 0.013663171790540218, 0.013739931397140026, -0.0043159713968634605, 0.026195887476205826, 0.008331882767379284, -0.00424270099028945, -0.01664981059730053, -0.004720702767372131, 0.008715679869055748, -0.023851236328482628, -0.0064094094559550285, 0.0026569217443466187, 0.04390637204051018, -0.006105860695242882, 0.046641796827316284, 0.010299715213477612, 0.023111555725336075, 0.010027567856013775, -0.008387708105146885, 0.01867346651852131, -0.0009184959344565868, 0.0015587389934808016, -0.006594329606741667, 0.021855492144823074, 0.012225678190588951, -0.0011278396705165505, 0.030061770230531693, -0.00883430801331997, 0.011995399370789528, 0.042399097234010696, 0.006116327829658985, 0.010955658741295338, -0.01684519834816456, -0.026768093928694725, 0.0022190443705767393, 0.021590324118733406, -0.013021184131503105, 0.020459868013858795, -0.031066618859767914, -0.01318168081343174, 0.02143680490553379, 0.04421341046690941, -0.010236911475658417, 0.00661875307559967, 0.02401871234178543, -0.030368806794285774, 0.013328221626579762, 0.020320305600762367, 0.01387251541018486, -0.03179234638810158, 0.008659855462610722, -0.02584698051214218, -0.003258785232901573, 0.017040586099028587, 0.007075820583850145, 0.0351976715028286, 0.019064242020249367, 0.004131050780415535, -0.013858559541404247, -0.005292909219861031, -0.03226685896515846, -0.017180148512125015, 0.004441577475517988, -0.028484713286161423, -0.02023656666278839, -0.030927056446671486, -0.028414931148290634, 0.0008622347959317267, 0.004657899495214224, 0.016677722334861755, -0.006524548400193453, 0.016538159921765327, -0.01942710392177105, -0.03165278211236, 0.006712957751005888, -0.04583233594894409, 0.0388542078435421, -0.008973870426416397, 0.008443533442914486, -0.0001264785387320444, 0.002390008419752121, -0.01722201704978943, 0.018952591344714165, 0.009141345508396626, 0.005732531193643808, 0.019664360210299492, 0.03215520828962326, -0.02213461697101593, 0.0009385580196976662, -0.015798479318618774, 0.026963481679558754, -5.206336481933249e-06, -0.028917357325553894, -0.0012499568983912468, 0.03692824766039848, 0.014751759357750416, -0.0165102481842041, 0.015156490728259087, -0.024702567607164383, -0.005153346341103315, 0.004657899495214224, -0.014458678662776947, -0.011234783567488194, 0.018561817705631256, -0.007585223764181137, -0.003782144747674465, -0.027521731331944466, 0.027284475043416023, 0.001212449511513114, 0.01487736590206623, -0.0026534325443208218, -0.0255399439483881, -0.024800261482596397, 0.02055756188929081, -0.018519947305321693, 0.023306943476200104, -0.014765716157853603, 0.010034546256065369, 0.038128484040498734, 0.0073340111412107944, -0.0018910723738372326, -0.016984760761260986, -0.008436555042862892, 0.0326855443418026, -0.006360562518239021, 0.008101604878902435, -0.0013659682590514421, 0.016621896997094154, -0.007424726616591215, -0.00822721142321825, -0.01758487895131111, -0.0011557522229850292, 0.0012394897639751434, -0.01745927333831787, 0.00042741026845760643, -0.014612196944653988, 0.014039990492165089, 0.007086287718266249, 0.012525737285614014, -0.020585473626852036, 0.0018178019672632217, -0.03726319596171379, 0.004232233855873346, -0.042594484984874725, 0.004179897718131542, -0.004106627311557531, -0.003653049236163497, 0.020013267174363136, 0.021785711869597435, -0.035476796329021454, 0.015965953469276428, 0.03215520828962326, -0.014291203580796719, 0.001582290162332356, -0.01903633028268814, -0.016245078295469284, -0.04295734688639641, 0.02245561219751835, -0.010837030597031116, 0.006594329606741667, 0.008659855462610722, -0.006133773364126682, 0.002259168541058898, -0.02634940668940544, -0.000747967918869108, -0.007543354760855436, -0.004895155783742666, -0.022623086348176003, 0.023167381063103676, -0.02005513571202755, 0.015910128131508827, -0.0014383663656190038, -0.0004474723828025162, 0.015310009941458702, -0.016412554308772087, 0.007836435921490192, 0.018129173666238785, -0.0076968735083937645, 0.022274179384112358, -0.008638921193778515, -0.005481318570673466, 0.01752905361354351, -0.008945958688855171, -0.0062838029116392136, 0.007019995246082544, 0.004399708937853575, 0.022148573771119118, 0.005425493232905865, -0.02358606830239296, 0.017235971987247467, -0.009999655187129974, -0.008122539147734642, -0.015672871842980385, -0.011492974124848843, 0.011472039856016636, 0.027521731331944466, 0.018184997141361237, 0.008345839567482471, -0.029363956302404404, -0.009755421429872513, -0.008687767200171947, -0.019845793023705482, -0.01625903509557247, 0.0044869352132081985, -0.0036844508722424507, 0.0339416079223156, 0.0012717635836452246, -0.005163813475519419, -0.02704721875488758, 0.01052999310195446, -0.03201564401388168, -0.010292736813426018, 0.013621303252875805, 0.00298663810826838, 0.010425320826470852, 0.018575772643089294, -0.005390602629631758, 0.04276195913553238, -0.023851236328482628, 0.011269674636423588, -0.0033303110394626856, -0.002259168541058898, 0.004308992996811867, 0.026502924039959908, 0.012239634059369564, -0.010913790203630924, -0.02408849261701107, -0.045301999896764755, 0.018589729443192482, -0.003098288318142295, 0.0041938540525734425, 0.027968332171440125, 0.00021621289488393813, -0.012295459397137165, 0.008555183187127113, -0.020264480262994766, -0.027465905994176865, 0.006849031429737806, -0.005561566911637783, -0.019845793023705482, 0.018268736079335213, -0.000400370015995577, 0.006674577947705984, -0.008038802072405815, 0.010809117928147316, -0.02025052346289158, -0.009608880616724491, 0.014416809193789959, -0.009197170846164227, -0.004312482196837664, 0.015323965810239315, -0.0085412273183465, -0.0005726425442844629, -0.02641918696463108, 0.009769377298653126, 0.03787727281451225, 0.02446531131863594, 0.024493224918842316, -0.02023656666278839, -0.00920414924621582, -0.006622242275625467, -0.011123133823275566, 0.01727784238755703, -0.007801545783877373, 0.009497229941189289, -0.012114027515053749, 0.016733547672629356, -0.030620019882917404, 0.0068978783674538136, -0.013698062859475613, 0.005408048164099455, -0.03684450685977936, 0.02219044230878353, 0.02353024296462536, -0.016663765534758568, -0.014416809193789959, -0.01828269101679325, 0.016635853797197342, -0.011974465101957321, 0.0009525142959319055, 0.007829458452761173, -0.012916512787342072, 0.007899239659309387, 0.028833618387579918, -0.024800261482596397, 0.0016607941361144185, -0.0036042022984474897, 0.015323965810239315, -0.0326855443418026, -0.027731075882911682, 0.17272259294986725, -0.012874643318355083, 0.01510066632181406, 0.04426923394203186, -0.01280486211180687, 0.01482154056429863, 0.006999060977250338, 0.00016387694631703198, -0.024730481207370758, 0.00826210156083107, -0.005917451344430447, -0.0021178615279495716, -0.029475606977939606, -0.0015596112934872508, 0.004043824505060911, -0.008820352144539356, -0.013886472210288048, -0.04343185946345329, -0.0018771160393953323, 0.0003090001700911671, 0.018492035567760468, -0.00723631726577878, -0.02012491784989834, -0.027354257181286812, 0.028079980984330177, -0.02125537395477295, 0.006186109036207199, 0.008415620774030685, 0.032378505915403366, 0.0025470161344856024, -0.007557311095297337, 0.0013101432705298066, -0.004354351200163364, -0.005592968314886093, -0.012134961783885956, -0.011499952524900436, 0.013795756734907627, -0.002447577891871333, 0.024479268118739128, 0.006908345501869917, 0.004145007114857435, -0.01808730512857437, -0.03692824766039848, -0.009497229941189289, 0.004424132406711578, 0.028721969574689865, -0.017445316538214684, -0.0078852828592062, 0.003590246196836233, 0.01720806024968624, -0.022176485508680344, 0.0007841669721528888, 0.011967486701905727, 0.015575178898870945, 0.02464674413204193, 0.00624542310833931, -0.018310604616999626, 0.018519947305321693, 0.017124323174357414, 0.024674655869603157, -0.011492974124848843, 0.043990109115839005, -0.0002296239836141467, 0.0018247801344841719, 0.0034210265148431063, -0.006423365790396929, -0.024102449417114258, 0.009797289967536926, 0.006803673692047596, -0.019399192184209824, -0.0009429193451069295, -0.015965953469276428, -0.005837203003466129, -0.0021544964984059334, -0.012469911947846413, -0.008010889403522015, 0.0219392292201519, 0.005592968314886093, 0.0035867569968104362, 0.025330599397420883, -0.022720780223608017, -0.042538661509752274, 0.004811418242752552, 0.014360984787344933, -0.0023725631181150675, -0.035979222506284714, 0.043236471712589264, -0.03070375695824623, -0.013077009469270706, -0.007815501652657986, -0.014137684367597103, 0.0073340111412107944, -0.0010842264164239168, 0.010013611987233162, 0.014793628826737404, 0.012462934479117393, -0.016998715698719025, 0.019455017521977425, -0.01482154056429863, 0.013216571882367134, -0.04170128330588341, 0.061072565615177155, 0.030033856630325317, 0.02170197293162346, 0.005484807305037975, 0.01159764640033245, -0.009853114373981953, -0.011618580669164658, 0.013488718308508396, -0.006262868642807007, -0.00400195550173521, -0.023125512525439262, -0.0072991205379366875, -0.02484213002026081, 0.016119472682476044, 0.001974809914827347, -0.008715679869055748, 0.01122082769870758, 0.009657727554440498, -0.008080670610070229, -0.013042118400335312, -0.018198953941464424, -0.025316642597317696, 0.015142534859478474, -0.0025539943017065525, -0.012707168236374855, -0.012218699790537357, 0.004877710714936256, -0.006978126708418131, -0.014961103908717632, 0.047004662454128265, -0.025512030348181725, -0.008680789731442928, -0.02213461697101593, 0.004235723055899143, 0.004336905665695667, -0.003687939839437604, -0.03034089505672455, -0.017110366374254227, 0.002393497386947274, -0.01783609203994274, 0.00015591751434840262, -0.0009089009836316109, -0.0076619829051196575, 0.020822729915380478, -0.024549050256609917, -0.002714491216465831, -0.009476295672357082, -0.004357839934527874, -0.03396952152252197, -0.00946233980357647, -0.002156241098418832, 0.0026726224459707737, -0.024228055030107498, -0.0045427605509757996, -0.02964308112859726, 0.004870732314884663, -0.02914065681397915, 0.0085133146494627, -0.0176546610891819, -0.040194008499383926, 0.0052719744853675365, 0.04371098428964615, -0.005376646760851145, -0.011269674636423588, -0.022595174610614777, -0.17864003777503967, 0.01980392262339592, -0.006046546623110771, -0.017068497836589813, 0.03070375695824623, 0.002990127308294177, 0.023348812013864517, 0.008973870426416397, 0.005554588977247477, -0.017515098676085472, 0.0042252554558217525, 0.003782144747674465, -0.025302687659859657, -0.01582639105618, -0.031373657286167145, 0.003646071068942547, -0.004793973173946142, 0.0078573701903224, 0.044939134269952774, 0.014542415738105774, 0.03570009768009186, -0.020850641652941704, 0.009197170846164227, 0.003391369478777051, -0.008415620774030685, 0.03115035779774189, 0.01547748502343893, 0.012644365429878235, -0.03567218407988548, -0.019385235384106636, 0.02471652440726757, -0.009971742518246174, 0.04320856183767319, -0.023027818650007248, -0.01374690979719162, 0.0036739837378263474, -0.015728697180747986, -0.017515098676085472, -0.025386424735188484, 0.011053352616727352, 0.00829001422971487, 0.026907656341791153, 0.002431877190247178, -0.008478423580527306, 0.007340989075601101, 0.01810126006603241, 0.021911317482590675, -0.026530837640166283, 0.01564496010541916, -0.03960784524679184, 0.007759676780551672, -0.032573893666267395, 0.01090681180357933, -0.006074459291994572, 0.010732358321547508, -0.01084400899708271, -0.02150658704340458, 0.012051224708557129, -0.014256312511861324, 0.010097349062561989, 0.003935663495212793, -0.031373657286167145, 0.0007763165631331503, 0.01415164116770029, 0.011067308485507965, -0.011325499974191189, -0.026154018938541412, 0.013377068564295769, -0.027912506833672523, 0.015212316066026688, 0.0007261612918227911, 0.0013589902082458138, -0.019134022295475006, -0.0052056824788451195, -0.010983571410179138, 0.03159695863723755, -0.009141345508396626, 0.010048502124845982, 0.020571516826748848, -0.0019102621590718627, 0.012623431161046028, 0.024074537679553032, 0.0027528710197657347, -0.012462934479117393, -0.0017445316771045327, -0.028638232499361038, -0.011702318675816059, -0.0020376129541546106, 0.01609155908226967, -0.005156835541129112, 0.029559344053268433, -0.04792577400803566, -0.007724786177277565, 0.0059907217510044575, 0.00594187481328845, 0.006350095383822918, 0.008973870426416397, -0.025902805849909782, 0.020515691488981247, -0.0028819662984460592, 0.020404042676091194, -0.013656193390488625, -0.0163427721709013, -0.0008792439475655556, 0.01828269101679325, 0.011304564774036407, -0.026181930676102638, 0.00992987398058176, 0.0629706159234047, -0.01090681180357933, -0.008101604878902435, 0.00030616531148552895, -0.003171558491885662, 0.027898550033569336, 0.012239634059369564, 0.02213461697101593, -0.008959914557635784, -0.013258440420031548, 0.008583095856010914, 0.0022958037443459034, 0.03977532312273979, 0.004825374577194452, -0.015002972446382046, 0.010704446583986282, 0.005969787482172251, 0.0021806645672768354, -0.11980047821998596, -0.011918640695512295, -0.022302092984318733, 0.027479862794280052, -0.0001742351014399901, 0.017766309902071953, -0.005261507350951433, 0.02283243089914322, -0.0067408704198896885, 0.027019307017326355, 0.010760270990431309, -0.015379791148006916, -0.011744187213480473, -0.01867346651852131, -0.023669805377721786, -0.01219776552170515, -0.004696279298514128, -0.016887066885828972, 0.0038833273574709892, 0.032378505915403366, 0.0317644327878952, 0.010934724472463131, -0.013642237521708012, -0.010160152800381184, -0.009120411239564419, 0.015254184603691101, -0.023181336000561714, 0.01878511719405651, 0.007047907914966345, 0.01747322827577591, -0.0008194937254302204, -0.010704446583986282, -0.0001516652264399454, -0.024953780695796013, -0.005701129324734211, -0.004448555875569582, -0.002259168541058898, -0.0036495602689683437, 0.03902168571949005, -0.014668022282421589, 0.025567855685949326, 0.002281847409904003, 0.0009830435737967491, -0.012190787121653557, -0.003974043298512697, -0.002466767793521285, -0.03952410817146301, 0.011939574964344501, -0.009036674164235592, -0.023990798741579056, -0.008066714741289616, -0.03840760886669159, -0.04767456278204918, 0.013991143554449081, 0.021771755069494247, -0.01791982911527157, 0.0061477296985685825, -0.002559227868914604, -0.009155302308499813, 0.0011758143082261086, -0.010599774308502674, 0.0002193748514400795, -0.007403792347759008, 0.017515098676085472, 0.014347027987241745, -0.012086115777492523, -0.03784935921430588, -0.012435021810233593, 0.00787830539047718, -0.021073943004012108, 0.011458083987236023, 0.026251712813973427, -0.022218355908989906, 0.02181362360715866, -0.0058302246034145355, -0.0019486418459564447, -0.012497824616730213, -0.010481146164238453, 0.005872093606740236, -0.003468128852546215, -0.009748443029820919, -0.04128259792923927, 0.0032151718623936176, -0.003178536659106612, 0.025442250072956085, 0.01346778403967619, 0.013795756734907627, 0.010760270990431309, 0.011730230413377285, -0.008520293049514294, 0.030536282807588577, 0.016300903633236885, 0.01254667155444622, -0.0077317641116678715, -0.0005220511229708791, -0.0182268675416708, -0.014430765993893147, -0.0249677374958992, 0.008143473416566849, 0.028470756486058235, -0.021897360682487488, -0.005739509128034115, -0.05509928613901138, 0.0003401836729608476, 0.0014270269311964512, -0.019343366846442223, 0.0005120200221426785, 0.0030581639148294926, -0.007899239659309387, -0.016761459410190582, -0.004786994773894548, 0.0011426681885495782, -0.028219543397426605, -0.011841881088912487, 0.0026726224459707737, -0.0006899622967466712, -0.0018003566656261683, -0.046948835253715515, 0.00657339533790946, 0.004026378970593214, 0.010222955606877804, 0.023627936840057373, 0.006029101554304361, 0.002170197432860732, -0.0012421065475791693, 0.022595174610614777, -0.009036674164235592, 0.008945958688855171, 0.0014418554492294788, 0.01985974796116352, -0.018073348328471184, -0.027103044092655182, 0.00012048171629430726, -0.007013017311692238, -0.0019538754131644964, 0.016984760761260986, -0.007019995246082544, 0.016286946833133698, 0.013802734203636646, 0.02244165539741516, 0.008980848826467991, 0.01941314898431301, 0.009881027042865753, -0.03475106880068779, -0.009762398898601532, -0.005087054334580898, -0.019022373482584953, -0.015407703816890717, -0.020892510190606117, 0.007703851908445358, 0.0165102481842041, 0.02150658704340458, 0.03720737248659134, 0.010920768603682518, -0.007145601790398359, -0.021073943004012108, -0.007278186269104481, 0.0028837108984589577, 0.0038484367541968822, -0.003921707160770893, -0.005324310623109341, 0.0021126277279108763, 0.03494645655155182, -0.00361815863288939, 0.00198527704924345, -0.0011182448361068964, 0.008157430216670036, -0.010195042937994003, -0.025763243436813354, 0.03254598379135132, 0.021841537207365036, -0.0056034354493021965, -0.017877960577607155, -0.006716446951031685, 0.0021143723279237747, 0.008750570937991142, 0.012218699790537357, -0.016482334583997726, -0.011751165613532066, 0.007494507823139429, -0.007571267429739237, 0.030536282807588577, -0.0048742215149104595, 0.007948086597025394, 0.00854820478707552, 0.024744436144828796, 0.045301999896764755, 0.000935068994294852, 0.018994459882378578, 0.014458678662776947, 0.009218105114996433, 0.0032762305345386267, 0.0017122578574344516, 0.006828096695244312, -0.006758315488696098, 0.0007649771287105978, 0.012553649954497814, 0.01905028522014618, 0.004710235632956028, -0.0005115839303471148, 0.011269674636423588, 0.008771505206823349, 0.016761459410190582, -0.007110711187124252, -0.014200488105416298, 0.010167130269110203, -0.03310423344373703, 0.010655599646270275, -0.00032993455533869565, -0.023823324590921402, -0.0056941513903439045, 0.04195249825716019, -0.002714491216465831, 0.008073692210018635, 0.012302436865866184, 4.140536839258857e-05, -0.03374622017145157, 0.016189252957701683, -0.014088837429881096, -0.01267925649881363, -0.02226022444665432, 0.024423442780971527, -0.013579434715211391, 0.005428982432931662, 0.046446409076452255, 0.005938385613262653, 0.0231952928006649, 0.03801683336496353, 0.017738398164510727, -0.007278186269104481, 0.01860368624329567, 0.018645554780960083, 0.006737381219863892, 0.03140157088637352, 0.009190192446112633, -0.006657132878899574, -0.014640109613537788, -0.039942797273397446, -0.007969020865857601, 0.011590668000280857, -0.0005922684795223176, 0.08072296530008316, 0.013844603672623634, -0.027577556669712067, -0.0005285930819809437, -0.003907750826328993, -0.02315342426300049, 0.00980426836758852, -0.008687767200171947, -0.015658916905522346, -0.025777200236916542, 0.015924084931612015, 0.0176546610891819, 0.008492380380630493, -0.029615169391036034, 0.0029726820066571236, 0.013090965338051319, -0.019203804433345795, -0.00016191434406209737, -0.008673811331391335, -0.004971915390342474, -0.0017445316771045327, -0.007033951580524445, -0.00591047341004014, 0.0022696356754750013, -0.017822135239839554, -0.01632881723344326, 0.022595174610614777, -0.011527865193784237, -0.03226685896515846, -0.02894526906311512, -0.009246017783880234, -0.0009019228746183217, -0.02048777975142002, -0.03475106880068779, -0.013139812275767326, 0.010634665377438068, -0.008855242282152176, -0.01280486211180687, 0.024130361154675484, -0.016063647344708443, 0.0017968675820156932, 0.0018910723738372326, -0.02591676265001297, -0.02989429421722889, -0.014863410033285618, 0.016286946833133698, -0.0157147403806448, 0.0010004888754338026, -0.05523885041475296], "4dc159c0-87f3-4130-8b29-fa95cb66e1bc": [-0.003050228115171194, 0.017973314970731735, -0.005036769900470972, -0.040453214198350906, -0.013095601461827755, 0.006282707676291466, 0.007475626654922962, 0.00017748813843354583, -0.010398278944194317, -0.030406184494495392, -0.016263464465737343, -0.0012384820729494095, -0.01853001117706299, 0.007402725983411074, 0.01956387422978878, 0.030220618471503258, 0.00954335369169712, 0.007369589526206255, -0.01353963278234005, 0.013294421136379242, -0.003436269937083125, 0.012267185375094414, -0.04647082835435867, -0.02023986168205738, -0.03499229624867439, 0.022824520245194435, 0.008708309382200241, 0.0003162478387821466, 0.00013275367382448167, -0.010769409127533436, 0.028444495052099228, 0.00020772533025592566, -0.020849576219916344, -0.01286364533007145, -0.044323574751615524, 0.007588291075080633, -0.018980668857693672, -0.005427781958132982, -0.019020432606339455, 0.012094874866306782, 0.022241314873099327, 0.01278411690145731, -0.00795942172408104, 0.02077004872262478, -0.005722698289901018, 0.02118094265460968, 0.014301775023341179, -0.017350345849990845, -0.00469546252861619, 0.025846581906080246, 0.011617707088589668, 0.018742084503173828, -0.02238711528480053, -0.020902594551444054, 0.01098148338496685, -0.019683165475726128, -0.0066936020739376545, 0.026906954124569893, 0.006508036516606808, -0.023089613765478134, 0.020319389179348946, -0.005676306784152985, -0.007429235614836216, -0.011273086071014404, -0.011697234585881233, 0.016104409471154213, 0.01565374992787838, 0.03536342456936836, -0.008091968484222889, 0.017708221450448036, 0.017151527106761932, 0.02562125213444233, 0.0017081939149647951, 0.0199350044131279, 0.02791430801153183, -0.005871813278645277, -0.018384208902716637, -0.010616980493068695, -0.024481352418661118, -0.0105109428986907, 7.067425030982122e-05, -0.02525012195110321, -0.02039891667664051, -0.01165747083723545, 0.015521204099059105, 0.008986657485365868, 0.0206109918653965, 0.008807719685137272, -0.005792285315692425, -0.010259104892611504, 0.011365868151187897, 0.010557334870100021, -0.014725924469530582, 0.0064881546422839165, -0.010988110676407814, 0.027198556810617447, -0.01283713523298502, 0.030273636803030968, 0.0022251256741583347, -0.025369413197040558, 0.017496148124337196, -0.0012368252500891685, -0.008999912068247795, 0.0008429133449681103, -0.013665551319718361, -0.008091968484222889, -0.0013503181980922818, -0.0074424901977181435, 0.0160248801112175, -0.011962328106164932, -0.01789378747344017, 0.04183169826865196, -0.007932912558317184, -0.011047757230699062, 0.006769816391170025, -0.016820160672068596, 0.017814259976148605, -0.007780483923852444, 0.0028133010491728783, -0.0048810276202857494, 0.006991831585764885, 0.017880532890558243, 0.020014531910419464, -0.0025962560903280973, 0.020279625430703163, 0.0039598289877176285, -0.005099729169160128, -0.01908670738339424, 0.01150504220277071, -0.016197191551327705, 0.027940817177295685, 0.003419701475650072, -0.019338544458150864, 0.00790640339255333, 0.01059047132730484, -0.0026376768946647644, 0.005331685766577721, 0.03061825782060623, -0.0014348166296258569, -0.025130830705165863, 0.007223788183182478, 0.008555881679058075, 0.0011713802814483643, -0.009887974709272385, 0.01883486844599247, -0.0028944858349859715, 0.004334272816777229, 0.008569136261940002, 0.0030601690523326397, -0.0006424366729333997, 0.013148619793355465, 0.024282531812787056, -0.005354881752282381, -0.007628055289387703, 0.0157597865909338, -0.006852657999843359, -0.0027867916505783796, 0.000408616237109527, 0.017363600432872772, -0.004102316219359636, 0.0035555618815124035, 0.040877364575862885, 0.007919657975435257, -0.00925837829709053, 0.01528261974453926, 0.020173588767647743, 0.011147166602313519, 0.00902642123401165, -0.014315029606223106, 0.02644304186105728, -0.019855476915836334, -0.004652384668588638, -0.012996191158890724, -0.002286428352817893, 0.005361509043723345, -0.006040810141712427, 0.01541516650468111, -0.01579955220222473, -0.03364032134413719, -0.022904047742486, 0.015375402756035328, -0.01591884344816208, 0.020213352516293526, 0.03379937633872032, -0.015097054652869701, -0.012373222969472408, -0.0044502513483166695, 0.005938086658716202, -0.0012335114879533648, 0.009165595285594463, -0.002196959452703595, 0.028364965692162514, -0.011677352711558342, 0.0020147080067545176, -0.6065331101417542, -0.009019793942570686, -0.014275265857577324, -0.019338544458150864, 0.004546347539871931, 0.000502848532050848, 0.037908319383859634, 0.016621340066194534, -0.023990929126739502, 0.0485120452940464, -0.004947301000356674, -0.023129377514123917, 0.015574222430586815, 0.012585297226905823, -0.023977674543857574, -0.04859157279133797, 0.039419349282979965, -0.021379761397838593, -0.019431328400969505, 0.021273724734783173, -0.009205359034240246, 0.010285614058375359, -0.013354066759347916, -0.0027586256619542837, -0.01689968816936016, 0.017350345849990845, 0.003787518246099353, -0.009841582737863064, 0.0233149416744709, 0.013181756250560284, -0.006584250833839178, -0.010086794383823872, 0.028577040880918503, -0.003008807310834527, 0.026999736204743385, -0.008443216793239117, -0.010431415401399136, 0.024189749732613564, 0.018927650526165962, 0.03589361160993576, -0.00730331614613533, -0.004533092956990004, -0.005046710837632418, -0.048034876585006714, 0.007144260220229626, -0.00312478537671268, -0.018450483679771423, 0.040771324187517166, -0.002546550938859582, -0.007568409200757742, 0.0020660697482526302, -0.0315195731818676, 0.0018854750087484717, -0.01406319160014391, 0.0023825245443731546, -0.012061738409101963, 0.021048394963145256, 0.016289973631501198, -0.013433595187962055, -0.023023338988423347, 0.005268726497888565, 0.015176582150161266, -0.0020445308182388544, -0.03541644290089607, 0.013261284679174423, 0.017801005393266678, 0.0002665428619366139, -0.004698776174336672, -0.0010264074662700295, -0.040347177535295486, -0.012406359426677227, 0.016515303403139114, -0.013367322273552418, -0.04246792197227478, -0.000120120334031526, 0.019020432606339455, 0.04026765003800392, -0.004685521125793457, -0.011849663220345974, 0.004433682654052973, 0.011756881140172482, -0.000779539521317929, -0.02254617214202881, -0.03459465503692627, 0.018132371827960014, 0.0013519750209525228, -0.020372407510876656, 0.02023986168205738, -0.0019484346266835928, 0.021777402609586716, 0.017615439370274544, 0.01815888099372387, -0.012843762524425983, -0.0242560226470232, 0.007362962234765291, 0.03212928771972656, -0.010464551858603954, -0.030406184494495392, -0.03652983531355858, -0.02457413449883461, -0.0017463010735809803, -0.011770135723054409, 0.005719384644180536, 0.013214893639087677, 0.0022135276813060045, 0.004970496520400047, -0.002952474867925048, 0.005142807029187679, 0.03825294226408005, -0.036635871976614, -0.01851675659418106, -0.024918755516409874, -0.00662732869386673, 0.009974129498004913, -0.007575036492198706, -0.028497513383626938, 0.008748074062168598, 0.0071243783459067345, 0.03303060680627823, -0.026310494169592857, 0.009066185913980007, 0.005875126924365759, 0.003956515341997147, -0.02169787324965, 0.0001265405589947477, -0.0009029735228978097, -0.012008719146251678, 0.001476237433962524, -0.00615678820759058, -0.016038134694099426, 0.05341626703739166, -0.0003560118202585727, 0.01841071806848049, -0.013864371925592422, 0.003529052482917905, -0.005709443707019091, 0.018132371827960014, 0.008052204735577106, 0.026946717873215675, 0.004198412876576185, 0.0040956889279186726, -0.005520564969629049, 0.008078713901340961, -0.0153621481731534, -0.02754317782819271, -0.02514408528804779, 0.004026102367788553, -0.007800365798175335, -0.020120570436120033, -0.0068659125827252865, 0.004496642388403416, -0.011962328106164932, -0.017403364181518555, 0.007263552397489548, -0.0003881129377987236, -0.013566141948103905, -0.0033269189298152924, 0.0065478007309138775, -0.016687612980604172, -0.003348457859829068, -0.009298142045736313, 0.017191290855407715, -0.04999656602740288, 0.004367409739643335, -0.010756154544651508, -0.010908583179116249, -0.013519749976694584, 0.026986481621861458, -0.02567427046597004, -0.0463382825255394, -0.02310286834836006, -0.0046225618571043015, 0.012154520489275455, -0.010769409127533436, -0.032898060977458954, 0.011723744682967663, -0.036556344479322433, 0.010782663710415363, -0.008343806490302086, -0.01830468140542507, 0.0031049035023897886, -0.008761328645050526, 0.001648547942750156, -0.0189939234405756, 0.00764130987226963, 0.011611079797148705, 0.054450131952762604, 0.027410631999373436, -0.03822643309831619, 0.006219747941941023, 0.02368607185781002, -0.002024648943915963, -0.029398830607533455, 0.025581488385796547, -0.00042870533070527017, 0.03875661641359329, 0.006504722870886326, -0.004652384668588638, 0.021141178905963898, 0.03573455661535263, 0.007893148809671402, -0.0035953258629888296, 0.0023179082199931145, -0.010623607784509659, 0.01186954602599144, -0.015110309235751629, 0.02342098020017147, -0.007369589526206255, 0.05323070287704468, 0.007594918832182884, 0.026098420843482018, -0.006527918856590986, -0.021247215569019318, -0.012505768798291683, 0.04403197020292282, 0.0194048173725605, 0.0021721068769693375, 0.0134070860221982, 0.007336452603340149, -0.009848210029304028, 0.009536725468933582, 0.007966049015522003, 0.028152892366051674, 0.017933551222085953, 0.00495724193751812, -0.00624957075342536, 0.0006710170418955386, 0.0022532916627824306, -0.006839402951300144, -0.05964595824480057, -0.00687253987416625, -0.03382588550448418, 0.00258962856605649, -0.011823154054582119, 0.01894090510904789, 0.009251751005649567, 0.04530441761016846, -0.003224195446819067, 0.012399732135236263, 0.0034462108742445707, -0.0042448039166629314, 0.016515303403139114, 0.0070117139257490635, -0.04546347260475159, 0.011286340653896332, -0.00014352308062370867, 0.017986569553613663, 0.042335376143455505, 0.0027470276691019535, 0.041407547891139984, 0.02509106695652008, -0.006938813254237175, -0.009172222577035427, 0.015627240762114525, 0.0018506814958527684, -0.0012674765894189477, 0.026986481621861458, 0.037431150674819946, 0.01492474414408207, 0.017257563769817352, 0.02228107862174511, 0.014858471229672432, 0.002471993677318096, -0.0027022932190448046, 0.04435008391737938, -0.003522425191476941, -0.019166234880685806, -0.023089613765478134, -0.003973083570599556, 0.006826148368418217, -0.03687445819377899, -0.030909860506653786, -0.0476902574300766, -0.011094148270785809, 0.018861377611756325, 0.014646396040916443, -0.0010843966156244278, -0.00743586290627718, 0.00923849642276764, 0.00623300252482295, 0.005450977943837643, -0.02482597343623638, 0.02217504195868969, 0.027198556810617447, -0.008555881679058075, -0.027052756398916245, -0.03385239467024803, 0.004248117562383413, -0.03822643309831619, 0.053813908249139786, -0.01789378747344017, 0.009795191697776318, 0.009397552348673344, -0.0015971862012520432, 0.01746963895857334, -0.004599365871399641, 0.015123563818633556, -0.013479986228048801, -0.0028944858349859715, 0.014049937017261982, 0.005560328718274832, -0.02743714116513729, 0.0020809811539947987, -0.023884892463684082, 0.054078999906778336, 0.023354705423116684, 0.001668429933488369, 0.022413626313209534, -0.013996917754411697, -0.01815888099372387, 0.00925837829709053, -0.007415980566293001, -0.018251663073897362, 0.01249914150685072, 0.029133737087249756, 0.011677352711558342, 0.02112792432308197, -0.019166234880685806, 0.007806993089616299, 0.025581488385796547, 0.015163327567279339, -0.023606544360518456, -0.017814259976148605, -0.0015723337419331074, 0.04967845603823662, -0.003933319356292486, -0.028046855702996254, -0.012306949123740196, -0.04278603196144104, -0.01072301808744669, 9.70282344496809e-05, -0.022731736302375793, 0.01685992442071438, -0.0016982529778033495, -0.004251431208103895, -0.007018341217190027, 0.012976309284567833, 0.013552887365221977, 0.023606544360518456, 0.015256110578775406, -0.022095514461398125, 0.0169659610837698, 0.03533691540360451, -0.04026765003800392, 0.00748888123780489, 0.0019732872024178505, 0.0029640726279467344, 0.043581314384937286, -0.007972676306962967, -0.020942358300089836, -0.0014928057789802551, 0.014434321783483028, 0.01894090510904789, -0.025634506717324257, -0.011823154054582119, 0.010040403343737125, 0.019550619646906853, 0.023805364966392517, -0.01888788677752018, 0.032526928931474686, 0.03573455661535263, 0.03313664346933365, 0.0210218857973814, -0.014195738360285759, 0.040612269192934036, -0.009980756789445877, -0.009636135771870613, -0.007263552397489548, 0.001205345382913947, 0.035761065781116486, 0.02441507950425148, -0.01794680580496788, 0.023858383297920227, -0.035655029118061066, -0.002415661234408617, -0.0045861112885177135, -0.03194372355937958, 0.008423334918916225, 0.03584059327840805, -0.017363600432872772, -0.0146861607208848, -0.026641860604286194, 0.004456878639757633, -0.0010413189884275198, -0.03186419606208801, 0.005643170326948166, 0.02540917880833149, 0.007223788183182478, 0.002349388087168336, -0.01611766405403614, -0.017032233998179436, 0.013354066759347916, -0.04501281678676605, 0.01197558268904686, 0.015892334282398224, -0.010888701304793358, 0.004271313082426786, -0.026681624352931976, 0.01497776247560978, 0.011425514705479145, 0.008045576512813568, -0.02514408528804779, 0.020796557888388634, 0.005732639227062464, 0.007899776101112366, -0.0352838970720768, 0.0027470276691019535, -0.022983575239777565, 0.012724471278488636, -0.0013586024288088083, 0.0024040634743869305, 0.00837031565606594, 0.008980030193924904, 0.02258593589067459, 0.006753247696906328, -0.0037344996817409992, 4.2533989471849054e-05, -0.020942358300089836, 0.008708309382200241, 0.03594662994146347, 0.002735429909080267, -0.015428421087563038, -0.006358921993523836, -0.01878185011446476, -0.0005786486435681581, 0.008555881679058075, 0.00645833183079958, -0.013824607245624065, 0.018848123028874397, -0.02833845652639866, 0.00013327143096830696, 0.0342235267162323, -0.015057290904223919, 0.01867581158876419, -0.0066936020739376545, -0.03141353651881218, 0.01758893020451069, 0.007217160891741514, 0.0024471411015838385, -0.0028298692777752876, -0.014407812617719173, 0.004334272816777229, -0.022002730518579483, -0.038014356046915054, 0.010332005098462105, -0.015826061367988586, 0.009755427949130535, -0.0015358834061771631, -0.012366595678031445, 0.03260645642876625, -0.013354066759347916, -0.04747818410396576, -0.012194284237921238, -0.015667004510760307, 0.027940817177295685, -0.0018274858593940735, -0.00384053704328835, -0.03401144966483116, -0.001122503774240613, 0.004682207480072975, 0.0022549484856426716, -0.0070978691801428795, -0.007462372072041035, 0.0007277635158970952, 0.0018407405586913228, -0.0022715169470757246, -0.01011993084102869, -0.007230415474623442, 0.0008565822499804199, -0.029133737087249756, -0.02092910371720791, 0.020624246448278427, 0.007263552397489548, 0.007077986840158701, -0.027172047644853592, 0.014911489561200142, -0.008516116999089718, -0.0026774408761411905, 0.01554771326482296, 0.0071508875116705894, -0.01691294275224209, 0.013228148221969604, 0.012121384032070637, 0.003268929896876216, 0.03804086521267891, 0.006677033379673958, 0.025104321539402008, 0.01135261356830597, 0.014778942801058292, 0.0003425500472076237, -0.002332819625735283, 0.00048503762809559703, -0.01659483090043068, 0.0016170681919902563, -0.013784843496978283, 0.02604540064930916, 0.007316570729017258, 0.00739609869197011, 0.005732639227062464, 0.02494526468217373, 0.010000638663768768, 0.01951085589826107, -0.028497513383626938, -0.015203092247247696, 0.002516728127375245, -0.006812893785536289, -0.009185477159917355, 0.017350345849990845, -0.037590209394693375, -0.0032341363839805126, 0.03292457014322281, 0.002695665927603841, -0.025488706305623055, -0.011498414911329746, 0.0077009559608995914, -0.0130690922960639, 0.0167008675634861, 0.015826061367988586, 0.0036682263016700745, 0.025130830705165863, 0.016144173219799995, -0.04090387374162674, 0.020637501031160355, -0.010921837761998177, 0.010842309333384037, 0.015932098031044006, 0.01074289996176958, -0.00521902134642005, -0.018861377611756325, 0.006938813254237175, -0.03167863190174103, -0.017655203118920326, 0.025183849036693573, -0.01259855180978775, -0.02338121458888054, -0.03660936281085014, -0.04920128732919693, -0.024759700521826744, 0.006570996250957251, 0.0070647322572767735, -0.023765601217746735, 0.02066401019692421, -0.021618345752358437, -0.010232595726847649, -0.004615934565663338, 0.0055073099210858345, 0.0630391463637352, -0.017071997746825218, 0.0495724193751812, -0.0003947402583435178, -0.014460830949246883, -0.014434321783483028, 0.00624957075342536, -0.007568409200757742, 0.022135278210043907, 0.019338544458150864, 0.013917390257120132, -0.019736183807253838, 0.03271249309182167, -0.010272359475493431, -0.015401911921799183, -0.005288608372211456, -0.008668545633554459, 0.03329569846391678, 0.013771588914096355, -0.016157427802681923, -0.01092846505343914, 0.015322383493185043, -0.020597737282514572, 0.009225241839885712, 0.0008988314657472074, -0.04172566160559654, 0.004115571267902851, -0.04355480521917343, -0.02525012195110321, 0.02676115371286869, 0.015985116362571716, 0.04225584864616394, 0.01220753975212574, -0.03499229624867439, -0.006932185962796211, -0.00964939035475254, -0.015229601413011551, 0.008078713901340961, 0.008754701353609562, 0.006524605210870504, -0.0067201112397015095, -0.01098148338496685, 0.017284072935581207, -0.00608057389035821, 0.0117900175973773, -0.00555701507255435, 0.0034031332470476627, 0.02812638320028782, -0.013301048427820206, -0.025793563574552536, 0.014248756691813469, 0.010285614058375359, -0.0028282124549150467, 0.0222280602902174, -0.023553526028990746, 0.0048545184545218945, -0.013446849770843983, -0.023447489365935326, 0.0055934651754796505, -0.007482253946363926, -0.008933639153838158, -0.0036881084088236094, -0.005378077272325754, -0.0020859516225755215, -0.006938813254237175, -0.007873266004025936, 0.01473917905241251, -0.026429787278175354, -0.01711176335811615, -0.0355755016207695, 0.010749527253210545, 0.005855245050042868, 0.016767142340540886, -0.005344940349459648, 0.020690519362688065, 0.040559250861406326, -0.014301775023341179, 0.0098349554464221, -0.020518209785223007, -0.004493328742682934, -0.03878312557935715, 0.019378308206796646, -0.0037908318918198347, -0.006226375233381987, 0.027490159496665, 0.001100964960642159, -0.012200912460684776, -0.023778855800628662, -0.0007654564687982202, 0.0011896054493263364, -0.018278172239661217, -0.0006490640225820243, -0.02045193687081337, -0.010762781836092472, 0.024441588670015335, -0.0037344996817409992, -0.006713483948260546, 0.02071702852845192, -0.018079351633787155, -0.012505768798291683, 0.02253291755914688, -0.02807336486876011, -0.0043640960939228535, -0.018251663073897362, -0.01155143417418003, 0.02942533977329731, -0.02175089344382286, -0.026774408295750618, -0.013996917754411697, 0.0026393337175250053, -0.011007992550730705, -0.013433595187962055, -0.023752346634864807, 0.017191290855407715, 0.004943987354636192, 0.0007447460666298866, -0.01393064484000206, -0.011650843545794487, 0.030591748654842377, 0.029822979122400284, 0.018092608079314232, -0.008549254387617111, -0.017257563769817352, 0.010504315607249737, -0.005209080409258604, 0.016289973631501198, -0.017708221450448036, -0.0153621481731534, 0.004861145745962858, 0.026111675426363945, 0.015574222430586815, -0.004652384668588638, -0.011054384522140026, 0.0030899918638169765, -0.04185820743441582, -0.0036781674716621637, 0.0036615990102291107, 0.047186579555273056, 0.014301775023341179, 0.020571228116750717, -0.0016203818377107382, 0.008761328645050526, -0.005871813278645277, 0.016674358397722244, -0.030512221157550812, 0.0169659610837698, 0.022837774828076363, 0.02608516626060009, 0.005938086658716202, -0.00039577577263116837, -0.02974345162510872, -0.006292648613452911, -0.005487428046762943, -0.00478824507445097, 0.007992558181285858, 0.024070458486676216, 0.006335726007819176, -0.01789378747344017, -0.020703773945569992, 0.025382667779922485, 0.019895240664482117, 0.022625699639320374, 0.005351568106561899, -0.02002778649330139, -0.00797930359840393, 0.006239629816263914, 0.0036881084088236094, -0.023553526028990746, 0.0010893672006204724, 0.00029885111143812537, -0.021883439272642136, 0.02395116537809372, -0.021419527009129524, -0.024905500933527946, 0.006604133173823357, -0.008078713901340961, 0.010179576463997364, 0.004894282203167677, -0.0393398217856884, 0.03562851995229721, 0.011180303059518337, 0.02437531389296055, 0.0008271734695881605, 0.01406319160014391, -0.0006776443333365023, -0.0028961426578462124, -0.01038502436131239, -0.005175943486392498, -0.0007103667594492435, -0.015256110578775406, 0.009410806931555271, -0.026018891483545303, -0.009152340702712536, 0.0028083305805921555, 0.0032142542768269777, -0.015481439419090748, 0.009689154103398323, 0.008648663759231567, 0.0011904338607564569, 0.03756370022892952, -0.004516524262726307, -0.014898234978318214, 0.014049937017261982, -0.023937910795211792, -0.008615527302026749, 0.016183936968445778, 0.004039356950670481, -0.0008996598771773279, 0.005146120674908161, -0.021247215569019318, 0.015044036321341991, 0.03308362513780594, -0.03637078031897545, -0.01595860719680786, 0.18577727675437927, -0.025634506717324257, 0.00871493760496378, 0.0251971036195755, -0.011412260122597218, -0.012088247574865818, 0.012300321832299232, -0.026376767084002495, -0.008701682090759277, 0.019842222332954407, -0.022029239684343338, 0.013128737919032574, -0.019007178023457527, 0.01732383668422699, -0.008052204735577106, -0.01218102965503931, -0.02023986168205738, -0.035867102444171906, -0.0021903321612626314, 0.005861872341483831, 0.009384297765791416, -0.02164485491812229, -0.029239773750305176, -0.030035054311156273, 0.0157597865909338, -0.021949712187051773, -0.0015640495112165809, -0.008668545633554459, 0.0224931538105011, 0.01369206141680479, -0.01689968816936016, 0.014155973680317402, -0.02509106695652008, 0.007131005637347698, -0.030909860506653786, -0.014527104794979095, 0.0270792655646801, -0.0004978780634701252, 0.015587477013468742, -0.019418073818087578, -0.012386477552354336, -0.011816526763141155, -0.020412173122167587, -0.015123563818633556, 0.009205359034240246, 0.033216170966625214, -0.01460663229227066, -0.0072966888546943665, -0.002349388087168336, 0.019166234880685806, -0.015879079699516296, -0.03215579688549042, 0.007720837835222483, -0.001345347729511559, -0.018119117245078087, -0.007051477674394846, 0.021512309089303017, 0.013161874376237392, 0.017403364181518555, -0.0031479811295866966, -0.004523152019828558, 0.02535615861415863, -0.0098349554464221, 0.02338121458888054, -0.004774990491569042, 0.008390198461711407, -0.05572257936000824, 0.0075286454521119595, 0.004400546196848154, -0.009622881188988686, -0.020200097933411598, -0.01929878070950508, -0.018848123028874397, -0.006329098716378212, -0.01784076914191246, -0.006193238776177168, 0.026124930009245872, -0.015097054652869701, 0.012830507941544056, 0.016369501128792763, -0.008025694638490677, -0.030379675328731537, -0.00019881986372638494, 0.02931930124759674, -0.013546260073781013, -0.032420892268419266, 0.020438682287931442, 0.0001452834694646299, 0.012141265906393528, -0.005311803892254829, -0.005537133198231459, -0.0050168875604867935, 0.008608900010585785, 0.012055111117661, 0.007541900034993887, 0.02953137643635273, 0.0009071155800484121, 0.034462109208106995, 0.00581879448145628, 0.018556520342826843, -0.018331190571188927, 0.036556344479322433, -0.005805539898574352, 0.014102955348789692, 0.00032163254218176007, -0.00743586290627718, -0.015136818401515484, 0.004970496520400047, -0.0005214879056438804, -0.017085252329707146, 0.002626078901812434, -0.03698049485683441, -0.008270906284451485, -0.0074689993634819984, 0.011445396579802036, 0.01158457063138485, -0.00777385663241148, -0.004529779311269522, 0.006286021322011948, -0.01590558886528015, 0.007594918832182884, -0.012187656946480274, -0.015428421087563038, 0.004887654911726713, 0.01997476816177368, -0.040771324187517166, -0.03825294226408005, 0.007362962234765291, 0.016303228214383125, -0.017071997746825218, 0.03647681698203087, -0.04010859131813049, -0.0011879486264660954, 0.008887248113751411, 0.00011017933866241947, 0.015388657338917255, -0.011591197922825813, -0.01774798519909382, 0.006070632953196764, 0.004251431208103895, -0.01533563807606697, 0.0063158441334962845, 0.016263464465737343, 0.012234048917889595, 0.014222247526049614, -0.01945783756673336, -0.009304769337177277, -0.029027698561549187, 0.02556823380291462, 0.0063158441334962845, -0.005318431183695793, 0.007031595800071955, -0.0038173412904143333, -0.02171112783253193, 0.005321744829416275, -0.01622370071709156, 0.017827514559030533, -0.022307587787508965, 0.010809172876179218, -0.00036636702134273946, -0.008569136261940002, -0.0066074468195438385, 0.020412173122167587, -0.00036346755223348737, -0.011630961671471596, -0.0160248801112175, -0.16467586159706116, 0.025541724637150764, 0.01606464385986328, -0.019524110481142998, 0.01296968199312687, -0.007727465126663446, 0.03512484207749367, 0.009947620332241058, -0.0016924540977925062, -0.0121280113235116, 0.02498502843081951, -0.005845303647220135, 0.015348893590271473, -0.014712669886648655, -0.014447576366364956, 0.005401272792369127, -0.01528261974453926, 0.009059558622539043, 0.015587477013468742, 0.026310494169592857, 0.03130749985575676, -0.013705315999686718, 0.00012964711640961468, 0.022413626313209534, 0.003315321169793606, -0.016157427802681923, 0.00996750220656395, 0.005331685766577721, -0.00764130987226963, -0.034515127539634705, 0.010530824773013592, -0.00452646566554904, 0.02828543819487095, -0.0006722596590407193, -0.019789204001426697, 0.006236316170543432, 0.016674358397722244, -0.003631776198744774, -0.01842397451400757, 0.0016965961549431086, 0.0012981280451640487, 0.010338632389903069, 0.006624015048146248, -0.014593377709388733, -0.0041321394965052605, 0.00850286241620779, 0.0025945992674678564, -0.014262011274695396, -0.0022069003898650408, -0.023884892463684082, 0.003761009080335498, 0.0047584217973053455, 0.032526928931474686, 0.0038173412904143333, 0.026641860604286194, -0.015680259093642235, -0.013506495393812656, 0.02644304186105728, 0.003823968581855297, 0.0045364066027104855, -0.010391651652753353, -0.014805451966822147, -0.012068365700542927, 0.01398366317152977, -0.0015201434725895524, -0.01385111641138792, -0.007157514803111553, 0.03589361160993576, -0.03199674189090729, 0.018026333302259445, 0.011630961671471596, -0.011763508431613445, 0.006799639202654362, -0.009901229292154312, -0.011478533037006855, 0.02347399853169918, -0.00905293133109808, 0.0014323313953354955, -0.0030701099894940853, -0.004291195422410965, -0.017204545438289642, 0.056888990104198456, 0.020955612882971764, -0.017297327518463135, 0.024640407413244247, -0.01675388589501381, -0.015216346830129623, -0.005537133198231459, 0.009675899520516396, -0.04262697696685791, 0.02650931477546692, -0.04994354769587517, -0.023447489365935326, -0.011239949613809586, 0.018238408491015434, 0.002823241986334324, -0.008383571170270443, -0.03865057975053787, 0.02148579992353916, -0.03706002235412598, 0.01705874316394329, 0.004632502794265747, -0.006998458877205849, 0.006597505882382393, 0.02780827134847641, -0.0032175681553781033, -0.00705810496583581, 0.006070632953196764, 0.028471004217863083, -0.0008433275506831706, 0.020412173122167587, 0.007561781909316778, 0.014831961132586002, 0.032261837273836136, -0.013141992501914501, 0.019338544458150864, -0.034197017550468445, -0.024441588670015335, 0.016183936968445778, -0.02075679413974285, 0.03939284011721611, 0.02228107862174511, 0.013075719587504864, 0.03364032134413719, 0.011153793893754482, -0.01675388589501381, -0.1072566881775856, -0.010497688315808773, 0.006958695128560066, 0.027357611805200577, -0.009622881188988686, 0.00792628526687622, -0.006783070974051952, 0.027834780514240265, 0.005547074135392904, 0.014898234978318214, 0.009072813205420971, -0.019325289875268936, -0.01296968199312687, -0.011995464563369751, -0.014368048869073391, -0.015627240762114525, -0.021989475935697556, -0.0146861607208848, -0.009019793942570686, 0.029875997453927994, -0.003992965444922447, 0.003983024507761002, -0.012512396089732647, -0.0072966888546943665, 0.0020909220911562443, -0.01098148338496685, -0.028364965692162514, 0.008085341192781925, 0.014633141458034515, 0.013824607245624065, 0.025289885699748993, -0.013314303010702133, -0.018397463485598564, 0.009284887462854385, -0.00764130987226963, 0.023182395845651627, 0.005030142609030008, -0.02045193687081337, 0.06436461210250854, -0.018768595531582832, 0.01679365150630474, 0.006713483948260546, 0.008304042741656303, -0.0336933396756649, 0.017204545438289642, 0.014315029606223106, -0.03631776198744774, 0.0291072279214859, -0.0002826970012392849, -0.03992302715778351, -0.005709443707019091, -0.01590558886528015, -0.014049937017261982, 0.016820160672068596, 0.010060285218060017, -0.010570589452981949, 0.016939451918005943, -0.0049042231403291225, -0.007197279017418623, -0.002997209317982197, 0.011452023871243, 0.011577943339943886, -0.01675388589501381, 0.020014531910419464, 0.02013382501900196, -0.005696189124137163, -0.03979048132896423, 0.010921837761998177, 0.034727200865745544, -0.03276551142334938, 0.012373222969472408, -0.010292241349816322, -0.02958439476788044, 0.028550531715154648, 0.006570996250957251, 0.024030692875385284, -0.021194197237491608, -0.004264685790985823, 0.009801818989217281, -0.02931930124759674, -0.03443560004234314, -0.001090195612050593, 0.018238408491015434, -0.00936441496014595, 0.021777402609586716, 0.03244740143418312, -0.007462372072041035, 0.006445077247917652, 0.0020892652682960033, -0.033984940499067307, 0.009907856583595276, 0.0076148007065057755, 0.02336796000599861, -0.00448670145124197, -0.0007729122298769653, 0.014831961132586002, -0.005305176600813866, -0.00461924821138382, -0.016621340066194534, 0.01202860102057457, -0.04795534908771515, -0.021618345752358437, -0.05662389472126961, 0.03189070522785187, -0.010530824773013592, 0.003823968581855297, 0.0032805276568979025, -0.025912854820489883, 0.0014132778160274029, -0.026774408295750618, -0.011153793893754482, -0.031334009021520615, -0.0101729491725564, -0.02206900529563427, -0.012214167043566704, 0.02217504195868969, -0.002520041773095727, -0.020385662093758583, 0.026787662878632545, -0.007687701378017664, 0.018503502011299133, 0.023460743948817253, -0.02269197255373001, -0.004059238824993372, 0.0264032781124115, 0.007561781909316778, -0.0075551546178758144, -0.0025548352859914303, 0.0036914220545440912, 0.025581488385796547, -0.016263464465737343, -0.021896693855524063, 0.0219629667699337, -0.02164485491812229, 0.012061738409101963, 0.03345475345849991, 0.005702816415578127, 0.003262302605435252, 0.000650306639727205, 0.007137632928788662, 0.0036052668001502752, -0.013115483336150646, -0.014858471229672432, -0.032845038920640945, -0.0032854981254786253, 0.00858239084482193, -0.007806993089616299, -0.011127284727990627, -0.015428421087563038, -0.0015549369854852557, 0.03531040623784065, 0.005646483972668648, 0.020942358300089836, 0.014540359377861023, -0.019948258996009827, -0.02217504195868969, -0.036635871976614, -0.002412347588688135, 0.03364032134413719, -0.011770135723054409, -0.019391562789678574, -0.00858239084482193, 0.01106101181358099, -0.010855563916265965, 0.002024648943915963, -0.016409264877438545, -0.011412260122597218, -0.008695054799318314, 0.0029856115579605103, 0.011365868151187897, 0.008118477649986744, 0.011750253848731518, 0.013387204147875309, -0.013301048427820206, -0.00645833183079958, 0.0014704385539516807, 0.02009406127035618, 0.02947835810482502, 0.018755340948700905, 0.0014629828510805964, -0.034833237528800964, 0.011809899471700191, 0.020200097933411598, 0.008761328645050526, -0.03366683050990105, 0.0026608724147081375, 0.02926628291606903, -0.006971949711441994, 0.01579955220222473, 0.0107760364189744, 0.0048445770516991615, -0.020359152927994728, 0.010809172876179218, 0.01935179904103279, -0.013102228753268719, -0.024295786395668983, 0.010146440006792545, 0.047822803258895874, 0.0035522482357919216, 0.00027524124016053975, 0.01202860102057457, 0.012538906186819077, -0.019285526126623154, 0.00026592155336402357, -0.025024792179465294, 0.0039598289877176285, -0.02320890501141548, -0.028417985886335373, -0.008946893736720085, -0.02045193687081337, -0.033163152635097504, 0.028524022549390793, 0.023566780611872673, 0.012830507941544056, -0.0038604189176112413, 0.010053657926619053, -0.014765688218176365, -0.027278084307909012, 0.0071508875116705894, -0.0030618258751928806, -0.02326192334294319, 0.013499868102371693, -0.01165747083723545, 0.027490159496665, -0.0011556404642760754, -0.002203586744144559, 0.005089788231998682, 0.018278172239661217, 0.012094874866306782, 0.005848617292940617, -0.015693513676524162, 0.019577128812670708, -0.0048545184545218945, 7.869952969485894e-05, -0.012850389815866947, -0.004924105014652014, -0.0007095383480191231, -0.04480074346065521, -0.015521204099059105, 0.024136731401085854, 0.003698049345985055, 0.07894473522901535, 0.018715575337409973, -0.010769409127533436, 0.011949073523283005, 0.0017247622599825263, 0.017403364181518555, 0.01913972571492195, -0.02462715283036232, -0.002546550938859582, -0.018132371827960014, -0.017761241644620895, -0.0076148007065057755, -0.0015168298268690705, -0.03488625958561897, 0.02713228389620781, 0.0062296888791024685, -0.029822979122400284, 0.012479259632527828, -0.00978193711489439, -0.02160509116947651, 0.01679365150630474, 0.018503502011299133, 0.015017527155578136, -0.0017645262414589524, -0.005470859818160534, -0.010338632389903069, 0.01126645877957344, -0.0013958810595795512, -0.02697322703897953, -0.030379675328731537, 0.01406319160014391, 0.0124660050496459, -0.03130749985575676, -0.02676115371286869, -0.003295439062640071, 0.02947835810482502, 0.004069179762154818, 0.0030899918638169765, -0.004433682654052973, -0.004258058499544859, -0.03496578708291054, 0.013599278405308723, -0.04612620547413826, -0.05426456779241562, 0.001528427703306079, 0.022877538576722145, -0.005523878615349531, -0.007780483923852444, -0.05863860249519348], "8b135e07-e798-40ba-af9c-57338f8631ef": [-0.019550781697034836, 0.020988937467336655, 0.01832970604300499, -0.02117888256907463, 0.005962920840829611, 0.017095062881708145, 0.008737476542592049, 0.002576130907982588, -0.006515796761959791, -0.024964218959212303, -0.014286587946116924, -0.0006503924960270524, -0.024000925943255424, 0.020568344742059708, -1.951654485310428e-05, 0.02594107948243618, 0.02467930130660534, 0.01345218624919653, 0.00028936954913660884, 0.012278596870601177, -0.0034580191131681204, 0.022115040570497513, -0.029224416241049767, -0.0036259170155972242, -0.031368084251880646, 0.022074338048696518, -0.0028627444989979267, -0.0020707412622869015, -0.011640923097729683, 0.004429792053997517, 0.009490473195910454, 0.011159276589751244, -0.01839754357933998, -0.029712846502661705, -0.03855886310338974, -0.020296994596719742, -0.0053591663017869, -0.022318553179502487, -0.0064581348560750484, 0.005840812809765339, 0.003666619537398219, 0.007462130393832922, -0.007950561121106148, 0.0034580191131681204, -0.029848521575331688, 0.024611463770270348, 0.00841185636818409, -0.013357213698327541, 0.0010226510930806398, 0.027718422934412956, 0.01416448038071394, 0.022345688194036484, -0.022020068019628525, -0.027148587629199028, 0.008554315194487572, -0.013669266365468502, 0.0014186527114361525, 0.02721642516553402, 0.023702440783381462, -0.044799916446208954, 0.028925931081175804, 0.015154908411204815, -0.00943620316684246, -0.0062274872325360775, -0.029007336124777794, 0.006932997610419989, 0.0030119873117655516, 0.02197936549782753, 0.009097015485167503, 0.020093481987714767, 0.038748808205127716, 0.027569180354475975, 0.0003531792317517102, 0.0074892654083669186, 0.018383976072072983, -0.0014203486498445272, -0.010365577414631844, -0.014381560496985912, -0.015087070874869823, -0.005505017004907131, 0.010379144921898842, -0.0005940025439485908, -0.01960505172610283, 0.00857466645538807, 0.024163736030459404, 0.004670615307986736, 0.012502460740506649, 0.023756710812449455, 0.005952745210379362, 0.003554687602445483, 0.015684042125940323, 0.008052317425608635, -0.001717985956929624, 0.0009794046636670828, 0.002416712697595358, 0.018818136304616928, -0.012441406957805157, 0.031937919557094574, -0.01272632461041212, -0.04072966426610947, -0.0025608674623072147, -0.00028025388019159436, -0.015670474618673325, -0.004148266278207302, -0.015819717198610306, 0.00841185636818409, 0.005739056505262852, 0.0010107795242220163, 0.0014016933273524046, -0.0010463942307978868, -0.01672874018549919, 0.06333313882350922, -0.002026646863669157, -0.03079824708402157, 0.019089486449956894, -0.01841111108660698, 0.0076249404810369015, -0.01455793809145689, -0.006800714414566755, -0.0038362133782356977, 0.008656071498990059, 0.011484896764159203, 0.011152492836117744, -0.0033850937616080046, 0.02054120972752571, 0.01016206480562687, -0.03679508715867996, -0.02006634697318077, -0.013587861321866512, -0.006797322537750006, 0.054704200476408005, 0.0010285868775099516, -0.0058204615488648415, 0.003437667852267623, 0.011980111710727215, -0.0021826731972396374, 0.010385928675532341, 0.021843690425157547, -1.1576769338716986e-06, -0.010813305154442787, 0.017352845519781113, 0.0028322176076471806, 0.00416522566229105, 0.00567461084574461, 0.005986663978546858, -0.0010413064155727625, 0.020025644451379776, 0.024530058726668358, 0.01280772965401411, -0.008228695020079613, -0.0006762555567547679, 0.005427003838121891, -0.01558906864374876, -0.008310100063681602, -0.005650867708027363, 0.012034381739795208, -0.009029177948832512, 0.002289517316967249, 0.00456207524985075, -0.006495445501059294, 0.03269769996404648, 0.036930762231349945, 0.013825292699038982, 0.014286587946116924, 0.010616576299071312, 0.02952290140092373, 0.004524764604866505, -0.0005935785593464971, -0.013716752640902996, 0.01697295531630516, 0.004307684488594532, -0.016674470156431198, -0.019469376653432846, 0.0010955764446407557, 0.0023963614366948605, 0.001877404167316854, 0.01126103289425373, -0.004989451728761196, -0.026917940005660057, -0.017013657838106155, 0.011064304038882256, -0.0048436010256409645, 0.022549200803041458, 0.043280355632305145, -0.022101473063230515, -0.01841111108660698, -0.003809078363701701, 0.009877147153019905, -0.011396707966923714, 0.004982667975127697, 0.005467706359922886, 0.020486939698457718, -0.015643339604139328, -0.007224699016660452, -0.5939313173294067, 0.00975503958761692, -0.0056135570630431175, -0.01697295531630516, 0.014815720729529858, -0.006892295088618994, 0.010731900110840797, 0.02664658986032009, -0.0230240635573864, 0.05578960105776787, -0.021626610308885574, -0.0011108398903161287, -0.005443963222205639, -0.009035961702466011, 0.0010887926910072565, -0.03826037794351578, 0.03182937949895859, -0.016565930098295212, -0.0032188917975872755, 0.02071758732199669, 0.01416448038071394, 0.036469466984272, -0.010480901226401329, 0.012482109479606152, -0.010806521400809288, 0.02609032206237316, 0.008418640121817589, -0.022345688194036484, 0.015168475918471813, 0.03307759016752243, -0.019482944160699844, -0.0020927884615957737, 0.01610463485121727, -0.0054710982367396355, 0.037174977362155914, -0.0015628075925633311, -0.029767116531729698, 0.031069597229361534, 0.0005533000221475959, 0.029468631371855736, 0.011491680517792702, -0.004355170764029026, -0.0007504529203288257, -0.024787841364741325, 0.025669729337096214, -0.0034970256965607405, -0.010908277705311775, 0.045342616736888885, 0.01626744493842125, -0.017312142997980118, -0.005959528964012861, -0.027379235252738, 0.013784590177237988, -0.012780594639480114, 0.03785335272550583, 0.006827849429100752, 0.011288167908787727, -0.0032986009027808905, -0.008554315194487572, -0.015344853512942791, 0.011573085561394691, 0.01968645676970482, 0.013425051234662533, -0.030581166967749596, 0.008656071498990059, 0.033755965530872345, -0.014422263018786907, -0.0008717125165276229, -0.00936836563050747, -0.03394591063261032, -0.011213546618819237, 0.009544743224978447, -0.021328125149011612, -0.010270604863762856, -0.0010192592162638903, 0.05171934887766838, 0.03109673224389553, -0.005810285918414593, -0.0013041768688708544, 0.012298948131501675, 0.009768607094883919, -0.0016526923282071948, -0.02427227608859539, -0.0023403954692184925, 0.021206017583608627, 0.008615368977189064, -0.0071161589585244656, 0.021287422627210617, -0.013879562728106976, 0.016281012445688248, 0.012312515638768673, 0.015087070874869823, -0.015209178440272808, -0.0016391248209401965, 0.0006198656046763062, 0.014571505598723888, -0.020907532423734665, -0.02484211139380932, -0.02936009131371975, -0.03522125631570816, -0.012149705551564693, -0.013336862437427044, -0.008038749918341637, 0.01063692755997181, -0.007516400422900915, 0.009185204282402992, -0.011220330372452736, 0.02070401981472969, 0.044474296271800995, -0.03698503226041794, -0.020839694887399673, -0.015385556034743786, -0.036849357187747955, 0.010148497298359871, -0.015643339604139328, -0.02355319820344448, 0.022155743092298508, 0.009768607094883919, 0.021219585090875626, -0.005935785826295614, -0.0001327072095591575, 0.020893964916467667, 0.00668539060279727, -0.006790538784116507, 0.0048436010256409645, 3.3706783142406493e-05, -0.007095807697623968, -0.0003650508006103337, -0.008459342643618584, -0.0002522708964534104, 0.04729634150862694, 0.0030425142031162977, 0.02307833358645439, -0.014598640613257885, -0.004680790938436985, -0.005009802989661694, 0.021151747554540634, -0.005583030171692371, 0.017895545810461044, -0.0006957588484510779, -0.016226742416620255, 0.003308776533231139, 0.010277388617396355, -0.031693704426288605, -0.04159798473119736, -0.02309190109372139, 0.001901147305034101, -0.014897125773131847, -0.00967363454401493, -0.007007618900388479, -0.010854007676243782, -0.011410275474190712, -0.019862834364175797, 0.02229141816496849, -0.007014402654021978, -0.01170197781175375, -0.009293744340538979, -0.002509989310055971, 0.00030738889472559094, -0.012237894348800182, -0.011552734300494194, 0.02276628091931343, -0.046617962419986725, -0.005443963222205639, -0.02672799490392208, -0.009056312963366508, -0.01856035366654396, 0.026917940005660057, -0.02435368113219738, -0.04515267163515091, -0.0107183326035738, 0.014571505598723888, -0.0014729228569194674, 0.010915061458945274, -0.029224416241049767, 0.04151657968759537, -0.02571043185889721, -0.0052404506132006645, -0.007679210510104895, -0.018356841057538986, 0.0001599482202436775, 0.013628563843667507, 0.008689990267157555, -0.048354607075452805, 0.0008759523625485599, -0.0069262138567864895, 0.03427153080701828, 0.012834864668548107, -0.03348461538553238, 0.006217311602085829, 0.012190408073365688, -0.0032528105657547712, -0.03532979637384415, 0.002654144074767828, -0.016674470156431198, 0.02879025600850582, -0.00604771776124835, 0.0012015725951641798, 0.015806149691343307, 0.0214366652071476, -0.0068312413059175014, 0.023051198571920395, 0.021531637758016586, -0.016688037663698196, 0.009788958355784416, -0.018248300999403, 0.019645754247903824, -0.004056685604155064, 0.03524839133024216, 0.003507201327010989, 0.01103038527071476, -0.02451649121940136, -0.031530894339084625, -0.021884392946958542, 0.03261629492044449, 0.01008065976202488, 0.006118947174400091, 0.012360001914203167, 0.0198221318423748, 0.019577916711568832, 0.0077673993073403835, 0.008676422759890556, 0.03405445069074631, 0.0242044385522604, 0.015819717198610306, -0.01376423891633749, 0.003907443024218082, -0.016158904880285263, -0.016877982765436172, -0.055572520941495895, -0.0007932753651402891, -0.0420321449637413, 0.0035445119719952345, -0.007197564002126455, 0.01178338285535574, 0.021206017583608627, 0.05654938146471977, -0.019944239407777786, 0.03831464797258377, 0.009714337065815926, -0.015263448469340801, 0.023363251239061356, 0.008940989151597023, -0.04186933487653732, 0.027487775310873985, 0.026795832440257072, 0.029414361342787743, 0.02968571148812771, -0.0004451839195098728, 0.03861313313245773, -0.0031781892757862806, 0.007903074845671654, -0.013506456278264523, 0.023987358435988426, -0.002423496451228857, -0.00740107661113143, 0.022576335817575455, 0.021300990134477615, 0.002011383417993784, 0.021083910018205643, 0.032236404716968536, -0.00967363454401493, 0.01728500798344612, -0.005348990671336651, 0.028898796066641808, 0.012800945900380611, -0.007414644118398428, -0.011396707966923714, 0.004270373843610287, 0.00019683489517774433, -0.04393159598112106, -0.043198950588703156, -0.038124702870845795, -0.0006605681264773011, 0.032480619847774506, -0.007482481654733419, -0.001924890442751348, 0.002779643516987562, 0.018261868506669998, 0.011905490420758724, -0.009788958355784416, -0.038993023335933685, 0.017895545810461044, 0.038748808205127716, -0.0009166548843495548, -0.017787005752325058, -0.022250715643167496, 0.00723826652392745, -0.04697072133421898, 0.03345748037099838, -0.014422263018786907, -0.009510824456810951, 0.025723999366164207, -0.002788123209029436, 0.014300155453383923, -0.003381701884791255, 0.018031220883131027, -0.043524570763111115, 0.004762195982038975, 0.02531697414815426, 0.0023098685778677464, -0.00904952920973301, -0.014612208120524883, -0.009137718006968498, 0.05996839329600334, 0.0158604197204113, -0.018506083637475967, 0.005213315598666668, -0.0011116878595203161, -0.0042161038145422935, 0.010575873777270317, -0.020107049494981766, -0.02031056210398674, -0.0005872187903150916, 0.04808325693011284, 0.01736641302704811, 0.016009662300348282, -0.02045980468392372, 0.001283825607970357, 0.016457390040159225, 0.005179396830499172, -0.023214008659124374, -0.0077673993073403835, -0.00350041757337749, 0.03315899521112442, -0.015521231107413769, -0.02515416406095028, -0.017176467925310135, -0.043985866010189056, -0.003446147544309497, 0.006960132624953985, -0.0229969285428524, 0.01345218624919653, -0.007706345524638891, 0.000544820330105722, 0.0011473025660961866, 0.01865532621741295, 0.025588324293494225, 0.016688037663698196, 0.012828080914914608, -0.011688409373164177, -0.013852427713572979, 0.023227576166391373, -0.013811725191771984, 0.011010034009814262, 0.003785335225984454, 0.009083447977900505, 0.04770336672663689, -0.006437783595174551, -0.0012846735771745443, 0.004043118096888065, -0.01281451340764761, 0.023417523130774498, -0.04252057522535324, -0.012672054581344128, 0.00676679564639926, 0.02522200159728527, 0.029848521575331688, -0.005108167417347431, 0.020771857351064682, 0.02602248452603817, 0.015331286005675793, 0.01706792786717415, -0.020039211958646774, 0.025832539424300194, 0.004256806336343288, -0.004012591205537319, -0.0025557796470820904, -0.0008543291478417814, 0.022087905555963516, 0.02562902681529522, 0.007292536552995443, 0.006373337935656309, -0.033348940312862396, -0.010731900110840797, -0.017108630388975143, -0.021124612540006638, -0.0063936891965568066, 0.018913108855485916, -0.0018044788157567382, -0.022427093237638474, -0.011654490604996681, -0.003948145546019077, 0.0051217349246144295, -0.031775109469890594, 0.005091208033263683, 0.01345218624919653, 0.01193262543529272, -0.0015543279005214572, -0.012617784552276134, -0.0032019324135035276, 0.02173515036702156, -0.03226353973150253, 0.00504032988101244, 0.0317208394408226, -0.0014602032024413347, -0.01681014522910118, -0.021287422627210617, 0.013933832757174969, 0.010799737647175789, 0.004463710822165012, -0.013187619857490063, 0.014449398033320904, 0.007380725350230932, -0.0033223440404981375, -0.029007336124777794, -0.005698353983461857, -0.03665941208600998, 0.018058355897665024, -0.002067349385470152, -0.005521976388990879, 0.02070401981472969, -0.0009717728826217353, 0.04697072133421898, -0.008920637890696526, 0.008113371208310127, -0.013798157684504986, -0.019021648913621902, 0.014992098324000835, 0.007903074845671654, -0.002772859763354063, -0.018289003521203995, 0.004925006069242954, -0.01785484328866005, 0.004022766835987568, 0.01706792786717415, 0.010772602632641792, -0.012231110595166683, 0.03030981682240963, -0.036143846809864044, -0.007055105175822973, 0.025764701887965202, -0.0076249404810369015, 0.019808564335107803, 0.0032239796128124, -0.020486939698457718, 0.008554315194487572, 0.0033443912398070097, -0.013092647306621075, 0.011525599285960197, -0.013269024901092052, 0.022332120686769485, -0.013540375046432018, -0.034542880952358246, 0.001994424033910036, -0.03831464797258377, 0.008025182411074638, 0.012156489305198193, -0.007964128628373146, 0.035112716257572174, 0.0023794020526111126, -0.024557193741202354, -0.018845271319150925, -0.00408382061868906, 0.01729857549071312, -0.003856564639136195, -0.002604961860924959, -0.03419012576341629, 0.014734315685927868, 0.012563514523208141, -0.005467706359922886, -0.023824548348784447, -0.029577171429991722, 0.014992098324000835, -0.006929605733603239, -0.01225146185606718, -0.006678606849163771, -0.003286729333922267, 0.0053591663017869, -0.02879025600850582, -0.01185800414532423, -0.0011082959827035666, -0.0015653515001758933, 0.0380704328417778, -0.005817069672048092, -0.009035961702466011, -0.02990279160439968, -0.002033430617302656, 0.0190487839281559, 0.016118202358484268, -0.009090231731534004, 0.025357676669955254, 0.010996466502547264, 0.013960967771708965, 0.03872167319059372, -0.003452931297942996, 0.03125954419374466, 0.0021674097515642643, 0.012848432175815105, 0.021721582859754562, -0.01651166006922722, -0.017095062881708145, -0.02347179315984249, -0.009619364514946938, -0.003517376957461238, 0.010372361168265343, 0.010006038472056389, -0.016688037663698196, 0.005810285918414593, 0.024774273857474327, 0.004528156481683254, 0.0452340766787529, -0.03766340762376785, -0.027270695194602013, 0.014842855744063854, 0.001853661029599607, -0.000645304680801928, 0.04176079481840134, -0.03196505457162857, -3.778763493755832e-05, 0.04460997134447098, -0.01126781664788723, -0.015399123542010784, -0.004463710822165012, 0.004338211379945278, -0.014367992989718914, 0.018519651144742966, 0.025181299075484276, 0.007685994263738394, 0.019225161522626877, 0.02237282320857048, -0.04300900548696518, 0.010589441284537315, 0.000821258348878473, 0.013560726307332516, 0.022033635526895523, -0.00035657110856845975, -0.008737476542592049, -0.012638135813176632, -0.004616345278918743, -0.014110210351645947, -0.038206107914447784, 0.03592676669359207, -0.0025947862304747105, -0.012468541972339153, -0.030662572011351585, -0.056278031319379807, -0.02492351643741131, 0.013255457393825054, 0.010603008791804314, -0.016715172678232193, 0.006580242421478033, -0.0030425142031162977, -0.027189290151000023, 0.0036700114142149687, 0.004100780002772808, 0.04718780145049095, -0.0007233178475871682, 0.04268338531255722, 0.029007336124777794, -0.025032056495547295, -0.018940243870019913, -0.01110500656068325, -0.015385556034743786, -0.0004468798579182476, 0.03229067474603653, 0.0010650495532900095, -0.010670846328139305, 0.018194030970335007, -0.002677887212485075, 0.0020622615702450275, -0.023512495681643486, -0.016620200127363205, 0.012136138044297695, 0.022196445614099503, -0.0057085296139121056, -0.012692405842244625, 0.004114347510039806, -0.046617962419986725, 0.008554315194487572, -0.0009946681093424559, -0.028627445921301842, -0.03315899521112442, 0.000560083775781095, -0.01952364668250084, 0.031612299382686615, 0.01911662146449089, 0.03826037794351578, 0.01603679731488228, -0.016864415258169174, -0.017257872968912125, -0.0011701977346092463, -0.018424678593873978, -0.010609792545437813, -0.004585818387567997, 0.00024718308122828603, -0.011613788083195686, -0.0032290674280375242, 0.01729857549071312, 0.005467706359922886, 0.023987358435988426, -0.009666850790381432, -0.004969100467860699, 0.029170146211981773, -0.013323294930160046, -0.017787005752325058, 0.014707180671393871, 0.011688409373164177, -0.020174887031316757, 0.014218750409781933, -0.020039211958646774, -0.003056081710383296, -0.009191988036036491, -0.022712010890245438, 0.014652910642325878, 0.0004960621008649468, 0.013411483727395535, -0.00424323882907629, -0.012427839450538158, 0.005895083304494619, -0.007706345524638891, -0.002779643516987562, 0.0068312413059175014, -0.024082330986857414, -0.03085251711308956, -0.022589903324842453, 0.0040499018505215645, -0.0016603240510448813, -0.005053897388279438, -0.015887554734945297, 0.024014493450522423, 0.037636272609233856, -0.03421726077795029, 0.01126103289425373, -0.007957344874739647, -0.0049623167142271996, -0.03467855602502823, 0.02697221003472805, 0.011898706667125225, -0.003454627236351371, 0.028193285688757896, -0.0017137461109086871, -0.0404583141207695, -0.014734315685927868, -0.010148497298359871, 0.012142921797931194, -0.01055552251636982, -0.010304523631930351, -0.005233666859567165, -0.0009285264532081783, 0.030689707025885582, -0.004429792053997517, -0.002671103458851576, 0.011410275474190712, -0.017271440476179123, -0.012943404726684093, 0.021694447845220566, -0.03283337503671646, 0.008520396426320076, -0.01713576540350914, 0.0008386417175643146, 0.018506083637475967, -0.02569686435163021, -0.027162155136466026, -0.038830213248729706, 0.0004082972591277212, 0.0028983592055737972, -0.017176467925310135, -0.020988937467336655, -0.0007678362890146673, -0.0013720144052058458, 0.010962547734379768, -0.02792193554341793, -0.003988848067820072, 0.005817069672048092, 0.011973327957093716, 0.030038466677069664, -0.005810285918414593, -0.02364817075431347, 0.004616345278918743, -0.019143756479024887, 0.022739145904779434, -0.03134094923734665, -0.01936083659529686, -0.005861164536327124, 0.03269769996404648, 0.014232317917048931, -0.02016131952404976, -0.03315899521112442, 0.00904274545609951, -0.03576395660638809, -0.0008649287628941238, -0.0016933948500081897, 0.030445491895079613, 0.01934726908802986, 0.007509616669267416, 0.006912646349519491, 0.006437783595174551, -0.011057520285248756, 0.008940989151597023, -0.01376423891633749, 0.019333701580762863, 0.020419102162122726, 0.04984703287482262, 0.013750671409070492, 0.014178047887980938, -0.027474207803606987, -0.0046536559239029884, 0.01416448038071394, 0.021599475294351578, 0.012875567190349102, 0.03131381422281265, -0.003612349508330226, -0.01808549091219902, -0.025723999366164207, 0.01880456879734993, 0.025045624002814293, 0.02476070635020733, -0.0059018670581281185, -0.012956972233951092, -0.014652910642325878, -0.003547903848811984, 0.008866367861628532, -0.019645754247903824, 0.01595539227128029, 0.014150912873446941, -0.01651166006922722, 0.009938200935721397, -0.027270695194602013, -0.022115040570497513, -0.00338000594638288, -0.010541955009102821, 0.016674470156431198, 0.010562306270003319, -0.033267535269260406, 0.03397304564714432, -0.003166317706927657, -0.0027609881944954395, -0.007916642352938652, 0.012278596870601177, -0.00928696058690548, 0.008201560005545616, 0.010168848559260368, -0.012109003029763699, -0.012461758218705654, -0.009022394195199013, 0.009565094485878944, -0.017013657838106155, -0.0023861858062446117, -0.0031731014605611563, -0.021328125149011612, -0.017474953085184097, -0.006756620015949011, 0.0021199234761297703, 0.004551899619400501, 0.01911662146449089, -0.026863669976592064, -0.025344109162688255, 0.012427839450538158, -0.03063543699681759, -0.01400167029350996, 0.006017190869897604, -0.01550766360014677, 0.002733853179961443, -0.012041165493428707, -0.022630605846643448, 0.004545115865767002, 0.029305821284651756, -0.0317479744553566, -0.010643711313605309, 0.19385258853435516, -0.020853262394666672, -0.0021029640920460224, 0.019482944160699844, -0.02006634697318077, -0.01674230769276619, 0.0033002968411892653, -0.011742680333554745, -0.010297739878296852, 0.015005665831267834, -0.02181655541062355, 0.03196505457162857, -0.029305821284651756, 0.01651166006922722, 0.0063936891965568066, -0.019550781697034836, -0.027650585398077965, -0.04070252925157547, -0.020012076944112778, -0.01047411747276783, 0.01720360293984413, -0.021206017583608627, -0.04493559151887894, -0.019021648913621902, 0.018940243870019913, -0.014028805308043957, 0.0033376074861735106, -0.0107183326035738, 0.02600891701877117, 0.0026914547197520733, -0.02436724863946438, 0.00896812416613102, -0.0025472999550402164, -0.015819717198610306, -0.030581166967749596, -0.011912274174392223, 0.011138925328850746, 0.027175722643733025, 0.015534798614680767, -0.015236313454806805, 0.004714709706604481, -0.013418267481029034, -0.027894800528883934, -0.028600310906767845, 0.013825292699038982, 0.021558772772550583, -0.010107794776558876, -0.009395500645041466, -0.0009378541144542396, 0.020853262394666672, 0.005779759027063847, -0.02600891701877117, 0.014707180671393871, -0.00038794599822722375, 0.00984322838485241, -0.007706345524638891, 0.01424588542431593, 0.006183392833918333, 0.00039091389044187963, 0.020202022045850754, -0.000966685067396611, 0.029251551255583763, 0.0008462734404020011, 0.01682371273636818, -0.01792268082499504, 0.014598640613257885, -0.036306656897068024, 0.012556730769574642, -0.006349594797939062, -0.006410648580640554, -0.016009662300348282, -0.023281846195459366, -0.009904282167553902, 0.012950188480317593, -0.026483779773116112, -0.008893502876162529, 0.019727159291505814, -0.01831613853573799, 0.011077871546149254, 0.026605887338519096, -0.02386525087058544, -0.0555182509124279, -0.016321714967489243, 0.033267535269260406, -0.02093466743826866, -0.04015982896089554, 0.019021648913621902, -0.008913854137063026, 0.014937828294932842, -0.01697295531630516, -0.011824085377156734, -0.0007763159810565412, -0.0017324014334008098, 0.004952141083776951, 0.006634512450546026, 0.01921159401535988, 0.013852427713572979, 0.0325077548623085, -0.0022471188567578793, -0.002328523900359869, -0.013716752640902996, 0.044881321489810944, -0.001374558312818408, 0.005186180584132671, 0.0017128981417044997, -0.014232317917048931, -0.006848200690001249, 0.006892295088618994, -0.02325471118092537, -0.011322086676955223, -0.003690362675115466, -0.055572520941495895, -0.005908650811761618, -0.003381701884791255, 0.0046536559239029884, -0.004317860119044781, -0.012041165493428707, 0.003707322059199214, 0.014449398033320904, 0.0019774646498262882, 0.015575501136481762, -0.015249880962073803, -0.009035961702466011, -0.006498837377876043, 0.019659321755170822, -0.017257872968912125, -0.045098401606082916, 0.011566301807761192, 0.007550319191068411, -0.018058355897665024, 0.019740726798772812, -0.03362029045820236, 0.008622152730822563, -0.009985687211155891, -0.01865532621741295, 0.009239474311470985, -0.010562306270003319, -0.027976205572485924, 0.018071923404932022, 0.01775987073779106, -0.005576246418058872, 0.0005304048536345363, -0.008289748802781105, 0.007706345524638891, 0.0012142921332269907, -0.02792193554341793, -0.0029237985145300627, -0.014924260787665844, 0.021775852888822556, -0.015521231107413769, -0.0144765330478549, -0.010189199820160866, 0.001607749960385263, -0.03277910500764847, 0.01321475487202406, -0.00023891536693554372, -0.011247465386986732, -0.017013657838106155, 0.0229969285428524, -0.005220099352300167, 0.004199144430458546, 0.013574293814599514, 0.02712145261466503, 0.0003873100213240832, -0.017339278012514114, -0.014964963309466839, -0.16953960061073303, 0.022752713412046432, 0.00014892462058924139, -0.02982138656079769, -0.0007898834883235395, -0.013472537510097027, 0.03834178298711777, 0.012543163262307644, 0.005155653692781925, 0.002828825730830431, 0.018275436013936996, -0.0052404506132006645, -0.007055105175822973, -0.011607004329562187, -0.03603530675172806, 0.015656907111406326, -0.018994513899087906, -0.0007339175208471715, 0.0026982384733855724, 0.03142235428094864, 0.026076754555106163, -0.022264283150434494, 0.02348536066710949, 0.024611463770270348, 0.019944239407777786, -0.01697295531630516, 0.013553942553699017, 0.02600891701877117, -0.01921159401535988, -0.03283337503671646, 0.026768697425723076, 0.024475788697600365, 0.01360142882913351, -0.015182043425738811, 0.004344995133578777, 0.027731990441679955, 0.0009370061452500522, -0.02706718258559704, -0.003904050914570689, 0.014734315685927868, 0.011125357821583748, 0.015901122242212296, 0.008418640121817589, -0.028735985979437828, -0.008798530325293541, 0.023295413702726364, 0.006122339051216841, -2.011277319979854e-05, 0.004948749206960201, -0.04642801731824875, 0.015290583483874798, -0.012163273058831692, 0.02682296745479107, -0.015209178440272808, 0.024407951161265373, -0.003247722750529647, -0.014490100555121899, 0.019930671900510788, 0.005935785826295614, 0.010107794776558876, 0.005369341932237148, -0.016715172678232193, -0.006241054739803076, 0.024177303537726402, 0.007122942712157965, -0.014571505598723888, -0.011233897879719734, 0.010650495067238808, -0.02070401981472969, 0.02183012291789055, -0.003303688718006015, 0.0007725001196376979, 0.011328870430588722, -0.0114984642714262, 9.07327193999663e-05, 0.012353218160569668, -0.0265787523239851, 0.004657047800719738, -0.013465753756463528, -0.03926437348127365, -0.025805404409766197, 0.05364593490958214, -0.00999247096478939, -0.0027762516401708126, 0.012705973349511623, -0.008038749918341637, -0.016837280243635178, -0.0036971464287489653, 0.007360374089330435, -0.009463338181376457, 0.03657800704240799, -0.04110955446958542, -0.018275436013936996, -0.0011456066276878119, 0.02196579799056053, 0.01166127435863018, 0.015290583483874798, -0.013174052350223064, 0.00636655418202281, -0.0428733304142952, 0.023987358435988426, -0.011376356706023216, 0.0010692893993109465, -0.00330199277959764, 0.008608585223555565, -0.018438246101140976, 0.003200236475095153, 0.016321714967489243, 0.038830213248729706, 0.01031809113919735, -0.013960967771708965, -0.003120527369901538, -0.00032986007863655686, 0.015453393571078777, -0.0021402747370302677, 0.02079899236559868, -0.029332956299185753, -0.00801839865744114, 0.015019233338534832, -0.013628563843667507, 0.0332946702837944, 0.016755875200033188, -0.001005691708996892, -0.00014881862443871796, 0.004741844721138477, -0.00755710294470191, -0.11570372432470322, -0.04466424137353897, 0.02347179315984249, 0.031775109469890594, -0.00365983578376472, 0.015412691049277782, -0.0031018720474094152, 0.02150450274348259, -0.00968041829764843, 0.02245422825217247, 0.015602636151015759, -0.021056775003671646, -0.013397916220128536, -0.0020537818782031536, -0.025045624002814293, 0.008581450209021568, -0.015073503367602825, 0.007543535437434912, -0.013648915104568005, 0.027107885107398033, 0.009225906804203987, -0.005033546127378941, -0.008052317425608635, 0.009666850790381432, -0.017339278012514114, 0.015521231107413769, -0.02879025600850582, 0.02183012291789055, 0.02158590778708458, 0.008554315194487572, 0.013777806423604488, -0.0030849126633256674, -0.00042207675869576633, -0.004609561525285244, -0.013784590177237988, 0.023919520899653435, -0.00841185636818409, -0.01617247238755226, 0.05416150018572807, -0.02111104503273964, 0.007143293973058462, 0.00040766128222458065, 0.01055552251636982, -0.02911587618291378, 0.014815720729529858, 0.013547158800065517, -0.02887166105210781, 0.02689080499112606, 0.007679210510104895, -0.04374165087938309, -0.02117888256907463, -0.014815720729529858, -0.010982898995280266, 0.0047011421993374825, 0.015222745947539806, -0.01864175871014595, 0.011729112826287746, -0.004314468242228031, -0.014761450700461864, -0.0021012681536376476, 0.003707322059199214, -9.672150918049738e-05, 0.004585818387567997, -0.015412691049277782, 0.011437410488724709, 0.004735060967504978, -0.01818046346306801, -0.003968496806919575, 0.023770278319716454, -0.010772602632641792, -0.004806290380656719, 0.0015424563316628337, -0.033837370574474335, 0.04569537192583084, 0.011925841681659222, 0.017909113317728043, -0.017176467925310135, 0.009809309616684914, -0.00038836998282931745, -0.0242044385522604, -0.028600310906767845, -0.013174052350223064, 0.008703557774424553, -0.03690362721681595, 0.005308288149535656, 0.022427093237638474, -0.00968041829764843, 0.007102591451257467, -0.007916642352938652, -0.03275196999311447, 0.0006249534199014306, 0.021938662976026535, 0.031286679208278656, -0.02212860807776451, 0.0020453021861612797, 0.008079452440142632, 0.01257708203047514, -0.016294579952955246, -0.002075829077512026, -0.00543717946857214, -0.049222927540540695, -0.008839232847094536, -0.04564110189676285, 0.025927511975169182, -0.017257872968912125, 0.004463710822165012, -0.019062351435422897, -0.025249136611819267, 0.009666850790381432, -0.0120954355224967, 0.009795742109417915, -0.016470957547426224, -0.013004458509385586, 0.0022844295017421246, 0.0045654671266674995, 0.008350802585482597, -0.0009090231615118682, -0.004283941350877285, 0.03475996106863022, -0.007808101829141378, 0.009029177948832512, 0.010358793660998344, -0.035031311213970184, 0.0010989683214575052, 0.029794251546263695, 0.001595030422322452, -0.009531175717711449, -0.001715442049317062, -0.000564323621802032, 0.026063187047839165, -0.024557193741202354, -0.03109673224389553, 0.019455809146165848, -0.023593900725245476, -0.013614996336400509, 0.03022841177880764, 0.010067092254757881, 0.005091208033263683, 0.018546786159276962, 0.009144501760601997, 0.006430999841541052, -0.016525227576494217, -0.015561933629214764, -0.0052404506132006645, -0.0016713476506993175, 0.0054948413744568825, 0.013621780090034008, -0.0005948505131527781, -0.027338532730937004, 0.005599989555776119, 0.016294579952955246, -0.007597805466502905, 0.007889507338404655, 0.00840507261455059, -0.007984479889273643, -0.01681014522910118, -0.024326546117663383, -0.024557193741202354, 0.017474953085184097, -0.007801318075507879, 0.0051454780623316765, 0.005226883105933666, 0.014123777858912945, -0.03220926970243454, 0.004436575807631016, -0.024340113624930382, -0.010046740993857384, -0.023756710812449455, 0.009008826687932014, 0.016864415258169174, -0.0012337954249233007, 0.0012829776387661695, 0.0017400331562384963, -5.956984750810079e-05, -0.0029322782065719366, 0.008452558889985085, 0.03595390170812607, 0.023186873644590378, 0.0026761912740767, -0.01728500798344612, -0.02505919151008129, 0.019740726798772812, 0.009714337065815926, 0.0038836996536701918, -0.019971374422311783, 0.005681394599378109, 0.03443434089422226, -0.0025371243245899677, 0.012638135813176632, -0.008147289976477623, 0.010609792545437813, -0.017651330679655075, 0.013187619857490063, 0.011010034009814262, -0.02022915706038475, -0.013886346481740475, 0.012075084261596203, 0.047784771770238876, -0.002952629467472434, 0.00048546245670877397, 0.00824904628098011, 0.02045980468392372, -0.0012999370228499174, -0.00967363454401493, -0.007407860364764929, 0.017814140766859055, -0.027406370267271996, -0.00267958315089345, -0.001627253252081573, -0.012441406957805157, -0.01087435893714428, 0.02760988287627697, 0.007197564002126455, 0.008751044049859047, 0.002415016759186983, 0.008656071498990059, -0.011878355406224728, -0.02427227608859539, -0.00488091167062521, 0.022725578397512436, -0.01847894862294197, -0.0001287853519897908, -0.006895686965435743, 0.00519635621458292, 0.017868410795927048, 0.006003623362630606, 0.016620200127363205, 0.023295413702726364, 0.012000462971627712, -0.005328639410436153, -0.015643339604139328, 0.017569925636053085, 0.0011066000442951918, 0.00021633818687405437, -0.0031069598626345396, -0.007814886048436165, 0.010799737647175789, -0.02754204533994198, 0.006705741863697767, 0.018058355897665024, -0.029550036415457726, 0.06935711205005646, 0.018275436013936996, -0.015684042125940323, 0.01503280084580183, -0.00448406208306551, 0.03638806194067001, 0.02649734728038311, -0.0190487839281559, -0.022562768310308456, -0.0024658949114382267, 0.024557193741202354, -0.016321714967489243, 0.002454023342579603, -0.03853172808885574, 0.004680790938436985, 0.015453393571078777, -0.025425514206290245, 0.03538406640291214, -0.01761062815785408, -0.020364832133054733, 0.026402374729514122, 0.025127029046416283, 0.023539630696177483, 0.0023709223605692387, 0.01169519405812025, -0.014815720729529858, -0.002035126555711031, 0.0008818881469778717, -0.01800408586859703, -0.020052779465913773, -0.001948633580468595, 0.0013152004685252905, -0.03674081712961197, -0.007692778017371893, 0.00519974809139967, 0.018356841057538986, 0.004592602141201496, -0.00373784895054996, -0.007780966814607382, -0.0027677719481289387, -0.03766340762376785, 0.0317208394408226, -0.03644233196973801, -0.04957568272948265, 0.01801765337586403, -0.0071568614803254604, -0.0042398469522595406, -0.012000462971627712, -0.08303315937519073], "c2d8f160-644e-487d-a842-4813e7c6728d": [-0.0005372296436689794, 0.011365546844899654, 0.00603162357583642, -0.01840534806251526, -0.009565478190779686, 0.004074573051184416, 0.019982151687145233, -0.012628384865820408, -0.03519203141331673, -0.021698495373129845, -0.016158752143383026, 0.014316821470856667, -0.024042770266532898, -0.01200045458972454, 0.017051808536052704, 0.03156398609280586, 0.005497882608324289, 0.020065875723958015, 0.0034832714591175318, 0.012844672426581383, -0.0011355080641806126, 0.02122405916452408, -0.030643019825220108, -0.04297837242484093, -0.035750191658735275, 0.023386932909488678, 9.865925676422194e-05, -0.008044490590691566, -0.0023913695476949215, -0.018112313002347946, 0.03061511181294918, 0.00600022729486227, -0.024614885449409485, -0.005749054718762636, -0.044094692915678024, 0.000790146179497242, -0.015823854133486748, 0.006118836347013712, 0.011281822808086872, 0.00014847946295049042, 0.03418733924627304, 0.01578199304640293, 0.00043649907456710935, 0.0036419983953237534, -0.023414840921759605, 0.017791371792554855, 0.02446139045059681, -0.022898541763424873, -0.016284337267279625, 0.019186772406101227, 0.037592120468616486, 0.03962940722703934, -0.028689458966255188, -0.017442520707845688, 0.010598075576126575, -0.026107965037226677, 0.01784718781709671, 0.01935422047972679, -0.011163213290274143, 0.011777190491557121, 0.0010291087673977017, -0.011484155431389809, -0.015949441120028496, -0.002365205902606249, -0.011902776546776295, 0.0051839170046150684, -0.004489704966545105, 0.022856678813695908, 0.0022448524832725525, 0.017121577635407448, 0.04102480784058571, 0.03985267132520676, -0.004189693368971348, 0.03650370612740517, 0.01914491131901741, -0.013954016380012035, -0.02933134324848652, 0.0011904520215466619, -0.013291200622916222, -0.0012436517281457782, 0.008246824145317078, -0.02649867720901966, -0.011944638565182686, -0.007814249023795128, 0.017889048904180527, 0.014267981983721256, 0.0014233096735551953, -0.0005001642857678235, -0.004259463399648666, -0.04205740615725517, -0.0018837922252714634, 0.02066589891910553, 0.00897940993309021, 0.020540311932563782, -0.018321624025702477, 0.02779640071094036, 0.003226866479963064, 0.02640100009739399, -0.0012122552143409848, -0.02705683931708336, 0.026680080220103264, 0.009572455659508705, -0.0014878470683470368, -0.007444467861205339, -0.012056270614266396, 0.013172592036426067, 0.00010029449185822159, -0.01807045191526413, -0.008574742823839188, -0.006778163835406303, -0.028368515893816948, 0.03700605407357216, 0.01470753364264965, -0.028187112882733345, -0.00066892069298774, -0.022200841456651688, -0.010144569911062717, -0.010821339674293995, -0.012230695225298405, 0.025619573891162872, 0.03926660120487213, 0.007158410735428333, 0.042671382427215576, -0.0229264497756958, 0.018140221014618874, 0.007277019787579775, -0.00473738880828023, -0.02097288705408573, 0.016730865463614464, 0.006087439600378275, 0.04903441295027733, 0.010514351539313793, -0.01027713343501091, 0.032512858510017395, -0.0023303208872675896, -0.0019239101093262434, -0.005602537654340267, 0.008895685896277428, -0.013458648696541786, -0.009160812012851238, -0.0006680485676042736, -0.011016695760190487, 5.7832858146866783e-05, -0.006617692299187183, 0.020470542833209038, 0.013884246349334717, 0.00794681254774332, 0.0022152001038193703, -0.023861369118094444, -0.003600136376917362, 0.017358796671032906, -0.008700329810380936, -0.0100120073184371, 0.010835293680429459, 0.012614430859684944, -0.008128214627504349, -0.02196362242102623, -0.01634015329182148, 0.016395969316363335, -0.013730752281844616, 0.008693352341651917, 0.02478233352303505, -0.006076974328607321, 0.01238419022411108, 0.010793431662023067, 0.016423877328634262, 0.03851308673620224, -0.0004170942702330649, -0.02119615115225315, 0.024098586291074753, 0.0017564618028700352, -0.007085151970386505, -0.007556099910289049, 0.014791257679462433, 0.009216628037393093, -0.0007761921733617783, -0.0035321104805916548, 0.003962940536439419, -0.05051353946328163, -0.016158752143383026, 0.01892164722084999, 0.007863088510930538, 0.036615338176488876, 0.05160195380449295, -0.012105109170079231, -0.037480488419532776, -0.0004857742169406265, 0.029582515358924866, -0.0035076909698545933, 0.003144886577501893, 0.009872467257082462, 0.019075140357017517, -0.002325088018551469, 0.005804870743304491, -0.5818266868591309, -0.037592120468616486, -0.012726062908768654, -0.01947980746626854, 0.025131184607744217, 0.014833119697868824, 0.0383177287876606, 0.02866155095398426, -0.016395969316363335, 0.04769482836127281, 0.008400318212807178, -0.0035826938692480326, 0.0043571419082582, -0.008358456194400787, 0.0027140562888234854, -0.04124807193875313, 0.028284791857004166, -0.02359624207019806, -0.02814525179564953, 0.020317047834396362, -0.016088981181383133, 0.009642225690186024, -0.014693579636514187, 0.004821112845093012, -0.01314468402415514, -0.0009122438495978713, 0.01195161510258913, -0.01730298064649105, 0.037815384566783905, 0.035331569612026215, -3.2622963772155344e-05, -0.005417646840214729, 0.010584121569991112, -0.0055083478800952435, 0.03256867453455925, -0.018140221014618874, -0.009209650568664074, -0.006942123174667358, 0.006833979859948158, 0.03851308673620224, -0.01959143951535225, -0.0035443203523755074, 0.03145235404372215, -0.013019097968935966, 0.01935422047972679, -0.008679398335516453, -0.006408382207155228, 0.014805211685597897, 0.010688777081668377, -0.012579546310007572, -0.0006122324848547578, 0.006056043319404125, 0.003948986530303955, -0.006080462597310543, 0.014581947587430477, -0.017819279804825783, 0.018684428185224533, 0.019019324332475662, -0.0013360971352085471, -0.03708977624773979, 0.007325858809053898, 0.0168704055249691, -0.008846846409142017, -0.030168583616614342, 0.012481868267059326, 0.015754085034132004, -0.010891109704971313, 0.013549350202083588, -0.011058558709919453, -0.013695867732167244, 0.00630023842677474, 0.00833054818212986, -0.01981470361351967, -0.010067823342978954, 0.008491018787026405, 0.040968991816043854, 0.02617773599922657, -0.01589362509548664, -0.00904220249503851, 0.0101655013859272, 0.015600590966641903, -0.010828317143023014, -0.012126040644943714, -0.03767584636807442, 0.03427106514573097, -0.004538543988019228, -0.01678668148815632, 0.016521556302905083, 0.02856387197971344, 0.017693692818284035, -7.396718865493312e-05, 0.025480033829808235, -0.022047346457839012, -0.014693579636514187, 0.003062906675040722, 0.01249582227319479, -0.017023900523781776, -0.03427106514573097, -0.013591212220489979, -0.026973113417625427, -0.003422222565859556, -0.015879670158028603, 0.014107510447502136, 0.017121577635407448, -0.040968991816043854, 0.0061711641028523445, -0.007067709695547819, 0.012049293145537376, 0.026903344318270683, -0.01385633833706379, -0.021489186212420464, -0.026805665343999863, 0.016521556302905083, 0.014065648429095745, 0.014512177556753159, -0.03212214633822441, 0.028256883844733238, 0.018349532037973404, 0.01142136286944151, -0.02963833138346672, -0.00432225689291954, 0.021042658016085625, -0.015600590966641903, -0.013060959987342358, 0.03859680891036987, 0.001990191638469696, 0.01989842765033245, 0.01130275335162878, -0.01217487920075655, -0.015572682954370975, 0.030894193798303604, 0.010360857471823692, -0.007563076913356781, -0.007744479458779097, -0.001667505013756454, -0.011923707090318203, 0.007925881072878838, -0.0012279534712433815, 0.012349304743111134, 0.011546948924660683, 0.021782219409942627, 0.001807045191526413, -0.010835293680429459, -0.006338612176477909, -0.02314971387386322, -0.012677224352955818, -0.0191588643938303, 0.023303207010030746, -0.032931480556726456, -0.03095000982284546, -6.68266584398225e-05, -0.032931480556726456, -0.037061870098114014, 0.0008381131337955594, -0.01881001517176628, -0.004653664771467447, 0.017568107694387436, 0.009098018519580364, -0.008386364206671715, -0.0036245558876544237, -0.00919569656252861, 0.01881001517176628, -0.04465285316109657, -0.007277019787579775, -0.003990848548710346, -0.021600818261504173, -0.007172364741563797, 0.012258603237569332, -0.007807272486388683, -0.04339699074625969, -0.02010773867368698, -0.016354108229279518, 0.00919569656252861, -0.005044376943260431, -0.035108305513858795, 0.003987360280007124, -0.025912608951330185, 0.016842497512698174, 0.0008250312530435622, -0.006056043319404125, 0.013709821738302708, 0.0035792053677141666, -9.778713138075545e-05, -0.016702957451343536, 0.01260047685354948, 0.007039801217615604, 0.02659635618329048, -0.0037292109336704016, -0.024084633216261864, 0.01709366962313652, 0.010842271149158478, 0.02379159815609455, -0.02649867720901966, 0.008798007853329182, -0.024419529363512993, 0.03106164187192917, 0.014567993581295013, 0.007653777953237295, 0.04155506193637848, 0.03750839829444885, 0.010067823342978954, -0.01861465908586979, 0.002087869681417942, -0.015558728948235512, 0.010807385668158531, -0.0064153592102229595, 0.02986159548163414, 0.011058558709919453, 0.02595447190105915, 0.009935259819030762, 0.004147831350564957, -0.027754539623856544, -0.007067709695547819, -0.03335009887814522, 0.03215005621314049, 0.02465674839913845, -0.013493534177541733, 0.011777190491557121, 0.005149031989276409, -0.01720530353486538, 0.019982151687145233, 0.01141438540071249, 0.019535623490810394, 0.005665330681949854, 0.029052263125777245, -0.014609855599701405, -0.0008429097943007946, -0.017665784806013107, -0.012502798810601234, -0.04088526964187622, -0.010249225422739983, -0.03212214633822441, 0.0034518749453127384, -0.03136862814426422, 0.05048563331365585, 0.021921759471297264, 0.057490549981594086, -0.0077026174403727055, 0.009977121837437153, -0.011295776814222336, -0.02899644710123539, 0.03203842416405678, 0.0003619322960730642, -0.05168567970395088, 0.0100120073184371, -0.021684542298316956, 0.02356833405792713, 0.04426214098930359, -0.018349532037973404, 0.04727621003985405, 0.0322616882622242, 0.014567993581295013, -0.008267754688858986, 0.015433142893016338, -0.01066086906939745, 0.003423966933041811, 0.01567036099731922, 0.004011780023574829, 0.024921873584389687, 0.023652058094739914, 0.0009253257303498685, 0.0005149904172867537, -0.007723548449575901, 0.018963508307933807, 0.020944979041814804, -0.005079261958599091, -0.0010482955258339643, -0.043006278574466705, -0.008016582578420639, 0.008009606041014194, -0.02044263482093811, -0.026094011962413788, -0.02584283985197544, -0.01477730367332697, 0.024531161412596703, 0.008497996255755424, 0.00047400049515999854, 0.002911156741902232, 0.018042543902993202, -0.011630672961473465, -0.005979296285659075, -0.05506255105137825, 0.056206777691841125, 0.01699599251151085, -0.01568431407213211, -0.004095504060387611, -0.018223945051431656, 0.0012401632266119123, -0.01515406183898449, 0.04169460013508797, -0.010639937594532967, -0.015977349132299423, 0.018321624025702477, 0.0012061502784490585, 0.024266034364700317, -0.006596761289983988, 0.01991238258779049, 0.003882705233991146, 0.005693238694220781, -0.0019587951246649027, 0.004444354213774204, 0.00768168643116951, -0.0003689093282446265, -0.019535623490810394, 0.049620483070611954, 0.02630332112312317, -0.0061886063776910305, -0.002537886844947934, -0.011358569376170635, -0.030056951567530632, 0.015293601900339127, 0.00557462964206934, -0.045266829431056976, -0.011156236752867699, 0.02164267934858799, -0.004311791155487299, 0.016689004376530647, -0.02238224260509014, 0.02542421780526638, 0.007988674566149712, 0.008407294750213623, 0.009411984123289585, -0.012349304743111134, -0.03008485957980156, 0.038792166858911514, -0.0009994565043598413, -0.01417728140950203, 0.01504242978990078, -0.031117457896471024, -0.006164187099784613, 0.007018870208412409, -0.008316594175994396, 0.014791257679462433, -0.00768168643116951, -0.024391621351242065, -0.010374811477959156, 0.0139051778241992, -0.0062200031243264675, 0.041610877960920334, 0.02454511448740959, -0.016814589500427246, 0.015000567771494389, 0.026973113417625427, -0.013353994116187096, 0.010912041179835796, -0.012433028779923916, 0.014874981716275215, 0.05149032175540924, -0.021796174347400665, -0.0019117002375423908, -0.0006213898304849863, 0.0026076568756252527, 0.0014259261079132557, -0.004678084049373865, -0.037592120468616486, 0.013430740684270859, 0.02185199037194252, 0.012481868267059326, -0.007235157769173384, 0.043871428817510605, 0.043006278574466705, 0.014888935722410679, 0.007127013988792896, 0.005260664504021406, 0.015014521777629852, 0.007263065781444311, -0.0018384417053312063, -0.026121919974684715, -0.01567036099731922, -0.013179568573832512, -0.0008154378738254309, 0.015014521777629852, -0.013402832671999931, -0.014302867464721203, -0.003481527091935277, -0.014358683489263058, -0.010235271416604519, -0.00178524199873209, 0.01374470628798008, 0.009753857739269733, -0.01601921208202839, -0.019717026501893997, -0.012481868267059326, 0.0021628725808113813, -0.001411972101777792, 0.008539858274161816, 0.012412098236382008, -0.00855381228029728, 0.0006471175001934171, -0.002466372447088361, -0.016730865463614464, 0.007877042517066002, -0.026038195937871933, -0.009711995720863342, 0.012551638297736645, -0.008874754421412945, -0.008456134237349033, -0.026680080220103264, 0.01092599518597126, 0.00913290400058031, 0.01114925928413868, -0.005323457531630993, 0.01981470361351967, 0.00240706792101264, 0.006261865142732859, -0.03764793649315834, 0.011393454857170582, -0.02412649430334568, -0.01385633833706379, -0.010842271149158478, 0.01114925928413868, 0.019186772406101227, -0.010863201692700386, 0.05238337814807892, 0.016423877328634262, -0.0007164515554904938, -0.024726517498493195, 0.0030698836781084538, 0.011205075308680534, 0.017233211547136307, -0.00216112844645977, 0.03376872092485428, 0.00805844459682703, -0.01763787679374218, -0.015768038108944893, -0.001582036609761417, -0.0016361084999516606, -0.015740130096673965, -0.002878015860915184, -0.03432688117027283, -0.015098245814442635, 0.0032320991158485413, -0.00519438274204731, -0.0008529392653144896, 0.004109458066523075, -0.027949895709753036, 0.0181681290268898, 0.010891109704971313, -0.013381902128458023, 0.008567766286432743, -0.02326134592294693, 0.03114536590874195, -0.023666013032197952, -0.02705683931708336, 0.0068863071501255035, -0.02933134324848652, -0.0035757168661803007, 0.008023560047149658, -0.007207249756902456, 0.009830605238676071, -0.02153104729950428, -0.06307215243577957, 0.017135532572865486, 0.004102481063455343, 0.008881731890141964, -0.009439892135560513, 0.005658353678882122, -0.014902889728546143, -0.0047548310831189156, 0.00973292626440525, -0.01837744005024433, 0.009174766018986702, -0.013340040110051632, 0.014372637495398521, -0.011435316875576973, 0.006746767088770866, 0.0001943750976352021, -0.00913290400058031, 0.013688890263438225, -0.031647708266973495, -0.026010287925601006, 0.02877318300306797, -0.008267754688858986, 0.022326426580548286, -0.0043327221646904945, 0.0018942577298730612, -0.036726970225572586, 0.018475119024515152, 0.02326134592294693, -0.0030349986627697945, -0.010151547379791737, 0.03513621538877487, 0.026247505098581314, 0.0426434762775898, 0.021377554163336754, -0.008784053847193718, 0.03106164187192917, 0.012035339139401913, 0.005026934668421745, -0.0034832714591175318, 0.015028475783765316, 0.014267981983721256, -0.00011092353088315576, -0.0020111226476728916, -0.0035373433493077755, -0.006928169168531895, -0.00011948126484639943, 0.0009994565043598413, 0.0020076341461390257, 0.02478233352303505, 7.396718865493312e-05, 0.012970258481800556, -0.006478152237832546, -0.0007024975493550301, 0.037368856370449066, 0.010416673496365547, -0.008825915865600109, 0.008965455926954746, -0.03415943309664726, -0.015461050905287266, 0.03150817006826401, 0.010981811210513115, -0.025214908644557, -0.015335463918745518, -0.00427690614014864, -0.007660754956305027, 0.002959995763376355, 0.014972659759223461, 0.009335237555205822, 0.008874754421412945, 0.006889795884490013, -0.036308351904153824, 0.008511950261890888, -0.021168243139982224, -0.022200841456651688, 0.03583391383290291, 0.0013788312207907438, -0.02356833405792713, -0.029945319518446922, 0.013423764146864414, -0.03650370612740517, -0.00833054818212986, 0.01292141992598772, -0.022340381518006325, 0.006174652371555567, -0.01547500491142273, -0.029275527223944664, -0.01752624474465847, 0.008902662433683872, 0.020637990906834602, -0.013326086103916168, 0.027070792391896248, -0.01493079774081707, -0.007270042784512043, -0.014428453519940376, 0.008072398602962494, 0.05910921469330788, -0.014163327403366566, 0.04426214098930359, 0.010884133167564869, -0.01466567162424326, -0.014484269544482231, -0.017930911853909492, 0.02444743737578392, 0.016047120094299316, 0.00843520276248455, 0.02196362242102623, -0.024642793461680412, 0.027838263660669327, -0.016689004376530647, -0.0013640051474794745, -0.03494085744023323, -0.0217543113976717, 0.02587074786424637, 0.016954129561781883, 0.0011206819908693433, -0.029387159273028374, 0.012293488718569279, -0.016507601365447044, 0.0024907919578254223, -0.0032146566081792116, -0.015405234880745411, -0.001761694555170834, -0.02478233352303505, -0.02508932165801525, 0.00714096799492836, 0.01678668148815632, 0.019284451380372047, 0.03904333710670471, -0.013493534177541733, -0.0031361652072519064, -0.02800571173429489, 0.01179812103509903, 0.021154290065169334, 0.0012358026579022408, 0.00022718883701600134, -0.016507601365447044, -0.039768949151039124, 0.035331569612026215, -0.025340493768453598, 0.019075140357017517, -0.009300352074205875, -0.029582515358924866, 0.03189888224005699, 0.003764095949009061, -0.019186772406101227, -0.00489088287577033, -0.0004844660288654268, -0.013598189689218998, 0.022019438445568085, -0.026805665343999863, -0.006670020055025816, -0.006397916469722986, 0.0004630989278666675, 0.017554152756929398, -0.0017765207448974252, -0.01924258843064308, -0.02024727873504162, -0.01999610662460327, 0.0036873489152640104, -0.020512403920292854, 0.012188833206892014, 0.015168015845119953, -0.03254076838493347, -0.01667504943907261, -0.03242913633584976, -0.013333062641322613, 0.024321850389242172, 0.016270384192466736, -0.001739891478791833, 0.02327529899775982, 0.043313268572092056, -0.02402881719172001, 0.04794600233435631, -0.0207635760307312, 0.005769985727965832, -0.03711768612265587, -0.0007338940631598234, -0.006017669569700956, -0.0004805414646398276, 0.030363939702510834, -0.006066508591175079, -0.014205189421772957, -0.004887394141405821, -0.009279421530663967, 0.004140854347497225, -0.02098684199154377, -0.010416673496365547, -0.000623570114839822, 0.009453846141695976, 0.016284337267279625, -0.026694033294916153, -0.019437944516539574, 0.005553698632866144, -0.02121010608971119, 0.008560788817703724, 0.05386250466108322, 0.0009096274734474719, -0.004978095646947622, -0.015447096899151802, -0.011400431394577026, 0.004454819951206446, -0.026749849319458008, -0.013674936257302761, -0.022200841456651688, 0.002537886844947934, 0.0161308441311121, -0.014916843734681606, -0.053918320685625076, 0.02702893130481243, -0.01303305197507143, 0.021712450310587883, -0.005871152505278587, -0.022870633751153946, 0.01894955523312092, 0.028312699869275093, -0.016382016241550446, 0.016828544437885284, -0.033601272851228714, -0.008253800682723522, 0.00549439387395978, 0.02130778320133686, -0.007430513855069876, -0.010737615637481213, 0.002033798024058342, 0.019005371257662773, 0.018851876258850098, 0.01363307423889637, -0.033712904900312424, -0.029024355113506317, -0.05107169970870018, -0.022340381518006325, -0.01967516355216503, 0.04384351894259453, 0.0014311588602140546, -0.010709707625210285, -0.009014294482767582, 0.016061073169112206, -0.01206324715167284, 0.003938521258533001, -0.03734095022082329, -0.0019361198646947742, -0.008881731890141964, 0.04219694808125496, 0.01298421248793602, -0.015084291808307171, -0.02227061055600643, -0.027070792391896248, 0.014226119965314865, -0.0029355762526392937, 0.014302867464721203, 0.01054225955158472, 0.019940290600061417, 0.013235384598374367, -0.011044603772461414, 0.0012314419727772474, 0.03789911046624184, -0.0006567109376192093, -0.008525904268026352, -0.015181969851255417, 0.01579594612121582, 0.008672421798110008, 0.011023673228919506, -0.018419301137328148, -0.0007591856992803514, 0.0032652399968355894, -0.01858675107359886, 0.017442520707845688, -0.0044617969542741776, -0.039768949151039124, 0.016270384192466736, -0.017693692818284035, -0.003514667972922325, -0.003048952668905258, -0.014986613765358925, 0.03134072199463844, -0.02327529899775982, 0.02241015061736107, -0.01992633566260338, 0.02813129685819149, -0.010095731355249882, 0.017805324867367744, 0.0031658175867050886, -0.005452531855553389, -0.0365874320268631, -0.03301520273089409, 0.014958705753087997, -0.011805098503828049, -0.005640911404043436, -0.011532994918525219, -0.01740065962076187, -0.029610423371195793, 0.020526358857750893, -0.006977008190006018, -0.012098132632672787, 0.023205529898405075, 0.0008163099992088974, 0.011246937327086926, 0.0064641982316970825, -0.02856387197971344, 0.0024297430645674467, -0.0034414094407111406, -0.0030419756658375263, -0.008128214627504349, 0.004496681969612837, -0.021014750003814697, -0.0068200258538126945, 0.006481640972197056, -0.032819848507642746, -0.004297837149351835, 0.17816488444805145, 0.02500559762120247, -0.005414158571511507, 0.028633642941713333, -0.009049179963767529, 0.009914329275488853, 0.011777190491557121, -0.0190332792699337, -0.006003715563565493, 0.0029425532557070255, -0.027503367513418198, 0.009056156501173973, -0.02531258575618267, 0.015181969851255417, -0.003204191103577614, -0.016856452450156212, -0.007960766553878784, -0.03692232817411423, -0.0013727264013141394, 0.013758660294115543, 0.015168015845119953, -0.0023233438841998577, 0.00019797260756604373, -0.016814589500427246, 0.026038195937871933, -0.013479580171406269, 0.009104995988309383, -0.003764095949009061, 0.04163878411054611, -0.00848404224961996, -0.027098700404167175, 0.01904723234474659, -0.0068863071501255035, 0.000623570114839822, -0.03591763973236084, -0.011372523382306099, 0.028159204870462418, 0.0012410354102030396, 0.01807045191526413, -0.004699015058577061, -0.0034571075811982155, -0.02414044924080372, -0.02108451910316944, -0.008491018787026405, 0.020540311932563782, 0.020456587895751, -0.008581720292568207, -0.017135532572865486, 0.0006615075981244445, 0.020177507773041725, -0.021838035434484482, 0.005033911671489477, -0.004301325883716345, 0.005229267757385969, 0.0020529846660792828, 0.0007386907818727195, 0.01968911848962307, -0.010535283014178276, 0.015237785875797272, 0.006959565915167332, -0.002042519161477685, 0.0313965380191803, -0.018684428185224533, 0.00649210624396801, -0.02217293344438076, 0.006230468396097422, -0.05506255105137825, 0.01992633566260338, -9.827770554693416e-05, -0.01551686692982912, -0.016368061304092407, -0.001553256530314684, -0.02412649430334568, -0.013542373664677143, -0.02390323020517826, -0.013186546042561531, 0.029889503493905067, -0.009698041714727879, 0.02023332379758358, 0.020400771871209145, -0.004667618777602911, 0.0024367200676351786, -0.012663270346820354, 0.02186594344675541, -0.027656860649585724, -0.010939949192106724, 0.022689230740070343, 0.00113638024777174, 0.003886193735525012, -0.007053755223751068, -0.01493079774081707, -0.00947477761656046, 0.0013840640895068645, -0.005613003391772509, 0.009837581776082516, 0.02056821994483471, 0.008574742823839188, 0.03159189224243164, -0.009684087708592415, 0.01991238258779049, -0.002928599249571562, 0.038234006613492966, 0.010472489520907402, 0.008400318212807178, 0.0014058671658858657, -0.014874981716275215, 0.01936817541718483, 0.022982265800237656, 0.005417646840214729, -0.017275072634220123, 0.004549009259790182, -0.01751229166984558, -0.027196379378437996, -0.011993477120995522, 0.002825688337907195, 0.010430627502501011, 0.006164187099784613, 0.011135305278003216, 0.010018983855843544, -0.012167902663350105, 0.011693466454744339, -0.005707192700356245, -0.010730639100074768, 0.011819052509963512, 0.0030419756658375263, -0.025131184607744217, -0.023973001167178154, 0.033908259123563766, 0.01654946431517601, -0.00973990373313427, 0.04708085209131241, -0.054699745029211044, 0.02055426687002182, 0.009718972258269787, -0.010353880003094673, -0.012879556976258755, -0.009921305812895298, -0.015014521777629852, -0.006167675368487835, 0.0016875638393685222, 0.026163781061768532, 0.018475119024515152, -0.0036908374167978764, -0.0004617907397914678, 0.020512403920292854, -0.017372751608490944, -0.008616605773568153, -0.013800522312521935, 0.015530820935964584, -0.009460823610424995, 0.015977349132299423, 0.0060420893132686615, 0.005836267489939928, -0.02726614847779274, 0.020261231809854507, -0.01949376054108143, 0.00427690614014864, -0.002605912508442998, 0.03935032710433006, -0.013102822005748749, -0.013102822005748749, 0.007395628839731216, 0.001410227851010859, -0.014261005446314812, -0.02088916301727295, -0.006809560116380453, -0.1753740757703781, 0.004632733762264252, 0.020386818796396255, -0.04163878411054611, -0.0005354853929020464, 0.008763122372329235, 0.03605717793107033, -0.010360857471823692, 0.02543817274272442, -0.02194966748356819, 0.003350708167999983, -0.006551411002874374, 0.009111972525715828, -0.028424331918358803, -0.01666109636425972, -0.0025134673342108727, -0.019856566563248634, 0.005522301886230707, 0.030643019825220108, 0.024698609486222267, 0.02194966748356819, -0.015251739881932735, 0.003193725598976016, 0.01894955523312092, 0.016312245279550552, -0.01981470361351967, -0.0015611056005582213, -0.00041011726716533303, -0.016465740278363228, -0.030475571751594543, -0.0026216108817607164, 0.018335577100515366, 0.0028378982096910477, -0.022047346457839012, -0.003012323286384344, 0.0009253257303498685, -0.014156349934637547, -0.022047346457839012, -0.01363307423889637, -0.0045106359757483006, 0.003048952668905258, 0.008525904268026352, -0.013088867999613285, -0.009760834276676178, -0.00035408316762186587, 0.023777645081281662, 0.010039915330708027, -0.029275527223944664, 0.005658353678882122, -0.02737778052687645, 0.025912608951330185, 0.0014677881263196468, 0.01233535073697567, -0.012774902395904064, 0.051350779831409454, -0.002140197204425931, -0.016158752143383026, -0.00019590131705626845, -0.018237899988889694, 0.007088640704751015, -0.0005101937567815185, -0.01579594612121582, 0.013437718152999878, 0.015112199820578098, -0.007360743824392557, -0.00839334074407816, -0.016702957451343536, 0.035415295511484146, -0.04741574823856354, 0.015628498047590256, 0.012042316608130932, -0.010667845606803894, 0.025996332988142967, -0.009174766018986702, 0.022870633751153946, 0.029163895174860954, -0.016382016241550446, 0.004562963265925646, -0.002560561988502741, -0.0019675162620842457, -0.00909104198217392, 0.020721714943647385, 0.007709594443440437, -0.01957748457789421, 0.03092210181057453, 0.0069665429182350636, -0.005951388273388147, 0.0060420893132686615, 0.0024210219271481037, -0.03775956854224205, 0.011393454857170582, -0.03516412153840065, -0.035303663462400436, -0.020470542833209038, 0.017735555768013, 0.02400090917944908, -0.004632733762264252, -0.02608005702495575, 0.011498109437525272, -0.03505248948931694, 0.031870972365140915, -0.012146971188485622, 0.014191235415637493, -0.003462340449914336, 0.0115260174497962, 0.01098878774791956, -0.016521556302905083, 0.0010631215991452336, 0.018768152222037315, 0.020847300067543983, 0.0004521973605733365, -0.009795719757676125, 0.01038876548409462, 0.027935940772294998, -0.021558955311775208, 0.020191462710499763, -0.016256429255008698, -0.019228635355830193, 0.01808440499007702, -0.02857782691717148, 0.04163878411054611, 0.006924680899828672, 0.00549439387395978, 0.009998053312301636, 0.006997939199209213, -0.015726177021861076, -0.1118553951382637, -0.03173143416643143, 0.014358683489263058, 0.03535947948694229, -0.005599049385637045, 0.0076398239471018314, -0.019340267404913902, 0.02281481772661209, -0.014484269544482231, 0.0230520348995924, 0.013688890263438225, -0.033601272851228714, -0.017903003841638565, 0.0070642209611833096, -0.002187292091548443, -0.017735555768013, -0.027224287390708923, -0.03117327392101288, -0.0020547290332615376, 0.032066330313682556, -0.0030733721796423197, -0.010709707625210285, -0.014428453519940376, 0.009181742556393147, 0.006178141105920076, 0.0024785823188722134, -0.030112767592072487, -0.0021262431982904673, -0.008156122639775276, 0.014428453519940376, 0.015321509912610054, -0.009844559244811535, -0.006272330414503813, 0.01385633833706379, -0.02260550670325756, -0.005986273288726807, 0.0012183600338175893, -0.016075028106570244, 0.056737031787633896, 0.0002821327652782202, -0.00016483182844240218, -0.0066107152961194515, -0.0036419983953237534, -0.00432225689291954, 0.0035966478753834963, 0.003525133477523923, -0.02055426687002182, 0.004280394408851862, -0.011058558709919453, -0.0239171851426363, 0.010625983588397503, -0.026219597086310387, -0.005836267489939928, 0.008504972793161869, 0.030168583616614342, -0.013102822005748749, 0.026638217270374298, -0.014861027710139751, -0.00668397406116128, 0.010905063711106777, 0.016689004376530647, -0.004988560918718576, -0.018321624025702477, 0.03209424018859863, 0.017833232879638672, 0.006889795884490013, -0.026149827986955643, -0.0005167346680536866, 0.03189888224005699, -0.013430740684270859, 0.011665557511150837, 0.017903003841638565, -0.03449432924389839, 0.04476448521018028, -0.004517612978816032, 0.007374697830528021, -0.013416786678135395, -0.017149485647678375, 0.008658467791974545, -0.011246937327086926, -0.015572682954370975, 0.004859486129134893, 0.018251853063702583, -0.009349191561341286, 0.02079148404300213, 0.008846846409142017, -0.017693692818284035, -0.007549122907221317, 0.018335577100515366, -0.04205740615725517, 0.012481868267059326, 0.018028588965535164, 0.04752738028764725, -0.017986727878451347, 0.011009719222784042, 0.016284337267279625, -0.015614544972777367, -0.019856566563248634, -0.004179228097200394, 0.00473738880828023, -0.047025036066770554, -0.02065194398164749, -0.046690139919519424, 0.02348461002111435, -0.009167788550257683, 4.565034760162234e-05, -0.0014015065971761942, -0.00940500758588314, 0.005469974596053362, -0.022354334592819214, 0.004217601381242275, -0.027866171672940254, -0.026791712269186974, -0.004297837149351835, -0.006938634905964136, 0.009370122104883194, -0.005239733494818211, -0.007911927066743374, 0.020177507773041725, -0.010793431662023067, 0.03628044202923775, 0.016479693353176117, -0.00789797306060791, -0.00810728408396244, 0.0032320991158485413, 0.011128328740596771, -0.0068688648752868176, -0.004939721897244453, 0.0017704159254208207, 0.008309616707265377, -0.022200841456651688, -0.01861465908586979, 0.003952475264668465, -0.015140107832849026, 0.0018122779438272119, 0.012907465919852257, 0.021670587360858917, 0.013828430324792862, 0.0014032508479431272, 0.018754199147224426, 0.022047346457839012, -0.001198301208205521, 0.01368191372603178, -0.03134072199463844, 0.0056862616911530495, 0.0024367200676351786, -0.020317047834396362, -0.006558388005942106, -0.025047460570931435, 0.006851422134786844, 0.03041975572705269, 0.013758660294115543, 0.024517206475138664, 0.016535509377717972, -0.012153948657214642, -0.049062322825193405, -0.00925151351839304, -0.03041975572705269, 0.025507941842079163, -0.003563506994396448, -0.0024838149547576904, -0.0014974403893575072, 0.019661210477352142, 0.008351478725671768, 0.009007317945361137, -0.004423423204571009, 0.0011590555077418685, -0.015112199820578098, -0.010695753619074821, 0.029024355113506317, -0.01011666189879179, 0.016744820401072502, -0.005801382474601269, -0.0001159927633125335, -0.015098245814442635, 6.044923793524504e-05, 0.025577712804079056, 0.028605734929442406, 0.019005371257662773, -0.005885106511414051, -0.03209424018859863, -0.004294348414987326, 0.030363939702510834, 0.0025832373648881912, -0.022745046764612198, -0.007071197964251041, 0.017875095829367638, 0.014247051440179348, -0.019842611625790596, 0.0013535396428778768, -0.013981924392282963, -0.009614317677915096, 0.013556327670812607, -0.0013988901628181338, -0.015768038108944893, -0.01840534806251526, 0.012698154896497726, 0.07423537224531174, -0.01061202958226204, 0.0139051778241992, 0.017819279804825783, 0.007577030919492245, 0.003617578884586692, 0.009223605506122112, -0.025828884914517403, -0.00805844459682703, -0.012426052242517471, -0.013416786678135395, -0.025159092620015144, -0.030866285786032677, -0.011853937059640884, 0.026038195937871933, 0.016814589500427246, 0.012321396730840206, 0.0010238760150969028, 0.0013317364500835538, -0.0126074543222785, -0.011239960789680481, -0.01481916569173336, -0.010863201692700386, -0.027559183537960052, 0.01741461269557476, -0.016856452450156212, -0.007050266955047846, 0.019856566563248634, 0.0019657721277326345, 0.023875322192907333, 0.03569437563419342, 0.01580990105867386, 0.007353766821324825, -0.0034919925965368748, 0.006833979859948158, 0.0031309325713664293, -0.006753744091838598, -0.01135159283876419, -0.030029043555259705, -0.0016779705183580518, -0.035108305513858795, -0.005040888674557209, 0.009670133702456951, -0.006635135039687157, 0.0846729725599289, 0.03588972985744476, 0.010800409130752087, -0.008239846676588058, -0.01077250111848116, 0.023024126887321472, 0.027754539623856544, -0.016368061304092407, -0.004500170238316059, -0.05687657371163368, -0.020205415785312653, -0.0022797374986112118, 0.004828089848160744, -0.03114536590874195, 0.011623695492744446, 0.010074799880385399, -0.020903117954730988, -0.008023560047149658, -0.014679625630378723, -0.01477730367332697, 0.019340267404913902, 0.027112655341625214, 0.0012131272815167904, -0.0103817880153656, -0.006582807283848524, -0.022312473505735397, -0.006896772887557745, 0.0044617969542741776, -0.053918320685625076, -0.020275186747312546, -0.02467070147395134, -0.023777645081281662, -0.02108451910316944, -0.010179455392062664, -0.013347016647458076, 0.028801091015338898, -0.00013038284669164568, -0.015126153826713562, 0.00018401860143058002, 0.009711995720863342, -0.014498223550617695, 0.008163100108504295, -0.030810469761490822, -0.046355243772268295, -0.004695526789873838, -0.01417728140950203, 0.004067596048116684, -0.009384076111018658, -0.0495646670460701], "7c41061f-967d-433f-978a-b0172c1cb3cd": [-0.008816288784146309, 0.018631163984537125, -0.009541289880871773, -0.03923214599490166, -0.0178377665579319, 0.006261685397475958, -0.001046464079990983, 0.0005039955722168088, -0.015115592628717422, -0.010950255207717419, -0.026934480294585228, -0.019793903455138206, -0.020122205838561058, 0.017058048397302628, 0.018001917749643326, 0.017659936100244522, 0.012680682353675365, 0.007899777963757515, -0.013515117578208447, 0.008672656491398811, -0.01885003224015236, 0.015279743820428848, -0.01566276326775551, -0.018439654260873795, -0.030176468193531036, -0.0037617990747094154, 0.010786104016005993, -0.008248599246144295, -0.005741873290389776, 0.008959921076893806, 0.019260410219430923, 0.0005334914894774556, -0.009705441072583199, -0.03912270814180374, -0.037289686501026154, -0.010047423653304577, -0.0063164024613797665, 0.007332088425755501, -0.018822673708200455, 0.011463227681815624, 0.0002842723042704165, 0.009808036498725414, -0.007195295765995979, 0.008316995576024055, -0.017755690962076187, 0.016086820513010025, 0.013501438312232494, -0.01816606894135475, -0.007557796314358711, 0.029218919575214386, 0.04300762340426445, 0.010327848605811596, -0.025320326909422874, -0.004360266961157322, 0.009589167311787605, -0.007448362186551094, -0.0019304868765175343, 0.024321740493178368, -0.007920296862721443, -0.04426611587405205, 0.008542703464627266, 0.012208747677505016, -0.002186973113566637, -0.012024077586829662, -0.019985413178801537, 0.0006416432443074882, 0.011381152085959911, 0.03222835808992386, -0.0039533087983727455, 0.01471889391541481, 0.030477412045001984, 0.018644843250513077, 0.015457574278116226, 0.023282116279006004, 0.01949295774102211, 0.003443756140768528, -0.0019304868765175343, -0.004271351732313633, -0.025593912228941917, 0.00015346430882345885, -0.00043239316437393427, -0.009356619790196419, -0.032720811665058136, 0.012345540337264538, 0.0216542836278677, 0.007715107873082161, 0.006111213471740484, 0.024691080674529076, 0.010649311356246471, -0.01605946198105812, 0.0056734769605100155, 0.005355434026569128, -0.017304275184869766, 0.005092108156532049, -0.0024041314609348774, 0.024896269664168358, -0.027372216805815697, 0.037180252373218536, -0.006952488794922829, -0.036222703754901886, 0.007311569526791573, 0.009295063093304634, -0.006719940807670355, -0.004760385490953922, -0.019123617559671402, -0.002361383754760027, 0.002862387103959918, -0.004202955402433872, 0.026154762133955956, 0.005615340080112219, -0.018576446920633316, 0.05148876830935478, 0.0011969360057264566, -0.027768917381763458, -0.00113879912532866, -0.022844379767775536, 0.014992479234933853, -0.022009944543242455, 0.007250012829899788, 0.00710638053715229, 0.011552142910659313, 0.01719484105706215, 0.025662308558821678, -0.005748712923377752, 0.02560759149491787, 0.006179609801620245, -0.0035053128376603127, -0.006996946409344673, 0.006901191547513008, -0.00703798420727253, 0.036277420818805695, -0.004497059620916843, -0.02675664983689785, -0.001237973920069635, 0.00872737355530262, -0.0006638720515184104, 0.01047832053154707, 0.024102872237563133, -0.0008297331514768302, -0.02919156104326248, 0.002694816095754504, 0.003438626416027546, -0.011299076490104198, 0.0038438746705651283, 0.005912864115089178, 0.007626192644238472, 0.011004972271621227, 0.01213351171463728, -0.005652958061546087, -0.013419362716376781, 0.008802609518170357, 0.0028162195812910795, -0.013966534286737442, -0.012030917219817638, 0.00799553282558918, 0.007557796314358711, 0.0008737633470445871, -0.01121016126126051, 0.02370617352426052, -0.002778601599857211, 0.02504674158990383, 0.030313260853290558, 0.006866993382573128, -0.012283983640372753, 0.007865579798817635, 0.02179107628762722, 0.021230226382613182, 0.011264878325164318, 0.006155671086162329, 0.031380243599414825, -0.0036694640293717384, -0.011702614836394787, -0.01038940530270338, 0.0030880949925631285, -0.002503306372091174, 0.0009011218789964914, 0.013720307499170303, -0.013453560881316662, -0.03980667516589165, -0.021832114085555077, 0.016278330236673355, -0.012420776300132275, 0.0009438695851713419, 0.03521043807268143, -0.02090192399919033, -0.017865125089883804, -0.006962748244404793, 0.006962748244404793, -0.003117163432762027, 0.013255211524665356, 0.01140167098492384, 0.0273995753377676, -0.007154257968068123, 0.014322195202112198, -0.5830651521682739, -0.0016893896972760558, -0.020997678861021996, -0.011360633186995983, -0.0021459353156387806, -0.006760978605598211, 0.018945787101984024, 0.01593634858727455, -0.02254343591630459, 0.023801928386092186, -0.022023623809218407, -0.03179062157869339, 0.018959466367959976, 0.023542022332549095, -0.0004505609394982457, -0.0343896821141243, 0.03917742893099785, -0.02727646194398403, -0.02477315627038479, 0.017167482525110245, -0.013775024563074112, 0.027946747839450836, -0.015553329139947891, 0.004743286408483982, -0.034170813858509064, 0.020628338679671288, 0.007858740165829659, -0.022899096831679344, 0.006819115485996008, 0.009315581992268562, -0.00761251337826252, -0.008289637044072151, 0.0060393973253667355, -0.005273358430713415, 0.02523825131356716, 0.00575213273987174, -0.029136843979358673, 0.023035889491438866, -0.00984907429665327, 0.041065167635679245, -0.016469839960336685, -0.016004744917154312, -0.00933610089123249, -0.027864672243595123, 0.0024178107269108295, -0.016360405832529068, 0.0037549594417214394, 0.041885923594236374, -0.010136338882148266, -0.006771238055080175, 0.020546263083815575, -0.03324062377214432, 0.009452374652028084, -0.015320781618356705, 0.007373126223683357, 0.0013243242865428329, 0.017112765461206436, 0.003553190268576145, 0.007338928058743477, -0.0232547577470541, -0.0008596566040068865, 0.033787794411182404, -0.00726369209587574, -0.02147645317018032, -0.014978799968957901, 0.015690121799707413, -0.019137296825647354, -0.020122205838561058, 0.002590511692687869, -0.05384160205721855, -0.03198213130235672, -0.0002438757219351828, -0.01637408509850502, -0.029711373150348663, 0.021325981244444847, 0.021640604361891747, 0.033350057899951935, 0.003833615221083164, -0.01988965831696987, 0.011880445294082165, 0.00926770456135273, -0.013426202349364758, -0.029410429298877716, -0.008754732087254524, 0.020683055743575096, -0.005228900816291571, -0.013816062361001968, 0.0071200598031282425, -0.0013183396076783538, 0.027167027816176414, 0.01012949924916029, 0.022912776097655296, -0.0045928144827485085, -0.018631163984537125, -0.007003786042332649, 0.0226255115121603, -0.003973827697336674, -0.009951668791472912, -0.01910993829369545, -0.03151703625917435, -0.008857326582074165, -0.012660163454711437, 0.02414391003549099, -0.007954495027661324, -0.003221467835828662, -0.0061351521871984005, -0.009835395030677319, 0.008686335757374763, 0.021038716658949852, -0.02344626747071743, -0.008323835209012032, -0.03209156543016434, -0.018070314079523087, 0.03649628907442093, 0.0007181616383604705, -0.031051941215991974, 0.009028317406773567, -0.0068498938344419, 0.01802927628159523, -0.01105284970253706, 0.009609686210751534, 0.0016321077710017562, 0.00933610089123249, -0.02369249425828457, -0.003635265864431858, 0.0040388042107224464, -0.009637044742703438, -0.01143586914986372, -0.016743425279855728, -0.012749078683555126, 0.0312160924077034, 0.021257584914565086, 0.02987552434206009, -0.014431629329919815, -0.007017465308308601, -0.006836214568465948, 0.005882085766643286, -0.0003212490992154926, 0.025265609845519066, -0.015977386385202408, 0.009862753562629223, -0.0004095231124665588, -0.007017465308308601, -0.02116183005273342, -0.018384937196969986, -0.021750038489699364, -0.0011088757310062647, -0.011654737405478954, -0.033678360283374786, 0.009500252082943916, 0.01631936803460121, 0.01054671686142683, -0.025197213515639305, 0.008905204012989998, 0.01232502143830061, -0.000811779114883393, -0.010252612642943859, 0.004209795035421848, -0.010498839430510998, 0.0006873832899145782, 0.016141537576913834, 0.004285030998289585, -0.048643480986356735, 0.0010721127036958933, -0.020819848403334618, -0.01293374877423048, -0.0213396605104208, 0.015785876661539078, -0.008631618693470955, -0.031106658279895782, 0.0013012405252084136, -0.003139392239972949, 0.023870324715971947, -0.006723360624164343, -0.01796087995171547, 0.0128995506092906, -0.024007117375731468, -0.004770644940435886, -0.02796042710542679, -0.010806622914969921, 0.018125031143426895, -0.008679496124386787, -0.008132325485348701, -0.009917470626533031, 0.010642471723258495, -0.0069353897124528885, 0.05613972246646881, 0.015375498682260513, -0.049710463732481, 0.00538621237501502, 0.003542930819094181, 0.013515117578208447, -0.02358306013047695, 0.008583741262555122, -0.01935616508126259, 0.03345949202775955, 0.010526197962462902, -0.007509918883442879, 0.03712553530931473, 0.03649628907442093, 0.0074893999844789505, -0.00990379136055708, 0.012270304374396801, -0.018740598112344742, 0.014773610979318619, -0.0054922266863286495, 0.018015597015619278, 0.001615008688531816, 0.04051799699664116, 0.005998359527438879, 0.023555701598525047, -0.014281157404184341, -0.030504770576953888, -0.018877390772104263, 0.03605855256319046, 0.027796275913715363, 0.019096259027719498, 0.003053896827623248, -0.0014688115334138274, 0.010020065121352673, 0.009979027323424816, 0.005016872193664312, 0.028001464903354645, 0.005888925399631262, 0.0013123549288138747, -0.01954767480492592, 0.0033411614131182432, 9.131980914389715e-05, -0.004750126041471958, -0.04738498851656914, -0.015785876661539078, -0.010293650440871716, -0.00942501612007618, 0.0015859402483329177, 0.019588714465498924, -0.00415507797151804, 0.046482156962156296, -0.007250012829899788, 0.025662308558821678, 0.014226440340280533, 0.004237153567373753, 0.016716066747903824, 0.003713921643793583, -0.034116096794605255, 0.031380243599414825, 0.007284210994839668, 0.01853540912270546, 0.025115137919783592, -0.013980213552713394, 0.03936893865466118, 0.024102872237563133, 0.004350007511675358, -0.01910993829369545, 0.022598152980208397, -0.02834344655275345, -0.019192013889551163, 0.0184670127928257, 0.02382928691804409, 0.016415122896432877, 0.0056734769605100155, 0.020423149690032005, 0.0023357351310551167, -0.005146825220435858, -0.004240573383867741, 0.03841138631105423, -0.02088824473321438, 0.006654964294284582, -0.023719852790236473, -0.0005039955722168088, -0.012926909141242504, -0.03480006009340286, -0.02555287443101406, -0.0388491228222847, -0.0034847939386963844, 0.017796728760004044, 0.00703798420727253, -0.008385391905903816, -0.0008476871880702674, 0.032474584877491, 0.0005822238745167851, 0.00021074623509775847, -0.012906390242278576, 0.006183029618114233, 0.019068900495767593, -0.005724774207919836, -0.009089874103665352, -0.027933068573474884, -0.005232320632785559, -0.011805209331214428, 0.05050386115908623, -0.013303088955581188, 0.01770097389817238, 0.017536822706460953, -0.006802016403526068, 0.018384937196969986, -0.002588801784440875, 0.03209156543016434, -0.015142951160669327, -0.0012593477731570601, 0.010423603467643261, 0.0074004847556352615, -0.010088461451232433, -0.002000593114644289, -0.007879259064793587, 0.0465095154941082, 0.017687294632196426, 0.005321235861629248, 0.01644248142838478, -0.015334460884332657, -0.014828328043222427, 0.014691535383462906, -0.001815923023968935, -0.023405229672789574, 0.031571753323078156, 0.008282797411084175, -0.007379965856671333, 0.030614204704761505, -0.018193427473306656, -0.002287857700139284, 0.032337792217731476, 0.00662418594583869, -0.0280425027012825, -0.024567967280745506, 0.010868179611861706, 0.04886234924197197, 0.01335096638649702, -0.038001008331775665, -0.0007493674638681114, -0.05110574886202812, -0.008214401081204414, 0.01340568345040083, -0.021777397021651268, 0.0030915148090571165, 0.0072158146649599075, -0.006254845764487982, -0.011463227681815624, -0.0028880357276648283, 0.004483380354940891, 0.024130230769515038, 0.006196708884090185, -0.016292009502649307, 0.008487986400723457, 0.03206420689821243, -0.057179346680641174, -0.0017543663270771503, 0.003308673156425357, -0.0012242946540936828, 0.051625560969114304, 0.0029136843513697386, -0.010437282733619213, 0.007810862734913826, 0.00958232767879963, 0.01886371150612831, -0.04174913093447685, -0.002672587288543582, 0.009226666763424873, 0.02255711518228054, 0.034170813858509064, -0.027043914422392845, 0.025334006175398827, 0.04237837716937065, 0.030285902321338654, 0.016209933906793594, -0.018042955547571182, 0.02097032032907009, -0.010327848605811596, -0.007694588974118233, -0.01372714713215828, 0.009383978322148323, 0.015977386385202408, 0.03485477715730667, -0.0005578576819971204, 0.008556382730603218, -0.05047650262713432, -0.015539649873971939, -0.009596006944775581, -0.03444439917802811, 0.02254343591630459, 0.023651456460356712, -0.015279743820428848, -0.020929282531142235, -0.020792489871382713, 0.010108980350196362, -0.009288223460316658, -0.030696280300617218, 0.008166523650288582, 0.023979758843779564, 0.007660390809178352, 0.004250832833349705, -0.027509011328220367, -0.032392509281635284, 0.03321326524019241, -0.04853404685854912, -0.003525831736624241, 0.014541063457727432, -0.013679268769919872, -0.017728332430124283, -0.02542976103723049, 0.020915603265166283, 0.006979847326874733, 0.006545530166476965, -0.0076740700751543045, 0.020477866753935814, 0.0008233209955506027, -0.005437509622424841, -0.03504628688097, -0.00570083549246192, -0.02281702123582363, 0.004900598432868719, 0.0029752410482615232, -0.00035159997059963644, 0.011025491170585155, 0.013850260525941849, 0.01835757866501808, 0.01644248142838478, -0.0006989251705817878, -0.0035942280665040016, -0.03463590890169144, 0.004982674028724432, 0.032912321388721466, -0.003236857010051608, -0.008371712639927864, -0.006022298242896795, -0.03614062815904617, 0.0007827106746844947, 0.002942752791568637, 0.006952488794922829, -0.005690576042979956, -0.007557796314358711, -0.031079299747943878, -0.01522502675652504, 0.027249103412032127, -0.0054853870533406734, 0.029547221958637238, 0.01834389939904213, -0.03370571881532669, 0.019958054646849632, 0.018754277378320694, -0.02682504616677761, 0.010074782185256481, -0.011921483092010021, 0.006617346312850714, -0.03064156323671341, -0.020792489871382713, 0.011634218506515026, -0.02287173829972744, 0.009089874103665352, -0.008816288784146309, -0.007735626772046089, 0.04407460615038872, -0.011004972271621227, -0.04623593017458916, -0.015881631523370743, -0.004093521274626255, 0.02694815956056118, 0.004295290447771549, -0.012297662906348705, -0.03211892396211624, -0.03263873606920242, 0.012591767124831676, 0.0027922808658331633, -0.00535201421007514, 0.0077698249369859695, 0.0013756215339526534, 0.016770783811807632, 0.00229469733312726, -0.006015458609908819, 0.010252612642943859, -0.00917878933250904, -0.028015144169330597, -0.003525831736624241, 0.01905522122979164, -0.010560396127402782, 0.0019270670600235462, -0.009657563641667366, 0.015211347490549088, -0.015717480331659317, -0.0021134470589458942, 0.0008476871880702674, 0.008912043645977974, 0.006589987780898809, 0.022283529862761497, 0.018685881048440933, 0.017099086195230484, 0.0458802692592144, 0.0087615717202425, 0.018932107836008072, -0.01731795445084572, 0.0024229404516518116, -0.0017526564188301563, -0.008207561448216438, 0.004654371179640293, -0.007003786042332649, -0.003799417056143284, -0.0029119744431227446, 0.011900964193046093, 0.015307102352380753, 0.0004497059853747487, 0.00981487613171339, 0.0194382406771183, 0.01611417904496193, 0.02523825131356716, -0.026264196261763573, -0.022324567660689354, -0.00017141834541689605, 0.002015982288867235, -0.005458028521388769, 0.031243450939655304, -0.030367977917194366, 0.0006044526817277074, 0.036988742649555206, 0.003211208386346698, -0.01738635078072548, -0.014787290245294571, 0.021626925095915794, -0.021421736106276512, 0.021107112988829613, 0.016415122896432877, 0.009383978322148323, 0.015074554830789566, 0.018508050590753555, -0.05116046592593193, 0.0041311392560601234, -0.013330447487533092, 0.016209933906793594, 0.03586704283952713, 0.013460400514304638, -0.005273358430713415, -0.0187816359102726, 0.010416763834655285, -0.03496421128511429, -0.02529296837747097, 0.018740598112344742, -0.006538690533488989, -0.020341074094176292, -0.033733077347278595, -0.053923677653074265, -0.010922896675765514, 0.006651544477790594, 0.016524557024240494, -0.024102872237563133, 0.022693907842040062, -0.0210250373929739, -0.007879259064793587, -0.0067746578715741634, 0.000852389435749501, 0.058273687958717346, -8.6163363448577e-06, 0.031434960663318634, 0.017865125089883804, -0.0027888610493391752, 0.000859229126945138, 0.024130230769515038, -0.010061102919280529, 0.014158044010400772, 0.023979758843779564, 0.023555701598525047, -0.020559942349791527, 0.017536822706460953, -0.015758518129587173, -0.006603667046874762, -0.006986686959862709, -0.015977386385202408, 0.02919156104326248, 0.015525970607995987, 0.0024024215526878834, -0.009130911901593208, 0.02700287662446499, -0.03414345532655716, -0.0019527156837284565, -0.01073822658509016, -0.034499116241931915, 0.008296476677060127, -0.0184670127928257, -0.038192518055438995, 0.021681642159819603, 0.012017237953841686, 0.049847256392240524, 0.003833615221083164, -0.028835900127887726, -0.02020428143441677, -0.005129726137965918, -0.03304911404848099, 0.012892710976302624, -0.011935162357985973, 0.015389177948236465, -0.008460627868771553, -0.002862387103959918, 0.036222703754901886, -0.019520316272974014, 0.0034830840304493904, -0.014117006212472916, 0.0047809043899178505, 0.033678360283374786, -0.019205693155527115, -0.016168896108865738, 0.0017577861435711384, 0.024937307462096214, -0.015320781618356705, 0.015594366937875748, -0.025279289111495018, 0.020300036296248436, -0.007920296862721443, -0.025689667090773582, -0.0006472004461102188, -0.011572661809623241, 0.012796956114470959, 0.014568421989679337, -0.00287606636993587, -0.007899777963757515, -0.012735399417579174, -0.011189642362296581, 0.02057362161576748, -0.031571753323078156, -0.025375043973326683, -0.04185856506228447, -0.0007630467298440635, 0.010464641265571117, 0.01063563209027052, -0.0356755331158638, 0.005187863018363714, 0.03307647258043289, -0.02555287443101406, 0.0021527749486267567, -0.02752269059419632, -0.014623139053583145, -0.04700196906924248, 0.014171723276376724, 0.008166523650288582, -0.0014175142860040069, 0.016360405832529068, -0.012598606757819653, -0.01885003224015236, -0.02154484950006008, -0.02203730307519436, -0.007968174293637276, -0.00531781604513526, -0.008529024198651314, -0.003047057194635272, -0.01662031188607216, 0.03269345313310623, -0.005447769071906805, -0.010225254110991955, 0.017249558120965958, -0.019985413178801537, -0.013911817222833633, 0.018398616462945938, -0.013419362716376781, 8.303744107251987e-05, -0.015881631523370743, 0.004808262921869755, 0.026017969474196434, -0.02733117900788784, -0.0004197825619485229, -0.029218919575214386, -0.008446948602795601, -0.004421823658049107, -0.0038233557716012, -0.033924587070941925, 0.01379554346203804, -0.0038575539365410805, 0.01054671686142683, -0.010252612642943859, -0.00032466891570948064, 0.00457229558378458, 0.03961516544222832, 0.021189188584685326, 0.00853586383163929, -0.01770097389817238, 0.004825362004339695, -0.0241986270993948, -0.008871005848050117, -0.0024383296258747578, -0.020094847306609154, 0.011346953921020031, 0.027919389307498932, 0.03638685494661331, 0.0043158093467354774, -0.003642105497419834, 0.024827873334288597, -0.033733077347278595, -0.012154030613601208, 0.014363233000040054, 0.04708404466509819, 0.008843647316098213, 0.009541289880871773, -0.003628426231443882, 0.011825728230178356, -0.00046167534310370684, 0.006566049065440893, -0.026168441399931908, 0.009349780157208443, 0.029957599937915802, 0.02783731371164322, 0.012837993912398815, -0.03931422159075737, -0.026537781581282616, -0.017044369131326675, -0.010348367504775524, 0.004992933478206396, -0.0058649866841733456, 0.013884458690881729, 0.008672656491398811, -0.03244722634553909, -0.030750997364521027, 0.00745520181953907, 0.010984453372657299, 0.0232547577470541, 0.0031906894873827696, -0.010204735212028027, 0.007475720718502998, 0.00971912033855915, 0.005040810909122229, -0.022461360320448875, 0.0002896157675422728, -0.0018552509136497974, -0.025197213515639305, 0.028124578297138214, -0.02809721976518631, -0.03605855256319046, 0.0045380974188447, -0.0025511838030070066, 0.019465599209070206, -0.005776071455329657, -0.024349099025130272, 0.04128403589129448, -0.0020484705455601215, 0.02166796289384365, -0.014308515936136246, 0.020929282531142235, -0.0018347320146858692, -0.010266291908919811, 0.002879486186429858, 0.00249304692260921, -0.004302130080759525, -0.023542022332549095, 0.017947200685739517, -0.032720811665058136, -0.006159090902656317, 0.010074782185256481, 0.006265105213969946, -0.027809955179691315, 0.024567967280745506, 0.018617484718561172, -0.0023955819196999073, 0.04213215038180351, -0.011394831351935863, 0.0019561355002224445, 0.001046464079990983, -0.02147645317018032, -0.014636818319559097, -0.004469701088964939, -0.004425243474543095, 0.011449548415839672, -0.01994437538087368, -0.032146282494068146, -0.0005655522691085935, 0.02280334196984768, -0.03222835808992386, -0.024376457557082176, 0.1764078587293625, -0.026346271857619286, 0.005967581178992987, 0.033541567623615265, -0.004377366043627262, 0.005748712923377752, 0.020983999595046043, -0.028945334255695343, -0.018425974994897842, 0.0030675760935992002, -0.005649538245052099, -0.008467467501759529, -0.013549315743148327, 0.012591767124831676, -0.010341527871787548, -0.008405910804867744, -0.022256171330809593, -0.04601706191897392, 0.004220054484903812, 0.01962975226342678, 0.015498612076044083, -0.03159911185503006, -0.04046327993273735, -0.016168896108865738, 0.017345312982797623, -0.003638685680925846, -0.008994119241833687, 0.0023271855898201466, 0.03269345313310623, 0.013043182902038097, -0.020532583817839622, -0.0012106152717024088, -0.01886371150612831, -0.01150426547974348, -0.019219372421503067, -0.016292009502649307, 0.03206420689821243, 0.008364873006939888, 0.019027862697839737, -0.011545303277671337, 0.0030043094884604216, -0.01331676822155714, -0.014568421989679337, -0.014089647680521011, -0.0020587299950420856, 0.02395240031182766, -0.01879531517624855, 0.0005890635075047612, 0.007000366225838661, 0.0038541341200470924, -0.001620993367396295, -0.0433359257876873, 0.02147645317018032, 0.004897178616374731, -0.004767225123941898, -0.003409557742998004, 0.009999546222388744, 0.018740598112344742, 0.015963707119226456, 0.023788249120116234, 0.0044184038415551186, 0.05378688499331474, -0.020245319232344627, 0.022324567660689354, -0.0012148900423198938, 0.0042337337508797646, -0.04248781129717827, 0.015348140150308609, -0.012947428040206432, -0.010485160164535046, -0.025826459750533104, -0.030313260853290558, -0.012926909141242504, 0.0024366197176277637, -0.019848620519042015, -0.003124003065750003, 0.02682504616677761, -0.016962293535470963, 0.009876432828605175, 0.0056803165934979916, 0.006973007693886757, -0.032912321388721466, -0.0030846751760691404, 0.03860289603471756, -0.03285760432481766, -0.03712553530931473, 0.009671242907643318, -0.005204962100833654, 0.01286535244435072, -0.014376912266016006, 0.007332088425755501, 0.0035771289840340614, 0.005413570906966925, 0.032200999557971954, 0.0032727650832384825, 0.037371762096881866, 0.007988693192601204, 0.01681182160973549, 0.006111213471740484, 0.013364645652472973, -0.024116551503539085, 0.04344535991549492, -0.009561808779835701, 0.022023623809218407, 0.008823128417134285, -0.008576901629567146, -0.018932107836008072, 0.01731795445084572, -0.005871826317161322, -0.015621725469827652, -0.0014585520839318633, -0.05077744647860527, 0.000810924160759896, 0.0015996195143088698, 0.007414164021611214, 0.002381902653723955, -0.012694361619651318, 0.01681182160973549, 0.00815284438431263, -0.01789248362183571, -0.000566834700293839, -0.022201454266905785, 0.009780677035450935, 0.0020313714630901814, 0.01694861426949501, -0.01789248362183571, -0.0433085672557354, 0.01340568345040083, 0.023035889491438866, -0.012263464741408825, 0.030094392597675323, -0.034170813858509064, -0.0076467115432024, -0.01150426547974348, 0.0011131505016237497, 0.017153803259134293, -0.006990106776356697, -0.02490994893014431, -0.008563222363591194, 0.002357963938266039, -0.015594366937875748, 0.031243450939655304, 0.005598240997642279, 0.013576674275100231, 0.022392963990569115, -0.03904063254594803, 0.011360633186995983, -0.014089647680521011, 0.03096986562013626, -0.007373126223683357, -0.011073368601500988, 0.004100360907614231, -0.0018962887115776539, -0.023022210225462914, 0.005529844667762518, -0.010409924201667309, 0.014308515936136246, -0.03556609898805618, 0.03288496285676956, -0.0037515396252274513, -0.015279743820428848, -0.011039170436561108, 0.009808036498725414, -0.00556062301620841, -0.029355712234973907, -0.008460627868771553, -0.1707172840833664, 0.01426747813820839, 0.018316540867090225, -0.030367977917194366, 0.011299076490104198, -0.015785876661539078, 0.04194064065814018, 0.02651042304933071, -0.010922896675765514, -0.003055606735870242, 0.02172267995774746, 0.005642698612064123, 0.005663217511028051, -0.01143586914986372, -0.03739912062883377, 0.0016492068534716964, 0.00811864621937275, -0.006959328427910805, 0.03783685714006424, 0.02815193682909012, 0.044813286513090134, -0.014623139053583145, 0.005796590354293585, 0.011319595389068127, 0.0001593421184225008, -0.009349780157208443, 0.02222881279885769, 0.010868179611861706, -0.015977386385202408, -0.01675710454583168, 0.0005933382781222463, 0.007544117048382759, 0.049409519881010056, -0.006456614937633276, -0.01618257537484169, 0.019123617559671402, 0.030231185257434845, -0.008207561448216438, -0.009958508424460888, 0.012981626205146313, 0.007325248792767525, 0.01251653116196394, 0.019602393731474876, -0.016866538673639297, -0.016086820513010025, 0.010211574845016003, 0.012277144007384777, -0.008925722911953926, -0.02447221241891384, -0.044129323214292526, -0.006141991820186377, -0.007667230442166328, 0.01827550306916237, -0.003727600909769535, 0.032009489834308624, -0.00799553282558918, -0.0012661874061450362, 0.012749078683555126, 0.014062289148569107, 0.00958232767879963, 0.011394831351935863, -0.009808036498725414, -0.01841229572892189, 0.014705214649438858, -0.003334321780130267, -0.01757786050438881, -0.019383523613214493, 0.03871233016252518, -0.00895308144390583, 0.01656559482216835, -0.007044823840260506, 0.003529251553118229, 0.017495784908533096, 0.0027255944442003965, -0.009192468598484993, 0.019739186391234398, -0.003809676505625248, 0.021804755553603172, 0.007906617596745491, -0.03337741643190384, -0.0021134470589458942, 0.06155671179294586, 0.02025899849832058, -0.008241759613156319, 0.030696280300617218, -0.024513250216841698, -0.015895310789346695, -0.009609686210751534, 0.014773610979318619, -0.019917016848921776, 0.02426702342927456, -0.04623593017458916, -0.013179975561797619, 0.0009284804109483957, 0.020163243636488914, 0.00500319292768836, 0.0001850976113928482, -0.018699560314416885, 0.02045050822198391, -0.02274862490594387, 0.015635404735803604, 0.010485160164535046, -0.0070311445742845535, 0.0011157153639942408, 0.02542976103723049, -0.003532671369612217, -0.013610872440040112, 0.026400988921523094, 0.04733027145266533, 0.001998883206397295, 0.019793903455138206, -0.004661210812628269, 0.016141537576913834, 0.016962293535470963, 0.0017988239414989948, 0.03515572100877762, -0.018932107836008072, -0.02439013682305813, 0.017222199589014053, 0.0009900371078401804, 0.021626925095915794, 0.023145323619246483, -0.00033086733310483396, 0.030997224152088165, 0.011565822176635265, -0.014705214649438858, -0.10899641364812851, -0.027686841785907745, 0.0053349151276052, 0.010423603467643261, -0.0036010676994919777, 0.029136843979358673, -0.0053964718244969845, 0.039478372782468796, 0.007776664569973946, 0.008084448054432869, 0.00942501612007618, -0.01201039832085371, -0.012837993912398815, -0.005468287970870733, -0.005133145954459906, -0.01585427299141884, -0.02032739482820034, -0.002503306372091174, -0.0286717489361763, 0.015594366937875748, 0.002587091876193881, 0.0013952854787930846, -0.009035157039761543, -0.0021373857744038105, -0.013152617029845715, 0.005191282834857702, -0.025320326909422874, 0.016798142343759537, 0.015539649873971939, 0.02320004068315029, 0.03280288726091385, 0.00536911329254508, -0.020026450976729393, -0.006723360624164343, -0.016456160694360733, 0.01694861426949501, 0.0028897456359118223, -0.00945921428501606, 0.06057180464267731, -0.02058730088174343, 0.01828918233513832, -0.011080208234488964, 0.0032727650832384825, -0.028945334255695343, -0.005167344119399786, 0.0200811680406332, -0.031134016811847687, 0.021189188584685326, -0.0013157747453078628, -0.031188733875751495, -0.0013790413504466414, -0.019834941253066063, -0.008768411353230476, 0.016538236290216446, 0.005991519894450903, -0.013193654827773571, 0.010464641265571117, -0.012297662906348705, -0.014787290245294571, -0.01637408509850502, 0.01315945666283369, 0.01701701059937477, -0.007256852462887764, 0.0008062219130806625, 0.00993798952549696, 0.0015397727256640792, -0.04038120433688164, 0.011066528968513012, 0.0305868461728096, -0.025265609845519066, 0.013118418864905834, 0.0006775513174943626, -0.023282116279006004, 0.03198213130235672, 0.005204962100833654, 0.014828328043222427, -0.02466372214257717, 0.0037549594417214394, 0.022078340873122215, -0.014705214649438858, -0.02109343372285366, -0.007721947506070137, 0.010505679063498974, -0.005075009074062109, 0.018740598112344742, 0.030039675533771515, 0.002958141965791583, 0.006986686959862709, -0.010868179611861706, -0.02618212066590786, 0.001702214009128511, 0.012557568959891796, 0.05504538118839264, -0.013857100158929825, 0.02013588510453701, 0.012434455566108227, -0.01904154196381569, -0.02573070488870144, -0.0009481443557888269, 0.028179295361042023, -0.033869870007038116, -0.012961107306182384, -0.061009541153907776, 0.026387309655547142, -0.01776937022805214, -0.005464868154376745, -0.00011638065916486084, -0.03969724103808403, 0.004753545857965946, -0.013576674275100231, -0.00707218237221241, -0.02440381608903408, -0.013911817222833633, -0.018891070038080215, -0.0007267111795954406, 0.009062515571713448, 0.0001215103839058429, -0.019657110795378685, 0.039286863058805466, -0.0033001236151903868, 0.016729746013879776, 0.03994346782565117, -0.03274817019701004, 0.0031684606801718473, 0.018822673708200455, 0.00799553282558918, -0.009575488045811653, -0.011723133735358715, 0.010642471723258495, 0.03198213130235672, -0.00571793457493186, -0.03332269936800003, 0.020546263083815575, -0.01579955592751503, 0.00689777173101902, 0.027167027816176414, -0.0010148307774215937, 0.0011781270150095224, 0.003137682331725955, -0.004719347693026066, 0.009219827130436897, -0.016579274088144302, -0.004336328245699406, -0.03236515074968338, 0.0029153942596167326, -0.007386805489659309, -0.021052395924925804, -0.014349553734064102, -0.013234692625701427, 0.008036570623517036, 0.004367106594145298, 0.010957094840705395, 0.018330220133066177, 0.009055675938725471, -0.012687521986663342, -0.012283983640372753, 0.002263918984681368, -0.009520770981907845, 0.016333047300577164, -0.026332592591643333, -0.015635404735803604, -0.01194200199097395, -0.00841275043785572, -0.02299485169351101, 0.0029752410482615232, -0.004161917604506016, -0.012981626205146313, -0.016196254640817642, -0.0018398617394268513, 0.0022434000857174397, 0.015402857214212418, 0.014677856117486954, 0.004281611181795597, -0.002749533159658313, -0.006374539341777563, -0.017372671514749527, 0.024239664897322655, -0.001427773735485971, -0.015266064554452896, -0.006966168060898781, -0.02562127076089382, 0.009575488045811653, 0.015594366937875748, 0.004350007511675358, -0.03132552653551102, 0.005321235861629248, 0.041694413870573044, -0.012051436118781567, 0.007202135398983955, 0.007174776867032051, 0.021107112988829613, -0.01701701059937477, -0.009014638140797615, 0.02254343591630459, -0.0026059008669108152, -0.004298710264265537, 0.01904154196381569, 0.06276048719882965, -0.0026965260040014982, -0.015621725469827652, 0.006128312554210424, 0.013884458690881729, -0.005440929438918829, 0.007311569526791573, -0.026483064517378807, -0.005458028521388769, -0.022721266373991966, -0.014773610979318619, 0.014048609882593155, 0.0004479960771277547, -0.022502398118376732, 0.024827873334288597, 0.023938721045851707, 0.008631618693470955, -0.0031616210471838713, 0.00660708686336875, -0.02051890455186367, -0.03217364102602005, -0.009951668791472912, 0.004620173014700413, -0.03772742301225662, 0.006586567964404821, -0.006654964294284582, 0.022310888394713402, 0.023159002885222435, 0.0005617049755528569, 0.017427388578653336, 0.03025854378938675, 0.008399071171879768, -0.006094114389270544, -0.007311569526791573, 0.011935162357985973, -0.007092701271176338, 0.010334688238799572, -0.017796728760004044, -0.014226440340280533, -0.00012920497101731598, -0.04546989127993584, -0.016893897205591202, 0.016729746013879776, -0.009855913929641247, 0.07747937738895416, 0.012400257401168346, -0.022406643256545067, 0.016579274088144302, 0.012407097034156322, 0.01491040363907814, 0.026168441399931908, -0.03064156323671341, -0.02529296837747097, -0.025087779387831688, 0.019725507125258446, -0.0063198222778737545, 0.014705214649438858, -0.03592175990343094, 0.012913229875266552, 0.006743879523128271, -0.016032103449106216, 0.02637363038957119, -0.018138710409402847, 0.0004561181413009763, 0.02497834526002407, 0.0013063702499493957, 0.017523143440485, -0.004120879806578159, -0.004654371179640293, -0.00933610089123249, 0.005851307418197393, 0.005981260444968939, -0.023076927289366722, -0.03345949202775955, 0.00895308144390583, 0.008166523650288582, -0.020628338679671288, -0.020532583817839622, -0.0048698196187615395, 0.023076927289366722, 0.009534450247883797, -0.00683279475197196, -0.006576308514922857, -0.006696002092212439, -0.037234969437122345, 0.027057593688368797, -0.045907627791166306, -0.05531896650791168, -0.009992706589400768, 0.028206653892993927, -0.001611588872037828, -0.01112124603241682, -0.07332088053226471], "74be3d9d-1ed6-45ea-a122-395f60330929": [-0.009978539310395718, 0.02019963599741459, 0.011602326296269894, -0.008806179277598858, -0.01273426041007042, 0.013866194523870945, -0.01432435866445303, 0.0013079567579552531, -0.018057046458125114, -0.0034227536525577307, -0.020361341536045074, 0.011440620757639408, -0.018164848908782005, 0.013030719012022018, -0.006309859454631805, 0.027974946424365044, 0.010322161950170994, 0.022786913439631462, 0.012195243500173092, -0.0011310920817777514, -0.012909440323710442, 0.022072717547416687, -0.017976194620132446, -0.013111571781337261, -0.027813240885734558, 0.02297556959092617, 0.004686072934418917, 0.0034631798043847084, 0.016588225960731506, 0.00874553993344307, 0.00680508092045784, 0.011528211645781994, 0.003917974885553122, -0.05053277686238289, -0.02794799581170082, -0.006421031896024942, -0.014405210502445698, 0.0007963123498484492, 0.003695630468428135, 0.0037562698125839233, -0.005019589327275753, -0.005972974468022585, -0.017032915726304054, -0.012201981619000435, -0.004766925238072872, 0.023056423291563988, -0.0028719461988657713, -0.030939536169171333, -0.006511990912258625, 0.02414792962372303, 0.03562897816300392, -0.0045984829775989056, -0.02381104603409767, -0.006471564527601004, 0.023797569796442986, -0.00506675336509943, 0.007539490703493357, 0.011218276806175709, 0.009136326611042023, -0.034928254783153534, 0.02209966816008091, 0.018865570425987244, 0.0027136101853102446, -0.02246350422501564, -0.03069697879254818, 0.010214358568191528, 0.013219375163316727, 0.006986998952925205, 0.0020549995824694633, 0.008442343212664127, 0.04587028920650482, 0.018124423921108246, -0.006993736606091261, 0.016857735812664032, -0.004743343684822321, -0.0069802612997591496, -0.018137898296117783, 0.0013862826162949204, -0.01811094768345356, -0.0020870037842541933, 0.008529933169484138, -0.021520225331187248, -0.03339206054806709, -0.001498296856880188, 0.038324058055877686, 0.008961145766079426, -0.01064557209610939, 0.02728770114481449, -0.00499263871461153, -0.010322161950170994, -0.007296933326870203, -0.0037360568530857563, -0.006444613914936781, 0.014351309277117252, 0.0038034338504076004, 0.0079774409532547, -0.01040975283831358, 0.04616674780845642, -0.025818880647420883, -0.03902478143572807, -0.007175654638558626, 0.016803832724690437, -0.01587403006851673, -0.012842063792049885, -0.020388292148709297, 0.008839867077767849, 0.011225014925003052, 0.0062660644762218, 0.017423702403903008, -0.00282646669074893, -0.014054849743843079, 0.05891448259353638, 0.005747261457145214, -0.03711127117276192, 0.022126618772745132, -0.009446260519325733, 0.006653482560068369, -0.014014423824846745, 0.0015429342165589333, -0.0024053603410720825, 0.015375440008938313, 0.012761211022734642, 0.012336735613644123, -0.0011310920817777514, 0.008462555706501007, 0.008213261142373085, -0.018340030685067177, -0.017208095639944077, -0.002703503705561161, -0.002738876501098275, 0.04198937118053436, -0.004355925600975752, -0.01042996533215046, -0.0014081801054999232, 0.012047014199197292, 0.0018562374170869589, 0.015604522079229355, 0.0263444222509861, -0.006505253259092569, -0.018744291737675667, 0.00567988445982337, -0.005009482614696026, -0.004507523961365223, 0.014930752106010914, 0.004147056490182877, -0.00370910600759089, 0.023837996646761894, 0.004066204186528921, -0.014149177819490433, -0.010787064209580421, -0.0020162579603493214, 0.007121752947568893, -0.009655129164457321, -0.004952212329953909, 0.010342375375330448, 0.018663439899683, -0.008132408373057842, -0.00221333559602499, 0.001925298827700317, -0.0003857335541397333, 0.034739602357149124, 0.03271828964352608, 0.012653407640755177, -0.00564282713457942, 0.02085993066430092, 0.029322486370801926, 0.04023756831884384, 0.013064407743513584, -0.008967883884906769, 0.009075687266886234, 0.010854440741240978, -0.008125671185553074, -0.02224789746105671, 0.0064412448555231094, 0.003550769994035363, -0.0017450653249397874, 0.023285504430532455, -0.0017635939875617623, -0.009877474047243595, -0.005302573088556528, 0.016857735812664032, 0.00881965458393097, 0.004019040148705244, 0.026425274088978767, -0.029403340071439743, -0.013596686534583569, 0.004194220528006554, 0.007606867700815201, -0.008529933169484138, 0.016628652811050415, -0.003112819278612733, 0.02996930666267872, -0.01935068517923355, 0.016453472897410393, -0.605423092842102, -0.0016086268005892634, -0.010376064106822014, -0.02813665196299553, 0.013960522599518299, -0.0011866780696436763, 0.014742095954716206, 0.026896914467215538, -0.01968757063150406, 0.033607665449380875, -0.008489507250487804, -0.004820826929062605, 0.005757367704063654, -0.01311830896884203, 0.009426048025488853, -0.03573678061366081, 0.033931076526641846, -0.02557632327079773, -0.031074289232492447, 0.020900357514619827, 0.008166097104549408, 0.03670701012015343, -0.013643850572407246, 0.0028517332393676043, -0.017208095639944077, 0.018905997276306152, -0.00036699429620057344, -0.03139770030975342, 0.011972899548709393, 0.031074289232492447, -0.009884211234748363, -0.013751653954386711, -0.00041921151569113135, 0.004008933901786804, 0.03775809332728386, 0.003628253471106291, -0.01883861981332302, 0.018097473308444023, -0.0068017118610441685, 0.049158286303281784, 0.000952542875893414, -0.0037562698125839233, 0.002465999685227871, -0.011319342069327831, 0.01505203079432249, -0.017208095639944077, 0.015793178230524063, 0.032502684742212296, 0.009015047922730446, -0.0007984178955666721, 0.003144823247566819, -0.024174882099032402, 0.0005040644900873303, -0.011662965640425682, 0.03355376422405243, -0.00020307859813328832, 0.032179273664951324, 0.0007445162627846003, 0.01463429257273674, -0.004847778007388115, 0.027449404820799828, 0.04131560027599335, -0.004207695834338665, -0.002144274301826954, -0.007559703662991524, 0.02527986466884613, -0.003860704367980361, -0.011662965640425682, -0.0091093759983778, -0.04931999370455742, -0.012336735613644123, 0.0051476056687533855, -0.025549372658133507, -0.009210441261529922, 0.0034311756025999784, 0.029915405437350273, 0.03040052019059658, -0.0091093759983778, 0.013219375163316727, 0.028082748875021935, 0.013589948415756226, -0.004460359923541546, -0.03940209373831749, 0.007007211912423372, 0.019579768180847168, 0.013562997803092003, 0.0011976268142461777, 0.018313078209757805, -0.0017315899021923542, 0.02587278187274933, 1.73574826476397e-05, 0.008536670356988907, 0.008725326508283615, -0.025562848895788193, -0.0018680284265428782, 0.009628178551793098, -0.010086342692375183, -0.007128490600734949, -0.022638684138655663, -0.031047338619828224, -0.03174806013703346, -0.007000474259257317, 0.010032440535724163, 0.006825293879956007, -0.02001097984611988, 0.017571931704878807, -0.009082424454391003, 0.01289596501737833, 0.05282359942793846, -0.04207022115588188, -0.023096848279237747, -0.03201756998896599, -0.012943129055202007, 0.024013176560401917, -0.002137536648660898, -0.029133832082152367, 0.02030743844807148, -0.002535060979425907, 0.008678162470459938, -0.010975719429552555, 0.009075687266886234, 0.01920245587825775, 0.007620343007147312, -0.015375440008938313, 0.010018965229392052, -0.003234097734093666, 0.004861253313720226, -0.0017787538236007094, -0.03347291424870491, -0.010618621483445168, 0.02188406139612198, 0.006832031533122063, 0.009102637879550457, -0.023986225947737694, -0.01332044042646885, -0.01015371922403574, 0.03468570113182068, -0.0066130561754107475, 0.013798817060887814, -0.015388915315270424, 0.00495558138936758, 0.016372621059417725, -0.006825293879956007, -0.02465999685227871, -0.03282609209418297, -0.03430838882923126, 0.013138522394001484, -0.006410925183445215, -0.007856162264943123, -0.013569735921919346, -0.006525466218590736, -0.013576473109424114, -0.013616899028420448, 0.02037481591105461, 0.010227834805846214, -0.01909465342760086, -0.009951588697731495, 0.016453472897410393, 0.009237391874194145, -0.020334390923380852, 0.0030723928939551115, 0.027530258521437645, -0.03910563141107559, -0.0016625283751636744, -0.01520026009529829, -0.025185536593198776, -0.018569111824035645, 0.018932947888970375, -0.02261173352599144, -0.03856661543250084, 0.000340254046022892, 0.009837047196924686, 0.006869088858366013, 0.007701195310801268, -0.013253062963485718, 0.048565369099378586, -0.014674718491733074, -0.010692736133933067, 0.0008801125804893672, -0.002078581601381302, -0.009601227939128876, 0.018164848908782005, 0.006410925183445215, -0.01661517843604088, 0.008725326508283615, 0.008152621798217297, 0.049373894929885864, 0.0036349911242723465, -0.035575076937675476, 0.012552342377603054, 0.021749308332800865, 0.01049734279513359, -0.017585406079888344, 0.009008309803903103, -0.027314651757478714, 0.02199186570942402, -0.002536745509132743, -0.006754548288881779, 0.02835225686430931, 0.03632969781756401, 0.011602326296269894, 0.008900506421923637, -0.002602438209578395, -0.00861752312630415, 0.005090335384011269, -0.007889850996434689, 0.02137199603021145, 0.009311506524682045, 0.055410876870155334, -0.003857335541397333, 0.007229556329548359, -0.01730242371559143, -0.028271405026316643, -0.02470042183995247, 0.0395907461643219, 0.020725177600979805, 0.01979537308216095, 0.014742095954716206, 0.019013799726963043, 0.018811669200658798, 0.0071891299448907375, 0.02275996282696724, 0.009311506524682045, 0.016655603423714638, 0.020280487835407257, -0.015995308756828308, -0.00506675336509943, 0.0038202779833227396, -0.013987473212182522, -0.043040450662374496, 0.008388441056013107, 0.0013635428622364998, -0.0019876225851476192, 0.007458637934178114, 0.027058618143200874, 0.03490130603313446, 0.04403763264417648, 0.00846929382532835, 0.036599207669496536, 0.000971071538515389, -0.009156539104878902, 0.022126618772745132, 0.008988097310066223, -0.02393232472240925, 0.034550946205854416, 0.01943153701722622, 0.017275473102927208, 0.020657800137996674, 0.0062323762103915215, 0.030535273253917694, -0.009271080605685711, 0.02041524276137352, -0.008166097104549408, 0.011898784898221493, -0.01447258796542883, 0.005902228411287069, 0.01071968674659729, 0.014459112659096718, 0.029403340071439743, 0.013542784377932549, 0.022786913439631462, 0.013057669624686241, 0.020725177600979805, 0.01013350673019886, 0.011427145451307297, -0.0025839093141257763, -0.0031094502191990614, -0.018703864887356758, 0.0008312641875818372, -0.0006784025463275611, -0.03681481257081032, -0.027786290273070335, -0.014014423824846745, 0.0015303009422495961, 0.017652783542871475, 0.01225588284432888, 0.0033233724534511566, -0.002684975042939186, 0.02934943698346615, -0.003301474964246154, -0.019445013254880905, -0.034523993730545044, 0.017437176778912544, 0.008206523023545742, 0.009816834703087807, -0.017720161005854607, -0.03406583145260811, -0.013906620442867279, -0.021250717341899872, 0.029861504212021828, -0.04064182937145233, 0.008004392497241497, 0.019741471856832504, -0.002792778192088008, 0.016601702198386192, -0.0004019461339339614, 0.03172111138701439, -0.022840816527605057, -0.006050458177924156, 0.025549372658133507, -0.0033924339804798365, -0.014701670035719872, -0.002973011927679181, -0.006464826874434948, 0.05506051704287529, 0.014310883358120918, -7.085116521921009e-05, -0.0021847004536539316, 0.0008169466163963079, -0.017167668789625168, -3.092500628554262e-05, 0.008287375792860985, -0.019215932115912437, 0.002295872662216425, 0.02282734028995037, 0.007195867598056793, 0.015968358144164085, -0.02085993066430092, 0.012875751592218876, 0.030939536169171333, -0.004945474676787853, -0.016089636832475662, -0.020725177600979805, 0.0024878971744328737, 0.04182766377925873, 0.02451176568865776, -0.034173633903265, -0.008913981728255749, -0.041477303951978683, 0.002973011927679181, 0.002959536388516426, -0.017356324940919876, 0.008940933272242546, -0.0033435854129493237, -0.014863374643027782, -0.013596686534583569, 0.01869039051234722, 0.010861178860068321, 0.005400269757956266, 0.02224789746105671, -0.016049209982156754, -0.011467572301626205, 0.037084322422742844, -0.05783645063638687, -0.0038068026769906282, 0.0059594991616904736, -7.195657235570252e-05, 0.038216255605220795, -0.0023396676406264305, -0.003995458595454693, 0.004500786308199167, -0.009432785212993622, 0.02824445441365242, -0.04023756831884384, -0.015132882632315159, 0.01040975283831358, 0.03323035687208176, 0.028271405026316643, -0.033203404396772385, 0.015186784788966179, 0.03274524211883545, 0.014000948518514633, 0.017261996865272522, -0.014135702513158321, 0.01549671869724989, 0.0020297332666814327, -0.007350835017859936, -0.02261173352599144, -0.010140243917703629, 0.016925111413002014, 0.022773439064621925, 0.008024604991078377, 0.004396351519972086, -0.04514261707663536, 0.0007950490689836442, -0.00876575242727995, -0.04083048552274704, -0.0031566142570227385, 0.013778604567050934, -0.008098719641566277, -0.04802635312080383, -0.011447358876466751, 0.003213884774595499, 0.009601227939128876, -0.013839243911206722, 0.013893145136535168, 0.024026650935411453, -0.002137536648660898, 0.02114291489124298, -0.00956753920763731, -0.013650587759912014, 0.04554687812924385, -0.028190553188323975, 0.0067174904979765415, 0.016884686425328255, -0.027974946424365044, -0.01704639010131359, -0.027489831671118736, 0.00971576850861311, 0.012976817786693573, 0.007539490703493357, -0.019997505471110344, 0.020576948300004005, -0.0007188287563621998, -0.001155516249127686, -0.039860256016254425, -0.011481047607958317, -0.04870012402534485, 0.0064412448555231094, 0.008927457965910435, -0.0030892372597008944, 0.008287375792860985, -0.0004387929511722177, 0.05007461458444595, 0.01007960457354784, -0.0027304545510560274, -0.013933571055531502, -0.019593242555856705, 0.008253687061369419, 0.028513962402939796, 0.003948294557631016, -0.008455818518996239, -0.0025097946636378765, -0.014863374643027782, 0.002959536388516426, -0.00275235204026103, 0.01094203069806099, -0.008792703039944172, 0.0041268435306847095, -0.023797569796442986, -0.025805406272411346, 0.02370324172079563, -0.0016077845357358456, 0.0039752451702952385, 0.016439996659755707, -0.03007710911333561, -0.004035884514451027, 0.03773114085197449, -0.018488259986042976, -0.0034278067760169506, -0.01617048867046833, 0.014944227412343025, -0.027503307908773422, -0.027651537209749222, 0.007485589012503624, -0.036572255194187164, 0.021102488040924072, 0.007559703662991524, -0.008698375895619392, 0.048861827701330185, -0.011420408263802528, -0.03845881298184395, -0.004864622373133898, -0.005046539939939976, 0.030777830630540848, -0.014351309277117252, 0.0004017355968244374, -0.026613930240273476, -0.012451277114450932, 0.011056572198867798, -0.007115015294402838, -0.01642652228474617, -0.010227834805846214, 0.00017907553410623223, -0.010564719326794147, -0.0002878262894228101, -0.007108277641236782, 0.011972899548709393, 0.007566441316157579, -0.030050158500671387, -0.02162802964448929, 0.014499538578093052, 0.008449080400168896, 0.023972749710083008, 0.006067302078008652, -0.0033974871039390564, -0.011770769022405148, 0.012363686226308346, -0.005161080975085497, -0.011979637667536736, -0.007667507044970989, 0.01181793212890625, 0.006013400852680206, 0.015254161320626736, 0.0389978289604187, -0.0022318644914776087, 0.014230030588805676, -0.009594489820301533, -0.002535060979425907, 0.012808375060558319, -0.01397399790585041, -0.013185686431825161, -0.005770843476057053, -0.0008207365754060447, -0.021318094804883003, 0.002174593973904848, 0.006919621955603361, -0.00032530477619729936, 0.010194146074354649, 0.011117211543023586, -0.0011824669782072306, 0.02253088168799877, -0.012249145656824112, -0.01811094768345356, -0.0031212412286549807, -0.010551244020462036, -0.011865096166729927, 0.027921045199036598, -0.032287076115608215, 0.0013702805154025555, 0.05126044899225235, 0.014795997180044651, -0.018097473308444023, 0.003299790434539318, -0.0027136101853102446, -0.016291767358779907, 0.023757142946124077, 0.022800389677286148, 0.010342375375330448, 0.01745065301656723, 0.0035676141269505024, -0.052742745727300644, 0.011366506107151508, -0.006276171188801527, 0.010403014719486237, 0.02717989683151245, -0.017760587856173515, 0.0024693685118108988, -0.028055798262357712, -0.0017122189747169614, -0.017760587856173515, -0.014553439803421497, 0.020253537222743034, -0.008449080400168896, -0.047029171139001846, -0.008496244437992573, -0.020765602588653564, -0.02019963599741459, 0.023096848279237747, 0.013037457130849361, -0.024201832711696625, 0.01317221112549305, 0.005882015451788902, -0.021964915096759796, -0.00023518798116128892, 0.004413195885717869, 0.05252714082598686, 0.004625433590263128, 0.015900980681180954, 0.01800314523279667, -0.022881241515278816, -0.023474160581827164, 0.008118933066725731, -0.004302023909986019, -0.0016541063087061048, 0.016480423510074615, 0.022773439064621925, -0.012498440220952034, -0.0007680982234887779, -0.004480572883039713, 0.0009634916204959154, -0.02732812613248825, -0.01891947165131569, 0.025994060561060905, -0.0024558929726481438, -0.014903800562024117, -0.023002520203590393, 0.006596211809664965, -0.0313168466091156, 0.00201288890093565, -0.008725326508283615, -0.03040052019059658, -0.013589948415756226, 0.001223735511302948, -0.04409153386950493, 0.02674868330359459, 0.007815736345946789, 0.03608714044094086, 0.0005592294037342072, -0.022746488451957703, -0.025926684960722923, 0.007074588909745216, -0.02286776714026928, 0.017275473102927208, -0.011642752215266228, 0.017908817157149315, -0.0169385876506567, 0.012121128849685192, 0.03932124003767967, -0.007249769289046526, 0.012916178442537785, -0.014256981201469898, 0.0024727373383939266, 0.029915405437350273, -0.029591994360089302, -0.008300851099193096, 0.016507374122738838, 0.011689916253089905, -0.018313078209757805, 0.014715145342051983, -0.008085244335234165, 0.015429342165589333, -0.015119407325983047, -0.024134455248713493, 0.006117835175246, -0.01770668476819992, 0.01971452124416828, 0.004170638509094715, -0.01556409616023302, -0.001361016184091568, -0.021816685795783997, -0.018272653222084045, 0.01214808039367199, -0.02824445441365242, -0.04174681380391121, -0.024713898077607155, 0.01891947165131569, 0.012323260307312012, -0.002725401194766164, -0.018852096050977707, 0.016076160594820976, 0.03490130603313446, -0.032610487192869186, 0.006464826874434948, -0.014364784583449364, -0.015927931293845177, -0.043121304363012314, 0.0093317199498415, 0.021978389471769333, 0.0020667905919253826, 0.012922915630042553, -0.018663439899683, -0.03007710911333561, -0.021574128419160843, 0.005174556747078896, 0.005528286099433899, -0.016305243596434593, -0.007310408633202314, -0.004460359923541546, -0.011912260204553604, 0.03401193022727966, -0.0008409496513195336, -0.02209966816008091, 0.002622651169076562, -0.0005659671151079237, -0.008091982454061508, 0.014769046567380428, -0.022813865914940834, -0.004645647015422583, -0.010140243917703629, -0.002028048736974597, 0.029645897448062897, -0.029861504212021828, -0.01013350673019886, -0.045385174453258514, -0.005450802389532328, -0.01448606327176094, -0.011689916253089905, -0.0412616990506649, -0.0005541761638596654, -0.005319416988641024, 0.020172685384750366, -0.014256981201469898, 0.006094253156334162, -0.004120105877518654, 0.032287076115608215, 0.005113917402923107, 0.002349774120375514, -0.00521498266607523, -0.003537294454872608, -0.022436553612351418, 0.0009971801191568375, -0.01064557209610939, -0.028487011790275574, -0.017976194620132446, 0.038431864231824875, 0.0231911763548851, 0.0042312778532505035, -0.026762159541249275, 0.008455818518996239, -0.031882815062999725, -0.008961145766079426, 0.01759888231754303, 0.04083048552274704, 0.03145160153508186, 0.01683078333735466, -0.0027658273465931416, 0.02118334174156189, -0.006663589272648096, 0.013670801185071468, -0.019633669406175613, -0.007647293619811535, 0.03425448760390282, 0.046840518712997437, -0.019215932115912437, -0.01785491593182087, -0.025158585980534554, -0.0068286629393696785, 0.010820752009749413, 0.011130686849355698, -0.0005415429477579892, 0.031559403985738754, 0.010598408058285713, -0.031047338619828224, -0.021601079031825066, -0.0064412448555231094, 0.014405210502445698, 0.015335014089941978, -0.008260425180196762, -0.011588850989937782, -0.02034786529839039, -0.006235744804143906, 0.019741471856832504, -0.022476980462670326, 0.007573178969323635, -0.005268884357064962, -0.010490604676306248, 0.011245227418839931, -0.015173308551311493, -0.04029146954417229, -0.0028685773722827435, -0.02045566961169243, 0.02133157104253769, 0.005737154744565487, -0.031586356461048126, 0.032906945794820786, -0.00885334238409996, 0.013495620340108871, -0.023581963032484055, 0.023150749504566193, -0.022733012214303017, 0.00013380659220274538, -0.0022015448193997145, -0.0009559117024764419, -0.023110324516892433, -0.013010506518185139, 0.024862127378582954, -0.011568637564778328, 0.00045311058056540787, -0.005474384408444166, 0.004790507256984711, -0.017908817157149315, 0.023285504430532455, 0.0030892372597008944, -0.011204801499843597, 0.010376064106822014, -0.01123175211250782, -0.017625832930207253, 0.010227834805846214, -0.020280487835407257, -0.012228932231664658, -0.019593242555856705, -0.0156584233045578, 0.006623162887990475, -0.02052304521203041, -0.031235994771122932, 0.003544032108038664, 0.009682080708444118, -0.017140718176960945, -0.018016619607806206, 0.18941032886505127, -0.02158760279417038, 0.006464826874434948, 0.041288647800683975, -0.01932373456656933, -0.0033115814439952374, 0.008462555706501007, -0.023622389882802963, -0.0058079008013010025, 0.004066204186528921, -0.010874654166400433, 0.00302691338583827, -0.027382029220461845, 0.011494522914290428, 0.0008308431133627892, -0.009372145868837833, -0.0016549484571442008, -0.025845831260085106, -0.010874654166400433, 0.0006889302167110145, 0.015038554556667805, -0.017720161005854607, -0.0066400072537362576, -0.01598183438181877, 0.016453472897410393, -0.019485440105199814, -0.0011049833847209811, -0.012397374957799911, 0.03333815932273865, 0.0017332743154838681, -0.017935767769813538, -0.00724303163588047, -0.00463890889659524, -0.014391735196113586, -0.02099468559026718, -0.003355376422405243, 0.022840816527605057, 0.01606268621981144, 0.01447258796542883, 0.003352007595822215, -0.0010679260594770312, -0.02421530708670616, -0.0384049117565155, -0.017396751791238785, -0.00038889184361323714, 0.01697901450097561, -0.0015698849456384778, -0.017881866544485092, 0.008273900486528873, -0.0026917126961052418, -0.0051004416309297085, -0.025994060561060905, 0.016089636832475662, -0.008496244437992573, 0.02147980034351349, -0.012781424447894096, 0.02081950567662716, 0.01661517843604088, 0.007674244698137045, -0.0027119258884340525, 0.0036114093381911516, 0.037084322422742844, -0.02630399540066719, 0.021156389266252518, -0.01755845546722412, 0.018488259986042976, -0.007937015034258366, 0.023608913645148277, 0.009628178551793098, -0.007229556329548359, -0.009028523229062557, -0.020361341536045074, -0.006498515140265226, 0.00437950761988759, -0.029241634532809258, -0.010490604676306248, 0.03570983186364174, -0.01627829298377037, 0.02254435606300831, 0.021533701568841934, -0.0008809547871351242, -0.0347665511071682, -0.0170868169516325, 0.02184363640844822, -0.029726749286055565, -0.03312255069613457, 0.016413046047091484, -0.009648391976952553, 0.011972899548709393, -0.004019040148705244, -0.011683178134262562, 0.00550470408052206, 0.00496568763628602, 0.012067227624356747, -0.004770294297486544, 0.027206847444176674, 0.0003387801698409021, 0.018380455672740936, 0.005353105720132589, 0.007930277846753597, -0.02001097984611988, 0.041073042899370193, -0.008940933272242546, 0.012700571678578854, 0.004948843270540237, -0.0167903583496809, -0.019552815705537796, 0.017464127391576767, -0.01338781788945198, -0.013906620442867279, -0.015038554556667805, -0.05993861332535744, -0.005093703977763653, -0.006421031896024942, 0.002723716665059328, -5.1427628932287917e-05, 0.003921343479305506, 0.017356324940919876, 0.00456479424610734, -0.0025957003235816956, 0.012882489711046219, -0.021493274718523026, 0.002432311186566949, -0.011993112973868847, 0.019054226577281952, -0.008994834497570992, -0.03848576545715332, 0.025711078196763992, 0.011292391456663609, 0.0011630961671471596, 0.022813865914940834, -0.024013176560401917, 0.014890325255692005, -0.02455219253897667, -0.0013542784145101905, 0.025401143357157707, -0.00830758921802044, -0.020320914685726166, -0.02173583209514618, -0.008664687164127827, -0.006993736606091261, 0.01040975283831358, -0.0016338932327926159, -0.006107728462666273, 0.0040224092081189156, -0.02214009501039982, 0.01092181820422411, -0.028783470392227173, 0.047649040818214417, -0.026169242337346077, -0.013603423722088337, -0.007263244595378637, -0.0005735470331273973, -0.036895666271448135, 0.013664063066244125, -0.008812916465103626, 0.008563621900975704, -0.025104684755206108, 0.01932373456656933, -0.014351309277117252, -0.010679260827600956, 0.006660220213234425, 0.005484491121023893, 0.007923539727926254, -0.030427470803260803, 0.0036450978368520737, -0.16871210932731628, -0.001224577659741044, 0.0011142477160319686, -0.024821700528264046, 0.004857884254306555, -0.025711078196763992, 0.04029146954417229, -0.003729318967089057, -8.390547009184957e-05, 0.011198063381016254, 0.002156065311282873, 0.014674718491733074, -0.007013949565589428, -0.015388915315270424, -0.051017891615629196, -0.003028597915545106, -0.004241384565830231, 7.422002090606838e-05, 0.005770843476057053, 0.02502383291721344, 0.032502684742212296, -0.007330621592700481, 0.016439996659755707, 0.0030016470700502396, -0.004325605928897858, -0.017571931704878807, 0.014108751900494099, 0.025212487205863, -0.022625209763646126, -0.03212537243962288, 0.0039011305198073387, 0.010052653960883617, 0.005491228774189949, -0.028217503800988197, -0.00905547384172678, 0.01803009584546089, 0.009837047196924686, -0.03193671628832817, -0.003161667613312602, 0.02587278187274933, 0.006242482457309961, 0.016237866133451462, -0.00870511308312416, -0.02726075053215027, 0.0040796794928610325, 0.026330946013331413, 0.010160457342863083, 0.005875277798622847, -0.004096523858606815, -0.02231527492403984, 0.01498465333133936, -0.030319666489958763, 0.02081950567662716, 0.0016204178100451827, 0.032287076115608215, -0.0027439298573881388, 0.0016279977280646563, 0.006528834812343121, 0.006040351465344429, 0.003776483004912734, 0.007472113706171513, -0.03670701012015343, -0.018609538674354553, 0.02404012717306614, -0.01734285056591034, -0.010814014822244644, -0.0166421290487051, 0.018703864887356758, -0.021560652181506157, 0.03185586258769035, 0.00521498266607523, -0.002907319227233529, 0.014755571261048317, -0.0036787863355129957, 0.008839867077767849, 0.02290819212794304, 0.005757367704063654, 0.020428717136383057, 0.002137536648660898, -0.01701943948864937, -0.010800539515912533, 0.04891572892665863, -0.010093079879879951, -0.013239587657153606, 0.02641179971396923, -0.021250717341899872, 0.0015597784658893943, 0.017329374328255653, -0.006444613914936781, -0.017167668789625168, 0.024538718163967133, -0.03902478143572807, -0.0036686796229332685, 0.014715145342051983, 0.028675667941570282, 0.005049908999353647, 0.01576622761785984, -0.006926359608769417, 0.005110548343509436, -0.02239612676203251, 0.01749107986688614, 0.00934519525617361, -0.0013845980865880847, 0.013300227001309395, 0.00029709062073379755, -0.009156539104878902, -0.010241310112178326, 0.027974946424365044, 0.04074963182210922, -0.004008933901786804, 0.0036181469913572073, -0.012040277011692524, 0.019768422469496727, 0.037623338401317596, 0.01348214503377676, 0.03635665029287338, -0.00854340847581625, -0.012404113076627254, 0.012350210919976234, 0.0034665486309677362, 0.034550946205854416, 0.005150974728167057, -0.01202006358653307, 0.010659047402441502, 0.01258603110909462, -0.020590422675013542, -0.10650961846113205, -0.04163901135325432, 0.014553439803421497, 0.01261971890926361, 0.02747635543346405, 0.027921045199036598, 0.01333391573280096, 0.028594814240932465, 0.013253062963485718, 0.0028668930754065514, 0.02327202819287777, -0.0236358642578125, -0.013340653851628304, -0.0018596062436699867, -0.0003246731066610664, 0.0023413521703332663, -0.018393931910395622, -0.00398872047662735, -0.012201981619000435, 0.018905997276306152, -0.019013799726963043, 0.015361964702606201, 0.007721408735960722, 0.01584707945585251, -0.012437800876796246, 0.003250942099839449, -0.019269833341240883, 0.014944227412343025, 0.010389539413154125, 0.022005340084433556, 0.017679734155535698, 0.011467572301626205, -0.00567988445982337, 0.005329523701220751, -0.004719761665910482, 0.01803009584546089, -0.007654031738638878, -0.012370424345135689, 0.05392858013510704, -0.034928254783153534, 0.016965538263320923, -0.011494522914290428, -0.0009946535574272275, -0.02495645545423031, -0.010180670768022537, 0.011474309489130974, -0.03449704498052597, 0.02359543927013874, -0.006171736866235733, -0.030670028179883957, -0.05088314041495323, -0.0011816248297691345, -0.0031919872853904963, 0.01935068517923355, 0.03029271587729454, -0.0029645897448062897, 0.0020145734306424856, 0.0007466218085028231, -0.015105932019650936, -0.01079380139708519, 0.0045513189397752285, -0.008718588389456272, -0.00819304771721363, -0.009500162675976753, 0.003321687923744321, -0.007721408735960722, -0.048053301870822906, 0.011831408366560936, 0.017949242144823074, -0.02250393107533455, 0.00991116277873516, 0.006410925183445215, -0.022328751161694527, 0.02937638945877552, -0.0032947370782494545, 0.002075212774798274, -0.022113144397735596, 0.01983579993247986, 0.0063839745707809925, -0.016655603423714638, -0.03080478124320507, -0.0009458051645196974, -0.0008219998562708497, -0.013562997803092003, 0.023864947259426117, 0.019364161416888237, -0.004376138560473919, -0.003218937898054719, -0.008401916362345219, -0.023689767345786095, 0.0010822436306625605, 0.022598259150981903, 0.019310258328914642, -0.028163602575659752, -0.010618621483445168, 0.018649963662028313, 0.002226811135187745, -0.012943129055202007, -0.0016103112138807774, 0.015119407325983047, -0.04993985965847969, -0.01505203079432249, -0.046813566237688065, 0.014890325255692005, -0.017787538468837738, -0.004039253573864698, -0.0065086218528449535, -0.021304618567228317, -0.019013799726963043, -0.007579916622489691, 0.0002433995541650802, -0.03271828964352608, -0.013731440529227257, -0.014135702513158321, -0.007923539727926254, 0.021250717341899872, 0.01005939207971096, -0.026250094175338745, 0.031667206436395645, -0.03366156667470932, 7.500959327444434e-05, 0.014256981201469898, -0.03977940231561661, 0.0015538829611614347, 0.021601079031825066, -0.0006097622099332511, -0.014283931814134121, 0.0018612906569615006, -0.013037457130849361, 0.011319342069327831, -0.013401293195784092, -0.037192124873399734, -0.0022167046554386616, -0.016547800973057747, 0.0033098969142884016, 0.033419009298086166, 0.006050458177924156, 0.010369325987994671, 0.014661243185400963, 0.0018983480986207724, -0.005952761508524418, 0.007465376053005457, -0.012431063689291477, -0.018380455672740936, 0.009877474047243595, -0.012740997597575188, -0.016413046047091484, -0.015429342165589333, -0.012929653748869896, 0.009796621277928352, -0.011878571473062038, 0.016817308962345123, 0.021169865503907204, 0.018232226371765137, -0.010416490025818348, -0.020549995824694633, 0.006707384251058102, -0.02378409542143345, 0.0031751429196447134, -0.021196816116571426, -0.012417588382959366, -0.008967883884906769, 0.016803832724690437, -0.04023756831884384, 0.009938113391399384, 0.007546228356659412, 0.006171736866235733, -0.023581963032484055, -0.014715145342051983, -0.0013635428622364998, -0.0020314177963882685, 0.014405210502445698, -0.0046288026496768, -0.01266014575958252, 0.0013155366759747267, 0.010167195461690426, 0.02433658577501774, 0.008597309701144695, -0.009156539104878902, -0.02308337390422821, -0.018191799521446228, 0.037084322422742844, 0.036275796592235565, 0.009506899863481522, -0.024013176560401917, -0.022894717752933502, 0.04287874698638916, -0.012451277114450932, 0.02114291489124298, 0.0037630076985806227, 0.0246195700019598, -0.006010031793266535, 0.01621091552078724, 0.003985351882874966, -0.00495558138936758, -0.004376138560473919, 0.030750880017876625, 0.033823274075984955, -0.0033250567503273487, -0.0025653806515038013, 0.009156539104878902, 0.027705438435077667, -0.005117285996675491, -0.007566441316157579, -0.008927457965910435, 0.00869163777679205, -0.020617373287677765, -0.0029207945335656404, -9.585436782799661e-05, -0.026883438229560852, -0.007472113706171513, 0.034847404807806015, 0.004989269655197859, -0.009372145868837833, 0.02188406139612198, 0.0037360568530857563, -0.010881391353905201, -0.014189604669809341, -0.008287375792860985, 0.007876375690102577, -0.027813240885734558, 0.016183964908123016, 0.006636638194322586, -0.0014907169388607144, 0.016143538057804108, 0.006650113500654697, 0.034443143755197525, 0.01759888231754303, 0.0010367641225457191, -0.01653432473540306, -0.008071769028902054, -0.005393532104790211, -0.012565817683935165, 0.00282646669074893, -0.015361964702606201, -0.01355625968426466, 0.017275473102927208, -0.018892521038651466, -0.0030504954047501087, 0.014041374437510967, -0.0060167694464325905, 0.07416864484548569, 0.0167903583496809, -0.018852096050977707, 0.019229406490921974, 0.008260425180196762, 0.037326879799366, 0.02758415974676609, -0.02143937349319458, -0.01631871797144413, -0.02139894664287567, 0.024740848690271378, 0.0038539664819836617, 0.008718588389456272, -0.025859307497739792, 0.014890325255692005, 0.006421031896024942, -0.005868540145456791, 0.0338771753013134, -0.02916078269481659, -0.001753487391397357, 0.025104684755206108, 0.018932947888970375, 0.007451900281012058, -0.005686622112989426, -0.0138122932985425, -0.022153569385409355, 0.00803134310990572, 0.0036114093381911516, -0.014971178025007248, -0.022342225536704063, 0.0022065979428589344, -0.0037124748341739178, -0.014256981201469898, -0.019566291943192482, -0.0038539664819836617, 0.013562997803092003, -0.0059965564869344234, -0.009082424454391003, -0.002127429936081171, -0.006235744804143906, -0.02465999685227871, 0.023837996646761894, -0.04991291090846062, -0.0466788113117218, -0.013947047293186188, -0.007236293982714415, -0.009351932443678379, -0.005194769706577063, -0.07255159318447113], "31272119-3229-40a3-86bb-2282ac6d6fe3": [-0.021959884092211723, -0.021393699571490288, -0.00355550623498857, 0.013898489996790886, -0.03685593977570534, -0.0033347613643854856, -0.014586000703275204, -0.0023405677638947964, -0.013258161954581738, -0.006784108001738787, -0.009160062298178673, -0.001867061946541071, -0.024709925055503845, 0.018805425614118576, 0.03548091650009155, 0.030573982745409012, 0.006736925803124905, 0.026799416169524193, 0.012496508657932281, 0.01263805478811264, -0.012698717415332794, 0.023267501965165138, -0.013446890749037266, -0.02694770321249962, -0.02065226621925831, 0.007515429984778166, 0.026004061102867126, 0.0077176387421786785, -0.0004052603035233915, -0.010609226301312447, 0.029980836436152458, 0.016540685668587685, -0.04187071695923805, -0.048368364572525024, -0.030816633254289627, 0.006666152738034725, 5.797707854071632e-05, -0.016635050997138023, -0.0165272057056427, -0.014208544045686722, 0.007967029698193073, 0.00609322777017951, -0.013885010033845901, 0.011519165709614754, 0.00858713686466217, 0.01675637625157833, 0.008182719349861145, -0.0076367552392184734, -0.010562043637037277, 0.033000487834215164, 0.04351535066962242, 0.00845907162874937, -0.03078967146575451, -0.0058135055005550385, 0.006541457027196884, -0.013568216003477573, -0.009449894540011883, 0.008829787373542786, -0.0033684629015624523, -0.02226993814110756, 0.021515024825930595, -0.004398043267428875, 0.001254537608474493, -0.014235504902899265, -0.01726863905787468, -0.00723907770588994, 0.016581127420067787, 0.010528341867029667, 0.01296158879995346, 0.02349667251110077, 0.051981162279844284, -4.8393219913123176e-05, -0.008964593522250652, 0.016122788190841675, 0.019924314692616463, 0.007832223549485207, -0.015017379075288773, 0.01247628778219223, -0.03650544211268425, -0.008823047392070293, 0.0009916659910231829, -0.01110126730054617, -0.019439013674855232, 0.02844404987990856, 0.019856911152601242, -0.013925451785326004, 0.016958585008978844, 0.0162710752338171, -0.012563911266624928, -0.03221861645579338, 0.0037711956538259983, 0.014949976466596127, -0.010723810642957687, 0.013116615824401379, -0.018805425614118576, 0.008041173219680786, -0.014060257002711296, 0.029980836436152458, -0.01842796988785267, -0.03521130606532097, 0.017929187044501305, 0.023092253133654594, 0.009645363315939903, -0.007967029698193073, -0.04138541594147682, -0.01538135576993227, -0.013217720203101635, -0.0022731649223715067, 0.007306480780243874, 0.022903526201844215, -0.01113496907055378, 0.028686700388789177, 0.02740604430437088, -0.036074064671993256, 0.010272211395204067, -0.020490499213337898, 0.014734286814928055, -0.014761248603463173, -0.0242381040006876, -0.00892415177077055, 0.009807130321860313, 0.0076502361334860325, 0.01691814325749874, 0.005105774383991957, 0.03432158753275871, 0.0016058755572885275, -0.011289996095001698, -0.004836162552237511, 0.004788980353623629, -0.011512425728142262, 0.028902389109134674, 0.015934059396386147, -0.03146370127797127, 0.01521958876401186, 0.0002479164977557957, 0.00210634246468544, 0.010568784549832344, -0.002076011151075363, -0.01724167726933956, -0.02608494460582733, -0.0049642277881503105, 0.011000162921845913, -0.02714991196990013, -0.009126360528171062, 0.019128959625959396, 0.016217151656746864, 0.02537047490477562, -0.005904499441385269, -0.024669483304023743, -0.0019681663252413273, -0.0066560423001646996, -0.006517866160720587, -0.003511694259941578, -0.02485821209847927, 0.024939095601439476, 0.00030984298791736364, 0.010056521743535995, -0.0059584216214716434, 0.0011163614690303802, -0.042302098125219345, 0.012516729533672333, 0.014896053820848465, -0.0013396338326856494, -0.003538655349984765, 0.014693845063447952, 0.024130258709192276, 0.008876970037817955, -0.007838964462280273, -0.004822681657969952, 0.008357967250049114, -0.002871365984901786, -0.003983514849096537, -0.02226993814110756, 1.9812783648376353e-05, 0.022445185109972954, -0.020935358479619026, 0.012166234664618969, -0.004104840103536844, -0.02562660537660122, 0.00598875293508172, 0.0131840193644166, -0.0074143256060779095, 0.023806724697351456, 0.048044830560684204, -0.016999026760458946, -0.03286568447947502, 0.010245249606668949, 0.009638623334467411, 0.0009857682744041085, 0.031841158866882324, -0.015583564527332783, 0.008998295292258263, -0.009005035273730755, 0.011006902903318405, -0.5983225703239441, -0.003666721051558852, 0.0101374052464962, -0.0007658661343157291, 0.013790645636618137, -0.009382491931319237, 0.012806562706828117, 0.0384196862578392, 0.0017861784435808659, 0.04702030494809151, 0.008169238455593586, -0.0037374941166490316, 0.00789288617670536, 0.0005594445392489433, -0.00908591877669096, -0.018023550510406494, 0.05877538025379181, -0.012793081812560558, 0.0011618585558608174, 0.0009967212099581957, -0.02391456998884678, 0.032973527908325195, -0.02634107694029808, 0.014208544045686722, -0.013500812463462353, 0.017322560772299767, -0.0019344649044796824, -0.01244258601218462, -0.0012899241410195827, 0.0030887406319379807, 0.0035588762257248163, -0.0005548106273636222, -0.003538655349984765, -0.01112148817628622, 0.0378265418112278, -0.019749067723751068, 0.0005404874682426453, 0.0192098431289196, -0.002217557281255722, 0.04146629944443703, -0.019843431189656258, -0.006474054418504238, 0.006750406231731176, -0.014680364169180393, 0.027042066678404808, -0.01849537156522274, 0.014208544045686722, 0.02673201449215412, -0.0016850739484652877, -0.016324996948242188, 0.00707731069996953, -0.021285854279994965, 0.020409615710377693, -0.01363561861217022, 0.009503817185759544, -0.013042472302913666, 0.004253126680850983, 0.017956148833036423, 0.01694510318338871, -0.019802989438176155, -0.01263805478811264, 0.027069028466939926, -0.004067768808454275, -0.035615723580121994, 0.016068866476416588, 0.011964024975895882, -0.010009339079260826, -0.017349522560834885, 0.005584335420280695, -0.01858973689377308, 0.00014912904589436948, 0.010164366103708744, -0.02844404987990856, -0.027689136564731598, 0.028201397508382797, 0.006076376885175705, 0.0058472068049013615, -0.0126515356823802, -0.007960289716720581, 0.012267339043319225, 0.010899058543145657, 0.003899261122569442, -0.03779957816004753, -0.012503248639404774, 0.028012670576572418, 0.003781306091696024, -0.009921715594828129, 0.004762019030749798, -0.0003681886591948569, 0.030034758150577545, 0.03370147943496704, 0.03998343646526337, 0.011451763100922108, -0.044270262122154236, -0.027365602552890778, 0.028875427320599556, -0.0013168853474780917, -0.008324265480041504, -0.0036094284150749445, -0.03335098549723625, 0.005250690504908562, -0.015731850638985634, 0.02152850478887558, -0.0011458502849563956, 0.0012081980239599943, 0.017767420038580894, -0.0167833361774683, 0.011087787337601185, 0.030007798224687576, -0.03302745148539543, -0.01685073971748352, -0.041843757033348083, -0.023105734959244728, 0.028039630502462387, -0.0011812368175014853, -0.027743058279156685, 0.020328732207417488, 0.005169807001948357, 0.02169027179479599, -0.036586325615644455, 0.02592317759990692, 0.01515218522399664, -0.003986884839832783, -0.017740458250045776, 0.021258894354104996, 0.012408885173499584, 0.032137732952833176, -0.0016741210129112005, -0.010750772431492805, -0.02284960262477398, 0.03343186900019646, -0.023698881268501282, 0.021083645522594452, -0.017551731318235397, 0.004849642980843782, -0.024292027577757835, -0.0029623601585626602, -0.003464512061327696, 0.008371447212994099, -0.003380258334800601, -0.008681501261889935, 0.009786909446120262, 0.004165502730756998, -0.028578855097293854, -0.009861052967607975, -0.03615494817495346, -0.04826051741838455, -0.0022192425094544888, -0.003542025573551655, -0.014599480666220188, 0.016392400488257408, 0.008492772467434406, -0.03798830881714821, 0.010447458364069462, -0.0013632248155772686, -0.011613530106842518, -0.0064201317727565765, 0.0131840193644166, -0.00708405114710331, -0.005655108485370874, 0.02782394178211689, 0.04408153519034386, -0.02488517202436924, 0.007171675097197294, -0.01197750587016344, -0.008681501261889935, -0.017214715480804443, 0.00589101854711771, -0.004108210559934378, -0.039659902453422546, 0.011876401491463184, -0.00707731069996953, -0.003542025573551655, 0.008991554379463196, -0.023874128237366676, 0.03572356700897217, -0.037907425314188004, 0.021959884092211723, -0.027042066678404808, -0.007852444425225258, -0.005968532059341669, -0.005099033936858177, -0.008357967250049114, -0.027513887733221054, 0.006315657403320074, -0.0018401008564978838, 0.02895631082355976, -0.0025208706501871347, -0.038392726331949234, -0.009389231912791729, 0.007313221227377653, 0.00556074408814311, -0.01868410035967827, 0.004465445876121521, 0.010346353985369205, 0.020247848704457283, 0.012267339043319225, -0.0017693276749923825, 0.008479292504489422, 0.0404687374830246, 0.02104320377111435, 0.0026539915706962347, -0.013521033339202404, -0.0362897552549839, -0.004401413258165121, -0.024736886844038963, 0.02333490550518036, 0.009530778042972088, 0.03664024919271469, -0.010130665265023708, 0.021164529025554657, -0.0231731366366148, -0.014572519809007645, -0.036262791603803635, 0.02182507887482643, 0.040980998426675797, -0.02007260173559189, 0.020679228007793427, 0.0431918166577816, 0.01888630911707878, 0.01856277510523796, -0.0036936821416020393, 0.024642521515488625, 0.016163229942321777, 0.008661280386149883, -0.03572356700897217, -0.0008126269094645977, -0.027284717187285423, 0.0018215649761259556, -0.03766477480530739, 0.003105591284111142, -0.021420661360025406, -0.010076742619276047, -0.010562043637037277, 0.03149066120386124, 0.00044359572348184884, 0.01724167726933956, -0.0006234773900359869, 0.01775394007563591, 0.011930324137210846, 0.0044721863232553005, 0.021555466577410698, -0.009476856328547001, -0.019425533711910248, 0.02007260173559189, 0.006595379672944546, 0.010494641028344631, 0.02724427543580532, 0.009220724925398827, 0.031517624855041504, 0.008142277598381042, 0.012179714627563953, -0.019924314692616463, 0.017376482486724854, -0.011289996095001698, -0.011647231876850128, 0.01856277510523796, 0.005065332632511854, -0.0017086650477722287, 0.02088143676519394, -0.008027692325413227, 0.027877863496541977, 0.0027500407304614782, 0.006204442586749792, 0.017282119020819664, -0.0073806243017315865, -0.0012048279168084264, -0.008115316741168499, -0.0017524769064038992, 0.01317053847014904, -0.005594445858150721, -0.03275783732533455, -0.015934059396386147, 0.0006588639225810766, 0.02830924279987812, 0.023280981928110123, 0.008324265480041504, -0.0010843451600521803, 0.0218520388007164, -0.019344650208950043, -0.024292027577757835, -0.026071464642882347, 0.016419360414147377, 0.014087218791246414, -0.01081143505871296, -0.01497693732380867, -0.006864991504698992, -0.0032572480849921703, -0.015448758378624916, 0.03046613745391369, -0.017875265330076218, -0.0016277814283967018, -0.006659412290900946, -0.004677765537053347, 0.003215121105313301, 0.0025764780584722757, 0.02446727454662323, -0.006113448645919561, -0.008486032485961914, -0.023941531777381897, 0.014019815251231194, -0.006554937921464443, -0.02814747579395771, -0.0018215649761259556, 0.031975965946912766, 0.017309080809354782, -0.019061556085944176, 0.021151049062609673, -0.020746631547808647, 0.00839166808873415, 0.02127237431704998, -0.013022251427173615, -0.01713383197784424, -0.01197750587016344, 0.01749780774116516, -0.004910305608063936, 0.00388578069396317, -0.0009200504282489419, 0.004350861068814993, 0.015826214104890823, -0.0007266881875693798, -0.0026405109092593193, -0.020032159984111786, 0.006676263175904751, 0.05133409425616264, 0.014033296145498753, -0.028929350897669792, -0.009180283173918724, -0.030169565230607986, -0.010899058543145657, 0.029414651915431023, -0.02330794371664524, 0.015462239272892475, 0.013763684779405594, -0.007791782263666391, -0.025060420855879784, 0.006689743604511023, -0.0010464309016242623, 0.024925613775849342, 0.004165502730756998, 0.0009756578365340829, 0.011964024975895882, 0.02233734168112278, -0.0362897552549839, 0.005965162068605423, -0.0016918142791837454, -0.011512425728142262, 0.022553030401468277, -0.012038168497383595, 0.015057820826768875, 0.01047442015260458, -0.0002582375891506672, 0.007758080493658781, -0.03138281777501106, -0.013756943866610527, 0.0020372543949633837, 0.0320298857986927, 0.03941725194454193, -0.026974665001034737, 0.02546483837068081, 0.020099563524127007, 0.039875589311122894, 0.02059834450483322, -0.010326133109629154, 0.022512588649988174, -0.0026388259138911963, -0.006770627107471228, -0.0010489585110917687, 0.025707488879561424, 0.00040041570900939405, -0.0036599806044250727, -0.00046550168190151453, -0.016769856214523315, -0.022350821644067764, -0.001603347947821021, -0.006153890397399664, -0.024763846769928932, -0.01095972117036581, 0.02814747579395771, 0.012786341831088066, -0.018508853390812874, -0.015462239272892475, -0.015179146081209183, -0.02169027179479599, -0.0030432436615228653, -0.003801526967436075, 0.01875150389969349, 0.019600780680775642, 0.02275523915886879, -0.027554329484701157, -0.016284555196762085, 0.016500243917107582, -0.03744908422231674, -0.008816307410597801, 0.022189054638147354, -0.017376482486724854, -0.02111060731112957, -0.021568946540355682, 0.01888630911707878, 0.015354393981397152, -0.007063830271363258, -0.009112880565226078, -0.0017356262542307377, 0.010514861904084682, 0.026799416169524193, -0.028713660314679146, -0.013278382830321789, -0.026880299672484398, 0.009968897327780724, -0.001123101799748838, 0.01645980216562748, 0.003993625286966562, -0.0019412052351981401, 0.05303264781832695, 0.017888745293021202, 0.01399285439401865, -0.012617833912372589, -0.00046718676458112895, -0.014909534715116024, 0.043461427092552185, 0.011842699721455574, -0.005223729182034731, 0.013379487209022045, -0.019115479663014412, 0.007946808822453022, -0.006312287412583828, -0.002692748326808214, -0.0001740892039379105, -0.0022040768526494503, -0.04305700957775116, -0.0066526723094284534, 0.0064639439806342125, 0.008115316741168499, -0.001915929140523076, 0.008641059510409832, -0.02018044702708721, 0.009530778042972088, 0.027365602552890778, 0.024426832795143127, 0.0027702616062015295, -0.0020423096138983965, -0.0027652063872665167, -0.02537047490477562, 0.004195834044367075, 0.005975272506475449, -0.01965470239520073, 0.01588013768196106, 0.017834823578596115, 0.01817183755338192, 0.022229496389627457, -0.0404687374830246, -0.04561832174658775, -0.02740604430437088, 0.010683368891477585, 0.0389319509267807, 0.014100698754191399, 0.0017642724560573697, -0.02071966975927353, -0.012260598130524158, -0.004633953329175711, -0.00388578069396317, -0.01745736598968506, -0.003518434474244714, -0.004573290701955557, 0.0022563140373677015, -0.011566347442567348, -0.022795680910348892, 0.009072438813745975, 0.011269775219261646, -0.0202748104929924, -0.017255157232284546, 0.00012606459495145828, -0.007508689537644386, 0.009139841422438622, -0.00021821708651259542, 0.010838395915925503, -0.011209112592041492, -0.01182921975851059, 0.009510557167232037, -0.009402712807059288, 0.004185723606497049, -0.006362839601933956, 0.017578691244125366, 0.03030437044799328, 0.027042066678404808, 0.019344650208950043, 0.014734286814928055, -0.0010085167596116662, -0.002057475270703435, -0.005419197957962751, 0.0035521360114216805, 0.024265065789222717, -0.0131840193644166, -0.020032159984111786, 0.009571220725774765, 0.013312084600329399, 0.009416193701326847, 0.007272779475897551, 0.007791782263666391, 0.0586136132478714, 0.0003224810352548957, 0.02226993814110756, -0.012988550588488579, -0.02708250842988491, 0.002428191713988781, -0.002948879497125745, -0.020005198195576668, 0.016796818003058434, -0.023321423679590225, -0.015435277484357357, 0.015273510478436947, 0.011485463939607143, -0.022283418104052544, 0.006002233363687992, -0.001621041214093566, 0.0175921730697155, -0.006871731951832771, 0.023833686485886574, 0.006969465874135494, 0.01416810229420662, 0.023442748934030533, -0.03874322026968002, 0.008472551591694355, -0.0192098431289196, -0.010757512412965298, 0.02685333974659443, 0.0029808958061039448, -0.012341481633484364, -0.011869661509990692, 0.006470683962106705, -0.03181419521570206, -0.01116867084056139, 0.013608657754957676, -0.007319961208850145, 0.0006908803479745984, -0.023348385468125343, -0.022782200947403908, -0.015462239272892475, 0.0054630097001791, 0.011862920597195625, -0.013965893536806107, 0.02430550754070282, -0.024831250309944153, 0.0052338396199047565, -0.032838720828294754, 0.004475556313991547, 0.04990515112876892, 0.010494641028344631, 0.009355531074106693, 0.024265065789222717, -0.009706025943160057, -0.00048277369933202863, -0.015893617644906044, 0.006271845195442438, 0.029495535418391228, 0.019277246668934822, 0.018616696819663048, -0.025491800159215927, -0.013042472302913666, -0.011707894504070282, -0.02546483837068081, -0.035588763654232025, -0.0032875793986022472, 0.03728731721639633, 0.015421797521412373, -0.0023371975403279066, -0.020490499213337898, 0.007805262692272663, -0.014464675448834896, 0.01112148817628622, -0.003186475019901991, -0.019641222432255745, -0.01515218522399664, -0.013372747227549553, -0.011802257969975471, 0.008701722137629986, 0.02698814496397972, 0.027689136564731598, 0.022768719121813774, -0.008769124746322632, -0.006784108001738787, 0.012745900079607964, -0.014734286814928055, 0.00997563824057579, 0.004296938888728619, 0.024871692061424255, -0.02284960262477398, -0.012590873055160046, 0.009726246818900108, -0.010272211395204067, -0.0009958787122741342, -0.02097580023109913, -0.009995859116315842, 0.026300635188817978, -0.04108884558081627, -0.007859185338020325, 0.007137973327189684, 0.0009310033638030291, -0.032353419810533524, 0.025734450668096542, -0.016985544934868813, 0.017875265330076218, -0.015421797521412373, -0.01620367169380188, 0.005014779977500439, 0.015516160987317562, 0.0032808389514684677, -0.0044384850189089775, -0.008580396883189678, -0.003892520908266306, -0.024251585826277733, -0.017322560772299767, 0.01933116838335991, -0.0306279044598341, -0.002086121588945389, -0.042167291045188904, 0.010218288749456406, 0.0011020384263247252, 0.002785427263006568, -0.005227099638432264, 0.012570652179419994, 0.011128229089081287, -0.026705052703619003, 0.010582264512777328, 0.003269043518230319, -0.004387932829558849, -0.017376482486724854, 0.0027517257258296013, 0.029576418921351433, 0.0016741210129112005, 0.027554329484701157, 0.00631902739405632, -0.024656003341078758, -0.003646500175818801, -0.022970927879214287, 0.015084782615303993, -0.010899058543145657, -0.018212279304862022, -0.014855612069368362, -0.007481728680431843, 0.016985544934868813, 0.0006950930110178888, -0.007946808822453022, -0.0009520667954348028, -0.033782362937927246, -0.00789288617670536, 0.02071966975927353, -0.019021114334464073, -0.002883161650970578, -0.0036397597286850214, -0.011155189946293831, 0.022067729383707047, -0.013521033339202404, -0.0005666061188094318, -0.011128229089081287, -0.02104320377111435, -0.01691814325749874, -0.008836528286337852, -0.022256458178162575, 0.013911970891058445, -0.007555871736258268, 0.020935358479619026, -0.02733864076435566, -0.006494275294244289, 0.010595745407044888, 0.04138541594147682, 0.012017947621643543, 0.0063257678411901, -0.012806562706828117, 0.01336600724607706, 0.00447892677038908, -0.0031965854577720165, 0.01923680491745472, -0.0069222841411828995, 0.01416810229420662, 0.014693845063447952, 0.02756781131029129, -0.01720123551785946, -0.013649099506437778, -0.008310784585773945, -0.035130422562360764, -0.01379738561809063, 0.016567647457122803, 0.01724167726933956, 0.020894916728138924, 0.006885212380439043, -0.0050889234989881516, 0.012024687603116035, 0.004296938888728619, 0.021717233583331108, -0.009045477025210857, 0.007057089824229479, 0.014963457360863686, 0.027486927807331085, -0.010380055755376816, 0.007158194202929735, -0.01521958876401186, -0.026138868182897568, 0.009766688570380211, 0.007326701655983925, 0.02136673778295517, 0.00362290907651186, 0.013150317594408989, -0.006113448645919561, -0.029172001406550407, -0.0009149951511062682, 0.019155921414494514, 0.011559607461094856, 0.006541457027196884, -0.02162287011742592, -0.02150154486298561, 1.95494903891813e-05, -0.011910103261470795, -0.03736820071935654, -0.0024753736797720194, -0.006598749663680792, -0.0015898672863841057, 0.020638786256313324, -0.010393536649644375, -0.018576255068182945, 0.018643658608198166, -0.011647231876850128, 0.04187071695923805, -0.0011997726978734136, -0.01965470239520073, 0.02733864076435566, -0.014033296145498753, 0.02833620458841324, -0.003959923982620239, -0.0013691226486116648, -0.03761085122823715, -0.025424396619200706, 0.019250284880399704, -0.0039801448583602905, -0.010609226301312447, 0.0009284757543355227, 0.006521236151456833, -0.003046613885089755, 0.002055790275335312, -0.026637649163603783, -0.003868929808959365, -0.009968897327780724, 0.030493099242448807, 0.006281955633312464, -0.014518597163259983, 0.011707894504070282, -0.010872097685933113, -0.020355693995952606, 0.006349358707666397, -0.05284392088651657, -0.003990255296230316, -0.010899058543145657, 0.0023034962359815836, -0.0051192548125982285, 0.009193764068186283, -0.02814747579395771, 0.005419197957962751, 0.010063261725008488, -0.022162092849612236, -0.01972210593521595, 0.2028559446334839, -0.008539955131709576, -0.0014398957137018442, 0.0011542757274582982, -0.010629447177052498, -0.010609226301312447, 0.03418678045272827, -0.010757512412965298, -0.018360566347837448, 0.0012621204368770123, -0.018508853390812874, 3.546554216882214e-05, -0.03146370127797127, 0.008115316741168499, -0.008128796704113483, -0.007090791594237089, -0.017147313803434372, -0.055755726993083954, 0.011707894504070282, 0.001689286669716239, 0.014761248603463173, -0.012779600918293, -0.0559714175760746, -0.013911970891058445, 0.03165242820978165, -0.01076425239443779, -0.009328569285571575, 0.004077879246324301, -0.00711101246997714, 0.0018283053068444133, -0.004256497137248516, -0.01060248538851738, -0.022485626861453056, 0.00810183584690094, -0.01761913299560547, -0.016473283991217613, 0.019573818892240524, -0.0037442343309521675, 0.04073834791779518, -0.016810297966003418, -0.00024412509810645133, -0.038042228668928146, -0.012125792913138866, -0.01554312277585268, 0.0027685766108334064, 0.018347086384892464, -0.02740604430437088, -0.0060056038200855255, 0.0047856103628873825, -0.007266039028763771, -0.022741759195923805, -0.036909859627485275, 0.012233637273311615, 0.002055790275335312, -0.005800024606287479, -0.0009158377069979906, 0.023550594225525856, 0.02353711426258087, 0.03769173473119736, 0.005254060495644808, -0.014707325957715511, 0.020584864541888237, -0.019452493637800217, 0.031032321974635124, -0.002883161650970578, 0.027122950181365013, -0.01194380410015583, 0.004687875974923372, -0.011579828336834908, -0.0007578620570711792, -0.0043137893080711365, -0.01962774246931076, -0.009052217938005924, 0.005705660674721003, -0.013628878630697727, -0.010629447177052498, 0.04747864603996277, 0.022512588649988174, 0.020773591473698616, 0.012523469515144825, -0.0033869987819343805, -0.011006902903318405, -0.01234822254627943, 0.0215959083288908, -0.03402501344680786, -0.016823777928948402, 0.0021265633404254913, -0.0028545153327286243, 0.002188911195844412, -0.0029842660296708345, 0.0026641020085662603, -0.01814487762749195, 0.018198799341917038, -0.014195063151419163, 0.013096394948661327, 0.027095990255475044, 0.04103492200374603, 0.0304122157394886, -0.004610362462699413, 0.013258161954581738, -0.02833620458841324, 0.023644957691431046, -0.017700016498565674, -0.01923680491745472, 0.024642521515488625, -0.02553224191069603, 0.014464675448834896, 0.001067494391463697, -0.00256973784416914, -0.034294627606868744, -0.00757609261199832, -0.04861101508140564, 0.015610525384545326, -0.016095826402306557, 0.030007798224687576, -0.0011365824611857533, 0.004903565160930157, 0.009550999850034714, 0.004347491078078747, -0.0101374052464962, -0.02076011151075363, -0.02669157274067402, -0.013965893536806107, 0.031059283763170242, 0.0107979541644454, -0.0231731366366148, -0.05351794883608818, 0.009914975613355637, -0.006527976598590612, 0.011141709052026272, 0.035750530660152435, -0.03882410377264023, -0.01027895137667656, 0.024925613775849342, 0.0010127294808626175, 0.0023152916692197323, -0.017713498324155807, -0.05192723870277405, -0.015300472266972065, -0.018603216856718063, 0.017740458250045776, 0.01914244145154953, 0.012550431303679943, 0.0027921677101403475, 0.01713383197784424, -0.014936495572328568, 0.006841400638222694, -0.011680932715535164, 0.03327010199427605, -0.013285123743116856, 0.009200504049658775, -0.022472146898508072, -0.002692748326808214, -0.03604710102081299, 0.00648753484711051, -0.015260030515491962, 0.021609388291835785, -0.05252038687467575, 0.02566704712808132, 0.01949293538928032, -0.020382655784487724, 0.02314617671072483, -0.007488468661904335, 0.002869680989533663, -0.005163066554814577, -0.01095972117036581, -0.16823779046535492, 0.006281955633312464, 0.025977101176977158, -0.006113448645919561, 0.011175410822033882, -0.015098262578248978, 0.03669417276978493, 0.016351958736777306, -0.00843885075300932, -0.020665748044848442, 0.021838558837771416, -0.022121651098132133, -0.0010194698115810752, -0.028012670576572418, -0.01594753935933113, -0.001809769426472485, -0.002859570551663637, 0.026300635188817978, 0.032461266964673996, 0.02081403322517872, 0.02733864076435566, -0.01554312277585268, 0.02307877317070961, 0.0231731366366148, 0.009706025943160057, -0.02407633699476719, -0.012469547800719738, -0.004826052114367485, -0.005783173721283674, -0.05513562262058258, 0.0016387344803661108, 0.026394998654723167, 0.024736886844038963, -0.006413391791284084, 0.006238143891096115, 0.012698717415332794, 0.031005362048745155, -0.013433409854769707, -0.0016665381845086813, 0.003139292821288109, 0.02550528012216091, 0.03127497434616089, -0.010110444389283657, -0.0212993361055851, -0.03928244486451149, 0.029198961332440376, -0.0037610852159559727, -0.024736886844038963, -0.0293068066239357, -0.027743058279156685, 0.022216016426682472, 0.007279519457370043, 0.020450057461857796, 0.008398409001529217, 0.026880299672484398, 0.0008998294943012297, -0.010245249606668949, 0.01547571923583746, -0.004613732453435659, 0.019101999700069427, 0.0034190150909125805, -0.030978400260210037, 0.0029000123031437397, -0.021515024825930595, -0.023739323019981384, -0.007791782263666391, -0.021407179534435272, 0.01554312277585268, -0.022458666935563087, -0.0002811967278830707, -0.0009689175640232861, 0.010919279418885708, 0.023254022002220154, 0.008364707231521606, 0.024521196261048317, 0.036559365689754486, 0.0017524769064038992, -0.007151454221457243, -0.006123559083789587, -0.029010234400629997, -0.02814747579395771, 0.03370147943496704, 0.0014896054053679109, -0.020288290455937386, 0.00690880324691534, -0.008870229125022888, -0.01585317589342594, -0.022957447916269302, -0.02365843951702118, -0.019128959625959396, 0.02844404987990856, -0.029738185927271843, -0.003703792579472065, 0.0014938181266188622, 0.022768719121813774, -0.008209680207073689, 0.013190759345889091, -0.018158357590436935, 0.035939257591962814, -0.033782362937927246, 0.008668020367622375, 0.004984448663890362, -0.003046613885089755, 0.016419360414147377, 0.025586163625121117, 0.01181573886424303, -0.009213984943926334, 0.007164934650063515, 0.02226993814110756, 0.005820245482027531, 0.008701722137629986, 0.000262450281297788, 0.007266039028763771, 0.019708625972270966, -0.026448922231793404, 0.03531914949417114, 0.016796818003058434, -0.026610689237713814, 0.04505213722586632, -0.021312816068530083, 0.04413545876741409, 0.009726246818900108, -0.006177481263875961, 0.025383954867720604, 0.013467111624777317, -0.017996590584516525, -0.09069742262363434, -0.025154784321784973, -0.00648079439997673, -0.0066223409958183765, -0.006140409503132105, 0.011364138685166836, -0.013015511445701122, 0.0015216218307614326, 0.013534514233469963, 0.03850056976079941, -0.026098426431417465, -0.005530412774533033, -0.023132694885134697, -0.006369579583406448, 0.0035588762257248163, -0.004357601515948772, 0.006689743604511023, -0.011573088355362415, -0.024440312758088112, 0.03173331171274185, 0.001311830128543079, -0.0016168284928426147, -0.004495777189731598, -0.016055384650826454, -0.019749067723751068, 0.020611824467778206, -0.02275523915886879, 0.015758812427520752, 0.0077176387421786785, 0.01181573886424303, 0.019506417214870453, 0.013777164742350578, -0.019128959625959396, -0.005307983141392469, -0.005594445858150721, 0.015556602738797665, -0.015192626975476742, -0.03386324644088745, 0.03866233676671982, -0.012233637273311615, 0.003922852221876383, -0.013871529139578342, 0.0025849035009741783, -0.01297506969422102, 0.009436414577066898, 0.013790645636618137, -0.02497953735291958, 0.025087380781769753, 0.0031915302388370037, -0.010204807855188847, -0.00874890387058258, -0.0020086083095520735, 0.009888013824820518, 0.016864219680428505, 0.02814747579395771, 0.013312084600329399, 0.01213927287608385, -0.02481777034699917, 0.005675329361110926, -0.005678699351847172, 0.015017379075288773, 0.0068447706289589405, -0.02417070046067238, 0.023267501965165138, 0.01095972117036581, 0.01662156917154789, -0.03941725194454193, 0.015489200130105019, 0.04529478773474693, -0.04087315499782562, 0.00756935216486454, 0.01965470239520073, -0.02342926897108555, 0.03496865555644035, -0.020733149722218513, 0.017888745293021202, -0.023928049951791763, 0.002509075216948986, 0.026772456243634224, -0.004371081944555044, -0.010568784549832344, 0.0011391100706532598, -0.014262466691434383, -0.008378188125789165, 0.02705554850399494, 0.019385091960430145, -0.0059954933822155, 0.010919279418885708, 0.009557739831507206, -0.030735749751329422, -0.007764820940792561, 0.010016079992055893, 0.030385253950953484, -0.021326296031475067, 0.0044384850189089775, 0.026004061102867126, -0.007313221227377653, -0.03157154470682144, 0.004947377368807793, 0.012550431303679943, -0.027325160801410675, -0.007023388519883156, -0.03270391747355461, 0.02104320377111435, -0.00981387123465538, -0.006430242210626602, -0.01047442015260458, -0.009389231912791729, 0.014936495572328568, -0.017160793766379356, 0.014437713660299778, -0.04044177755713463, 0.0015991352265700698, -0.021258894354104996, -0.020099563524127007, -0.0025815332774072886, 0.021649830043315887, -0.022997889667749405, 0.011964024975895882, -0.018899789080023766, 0.029549457132816315, 0.039525095373392105, -0.01846841163933277, 0.0042362757958471775, -0.0008345328969880939, -0.006996427197009325, 0.02469644509255886, -0.02178463712334633, -0.009928455576300621, 0.04108884558081627, -0.004020586609840393, -0.02030177228152752, 0.027392562478780746, -0.00839166808873415, 0.000818524684291333, 0.003157828701660037, -0.002222612500190735, 0.013291863724589348, 0.039713822305202484, 0.011916843242943287, 0.006494275294244289, -0.012914407067000866, -0.030735749751329422, -0.006062896456569433, 0.01312335580587387, -0.010211548767983913, -0.00019441540644038469, -0.008863489143550396, -0.01872454211115837, 0.012806562706828117, 0.0007978825597092509, 0.0003260618250351399, 0.011613530106842518, 0.03060094453394413, -0.012725679203867912, -0.01521958876401186, -0.003001116681843996, -0.012361702509224415, 0.0023405677638947964, -0.034618161618709564, -0.001809769426472485, -0.03178723528981209, -0.0006681318627670407, 0.0028679959941655397, 0.0013969263527542353, -0.0017929187742993236, -0.008917411789298058, -0.0020406246185302734, -0.016311516985297203, 0.021393699571490288, 0.02708250842988491, 0.0017373112495988607, 0.009079178795218468, 0.008304044604301453, 0.0008513836073689163, -0.0007747127674520016, 0.005655108485370874, 0.0071447137743234634, -0.016284555196762085, 0.00760305393487215, -0.022162092849612236, 0.010905798524618149, 0.02659720741212368, -0.006538087036460638, -0.023105734959244728, 0.00210634246468544, 0.034456394612789154, 0.0006521236500702798, -0.006544827483594418, 0.018023550510406494, 0.0014028240693733096, -0.016284555196762085, -0.009274647571146488, -0.003939703106880188, -0.01383108738809824, 0.019034596160054207, 0.0019327799091115594, 0.058344002813100815, -0.019223324954509735, -0.014936495572328568, 0.008250121958553791, 0.021905962377786636, -0.01554312277585268, 0.0013160427333787084, -0.022674355655908585, -0.028363166376948357, -0.01907503791153431, -0.02101624198257923, 0.007933327928185463, -0.015934059396386147, -0.00863431952893734, 0.0056921797804534435, 0.030061719939112663, 0.03645152226090431, -0.017538249492645264, 0.006763887125998735, -0.020827515050768852, -0.02220253460109234, -0.003376888344064355, -0.002670842222869396, -0.029387690126895905, 0.0031224421691149473, 0.008883710019290447, 0.029037194326519966, 0.005877538118511438, -0.007623274810612202, 0.03367451950907707, 0.02259347215294838, 0.0264084804803133, -0.00773785961791873, 0.004687875974923372, -0.007333442103117704, 0.0027871124912053347, 0.020773591473698616, -0.02214861288666725, 0.0005531255155801773, -0.009645363315939903, -0.05154978483915329, 1.741681990097277e-05, 0.013649099506437778, -0.019573818892240524, 0.05855968967080116, 0.02252606861293316, -0.009166802279651165, 0.014707325957715511, 0.0069896867498755455, 0.012907667085528374, 0.03863537684082985, -0.009854312986135483, -0.016176709905266762, -0.04009127989411354, -0.016190191730856895, 0.005779803730547428, 0.027298199012875557, -0.04289524257183075, 0.006885212380439043, 0.023698881268501282, -0.017309080809354782, 0.0008210522937588394, -0.02479080855846405, 0.009989118203520775, 0.028282281011343002, 0.017443886026740074, 0.02337534725666046, -0.01571837067604065, -0.006096597760915756, -0.019776027649641037, 0.0025242408737540245, -0.0213397778570652, -0.04356927424669266, -0.016837259754538536, 0.013649099506437778, -0.012536950409412384, -0.005675329361110926, -0.022121651098132133, 0.0074480269104242325, 0.021083645522594452, 0.007070570252835751, 0.014963457360863686, 0.007704158313572407, 0.0014533763751387596, -0.03372843936085701, 0.016837259754538536, -0.035912297666072845, -0.05381452292203903, -0.029360728338360786, 0.002129933563992381, -0.016419360414147377, -0.0004046284011565149, -0.04192464053630829], "27c585f2-eae8-4e0d-a64f-18a6221e0644": [-0.006473617162555456, 0.011181392706930637, 0.010526872240006924, -0.028144383803009987, -0.020944656804203987, 0.009579180739820004, -0.005069124978035688, -0.005774780176579952, -0.014644896611571312, -0.010922311805188656, 0.006258852779865265, 0.024149080738425255, 0.006347485817968845, -0.004264610353857279, 0.01085413247346878, 0.02169462852180004, 0.016526643186807632, 0.017276614904403687, -0.0010226883459836245, 0.009299646131694317, -0.010035981424152851, 0.02484450861811638, -0.018599292263388634, -0.021081015467643738, -0.0197992455214262, 0.01422218605875969, 0.018490204587578773, -0.012838147580623627, -0.0030885187443345785, 0.010226882994174957, 0.027244416996836662, -0.006030452437698841, -0.00035751480027101934, -0.024653606116771698, -0.04458921030163765, 0.00016000811592675745, 0.004036210011690855, -0.011351840570569038, 0.00038798237801529467, 0.01344494242221117, 0.029480695724487305, 0.024612698704004288, -0.009286009706556797, 0.003216354874894023, -0.00991325918585062, 0.027421683073043823, -0.010322334244847298, -0.02168099209666252, -0.012674517929553986, 0.01438581570982933, 0.04480738565325737, 0.029617054387927055, -0.018735650926828384, -0.0009834852535277605, 0.0010278017725795507, -0.01506760809570551, 0.002401613164693117, 0.022785495966672897, 0.008631489239633083, -0.020903749391436577, 0.020644668489694595, -0.007417899556457996, 0.004554372280836105, -0.012210899032652378, -0.009511001408100128, 0.017372066155076027, 0.005652057472616434, 0.006650883238762617, 0.009470093995332718, 0.014235821552574635, 0.020181050524115562, 0.025458121672272682, 0.00627589737996459, 0.021040108054876328, 0.02882617525756359, -0.021012837067246437, -0.005280480720102787, 0.003535092808306217, -0.020658304914832115, -0.0006771049229428172, -0.006037270184606314, -0.019062910228967667, -0.03738948702812195, 0.011801823042333126, 0.03556228429079056, 0.010124614462256432, -0.00382144539617002, 0.015135787427425385, 0.0073360842652618885, -0.025771746411919594, -0.009695085696876049, 0.024585427716374397, 0.003998711239546537, 0.014685804955661297, 0.002612968673929572, 0.02698533609509468, -0.024476340040564537, 0.03965303674340248, -0.009885987266898155, -0.010322334244847298, 0.005750917363911867, 0.024489976465702057, -0.00576114421710372, -0.019376534968614578, -0.019185632467269897, 0.003981666639447212, -0.012347257696092129, -0.01994924061000347, 0.007301994599401951, 0.007056549657136202, -0.015231238678097725, 0.06130675598978996, 0.022280970588326454, -0.036762237548828125, 0.006834967061877251, -0.02162645012140274, 0.007636073045432568, -0.024435432627797127, -0.011113213375210762, 0.010826860554516315, 0.00811332743614912, -0.0040975711308419704, 0.03523502126336098, -0.004182795528322458, 0.02664444036781788, -0.0017641374142840505, 0.0067122443579137325, -0.02510358951985836, 0.006821331102401018, -0.00991325918585062, 0.03068065084517002, -0.011849548667669296, -0.030080672353506088, 0.02335820160806179, 0.018626563251018524, 0.0013704024022445083, 0.01776750572025776, 0.012040451169013977, -0.002592514967545867, -0.026371723040938377, 0.0019720839336514473, -0.006548614241182804, 0.011051852256059647, -0.012006361037492752, 0.0015544862253591418, 0.015408504754304886, 0.02893526293337345, 0.004158932715654373, 0.007404263596981764, -0.003057838184759021, -0.0036987229250371456, -0.008576946333050728, -0.006115676369518042, -0.005938410293310881, 0.008467859588563442, -0.00405325461179018, 0.004465739242732525, -0.009674631990492344, 0.012708607129752636, 0.0016874357825145125, 0.00250047305598855, 0.02478996478021145, 0.00788833573460579, -0.007145182695239782, 0.007901972159743309, 0.02127191796898842, 0.00882920902222395, -0.0038078096695244312, 0.0026266046334058046, 0.0303261186927557, -0.015408504754304886, 0.013819928281009197, -0.014194914139807224, 0.010983672924339771, 0.005675920285284519, -0.013560847379267216, 0.0029726140201091766, 0.004138479009270668, -0.036353159695863724, -0.009715539403259754, 0.02337183803319931, -0.010349606163799763, 0.00397484889253974, 0.03908032923936844, -0.024558156728744507, -0.04167114198207855, 0.0010167226428166032, 0.007772431243211031, 0.003623725613579154, 0.021176466718316078, 0.001869815168902278, 0.03801673278212547, -0.024476340040564537, 0.009511001408100128, -0.5947409868240356, -0.0016345968469977379, -0.004789590369910002, -0.0006651735166087747, 0.02698533609509468, -0.01610393263399601, 0.01629483513534069, 0.0197992455214262, -0.010288245044648647, 0.054543379694223404, -0.001871519605629146, -0.0142630934715271, -0.00036688943509943783, 0.00666451919823885, -0.011876820586621761, -0.03629861772060394, 0.03035338968038559, -0.014563081786036491, -0.006507706828415394, 0.004769136663526297, -0.01442672312259674, 0.040089383721351624, -0.04101661965250969, 0.018367482349276543, -0.008726940490305424, 0.009265556000173092, 0.01178818754851818, -0.007731523830443621, 0.023753641173243523, 0.0056452397257089615, 0.009449640288949013, -0.014072191901504993, 0.011058669537305832, 0.006978143472224474, 0.03359872102737427, -0.0031294263899326324, -0.029698869213461876, 0.027762578800320625, -0.02511722594499588, 0.03430778533220291, -0.008249686099588871, -0.0030305664986371994, 0.018422026187181473, -0.01594030298292637, 0.020562853664159775, -0.0098314443603158, -0.020262865349650383, 0.03728039935231209, 0.0116995545104146, -0.01825839653611183, -0.005710009951144457, -0.0100018922239542, -0.00020251359092071652, -0.015790307894349098, 0.004278246313333511, 0.005880457814782858, 0.029098892584443092, -0.013704023323953152, -0.011672282591462135, -0.04508010298013687, 0.011583649553358555, 0.03038066253066063, 0.0033066922333091497, -0.011147302575409412, -0.04527100548148155, 0.020562853664159775, -0.03291692957282066, -0.006780423689633608, 0.002669216599315405, -0.0270671509206295, -0.0018612927524372935, -0.017194800078868866, -0.03275329992175102, -0.006783832795917988, 0.005103214643895626, 0.027898937463760376, 0.021871894598007202, -0.0427892804145813, 0.003920305520296097, 0.0074110813438892365, 0.01771296188235283, 0.0008458484662696719, -0.022649137303233147, -0.014753983356058598, 0.020644668489694595, 0.01326767634600401, -0.008733758702874184, 0.017644783481955528, 0.018626563251018524, 0.012674517929553986, 0.027926210314035416, 0.029589783400297165, -0.005433883983641863, -0.024217259138822556, -0.016567550599575043, 0.020835570991039276, -0.01948562264442444, -0.00632362300530076, -0.005686147138476372, -0.016717545688152313, -0.007731523830443621, -0.008392862044274807, 0.031062453985214233, -0.003940759226679802, -0.001617552014067769, 0.007506532594561577, -0.014644896611571312, 0.006531569641083479, 0.035044118762016296, -0.01994924061000347, -0.0213264599442482, -0.056561484932899475, -0.005007763858884573, 0.026467174291610718, -0.0012758036609739065, -0.0215309988707304, 0.03449868783354759, -0.020862841978669167, 0.01528578158468008, -0.03749857097864151, -0.010915493592619896, 0.010349606163799763, 0.004540736321359873, -0.00628271559253335, 0.030053401365876198, -0.010608687065541744, 0.024339983239769936, 0.00382144539617002, -0.0027169419918209314, -0.01782204955816269, 0.04126206412911415, -0.008808755315840244, 0.014467631466686726, -0.016785724088549614, 0.0005769666749984026, -0.016663001850247383, 0.01166546531021595, 0.014317636378109455, 0.014126734808087349, -0.01241543609648943, 0.016922082751989365, -0.003606680780649185, 0.0031652203761041164, -0.01949925720691681, -0.027639856562018394, -0.025962648913264275, -0.007240633480250835, -0.008576946333050728, -0.03978939354419708, -0.009620088152587414, 0.014522174373269081, -0.02678079903125763, -0.020085599273443222, 0.008140599355101585, 0.028089839965105057, -0.014372180216014385, 0.00039288276457227767, 0.01988106220960617, 0.0006621907232329249, -0.015449412167072296, 0.006937236059457064, 0.02165372110903263, -0.045870982110500336, 0.016513008624315262, -0.020699212327599525, -0.026439903303980827, -0.015040336176753044, 0.024435432627797127, -0.018422026187181473, -0.03155334293842316, -0.00717927236109972, 0.0031515846494585276, 0.007588347420096397, -0.006800877396017313, -0.01336312759667635, 0.021108286455273628, -0.02866254560649395, 0.005614559166133404, -0.035125937312841415, -0.0034208924043923616, 0.0038521261885762215, 0.0008518141694366932, -0.001113878097385168, -0.01984015293419361, 0.011958635412156582, -0.005287298932671547, 0.043716516345739365, 0.008713304996490479, -0.024476340040564537, 0.01970379613339901, 0.0013005186337977648, -0.001734309014864266, -0.031471528112888336, -0.0040225740522146225, -0.011454109102487564, 0.033080559223890305, 0.029180707409977913, 0.011290479451417923, 0.024367254227399826, 0.018831102177500725, 0.023821819573640823, -0.004343016538769007, -0.01157001405954361, -0.02474905736744404, 0.0003229990543331951, 0.0007043766090646386, 0.019131090492010117, -0.005253209266811609, 0.024339983239769936, 0.0035316837020218372, 0.00382144539617002, 0.0027783033438026905, -0.005935001187026501, -0.013144954107701778, 0.01587212271988392, 0.04126206412911415, 0.00269307941198349, 0.025935376062989235, 0.026194456964731216, -0.007152000442147255, 0.01974470354616642, -0.00811332743614912, 0.031035182997584343, 0.003940759226679802, -0.019976511597633362, -0.02654898911714554, 0.008092873729765415, -0.007192907854914665, -0.0057645533233881, -0.07390628010034561, -0.00396803067997098, -0.006084995809942484, 0.014549446292221546, -0.009320099838078022, 0.026044463738799095, 0.011583649553358555, 0.05184347927570343, 0.006684972904622555, 0.038562167435884476, 0.004213476087898016, -0.009176922962069511, 0.01592666655778885, -0.0012016587425023317, -0.03908032923936844, 0.017003897577524185, 0.011188209988176823, 0.025267219170928, 0.02344001643359661, -0.012967688031494617, 0.03583499789237976, 0.01799931563436985, 0.001387447235174477, 0.010397331789135933, 0.009790536016225815, -0.024735422804951668, -0.012244988232851028, 0.008092873729765415, 0.020781027153134346, 0.0161312036216259, 0.026289908215403557, 0.01959470845758915, 0.007070185616612434, -0.00046915828716009855, -0.007738341577351093, 0.020058326423168182, -0.014549446292221546, 0.002282299567013979, -0.05383431538939476, -0.01784932054579258, 0.0013337560230866075, -0.024353617802262306, -0.03638043254613876, -0.029998857527971268, -0.0026214912068098783, 0.0317169725894928, 0.012667699716985226, -0.0007576416246592999, 0.002665807493031025, 0.029480695724487305, -0.0023675234988331795, -0.015190331265330315, -0.03580772876739502, 0.029317066073417664, 0.024694515392184258, -0.014181278645992279, -0.02487177960574627, -0.013976740650832653, 0.005880457814782858, -0.00794969778507948, 0.045489177107810974, -0.02694442868232727, 0.025567209348082542, -0.0038657619152218103, -0.0032248771749436855, 0.006494070868939161, -0.0021868485491722822, 0.0357259139418602, 0.004677094519138336, -0.005713419057428837, 0.001519544399343431, -0.018599292263388634, -0.006344076711684465, -0.014863070100545883, 0.0010371764656156301, 0.03029884584248066, 0.009490547701716423, 0.01959470845758915, 0.026139913126826286, -0.0024237714242190123, -0.0133290383964777, 0.04788908734917641, -0.013158589601516724, -0.01157001405954361, -0.004193022381514311, 0.00406007282435894, 0.011167756281793118, 0.005682738032191992, -0.014085827395319939, -0.008638307452201843, 0.008379226550459862, 0.011038215830922127, 0.003025453072041273, 0.004612324293702841, -0.0006536683067679405, 0.06070677936077118, 0.02863527275621891, -0.03886215761303902, 0.012954052537679672, -0.04439831152558327, -0.0017445358680561185, 0.005215710494667292, -0.011672282591462135, 0.0005049523897469044, -2.9855042157578282e-05, -0.01264042779803276, -0.015463047660887241, 0.018285667523741722, -0.0023896817583590746, 0.012183627113699913, 0.018299303948879242, -0.019008366391062737, 0.007676980458199978, 0.03048974834382534, -0.05227982625365257, 0.00666111009195447, 0.004622551146894693, -0.0021408277098089457, 0.014985793270170689, -0.013431306928396225, 0.024039993062615395, 0.006698608864098787, -0.0030697695910930634, 0.024326346814632416, -0.01970379613339901, -0.013669934123754501, -0.007226997520774603, 0.0163357425481081, 0.020590124651789665, -0.029317066073417664, 0.027217146009206772, 0.0251308623701334, 0.0395984910428524, 0.01512215193361044, -0.01809476502239704, 0.011985907331109047, 0.003298169933259487, 0.008099691942334175, -0.01941744238138199, 0.010404149070382118, 0.02538994327187538, 0.00994734838604927, 0.012722242623567581, 0.01534032542258501, -0.03981666639447212, -0.019131090492010117, -0.01802658662199974, -0.04873450845479965, -0.002304457826539874, 0.034607771784067154, -0.012899508699774742, -0.008297411724925041, -0.019199268892407417, 0.015053972601890564, 0.006964507512748241, 0.00024097094137687236, -0.01448126696050167, 0.004554372280836105, 0.00377712887711823, 0.013390399515628815, -0.01077231764793396, -0.004141887649893761, 0.01775386929512024, -0.03948940709233284, 0.0041248430497944355, 0.011072305962443352, -0.005771371070295572, -0.013076774775981903, -0.012135901488363743, 3.965580617659725e-05, 0.015572134405374527, 0.020303772762417793, -0.03455322980880737, 0.02349456027150154, 0.009565545246005058, 0.015476683154702187, -0.034989576786756516, -0.002537971595302224, -0.035071391612291336, -0.0018800420220941305, -0.0038930336013436317, -0.020208321511745453, 0.011304114945232868, -0.00797696877270937, 0.03441687300801277, 0.009763265028595924, -0.005287298932671547, -0.0161312036216259, -0.015272146090865135, 0.010308698751032352, 0.03283511474728584, -0.0060952226631343365, -0.004046436864882708, 0.01161092147231102, -0.013035867363214493, 0.0013405740028247237, 0.008358772844076157, 0.0063679395243525505, 0.011597285978496075, -0.008283775299787521, -0.020221957936882973, 0.00580886984243989, 0.020931022241711617, 0.012913145124912262, 0.0031635158229619265, 0.011229118332266808, -0.020890112966299057, -0.01799931563436985, -0.0075133503414690495, -0.010499600321054459, 0.008522402495145798, 0.005624786019325256, 0.04058027267456055, -0.012960869818925858, -0.031007910147309303, 0.002023218432441354, -0.034716859459877014, 0.002462974516674876, 0.003426005830988288, -0.016949355602264404, 0.022062797099351883, -0.019022002816200256, -0.038698527961969376, -0.012224534526467323, -0.002197075402364135, 0.012394982390105724, 0.0014863070100545883, -0.008447405882179737, 0.00011324142542434856, -0.022103704512119293, 0.02503541111946106, -0.007247451227158308, -0.010540507733821869, -0.00047256724792532623, 0.00030531507218256593, -0.011870002374053001, -0.002713533118367195, 0.0068895104341208935, -0.003927123267203569, 0.01607666164636612, -0.03177151829004288, -0.0035521374084055424, 0.03580772876739502, -0.007792884949594736, 0.005253209266811609, 0.020999200642108917, 0.008467859588563442, -0.0021902574226260185, 0.006299760192632675, -0.0011598990531638265, 0.006316804792732, -0.00986553356051445, 0.03354417905211449, 0.009933712892234325, 0.036353159695863724, 0.0321260504424572, -0.006981552578508854, 0.036625877022743225, -0.009647360071539879, 0.007656526751816273, 0.007383809890598059, 0.006108858156949282, -0.010390513576567173, -0.005842959508299828, -0.015790307894349098, 0.002819210756570101, 0.0017394224414601922, -0.0016610162565484643, 0.017085712403059006, -0.0028533004224300385, 0.04243474826216698, 0.008679214864969254, 0.028253469616174698, -0.01774023286998272, -0.014126734808087349, -0.01619938388466835, -0.020821934565901756, -0.008338319137692451, 0.01799931563436985, -0.01795840635895729, 0.006811104249209166, 0.04510737210512161, 0.011597285978496075, -0.005679329391568899, 0.02123101055622101, -0.007663344498723745, -0.004707775544375181, 0.0047452738508582115, 0.02530812658369541, 0.005829323548823595, 0.027353504672646523, 0.008686033077538013, -0.05230709910392761, 0.012265441939234734, -0.014249457977712154, -0.019321991130709648, 0.029917042702436447, 0.010288245044648647, -0.012919962406158447, -0.038234908133745193, 0.01969015970826149, -0.020453765988349915, -0.01619938388466835, 0.028198925778269768, 0.0025226313155144453, -0.006504297722131014, -0.031007910147309303, -0.025580843910574913, -0.012354074977338314, 0.009797354228794575, 0.005461155902594328, -0.010247337631881237, 0.019199268892407417, -0.005900911521166563, -0.023971814662218094, -0.008406498469412327, -0.0011812050361186266, 0.049116313457489014, 0.02116283029317856, 0.031226083636283875, 0.006074768956750631, -0.0043736970983445644, -0.012681335210800171, -0.0100018922239542, 0.016826631501317024, 0.00035623644362203777, 0.0057645533233881, 0.0116995545104146, -0.017331158742308617, 0.0133290383964777, -0.007738341577351093, -0.01354039367288351, -0.023658189922571182, 0.003371462458744645, 0.03275329992175102, 0.02858073078095913, -0.014290365390479565, -0.00891784206032753, 0.004939584527164698, -0.020740119740366936, -0.0035555465146899223, 0.002982841106131673, -0.012347257696092129, 0.004752091597765684, -0.029835227876901627, -0.03583499789237976, 0.009333735331892967, 0.026385359466075897, 0.01422218605875969, 0.01327449455857277, -0.026467174291610718, -0.020276499912142754, -0.009701902978122234, 0.009797354228794575, 0.030926095321774483, -0.006023634225130081, 0.020835570991039276, -0.02691715769469738, -0.03188060596585274, 0.028089839965105057, -0.02533539943397045, 0.011972271837294102, -0.005300934426486492, -0.006221354007720947, 0.035180479288101196, -0.012872237712144852, -0.01353357546031475, -0.008011058904230595, -0.008631489239633083, -0.01599484495818615, 0.0067122443579137325, -0.020685575902462006, 0.015681222081184387, -0.019103817641735077, -0.008481495082378387, 0.01506760809570551, 0.0031464712228626013, -0.02847164310514927, -0.005866822320967913, -0.009708721190690994, -0.00491231307387352, -0.0017036283388733864, 0.00032044234103523195, 0.027844395488500595, -0.02882617525756359, -0.020658304914832115, -0.02523994818329811, -0.010526872240006924, -0.00490549486130476, 0.018244760110974312, -0.005075943190604448, 0.015790307894349098, 0.02359001152217388, -0.02533539943397045, 0.021912802010774612, -0.02364455536007881, -0.007349720224738121, -0.02147645503282547, 0.006374757271260023, 0.008986021392047405, 0.004782772623002529, 0.02165372110903263, -0.00023287466319743544, 0.0006869056960567832, -0.010820042341947556, -0.018831102177500725, 0.01798567920923233, 0.008761029690504074, -0.015435775741934776, -0.01943107880651951, -0.0024680879432708025, 0.023849092423915863, -0.003988484386354685, -0.01524487417191267, 0.012238170020282269, -0.052716173231601715, -0.005157758016139269, 0.029644325375556946, -0.013076774775981903, -0.025267219170928, -0.0005624786135740578, -0.003985075745731592, 0.01162455789744854, -0.01178818754851818, -0.0007636072696186602, -0.028253469616174698, -0.007254269439727068, -0.0062622614204883575, -0.0031822652090340853, -0.020521946251392365, 0.011631375178694725, -0.0008070715703070164, 0.012899508699774742, -0.006408846937119961, -0.01422218605875969, 0.013676752336323261, 0.022308241575956345, 0.009149651974439621, 0.0024425205774605274, -0.02326275035738945, 0.024367254227399826, -0.03218059241771698, 0.02341274544596672, 0.0032794205471873283, -0.010438239201903343, -0.01512215193361044, 0.02481723763048649, 0.016690272837877274, 0.0007883222424425185, -0.032862383872270584, -0.0007397445733658969, -0.035207752138376236, -0.02868981659412384, -0.006766787730157375, 0.025962648913264275, 0.024121809750795364, 0.012081358581781387, -0.0043736970983445644, 0.014767619781196117, -0.004813453182578087, 0.026099005714058876, -0.027639856562018394, 0.011972271837294102, 0.0029913634061813354, 0.04453466832637787, -0.015013065189123154, -0.013035867363214493, -0.02896253392100334, -0.009640541858971119, 0.0016209610039368272, -0.0023726369254291058, 0.011010944843292236, 0.022826403379440308, -0.010397331789135933, -0.022321878001093864, -0.02703987993299961, -0.014617625623941422, 0.029535239562392235, -0.003899851581081748, -0.0045441449619829655, 0.006391802337020636, -0.00788833573460579, 0.012258624657988548, 0.031307898461818695, -0.03575318306684494, 0.003255557967349887, 0.00012250954750925303, -0.013656298629939556, 0.012681335210800171, -0.0019141316879540682, -0.022608229890465736, 0.005502063315361738, -0.0251308623701334, 0.011324568651616573, 0.01242225430905819, -0.0364077053964138, 0.02723078243434429, -0.02147645503282547, 0.008754212409257889, -0.02314002811908722, 0.0004084361426066607, -0.0287989042699337, -0.009442822076380253, 0.013308584690093994, 0.0067190625704824924, -0.006565659306943417, -0.021817350760102272, 0.029371609911322594, -0.029371609911322594, 0.003678268985822797, -0.007533804047852755, 0.03174424543976784, -0.024599064141511917, 0.019267449155449867, -0.018844736739993095, -0.022458236664533615, 0.04516191780567169, 0.012183627113699913, 0.002439111704006791, 0.025771746411919594, -0.04458921030163765, -0.018872009590268135, 0.016744816675782204, 0.001052516745403409, 0.015313053503632545, 0.004878223408013582, -0.007704252377152443, -0.004158932715654373, 0.02342638000845909, -0.008358772844076157, -0.009183741174638271, 0.18402935564517975, -0.012183627113699913, 0.006674746051430702, 0.029889771714806557, -0.01619938388466835, 0.0012519409647211432, 0.012033632956445217, -0.02514449693262577, -0.014808527193963528, 0.003212945768609643, -0.02847164310514927, 0.010615505278110504, -0.032862383872270584, 0.015803944319486618, -0.020249228924512863, -0.00889057107269764, -0.020671939477324486, -0.043634701520204544, 0.0026436494663357735, 0.003725994611158967, -0.0036953138187527657, -0.022676410153508186, -0.031198812648653984, -0.009879169054329395, 0.027367139235138893, -0.0031106770038604736, 0.018640199676156044, -0.007731523830443621, 0.01516305934637785, -0.01810840144753456, -0.040116652846336365, 0.010588233359158039, -0.008992839604616165, 0.00401575630530715, -0.022294605150818825, -0.013594936579465866, 0.001617552014067769, 0.009660995565354824, 0.020835570991039276, -0.031444258987903595, -0.01081322506070137, -0.031580615788698196, -0.020371951162815094, -0.002197075402364135, -0.027980752289295197, 0.022117339074611664, -0.017003897577524185, -0.013479032553732395, -0.007329266518354416, 0.01591303013265133, -0.024612698704004288, -0.021176466718316078, 0.002652171766385436, 0.00679405964910984, -0.015503955073654652, 0.007376991678029299, 0.017440244555473328, 0.022349148988723755, 0.01603575237095356, 0.03168970346450806, -0.0035964539274573326, 0.034935034811496735, -0.014235821552574635, 0.010656412690877914, -0.03046247735619545, 0.008726940490305424, -0.015040336176753044, -0.0006165958475321531, -0.008011058904230595, -0.01757660321891308, 0.006207718048244715, -0.031062453985214233, -0.022758224979043007, 0.00589750288054347, -0.025880832225084305, -0.009790536016225815, 0.015640312805771828, -0.0033441907726228237, 0.005938410293310881, 0.018490204587578773, -0.0076156193390488625, -0.010860949754714966, -0.017644783481955528, 0.029917042702436447, -0.04472557082772255, -0.034635044634342194, 0.015544862486422062, -0.03190787509083748, -0.009592816233634949, -0.009211013093590736, -0.01358811929821968, -0.0045441449619829655, 0.0021374186035245657, 0.018272031098604202, 0.008147417567670345, 0.018490204587578773, -0.005638421513140202, 0.029562510550022125, 0.007301994599401951, 0.009170105680823326, -0.02877163141965866, 0.04810725897550583, -0.006855420768260956, 0.005099806003272533, 0.00245274743065238, -0.013390399515628815, -0.015708493068814278, 0.002471496816724539, 0.007663344498723745, -0.01596757397055626, 0.018353845924139023, -0.06834284961223602, -0.005321388132870197, 0.008147417567670345, 0.01434490829706192, 0.006344076711684465, 0.0005637569702230394, 0.010485964827239513, -0.005174803081899881, 0.005052080377936363, 0.027503497898578644, -0.010199612006545067, 0.0013695501256734133, 0.010158704593777657, 0.022335512563586235, -0.011672282591462135, -0.029126163572072983, 0.010240519419312477, 0.0013115977635607123, -0.020862841978669167, 0.04777999967336655, -0.05159803479909897, -0.014522174373269081, 0.00973599310964346, 0.0002469366299919784, -0.004942993633449078, 0.000681792211253196, -0.026330815628170967, -0.008665579371154308, 5.454337951960042e-05, -0.010151886381208897, 0.01583121530711651, 0.010158704593777657, -0.00011281530896667391, 0.01599484495818615, -0.020167414098978043, -0.003644179552793503, 0.006552023347467184, 0.018572019413113594, -0.003940759226679802, 0.0067122443579137325, -0.01416764222085476, 0.0037703111302107573, -0.03913487493991852, 0.01528578158468008, -0.031335171312093735, 0.017153892666101456, -0.03526229411363602, 0.016758453100919724, 0.0058156875893473625, -0.04060754552483559, 0.0011863184627145529, -0.0026794434525072575, -0.009879169054329395, -0.03215332329273224, -0.03392598032951355, -0.17050260305404663, -0.00537934061139822, 0.005307752639055252, -0.034989576786756516, 0.015272146090865135, -0.007138364482671022, 0.04799817129969597, -0.006446345709264278, -0.00816105306148529, -0.005478200502693653, 0.00179311353713274, -0.004711184184998274, 0.0013277903199195862, -0.03414415568113327, -0.025812653824687004, -0.01528578158468008, -0.0031311307102441788, 0.01637664996087551, 0.02496723085641861, 0.03209877759218216, 0.03048974834382534, -0.03378962352871895, 0.018272031098604202, 0.008740575984120369, -0.0026351269334554672, -0.020303772762417793, -0.006603157613426447, 0.01958107203245163, -0.010547325946390629, -0.042216572910547256, -0.0004031096468679607, 0.01520396675914526, 0.01621301844716072, 0.000935759802814573, -0.012974506244063377, 0.028253469616174698, 0.03730767220258713, -0.018831102177500725, 0.009088289923965931, 0.013622208498418331, 0.003040793351829052, 0.015490319579839706, -0.019199268892407417, -0.0004465739184524864, -0.005171393975615501, 0.016581187024712563, -0.003192492062225938, -0.005972499959170818, -0.018244760110974312, -0.020603761076927185, 0.014099462889134884, -0.014863070100545883, 0.010451874695718288, 0.007240633480250835, 0.043989233672618866, 0.0033237370662391186, -0.0016269267071038485, 0.010615505278110504, -0.005836141295731068, 0.004227111581712961, 0.010792771354317665, -0.0029453423339873552, -0.016635730862617493, 0.01806749403476715, 0.0005573651287704706, -0.009606452658772469, -0.015763036906719208, 0.01948562264442444, -0.04903449863195419, 0.01787659153342247, 0.006112267263233662, 0.010526872240006924, 0.017099348828196526, 0.008945113979279995, 0.00882920902222395, 0.024203624576330185, 0.009136015549302101, 0.00802469439804554, 0.006214536260813475, -0.03968030586838722, -0.01592666655778885, 0.047480009496212006, 0.0005718532484024763, -0.003838490229099989, 0.036653149873018265, -0.01969015970826149, -0.008597400039434433, -0.03013521619141102, 0.006504297722131014, -0.02517176978290081, 0.025703566148877144, -0.043961964547634125, -0.0052941166795790195, -0.0034174835309386253, 0.02849891595542431, 0.008686033077538013, -0.015490319579839706, -0.018517477437853813, 0.019103817641735077, -0.027558041736483574, 0.005604332312941551, 0.0019737884867936373, 0.004840724635869265, -0.006882692687213421, 0.034716859459877014, 0.018531112000346184, -0.004080526530742645, -0.0026197866536676884, 0.018912917003035545, 0.0031890831887722015, 0.0021698037162423134, -0.011870002374053001, 0.031171539798378944, 0.045380089432001114, 0.004581643734127283, 0.020303772762417793, -0.005873640067875385, -0.03057156316936016, 0.014822162687778473, -0.006327031645923853, 0.023889999836683273, 0.0032248771749436855, 0.01596757397055626, 0.016594823449850082, -0.014563081786036491, -0.02334456518292427, -0.10074161738157272, -0.01963561587035656, 0.00452369125559926, 0.01804022304713726, 0.004830497782677412, 0.0043702879920601845, -0.021817350760102272, 0.013001778163015842, -0.014658533036708832, 0.018749285489320755, -0.029535239562392235, 0.00010663656576070935, -0.020903749391436577, -0.0058497772552073, -0.0017811822472140193, -0.001953334780409932, -0.01963561587035656, 0.0061634015291929245, -0.03048974834382534, 0.018872009590268135, -0.000340896105626598, -0.004850951489061117, 0.0036203167401254177, -0.0027800078969448805, -0.00906101893633604, -0.005941819399595261, -0.01964925229549408, 0.032944198697805405, 0.005710009951144457, 0.016390284523367882, 0.014658533036708832, -0.004148705862462521, 0.01063595898449421, 0.024094536900520325, -0.026344452053308487, 0.028308013454079628, -0.0016456759767606854, -0.018981095403432846, 0.03758038580417633, -0.005692964885383844, 0.008897388353943825, -0.020440131425857544, -0.023740004748106003, -0.009599634446203709, 0.0031839697621762753, -0.014413087628781796, -0.02654898911714554, 0.0043702879920601845, -0.023930907249450684, -0.018953824415802956, -0.004690730478614569, -0.020958293229341507, -0.014726712368428707, -0.00406007282435894, 0.03943486139178276, 0.00529070757329464, 0.007840611040592194, 9.198868792736903e-05, 0.001869815168902278, -0.0303261186927557, 0.003927123267203569, -0.0033953252714127302, -0.00760198337957263, 0.004210066981613636, 0.031498800963163376, 0.004789590369910002, -0.021899165585637093, -0.0003700853558257222, 0.04142569750547409, -0.03954394906759262, 0.014126734808087349, 0.010513235814869404, -0.019076546654105186, 0.036653149873018265, -0.01348584983497858, 0.025362670421600342, -0.023780912160873413, 0.01254497654736042, 0.010574597865343094, -0.0053963856771588326, -0.013758567161858082, 0.010110978968441486, -0.009279192425310612, -0.01798567920923233, 0.013206315226852894, 0.021980982273817062, 0.018912917003035545, 0.010970036499202251, -0.005188439041376114, -0.034989576786756516, 0.0010959809878841043, 0.011310933157801628, 0.03929850459098816, -0.022117339074611664, -0.005478200502693653, 0.006773605942726135, -0.019321991130709648, -0.013342673890292645, -0.015517591498792171, 0.010260973125696182, -0.02882617525756359, -0.024571791291236877, -0.028280742466449738, 0.029262522235512733, -0.0196628887206316, -0.007267904933542013, -0.002616377780213952, -0.010342787951231003, 0.0042237029410898685, -0.02353546768426895, 0.010779134929180145, -0.021858258172869682, -0.01247679814696312, 0.001888564438559115, -0.004694139584898949, 9.73684509517625e-05, 0.0060645416378974915, -0.03168970346450806, 0.020508309826254845, -0.011985907331109047, 0.03166243061423302, 0.027517134323716164, -0.026521718129515648, 0.01819021627306938, 0.005474791396409273, 0.005263436120003462, 0.008808755315840244, -0.021135559305548668, 0.005525926128029823, 0.022935491055250168, 0.0016405625501647592, -0.02348092384636402, 0.0013661411358043551, -0.01341085322201252, 0.0025089953560382128, 0.0325351245701313, 0.024558156728744507, 0.02364455536007881, 0.017140256240963936, -0.00198742444626987, 0.024530883878469467, -0.0010243927827104926, 0.006961098872125149, -0.01345857884734869, 0.02123101055622101, 0.00010882042988669127, -0.03038066253066063, -0.012619974091649055, -0.013431306928396225, 0.014004012569785118, 0.009183741174638271, 0.015053972601890564, 0.03215332329273224, 0.01604938879609108, -0.008549674414098263, -0.022076431661844254, 0.022485507652163506, -0.025621751323342323, 0.024626335129141808, -0.034771405160427094, -0.02168099209666252, -0.008338319137692451, -0.008808755315840244, 0.010049617849290371, 0.006650883238762617, -0.012313167564570904, -0.015790307894349098, -0.01603575237095356, -0.01062232255935669, 0.006153174676001072, 0.012149537913501263, 0.0005594957619905472, 0.003294760826975107, -0.01790386438369751, -0.006582703907042742, -0.011781369335949421, 0.027544405311346054, 0.006309987045824528, -0.0035998630337417126, -0.014494902454316616, -0.020153777673840523, 0.023889999836683273, 0.03013521619141102, -0.001441138330847025, -0.011938181705772877, -0.001735161175020039, 0.034798674285411835, -0.016513008624315262, -0.00801787618547678, 0.004735046997666359, -0.003524865722283721, -0.0063406676054000854, 0.0010056435130536556, 0.004325971473008394, -0.0019243585411459208, 0.008045148104429245, 0.015040336176753044, 0.05699783191084862, -0.0003538927703630179, 0.01079958863556385, 0.003920305520296097, 0.0007337788701988757, -0.003451573196798563, 0.02522631175816059, -0.020071962848305702, 0.005628194659948349, -0.01790386438369751, -0.007574711460620165, -0.002123782876878977, -0.027912573888897896, -0.04289836809039116, 0.02686261385679245, 0.018244760110974312, 0.01506760809570551, 0.005856595002114773, -0.00198742444626987, -0.008365591056644917, -0.013138135895133018, -0.019376534968614578, -0.022171882912516594, -0.03373507782816887, 0.002805575029924512, -0.0023521832190454006, 0.006500889081507921, 0.025417214259505272, 0.0038078096695244312, 0.03207150474190712, 0.027312597259879112, 0.012756332755088806, -0.014658533036708832, -0.009531455114483833, 0.0033441907726228237, -0.00807923823595047, -0.027380775660276413, -0.01969015970826149, -0.028362557291984558, -0.0013686978491023183, -0.016553916037082672, 0.007029277738183737, -0.007997422479093075, -0.019444715231657028, 0.0786515548825264, 0.019117454066872597, -0.030844280496239662, 0.012319985777139664, -0.00335271330550313, 0.021980982273817062, 0.03624407574534416, -0.004175977315753698, -0.00801787618547678, -0.031062453985214233, 0.027667129412293434, 0.00024949334328994155, 0.005948637146502733, -0.03790764883160591, 0.005863413214683533, 0.00623498996719718, -0.007526986300945282, 0.02868981659412384, -0.010990491136908531, -0.009633724577724934, 0.01993560418486595, 0.01062914077192545, 0.00679405964910984, -0.02660353295505047, -0.007915607653558254, -0.019131090492010117, -0.016663001850247383, -0.01607666164636612, -0.020821934565901756, -0.0160630252212286, -0.0016652775229886174, 0.01077231764793396, -0.042025674134492874, -0.01075868122279644, 0.007833792828023434, 0.015258509665727615, -0.0038282633759081364, 0.0008109066402539611, 0.009920076467096806, 0.005164576228708029, -0.030898824334144592, 0.020590124651789665, -0.038643982261419296, -0.06910645961761475, -0.012354074977338314, 0.003937350120395422, 0.00542706623673439, -0.016703909263014793, -0.04968901723623276], "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e": [0.023168524727225304, 0.01532176323235035, -0.02466883510351181, -0.04251324385404587, -0.007255930453538895, 0.004842819180339575, -0.00037072127452120185, 0.0071762679144740105, -0.023102138191461563, -0.022956090047955513, 0.011066455394029617, 0.003003941848874092, -0.00884254276752472, 0.011936104856431484, -0.003604730125516653, 0.014126825146377087, 0.026793168857693672, -0.008324735797941685, -0.005825323518365622, 0.0002474932698532939, 0.0027749119326472282, -0.0032445890828967094, 0.019092457368969917, -0.0032628451008349657, -0.027563240379095078, 0.019185395911335945, 0.026474518701434135, -0.02828020416200161, -0.0025840539019554853, -0.006721527315676212, 0.020486552268266678, 0.010887214913964272, -0.02505386993288994, -0.0011783418012782931, -0.028041215613484383, -0.012606597505509853, -0.004670216701924801, -0.011245695874094963, -0.0004364843771327287, -0.011112925596535206, 0.023035753518342972, 0.005609571002423763, -0.014219764620065689, -0.01611838862299919, 0.010940322652459145, 0.019411107525229454, -0.00994454137980938, -0.03194468095898628, -0.010030842386186123, -0.0010198465315625072, 0.010170252062380314, 0.052550725638866425, -0.013901114463806152, -0.013443054631352425, -0.016290990635752678, -0.00012478390999604017, -0.023978427052497864, 0.011902912519872189, 0.006937279831618071, -0.021681489422917366, 0.004630385432392359, 0.015879400074481964, -0.009028421714901924, -0.020433442667126656, -0.010621672496199608, 0.01574663072824478, -0.0011899592354893684, 0.009114722721278667, -0.03244921192526817, -0.008417675271630287, 0.026474518701434135, 0.030298322439193726, -0.01597234047949314, 0.025863774120807648, 0.01597234047949314, 0.001521886559203267, -0.021296454593539238, 0.0007771247182972729, -0.006323214620351791, -0.008623470552265644, 0.0026919301599264145, -0.0100507577881217, -0.010156974196434021, 0.01568024419248104, -0.008218519389629364, -0.009194385260343552, 0.017645254731178284, 0.024137752130627632, -0.011717032641172409, -0.012082152999937534, -0.011916189454495907, 0.011079732328653336, 0.01380817499011755, 0.030032780021429062, -0.005367264151573181, 0.0375741682946682, 0.0014023927506059408, 0.018003735691308975, 0.009433372877538204, -0.003813844406977296, -0.009513035416603088, 0.008643385954201221, -0.0070036654360592365, -0.004577277228236198, -0.007455086801201105, 0.0022819999139755964, 0.017034508287906647, 0.004228753503412008, 0.010681419633328915, 0.0019716480746865273, -0.015295208431780338, 0.04617772251367569, 0.012141900137066841, -0.01034949254244566, 0.005154830403625965, -0.03101528435945511, 0.003126754891127348, -0.02878473326563835, -0.010542009957134724, 0.012341056019067764, 0.006764677818864584, 0.011531153693795204, -0.0010339535074308515, 0.00950639694929123, 0.0043814401142299175, -0.001680381828919053, -0.020592767745256424, 0.008145495317876339, -0.006157251074910164, -0.008935482241213322, 0.046496372669935226, 0.011086370795965195, -0.0062568290159106255, -0.0011683839838951826, -0.023580113425850868, 0.005914944224059582, -0.028917504474520683, -0.004162367898970842, -0.01211534533649683, -0.04070756211876869, 0.02350045181810856, 0.0035018327180296183, 0.0011874698102474213, -0.005410414654761553, -0.0014936727238819003, 0.006449346896260977, 0.020486552268266678, 0.006502455100417137, 0.0062236362136900425, 0.018468433991074562, -0.0009808450704440475, 0.012765922583639622, 0.0038072059396654367, -0.0103428540751338, 0.0212699007242918, 0.01641048491001129, -0.009406819008290768, -0.00045930437045171857, 0.03709619119763374, 0.012639790773391724, 0.02011479251086712, 0.02526630461215973, 0.003408893011510372, 0.008636747486889362, -0.0039333379827439785, 0.026925940066576004, 0.016954844817519188, 0.003591453190892935, 0.019424384459853172, 0.022557778283953667, -0.014047162607312202, 0.019650094211101532, -0.030377984046936035, 0.0036545193288475275, -0.002129313535988331, -0.010707973502576351, 0.013861282728612423, 0.0019152204040437937, -0.02931581623852253, -0.01461807731539011, 0.01296507939696312, 0.009440011344850063, 0.026235532015562057, 0.024695388972759247, -0.01730004884302616, 0.0036943505983799696, 0.02334112673997879, 0.003800567239522934, 0.0011028284206986427, 0.00784012209624052, 0.010986792854964733, 0.036857206374406815, 0.002803125884383917, -0.0031284145079553127, -0.6500463485717773, -0.013164236210286617, -0.015733351930975914, -0.032953739166259766, 0.013954222202301025, 0.005619528703391552, 0.016835350543260574, 0.00011513727076817304, -0.013011549599468708, 0.031254272907972336, -0.008324735797941685, 0.0037043082993477583, 0.022650716826319695, -0.024801606312394142, -0.006193763110786676, -0.030165551230311394, -0.010362769477069378, -0.029767237603664398, -0.020340504124760628, -0.004152410198003054, 0.005297559313476086, 0.006137335207313299, -0.021840814501047134, -0.008577000349760056, -0.004700090270489454, 0.02423069067299366, 0.01783113367855549, 0.012141900137066841, 0.015613858588039875, 0.01818961463868618, -0.03441422060132027, -0.01362229511141777, -0.0006128207314759493, -0.005812046583741903, 0.04320365563035011, -0.009566144086420536, 0.014392366632819176, 0.003973169717937708, 0.03167913854122162, 0.04498278349637985, -0.01826927810907364, -0.008955397643148899, 0.01670258119702339, 0.029289262369275093, 0.020128069445490837, -0.01436581276357174, -0.0016546574188396335, 0.0051614693365991116, -0.002720144111663103, -0.015016390010714531, -0.002769933082163334, 0.010681419633328915, -0.0025409033987671137, -0.015268654562532902, 0.0071762679144740105, -0.01826927810907364, 0.04670880734920502, -0.023593390360474586, 0.006568840704858303, -0.010442432016134262, 0.0198094192892313, 0.010395961813628674, 0.0028811288066208363, -0.01115275640040636, -0.011843165382742882, 0.015401425771415234, -0.02055293694138527, 0.009486481547355652, -0.00532079441472888, -0.015096052549779415, -0.011391744017601013, 0.041636958718299866, -0.019265059381723404, -0.02636830322444439, 0.0006750571192242205, 0.016662748530507088, 0.017924072220921516, -0.0062236362136900425, -0.004198879934847355, 0.0321040078997612, 0.0075081950053572655, -0.021774429827928543, -0.00130779342725873, -0.002268722979351878, 0.04410649463534355, 0.008742964826524258, -0.01613166555762291, 0.019026070833206177, -0.001394094550050795, 0.006588756572455168, 0.0060311187990009785, 0.005563101265579462, -0.017100892961025238, -0.03651199862360954, -0.011458129622042179, 0.02084503322839737, -0.007023581303656101, -0.008477422408759594, -0.01655653305351734, -0.03513118252158165, -0.00787995383143425, -0.018733974546194077, -0.02460245043039322, 0.002809764351695776, 0.01805684342980385, 0.025943435728549957, 0.003750778269022703, 0.02259760908782482, 0.05021395906805992, -0.027151651680469513, -0.006253509782254696, -0.017924072220921516, 0.005908305291086435, 0.040787223726511, -0.004862734582275152, -0.016450315713882446, -0.0004373141855467111, 0.004507572390139103, 0.010143697261810303, -0.004842819180339575, 0.00880271103233099, 0.009552867151796818, -0.015706798061728477, 0.00798617023974657, 0.031997788697481155, 0.005679275840520859, -0.01101334672421217, -0.01856137253344059, -0.004368162713944912, -0.004550722893327475, 0.011982575058937073, -0.002107738284394145, 0.016330821439623833, -0.002547541866078973, 0.00406942842528224, -0.003963211551308632, 0.021323008462786674, -0.0182028915733099, 0.009068253450095654, -0.03027176670730114, -0.008477422408759594, -0.0028529148548841476, 0.012035682797431946, -0.0021857412066310644, -0.022956090047955513, -0.010097227990627289, -0.016596363857388496, -0.02136283926665783, 0.0010654865764081478, 0.00839775986969471, -0.005417053122073412, -0.00015362008707597852, -0.0015915912808850408, 0.027642903849482536, 0.002278680680319667, -0.01115939486771822, 0.013018188066780567, -0.01155770756304264, -0.03868944197893143, -0.0019716480746865273, -0.009293964132666588, 0.02230551280081272, -0.03467976301908493, 0.007972893305122852, 0.004175645299255848, -0.013980777002871037, -0.011942743323743343, 0.02607620693743229, -0.03144014999270439, -0.03661821782588959, 0.0016413803678005934, 0.0030885832384228706, 0.007196183316409588, -0.009632529690861702, 0.010814190842211246, 0.010993431322276592, -0.0026255447883158922, 0.00369103136472404, 0.0007758800056762993, -0.013927668333053589, 0.0018687505507841706, -0.0011575963580980897, 0.017950627952814102, -0.02024756371974945, 0.0010040800552815199, -0.0016895098378881812, 0.022438284009695053, 0.019039347767829895, 0.0011642349418252707, 0.022053247317671776, 7.432058919221163e-05, 0.039671946316957474, -0.01870742067694664, 0.0023882167879492044, -0.003827121574431658, 0.02554512396454811, -0.007800290826708078, 0.02849263697862625, 0.012135260738432407, 0.050479501485824585, 0.020566213876008987, -0.020340504124760628, -0.02865196205675602, -0.012360971421003342, 0.01692829094827175, -0.02526630461215973, 0.003760735969990492, -0.01752576045691967, 0.030882513150572777, -0.002164165722206235, -0.0003738330851774663, 0.010064034722745419, -0.01141829788684845, -0.038848768919706345, 0.03749450668692589, 0.03337860852479935, -0.01759214513003826, 0.005500034894794226, -0.0025807346682995558, -0.015852846205234528, 0.014246318489313126, 0.018587928265333176, 0.02348717488348484, 0.00024043982557486743, 0.01215517707169056, 0.007083327975124121, -0.00587511295452714, 0.00016399282321799546, -0.023885486647486687, -0.054595399647951126, 0.0007007814710959792, -0.002379918470978737, -0.007229376118630171, 0.008889012038707733, 0.010004288516938686, 0.02055293694138527, 0.022624162957072258, -0.018003735691308975, 0.05106369033455849, -0.019902359694242477, -0.0103428540751338, 0.01922522857785225, -0.0006086716311983764, -0.03242265805602074, 0.015003113076090813, 0.01626443676650524, 0.026567459106445312, 0.015441256575286388, -0.011285527609288692, 0.01834893971681595, -0.007760459557175636, 0.003916741814464331, -0.021097296848893166, 6.047300121281296e-05, 0.019411107525229454, 0.008855819702148438, 0.006293341051787138, 0.0013617316726595163, 0.01753903739154339, 0.010475624352693558, -0.0044146329164505005, -0.013994053937494755, 0.018322385847568512, -0.011756864376366138, 0.015587304718792439, 0.0037740131374448538, -0.0046237469650805, -0.027510132640600204, -0.01200912892818451, -0.0014090313343331218, -0.03964539244771004, -0.0195173230022192, -0.005360625684261322, 0.008596916683018208, 0.038184914737939835, 0.008596916683018208, -0.0024147708900272846, 0.009114722721278667, 0.02230551280081272, 0.00787995383143425, -0.01804356649518013, -0.01929161325097084, -0.008922205306589603, 0.04060134291648865, 0.0026238851714879274, -0.012281308881938457, -0.023991703987121582, -0.011232418939471245, -0.0015783142298460007, 0.010382684879004955, -0.0012887076009064913, 0.004311735276132822, 0.0005530738271772861, -0.007833483628928661, -0.0026620568241924047, -0.013436416164040565, 0.022265681996941566, -0.005456884391605854, -0.020712262019515038, 0.012653067708015442, 0.00613401597365737, -0.0019882444757968187, -0.03783971071243286, -0.00979849323630333, 0.04368162900209427, -0.010761082172393799, 0.007906507700681686, -0.00979185476899147, -0.002829679986461997, -0.042300812900066376, -0.0014164996100589633, -0.01417993288487196, -0.01702123135328293, -0.024788329377770424, 0.025173364207148552, -0.02099108137190342, 0.02348717488348484, 0.006658460944890976, 0.03343171626329422, -0.001054698950611055, -0.007076689507812262, -0.006250190548598766, -0.02024756371974945, 0.021110575646162033, 0.0569852739572525, 0.010654865764081478, -0.02630191668868065, 0.008052555844187737, -0.020592767745256424, -0.012593320570886135, 0.0041225366294384, -0.018508264794945717, 0.03027176670730114, -0.007415255531668663, -0.010243276134133339, 0.005427010823041201, 0.01958370953798294, -0.02518664114177227, -0.020486552268266678, 0.01686190627515316, 0.0013750087236985564, -0.012513658031821251, -0.00839112140238285, -0.029289262369275093, 0.006950557231903076, 0.004152410198003054, 0.02886439673602581, 0.017565591260790825, -0.013084572739899158, -0.00991134811192751, 0.030670080333948135, -0.0045839156955480576, -0.0023268102668225765, -0.013741789385676384, -0.013064657337963581, 0.012480465695261955, 0.026567459106445312, 0.023288017138838768, -0.027855336666107178, 0.012433995492756367, -0.010130420327186584, 0.020287394523620605, 0.006751400884240866, -0.019384553655982018, 0.02865196205675602, 0.028041215613484383, 0.012321140617132187, -0.005619528703391552, 0.002655418124049902, 0.01664947159588337, -0.012865501455962658, 0.014352535828948021, -0.02055293694138527, -0.020194455981254578, 0.000896203622687608, -0.017924072220921516, -0.023819101974368095, -0.010296383872628212, 0.01115275640040636, -0.010070673190057278, -0.008371206000447273, 0.014551691710948944, -0.0013094530440866947, -0.008709771558642387, -0.040840331465005875, -0.023752715438604355, 0.02549201436340809, -0.0022056568413972855, 0.013091212138533592, 0.000843510206323117, 0.005719107110053301, -0.00960597489029169, -0.031201163306832314, -0.003393956460058689, 0.011916189454495907, -0.01141165941953659, -0.04941733181476593, -0.020340504124760628, 0.01759214513003826, -0.006499135866761208, -0.001953392056748271, -0.017565591260790825, -0.007574580609798431, 0.016676025465130806, -0.020353781059384346, -0.05127612501382828, -0.002047991380095482, -0.026169145479798317, 0.0019650093745440245, 0.009931264445185661, 0.01886674575507641, 0.008384482935070992, -0.0006393748917616904, 0.006389600224792957, 0.005022059660404921, -0.003402254544198513, -0.005675956606864929, -0.011278889141976833, -0.009778577834367752, 0.029634466394782066, -0.0014903534902259707, 0.020061684772372246, 0.0024828161112964153, -0.01854809559881687, -0.004706728737801313, -0.0018953047692775726, -0.02246483787894249, -0.015866123139858246, -0.0044876569882035255, 0.0014339258195832372, -0.016583086922764778, 0.015600581653416157, -0.02894405834376812, -0.014604800380766392, 0.03343171626329422, -0.015706798061728477, 0.03704308345913887, 0.031626030802726746, 0.012792477384209633, 0.02481488324701786, -2.0525034415186383e-05, 0.017326604574918747, 0.02849263697862625, -0.01702123135328293, 0.006216997746378183, -0.0419556088745594, 0.0154678113758564, 0.025239750742912292, -0.04014992341399193, 0.024642281234264374, 0.010668142698705196, -0.012042321264743805, -0.020141346380114555, -0.010933684185147285, 0.004341608844697475, 0.01513588335365057, -0.03149326145648956, -0.009220940060913563, -0.012354332953691483, 0.02178770676255226, -0.008490699343383312, -0.002316852333024144, -0.01966337114572525, 0.0006169698317535222, 0.010336215607821941, -0.014445475302636623, 0.018322385847568512, -0.023128692060709, 0.005154830403625965, -0.03937985375523567, 0.00688417162746191, 0.00858363974839449, 0.012208284810185432, 0.020659154281020164, -0.0016994676552712917, 0.005048613995313644, 0.001398243592120707, 0.013423139229416847, 0.029183046892285347, -0.011690478771924973, -0.009718830697238445, -0.005533227697014809, 0.028253650292754173, 0.002552520716562867, 0.021230068057775497, -0.016596363857388496, 0.0121485386043787, 0.018136506900191307, -0.017114169895648956, 0.015799738466739655, -0.016543256118893623, -0.018654312938451767, 0.0023616624530404806, -0.006260148249566555, 0.022053247317671776, 0.01797718182206154, 0.031041838228702545, -0.020128069445490837, 0.013164236210286617, 0.02107074297964573, -2.1108500732225366e-05, 0.010475624352693558, -0.02076536975800991, -0.040787223726511, -0.0037076277658343315, 0.022491391748189926, -0.01702123135328293, 0.03027176670730114, -0.027749119326472282, -0.006924002896994352, 0.01788424141705036, 0.009400180540978909, 0.01350944023579359, 0.007388701196759939, 0.012613236904144287, -0.0023749396204948425, 0.024403292685747147, 0.025877051055431366, 0.027563240379095078, -0.021708043292164803, 0.014777402393519878, -0.025518568232655525, 0.016676025465130806, 0.01767180860042572, 0.005310836248099804, 0.045832518488168716, 0.004258627071976662, -0.024403292685747147, -0.0012007468612864614, 0.003860314143821597, -0.009267409332096577, -0.006817786023020744, 0.016184773296117783, -0.006097503937780857, -0.009001867845654488, -0.03688376024365425, -0.030218658968806267, -0.023075584322214127, 0.007388701196759939, 0.03313961997628212, 0.001629762933589518, 0.018614482134580612, -0.009267409332096577, -0.0399109348654747, 0.021004358306527138, -0.01943766139447689, 0.04397372528910637, -0.02076536975800991, 0.025067148730158806, 0.010548648424446583, 0.010130420327186584, -0.02165493555366993, 0.011053178459405899, 0.028917504474520683, 0.019570432603359222, 0.0347328707575798, 0.004424590617418289, -0.007680797018110752, -0.011577622964978218, -0.014591523446142673, 0.020592767745256424, -0.011497960425913334, -0.029262708500027657, -0.006864256225526333, 0.02077864669263363, 0.012480465695261955, -0.006621949374675751, 0.005005463492125273, -0.009021783247590065, 0.015706798061728477, 0.009831685572862625, -0.0031964597292244434, -0.01987580582499504, 0.009147915989160538, -0.017392989248037338, 0.0206857081502676, 0.008411036804318428, 0.018468433991074562, 0.015202268958091736, 0.0016355715924873948, -0.009127999655902386, -0.02709854207932949, -0.012719453312456608, 0.002023096662014723, -0.009194385260343552, 0.03189157322049141, -0.018388770520687103, -0.0082450732588768, 0.025531845167279243, 0.0011949382023885846, -0.005745660979300737, -0.016397207975387573, -0.004573957994580269, 0.028917504474520683, 0.005712468642741442, -0.0100507577881217, -0.010422516614198685, 0.03122771717607975, -0.012905332259833813, -0.010907130315899849, -0.009413457475602627, -0.004076066892594099, 0.006734804250299931, -0.029873454943299294, 0.020221009850502014, 0.007162990514189005, 0.011956020258367062, 0.007687435485422611, -0.01391439139842987, -0.005669317673891783, 0.004793029744178057, -0.02607620693743229, 0.0044478257186710835, -0.02231878973543644, 0.004955674055963755, -0.002472858177497983, 0.0019036029698327184, -0.000621118932031095, 0.006983750034123659, -0.021893922239542007, 0.01129880454391241, 0.03911431133747101, -0.012447272427380085, 0.021296454593539238, -0.015188992023468018, -0.007939700037240982, -0.026567459106445312, 0.027669457718729973, -0.02231878973543644, -0.0017326603410765529, 0.03927363455295563, -0.007700712885707617, -0.003179863328114152, -0.016463592648506165, -0.01090049184858799, -0.004003042820841074, -0.024549340829253197, -0.009108084253966808, -0.007255930453538895, -0.0005895858048461378, 0.018163060769438744, -0.014644631184637547, -0.020274117588996887, 0.023832378908991814, -0.007023581303656101, 0.005918263457715511, 0.021601827815175056, -0.007162990514189005, 0.02525302767753601, -0.018176337704062462, -0.016105111688375473, -0.002681972458958626, -0.03675098717212677, -0.02053966000676155, -0.007255930453538895, 0.006761358585208654, 0.027775675058364868, 0.007016942836344242, -0.028997166082262993, -0.00813221838325262, -0.014671185985207558, -0.014113548211753368, -0.02202669344842434, 0.008517254143953323, -0.006286702584475279, 0.014817233197391033, 0.016516700387001038, 0.007767098024487495, -0.012195007875561714, -0.005340709816664457, -0.010787636041641235, -0.01789751835167408, -0.058737851679325104, -0.006910725962370634, -0.02274365723133087, 0.052338290959596634, 0.028758179396390915, 0.005178065504878759, -0.014153379015624523, 0.0008190305670723319, -0.04293811321258545, -0.0035881339572370052, 0.019384553655982018, 0.01502966694533825, 0.004029597155749798, -0.0014015629421919584, 0.007242653053253889, 0.031041838228702545, -0.024204136803746223, 0.021084019914269447, -0.0052510895766317844, 0.00557969743385911, -0.0022521265782415867, 0.023739438503980637, -0.007972893305122852, -0.013648849911987782, 0.0012546851066872478, -0.025319412350654602, 0.012546851299703121, -0.020951248705387115, 0.011278889141976833, 0.014604800380766392, 0.013522717170417309, 0.005496715661138296, 0.003847037209197879, 0.014498583041131496, 0.0055597820319235325, 0.01542797964066267, -0.0031084988731890917, -0.016808796674013138, -0.01789751835167408, 0.025969989597797394, 0.0029939839150756598, -0.017353158444166183, -0.014392366632819176, -0.015547473914921284, -0.021097296848893166, 0.023327849805355072, -0.0034852363169193268, -0.00920102372765541, 0.0010298043489456177, -0.009373626671731472, 0.004457783419638872, -0.0054933964274823666, -0.0038569949101656675, 0.03659166395664215, 0.002821381902322173, -0.0052510895766317844, -0.009366987273097038, -0.01915884204208851, -0.007853399030864239, -0.00936034880578518, 0.005941498093307018, -0.0058186850510537624, 0.014750848524272442, -0.01988908275961876, 0.018601205199956894, -0.023912040516734123, 0.009771939367055893, -0.021747875958681107, 0.00607758853584528, -0.019862528890371323, 0.003906784113496542, 0.012971717864274979, -0.005264366511255503, -0.021336285397410393, -0.012573405168950558, 0.013701957650482655, -0.02172132022678852, -0.004939077887684107, 0.008145495317876339, -0.002924279309809208, 0.01833566278219223, 0.024509510025382042, 0.00162063492462039, -0.003355784807354212, -0.007255930453538895, -0.002574095968157053, -0.017127446830272675, 0.002278680680319667, 0.19331444799900055, 0.006983750034123659, 0.017645254731178284, 0.031201163306832314, -0.0051116799004375935, 0.02437673881649971, 0.01996874436736107, -0.004607150796800852, -0.019278336316347122, -0.005274324212223291, -0.004265265539288521, 0.0300593338906765, -0.012951802462339401, 0.002431367291137576, -0.00016316300025209785, -0.013635572046041489, 0.0040395548567175865, -0.031333934515714645, -0.019796142354607582, 0.0048793307505548, 0.003631284460425377, -0.00628006411716342, -0.03077629767358303, -0.008019362576305866, 0.020380334928631783, -0.009293964132666588, -0.033617593348026276, 0.021893922239542007, 0.03675098717212677, -0.008019362576305866, -0.00799280870705843, -0.0001576654613018036, 0.007926423102617264, 0.010429155081510544, -0.0402030311524868, -0.020287394523620605, 0.017273494973778725, -0.01877380721271038, 0.011650647036731243, -0.015268654562532902, 0.017485929653048515, 0.001180001418106258, -0.0062966602854430676, -0.021893922239542007, 0.017406266182661057, 0.03393624350428581, -0.018375493586063385, -0.003999723587185144, -0.01045570895075798, -0.014498583041131496, -0.013555909506976604, -0.008935482241213322, 0.001667104777880013, 0.014711016789078712, 0.01281903125345707, -0.004520849324762821, -0.006661780644208193, 0.01671585813164711, 0.021774429827928543, -0.0027384001296013594, -0.016224605962634087, 0.019357997924089432, -0.0010057396721094847, 0.012540212832391262, 0.0075480262748897076, 0.017193833366036415, -0.020738815888762474, -0.006983750034123659, -0.003591453190892935, -0.020712262019515038, -0.00482622254639864, -0.02165493555366993, -0.005466842092573643, 0.0007601134711876512, -0.012400803156197071, -0.0133700305595994, 0.019769588485360146, 0.012984994798898697, 0.00184551568236202, 0.004945716354995966, -0.018986240029335022, -0.013569187372922897, -0.01797718182206154, 0.0007094945758581161, 0.012918609194457531, -0.0404951274394989, 0.02011479251086712, -0.021084019914269447, -0.0025790748186409473, -0.0035117906518280506, -0.016184773296117783, 0.012865501455962658, 0.015706798061728477, -0.0016123367240652442, 0.016768965870141983, 0.031254272907972336, 0.007959616370499134, 0.021548718214035034, -0.00894875917583704, 0.02259760908782482, -0.0264479648321867, 0.051435451954603195, 0.023527005687355995, 0.008118941448628902, -0.008809349499642849, -0.0019583709072321653, 0.005914944224059582, -0.016689304262399673, 0.00738206272944808, -0.006240232847630978, 0.0106349503621459, -0.013396584428846836, -0.007826845161616802, -0.01781785674393177, 0.007939700037240982, -0.009712192229926586, -0.021668212488293648, -0.02570444904267788, 0.0020728858653455973, 0.0008011894533410668, -0.02069898508489132, -0.013044741936028004, -0.01773819327354431, 0.02563806250691414, 0.002504391362890601, 0.018468433991074562, -0.025731002911925316, 0.01922522857785225, -0.019862528890371323, -0.0063630458898842335, 0.02311541512608528, -0.04206182435154915, -0.005553143098950386, -0.023035753518342972, 0.003979808185249567, 0.004965632222592831, -0.012387526221573353, -0.01737971231341362, -0.021389393135905266, 0.012082152999937534, -0.021601827815175056, -0.009831685572862625, -0.010913768783211708, 0.015919232740998268, -0.013728512451052666, -0.030431091785430908, -0.013051380403339863, -0.0047465600073337555, 0.011371828615665436, -0.029183046892285347, -0.02306230738759041, 0.0035117906518280506, 0.0012961759930476546, -0.01768508553504944, -0.00010756518167909235, -0.01708761602640152, 0.002695249393582344, -0.026766614988446236, 0.02460245043039322, 0.0015119287418201566, -0.03651199862360954, 0.013887837529182434, 0.024575894698500633, 0.0059979259967803955, -0.011949381791055202, -0.02798810787498951, -0.16792865097522736, 0.004371482413262129, 0.004753198474645615, -0.027802228927612305, 0.015600581653416157, -0.005108360666781664, 0.027085265144705772, -0.002258765045553446, 0.0027384001296013594, -0.005370583385229111, 0.004633704666048288, -0.0038669528439641, -0.028598854318261147, -0.005446926690638065, -0.015268654562532902, 0.013555909506976604, 5.243413761490956e-05, 0.004384759347885847, 0.02306230738759041, -0.003125095274299383, 0.021694766357541084, -0.03101528435945511, 0.03831768408417702, 0.02254450134932995, 0.003993085119873285, 0.03130738064646721, -0.0041225366294384, 0.004514210857450962, -0.01818961463868618, -0.04986875504255295, -0.014976558275520802, 0.0069306413643062115, 0.009313879534602165, -0.02217274159193039, 0.0034586822148412466, -0.0080260019749403, -0.004839499481022358, -0.007342231459915638, -0.012095429934561253, 0.012858862988650799, -0.008304820396006107, 0.02570444904267788, 0.01436581276357174, -0.005101722199469805, 0.015188992023468018, 0.008862458169460297, 0.006963834166526794, -0.031997788697481155, 0.024429846554994583, -0.01929161325097084, 0.018840191885828972, -0.001717723673209548, -0.0034885555505752563, -0.009884794242680073, 0.010143697261810303, -0.01854809559881687, -0.021548718214035034, 0.01115275640040636, -0.0037441395688802004, 0.013967500068247318, 0.0042752232402563095, -0.01856137253344059, -0.01145149115473032, 0.0416635125875473, 0.03765382990241051, -0.017432820051908493, -0.01810995303094387, 0.02379254624247551, -0.0450890026986599, 0.0018173018470406532, -0.005802088882774115, -0.006326533854007721, 0.0064692627638578415, -0.008723048493266106, -0.007952977903187275, 0.02547873742878437, -0.013482886366546154, -0.005865154787898064, 0.0019351360388100147, -0.013648849911987782, 0.0003738330851774663, 0.009917986579239368, 0.009327156469225883, -0.016742412000894547, -0.011278889141976833, -0.01702123135328293, -0.011995851993560791, 0.0049258009530603886, 0.010150335729122162, -0.01321734394878149, 0.017047785222530365, -0.05066537857055664, -0.013901114463806152, 0.0017061062389984727, 0.0130779342725873, 0.012287947349250317, 0.01686190627515316, -0.04014992341399193, 0.009048337116837502, -0.004756517708301544, 0.02519991807639599, -0.01451186090707779, -0.02716492861509323, -0.011172671802341938, 0.028545746579766273, -0.010369407944381237, -0.0182028915733099, 0.0011542771244421601, 0.052391402423381805, 0.009672360494732857, -0.030510755255818367, 0.007455086801201105, 0.001779130194336176, 0.015149161219596863, 0.0010405919747427106, 0.035396724939346313, -0.012234839610755444, -0.018893299624323845, -0.004696771036833525, 0.0014895236818119884, 0.044079940766096115, 0.01019680593162775, 0.0006663440144620836, 0.025146810337901115, 0.007501556538045406, -0.01692829094827175, -0.10950944572687149, -0.03770693764090538, -0.01642376184463501, 0.009678998962044716, -0.001233109855093062, 0.006286702584475279, -0.005954775493592024, -0.007249291520565748, -0.0056560407392680645, 0.027324253693223, 0.008928843773901463, -0.03351137787103653, -0.0154678113758564, -0.024336908012628555, -0.016290990635752678, -0.01420648768544197, -0.005672636907547712, -0.015560750849545002, -0.005752299912273884, 0.02944858744740486, 0.02261088602244854, 0.006376322824507952, -0.01650342345237732, -0.009108084253966808, -0.015268654562532902, -0.0039432961493730545, -0.02688610926270485, 0.0036677964963018894, 0.005904986057430506, 0.02149561047554016, 0.010435793548822403, -0.0006418643752112985, -0.003481917083263397, -0.004965632222592831, 0.008696494624018669, -0.005566420499235392, -0.007348869927227497, -0.008059194311499596, 0.032130561769008636, -0.01487034186720848, 0.01582629233598709, -0.010030842386186123, 0.007780375424772501, -0.008955397643148899, 0.011166033335030079, 0.010927045717835426, -0.021761152893304825, 0.008815988898277283, -0.009924625977873802, -0.04081377759575844, -0.039061203598976135, -0.043628521263599396, -0.060862183570861816, -0.005134915001690388, 0.009426734410226345, -0.010787636041641235, -0.00728912279009819, -0.010774359107017517, -0.012679621577262878, 0.00028877673321403563, -0.017047785222530365, -0.006512413267046213, -0.02002185396850109, 0.014657908119261265, 0.014033885672688484, -0.021323008462786674, -0.022650716826319695, -0.033325497061014175, 0.010807552374899387, -0.018428603187203407, -0.006611991208046675, 0.0245891734957695, -0.035821590572595596, 0.01833566278219223, -0.018455157056450844, 0.022358620539307594, -0.016463592648506165, 0.008384482935070992, 0.0027732523158192635, 0.00950639694929123, -0.022106356918811798, -0.03776004537940025, -0.010993431322276592, -0.04110587388277054, 0.013994053937494755, 0.013874559663236141, 0.009021783247590065, 0.005539866164326668, 0.0062667871825397015, -0.020433442667126656, 0.0016878502210602164, 0.03205089643597603, 0.009486481547355652, 0.010548648424446583, -0.006744762416929007, 0.007853399030864239, -0.0061838049441576, -0.008955397643148899, 0.005370583385229111, 0.017260218039155006, -0.020579490810632706, -0.0015949105145409703, -0.048647262156009674, 0.015786461532115936, -0.009028421714901924, -0.021548718214035034, 0.015042943879961967, 0.00839112140238285, 0.010774359107017517, -0.011790056712925434, -0.007269207388162613, 0.016450315713882446, -0.027377361431717873, 0.0059282211586833, 0.008298181928694248, 0.00029188854387030005, -0.013243898749351501, -0.040096815675497055, 0.014286150224506855, 0.0003481087333057076, -0.01019680593162775, 0.019716480746865273, 0.020579490810632706, -0.024336908012628555, 0.017246941104531288, 0.025598231703042984, -0.015335040166974068, 0.0164901465177536, -0.0019284974550828338, 0.015162438154220581, -0.004089343827217817, -0.011849803850054741, -0.0019434342393651605, -0.012918609194457531, 0.0013600720558315516, 0.022132910788059235, -0.016848629340529442, 0.023978427052497864, 0.017512483522295952, 0.010688058100640774, 0.027483578771352768, 0.029767237603664398, 0.014193210750818253, -0.027855336666107178, 0.002116036368533969, -0.02180098369717598, -0.011663924902677536, -0.004540765192359686, -0.007727266754955053, 0.005367264151573181, 0.01256012823432684, -0.0009883134625852108, 0.05183376371860504, 0.009220940060913563, -0.021588550880551338, -0.03409557044506073, 0.00024915291578508914, -0.0030421135015785694, 0.014073716476559639, -0.010269830003380775, 0.0022421686444431543, -0.008351290598511696, 0.038769107311964035, -0.011776779778301716, 0.003833760041743517, 0.0026023099198937416, -0.00241311127319932, -0.02591688185930252, -0.030537309125065804, 0.030616972595453262, -0.004394717048853636, -0.006552244536578655, -0.009831685572862625, 0.011524515226483345, -0.011239057406783104, 0.012314502149820328, 0.02355355955660343, 0.021827537566423416, -0.011630731634795666, 0.010940322652459145, -0.012792477384209633, 0.03263508901000023, 0.024987485259771347, 0.003360763657838106, -0.008723048493266106, 0.027218036353588104, 0.02960791252553463, -0.005486757960170507, 0.014963281340897083, 0.016091834753751755, -0.0005966392927803099, 0.016915014013648033, 0.0005406265263445675, 0.021482333540916443, -0.014551691710948944, 0.0038437177427113056, 0.00839112140238285, 0.017791302874684334, -0.0032512275502085686, -0.003993085119873285, -0.0069306413643062115, 0.013496163301169872, 0.01670258119702339, -0.01046234741806984, 0.016808796674013138, 0.0032429294660687447, -0.026275362819433212, 0.013549271039664745, -0.013283729553222656, -0.02215946465730667, -0.008696494624018669, 0.022929536178708076, 0.01671585813164711, 0.022212572395801544, 0.01226803194731474, 0.0034985134843736887, -0.013150958344340324, -0.0009584400104358792, -0.020313948392868042, -0.01126561127603054, -0.024323631078004837, 0.010834106244146824, -0.00839112140238285, 0.011949381791055202, 0.04933767020702362, 0.0069704726338386536, 0.011663924902677536, 0.03409557044506073, 0.013688680715858936, -0.017207110300660133, -0.0003503907355479896, 0.03085595928132534, -0.00288942689076066, 0.014339257963001728, -0.005168107803910971, -0.009234216995537281, 0.006721527315676212, -0.031041838228702545, 0.003422170178964734, -0.009366987273097038, 0.013330199755728245, 0.05395809933543205, 0.013589102774858475, -0.006502455100417137, 0.011424937285482883, 0.0051515111699700356, -0.0023151927161961794, 0.02873162552714348, -0.0035350255202502012, -0.009752023033797741, -0.01730004884302616, 0.0037972480058670044, 0.009971095249056816, -0.0014654588885605335, -0.018149783834815025, -0.0006302469410002232, 0.009114722721278667, -0.023168524727225304, -0.0012339396635070443, -0.007906507700681686, -0.006731485016644001, 0.00193347642198205, 0.00898195244371891, 0.015959063544869423, 0.00021430054039228708, -0.012878778390586376, -0.0003271558089181781, 0.028917504474520683, 0.0020114793442189693, -0.012420718558132648, -0.01864103600382805, 0.013535994105041027, 0.008291543461382389, -0.03542327880859375, -0.02555840089917183, -0.0062966602854430676, 0.009997649118304253, -0.008610193617641926, -0.01472429372370243, 0.009074891917407513, -0.021854091435670853, 0.013489524833858013, -0.0001118180007324554, -0.019251782447099686, -0.049974970519542694, 0.006588756572455168, 0.003287739586085081, -0.016224605962634087, -0.008563723415136337, -0.0321040078997612], "efb2b508-2e2f-4b13-8294-bb36a71e2634": [-0.0003037537098862231, 0.01612052507698536, -0.005962204188108444, -0.018816132098436356, -0.011924408376216888, -0.0009237101185135543, 0.006533194798976183, 0.014301322400569916, 0.00393717922270298, -0.02236158587038517, -0.01524412166327238, -0.018975477665662766, -0.028629204258322716, 0.021750759333372116, 0.02189682610332966, 0.025216538459062576, 0.01585494913160801, 0.022706836462020874, 0.0008183091995306313, -0.0049994876608252525, 0.0026723688933998346, 0.003611847525462508, -0.007349844090640545, -0.002171092201024294, -0.031895801424980164, 0.00815985444933176, 0.0220030564814806, 0.0065796710550785065, 0.012853927910327911, -0.003930539824068546, 0.028071491047739983, 0.009162407368421555, -0.019041873514652252, -0.013876399956643581, -0.029691511765122414, 0.004518128931522369, -0.004445095546543598, -0.008544940501451492, -0.004654237534850836, 0.027938703075051308, 0.02682328037917614, -0.0016797747230157256, -0.011711946688592434, -0.004362102597951889, -0.01633298769593239, 0.0063539305701851845, -0.010536768473684788, -0.017992842942476273, -0.016651678830385208, 0.020701728761196136, 0.01989171840250492, 0.02939937636256218, -0.02828395366668701, -0.007495911791920662, -0.005182071588933468, 0.014580179005861282, -0.0036018884275108576, 0.025535231456160545, 0.00879723858088255, -0.02677016332745552, 0.010689475573599339, 0.012196624651551247, -0.0017411893932148814, -0.023556681349873543, -0.01695709303021431, 0.00790091697126627, 0.033675167709589005, 0.011167514137923717, 0.007064349018037319, 0.022653719410300255, 0.04063328355550766, 0.012229821644723415, -0.007044430822134018, 0.035613879561424255, 0.021232882514595985, -0.010052090510725975, -0.008166493847966194, -0.016040852293372154, -0.01973237283527851, 0.01314606238156557, -0.013849842362105846, -0.026079664006829262, -0.011406533420085907, 0.013265572488307953, 0.023609798401594162, -0.004043410066515207, 0.014327880926430225, 0.01621347665786743, 0.017820218577980995, -0.01969253644347191, 0.009361590258777142, 0.003128829412162304, -0.004265830852091312, 0.019148103892803192, -0.007290089502930641, 0.03500305116176605, -0.018391208723187447, 0.03978343680500984, 0.005344737786799669, -0.021750759333372116, 0.0028350348584353924, 0.01811235398054123, -0.018616950139403343, -0.0009286896674893796, -0.010244634002447128, -0.005819456651806831, 0.004355463199317455, 0.0001613172935321927, 0.004491571336984634, -0.007867719046771526, -0.026013270020484924, 0.030621031299233437, 0.00876404158771038, -0.01493870746344328, -0.009248719550669193, -0.01978548802435398, 0.004501530434936285, -0.02362307719886303, 0.007681815419346094, 0.01627987250685692, 0.01969253644347191, 0.005653470754623413, 0.012123591266572475, -0.0043222662061452866, 0.01057660486549139, 0.003386107040569186, -0.0010457095922902226, -0.0036782417446374893, 0.017342180013656616, -0.02876199223101139, 0.03160366788506508, -0.010828902944922447, -0.024008162319660187, -0.007011233363300562, -0.001591802341863513, -0.013165981508791447, 0.01722267083823681, -0.007495911791920662, -0.0032317403238266706, -0.0346578024327755, 0.0017113119829446077, -0.01325893308967352, -0.0029777823947370052, -0.017713988199830055, 0.008830436505377293, 0.007343204692006111, 0.018178747966885567, 0.015430024825036526, 0.009368229657411575, 0.00928855687379837, 0.01590806432068348, 0.019148103892803192, -0.005148874595761299, -0.03186924383044243, 0.017050044611096382, -0.0009411385981366038, -0.0070577096194028854, 0.0030591152608394623, 0.01685086265206337, 0.007549026980996132, 0.010742590762674809, 0.026119500398635864, 0.0018308216240257025, 0.00403013126924634, 0.00031620264053344727, 0.019918277859687805, 0.005205309484153986, -0.006164706777781248, 0.0054775262251496315, 0.02252093143761158, -0.00928855687379837, 0.004096525721251965, -0.0250439140945673, -0.008936666883528233, -0.004269150551408529, -0.017302343621850014, 0.016001015901565552, 0.003774513490498066, -0.05279671400785446, -0.0330643393099308, 0.0206751711666584, 0.002891469979658723, 0.0236761923879385, 0.028204280883073807, -0.01706332340836525, -0.017355458810925484, 0.015177726745605469, 0.005992081481963396, -0.006503317505121231, 0.011950965970754623, 0.0037379965651780367, 0.02619917318224907, -0.002954544499516487, 0.003552092704921961, -0.6178383827209473, -0.0005734803853556514, -0.004753828980028629, -0.020967306569218636, -0.0026142739225178957, 0.003548773005604744, 0.033462706953287125, 0.005557199474424124, -0.0009411385981366038, 0.040181804448366165, -0.012395807541906834, 0.0042890687473118305, 0.018882526084780693, 0.012090394273400307, -0.0010847161756828427, -0.04623696208000183, 0.02939937636256218, -0.029479049146175385, -0.030169550329446793, 0.019413679838180542, -0.012349331751465797, 0.030461685732007027, -0.035242073237895966, 0.002557838801294565, -0.004551326390355825, 0.005464247427880764, -0.0013760209549218416, -0.017050044611096382, 0.016399381682276726, 0.003256638301536441, 0.0010365803027525544, -0.010682836174964905, 0.007363122887909412, 0.01847088150680065, 0.03699487820267677, 0.005995401181280613, -0.010091926902532578, 0.043448399752378464, 0.003572010900825262, 0.04148313030600548, -0.019453518092632294, 0.0016017614398151636, 0.013312048278748989, -0.008465267717838287, 0.02188354730606079, -0.029903972521424294, 0.011678749695420265, 0.02860264480113983, 0.005387893877923489, -0.005195350386202335, -0.008186412043869495, -0.02671704813838005, -0.0015129591338336468, -0.023118481040000916, 0.011811538599431515, -0.02031664177775383, 0.017886612564325333, -0.012614908628165722, 0.014606736600399017, -0.019400401040911674, 0.014447390101850033, 0.0402083620429039, 0.006553112994879484, -0.028204280883073807, -0.01422164961695671, 0.010118484497070312, -0.02262716181576252, 0.01451378408819437, -0.015443303622305393, -0.02036975882947445, -0.027128692716360092, 0.0062311007641255856, -0.00790091697126627, -0.027991818264126778, 0.01701020821928978, 0.006576350890100002, 0.010649639181792736, -0.007695094216614962, -0.01381000503897667, 0.021870268508791924, 0.02650458738207817, -0.00713738240301609, -0.018072515726089478, -0.008883551694452763, 0.0440857857465744, 0.007907556369900703, -0.007834522053599358, 0.04063328355550766, -0.0062311007641255856, 0.01910826750099659, 0.02987741492688656, 0.029850857332348824, 0.006685901433229446, -0.018643507733941078, 0.0003796921519096941, 0.0364106111228466, -0.012747697532176971, -0.007615421433001757, -0.017036765813827515, -0.012714500539004803, -0.0027387631125748158, -0.017660873010754585, -0.0047405497170984745, 0.014301322400569916, -0.016412660479545593, 0.0021993096452206373, -0.005889170337468386, 0.03444534167647362, 0.02703574113547802, -0.03070070408284664, -0.0055306414142251015, -0.02503063529729843, 0.006725738290697336, 0.05024717375636101, 0.007542387582361698, -0.03423287719488144, 0.00043239258229732513, -0.00776812806725502, 0.016439218074083328, -0.026026548817753792, 0.01985188201069832, 0.004368741996586323, -0.01062972005456686, -0.011486206203699112, 0.03123185783624649, -0.0022823025938123465, -0.014620015397667885, -0.013013274408876896, 0.0022789828944951296, -0.022799788042902946, 0.04042082279920578, 0.002532940823584795, 0.014500505290925503, -0.018723180517554283, 0.01685086265206337, -0.014447390101850033, 0.0010174920316785574, 0.013298769481480122, 0.016757911071181297, -0.0038077107165008783, 0.007422877941280603, 0.0019287531031295657, -0.00913584977388382, -0.011632273904979229, -0.03250662982463837, -0.016293151304125786, 0.001502170111052692, -0.00407992722466588, -0.0178998913615942, -0.01278089452534914, -0.00167313520796597, -0.01041725929826498, -0.012249740771949291, -0.005148874595761299, 0.0013942794175818563, -0.014553621411323547, 0.0020532424096018076, 0.013165981508791447, -0.018802853301167488, -0.020197132602334023, 0.0006232761079445481, 0.039969343692064285, -0.04772419109940529, -0.0010481993667781353, -0.007628700230270624, -0.018882526084780693, -0.018444323912262917, 0.030302338302135468, -0.006871805526316166, -0.0523717887699604, -0.011778340674936771, -0.007861079648137093, -0.003698160173371434, 0.000778057670686394, -0.006739017087966204, 0.014062303118407726, -0.02040959522128105, 0.014991823583841324, -0.009222161956131458, -0.011572519317269325, 0.0019752292428165674, -0.01312614418566227, -0.00463099917396903, -0.01690397784113884, -0.006885084323585033, -0.00717721926048398, 0.026318684220314026, 0.0007996358326636255, -0.026889674365520477, 0.02052910439670086, 0.02266700007021427, 0.021976498886942863, -0.023291105404496193, -0.00987282581627369, -0.01748824678361416, 0.020489268004894257, 0.01627987250685692, 0.020701728761196136, 0.017514804378151894, 0.037499476224184036, 0.012189985252916813, -0.00403013126924634, -0.023822259157896042, -0.007130743004381657, 0.007402959745377302, -0.011791620403528214, 0.027885587885975838, 0.0038608259055763483, 0.03468436002731323, -0.0103176673874259, 0.010477013885974884, -0.008445349521934986, -0.022587325423955917, -0.02833706885576248, 0.023636355996131897, 0.02929314598441124, -0.02074156515300274, 0.002283962443470955, -0.0015494759427383542, -0.005560519173741341, 0.01948007568717003, 0.018709901720285416, 0.027168529108166695, 0.006838608533143997, 0.010450456291437149, -0.024804893881082535, 0.026889674365520477, 0.007555666379630566, -0.018245141953229904, -0.04907863587141037, 0.006871805526316166, 0.005072521045804024, -0.00920888315886259, -0.01832481473684311, 0.009281917475163937, 0.015217564068734646, 0.05165472999215126, -0.009149128571152687, 0.02467210590839386, -0.0021295957267284393, -0.0012639806373044848, 0.03433911129832268, -0.00472395122051239, -0.035666994750499725, 0.03242695331573486, -0.001677284948527813, 0.010191518813371658, 0.011034725233912468, -0.009434623643755913, 0.030142992734909058, 0.01726250723004341, -0.005016086157411337, -0.007920835167169571, 0.02865576185286045, 0.003369508543983102, -0.013770168647170067, 0.01322573609650135, 0.016983650624752045, 0.02351684495806694, 0.01264810562133789, 0.009467820636928082, 0.02556178905069828, 0.008571498095989227, -0.02520325966179371, 0.016040852293372154, -0.006818690337240696, -0.019493354484438896, -0.03558732196688652, -0.01610724627971649, 0.01062972005456686, -0.02839018404483795, -0.030780376866459846, -0.02897445298731327, -0.0064933584071695805, 0.025853922590613365, 0.01642593927681446, 0.010410618968307972, 0.003015959169715643, 0.019387122243642807, -0.002868231851607561, -0.006978036370128393, -0.022321749478578568, -0.0021229563280940056, 0.015217564068734646, -0.00821296963840723, -0.01932072825729847, -0.018351372331380844, -0.002833375008776784, -0.009029618464410305, 0.04432480409741402, -0.023490287363529205, 0.007841161452233791, 0.01731562241911888, 0.00022823025938123465, 0.006350610870867968, 0.0034724196884781122, 0.03240039572119713, 0.01690397784113884, 0.004846780560910702, 0.013431558385491371, 0.0012523616896942258, -0.020449431613087654, -0.027752799913287163, -0.015509698539972305, 0.03795095533132553, 0.0325331874191761, 0.005859293043613434, 0.010291109792888165, -0.011990802362561226, -0.015005102381110191, 0.012243101373314857, -0.019772209227085114, 0.0042127156630158424, -0.005487485323101282, 0.017103159800171852, -0.0015602650819346309, 0.006111591123044491, 0.003039197064936161, 0.012482120655477047, 0.013292130082845688, -5.1533355872379616e-05, -0.013730332255363464, -0.02849641442298889, 0.003308093873783946, 0.04320938140153885, -0.0023370778653770685, -0.033409591764211655, 0.011645552702248096, -0.033409591764211655, -0.026265567168593407, -0.006314093712717295, -0.02351684495806694, 0.03627782315015793, 0.003412664867937565, -0.02026352658867836, -0.015722159296274185, 0.0069448393769562244, 0.01296679861843586, 0.007688454817980528, 0.004491571336984634, -0.0261858943849802, 0.00531486002728343, 0.021910104900598526, -0.0346578024327755, 0.003771193791180849, -0.0034956575836986303, 0.0019403721671551466, 0.03752603381872177, -0.003913941327482462, 0.008544940501451492, 0.0028151164297014475, 0.003774513490498066, 0.029372818768024445, -0.027779357507824898, -0.006978036370128393, 0.005374615080654621, 0.011665470898151398, 0.018085796386003494, -0.033356472849845886, 0.02525637485086918, 0.0206353347748518, 0.04246576502919197, 0.010921855457127094, -0.004508169833570719, 0.038455553352832794, 0.009660364128649235, -0.0033396310172975063, -0.01841776631772518, -0.0029080684762448072, 0.017355458810925484, 0.02021041139960289, -0.022374864667654037, -0.004000253975391388, -0.03479059040546417, -0.0028068171814084053, -0.010496932081878185, -0.03452501446008682, -0.0010440497426316142, 0.049636345356702805, -0.028788549825549126, -0.013185899704694748, -0.007741570472717285, 0.009215522557497025, -0.0013096267357468605, -0.016253314912319183, -0.007170579861849546, 0.027726242318749428, 0.0057298243045806885, 0.010171599686145782, -0.014580179005861282, -0.020555661991238594, 0.008106738328933716, -0.039916228502988815, 0.013823283836245537, 0.025429001078009605, -0.01910826750099659, -0.01990499719977379, -0.009434623643755913, 0.01852399669587612, -0.00476378807798028, -0.007090906612575054, -0.003261617850512266, 0.024326855316758156, 0.017966285347938538, 0.006280896719545126, -0.030063319951295853, -0.003575330600142479, -0.029107242822647095, -0.011725225485861301, 0.010583244264125824, -0.0007647788152098656, 0.021113373339176178, 0.018988756462931633, 0.025322768837213516, 0.009268638677895069, -0.002645811066031456, -0.008432070724666119, -0.011831456795334816, -0.003505616681650281, 0.026796722784638405, -0.006184624973684549, -0.006204543169587851, -0.010716033168137074, -0.008066901937127113, -0.010749230161309242, -0.0048268623650074005, -0.009202243760228157, -0.016452496871352196, -0.0007693434599786997, -0.03590601310133934, -0.029054125770926476, 0.026491308584809303, -0.026995904743671417, -0.0025744372978806496, 0.027912145480513573, -0.03123185783624649, 0.027168529108166695, 0.024711942300200462, -0.016983650624752045, 0.024765057489275932, -0.005358016584068537, 0.02163124829530716, -0.009740037843585014, -0.011180792935192585, -0.003940498922020197, -0.014566900208592415, 0.009919301606714725, 0.009613888338208199, -0.038668014109134674, 0.01722267083823681, 0.008770680986344814, -0.046688441187143326, -0.008989782072603703, 0.00673237768933177, 0.018988756462931633, 0.004959650803357363, -0.006509956903755665, -0.00634065130725503, -0.013424918986856937, 0.011300302110612392, -0.0014847415732219815, -0.005460927728563547, 0.0038973428308963776, 0.0063207331113517284, -0.006871805526316166, -0.017448410391807556, 0.00397701608017087, -0.00981971062719822, 0.003245019353926182, -0.03675585985183716, -0.017727266997098923, 0.04374053701758385, -0.013597543351352215, -0.002320479368790984, -0.013929515145719051, -0.004109804518520832, -0.015522977337241173, 0.017156274989247322, 0.0008647851645946503, 0.0130730289965868, -0.0019519911147654057, 0.0047405497170984745, 0.005693307612091303, 0.03768537938594818, 0.021617969498038292, -0.012289577163755894, 0.02015729621052742, -0.004305667709559202, -0.0061182305216789246, -0.0023287786170840263, -0.005045963451266289, -0.024326855316758156, -0.005623593460768461, -0.017567919567227364, 9.160332410829142e-05, 0.012787533923983574, 0.010304388590157032, 0.017727266997098923, 5.311540371621959e-05, 0.020024508237838745, 0.006277577020227909, 0.02299897000193596, -0.021405508741736412, -0.027434106916189194, 0.013823283836245537, 0.019347285851836205, -0.011346778832376003, 0.030010204762220383, -0.02833706885576248, 0.000984294805675745, 0.02966495417058468, -0.01590806432068348, -0.016027573496103287, -0.02415423095226288, -0.009673642925918102, -0.012880485504865646, 0.015576092526316643, 0.02372930757701397, 0.010496932081878185, 0.018099075183272362, 0.004584523383527994, -0.03962409123778343, 0.02987741492688656, -0.027327876538038254, 0.0006834458908997476, 0.018962198868393898, -0.009016339667141438, -0.025588346645236015, -0.014965265057981014, 0.011353418231010437, -0.0223084706813097, 0.0008419621735811234, 0.011811538599431515, -0.008279363624751568, -0.0019486714154481888, -0.03680897504091263, -0.03263941779732704, -0.03311745449900627, 0.026079664006829262, 0.020821237936615944, -0.014925428666174412, 0.01711643859744072, -0.015708880499005318, -0.02767312526702881, 0.010974970646202564, -0.008598056621849537, 0.06230437010526657, -0.015177726745605469, 0.019041873514652252, 0.003256638301536441, 0.0027885588351637125, -0.021963220089673996, 0.0022424659691751003, 0.01209703367203474, 0.017939727753400803, 0.0351889543235302, 0.01039070077240467, -0.003993614576756954, -0.0011004847474396229, -0.02545555867254734, 0.00874412339180708, -0.02205617167055607, -0.020329920575022697, 0.015934621915221214, 0.00821296963840723, 0.015098053961992264, -0.003518895711749792, 0.01962614245712757, -0.015430024825036526, 0.005865932442247868, 0.00918896496295929, -0.02630540356040001, 0.000859805615618825, -0.03510928153991699, -0.03481714800000191, 0.01937384344637394, 0.0330643393099308, 0.030621031299233437, -0.004169559106230736, -0.022135844454169273, -0.015124611556529999, -0.011353418231010437, -0.019148103892803192, 0.01115423534065485, -0.002599335042759776, 0.017156274989247322, -0.030461685732007027, -0.011087840422987938, 0.04225330427289009, -0.01381000503897667, -0.0019320729188621044, -0.01841776631772518, 0.007203776855021715, 0.02052910439670086, -0.017050044611096382, -0.026995904743671417, -0.001953650964424014, 0.016651678830385208, -0.007648618426173925, 0.016824305057525635, -0.004060008563101292, 0.01370377466082573, -0.00047762368922121823, -0.01900203712284565, 0.018099075183272362, 0.0010440497426316142, 0.0012523616896942258, -0.0025545191019773483, -0.006905002519488335, -0.0014075582148507237, -0.01159907691180706, -0.011565879918634892, 0.007834522053599358, -0.022959133610129356, -0.04703368991613388, -0.028682319447398186, -0.0028848303481936455, -0.00863789301365614, 0.0043488238006830215, -0.008910109288990498, 0.005713225807994604, 0.03261286020278931, -0.010855460539460182, 0.029319703578948975, -0.01627987250685692, -0.00403013126924634, -0.02404800057411194, 0.014141976833343506, 0.007356483489274979, -0.011373336426913738, 0.03484370559453964, -0.011174153536558151, -0.020183853805065155, -0.029957087710499763, -0.00987282581627369, 0.01951991207897663, 0.001058158464729786, -0.00041973619954660535, -0.010171599686145782, -0.006958118174225092, 0.022401422262191772, -0.005358016584068537, -0.021538296714425087, 0.014898871071636677, -0.009009700268507004, -0.023344220593571663, 0.0022358265705406666, -0.002914707874879241, 0.005577117670327425, -0.012555154040455818, -0.012920321896672249, 0.01037078257650137, -0.03054135851562023, -0.021246161311864853, -0.016412660479545593, -0.009195604361593723, -0.01218334585428238, 0.001883937045931816, -0.04220018908381462, -0.0033612092956900597, -0.006470120511949062, 0.008936666883528233, -0.001470632734708488, -0.016133803874254227, 0.008465267717838287, 0.029744626954197884, 0.015761995688080788, -0.0027686404064297676, -0.013112865388393402, 0.011300302110612392, -0.023450450971722603, -0.0035388139076530933, -0.03086004965007305, -0.01716955564916134, -0.007515829987823963, 0.038030631840229034, 0.010988249443471432, -8.952850475907326e-05, -0.01144636981189251, 0.015257400460541248, -0.04368742182850838, -0.0009826349560171366, 0.013982630334794521, 0.02730131894350052, 0.01631970889866352, 0.0007398810121230781, 0.009301835671067238, 0.02646475099027157, -0.000832832942251116, 0.011618995107710361, -0.017700709402561188, 0.01026455219835043, 0.012581711634993553, 0.02833706885576248, -0.004803624469786882, -0.030461685732007027, -0.015894785523414612, -0.014075582846999168, 0.017727266997098923, -0.013265572488307953, -0.012309495359659195, 0.019227776676416397, 0.013232375495135784, -0.011472927406430244, -0.023277826607227325, 0.03128497302532196, 0.02854952961206436, 0.015151169151067734, -0.014726245775818825, -0.013179260306060314, -0.024858009070158005, 0.01596117950975895, -0.0006046026828698814, -0.03101939707994461, -0.011353418231010437, 0.0012548514641821384, -0.025548510253429413, 0.03155054897069931, 0.0008494314970448613, -0.03311745449900627, 0.012243101373314857, -0.025282932445406914, 0.02436669170856476, -0.005763021297752857, -0.008684368804097176, 0.043395284563302994, -0.018085796386003494, 0.026278845965862274, -0.008325839415192604, -0.0047139921225607395, -0.00800714734941721, -0.0064302836544811726, -0.012475481256842613, -0.01738201640546322, -0.004249232355505228, -0.016558727249503136, 0.020130738615989685, -0.03213481977581978, 0.002514682477340102, 0.008485185913741589, 0.008876912295818329, -0.003957097884267569, 0.018656786531209946, -0.005533961113542318, -0.018231863155961037, 0.031470876187086105, 0.014859034679830074, -0.0013826603535562754, 0.0009809751063585281, -0.02924003079533577, -0.01333196647465229, 0.010178239084780216, 0.017992842942476273, 0.01007864810526371, 0.007316647097468376, -0.01194432657212019, 0.0010399000020697713, 0.012495399452745914, -0.006470120511949062, -0.0022092689760029316, 0.19334007799625397, -0.008511743508279324, -0.0017295703291893005, 0.020874354988336563, -0.017156274989247322, 0.005769660696387291, 0.015682322904467583, -0.01747496798634529, -0.007004593964666128, 0.0014714626595377922, -0.019201219081878662, -0.008551579900085926, -0.027487222105264664, 0.011711946688592434, -0.009826350025832653, -0.014500505290925503, -0.019413679838180542, -0.0250837504863739, -0.014819198288023472, 0.01626659370958805, 0.0017445090925320983, -0.018869247287511826, -0.037658821791410446, -0.020396316424012184, 0.03224105015397072, -0.0030524758622050285, -0.030169550329446793, 0.011618995107710361, 0.013199178501963615, -0.0024433087091892958, -0.024950962513685226, -0.006533194798976183, -0.009906022809445858, -0.0006436093244701624, -0.030408568680286407, -0.02415423095226288, 0.008246166631579399, -0.00022906018421053886, 0.011911129578948021, -0.0034159845672547817, 0.006891723722219467, 0.00305081601254642, -0.0017926449654623866, -0.005699947010725737, 0.011798259802162647, 0.01647905446588993, -0.007920835167169571, -0.0024897847324609756, 0.00865781120955944, -0.007794685661792755, -0.012462201528251171, -0.02194994129240513, -0.00026640694704838097, 0.001015002140775323, -0.015735438093543053, 0.008405513130128384, -0.0030657548923045397, 0.01989171840250492, 0.02424718253314495, 0.015509698539972305, -0.004617720376700163, 0.02394176833331585, -0.02205617167055607, 0.0407395176589489, -0.005905769299715757, 0.01325893308967352, -0.03144431859254837, 0.003880744334310293, -0.014553621411323547, -0.013863121159374714, -0.018829410895705223, -0.03980999439954758, -0.01585494913160801, -0.023556681349873543, -0.018444323912262917, -0.004428497049957514, 0.021139930933713913, -0.006370529066771269, -0.0024565875064581633, 0.011087840422987938, -0.008378955535590649, -0.0013494632439687848, -0.014447390101850033, 0.011439730413258076, -0.01985188201069832, -0.017050044611096382, 0.01464657299220562, -0.0037911119870841503, 0.004302348010241985, -0.007748209871351719, 0.0031138905324041843, 0.0016424278728663921, 0.0050791604444384575, 0.01248876005411148, 0.01268130261451006, 0.03994278609752655, 0.007409599144011736, 0.028230838477611542, 0.007641979027539492, 0.020383037626743317, -0.007190498057752848, 0.04031459242105484, 0.014819198288023472, 0.011187432333827019, -0.006559752393513918, -0.02289273962378502, -0.0015204284572973847, 0.013438197784125805, 0.008259445428848267, -0.025601625442504883, 0.017621036618947983, -0.040075574070215225, -0.020489268004894257, -0.008299281820654869, 0.005776300095021725, 0.006865166127681732, -0.012349331751465797, 0.01621347665786743, 0.0011643893085420132, -0.008312560617923737, -0.015098053961992264, -0.007734931074082851, 0.00016411830438300967, 0.007568945176899433, 0.030222665518522263, -0.014088861644268036, -0.025867203250527382, 0.018616950139403343, 0.025322768837213516, -0.021020421758294106, 0.046821229159832, -0.05927679315209389, -0.0195331908762455, -0.0005880041280761361, -0.00041060696821659803, -0.0042093959636986256, -0.015761995688080788, -0.030992839485406876, -0.020197132602334023, 0.011904490180313587, -0.0010249613551422954, 0.018338093534111977, -0.00981971062719822, 0.030275780707597733, 0.02934626117348671, -0.028788549825549126, 0.004408578854054213, -0.006403726059943438, 0.024008162319660187, -0.013199178501963615, -0.014155255630612373, 0.025229817256331444, -0.011791620403528214, -0.04830846190452576, -0.0048534199595451355, -0.01910826750099659, 0.00889683049172163, -0.012535235844552517, 0.028788549825549126, -0.0025711175985634327, -0.01610724627971649, 0.005809497553855181, 0.00038467172998934984, -0.01427476480603218, -0.016399381682276726, -0.023875374346971512, -0.16572006046772003, 0.005683348514139652, 0.027593452483415604, -0.008438710123300552, 0.012528596445918083, -0.012847288511693478, 0.033993858844041824, 0.006622827146202326, -0.013305408880114555, -0.011160874739289284, 0.009281917475163937, -0.00713738240301609, -0.004239273257553577, -0.01937384344637394, -0.012263019569218159, 0.001015832182019949, 0.012588351033627987, 0.015018381178379059, 0.03680897504091263, 0.01658528484404087, 0.017833497375249863, -0.016625121235847473, 0.016492333263158798, 0.026969347149133682, -0.0023802341893315315, -0.019758930429816246, 0.0004037600592710078, 0.004614400677382946, -0.020847797393798828, -0.0391460545361042, 0.0016947133699432015, 0.005806177854537964, 0.027327876538038254, 0.00010182181722484529, -0.024393249303102493, -0.0033612092956900597, 0.016664957627654076, -0.014580179005861282, -0.006951478775590658, 0.01259499043226242, -0.0017411893932148814, 0.014805919490754604, -0.006871805526316166, -0.011287023313343525, -0.0022175682242959738, 0.005663429852575064, -0.002423390280455351, -0.018351372331380844, -0.009481099434196949, -0.029479049146175385, 0.009713479317724705, -0.004109804518520832, 0.012289577163755894, -0.013597543351352215, 0.027938703075051308, -0.004604441579431295, -0.007449435535818338, 0.0018225223757326603, 0.004285749047994614, 0.025548510253429413, -0.004026811569929123, -0.008046983741223812, -0.01454034261405468, 0.02588048204779625, 0.006931560579687357, -0.019334007054567337, -0.005095759406685829, 0.022029614076018333, -0.021617969498038292, 0.006008680444210768, -0.018072515726089478, -0.024526039138436317, 0.01564248651266098, -0.007090906612575054, 0.0031304892618209124, 0.025760971009731293, 0.004730590619146824, 0.007070988416671753, 0.0182053055614233, -0.021671084687113762, -0.01314606238156557, 0.03457812964916229, 0.012760976329445839, -0.023078642785549164, 0.022427979856729507, -0.002031664364039898, -0.021445345133543015, -0.019041873514652252, 0.0021511740051209927, -0.02881510742008686, 0.02756689488887787, -0.04538711532950401, -0.023955047130584717, -0.005776300095021725, 0.018497439101338387, 0.004876658320426941, 0.0066560241393744946, -0.06097648665308952, 0.039863113313913345, -0.024433085694909096, 0.017289064824581146, 0.010735951364040375, 0.00889683049172163, -0.0012598310131579638, 0.021644527092576027, 0.01194432657212019, 0.00022491054551210254, -0.002665729494765401, 0.05476198345422745, 0.002911388175562024, -0.010716033168137074, 0.007568945176899433, 0.041854940354824066, 0.022547489032149315, 0.006453521549701691, 0.04751173034310341, -0.02518998086452484, -0.012017360888421535, 0.02031664177775383, -0.012694581411778927, 0.03893359377980232, 0.024114394560456276, 0.0250439140945673, 0.025004077702760696, 0.002627552719786763, -0.017820218577980995, -0.10920527577400208, -0.04687434434890747, -0.007907556369900703, -0.003004340222105384, -0.01612052507698536, -8.63644017954357e-05, -0.009832989424467087, 0.007582223974168301, 0.008345757611095905, 0.016439218074083328, -0.0052517857402563095, -0.013956072740256786, -0.016240034252405167, -0.005487485323101282, 0.007329925894737244, -0.014726245775818825, -0.0217374786734581, -0.011014807038009167, -0.00708426721394062, 0.020276805385947227, -0.007011233363300562, 0.01937384344637394, -0.02051582559943199, -0.015416746027767658, -0.003801071085035801, -0.0008174792747013271, -0.026026548817753792, 0.017408574000000954, 0.014951986260712147, 0.029054125770926476, 0.009487738832831383, 0.006702500395476818, -0.011273744516074657, 0.013026553206145763, -0.005301581230014563, 0.00490985531359911, -0.009142489172518253, -0.025535231456160545, 0.04820223152637482, -0.011924408376216888, 0.015230842866003513, 0.0006332352058961987, 0.0023337581660598516, -0.020954027771949768, 0.01805923692882061, -0.00021827111777383834, -0.02047598920762539, -0.0022823025938123465, 0.00708426721394062, -0.025867203250527382, -0.019865160807967186, -0.03548109158873558, -0.020037787035107613, 0.006752295885235071, 0.01736873760819435, 0.0069448393769562244, -0.0018341413233429193, -0.017235949635505676, -0.004903215914964676, -0.011326859705150127, -0.0001353820407530293, 0.004192797467112541, -0.006725738290697336, 0.011506124399602413, 0.0324535109102726, -7.702770744799636e-06, -0.031470876187086105, -0.010277830995619297, 0.027022462338209152, -0.02436669170856476, -0.0006079224403947592, 0.0027852391358464956, -0.024645548313856125, 0.015947900712490082, -0.005055922549217939, 0.022866182029247284, -0.027115413919091225, -0.007190498057752848, 0.014088861644268036, -0.010782427154481411, -0.026225730776786804, 0.001066457713022828, -0.006582990754395723, -0.013849842362105846, 0.025495395064353943, 0.033303357660770416, -0.004750509280711412, 0.019825324416160583, 0.0004967120476067066, -0.05091111734509468, 0.001751148491166532, 0.009952498599886894, 0.046900901943445206, -0.018802853301167488, -0.00535469688475132, 0.014181813225150108, -0.02136567234992981, -0.001198416342958808, -0.0022756631951779127, 0.022281913086771965, -0.03101939707994461, -0.021671084687113762, -0.035560764372348785, 0.018869247287511826, -0.027912145480513573, -0.005626913160085678, 0.011512763798236847, -0.014434111304581165, 0.007754849269986153, -0.017103159800171852, 0.002773619955405593, -0.020356478169560432, -0.013770168647170067, 0.005099079106003046, 0.0005112357903271914, 0.01612052507698536, -0.007004593964666128, -0.007495911791920662, 0.026995904743671417, -0.013292130082845688, 0.03460468724370003, 0.014872313477098942, -0.019652700051665306, 0.005414451472461224, 0.029213473200798035, 0.008438710123300552, -0.009520936757326126, -0.015602650120854378, -0.0004606101429089904, 0.015841670334339142, -0.0028582727536559105, -0.03086004965007305, 0.019599584862589836, -0.020343199372291565, 0.001222484279423952, 0.023237990215420723, 0.012269658967852592, 0.015682322904467583, 0.006304134614765644, -0.0018540596356615424, 0.024061279371380806, 0.012435643933713436, -0.006473440211266279, -0.037127669900655746, -0.003658323548734188, 0.0025279612746089697, -0.013969351537525654, -0.00137768080458045, -0.007794685661792755, 0.0181654691696167, 0.0025047233793884516, 0.006938199978321791, 0.031470876187086105, 0.012754336930811405, -0.009985696524381638, -0.02703574113547802, 0.011512763798236847, -0.011379975825548172, 0.021126652136445045, -0.02356996200978756, -0.0010340905282646418, -0.027779357507824898, 0.006838608533143997, -0.01716955564916134, -0.009952498599886894, -0.023928489536046982, -0.014739524573087692, -0.005919048096984625, -0.005248466040939093, 0.024791615083813667, -0.012847288511693478, 0.0013859800528734922, -0.0015810132026672363, 0.00874412339180708, -0.02241470105946064, -0.0013411639956757426, 0.03816341981291771, 0.019705815240740776, 0.007914195768535137, -0.00717721926048398, -0.019559748470783234, 0.01983860321342945, 0.021604690700769424, 0.0008042004192247987, -0.04220018908381462, 0.005517362616956234, 0.0484146922826767, -0.002491444582119584, -0.014088861644268036, 0.01435443852096796, -0.003728037467226386, 0.0026242330204695463, -0.0038309486117213964, 0.021246161311864853, -0.01351787056773901, 0.000953587528783828, 0.007283450104296207, 0.052053097635507584, -0.010304388590157032, -0.024658827111124992, 0.0030591152608394623, 0.03091316670179367, 0.0017245907802134752, 0.006509956903755665, -0.013511231169104576, -0.00048426311695948243, -0.019254334270954132, -0.009813071228563786, 0.0020250247325748205, 0.010563326068222523, -0.01621347665786743, 0.030169550329446793, 0.035879455506801605, 0.009016339667141438, 0.010005614720284939, 0.007217055652290583, -0.0007307517807930708, 0.004737230017781258, -0.01606740988790989, -0.029425933957099915, -0.03643716871738434, -0.002891469979658723, 0.004953011404722929, 0.007051070220768452, 0.021392229944467545, 0.0029910611920058727, 0.03537486121058464, 0.03375484049320221, 0.011320220306515694, -0.01314606238156557, -0.008697647601366043, 0.024791615083813667, -0.009354950860142708, -0.012847288511693478, -0.025110308080911636, -0.01621347665786743, -0.0005224398337304592, -0.033037781715393066, 0.0007905066013336182, 0.0054177711717784405, -0.016930535435676575, 0.0869499146938324, 0.00815985444933176, -0.001809243462048471, 0.022653719410300255, -0.01110112015157938, 0.022813066840171814, 0.02540244348347187, -0.0044882516376674175, -0.004093206021934748, -0.015669044107198715, -0.010184879414737225, 0.0026474709156900644, 0.014288043603301048, -0.03927884250879288, 0.005484165623784065, 0.002373594557866454, -0.0275137796998024, 0.013338605873286724, -0.0130730289965868, 0.0144606688991189, 0.023410614579916, 0.027380991727113724, 0.02966495417058468, -0.008272724226117134, -0.004033450968563557, 0.003927220124751329, 0.00427910964936018, -0.013239014893770218, -0.015204284340143204, -0.01365065947175026, 0.017713988199830055, 0.007011233363300562, -0.040659841150045395, -0.015124611556529999, -0.005786259658634663, 0.03502960875630379, -0.001786005450412631, 0.012561793439090252, -0.003817669814452529, -0.004843460861593485, -0.02157813310623169, 0.002058221958577633, -0.025468837469816208, -0.06607556343078613, -0.010742590762674809, 0.016293151304125786, -0.01039070077240467, 0.0004328075738158077, -0.05901121348142624], "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e": [-0.014146191999316216, -0.013157988898456097, 0.01275187823921442, -0.01490426529198885, -0.024217739701271057, 0.010734861716628075, -0.0036245386581867933, 0.010037705302238464, -0.0034265597350895405, -0.014511692337691784, 0.0037869829684495926, -0.0010076623875647783, -0.022376704961061478, 0.018599873408675194, 0.029104605317115784, 0.017056653276085854, 0.009103650227189064, 0.044563889503479004, 0.002572034951299429, -0.011716295965015888, -0.006474082823842764, 0.028021644800901413, -0.0023080629762262106, -0.009096881374716759, -0.032380566000938416, 0.016785912215709686, 0.02037322334945202, 0.015269765630364418, 0.006815892644226551, -0.009739890694618225, 0.006034129299223423, 0.01608198694884777, -0.006460545584559441, -0.01883000321686268, -0.03289497271180153, 0.00416601961478591, 0.005560333374887705, 0.022769277915358543, -0.0239605363458395, 0.010525037534534931, 0.02748016268014908, -0.022227797657251358, -0.01491780299693346, 0.006731286179274321, -0.019520390778779984, 0.022755740210413933, -0.0055772545747458935, -0.02270159311592579, -0.03140589967370033, 0.017110800370573997, 0.047379590570926666, 0.014457544311881065, -0.023581499233841896, -0.014471081085503101, 0.008318502455949783, 0.009469149634242058, -0.004930861759930849, 0.0171784870326519, 0.003773445961996913, -0.01728678308427334, 0.013557331636548042, 0.010565648786723614, -0.0032302727922797203, 0.0038546682335436344, -0.016637004911899567, 0.004122024402022362, 0.03719974681735039, 0.004934246186167002, -0.010917611420154572, 0.004656737204641104, 0.03156834468245506, 0.011161278001964092, -0.009083344601094723, 0.021090686321258545, 0.024001147598028183, 0.004369074944406748, -0.01237284205853939, -0.007892086170613766, -0.013394887559115887, 0.009678973816335201, -0.004514598287642002, -0.016637004911899567, -0.0389595627784729, 0.021848760545253754, 0.03416745364665985, -0.023256611078977585, 0.006511309649795294, 0.02165924198925495, 0.004433376248925924, -0.03489845246076584, 0.009706047363579273, 0.011432018131017685, -0.011384638957679272, 0.017855336889624596, -0.017557522282004356, 0.02953779138624668, -0.0346006378531456, 0.04946429282426834, 0.0004911402356810868, -0.03132467716932297, -0.008866752497851849, 0.02057627961039543, -0.02192998304963112, -0.008528326638042927, -0.03430282324552536, -0.011858434416353703, -0.002632951596751809, -0.0006865810137242079, 0.025219479575753212, 0.002734479261562228, -0.006169499829411507, 0.04185648635029793, 0.006135656964033842, -0.015472820959985256, -0.009780501015484333, -0.029591938480734825, 0.016420412808656693, -0.027385404333472252, -0.02333783358335495, 0.005672013852745295, -0.004761648830026388, 0.0025060418993234634, 0.009570677764713764, -0.002602493157610297, 0.018478041514754295, 0.006714364979416132, -0.001918873400427401, -0.0008177210111171007, 0.012142712250351906, -0.014484617859125137, 0.03847222775220871, -0.007736410479992628, -0.02026492729783058, -0.008406492881476879, 0.002981530036777258, -0.007222003303468227, 0.02071164920926094, -0.0054181949235498905, -0.006507925223559141, -0.021090686321258545, 0.008216975256800652, 0.00664667971432209, 0.003631307277828455, -0.006873425096273422, -0.00795977097004652, 0.03121638298034668, 0.0033673353027552366, -0.00475488044321537, -0.010998833924531937, 0.002793703693896532, 0.007093401625752449, -0.01190581452101469, -0.0032201199792325497, -0.023243073374032974, 0.01057918556034565, -0.0006311638280749321, 0.007675493601709604, -0.009550372138619423, 0.00711370725184679, -0.00416601961478591, 0.009827881120145321, 0.011188352480530739, 0.01374008134007454, -0.0033690272830426693, 0.002632951596751809, 0.023283684626221657, 0.01795009709894657, -0.005776925943791866, 0.0004276854160707444, -0.0002584726025816053, -0.0204138346016407, -0.006010439712554216, -0.007282920181751251, 0.011310185305774212, 0.00014668636140413582, -0.029700234532356262, 0.005140685476362705, -0.006704212166368961, -0.030864419415593147, -0.011249268427491188, 0.026194145902991295, 0.01620382070541382, 0.017340930178761482, 0.01979113183915615, -0.03308449313044548, -0.024136517196893692, -0.0002157463604817167, 0.014958414249122143, -0.013415193185210228, 0.012251008301973343, 0.006007055286318064, 0.008223743177950382, 0.008474178612232208, 0.021253131330013275, -0.5947628021240234, -0.0028563125524669886, -0.013482877984642982, 0.003455325961112976, -0.014213877730071545, -0.028644347563385963, 0.02345966547727585, 0.015323913656175137, -0.014701209962368011, 0.038255635648965836, 0.0020220931619405746, -0.001746276393532753, 0.018031319603323936, -0.0008359113708138466, -0.012535286135971546, -0.03465478494763374, 0.025436071678996086, -0.016907745972275734, -0.018207300454378128, 0.011716295965015888, -0.02643781155347824, 0.02891508862376213, -0.024677999317646027, 0.014403395354747772, -0.013388118706643581, 0.008365882560610771, -0.0012293311301618814, -0.024380184710025787, 0.01020691730082035, -0.002737863454967737, 0.010470889508724213, -0.01205472182482481, 0.015269765630364418, -0.0008502944256179035, 0.03416745364665985, -0.0034502495545893908, -0.003594080451875925, 0.01964222453534603, -0.007147549651563168, 0.014619988389313221, -0.054039809852838516, -0.007438595872372389, 0.006210110615938902, -0.023419054225087166, 0.033761344850063324, -0.014105580747127533, 0.02443433180451393, 0.017977170646190643, 0.011932888068258762, -0.011709527112543583, 0.006717749405652285, -0.019439170137047768, 0.00765518844127655, -0.016163209453225136, 0.0030289096757769585, -0.0035230109933763742, 0.021537408232688904, -0.0035027056001126766, 0.01651517115533352, -0.02473214641213417, -0.004846255294978619, 0.03836393356323242, -0.01306323055177927, -0.02195705659687519, -0.007824401371181011, 0.0017716583097353578, -0.015675876289606094, -0.005512953735888004, -0.002365595195442438, -0.01651517115533352, -0.024339573457837105, 0.005374199245125055, 0.003127052914351225, -0.013631785288453102, 0.012271313928067684, -0.012535286135971546, 0.013861915096640587, -0.004795491695404053, -0.012535286135971546, 0.012866943143308163, 0.010640102438628674, -0.0032167357858270407, -0.04036741331219673, -0.006507925223559141, 0.031432975083589554, 0.012291619554162025, 0.01121542602777481, 0.025408998131752014, -0.005215139128267765, 0.021239593625068665, 0.019073668867349625, 0.04296652227640152, 0.04632370173931122, 0.006416550371795893, 0.00459582032635808, 0.03860759735107422, -0.0032133515924215317, -0.013855146244168282, -0.021537408232688904, -0.032867901027202606, 0.01728678308427334, -0.025097645819187164, 0.03170371428132057, -0.0191684290766716, -0.017368003726005554, -0.011404944583773613, -0.021550945937633514, 0.01776057854294777, 0.012426990084350109, -0.017895948141813278, 0.003590696258470416, -0.023865776136517525, -0.014498154632747173, 0.03998837620019913, -0.012190092355012894, -0.0299980491399765, 0.0013723160373046994, -0.011357564479112625, 0.015987228602170944, -0.015188543125987053, 0.03303034231066704, 0.007831169292330742, 0.0015144548378884792, -0.01977759599685669, 0.01697543077170849, -0.008379419334232807, 0.011235731653869152, -0.0057024722918868065, 0.000994971371255815, -0.02983560599386692, 0.034708935767412186, 0.00726261455565691, 0.02409590594470501, -0.02953779138624668, 0.003675302490592003, -0.026708552613854408, 0.009949713945388794, -0.005120380315929651, 0.01173660159111023, -0.012399915605783463, 0.010511500760912895, 0.008392956107854843, -0.004274316132068634, -0.003067828482016921, -0.0007720335270278156, -0.0410713367164135, -0.01793655939400196, -0.0014924571150913835, -0.011973499320447445, -0.0210365392267704, 0.026464885100722313, -0.00471765361726284, -0.03259715810418129, 0.005939370021224022, 0.01578417234122753, -0.012934628874063492, 0.011073287576436996, 0.0007876856834627688, -0.009198409505188465, -0.01670468971133232, 0.016582857817411423, 0.032813750207424164, -0.044103629887104034, 0.014687673188745975, -0.018640484660863876, -0.030404159799218178, -0.015811245888471603, 0.021117759868502617, 0.006558689288794994, -0.0571262501180172, -0.003966348711401224, -0.002489120699465275, 0.0050222366116940975, 0.014024359174072742, -0.014254488050937653, 0.026803310960531235, -0.013252748176455498, -0.010024167597293854, -0.03812026605010033, -0.011486167088150978, -0.0018748780712485313, -0.024190666154026985, -0.0050222366116940975, -0.0037260663229972124, 0.013916063122451305, -0.013496414758265018, 0.04237089306116104, 0.0029358426108956337, -0.02842775546014309, 0.014728284440934658, 0.02149679698050022, -0.003164279740303755, -0.035006750375032425, -0.015987228602170944, 0.01900598406791687, 0.01143878698348999, 0.03495259955525398, -0.010714556090533733, 0.023567961528897285, 0.03202860429883003, 0.031270530074834824, -0.004917324520647526, -0.02268805541098118, -0.018302058801054955, -0.003086441894993186, 0.002098239026963711, 0.018423892557621002, -0.005144069902598858, 0.03170371428132057, -0.028184087947010994, 0.01398374792188406, -0.005069616250693798, -0.0007441134075634181, -0.019046595320105553, 0.02566620148718357, 0.05317343771457672, -0.006443624384701252, 0.00117941340431571, 0.015337450429797173, -0.00417617242783308, 0.03457356616854668, -0.015283302403986454, 0.038553450256586075, 0.01947978138923645, 0.00012320808309596032, -0.03719974681735039, 0.015662338584661484, -0.016921281814575195, 0.00919164065271616, -0.0433184839785099, 0.00017164525343105197, -0.0027615532744675875, -0.031108085066080093, -0.010863463394343853, 0.024799831211566925, -0.003045830875635147, 0.028671421110630035, -0.0003443481109570712, 0.009218715131282806, 0.008853214792907238, -0.010362593457102776, 0.013157988898456097, -0.009381159208714962, -0.03357182443141937, 0.022809889167547226, 0.012291619554162025, 0.01119512040168047, 0.026370126754045486, -0.0033656430896371603, 0.025463145226240158, 0.002790319500491023, 0.01732739247381687, -0.012135944329202175, 0.019533928483724594, -0.02022431790828705, -0.02148326113820076, 0.010870232246816158, 0.021198982372879982, 0.03278667852282524, 0.012027647346258163, 0.017124338075518608, 0.026356589049100876, 0.007851474918425083, -0.018491577357053757, 0.017124338075518608, -0.019439170137047768, -0.011844897642731667, -0.014877191744744778, -0.0220924261957407, -0.002759861294180155, -0.0038817422464489937, -0.027886273339390755, -0.04031326249241829, -0.006409781984984875, 0.02997097559273243, 0.03016049414873123, 0.00475488044321537, -0.021050075069069862, 0.015391598455607891, -0.012156249023973942, -0.01728678308427334, -0.013557331636548042, 0.006714364979416132, 0.005150838289409876, -0.014403395354747772, -0.0038885106332600117, -0.009225483052432537, -0.005888606421649456, -0.010085084475576878, 0.036252155900001526, -0.021591557189822197, 0.015107321552932262, 0.017368003726005554, 0.02611292339861393, 0.015526968985795975, 0.009178103879094124, 0.04185648635029793, 0.0056787822395563126, 0.004429991822689772, 0.0009315165807493031, -0.004930861759930849, -0.016718227416276932, -0.03200152888894081, -0.007661956828087568, 0.036387525498867035, 0.026654403656721115, 0.02424481324851513, 0.013861915096640587, -0.024041758850216866, -0.01321213785558939, 0.011797518469393253, -0.0014603066956624389, -0.002609261777251959, 0.005722777917981148, 0.012366073206067085, 0.00013663935533259064, 0.007167855277657509, 0.005401273258030415, -0.003560237819328904, 0.0036076174583286047, -0.009367622435092926, -0.008061299100518227, -0.030322939157485962, 0.01057918556034565, 0.03790367394685745, 0.008704307489097118, -0.03124345652759075, 0.010071547701954842, -0.005722777917981148, -0.008284660056233406, 0.025002887472510338, -0.038580525666475296, 0.028806790709495544, 0.01702957972884178, 0.005932601634413004, -0.030729049816727638, -0.012704499065876007, 0.01259620301425457, 0.02486751601099968, 3.191248106304556e-05, -0.02829238399863243, 0.0077025676146149635, 0.03384256362915039, -0.027588458731770515, 0.006430087611079216, -0.01805839315056801, -0.006315022706985474, 0.031270530074834824, 0.008887057192623615, 0.003030601656064391, 0.017516911029815674, 0.00997678842395544, 0.023689795285463333, -0.013570868410170078, -0.020129557698965073, 0.007824401371181011, -0.0025788035709410906, 0.029619013890624046, -0.0454302579164505, 0.02210596390068531, 0.014146191999316216, 0.043020669370889664, 0.03974470868706703, -0.015012562274932861, 0.002612645970657468, -0.016014302149415016, 0.001238637836650014, -0.02488105371594429, 0.006927573122084141, 0.00827112328261137, 0.012697730213403702, -0.005133917089551687, 0.013848377391695976, -0.03026879020035267, -0.006971568334847689, -0.009557140059769154, -0.0426957793533802, -0.009530066512525082, 0.042858224362134933, 0.021510334685444832, -0.003993422724306583, -0.02439372055232525, 0.015960153192281723, -0.030052198097109795, -0.006819277070462704, -0.0020440910011529922, 0.023080630227923393, 0.007790558505803347, 0.01947978138923645, -0.01915489137172699, -0.04063815250992775, 0.014119118452072144, -0.04326433688402176, 0.004815796855837107, 0.03411330655217171, -0.013584406115114689, -0.028400680050253868, 0.005536643788218498, 0.003563622012734413, 0.021686315536499023, 0.003438404528424144, -0.0010059702908620238, 0.04802936688065529, 0.00394265865907073, 0.008149289526045322, -0.03492552787065506, -0.0005131379002705216, -0.011228962801396847, 0.0037396035622805357, 0.015350987203419209, -0.005722777917981148, 0.020183706656098366, 0.0033436454832553864, 0.017855336889624596, 0.004098334815353155, -0.003675302490592003, 0.005617865826934576, -0.0014476156793534756, -0.0005825151456519961, 0.02918582782149315, 0.004714269191026688, -0.0014856886118650436, -0.008609548211097717, -0.015716487541794777, -0.013530257157981396, -0.008399724960327148, -0.026789775118231773, 0.0018122693290933967, -0.02439372055232525, -0.040394484996795654, -0.014606451615691185, -0.0030712129082530737, -0.012758647091686726, 0.01321213785558939, 0.029104605317115784, -0.013347507454454899, 0.02270159311592579, 0.023134777322411537, -0.027250032871961594, 0.030566604807972908, 0.0023419056087732315, 0.020495057106018066, -0.01575709879398346, -0.007540123537182808, 0.011310185305774212, -0.015323913656175137, 0.0024011300411075354, 0.0028072407003492117, -0.027940422296524048, 0.02581510879099369, -0.0018122693290933967, -0.0583716556429863, 0.0023249841760843992, 0.017706429585814476, 0.024677999317646027, -0.0035433166194707155, 0.006142425816506147, -0.0022809889633208513, -0.042397964745759964, 0.0010855002328753471, -0.010484426282346249, -0.021131297573447227, 0.006886961869895458, -0.009604520164430141, -0.005414810497313738, -0.004616125952452421, 0.01839681901037693, 0.0012902477756142616, 0.013679164461791515, -0.03181201219558716, 0.006639911327511072, 0.022051814943552017, -0.0125082116574049, 0.01899244822561741, 0.002411282854154706, 0.0006565457442775369, -0.0023232921957969666, 0.0005110227502882481, -0.005472342949360609, 0.011005601845681667, 0.005235444754362106, 0.00856893789023161, 0.015405135229229927, 0.04283114895224571, 0.034519415348768234, 0.011188352480530739, 0.021050075069069862, -0.004578899126499891, -0.00031938921893015504, 0.002475583693012595, -0.0031896617729216814, 0.018586337566375732, -0.010944685898721218, 0.0035399324260652065, -0.01589246839284897, 0.025084109976887703, 0.013570868410170078, 0.013381349854171276, -0.023554425686597824, 0.016772374510765076, -0.010308445431292057, 0.017990708351135254, -0.012927860021591187, -0.024312498047947884, 0.012359305284917355, -0.008880289271473885, -0.023730406537652016, 0.024529092013835907, -0.017408614978194237, -0.0050154682248830795, 0.03476308286190033, -0.005831073969602585, -0.026167072355747223, -0.004809028469026089, -0.002714173635467887, 0.0035263951867818832, 0.0022843731567263603, 0.029239976778626442, 0.01490426529198885, 0.02161863073706627, -0.003135513747110963, -0.04932892322540283, 0.030350012704730034, -0.014430469833314419, -0.005120380315929651, 0.029889753088355064, 0.0076890308409929276, -0.004853023681789637, -0.03026879020035267, 0.007540123537182808, -0.03278667852282524, -0.01050473190844059, 0.008406492881476879, -0.0022623755503445864, 0.0016692845383659005, -0.017882412299513817, -0.006856503896415234, -0.016041375696659088, 0.021835222840309143, 0.011012370698153973, -0.011134203523397446, 0.01651517115533352, -0.034708935767412186, -0.009069807827472687, 0.0007855705334804952, -0.004673658404499292, 0.04052985459566116, -0.00394265865907073, 0.02243085205554962, 0.014714747667312622, 0.006115351337939501, -0.01980466954410076, 0.00013960058277007192, 0.006802355404943228, 0.01792302168905735, 0.01554050575941801, 0.019723447039723396, 0.002106699626892805, -0.002242069924250245, -0.022769277915358543, 0.003908816259354353, -0.026762699708342552, -0.027304181829094887, 0.04237089306116104, 0.02132081612944603, 0.002174384891986847, -0.015364524908363819, 0.020102484151721, -0.03167664259672165, -0.007228772155940533, 0.01930379867553711, -0.017273245379328728, -0.006183036603033543, -0.03711852431297302, -0.029402419924736023, 0.015120858326554298, 0.038580525666475296, 0.02596401609480381, -0.003435020335018635, -2.2737973267794587e-05, 0.0027835508808493614, -0.001198026817291975, -0.025936942547559738, 0.0256391279399395, -0.017259707674384117, 0.017665818333625793, -0.02581510879099369, -0.016027837991714478, 0.019060133025050163, -0.03167664259672165, 0.013550562784075737, -0.010782240889966488, -0.00835234485566616, 0.029564864933490753, -0.018816465511918068, -0.019547466188669205, 0.0030593678820878267, 0.01544574648141861, -0.03354474902153015, 0.0035467008128762245, -0.01728678308427334, 0.028346532955765724, -0.03419452905654907, -0.025002887472510338, 0.009706047363579273, 0.012047952972352505, -0.008250817656517029, 0.010992065072059631, -0.005776925943791866, 0.0007678032270632684, -0.030485382303595543, -0.004450297448784113, 0.02752077393233776, -0.038878340274095535, -0.03386963903903961, -0.05566425248980522, 0.01151324063539505, -0.0026600256096571684, -0.00035471239243634045, 0.0025077341124415398, 0.011655379086732864, 0.03836393356323242, -0.00486656092107296, 0.028806790709495544, -0.04199185594916344, 0.002340213395655155, -0.023527352139353752, -0.0030949024949222803, 0.009205177426338196, 0.0013680857373401523, 0.027385404333472252, -0.007770252879709005, -0.012393147684633732, -0.0030289096757769585, -0.021239593625068665, 0.005726161878556013, 0.004460450261831284, -0.007350604981184006, -0.016907745972275734, 0.0165557824075222, 0.03663119301199913, -0.011472629383206367, -0.017868874594569206, 0.009252557530999184, -0.03370719403028488, -0.014836580492556095, 0.014714747667312622, 0.0054249633103609085, 0.0005072154453955591, -0.0018105772323906422, -0.010017399676144123, 0.01374008134007454, -0.015486357733607292, -0.023608572781085968, -0.015256228856742382, -0.003556853625923395, -0.0191684290766716, 0.013313665054738522, -0.03294911980628967, 0.027128200978040695, -0.005144069902598858, 0.013970211148262024, 0.005303130019456148, -0.0024282040540128946, -0.01853218860924244, 0.0485437773168087, 0.021713389083743095, 0.003966348711401224, -0.013706238940358162, 0.0037869829684495926, -0.010998833924531937, 0.0051677594892680645, -0.0012521749595180154, -0.025151794776320457, -0.018004244193434715, 0.02348674088716507, 0.010687482543289661, -0.014660599641501904, -0.001959484536200762, -0.0043792277574539185, -0.02845482900738716, -0.015702949836850166, 0.007560429163277149, 0.02366272173821926, 0.024529092013835907, -0.003022141056135297, -0.007296456955373287, 0.024908127263188362, -0.012772183865308762, 0.0018274985486641526, -0.04001544788479805, 0.012406684458255768, 0.025233017280697823, 0.02057627961039543, -0.011932888068258762, -0.03029586374759674, -0.030864419415593147, 0.009144261479377747, -0.0043656909838318825, 0.004731190390884876, -0.010389667935669422, 0.02516533061861992, 0.02224133349955082, -0.030187567695975304, -0.020183706656098366, -0.010572417639195919, 0.009787269867956638, 0.020359687507152557, 0.004501061048358679, -0.005665245465934277, -0.0007035023299977183, 0.0086501594632864, 0.011973499320447445, -0.04491585120558739, -0.0065214624628424644, -0.002692176029086113, -0.013929599896073341, 0.028806790709495544, -0.011425250209867954, -0.04724422097206116, -0.007783790118992329, -0.016447486355900764, 0.025124721229076385, 0.008717845194041729, -0.011824592016637325, 0.04867914691567421, -0.012718035839498043, 0.02983560599386692, 6.789664621464908e-05, 0.031920306384563446, -0.010227222926914692, -0.00857570581138134, 0.007797326892614365, -0.01220362912863493, -0.020738724619150162, -0.017395079135894775, 0.023527352139353752, -0.02023785375058651, -0.0009611288551241159, -0.013604710809886456, 0.004589051939547062, 0.008920900523662567, 0.007018947973847389, -0.010863463394343853, -0.027886273339390755, 0.04172111302614212, 0.009103650227189064, -0.013828071765601635, 0.014958414249122143, -0.03755170851945877, -0.0143763218075037, -0.0160549134016037, 0.0030695206951349974, -0.0073032258078455925, 0.0038986634463071823, -0.02689807116985321, 0.00012500597222242504, -0.0077025676146149635, -0.01578417234122753, 0.008020687848329544, 0.19060133397579193, -0.014728284440934658, 0.0007551122107543051, 0.00733706820756197, 0.0036516129039227962, -0.004578899126499891, 0.018302058801054955, -0.009746658615767956, -0.006697443779557943, -0.015134395100176334, -0.01476889569312334, -0.027385404333472252, -0.030566604807972908, 0.012812795117497444, -0.0006260874797590077, -0.013191832229495049, -0.025855720043182373, -0.059400469064712524, -0.002744632074609399, 0.012880479916930199, 0.019723447039723396, -0.017977170646190643, -0.024461405351758003, -0.029023384675383568, 0.019425632432103157, 0.002196382498368621, -0.012081795372068882, 0.007174623664468527, 0.01398374792188406, 0.0010254296939820051, -0.011567388661205769, -0.029619013890624046, -0.02040029875934124, -0.008975048549473286, -0.011168046854436398, -0.021672779694199562, 0.0014010821469128132, -0.0035263951867818832, 0.019696373492479324, -0.010558879934251308, -0.012088564224541187, -0.019276725128293037, -0.04589051753282547, 0.004264163319021463, -0.015337450429797173, 0.04077352210879326, 0.0029307662043720484, -0.010321982204914093, -0.006362402345985174, 0.00812221597880125, -0.007986845448613167, -0.02734479308128357, 0.0045992047525942326, 0.012102100998163223, -0.02068457566201687, 0.008961510844528675, 0.014971951022744179, 0.009076575748622417, 0.011404944583773613, 0.016894208267331123, -0.0014966874150559306, 0.024989349767565727, -0.008467409759759903, 0.021144835278391838, -0.016609931364655495, 0.008528326638042927, -0.02516533061861992, 0.007946234196424484, -0.019127817824482918, -0.0165557824075222, -0.013943136669695377, -0.020779335871338844, -0.017246171832084656, -0.020305538550019264, -0.013313665054738522, -0.011865203268826008, 0.034248676151037216, -0.007235540542751551, 0.008758455514907837, 0.026789775118231773, -0.011932888068258762, -0.006592531688511372, -0.009787269867956638, 0.012772183865308762, -0.056963805109262466, -0.007621345575898886, 0.02057627961039543, 0.0009340547840110958, -6.382496212609112e-05, 0.0019391790265217423, 0.014633525162935257, 0.0021879218984395266, 0.0081831319257617, 0.0038140572141855955, 0.008596011437475681, 0.04697348177433014, 0.01594661734998226, 0.02796749584376812, 0.013042924925684929, 0.01336104515939951, -0.027439551427960396, 0.035169195383787155, -0.008738149888813496, 0.007831169292330742, 0.008602780289947987, -0.016921281814575195, -0.003221812192350626, 0.007059559226036072, -0.016285043209791183, -0.036549970507621765, 0.013821303844451904, -0.027750903740525246, -0.004487524274736643, 0.0008219513110816479, 0.01805839315056801, 0.0024874284863471985, 0.011790749616920948, 0.0010668868198990822, 0.0049139405600726604, -0.014863654971122742, 0.009090113453567028, -0.01227808278053999, 0.006985105574131012, -0.0005131379002705216, 0.021821685135364532, -0.020048335194587708, -0.04529488831758499, -0.010856694541871548, 0.026370126754045486, 0.00718816090375185, 0.02748016268014908, -0.03443819284439087, -0.013428729958832264, -0.0031896617729216814, 0.00797330867499113, 0.0012454064562916756, -0.0037835987750440836, -0.023080630227923393, -0.009015659801661968, -0.006653448101133108, -0.016433950513601303, 0.023080630227923393, -0.007201697677373886, 0.004375843796879053, 0.020914705470204353, -0.018897688016295433, 0.0204138346016407, -0.0021913060918450356, 0.02826531045138836, -0.014335710555315018, 0.015824783593416214, -0.0027090974617749453, -0.006392860785126686, -0.03766000643372536, -0.014416933059692383, -0.020305538550019264, -0.00835234485566616, -0.008521557785570621, 0.02829238399863243, 0.007506281137466431, -0.030566604807972908, 0.01979113183915615, -0.0026075695641338825, -0.010992065072059631, -0.016731765121221542, -0.022945258766412735, -0.1684006005525589, -0.0125082116574049, 0.034384045749902725, -0.02088763192296028, 0.02706051431596279, -0.014647061936557293, 0.03552115708589554, 0.023243073374032974, -0.02253914810717106, -0.026627330109477043, -0.0018934914842247963, -0.003061060095205903, -0.0018004244193434715, -0.021266667172312737, -0.021266667172312737, -0.00015112820256035775, -0.01841035485267639, 0.015161469578742981, 0.008447104133665562, 0.0054385000839829445, 0.03319278731942177, -0.03405915945768356, 0.01715141162276268, -0.00206439639441669, -4.44514171249466e-07, -0.02531423792243004, 0.0007098477799445391, -0.013069998472929, 0.006051050499081612, -0.03405915945768356, 0.012494674883782864, 0.010545343160629272, 0.015323913656175137, -0.004040802363306284, 0.0011506471782922745, 0.004832718521356583, 0.030187567695975304, -0.014200340025126934, -0.0021676162723451853, 0.007174623664468527, -0.00657222606241703, 0.004572130739688873, -0.0062202634289860725, -0.010545343160629272, -0.025612052530050278, 0.018626948818564415, 0.007086633238941431, -0.01964222453534603, -0.023567961528897285, -0.013476109132170677, -0.006856503896415234, -0.002824162133038044, 0.012454063631594181, 0.008013918995857239, 0.02812994085252285, -0.010464121587574482, -0.007289688568562269, 0.018924761563539505, -0.009428538382053375, 0.015134395100176334, -0.005177912302315235, -0.02486751601099968, -0.013699470087885857, 0.017828263342380524, -0.01747629977762699, -0.016027837991714478, -0.022457925602793694, 0.027263570576906204, -0.01805839315056801, 0.009279631078243256, -0.00738444784656167, -0.004122024402022362, 0.011019139550626278, 0.0010584262199699879, 0.02351381443440914, 0.015554042533040047, 0.0008790606516413391, 0.0005359816132113338, 0.00029908368014730513, -0.019980650395154953, 0.000148378501762636, 0.06199957802891731, 0.01235253643244505, -0.020332613959908485, 0.028184087947010994, -0.001412081066519022, -0.021280204877257347, -0.008467409759759903, -0.009347316808998585, -0.034519415348768234, 0.030079271644353867, -0.04155867174267769, -0.0014679213054478168, 0.008230512030422688, 0.017056653276085854, 0.012007341720163822, 0.012000573799014091, -0.04716299846768379, 0.020955316722393036, -0.03955519199371338, -0.0047819544561207294, 0.021402038633823395, -0.014322173781692982, 0.017124338075518608, 0.042885299772024155, 0.0047514960169792175, -0.017841801047325134, 0.011547083035111427, 0.03614385798573494, -0.006602684501558542, 0.019439170137047768, -0.003274268237873912, 0.022823426872491837, 0.02551729418337345, 0.011012370698153973, 0.04315603896975517, 0.004355538170784712, -0.018572799861431122, 0.018180226907134056, -0.007059559226036072, 0.02826531045138836, 0.022498536854982376, -0.008250817656517029, 0.013604710809886456, 0.008291428908705711, -0.02053566835820675, -0.11067872494459152, -0.005204986315220594, -0.01559465378522873, 0.011418481357395649, -0.013388118706643581, 0.015716487541794777, -0.005699087865650654, 0.019520390778779984, -0.0032133515924215317, 0.019385021179914474, -0.03075612336397171, 0.0007377678994089365, -0.005306514445692301, 0.007452132645994425, 0.019885892048478127, -0.010511500760912895, -0.030187567695975304, -0.01151324063539505, -0.02149679698050022, 0.03156834468245506, -0.0191684290766716, -0.0045044454745948315, 0.012623276561498642, -0.018166689202189445, -0.00765518844127655, 0.011668916791677475, -0.023391980677843094, 0.02471861056983471, 0.005705856718122959, 0.024326035752892494, 0.018478041514754295, 0.007452132645994425, -0.005360662471503019, 0.004179556854069233, -0.019087206572294235, 0.00020813177980016917, 0.007479207124561071, -0.02118544653058052, 0.04532196372747421, -0.021862296387553215, 0.01868109591305256, 0.007777021266520023, -0.009455612860620022, 0.003996807150542736, 0.011729832738637924, -0.000334195327013731, -0.02285050041973591, 0.018911225721240044, -0.0069072674959897995, -0.010376130230724812, -0.02733125537633896, -0.0005516338278539479, -0.008562169037759304, 0.02057627961039543, 0.022173648700118065, 0.0015440670540556312, 0.008812603540718555, -0.019588077440857887, -0.017070189118385315, 0.0010897306492552161, 0.03627923130989075, 0.0016532093286514282, -0.01336781308054924, 0.015824783593416214, 0.03216397389769554, -0.0033148792572319508, -0.03554822877049446, -0.013076767325401306, 0.025909867137670517, -0.021388500928878784, 0.020021261647343636, 0.0020559357944875956, -0.01872170716524124, 0.022660981863737106, -0.0017378156771883368, 0.03278667852282524, -0.020143095403909683, -0.005485879722982645, 0.023256611078977585, 0.0058412267826497555, -0.00835234485566616, 0.0014949953183531761, -0.004443528596311808, -0.003499321173876524, 0.02953779138624668, 0.036089710891246796, -0.0007741486770100892, 0.021550945937633514, -0.0042337048798799515, -0.025273628532886505, -0.0025737271644175053, 0.0182343740016222, 0.06259521096944809, -0.00222345651127398, -0.0002662986807990819, 0.014308637008070946, -0.015242691151797771, 0.0023266763892024755, -0.02053566835820675, 0.017990708351135254, -0.044266074895858765, -0.021280204877257347, -0.04153159633278847, 0.019087206572294235, -0.022065352648496628, 2.2116644686320797e-05, 0.00765518844127655, -0.01623089425265789, 0.01621735654771328, 0.01933087408542633, -0.0011286495719105005, -0.02829238399863243, 0.0034570179414004087, -0.007370910607278347, -0.012535286135971546, 0.018938299268484116, 0.002866465365514159, -0.007648419588804245, 0.02921290323138237, -0.026478422805666924, 0.018775854259729385, 0.031297605484724045, -0.02796749584376812, -0.005902143195271492, 0.01822083629667759, 0.01252174936234951, 0.016420412808656693, -0.009854954667389393, 0.005881838034838438, 0.031297605484724045, 0.0160549134016037, -0.0220924261957407, 0.0015068402281031013, -0.014592913910746574, -0.010118926875293255, 0.018423892557621002, 0.002301294356584549, 0.0042404732666909695, 0.004589051939547062, -0.0023029865697026253, 0.023419054225087166, -0.011614768765866756, -0.002602493157610297, -0.01853218860924244, -0.004917324520647526, 0.00039320829091593623, -0.0028258541133254766, 0.008880289271473885, -0.012041185051202774, 0.015554042533040047, -0.0021286974661052227, -0.0007424212526530027, 0.01398374792188406, -0.002947687404230237, -0.027426015585660934, -0.015554042533040047, 0.005732930731028318, -0.008846446871757507, 0.014213877730071545, -0.04096304252743721, -0.023446129634976387, -0.03427575156092644, 0.005526490975171328, -0.00810191035270691, 0.008541863411664963, -0.023229537531733513, -0.02320246212184429, 0.01491780299693346, 0.009205177426338196, 0.014647061936557293, 0.004348769783973694, 0.015878930687904358, 0.009746658615767956, 0.02268805541098118, -0.011993804946541786, -0.010619796812534332, 0.014944876544177532, -0.005665245465934277, -0.028996309265494347, -0.005885221995413303, -0.013916063122451305, 0.0006430087378248572, 0.012068258598446846, -0.017083726823329926, -0.027426015585660934, 0.0006438547861762345, 0.03784952312707901, -0.00904273334890604, -0.006013823673129082, 0.015175006352365017, 0.001783503219485283, -0.011283110827207565, 0.004284468945115805, 0.010193380527198315, -0.00879906676709652, 0.0160549134016037, -6.763225246686488e-05, 0.0695803165435791, -0.01639333926141262, -0.014037895947694778, 0.0020288617815822363, 0.011249268427491188, -0.01128987967967987, 0.0020220931619405746, -0.008670465089380741, 0.0017259708838537335, -0.019357947632670403, -0.00659930007532239, 0.009462380781769753, -0.006139041390269995, -0.008244048804044724, 0.0019053363939747214, 0.04096304252743721, 0.020061872899532318, -0.000328484398778528, 0.006751591805368662, -0.010687482543289661, -0.016433950513601303, -0.0014433853793889284, -0.021835222840309143, -0.03692900761961937, 0.019655762240290642, 0.009279631078243256, 0.0208470206707716, 0.028157014399766922, -0.009854954667389393, 0.042127225548028946, 0.012014110572636127, 0.005103458650410175, 0.0007479207124561071, 0.007181392516940832, 0.004257394932210445, -0.022836962714791298, 0.011486167088150978, -0.02271512895822525, -0.02054920606315136, -0.002729402855038643, -0.042858224362134933, -0.010342287831008434, -0.007059559226036072, -0.023419054225087166, 0.07938112318515778, 0.01244729571044445, -0.012711267918348312, 0.01491780299693346, -0.0012750186724588275, 0.014335710555315018, 0.012846637517213821, -0.02796749584376812, -0.01914135552942753, -0.02845482900738716, -0.006501156836748123, 0.006717749405652285, -0.002868157345801592, -0.03538578748703003, 0.0045992047525942326, 0.001731047173961997, -0.022227797657251358, 0.021402038633823395, -0.0034823999740183353, 0.02332429587841034, 0.03874296694993973, 0.007404753472656012, 0.015960153192281723, -0.009597751311957836, 0.01103944517672062, 0.003935890272259712, 0.023730406537652016, -0.014863654971122742, -0.030377086251974106, -0.023243073374032974, 0.009848186746239662, -0.008203437551856041, -0.02316185086965561, -0.026383664458990097, 0.0023757480084896088, 0.032867901027202606, -0.003428251948207617, 0.006518078036606312, 0.0016362880123779178, 0.011641842313110828, -0.04989747703075409, 0.029239976778626442, -0.029131680727005005, -0.04280407726764679, -0.015865394845604897, 0.022836962714791298, -0.0015364524442702532, 0.007736410479992628, -0.05347125232219696], "aec60a8e-dde5-4c5d-884a-af18bb204b1e": [-0.01913374662399292, 0.019906558096408844, 0.010153144598007202, 0.002058610087260604, -0.020066451281309128, 0.0023534109350293875, -0.0007957127527333796, 0.010572860948741436, -0.014923256821930408, -0.007148506585508585, -0.013191093690693378, -0.004796761088073254, -0.028940459713339806, 0.0310190562158823, 0.01271141692996025, 0.03549603372812271, 0.02043953165411949, 0.01159883476793766, 0.017867935821413994, -0.01710844784975052, -0.002433357061818242, 0.024676671251654625, -0.01658879965543747, -0.0028930464759469032, -0.04530274495482445, 0.007781412452459335, 0.0039639901369810104, 0.015043175779283047, 0.0032461415976285934, 0.005193160381168127, 0.014603473246097565, 0.013037863187491894, -0.016722042113542557, -0.02126564085483551, -0.034430086612701416, -0.006342384032905102, -0.021225668489933014, 0.0018820625264197588, -0.01566942036151886, 0.014123796485364437, 0.004043936263769865, -0.0031128982082009315, -0.013937256298959255, 0.0004954987671226263, -0.011339010670781136, 0.028434135019779205, 0.007561561185866594, -0.02045285701751709, -0.005169842392206192, 0.022331587970256805, 0.04570247605443001, 0.015322986990213394, -0.015163094736635685, -0.0055928900837898254, 0.011838672682642937, 0.004536936525255442, -0.0019570118747651577, 0.0198532622307539, 0.02209175005555153, -0.030779218301177025, 0.022611400112509727, 0.027608025819063187, -0.0055262683890759945, -0.012564849108457565, -0.018640747293829918, 0.0019020490581169724, 0.047967612743377686, 0.0015930909430608153, -0.017454881221055984, 0.008327710442245007, 0.04826074838638306, 0.006045917514711618, -0.02583588846027851, 0.024543428793549538, 0.007241777144372463, -0.014376958832144737, -0.025103049352765083, -0.020679369568824768, -0.025675997138023376, -0.006162505596876144, -0.0030079688876867294, -0.02859402634203434, -0.024063751101493835, 0.0024766610004007816, 0.04047933593392372, 0.002371731912717223, 0.007648169063031673, 0.03144543617963791, 0.0035575979854911566, -0.024396860972046852, -0.005319741554558277, -0.01169876754283905, -0.02331758849322796, 0.0077747502364218235, -0.02338421158492565, 0.024996455758810043, -0.015083149075508118, 0.03419024869799614, -0.011998564936220646, -0.034749869257211685, -0.009626832790672779, 0.023464156314730644, -0.009860008955001831, -0.0004259623819962144, -0.01890723407268524, 0.006119201425462961, 0.015109797939658165, -0.00615251250565052, 0.0022967825643718243, -0.006342384032905102, -0.02207842655479908, 0.03216494992375374, 0.0033127632923424244, -0.0345633290708065, 0.008973940275609493, -0.006125863641500473, -0.005053254775702953, -0.010579523630440235, -0.0033127632923424244, 0.01221175491809845, 0.012851323001086712, -0.005849383771419525, 0.012778039090335369, -0.0040406049229204655, 0.006049248855561018, 0.01379068847745657, -0.029846513643860817, -0.01566942036151886, 0.005722802598029375, -0.012504889629781246, 0.04804755747318268, -0.010965929366648197, -0.004147199913859367, 0.002438353607431054, 0.00916048139333725, -0.0027781242970377207, -0.0007482447545044124, -0.008174480870366096, -0.01496323011815548, -0.03365727514028549, 0.0013774032704532146, -0.007474952843040228, -0.010099846869707108, -0.0033793849870562553, 0.010186455212533474, -0.01093928050249815, 0.010539550334215164, 0.005842721555382013, -0.006778756156563759, -0.014350310899317265, 0.006325728725641966, 0.012538201175630093, -0.013204417191445827, -0.016668744385242462, 0.015842637047171593, 0.011665456928312778, -0.016362285241484642, 0.0010367999784648418, 0.022851238027215004, -0.018374260514974594, 0.000707855389919132, 0.029340188950300217, 0.017068475484848022, 0.011685443110764027, 0.0004763450415339321, 0.024796590209007263, 0.01821436733007431, 0.007921318523585796, -0.0016139103099703789, 0.020372910425066948, -0.007494939491152763, 0.004390368703752756, -0.03877381980419159, -0.009133832529187202, -0.01255818735808134, -0.017854610458016396, 0.013057850301265717, -0.005469640251249075, -0.031285542994737625, -0.01648220419883728, 0.01870736852288246, 0.015909258276224136, 0.0026049078442156315, 0.03634878993034363, -0.02229161560535431, -0.004596896003931761, 0.007961290888488293, 0.006012606900185347, -0.006888682022690773, -0.008780737407505512, 0.008800724521279335, 0.014057175256311893, -0.004846727475523949, 0.003279452444985509, -0.5909609794616699, -0.00967346876859665, -0.006568897981196642, -0.021238991990685463, 0.00020871324522886425, -0.014057175256311893, 0.021598748862743378, 0.025769267231225967, -0.008094534277915955, 0.03781446814537048, 0.005916005466133356, 0.018454207107424736, -0.012991228140890598, -0.015416257083415985, 0.018600773066282272, -0.0345899760723114, 0.028860513120889664, -0.03674852102994919, -0.03400370851159096, 0.017654746770858765, 0.000385156599804759, 0.045116204768419266, -0.02431691437959671, -0.0034010368399322033, 0.0067421142011880875, -0.0037441386375576258, 7.297156116692349e-05, -0.03195175901055336, 0.006255776155740023, 0.0254228338599205, -0.022304939106106758, -0.002458340022712946, -0.0020419545471668243, 0.01159883476793766, 0.037308141589164734, 0.011585510335862637, -0.0300064068287611, 0.029739920049905777, -0.013257714919745922, 0.04282441735267639, -0.0178146380931139, 0.01042629312723875, 0.015442905947566032, -0.018094448372721672, 0.03184516355395317, -0.03315094858407974, 0.01093261782079935, 0.017441555857658386, 0.013670769520103931, 0.009133832529187202, 0.010792712680995464, -0.02471664361655712, 0.0028097694739699364, -0.029340188950300217, 0.017481530085206032, -0.010792712680995464, 0.017361611127853394, -0.00206194119527936, 0.013177769258618355, -0.025369536131620407, 0.007981278002262115, 0.057934217154979706, -0.00437704473733902, -0.0203462615609169, 0.0018620759947225451, 0.022438183426856995, -0.0017804644303396344, -0.006678823847323656, -0.012138471007347107, -0.01646888069808483, -0.02779456600546837, 0.004650193266570568, -0.004820078611373901, -0.02301112934947014, 0.008314386010169983, 0.04098565876483917, 0.0049200113862752914, -0.022931182757019997, 0.00036579466541297734, 0.027927810326218605, 0.02319766953587532, 0.007055236026644707, -0.024903185665607452, -0.0003416443068999797, 0.03277786821126938, 0.0005450486205518246, -0.006135857198387384, 0.029846513643860817, -0.008067885413765907, 0.02309107594192028, 0.016029177233576775, 0.01708179898560047, 0.0254228338599205, -0.01964007131755352, 0.011385645717382431, 0.020879235118627548, -0.002623228821903467, -0.011925281025469303, -0.037281494587659836, -0.008207791484892368, -0.00010159806697629392, -0.01852082833647728, -0.003139546839520335, 0.013737390749156475, -0.020812613889575005, 0.0051232073456048965, -0.013364309445023537, 0.03192511200904846, 0.03741473704576492, -0.030246244743466377, -0.022917859256267548, -0.01191195659339428, -0.0022268297616392374, 0.024383535608649254, -0.00232842774130404, -0.03685511648654938, 0.02838083729147911, 0.0010642814449965954, 0.013977228663861752, -0.012025213800370693, 0.016415582969784737, 0.004796761088073254, 0.003171192016452551, 0.0010392982512712479, 0.030166298151016235, 0.001991988392546773, -0.009327035397291183, -0.017668070271611214, -0.01261814683675766, -0.033417437225580215, 0.03224489465355873, -0.0032578003592789173, 0.01830763928592205, -0.017175069078803062, -0.0070618982426822186, -0.011625483632087708, 0.015376284718513489, -0.001539793680422008, 0.010266401804983616, -0.0035309491213411093, 0.007188479416072369, 0.016762016341090202, -0.00845429114997387, -0.010852672159671783, -0.03227154165506363, -0.04876707121729851, 0.016948556527495384, -0.01383066177368164, 0.001289129606448114, -0.00925375148653984, -0.0024067081976681948, -0.01973334327340126, -0.011572185903787613, 0.016868609935045242, 0.00627909367904067, -0.026422159746289253, 0.008714116178452969, 0.016122447326779366, 0.0043004294857382774, -0.024077076464891434, 0.003800767008215189, 0.04133209213614464, -0.04556922987103462, 0.01669539324939251, -0.02888716198503971, -0.013804012909531593, -0.016508853062987328, 0.03136548772454262, -0.004646862391382456, -0.05353718623518944, -0.01408382412046194, 0.004453659523278475, -0.012125146575272083, 0.0147633645683527, -0.01974666677415371, 0.04794096201658249, -0.02229161560535431, -0.004830072168260813, -0.00015281348896678537, 0.004826740827411413, -0.016562150791287422, 0.0019470186671242118, 0.006322397850453854, -0.01862742193043232, -0.004327078349888325, -0.00945361703634262, 0.03490976244211197, 0.002435022499412298, -0.031498730182647705, 0.020892560482025146, 0.024183670058846474, 0.014376958832144737, -0.017628097906708717, -0.00865415669977665, -0.0218652356415987, 0.011632146313786507, -0.005323072429746389, 0.01471006777137518, 0.02819429710507393, 0.03277786821126938, 0.029153648763895035, 0.016961880028247833, -0.01226505171507597, -0.017748016864061356, -0.006302411202341318, -0.014656770043075085, 0.027194971218705177, -0.00010669878975022584, 0.04191836342215538, -0.015336311422288418, -0.011139145120978355, -0.02942013554275036, -0.018467530608177185, -0.02674194425344467, 0.01904047653079033, 0.013624134473502636, -0.002764799864962697, -0.00028688961174339056, 0.009746752679347992, 0.004780105780810118, 0.017028503119945526, 0.0011450601741671562, 0.015083149075508118, 0.017841286957263947, 0.001748819136992097, -0.012937930412590504, 0.013764039613306522, 0.006282424554228783, -0.006708803586661816, -0.038320790976285934, -0.0060792285948991776, 0.011812024749815464, -0.0031128982082009315, -0.020945856347680092, 0.0015830977354198694, 0.04823409765958786, 0.060599081218242645, 0.001283300225622952, 0.017361611127853394, 0.006645512767136097, -0.009307049214839935, 0.02676859311759472, -0.00782804749906063, -0.028833864256739616, 0.035575978457927704, 0.026595376431941986, -0.0003489310620352626, 0.00926041416823864, 0.018254341557621956, 0.02603575401008129, -0.0009210447897203267, 0.02675526775419712, -0.014856635592877865, 0.02443683333694935, 0.000706606253515929, 0.008520913310348988, 0.021132398396730423, -0.00034393442911095917, 0.0173083133995533, 0.004323747009038925, 0.007161831017583609, 0.03437678888440132, 0.02411704882979393, -0.025995781645178795, 0.015616122633218765, -0.0024266948457807302, -0.011712091974914074, -0.029126999899744987, -0.01801450364291668, 0.01530966255813837, -0.02115904726088047, -0.03432349115610123, -0.019266990944743156, 0.011971916072070599, 0.029979757964611053, -0.00488336943089962, 0.011538875289261341, 0.0039639901369810104, 0.014590148814022541, -0.012864647433161736, -0.017548151314258575, -0.03634878993034363, 0.016442231833934784, 0.017441555857658386, 0.008687467314302921, -0.012684768065810204, -0.0023350899573415518, -0.008840697817504406, -0.029659973457455635, 0.02676859311759472, -0.026009105145931244, 0.010213104076683521, 0.029153648763895035, 7.208674651337788e-05, 0.012591497972607613, 0.007241777144372463, 0.037201546132564545, -0.01205186266452074, 0.006272431463003159, 0.028434135019779205, -0.01862742193043232, -0.019080450758337975, -0.021518804132938385, -0.03083251416683197, 0.04506290704011917, 0.03243143483996391, 0.006229127291589975, 0.0038940373342484236, -0.010759402066469193, -0.017161745578050613, 0.008674142882227898, 0.0028464114293456078, -0.016948556527495384, -0.009406981989741325, 0.022411534562706947, 0.01618906855583191, -0.006665499415248632, -0.007568223401904106, 0.015243041329085827, 0.011299037374556065, -0.013670769520103931, -0.0035675910767167807, -0.028460783883929253, 0.004050598479807377, 0.05425669997930527, 0.019586775451898575, -0.0259424839168787, -0.01159883476793766, -0.024250293150544167, -0.009020576253533363, -0.006382357329130173, -0.025089725852012634, 0.026275591924786568, -0.009553549811244011, -0.008560886606574059, -0.022344913333654404, 0.006875357590615749, 0.027194971218705177, 0.009153819642961025, -0.0018504172330722213, -0.018054476007819176, 0.003587577724829316, 0.038827117532491684, -0.04042603820562363, -0.00864749401807785, 0.003780780592933297, -0.014070499688386917, 0.02401045523583889, 0.011638808064162731, 0.008061223663389683, 0.02267802134156227, -0.01688193529844284, 0.03781446814537048, -0.03325754404067993, -0.009120508097112179, 0.005746120121330023, 0.01893388293683529, 0.025875860825181007, -0.04082576557993889, 0.014270364306867123, 0.021532127633690834, 0.011678781360387802, 0.024290265515446663, -0.01383066177368164, 0.014190418645739555, 0.01924034208059311, 0.008920643478631973, -0.020825937390327454, -0.01185865979641676, 0.02054612711071968, 0.009307049214839935, -0.008727440610527992, -0.005812741816043854, -0.03989306464791298, -0.00783471018075943, -0.0017787989927455783, -0.03187181428074837, -0.014989878982305527, 0.026715295389294624, -0.0223848856985569, -0.021825263276696205, -0.006249113939702511, 0.00035621781717054546, 0.011991903185844421, -0.006895344238728285, 0.00347098964266479, 0.018760666251182556, 0.012238402850925922, 0.019906558096408844, -0.026715295389294624, -0.0336039774119854, 0.027448132634162903, -0.025489455088973045, 0.001991988392546773, 0.025262942537665367, -0.014057175256311893, -0.017268341034650803, -0.010186455212533474, -0.007574885152280331, 0.00656223576515913, 6.172915163915604e-05, -0.003139546839520335, 0.030592676252126694, 0.016135770827531815, 0.00880738627165556, -0.0356292761862278, 8.723276550881565e-05, -0.04564917832612991, 0.0035009693820029497, 0.011239077895879745, -0.0037108277902007103, 0.015802662819623947, 0.006185823120176792, 0.05127204582095146, 0.00722845271229744, -0.00042221491457894444, -0.02005312591791153, -0.011265726760029793, 0.002385056344792247, 0.020226342603564262, 0.02229161560535431, -0.006395681761205196, -0.0032994388602674007, -0.003264462575316429, -0.0167886633425951, -0.0010126496199518442, -0.0008918977691791952, -0.005806079600006342, 0.0008269416284747422, -0.02766132354736328, -0.03184516355395317, 0.019773315638303757, -0.030885811895132065, -0.0019603429827839136, 0.020572775974869728, -0.01942688226699829, 0.017361611127853394, 0.03365727514028549, -0.006392350420355797, 0.012478241696953773, -0.01043295580893755, 0.0073217228055000305, -0.018760666251182556, -0.02178529091179371, -0.00618249224498868, -0.034243546426296234, 0.01251821406185627, 0.015589473769068718, -0.02167869545519352, 0.03632214292883873, 0.008600858971476555, -0.042984310537576675, -0.01800117827951908, 0.021518804132938385, 0.019093774259090424, -0.013450917787849903, 0.0013799016596749425, -0.015336311422288418, -0.014123796485364437, 0.011392307467758656, -0.013257714919745922, -0.009593522176146507, -0.012937930412590504, 0.012724741362035275, -0.018547477200627327, -0.024463482201099396, -0.007934642024338245, 0.010253077372908592, 0.006232458632439375, -0.03533614054322243, -0.013817337341606617, 0.02666199766099453, 0.010392982512712479, 0.012431605719029903, -0.003980645444244146, -0.001097592175938189, -0.009400319308042526, 0.030352838337421417, -0.00945361703634262, 0.009220440872013569, 0.0023600731510668993, 0.021425534039735794, 0.013724066317081451, 0.008960616774857044, 0.026382187381386757, -0.005736127030104399, 0.024383535608649254, 0.000647895853035152, -0.01303120143711567, 0.008214453235268593, -0.0042837741784751415, -0.012571511790156364, -0.002899708691984415, -0.002193518914282322, -0.016122447326779366, 0.007248438894748688, 0.01772136799991131, 0.012218416668474674, -0.0008669146336615086, 0.018454207107424736, -0.00022984480892773718, 0.030912460759282112, -0.006458972115069628, -0.023757291957736015, 0.007848034612834454, -0.005919336341321468, -0.025582727044820786, 0.03717489913105965, -0.02718164585530758, 0.005659511778503656, 0.04317085072398186, 0.015949230641126633, -0.022957831621170044, -0.016149096190929413, -0.021838588640093803, -0.004743463825434446, 0.009367008693516254, 0.023357562720775604, 0.0039040306583046913, 0.013923931866884232, 0.009480265900492668, -0.037494681775569916, 0.021185696125030518, -0.00668881693854928, -0.0031828510109335184, 0.022198345512151718, -0.015136446803808212, -0.006608870811760426, -0.020599424839019775, 0.0018237686017528176, -0.005639525596052408, 0.0027914484962821007, -0.005839390680193901, -0.0018420895794406533, -0.02859402634203434, -0.014976554550230503, -0.012478241696953773, -0.049513235688209534, 0.022211669012904167, 0.01073941495269537, -0.024143697693943977, 0.017787989228963852, -0.01688193529844284, -0.020119749009609222, 0.001351587357930839, 0.009133832529187202, 0.041358739137649536, -0.0001017542090266943, 0.02779456600546837, 0.007108533754944801, -0.023664021864533424, -0.028780566528439522, -0.000966014398727566, -0.013037863187491894, 0.010572860948741436, 0.028514079749584198, 0.012504889629781246, -0.00997992791235447, -0.0029513405170291662, -0.028327539563179016, 0.016135770827531815, -0.02736818790435791, -0.01353086344897747, 0.03685511648654938, 0.02166537195444107, -0.014323662035167217, -0.016162419691681862, 0.019919883459806442, -0.020266316831111908, 0.02107910066843033, 0.002958002733066678, -0.024876536801457405, -0.021438857540488243, -0.016322312876582146, -0.056015510112047195, 0.019253665581345558, 0.023117724806070328, 0.04101230949163437, -0.015283013693988323, -0.01708179898560047, -0.03893371298909187, 0.006628857459872961, -0.015322986990213394, 0.025569401681423187, -0.01953347772359848, 0.02025299146771431, -0.01708179898560047, -0.014590148814022541, 0.037308141589164734, -0.007055236026644707, 0.0025949145201593637, -0.029580026865005493, 0.003624219447374344, 0.02066604606807232, -0.022131722420454025, 0.0006737117655575275, 0.009580197744071484, 0.015189743600785732, -0.016868609935045242, 0.012478241696953773, 0.007148506585508585, 0.02166537195444107, -0.014616797678172588, -0.022198345512151718, 0.012118483893573284, 0.010619495995342731, 0.015296338126063347, -0.0029713271651417017, -0.018094448372721672, 0.012551524676382542, -0.019786639139056206, -0.018787315115332603, 0.009640157222747803, -0.03466992452740669, -0.03650868311524391, -0.024050427600741386, 0.001479834085330367, 0.01912042312324047, 0.022358236834406853, -0.014643445611000061, 0.02636886201798916, 0.04255793243646622, -0.013071173802018166, 0.01904047653079033, -0.013137795962393284, -0.011705429293215275, -0.03797435760498047, -0.0002704423968680203, 0.033737219870090485, 0.004310423042625189, 0.011778713203966618, -0.014257039874792099, -0.015189743600785732, -0.008467615582048893, -0.010253077372908592, 0.019973181188106537, -0.015496203675866127, -0.009133832529187202, 0.008007925935089588, 0.0028214282356202602, 0.020173044875264168, -0.011212429031729698, -0.018747340887784958, 0.008587534539401531, -0.002758137648925185, -0.04407690465450287, 0.014683418907225132, -0.009386994875967503, 0.017934557050466537, -0.007028587628155947, 0.010872658342123032, 0.018880585208535194, -0.013990553095936775, -0.03235149011015892, -0.023970481008291245, -0.017481530085206032, -0.015429581515491009, 0.00808787252753973, -0.04490301385521889, 0.006875357590615749, -0.005319741554558277, 0.03280451521277428, -0.003497638273984194, -0.014163769781589508, 0.004666849039494991, 0.036162249743938446, 0.009520238265395164, -0.006352377589792013, -0.005856045987457037, 0.010253077372908592, -0.021545452997088432, 0.01413712091743946, -0.007121857721358538, -0.02888716198503971, -0.002385056344792247, 0.044023606926202774, 0.031791865825653076, -0.016668744385242462, -0.023277616128325462, -0.0008727440726943314, -0.03573587164282799, -0.011558862403035164, 0.014616797678172588, 0.037281494587659836, 0.025556078180670738, 0.012178443372249603, -0.012977903708815575, 0.012218416668474674, -0.01596255600452423, 0.017161745578050613, -0.013870634138584137, -0.0010118167847394943, 0.03304435312747955, 0.045835718512535095, -0.023783940821886063, -0.006652174983173609, -0.020612748339772224, -0.005636194255203009, 0.020386235788464546, 0.01099257729947567, 0.0008735767914913595, 0.027954457327723503, 0.018440881744027138, -0.013417607173323631, -0.01901382766664028, 0.004453659523278475, 0.03307100385427475, 0.027141673490405083, -0.012391633354127407, -0.007541574537754059, -0.014736716635525227, 0.013091160915791988, 0.013564174994826317, -0.025609375908970833, 0.006129194982349873, 0.001228337292559445, -0.021039128303527832, 0.01953347772359848, -0.01850750297307968, -0.041358739137649536, 0.016748690977692604, -0.02177196554839611, 0.026089051738381386, 0.00869412999600172, -0.02483656257390976, 0.04215820133686066, -0.020026477053761482, 0.01912042312324047, -0.00032582166022621095, 0.007907994091510773, -0.018853936344385147, -0.0026848537381738424, -0.006428992375731468, -0.018494179472327232, -0.025982456281781197, -0.0049466597847640514, 0.025103049352765083, -0.016428906470537186, 0.012118483893573284, 0.005296424031257629, -0.0017121772980317473, -0.003156202146783471, 0.007288412190973759, 0.00824776478111744, -0.025489455088973045, 0.02462337352335453, -7.354409171966836e-05, -0.029446784406900406, 0.011319023557007313, -0.015456230379641056, -0.022717993706464767, -0.009546887129545212, 0.0026698638685047626, 0.0032994388602674007, -0.012731404043734074, -0.014110472053289413, 0.009793387725949287, 0.012691430747509003, -0.0203595869243145, 0.01129237562417984, 0.19890569150447845, -0.013077836483716965, 0.0019053801661357284, 0.031392138451337814, -0.01710844784975052, 0.003460996551439166, 0.008254426531493664, -0.02217169664800167, 0.004520281217992306, -0.0031795199029147625, -0.01810777373611927, -0.013004552572965622, -0.03136548772454262, 0.015935907140374184, -0.0011483912821859121, -0.003820753423497081, -0.015096473507583141, -0.032191596925258636, -0.029047053307294846, -0.006425661500543356, 0.004506956785917282, -0.022717993706464767, -0.030885811895132065, -0.012138471007347107, 0.014856635592877865, -0.014496877789497375, -0.010592848062515259, -0.014150445349514484, 0.01902715303003788, 0.001868738210760057, -0.0013823999324813485, -0.02361072413623333, 0.006142519414424896, -0.022011803463101387, -0.02472996897995472, -0.010806037113070488, 0.006578891072422266, 0.020772641524672508, 0.006632188335061073, -0.01404385082423687, 0.0011650467058643699, -0.021305615082383156, -0.015016527846455574, -0.02318434603512287, -0.0034410099033266306, 0.0018770659808069468, -0.0023417521733790636, -0.01689525879919529, -0.010246414691209793, 0.0008456789655610919, 0.0037774494849145412, -0.015376284718513489, 0.020586099475622177, -0.004973308648914099, 0.004850058350712061, 0.006349046248942614, 0.004063922446221113, 0.013737390749156475, 0.015895932912826538, -0.007408331148326397, 0.011572185903787613, 0.021345587447285652, -0.01404385082423687, 0.03043278492987156, -0.0213722363114357, 0.02138555981218815, -0.01688193529844284, 0.01840090937912464, -0.007534912321716547, -0.003784111700952053, -0.011059199459850788, -0.0310190562158823, -0.018067801371216774, 0.0013049521949142218, -0.0218785610049963, -0.017175069078803062, 0.018294313922524452, 0.001162548316642642, 0.007454966194927692, 0.014923256821930408, -0.009426968172192574, -0.019093774259090424, -0.017748016864061356, 0.01072609145194292, -0.03469657152891159, -0.026981782168149948, 0.017761340364813805, -0.016229042783379555, 0.016668744385242462, -0.006342384032905102, 0.001405717572197318, -0.0002585753973107785, 0.012511552311480045, 0.004963315557688475, -0.001670538680627942, 0.035256195813417435, 0.0203595869243145, 0.013244390487670898, 0.010659469291567802, 0.02686186321079731, -0.006948641501367092, 0.03506965562701225, -0.012798025272786617, -0.010925956070423126, -0.013657445088028908, -0.034856464713811874, -0.011159132234752178, 0.014310337603092194, -0.015589473769068718, -0.0335773266851902, 0.0016830302774906158, -0.05740124359726906, -0.01119244284927845, -0.02046618051826954, 0.013843986205756664, 0.003857395378872752, -0.003624219447374344, 0.02197183109819889, 0.0033610640093684196, -0.0008435970521531999, 0.009793387725949287, -0.00361422635614872, -0.00605257973074913, -0.004047267138957977, 0.01353086344897747, -0.010439617559313774, -0.032724570482969284, 0.014403607696294785, 0.021945182234048843, 0.0038107603322714567, 0.046875014901161194, -0.034350138157606125, 0.0033377462532371283, 0.0063390531577169895, 0.006385688204318285, 0.015895932912826538, -0.02351745404303074, -0.01993320696055889, -0.02250480465590954, -0.009400319308042526, -0.0024233637377619743, 0.011458929628133774, -0.01388395857065916, 0.006059241946786642, 0.015949230641126633, -0.014030526392161846, 0.008007925935089588, -0.016215717419981956, 0.04165187478065491, -0.0167886633425951, -0.010492915287613869, 0.01165879424661398, -0.006515600718557835, -0.03488311171531677, 0.014017201960086823, -0.006758769974112511, -0.002891381038352847, -0.009740089997649193, 0.02310439944267273, -0.002506640739738941, -0.032724570482969284, 0.015895932912826538, 0.0019686706364154816, -0.002508306410163641, -0.020306289196014404, -0.0044936323538422585, -0.16522178053855896, -0.004110557958483696, -0.004573578480631113, -0.03216494992375374, 0.016202393919229507, -0.014123796485364437, 0.04842063784599304, 0.016708718612790108, -0.006638850551098585, 0.016455555334687233, -0.010293049737811089, 0.009347022511065006, 0.0035109627060592175, -0.019160395488142967, -0.0386672243475914, 0.007148506585508585, 0.003953997045755386, 0.02229161560535431, 0.012837998569011688, 0.013404282741248608, 0.017441555857658386, -0.030965758487582207, 0.024263616651296616, 0.014776689000427723, -0.010306374169886112, -0.025769267231225967, 0.008720777928829193, 0.01870736852288246, -0.015096473507583141, -0.02106577530503273, 0.007974615320563316, 0.01688193529844284, -0.0012633136939257383, -0.01638893410563469, -0.02055945061147213, -0.004203828051686287, 0.021731993183493614, -0.03371057286858559, 0.0001309532526647672, 0.014057175256311893, 0.006015937775373459, 0.015749365091323853, -0.007281749974936247, -0.02422364428639412, -0.0003031286469195038, 0.017841286957263947, 0.0009926630882546306, -0.0018853936344385147, -0.0004642698622774333, -0.018267665058374405, 0.021185696125030518, -0.008887332864105701, 0.026502106338739395, -0.00022026794613339007, 0.03192511200904846, -0.013470903970301151, -0.007348371669650078, 0.007868020795285702, 0.0059626405127346516, 0.016961880028247833, -0.0006137522286735475, -0.028034403920173645, -0.029633324593305588, 0.03304435312747955, 1.899758899526205e-05, -0.01965339668095112, -0.017961205914616585, 0.01328436378389597, -0.02218502014875412, 0.01638893410563469, -0.02830089069902897, -0.014323662035167217, 0.02066604606807232, -0.007894669659435749, 0.004663517698645592, 0.003102904884144664, 0.011019226163625717, 0.0049300044775009155, 0.005995951592922211, -0.028833864256739616, -0.020306289196014404, 0.04820745065808296, 0.0035109627060592175, -0.015922581776976585, 0.018680719658732414, -0.012804687954485416, -0.011219091713428497, -0.02146550640463829, -0.011705429293215275, -0.017441555857658386, 0.028327539563179016, -0.033417437225580215, -0.009433629922568798, 0.01525636576116085, 0.024343563243746758, 0.0012300028465688229, 0.0295267291367054, -0.04836734011769295, 0.01261814683675766, -0.026995105668902397, 0.02247815579175949, 0.008314386010169983, -0.009793387725949287, 0.002639884129166603, 0.025369536131620407, -0.0032361482735723257, -0.0020203024614602327, 0.026129024103283882, 0.05260448157787323, -0.00844096764922142, -0.018147746101021767, -0.015442905947566032, 0.021025802940130234, 0.02198515459895134, 0.014829986728727818, 0.03712160140275955, -0.014177094213664532, -0.002043620217591524, 0.014057175256311893, -0.012538201175630093, 0.040159549564123154, 0.011845335364341736, -0.004307091701775789, 0.03472322225570679, 0.011225753463804722, -0.017734691500663757, -0.08516915887594223, -0.050419289618730545, 0.0026198977138847113, 0.012038538232445717, 0.0018554138951003551, 0.011159132234752178, 0.005972634069621563, 0.024769941344857216, 0.01822769269347191, 0.02483656257390976, 0.011938605457544327, -0.01740158349275589, -0.017428232356905937, -0.006921993102878332, -0.00036995852133259177, -0.004690166562795639, -0.022358236834406853, -0.0036342127714306116, 0.0051232073456048965, 0.015589473769068718, -0.0244101844727993, 0.014190418645739555, -0.010013238526880741, -0.011745402589440346, -0.010412968695163727, 0.0007902997313067317, -0.024396860972046852, 0.0073217228055000305, 0.02422364428639412, 0.025969132781028748, 0.02381058968603611, 0.014776689000427723, -0.011765389703214169, 0.01475004106760025, -0.011085848324000835, 0.004576909821480513, -0.002366735367104411, -0.01769471913576126, 0.049513235688209534, -0.03112564980983734, 0.0030013069044798613, -0.00589935015887022, 0.008980602957308292, -0.032697923481464386, 0.017028503119945526, 0.018134422600269318, -0.03752133250236511, 0.00617916090413928, 0.003079587360844016, -0.040852416306734085, -0.04647528752684593, -0.011512226425111294, -0.0017854610923677683, 0.012398295104503632, 0.03754797950387001, -0.00839433167129755, -0.006089221686124802, -0.018680719658732414, -0.0249165091663599, -0.010666131041944027, 0.008973940275609493, -0.00047884334344416857, 0.0031795199029147625, 0.0003235315380152315, 0.01363079622387886, 0.008587534539401531, -0.031711921095848083, -0.031178947538137436, 0.035176247358322144, -0.011578848585486412, 0.02279794029891491, 0.016548825427889824, -0.026208970695734024, 0.028833864256739616, 0.006732121109962463, 0.02319766953587532, -0.021825263276696205, 0.011792037636041641, 0.012238402850925922, -0.0056428564712405205, -0.02341085858643055, 0.005409680772572756, 0.0037741183768957853, -0.014869960024952888, 0.022971156984567642, 0.025702646002173424, -0.011012564413249493, 0.007907994091510773, -0.014790013432502747, -0.033923760056495667, 0.0047867679968476295, 0.024063751101493835, 0.026995105668902397, -0.011465591378509998, -0.01626901514828205, 0.01318443100899458, -0.01037299633026123, -0.0018087787320837379, 0.0034376787953078747, 0.009946617297828197, -0.05268442630767822, 0.0025532760191708803, -0.051218751817941666, 0.004720146302133799, -0.0305127315223217, -0.014217067509889603, -0.012584836222231388, -0.017321636900305748, -0.011878645978868008, -0.004180510528385639, 0.007768088486045599, -0.044023606926202774, -0.022011803463101387, 0.01093261782079935, 0.0023051102180033922, 0.0058360593393445015, 0.004363720305263996, -0.007501601707190275, 0.018360935151576996, -0.03224489465355873, 0.015482879243791103, 0.020412882789969444, -0.020932532846927643, -0.0003916105779353529, 0.032724570482969284, -0.0006928655202500522, 0.00048508914187550545, 0.000512986967805773, 5.439035885501653e-05, 0.025662671774625778, -0.010766063816845417, -0.03746803477406502, 0.00834103487432003, -0.011279051192104816, -0.002508306410163641, 0.015749365091323853, 0.01738825999200344, 0.0002789782884065062, 0.014816662296652794, -0.0012766380095854402, -0.0031245569698512554, -0.012538201175630093, -0.01576269045472145, -0.02331758849322796, 0.0006016770494170487, 0.0057694376446306705, 0.008660818450152874, -0.004953322000801563, -0.01165879424661398, 0.018787315115332603, -0.00814783200621605, -0.0029230264481157064, 0.03411030024290085, 0.016308987513184547, -0.013297688215970993, -0.017881259322166443, 0.00880738627165556, -0.018241016194224358, 0.014470229856669903, -0.02338421158492565, -0.003784111700952053, -0.018587449565529823, 0.020892560482025146, -0.03325754404067993, 0.0030979083385318518, -0.014190418645739555, 0.014723392203450203, 0.014683418907225132, -0.014976554550230503, 0.007954629138112068, -0.010366333648562431, 0.014590148814022541, 0.003780780592933297, 0.016855286434292793, -0.014643445611000061, -0.0031761887948960066, 0.03147208318114281, 0.013617471791803837, -0.007048574276268482, -0.007534912321716547, -0.026222294196486473, 0.020599424839019775, 0.015176419168710709, 0.009307049214839935, -0.03794771060347557, 0.006855371408164501, 0.06443649530410767, 0.005626201163977385, 0.0016996857011690736, 0.017628097906708717, 0.003734145313501358, 0.005196491256356239, 0.01761477254331112, 0.010213104076683521, -0.012991228140890598, 0.007275087758898735, -0.008900657296180725, 0.03722819685935974, -0.007008600980043411, 0.01093928050249815, 0.01780131459236145, 0.03288446366786957, -0.0015023190062493086, 0.005276437383145094, -0.016255689784884453, 0.01388395857065916, -0.016149096190929413, 0.0036941722501069307, -0.006678823847323656, -0.017854610458016396, -0.016255689784884453, 0.029340188950300217, 0.020905883982777596, 0.011938605457544327, 0.0031911786645650864, 0.011179118417203426, -0.005043261218816042, -0.013251053169369698, -0.0315253809094429, 0.003910692874342203, -0.022531453520059586, 0.004446997307240963, -0.015189743600785732, 0.0017521502450108528, 0.009147156961262226, 0.0024033773224800825, 0.03421689569950104, 0.01312447153031826, 0.025782590731978416, -0.01800117827951908, -0.011145807802677155, 0.022771291434764862, -0.021612074226140976, 0.006545580457895994, -0.017175069078803062, -0.024037104099988937, 0.0039473348297178745, -0.012778039090335369, -0.01709512434899807, 0.006022599991410971, -0.00950691383332014, 0.08383672684431076, 0.007301736623048782, -0.02095918171107769, 0.01546955481171608, -0.014057175256311893, 0.02046618051826954, 0.014443580992519855, -0.014416932128369808, -0.014483554288744926, -0.018947206437587738, -0.0017771334387362003, 0.006255776155740023, 0.0188272874802351, -0.02910035103559494, 0.015229716897010803, 0.005336396861821413, 0.00020007324928883463, 0.017015177756547928, -0.035149600356817245, 0.013764039613306522, 0.02250480465590954, 0.03528284281492233, 0.008707454428076744, -0.0017821299843490124, -0.005346389953047037, -0.001348256366327405, 0.01597587950527668, -0.008887332864105701, -0.01596255600452423, -0.004886700306087732, 0.02126564085483551, -0.0058860257267951965, -0.026981782168149948, -0.016335636377334595, 0.003914023749530315, 0.029580026865005493, -0.01023309025913477, 0.013524201698601246, -0.0020502822007983923, -0.007588209584355354, -0.027021754533052444, 0.03685511648654938, -0.03285781294107437, -0.039120253175497055, -0.009493589401245117, -0.0029796548187732697, -0.003907361533492804, 0.0031695265788584948, -0.07376352697610855], "35a31964-52f0-4c13-bab7-e0ab575a3d7f": [-0.018114425241947174, -0.0028078053146600723, -0.016044601798057556, -0.00934198684990406, -0.02075379714369774, 0.015822339802980423, -0.003966003190726042, 0.008022300899028778, -0.015766773372888565, -0.018058858811855316, -0.0028286424931138754, -0.0005335177411325276, -0.021281670778989792, 0.03178359195590019, 0.011022849939763546, 0.029227569699287415, 0.015641750767827034, 0.024837877601385117, -0.0044140019454061985, 0.01766989938914776, -0.00047751792590133846, 0.0238654762506485, -0.01685030572116375, -0.020767688751220703, -0.014530436135828495, -0.004000731743872166, 0.020253704860806465, -0.009869861416518688, 0.006025407928973436, 0.014724915847182274, 0.013016270473599434, -0.0044140019454061985, -0.02424054592847824, -0.031422413885593414, -0.04084080457687378, -0.0041847932152450085, 0.00497660506516695, -0.008418207056820393, -0.0062685078009963036, 0.021559499204158783, 0.013884484767913818, -0.004236886277794838, -0.002028148854151368, 0.012842627242207527, -0.005792726296931505, 0.037256814539432526, -0.0051849763840436935, -0.01779492199420929, -0.0053377822041511536, 0.024046065285801888, 0.006021935027092695, 0.026838243007659912, 0.0062303063459694386, -0.006226833444088697, 0.01173825841397047, 0.008994701318442822, 0.007862549275159836, 0.01975361444056034, 2.0297902665333822e-06, -0.019434111192822456, 0.00026003021048381925, -0.0005669440142810345, 0.0001938288623932749, -0.00418826611712575, -0.00352147757075727, 0.0046050092205405235, 0.004410529043525457, 0.0254907738417387, -0.00888356938958168, 0.00573021499440074, 0.03750685974955559, 0.027574488893151283, -0.013127401471138, 0.028644129633903503, 0.020948275923728943, -0.009348932653665543, -0.040479626506567, 0.00345722958445549, -0.025351859629154205, 0.0008977336692623794, -0.00041978165972977877, -0.022392986342310905, -0.01825333945453167, 0.00790422409772873, 0.019975876435637474, 0.019184065982699394, 0.007334675174206495, 0.023754345253109932, 0.014947178773581982, -0.016683608293533325, 0.018183881416916847, 0.020378727465867996, 0.006445623468607664, 0.0374235138297081, -0.0220040250569582, 0.03281155973672867, -0.01883677951991558, 0.04695303365588188, -0.0006568041862919927, -0.025935299694538116, 0.012641201727092266, 0.024837877601385117, -0.013363556005060673, -0.0025733874645084143, -0.014919396489858627, -0.008445989340543747, -0.00798062700778246, -0.001274538692086935, 0.01346079632639885, 0.012356427498161793, -0.013564981520175934, 0.0242961123585701, 0.002470938256010413, -0.018308905884623528, -0.004941876512020826, -0.014120638370513916, 0.006070555187761784, -0.010522758588194847, -0.015864012762904167, 0.0005200604209676385, 0.010488029569387436, 0.0015732045285403728, 0.01400950737297535, 0.004077134653925896, -0.0009072840330190957, -0.0050321705639362335, -0.024768419563770294, -0.013182966969907284, 0.0027418211102485657, -0.019559133797883987, 0.03578432276844978, -0.003396454732865095, -0.02664376236498356, 0.0038340347819030285, -0.014655458740890026, -0.01605849340558052, 0.0028876811265945435, -0.00212191604077816, -0.008307075127959251, -0.020031442865729332, -0.008696035481989384, 0.01876732148230076, -0.0034763303119689226, -0.010592215694487095, 0.0024622560013085604, 0.017878269776701927, 0.002821696689352393, 0.007320783566683531, 0.002821696689352393, -0.0008465090068057179, -0.0017381651559844613, 0.01748931035399437, -0.020253704860806465, -0.03314495086669922, 0.0350341871380806, 0.00043844827450811863, -0.0028060688637197018, -0.0013657012023031712, 0.006765126716345549, -0.0157528817653656, -0.00048706826055422425, 0.022351311519742012, 0.005209286231547594, -0.01250228751450777, -0.018169989809393883, 0.01339828409254551, 0.01346079632639885, -0.01254396140575409, 0.0041083903051912785, 0.0062650348991155624, 0.006046244874596596, 0.0036465004086494446, -0.023490408435463905, 0.012766224332153797, -0.014197041280567646, -0.006671359296888113, 0.0036499733105301857, -0.01189106423407793, -0.03709011897444725, -0.021934568881988525, 0.012141110375523567, 0.007779201027005911, 0.019309088587760925, 0.022795837372541428, -0.015836229547858238, -0.01983696222305298, -0.007223543711006641, 0.01528057362884283, 0.006355329416692257, -0.00014813907910138369, 0.0037159575149416924, 0.021476151421666145, -0.009730947203934193, 0.016377996653318405, -0.5938864350318909, -0.006074028089642525, -0.016072385013103485, -0.015252790413796902, -0.01603071019053459, -0.004351490642875433, 0.030866757035255432, 0.00868214387446642, -0.01184244453907013, 0.051231592893600464, -0.010237984359264374, -0.009147507138550282, -0.0059073306620121, 0.00805702991783619, 0.006917932070791721, -0.05159277096390724, 0.05412101373076439, -0.029783226549625397, -0.026671545580029488, 0.018295014277100563, -0.01593347080051899, 0.018142208456993103, -0.022670814767479897, 0.013426067307591438, -0.017572659999132156, 0.006108756642788649, -0.01073112990707159, -0.024837877601385117, 0.012835681438446045, 0.02207348309457302, 0.0033599897287786007, 0.004848109092563391, -0.002889417577534914, -0.0037541589699685574, 0.03834034875035286, 0.004622373264282942, -0.01562785916030407, 0.022295745089650154, 0.01497496198862791, 0.028921958059072495, -0.015086092986166477, -0.007695852313190699, -0.005896911956369877, -0.03122793510556221, 0.014335956424474716, -0.009453117847442627, 0.004059770610183477, 0.03856261074542999, 0.0027591853868216276, -0.006987389177083969, -0.010307441465556622, -0.030700061470270157, 0.00312904454767704, -0.0253935344517231, 0.006011516321450472, -0.003102998249232769, 0.029866574332118034, 0.0035475241020321846, -0.005865656305104494, -0.014613784849643707, 0.00416742917150259, 0.04053519293665886, 0.013467741198837757, -0.02240687608718872, -0.008251509629189968, 0.006008043419569731, -0.00044365754001773894, 0.002059404505416751, -0.010995066724717617, -0.032339248806238174, -0.028810827061533928, 0.0034850125666707754, -0.01883677951991558, -0.03095010668039322, 0.015836229547858238, 0.008709927089512348, 0.018822887912392616, 0.00860574096441269, -0.010078232735395432, 0.017850488424301147, 0.035978805273771286, -0.007786146830767393, -0.025226837024092674, -0.0010618262458592653, 0.04398026689887047, -0.018475601449608803, -0.0026098524685949087, 0.018156100064516068, 0.007230489514768124, 0.01748931035399437, 0.02506013959646225, 0.039146050810813904, -0.0013587555149570107, -0.02337927743792534, 0.004087553359568119, 0.02567136287689209, -0.0191423911601305, -0.00035379736800678074, -0.013502470217645168, -0.037617992609739304, -0.0015332666225731373, -0.005674649029970169, 0.010390790179371834, -0.0016956226900219917, -0.010258820839226246, 0.0045286063104867935, -0.013870593160390854, 0.02847743220627308, 0.03270042687654495, -0.02564357966184616, -0.02444891631603241, -0.01883677951991558, -0.01385670155286789, 0.026115888729691505, -0.004750869236886501, -0.031005673110485077, 0.01413452997803688, 0.00613653939217329, 0.022031808272004128, -0.015030527487397194, 0.01730872131884098, -0.008445989340543747, -0.006525499280542135, -0.004542497452348471, 0.016989219933748245, -0.007195760961622, 0.011106198653578758, -0.005511424969881773, -0.004420947749167681, -0.01743374578654766, 0.04912009835243225, -0.004181320313364267, 0.02057320810854435, -0.0130787817761302, 0.0009272529860027134, 0.013558035716414452, 0.0018631881102919579, -0.004344544839113951, 0.015641750767827034, 0.001455995487049222, 0.01292597595602274, 7.803076732670888e-05, -0.010092124342918396, -0.015433378517627716, -0.012585636228322983, -0.024796202778816223, 0.01469713356345892, -0.016433561220765114, -0.02933870069682598, 0.00319329253397882, 0.012050815857946873, -0.007966735400259495, -0.01929519698023796, 0.008188998326659203, -0.019670264795422554, -0.01274538692086935, -0.002757448935881257, 0.010522758588194847, -0.011772987432777882, -0.015072201378643513, 0.024365568533539772, 0.021587282419204712, -0.05373205244541168, 0.025726929306983948, -0.015558402054011822, -0.0061434851959347725, -0.02903308905661106, 0.0380902998149395, -0.012710658833384514, -0.05503784492611885, -0.001133888028562069, -0.012293916195631027, 0.010765857994556427, 0.002194846048951149, -0.014433195814490318, 0.028227386996150017, -0.023420952260494232, 0.008369586430490017, -0.011564616113901138, -0.007046428043395281, -0.005164138972759247, -0.009210018441081047, 0.010536650195717812, -0.016891978681087494, 0.005747579038143158, -0.018642298877239227, 0.053370874375104904, -0.0021687995176762342, -0.01346079632639885, 0.017600441351532936, 0.011335407383739948, 0.007355512119829655, -0.02087881974875927, -0.0051085734739899635, -0.0020403037779033184, 0.010112960822880268, 0.010863098315894604, 0.002528240205720067, 0.033561695367097855, 0.04142424464225769, 0.03245038166642189, -0.008112595416605473, -0.013189912773668766, -0.006862366572022438, 0.006327546667307615, -0.011425700969994068, 0.033256083726882935, -0.006841529160737991, 0.050203628838062286, -0.00319329253397882, 0.007081156596541405, -0.003099525347352028, -0.009911535307765007, -0.02365710586309433, 0.04339682683348656, 0.01789216138422489, -0.009210018441081047, 0.019545242190361023, -0.0031516181770712137, 0.00845293514430523, 0.011022849939763546, 0.007855603471398354, 0.01978139579296112, -0.0007036877796053886, 0.002674100222066045, -0.007223543711006641, 0.02087881974875927, -0.002083714585751295, -0.0019795286934822798, -0.04895339906215668, -0.01282178983092308, -0.007032536435872316, -0.017656007781624794, -0.012474504299461842, 0.03253373131155968, 0.005157193634659052, 0.04450814425945282, 0.008828003890812397, 0.007966735400259495, -0.01766989938914776, -0.020614882931113243, 0.0217678714543581, 0.00505300797522068, -0.033839523792266846, 0.021448368206620216, -0.009668435901403427, 0.021351128816604614, 0.02447669953107834, 0.009626761078834534, 0.03378395736217499, 0.004195211920887232, -0.0003459834260866046, -0.007445806637406349, 0.021573390811681747, -0.010411626659333706, -0.007279109209775925, 0.010828370228409767, 0.009001647122204304, 0.01153683289885521, 0.020823253318667412, 0.01748931035399437, 0.012988487258553505, -0.014092856086790562, -0.00409102626144886, 0.023643214255571365, -0.004354963544756174, 0.005275270435959101, -0.022754162549972534, 0.0025803332682698965, -0.00505300797522068, -0.007459698244929314, -0.02042040228843689, -0.047730952501297, -0.018642298877239227, 0.015405596233904362, 0.00810564961284399, 0.0037402675952762365, 0.0036951203364878893, 0.021351128816604614, -0.019434111192822456, -0.023643214255571365, -0.025115706026554108, 0.010751967318356037, 0.008466826751828194, -0.0059073306620121, -0.014023398980498314, -0.020198140293359756, -0.00010017023305408657, -0.02903308905661106, 0.05375983566045761, -0.019364653155207634, 0.017392070963978767, 0.010036557912826538, 0.007369403727352619, 0.01042551826685667, -0.0029831845313310623, 0.026518739759922028, -0.0025820694863796234, -0.015502836555242538, 0.019281305372714996, 0.005973314866423607, -0.011349298059940338, -0.010738075710833073, -0.026504848152399063, 0.038784872740507126, 0.03583988919854164, -0.0075013721361756325, 0.01455821841955185, -0.024337785318493843, -0.028060689568519592, 0.016044601798057556, -0.005209286231547594, 0.0018354052444919944, 0.007084629498422146, 0.017294829711318016, 0.009703163988888264, 0.008939134888350964, -0.008612686768174171, 0.010911718010902405, 0.02640760876238346, 0.005042589269578457, -0.015044419094920158, -0.022142939269542694, -0.009501738473773003, 0.06117785722017288, -0.002048986032605171, -0.026060322299599648, -0.002446628175675869, -0.040035102516412735, -0.025726929306983948, 0.01065472699701786, -0.03920161724090576, 0.02396271750330925, 0.0272549856454134, -0.008043138310313225, -0.011328461579978466, 0.00976567529141903, 0.013870593160390854, 0.028394082561135292, 0.01216194685548544, -0.010279658250510693, 0.014961070381104946, 0.04209103435277939, -0.03031110018491745, 0.01730872131884098, 0.0038757091388106346, -0.02460172213613987, 0.0272549856454134, -0.013669167645275593, -0.0032123932614922523, 0.002498721005395055, 0.006928350776433945, 0.015613967552781105, -0.025101814419031143, -0.00540376640856266, 0.005511424969881773, 0.013488578610122204, 0.028352409601211548, -0.029783226549625397, 0.03342277929186821, 0.02768561989068985, 0.0440080501139164, 0.02246244251728058, -0.023059774190187454, 0.05253738909959793, -0.008348749950528145, -0.00020967377349734306, -0.01812831684947014, 0.011786878108978271, 0.00499744201079011, 0.015086092986166477, 0.0062303063459694386, -0.004007677547633648, -0.05812174454331398, -0.00012892983795609325, -0.0028963631484657526, -0.04695303365588188, 0.006011516321450472, 0.04881448671221733, -0.009911535307765007, -0.010890881530940533, -0.020253704860806465, 0.004205630626529455, -0.0022191558964550495, -0.01950356736779213, -0.015836229547858238, 0.028894174844026566, 0.009626761078834534, 0.014294281601905823, -0.009453117847442627, -0.030450014397501945, 0.014322064816951752, -0.035728760063648224, 0.016072385013103485, 0.01242588460445404, -0.011522941291332245, -0.012377263978123665, -0.015766773372888565, 0.012099435552954674, 0.011835498735308647, 0.014877721667289734, -0.01855895109474659, 0.023948825895786285, 0.006337964907288551, 0.01451654452830553, -0.028505215421319008, -0.0011217329883947968, -0.018017185851931572, 0.005942059215158224, -0.004872418940067291, 0.0058760750107467175, 0.022476334124803543, 0.007181869354099035, 0.041535377502441406, 0.013134347274899483, 0.0006520290044136345, 0.014849938452243805, -0.011120090261101723, 0.001781575963832438, 0.01641966961324215, 0.003073479048907757, -0.0031394632533192635, -0.012627310119569302, -0.015363921411335468, 0.0028060688637197018, -0.00841126125305891, 0.00772363506257534, -0.021781763061881065, -0.015072201378643513, -0.042202163487672806, -0.014724915847182274, 0.03267264366149902, -0.027393899857997894, 0.01922573894262314, 0.021753979846835136, -0.018572842702269554, 0.015697315335273743, 0.0022226287983357906, -0.014655458740890026, 0.016461344435811043, -0.0018215137533843517, 0.021559499204158783, -0.023726562038064003, -0.023601539433002472, -0.000587347021792084, -0.008043138310313225, 0.012856518849730492, 0.0104533014819026, -0.03306160494685173, 0.021809546276926994, -0.010078232735395432, -0.040479626506567, -0.02075379714369774, 0.011446538381278515, 0.030172185972332954, -0.011439592577517033, -0.00671650655567646, -0.045313846319913864, -0.012280024588108063, 0.007060319185256958, 0.02060099132359028, -0.01791994459927082, 0.0036465004086494446, 0.0099532101303339, -0.0018961802124977112, -0.01289819274097681, -0.004382746294140816, 0.0024448917247354984, 0.00921696424484253, -0.03270042687654495, -0.020837144926190376, 0.036617811769247055, 2.349605165363755e-05, 0.015738990157842636, 0.0006407422479242086, -0.0019968932028859854, -0.010001829825341702, 0.006167795043438673, 0.009078050032258034, 0.03845147788524628, -0.014377630315721035, 0.015530618838965893, 0.01690587028861046, 0.018211664631962776, 0.06223360821604729, 0.0065324450843036175, 0.01968415640294552, -0.013342718593776226, 0.014377630315721035, -0.011550724506378174, 0.0004770838131662458, -0.0014429723378270864, -0.00957119558006525, -0.005796199198812246, -0.009223910048604012, 0.019434111192822456, 0.01685030572116375, 0.00636574812233448, -0.014016453176736832, 0.018961802124977112, 0.01214805617928505, 0.012023032642900944, -0.030727842822670937, -0.027241094037890434, 0.014169258996844292, -0.002493511652573943, -0.025685254484415054, 0.020712122321128845, -0.025296295061707497, -0.011529887095093727, 0.037590209394693375, 0.010265766642987728, -0.011974412947893143, -0.0041396464221179485, -0.011099252849817276, -0.005518370773643255, 0.0025942246429622173, 0.026254802942276, 0.020350946113467216, 0.021740088239312172, 0.002799123292788863, -0.04889783263206482, 0.023893259465694427, -0.023587647825479507, 0.0050321705639362335, 0.016655825078487396, 0.004872418940067291, -0.00857795774936676, -0.01858673430979252, 0.0236293226480484, -0.0165169108659029, 0.0008734236471354961, 0.00401462335139513, -0.016044601798057556, -0.016405779868364334, -0.03308938816189766, -0.020128682255744934, -0.03181137517094612, 0.011717421002686024, 0.011022849939763546, -0.01618351601064205, 0.02908865548670292, -0.02026759646832943, -0.03122793510556221, 0.00868214387446642, 0.0021549081429839134, 0.05253738909959793, -0.010793641209602356, 0.0350341871380806, -0.0011460429523140192, -0.010078232735395432, 0.0118146613240242, 0.01876732148230076, -0.005247487686574459, 0.016350213438272476, 0.025921408087015152, 0.014294281601905823, -0.025199053809046745, 0.010168527252972126, -0.01080753281712532, -0.008369586430490017, -0.02967209555208683, -0.007536100689321756, 0.024282220751047134, 0.02304588258266449, -0.006567173637449741, -0.016377996653318405, 0.019864745438098907, -0.023643214255571365, 0.015544510446488857, 0.006046244874596596, -0.035728760063648224, 0.023337602615356445, -0.03453409671783447, -0.029811009764671326, 0.01562785916030407, 0.03670115768909454, 0.022115156054496765, 0.011627127416431904, -0.037284597754478455, 0.0025039303582161665, -0.0209066029638052, -0.00757082924246788, 0.012057761661708355, 0.004667520523071289, 0.019517458975315094, -0.01993420161306858, -0.021128864958882332, 0.0242961123585701, -0.0025890152901411057, -0.008098703809082508, -0.021962352097034454, -0.0032679589930921793, 0.02967209555208683, 0.001104368711821735, -0.021198322996497154, 0.005924695171415806, 0.015586184337735176, 0.003082161070778966, 0.005935113411396742, -0.008154269307851791, 0.019309088587760925, -0.015989035367965698, -0.019364653155207634, 0.00772363506257534, -0.009501738473773003, -0.010633889585733414, 0.0039486391469836235, -0.018961802124977112, 0.0034190283622592688, -0.014724915847182274, -0.016141841188073158, 0.005115519277751446, -0.034784141927957535, -0.025879735127091408, -0.0337006114423275, 0.005292634945362806, -0.012557853013277054, 0.01791994459927082, -0.02656041458249092, 0.017142025753855705, 0.03206142038106918, -0.005282216239720583, 0.015155550092458725, -0.020587099716067314, -0.012995433062314987, -0.03147798031568527, 0.00825845543295145, 0.01853116787970066, 0.01572509855031967, 0.03750685974955559, -0.024059956893324852, -0.022448550909757614, -0.022142939269542694, -0.012995433062314987, 0.010932555422186852, -0.006910986732691526, -0.007973681204020977, -0.0228652935475111, 0.0009437490371055901, 0.026504848152399063, 0.0019274359801784158, -0.01705867610871792, 0.0030665332451462746, -0.02072601392865181, -0.036367762833833694, 0.02585195191204548, -0.00229729525744915, 0.01822555623948574, 0.0026480539236217737, -0.015864012762904167, 0.0270188320428133, -0.03395065665245056, -0.01819777302443981, -0.017961619421839714, -0.013794190250337124, -0.006459515076130629, -0.012175838463008404, -0.0280190147459507, 0.011960521340370178, 0.00012003063602605835, 0.001295375870540738, -0.010140744037926197, -0.018364470452070236, 0.002305977512151003, 0.036284416913986206, 0.0060775005258619785, 0.005716323386877775, -0.021101081743836403, 0.03495083749294281, -0.03433961421251297, 0.015099984593689442, -0.019739722833037376, -0.008751600980758667, -0.005039116367697716, 0.03642332926392555, 0.014092856086790562, -0.017239265143871307, -0.014224824495613575, -0.0003637818153947592, -0.03517309948801994, -0.009849024005234241, 0.00980040431022644, 0.0216706320643425, 0.009314203634858131, -0.0033269976265728474, 0.00011688336235238239, 0.0264909565448761, -0.015433378517627716, 0.008209834806621075, -0.02182343602180481, 0.027588380500674248, 0.0024101631715893745, 0.03339499980211258, -0.012870410457253456, -0.018322795629501343, -0.005584354978054762, -0.01184244453907013, -0.0019586917478591204, 0.00880716647952795, -0.006980443838983774, 0.02664376236498356, 0.01277317013591528, -0.02597697451710701, -0.024740636348724365, 0.0036673375871032476, 0.03247816488146782, 0.01873954012989998, -7.781371823512018e-05, -0.008723817765712738, -0.01618351601064205, 0.020198140293359756, 0.0011295469012111425, -0.016405779868364334, -0.01471102423965931, -0.0022261017002165318, -0.02781064249575138, 0.018183881416916847, -0.01214805617928505, -0.049953583627939224, 0.0074944267980754375, -0.01603071019053459, 0.032644860446453094, -0.012557853013277054, -0.016002926975488663, 0.03331165015697479, 0.0011981358984485269, 0.028310734778642654, -0.013023216277360916, 0.014203987084329128, -0.025101814419031143, -0.01871175691485405, -0.010356061160564423, -0.024407243356108665, -0.013141293078660965, -0.02671322040259838, 0.00938366074115038, -0.0313112847507, -0.005886493716388941, -0.0012267869897186756, -0.005931640509516001, -0.010078232735395432, 0.01907293312251568, 0.00045668077655136585, -0.0061434851959347725, 0.05262073874473572, 0.002194846048951149, -0.002958874683827162, 0.0091891810297966, -0.027157746255397797, -0.009321149438619614, -0.002094133058562875, 0.0011564615415409207, 0.005077317822724581, 0.005570463370531797, -0.018392253667116165, -0.0022608302533626556, 0.015864012762904167, -0.017447635531425476, 0.008675198070704937, 0.19425776600837708, -0.005309998989105225, -0.005553099326789379, 0.012842627242207527, -0.024101631715893745, 0.008814112283289433, 0.014266498386859894, -0.014120638370513916, -0.01413452997803688, 0.016586367040872574, -0.018183881416916847, 0.006501189433038235, -0.012606472708284855, 0.010460247285664082, -0.015197224915027618, -0.01843392848968506, -0.0061052837409079075, -0.032617077231407166, 0.017447635531425476, -0.011404864490032196, 0.01889234595000744, -0.023907151073217392, -0.033228300511837006, -0.026810459792613983, 0.031422413885593414, -0.013426067307591438, -0.00679290946573019, -0.011425700969994068, 0.0209066029638052, 0.0008408656576648355, -0.023004207760095596, -0.0017720256000757217, -0.022142939269542694, 0.007376349531114101, -0.012398101389408112, -0.024059956893324852, 0.01621129922568798, -0.00018992189143318683, 0.01690587028861046, -0.021420584991574287, 0.00011167407501488924, -0.006074028089642525, -0.005622556433081627, -0.011328461579978466, -0.008557121269404888, 0.03211698681116104, -0.009550358168780804, -0.00014162747538648546, 0.0225319005548954, -0.011008958332240582, -0.01996198482811451, -0.026060322299599648, 0.0002676270960364491, -0.016836414113640785, -0.00895997229963541, -0.003172455355525017, 0.006025407928973436, 0.028505215421319008, 0.014197041280567646, 0.01034911535680294, -0.007355512119829655, 0.02292085997760296, -0.015072201378643513, 0.028227386996150017, -0.006084446329623461, 0.020184248685836792, -0.03892378881573677, -0.0015949098160490394, -0.0038930734153836966, -0.0001580150128575042, -0.009862915612757206, -0.016044601798057556, -0.016002926975488663, -0.022643031552433968, -0.01773935556411743, -0.015308355912566185, 0.023309819400310516, 0.00032666567130945623, 0.015266682021319866, 0.005386401899158955, -0.014391521923244, 0.001989947399124503, -0.007633341010659933, 0.0060775005258619785, -0.01804496720433235, -0.030422233045101166, 0.017558768391609192, -0.0057996721006929874, -0.01107841543853283, 0.001679126638919115, -0.013439958915114403, -0.004914093296974897, 0.015266682021319866, 0.022476334124803543, 0.018308905884623528, 0.05359313637018204, 0.03267264366149902, 0.03375617414712906, 0.013592764735221863, 0.014224824495613575, -0.019878637045621872, 0.026852134615182877, -0.000273270474281162, 0.005400293506681919, -0.003507586196064949, -0.012446721084415913, -0.010439409874379635, 0.0038652904331684113, -0.003005758160725236, -0.013016270473599434, 0.007397186476737261, -0.0270188320428133, -0.01466935034841299, -0.00961286947131157, 0.0011035004863515496, 0.020309271290898323, 0.01207165326923132, 0.010390790179371834, -0.005865656305104494, -0.015850121155381203, -0.019698048010468483, 0.012919030152261257, 0.0006893622339703143, 0.011898010037839413, 0.03317273408174515, -0.033283866941928864, -0.020837144926190376, 0.0052579063922166824, 0.004782124888151884, -0.00921696424484253, 0.024560049176216125, -0.045925069600343704, -0.02579638548195362, -0.013537198305130005, 0.002771340310573578, 0.004500823561102152, -0.007855603471398354, -0.0228652935475111, -0.00563297513872385, -0.00669219670817256, 0.000861268665175885, 0.03364504501223564, 0.0008925243746489286, 0.01898958534002304, 0.019128499552607536, -0.02676878683269024, -0.013690004125237465, -0.004327180329710245, 0.01042551826685667, -0.0016973591409623623, -0.021809546276926994, 0.006435205228626728, -0.0010149426525458694, -0.0270188320428133, 0.008696035481989384, -0.023851586505770683, 0.004549443256109953, -0.022518008947372437, 0.026824351400136948, 0.0010913454461842775, -0.03056114725768566, 0.0067685991525650024, 0.007820875383913517, -0.013564981520175934, -0.005716323386877775, -0.015947362408041954, -0.17558768391609192, 0.017086459323763847, 0.01544727012515068, -0.031366851180791855, 0.01251617819070816, -0.01919795572757721, 0.025782493874430656, 0.02105940878391266, -0.02060099132359028, -0.016989219933748245, 0.02169841341674328, 0.004559861961752176, 0.01950356736779213, -0.01382891833782196, -0.023031990975141525, 0.014377630315721035, -0.012891246937215328, 0.0017355605959892273, 0.02075379714369774, 0.02628258615732193, 0.03403400257229805, -0.025199053809046745, 0.0044140019454061985, 0.031339067965745926, -0.0071124122478067875, -0.009335041046142578, 0.004653628915548325, 0.008897460997104645, -0.018183881416916847, -0.04075745493173599, -0.012266132980585098, 0.002599433995783329, 0.009286421351134777, 0.011731312610208988, -0.014794372953474522, 0.0012814844958484173, 0.023698780685663223, -0.003085633972659707, -0.008355694822967052, 0.007598612457513809, -0.0023198688868433237, 0.021934568881988525, 0.0029554017819464207, -0.01370389573276043, -0.007452752441167831, 0.02021203190088272, 0.007522209547460079, -0.0027800225652754307, -0.0123147526755929, -0.025143489241600037, 0.011453484185039997, -0.0025681781116873026, 0.025713037699460983, -0.005848292261362076, 0.02396271750330925, 0.008175106719136238, -0.011821607127785683, 0.003155091078951955, 0.014280389994382858, 0.01587790437042713, -0.004740450531244278, -0.014655458740890026, -0.005862183403223753, 0.035700976848602295, -0.0013405230129137635, -0.002757448935881257, -0.023448733612895012, 0.03125571832060814, -0.025296295061707497, 0.010508866980671883, -0.009084994904696941, -0.008841895498335361, 0.012703713029623032, 0.006129593588411808, 0.019573025405406952, 0.026227019727230072, -0.0033530439250171185, 0.0036395546048879623, 0.011849390342831612, -0.027949556708335876, -0.014627676457166672, 0.04600841552019119, 0.007390240672975779, -0.032617077231407166, 0.025171272456645966, 1.7391419532941654e-05, -0.011300678364932537, -0.03122793510556221, -0.013606656342744827, -0.037562426179647446, 0.02139280177652836, -0.045286063104867935, -0.01871175691485405, -0.010099070146679878, 0.016405779868364334, 0.011710476130247116, -0.007327729370445013, -0.042174383997917175, 0.022601356729865074, -0.049953583627939224, 0.021476151421666145, 0.016655825078487396, -0.005539207719266415, 0.008265401236712933, 0.03497862070798874, -0.009585087187588215, -0.01019630953669548, -0.008390423841774464, 0.03547871112823486, -0.009779566898941994, 0.009119723923504353, -0.006976970937103033, 0.016044601798057556, 0.035367581993341446, -0.0037958333268761635, 0.033589478582143784, -0.0024952481035143137, -0.022295745089650154, 0.004042406100779772, -0.017253156751394272, 0.0387570895254612, 0.014766590669751167, 0.009980992414057255, 0.0448693186044693, 0.00780003797262907, -0.01547505334019661, -0.10307440906763077, -0.03461744263768196, -0.007591666653752327, -0.00505300797522068, -0.008696035481989384, -0.0011304151266813278, -0.014474870637059212, 0.036895640194416046, 0.007925060577690601, 0.005063426215201616, -0.0022017916198819876, -0.024073848500847816, -0.018517276272177696, -0.009897643700242043, 0.0058031450025737286, -0.029227569699287415, -0.02908865548670292, -0.02268470637500286, -0.0018666608957573771, 0.014683241955935955, -0.02121221460402012, 0.006563700735569, -0.025074031203985214, -0.006223360542207956, 0.0038861276116222143, 0.00499744201079011, -0.031672459095716476, 0.027588380500674248, -0.002062877407297492, 0.03158911317586899, 0.032922688871622086, -0.004195211920887232, -0.017850488424301147, 0.0007371139945462346, -0.03361726179718971, 0.0035093226470053196, 0.008571012876927853, -0.027213312685489655, 0.0582328736782074, -0.02255968190729618, 0.008265401236712933, -0.009091940708458424, 0.0016713127261027694, -0.016808630898594856, 0.010092124342918396, 0.02105940878391266, -0.00989069789648056, 0.019892528653144836, -0.0025629689916968346, -0.021142756566405296, -0.01666971668601036, -0.01373862475156784, -0.007966735400259495, 0.014933287166059017, 0.028032906353473663, 0.0008117804536595941, 0.023573756217956543, -0.015030527487397194, -0.015377813018858433, -0.014891613274812698, 0.009855969808995724, 0.0033113695681095123, -0.01404423639178276, -0.0012866937322542071, 0.028644129633903503, -6.663545354967937e-05, -0.046591855585575104, -0.021087191998958588, 0.02103162556886673, -0.041952118277549744, 0.005105100572109222, 0.0048689465038478374, -0.024073848500847816, 0.024101631715893745, 0.000650292553473264, 0.023670997470617294, -0.013988669961690903, 0.0015341348480433226, 0.011529887095093727, -0.012064707465469837, -0.020378727465867996, -0.0038930734153836966, -0.014377630315721035, -0.007675015367567539, 0.027616163715720177, 0.030088838189840317, -0.015266682021319866, 0.00757082924246788, -0.012029978446662426, -0.04473040625452995, -0.006438678130507469, 0.004893256351351738, 0.03339499980211258, -0.01718369871377945, 0.004038933198899031, 0.020225921645760536, -0.01996198482811451, -0.021087191998958588, -0.014183150604367256, 0.020031442865729332, -0.03825699910521507, -0.01096033863723278, -0.06590094417333603, 0.036006588488817215, -0.02814403735101223, 0.00661579379811883, -1.8680175344343297e-05, -0.03025553561747074, 0.012557853013277054, -0.0037194304168224335, -0.007612503599375486, -0.030172185972332954, -0.009272529743611813, 0.003941693343222141, 0.00598373357206583, 0.01061999797821045, -0.015377813018858433, -0.004653628915548325, 0.029505398124456406, -0.018267231062054634, 0.035061970353126526, 0.028560779988765717, -0.012446721084415913, -0.005566990468651056, 0.03550649434328079, 0.026852134615182877, 0.0026497903745621443, -0.008772438392043114, 0.0054593319073319435, 0.034172918647527695, -0.006605375092476606, -0.026685437187552452, 0.014502652920782566, -0.01332188118249178, 0.01150904968380928, 0.02551855705678463, 0.01871175691485405, 0.009772621095180511, -0.0018649245612323284, -0.00964759849011898, 0.017086459323763847, -0.002300768159329891, -0.01993420161306858, -0.01469713356345892, -0.0037472133990377188, -0.0005764943780377507, -0.022184614092111588, 0.003248858265578747, -0.017836596816778183, -0.00409102626144886, 0.018670082092285156, 0.008168160915374756, 0.032644860446453094, -0.0006854552775621414, -0.01965637318789959, -0.039090484380722046, -0.002194846048951149, -0.004837690386921167, 0.026046432554721832, -0.025421317666769028, -0.01998976804316044, -0.019267413765192032, -0.007529155351221561, 0.0068762581795454025, -0.003653446212410927, -0.01825333945453167, -0.014106747694313526, -0.005028697662055492, 0.005212759133428335, 0.013537198305130005, 0.0003904794284608215, 0.012300861068069935, 0.009717055596411228, -0.0035666245967149734, -0.015488944947719574, -0.0033912453800439835, 0.010981176048517227, 0.014065072871744633, 0.006501189433038235, -0.016919761896133423, -0.03308938816189766, 0.012210567481815815, 0.010564432479441166, 0.011703530326485634, -0.03886822238564491, 0.0013240269618108869, 0.030477797612547874, 0.0026914644986391068, -0.006008043419569731, 0.012627310119569302, -0.015947362408041954, -0.01605849340558052, 0.011759095825254917, 0.017017001286149025, 0.004973132163286209, -0.007779201027005911, 0.018628407269716263, 0.05934419110417366, -0.002552550286054611, -0.006414367817342281, 0.023282036185264587, 0.017878269776701927, 0.0016782584134489298, 0.006480352021753788, -0.024685071781277657, -0.005886493716388941, -0.007466643583029509, -0.012877356261014938, -0.002118443138897419, -0.009300312958657742, -0.01075891312211752, 0.026421500369906425, 0.05048145726323128, 0.008751600980758667, -0.016766956076025963, 0.012036924250423908, -0.009335041046142578, -0.0060392990708351135, -0.016794739291071892, -0.012613418512046337, -0.02301809936761856, -0.002745294012129307, -0.0011911900946870446, 0.011515995487570763, 0.011425700969994068, -0.010279658250510693, 0.03206142038106918, 0.027296660467982292, 0.020156465470790863, -0.013821973465383053, 0.005692013539373875, 0.00434107193723321, 0.00044213817454874516, -0.004466095007956028, -0.013620547018945217, -0.004698776174336672, 0.002552550286054611, -0.036006588488817215, -0.008890515193343163, 0.01736428774893284, -0.014183150604367256, 0.07907002419233322, 0.01907293312251568, -0.006480352021753788, 0.014752699062228203, 0.0036499733105301857, -0.0007792224059812725, 0.0123147526755929, -0.020031442865729332, -0.024796202778816223, -0.022059591487050056, -0.008772438392043114, -0.0023684888146817684, 0.012293916195631027, -0.024518374353647232, 0.015822339802980423, 0.00772363506257534, -0.038284782320261, 0.01965637318789959, -0.008619632571935654, 0.005375983659178019, 0.031366851180791855, 0.028560779988765717, 0.030366666615009308, -0.008230672217905521, 0.0023893259931355715, -0.013592764735221863, 0.00964759849011898, -0.005160666536539793, -0.016225190833210945, -0.01700310967862606, 0.025532448664307594, 0.011675747111439705, -0.0236293226480484, -0.015086092986166477, -0.006383112166076899, 0.031116804108023643, 0.0009029429638758302, -0.004931457806378603, -0.006403949111700058, 0.005066899117082357, -0.03839591145515442, 0.02383769489824772, -0.040368497371673584, -0.053954314440488815, -0.02610199712216854, 0.012078598141670227, -0.00031038664747029543, -0.017169807106256485, -0.05089820176362991], "23d3f456-47be-4dd3-8b8c-6c00f1d47889": [-0.025644084438681602, -0.001642038463614881, 0.003044885816052556, 0.010824708268046379, -0.021817024797201157, 0.03354961425065994, -0.015517743304371834, 0.0033207412343472242, -0.017529044300317764, -0.010021585039794445, 0.0030710746068507433, 0.006791631691157818, -0.02086724527180195, 0.011935113929212093, 0.007682051043957472, 0.027920763939619064, 0.014470190741121769, 0.0293035339564085, 0.005880260840058327, -0.0030902796424925327, -0.0034447016660124063, 0.029890162870287895, -0.016537360846996307, -0.04125959798693657, -0.021509744226932526, -0.008722620084881783, 0.0074865082278847694, -0.005789473187178373, -0.003287568688392639, 0.0023255664855241776, -0.0004052718577440828, -0.008506125770509243, -0.025658050552010536, -0.010377752594649792, -0.03380102664232254, 0.007029077038168907, -0.004577804356813431, 0.01308043859899044, 0.0030204427894204855, 0.025490442290902138, 0.015266330912709236, -0.011851309798657894, -0.008129007183015347, 0.005136498715728521, -0.022459523752331734, 0.04301948845386505, 0.002287156181409955, -0.01846485771238804, -0.013764838688075542, 0.028004568070173264, 0.022417621687054634, 0.02043425664305687, 0.002367468550801277, -0.011816391721367836, 0.0036804010160267353, 0.015140624716877937, 0.03572852164506912, 0.04053329676389694, -0.0015966445207595825, 0.0017232237150892615, -0.00027280012727715075, -0.001443003537133336, 0.001098184147849679, -0.005765030160546303, 0.00362453144043684, 0.008771506138145924, 0.011257696896791458, -0.0002559956337790936, -0.0013234078651294112, 0.011942097917199135, 0.035560913383960724, 0.015783123672008514, -0.007926479913294315, 0.010559328831732273, 0.024596530944108963, -0.026957016438245773, -0.01930289901793003, -0.004975873976945877, -0.011097072623670101, -0.006592596881091595, 0.005059678107500076, -0.028828643262386322, -0.011725603602826595, 0.026747506111860275, 0.04170655459165573, 0.01768268458545208, 0.005363468546420336, 0.037181127816438675, 0.012326200492680073, -0.02345120720565319, 0.018241379410028458, 0.018283281475305557, -0.0017799661727622151, 0.011921146884560585, -0.02055996283888817, 0.038270581513643265, -0.04388546198606491, 0.04405307024717331, 0.005649799481034279, -0.0060373940505087376, -0.0030867878813296556, 0.012123673222959042, -0.008205827325582504, -0.002604913664981723, -0.007926479913294315, -0.0022696969099342823, -0.010154275223612785, -0.02148180827498436, 0.005838358774781227, 0.02331153303384781, -0.016355784609913826, 0.018925780430436134, 0.0037816644180566072, -0.03374515473842621, -0.024917781352996826, -0.018855944275856018, -0.005799948703497648, -0.01428163144737482, -0.024903813377022743, -0.011900195851922035, 0.006435463670641184, 0.006564661860466003, 0.0007987587596289814, -0.015699319541454315, 0.008561994880437851, 0.011020251549780369, -0.011404354125261307, -0.028242014348506927, -0.018744204193353653, -0.01838105358183384, 0.04335470497608185, 0.00273934961296618, -0.008129007183015347, 0.009777155704796314, -0.0025612658355385065, 0.0006547202938236296, -0.0031775757670402527, -0.015126657672226429, -0.017934096977114677, -0.02842358872294426, -0.003058853093534708, 0.009846992790699005, 0.005695193540304899, -0.0069871749728918076, -0.008233762346208096, 0.010650116950273514, 0.006330708507448435, 0.009840009734034538, -0.0063621350564062595, -0.01220747735351324, -0.009358135052025318, -0.012179543264210224, -0.010712970048189163, -0.03902481868863106, 0.03452732786536217, -0.015545678324997425, 0.020113006234169006, -0.002594438148662448, 0.00020623688760679215, -0.01052440982311964, -0.018436923623085022, 0.01477747317403555, 0.018632465973496437, -0.012396037578582764, 0.002812678227201104, 0.02226398140192032, 0.0014508601743727922, 0.0013714206870645285, 0.005723128095269203, 0.004319407977163792, 0.009895878843963146, 0.013890545815229416, -0.02877277322113514, 0.013541361317038536, 0.003722303081303835, -0.006218969821929932, 0.011613864451646805, -0.0026188811752945185, -0.03544917330145836, -0.02055996283888817, -0.009888894855976105, 0.013338834047317505, 0.027585547417402267, 0.023339468985795975, -0.021370070055127144, -0.009379086084663868, -0.02427528239786625, 0.006327216979116201, 0.017710620537400246, -0.009462890215218067, -0.005293631460517645, 0.0292197298258543, -0.0191213246434927, 0.005094596650451422, -0.5877467393875122, -0.009686368517577648, -0.012368102557957172, 0.0009122435585595667, 0.025183159857988358, 0.0036873845383524895, 0.019498443230986595, -0.009525743313133717, 0.004867626819759607, 0.04371785372495651, -0.019624149426817894, 0.017319533973932266, -0.005094596650451422, -0.0021981142926961184, 0.027012886479496956, -0.036175478249788284, 0.030588531866669655, -0.01702621951699257, -0.017431272193789482, 0.017738554626703262, -0.016746871173381805, 0.02916385978460312, 0.002116055926308036, 0.015908829867839813, -0.0057091605849564075, -0.007479524239897728, -0.021886862814426422, -0.03352167829871178, 0.013729920610785484, 0.010943431407213211, 0.0007594755152240396, -0.012067804113030434, 0.000956764561124146, 0.013415655121207237, 0.05209827423095703, -0.0011400862131267786, -0.02671957015991211, 0.029331468045711517, -0.0026625292375683784, 0.020881211385130882, -0.027040820568799973, -0.011257696896791458, -0.004899053368717432, -0.03184559568762779, 0.016704969108104706, -0.025881528854370117, -0.003631515195593238, 0.01741730608046055, 0.015126657672226429, -0.008017268031835556, -0.0003155751619488001, -0.02632848545908928, -0.01663513295352459, -0.020853277295827866, 0.015350135043263435, -0.00907878763973713, 0.023912129923701286, -0.015475841239094734, 0.008492158725857735, -0.018017901107668877, 0.00032954252674244344, 0.03597993403673172, 0.010203160345554352, -0.011970032937824726, -0.026216745376586914, 0.001910037244670093, -0.016872577369213104, 0.024135608226060867, -0.004218144342303276, -0.0295549463480711, -0.028283916413784027, -0.0020357435569167137, -0.026929082348942757, -0.008066154085099697, 0.026091039180755615, 0.01273125410079956, 0.00908577162772417, -0.007088438142091036, -0.01473557110875845, 0.018003934994339943, 0.04444415867328644, -0.002203352050855756, -0.01081074122339487, 0.016886545345187187, 0.045338068157434464, -0.012822042219340801, -0.012780140154063702, 0.013757855631411076, 0.0036629417445510626, 0.023898163810372353, 0.01981969177722931, 0.027431907132267952, 0.006016443017870188, -0.012898862361907959, 0.0013740395661443472, 0.014707636088132858, -0.03558884933590889, 0.010866610333323479, 0.007070979103446007, -0.04670687019824982, -0.006676401011645794, 0.0015390291810035706, 0.018185511231422424, -0.00908577162772417, -0.011990983970463276, 0.009448923170566559, -0.03776775673031807, 0.025783756747841835, 0.029834292829036713, -0.01488921232521534, -0.033605482429265976, -0.015559645369648933, -0.014414321631193161, 0.020294582471251488, -0.0191632267087698, -0.018436923623085022, 0.013799757696688175, 0.002887752838432789, 0.017347468063235283, -0.02275283820927143, 0.013506443239748478, 0.011557995341718197, -0.0015364103019237518, 0.0001239603734575212, 0.03220874443650246, -0.00893213041126728, 0.01581105776131153, -0.003472636453807354, 0.0023500092793256044, -0.012249380350112915, 0.03310265764594078, -0.010266014374792576, 0.0073119159787893295, -0.01602056808769703, 0.009204493835568428, 0.006177067756652832, -0.0022819184232503176, 0.003512792522087693, 0.034303851425647736, 0.010007617995142937, 0.016132308170199394, 0.009874927811324596, -0.012298265472054482, -0.01488921232521534, -0.011062153615057468, -0.04243285581469536, 0.008541043847799301, -0.018548661842942238, -0.029275598004460335, 0.022808708250522614, 0.016397686675190926, -0.00043582546641118824, -0.021817024797201157, -0.007221128325909376, -0.014986983500421047, -0.013562312349677086, -0.0035791376139968634, 0.006016443017870188, -0.015350135043263435, -0.008247729390859604, 0.005321566481143236, 0.03852199390530586, -0.04081264138221741, 0.00860389694571495, -0.016048504039645195, -0.005063170101493597, -0.02402387000620365, 0.042600467801094055, -0.017179859802126884, -0.048662301152944565, -0.00729096494615078, -0.004605738911777735, -0.001467446330934763, -0.012158592231571674, -0.03162211552262306, 0.022738872095942497, -0.036566562950611115, 0.003081550123170018, -0.03463906794786453, 0.005105072166770697, 0.006557678338140249, -0.0034516851883381605, 0.010279981419444084, -0.023381371051073074, 0.004567328840494156, -0.0016673542559146881, 0.03232048451900482, -0.02143990620970726, -0.009400037117302418, 0.018269315361976624, 0.005461240187287331, 0.01264046598225832, -0.02156561240553856, -0.0037572213914245367, 0.015950731933116913, 0.01593676395714283, 0.02449876070022583, 0.01733350194990635, 0.03346581012010574, 0.03371722251176834, 0.03165005147457123, -0.012235412374138832, -0.019484475255012512, 0.006990666501224041, 0.016006601974368095, -0.023283598944544792, 0.04274014011025429, -0.013024568557739258, 0.05472413823008537, -0.0009052599198184907, -0.005373944062739611, -0.021844960749149323, -0.004745412617921829, -0.018716270104050636, 0.028409622609615326, 0.021286265924572945, 0.00023417161719407886, 0.02345120720565319, 0.0053075989708304405, 0.013443590141832829, 0.014959048479795456, -0.001507602515630424, 0.023870227858424187, 0.00722811184823513, 0.005258713383227587, -0.02055996283888817, 0.0379074327647686, -0.00744460616260767, -0.013213127851486206, -0.03148244321346283, 0.009511776268482208, -0.0053948950953781605, -0.003465652698650956, 0.007877594791352749, 0.014791440218687057, -0.0007306678453460336, 0.06056249886751175, 0.003896895097568631, 0.004647640977054834, -0.016788773238658905, -0.012116690166294575, 0.036706238985061646, -0.007884577848017216, -0.027655383571982384, 0.015028885565698147, -0.02016887627542019, 0.01981969177722931, 0.013653100468218327, 0.02053202874958515, 0.05405370518565178, 0.01465176697820425, 0.0071198646910488605, -0.008918163366615772, 0.015392037108540535, -0.02488984540104866, -0.002301123458892107, -0.010224111378192902, 0.004633673466742039, 0.010650116950273514, 0.025839626789093018, 0.03651069477200508, 0.0078007737174630165, 0.004511459264904261, -0.014470190741121769, 0.0260212030261755, -0.010279981419444084, 0.006840517278760672, -0.020923113450407982, 0.001873372937552631, -0.01069900207221508, -0.014253697358071804, -0.029499076306819916, -0.038410257548093796, -0.019372737035155296, 0.03396863490343094, 0.003851501038298011, 0.02536473609507084, 0.000985572231002152, 0.02004317007958889, -0.01320614479482174, -0.028828643262386322, -0.03673417121171951, 0.027781091630458832, 0.004679067526012659, -0.01755697838962078, -0.022208111360669136, -0.013387720100581646, -0.006131673697382212, -0.03304678946733475, 0.04318709671497345, -0.008268680423498154, 0.01815757527947426, -0.006892894860357046, 0.011509109288454056, 0.0003725358401425183, 0.0013461048947647214, 0.02908005565404892, -0.016886545345187187, -0.0009689860162325203, 0.023297566920518875, -0.024708271026611328, -0.004825724754482508, -0.03201320394873619, -0.024987617507576942, 0.03117516078054905, 0.01947050727903843, 0.0009733508341014385, 0.005681226029992104, -0.023507077246904373, -0.011341501027345657, -0.0022050978150218725, 0.013890545815229416, 0.0019624149426817894, 0.0031775757670402527, 0.0011427050922065973, 0.015406004153192043, -0.009071804583072662, -0.00740270409733057, 0.008352484554052353, 0.02624468132853508, -0.0024774614721536636, -0.008240746334195137, -0.010307916440069675, -4.152017936576158e-05, 0.07184813171625137, 0.017221761867403984, -0.011390387080609798, -0.0007441987399943173, -0.026873212307691574, -0.03645482659339905, -0.0005019521922804415, -0.02554631233215332, 0.008366452530026436, 0.008624848909676075, -0.0064773657359182835, -0.0011880990350618958, 0.01266141701489687, 0.033158525824546814, 0.02868896909058094, 0.006816074717789888, 0.0021352609619498253, -0.009295281954109669, 0.02885657735168934, -0.0060932631604373455, 0.018618497997522354, 0.005105072166770697, -0.023381371051073074, 0.028828643262386322, -0.0022487458772957325, 6.170738924993202e-05, 0.018674368038773537, -0.001714494195766747, 0.017710620537400246, -0.012172559276223183, -0.0015783123672008514, 0.004885086324065924, 0.030197445303201675, 0.03092374838888645, -0.020755505189299583, 0.015224428847432137, 0.04653926193714142, 0.03536536917090416, 0.03165005147457123, -0.01751507632434368, 0.029359403997659683, 0.01410703919827938, -0.00647387420758605, -0.010817725211381912, 0.01093644741922617, 0.007172242272645235, 0.0037991234567016363, 0.00627483893185854, -0.012759189121425152, -0.0589422844350338, 0.002472223713994026, -0.01078280620276928, -0.035560913383960724, -0.015503776259720325, 0.04801980406045914, 0.0035075547639280558, -0.019763823598623276, -0.012668401002883911, 0.004375277552753687, -0.0027306200936436653, -0.004787314683198929, -0.023199794813990593, 0.03070027008652687, -0.006973207462579012, 0.01759888045489788, -0.024652400985360146, -0.02755761332809925, 0.007332867011427879, -0.03695765137672424, 0.0024547644425183535, 0.01275220513343811, -0.0020200302824378014, -0.0005359976785257459, -0.0023709603119641542, -0.0002136570547008887, 0.025881528854370117, 0.02776712365448475, -0.029890162870287895, 0.03444352373480797, 0.01222842838615179, 0.017612848430871964, -0.028060438111424446, 0.005904703866690397, -0.020071104168891907, 0.009867943823337555, 0.005056186579167843, 0.0016158496728166938, 0.007968381978571415, -0.0021003426518291235, 0.03924829885363579, -0.0018838484538719058, 0.006026918534189463, -4.4439137127483264e-05, 0.0007616578950546682, 0.014037203043699265, 0.0009262109524570405, -0.0040889461524784565, 0.004336867015808821, -0.010664083994925022, -0.003725794842466712, 0.001724969712086022, -0.014484158717095852, -0.008701669052243233, -0.03265570104122162, -0.0258535947650671, -0.035560913383960724, 0.0057510631158947945, 0.01602056808769703, -0.01484731025993824, 0.00024355594359803945, 0.02022474631667137, -0.013478508219122887, -0.0023273122496902943, 0.004853659775108099, -0.013464541174471378, 0.012745221145451069, 0.00916957575827837, 0.039667319506406784, -0.013597230426967144, -0.00956066232174635, -0.006184051278978586, -0.025867560878396034, 0.008645799942314625, 0.007891561836004257, -0.01469366904348135, 0.001681321649812162, 0.006512284278869629, -0.038186777383089066, -0.0009794615907594562, -0.0019484475487843156, 0.019414639100432396, -0.0023692145477980375, -0.0016464032232761383, -0.0483829565346241, -0.015950731933116913, 0.015475841239094734, 0.004591771401464939, -0.022543327882885933, 0.006292298436164856, 0.013736904598772526, -0.0011121515417471528, -0.007109389174729586, -0.02331153303384781, 0.009616531431674957, 0.010042536072432995, -0.02952701225876808, -0.021942730993032455, 0.03201320394873619, -0.008555011823773384, -0.0012151608243584633, 0.017612848430871964, -0.006962731946259737, -0.010028569027781487, 0.010824708268046379, -0.0012911084340885282, 0.02384229376912117, -0.011767505668103695, 0.025602182373404503, 0.01259856391698122, 0.018492791801691055, 0.035086024552583694, -0.019149258732795715, 0.022669034078717232, -0.02400990203022957, 0.00923242885619402, -0.013436606153845787, -0.019065454602241516, -0.0055590118281543255, -0.004476540721952915, -0.011516093276441097, 0.0013888799585402012, 0.006840517278760672, 0.012940764427185059, -0.003942288924008608, -0.004413687624037266, 0.02659386396408081, -0.010489491745829582, 0.02082534320652485, -0.017878228798508644, -0.035560913383960724, 0.0034918414894491434, -0.01685861125588417, -0.008527076803147793, 0.027431907132267952, -0.026998918503522873, -0.0017747284146025777, 0.031231030821800232, -0.001913529122248292, -0.015461874194443226, 0.0024303216487169266, -0.00033499853452667594, -0.011236745864152908, -0.0033661352936178446, 0.012563645839691162, 0.01445622369647026, 0.006114214193075895, -0.0012029394274577498, -0.03212494030594826, 0.018883878365159035, -0.026663701981306076, -0.010517426766455173, -0.000561749970074743, 0.013995300978422165, -0.005772014148533344, -0.01314329169690609, 0.037711888551712036, -0.024778107181191444, -0.012961715459823608, 0.005332041997462511, -0.014526060782372952, -0.004752396140247583, -0.02057393081486225, -0.028228046372532845, -0.024526694789528847, 0.00016302535368595272, 0.015126657672226429, -0.0006900751614011824, 0.02952701225876808, -0.025965332984924316, -0.03829851746559143, 0.014155925251543522, 0.0075633288361132145, 0.05743381008505821, -0.010328867472708225, 0.035560913383960724, 0.007682051043957472, 0.00364548247307539, -0.006498316768556833, -0.0016699731349945068, -0.003851501038298011, 0.0014665734488517046, 0.01253571081906557, 0.024736205115914345, -0.03868960216641426, 0.018325183540582657, -0.026146909222006798, -0.013066470623016357, -0.03793536499142647, -0.016970349475741386, 0.03220874443650246, 0.027962666004896164, -0.011990983970463276, -0.01733350194990635, 0.011669734492897987, -0.020839309319853783, 0.028325818479061127, 0.0004980238736607134, -0.015252363868057728, 0.010999300517141819, -0.02008507214486599, -0.03396863490343094, 0.017752522602677345, 0.025881528854370117, 0.014567962847650051, 0.014162909239530563, -0.03692971542477608, 0.0035354895517230034, -0.012396037578582764, -0.0061246901750564575, 0.019191160798072815, -0.005834867246448994, 0.045058723539114, -0.020629798993468285, -0.03396863490343094, 0.020629798993468285, -0.016216112300753593, -0.014295599423348904, -0.014721604064106941, -0.0005556392716243863, 0.030281249433755875, 0.013876577839255333, 0.0009916829876601696, -0.004867626819759607, 0.011125006712973118, -9.515268175164238e-05, 0.014114023186266422, -0.003533743554726243, 0.025252997875213623, -0.013611198402941227, -0.01504285354167223, 0.015880895778536797, 0.010112373158335686, -0.007437622174620628, -0.006980190984904766, -0.028535328805446625, 0.015950731933116913, -0.005737095605581999, -0.014973016455769539, 0.031901463866233826, -0.03902481868863106, -0.0223617535084486, -0.02607707306742668, 0.0012980920728296041, 0.014512092806398869, 0.015517743304371834, -0.022291915491223335, 0.03357754647731781, 0.04084057733416557, -0.0009227191330865026, 0.021202461794018745, -0.05190273001790047, -0.0014176876284182072, -0.012738238088786602, 0.0064214966259896755, 0.01768268458545208, 0.011956064961850643, 0.03296298533678055, -0.024778107181191444, -0.01833915151655674, -0.011613864451646805, -0.007077962625771761, 0.0007952668820507824, 0.006026918534189463, -0.023744521662592888, -0.025476476177573204, -0.005684718023985624, 0.02388419583439827, 0.00921147782355547, -0.01266141701489687, 0.014239729382097721, -0.020238712430000305, -0.017878228798508644, 0.020685669034719467, -0.004294964950531721, 0.004455589689314365, 0.007165258750319481, -0.028535328805446625, 0.009805090725421906, -0.022305883467197418, -0.0094978092238307, -0.01807377114892006, -0.005967556964606047, -0.011858293786644936, -0.024387020617723465, -0.031677987426519394, 0.008652782998979092, -0.0041762422770261765, 0.010168242268264294, 0.01973588764667511, -0.028884513303637505, 0.0028039487078785896, 0.023213762789964676, 0.010531393811106682, 0.008268680423498154, -0.01493111439049244, 0.028716905042529106, -0.02528093196451664, 0.010279981419444084, 0.000852009339723736, -0.00923242885619402, -0.029331468045711517, 0.035560913383960724, 0.0008419702644459903, -0.0006368245813064277, -0.015545678324997425, 0.00709542166441679, -0.03279537335038185, -0.020336484536528587, -0.004926988389343023, 0.02899625152349472, 0.007849659770727158, 0.012410004623234272, 0.003806107211858034, 0.028661035001277924, -0.015517743304371834, -0.002014792524278164, -0.030337119475007057, 0.006159608252346516, 0.005031743552535772, 0.03310265764594078, -0.008743571117520332, -0.016146274283528328, -0.018395021557807922, -0.004874610807746649, 0.0016429114621132612, 0.012410004623234272, -0.008366452530026436, 0.0223617535084486, 0.004972382448613644, -0.03606373816728592, -0.023870227858424187, -0.019414639100432396, 0.03511395677924156, -0.014183860272169113, -0.013073454611003399, -0.002391911344602704, -0.023381371051073074, 0.00886229332536459, 0.022305883467197418, -0.01733350194990635, -0.014316550455987453, 0.004319407977163792, -0.01755697838962078, 0.009546694345772266, -0.0028179159853607416, -0.039583515375852585, 0.010049520060420036, -0.028437556698918343, 0.02488984540104866, -0.010859627276659012, -0.038186777383089066, 0.03240428864955902, 0.010217128321528435, 0.014274648390710354, -0.006714811082929373, 0.024163542315363884, -0.0095397112891078, -0.012151608243584633, -0.0004015617596451193, 0.0008956573437899351, 0.009986666962504387, -0.027431907132267952, -0.000360750884283334, -0.02811630815267563, 0.006599580403417349, -0.006142149213701487, -0.006920829880982637, -0.0004308059287723154, 0.00910672266036272, -0.00035005711833946407, -0.0017136211972683668, 0.04877404123544693, 0.009763188660144806, -0.0015652179718017578, 0.01624404639005661, -0.020992951467633247, -0.026146909222006798, -0.0013565804110839963, 0.016565296798944473, 0.004734937101602554, 0.006575137376785278, -0.02043425664305687, 0.019372737035155296, -0.0034813659731298685, -0.017975999042391777, 0.028800709173083305, 0.19017966091632843, 9.269748261431232e-05, -0.010252046398818493, 0.01737540401518345, -0.013115356676280499, 0.014623831957578659, 0.012745221145451069, -0.017975999042391777, -0.011990983970463276, 0.005311090964823961, -0.01244492270052433, -0.0029087038710713387, -0.017836326733231544, 0.020238712430000305, -0.026258647441864014, -0.0018175034783780575, -0.017836326733231544, -0.035086024552583694, -0.01076185517013073, 0.012158592231571674, 0.014945081435143948, -0.004500983748584986, -0.02725033089518547, -0.03461113199591637, 0.02051806077361107, -0.006508792284876108, 0.00027956554549746215, -0.0045498693361878395, -0.0023063612170517445, 0.0001837581512518227, -0.027180494740605354, 0.008373435586690903, -0.014316550455987453, 0.017794424667954445, -0.019205128774046898, -0.0064214966259896755, -0.0006049615330994129, 0.013681034557521343, 0.01838105358183384, -0.017612848430871964, 0.00638657808303833, -0.02916385978460312, -0.001584423123858869, -0.0032124940771609545, -0.01115992572158575, 0.022766806185245514, -0.0011523077264428139, -0.016928447410464287, 0.01698431745171547, -0.01067805103957653, -0.020196810364723206, -0.0224455576390028, 0.001608865917660296, -0.0005006427527405322, -0.00930226594209671, -0.00919052679091692, 0.012675384990870953, 0.023772457614541054, 0.0016411654651165009, 0.022892512381076813, -0.009853976778686047, 0.02833978459239006, -0.017137957736849785, 0.024638433009386063, -0.015406004153192043, 0.03698558360338211, -0.026426255702972412, -0.02000126801431179, -0.015643449500203133, -0.015014918521046638, 0.004137832205742598, -0.014833342283964157, -0.010279981419444084, -0.023940065875649452, -0.01081074122339487, -0.015601547434926033, 0.016453556716442108, -0.0038480092771351337, 0.007730937097221613, 0.011788456700742245, -0.02725033089518547, -0.010272997431457043, -0.015964699909090996, -0.006194526795297861, -0.023786423727869987, -0.017570946365594864, 0.0129477484151721, -0.01581105776131153, -0.018925780430436134, -0.0044451141729950905, 0.0012919813161715865, -0.027836959809064865, 0.013087421655654907, 0.027878861874341965, 0.008401370607316494, 0.05181892588734627, 0.016230078414082527, 0.029946032911539078, 0.00474890461191535, 0.024121640250086784, -0.022250013425946236, 0.003722303081303835, -0.008024252019822598, 0.003659449750557542, -0.0004923496744595468, -0.013750871643424034, -0.0005752808647230268, 0.0061246901750564575, -0.002692209789529443, -0.03533743694424629, 0.008555011823773384, -0.02131420001387596, -0.02807440608739853, -0.011872260831296444, -0.0018995617283508182, 0.015266330912709236, 0.0036769090220332146, 0.017319533973932266, -0.013869594782590866, 0.006568153854459524, 0.01081074122339487, -0.013275980949401855, 0.010622181929647923, 0.01454002782702446, 0.0066694170236587524, -0.03785156086087227, -0.04324296489357948, 0.0018367086304351687, 0.0057091605849564075, -0.01860453188419342, 0.03371722251176834, -0.049444474279880524, -0.013066470623016357, -0.012396037578582764, -0.010838676244020462, 0.006086279638111591, -0.0009794615907594562, -0.018576595932245255, 0.00113834033254534, -0.019540345296263695, -0.0019781282171607018, 0.032516028732061386, -0.004986349493265152, 0.031901463866233826, 0.0094559071585536, -0.01829724945127964, 0.004822233226150274, -0.0019868577364832163, 0.005342517513781786, -0.014973016455769539, -0.013639132492244244, -0.0017336993478238583, -0.002529839053750038, -0.023088056594133377, 0.003378356574103236, -0.013045519590377808, 0.003305027959868312, 0.000561749970074743, 0.030812008306384087, -0.01659323088824749, -0.029107989743351936, 0.01782235875725746, -0.022766806185245514, -0.016188176348805428, -0.0049828579649329185, -0.011564979329705238, -0.1763240247964859, 0.007528410293161869, 0.013408671133220196, -0.03891308233141899, 0.018003934994339943, -0.01264046598225832, 0.03751634433865547, 0.01076185517013073, -0.01702621951699257, -0.013632149435579777, -0.002105580409988761, 0.005300615448504686, 0.013436606153845787, -0.015070787630975246, -0.031370703130960464, 0.009721286594867706, -0.012074788101017475, 0.015196493826806545, 0.022724904119968414, 0.031594183295965195, 0.024959683418273926, -0.00362453144043684, 0.0059605734422802925, 0.022250013425946236, -0.011886228807270527, -0.02113262377679348, 0.009553678333759308, 0.009700335562229156, -0.01782235875725746, -0.028633100911974907, -0.013729920610785484, 0.01445622369647026, -0.003476128214970231, 0.009532727301120758, -0.01296869944781065, 0.008115039207041264, 0.019973333925008774, -0.01786426082253456, -0.0006276585045270622, 0.013785789720714092, -0.005813916213810444, -0.004078470636159182, -0.0026328484527766705, -0.005178400781005621, -0.01642562262713909, 0.04698621854186058, 0.015657417476177216, -0.015783123672008514, -0.006044377572834492, -0.014218778349459171, -0.004944447427988052, -0.0061526247300207615, 0.021998601034283638, 0.004720969591289759, 0.030057771131396294, 0.0013923718361184, 0.0031199604272842407, 0.00046048659714870155, 0.009909845888614655, 0.017934096977114677, 0.008722620084881783, -0.022333817556500435, -0.015406004153192043, 0.037488408386707306, -0.0031758297700434923, 0.003439463907852769, -0.009609547443687916, 0.032767441123723984, -0.02127229794859886, 0.015000950545072556, -0.026705604046583176, -0.00928131490945816, 0.010733921080827713, 0.008317566476762295, 0.03070027008652687, 0.03891308233141899, 0.000532942300196737, -0.001533791422843933, 0.0076960185542702675, -0.02287854626774788, -0.02301821857690811, 0.04734937101602554, -0.0015137132722884417, -0.020322516560554504, 0.03030918352305889, 0.006871943827718496, -0.00439972011372447, -0.03220874443650246, -0.00466160848736763, -0.0343317836523056, 0.02480604127049446, -0.04134340211749077, -0.020992951467633247, -0.01589486189186573, 0.01508475560694933, 0.028060438111424446, -0.006044377572834492, -0.039974600076675415, 0.0224874597042799, -0.04394133388996124, 0.02148180827498436, -0.0028790233191102743, -0.0010641387198120356, 0.019051486626267433, 0.03201320394873619, 0.0007180098909884691, 0.0024006410967558622, -0.01469366904348135, 0.031454507261514664, -0.007640148978680372, 0.006889403332024813, -0.013227095827460289, 0.028046470135450363, 0.030141575261950493, -0.002051456831395626, 0.020015235990285873, 0.003820074489340186, -0.020685669034719467, 0.0002059095277218148, 0.005346009507775307, 0.02969462051987648, -0.0007463811198249459, 0.01655132882297039, 0.03843818977475166, 0.0025630115997046232, -0.008073137141764164, -0.11531457304954529, -0.017221761867403984, 0.0034272423945367336, 0.0055764708667993546, -0.023828325793147087, -0.003837533760815859, -0.0064529231749475, 0.03522569686174393, 0.0015023647574707866, 0.010629165917634964, -0.00740270409733057, -0.01815757527947426, -0.008855310268700123, -0.0005373071180656552, -0.0007075343746691942, -0.026230713352560997, -0.028186144307255745, -0.009162591770291328, -0.008813408203423023, 0.01562948152422905, -0.0036699254997074604, 0.016397686675190926, -0.019889529794454575, -0.013087421655654907, 0.011013267561793327, -0.004389244597405195, -0.024875879287719727, 0.029890162870287895, -0.002377944067120552, 0.03704145550727844, 0.0072350953705608845, -0.00742365512996912, -0.01593676395714283, 0.015503776259720325, -0.021886862814426422, -0.006149132736027241, 0.018758172169327736, -0.015461874194443226, 0.03913655877113342, -0.039415907114744186, 0.022557295858860016, -0.013632149435579777, -0.0004552488389890641, -0.01659323088824749, 0.01747317425906658, 0.001438638661056757, -0.0223198514431715, 0.0295549463480711, -0.02301821857690811, -0.026188811287283897, -0.025699952617287636, -0.011537044309079647, -0.0017450477462261915, -0.0156713854521513, 0.043606117367744446, 0.006292298436164856, 0.018716270104050636, -0.0005866293795406818, -0.034694936126470566, -0.020769473165273666, 0.012829025276005268, -0.006917337886989117, -0.006225953344255686, -0.007200177293270826, 0.03243222460150719, 0.0017302074702456594, -0.009742237627506256, -0.019316866993904114, 0.0345831997692585, -0.025825658813118935, 0.00448701623827219, 0.01445622369647026, -0.02780902571976185, 0.008352484554052353, 0.015322200022637844, 0.047963935881853104, -0.012389053590595722, 0.004085454624146223, 0.008282648399472237, -0.014260680414736271, -0.018744204193353653, 0.007703002076596022, -0.03293504938483238, -0.013813724741339684, 0.027487775310873985, 0.021342135965824127, -0.016691002994775772, 0.02209637314081192, -0.01303853653371334, -0.044611766934394836, -0.0005368706188164651, 0.007263030391186476, 0.026649734005331993, -0.01469366904348135, 0.00022456905571743846, 0.024708271026611328, -0.006864960305392742, -0.020992951467633247, -0.0023936573415994644, 0.013527394272387028, -0.05743381008505821, -0.01881404221057892, -0.06318836659193039, 0.013918479904532433, -0.03293504938483238, 0.006512284278869629, -0.009183542802929878, -0.023199794813990593, 0.01636975258588791, 0.0010047773830592632, -0.018395021557807922, -0.013045519590377808, -0.023283598944544792, 0.029750488698482513, -0.007077962625771761, 0.02406577207148075, -0.005957081448286772, -0.004989841487258673, 0.024512726813554764, -0.019889529794454575, 0.03963938355445862, 0.006390070077031851, 0.005887244828045368, -0.009099738672375679, 0.032990917563438416, 0.013925463892519474, 0.011236745864152908, -0.007807757705450058, 0.0032561421394348145, 0.024680335074663162, -0.0012954731937497854, -0.01706812158226967, 0.007856643758714199, -0.023115990683436394, -0.0001678266271483153, 0.031147226691246033, 0.026314517483115196, -0.0021474824752658606, -0.005447272676974535, -0.011313566006720066, 0.015838993713259697, -0.012375086545944214, -0.013960381969809532, -0.01488921232521534, -0.011348485015332699, 0.018199477344751358, -0.004315915983170271, 0.013087421655654907, -0.012654433958232403, 0.015699319541454315, 0.008345501497387886, 0.019624149426817894, 0.03628721833229065, 0.0027742681559175253, -0.029275598004460335, -0.03938797116279602, 0.00014589350030291826, -0.011145957745611668, 0.007050028070807457, -0.0294711422175169, -0.011662750504910946, -0.004668592009693384, -0.0009480349835939705, 0.014176876284182072, -0.010461556725203991, -0.009623515419661999, -0.0009000221616588533, -0.01846485771238804, 0.005070153623819351, 0.013667067512869835, -0.019400671124458313, 0.01969398558139801, 0.0056637669913470745, 0.0022155733313411474, -0.016355784609913826, 0.016607198864221573, 0.0343317836523056, 0.021062787622213364, -0.00901593454182148, -0.005185384768992662, -0.03550504520535469, 0.02022474631667137, 0.02065773494541645, -0.011076121591031551, -0.021146591752767563, -0.005517109762877226, 0.029024185612797737, 0.013548345305025578, 0.0040435525588691235, 0.005164433736354113, -0.0026153891813009977, -0.01071995310485363, 0.014875244349241257, 0.009874927811324596, 0.010300932452082634, -0.022669034078717232, -0.00543679716065526, 0.045701220631599426, -0.0018175034783780575, -0.011788456700742245, 0.0037816644180566072, 0.01058726292103529, 0.003215986071154475, 0.006899878848344088, -0.018450889736413956, -0.0011828612769022584, -0.021649416536092758, 0.016006601974368095, -0.00046441491576842964, 0.0034132751170545816, -0.002047965070232749, 0.028828643262386322, 0.04991936683654785, 0.01250777579843998, 0.008764522150158882, 0.015224428847432137, -0.011013267561793327, -0.007318899501115084, -0.020839309319853783, -0.025266965851187706, -0.02711065672338009, 0.003301536198705435, -0.007297948468476534, 0.011753538623452187, 0.027320167049765587, -0.023074088618159294, 0.02969462051987648, 0.02053202874958515, 0.019805725663900375, -0.026426255702972412, -0.002667766995728016, -0.0036559579893946648, -0.006795123685151339, -0.003715319326147437, -0.04332676902413368, -0.011830358766019344, -0.00951876025646925, -0.03030918352305889, 0.0017852039309218526, 0.023297566920518875, -0.013604214414954185, 0.07709985971450806, 0.01990349590778351, -0.00022369610087480396, 0.00879944022744894, -0.028451524674892426, -0.002412862377241254, 0.027739189565181732, -0.02318582683801651, -0.020448222756385803, -0.0189118143171072, -0.005841850768774748, -0.010754872113466263, 0.01292679738253355, -0.021537678316235542, 0.011872260831296444, 0.004074979107826948, -0.023548979312181473, 0.03754428029060364, -0.016397686675190926, -0.002816170221194625, 0.031677987426519394, 0.020113006234169006, 0.023912129923701286, -0.020322516560554504, 0.0031740840058773756, -0.00884134229272604, -0.0008502634009346366, -0.015140624716877937, -0.02226398140192032, -0.010286965407431126, 0.020769473165273666, 0.0010169987799599767, -0.0260631050914526, -0.009860960766673088, 0.005007300525903702, 0.023828325793147087, 0.0062573798932135105, -0.00459526339545846, 0.009155608713626862, 0.02396799996495247, -0.05000317096710205, 0.009022918529808521, -0.033074721693992615, -0.03374515473842621, -0.028744839131832123, -0.00446606520563364, 0.003259634133428335, 0.005160941742360592, -0.044639702886343], "ff51296b-eafb-4862-88aa-ff2bae8c82eb": [-0.02308192290365696, -0.01840727962553501, -0.000951054273173213, 0.010500610806047916, -0.030489223077893257, 0.020141197368502617, -0.007719404995441437, 0.0008921010885387659, -0.03268089517951012, -0.024732613936066628, 0.003720989217981696, 0.012283078394830227, -0.009668329730629921, 0.019794413819909096, 0.01683981716632843, 0.033707376569509506, 0.0018500910373404622, 0.02151446044445038, -0.00026984105352312326, 0.0056421710178256035, -0.004445767030119896, 0.02401130273938179, -0.01456491556018591, -0.04436057060956955, -0.015730109065771103, -0.0011201113229617476, 0.007636176887899637, 0.0007429840625263751, -0.0054098255932331085, -0.0019159798976033926, 0.018032751977443695, 0.005198287777602673, -0.01883728988468647, -0.026175234466791153, -0.03456740081310272, -0.00914815440773964, 0.002751728752627969, -0.0034713048953562975, -0.0021136465948075056, 0.022873852401971817, 0.01249114889651537, -0.007358750328421593, -0.021375747397542, 0.009286867454648018, -0.012276142835617065, 0.03440094366669655, -0.008662656880915165, -0.013392786495387554, -0.02230512723326683, 0.03154344484210014, 0.017685968428850174, -0.0012622926151379943, -0.007143744267523289, -0.003821556456387043, -0.0050144921988248825, 0.0009683934622444212, 0.037313926964998245, 0.022818367928266525, -0.0173669271171093, 0.006717200390994549, 0.02079315111041069, 0.008919277228415012, 0.0014859681250527501, 0.008080060593783855, 0.009598973207175732, 0.013462143018841743, 0.0017087766900658607, 0.00612420029938221, -0.011464669369161129, 0.016382062807679176, 0.04436057060956955, 0.02951822802424431, -0.01197790913283825, 0.013781184330582619, 0.00413712952286005, -0.02982339821755886, -0.023844847455620766, 0.000435647030826658, -0.01285874005407095, 0.0017139784758910537, 0.01726982742547989, -0.02610587701201439, -0.020279910415410995, 0.028824660927057266, 0.026369431987404823, 0.00011758134496631101, -0.0030014128424227238, 0.04089273512363434, 0.01699240133166313, -0.02713235653936863, 0.023151280358433723, 0.025218110531568527, 0.004098983481526375, 0.010465932078659534, -0.02079315111041069, 0.02426098845899105, -0.03958882763981819, 0.03021179512143135, 0.0029736701399087906, 0.00983478594571352, -0.011478540487587452, 0.00991107802838087, -0.005167077295482159, -0.005264176521450281, -0.013434400781989098, -0.010736423544585705, -0.008995569311082363, -0.020390881225466728, 0.0008669592789374292, 0.012102751061320305, -0.010993042960762978, 0.019641829654574394, 0.006151943001896143, -0.029268544167280197, -0.017949523404240608, -0.02722945623099804, -0.003977608866989613, 0.005489585921168327, -0.03001759760081768, -0.005659509915858507, 0.001153922756202519, 0.014828471466898918, -0.01161725353449583, -0.004626094363629818, 0.005545071326196194, 0.007268586196005344, -0.01991925574839115, -0.020585080608725548, -0.010632388293743134, -0.014148774556815624, 0.03645390272140503, 0.00043716421350836754, -0.012928096577525139, 0.016035277396440506, -0.018726319074630737, -0.007677791174501181, 0.008281194604933262, -0.01726982742547989, -0.020557338371872902, -0.021902859210968018, 0.0005908327293582261, 0.011749031953513622, -0.0004906989634037018, -0.00724777951836586, -0.005708059761673212, 0.012137429788708687, 0.004560205619782209, -0.0005565878236666322, -0.011346762999892235, -0.01195710152387619, -0.022097056731581688, -0.004449234809726477, -0.006145006977021694, -0.02298482321202755, 0.04782840609550476, -0.0012068073265254498, 0.004639965947717428, 0.003693246515467763, -0.005434100516140461, -0.01439845934510231, 0.004879246465861797, 0.016215605661273003, -0.003287509549409151, -0.006748410873115063, -0.013677149079740047, 0.022166414186358452, 0.021070577204227448, -0.006682522129267454, 0.0060028256848454475, -0.007698598317801952, 0.004796018358319998, -0.0004503853269852698, -0.031460218131542206, 0.031155047938227654, -0.0014720967737957835, -0.01629883423447609, 0.007684726733714342, -0.005999357905238867, -0.02434421516954899, -0.018573734909296036, -0.0020390881691128016, 0.022416098043322563, 0.016465289518237114, 0.02581457793712616, -0.0069322059862315655, -0.01693691685795784, -0.019239559769630432, 0.030295023694634438, 0.0010810982203111053, 0.008759756572544575, 0.0008439848315902054, 0.027062999084591866, -0.01066013053059578, 0.01034802570939064, -0.60146164894104, -9.868434972304385e-06, -0.030905364081263542, -0.015979792922735214, 0.002046023728325963, -0.006016697268933058, 0.013281815685331821, -0.0030967784114181995, -0.007580691482871771, 0.026050390675663948, -0.024136144667863846, 0.004896585829555988, -0.01786629669368267, -0.00905105471611023, 0.018074367195367813, -0.03664810210466385, 0.03484482690691948, -0.017977267503738403, -0.020945735275745392, 0.02519036829471588, -0.03040599450469017, 0.02509326860308647, 0.012206786312162876, 0.02220802754163742, -0.027881409972906113, -0.0026164830196648836, -0.0013065076200291514, -0.04241858050227165, -0.0013186449650675058, 0.009266060777008533, -0.001432216726243496, -0.0021049771457910538, 0.006509129889309406, 0.005177480634301901, 0.051323987543582916, 0.0019541261717677116, -0.02424711547791958, 0.022429969161748886, -0.011776774190366268, 0.027701081708073616, -0.023706134408712387, -0.01032028254121542, 0.00031947449315339327, -0.03817395120859146, 0.011610317975282669, -0.016825946047902107, -0.0063565452583134174, 0.027936894446611404, 0.008898469619452953, -0.009876400232315063, -0.01212355773895979, -0.03453965485095978, -0.018504377454519272, -0.0263555608689785, 0.021195419132709503, -0.00023646313638892025, 0.03021179512143135, -0.013156973756849766, 0.00973768625408411, -0.01922568865120411, -0.0005349138518795371, 0.044388312846422195, 0.006158878561109304, -0.004522059578448534, -0.01258824858814478, 0.010895944200456142, -0.0028991117142140865, 0.018046623095870018, -0.007043176796287298, -0.03903397172689438, -0.023678390309214592, 0.008357487618923187, -0.029989853501319885, -0.01771371066570282, 0.03035051003098488, 0.001491169910877943, 0.02996211126446724, 0.005819030571728945, -0.01708950102329254, 0.023775490000844002, 0.045553505420684814, -0.0051393345929682255, -0.028172707185149193, 0.005063042044639587, 0.04025465250015259, -0.012213721871376038, -0.01810210943222046, 0.019933126866817474, -0.0014287488302215934, 0.014259745366871357, 0.012574376538395882, 0.02537069469690323, 0.017394671216607094, -0.023886460810899734, -0.006165814120322466, 0.012636798433959484, -0.040532078593969345, 0.005583217367529869, 0.020626693964004517, -0.07357362657785416, -0.0016706305323168635, 0.0033429949544370174, 0.013309558853507042, -0.005791287869215012, 0.0019905385561287403, 0.004504720214754343, -0.02904660254716873, 0.015743980184197426, 0.045608993619680405, -0.029684685170650482, -0.02962919883430004, -0.013358107767999172, -0.010923686437308788, 0.021972214803099632, -0.010361896827816963, -0.02312353625893593, 0.012303886003792286, 0.0016923045041039586, 0.022332869470119476, -0.019017618149518967, 0.020959606394171715, 0.010042855516076088, -0.009869463741779327, -0.017158856615424156, 0.023844847455620766, -0.0008665257482789457, 0.006696393247693777, -0.01032028254121542, -0.0011105748126283288, -0.009585101157426834, 0.03595453500747681, -0.010181569494307041, 0.01868470571935177, -0.016604004427790642, 0.011901617050170898, 0.005045702680945396, 0.010812715627253056, 0.003842363366857171, 0.021500589326024055, -0.011055463925004005, 0.004206486511975527, 0.017727583646774292, 0.006474451627582312, -0.013559242710471153, -0.0074211712926626205, -0.029906626790761948, 0.00966139417141676, -0.016326576471328735, -0.024607772007584572, 0.018337922170758247, 0.010840458795428276, -0.0032979128882288933, -0.023109665140509605, -0.01269228383898735, -0.010909815318882465, -0.014273617416620255, -0.012262271717190742, 0.008815241977572441, -0.01403086818754673, -0.014044740237295628, 0.004771743901073933, 0.04300117865204811, -0.03207055479288101, 0.010216248221695423, -0.0040434980764985085, 0.005281515885144472, -0.021833501756191254, 0.010597709566354752, 0.00284362630918622, -0.04577544704079628, -0.016520775854587555, -0.014523301273584366, -0.0020044096745550632, -0.0073310076259076595, -0.012012586928904057, 0.03315252065658569, -0.02254093997180462, 0.0038874452002346516, -0.020682180300354958, 0.0025540620554238558, 0.005142802372574806, -0.008849919773638248, 0.01645141839981079, -0.0208902508020401, 0.0059438725002110004, -0.007102129980921745, 0.024122273549437523, -0.015189126133918762, -0.01285874005407095, 0.024926811456680298, -0.0002824119874276221, 0.01577172242105007, -0.008593300357460976, -0.004112854599952698, 0.010715615935623646, 0.0004954672185704112, 0.01810210943222046, 0.0015457883710041642, 0.015411067754030228, 0.041364360600709915, 0.022818367928266525, -0.004431895911693573, -0.009106540121138096, -0.0033360591623932123, -0.0002776437031570822, -0.02879691869020462, 0.029268544167280197, -0.006450176704674959, 0.05201755464076996, 0.0034817084670066833, -0.0010169432498514652, -0.01559139508754015, -0.0019038425525650382, -0.018435021862387657, 0.03381834551692009, 0.020973477512598038, -0.0047440011985599995, 0.027021385729312897, 0.02230512723326683, 0.013427465222775936, 0.0029788720421493053, 0.010528353042900562, 0.03234798461198807, 0.005538135766983032, 0.008163288235664368, -0.024718742817640305, 0.02982339821755886, -0.022097056731581688, 0.00028999787173233926, -0.0187956765294075, 0.010805780068039894, -0.006640907842665911, -0.013281815685331821, -0.003703649854287505, 0.03337446227669716, -0.0009267794666811824, 0.028380777686834335, 0.010098340921103954, 0.0052121588960289955, -0.00500408886000514, -0.0034296908415853977, 0.0271739698946476, -0.004587948322296143, -0.024607772007584572, 0.015369453467428684, -0.01061158161610365, 0.036925528198480606, 0.0257174801081419, 0.007795697543770075, 0.04083724692463875, 0.009363159537315369, 0.011173371225595474, -0.009841721504926682, 0.017394671216607094, -0.024968426674604416, -0.007823440246284008, 0.0032094831112772226, 0.009064925834536552, 0.02288772352039814, 0.030516965314745903, 0.019336659461259842, 0.028658205643296242, -0.005982019007205963, -0.008295065723359585, 0.02215254306793213, -0.004633030388504267, 0.01335117220878601, -0.010431253351271152, 0.011839195154607296, -0.017699839547276497, -0.02562038041651249, -0.028380777686834335, -0.031099561601877213, -0.009432516992092133, 0.03367963433265686, 0.006158878561109304, 0.03797975182533264, -0.0008990367641672492, 0.01595205068588257, -0.020723793655633926, -0.03417900204658508, -0.025245852768421173, 0.022527068853378296, 0.008926212787628174, -0.011547897011041641, -0.020238297060132027, -0.018656963482499123, -0.02029378153383732, -0.03356866165995598, 0.03412351757287979, -0.012234528549015522, 0.007310200482606888, -0.00517401285469532, 0.013566178269684315, 0.004674644209444523, -0.014745242893695831, 0.02176414430141449, -0.018282435834407806, -0.006023632828146219, 0.008392165414988995, -0.0036377611104398966, -0.009827850386500359, -0.026965901255607605, -0.027562368661165237, 0.02825593575835228, 0.019336659461259842, -0.002432687673717737, 0.010063663125038147, -0.020945735275745392, -0.009675265289843082, -0.0115687046200037, 0.004161404445767403, 0.0018518249271437526, 0.00284362630918622, 0.021167676895856857, 0.004334796220064163, -0.012456470169126987, -0.020418623462319374, 0.006207428406924009, 0.022610297426581383, -0.002304377732798457, -0.011693546548485756, -0.0241084024310112, 0.001394937396980822, 0.05298854783177376, 0.02040475234389305, -0.021930601447820663, 0.0009900674922391772, -0.024524543434381485, -0.01937827281653881, 0.008447650820016861, -0.03859008848667145, 0.015369453467428684, 0.011554832570254803, -0.023345477879047394, -0.007448913995176554, 0.012400984764099121, 0.009016375988721848, 0.029545972123742104, 0.001817146549001336, 0.01136756967753172, -0.01025092601776123, 0.02732655592262745, -0.013982318341732025, 0.01844889298081398, 0.005135866813361645, -0.02162543125450611, 0.033208008855581284, -0.0018570267129689455, 0.002261029789224267, 0.009987370111048222, -0.00854475051164627, 0.014967184513807297, -0.024274859577417374, -0.010646259412169456, -0.004251568112522364, 0.017450155690312386, 0.031099561601877213, -0.012220657430589199, 0.02040475234389305, 0.028574977070093155, 0.02943500131368637, 0.024177759885787964, -0.027645597234368324, 0.04119790345430374, -0.0029303221963346004, 0.0013481216738000512, -0.009585101157426834, 0.013399722054600716, 0.0007039709016680717, 0.00594040472060442, 0.0007897999021224678, -0.000751220213714987, -0.04671870172023773, 0.015646880492568016, -0.01188080944120884, -0.03351317718625069, -0.004126726184040308, 0.03845137730240822, 0.005562410689890385, -0.022124800831079483, -0.008329744450747967, 0.00629412429407239, -0.014232003130018711, -0.008842984214425087, -0.03015631064772606, 0.045109622180461884, -0.001496371696703136, 0.01908697560429573, -0.015244611538946629, -0.02532908134162426, 0.0029459274373948574, -0.0369810126721859, 0.0013065076200291514, 0.010889008641242981, -0.013510692864656448, -0.021486718207597733, -0.0017122444696724415, 0.00672413595020771, 0.029656942933797836, 0.01800500974059105, -0.02083476446568966, 0.011894680559635162, 0.002992743393406272, 0.013739570043981075, -0.028574977070093155, -0.01456491556018591, -0.009259125217795372, 0.015785593539476395, 0.007969089783728123, 0.017783068120479584, 0.013656342402100563, 0.008745884522795677, 0.03870106115937233, 0.006654779426753521, 0.0023841378279030323, -0.0023598631378263235, -0.012220657430589199, 0.0091550899669528, 0.007871990092098713, -0.008579428307712078, -0.00041635718662291765, -0.010098340921103954, -0.007213100790977478, 0.0014070748584344983, -0.020862506702542305, -0.00464690150693059, -0.008246516808867455, -0.0350390262901783, -0.02645266056060791, -0.014772986061871052, 0.025398438796401024, -0.0115687046200037, 0.009501873515546322, 0.014592657797038555, -0.02679944410920143, 0.00880830641835928, 0.0037348605692386627, -0.02021055482327938, 0.02156994678080082, 0.008086996152997017, 0.026716215535998344, -0.011478540487587452, 0.0011721289483830333, 0.0029268544167280197, -0.011069335974752903, 0.02245771326124668, 0.011589511297643185, -0.02245771326124668, 0.015133640728890896, -0.007802633102983236, -0.02951822802424431, -0.009675265289843082, 0.011839195154607296, 0.024996168911457062, -0.008260387927293777, 0.018435021862387657, -0.03870106115937233, -0.029102088883519173, 0.0005578882992267609, 0.008836048655211926, -0.019253430888056755, 0.009252188727259636, 0.00033377931686118245, -0.0014772985596209764, -0.018129851669073105, -0.02254093997180462, 0.0004245932796038687, 0.004053901415318251, -0.025023911148309708, -0.029712427407503128, 0.03451191261410713, 0.001207674271427095, 0.0039359950460493565, 0.0004512523009907454, -0.016090763732790947, -0.014329102821648121, 0.007913604378700256, -0.005916129797697067, 0.015924308449029922, 0.0035684043541550636, 0.018878905102610588, 0.00880830641835928, 0.017214342951774597, 0.06192169710993767, -0.002548860153183341, 0.01395457610487938, -0.01616012118756771, 0.012484213337302208, -0.021500589326024055, -0.012803254649043083, 0.007913604378700256, -0.010895944200456142, -0.0033707376569509506, -0.0006502194446511567, 0.015563652850687504, 0.02236061356961727, -0.008045381866395473, -0.003988012671470642, 0.0263555608689785, -0.005024896003305912, 0.007122937124222517, -0.022859981283545494, -0.03573259338736534, 0.003186942311003804, -0.015646880492568016, -0.020557338371872902, 0.013476014137268066, -0.02449680119752884, 0.0002462164266034961, 0.015355582349002361, 0.012283078394830227, -0.013170844875276089, -0.004896585829555988, 0.008191031403839588, -0.014093289151787758, 0.0018448892515152693, 0.02044636756181717, 0.010576902888715267, 0.002266231458634138, -0.0033273897133767605, -0.04286246374249458, 0.014967184513807297, -0.011388376355171204, -0.009189767763018608, 0.010264797136187553, 0.005007556639611721, -0.0006861982401460409, -0.028186578303575516, 0.013878284022212029, -0.02406678907573223, -0.016673360019922256, 0.01212355773895979, -0.019558601081371307, -0.004615691024810076, -0.03054470755159855, -0.02713235653936863, -0.028380777686834335, 0.016867559403181076, 0.008801369927823544, -0.011159499175846577, 0.020224425941705704, -0.019988613203167915, -0.0311827901750803, 0.00854475051164627, 0.011506282724440098, 0.052100781351327896, -0.008149417117238045, 0.02943500131368637, 0.007712469436228275, -0.006831638980656862, 0.004449234809726477, 0.00662356847897172, -0.011284342035651207, 0.007483592256903648, 0.03859008848667145, 0.026341689750552177, -0.024774227291345596, 0.0054445043206214905, -0.02181963063776493, -0.026577502489089966, -0.043361835181713104, -0.008565557189285755, 0.018906647339463234, 0.033596403896808624, 0.0006497859722003341, -0.028033994138240814, 0.02625846117734909, -0.027354298159480095, 0.018379535526037216, -0.0006480520241893828, -0.02224964275956154, 0.010264797136187553, -0.021001221612095833, -0.039450112730264664, 0.03079439327120781, 0.029656942933797836, 0.006682522129267454, 0.00292858830653131, -0.030572451651096344, 0.009654458612203598, -0.01600753515958786, 5.640653762384318e-05, 0.024621643126010895, -0.01195710152387619, 0.03997722640633583, -0.01966957189142704, -0.023345477879047394, 0.017353055998682976, -0.014703628607094288, -0.006301059853285551, -0.008385229855775833, -0.01378811988979578, 0.03240346908569336, 0.006238638889044523, 0.0068108318373560905, 0.0027014450170099735, 0.021306389942765236, 0.0015639944467693567, 0.0032857756596058607, -0.001726115820929408, 0.019017618149518967, -0.017450155690312386, -0.00953655131161213, 0.003415819490328431, -0.005864112172275782, -0.003831959795206785, -1.3234674952400383e-05, -0.031071819365024567, 0.007074387278407812, -0.01566075161099434, -0.02093186415731907, 0.027354298159480095, -0.03839589282870293, -0.012636798433959484, -0.0366203598678112, 0.00758762750774622, 0.004681579768657684, 0.016090763732790947, -0.016118505969643593, 0.02098734863102436, 0.04225212708115578, -0.0017113775247707963, 0.030822135508060455, -0.035510651767253876, -0.021015092730522156, -0.018337922170758247, 0.008142481558024883, 0.023928076028823853, 0.029712427407503128, 0.032375726848840714, -0.017297571524977684, -0.02434421516954899, -0.004088579677045345, 0.007552948780357838, 0.0168814305216074, 0.0022939741611480713, -0.01552203856408596, -0.023206764832139015, -0.007580691482871771, 0.016631746664643288, 0.002644225722178817, 0.00898169819265604, 0.015633009374141693, -0.009959627874195576, -0.00854475051164627, 0.009501873515546322, 0.00016743149899411947, 0.022180285304784775, -0.005271112080663443, -0.009064925834536552, 0.011145628057420254, -0.04347280412912369, -0.003046494908630848, -0.013378915376961231, -0.006314930971711874, -0.014870084822177887, 0.005115059670060873, -0.031071819365024567, 0.007573755923658609, 0.0005630900268442929, 0.020945735275745392, 0.002366798697039485, -0.031155047938227654, -0.005482650361955166, 0.028033994138240814, 0.003852766938507557, 0.008475393988192081, -0.00880830641835928, 0.033013809472322464, -0.013143102638423443, 0.01718660071492195, -0.012387113645672798, -0.016187863424420357, -0.016215605661273003, 0.0414753295481205, 0.016562389209866524, -0.0035926790442317724, -0.01903148926794529, 0.006814299616962671, -0.02387258969247341, -0.029656942933797836, 0.0009007706539705396, 0.02937951497733593, 0.006072182673960924, -0.002510713879019022, 0.005739270243793726, 0.02488519810140133, -0.0117351608350873, -0.004702386911958456, -0.034872569143772125, 0.009370096027851105, 0.013503757305443287, 0.035704851150512695, -0.01500879880040884, -0.01898987591266632, -0.02327612228691578, -0.01616012118756771, 0.0011123087024316192, 0.014994926750659943, -0.015563652850687504, 0.015216868370771408, 0.01269228383898735, -0.031099561601877213, -0.025273596867918968, -0.018476635217666626, 0.03659261763095856, 0.0011686610523611307, 0.00569765642285347, -0.00903024710714817, -0.03073890693485737, 0.00939783826470375, -0.00482029328122735, -0.016895301640033722, -0.018365664407610893, -0.00047856150195002556, -0.02996211126446724, 0.010264797136187553, -0.0012085412163287401, -0.03398480266332626, 0.005475714802742004, -0.03373511880636215, 0.037896521389484406, -0.008621042594313622, -0.02879691869020462, 0.02996211126446724, -0.0012761639663949609, 0.0021569945383816957, -0.01790791004896164, 0.024677127599716187, -0.02054346725344658, -0.01991925574839115, -0.007448913995176554, -0.006061778869479895, -0.008510071784257889, -0.014315230771899223, 0.007324071601033211, -0.02445518597960472, 0.005101188085973263, -0.009002504870295525, -0.013989254832267761, -0.0018206144450232387, 0.01491169910877943, 0.004653837066143751, 0.0015743980184197426, 0.04047659412026405, -0.0002455662179272622, -0.01120111346244812, 0.019974740222096443, -0.025398438796401024, -0.01585495099425316, -0.0028141497168689966, 0.004959006793797016, 0.01188080944120884, 0.004442299250513315, -0.020626693964004517, 0.0008448517764918506, 0.009869463741779327, -0.02435808628797531, 0.010112212970852852, 0.20352041721343994, 0.005950808525085449, -0.020807022228837013, 0.01767209731042385, -0.022762881591916084, 0.008419908583164215, 0.015369453467428684, -0.02141736075282097, -0.004893118049949408, 0.011457733809947968, -0.011818388476967812, -0.010805780068039894, -0.014315230771899223, 0.006994627416133881, -0.02327612228691578, -0.003720989217981696, -0.012449534609913826, -0.034428685903549194, 0.013531499542295933, 0.011478540487587452, 0.022804496809840202, -0.003811152884736657, -0.015924308449029922, -0.020432496443390846, 0.022291256114840508, -0.004633030388504267, 0.012976646423339844, 0.0038076851051300764, 0.014245874248445034, -0.012290013954043388, -0.018767934292554855, 0.0020668308716267347, -0.03065567836165428, 0.01718660071492195, -0.027839794754981995, -0.01937827281653881, 0.009370096027851105, 0.00396720552816987, 0.01907310262322426, -0.008399100974202156, -0.0018310179002583027, -0.01747789792716503, -0.002609547460451722, -0.005579749587923288, -0.01693691685795784, 0.024677127599716187, -0.002342524006962776, -0.014079418033361435, 0.02641104720532894, -0.021112192422151566, -0.030933106318116188, -0.022873852401971817, -0.00783037580549717, -0.00868346355855465, -0.004993685055524111, -0.0060375044122338295, 0.019558601081371307, 0.0257174801081419, 0.013420529663562775, 0.018767934292554855, -0.00919670332223177, 0.026466531679034233, -0.02738204039633274, 0.04436057060956955, -0.0173669271171093, 0.013476014137268066, -0.026619117707014084, -0.016617875546216965, -0.0046191588044166565, -0.012206786312162876, -0.020377010107040405, -0.02001635544002056, -0.0068593816831707954, -0.01258824858814478, -0.01249114889651537, -0.017588868737220764, 0.04025465250015259, -0.0011036391369998455, 0.010986107401549816, 0.008669592440128326, -0.018559863790869713, -0.004653837066143751, -0.00949493795633316, -0.00044691748917102814, -0.02304030954837799, -0.02050185203552246, 0.019780542701482773, -0.024150017648935318, -0.010181569494307041, 0.005118527449667454, -0.008107802830636501, -0.006269849371165037, 0.01174209639430046, 0.030239539220929146, 0.011478540487587452, 0.048827145248651505, 0.044194113463163376, 0.02761785313487053, 0.0009562560589984059, 0.009377031587064266, -0.030100824311375618, 0.008121673949062824, -0.004001883789896965, -0.008905405178666115, 0.011686610989272594, -0.015938179567456245, 0.014093289151787758, -0.0029580648988485336, 0.0004135395574849099, -0.017741454765200615, 0.006193556822836399, -0.02962919883430004, -0.015841079875826836, -0.010361896827816963, 0.0024448251351714134, 0.016520775854587555, -0.000513239880092442, 0.016520775854587555, -0.009383967146277428, 0.0057323346845805645, -0.015508167445659637, -0.005333533510565758, 0.01722821407020092, 0.013801991008222103, -0.0019419887103140354, -0.04211341217160225, -0.0398385114967823, 0.0033429949544370174, 0.003478240454569459, -0.003814620664343238, 0.0236229058355093, -0.04441605508327484, -0.01966957189142704, -0.012872611172497272, -0.010639323852956295, 0.009952692314982414, 0.003308316459879279, -0.014315230771899223, -0.012047265656292439, -0.009633651003241539, -0.00065715512027964, 0.03298606723546982, -0.0030482287984341383, 0.02401130273938179, -0.004178743809461594, -0.025745222344994545, 0.01010527741163969, -0.007192294113337994, 0.00953655131161213, -0.014592657797038555, -0.014134903438389301, -0.0034383602906018496, 0.002684105886146426, -0.019503114745020866, 0.002848828211426735, -0.02254093997180462, 0.0007529541035182774, -0.018046623095870018, 0.02503778226673603, -0.014259745366871357, -0.03154344484210014, 0.013240201398730278, -0.024150017648935318, 0.009730750694870949, -0.013163909316062927, -0.016673360019922256, -0.1755557805299759, 0.01061158161610365, 0.029934369027614594, -0.025412309914827347, 0.019045360386371613, -0.012019523419439793, 0.012775511480867863, 0.02265191078186035, -0.021486718207597733, -0.0143013596534729, 0.014634272083640099, 0.009349288418889046, 0.020973477512598038, -0.0030100825242698193, -0.02245771326124668, 0.0005682918126694858, -0.014551044441759586, 0.014384588226675987, 0.02176414430141449, 0.019461501389741898, 0.02943500131368637, -0.010139955207705498, 0.00263035437092185, 0.03553839400410652, -0.0005258108139969409, -0.015882693231105804, 0.00993188563734293, -0.006953013129532337, -0.0019437226001173258, -0.02523198164999485, -0.012296950444579124, 0.013649406842887402, -0.004431895911693573, -0.0030967784114181995, 0.011353698559105396, 0.02029378153383732, 0.017921781167387962, -0.0036100184079259634, -0.012359371408820152, 0.0032632346265017986, 0.007865054532885551, 0.008059252984821796, 0.003434892510995269, -0.004848035983741283, -0.024801969528198242, 0.03914494439959526, 0.0173669271171093, -0.0016368190990760922, -0.005777416285127401, -0.005326597485691309, 0.005402890034019947, -0.0038007493130862713, 0.033013809472322464, 0.0015293160686269403, 0.035316452383995056, 0.0067033288069069386, 0.004931264091283083, 0.010778037831187248, 0.012803254649043083, 0.014093289151787758, 0.016659488901495934, -0.017838554456830025, 0.006342673674225807, 0.016867559403181076, -0.019836027175188065, 0.006592357996851206, -0.018115980550646782, 0.022762881591916084, -0.033790603280067444, 0.01918407343327999, -0.007982960902154446, 0.001843155361711979, 0.014218132011592388, 0.003606550395488739, 0.030933106318116188, 0.03373511880636215, -0.0013984052930027246, 0.0035892112646251917, -0.002618216909468174, -0.012255336157977581, -0.03820169344544411, 0.06114490330219269, 0.0025263193529099226, -0.025994906201958656, 0.014759114012122154, 0.004938200116157532, -0.0028835064731538296, -0.013697955757379532, -0.008676527999341488, -0.03157118707895279, 0.011291277594864368, -0.03431771323084831, -0.012387113645672798, -0.018115980550646782, 0.017339184880256653, 0.017588868737220764, 0.008426844142377377, -0.03490031138062477, 0.02254093997180462, -0.040532078593969345, 0.002261029789224267, 0.004969410598278046, -0.004861907567828894, 0.025453923270106316, 0.037508126348257065, -0.020751535892486572, -0.014897827990353107, 0.0007815637509338558, 0.04691289737820625, -0.01259518414735794, 0.006710264831781387, -0.005968147423118353, 0.025440052151679993, 0.03401254490017891, 0.0028731029015034437, 0.034428685903549194, 0.009675265289843082, -0.012768575921654701, 0.011582575738430023, 0.0021552606485784054, 0.03498353809118271, 0.013753441162407398, 0.0016740983119234443, 0.033901575952768326, -0.014044740237295628, -0.008558621630072594, -0.11385602504014969, -0.0074211712926626205, 0.0007317136041820049, 0.006786556914448738, -0.008558621630072594, 0.00628372048959136, -0.00774714769795537, 0.04552576318383217, 0.0035996148362755775, 0.0010186771396547556, -0.004587948322296143, -0.01552203856408596, -0.020862506702542305, 0.006314930971711874, 0.0008561222348362207, -0.02366451919078827, -0.015896564349532127, -0.0266884732991457, -0.008218773640692234, 0.014856213703751564, -0.02015506848692894, 0.013288751244544983, -0.014551044441759586, -0.007656984031200409, -0.002207278273999691, -0.008967826142907143, -0.02073766477406025, 0.01889277622103691, -0.019586343318223953, 0.03625970333814621, 0.03173764422535896, -0.002548860153183341, -0.027215585112571716, 0.0006112062837928534, -0.013309558853507042, -0.007892796769738197, -0.00800376757979393, -0.008669592440128326, 0.03997722640633583, -0.024815842509269714, 0.011069335974752903, -0.0031730709597468376, 0.00122934824321419, -0.00919670332223177, 0.005423697177320719, 0.007386493030935526, -0.015563652850687504, 0.03073890693485737, -0.01738079823553562, -0.027506882324814796, -0.024538414552807808, 0.0036585680209100246, -0.0035285241901874542, 0.003991480451077223, 0.024801969528198242, -0.0026962433476001024, 0.022957080975174904, 0.004549802280962467, -0.03337446227669716, -0.003174804849550128, 0.010778037831187248, -0.019655700773000717, -0.01239404920488596, -0.007622305769473314, 0.032625410705804825, 0.011325955390930176, -0.02630007639527321, -0.007386493030935526, 0.01932278834283352, -0.03290283679962158, 0.0014885690761730075, 0.006172749679535627, -0.024371959269046783, 0.016812073066830635, -0.0008790966821834445, 0.02030765265226364, -0.013912961818277836, 0.003237225813791156, 0.01285874005407095, -0.00637041637673974, -0.018476635217666626, 0.007226972375065088, -0.013940704986453056, -0.024427443742752075, 0.039561085402965546, 0.009099604561924934, -0.018670834600925446, 0.022568684071302414, -0.018670834600925446, -0.02439970150589943, -0.013767313212156296, 0.0029528632294386625, 0.03562162071466446, -0.035260967910289764, -0.0014877021312713623, 0.027451397851109505, -0.0143013596534729, -0.02829754911363125, -0.004216889850795269, 0.014315230771899223, -0.058592572808265686, -0.015286225825548172, -0.056983496993780136, 0.026674602180719376, -0.01943375915288925, 0.00861410703510046, -0.01922568865120411, -0.029989853501319885, 0.02034926787018776, 0.0035198545083403587, -0.004296650178730488, -0.019114717841148376, -0.01163806114345789, 0.01269228383898735, -0.003313518362119794, 0.02924080193042755, 0.009744621813297272, -0.0075598848052322865, 0.024829713627696037, -0.014016997069120407, 0.036231961101293564, 0.010819651186466217, -0.0007546880515292287, 0.008232644759118557, 0.02312353625893593, 0.01371182780712843, 0.02420550212264061, -0.01190855260938406, 0.0009077063295990229, 0.022083185613155365, 0.010667067021131516, -0.013677149079740047, 0.01839340664446354, -0.025023911148309708, 0.013316494412720203, 0.02474648505449295, 0.017727583646774292, -0.006502194330096245, 0.01586882211267948, -0.00019018918101210147, 0.01732531376183033, -0.016617875546216965, -0.013441336341202259, -0.0015501230955123901, -0.00024513271637260914, 0.0034921118058264256, -0.004612223245203495, 0.012671476230025291, -0.00309851230122149, 0.0011582575971260667, -7.222854037536308e-05, 0.010237054899334908, 0.04300117865204811, 0.005118527449667454, -0.02011345513164997, -0.03792426362633705, 0.006547276396304369, 0.0016073425067588687, 0.022568684071302414, -0.03342995047569275, -0.030960848554968834, -0.018518250435590744, -0.008433779701590538, 0.024219373241066933, 0.004997153300791979, 0.0016524243401363492, -0.00457407720386982, -0.02279062569141388, -0.0015093761030584574, 0.02263803966343403, -0.01674271747469902, 0.00810086727142334, 0.009723815135657787, 0.009543487802147865, -0.021680917590856552, 0.021791888400912285, 0.027493011206388474, 0.005017959978431463, 0.002392807509750128, -0.009481065906584263, -0.033901575952768326, 0.0183101799339056, 0.020432496443390846, -0.007670855615288019, -0.03104407712817192, -0.00500408886000514, 0.027728823944926262, 0.01283793244510889, -0.002430953783914447, 0.023109665140509605, -0.0017555925296619534, -0.015050412155687809, 0.031598929315805435, 0.007955217733979225, 0.01707562990486622, -0.033069293946027756, 0.01614624820649624, 0.052239496260881424, 0.004986749496310949, 0.003849299158900976, 0.012511955574154854, -0.0018500910373404622, 0.0008626244380138814, 0.001394070452079177, -0.013781184330582619, -0.011728224344551563, -0.0018587606027722359, 0.01620173454284668, 0.0025939419865608215, -0.012803254649043083, 0.0029459274373948574, 0.002741325180977583, 0.053515661507844925, 0.024566156789660454, 0.0014044740237295628, 0.009730750694870949, -0.010049792006611824, -0.017158856615424156, -0.00749052781611681, -0.0008201434393413365, -0.034678369760513306, 0.010847394354641438, -0.0035337258595973253, 0.012213721871376038, 0.01078497339040041, -0.00998043455183506, 0.03803523629903793, 0.02288772352039814, 0.019697314128279686, -0.011388376355171204, 0.010410446673631668, -0.021361876279115677, 0.0025089799892157316, 0.01439845934510231, -0.044970910996198654, -0.007018901873379946, -0.004556737840175629, -0.036675844341516495, 0.0021621964406222105, 0.021292518824338913, -0.019239559769630432, 0.06120038777589798, 0.012130494229495525, -0.01840727962553501, 0.014648143202066422, -0.006186621263623238, 0.0006432837690226734, 0.01883728988468647, -0.03334672003984451, -0.02976791374385357, -0.024441314861178398, 0.00284189241938293, -0.0004586214490700513, 0.00929380301386118, -0.022901596501469612, -0.003147062147036195, -0.008489265106618404, -0.026771701872348785, 0.026716215535998344, -0.019447630271315575, -0.002335588214918971, 0.036675844341516495, 0.013746505603194237, 0.027548497542738914, -0.019544729962944984, 0.005891854874789715, -0.00956429447978735, 0.019752800464630127, -0.009134282357990742, -0.013254073448479176, -0.011305148713290691, 0.01821308024227619, 0.005753141362220049, -0.010694809257984161, -0.018962131813168526, 0.0029528632294386625, 0.018656963482499123, 0.006790024694055319, -0.0036100184079259634, 0.0063392058946192265, 0.01014689076691866, -0.028630461543798447, 0.009009440429508686, -0.03681455925107002, -0.03232024237513542, -0.025634251534938812, 0.006581954658031464, -0.010722552426159382, 0.006679053883999586, -0.058537088334560394], "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd": [-0.02320769801735878, -2.365606860621483e-06, 0.0064261602237820625, 0.0003491818788461387, -0.040173038840293884, 0.021543068811297417, -0.005579974036663771, 0.00031103414949029684, -0.014496141113340855, -0.008995930664241314, -0.002479603048413992, 0.004418202210217714, -0.016868237406015396, 0.017728295177221298, 0.012207277119159698, 0.015078761614859104, 0.014898426830768585, 0.0151065057143569, 0.017547961324453354, 0.004435542039573193, -0.012630370445549488, 0.02868710085749626, -0.0060204071924090385, -0.041726693511009216, -0.014634860679507256, 0.0023859678767621517, 0.005642397794872522, 0.0053268116898834705, -0.0003988172975368798, 0.003672586986795068, 0.01693759672343731, 0.013552851974964142, -0.024442298337817192, -0.007022652309387922, -0.029991060495376587, -0.00023170417989604175, 0.012332124635577202, -0.004348842427134514, 0.014967786148190498, 0.018019605427980423, 0.025135893374681473, -0.013906585052609444, -0.036455366760492325, -0.002451859414577484, -0.019129358232021332, 0.04189315438270569, 0.01359446719288826, -0.022763798013329506, -0.013462684117257595, 0.030129779130220413, 0.031045325100421906, 0.01652143895626068, -0.012866192497313023, -0.011305603198707104, 0.006277037318795919, 0.0014747569803148508, 0.02219504863023758, 0.03839743509888649, -0.018310915678739548, -0.014107728376984596, 0.0058157965540885925, 0.0003706399875227362, -0.000274837133474648, 0.0025246867444366217, 0.002821198897436261, 0.010438608936965466, 0.002583642490208149, 0.004355778452008963, -0.008635261096060276, 0.011832735501229763, 0.039229750633239746, 0.03043496049940586, -0.012394547462463379, 0.02433132193982601, 0.01695146970450878, -0.007213390897959471, -0.015314583666622639, 0.00952999945729971, -0.017811527475714684, -0.009023674763739109, 0.003327523358166218, -0.02183437906205654, -0.011943710967898369, 0.007192583288997412, 0.02215343341231346, -0.02039170078933239, -0.0022559186909347773, 0.03176666423678398, 0.012235021218657494, -0.023290930315852165, 0.01521748024970293, 0.018879663199186325, 0.006408820394426584, -0.009391279891133308, -0.010279081761837006, 0.008489605970680714, -0.029186489060521126, 0.01006406731903553, 0.012221149168908596, -0.01725665107369423, -0.0024379873648285866, 0.0026269920635968447, 0.004338438622653484, -0.0054308511316776276, -0.01843576319515705, -0.0051534129306674, -0.015522662550210953, -0.013185246847569942, 0.026051439344882965, 0.016868237406015396, 0.006939420942217112, 0.01195064652711153, 0.03262672200798988, -0.02204245887696743, -0.03379196301102638, -0.0360114686191082, 0.0022160368971526623, -0.01426031906157732, -0.009599358774721622, -0.00584007240831852, 0.021015936508774757, 0.02523299679160118, -0.0036066954489797354, -0.01383722573518753, 0.004223995376378298, 0.002209101105108857, -0.020003288984298706, -0.01783927157521248, -0.02091883309185505, -0.018463507294654846, 0.047885820269584656, 0.000746481935493648, 0.002519484842196107, 0.022222792729735374, -0.002679011784493923, -0.023873548954725266, 0.01226970087736845, -0.028062865138053894, 0.003268567845225334, -0.02097432129085064, 0.013441876508295536, -0.0009077428258024156, 0.0028957603499293327, -0.0018692392623052, -0.003031011437997222, 0.0149539140984416, -0.00844105426222086, 0.009197073057293892, -0.022597335278987885, -0.008773980662226677, -0.005552230402827263, 0.0056111859157681465, -0.007594868540763855, -0.03506817668676376, 0.03085111826658249, 0.009668718092143536, 0.00284027261659503, -0.002018362283706665, 0.004608940798789263, -0.03701024502515793, -0.002470933133736253, 0.004241335205733776, 0.00488637899979949, -0.010549584403634071, 0.015148120932281017, 0.029769109562039375, 0.0035581437405198812, 0.0009086098289117217, 0.004764999728649855, 0.013323965482413769, -0.025038789957761765, 0.02592659182846546, -0.013136695139110088, 0.014218703843653202, 0.0019836826249957085, -0.005583442281931639, 0.010521840304136276, -0.0026096522342413664, -0.02660631574690342, -0.01742311380803585, -0.00035156612284481525, 0.015730740502476692, 0.023235442116856575, 0.018727073445916176, 0.000812807003967464, -0.02283315733075142, 0.0027986569330096245, 0.0058157965540885925, -0.01046635303646326, -0.011818863451480865, -0.003572015790268779, 0.014704219996929169, -0.00831620767712593, 0.01631336100399494, -0.5948272943496704, -0.015370071865618229, -0.005132605321705341, -0.003258163807913661, 0.012540202587842941, 0.004657492507249117, 0.02485845424234867, 0.011992262676358223, -0.008434118703007698, 0.026800522580742836, -5.2751172916032374e-05, 0.0005089255282655358, -0.00919013749808073, 0.007022652309387922, 0.006030810996890068, -0.02985234186053276, 0.03934072330594063, -0.026564698666334152, -0.00037562521174550056, 0.006145254243165255, -0.03451330214738846, 0.01714567467570305, -0.0017686679493635893, 0.00783069059252739, -0.010244402103126049, -0.006179933901876211, -0.016022050753235817, -0.0426977276802063, 0.007518572732806206, 0.008378631435334682, 0.003689926816150546, -0.008552029728889465, 0.023290930315852165, 0.008572837337851524, 0.03787030279636383, -0.008226039819419384, -0.007359046023339033, 0.013074271380901337, -0.0031922722700983286, 0.010764598846435547, -0.0185883529484272, -0.006599558982998133, 0.020724626258015633, -0.013400261290371418, 0.0070920116268098354, 0.002025298308581114, -0.0019073870498687029, 0.026106925681233406, -0.004667896311730146, -0.014704219996929169, -0.006277037318795919, -0.01553653459995985, -0.027896402403712273, -0.02311059460043907, 0.002850676653906703, -0.00636026868596673, 0.020363958552479744, -0.01672951877117157, -0.0022663224954158068, -0.034235864877700806, 0.004570792894810438, 0.02082172967493534, -0.004966142121702433, -0.0006350731709972024, -0.00826071947813034, 0.020197493955492973, 0.012436163611710072, 0.0033795430790632963, -0.005364959593862295, -0.019989416003227234, -0.012443099170923233, 0.029463928192853928, -0.025371715426445007, -0.0010464618680998683, 0.02910325862467289, -0.005389235448092222, 0.02548268996179104, 0.006263165269047022, -0.014704219996929169, 0.022749925032258034, 0.015161992982029915, -0.010896381922066212, -0.04641539603471756, 0.007282750681042671, 0.0426977276802063, 0.0054308511316776276, -0.013275413773953915, 0.02108529582619667, -0.017977990210056305, -0.0010031121782958508, 0.0006623835070058703, 0.014579372480511665, 0.011770311743021011, -0.03787030279636383, -0.006831913720816374, 0.010091811418533325, -0.021224016323685646, -0.010667495429515839, -0.001955938758328557, -0.05914980545639992, -0.005139540880918503, -0.025260740891098976, 0.005989195313304663, -0.022708309814333916, -0.0044320737943053246, 0.005215836688876152, 0.0004100882215425372, 0.0017400571377947927, 0.03154471516609192, -0.028909051790833473, -0.018491249531507492, -0.024525528773665428, -0.0062805050984025, 0.009585486724972725, -0.022236665710806847, -0.03218282014131546, 0.00531294010579586, 0.007712779566645622, 0.002836804836988449, -0.015647510066628456, 0.025357844308018684, 0.0270224716514349, -0.01746472902595997, -0.012567946687340736, 0.048718132078647614, 0.0018241555662825704, 0.010521840304136276, -0.0036309713032096624, -0.01410079188644886, -0.012151789851486683, 0.03257123380899429, -0.01165933720767498, 0.013185246847569942, -0.006859657354652882, 0.011777248233556747, 0.007456149440258741, -0.0008539892151020467, -0.009953092783689499, 0.009828245267271996, -0.0103068258613348, -0.0010724717285484076, 0.001593535183928907, 0.0035928236320614815, -0.004466753453016281, -0.01832478679716587, -0.03409714251756668, -0.012429227121174335, -0.016119154170155525, -0.04353003948926926, -0.005826200358569622, 0.009862924925982952, 0.014066112227737904, -0.018019605427980423, 0.008593645878136158, 0.0040228525176644325, -0.02012813463807106, 0.003953493200242519, 0.023124467581510544, -0.027230551466345787, -0.019781338050961494, 0.00677295820787549, 0.029408439993858337, -0.01986456848680973, 0.01434355042874813, -0.0005271324189379811, -0.012907808646559715, -0.020516548305749893, 0.0025160168297588825, -0.0017877419013530016, -0.03567854315042496, -0.019684234634041786, -0.005482870619744062, -0.008066513575613499, 0.014829067513346672, -0.016660159453749657, 0.010937998071312904, -0.021945355460047722, 0.018297044560313225, -0.02219504863023758, -0.0038910696748644114, -0.002158815274015069, -0.02315220981836319, -0.005871284287422895, -0.020058775320649147, 0.028798075392842293, -0.005468999035656452, 0.033015135675668716, -0.0035997594241052866, -0.01324766967445612, 0.023068979382514954, 0.003079563146457076, 0.02549656294286251, -0.02215343341231346, -0.012831512838602066, 0.018255427479743958, 0.011714824475347996, 0.01567525416612625, 0.006124446168541908, 0.002842006739228964, 0.03182215243577957, 0.012033877894282341, -0.006374140735715628, -0.005781116895377636, -0.021529197692871094, 0.008219104260206223, -0.028118353337049484, 0.0280351210385561, -0.021321119740605354, 0.035872749984264374, -0.008878019638359547, 0.0008253784035332501, -0.03112855739891529, -0.008982058614492416, -0.02793801762163639, 0.045638568699359894, 0.039285238832235336, -0.00763648422434926, 0.027799298986792564, 0.017867013812065125, 0.0016048060497269034, 0.005659737624228001, 0.030351730063557625, 0.01753408834338188, 0.011208499781787395, 0.018463507294654846, -0.028659356757998466, 0.01943453960120678, -0.0168404933065176, -0.004005512688308954, -0.04117181524634361, 0.016119154170155525, -0.0024865390732884407, -0.0019195249769836664, -0.00202356418594718, 0.02023911103606224, -0.004421669989824295, 0.03434683755040169, 0.0067902980372309685, -0.003155858488753438, -0.03318160027265549, -0.013136695139110088, 0.023818062618374825, -0.004754595924168825, -0.018297044560313225, 0.017603447660803795, 0.01811670884490013, 0.04072791710495949, 0.013781738467514515, 0.0044875615276396275, 0.04594375193119049, 0.00783069059252739, 0.004518773406744003, -0.024608761072158813, 0.03362549841403961, -0.015605893917381763, -0.0030917010735720396, 0.006391480565071106, 0.008614453487098217, 0.022444743663072586, 0.023235442116856575, 0.02065526694059372, 0.01527296844869852, 0.01072991918772459, -0.0037731584161520004, 0.03501268848776817, -0.015411687083542347, 0.0019888845272362232, -0.02140435017645359, 0.013337837532162666, 0.005087521392852068, -0.01466260477900505, -0.022000841796398163, -0.015786228701472282, -0.011021229438483715, 0.03626115992665291, 0.019212588667869568, 0.012158725410699844, -0.010279081761837006, 0.026786649599671364, -0.02213956229388714, -0.023457393050193787, -0.02829868718981743, 0.029436184093356133, 0.019642619416117668, -0.008905763737857342, -0.007879242300987244, -0.00876704417169094, 0.013102014549076557, -0.02066913992166519, 0.045638568699359894, -0.01566138118505478, 0.01971197873353958, -0.00998083595186472, 0.002032234100624919, 0.0034662424586713314, -0.0056874812580645084, 0.025565922260284424, -0.010494097135961056, 0.005625057965517044, 0.010799278505146503, 0.004973078146576881, 0.0011479002423584461, -0.025898847728967667, -0.007428405340760946, 0.03972913697361946, 0.024664249271154404, 0.021002065390348434, 0.005330279935151339, -0.04136602208018303, -0.014301935210824013, -0.006363736931234598, 0.006394948344677687, 0.005673609673976898, -0.013337837532162666, 0.018810303881764412, 0.0043869903311133385, -0.00505977775901556, -0.012810705229640007, 0.013643018901348114, 0.011853543110191822, -0.009037546813488007, -0.03559530898928642, -0.019878441467881203, -0.014301935210824013, 0.07268878817558289, 0.013400261290371418, -0.018921280279755592, -0.001170442090369761, -0.015161992982029915, -0.0051013934426009655, 0.009627102874219418, -0.0009996441658586264, 0.01838027499616146, 0.01088944636285305, -0.01571686938405037, -0.018019605427980423, 0.007470021024346352, 0.01192290335893631, 0.018366403877735138, 0.002848942531272769, 0.0016238800017163157, 0.001359446789138019, 0.011465130373835564, 0.0011669740779325366, 0.01149981003254652, -0.009391279891133308, -0.011333347298204899, 0.019531643018126488, -0.01213098131120205, 0.00169584050308913, 0.014045304618775845, 0.006356800906360149, 0.009252561256289482, -0.025884976610541344, -0.011048972606658936, 0.003707266878336668, 0.004862103145569563, 0.025718513876199722, -0.010168107226490974, 0.014274191111326218, 0.013095078989863396, 0.028548382222652435, 0.032793186604976654, -0.041560228914022446, 0.05293519049882889, 0.006498987786471844, -0.0070954798720777035, -0.030518192797899246, 0.009966963902115822, 0.012567946687340736, 0.0015666583785787225, 0.007844562642276287, 0.006679322570562363, -0.03393068164587021, 0.011166884563863277, -0.019143229350447655, -0.03701024502515793, 0.004033256787806749, 0.03320934250950813, 0.007178711239248514, -0.03143373876810074, -0.004151167813688517, 0.004418202210217714, -0.009571614675223827, -0.012061621993780136, -0.01057039201259613, 0.03207184746861458, 0.009342728182673454, 0.026204029098153114, -0.035872749984264374, -0.021917611360549927, -0.00021544803166761994, -0.030046548694372177, -0.0059163677506148815, 0.031461481004953384, -0.0007586198626086116, 0.001388924545608461, -0.0025506967213004827, 0.01695146970450878, 0.009308048523962498, 0.0245394017547369, 0.0037904982455074787, 0.01917097344994545, -0.0024917409755289555, 0.026439853012561798, -0.03148922696709633, 0.00567014142870903, -0.0070920116268098354, -0.0022663224954158068, 0.026939241215586662, 0.018518993631005287, 0.019046125933527946, -0.00031601934460923076, 0.011818863451480865, 0.0033483311999589205, 0.0005180289736017585, 0.005951047409325838, -0.011187692172825336, 0.012366804294288158, 0.0020599779672920704, -0.00265647005289793, 0.00903061032295227, -0.02835417538881302, -0.00783069059252739, 0.008184424601495266, -0.02225053682923317, 0.0009354866342619061, -0.008066513575613499, -0.04114407300949097, -0.022611206397414207, -0.00019919189799111336, 0.005833136383444071, -0.02125176042318344, -0.004248271230608225, 0.0360114686191082, -0.03176666423678398, 0.024470042437314987, 0.0010594668565317988, -0.014454525895416737, 0.008711556904017925, 0.013344773091375828, 0.028492894023656845, -0.014197895303368568, -0.024997174739837646, -0.008295400068163872, -0.0245394017547369, 0.0070191845297813416, 0.01340719684958458, -0.013476556167006493, 0.008940443396568298, -0.01046635303646326, -0.026828264817595482, -0.009044482372701168, 0.002136273542419076, 0.015037145465612411, -0.0027899870183318853, 0.007580996491014957, -0.02703634463250637, -0.04402942955493927, -0.008011025376617908, 0.014385166577994823, -0.015744613483548164, -0.0036552471574395895, 0.004761531483381987, 0.005663205403834581, -0.02596820704638958, -0.0026096522342413664, -0.01434355042874813, 0.017034700140357018, -0.031211787834763527, -0.036732807755470276, 0.03606695309281349, -0.006086298730224371, 0.010057131759822369, -0.02182050794363022, 0.008017961867153645, 0.009523062966763973, 0.011284795589745045, -0.0025246867444366217, 0.021418223157525063, 0.01937905140221119, 0.0233741607517004, -0.006082830484956503, 0.014940042048692703, 0.03723219409584999, 0.001366382697597146, 0.009703397750854492, -0.0036101634614169598, 0.014482269994914532, 0.003918813541531563, -0.023540623486042023, 0.016327233985066414, -0.015259096398949623, 0.005573038011789322, -0.00868381280452013, 0.019351309165358543, 0.010209722444415092, 0.0013975944602862, -0.004054064396768808, 0.023304801434278488, 0.007594868540763855, -0.0005024230922572315, -0.01340719684958458, -0.047358687967061996, -0.01373318675905466, -0.03229379653930664, -0.022652821615338326, 0.03259897977113724, -0.012491650879383087, -0.004993886221200228, 0.05296293646097183, -0.009481447748839855, -0.013150566257536411, -0.005524486303329468, 0.0064261602237820625, 0.004213591571897268, 0.015550406649708748, 0.018394146114587784, 0.027813170105218887, -0.023388033732771873, 0.0026269920635968447, -0.02825707197189331, 0.011347219347953796, -0.019351309165358543, -0.028964539989829063, 0.02433132193982601, -0.006374140735715628, -0.015161992982029915, -0.008753172121942043, 0.027272166684269905, -0.04211510717868805, -0.031988613307476044, 0.017006956040859222, -0.018033476546406746, 0.0010906786192208529, -0.030018804594874382, -0.026592442765831947, -0.015730740502476692, 0.011125268414616585, 0.010667495429515839, -0.005111797247081995, 0.011548361741006374, -0.01415628008544445, -0.029491672292351723, 0.009231753647327423, 0.011506745591759682, 0.04552759602665901, 0.005333747714757919, 0.04685929790139198, 0.004376586060971022, 0.0005830535665154457, -0.014052240177989006, -0.005118733271956444, 0.0007178711239248514, 0.010258274152874947, 0.0283125601708889, 0.010722982697188854, -0.01806122064590454, 0.003800902282819152, -0.015467175282537937, -0.013018783181905746, -0.021903738379478455, -0.026897625997662544, 0.020058775320649147, 0.03187764063477516, -0.0023824998643249273, -0.01656305603682995, 0.02066913992166519, -0.027286037802696228, 0.020946577191352844, 0.021973099559545517, -0.023818062618374825, -0.01944841258227825, -0.022167304530739784, -0.03617792949080467, 0.02066913992166519, 0.014801323413848877, 0.01900451071560383, 0.012061621993780136, -0.004622812382876873, -0.0014851609012112021, -0.013885777443647385, 0.0031992082949727774, 0.015564278699457645, -0.0038043700624257326, 0.023929037153720856, -0.008413311094045639, -0.01123624388128519, 0.025787873193621635, -0.007098947651684284, -0.022916387766599655, 0.0005015560891479254, -0.01415628008544445, 0.032044101506471634, -0.013441876508295536, 0.001043860916979611, -0.018546737730503082, 0.014884554781019688, 0.009155457839369774, -0.011513682082295418, 0.001751328120008111, 0.02230602502822876, -0.0036795230116695166, -0.017672808840870857, 0.013712379150092602, 0.006433096248656511, 0.009939220733940601, -0.006599558982998133, -0.015148120932281017, -0.0028316027019172907, -0.027757683768868446, 0.006658514961600304, 0.01779765449464321, -0.03531787171959877, -0.01986456848680973, -0.04061694070696831, 0.009356600232422352, 0.020572036504745483, 0.007442277390509844, -0.005090989638119936, 0.012276636436581612, 0.0363166481256485, -0.0054065752774477005, 0.03737091273069382, -0.04233705624938011, -0.0069151450879871845, -0.028368046507239342, -0.0020773177966475487, 0.02778542786836624, -0.008163616992533207, 0.040284015238285065, -0.003832113929092884, -0.0019212589832022786, -0.009765821509063244, -0.004941866267472506, 0.012734409421682358, 0.005441254936158657, 0.00430029071867466, -0.03309836611151695, 0.0004159404197707772, 0.015689125284552574, 0.01778378337621689, -0.00023929036979097873, 0.015758484601974487, -0.014496141113340855, -0.00900286715477705, 0.023332545533776283, 0.004685236141085625, 0.01466260477900505, -0.002387701766565442, -0.007782139349728823, 0.009425959549844265, -0.023984525352716446, -0.006564879324287176, -0.019739720970392227, -0.015467175282537937, 0.0005427383002825081, -0.009155457839369774, -0.01620238646864891, -0.0025957804173231125, -0.015647510066628456, 0.0197535939514637, 0.004234399180859327, -0.017284395173192024, 0.01389271393418312, 0.02868710085749626, -0.008808660320937634, 0.011125268414616585, -0.007144031580537558, 0.01253326702862978, -0.01933743618428707, 0.007747459225356579, -0.021334990859031677, -0.011583041399717331, -0.029463928192853928, 0.0423925444483757, 0.009363536722958088, -0.004480625502765179, -0.017090188339352608, -0.011749504134058952, -0.024761350825428963, -0.02342964895069599, -0.008850275538861752, 0.02580174431204796, -0.0069914404302835464, -0.00996002834290266, 0.009703397750854492, 0.03984011337161064, -0.016590800136327744, 0.020960450172424316, -0.014634860679507256, -0.00585394399240613, -0.0026530020404607058, 0.04669283330440521, -0.017326010391116142, -0.01434355042874813, -0.008434118703007698, 0.0012519394513219595, -0.0008310138364322484, 0.02188986726105213, -0.02215343341231346, 0.025690769776701927, 0.008454926311969757, -0.0034523706417530775, -0.018199941143393517, -0.01905999891459942, 0.02624564617872238, 0.006294377148151398, -0.0014331412967294455, -0.009301112964749336, -0.0034610405564308167, 0.003533867886289954, 0.0035616117529571056, -0.02491394244134426, -0.03176666423678398, 0.010369249619543552, -0.014288063161075115, 0.003984705079346895, 0.012810705229640007, -0.029963316395878792, 0.006727874279022217, -0.022375384345650673, 0.015370071865618229, -0.026786649599671364, -0.01351123582571745, 0.03393068164587021, -0.0016481558559462428, 0.004255207255482674, -0.02735539898276329, 0.001225062645971775, -0.010632815770804882, -0.019240332767367363, 0.008829467929899693, 0.011541425250470638, -0.0006654179887846112, -0.029297465458512306, 0.021376606076955795, -0.02634274959564209, 0.015855588018894196, -0.0206136517226696, -0.001743525150232017, -0.03090660646557808, 0.030518192797899246, -0.009474511258304119, -0.019670361652970314, 0.01646595261991024, 0.01618851348757744, -0.0072203269228339195, -0.007081607822328806, -0.03612244129180908, -0.002779583213850856, -0.01566138118505478, 0.004744191654026508, 0.01072991918772459, 0.0056909495033323765, -0.02241699956357479, 0.002607918344438076, 0.01492617093026638, 0.0016507568070665002, 0.009703397750854492, 0.21762245893478394, 0.005358023568987846, -0.004185847472399473, 0.009550807066261768, -0.03467976301908493, 0.02161242999136448, 0.030129779130220413, -0.011617721058428288, -0.005340683739632368, 0.005080585367977619, -0.00985598936676979, 0.0004326300695538521, -0.03184989467263222, 0.010390057228505611, -0.0055106147192418575, -0.026689546182751656, -0.016965340822935104, -0.02155694179236889, -0.001655958709307015, -0.0018987171351909637, 0.007144031580537558, 0.0018900471040979028, -0.03742640092968941, -0.012789896689355373, 0.023457393050193787, -0.003963897004723549, -0.01715954765677452, 0.014114663936197758, 0.0003491818788461387, -0.0038980054669082165, -0.021224016323685646, -0.003171464428305626, -0.0062805050984025, 0.02645372413098812, -0.027757683768868446, -0.01763119176030159, 0.014496141113340855, 0.006110574584454298, 0.01721503585577011, 0.02331867441534996, -0.00634639710187912, -0.02761896513402462, -0.013032655231654644, -0.0008093389915302396, 0.002710223663598299, 0.04577728733420372, -0.009939220733940601, -0.011527554132044315, 0.007046928163617849, -0.017658935859799385, -0.03184989467263222, -0.05501597747206688, 0.005645865574479103, -0.01875481568276882, -0.014967786148190498, 0.0072966222651302814, 0.01165933720767498, 0.023166082799434662, 0.014440653845667839, 0.013670763000845909, -0.009252561256289482, 0.023499008268117905, 0.002134539419785142, 0.023235442116856575, -0.009814373217523098, 0.03154471516609192, -0.021002065390348434, -0.006287441123276949, -0.002817730884999037, -0.019573258236050606, 0.012997975572943687, -0.019989416003227234, 0.002417179523035884, -0.009523062966763973, -0.03443007171154022, -0.030989836901426315, 0.0430029071867466, -0.008378631435334682, 0.00969646219164133, 0.006627303082495928, -0.0005635461420752108, 0.01434355042874813, -0.0018206876702606678, -0.009821309708058834, -0.009384344331920147, -0.025843359529972076, 0.02496943064033985, -0.020891090855002403, -0.028548382222652435, 0.02309672348201275, -0.0016429538372904062, 0.0028333368245512247, -0.0016993083991110325, 0.014801323413848877, 0.00987679697573185, 0.038314204663038254, 0.03606695309281349, 0.03612244129180908, -0.0026582039427012205, 0.012803768739104271, -0.01245697122067213, -0.0003249060537200421, 0.009661782532930374, -0.01943453960120678, -0.01661854237318039, 0.0033500653225928545, 0.015411687083542347, 0.011374962516129017, 0.005909431725740433, -0.005534890573471785, 0.01864384114742279, -0.016923725605010986, -0.012172597460448742, -0.02273605391383171, 0.00998083595186472, 0.026828264817595482, 0.010244402103126049, -0.009925348684191704, -0.007997153326869011, -0.008371694944798946, -0.008399439044296741, -0.017880886793136597, 0.0004239601257722825, 0.017561832442879677, -0.014197895303368568, -0.023277057334780693, -0.05290744826197624, 0.0008964719017967582, -0.002606184221804142, -0.0018900471040979028, 0.02968587912619114, -0.06475405395030975, -0.002661671955138445, -0.006339461077004671, -0.004456349648535252, 0.007046928163617849, -0.015300711616873741, -0.009758885949850082, -0.002299268264323473, -0.015300711616873741, 0.0060169389471411705, 0.014142408035695553, 0.002639129990711808, 0.008649133145809174, -0.002864548470824957, -0.029408439993858337, 0.010951869189739227, -0.017006956040859222, 0.00014457126962952316, -0.02814609743654728, -0.007643420249223709, 0.001114087412133813, 0.003676054999232292, -0.006984504405409098, 0.02012813463807106, -0.03734317049384117, -0.01391352154314518, -0.01933743618428707, 0.013663827441632748, 0.004154635593295097, -0.018199941143393517, 0.01652143895626068, -0.017173418775200844, -0.01720116287469864, -0.009724206291139126, 0.0075255087576806545, -0.17578479647636414, 0.017936374992132187, 0.035401102155447006, -0.020474933087825775, 0.010514904744923115, -0.010355377569794655, 0.02739701420068741, 0.00017881752864923328, -0.00381824211217463, -0.00796941015869379, 0.007747459225356579, -0.003672586986795068, 0.006547539494931698, 0.011388834565877914, -0.017589576542377472, 0.01746472902595997, 0.016979211941361427, 0.0168404933065176, 0.02915874496102333, 0.02979685366153717, 0.031045325100421906, -0.025205252692103386, 0.011111396364867687, 0.046554114669561386, -0.0008691615657880902, -0.0015675253234803677, -0.008406374603509903, -0.01911548525094986, -0.014829067513346672, -0.013969008810818195, -0.01277602557092905, 0.0010377919534221292, 0.005666673649102449, -0.007213390897959471, 0.0028003910556435585, 0.01843576319515705, 0.008815595880150795, -0.01922646164894104, -0.004043660592287779, 0.01661854237318039, 0.022125689312815666, 0.012706665322184563, -0.0056319935247302055, 0.0030726271215826273, -0.01678500510752201, 0.01811670884490013, -0.003856389783322811, -0.01652143895626068, 0.0013655157526955009, -0.009765821509063244, 0.0018952491227537394, 0.0015796632505953312, 0.009994708001613617, -0.002228174824267626, 0.018893536180257797, -0.004321098793298006, -0.01740924082696438, 0.011583041399717331, 0.030185267329216003, 0.009044482372701168, 0.017603447660803795, -0.008538157679140568, -0.013372517190873623, 0.021959226578474045, -0.006551007274538279, 0.009668718092143536, -0.002434519352391362, 0.03639988228678703, -0.04056145250797272, 0.003322321455925703, -0.014135471545159817, 0.0044632856734097, 0.020031031221151352, -0.021570812910795212, 0.021362734958529472, 0.03032398596405983, 0.017908630892634392, 0.004539581015706062, 0.002968587912619114, -0.001655958709307015, -0.015467175282537937, 0.0426977276802063, -0.013178310357034206, -0.018976766616106033, 0.003284173784777522, -0.0056077176705002785, -0.030629167333245277, -0.02331867441534996, -0.004057532642036676, -0.028770333155989647, 0.0009294176707044244, -0.03798127919435501, -0.018616097047924995, -0.010292953811585903, 0.028825819492340088, 0.019087743014097214, 0.00730355829000473, -0.027341526001691818, 0.027951890602707863, -0.028395790606737137, 0.00102912203874439, -0.004758063703775406, -0.0045083691366016865, 0.024414554238319397, 0.05357329919934273, -0.00079633406130597, -0.02410937286913395, -0.003414222737774253, 0.014704219996929169, 0.010577328503131866, 0.00644003227353096, -0.01763119176030159, 0.013629147782921791, 0.031156299635767937, -0.012789896689355373, 0.014059176668524742, 0.006824977695941925, -0.017603447660803795, 0.00961323082447052, -0.006089766509830952, 0.043252602219581604, 0.0072203269228339195, 0.013136695139110088, 0.0299078281968832, 0.00019951701688114554, -0.006648110691457987, -0.10636977106332779, -0.04142151027917862, 8.561566937714815e-05, 0.0006623835070058703, -0.006547539494931698, -0.011811927892267704, -0.023609982803463936, 0.023568367585539818, -0.018616097047924995, 0.03504043444991112, 0.002373829949647188, -0.022389255464076996, -0.023388033732771873, 0.003069159109145403, -0.0035546759609133005, -0.03659408912062645, -0.014995530247688293, -0.021002065390348434, -0.01170788798481226, 0.016715645790100098, -0.016008179634809494, 0.009758885949850082, -0.015245224349200726, 0.004192783497273922, 0.010001644492149353, -0.021334990859031677, -0.022971875965595245, 0.009051418863236904, -0.009217881597578526, 0.03137825056910515, 0.015231352299451828, 0.004258675035089254, -0.005094457417726517, 0.00950919184833765, -0.006960228551179171, 0.00844105426222086, -0.007518572732806206, -0.020946577191352844, 0.045166924595832825, -0.03101758100092411, 0.03304287791252136, -0.00016299489652737975, -0.004515305161476135, 0.013421068899333477, 0.025829488411545753, 0.0016377518186345696, -0.020044904202222824, 0.034762997180223465, -0.015911076217889786, -0.027313781902194023, -0.03054593689739704, 0.0023218102287501097, -0.0168404933065176, -0.006880465429276228, 0.03584500402212143, -0.004154635593295097, 0.004237867426127195, 0.009023674763739109, -0.02087721787393093, -0.01620238646864891, 0.005902495700865984, -0.00903061032295227, -0.02044718898832798, -0.000883900502230972, 0.039007797837257385, 0.012318252585828304, -0.031239531934261322, -0.029713621363043785, 0.01380948256701231, -0.01843576319515705, 0.0008587576448917389, 0.022874772548675537, -0.007470021024346352, 0.043946199119091034, -0.04094986617565155, 0.017880886793136597, 0.008108128793537617, 0.0041268919594585896, 0.04045047610998154, -0.016687901690602303, -0.011596913449466228, 0.005579974036663771, -0.016119154170155525, -0.032959647476673126, 0.04436235502362251, -0.006433096248656511, -0.005964919459074736, 0.016049794852733612, -0.000883033499121666, -0.026953112334012985, -0.0003095169086009264, -0.004945334512740374, 0.039645906537771225, -0.01868545636534691, -0.016368849202990532, 0.031211787834763527, -0.011028164997696877, -0.05018855631351471, -0.013074271380901337, 0.0169930849224329, -0.047081246972084045, -0.01768667995929718, -0.04541661962866783, 0.03248800337314606, -0.02523299679160118, 0.014468397945165634, -0.00014348753029480577, -0.025191381573677063, 0.014496141113340855, -0.006509391590952873, -0.01917097344994545, -0.0006914277910254896, 0.007920858450233936, 0.02607918344438076, 0.00860058143734932, 0.011569169349968433, -0.004848231095820665, -0.006166062317788601, 0.034541044384241104, -0.01389271393418312, 0.020197493955492973, 0.02517750859260559, 0.010951869189739227, -0.0033726070541888475, 0.03792579099535942, 0.018241556361317635, 0.03026849776506424, 0.014565501362085342, 0.007248070556670427, 0.020946577191352844, 0.0068111056461930275, -0.030102035030722618, 0.024761350825428963, -0.03684378042817116, 0.005462063010782003, 0.03101758100092411, 0.026786649599671364, 0.0059961313381791115, -0.00576030882075429, -0.011818863451480865, 0.00873930100351572, 0.0031541245989501476, -0.021321119740605354, -0.0103068258613348, 0.003689926816150546, 0.0012207276886329055, 0.0015207076212391257, 0.010438608936965466, -0.016452079638838768, 0.01954551599919796, -0.0017695350106805563, 0.020322341471910477, 0.024178732186555862, 0.0041026161052286625, -0.027202807366847992, -0.025732384994626045, -0.00334659731015563, 0.0040228525176644325, 0.02846514992415905, -0.02140435017645359, -0.031045325100421906, -0.018130579963326454, 0.003195740282535553, 0.006949824746698141, 0.0017149143386632204, 0.026217902079224586, 0.00756712444126606, -0.039118774235248566, -0.005014693830162287, 0.022403128445148468, -0.011222371831536293, 0.008330079726874828, -0.002606184221804142, -0.01165933720767498, -0.028243200853466988, 0.017658935859799385, 0.020377829670906067, 0.011943710967898369, -0.013934329152107239, -0.018366403877735138, -0.028881307691335678, 0.018768688663840294, 0.03254349157214165, -0.010431673377752304, -0.028714844956994057, -0.0038910696748644114, 0.035234641283750534, -0.007268878631293774, 0.004321098793298006, 0.0029789917171001434, -0.013164438307285309, -0.006377608515322208, 0.02570464089512825, 0.022860901430249214, 0.00857977382838726, -0.01614689826965332, 0.0026495340280234814, 0.0557650625705719, -0.025676896795630455, -0.0003849453933071345, 0.008558966219425201, 0.016424335539340973, -0.003107306780293584, 0.006010003387928009, -0.017714424058794975, -0.008905763737857342, -0.015342327766120434, 0.0008648266084492207, 0.0006615165038965642, -0.0033483311999589205, -0.018810303881764412, 0.0017105793813243508, 0.04133827984333038, 0.011971455067396164, -0.01091025397181511, 0.01625787280499935, -0.011368026956915855, -0.016077538952231407, -5.911815969739109e-05, -0.019184846431016922, -0.04577728733420372, 0.010286018252372742, 0.0012623433722183108, -0.001641219831071794, -0.0026963516138494015, -0.011423514224588871, 0.031516969203948975, 0.03800902143120766, 0.013289285823702812, -0.00894737895578146, 0.0029061641544103622, -0.02320769801735878, -0.008545094169676304, 0.0035304001066833735, -0.0290477704256773, -0.015286840498447418, -0.0159804355353117, -0.02469199150800705, 0.023720959201455116, -0.005656269378960133, -0.011874351650476456, 0.08472959697246552, -0.002191761042922735, -0.022347640246152878, 0.02707795985043049, -0.013088143430650234, 0.009432896040380001, 0.02023911103606224, -0.011388834565877914, -0.021584685891866684, -0.04641539603471756, -0.020405573770403862, 0.0016594267217442393, 0.010216658934950829, -0.039063286036252975, 0.015314583666622639, -0.00026464994880370796, -0.0206136517226696, 0.01768667995929718, -0.010112619027495384, 0.006963696796447039, 0.03479073941707611, 0.002209101105108857, 0.030102035030722618, -0.009113841690123081, -0.00926643330603838, 0.02311059460043907, 0.0130673348903656, -0.02921423316001892, -0.014024497009813786, -0.01783927157521248, 0.015897203236818314, -0.005847008433192968, -0.018727073445916176, -0.029824597761034966, 0.006942888721823692, 0.006231953855603933, -0.0034974543377757072, 0.006766022183001041, 0.014551629312336445, 0.006571815349161625, -0.026051439344882965, 0.028853563591837883, -0.025038789957761765, -0.03495720401406288, -0.015259096398949623, 0.00044780244934372604, -0.018338659778237343, -0.009543871507048607, -0.06225711479783058], "ce31c578-fc0a-442c-acfd-232fb07ca028": [-0.007138363551348448, 0.019506951794028282, 0.006002402864396572, -0.02414688654243946, 0.012595092877745628, 0.003538294695317745, -0.010103530250489712, 0.011284105479717255, -0.010275125503540039, -0.030145857483148575, -0.007721787318587303, 0.009629926644265652, -0.014482641592621803, 0.02440771274268627, 0.0036172284744679928, 0.017186982557177544, 0.019410857930779457, -0.00430704141035676, -0.013123606331646442, 0.0007829034584574401, -0.015018018893897533, -0.007447234820574522, -0.00016623293049633503, -0.01805182360112667, 0.0017056569922715425, 0.0020694390404969454, 0.042967457324266434, -0.02339186891913414, -0.009444603696465492, -0.01621232181787491, 0.022966312244534492, -0.015553396195173264, -0.015951497480273247, -0.01118801161646843, -0.026137392967939377, -0.017324259504675865, -0.02772979624569416, 0.002155236667022109, 0.0014602758456021547, -0.01798318512737751, 0.016308415681123734, 0.031106792390346527, -0.003044100245460868, -0.006146542727947235, 0.0008279472240246832, 0.01678888127207756, 0.013157925568521023, -0.021332724019885063, -0.016061317175626755, -0.028251446783542633, 0.01596522517502308, 0.033467940986156464, -0.022678032517433167, -0.004458045121282339, -0.01936967484652996, 0.006640737410634756, -0.016267232596874237, 0.012341132387518883, -0.0014808672713115811, -0.02715323679149151, 0.019699137657880783, 0.0025670654140412807, -0.022170109674334526, -0.029404565691947937, -0.0018189098918810487, -0.0018497970886528492, -0.005906309466809034, 0.008099297061562538, -0.009877024218440056, 0.006342161446809769, 0.002724932972341776, 0.027386605739593506, 0.007838471792638302, 0.018944118171930313, 0.005243951454758644, -0.006016130559146404, -0.024229252710938454, -0.007611966226249933, -0.017324259504675865, 0.004365383647382259, -0.009362238459289074, -0.009863296523690224, -0.011538065969944, 0.022678032517433167, -0.005381227936595678, -0.025382373481988907, 0.015292570926249027, 0.01661042310297489, -0.016075044870376587, -0.020838530734181404, -0.02584911324083805, 0.009856432676315308, -0.009801521897315979, 0.02457244321703911, -0.0010776183335110545, 0.0386020727455616, -0.007454098667949438, 0.020207060500979424, -0.003572613699361682, -0.010172167792916298, -0.013281474821269512, 0.020399246364831924, -0.025574559345841408, 0.001232912065461278, -0.00955442525446415, -0.010007436387240887, 0.018628383055329323, 0.0019270149059593678, 0.017379170283675194, 0.006959904450923204, -0.014949380420148373, 0.05815020576119423, 0.0053915237076580524, -0.015457302331924438, 0.010384946130216122, -0.031463708728551865, 0.008888634853065014, -0.02702968753874302, -0.0007481554057449102, -0.013816851191222668, 0.01974032074213028, 0.014606189914047718, 0.015127839520573616, 0.010803638957440853, 0.008552308194339275, -0.0020248242653906345, -0.015333754010498524, -0.010920323431491852, -0.005714122671633959, -0.0198775976896286, 0.006225476507097483, 0.01812046207487583, -0.022238748148083687, 0.016322143375873566, -0.0027970029041171074, 0.024421440437436104, -0.008874908089637756, 0.01380312442779541, -0.021099355071783066, -0.026082482188940048, 0.022993767634034157, 0.016898702830076218, -0.016431963071227074, 0.014111995697021484, -0.012464680708944798, 0.002160384552553296, 0.009444603696465492, -0.0008914374629966915, -0.02017960511147976, -0.00537779601290822, -0.003960418980568647, -0.0034404853358864784, 0.012780415825545788, 0.015745582059025764, -0.009664245881140232, 0.011421381495893002, -0.024874450638890266, 1.9706645616679452e-05, 0.008778814226388931, -0.01709088869392872, 0.015278843231499195, 0.015567123889923096, -0.004135446157306433, 0.007879654876887798, -0.008620946668088436, 0.0425281748175621, 0.019850142300128937, 0.017255621030926704, -0.0025087229441851377, 0.006479437462985516, 0.0032259912695735693, 0.03138134256005287, -0.02226620353758335, 0.0138305788859725, -0.00768746854737401, 0.012039124965667725, 0.019163761287927628, 0.0162946879863739, -0.025862840935587883, -0.011579249054193497, 0.011339016258716583, -0.01993250660598278, 0.004516387823969126, 0.02457244321703911, -0.029569298028945923, -0.009128868579864502, 0.013576618395745754, 0.005532231647521257, 0.01956186071038246, 0.007213865406811237, 0.021030716598033905, 0.019712865352630615, -0.01654178462922573, -0.014009037986397743, -0.626858115196228, -0.007838471792638302, -0.017255621030926704, -0.022183837369084358, 0.0061774300411343575, 0.014359092339873314, -0.0015683808596804738, -0.012059715576469898, -0.016582967713475227, 0.010330035351216793, -0.0015683808596804738, -0.006654464639723301, 0.03676257282495499, -0.014880741946399212, -0.01591031439602375, -0.008751358836889267, 0.004327632952481508, -0.007097180467098951, 0.022170109674334526, 0.01000057253986597, -0.020838530734181404, 0.008998456411063671, -0.021360179409384727, -0.021140538156032562, 0.0042315395548939705, 0.02249957248568535, 0.018340103328227997, 0.005302294157445431, 0.007083452772349119, 0.036625295877456665, -0.02992621622979641, -0.02005605585873127, 0.0056900992058217525, 0.0105359498411417, 0.05359263718128204, -0.01597895286977291, -0.020824803039431572, 0.0014405424008145928, 0.01722816564142704, 0.01986386999487877, -0.015896586701273918, -0.03475834056735039, 0.009623062796890736, 0.012238174676895142, 0.004039352759718895, -0.011428245343267918, 0.0011419665534049273, 0.010982098057866096, -0.0022736373357474804, -0.017008524388074875, 0.007515873294323683, 0.012004805728793144, -0.006757421884685755, -0.012890237383544445, 0.014990563504397869, -0.021113082766532898, 0.039206087589263916, -0.025794202461838722, 0.013542299158871174, -0.028828006237745285, 0.008531717583537102, 0.00018189099500887096, -0.015608306042850018, -0.017708633095026016, -0.008607218973338604, -0.003795687574893236, -0.037064578384160995, 0.0009429160272702575, 0.008071841672062874, -0.020660070702433586, 0.024503804743289948, 0.024544987827539444, -0.005309158004820347, -0.002896528225392103, -0.0015520792221650481, 0.04225362092256546, 0.012849054299294949, 0.010179031640291214, -0.01766745001077652, 0.012498999945819378, 0.015484757721424103, -0.03085969388484955, 0.015416119247674942, -0.0015280559891834855, 0.04384602606296539, 0.013103015720844269, -0.019946234300732613, -0.005642052739858627, 0.0047531891614198685, 0.019095122814178467, -0.007131499703973532, 0.020358063280582428, -0.02760624885559082, -0.026549221947789192, -0.011366470716893673, 0.020660070702433586, 0.0008717040182091296, 0.002158668590709567, -0.007673740852624178, -0.011462564580142498, -0.012423497624695301, -0.00918377935886383, -0.00031444834894500673, -0.0017108048778027296, 0.022623121738433838, 0.026178576052188873, 0.012931420467793941, 0.028910372406244278, 0.02162100560963154, -0.025876566767692566, -0.04521878808736801, -0.03390722721815109, 0.003193387994542718, 0.01993250660598278, 0.005834239535033703, -0.019410857930779457, 0.014098268002271652, 0.01348052453249693, 0.0036515474785119295, -0.010316307656466961, 0.010481039062142372, 0.02583538554608822, -0.005734714213758707, -0.01761253923177719, 0.016198594123125076, -0.009485786780714989, -0.0038746213540434837, -0.017653722316026688, -0.007845335640013218, 0.007886518724262714, -0.0050208778120577335, 0.008847452700138092, 0.021030716598033905, 0.004581593908369541, 0.010837957262992859, -0.02219756506383419, 0.009231826290488243, -0.01993250660598278, 0.017942002043128014, -0.03327575698494911, -0.02118172124028206, -0.0037545047234743834, 0.01803809590637684, -0.03352285176515579, -0.03154607489705086, -0.010432993061840534, -0.02866327576339245, 0.0032791856210678816, -0.01075559202581644, 0.01244408916682005, -0.007509009446948767, 0.005549391265958548, -0.004725733771920204, 0.03525253385305405, 0.005552823189646006, -0.017392897978425026, -0.009513242170214653, -0.009424012154340744, -0.0030749873258173466, 0.0014817252522334456, -0.0006100212340243161, 0.03700966760516167, -0.012128354050219059, 0.004135446157306433, -0.01547103002667427, 0.007412916049361229, -0.003159068990498781, 0.03934336453676224, -0.030969515442848206, -0.03338557854294777, 0.017681177705526352, -0.0042281076312065125, -0.01785963587462902, 0.008092433214187622, -0.005120403133332729, 0.01483955979347229, -0.007852199487388134, 0.002632271498441696, -0.0005186467315070331, -0.01891666278243065, -0.0052782706916332245, -0.004512955900281668, 0.03300120308995247, -0.016706516966223717, -0.0009875308023765683, 0.021909285336732864, 0.025615742430090904, 0.0031419096048921347, 0.008854316547513008, -0.009327919222414494, -0.00693244906142354, 0.023858606815338135, -0.02509409375488758, -0.003042384283617139, -0.012354860082268715, 0.05469084531068802, -0.01229308545589447, 0.01924612559378147, 0.019342219457030296, 0.018408741801977158, 0.018820570781826973, -0.00914946012198925, -0.0054292744025588036, -0.04779957979917526, 0.00012944718764629215, -0.04085340350866318, 0.00591317331418395, 0.005288566462695599, 0.01704970747232437, 0.0201109666377306, 0.01967168226838112, -0.002985757775604725, -0.016253504902124405, 8.622662426205352e-05, 0.007611966226249933, 0.03887662664055824, -0.002937711076810956, 0.008765086531639099, -0.0165280569344759, -0.0036378197837620974, -0.0008167935302481055, -0.011318424716591835, 0.01540239155292511, -0.0014997427351772785, 0.002163816476240754, 0.01072127278894186, 0.01628096029162407, -0.002162100514397025, -0.044669684022665024, -0.0485408715903759, 0.015745582059025764, -0.0027060573920607567, -0.0036858664825558662, 0.022925129160284996, 0.02495681680738926, 0.028141625225543976, 0.027647430077195168, -0.004396270960569382, 0.05079220235347748, 0.003308356972411275, -0.020728709176182747, 0.018834296613931656, 0.009273008443415165, -0.02671395242214203, 0.01886175200343132, -0.0033855747897177935, 0.03171080723404884, 0.02508036606013775, 0.00027712638257071376, 0.015347481705248356, -0.012677459046244621, 0.022801579907536507, -0.010583996772766113, 0.008607218973338604, 0.008710176683962345, 0.005607733502984047, -1.034934030030854e-05, 0.023433050140738487, 0.010982098057866096, 0.0050208778120577335, 0.015745582059025764, -0.00558027857914567, 0.003764800261706114, 0.009053367190063, 0.00936910230666399, -0.014578734524548054, -0.022609394043684006, -0.010343763045966625, -0.013020649552345276, 0.013906081207096577, -0.03283647075295448, -0.016651606187224388, -0.013652119785547256, 0.014784649014472961, 0.01816164329648018, 0.0032277072314172983, 0.0031075903680175543, -0.0015778185334056616, 0.016733970493078232, -0.008058113977313042, -0.016253504902124405, -0.016267232596874237, 0.00215352070517838, 0.040963225066661835, -0.010378082282841206, -9.191071876557544e-05, -0.0049007609486579895, 0.015676943585276604, -0.0069633363746106625, 0.010110394097864628, -0.025300007313489914, 0.029267290607094765, 0.009568152949213982, 0.0016610422171652317, -0.002743808552622795, -0.02270548604428768, 0.02621975913643837, -0.017557628452777863, 0.003730481257662177, -0.02295258454978466, -0.004657095763832331, 0.010892868041992188, -0.03541726619005203, 0.015704398974776268, 0.04197906702756882, -0.009561289101839066, 0.001995653146877885, -0.006651032716035843, -0.0017022251849994063, -0.0038059831131249666, -0.0014577019028365612, -0.022293658927083015, -0.012711778283119202, -0.04195161163806915, 0.0358290933072567, -0.02389978989958763, 0.03338557854294777, 0.015731854364275932, 0.02691986784338951, 0.0155259408056736, -0.003251730464398861, -0.029953671619296074, -0.021044444292783737, 0.03376995027065277, 0.05084711313247681, 0.02755133807659149, -0.026521766558289528, 0.011524339206516743, -0.0043722474947571754, -0.008257164619863033, -0.0072275931015610695, 0.0039672828279435635, 0.01666533388197422, -0.013446206226944923, -0.009842704981565475, 0.01659669540822506, -0.014441458508372307, -0.01408454030752182, 0.014743465930223465, 0.0024435166269540787, -0.00639707176014781, -0.018216554075479507, 0.020042328163981438, -0.031793173402547836, 0.007591375149786472, 0.004794372245669365, 0.028773095458745956, 0.024668537080287933, -0.014070812612771988, -0.020165877416729927, 0.01684379205107689, 0.005007150117307901, 0.009925071150064468, -0.019891323521733284, 0.008730767294764519, 0.01118801161646843, 0.02929474599659443, 0.037311676889657974, -0.041402507573366165, 0.01691243052482605, 0.02691986784338951, 0.020920896902680397, 0.02797689475119114, -0.006338729523122311, 0.0047531891614198685, 0.015100384131073952, 0.020522795617580414, 0.01022021472454071, 0.006228908430784941, 0.001890979940071702, 0.011668479070067406, -0.0010870561236515641, -0.012471544556319714, -0.023529144003987312, 0.03275410458445549, -0.021964196115732193, -0.011174284853041172, -0.01936967484652996, 0.010927187278866768, -0.006551507860422134, -0.02363896556198597, 0.0032259912695735693, -0.0043516564182937145, -0.02125035971403122, -0.01779099740087986, -0.01717325486242771, 0.028525998815894127, -0.007996340282261372, 0.0010510210413485765, -0.006122519262135029, -0.0016953613376244903, 0.014441458508372307, -0.03917863219976425, -0.021167993545532227, 0.0030578277073800564, -0.00901904795318842, -0.05683235451579094, -0.016679061576724052, 0.009526969864964485, 0.004602185450494289, 0.0106526343151927, 0.003531430847942829, -0.009122004732489586, 0.008016930893063545, -0.020632615312933922, -0.04477950185537338, -0.015072928741574287, -0.03604873642325401, -0.004708574153482914, 0.030640052631497383, 0.004571298137307167, 0.01072127278894186, 0.009362238459289074, -0.012869645841419697, 0.0042349714785814285, -0.01025453396141529, -0.011558657512068748, -0.00971915666013956, -0.005147858057171106, 0.02810044214129448, 0.021209176629781723, 0.017447806894779205, 0.007481554057449102, -0.022719213739037514, 0.004461477044969797, -0.009863296523690224, 0.01879311539232731, -0.004204084165394306, -0.021030716598033905, -0.020385518670082092, 0.0009223246015608311, 0.019081395119428635, -0.004320769105106592, 0.0021861237473785877, 0.02181319147348404, -0.011043871752917767, 0.015223932452499866, 0.009952525608241558, 0.005003718193620443, 0.01602013409137726, 0.01332952082157135, 0.0021174857392907143, 0.016445690765976906, -0.02256821095943451, 0.00804438628256321, -0.04195161163806915, -0.01779099740087986, 0.02314477041363716, -0.005597437731921673, 0.02509409375488758, 0.004506092052906752, -0.00851798988878727, -0.014331637881696224, -0.014441458508372307, 0.014111995697021484, 0.024435168132185936, 0.001178001519292593, -0.01684379205107689, -0.003840302349999547, 0.02270548604428768, -0.020577706396579742, -0.003781959880143404, -0.02755133807659149, 0.007454098667949438, 0.01803809590637684, 0.020550251007080078, -0.0030749873258173466, -0.0067059434950351715, -0.036131102591753006, -0.034428875893354416, -0.0002972888178192079, 0.010110394097864628, 0.015237660147249699, 0.018944118171930313, 0.021593550220131874, 0.003823142731562257, -0.006743694189935923, -0.01766745001077652, 0.0193010363727808, -0.03533490002155304, -0.012450953014194965, 0.010172167792916298, 0.044669684022665024, -0.014661100693047047, 0.03308356925845146, -0.0073580052703619, 0.04186924919486046, 0.01339815929532051, -0.017900818958878517, 0.023213408887386322, -0.0018343535484746099, -0.010144712403416634, -0.020083511248230934, -0.00073271180735901, 0.01072127278894186, -0.008449351415038109, 0.013418750837445259, 0.010268261656165123, -0.003205399727448821, 0.030338045209646225, -0.007097180467098951, 0.008586627431213856, -0.021470000967383385, -0.03074987418949604, -0.011819482780992985, 0.028278902173042297, -0.006757421884685755, 0.03176571801304817, -0.001522050122730434, -0.012347996234893799, 0.025286279618740082, 0.015059201046824455, -0.006623577792197466, 0.00450952397659421, 0.016486873850226402, -0.01742035336792469, 0.010378082282841206, 0.022746669128537178, 0.031024426221847534, -0.02383115142583847, 0.013157925568521023, -0.024174341931939125, 0.0005044901045039296, 0.01364525593817234, 0.001241491874679923, 0.019204942509531975, 0.012375451624393463, 0.007179546169936657, 0.006125951185822487, -0.013940400443971157, -0.006795173045247793, -0.03541726619005203, 0.023913517594337463, -0.016431963071227074, -0.02904764749109745, -0.03519762307405472, -0.03717439994215965, 0.009424012154340744, -0.004176629241555929, 0.029816394671797752, 0.003479952225461602, 0.005384659860283136, -0.028937827795743942, -0.018848024308681488, 0.003304925048723817, -0.025382373481988907, 0.02093462459743023, -0.0172968041151762, 0.01816164329648018, 0.02339186891913414, 0.010783047415316105, -0.010117257945239544, 0.0010192759800702333, 0.029816394671797752, 0.01040553767234087, 0.03495052456855774, 0.02168964222073555, -0.00996625330299139, -0.021662186831235886, 0.0018171939300373197, 0.016047589480876923, 0.009176915511488914, -0.032150089740753174, 0.008058113977313042, 0.027208147570490837, -0.0036378197837620974, -0.01893039047718048, 0.011242922395467758, -0.03569181635975838, -0.0034044503699988127, -0.012643139809370041, 0.0007503003580495715, -0.014729738235473633, 0.0014139451086521149, 0.0076051028445363045, 0.03489561378955841, 0.0008785678073763847, 0.036817483603954315, -0.011888120323419571, 0.003915803972631693, -0.0044992282055318356, -0.011119374074041843, -0.0208797138184309, 0.006891266442835331, -0.00434136064723134, 0.017969457432627678, -0.010858548805117607, -0.012190128676593304, 0.022609394043684006, -0.0028999601490795612, 0.00430704141035676, -0.007268775720149279, 0.015320026315748692, 0.030722418799996376, 0.011393926106393337, -0.0027077733539044857, -0.0021243495866656303, 0.010522222146391869, -0.009520106017589569, -0.0021192017011344433, -0.01715952716767788, 0.007591375149786472, -0.004852714482694864, -0.027372878044843674, 0.02219756506383419, -0.002520734677091241, 0.024174341931939125, 0.0031178861390799284, 0.0119430311024189, -0.002664874540641904, -0.012080307118594646, -0.012595092877745628, -0.0006331865442916751, -0.03810787945985794, -0.0022907969541847706, -0.00983584113419056, -0.0028261742554605007, 0.0028261742554605007, 0.002723217010498047, -0.017763543874025345, 0.0025687813758850098, 0.03514271229505539, -0.019946234300732613, 0.01043985690921545, 0.007014814764261246, -0.0038162788841873407, -0.025574559345841408, 0.013405023142695427, 0.0062048849649727345, -0.016390779986977577, 0.01455127913504839, -0.010021164081990719, -0.018628383055329323, -0.01430418249219656, -0.003781959880143404, -0.0027729796711355448, -0.012121490202844143, -0.01622604951262474, 0.012176400981843472, -0.016184866428375244, 0.008840588852763176, -0.0015194761799648404, -0.01961677148938179, 0.03456615284085274, -0.01677515357732773, -0.004581593908369541, 0.023048678413033485, -0.00010467311949469149, 0.03080478310585022, -0.021415090188384056, -0.014208088628947735, 0.006517188623547554, -0.02527255192399025, -0.021099355071783066, 0.00021481583826243877, -0.02174455299973488, 0.010378082282841206, -0.007268775720149279, -0.010343763045966625, -0.0043482244946062565, -0.016116227954626083, 0.0028810848016291857, -0.002192987594753504, 0.005456729792058468, 0.01415317878127098, 0.011085054837167263, 0.0318206287920475, -0.0023251159582287073, -0.028251446783542633, -0.009382830001413822, 0.006300978362560272, -0.00209003034979105, -0.019067667424678802, 0.002978893928229809, -0.007104044314473867, 0.033165935426950455, 0.031793173402547836, -0.026576675474643707, -0.01332952082157135, 0.016322143375873566, -0.031216612085700035, -0.02722187526524067, 0.027619976550340652, 0.010796775110065937, 0.01118801161646843, 0.020920896902680397, 0.009753475897014141, 0.03445633128285408, -0.024915633723139763, -0.0016739119309931993, -0.0013616085052490234, 0.013727622106671333, 0.005597437731921673, 0.037119489163160324, 0.0008648401708342135, 0.010988961905241013, -0.01530629862099886, -0.03912372142076492, 0.0031196021009236574, 0.014647372998297215, 0.011332152411341667, 0.013590346090495586, 0.009609335102140903, 0.00746782636269927, -0.017214437946677208, -0.008366985246539116, -0.0172968041151762, -0.009753475897014141, -0.012958874925971031, -0.005885717924684286, 0.014166905544698238, -0.0046365042217075825, 0.022664304822683334, 0.012656867504119873, -0.002513870829716325, -0.012931420467793941, 0.007213865406811237, 0.009533833712339401, -0.017434079200029373, -0.000548246898688376, 0.021099355071783066, -0.007502145599573851, -0.001213178620673716, -0.036982212215662, -0.008717039600014687, 0.04546588286757469, 0.008819997310638428, -0.004039352759718895, 0.00534347677603364, 0.010062347166240215, -0.023913517594337463, -0.013919808901846409, 0.025862840935587883, 0.010316307656466961, 0.006675056181848049, 0.0017983184661716223, 0.034236688166856766, -0.017557628452777863, 0.022183837369084358, -0.03558199480175972, -0.015869131311774254, -0.03758623078465462, 0.02690614014863968, 0.001502316677942872, -0.005216496530920267, -0.04217125475406647, -0.013247155584394932, 0.012265630066394806, -0.020783619955182076, -0.008154207840561867, 0.004838986787945032, -0.01116055715829134, 0.004454613197594881, 0.0004137591167818755, -0.010659498162567616, -0.0010089802090078592, 0.0029720300808548927, -0.0032242753077298403, -0.030283134430646896, -0.001993937185034156, 0.1884527951478958, -0.004863010253757238, 0.0043516564182937145, 0.03558199480175972, -0.008154207840561867, -0.008277756161987782, 0.0030183608178049326, -0.0009060230804607272, -0.026617858558893204, 0.008476806804537773, -0.013041241094470024, 0.02333695814013481, -0.004077103920280933, 0.0011153692612424493, -0.0007717497646808624, -0.008154207840561867, -0.01610250025987625, -0.05858949199318886, -0.019410857930779457, -0.01823028177022934, 0.017379170283675194, 0.03851970657706261, -0.018820570781826973, -0.034291598945856094, 0.0009823829168453813, -0.0038780532777309418, -0.01622604951262474, 0.008099297061562538, 0.03547217696905136, 0.03129898011684418, -0.019479496404528618, 0.013981583528220654, -0.006956472527235746, -0.013590346090495586, -0.01326774712651968, 0.003157353028655052, 0.02081107534468174, 0.0004821827169507742, 0.026810046285390854, -0.009341646917164326, 0.016363326460123062, -0.027372878044843674, -0.03376995027065277, -0.005841103382408619, 0.017077160999178886, 0.033989593386650085, -0.018710749223828316, -0.025190185755491257, -0.014880741946399212, 0.010563405230641365, -0.014784649014472961, 0.010680089704692364, 0.03212263435125351, 0.01297946646809578, 0.0007108334102667868, 0.001395927625708282, -0.01842246949672699, 0.01147629227489233, 0.0203031525015831, 0.017145799472928047, -0.011098782531917095, 0.04030429944396019, 0.009526969864964485, 0.008792541921138763, 0.02509409375488758, 0.006355889141559601, -0.03261683136224747, 0.012903965078294277, 0.014496369287371635, -0.020042328163981438, -0.01112623792141676, -0.02811416983604431, 0.015567123889923096, 0.016761425882577896, -0.03665275126695633, -0.013940400443971157, 0.021675914525985718, 0.004814963322132826, -0.004818395245820284, 0.023680148646235466, -0.019589316099882126, -0.020660070702433586, -0.007618830073624849, 0.0015743866097182035, -0.008016930893063545, -0.032287366688251495, 0.01254704687744379, -0.022623121738433838, 0.013789396733045578, -0.01704970747232437, -0.007838471792638302, -0.019410857930779457, -0.016692789271473885, -0.006338729523122311, 0.024792086333036423, 0.018875479698181152, -0.005305726081132889, 0.022678032517433167, 0.003464508568868041, -9.394841617904603e-05, -0.022774124518036842, 0.0712738111615181, 0.04107304662466049, -0.009705428965389729, 0.006977064069360495, 0.015827948227524757, -0.018779387697577477, -0.0012140366015955806, -0.01477092131972313, -0.02904764749109745, -0.019589316099882126, -0.008881771937012672, -0.0033495398238301277, -0.014194360934197903, -0.010021164081990719, -0.0016713379882276058, -0.005206200759857893, -0.01728307642042637, 0.02351541630923748, -0.01118801161646843, -0.017818452790379524, -0.002414345508441329, 0.013947264291346073, 0.011991078034043312, -0.009327919222414494, -0.014894469641149044, -0.04952926188707352, 0.004646799992769957, -0.008689585141837597, 0.002374878618866205, 0.02137390710413456, -0.02653549425303936, -0.01935594715178013, -0.014125723391771317, 0.007186410017311573, 0.012416633777320385, -0.006575530860573053, -0.03755877539515495, -0.0203031525015831, 0.009911343455314636, -0.004849282559007406, 0.005518503952771425, 0.005731282290071249, -0.004742893390357494, 0.022719213739037514, -0.0318206287920475, 0.008778814226388931, 0.011359606869518757, -0.0191088505089283, -0.04994108900427818, -0.006407367531210184, -0.01050163060426712, 0.0036892984062433243, -0.0072275931015610695, -0.0092455530539155, -0.028333811089396477, 0.002208431251347065, -0.026617858558893204, 0.019410857930779457, -0.02539610117673874, -0.045548249036073685, 0.00021878397092223167, 0.04348910599946976, -0.0009575016447342932, -0.018134187906980515, -0.02249957248568535, -0.17417606711387634, 0.015924042090773582, -0.0008652691612951458, -0.012272493913769722, 0.012725505977869034, 0.015924042090773582, 0.025052910670638084, 0.015169022604823112, 0.01956186071038246, 0.0004590173775795847, -0.0018789683235809207, 0.00598867516964674, -0.0413750521838665, 0.004718869924545288, -0.01628096029162407, 0.011174284853041172, 0.010487902909517288, -0.004626208450645208, 0.05180804431438446, 0.020481612533330917, 0.012203856371343136, -0.028937827795743942, 0.008016930893063545, 0.005346908699721098, -0.004989990498870611, 0.017873363569378853, 0.0003702168178278953, 0.011874393559992313, -0.018189098685979843, -0.027633702382445335, 0.021099355071783066, -0.0018034663517028093, 0.03349539637565613, -0.007996340282261372, 0.0008313790895044804, 0.011538065969944, 0.01405022107064724, -0.010508494451642036, -0.020920896902680397, 0.010789911262691021, 0.015539668500423431, 0.026645313948392868, 0.005837671458721161, 0.021909285336732864, 0.005631756968796253, 0.030228223651647568, 0.008003204129636288, -0.04269290342926979, 0.013542299158871174, -0.041594695299863815, 0.03069496341049671, -0.021785736083984375, 0.014510096982121468, 0.0007520163198933005, 0.012711778283119202, 0.007282503414899111, -0.011153693310916424, 0.010803638957440853, -0.00785906333476305, 0.013912945054471493, -0.012718642130494118, -0.03085969388484955, -0.015745582059025764, -0.006795173045247793, 0.01678888127207756, -0.03755877539515495, -0.02019333280622959, 0.007303094957023859, -0.013507979921996593, 0.008270892314612865, -0.02332323044538498, 0.009286736138164997, 0.013192244805395603, -0.006276955362409353, 0.014345364645123482, 0.021895557641983032, -0.024242980405688286, 0.013425614684820175, -0.0014808672713115811, -0.02381742373108864, 0.021607277914881706, 0.0083601213991642, -0.0023045246489346027, -0.006112223956733942, -0.0003612080472521484, -0.03206772357225418, -0.010783047415316105, -0.017585083842277527, 0.011634159833192825, -0.00820911768823862, 0.0345936082303524, -0.048897791653871536, -0.006668192334473133, -0.008064977824687958, -0.0012869645142927766, 0.015800492838025093, 0.008442487567663193, -0.006657896563410759, 0.0024967112112790346, -0.007708059623837471, 0.010700681246817112, -0.023625237867236137, -0.040276844054460526, -0.011805755086243153, 0.0033220844343304634, 0.005696963053196669, -0.024544987827539444, 0.005340044852346182, 0.040963225066661835, 0.010515358299016953, -0.01336384005844593, -0.005604301579296589, 0.00955442525446415, 0.019891323521733284, -0.002479551825672388, 0.023597782477736473, -0.040716126561164856, -0.02232111431658268, 0.009911343455314636, -0.001154836267232895, 0.046756282448768616, -0.0025790769141167402, 0.006019562482833862, 0.009760339744389057, 0.005116971209645271, 0.0016842075856402516, -0.1213521808385849, -0.030255679041147232, -0.011112510226666927, 0.026810046285390854, -0.016582967713475227, 0.031655896455049515, -0.025890294462442398, 0.009101413190364838, 0.007248184643685818, 0.012306813150644302, -0.01784590817987919, -0.02760624885559082, -0.013707030564546585, -0.0044957962818443775, -0.008229709230363369, 0.001603557844646275, -0.013260883279144764, 0.006297546438872814, -0.024284163489937782, 0.036982212215662, 0.021016988903284073, 0.002784991404041648, 0.0001696648250799626, -0.012238174676895142, -0.005175313446670771, 0.015416119247674942, -0.01380312442779541, 0.013089288026094437, 0.017887091264128685, -0.0026974778156727552, -0.014510096982121468, -0.01886175200343132, 0.010824229568243027, -0.02074243687093258, -0.016390779986977577, 0.0012775268405675888, 0.00851798988878727, -0.01980895921587944, 0.022527027875185013, -0.026864957064390182, -0.004454613197594881, 0.01477092131972313, 0.018875479698181152, -0.018449924886226654, -0.0220740158110857, -0.006043585482984781, -0.03431905433535576, 0.018559744581580162, -0.019342219457030296, -0.032287366688251495, -0.011592976748943329, -0.028196536004543304, -0.01678888127207756, 0.01691243052482605, 0.025505922734737396, -0.01742035336792469, -0.005508208181709051, 0.02144254557788372, -0.0077629704028368, -0.013535435311496258, -0.02564319781959057, -0.010261397808790207, -0.005185609217733145, 0.017310531809926033, 0.012711778283119202, 0.001342733041383326, -0.031902994960546494, -0.003056111978366971, 0.015196477994322777, -0.004804667551070452, -0.00789338257163763, 0.009973117150366306, -0.021895557641983032, 0.016047589480876923, -0.006729966960847378, 0.0105359498411417, 0.010700681246817112, 0.0018068982753902674, 0.013707030564546585, -0.005556255113333464, -0.01659669540822506, -0.035938914865255356, -0.003256878349930048, -0.014331637881696224, -0.002951438771560788, 0.02785334549844265, -0.013947264291346073, 0.009664245881140232, 0.018751932308077812, -0.025327462702989578, 0.01219699252396822, 0.010261397808790207, 0.032095178961753845, 0.006417663302272558, 0.0022753532975912094, 0.006500029005110264, 0.015443574637174606, -0.014976835809648037, 0.003727049333974719, 0.025862840935587883, -0.04368129372596741, 0.003723617410287261, -0.05471830070018768, 0.00987016037106514, -0.01332952082157135, -0.03703712299466133, -0.002364582847803831, 0.0026614428497850895, 0.011448836885392666, -0.009032775647938251, -0.0019647658336907625, 0.004653663840144873, -0.036872394382953644, -0.0007683178409934044, -0.0065549397841095924, 0.011462564580142498, -0.0018669565906748176, -0.024435168132185936, 0.0005868558655492961, 0.0005945776356384158, 0.007158955093473196, 0.029130013659596443, 0.015388664789497852, 0.0065926904790103436, 0.0056523485109210014, 0.04041412100195885, -0.04049648344516754, 0.0027695477474480867, 0.020605159923434258, 0.027304239571094513, -0.020385518670082092, -0.0147160105407238, 0.008250300772488117, -0.028196536004543304, -0.0021174857392907143, 0.000513498845975846, -0.007069725543260574, 0.010714408941566944, 0.004152605775743723, 0.016624150797724724, 0.02181319147348404, 0.025121549144387245, 0.018257737159729004, -0.011455700732767582, -0.00219985144212842, -0.019575588405132294, -0.010295716114342213, -0.0031127382535487413, -0.009444603696465492, 0.021840646862983704, 0.011737116612493992, 0.012718642130494118, 0.032095178961753845, 0.004200652241706848, -0.008449351415038109, -0.030832238495349884, 0.010110394097864628, -0.014921925030648708, 0.012203856371343136, -0.01361780147999525, -0.019287308678030968, 0.007090316619724035, 0.04747011885046959, -0.0013633244670927525, 0.02105817198753357, -0.00746782636269927, 0.012965738773345947, -0.02962420880794525, -0.03050277568399906, 0.02440771274268627, -0.0037167537957429886, 0.0010630327742546797, -0.02414688654243946, -0.005679803434759378, 0.009602471254765987, -0.0031813764944672585, 0.008504262194037437, -0.0046433680690824986, -0.035746727138757706, 0.013816851191222668, 0.0034044503699988127, 0.00792770180851221, -0.0011788595002144575, -0.0015177602181211114, -0.01040553767234087, 0.009657382033765316, 0.034813251346349716, 0.0004813247360289097, 0.010233942419290543, 0.0001745982008287683, 0.003847166197374463, -0.005926901008933783, -0.00707658939063549, 0.014798376709222794, -0.012375451624393463, -0.0023834584280848503, 0.0009540697210468352, 0.019726593047380447, -0.020632615312933922, 0.002745524514466524, 0.017488989979028702, 0.014317910186946392, 0.01540239155292511, -0.006218612659722567, -0.0041114226914942265, -0.0086484020575881, -0.032342277467250824, 0.0027129212394356728, -0.015580850653350353, -0.003908940590918064, 0.009382830001413822, 0.02691986784338951, 0.0017983184661716223, 0.013027513399720192, 0.005851398687809706, 0.014276727102696896, -0.029706574976444244, -0.002093462273478508, -0.01566321589052677, -0.014139451086521149, -0.016129955649375916, 0.03739404305815697, -0.0012440657010301948, 0.013638392090797424, 0.035938914865255356, 0.008531717583537102, 0.016322143375873566, 0.01836755871772766, 0.015827948227524757, -0.023282047361135483, 0.002999485470354557, 0.012251902371644974, -0.010796775110065937, 0.025821657851338387, -0.01899902895092964, -0.01050163060426712, -0.006156838499009609, -0.01332952082157135, 0.020975805819034576, 0.013727622106671333, 0.0012535034911707044, 0.08176171779632568, 0.02477835863828659, -0.013713894411921501, 0.020632615312933922, -0.02005605585873127, -0.00023873192549217492, 0.015114111825823784, 0.004358519800007343, 0.0024452325887978077, -0.021923013031482697, 0.027263058349490166, 0.0077492427080869675, 0.01204598881304264, -0.03289138153195381, 0.0023028086870908737, 0.0208797138184309, -0.0004159040399827063, 0.01610250025987625, 0.002731796819716692, -0.003932963591068983, -0.0018566609360277653, -0.009918207302689552, 0.011332152411341667, -0.00020430563017725945, -0.024943089112639427, 0.006712807342410088, 0.023185953497886658, -0.007323686499148607, -0.013254019431769848, -0.03654292970895767, 0.015169022604823112, 0.005120403133332729, -0.03212263435125351, -0.026562949642539024, -0.026370761916041374, 0.012251902371644974, -0.002663158578798175, -0.03289138153195381, 0.023172225803136826, -0.005703826900571585, -0.002791855251416564, 0.011339016258716583, -0.021923013031482697, -0.01924612559378147, 0.00012494281691033393, -0.009568152949213982, -0.04294000193476677, -0.007282503414899111, -0.04195161163806915], "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b": [0.013916692696511745, 0.0003303703269921243, -0.01636151596903801, -0.013809227384626865, 0.0039627645164728165, -0.0216541588306427, -0.013930125162005424, 0.01194202620536089, 0.0003589156549423933, -0.016321217641234398, -0.04277099296450615, 0.0036336537450551987, -0.014561480842530727, 0.03105732798576355, 0.007589702028781176, 0.002342396881431341, 0.01364803034812212, -0.012412184849381447, 0.0069113303907215595, 0.010518117807805538, 0.013654747046530247, 0.001642196555621922, -0.018040653318166733, -0.02992894873023033, 0.006897896993905306, 0.030009547248482704, 0.020351147279143333, -0.0070120785385370255, 0.03645743429660797, -0.0058870562352240086, -0.0008958199177868664, -0.0012694280594587326, -0.006787074264138937, -0.024112416431307793, -0.006038178689777851, -0.005356448702514172, 0.009309139102697372, -0.013822660781443119, 0.0031517413444817066, -0.013668179512023926, 0.020995937287807465, 0.008328522555530071, -0.01683167554438114, -0.01192859373986721, -0.012439051643013954, 0.013876393437385559, -0.007858363911509514, -0.035194724798202515, -0.01414505485445261, -0.015810759738087654, 0.007341189309954643, 0.030331941321492195, -0.027322927489876747, 0.0021140342578291893, 0.0017379074124619365, 0.006434455048292875, -0.019357098266482353, 0.024649739265441895, -0.006803865544497967, -0.04610240086913109, 0.012130090035498142, 0.0026127381715923548, -0.03116479329764843, -0.029096096754074097, -0.02686620131134987, 0.008765098638832569, -0.0066090854816138744, 0.02370942197740078, -0.012418901547789574, 0.01646898128092289, 0.019531728699803352, 0.019195901229977608, -0.010679314844310284, 0.00791881326586008, 0.02225864864885807, -0.0028780419379472733, -0.0040803044103085995, 0.0038183587603271008, -0.03237377107143402, 0.013876393437385559, 0.013876393437385559, -0.015985390171408653, -0.004983680322766304, 0.03073493391275406, 0.02636917680501938, -0.020082484930753708, 0.017597362399101257, 0.03103046305477619, -0.009100926108658314, -0.022769106552004814, 0.004842632915824652, 0.002889795694500208, -0.0007912935689091682, 0.015045072883367538, 0.008973311632871628, 0.033851414918899536, -0.014682378619909286, 0.029794616624712944, 0.007206858601421118, -0.05136817693710327, 0.003207152709364891, 0.024663172662258148, -0.007052377797663212, -0.0036840278189629316, -0.0014180316356942058, 0.0016623461851850152, -0.00152885471470654, -0.00746208755299449, 0.009886762127280235, 0.008691215887665749, -0.01603912189602852, 0.06324303895235062, -0.016092855483293533, -0.01431968528777361, 0.01575702801346779, -0.024287046864628792, 0.035302188247442245, -0.0052254763431847095, 0.013177871704101562, -0.003616862464696169, 0.013634596951305866, 0.007455370854586363, 0.019263066351413727, -0.01696600578725338, 0.005903847981244326, -0.008489719592034817, -0.02446167543530464, -0.016495848074555397, -0.028478173539042473, -0.03661863133311272, 0.00507771223783493, 0.015018207021057606, -0.009698698297142982, 0.011814411729574203, 0.005386673379689455, 0.025039300322532654, 0.003573204856365919, 0.018054086714982986, -0.02939162403345108, -0.016442114487290382, 0.01910186931490898, 0.014655512757599354, -0.015179404057562351, 0.005873623304069042, 0.002753785578534007, 0.030439406633377075, 0.015233135782182217, 0.02100936882197857, -0.01711376942694187, -0.017274968326091766, 0.007885229773819447, 0.01984068937599659, 0.017194369807839394, -0.011203206144273281, -0.007361339405179024, 0.025831852108240128, -0.006978495977818966, -0.0009327609441243112, 0.02850504033267498, -0.012291287072002888, 0.02683933451771736, 0.0296334195882082, -0.021694457158446312, -0.014601780101656914, -0.01977352425456047, 0.02526766248047352, 0.00903376005589962, 0.00047393658314831555, -0.011606198735535145, 0.006293407641351223, -0.004573970567435026, 0.011713664047420025, -0.009826312772929668, 0.016549579799175262, -0.006357214879244566, 0.011599482037127018, 0.01981382444500923, -0.0026799035258591175, -0.029311025515198708, -0.03358275070786476, 0.01785259135067463, -0.008100159466266632, 0.0080732936039567, 0.029472222551703453, -0.03223944082856178, -0.012526366859674454, 0.02796771563589573, -0.006713191978633404, 0.02516019716858864, 0.0012224122183397412, 0.01530030183494091, 0.012123373337090015, -0.01672421023249626, -0.01079349685460329, -0.5975043177604675, -0.005739292129874229, -0.004134036600589752, -0.023978084325790405, 0.004963530693203211, 0.011089025065302849, 0.005386673379689455, -0.007905379869043827, -0.02448854222893715, 0.022567609325051308, -0.03003641404211521, 0.012304720468819141, 0.01707347109913826, 0.02655724063515663, -0.0077173165045678616, -0.02139892987906933, 0.023736288771033287, -0.025818418711423874, 0.018322749063372612, 0.004893006756901741, -0.020351147279143333, 0.02250044420361519, -0.03677982836961746, -0.00836210511624813, -0.0033884996082633734, 0.028693102300167084, -0.016992872580885887, -0.004627703223377466, 0.0034724564757198095, 0.02070040814578533, -0.018255583941936493, 0.0032961471006274223, -0.012083074077963829, 0.02260790765285492, 0.028800567612051964, -0.0014104755828157067, -0.010531551204621792, 0.021318331360816956, -0.0014625288313254714, 0.030976729467511177, 0.002110675908625126, -0.02186908759176731, -0.010121840983629227, -0.005625111050903797, -0.004325458314269781, -0.021251164376735687, 0.0002294121659360826, 0.018537679687142372, 0.015380900353193283, -0.0259124506264925, 0.010679314844310284, 0.005201968364417553, -0.015501798130571842, -0.01245920080691576, 0.01575702801346779, -0.007139693014323711, 0.028451306745409966, 0.0023743005003780127, 0.00955093465745449, -0.01130395382642746, 0.019034704193472862, -0.007455370854586363, 0.017879456281661987, -0.01437341794371605, 0.00573257589712739, 0.01683167554438114, -0.026530373841524124, -0.0073143234476447105, -0.0061960178427398205, -0.028881166130304337, 0.016589879989624023, 0.026355743408203125, -0.022406412288546562, -0.004097095690667629, 0.016092855483293533, 0.04376504197716713, 0.01679137535393238, 0.009053910151124, 0.01079349685460329, 0.008194191381335258, 0.008556884713470936, -0.0168585404753685, -0.0018923880998045206, -0.010981559753417969, 0.06001909449696541, 0.015488364733755589, -0.0042650094255805016, -0.002286985283717513, 0.004463147837668657, 0.01425252016633749, 0.003326371544972062, 0.021573560312390327, -0.027161730453372, -0.015139104798436165, -0.012815178371965885, 0.042179934680461884, 0.005238909274339676, -0.005054204259067774, -0.013070407323539257, -0.014292819425463676, -0.04843975976109505, -0.012465917505323887, 0.0036067876499146223, -0.010074825957417488, 0.015139104798436165, 0.019800391048192978, 0.02694679982960224, 0.01245920080691576, 0.02232581377029419, -0.03428127244114876, -0.017315266653895378, -0.024340778589248657, -0.02066010795533657, 0.00862405076622963, -0.016563013195991516, -0.02001531980931759, 0.02761845476925373, 0.030573736876249313, 0.009933778084814548, -0.0004084502288606018, 0.002449861727654934, 0.017758559435606003, -0.0057225008495152, -0.017946623265743256, 0.011881577782332897, -0.009524068795144558, -0.007556119002401829, -0.01437341794371605, -0.04696211963891983, -0.005712426267564297, 0.001282021519728005, 0.02225864864885807, -0.006525128614157438, -0.022876570001244545, 0.008214341476559639, -0.002909945324063301, 0.013056973926723003, -0.0065452782437205315, -0.0027554647531360388, -0.009765864349901676, -0.01347339991480112, -0.004537029657512903, 0.00015238173364195973, -0.016804808750748634, -0.02286313660442829, -0.004070229362696409, -0.012680847197771072, 0.005426972638815641, -0.01364803034812212, -0.015004773624241352, -0.013997291214764118, -0.0002258440072182566, -0.017583929002285004, 0.010968126356601715, -0.00967183243483305, -0.012029341422021389, -0.007650150917470455, 0.012224121950566769, 0.008254640735685825, 0.006155718583613634, 0.00311480020172894, 0.019572027027606964, -0.02783338539302349, 0.02221834845840931, -0.019760090857744217, -0.006101985927671194, -0.02098250389099121, 0.02893489971756935, -0.01981382444500923, -0.031003596261143684, -0.014265952631831169, 0.010000943206250668, -0.020283982157707214, 0.0067299832589924335, 0.009853179566562176, 0.008933012373745441, 0.0026799035258591175, -0.005823248997330666, 0.011129324324429035, -0.010021093301475048, -0.023292995989322662, 0.0005939949187450111, -0.006787074264138937, -0.02133176475763321, 0.027940848842263222, 0.020458612591028214, 0.03274989873170853, 0.00926212314516306, -0.0005625110934488475, -0.00014388110139407218, 0.006165793165564537, -0.00568891828879714, -0.01640181615948677, 0.008435986936092377, 0.0010419049067422748, 0.025536324828863144, -0.00841583777219057, 0.004772108979523182, 0.015219703316688538, 0.03326035663485527, 0.010746480897068977, 0.00504077086225152, 0.014910741709172726, -0.024367645382881165, -0.004127320367842913, -0.025052733719348907, 0.011559182778000832, 0.005594886373728514, 0.021734757348895073, -0.00018386555893812329, 0.02686620131134987, -0.027027398347854614, -0.022621341049671173, -0.014776410534977913, 0.037720147520303726, 0.02829010970890522, 0.011142756789922714, -0.017812291160225868, -0.003334767185151577, -0.0014734432334080338, -0.029257293790578842, 0.007186708971858025, -0.004916514735668898, 0.006226242054253817, -0.004866140894591808, -0.007824781350791454, 0.014910741709172726, 0.019854122772812843, -0.019786957651376724, -0.06609085202217102, -0.004668002482503653, 0.0003349879407323897, -0.006891180761158466, 0.013204737566411495, 0.016213752329349518, 0.02885430119931698, 0.048359163105487823, -0.0002254242281196639, 0.03554398566484451, -0.010618866421282291, -0.022137749940156937, 0.015945089980959892, 0.012848760932683945, -0.028881166130304337, 0.03471113368868828, 0.011149473488330841, 0.022916870191693306, 0.003512755734845996, -0.01650928147137165, 0.004305308684706688, 0.03049313835799694, 0.0157973263412714, -0.010262888856232166, -0.009732281789183617, -0.01137783657759428, -0.01722123473882675, 0.001917575136758387, 0.01583762653172016, 0.006578861270099878, -0.004463147837668657, 0.021855654194951057, -0.017274968326091766, -0.01184127852320671, 0.022178050130605698, 0.021022802218794823, 0.0053530908189713955, -0.01724810153245926, 0.0021677666809409857, 0.003403611946851015, 0.014507749117910862, -0.02871996909379959, -0.030009547248482704, -0.01895410567522049, -0.007582985330373049, 0.026328876614570618, 0.0012845402816310525, 0.015434633009135723, 0.01973322406411171, 0.041588880121707916, -0.02346762642264366, -0.013567431829869747, -0.004120603669434786, -0.004177694208920002, 0.042367998510599136, -0.012304720468819141, -0.028531905263662338, -0.010679314844310284, 0.022016851231455803, -0.016885407269001007, 0.012042774818837643, -0.03344842046499252, 0.014037590473890305, 0.0018789549358189106, 0.002122429898008704, 0.0006758528761565685, -0.008496436290442944, 0.014333118684589863, -0.012694280594587326, 0.02992894873023033, 0.013513699173927307, 0.026382610201835632, 0.014010723680257797, 0.0042650094255805016, 0.0047049433924257755, 0.01984068937599659, 0.00043993405415676534, 0.022554175928235054, -0.010356920771300793, 0.009490485303103924, -0.01323832105845213, 0.008744948543608189, -0.01640181615948677, -0.011471867561340332, -0.02161385864019394, 0.0404605008661747, -0.011008425615727901, 0.04019183665513992, 0.010639015585184097, 0.0287468358874321, 0.0037344018928706646, -0.017651094123721123, -0.027027398347854614, -0.03742462024092674, 0.01998845301568508, 0.028666237369179726, -5.677583976648748e-05, -0.010585282929241657, -0.0018739175284281373, -0.016415249556303024, -0.034979794174432755, 0.019048137590289116, -0.006128852255642414, 0.02133176475763321, -0.015824193134903908, -0.019316798076033592, -0.005292641464620829, -0.005806457716971636, -0.000962145859375596, 0.0025993050076067448, 0.007522536441683769, -0.022339247167110443, -0.023064633831381798, 0.008597184903919697, -0.03997690603137016, 0.03570518270134926, -0.009651683270931244, 0.008791964501142502, 0.036967892199754715, -0.010021093301475048, -0.001203102059662342, -0.015165970660746098, 0.0036202205810695887, 0.05171743780374527, -0.0195182953029871, 0.011881577782332897, 0.027913983911275864, 0.021640725433826447, 0.025106465443968773, -0.028155779466032982, 0.022957168519496918, 0.018282450735569, 0.018658576533198357, 0.0018285808619111776, -0.012452484108507633, 0.0390365906059742, 0.006844164803624153, 0.005631827283650637, -0.008791964501142502, -0.012284570373594761, 0.010068109259009361, 0.03223944082856178, 0.000870632822625339, 0.006360573228448629, -0.03105732798576355, 0.021519826725125313, 0.0012862193398177624, -0.038176871836185455, -0.005453838966786861, 0.03261556848883629, 0.01073976419866085, -0.02612738125026226, -0.01008154172450304, -0.0193436648696661, 0.013406234793365002, -0.04655912518501282, -0.01010169181972742, 0.02509303204715252, -0.009524068795144558, 0.011633065529167652, -0.021466095000505447, 0.011492017656564713, 0.03129912540316582, -0.029982680454850197, -0.028343843296170235, 0.023064633831381798, 0.004127320367842913, -0.002656395547091961, -0.006897896993905306, 0.026664704084396362, 0.013916692696511745, 0.011243505403399467, 0.02048547938466072, -0.007475520484149456, 0.010262888856232166, 0.012774879112839699, -0.04021870344877243, -0.006558711640536785, -0.019464563578367233, 0.0040534380823373795, 0.020243681967258453, 0.0013550639851018786, 0.027322927489876747, 0.010820362716913223, 0.007556119002401829, 0.009866612032055855, -0.0027235611341893673, -0.01487044245004654, -0.015542097389698029, -0.021143700927495956, 0.02208401821553707, -0.003495964454486966, -0.018873507156968117, 0.007072527427226305, -0.010068109259009361, -0.011317387223243713, -0.004322099965065718, 0.028773700818419456, -0.013144289143383503, -0.013305486179888248, -0.025334827601909637, 0.006464679725468159, 0.010054675862193108, -0.028478173539042473, 0.03202451020479202, 0.040164969861507416, -0.01718093641102314, 0.013889825902879238, -0.0020351146813482046, -0.023333296179771423, 0.047472577542066574, -0.012680847197771072, 0.029767751693725586, -0.021143700927495956, -0.028209511190652847, -0.004839274566620588, -0.012210688553750515, -0.010430802591145039, 0.03554398566484451, -0.01022258959710598, 0.028155779466032982, -0.0056754848919808865, -0.0029216993134468794, -0.001153567573055625, 0.0021325047127902508, 0.008456137031316757, 0.0027134863194078207, 0.010847228579223156, -0.016912274062633514, 0.0010670919436961412, 0.01789288967847824, -0.010927827097475529, 0.0025657222140580416, -0.02349449321627617, 0.004815766587853432, -0.0027554647531360388, 0.00341200758703053, 0.008993460796773434, -0.026396043598651886, -0.01245920080691576, -0.035651449114084244, -0.018322749063372612, 0.03344842046499252, 0.010403936728835106, 0.029579687863588333, 0.01575702801346779, 0.001826901687309146, -0.0193436648696661, -0.017019739374518394, 0.030358808115124702, 0.005554587114602327, 0.0034422320313751698, 0.025281095877289772, 0.02829010970890522, 0.01884664036333561, 0.03919778764247894, 0.008838980458676815, 0.05469958484172821, -0.00041600633994676173, -0.007609851658344269, 0.01646898128092289, -0.0018923880998045206, 0.0031467038206756115, -0.013459966517984867, -0.008368821814656258, -0.009947211481630802, 0.004288517404347658, -0.0012350056786090136, 0.01022258959710598, -0.016979439184069633, 0.00961809977889061, 0.010068109259009361, 0.02708113007247448, -0.03790821135044098, -0.0354902520775795, 0.007818064652383327, 0.02705426514148712, -0.005413539707660675, 0.035624582320451736, -0.022701939567923546, 0.0017076829681172967, 0.01746303029358387, -0.01767796091735363, -0.025428859516978264, -0.007005361840128899, -0.0005751046119257808, -0.020324280485510826, 0.008966594934463501, 0.02545572631061077, 0.03205137699842453, 0.004933306016027927, 0.025899017229676247, -0.03379768133163452, 0.031782716512680054, -0.025039300322532654, -0.013339068740606308, 0.01849737949669361, -0.012835327535867691, 0.006222883705049753, -0.008456137031316757, 0.004147469997406006, -0.0032961471006274223, -0.018107820302248, 0.046129267662763596, -0.015380900353193283, -0.03600070998072624, -0.019679492339491844, -0.03250810503959656, -0.0450814850628376, 0.00031756688258610666, 0.020928770303726196, -0.011122607626020908, 0.007085960824042559, -0.02325269766151905, -0.015313735231757164, 0.02448854222893715, -0.016321217641234398, 0.019504861906170845, 0.010437519289553165, 0.03511412441730499, 0.021909387782216072, -0.006101985927671194, -0.017731692641973495, -0.019424263387918472, -0.0004579847736749798, 0.0012769841123372316, 0.032561834901571274, 0.006528486963361502, -0.011847995221614838, -0.0019629118032753468, 0.00023193088418338448, 0.000265513634076342, -0.017704825848340988, -0.025012433528900146, 0.025146763771772385, 0.011834561824798584, 0.01223083771765232, -0.03965451195836067, -0.011532316915690899, -0.02487810328602791, -4.6832195948809385e-05, -0.0037075357977300882, -0.010249455459415913, -0.0045471047051250935, -0.006501620635390282, -0.021560126915574074, 0.02701396495103836, 0.00512136984616518, 0.05144877731800079, -0.0007060773787088692, -0.0011863106628879905, -0.0008639162988401949, -5.6933258747449145e-05, -0.017557062208652496, -0.0031467038206756115, 0.0015330526512116194, 0.014521181583404541, -0.023978084325790405, -0.014883875846862793, 0.03218571096658707, 0.0051986100152134895, -0.013265186920762062, -0.026785602793097496, 0.0033952163066715, 0.028424441814422607, 0.0009864933090284467, -0.011250222101807594, -0.0018420139094814658, 0.007730749435722828, -0.00056586938444525, 0.006669534370303154, -0.01292264275252819, 0.015380900353193283, -0.025858718901872635, -0.02580498717725277, 0.01640181615948677, 0.0004571452154777944, 0.009927061386406422, -0.0070389448665082455, -0.008066576905548573, 0.005269133951514959, -0.03801567479968071, -0.011089025065302849, 0.010175573639571667, -0.019048137590289116, -0.046236731112003326, -0.014601780101656914, 0.0007459568441845477, 0.008012844249606133, -0.013903259299695492, -0.021707890555262566, -0.004335533361881971, 0.04975620657205582, -0.035087257623672485, 0.018121253699064255, -0.006437813397496939, 0.0002470431209076196, -0.027040831744670868, 0.028102045878767967, 0.011895010247826576, -0.016495848074555397, 0.01091439463198185, -0.0074419379234313965, -0.036296237260103226, -0.011149473488330841, -0.016737643629312515, 0.02438107691705227, 0.009900195524096489, 0.002292022807523608, 0.0048325578682124615, 0.015340601094067097, 0.016280917450785637, 0.006340423598885536, -0.015018207021057606, 0.024394510313868523, -0.0022819479927420616, -0.014104755595326424, 0.0007253874209709466, -0.023870619013905525, 0.001146011403761804, -0.0032827139366418123, -0.0008236169815063477, 0.005531079135835171, -0.0026177754625678062, -0.039493314921855927, -0.029042363166809082, -0.005141519475728273, 0.015945089980959892, -0.012210688553750515, -0.014440583065152168, -0.027779651805758476, -0.03073493391275406, -0.011102457530796528, -0.02850504033267498, -0.01071961410343647, -0.007005361840128899, 0.004083662759512663, 0.01568986102938652, -0.0018554470734670758, -0.01955859549343586, -0.011794262565672398, -0.004782184027135372, -0.005487421527504921, -0.03151405602693558, -0.020472045987844467, 0.016348084434866905, 0.03616190701723099, 0.039170920848846436, -0.019075002521276474, -0.01714063622057438, -0.015542097389698029, -0.009315854869782925, 0.004197843838483095, 0.013654747046530247, 0.018900372087955475, 0.011068874970078468, 0.02420644834637642, -0.0077173165045678616, 0.043926239013671875, 0.006864314433187246, 0.012627114541828632, -0.01437341794371605, 0.022178050130605698, 0.009483769536018372, 0.05335627496242523, -0.01025617215782404, 0.0220034196972847, 0.004751959349960089, -0.02325269766151905, 0.003064426127821207, 0.026355743408203125, 0.021022802218794823, 0.003009014530107379, -0.01941082999110222, -0.01341966725885868, -0.03148718923330307, 0.0003037140122614801, 0.013661463744938374, 0.018161552026867867, -0.005010546650737524, -0.016804808750748634, -0.021385496482253075, -0.013943558558821678, 0.014051022939383984, -0.008341955952346325, -0.011780829168856144, -0.015165970660746098, -0.0017866024281829596, 0.008859129622578621, -0.008812113665044308, -0.009658399038016796, 0.01004795916378498, -0.029311025515198708, -0.006044895388185978, -0.002980469260364771, -0.002795764012262225, 0.04048736393451691, -0.002110675908625126, 0.00958451721817255, -0.010672598145902157, 0.004762034397572279, -0.03250810503959656, -0.0016220469260588288, -0.009940494783222675, 0.010377069935202599, 0.0036067876499146223, -0.003915749024599791, 0.023830320686101913, -0.018215283751487732, 0.012714429758489132, 0.0076367175206542015, -0.02176162227988243, -0.03909032419323921, 0.011545750312507153, -0.012190538458526134, -1.4167723747959826e-05, 0.004678077530115843, -0.0016682231798768044, -0.0016346403863281012, -0.019007837399840355, -0.03788134455680847, -0.004496730398386717, 0.005537795834243298, -0.005504212807863951, -0.008859129622578621, 0.009416603483259678, -0.004845991265028715, 0.0018302599200978875, -0.0003964863717556, -0.031111061573028564, -0.017476463690400124, 0.18892313539981842, 0.007643434219062328, 0.005840040743350983, 0.01414505485445261, -0.008798681199550629, -0.01863170973956585, 0.011337537318468094, -0.0011594444513320923, -0.005813174415379763, 0.0148167097941041, -0.015918225049972534, 0.033099159598350525, -0.011774112470448017, 0.013997291214764118, 0.020042186602950096, 0.010014376603066921, -0.020686974748969078, -0.034979794174432755, -0.015609263442456722, -0.018645143136382103, -0.0004575649800244719, 0.003680669702589512, -0.0159719567745924, -0.03205137699842453, 0.01800035499036312, -0.01689884066581726, -0.02098250389099121, 0.009221823886036873, 0.026073647662997246, 0.02158699370920658, -0.02066010795533657, 0.008268073201179504, 0.008812113665044308, -0.028666237369179726, -0.006897896993905306, 0.0032239442225545645, 0.038499265909194946, -0.003637012094259262, -0.003297826275229454, -0.00025501902564428747, 0.025442292913794518, -0.026207979768514633, -0.020391447469592094, 0.0004680595884565264, 0.018900372087955475, 0.02016308344900608, -0.00740835489705205, -0.001550683518871665, -0.009524068795144558, 0.01785259135067463, -0.014440583065152168, -0.02228551357984543, 0.030520005151629448, 0.00041579644312150776, -0.0034355155657976866, -0.0019024629145860672, -0.013137572444975376, 0.0023524716962128878, 0.0383380688726902, -0.0006393316434696317, -0.002095563802868128, 0.041373949497938156, -0.012096507474780083, 0.023669123649597168, 0.013708479702472687, 0.0004311185621190816, -0.048466626554727554, 0.014910741709172726, 0.011176339350640774, -0.004829199519008398, -0.0053262244910001755, -0.016522713005542755, 0.0007929727435112, -0.01735556684434414, -0.017973488196730614, -0.012942792847752571, 0.036430567502975464, 0.006555353291332722, 0.008885996416211128, 0.019048137590289116, -0.01352713257074356, -0.008993460796773434, -0.01307712309062481, 0.0262617114931345, -0.008778531104326248, -0.020028753206133842, 0.000834951177239418, -0.00912107527256012, 0.020646676421165466, -0.022876570001244545, -0.014655512757599354, -0.015448065474629402, -0.003183644963428378, -0.0009965681238099933, 0.006951629649847746, 0.029203560203313828, 0.008543452247977257, 0.0482785627245903, -0.0006217007176019251, 0.013728628866374493, -0.023306429386138916, 0.03557085245847702, 0.022057151421904564, 0.0159719567745924, -0.02154669351875782, -0.0027940848376601934, -0.010121840983629227, 0.0016741001745685935, -0.033717080950737, -0.020351147279143333, -0.013782361522316933, 0.006803865544497967, 0.012069640681147575, -0.011525600217282772, -0.005228834226727486, -0.0022198199294507504, -0.013318919576704502, -0.034845463931560516, 0.009900195524096489, -0.012875626794993877, -0.002392770955339074, -0.002144258702173829, -0.004657927434891462, -0.01817498542368412, 0.014601780101656914, -0.012277853675186634, -0.04553821310400963, 0.006656101439148188, 0.01863170973956585, -0.014346551150083542, 0.02729606069624424, -0.032991696149110794, -0.016777941957116127, -0.016522713005542755, 0.0021207507234066725, -0.010833796113729477, -0.02736322581768036, -0.02331986278295517, -0.007307606749236584, 0.001826901687309146, -0.005900489632040262, 0.019249632954597473, -0.008751665242016315, 0.0013139251386746764, 0.015851058065891266, -0.022124316543340683, 0.0063807228580117226, -0.028155779466032982, -0.003724327078089118, -0.028585638850927353, -0.015662996098399162, -0.0005213722470216453, 0.014212220907211304, -0.029257293790578842, -0.006998645607382059, -0.03307229280471802, 0.0021073175594210625, -0.03866046294569969, 0.038606733083724976, -0.016804808750748634, -0.02023025043308735, -0.009053910151124, 0.016992872580885887, -0.0043288166634738445, -0.02374972216784954, -0.016092855483293533, -0.16700030863285065, 0.017328700050711632, 0.02448854222893715, -0.020109351724386215, 0.011794262565672398, -0.0077173165045678616, 0.025549758225679398, 0.012915926054120064, 0.005329582840204239, -0.00253381859511137, 0.022876570001244545, -0.007267307490110397, -0.030331941321492195, -0.005571378394961357, -0.016280917450785637, 0.012331586331129074, 0.011216639541089535, -0.004087021108716726, 0.02137206308543682, 0.023266131058335304, 0.022675074636936188, -0.024179581552743912, 0.04564567655324936, 0.02431391179561615, 0.0064445300959050655, 0.004120603669434786, 0.0010570171289145947, -0.018967539072036743, -0.03092299774289131, -0.023064633831381798, -0.018282450735569, 0.016710776835680008, -0.00013674476940650493, -0.012452484108507633, 0.02250044420361519, 0.017825724557042122, 0.025052733719348907, -0.029902081936597824, -0.006891180761158466, 0.002082130638882518, 0.01137783657759428, 0.02463630586862564, 0.02949908934533596, -0.0020116069354116917, -0.003915749024599791, 0.013849526643753052, 0.015407766215503216, -0.0021123550832271576, 0.0022063867654651403, -0.037747014313936234, 0.015004773624241352, -0.007153125945478678, 0.016710776835680008, 0.004862782545387745, 0.016885407269001007, 0.010692748241126537, -0.01994815468788147, 0.0148167097941041, 0.023413894698023796, 0.008456137031316757, -0.014158488251268864, -0.013876393437385559, -0.041159018874168396, 0.023695990443229675, -0.015568963252007961, -0.00018543975602369756, -0.0006825693999417126, 0.033985745161771774, -0.02336016297340393, -0.002683261875063181, -0.018094386905431747, -0.011612915433943272, 0.021291464567184448, -0.003482531290501356, 0.0036269372794777155, 0.01871231012046337, -0.002224857220426202, 0.031003596261143684, -0.010800212621688843, -0.018269017338752747, -0.007750899065285921, 0.03769328072667122, -0.012942792847752571, -0.0033868204336613417, 0.008106876164674759, -0.03250810503959656, -0.008268073201179504, -0.004402698948979378, 0.0065083373337984085, -0.022849705070257187, -9.812460484681651e-05, -0.030197611078619957, -0.007267307490110397, -0.015206269919872284, 0.012647264637053013, 0.005752725526690483, 0.011659931391477585, -0.009483769536018372, 0.006622518412768841, -0.023937785997986794, 0.000757710833568126, 0.007871797308325768, -0.0383380688726902, -0.02094220370054245, 0.019437696784734726, 0.020458612591028214, -0.020955637097358704, 0.008026277646422386, 0.033636484295129776, 0.009282272309064865, -0.003165174275636673, -0.009094209410250187, 0.024972133338451385, 0.012190538458526134, 0.01129052136093378, 0.009597950614988804, -0.015515231527388096, -0.0047956169582903385, 0.015528663992881775, 0.00920839048922062, 0.03624250739812851, 0.011666648089885712, 0.020646676421165466, 0.00743522122502327, -0.003234019037336111, 0.009309139102697372, -0.1125156506896019, -0.0649624764919281, -0.007233724929392338, 0.0028998705092817545, -0.004594120662659407, 0.02016308344900608, -0.004657927434891462, 0.018685443326830864, 0.023333296179771423, 0.0005264096544124186, 0.0017244742484763265, -0.01830931566655636, -0.005880340002477169, 0.014521181583404541, 0.0029284160118550062, -0.023158665746450424, -0.0015649562701582909, 0.016710776835680008, -0.021707890555262566, 0.022097449749708176, 0.007683733478188515, 0.004678077530115843, -0.023346729576587677, 0.006703117396682501, 0.010672598145902157, 0.01845708116889, -0.022634774446487427, 0.014077889733016491, 0.018698876723647118, -0.00012562048505060375, 0.004792258609086275, -0.010800212621688843, 0.01474954467266798, 0.002632887801155448, -0.013903259299695492, 0.04140081629157066, -0.009114358574151993, -0.04169634357094765, 0.05362493917346001, -0.035517118871212006, -0.015810759738087654, -0.008382255211472511, -0.006018029060214758, -0.020901905372738838, -0.011861427687108517, -0.008577034808695316, -0.008845697157084942, 0.03060060366988182, -0.01711376942694187, -0.01938396506011486, -0.026422908529639244, -0.006478112656623125, -0.006021387409418821, 0.005222117993980646, 0.02438107691705227, -0.02314523234963417, -0.00627325801178813, 0.008650916628539562, -0.01361444778740406, -0.031084194779396057, -0.006397514138370752, -0.0009126112563535571, -0.01187486108392477, 0.004540388006716967, 0.01981382444500923, -0.002194632776081562, -0.05139504373073578, 0.0041441116482019424, 0.030331941321492195, -0.0065721445716917515, 0.0008538414840586483, 0.0016816563438624144, 0.006152360234409571, 0.028424441814422607, -0.007455370854586363, 0.006854239851236343, 0.0020233606919646263, 0.011693513952195644, 0.005292641464620829, -0.015407766215503216, -0.014480882324278355, -0.01891380548477173, 0.008200908079743385, -0.02321239747107029, 0.01824215054512024, 0.031111061573028564, -0.020364580675959587, 0.00839568767696619, 0.01722123473882675, -0.014521181583404541, 0.012398752383887768, 0.006313557270914316, 0.023763155564665794, -0.02381688728928566, -0.008751665242016315, 0.02431391179561615, 0.032776765525341034, 0.008120309561491013, -0.0072874571196734905, 0.03146032243967056, -0.04274412617087364, -0.014359984546899796, -0.05002486705780029, 0.01442715059965849, -0.01838991418480873, -0.030654335394501686, 0.005161669105291367, -0.002867966890335083, 0.0189944040030241, -0.007858363911509514, 0.0193436648696661, -0.02033771388232708, -0.027390092611312866, -0.0035832796711474657, 0.011142756789922714, 0.010068109259009361, -0.00031756688258610666, -0.017933189868927002, 0.04078289493918419, -0.004788900259882212, 0.019115302711725235, 0.018188418820500374, -0.020431745797395706, -0.01633465103805065, 0.03205137699842453, 0.011888294480741024, -0.030009547248482704, -0.01603912189602852, 0.01761079579591751, 0.021815355867147446, 0.008825547061860561, -0.024327345192432404, 0.023118365556001663, -0.015542097389698029, -0.012586815282702446, 0.029525956138968468, 0.019142167642712593, 0.024125847965478897, -0.011800979264080524, 0.021734757348895073, 0.014494315721094608, 0.014548048377037048, -0.02228551357984543, -0.019464563578367233, 0.008462853729724884, -0.01297637540847063, -0.01210322417318821, -0.012271137908101082, 0.01309727318584919, 0.01785259135067463, 0.014709245413541794, -0.004140753298997879, 0.03304542601108551, 0.012311437167227268, -0.0216541588306427, -0.013198021799325943, 0.007166559342294931, -0.015636129304766655, 0.0027151654940098524, -0.026046782732009888, -0.033717080950737, -0.0023239264264702797, 0.024676606059074402, -0.020821306854486465, 0.009114358574151993, 0.017194369807839394, 0.008852412924170494, -0.03393201157450676, -0.03898285701870918, -0.0015045072650536895, -0.008637484163045883, 0.003828433807939291, -0.018819773569703102, -0.002936811652034521, 0.01237188559025526, -0.002606021473184228, 0.020821306854486465, -0.002187916310504079, -0.020189950242638588, -0.03307229280471802, -0.0007190906908363104, 0.00967183243483305, 0.03358275070786476, -0.020794440060853958, -0.042932190001010895, 0.017543628811836243, 0.05445779114961624, -0.010041242465376854, -0.017207801342010498, -0.005588169675320387, 0.03170211613178253, -0.003623578930273652, -0.016522713005542755, 0.025254229083657265, -0.0038452250882983208, -0.0019226125441491604, 0.010887527838349342, 0.02463630586862564, -0.01714063622057438, -0.012828610837459564, 0.0322931744158268, 0.008355388417840004, -0.00853673554956913, -0.010034525766968727, 0.00047897399053908885, -0.02601991593837738, -0.03205137699842453, 0.013453250750899315, -0.02076757326722145, -0.004893006756901741, -0.028236377984285355, 0.02619454637169838, -0.012130090035498142, -0.02388405241072178, -0.009074059315025806, 0.018927238881587982, -0.037290286272764206, -0.0032827139366418123, 0.013889825902879238, 0.008221057243645191, -0.013768928125500679, 0.01185471098870039, 0.016657045111060143, 0.01724810153245926, 0.015676427632570267, -0.004228068515658379, 0.01535403449088335, 0.015206269919872284, 0.01091439463198185, -0.03876793012022972, -0.01838991418480873, 0.015810759738087654, -0.0022534027229994535, -0.00449001369997859, -0.02565722167491913, -0.008597184903919697, 0.01830931566655636, -0.02100936882197857, 0.015018207021057606, 0.0027940848376601934, -0.015743594616651535, 0.09145254641771317, 0.017489897087216377, 0.010141991078853607, 0.007838213816285133, -0.010591999627649784, 0.0482785627245903, 0.014185354113578796, -0.016200318932533264, 0.013379367999732494, -0.012002475559711456, 0.018819773569703102, -0.0051348027773201466, 0.027806518599390984, -0.02061980962753296, 0.007079244125634432, 0.020969070494174957, -0.021210866048932076, -0.0015976993599906564, -0.01535403449088335, -0.003851941553875804, 0.018228717148303986, -0.01806752011179924, 0.02459600754082203, 0.005218759644776583, -0.01767796091735363, 0.0014994698576629162, 0.02342732809484005, 0.0030409181490540504, 0.006642668507993221, -0.04389937222003937, 0.01295622531324625, 0.0013231603661552072, -0.029875215142965317, -0.031191660091280937, -0.015085372142493725, 0.03753208369016647, -0.004748601000756025, -0.032320041209459305, 0.017368998378515244, -0.006095269229263067, -0.026987100020051003, 0.022204915061593056, -0.04666659235954285, -0.03965451195836067, -0.004691510461270809, -0.020861605182290077, -0.02364225685596466, -0.018336182460188866, -0.0344424694776535], "6429847b-17f8-4e4e-8ec9-289a9f5b74d1": [-0.009165432304143906, 0.02432263456285, 0.009178601205348969, -0.029497941955924034, -0.011990123428404331, 0.003148971125483513, -0.0020790123380720615, 0.0065975310280919075, 0.005099588539451361, -0.02912921831011772, -0.0176065843552351, 0.017461728304624557, 0.013333333656191826, 0.01211522612720728, -0.020530041307210922, 0.006841152440756559, 0.02558683045208454, -0.01212181057780981, 0.008888889104127884, 0.014880658127367496, -0.020951440557837486, 0.017277365550398827, -0.01742222160100937, -0.00015442386211361736, -0.0028823046013712883, 0.028549794107675552, 0.020279835909605026, -0.0161316879093647, 0.005465020425617695, -0.02432263456285, 0.01635555550456047, -0.01118024718016386, -0.014446090906858444, -0.03668806701898575, 0.004253497812896967, 0.009731687605381012, -0.024256790056824684, 0.011891357600688934, -0.011384362354874611, -0.0076905349269509315, 0.02182057686150074, 0.0020641975570470095, -0.004263374488800764, -0.010370370000600815, -0.029945679008960724, 0.019924279302358627, 0.011476542800664902, -0.0292609054595232, -0.028549794107675552, -0.005909465253353119, 0.019871605560183525, 0.01913415640592575, -0.03481810539960861, -0.011818930506706238, -0.0006868312484584749, -0.011423868127167225, -0.003254320938140154, 0.017409052699804306, 0.0068477364256978035, -0.033975306898355484, 0.013089711777865887, 0.009942387230694294, -0.028839506208896637, -0.021662551909685135, -0.02012181095778942, -0.0020213990937918425, 0.008256790228188038, 0.0034699589014053345, 0.001904526725411415, -0.0013349794317036867, 0.02137283980846405, 0.010133333504199982, 0.0090074073523283, 0.013116049580276012, 0.018475720658898354, -0.0202534981071949, -0.022373663261532784, -9.998713721870445e-06, -0.011022222228348255, 0.00641646096482873, -0.012892181053757668, -0.022795062512159348, -0.0018880658317357302, 0.024875720962882042, 0.027812344953417778, 0.007242798339575529, 0.010956378653645515, 0.025376131758093834, 0.007841975428164005, -0.010297941975295544, -0.013425514101982117, -0.007664197590202093, -0.009692180901765823, 0.003920987714082003, 0.00671934150159359, 0.03866337612271309, -0.012444444000720978, 0.017145678400993347, -0.0007802469190210104, -0.001385185169056058, -0.013682304881513119, 0.03484444320201874, -0.02876049466431141, 0.0005156378610990942, -0.022334156557917595, 0.00038230454083532095, -0.00034074074937961996, -0.01689547300338745, 0.02495473250746727, -0.0023456790950149298, -0.02741728350520134, 0.061313580721616745, 0.006222222000360489, -0.01144362147897482, 0.03047242760658264, -0.01975308731198311, 0.01922633685171604, -0.021965432912111282, 0.005125925876200199, 0.00024176955048460513, 0.009264197200536728, 0.011878189630806446, 0.027390945702791214, -0.015591769479215145, 0.021530864760279655, -0.005053497850894928, -0.012628806754946709, -0.019120987504720688, -0.026903703808784485, -0.035186830908060074, 0.0085991770029068, 0.020095473155379295, 0.005761316977441311, 0.009040329605340958, 0.006725925952196121, 0.00793415680527687, 0.023980246856808662, 0.01229958888143301, -0.01756707765161991, -0.02370370365679264, 0.01958189345896244, 0.0011753086000680923, -0.012984362430870533, 0.011318518780171871, -0.013129218481481075, 0.013932510279119015, 0.030130041763186455, -0.0009777777595445514, -0.028997531160712242, -0.005155555438250303, 0.011081481352448463, -0.0017053497722372413, 0.0051522632129490376, -0.0076839504763484, -0.0009004115127027035, -0.000827572017442435, -0.009876543655991554, 0.008164608851075172, 0.02558683045208454, -0.011305349878966808, 0.018251851201057434, 0.02746995911002159, -0.0020181071013212204, 0.0019390946254134178, -0.00605761306360364, 0.03213168680667877, 0.029418930411338806, 0.0165399182587862, -0.018528394401073456, 0.020279835909605026, 0.01052839495241642, 0.02947160415351391, -0.011483127251267433, 0.010587654076516628, -0.007130864076316357, -0.005158847663551569, 0.0007098765345290303, 0.01939753070473671, -0.025744855403900146, -0.01859423890709877, 0.0012222222285345197, -0.004342386964708567, 0.014011522755026817, 0.035950616002082825, -0.04548477381467819, -0.008783538825809956, 0.01993744820356369, -0.01675061695277691, 0.021886419504880905, 0.0067423866130411625, 0.01913415640592575, 0.027443621307611465, 0.011410699225962162, -0.034475721418857574, -0.6211423873901367, -0.006199176888912916, -0.019726749509572983, -0.022637037560343742, 0.02154403366148472, 0.003779423888772726, 0.005675720050930977, -0.023493004962801933, -0.011911110952496529, -0.002755555557087064, -0.003479835344478488, 0.011483127251267433, 0.03244773671030998, -0.009830452501773834, 0.0005851851892657578, -0.016184361651539803, 0.0050897118635475636, -0.017435390502214432, 0.005402469076216221, 0.008908641524612904, -0.024441152811050415, 0.021530864760279655, -0.01250370405614376, -0.03982222080230713, -0.023809053003787994, 0.01935802400112152, -0.00487242778763175, 0.009435391053557396, 0.015539094805717468, 0.02970864251255989, -0.013985184952616692, -0.027364609763026237, -0.005833745002746582, 0.007367901038378477, 0.02405925840139389, 0.02939259260892868, -0.005478189326822758, 0.014999177306890488, 0.008579423651099205, 0.031973663717508316, -0.007828806526958942, -0.0023818931076675653, 0.0019423868507146835, 0.005172016564756632, 0.008460905402898788, -0.024836214259266853, 0.009158847853541374, 0.008342387154698372, -0.008586008101701736, -0.026153085753321648, 0.01997695490717888, -0.01644773595035076, 0.001557201612740755, -0.018923457711935043, 0.0119835389778018, 0.006610699463635683, 0.013998353853821754, -0.015960494056344032, 0.0037102880887687206, -0.02639012411236763, 0.008974486030638218, -0.0029432098381221294, -0.023506172001361847, -0.004533333238214254, -0.022241976112127304, 0.023493004962801933, -0.01617119275033474, -0.013998353853821754, 0.013089711777865887, -0.038241975009441376, 0.008184362202882767, 0.021833745762705803, -0.01639506220817566, -0.006992592476308346, 0.014920164830982685, 0.027127571403980255, -0.001211522612720728, 0.024888888001441956, -0.018436213955283165, 0.013096296228468418, 0.015381069853901863, 0.002842798363417387, -0.010376954451203346, -0.013155555352568626, 0.04108642041683197, 0.013478189706802368, -0.0028641975950449705, -0.023005761206150055, 0.011674074456095695, 0.02907654270529747, -0.000434979418059811, 0.015736624598503113, -0.0024757201317697763, -0.03776790201663971, -0.011608230881392956, 0.02303209900856018, -0.001906172838062048, 0.0030139917507767677, -0.015394238755106926, -0.013412346132099628, -0.032632097601890564, -0.015104526653885841, 0.003262551501393318, 0.010403292253613472, -0.005316872615367174, 0.01032427977770567, 0.03323785960674286, 0.029893003404140472, 0.00880329217761755, -0.029287243261933327, -0.016421400010585785, -0.015828806906938553, 0.001095473300665617, 0.010225513949990273, 0.004516872577369213, -0.014261728152632713, 0.0008419753285124898, -0.015407407656311989, 0.0068279835395514965, -0.005237860139459372, 0.0284971185028553, 0.010284774005413055, 0.009626337327063084, -0.0077761318534612656, 0.012852675281465054, -0.007736625615507364, 0.006146502215415239, -0.02804938331246376, -0.02361152321100235, -0.004717695526778698, -0.014656790532171726, -0.0030041153077036142, 0.019437037408351898, -0.02405925840139389, -0.009145678952336311, -0.04293004050850868, -0.014814814552664757, -0.003720164531841874, 0.02754897065460682, -0.016460904851555824, -0.00985679030418396, -0.01212181057780981, 0.004875720012933016, -0.020174484699964523, -0.025191769003868103, -0.020503703504800797, -0.03998024761676788, 0.00456954725086689, -0.015262551605701447, 0.008717695251107216, -0.007986831478774548, -0.007209876552224159, -0.014169547706842422, 0.02325596660375595, 0.014288065955042839, -0.007631275802850723, -0.011812346056103706, 0.0057744854129850864, 0.01158189307898283, -0.019832098856568336, -0.004171193577349186, 0.022097120061516762, 5.401234739110805e-05, -0.009079835377633572, -0.011588477529585361, -0.01688230410218239, -0.015117695555090904, 0.021346502006053925, -0.003762962995097041, -0.03705678880214691, 0.005929218139499426, 0.008026337251067162, -0.0176065843552351, 0.009567078202962875, -0.0034995884634554386, 0.020556379109621048, -0.0031703703571110964, -0.00958683155477047, -0.014380247332155704, -0.009125925600528717, -0.013096296228468418, 0.018515225499868393, 0.01600000075995922, -0.016855966299772263, -0.005336625501513481, -0.0028625514823943377, 0.01814650185406208, -0.014116872102022171, -0.02124115265905857, -0.006037860177457333, 0.025139095261693, 0.014709465205669403, -0.02109629660844803, -0.021715225651860237, -0.01639506220817566, 0.03668806701898575, -0.0013432098785415292, 0.010725925676524639, 0.017277365550398827, 0.010238682851195335, 0.014498765580356121, -0.0012164609506726265, 0.00334320985712111, -0.048908643424510956, -0.005886419676244259, -0.0164345670491457, 0.019502880051732063, 0.009646090678870678, 0.010370370000600815, -0.011239506304264069, 0.011733333580195904, -0.02079341560602188, -0.018962962552905083, -0.002238683169707656, 0.028681481257081032, 0.044378601014614105, 0.030498765408992767, -0.018106995150446892, -0.009382716380059719, 0.0007798353908583522, -0.007361317053437233, 0.0011160493595525622, 0.020464196801185608, -0.009257612749934196, -0.011627983301877975, 0.003627983620390296, 0.022650206461548805, -0.008684773929417133, -0.043351441621780396, -0.03168395161628723, -0.001830452703870833, 0.007855144329369068, 0.00529711926355958, 0.01530205737799406, 0.004339094739407301, 0.025191769003868103, 0.03874238580465317, -0.023413991555571556, 0.03186831250786781, -0.014235391281545162, -0.015117695555090904, 0.030841153115034103, -0.005777777638286352, -0.006241975352168083, 0.02687736600637436, 0.019884774461388588, 0.033264197409152985, 0.007960493676364422, -0.008961317129433155, 0.009764608927071095, 0.009461728855967522, 0.0063440329395234585, 0.002632098738104105, 0.006795061752200127, 0.0018534979317337275, -0.036134980618953705, 0.01931851916015148, 0.01635555550456047, 0.028786830604076385, -0.00626172823831439, 0.01523621380329132, -0.019068311899900436, 0.019516048952937126, 0.0036806585267186165, 0.009817283600568771, -0.013629629276692867, 0.005869959015399218, -0.01527572050690651, -0.005583539139479399, -0.011897942051291466, -0.02133333310484886, -0.030182715505361557, -0.027074897661805153, 0.004302880726754665, 0.022281480953097343, 0.007124279625713825, 0.012437860481441021, 0.0165399182587862, 0.008480658754706383, 0.0025135802570730448, 0.0014913580380380154, -0.04564279690384865, 0.006340740714222193, 0.015051851980388165, -0.007117695640772581, -0.023374484851956367, -0.012312756851315498, 0.01006090547889471, -0.005178601015359163, 0.006265020463615656, -0.007920987904071808, 0.011298765428364277, -0.020016461610794067, -0.003083127550780773, 0.005672427825629711, -0.0008814815082587302, 0.031657613813877106, -0.012760493904352188, 0.012740740552544594, -0.009290535002946854, -0.008474074304103851, 0.0019292180659249425, -0.002997530857101083, -0.0042469133622944355, 0.041507817804813385, 0.017093004658818245, 0.009764608927071095, -0.014195884577929974, -0.0036707818508148193, -0.007216461002826691, -0.0037728394381701946, -0.019832098856568336, 0.006189300213009119, -0.02639012411236763, 0.03171028941869736, -0.022781893610954285, 0.04440493881702423, 0.014801645651459694, 0.022320987656712532, 0.0019078189507126808, -0.012707819230854511, -0.012358848005533218, -0.01952921785414219, 0.03318518400192261, 0.04422057792544365, 0.016737448051571846, -0.0018946501659229398, 0.006939917802810669, -0.018844444304704666, -0.02280822955071926, -0.015973662957549095, -0.0038979423698037863, 0.015104526653885841, 0.002658436307683587, -0.01590781845152378, 0.007203292101621628, 0.0011646091006696224, 0.012088889256119728, -0.0004497942281886935, 0.01077201683074236, -0.045721810311079025, -0.053201645612716675, -0.006390123628079891, -0.030446089804172516, 0.03571357950568199, 0.012747325003147125, 0.04037530720233917, 0.03513415530323982, -0.009415637701749802, 0.014604114927351475, 0.021925926208496094, 0.0006522633484564722, 0.020898764953017235, -0.028470782563090324, 0.00023703703482169658, 0.0055341562256217, 0.012200823053717613, 0.031209876760840416, -0.010080658830702305, 0.024783538654446602, 0.00913909450173378, 0.021873250603675842, 0.02818107046186924, -0.016237037256360054, 0.031473249197006226, 0.013135802932083607, 0.005547325126826763, -0.007848559878766537, 0.0023802469950169325, -0.004790123552083969, 0.0055341562256217, -0.0022288064938038588, -0.005570370238274336, -0.016158023849129677, 0.02728559635579586, -0.008072428405284882, -0.02876049466431141, -0.02499423921108246, 0.0262057613581419, -0.0008962962892837822, -0.015354732051491737, 0.011259259656071663, -0.00965925958007574, -0.0206617284566164, 0.0031061728950589895, -0.00873744860291481, 0.006156378425657749, -0.008322633802890778, 0.014130041003227234, -0.035371191799640656, 0.003208230482414365, 0.02635061740875244, -0.034212347120046616, -0.01764609105885029, 0.0243753083050251, -0.015262551605701447, -0.016987653449177742, -0.024362139403820038, 0.05370205640792847, 0.020187653601169586, -0.002641975414007902, 0.024520164355635643, 0.0019440329633653164, 0.005224691238254309, -0.00665349792689085, -0.0353185199201107, -0.012246913276612759, -0.033843621611595154, 0.0064691356383264065, 0.005326748825609684, -0.006037860177457333, 0.009086419828236103, 0.002661728300154209, 0.019279012456536293, -0.023664196953177452, -0.005185185000300407, -0.01854156330227852, -0.019924279302358627, -0.006906996015459299, 0.05820576101541519, 0.01657942309975624, 0.005685596726834774, -3.881172960973345e-05, -0.013734979555010796, -0.002678189193829894, 0.005616460926830769, -0.0027473249938338995, 0.000517283973749727, -0.025968724861741066, 0.000635390926618129, 0.014683127403259277, 0.019608231261372566, 0.0027094651013612747, -0.016329217702150345, 0.028707819059491158, -0.023137448355555534, 0.026534980162978172, 0.02862880751490593, -0.006564609240740538, 0.021623045206069946, 0.007499588653445244, 0.02204444445669651, 0.010436213575303555, -0.0434567891061306, -0.0003450617368798703, -0.025823868811130524, -0.010423045605421066, -0.007789300289005041, -0.0007967078126966953, 0.027232922613620758, 0.016408231109380722, -0.03381728380918503, 0.017672428861260414, 0.0030781892128288746, 0.003595061833038926, 0.025336625054478645, 0.008092180825769901, -0.007255967240780592, -0.02679835446178913, 0.036213990300893784, -0.01788312755525112, 0.0006102880579419434, -0.03271111100912094, 0.012892181053757668, 0.023861728608608246, 0.021583538502454758, -0.005504526663571596, -0.019476544111967087, -0.040164608508348465, -0.03136790171265602, -0.00387489702552557, 0.014209053479135036, 0.00967901200056076, 0.011035391129553318, 0.027127571403980255, 4.681069913203828e-05, -0.04461563751101494, -0.013985184952616692, 0.01126584317535162, -0.012582715600728989, -0.0008732510032132268, 0.010587654076516628, 0.04063868150115013, 0.01530205737799406, 0.017461728304624557, 0.0020164609886705875, 0.04324609041213989, -0.028865844011306763, -0.016816461458802223, 0.017277365550398827, -0.012846090830862522, -0.018212346360087395, -0.019015638157725334, -0.00945514440536499, 0.00353909470140934, -0.00707818940281868, -0.0012370370095595717, 0.007065020501613617, 0.026851028203964233, 0.026824692264199257, 0.009619752876460552, 0.01370864175260067, -0.02463868260383606, -0.02133333310484886, -0.004158024676144123, 0.029998354613780975, 0.009909464977681637, 0.027180247008800507, -0.011838682927191257, 0.006380246952176094, 0.028286419808864594, 0.007920987904071808, -0.014814814552664757, -0.017053497955203056, 0.023374484851956367, -0.01093004085123539, 0.025125926360487938, 0.014419753104448318, 0.013590123504400253, -0.04353580251336098, 0.003173662582412362, -0.04237695410847664, 0.007084773853421211, -0.010739094577729702, -0.013919341377913952, 0.0206617284566164, -0.008125103078782558, 0.00021954732073936611, -0.0018831276101991534, -0.01549958810210228, -0.025283951312303543, -0.024138271808624268, 0.02629794180393219, 0.0017942386912181973, -0.024335801601409912, -0.007387654390186071, -0.02200493775308132, -0.0069135804660618305, 0.0028082304634153843, 0.028260082006454468, 0.000846090551931411, 0.008092180825769901, -0.02141234651207924, -0.012009876780211926, 0.005474897101521492, -0.00186172837857157, 0.017264196649193764, 0.008506995625793934, 0.03545020520687103, -0.012042798101902008, -0.0032115227077156305, -0.021662551909685135, -0.028865844011306763, -0.0001373456761939451, -0.004645267501473427, -0.0019325102912262082, 0.013056790456175804, 0.0016008230159059167, -0.013313580304384232, -0.0025794238317757845, 0.01249711960554123, 0.0157761313021183, -0.036451030522584915, -0.0012831275817006826, 0.00045390945160761476, 0.0056230453774333, -0.01626337505877018, 0.006748971063643694, -0.016605760902166367, -0.00261563784442842, 0.0037925925571471453, -0.003855144139379263, -0.013998353853821754, 0.02836543135344982, -0.009698765352368355, 0.017053497955203056, -0.004915226250886917, 0.014933333732187748, -0.02804938331246376, 0.013853497803211212, -0.007697119377553463, 0.005155555438250303, -0.03234238550066948, -0.010363785549998283, -0.008862551301717758, 0.009323456324636936, -0.020279835909605026, -0.015539094805717468, 0.03903209790587425, -0.01077860128134489, 0.021069958806037903, 0.00635061739012599, 0.003746502101421356, 0.029919341206550598, 0.0030666666571050882, 0.002360493876039982, -0.000718518509529531, 0.008046090602874756, -0.0020806584507226944, -0.012069135904312134, -0.01245761290192604, 0.029155556112527847, -0.009573662653565407, -0.007229629438370466, 0.020727571099996567, 0.008362139575183392, 0.007762962952256203, 0.0033218106254935265, 0.008974486030638218, -0.007558847777545452, -0.026192592456936836, -0.010014815255999565, 0.021583538502454758, -0.017330041155219078, -0.015183539129793644, -0.009488065727055073, 0.0003160493797622621, 0.021899588406085968, -0.012108641676604748, -0.013063374906778336, 0.00873744860291481, 0.05551934242248535, -0.04113909602165222, 0.0039736623875796795, -0.02741728350520134, 0.00728230457752943, -0.021175308153033257, 0.010482304729521275, 0.0068082306534051895, -0.009646090678870678, 0.0035028806887567043, -0.0061530862003564835, -0.024849383160471916, -0.00931687280535698, -0.003855144139379263, 0.012141563929617405, 0.002997530857101083, -0.017843620851635933, 0.004546502139419317, -0.005570370238274336, 0.018646912649273872, -0.0048790122382342815, -0.026271605864167213, 0.01917366310954094, -0.011562139727175236, 0.023545678704977036, 0.013300411403179169, -0.009027160704135895, -0.0070386831648647785, -0.013695472851395607, 0.014577778056263924, 0.01520987693220377, -0.010949794203042984, -0.02114897035062313, -0.018646912649273872, -0.03105185180902481, -0.001784362131729722, -0.014933333732187748, -0.023953909054398537, 0.012543209828436375, -0.020108642056584358, 0.01594732515513897, -0.0010255144443362951, 0.011805761605501175, -0.014709465205669403, 0.01831769570708275, 0.024967901408672333, 0.008296296000480652, -0.02687736600637436, -0.013537448830902576, -0.005813991650938988, 0.003509464906528592, -0.010120164602994919, -0.02374321036040783, -0.001784362131729722, 0.03452839329838753, 0.03571357950568199, 0.002590946387499571, -0.030630452558398247, 0.0085991770029068, -0.01971358060836792, -0.03099917620420456, 0.023176955059170723, 0.011957202106714249, 0.011944033205509186, 0.03840000182390213, 0.0006102880579419434, 0.030946502462029457, 0.0011399176437407732, 0.007032098714262247, -0.02271604910492897, -0.002587654395028949, -0.001800823025405407, 0.04969876632094383, 0.002617283957079053, 0.0018979423912242055, -0.025692181661725044, -0.03916378691792488, 0.011746502481400967, 0.006854320876300335, 0.0015020576538518071, 0.012036213651299477, -0.01086419727653265, 0.013386008329689503, -0.039769548922777176, 0.008987654000520706, -0.00701234582811594, -0.008493826724588871, -0.021491358056664467, 0.008026337251067162, -0.01418271567672491, -0.01859423890709877, 0.02262386865913868, -0.009402468800544739, -5.252057599136606e-05, -0.007525925990194082, 0.007802469190210104, -0.004197530914098024, -0.008388477377593517, -0.02486255206167698, 0.023308642208576202, -0.006880658213049173, -0.013274074532091618, -0.015262551605701447, -0.00704526761546731, 0.053781069815158844, -0.010311110876500607, 0.02894485555589199, 0.00490534957498312, 0.00026975307264365256, -0.004684773739427328, 0.011094650253653526, 0.03289547190070152, 0.02074074000120163, -0.012516872026026249, -0.006212345790117979, 0.026890534907579422, -0.018159670755267143, 0.01223374530673027, -0.017935803160071373, -0.013721810653805733, -0.03386995941400528, 0.031973663717508316, -0.023585185408592224, -0.005013991612941027, 0.000997530878521502, 0.009942387230694294, 0.019028807058930397, -0.01594732515513897, -0.02118847705423832, -0.0024921810254454613, 0.005135802552103996, 0.03202633559703827, -0.01317530870437622, -0.009567078202962875, 0.010350617580115795, 0.0076839504763484, 0.028523456305265427, -0.024717696011066437, -0.022149793803691864, 0.1947917640209198, -0.010482304729521275, -0.006166255101561546, 0.031104527413845062, -0.011469959281384945, 0.01962139829993248, -0.013148970901966095, -0.009264197200536728, -0.02109629660844803, 0.019871605560183525, -0.011529218405485153, 0.0076839504763484, -0.024928394705057144, 0.01052839495241642, 0.012227160856127739, -0.014920164830982685, -0.0070584360510110855, -0.044115226715803146, -0.023334980010986328, -0.006548148114234209, -0.010284774005413055, 0.036003291606903076, -0.014999177306890488, -0.027338271960616112, 0.007664197590202093, -0.005850205663591623, -0.0015489711659029126, 0.009093004278838634, 0.031078189611434937, 0.018883951008319855, -0.020187653601169586, -0.008111934177577496, -0.013669135980308056, -0.004276543390005827, -0.014683127403259277, -0.00697942404076457, 0.02419094741344452, -0.0011366255348548293, 0.009053497575223446, 0.00846748985350132, 0.011331687681376934, -0.014235391281545162, -0.032368723303079605, -0.0026041152887046337, 0.028786830604076385, 0.017817283049225807, -0.003674074076116085, -0.018791768699884415, -0.0009185185190290213, 0.03687242791056633, -0.012562963180243969, -0.0031111110001802444, 0.01626337505877018, -0.0019588477443903685, 0.005659259390085936, -0.0005942386924289167, -0.005346502177417278, 0.0019736625254154205, 0.022689711302518845, 0.031920988112688065, 0.0012658436316996813, 0.04340411350131035, -0.007789300289005041, 0.011621398851275444, 0.00801975280046463, 0.011529218405485153, -0.018528394401073456, 0.005468312650918961, -0.007255967240780592, 0.004539917688816786, 0.006880658213049173, -0.01881810650229454, 0.008553086780011654, 0.03589794412255287, -0.023018930107355118, -0.001279835356399417, 0.028707819059491158, 0.014683127403259277, -0.019015638157725334, 0.027206584811210632, -0.0198979414999485, -0.01079835370182991, -0.01590781845152378, 0.017804116010665894, -0.023598354309797287, -0.026008229702711105, 0.005251028575003147, -0.032316047698259354, 0.007137448526918888, -0.007539094425737858, -0.014946501702070236, -0.006222222000360489, -0.02258436195552349, -0.023413991555571556, 0.023361315950751305, 0.0221366249024868, -0.003720164531841874, 0.025613168254494667, -0.0008259259047918022, -0.012740740552544594, -0.014920164830982685, 0.06752921640872955, 0.027575308457016945, 0.02316378615796566, 0.009889711625874043, -0.005794238764792681, -0.005484773777425289, 0.005372839514166117, -0.024427983909845352, -0.026548149064183235, -0.015986831858754158, -0.028549794107675552, 0.004000000189989805, -0.0018041152507066727, -0.00035514403134584427, 0.005869959015399218, -0.01523621380329132, -0.017264196649193764, 0.010436213575303555, -0.005537448450922966, -0.000801646092440933, -0.03597695380449295, 0.0165399182587862, -0.008724279701709747, -0.003674074076116085, 0.0056296298280358315, -0.05567736551165581, 0.036582715809345245, 0.01751440390944481, -0.0027901234570890665, 0.02361152321100235, -0.026376955211162567, 0.005280658602714539, -0.0243753083050251, -0.021623045206069946, -0.0028065843507647514, -0.019542386755347252, -0.028549794107675552, -0.029050204902887344, 0.0024609053507447243, -0.015828806906938553, 0.00622880645096302, -0.0022008230444043875, -0.003937448374927044, 0.025784362107515335, -0.007598354015499353, 0.0050469134002923965, -0.007288889028131962, 0.003769547212868929, -0.029418930411338806, -0.006426337640732527, -0.010561317205429077, -0.005527572240680456, -0.03455473110079765, -0.0015555555000901222, -0.025349793955683708, 0.01607901230454445, -0.010363785549998283, 0.02970864251255989, -0.013695472851395607, -0.008526748977601528, -0.004694650415331125, 0.025613168254494667, 0.013254321180284023, -0.00151440326590091, -0.021978599950671196, -0.16360822319984436, 0.004855967126786709, 0.005415637977421284, -0.0351078175008297, 0.001797530916519463, -0.010574485175311565, 0.02321646176278591, 0.002795061795040965, 0.0006934156408533454, -0.004546502139419317, 0.001239506178535521, -0.013208230026066303, -0.023137448355555534, -0.0004121399251744151, -0.014577778056263924, -0.010041152127087116, 0.032632097601890564, 0.014432922005653381, 0.0396905355155468, 0.03879506140947342, 0.04055967181921005, -0.02773333340883255, 0.029945679008960724, -0.005580246914178133, 0.0001199588441522792, 0.0001318930007982999, 0.01111440360546112, 0.015183539129793644, -0.011746502481400967, -0.01773827150464058, 0.0023983540013432503, 0.029893003404140472, 0.020411523059010506, -0.0103308642283082, -0.006215638015419245, 0.02862880751490593, 0.003595061833038926, -0.02517860010266304, 0.0022172839380800724, 0.01827818900346756, 0.02549465000629425, 0.02312427945435047, -0.021662551909685135, 0.0020148148760199547, 0.007433745078742504, 0.03418600931763649, 0.03023539111018181, -0.034027982503175735, -0.014432922005653381, -0.01859423890709877, 0.02746995911002159, -0.023190123960375786, 0.007295473478734493, 0.017000822350382805, 0.011384362354874611, -0.004131687339395285, 0.001679012319073081, 0.00972510315477848, -0.024612344801425934, -0.005698765628039837, 0.0040790122002363205, -0.022821398451924324, -0.021201645955443382, 0.0024411522317677736, -0.017804116010665894, -0.010034567676484585, -0.010587654076516628, 0.013412346132099628, -0.012615637853741646, 0.023400822654366493, -0.017303703352808952, -0.005218106787651777, 0.0008576131658628583, -0.00604773685336113, 0.016368724405765533, 0.008526748977601528, -0.013392592780292034, 0.032237038016319275, -0.003450205782428384, -0.03950617462396622, 0.0072493827901780605, 0.01409053523093462, -0.01006090547889471, -0.01212181057780981, 0.004098765552043915, -0.012286419980227947, -0.009040329605340958, 0.00947489682585001, -0.013879835605621338, -0.012181069701910019, 0.05043621361255646, -0.060997530817985535, -0.021873250603675842, -0.007275720126926899, 0.00604773685336113, 0.020635390654206276, 0.005563785787671804, -0.0014452674658969045, 0.01635555550456047, -0.021293826401233673, 0.015697119757533073, -0.0065119341015815735, -0.021649383008480072, -0.0004041152133140713, 0.019871605560183525, 0.005280658602714539, 0.00907325092703104, 0.005616460926830769, 0.047196708619594574, 0.018027983605861664, -0.017488066107034683, -0.009962139651179314, 0.0024839506950229406, 0.02365102805197239, 0.003280658507719636, 0.024704527109861374, -0.015381069853901863, 0.002161316806450486, 0.013761316426098347, -0.011976954527199268, 0.04830288141965866, -0.007051852066069841, 0.011120988056063652, -0.019568724557757378, 0.00133004121016711, 0.014116872102022171, -0.10861563682556152, -0.03392263501882553, 0.01100246887654066, 0.03560823202133179, -0.01270123478025198, 0.01693497970700264, -0.00483950600028038, 0.029102880507707596, 0.02217613160610199, 0.029629629105329514, 0.0022502057254314423, 0.001845267484895885, 0.003430452663451433, 0.0017777777975425124, 0.0010609054006636143, 0.004115226212888956, -0.01891028881072998, 0.0017448560101911426, -0.00979094672948122, 0.023993415758013725, 0.018660081550478935, 0.0005765432142652571, -0.029813991859555244, -0.009441975504159927, -0.0011958847753703594, 0.03234238550066948, -0.014274897053837776, 0.02100411430001259, 0.016052674502134323, -0.013076542876660824, -0.015525925904512405, -0.010080658830702305, 0.0060082306154072285, -0.02163621410727501, 0.01607901230454445, -0.00016574074106756598, 0.004852674901485443, -0.01840987615287304, 0.01231934130191803, -0.02607407420873642, -0.005125925876200199, 0.008902058005332947, 0.021899588406085968, -0.008230452425777912, 0.008296296000480652, -0.03529218211770058, -0.029893003404140472, 0.005955555476248264, 0.005929218139499426, -0.03634567931294441, -0.03131522610783577, -0.020174484699964523, -0.022057613357901573, 0.005201646126806736, 0.016197530552744865, -0.005053497850894928, 0.0049843620508909225, -0.002400000113993883, -0.01855473220348358, -0.005945678800344467, -0.017093004658818245, -0.009553909301757812, -0.0025613168254494667, 0.016645267605781555, 0.008770369924604893, 0.014814814552664757, -0.03534485772252083, 0.009191769175231457, 0.023400822654366493, -0.016289712861180305, -0.012872427701950073, 0.029866667464375496, -0.01975308731198311, 0.01482798345386982, -0.0010320987785235047, 0.00704526761546731, 0.005428806412965059, 0.0202534981071949, 0.008322633802890778, 0.0047539095394313335, -0.012846090830862522, -0.011390946805477142, -0.004803291987627745, -0.017106173560023308, 0.00665349792689085, 0.014011522755026817, 0.013748148456215858, -0.0025152263697236776, 0.01370864175260067, -0.023400822654366493, 0.0017497942317277193, 0.011028806678950787, 0.0180148147046566, -0.021346502006053925, -0.016513580456376076, 0.002948148176074028, 0.027496296912431717, -0.007032098714262247, 0.00927736610174179, 0.03010370396077633, -0.04216625541448593, -0.0045860083773732185, -0.03221070021390915, -0.011483127251267433, -0.007940740324556828, -0.009481481276452541, -0.0004047325055580586, 0.006380246952176094, 0.019186832010746002, -0.017856789752840996, 0.018844444304704666, -0.02342716045677662, -0.032500412315130234, -0.0085991770029068, 0.005764609202742577, 0.0007740740547887981, 0.013537448830902576, -0.027232922613620758, 0.017079835757613182, -0.014077366329729557, 0.00880329217761755, 0.030209053307771683, 0.0038485596887767315, -0.0018271604785695672, 0.025152264162898064, 0.007183539215475321, -0.022413168102502823, 0.008111934177577496, 0.0035621398128569126, 0.008730864152312279, -0.029418930411338806, -0.027259258553385735, 0.005116049200296402, -0.008730864152312279, 0.0015835390659049153, -0.0014880658127367496, 0.022413168102502823, -0.0029514404013752937, -0.014353909529745579, 0.026772016659379005, 0.013280658051371574, -0.0012921810848638415, -0.018304526805877686, -0.027074897661805153, 0.006755555514246225, -0.029919341206550598, -0.005787654314190149, -0.004776954650878906, 0.016684774309396744, 0.017896296456456184, -0.02791769616305828, 0.016065843403339386, 0.02562633715569973, 0.017935803160071373, -0.014880658127367496, -0.017303703352808952, 0.003828806569799781, -0.025389300659298897, 0.009797531180083752, -0.007631275802850723, -0.021978599950671196, 0.001208230503834784, 0.02687736600637436, -0.014169547706842422, 0.022018106654286385, 0.008665020577609539, -0.005086419638246298, -0.0539390929043293, -0.019489711150527, -0.004358847625553608, 0.017804116010665894, -0.0037399176508188248, -0.022255143150687218, -0.01523621380329132, 0.02338765375316143, -0.011035391129553318, 0.03105185180902481, -0.017501235008239746, -0.03879506140947342, 0.004767077974975109, 0.004714403301477432, 0.01863374561071396, 0.038821399211883545, -0.007071604952216148, -0.03484444320201874, 0.017975308001041412, 0.040111932903528214, -0.008559671230614185, -0.0037596707697957754, -0.01250370405614376, 0.011568724177777767, 0.0009670782019384205, 0.0033975308761000633, 0.01850205846130848, -0.00960658397525549, 0.017264196649193764, 0.0009275720221921802, 0.02150452695786953, -0.008375308476388454, 0.006064197514206171, -0.01900246925652027, 0.021662551909685135, 0.003749794326722622, 0.006834567990154028, -0.010581069625914097, 0.005145679228007793, -0.03545020520687103, 0.0027012345381081104, -0.003578600939363241, -0.0032905349507927895, -0.01357695460319519, 0.03919012472033501, -0.008230452425777912, 0.006037860177457333, 0.03695144131779671, 0.005125925876200199, -0.03126255050301552, 0.0023835389874875546, 0.010008230805397034, -0.003970370162278414, -0.00853333342820406, 0.005764609202742577, 0.0142222223803401, 0.00013765432231593877, 0.02607407420873642, -0.009553909301757812, 0.03905843570828438, 0.007499588653445244, 0.018673250451683998, -0.020306173712015152, -0.006643621250987053, 0.022241976112127304, -0.012161317281425, -0.00031131686409935355, -0.03679341450333595, -0.00538600841537118, 0.0006267489516176283, -0.01783045195043087, 0.024625513702630997, 0.01576296240091324, -0.022702880203723907, 0.06942551583051682, -0.006498765200376511, -0.005201646126806736, 0.002009876538068056, -0.020846091210842133, 0.00665349792689085, 0.027627984061837196, 0.004454320762306452, -0.0066172839142382145, -0.029313581064343452, 0.036451030522584915, 0.015051851980388165, -0.0004967077984474599, -0.04395719990134239, -0.01715884730219841, 0.00677530886605382, -0.002691358095034957, 0.01549958810210228, -0.01370864175260067, -0.0008666666690260172, 0.015446913428604603, -0.015525925904512405, -0.00113415636587888, -0.027522632852196693, -0.0007316872361116111, -0.003463374450802803, 0.00037448559305630624, -0.010719341225922108, -0.007433745078742504, -0.033448558300733566, 0.023769548162817955, 0.023506172001361847, -0.01868641935288906, -0.027522632852196693, -0.018870782107114792, 0.010074074380099773, -0.004763786215335131, -0.0266139917075634, 0.010080658830702305, 0.0018962962785735726, -0.018752263858914375, 0.026324279606342316, -0.023190123960375786, -0.0554666668176651, -0.021609876304864883, 0.002391769550740719, -0.03484444320201874, 0.0016765432665124536, -0.05657283961772919], "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd": [0.019735492765903473, 0.0028509802650660276, -0.005799229256808758, -0.008016285486519337, 0.0002997721894644201, -0.006778624840080738, -0.005011016968637705, -0.011967409402132034, -0.008459025993943214, -0.015911825001239777, 0.0074997553601861, 0.01795111410319805, 0.00206947629339993, 0.012148530222475529, 0.006875893566757441, -0.011055095121264458, 0.02317008376121521, 0.016059404239058495, 0.004172493703663349, 0.01753520593047142, -0.031474821269512177, 0.012175362557172775, -0.018018195405602455, -0.031447988003492355, -0.0011345224920660257, 0.008861517533659935, 0.017790116369724274, -0.024645885452628136, 0.014919011853635311, -0.015723994001746178, 0.03439959138631821, -0.00680881179869175, -0.011517960578203201, -0.02122470922768116, -0.012034490704536438, -0.004450883250683546, -0.023518910631537437, 0.0037565857637673616, -0.01187349483370781, -0.013510292395949364, 0.021493038162589073, 0.010800184682011604, -0.012027782388031483, -0.019051257520914078, -0.014704350382089615, 0.012919971719384193, 0.01440919004380703, -0.02943553403019905, -0.012933388352394104, 0.002700046170502901, 0.03099183365702629, 0.005339718423783779, -0.03246763348579407, 0.00817728228867054, -0.005973642226308584, 0.0012938419822603464, -0.005031141918152571, 0.03917582333087921, 0.0101360734552145, -0.02943553403019905, 0.03480208292603493, -0.000924891559407115, -0.01793769747018814, -0.008633439429104328, -0.01711929775774479, -0.003555340226739645, 0.00778820738196373, -0.025866776704788208, -0.006614274345338345, -0.005413508508354425, 0.042771413922309875, 0.008492567576467991, -0.010679436847567558, -0.002227118704468012, 0.005477236118167639, -0.00944512989372015, 0.020392894744873047, 0.002482029842212796, -0.01834018900990486, 0.009961660951375961, -0.008351694792509079, -0.0083785280585289, -0.004585047252476215, 0.02201627567410469, 0.020500225946307182, -0.0018665535608306527, 0.021077129989862442, 0.01639481447637081, 0.015321503393352032, -0.016126485541462898, -0.004001434892416, -0.00569189852103591, -0.0032434093300253153, 0.02279442548751831, -0.004155722912400961, 0.025397203862667084, -0.018742680549621582, 0.02028556354343891, -0.023277414962649345, -0.01950741373002529, -0.024686135351657867, 0.02490079775452614, -0.008532816544175148, 0.00048005476128309965, -0.014878762885928154, -0.00809007603675127, 0.02632293291389942, 0.004850020632147789, 0.037700023502111435, -0.004923810716718435, -0.03329944983124733, 0.06450594216585159, 0.030830835923552513, -0.02398848347365856, 0.013416377827525139, -0.04537418857216835, 0.01673022285103798, -0.02123812586069107, -0.007861997000873089, -0.027342578396201134, 0.03219930827617645, -0.009136552922427654, 0.011960701085627079, -0.018823178485035896, 0.027932899072766304, 0.0027268787380307913, -0.011497835628688335, -0.02782556787133217, -0.0241628959774971, -0.0060474323108792305, 0.02728891186416149, 0.008137033320963383, -0.004836604464799166, 0.0006054140394553542, 0.019426915794610977, 0.012906556017696857, 0.013570666313171387, -0.006654523313045502, 9.653503366280347e-05, -0.01812552660703659, 0.006171533837914467, -0.00030648038955405354, 0.007580253295600414, 0.013953032903373241, -0.004638712853193283, 0.018152359873056412, -0.008492567576467991, -0.019641578197479248, -0.011766163632273674, -0.021855279803276062, -0.009981784969568253, -0.008438901975750923, 0.0058528948575258255, -0.009800664149224758, -0.004574984777718782, -0.004806417506188154, 0.00839194469153881, -0.0059199766255915165, -0.008546233177185059, -0.01128317415714264, 0.009505503810942173, 0.014368941076099873, -0.006352655123919249, 0.010988013818860054, -0.009579293429851532, 0.03445325791835785, 0.01927933469414711, 0.02593385800719261, -0.019735492765903473, 0.014919011853635311, 0.007191178388893604, 0.006916143000125885, -0.002654765732586384, 2.312490869371686e-05, 0.0033155223354697227, -0.020768553018569946, 0.009203635156154633, -0.008271196857094765, -0.02787923254072666, -0.008633439429104328, 0.004014851059764624, -0.005547672044485807, 0.007768082898110151, 0.05291419476270676, -0.05476565286517143, -0.014114029705524445, 0.019628161564469337, -0.012296110391616821, 0.008794435299932957, 0.016797306016087532, 0.018997590988874435, 0.0224053505808115, -0.009250592440366745, 0.012416858226060867, -0.605776309967041, -0.009035930968821049, -0.012021075002849102, -0.014288442209362984, 0.0216540340334177, 0.004299948923289776, 0.00584618654102087, -0.012007658369839191, 0.011833244934678078, 0.006476756650954485, 0.002560851164162159, 0.0029952062759548426, 0.013195008039474487, -0.0050143711268901825, 0.02219068817794323, -0.014315275475382805, 0.0027872524224221706, -0.019037840887904167, 0.0031729734037071466, -0.00045951094944030046, -0.029945354908704758, 0.02490079775452614, -0.03056250885128975, -0.01870243065059185, -0.015871575102210045, 0.0153751689940691, 0.01968182623386383, -0.018823178485035896, 0.004853374790400267, 0.03448009118437767, -0.022687094286084175, -0.015361752361059189, -0.02262001298367977, 0.019775740802288055, 0.03804884850978851, 0.020594140514731407, -0.008532816544175148, 0.017374210059642792, -0.009740290232002735, 0.04913077503442764, -0.0005999636487103999, -0.0013206746662035584, 0.02588019333779812, 0.00540680019184947, -0.004410634282976389, -0.021855279803276062, 0.010592230595648289, 0.028469553217291832, 0.0038706250488758087, -0.025034960359334946, 0.02943553403019905, 0.00486679095774889, 0.004383801482617855, 0.006349300965666771, 0.03531190752983093, 0.006537130102515221, 0.019386665895581245, -0.023237166926264763, 0.015066592022776604, -0.026591261848807335, 0.01671680621802807, 0.016113070771098137, 0.008103492669761181, 0.002445134799927473, -0.02744990959763527, 0.025061793625354767, -0.029059873893857002, -0.011853369884192944, 0.010290361940860748, -0.024404391646385193, 0.01749495603144169, 0.016985135152935982, -0.005088161211460829, 0.007432673592120409, 0.013094385154545307, 0.01832677237689495, 0.00579587509855628, 0.0224053505808115, 8.830701699480414e-05, 0.008586482144892216, 0.008170573972165585, -0.005316239781677723, -0.00992141105234623, -0.004524673335254192, 0.0381561778485775, 0.005524193402379751, 0.010471482761204243, -0.007083847653120756, 0.005886435974389315, 0.02531670592725277, -0.0023461889941245317, -0.0005379128851927817, -0.0068188742734491825, -0.044515542685985565, -0.00865356344729662, 0.002455197274684906, 0.012195487506687641, -0.0005609723157249391, -0.017011966556310654, -0.024605637416243553, -0.008130325004458427, -0.028174392879009247, 0.029247703030705452, -0.0020392893347889185, 0.002183515578508377, 0.017602287232875824, 0.011055095121264458, 0.006989933084696531, 0.033218950033187866, -0.003038809634745121, -0.023921402171254158, -0.03659987822175026, 0.025169124826788902, 0.0178840309381485, 0.01540200226008892, -0.026779090985655785, 0.0023730217944830656, -0.009492087177932262, 0.0012250830186530948, -6.985949585214257e-05, 0.023639658465981483, 0.031018665060400963, 0.009941536001861095, 0.003273596288636327, 0.026349766179919243, -0.0014246515929698944, 0.009579293429851532, -0.03812934458255768, -0.007137513253837824, -0.0037565857637673616, -0.021291792392730713, -0.01791086420416832, 0.015871575102210045, -0.01693146862089634, 0.010585522279143333, -0.019547661766409874, 0.006329176481813192, -0.0047426894307136536, 0.022673679515719414, -0.02396165020763874, -0.02475321665406227, 0.00496741384267807, 0.008425485342741013, -0.02534353733062744, -0.023290831595659256, -0.029542863368988037, -0.021667450666427612, 0.0105117317289114, -0.006148055195808411, 0.007077139336615801, 0.00878101959824562, -0.0026815985329449177, 0.011088636703789234, 0.027771903201937675, 0.016998549923300743, -0.003813605522736907, 0.005312885623425245, -0.009404880926012993, -0.010015326552093029, -0.024619054049253464, -0.004068516660481691, 0.03654621168971062, -0.019587911665439606, 0.004839958157390356, -0.019950153306126595, -0.03246763348579407, -0.011169134639203548, 0.011866786517202854, -0.014476271346211433, -0.04226158931851387, -0.020191648975014687, 0.005084807053208351, -0.02357257530093193, 0.012249153107404709, -0.003427884541451931, 0.014543353579938412, -0.0017441291129216552, 0.013610915280878544, -0.015831325203180313, 0.015267837792634964, 0.004960705526173115, 0.010444650426506996, 0.02668517641723156, -0.018782928586006165, 0.015106841921806335, 0.008210822939872742, 0.033594612032175064, -0.016045987606048584, -0.0016560842050239444, 0.00017640441365074366, 0.003013653913512826, 0.02359940856695175, -0.018943926319479942, -0.02259317971765995, -0.014972677454352379, 0.027141332626342773, -0.0024233332369476557, -0.007922370918095112, 0.021103963255882263, 0.032628629356622696, 0.013885951600968838, -0.011638707481324673, 0.005061328411102295, -0.01834018900990486, -0.000765991338994354, -0.01363104023039341, 0.013899367302656174, 0.004417342599481344, 0.04193959757685661, -0.008921891450881958, -0.0038471464067697525, -0.016703389585018158, -0.017387626692652702, -0.013436502777040005, 0.006017245352268219, 0.04011496901512146, 0.01795111410319805, 0.0030287473928183317, 0.00628557289019227, 0.0015806170413270593, -0.0008007900323718786, 0.01949399709701538, 0.01950741373002529, 0.00886822585016489, -0.02087588422000408, -0.002149974461644888, -0.002435072558000684, -0.009082888253033161, -0.012785808183252811, -0.04387155547738075, 0.024605637416243553, 0.026631509885191917, 0.0006083488697186112, 0.02082221768796444, 0.024686135351657867, 0.041000451892614365, 0.049989424645900726, -0.01198082510381937, 0.02766457200050354, -0.007224719505757093, -0.026577845215797424, 0.037887852638959885, 0.008599897846579552, 0.0005425247945822775, 0.016824137419462204, 0.001086726668290794, 0.03128699213266373, 0.011471003293991089, -0.014436022378504276, 0.0020996632520109415, 0.00569189852103591, 0.03077717125415802, -0.011732622049748898, 0.011826537549495697, 0.003709628479555249, -0.01440919004380703, 0.011410629376769066, -0.0039142281748354435, 0.02744990959763527, 0.001901771523989737, 0.00667129410430789, -0.00029495067428797483, 0.0251020435243845, 0.0028224706184118986, 0.019561078399419785, -0.028684215620160103, 0.002755388617515564, -0.016488729044795036, -0.027114499360322952, 0.020191648975014687, -0.020996632054448128, -0.05919305980205536, -0.015133674256503582, 0.004940581042319536, 0.03284329175949097, 0.009062763303518295, 0.031045498326420784, 0.008002869784832, 0.021345457062125206, -0.003270242130383849, 0.0005282698548398912, -0.036895040422677994, 0.017025383189320564, 0.01130329817533493, -0.022915173321962357, -0.01634114794433117, -0.005524193402379751, -0.011477711610496044, 0.009163386188447475, 0.004450883250683546, -0.021976027637720108, 0.006433153059333563, 0.0058428323827683926, 0.001874938840046525, -0.015106841921806335, -0.020889300853013992, 0.02956969663500786, 0.014570186845958233, 0.005906560458242893, -0.008472442626953125, -0.010431233793497086, 0.006567317061126232, -0.013657872565090656, 0.017065633088350296, 0.050365082919597626, -0.009009097702801228, -0.006064202636480331, -0.02376040443778038, 0.001784378313459456, -0.020017236471176147, 0.018568266183137894, -0.02279442548751831, 0.011209383606910706, -0.01946716383099556, 0.040785789489746094, -0.025437451899051666, 0.020325813442468643, -0.0034983204677700996, 0.02881838008761406, 0.004263054113835096, -0.011517960578203201, -0.0042462837882339954, -0.014275026507675648, 0.03896116092801094, 0.047654975205659866, 0.03394343703985214, -0.016408231109380722, 0.011806412599980831, -0.02162720076739788, 0.0024904152378439903, -0.010290361940860748, -0.008620022796094418, 0.02451172284781933, -0.015536165796220303, 0.004793000873178244, 0.011712498031556606, 0.0004620265099219978, 0.00652035977691412, 0.00026120009715668857, 0.01887684315443039, -0.019829407334327698, -0.02432389371097088, 0.020983215421438217, 0.001493410556577146, 0.01985623873770237, -0.012343067675828934, 0.033997099846601486, 0.038102515041828156, -0.011806412599980831, 0.005232387222349644, 0.03362144157290459, -0.009874453768134117, 0.012785808183252811, -0.029274536296725273, -0.014543353579938412, -0.004397217649966478, 0.02997218817472458, 0.03343361243605614, -0.017199795693159103, 0.028496386483311653, 0.009586001746356487, 0.03128699213266373, 0.0220296923071146, -0.02844272181391716, 0.007291801273822784, 0.007835164666175842, 0.007613794412463903, -0.02142595499753952, 0.013262089341878891, -0.006459985859692097, 4.163793710176833e-05, 0.00896884873509407, -0.013496875762939453, -0.030857669189572334, 0.03617055341601372, -0.005906560458242893, -0.030723504722118378, -0.01041110884398222, 0.012624811381101608, 0.019547661766409874, -0.011424046009778976, -0.0008435547351837158, 0.004725919105112553, -0.015334920026361942, -0.004045038018375635, -0.021962611004710197, 0.00721130333840847, -0.010478191077709198, 0.019212253391742706, -0.02881838008761406, -0.006356008816510439, 0.03448009118437767, -0.01909150555729866, -0.019319584593176842, 0.014368941076099873, 0.0021482976153492928, -0.024994712322950363, -0.016260650008916855, 0.031072331592440605, 0.03442642465233803, -0.005738855805248022, 0.018541434779763222, -0.005343072582036257, -0.001067440607585013, 0.009009097702801228, -0.040544293820858, -0.013020594604313374, -0.023612825199961662, 0.0007995322812348604, 0.028898878023028374, 0.013416377827525139, 0.004219450987875462, -0.0043770931661129, 0.0012636551400646567, -0.01296022068709135, -0.0034480090253055096, -0.00711068045347929, -0.002780544338747859, 0.002394823357462883, 0.03332628309726715, 0.016515560448169708, 0.018943926319479942, 0.0028509802650660276, -0.006413028575479984, 0.00525251217186451, -0.004511257167905569, -0.01160516683012247, -0.0025424035266041756, -0.048191629350185394, -0.024229979142546654, 0.006399612408131361, 3.003617848662543e-06, -0.0020392893347889185, -0.02412264794111252, 0.03727069869637489, -0.024471472948789597, 0.026443680748343468, 0.016032570973038673, -0.007332050707191229, 0.010243404656648636, 0.025598449632525444, 0.01402011513710022, -0.0006766885635443032, -0.037324365228414536, 0.005779104772955179, -0.029542863368988037, 0.002446811879053712, 0.004417342599481344, -0.013054135255515575, 0.020929548889398575, 0.011229508556425571, -0.015643496066331863, 0.005128410644829273, -0.015817910432815552, 0.02160036936402321, 0.035526569932699203, 0.017414458096027374, -0.02645709738135338, -0.04116144776344299, 0.02610827051103115, -0.0185146015137434, -0.016287483274936676, -0.015469083562493324, 0.0006276349304243922, 0.012685185298323631, 0.017092466354370117, -0.0058428323827683926, -0.009076179936528206, -0.012611395679414272, -0.030911333858966827, 0.006798749323934317, -0.018742680549621582, -0.004732627421617508, 0.01538858562707901, 0.014543353579938412, 0.004085286986082792, -0.023022504523396492, -0.01674363948404789, 0.006530421786010265, -0.008016285486519337, 0.01887684315443039, 0.01422136090695858, 0.028952542692422867, 0.012712017633020878, 0.008895058184862137, -0.0020208419300615788, 0.04464970529079437, -0.02126495912671089, -0.006678001955151558, 0.01736079342663288, -0.01890367642045021, 0.003726399037986994, -0.015884991735219955, -0.011149009689688683, 0.0011227831710129976, -0.022834675386548042, 0.0004452560388017446, -0.01393961627036333, 0.012584562413394451, 0.03056250885128975, 0.001980592729523778, -0.000455737579613924, -0.02608143910765648, -0.01984282210469246, -0.028684215620160103, -0.013570666313171387, 0.012121697887778282, 0.028147561475634575, 0.0006942975451238453, 0.010189739055931568, 0.051733553409576416, -0.004367031157016754, -0.009814080782234669, 0.012544313445687294, 0.016287483274936676, -0.011330131441354752, 0.006580733228474855, 0.011813120916485786, 0.018823178485035896, -0.03480208292603493, 0.012074739672243595, -0.05275319889187813, -0.01393961627036333, -0.01852801814675331, -0.03839767351746559, 0.021586952731013298, -0.0006733344634994864, -0.0004926326218992472, -0.011175842955708504, -0.018836595118045807, -0.03337994962930679, -0.022110190242528915, 0.02338474616408348, 0.0052022007293999195, -0.037673190236091614, -0.006584087386727333, -0.010927639901638031, -0.01827310584485531, 0.011477711610496044, 0.018581682816147804, 0.007680876180529594, 0.018809761852025986, -0.04110778123140335, -0.03179681673645973, -0.0011093667708337307, 0.004789646714925766, 0.029462365433573723, 0.021278375759720802, 0.034372761845588684, -6.0792961448896676e-05, -0.008318154141306877, -0.03705603629350662, -0.023129835724830627, -0.0087541863322258, -0.0025055084843188524, 0.014905596151947975, 0.008150449953973293, 0.008975557051599026, -0.023518910631537437, -0.002109725493937731, 0.02239193394780159, -0.006745084188878536, -0.03659987822175026, 0.015670329332351685, 0.018219441175460815, -0.0004922133521176875, -0.015334920026361942, 0.007815039716660976, -0.016475312411785126, 0.0175083726644516, -0.01852801814675331, 0.010585522279143333, -0.028174392879009247, -0.0002240954345325008, -0.03152848780155182, 0.025799695402383804, -0.0027956378180533648, 0.022888340055942535, -0.015549582429230213, 0.005383321549743414, -0.01218207087367773, -0.012047907337546349, -0.027530407533049583, 0.009364631958305836, -0.013490168377757072, 0.02785240113735199, -0.02822805941104889, -0.0052089085802435875, 0.02534353733062744, -0.02066122181713581, -0.01296022068709135, -0.0001845800143200904, 0.0017793470760807395, 0.032628629356622696, 0.0010120980441570282, -0.005353134591132402, -0.006651169154793024, 0.012691893614828587, -0.019386665895581245, -0.007372299674898386, -0.009981784969568253, 0.00984762143343687, -0.01501292735338211, -0.006798749323934317, 0.03002585470676422, 0.018460936844348907, 0.0006033177487552166, -0.012443690560758114, -0.006265448406338692, -0.0008406199049204588, -0.005369905382394791, -0.007184470538049936, 0.019587911665439606, -0.0299990214407444, -0.004279824439436197, -0.03193097934126854, 0.023814070969820023, 0.019225670024752617, -0.01616673544049263, -0.022834675386548042, 0.00680881179869175, 0.03638521581888199, -0.01595207303762436, 0.021197877824306488, -0.008425485342741013, 0.0004064743116032332, -0.010800184682011604, -0.0038773331325501204, 0.01595207303762436, -0.008257780224084854, 0.0076540433801710606, -0.023129835724830627, -0.0167570561170578, -0.011598458513617516, -0.014261609874665737, 0.006745084188878536, -0.007472922559827566, -0.012007658369839191, 0.000792824081145227, -0.007781499065458775, 0.022754177451133728, 0.00039997577550821006, -0.024806883186101913, 0.009787247516214848, -0.008029702119529247, -0.006889310199767351, 0.011249632574617863, -0.0008305576629936695, 0.015831325203180313, 0.0024384267162531614, 0.009592710062861443, 0.014436022378504276, -3.0632316338596866e-05, -0.009009097702801228, -0.004836604464799166, -0.030696673318743706, -0.0055912756361067295, -0.024994712322950363, -0.035150911659002304, 0.0136176235973835, -0.013322463259100914, 0.015308086760342121, -0.025276456028223038, 0.0035519860684871674, -0.03684137389063835, 0.019386665895581245, 0.02782556787133217, 0.01540200226008892, -0.01120267529040575, 0.009076179936528206, 0.007425965275615454, 0.01538858562707901, -0.014919011853635311, -0.0451863594353199, 0.0015286285197362304, 0.04387155547738075, 0.03278962895274162, 0.022298019379377365, -0.011940576136112213, 0.008700520731508732, -0.023304248228669167, -0.02884521335363388, 0.02162720076739788, 0.026524178683757782, 0.023666489869356155, 0.017213212326169014, -0.008760894648730755, 0.017280295491218567, -0.010062283836305141, 0.01984282210469246, -0.014731182716786861, 0.006922850850969553, 0.017830366268754005, 0.05591946467757225, -0.002250597346574068, -0.020567307248711586, -0.0011261372128501534, -0.0331384539604187, 0.0027620967011898756, -0.007332050707191229, 0.028496386483311653, 0.0030321013182401657, -0.015267837792634964, 0.01501292735338211, -0.04008813574910164, -0.025853360071778297, 0.0101360734552145, 0.0014799941563978791, -0.017870616167783737, -0.015697162598371506, -0.012785808183252811, -0.016086237505078316, 0.017816949635744095, -0.023438412696123123, -0.013416377827525139, -0.025947274640202522, 0.0034245303831994534, -0.000815044972114265, -0.011558209545910358, -0.02978435903787613, 0.01774986833333969, -0.03021368384361267, -0.0005383321549743414, -0.008760894648730755, -0.002354574389755726, 0.03635838255286217, -0.0017172964289784431, 0.006020599510520697, 0.007714417297393084, -0.007063723169267178, -0.012074739672243595, 0.001975561724975705, 0.031850479543209076, 0.010357444174587727, -0.009612835012376308, 0.00525251217186451, 0.03249446675181389, -0.002963342471048236, 0.01811210997402668, -0.02787923254072666, -0.035526569932699203, -0.03960514813661575, 0.028684215620160103, -0.011430754326283932, -0.017602287232875824, 0.0019101568032056093, 0.014932428486645222, -0.005339718423783779, -0.015603247098624706, -0.03139432519674301, -0.027181582525372505, -0.006916143000125885, 0.03716336563229561, -0.027235247194767, -0.009525628760457039, 0.026363182812929153, 0.013644455932080746, 0.004403925966471434, -0.016622891649603844, -0.0020241960883140564, 0.19899171590805054, -0.025947274640202522, -0.0027319099754095078, 0.016663141548633575, -0.01355054136365652, 0.031662650406360626, 0.008546233177185059, -0.009539044462144375, -0.010317194275557995, -0.0026966920122504234, -0.024498306214809418, 0.005299469456076622, -0.029516031965613365, 0.013979866169393063, 0.012068032287061214, -0.03375560790300369, -0.006694772746413946, -0.051733553409576416, -0.016059404239058495, -0.006439861375838518, 0.004950643517076969, 0.027557240799069405, -0.03058934211730957, -0.012410149909555912, 0.011719206348061562, 0.014100613072514534, -0.023693323135375977, 0.014248193241655827, 0.017857199534773827, -0.0005756464670412242, -0.03700236976146698, -0.01909150555729866, -0.017401041463017464, 0.014100613072514534, -0.02726208046078682, 0.011759455315768719, 0.03356777876615524, -0.005926684942096472, 0.0017743159551173449, -0.006439861375838518, 0.004665545653551817, -0.018554851412773132, -0.025048376992344856, 0.0007160991663113236, 0.00560804596170783, 0.028737882152199745, 0.007915662601590157, -0.030830835923552513, -0.0037398154381662607, 0.03343361243605614, -0.02825489267706871, -0.013637748546898365, 0.024270227178931236, -0.0010531856678426266, 0.0005773234879598022, 0.008385236375033855, -0.018434103578329086, 0.019400082528591156, 0.032038308680057526, 0.02182844653725624, -0.010263528674840927, 0.047037821263074875, -0.015710579231381416, 0.026202186942100525, -0.01294009666889906, 0.018541434779763222, -0.013684705831110477, -0.00896884873509407, 0.014878762885928154, -0.006265448406338692, 0.0029583112336695194, -0.02376040443778038, 0.019789157435297966, 0.026577845215797424, -0.031501654535532, -0.01634114794433117, 0.04328123480081558, 0.012403441593050957, 0.002757065696641803, 0.017830366268754005, -0.012973637320101261, -0.005235741380602121, -0.0060474323108792305, -0.009981784969568253, -0.019212253391742706, -0.023854319006204605, 0.005728793330490589, -0.016824137419462204, 0.00716434558853507, 0.004682315979152918, 0.001113559352234006, -0.003518445184454322, -0.017401041463017464, 0.0009089595987461507, 0.009230468422174454, 0.009713457897305489, -0.0019302814034745097, -8.070789772318676e-05, -0.005765688605606556, -0.004611880052834749, -0.017079049721360207, 0.0444350428879261, 0.021332040429115295, 0.004997600801289082, -0.00385050056502223, -0.004098703619092703, 0.006067556794732809, 0.018393853679299355, -0.011041679419577122, -0.04424721375107765, -0.00685912324115634, -0.014261609874665737, 0.00012714114564005286, -0.012054615654051304, 0.009626250714063644, -0.00955916941165924, -0.03952464833855629, -0.007774791214615107, -0.0023361267521977425, 0.004350260365754366, 0.0063090515322983265, -0.02549111843109131, 0.01267176866531372, 0.0037029203958809376, -0.002906322944909334, -0.0004314203979447484, -0.05511448159813881, 0.008237656205892563, 0.021761365234851837, 0.005104932002723217, 0.02122470922768116, -0.03209197521209717, -0.007861997000873089, -0.001177287194877863, -0.00163008994422853, -0.0024384267162531614, -0.022915173321962357, -0.006517005618661642, -0.028898878023028374, -0.004316719714552164, -0.012477231211960316, 0.019601328298449516, -0.018420686945319176, 0.00038027047412469983, 0.01812552660703659, -0.018058445304632187, 0.01478484831750393, -0.00031444636988453567, 0.004266408272087574, -0.03348727896809578, -0.020352644845843315, -0.025450868532061577, -0.0023981775157153606, 0.0028023459017276764, -0.009767123498022556, -0.02337132953107357, 0.005423570983111858, -0.009592710062861443, 0.015898408368229866, -0.003144463524222374, -0.03217247501015663, 0.00955916941165924, 0.006248678080737591, 0.00839194469153881, -0.012396733276546001, -0.030133184045553207, -0.16700707376003265, -0.016810720786452293, 0.005866311024874449, -0.0185146015137434, 0.028174392879009247, 0.021077129989862442, 0.0255447831004858, -0.014060364104807377, -0.004071870818734169, 0.00716434558853507, -0.008398653008043766, 0.020218482241034508, -0.0323871374130249, -0.0007718609995208681, -0.02397506684064865, -0.029650194570422173, 0.02787923254072666, 0.009076179936528206, 0.03520457446575165, 0.02300908789038658, 0.029864856973290443, -0.028684215620160103, 0.02047339268028736, 0.010397693142294884, -0.012973637320101261, -0.03957831487059593, 0.000524077273439616, -0.008888350799679756, -0.001500957296229899, -0.013268797658383846, 0.009371340274810791, 0.01255102176219225, 0.027798734605312347, -0.026148520410060883, 0.00044651381904259324, 0.025585032999515533, 0.01694488525390625, -0.024270227178931236, -0.014234776608645916, 0.01595207303762436, 0.032440800219774246, 0.036304719746112823, 0.007741250097751617, -0.0016778857680037618, 0.004481070209294558, 0.03429226204752922, 0.02262001298367977, -0.04309340566396713, -0.009364631958305836, -0.016877803951501846, 0.01752178929746151, -0.022512681782245636, 0.005886435974389315, -0.007519879844039679, 0.01595207303762436, -0.03520457446575165, -0.011169134639203548, 0.0005177883431315422, 0.0031796814873814583, 0.010149490088224411, 0.01344991847872734, -0.019239086657762527, -0.004350260365754366, 0.03737802803516388, -0.011699081398546696, -0.011008137837052345, -0.01827310584485531, 0.010873974300920963, -0.021976027637720108, 0.01965499296784401, -0.026966920122504234, 0.009512212127447128, 0.009887870401144028, -0.024042150005698204, 0.018957341089844704, 0.012517480179667473, -0.014583602547645569, 0.024243395775556564, -0.01381886936724186, -0.04403255134820938, 0.01714613102376461, 0.017387626692652702, -0.01577766053378582, 0.004595109261572361, 0.011088636703789234, -0.014489687979221344, -0.009619543328881264, 0.010592230595648289, -0.0037465235218405724, -0.007244843989610672, 0.03407759964466095, -0.046876825392246246, 0.0032115455251187086, -0.009163386188447475, 0.017602287232875824, 0.012155238538980484, -0.007593669928610325, -0.02142595499753952, 0.025947274640202522, -0.0083785280585289, 0.01432869117707014, -0.003555340226739645, -0.021761365234851837, 0.0041087656281888485, 0.037485361099243164, 0.0012879723217338324, -0.003256825730204582, 0.02243218384683132, 0.029247703030705452, 0.008975557051599026, 0.00048550518113188446, -0.008807851932942867, 0.016596060246229172, 0.01593865640461445, 0.014529936946928501, 0.02822805941104889, -0.017776701599359512, 0.003917582333087921, 0.019426915794610977, -0.012021075002849102, 0.047789137810468674, -0.0007680876296944916, -0.0027335870545357466, -0.005732147488743067, -0.013396253809332848, 0.002082892693579197, -0.11505885422229767, -0.02593385800719261, 0.00457833893597126, 0.0198964886367321, 0.0010280299466103315, 0.002666505053639412, -0.02200285904109478, 0.0019135108450427651, -0.019963569939136505, 0.019319584593176842, -0.014959261752665043, -0.011645415797829628, -0.010753226466476917, 0.0011034971103072166, -0.022848092019557953, 0.01930616796016693, -0.010847141966223717, -0.003961185459047556, -0.01479826495051384, 0.026202186942100525, 0.016837554052472115, -0.0006280542002059519, -0.017588870599865913, 0.007882121950387955, -0.02569236420094967, 0.018662182614207268, -0.0074796308763325214, -0.005215616896748543, 0.0034178222995251417, -0.004095349460840225, -0.01353041734546423, -0.002881167223677039, 0.0047628143802285194, -0.002924770349636674, 0.011953992769122124, 0.013396253809332848, 0.0012728788424283266, -0.013020594604313374, 0.03348727896809578, -0.021533286198973656, 0.009807372465729713, 1.1706575605785474e-05, 0.03603639081120491, -0.02220410481095314, 0.005504068918526173, -0.024659302085638046, -0.036331553012132645, 0.006342592649161816, -0.00816386565566063, -0.04183226451277733, -0.02359940856695175, -0.02884521335363388, -0.0178840309381485, 0.003518445184454322, 0.03337994962930679, -0.03998080641031265, -0.016233816742897034, 0.015630079433321953, -0.014945845119655132, -0.01770961843430996, -0.01218207087367773, 0.023639658465981483, -0.0006016406696289778, 0.01870243065059185, 0.024203145876526833, 0.03211880847811699, -0.018648765981197357, -0.011222800239920616, 0.030723504722118378, -0.005104932002723217, 0.007721125613898039, 0.018568266183137894, -0.015723994001746178, 0.04008813574910164, -0.005091515369713306, 0.01004886720329523, 0.007553420960903168, 0.023465244099497795, 0.0153751689940691, 0.0011974116787314415, -0.012993762269616127, -0.015683745965361595, -0.004179201554507017, -0.015120257623493671, -0.0007664106087759137, -0.006855769082903862, 0.012906556017696857, 0.0027017230167984962, 0.0009173448197543621, -0.010598938912153244, 0.0167570561170578, 0.019319584593176842, 0.018393853679299355, -0.020205065608024597, -0.008344987407326698, 0.024055564776062965, 0.0096329590305686, -0.012705310247838497, -0.0026346412487328053, 0.028362222015857697, -0.046474333852529526, 0.0016443447675555944, -0.04134927690029144, 0.01710588112473488, -0.01909150555729866, -0.028389055281877518, -0.012289402075111866, 0.011142302304506302, 0.025665530934929848, -0.02863055095076561, -0.010853849351406097, -0.001994009129703045, -0.03335311636328697, 0.013087676838040352, -0.025209374725818634, -0.012168655171990395, 0.01342979446053505, -0.007003349252045155, 0.0016250588232651353, -0.04011496901512146, -0.00685912324115634, 0.02689983695745468, -0.003780064405873418, 0.0022103481460362673, 0.009928119368851185, -0.0027956378180533648, -0.019614744931459427, 0.005869665183126926, 0.000534558785147965, 0.026242434978485107, -0.016421645879745483, -0.01639481447637081, 0.004413988441228867, -0.005420216824859381, -0.0007907277904450893, -0.00289793754927814, -0.0013013886054977775, -0.0016200275858864188, 0.01673022285103798, 0.02531670592725277, 0.02125154249370098, 0.02219068817794323, -0.00369956623762846, -0.03311162069439888, -0.003555340226739645, -0.021882113069295883, -0.00432678172364831, -0.0037968349643051624, 0.0035352155100554228, 0.01789744757115841, -0.01363104023039341, 0.022928589954972267, 0.0053967381827533245, 0.012591270729899406, -0.01809869334101677, -0.021077129989862442, 0.015697162598371506, -0.017240045592188835, 0.0014540000120177865, -0.00993482768535614, -0.000878772756550461, 0.004608525894582272, 0.03694870322942734, 0.0014699319144710898, 0.03056250885128975, 0.009914703667163849, 0.001583971083164215, -0.033970270305871964, -0.017441291362047195, 0.00030857668025419116, -0.00885480921715498, -0.00442740460857749, -0.0019168650032952428, -0.004632004536688328, 0.013248673640191555, 0.015603247098624706, 0.012685185298323631, -0.001610803883522749, -0.04864778742194176, 0.0006963938940316439, -0.008948723785579205, 0.025061793625354767, 0.020808802917599678, -0.007781499065458775, -0.024243395775556564, 0.01344321109354496, 0.038692835718393326, -0.00770100113004446, 0.003322230651974678, -0.017481541261076927, 0.010330610908567905, -0.001408719690516591, 0.008304737508296967, 0.005319593939930201, -0.019400082528591156, 0.004008142743259668, -0.004836604464799166, 0.023518910631537437, -0.01808527670800686, -0.0005857087671756744, -0.00819069892168045, 0.022137023508548737, 0.012624811381101608, 0.01111546903848648, -0.016824137419462204, 0.003107568481937051, -0.0299990214407444, 0.030643006786704063, 0.004269762430340052, -0.009015806019306183, -0.014516521245241165, 0.040544293820858, -0.008962140418589115, 0.020352644845843315, 0.02628268487751484, 0.014677517116069794, -0.02922087162733078, 0.0011781257344409823, -0.023800654336810112, -0.011578334495425224, -0.013624331913888454, -0.00033436130615882576, 0.008445610292255878, 0.0030840898398309946, 0.020164815708994865, 0.007103972136974335, 0.014690933749079704, 0.01756203919649124, 0.02782556787133217, -0.02884521335363388, -0.01501292735338211, 0.01314134243875742, -0.03992713987827301, 0.03252130001783371, -0.022110190242528915, -0.023854319006204605, -0.01886342652142048, -0.03469475358724594, 0.017642537131905556, 0.01711929775774479, -0.00809007603675127, 0.06294964253902435, -0.0030589341185986996, -0.010518440045416355, 0.006315759848803282, -0.027771903201937675, 0.0022422121837735176, 0.014583602547645569, 0.0010858881287276745, -0.004826541990041733, -0.03206514194607735, 0.03270912915468216, 0.002445134799927473, 0.011538084596395493, -0.03812934458255768, 0.005960226058959961, 0.008633439429104328, 0.0058428323827683926, 0.020500225946307182, -0.007734541781246662, -0.0001495716569479555, 0.0019705304875969887, 0.016488729044795036, 0.006654523313045502, -0.005839478690177202, -0.017401041463017464, 0.011625291779637337, 0.016113070771098137, 0.002057736972346902, -0.01695830188691616, -0.031850479543209076, 0.029730694368481636, 0.001822950318455696, -0.036707211285829544, -0.026926670223474503, -0.003977956250309944, -0.000537493615411222, 0.0037297529634088278, -0.013309046626091003, 0.03056250885128975, -0.010162906721234322, -0.02453855611383915, 0.002919739345088601, -0.02394823543727398, -0.039658814668655396, -0.02005748450756073, -0.0006045755580998957, -0.015281254425644875, -0.006741730030626059, -0.04854045435786247], "3f2a1579-dc10-4d61-84ec-282a3582fe16": [0.013704265467822552, 0.0023875085171312094, -0.02002621442079544, -0.009912438690662384, -0.013878756202757359, 0.010731205344200134, -0.017986008897423744, 0.011154009960591793, -0.025542818009853363, -0.022750958800315857, -0.00023258493456523865, 0.0059796771965920925, 0.015878694131970406, 0.018952421844005585, 0.0047850836999714375, -0.010751338675618172, 0.030925197526812553, 0.007993035949766636, -0.006053500343114138, 0.006711197551339865, -0.008798380382359028, 0.012375447899103165, -0.019569851458072662, -0.005791763309389353, -0.004546836484223604, 0.050870876759290695, 0.03548881411552429, -0.035998862236738205, 0.001603976241312921, -0.018120232969522476, 0.025891799479722977, -0.00859704427421093, -0.021113427355885506, -0.02101946994662285, -0.014415652491152287, 0.013315016403794289, -0.01846921630203724, 0.023797906935214996, 0.015596822835505009, -0.013529774732887745, 0.03363652154803276, 0.018120232969522476, -0.014335118234157562, 0.0035435121972113848, -0.0024764318950474262, 0.005476337391883135, 0.010885562747716904, -0.014523031190037727, -0.023609992116689682, -0.0013128779828548431, 0.01974434405565262, 0.029421890154480934, -0.04185102880001068, -0.002192883752286434, -0.014268006198108196, 0.0011174144456163049, -0.0072883605025708675, 0.0311668012291193, 0.0016736049437895417, 0.004164298065006733, 0.020455731078982353, -0.0017616893164813519, -0.006325303576886654, -0.015556556172668934, -0.021945616230368614, 0.0032683531753718853, 0.004989775363355875, -0.01312039140611887, -0.01914033479988575, 0.0058454531244933605, 0.024267690256237984, 0.008234639652073383, -0.0021979170851409435, -0.0020704043563455343, 0.032562728971242905, -0.027099816128611565, -0.03377074748277664, 0.013798221945762634, -0.023677105084061623, -0.00037289090687409043, 0.01032182201743126, -0.020240971818566322, -0.01860344037413597, 0.022455666214227676, 0.034656625241041183, -0.0017180666327476501, 0.03170369565486908, 0.011919086799025536, 0.014845169149339199, -0.019408782944083214, 0.01570420153439045, -0.012469405308365822, 0.007684321142733097, 0.011623794212937355, -0.014093514531850815, 0.03205268085002899, -0.03057621605694294, 0.04633410647511482, -0.014281428419053555, -0.003080439753830433, -0.024106621742248535, 0.008469531312584877, -0.0035099564120173454, -0.004577036947011948, -0.01125467848032713, -0.023730793967843056, 0.01621425338089466, 0.013281459920108318, 0.004949508234858513, -0.013825067318975925, -0.013073412701487541, 0.05172991007566452, 0.00397974019870162, -0.021771125495433807, 0.013294882141053677, -0.006979645229876041, 0.0006153329159133136, -0.009637279435992241, -0.004540125373750925, -0.006060211453586817, 0.022536201402544975, 0.008241350762546062, 0.021878503262996674, -0.01889873296022415, 0.03162316232919693, -0.011979487724602222, -0.01914033479988575, -0.02722061797976494, -0.021126849576830864, -0.03108626790344715, 0.017596760764718056, 0.019569851458072662, 0.004533413797616959, -0.004499857779592276, 0.03028092347085476, 0.02272411435842514, -0.021059738472104073, -0.0031374848913401365, -0.01154325995594263, -0.02998563088476658, 0.013825067318975925, 0.006113900803029537, -0.01606660708785057, 0.011294945143163204, -0.009751370176672935, 0.02556966245174408, 0.01614714041352272, -0.010227865539491177, 0.009704391472041607, -0.019247714430093765, -0.016992751508951187, -0.005580361001193523, -0.006808510050177574, -0.003546867985278368, 0.008825224824249744, -0.0060937674716115, 0.01012719701975584, 0.018938999623060226, 0.011187566444277763, -0.015059927478432655, -0.015744470059871674, 0.024039508774876595, -0.002001614775508642, 0.0009999683825299144, 0.0165229681879282, 0.02742195315659046, -0.003392510348930955, 0.017086708918213844, -0.006660863757133484, 0.010288265533745289, 0.0010796638671308756, 0.027193771675229073, 0.005915920715779066, 0.008536643348634243, 0.019529584795236588, 0.0019999367650598288, 0.0002764174423646182, 0.011489570140838623, -0.02982456237077713, -0.029046062380075455, 0.004452879540622234, -0.0037280702963471413, 0.0218382366001606, 0.04786426201462746, -0.042414769530296326, -0.00570116238668561, 0.006053500343114138, -0.011838552542030811, 0.008925892412662506, 0.00874469056725502, 0.013328438624739647, 0.021717434749007225, -0.011529837734997272, 0.004060274455696344, -0.612490713596344, -0.00521124480292201, -0.004499857779592276, -0.01965038664638996, -0.0036441802512854338, 0.010892273858189583, 0.004295166581869125, 0.002634145086631179, -0.0019814809784293175, 0.02982456237077713, -0.01696590706706047, 0.004083763808012009, 0.012851943261921406, -0.019314827397465706, -0.021945616230368614, -0.012724430300295353, 0.0035938462242484093, -0.01244927104562521, 0.012227801606059074, -0.0009504733607172966, -0.010227865539491177, 0.019945679232478142, -0.025623353198170662, -0.021959038451313972, 0.004630726296454668, 0.01173788495361805, 0.007382317446172237, -0.02383817359805107, -0.006972934119403362, 0.011335212737321854, -0.035408277064561844, 0.004664282314479351, -0.011107032187283039, 0.011341923847794533, 0.0413946658372879, 0.014509608969092369, -0.02130134031176567, -0.008623888716101646, -0.0021626835223287344, 0.04120675474405289, -0.007248093374073505, -0.0064628832042217255, 0.029851406812667847, 0.005590427666902542, 0.00840913038700819, -0.008066859096288681, 0.0017717560986056924, -0.006650796625763178, -0.01817392371594906, -0.027005858719348907, 0.019824877381324768, -0.004140808712691069, 0.021663745865225792, 0.009113806299865246, 0.025891799479722977, -0.01779809594154358, 0.02966349385678768, -0.021811392158269882, 0.001685349503532052, -0.03130102530121803, -0.016871951520442963, 0.020495997741818428, -0.009221184998750687, 0.016254520043730736, -0.005989743862301111, 0.04168995842337608, 0.016106873750686646, 0.01013390813022852, 0.013986135832965374, -0.019167181104421616, 0.007724588271230459, 0.02480458654463291, -0.03318016231060028, 0.0029093041084706783, 0.02084497921168804, 0.011107032187283039, 0.008160816505551338, 0.0010838584275916219, 0.0268313679844141, 0.009657413698732853, 0.024643518030643463, 0.0034629779402166605, -0.003305264748632908, -0.007979613728821278, 0.004714616108685732, -0.0035569346509873867, -0.011744596064090729, -0.009288297034800053, 0.0010712748626247048, 0.00669106375426054, 0.008691000752151012, 0.004023362882435322, -0.020294660702347755, -0.021193962544202805, -0.02465694025158882, 0.04456235095858574, -0.008670867420732975, 0.006026655435562134, 0.019623542204499245, -0.02519383653998375, -0.028509167954325676, -0.0057112290523946285, 0.02632131613790989, -0.01016075350344181, 0.016106873750686646, 0.00017900022794492543, -0.0057447850704193115, -0.011328501626849174, 0.03849542886018753, -0.0036441802512854338, -0.014066670089960098, -0.02413346618413925, 0.008731268346309662, 0.017140397801995277, 0.0006719586672261357, -0.026495808735489845, 0.014925703406333923, 0.00018539682787377387, 0.015422332100570202, -0.009630568325519562, 0.004533413797616959, 0.03108626790344715, 0.00987217202782631, -0.02048257552087307, 0.030817819759249687, -0.0010637248633429408, 0.007140714209526777, -0.02069733291864395, -0.033690210431814194, -0.0007336178096011281, -0.008482953533530235, 0.004419323522597551, 0.012771409004926682, -0.01673772744834423, 0.0075903646647930145, -0.0035837795585393906, -0.004570325370877981, -0.007825256325304508, 0.016093451529741287, -0.03618677705526352, -0.0208584014326334, -0.007999747060239315, 0.0011954320361837745, -0.024401914328336716, -0.03672367334365845, -0.035837795585393906, -0.0431932657957077, -0.005415936466306448, 0.015731047838926315, 0.006184368394315243, 0.006741398014128208, -0.0032666753977537155, -0.03280433267354965, 0.029475579038262367, 0.0018019565613940358, 0.003785115433856845, 0.0014655577251687646, -0.012999589554965496, -0.006600462831556797, -0.004993130918592215, 0.006043433211743832, 0.033529143780469894, -0.02540859393775463, 0.0062615470960736275, -0.009999684058129787, -0.0293682012706995, -0.033743903040885925, 0.014147204346954823, -0.022912029176950455, -0.03790484368801117, -0.016858527436852455, 0.011268100701272488, -0.014120359905064106, 0.0030955399852246046, -0.01046946831047535, 0.017878631129860878, -0.005687739700078964, 0.003251575166359544, -0.0234757699072361, -0.0033774101175367832, 0.0025150212459266186, 0.008764823898673058, 0.014670677483081818, -0.02385159581899643, 0.029502425342798233, -0.00013778927677776664, 0.017986008897423744, -0.01697932928800583, -0.00599645497277379, 0.016187408939003944, 0.017757829278707504, 0.02467036247253418, -0.013825067318975925, -0.025770999491214752, 0.007469562813639641, 0.013771377503871918, 0.03731425851583481, -0.005983032751828432, 0.023865018039941788, 0.049528639763593674, 0.029019217938184738, -0.003600557567551732, 0.02190534956753254, -0.026885056868195534, -0.008388997055590153, -0.017449114471673965, 0.004415967967361212, 0.02556966245174408, 0.010570135898888111, -0.005201178137212992, -0.0019445695215836167, -0.027864892035722733, -0.0059796771965920925, -0.020495997741818428, 0.003154262900352478, 0.03409288451075554, 0.028374943882226944, -0.0027515909168869257, 0.001299455645494163, -0.002565355272963643, -0.0005645795026794076, 0.013549908064305782, -0.0012499605072662234, 0.009657413698732853, -0.017475958913564682, -0.006704486440867186, 0.01293247751891613, -0.0059696100652217865, 0.0014529742766171694, -0.04523347318172455, 0.021475832909345627, 0.008993004448711872, 0.011160722002387047, 0.01778467372059822, 0.02303282916545868, 0.013543196953833103, 0.03183792158961296, -0.010261421091854572, 0.05484390631318092, -0.015314952470362186, -0.013986135832965374, 0.030603060498833656, 0.007147425319999456, -0.03291171416640282, 0.016764571890234947, -0.016388744115829468, 0.04985077679157257, 0.013784799724817276, 0.008281617425382137, 0.000941245467402041, 0.011429169215261936, 0.011563393287360668, 0.0074561405926942825, 0.007113869301974773, 0.010630536824464798, -0.012771409004926682, -0.010066796094179153, 0.01124796736985445, 0.018415525555610657, 0.010979519225656986, 0.014106937684118748, 0.008825224824249744, 0.00482199527323246, 0.0034361332654953003, -0.002706290455535054, 0.003162651788443327, 0.001815378898754716, -0.01740884594619274, -0.017019597813487053, -0.0005343790980987251, -0.03132786974310875, -0.03245535120368004, -0.032267436385154724, 0.008040014654397964, 0.027327995747327805, -0.0014529742766171694, 0.018348414450883865, 0.009637279435992241, 0.0010066796094179153, -0.008120548911392689, -0.017234355211257935, -0.022522779181599617, 0.0382806695997715, 0.03006616421043873, -0.021636901423335075, -0.03481769189238548, 0.010207731276750565, -0.0007407484226860106, 0.023140208795666695, 0.01293247751891613, -0.022925451397895813, 0.007939347065985203, -0.019395360723137856, -0.008388997055590153, 0.0009664124227128923, -0.01278483122587204, 0.010731205344200134, 0.01136205717921257, 0.004258255008608103, -0.009066827595233917, -0.021355031058192253, 0.00766418781131506, -0.016348477452993393, 0.008462820202112198, 0.03693843260407448, 0.020147014409303665, -0.006321948021650314, -0.014885435812175274, -0.000795696338173002, -0.01711355336010456, 0.027462219819426537, -0.035327743738889694, -0.010737916454672813, -0.03983766958117485, 0.04225369915366173, -0.004788439255207777, 0.00908696185797453, 0.01793232001364231, 0.023207321763038635, -0.013684132136404514, -0.01154997106641531, -0.006459527648985386, -0.012415715493261814, 0.04193156212568283, 0.05755522847175598, 0.02637500688433647, 0.0029747383669018745, 0.007342050317674875, 0.0003661797090899199, -0.008422552607953548, -0.004238121211528778, -0.02295229583978653, 0.03146209567785263, -0.018066544085741043, 0.006905822083353996, 0.00908696185797453, -0.013348571956157684, 0.0024764318950474262, 0.006613885052502155, 0.0019663809798657894, -0.01697932928800583, -0.028831304982304573, 0.013093546032905579, -0.00874469056725502, -0.0029831272549927235, 0.005983032751828432, 0.027623288333415985, 0.030549371615052223, -0.029475579038262367, 0.0095299007371068, 0.0129660340026021, -0.002538510365411639, 0.023636838421225548, -0.023489192128181458, -0.00211067171767354, 0.010456046089529991, 0.017623605206608772, 0.014643833041191101, -0.023140208795666695, 0.02071075513958931, 0.0014647188363596797, 0.002864003647118807, 0.021287918090820312, -0.03685789555311203, 0.01943562738597393, 0.005664250813424587, 0.014469342306256294, -0.010556713677942753, 0.015422332100570202, -0.005560227204114199, 0.016415588557720184, 0.010026529431343079, 0.01016746461391449, -0.021126849576830864, 0.004046852234750986, 0.001036041066981852, -0.026938747614622116, -0.01832157000899315, 0.024482449516654015, 0.016469279304146767, -0.019529584795236588, 0.016482701525092125, -0.0030955399852246046, 0.007677610032260418, -0.009570167399942875, -0.024120043963193893, 0.03672367334365845, -0.02646896243095398, 0.01786520704627037, -0.03567672520875931, 0.007644054014235735, 0.020093325525522232, -0.024052932858467102, -0.024012664332985878, 0.004758239258080721, -0.006506505887955427, -0.021704012528061867, -0.004805217497050762, 0.032562728971242905, 0.028348097577691078, 0.0013447562232613564, 0.015556556172668934, -0.0007533319294452667, 0.010677515529096127, 0.002864003647118807, -0.03645522519946098, -0.008925892412662506, -0.021274495869874954, -0.011617083102464676, 0.0051843998953700066, 0.0029495712369680405, -0.0070870243944227695, 0.0071876924484968185, 0.020616799592971802, -0.012838521040976048, 0.010368799790740013, -0.0010603691916912794, -0.020683910697698593, 0.0025418661534786224, 0.026723988354206085, 0.017234355211257935, 0.017368579283356667, 0.008080282248556614, -0.027623288333415985, -0.009798348881304264, 0.009845326654613018, 0.013825067318975925, -0.0039763846434652805, -0.03787799924612045, -0.016160564497113228, 0.01889873296022415, 0.0033639876637607813, -0.001739877974614501, -0.015341797843575478, 0.03377074748277664, -0.025234103202819824, 0.012831809930503368, -0.002456298330798745, 0.021623479202389717, 0.0019126912811771035, 0.008610466495156288, 0.03095204383134842, -0.006573617924004793, -0.009140650741755962, -0.018133655190467834, -0.032482195645570755, 0.016549812629818916, 0.023073097690939903, -0.007529963739216328, 0.006768242921680212, 0.0037280702963471413, -0.018737664446234703, -0.005972965620458126, -0.03006616421043873, 1.1770811397582293e-05, 0.029019217938184738, 0.02422742359340191, -0.01420089416205883, -0.006274969782680273, 0.005342113319784403, -0.02115369401872158, -0.034415021538734436, -0.006097123026847839, -0.0063286591321229935, 0.03175738826394081, 0.0036475358065217733, -0.0268313679844141, -0.010456046089529991, -0.030683595687150955, -0.03154262900352478, -0.016804838553071022, -0.002573744161054492, 0.01495254784822464, 0.035166673362255096, 0.020804712548851967, 0.010194309055805206, -0.020079903304576874, 0.005472981836646795, 0.014858591370284557, -0.012878787703812122, -0.00633537070825696, -0.009966128505766392, 0.0027465575840324163, 0.017838362604379654, 0.01184526365250349, 0.012140556238591671, 0.05307215079665184, 0.013449239544570446, -0.019381938502192497, 0.023126786574721336, 0.008248061873018742, 0.009932572022080421, -0.03221374750137329, 0.01278483122587204, 0.027395108714699745, -0.0030703728552907705, 0.009778214618563652, 0.008281617425382137, 0.018428947776556015, 0.039918202906847, -0.0051206438802182674, 0.007261515595018864, -0.02264358103275299, -0.02303282916545868, -0.0090399831533432, -0.007946058176457882, -0.016039762645959854, 0.010550002567470074, -0.004452879540622234, 0.014093514531850815, 0.018952421844005585, -0.003885783487930894, -0.010905696079134941, 0.0019798032008111477, 0.014710945077240467, -0.009248030371963978, 0.008503086864948273, 0.013261326588690281, 0.033233851194381714, -0.027569599449634552, -0.00934198684990406, -0.019543007016181946, 0.009899016469717026, -0.004124030936509371, -0.022066418081521988, 0.014455919153988361, -0.009503055363893509, 0.0014194182585924864, 0.006650796625763178, -0.007529963739216328, -0.011670772917568684, -0.007516541052609682, 0.037555862218141556, 0.003684447379782796, -0.021865081042051315, -0.017704138532280922, 0.0029143374413251877, -0.007140714209526777, -0.00016127846902236342, 0.021918771788477898, -0.001983158988878131, 0.011758018285036087, -0.03312646970152855, -0.021636901423335075, 0.003764981869608164, -0.0030351390596479177, 0.022764382883906364, 0.017140397801995277, 0.00919434055685997, 0.015341797843575478, 0.006872266530990601, -0.032186903059482574, -0.02303282916545868, 0.007040046155452728, 0.009610434994101524, 0.0054864040575921535, -0.009771503508090973, -0.001205498818308115, -0.008362152613699436, -0.008274906314909458, 0.011798284947872162, -0.016133718192577362, -0.040911462157964706, -0.004496502224355936, 0.0004555225314106792, -0.01360359787940979, 7.497666229028255e-05, -0.004962930455803871, -0.027072971686720848, 0.018563171848654747, -0.024831430986523628, 0.012771409004926682, -0.01973091997206211, -0.015355220064520836, -0.007442717906087637, 0.03291171416640282, 0.002749913139268756, 0.014576721005141735, -0.040562476962804794, -0.005570293869823217, 0.010905696079134941, 0.0050870878621935844, -0.01712697558104992, 0.012402293272316456, -0.019381938502192497, 0.02736826427280903, -0.021046316251158714, -0.0037884709890931845, 0.016925640404224396, -0.01853632740676403, -0.01483174692839384, 0.005496470723301172, -0.013281459920108318, 0.026804523542523384, -0.005623983684927225, 0.0036374691408127546, -0.00762392021715641, 0.004942797124385834, -0.008281617425382137, -0.0035435121972113848, -0.008328596130013466, -0.005533382296562195, -0.03146209567785263, 0.005771629977971315, 0.045716676861047745, 0.024415336549282074, 0.0013900568010285497, 0.008362152613699436, 0.0012138878228142858, -0.0007189370226114988, -0.019985945895314217, -0.01650954596698284, 0.006560195703059435, -0.020616799592971802, -0.002159327734261751, -0.016925640404224396, 0.014120359905064106, 0.026576342061161995, -0.008382285945117474, -0.017006173729896545, 0.005080376751720905, 0.040025580674409866, -0.014643833041191101, 0.006311881355941296, -0.02565019764006138, -0.014402230270206928, -0.009878883138298988, 0.010925829410552979, 0.039730288088321686, -0.00569780683144927, 0.006308525800704956, -0.025180412456393242, -0.022093262523412704, -0.015462598763406277, 0.01570420153439045, 0.03387812525033951, 0.0031358071137219667, -0.024683784693479538, 0.004013296216726303, 0.012127134017646313, 0.014133782126009464, 0.003466333495453, -0.023717371746897697, 0.014120359905064106, -0.009690969251096249, -0.00047649501357227564, 0.02063022181391716, -0.0063622151501476765, 0.01483174692839384, 0.012596918269991875, -0.006050144787877798, 0.007066891063004732, -0.011355346068739891, 0.003845516126602888, 0.0025838110595941544, -0.02458982728421688, -0.02012016996741295, -0.013013011775910854, -0.0011425813427194953, -0.006201146636158228, -0.009590301662683487, -0.00452334713190794, -0.028616545721888542, -0.005993099417537451, -0.009033272042870522, -0.007946058176457882, -0.0011350313434377313, 0.004016651771962643, -0.023462345823645592, -0.008798380382359028, 0.010294976644217968, 0.0040669855661690235, -0.010838584043085575, -0.018657129257917404, -0.004597170278429985, 0.021569788455963135, 0.0026693788822740316, 0.002491532126441598, -0.009113806299865246, -0.015220995992422104, -0.005399158224463463, -0.03744848072528839, 0.020670488476753235, 0.01869739592075348, 0.02802596054971218, 0.01547602191567421, -0.012623762711882591, 0.0087514016777277, 0.0075232526287436485, -0.002466364996507764, -0.03011985495686531, 0.01719408854842186, 0.008529932238161564, 0.05256209895014763, 0.016496123746037483, 0.007040046155452728, -0.014939125627279282, -0.04418652504682541, -0.018871886655688286, 0.007597075775265694, 0.004087119363248348, 0.03497876226902008, -0.03049568086862564, 0.020992625504732132, -0.03967659920454025, -0.0012348603922873735, 0.011469436809420586, 0.002444553654640913, -0.02159663289785385, -0.00889904797077179, 0.005717940162867308, -0.027341417968273163, 0.017100131139159203, -0.0116976173594594, -0.010831872932612896, -0.009758081287145615, -0.003238152712583542, 0.013697554357349873, -0.007375606335699558, -0.013073412701487541, 0.026281049475073814, -0.037555862218141556, 0.01659008115530014, -0.012945899739861488, 0.018858464434742928, 0.01583842560648918, -0.0025301214773207903, 0.023448923602700233, -0.013556619174778461, 0.004590459167957306, -0.020979203283786774, -0.012643896043300629, 0.016281364485621452, 0.020133592188358307, 0.004288455471396446, -0.005244800820946693, 0.022066418081521988, -0.0193014033138752, 0.015892116352915764, -0.02990509569644928, -0.023462345823645592, -0.03930077329277992, 0.03328754007816315, -0.012415715493261814, -0.013529774732887745, 0.005389091558754444, 0.01793232001364231, -0.017449114471673965, -0.0021895281970500946, -0.034039195626974106, -0.007113869301974773, -0.0034562668297439814, 0.029556114226579666, -0.022308019921183586, 0.0008066020673140883, 0.005298490636050701, 0.008321885019540787, 0.0018472571391612291, -0.036133088171482086, -0.01244927104562521, 0.19618172943592072, 0.0009060116717591882, -0.007201115135103464, 0.0070870243944227695, 0.0012424103915691376, 0.02362341620028019, -0.002152616623789072, -0.007845389656722546, -0.010939251631498337, 0.004016651771962643, -0.011341923847794533, 0.028133340179920197, -0.022670425474643707, 0.008758112788200378, -0.004979708697646856, -0.013596885837614536, -0.018925577402114868, -0.028160184621810913, -0.022844916209578514, -0.025019343942403793, 0.016496123746037483, 0.024952232837677002, -0.01593238301575184, -0.014603565447032452, 0.027838047593832016, 0.0090399831533432, -0.0018741019302979112, -0.003852227469906211, 0.004989775363355875, 0.005117288324981928, -0.02982456237077713, -0.014523031190037727, 0.010818450711667538, 0.007999747060239315, -0.028831304982304573, 0.0029747383669018745, 0.01593238301575184, -0.009711102582514286, 0.00726822717115283, -0.015113617293536663, 0.022670425474643707, -0.030978888273239136, -0.026509230956435204, 0.013516351580619812, 0.019838299602270126, 0.02293887361884117, 0.001306166872382164, -0.024321379140019417, -0.004647504538297653, 0.02460324950516224, -0.040696702897548676, 0.01139561366289854, 0.01981145516037941, 0.008657445199787617, -0.015033082105219364, -0.008201083168387413, 0.005167622119188309, 0.002916015451774001, 0.016845105215907097, 0.03736794739961624, -0.007060179952532053, 0.043998610228300095, -0.005905854050070047, 0.01891215518116951, -0.008798380382359028, 0.03183792158961296, -0.03825382515788078, -0.008288328535854816, 0.028509167954325676, -0.008811802603304386, 0.022616736590862274, -0.02676425501704216, 0.018724240362644196, 0.022630158811807632, -0.026710566133260727, -0.023583147674798965, 0.0395960658788681, 0.0006518250447697937, -0.008429263718426228, 0.024536138400435448, -0.019247714430093765, 0.00042091793147847056, 0.007731299381703138, -0.031650006771087646, -0.028428632766008377, -0.019234292209148407, -0.0035837795585393906, -0.004577036947011948, 0.02944873459637165, 0.004650860093533993, -0.004721327684819698, -0.005271645728498697, -0.0002766271645668894, 0.00025859082234092057, 0.013543196953833103, 0.01233518123626709, 0.0036777362693101168, 0.031811077147722244, -0.017986008897423744, -0.014979393221437931, -0.007107158191502094, 0.053635891526937485, 0.013945868238806725, 0.022831493988633156, 0.004754883702844381, 0.00437234528362751, 0.01016746461391449, 0.024120043963193893, -0.003956250846385956, -0.03460293635725975, -0.02309994213283062, -0.014697522856295109, -0.015596822835505009, -0.0058118971064686775, 0.012341892346739769, 0.0055870721116662025, -0.01868397369980812, -0.014402230270206928, -0.0066877081990242004, -0.012764697894454002, 0.019422205165028572, -0.016858527436852455, 0.013851911760866642, 0.009033272042870522, 0.008207794278860092, -0.004238121211528778, -0.05312583968043327, 0.0005557710537686944, 0.005472981836646795, -0.0002569130447227508, 0.024334803223609924, -0.02632131613790989, -0.002580455504357815, 0.0010855362052097917, -0.002781791379675269, -0.013657286763191223, -0.02355630323290825, -0.03020038828253746, -0.021918771788477898, 0.005842097569257021, -0.013690843246877193, 0.015059927478432655, -0.0030082943849265575, 0.0015058249700814486, 0.011690906248986721, -0.03508614003658295, 0.02712666057050228, -0.020093325525522232, -0.00385893858037889, -0.017838362604379654, -0.01997252367436886, -0.01449618674814701, -0.0011291590053588152, -0.03242850676178932, -0.022321444004774094, -0.015744470059871674, 0.005073665175586939, -0.02413346618413925, 0.015261263586580753, 0.0060132332146167755, -0.0523473396897316, 0.016952484846115112, 0.004946152679622173, 0.0050199758261442184, -0.017462536692619324, -0.01809338852763176, -0.1678336262702942, -0.0020049703307449818, -0.0025552883744239807, -0.02893868461251259, 0.029019217938184738, 0.006009877193719149, 0.01697932928800583, -0.007241382263600826, -0.01282509882003069, -0.007617209106683731, -0.0012986167566850781, 0.0003542253980413079, -0.023650260642170906, -0.015180729329586029, -0.007234671153128147, -0.012187534943223, -0.011147298850119114, 0.009388965554535389, 0.019717497751116753, 0.026562919840216637, 0.00796619150787592, -0.02565019764006138, 0.03640153631567955, 0.015972649678587914, -0.0016895439475774765, -0.00214087194763124, 0.003513311967253685, 0.01199962105602026, -0.011482859030365944, -0.00934198684990406, -0.010664093308150768, 0.03326069563627243, 0.0268313679844141, -0.0008858780493028462, 0.021797969937324524, 0.02046915329992771, 0.014147204346954823, -0.010180886834859848, -0.00908696185797453, 0.020133592188358307, 0.02915344201028347, 0.020912092179059982, -0.00010633053898345679, -0.0034294219221919775, -0.01763702742755413, 0.04453550651669502, 0.022240908816456795, -0.021542944014072418, 0.0017382001969963312, -0.03057621605694294, 0.027757512405514717, 0.0010595303028821945, 0.01771756075322628, 0.006080344785004854, 0.011355346068739891, 0.00732862763106823, -0.024495871737599373, 0.014845169149339199, 0.01480490155518055, -0.002728101797401905, 0.01697932928800583, -0.013623731210827827, 0.0021240939386188984, 0.016241097822785378, -0.019824877381324768, -0.011959354393184185, -0.030039319768548012, -0.008724557235836983, -0.05465599149465561, 0.015382064506411552, -0.027542755007743835, 0.004620659630745649, 0.017543070018291473, -0.02218721993267536, 0.0004387445515021682, 0.02265700325369835, 0.0044025457464158535, 0.011435880325734615, -0.02624078281223774, -0.016804838553071022, 0.011288234032690525, -0.005023331381380558, -0.029797717928886414, 0.001922758063301444, 0.002317040925845504, -0.0030921841971576214, -0.00792592391371727, -0.0003911369713023305, -0.014281428419053555, -0.022066418081521988, 0.025287792086601257, -0.05470968410372734, 0.005895786918699741, -0.008825224824249744, -0.004868973977863789, 0.021032894030213356, 0.0032868089620023966, -0.035461969673633575, 0.013247904367744923, -0.022106684744358063, 0.018187345936894417, -0.006986356806010008, -0.0209389366209507, -0.0012768052984029055, 0.019032957032322884, 0.01405324786901474, -0.015663934871554375, 0.011623794212937355, 0.0268313679844141, 0.003303586971014738, -0.006583684589713812, -0.0048521957360208035, 0.025677042081952095, 0.022992562502622604, 0.004687771666795015, 0.02054968662559986, 0.008865492418408394, -0.014885435812175274, 0.007972902618348598, -0.010053373873233795, 0.07366210222244263, -0.0018875242676585913, 0.013328438624739647, 0.011120454408228397, -0.005224667489528656, -0.01139561366289854, -0.12949927151203156, -0.04577036574482918, -0.013160658068954945, 0.00791921280324459, 0.00741587346419692, 0.0050870878621935844, -0.03774377331137657, 0.017086708918213844, 0.011449303478002548, 0.026965592056512833, -0.04064301401376724, -0.030173543840646744, -0.021918771788477898, -0.008865492418408394, -0.027972271665930748, 0.012462694197893143, -0.0073890285566449165, 0.010456046089529991, -0.019261136651039124, 0.025663619861006737, 0.014133782126009464, -0.006181012839078903, 0.0005511571071110666, -0.010073507204651833, 0.0027532686945050955, 0.004315299913287163, -0.031059421598911285, 0.003184463130310178, 0.0003275903291068971, 0.00036974504473619163, -0.02054968662559986, -0.02167716808617115, 0.009026560932397842, -0.0099392831325531, 0.0031106399837881327, -0.0009018171695061028, 0.0051541998982429504, -0.005540093407034874, 0.033743903040885925, -0.018066544085741043, -0.005627339240163565, 0.012462694197893143, 0.012019754387438297, -0.009972839616239071, 0.0066642193123698235, -0.020804712548851967, -0.043622784316539764, 0.023569725453853607, -0.01199962105602026, -0.018200768157839775, -0.04456235095858574, -0.008362152613699436, -0.015261263586580753, -0.007362183649092913, 0.030441991984844208, -0.002729779575020075, -0.01570420153439045, 0.025905221700668335, -0.018053121864795685, 0.0015133750857785344, -0.010590270161628723, -0.020079903304576874, -0.002036848571151495, 0.019690653309226036, 0.015556556172668934, 0.0193014033138752, -0.01727462187409401, -0.011462725698947906, 0.04101883992552757, -0.009751370176672935, 0.00132713932543993, 0.015422332100570202, -0.0026928680017590523, 0.007597075775265694, -0.010268132202327251, 0.016804838553071022, -0.014308272860944271, 0.023113364353775978, 0.017677294090390205, -0.007469562813639641, -0.018106810748577118, -0.005271645728498697, 0.006566906813532114, -0.013449239544570446, 0.011160722002387047, 0.016657192260026932, 0.01928798109292984, 0.005342113319784403, 0.018791353330016136, -0.018509482964873314, 0.003731425851583481, 0.0199591014534235, 0.03422710672020912, -0.020898669958114624, -0.03103257715702057, 0.020294660702347755, 0.031354714184999466, -0.0056206281296908855, -0.0033656656742095947, 0.03283117711544037, -0.03946183994412422, -0.002275096019729972, -0.039434995502233505, 0.02699243649840355, -0.01727462187409401, -0.022308019921183586, -0.011294945143163204, 0.017435690388083458, 0.015878694131970406, -0.010771472007036209, -0.01621425338089466, -7.183078560046852e-05, -0.03645522519946098, -0.004365634173154831, -0.029099753126502037, -0.015019659884274006, 0.006365570705384016, -0.012851943261921406, 0.015449176542460918, -0.0333680734038353, 0.013617020100355148, 0.016764571890234947, 0.007852100767195225, 0.023153631016612053, 0.01188553124666214, 0.03234797343611717, -0.014670677483081818, -0.02326101064682007, -0.017435690388083458, 0.024348225444555283, -0.002523410366848111, 0.011556682176887989, 0.009241319261491299, -0.014375384896993637, 0.007597075775265694, 0.014898858964443207, -0.004315299913287163, 0.018428947776556015, -0.02056310884654522, 0.018576594069600105, 0.029287666082382202, 0.021328186616301537, -0.0019663809798657894, -0.025448860600590706, 0.005600494332611561, -0.03205268085002899, -0.005509893409907818, 0.014402230270206928, -0.025730730965733528, 0.03162316232919693, 0.01697932928800583, 0.01312039140611887, -0.0019445695215836167, 0.021207384765148163, -0.022630158811807632, -0.03253588452935219, 0.010234576649963856, -0.02885814942419529, 0.012388871051371098, -0.024549560621380806, -0.03296540305018425, 0.002917693229392171, 0.007986324839293957, 0.026495808735489845, 0.0052515119314193726, -0.00900642666965723, 0.022844916209578514, -0.02430795691907406, -0.021918771788477898, 0.011784862726926804, 0.03387812525033951, -0.007999747060239315, -0.011502992361783981, -0.010972808115184307, 0.0024965654592961073, 0.0016845106147229671, 0.011603660881519318, 0.0031693631317466497, -0.010811739601194859, 0.021663745865225792, -0.013106969185173512, 0.014080092310905457, 0.04327380284667015, -0.03715318813920021, -0.003452911041676998, -0.00014921928232070059, 0.04993131011724472, -0.011456014588475227, 0.008388997055590153, -0.012583495117723942, -0.010717782191932201, -0.005174333229660988, -0.001820412348024547, 0.008080282248556614, -0.008516510017216206, 0.004778372589498758, -0.0011862041428685188, 0.0074225845746695995, 0.0005134065868332982, -0.000255654682405293, 0.003176074242219329, 0.022777805104851723, 0.018254457041621208, 0.0025217325892299414, -0.008482953533530235, -0.008321885019540787, -0.04770319163799286, 0.020147014409303665, -0.017704138532280922, -0.012711008079349995, -0.005409225355833769, 0.029878251254558563, -0.01297274511307478, 0.01136876828968525, 0.015234418213367462, 0.020079903304576874, -0.02712666057050228, -0.010388934053480625, -0.014402230270206928, -0.007778278086334467, -0.005738073959946632, -0.002357308054342866, 0.031139956787228584, -0.0019261137349531054, 0.023636838421225548, 0.017918897792696953, 0.03170369565486908, 0.021100005134940147, 0.028884993866086006, -0.023274432867765427, -0.0002980191202368587, 0.004972997587174177, -0.018563171848654747, -0.00043413060484454036, -0.023274432867765427, -0.01401298027485609, -0.023677105084061623, 0.011623794212937355, 0.0005616433336399496, 0.009865459986031055, -0.009120517410337925, 0.08644022792577744, -0.004701193887740374, 0.006325303576886654, 0.001233182498253882, -0.031972143799066544, -0.010362088680267334, 0.017314890399575233, -0.008013170212507248, 0.006100478582084179, -0.053931184113025665, 0.024388492107391357, -0.008778246119618416, 0.01861686259508133, -0.03406604006886482, -0.003486467059701681, 0.028052804991602898, -0.0007948574493639171, 0.005177688784897327, -0.0047850836999714375, -0.010543291456997395, 0.022334866225719452, 0.005798474885523319, 0.0016903828363865614, -0.01405324786901474, -0.013402261771261692, -0.0082614840939641, -0.0006790892803110182, -0.01121441088616848, -0.017543070018291473, -0.010516447015106678, 0.009073538705706596, 0.018710818141698837, -0.02915344201028347, -0.022173795849084854, -0.003899205708876252, 0.003122384659945965, 0.008355440571904182, -0.0215160995721817, 0.021140271797776222, -0.013999558053910732, -0.008462820202112198, 0.015073349699378014, -0.00678502069786191, -0.02952926978468895, -0.02108658291399479, -0.012214379385113716, -0.015395487658679485, 0.0011400646762922406, -0.052588943392038345], "b84c306f-9568-4e43-93d6-8e8a7e64cc3a": [-0.005972464568912983, 0.020261725410819054, 0.009300578385591507, -0.015559107065200806, -0.001990240067243576, -0.02019195258617401, 0.016228916123509407, 0.0022100210189819336, 0.0024053819943219423, -0.01999659277498722, -0.01943841762840748, 0.004249101504683495, -0.005892226938158274, 0.025983011350035667, 0.03053213097155094, -0.00610154215246439, 0.022815372794866562, 0.006949269212782383, -0.011728635989129543, 0.010758808813989162, -0.036560412496328354, 0.011191393248736858, -0.011449549347162247, -0.02538297325372696, -0.005696865729987621, 0.015587016008794308, 0.0076121012680232525, -0.02888551726937294, 0.00502705667167902, -0.012991505675017834, 0.02009427174925804, -0.0074934889562428, -0.019564006477594376, -0.02994604781270027, -0.036058057099580765, -0.01526606548577547, -0.015935873612761497, 0.006942292209714651, 0.0034763789735734463, -0.007730713114142418, 0.04018854349851608, 0.01901978626847267, -0.01161700114607811, 0.01293568778783083, -0.036058057099580765, 0.020219862461090088, 0.007235333789139986, -0.01536374632269144, -0.006293414626270533, -0.0065445927903056145, 0.022494422271847725, 0.013465953059494495, -0.02596905641257763, -0.0006510579260066152, -0.01391249243170023, -0.01038901787251234, 0.012907778844237328, 0.024936433881521225, -0.0029356477316468954, -0.03329509496688843, 0.011686773039400578, 0.009649436920881271, -0.02497829683125019, -0.01717781275510788, -0.01728944666683674, -0.005477084778249264, 0.00781443901360035, -0.010682059451937675, -0.00784932542592287, 0.001776563934981823, 0.01698245108127594, 0.01477766316384077, 0.004053740296512842, 0.002787382574751973, 0.016745226457715034, -0.01582423970103264, -0.022968869656324387, 0.007444649003446102, -0.016619637608528137, -0.014917206950485706, 0.01459625642746687, -0.015098612755537033, -0.0018123219488188624, 0.02743426337838173, 0.039490826427936554, -0.008142367005348206, 0.01846161298453808, 0.022089745849370956, -0.006917872000485659, -0.02528529241681099, -0.0041130464524030685, 0.0030961227603256702, -0.00700159789994359, -0.000852523953653872, 0.01934073679149151, 0.019187239930033684, -0.020708264783024788, 0.0241131279617548, -0.01351479347795248, -0.01376597210764885, -0.019787276163697243, 0.01776389591395855, -0.028690155595541, -0.000649749708827585, -0.015126521699130535, -0.021531570702791214, 0.012251924723386765, -0.00768187316134572, 0.02994604781270027, 0.01903374120593071, -0.028857607394456863, 0.04320268705487251, 0.01911746710538864, -0.018280206248164177, 0.011484434828162193, -0.02090362459421158, 0.022689782083034515, 0.007772576063871384, 0.0047235493548214436, -0.028773881494998932, 0.019257010892033577, 0.007312082685530186, 0.04222588241100311, -0.03201129287481308, 0.034020718187093735, -0.01508465874940157, -0.01989891193807125, -0.00045744123053736985, -0.019633779302239418, -0.026764454320073128, 0.01579633168876171, 0.027866849675774574, 0.00734696863219142, 0.012405422516167164, 0.024517802521586418, -0.012042609043419361, 0.014135762117803097, -0.004130489192903042, -0.014791617169976234, -0.00840052217245102, 0.020443132147192955, 0.0005346262478269637, 0.02048499509692192, -0.0025902772322297096, -0.022368833422660828, 0.023568907752633095, 0.014973023906350136, -0.016731273382902145, 0.007709781639277935, -0.01170770451426506, -0.01680104434490204, -0.016563819721341133, -0.003308926708996296, -0.014889298006892204, -0.0017913904739543796, 0.01833602413535118, -0.004144443664699793, 0.012258901260793209, 0.00759116979315877, 0.009530825540423393, 0.008854039013385773, -0.004109557718038559, 0.0011486179428175092, 0.007019041106104851, -0.004559585824608803, 0.03647668659687042, 0.004932865034788847, 0.0022414184641093016, -0.006227131467312574, 0.019284920766949654, 0.024908525869250298, -0.0030525154434144497, -0.015963783487677574, 0.0010151794413104653, 0.005351495463401079, -0.008393544703722, 0.01572655886411667, 0.01805693656206131, -0.025843467563390732, -0.023554952815175056, 0.019857048988342285, -0.006621341686695814, 0.011630956083536148, 0.032541558146476746, -0.03575105965137482, -0.0028885516803711653, 0.007828393951058388, -0.03404862806200981, 0.015545152127742767, -0.0004844777868129313, 0.011428617872297764, 0.0265551395714283, -0.03287646174430847, 0.001630915328860283, -0.5921112298965454, 0.014707891270518303, -0.013870629481971264, -0.031090304255485535, -0.006157359573990107, 0.006237597204744816, 0.009740140289068222, 0.008637746796011925, 0.001559399301186204, 0.02839711494743824, -0.010284360498189926, 0.03025304339826107, 0.009370350278913975, -0.0017224907642230392, -0.0014713123673573136, -0.03005768358707428, 0.0007487384136766195, -0.02273164503276348, -0.0004404343490023166, -0.008658678270876408, -0.02128039300441742, 0.031090304255485535, -0.03427189961075783, -0.016061464324593544, 0.010716944932937622, 0.017038268968462944, 0.010068068280816078, -0.011142552830278873, 0.005020079668611288, 0.03164847940206528, -0.014268329367041588, -0.00453516561537981, -0.0130333686247468, 0.022661874070763588, 0.047668080776929855, 0.0036106896586716175, -0.026010919362306595, 0.011135576292872429, 0.008107480593025684, 0.04217006266117096, -0.022592103108763695, -0.010270405560731888, 0.006356209050863981, 0.01777784898877144, 0.0028484328649938107, -0.0037362787406891584, 0.031090304255485535, 0.021098986268043518, 0.013228729367256165, -0.03189965710043907, 0.020666401833295822, -0.005243349354714155, 0.008972651325166225, 0.003366488264873624, 0.0021193178836256266, -0.004713083617389202, 0.005180554464459419, -0.01903374120593071, 0.01600564643740654, -0.030894944444298744, 0.0030647253151983023, 0.014212511479854584, -0.005986418575048447, -0.0076260557398200035, -0.008533088490366936, 0.013047322630882263, -0.00420026108622551, -0.018991878256201744, -0.008421453647315502, -0.023945674300193787, 0.010689036920666695, 0.01981518603861332, -0.020805945619940758, 0.0009113939013332129, 0.016856862232089043, 0.02841106802225113, 0.014114830642938614, 0.00734696863219142, -0.004224681295454502, 0.033713724464178085, 0.02253628522157669, 0.007444649003446102, -0.008170275017619133, -0.0052607920952141285, 0.034885890781879425, 0.013054300099611282, 0.008630769327282906, -0.015503289178013802, 0.014652073383331299, 0.01098207850009203, 0.0007073114393278956, 0.009956433437764645, -0.014024127274751663, -0.024755027145147324, -0.025801604613661766, 0.026415595784783363, 0.006282948888838291, 0.011268142610788345, -0.011644910089671612, -0.031174032017588615, -0.012189130298793316, -0.020219862461090088, -0.006481798365712166, -0.015042795799672604, -0.011519321240484715, 0.004172352608293295, 0.007256265264004469, 0.01795925572514534, 0.02019195258617401, -0.02938787452876568, -0.017401082441210747, -0.023275865241885185, 0.01727549359202385, 0.01502884179353714, 0.00280482554808259, -0.021810658276081085, 0.021015260368585587, 0.003844425082206726, 0.0032583421561867, -0.02282932586967945, -0.0015471891965717077, 0.033629998564720154, 0.01371015515178442, -0.009293600916862488, 0.03153684362769127, -0.010235520079731941, 0.0013021158520132303, -0.041332803666591644, -0.03360208868980408, -0.005494527518749237, 0.0023792176507413387, 0.013689222745597363, 0.014359032735228539, -0.020164044573903084, 0.02097339741885662, -0.0035583607386797667, 0.012670555151998997, -0.01815461739897728, 0.008260978385806084, -0.021057123318314552, -0.020261725410819054, 0.004106069449335337, 0.003809539135545492, -0.038095392286777496, -0.026987724006175995, -0.04392831400036812, -0.018489520996809006, -0.004154909402132034, 0.005616628099232912, 0.013256638310849667, -0.009782003238797188, 0.0022937471512705088, -0.025020159780979156, 0.029304146766662598, -0.003000186523422599, -0.014400895684957504, -0.005550344940274954, -0.004838672932237387, -0.004468882456421852, -0.021252484992146492, -0.002288514282554388, 0.018015073612332344, -0.024908525869250298, 0.016438230872154236, -0.030420495197176933, -0.016242871060967445, 0.0025623685214668512, 0.017987165600061417, -0.012551942840218544, -0.039295464754104614, -0.009677345864474773, 0.014121808111667633, -0.03335091099143028, -0.015224202536046505, 0.0011233256664127111, 0.027099359780550003, 0.013696200214326382, 0.021629251539707184, -0.017610397189855576, 0.0022274639923125505, 0.013347341679036617, -6.323067646007985e-05, 0.0036316211335361004, -0.02322004921734333, 0.0063283005729317665, 0.01097510103136301, 0.014268329367041588, -0.03982573375105858, -0.015670740976929665, 0.001638764631934464, -0.0019623313564807177, 0.02098735049366951, -0.021126894280314445, -0.014275305904448032, -0.010068068280816078, 0.03237410634756088, -0.0012192619033157825, 0.0009733163169585168, 0.022857235744595528, 0.0322345606982708, 0.024531757459044456, -0.0037188357673585415, 0.0031833373941481113, -0.029220420867204666, -0.0027821497060358524, -0.005773614626377821, 0.020847808569669724, 0.012307741679251194, 0.01913142204284668, -0.013040346093475819, 0.002530971309170127, -0.014219488948583603, -0.01541956327855587, -0.010214588604867458, 0.005588719621300697, 0.04021645337343216, 0.010968123562633991, 0.015545152127742767, -0.0006606515380553901, -0.011254187673330307, 0.013877606950700283, 0.005361961200833321, 0.0037153472658246756, 0.023568907752633095, -0.015614924021065235, -0.008909855969250202, 0.012419376522302628, 0.017791803926229477, -0.011498389765620232, -0.03628132492303848, 0.01297057420015335, 0.012021677568554878, -0.0158102847635746, -0.0049084448255598545, 0.03541615605354309, 0.019550053402781487, 0.039686188101768494, -0.011784453876316547, 0.047584354877471924, -0.007430694531649351, -0.031955476850271225, 0.04194679483771324, 0.018517430871725082, -0.01103091798722744, 0.031955476850271225, 0.008128412067890167, 0.03999318554997444, 0.03122984804213047, -0.02155948057770729, -0.001481778221204877, 0.014372986741364002, 0.022717691957950592, -0.014275305904448032, 0.008965673856437206, -0.018782563507556915, 0.0020495459903031588, 0.01541956327855587, -0.011435594409704208, 0.03443935140967369, 0.014819526113569736, 0.02079199068248272, 0.0031781045254319906, 0.005546856671571732, -0.018587201833724976, 0.003844425082206726, 0.0010387273505330086, 0.0003468965587671846, -0.022968869656324387, 0.0025710901245474815, 0.01787552982568741, 0.003987457137554884, -0.052747465670108795, -0.032457832247018814, -0.00800282321870327, 0.037230223417282104, 0.009356395341455936, 0.041444435715675354, 0.03150893747806549, 0.014400895684957504, 0.00301414099521935, -0.007106255739927292, -0.016535911709070206, 0.02185252122581005, 0.025801604613661766, -0.02264791913330555, -0.018475567921996117, -0.025327155366539955, 0.0030280952341854572, 0.002616441808640957, 0.004510745406150818, -0.014184602536261082, 0.02028963342308998, -0.004252589773386717, 0.0009942478500306606, 0.00387931102886796, 0.005047988146543503, 0.04683081805706024, 0.001619577407836914, 0.011798407882452011, -0.022285105660557747, -0.0014399151550605893, -0.0011747822863981128, -0.026178371161222458, 0.024420123547315598, 0.032653193920850754, 0.01776389591395855, 0.016075417399406433, -0.01375899463891983, 0.010682059451937675, -0.03628132492303848, 0.0038200048729777336, -0.027559852227568626, 0.0009192432044073939, -0.00036630185786634684, 0.032541558146476746, -0.019452372565865517, 0.03231828659772873, 0.005278235301375389, 0.002199555281549692, 0.011791430413722992, -0.028857607394456863, -0.01361945178359747, -0.028690155595541, 0.0322345606982708, 0.05403126776218414, 0.03446725755929947, -0.006645761895924807, 0.00784932542592287, -0.032262470573186874, -0.00421770429238677, -0.00610154215246439, -0.02927623875439167, 0.022019973024725914, -0.004043274559080601, 0.007835370488464832, 0.013396182097494602, 0.009844797663390636, 0.01755457930266857, -0.005222417879849672, 0.016912680119276047, -0.030587948858737946, -0.03139730170369148, 0.02986232191324234, -0.03750930726528168, 0.015642832964658737, -0.0037153472658246756, 0.024727119132876396, 0.040439724922180176, -0.011268142610788345, 0.01913142204284668, 0.017735986039042473, 0.00429445318877697, 0.01747085340321064, -0.01351479347795248, -0.005522436462342739, 0.004754946567118168, 0.0316205695271492, 0.0452958382666111, -0.03131357580423355, 0.01989891193807125, 0.0299739558249712, 0.03513706848025322, 0.022131608799099922, -0.024866662919521332, 0.01786157488822937, 0.01015179418027401, 0.014735800214111805, -0.009126149117946625, 0.029527416452765465, -0.01107278186827898, 0.02038731426000595, 0.013842721469700336, -0.0006327428272925317, -0.0047235493548214436, 0.019103514030575752, -0.008233070373535156, -0.02245255932211876, -0.01943841762840748, 0.018419750034809113, 0.016787089407444, -0.013738063164055347, -0.00627248315140605, 0.007053927052766085, -0.0013404903002083302, 0.007898165844380856, -0.005173577461391687, 0.015112567692995071, -0.014749754220247269, 0.0299739558249712, -0.042616602033376694, 0.006031770259141922, 0.04244915023446083, -0.002443756675347686, -0.026890043169260025, -0.007605123799294233, 0.004322361666709185, 0.006555058527737856, -0.005236371885985136, 0.030894944444298744, 0.019145376980304718, 0.013479907996952534, 0.012175175361335278, 0.015461426228284836, 0.014331123791635036, 0.024922478944063187, -0.046607550233602524, -0.01804298162460327, -0.02019195258617401, 0.0012776957591995597, 0.009579665027558804, 0.014666028320789337, -0.011651887558400631, -0.025634152814745903, 0.0073190596885979176, -0.02087571658194065, -0.0022431628312915564, -0.011044872924685478, -0.010088999755680561, -0.0005921879783272743, 0.023443318903446198, 0.0023181673604995012, 0.030867034569382668, 0.011247211135923862, -0.009405235759913921, -2.3588858311995864e-05, 0.009495939128100872, 0.023889858275651932, 0.0022030440159142017, -0.03092285245656967, -0.02955532632768154, 0.01620100811123848, 0.018029028549790382, -0.019480280578136444, 0.012489148415625095, 0.03843029588460922, -0.03220665454864502, 0.008274933323264122, 0.02419685386121273, -0.01716385781764984, 0.01882442645728588, 0.02088967151939869, 0.030029773712158203, -0.011596069671213627, -0.032848555594682693, -0.009293600916862488, -0.020554766058921814, 0.004789832513779402, 0.01204958651214838, -0.013347341679036617, 0.003907219506800175, -0.0075493063777685165, -0.029220420867204666, -0.006080610677599907, 0.0012576363515108824, 0.025131795555353165, -0.0032478764187544584, -0.0002762526273727417, -0.02986232191324234, -0.005986418575048447, 0.02947160042822361, -0.0164800938218832, 0.005037522409111261, -0.0010387273505330086, -0.00931453239172697, 0.00867960974574089, 0.01727549359202385, 0.016828952357172966, -0.00478285551071167, -0.039574552327394485, -0.028187798336148262, 0.011686773039400578, 0.006935314740985632, 0.005696865729987621, 0.0332113653421402, 0.002940880600363016, -0.01834997721016407, -0.028745973482728004, -0.018322069197893143, -0.00018413209181744605, -0.02058267593383789, 0.003701393026858568, 0.01991286687552929, 0.01854533888399601, 0.029499508440494537, 0.03337882086634636, 0.010647173970937729, 0.028773881494998932, -0.001819299184717238, -0.012419376522302628, 0.010765785351395607, -0.015684695914387703, 0.003062981180846691, -0.018405795097351074, -0.006600410211831331, 0.013256638310849667, -0.006150382570922375, -0.00021476625988725573, -0.007479534950107336, 0.0013465953525155783, 0.020247770473361015, 0.0005075897206552327, -0.014945114962756634, -0.027252856642007828, -0.02528529241681099, -0.01836393214762211, 0.004374690819531679, 0.005550344940274954, 0.011903065256774426, -0.01631264202296734, 0.011728635989129543, 0.0275319442152977, -0.007577215321362019, 0.011944929137825966, -0.0047723897732794285, 0.0018384864088147879, 0.00834470521658659, 0.0278947576880455, 0.010375063866376877, 0.025592288002371788, 0.004699129145592451, 0.0017216186970472336, -0.038988471031188965, -0.0011023940751329064, -0.007716758642345667, -0.00238968338817358, 0.020373359322547913, 0.006216665729880333, 0.0063143461011350155, -0.00848424807190895, -0.007165561895817518, -0.03349045291543007, -0.011435594409704208, 0.02351308986544609, -0.003997922874987125, -0.028522703796625137, -0.025341110303997993, -0.02489457093179226, -0.005759660620242357, 0.010905329138040543, 0.019745413213968277, -2.1749172447016463e-05, 0.019368646666407585, -0.028271524235606194, -0.023652633652091026, 0.0026408617850393057, 0.0020844319369643927, 0.02361077070236206, 0.012265878729522228, 0.05023568123579025, 0.019689595326781273, -0.009384304285049438, -0.009523848071694374, -0.017345264554023743, 0.010123885236680508, 0.0036106896586716175, 0.009391281753778458, 0.026136508211493492, 0.00030939423595555127, -0.0070050866343081, -0.015880057588219643, -0.0047584353014826775, -0.010556470602750778, -0.03974200412631035, 0.030029773712158203, -0.009000559337437153, -0.009084286168217659, -0.01628473401069641, 0.02136411890387535, -0.03533243015408516, 0.01137279998511076, -0.03170429542660713, 0.004008388612419367, -0.008867993019521236, 0.0014765452360734344, -0.017526671290397644, 0.033016007393598557, 0.022815372794866562, 0.01901978626847267, -0.009977364912629128, -0.004674709402024746, 0.003638598369434476, -0.01677313633263111, -0.03399281203746796, 0.0021193178836256266, 0.002703656442463398, 0.012161221355199814, -0.036839500069618225, -0.005337540991604328, 0.020136136561632156, -0.015070704743266106, 0.005117760039865971, -0.007772576063871384, 0.010137839242815971, 0.02955532632768154, -0.005846875254064798, 0.016787089407444, -0.007106255739927292, -0.010123885236680508, -0.0036944157909601927, 0.008016777224838734, -0.013549679890275002, -0.00255190278403461, -0.010444835759699345, -0.013012437149882317, 0.02799243852496147, 0.007605123799294233, -0.011344891041517258, -0.0064224922098219395, -0.005466619040817022, 0.007193470373749733, -0.019647732377052307, -0.017819711938500404, -0.00717253889888525, -0.035778969526290894, -0.025438791140913963, -0.031062396243214607, -0.004036297556012869, 0.01765226013958454, -0.010382040403783321, -0.021001305431127548, 0.013849698007106781, 0.04203052073717117, -0.020554766058921814, 0.018210435286164284, -0.0140101732686162, 0.002250139834359288, -0.03170429542660713, 0.004252589773386717, 0.030811218544840813, -0.00907730869948864, 0.010549493134021759, -0.03658832237124443, -0.025787649676203728, 0.0010082022054120898, -0.015587016008794308, 0.011910042725503445, 0.0009506404749117792, -0.01784762181341648, -0.014735800214111805, -0.002602487336844206, 0.01327059231698513, 0.005149157252162695, -0.04666336625814438, 0.002375729149207473, -0.023080505430698395, 0.005337540991604328, 0.016159143298864365, -0.005096828565001488, 0.021447844803333282, -0.0075632608495652676, 0.0019379111472517252, 0.0264295507222414, -0.01038901787251234, -0.009872706606984138, -0.009335463866591454, -0.028829699382185936, -0.009147080592811108, -0.022606056183576584, -0.020526858046650887, 0.006945780478417873, -0.00849820300936699, 0.011163484305143356, 0.0001662530703470111, -0.00202512601390481, -0.02362472377717495, 0.0028623873367905617, 0.020568720996379852, 0.029527416452765465, -0.01579633168876171, -0.0041130464524030685, 0.002750752493739128, 0.00858192890882492, -0.01934073679149151, -0.038207028061151505, 0.014624165371060371, 0.03806748241186142, 0.009691299870610237, -0.011212324723601341, -0.015754468739032745, -0.003446725895628333, -0.016326596960425377, -0.005578253883868456, 0.014861389063298702, 0.03256946802139282, 0.01536374632269144, 0.011358845978975296, -0.0075632608495652676, 0.013675268739461899, 0.005843386519700289, 0.004552608821541071, -0.011756544932723045, -0.0029722778126597404, 0.01756853424012661, 0.04959378018975258, 0.01844765804708004, 0.002855410100892186, -0.012872893363237381, -0.012831030413508415, -0.013542702421545982, 0.0013021158520132303, 0.015154430642724037, 0.024908525869250298, -0.003308926708996296, -0.012000746093690395, -0.036169689148664474, 0.01728944666683674, 0.032346196472644806, 0.0027490081265568733, -0.014470667578279972, 0.002213509753346443, -0.027490081265568733, -0.006502729840576649, 0.01219610683619976, -0.004378179088234901, -0.014959069900214672, -0.0296669602394104, 0.004929376300424337, -0.0003514753479976207, -0.01557306107133627, -0.0241131279617548, 0.0289971511811018, -0.03025304339826107, -0.00436771335080266, -0.01874070055782795, 0.003823493607342243, 0.03569524362683296, 0.003532196395099163, 0.010019227862358093, -0.004259567242115736, 0.0003822185390163213, -0.016145190224051476, -0.005354984197765589, 0.046607550233602524, 0.017526671290397644, -0.007947005331516266, 0.01014481671154499, 0.02792266570031643, -0.013528748415410519, 0.010856488719582558, -0.02331772819161415, -0.027252856642007828, -0.02958323433995247, 0.009391281753778458, -0.022913051769137383, -0.00751442089676857, -0.0017503994749858975, 0.016940588131546974, -0.006241085473448038, 0.00436422461643815, -0.038095392286777496, -0.014582302421331406, -0.007709781639277935, 0.03848611190915108, -0.033323001116514206, -0.012098426930606365, 0.0015899244463071227, 0.018517430871725082, 0.013989241793751717, -0.012244947254657745, -0.018098799511790276, 0.2086455374956131, -0.02792266570031643, 0.015154430642724037, 0.013389204628765583, -0.011163484305143356, 0.025313202291727066, 0.007221379317343235, -0.02761567011475563, -0.010647173970937729, 0.00485611567273736, -0.026331869885325432, 0.0061294506303966045, -0.0269179530441761, 0.012070517987012863, -0.0023617746774107218, -0.0332113653421402, -0.008791244588792324, -0.05210556462407112, -0.019368646666407585, -0.006405049469321966, 0.004074671771377325, 0.027699396014213562, -0.03502543270587921, -0.030587948858737946, 0.014484621584415436, -0.005473596043884754, -0.047668080776929855, -0.0036839500535279512, 0.012224015779793262, 0.02107107825577259, -0.028327342122793198, -0.015098612755537033, 0.01146350335329771, -0.007430694531649351, -0.0332113653421402, 0.0024228249676525593, 0.03736976534128189, -0.009523848071694374, -0.021782750263810158, -0.011944929137825966, 0.0060561904683709145, -0.03583478555083275, -0.04155607149004936, -4.50041625299491e-06, 0.005313121248036623, 0.014038082212209702, 0.008763335645198822, -0.020652446895837784, -0.0012210061540827155, 0.04247706010937691, -0.011393731459975243, -0.004849138669669628, 0.023861948400735855, 0.023554952815175056, 0.0020007058046758175, 0.0030437938403338194, -0.011672819033265114, -0.003582780947908759, 0.03229038044810295, 0.02888551726937294, -0.014624165371060371, 0.04080253839492798, -0.032457832247018814, 0.03399281203746796, -0.017498763278126717, 0.01668941043317318, -0.007933051325380802, -0.007779553532600403, 0.022494422271847725, -0.02372240461409092, -9.811656491365284e-05, -0.014268329367041588, 0.011344891041517258, 0.03463471308350563, -0.048365797847509384, -0.014582302421331406, 0.03843029588460922, 0.00971920881420374, -0.0034868447110056877, 0.03561151772737503, -0.03873729333281517, -0.00477936677634716, -0.005417778622359037, -0.020764080807566643, -0.027113312855362892, -0.03072749264538288, -0.020024500787258148, 0.0074167400598526, 0.020247770473361015, -0.001957098487764597, -0.007730713114142418, -0.018615111708641052, -0.014861389063298702, 0.010535539127886295, -0.0030926340259611607, 0.01317988894879818, 0.021336210891604424, 0.020708264783024788, -0.014638119377195835, 0.009216852486133575, -0.010026204399764538, 0.03653250262141228, -0.0019065139349550009, -0.015405609272420406, -0.010130862705409527, 0.0025030625984072685, -0.0004345473716966808, 0.021350163966417313, -0.017415035516023636, -0.0296669602394104, -0.014973023906350136, -0.040662992745637894, -0.0037153472658246756, -0.010444835759699345, 0.018405795097351074, -0.015963783487677574, -0.02684818021953106, -0.016647547483444214, 0.001023900811560452, -0.00824702437967062, 0.021740887314081192, -0.032848555594682693, 0.018070891499519348, 0.009216852486133575, 0.0022326968610286713, -0.003392652841284871, -0.06832052767276764, 0.0031030999962240458, 0.013186866417527199, -0.009628505446016788, 0.018112754449248314, -0.0355277918279171, -0.0005948044126853347, -0.03056003898382187, 0.008442385122179985, -0.021126894280314445, -0.03251364827156067, -0.001592540880665183, -0.012084471993148327, -0.0014538695104420185, -0.011798407882452011, 0.016354504972696304, -0.01180538535118103, -0.009684323333203793, 0.020736172795295715, -0.007772576063871384, 0.012154243886470795, -0.012586829252541065, 0.0035723152104765177, 0.0002564112946856767, -0.05221720039844513, -0.002096642041578889, 0.0006872520316392183, -0.02295491471886635, -0.025410881265997887, -0.011289074085652828, -0.005871295463293791, -0.02282932586967945, 0.02538297325372696, -0.0024175920989364386, -0.02048499509692192, 0.0008861016249284148, 0.011979814618825912, -0.0018733722390607, -0.01628473401069641, -0.033629998564720154, -0.17660632729530334, 0.009677345864474773, 0.009188943542540073, -0.03915592283010483, 0.009614551439881325, 0.018684882670640945, 0.03803957253694534, -0.00453516561537981, -0.016075417399406433, 0.013040346093475819, -0.016912680119276047, 0.007960960268974304, -0.03349045291543007, -0.025438791140913963, -0.041332803666591644, -0.02001054584980011, -0.0032810179982334375, -0.0044653937220573425, 0.02497829683125019, 0.02107107825577259, 0.05026359111070633, -0.02645745873451233, 0.02400149218738079, 0.03700695186853409, -0.020164044573903084, -0.011247211135923862, -0.008819152601063251, -0.026038827374577522, -0.01628473401069641, -0.017247583717107773, 0.003725813003256917, 0.005149157252162695, 0.012342628091573715, -0.02204788289964199, -0.005888738203793764, 0.018894197419285774, 0.0032129904720932245, -0.013577587902545929, -0.0023635190445929766, 0.0246015302836895, 0.013835744000971317, 0.023457271978259087, -0.021196667104959488, 0.014156694523990154, -0.0035618494730442762, 0.03427189961075783, 0.025131795555353165, -0.041444435715675354, -0.02040126919746399, -0.0252713393419981, -0.0014748009853065014, -0.01428926084190607, 0.028829699382185936, 0.005142180249094963, 0.01735921949148178, -0.010668105445802212, 0.006858565844595432, 0.011568160727620125, 0.02313632145524025, 0.004074671771377325, 0.017694123089313507, -0.027350537478923798, -0.013661314733326435, 0.009523848071694374, -0.019494235515594482, -0.0026949350722134113, -0.01784762181341648, 0.00519450893625617, -0.010856488719582558, 0.013870629481971264, -0.011910042725503445, 0.0025030625984072685, 0.011205348186194897, -0.017987165600061417, 0.019368646666407585, 0.015252111479640007, -0.007570238318294287, 0.022675829008221626, -0.02888551726937294, -0.025620197877287865, 0.008281909860670567, 0.0149869779124856, -0.005651514045894146, -0.008944742381572723, 0.0014434036565944552, -0.0011739102192223072, -0.008867993019521236, 0.026666773483157158, -0.006275971420109272, 0.0017913904739543796, 0.027280766516923904, -0.025410881265997887, -0.008316796272993088, -0.02079199068248272, 0.01557306107133627, 0.033825360238552094, 0.020331496372818947, -0.038290753960609436, 0.009579665027558804, -0.011303028091788292, 0.0020216372795403004, -0.0149869779124856, -0.004503768403083086, -0.017512716352939606, 0.0054247560910880566, -0.0015550384996458888, -0.0033996300771832466, 0.008874970488250256, 0.030671674758195877, -0.005773614626377821, 0.005906180944293737, -0.008428431116044521, 0.01787552982568741, 0.017401082441210747, 0.009209875017404556, 0.022410696372389793, 0.002733309520408511, -0.016033554449677467, 0.014456712640821934, -0.022075790911912918, 0.05511970445513725, 0.007863279432058334, 0.000617916346527636, -0.004458416718989611, -0.002701912075281143, 0.01872674562036991, -0.101810984313488, -0.029890229925513268, 0.014282283373177052, 0.010619265027344227, -0.00867960974574089, 0.02295491471886635, -0.028564566746354103, 0.01728944666683674, 0.007326036691665649, 0.02809011936187744, -0.006778328213840723, -0.017833666875958443, -0.00609805341809988, 0.02157343365252018, 0.00833772774785757, 0.019354691728949547, -0.02469920925796032, 0.007067881058901548, -0.008560997433960438, 0.03142520785331726, 0.025020159780979156, -0.005170088727027178, -0.022606056183576584, -0.008316796272993088, -0.012977550737559795, 0.018112754449248314, -0.015126521699130535, 0.023275865241885185, 0.02107107825577259, -0.01680104434490204, -0.015168384648859501, 0.0027054008096456528, 0.012949642725288868, -0.026317914947867393, -0.013661314733326435, 0.009942478500306606, -0.004754946567118168, -0.015838194638490677, 0.019661687314510345, -0.027755213901400566, 0.002947857603430748, -0.004870070144534111, 0.009816889651119709, -0.020024500787258148, -0.014024127274751663, -0.016061464324593544, -0.025299247354269028, 0.014386940747499466, 0.006569012999534607, -0.011819339357316494, -0.025550425052642822, -0.003499054815620184, -0.01087742019444704, -0.01112162135541439, 0.031481027603149414, -0.033323001116514206, -0.012286810204386711, 0.0024489895440638065, -0.0164800938218832, -0.0174568984657526, -2.9434970201691613e-05, 0.01980123110115528, -0.00759116979315877, 0.0037362787406891584, 0.006656227633357048, 0.015098612755537033, -0.024713164195418358, -0.00223095272667706, 0.024461986497044563, -0.0010317502310499549, -0.0024908524937927723, 0.011240233667194843, -0.020624538883566856, 0.051770661026239395, 0.0035792922135442495, 0.02058267593383789, 0.012077495455741882, 0.014205534011125565, 0.0161172803491354, -0.007898165844380856, -0.006419003941118717, -0.020080318674445152, -0.005306143779307604, -0.020457085222005844, -0.004957284778356552, 0.0028362227603793144, -0.003966525662690401, 0.012286810204386711, 0.005798034835606813, -0.02196415700018406, 0.0004910188727080822, 0.014763708226382732, 0.04256078600883484, -0.01268450915813446, -0.00980991218239069, 0.0011032662587240338, 0.01557306107133627, 0.009363372810184956, 0.011910042725503445, 0.025034114718437195, -0.0456586517393589, 0.003994434606283903, -0.057129133492708206, 0.03427189961075783, -0.01618705317378044, -0.029443690553307533, 0.003600223921239376, -0.0008420581580139697, 0.014624165371060371, 0.005253815092146397, 0.00634574331343174, 0.010333200916647911, -0.045519109815359116, 0.010012250393629074, -0.0247829370200634, -0.006038747727870941, 0.012998482212424278, -0.012510079890489578, 0.02186647616326809, -0.036337144672870636, 0.0017460387898609042, 0.016647547483444214, -0.015210247598588467, -0.0013204308925196528, 0.01786157488822937, 0.003642086870968342, -0.02782498486340046, -0.027378445491194725, 0.013103140518069267, 0.03904428705573082, -0.00907730869948864, -0.016466140747070312, 0.025620197877287865, 0.0008490353357046843, -0.00955873355269432, 0.010675081983208656, 0.010423904284834862, -0.004193284083157778, 0.019787276163697243, 0.014805572107434273, 0.005327075254172087, -0.0018768608570098877, -0.0299739558249712, -0.01639636792242527, 0.011344891041517258, -0.016787089407444, 0.004646800458431244, -0.020122181624174118, 0.01620100811123848, 0.016856862232089043, -0.006712045054882765, 0.017638305202126503, 0.01794530265033245, 0.01950819045305252, -0.022913051769137383, -0.00898660533130169, 0.023401454091072083, -0.026610957458615303, 0.00337869836948812, -0.010702990926802158, -0.004946819040924311, 0.0037537217140197754, 0.03667204827070236, 0.011379777453839779, 0.033239275217056274, -0.013835744000971317, 0.0014059013919904828, -0.0153218824416399, -0.0006715533672831953, 0.013075231574475765, 0.01680104434490204, -0.002632140414789319, -0.03083912655711174, -0.014568347483873367, 0.0264295507222414, 0.01590796560049057, 0.031983382999897, -0.0005843386752530932, -0.0417514331638813, -0.004559585824608803, -0.013800857588648796, 0.003485100343823433, 0.0312577560544014, -0.0250899326056242, -0.017024314031004906, 0.008630769327282906, 0.031676389276981354, 0.004078160505741835, 0.0002745083475019783, -0.021587388589978218, 0.003392652841284871, 0.0037502332124859095, -0.005431733094155788, -0.0034048629458993673, -0.021615296602249146, -0.0002418028307147324, -0.00025335876853205264, 0.020652446895837784, -0.02448989450931549, -0.011428617872297764, 0.008881947956979275, -0.008658678270876408, -0.010186679661273956, -0.007374877110123634, -0.015112567692995071, 0.02839711494743824, -0.026778409257531166, 0.026220234110951424, 0.019061651080846786, 0.005525924731045961, 0.013284547254443169, 0.04136070981621742, -0.0005965487216599286, -0.006991132162511349, 0.0006994620780460536, 0.012021677568554878, -0.01805693656206131, 0.007863279432058334, -0.00668762531131506, -0.00759116979315877, -0.016521956771612167, 0.0006541104521602392, 0.028690155595541, 0.017610397189855576, 0.03642087057232857, 0.002755985362455249, 0.011296051554381847, 0.012747304514050484, 0.011623978614807129, -0.022089745849370956, -0.007688850164413452, 0.012147266417741776, -0.017149902880191803, -0.0013544446555897593, -0.018112754449248314, -0.005794546101242304, -0.0058259437792003155, -0.006234108470380306, 0.012224015779793262, -0.002339098835363984, -0.001472184550948441, 0.07317664474248886, -0.0010875676525756717, -0.014554393477737904, 0.008274933323264122, -0.0345509871840477, 0.004224681295454502, 0.0014059013919904828, -0.012579851783812046, -0.005839897785335779, -0.019591916352510452, 0.03346254676580429, 0.004116535186767578, 0.009244760498404503, -0.04225378856062889, 0.002150715095922351, 0.005993396043777466, -0.0021018749102950096, 0.016828952357172966, -0.004273521713912487, -0.0011739102192223072, 0.0009192432044073939, 0.01610332727432251, 0.020345451310276985, -0.005846875254064798, -0.0010282616131007671, -0.006366674788296223, 0.010026204399764538, -0.0029199488926678896, -0.01805693656206131, -0.024057310074567795, 0.02439221367239952, 0.001394563470967114, -0.042197972536087036, -0.022396741434931755, 0.000689432374201715, 0.01361247431486845, 0.0061643365770578384, -0.0024193364661186934, 0.012230993248522282, -8.089165930869058e-05, -0.029527416452765465, 0.013786903582513332, -0.031760115176439285, -0.05805012211203575, -0.009586642496287823, -0.01659172959625721, -0.011177439242601395, -0.0029339033644646406, -0.04624473676085472], "8e899819-777f-4540-b925-c8eaa4b25258": [0.015432299114763737, 0.01663198322057724, -0.00715038925409317, -0.0026992890052497387, -0.016318429261446, -0.01343509741127491, -0.014723394997417927, -0.0028100553900003433, -0.0040966481901705265, -0.011751450598239899, 0.003926238510757685, -0.000480129208881408, 0.007695700507611036, 0.01907224953174591, 0.017886197194457054, 0.02263040281832218, 0.028765151277184486, 0.006376729346811771, 0.009052161127328873, -0.005858683958649635, -0.03419099375605583, 0.002506726188585162, -0.03678122162818909, -0.02354379929602146, 0.0040864236652851105, 0.023870985954999924, 0.011506060138344765, -0.036753956228494644, 0.0011255558347329497, -0.010320008732378483, 0.008602280169725418, -0.005245209205895662, -0.021580679342150688, 0.00600523641332984, -0.022248685359954834, -0.012671662494540215, -0.005252025555819273, -0.029364993795752525, 0.0032139262184500694, -0.011335650458931923, 0.0387716069817543, 0.017518112435936928, -0.02119896188378334, -0.007191287819296122, -0.001255919225513935, 0.0350634902715683, 0.002060252707451582, 0.020912673324346542, -0.018785960972309113, -0.017109129577875137, 0.010763074271380901, 0.018840491771697998, -0.035554271191358566, 0.008527299389243126, -0.0031934771686792374, 0.0026941767428070307, -0.0011800868669524789, 0.03151896968483925, -0.008731790818274021, -0.01937217079102993, 0.0050645750015974045, 0.022071460261940956, -0.02333930693566799, -0.028846947476267815, -0.024675318971276283, 0.006850468460470438, -0.009345266036689281, 0.015841282904148102, -0.023557431995868683, -0.008595462888479233, 0.018881389871239662, 0.028465230017900467, 0.03113725408911705, 0.018431508913636208, 0.020149238407611847, -0.027020156383514404, -0.007688884157687426, -0.009836046025156975, -0.0036808487493544817, 0.0013641293626278639, 0.008404604159295559, 0.012065003626048565, -0.034845367074012756, 0.031109988689422607, 0.012228596955537796, 0.009168040007352829, 0.01364640612155199, 0.020121973007917404, 0.02038099616765976, -0.02009470760822296, -0.009140774607658386, 0.009829229675233364, -0.018513305112719536, 0.01847240701317787, 0.007313982583582401, 0.025820471346378326, -0.016604717820882797, 0.014164451509714127, -0.024511726573109627, 0.02898327447474003, -0.014777925796806812, 0.01794072985649109, -0.014505269937217236, -0.0026209005154669285, -0.012289945036172867, -0.018390610814094543, 0.022371379658579826, -0.010919851250946522, 0.00237210257910192, -0.0006317938095889986, -0.010224579833447933, 0.029583116993308067, 0.014777925796806812, -0.03405466675758362, 0.020708182826638222, -0.02841069921851158, 0.022235052660107613, -0.021049002185463905, 0.017177293077111244, -0.0186496339738369, 0.012514885514974594, -0.006850468460470438, 0.024266336113214493, -0.0007664174772799015, 0.021826069802045822, -0.01693190447986126, -0.014777925796806812, 0.007722965907305479, -0.022848527878522873, -0.025084301829338074, 0.015377768315374851, 0.014273513108491898, -0.0031457622535526752, 0.004798735957592726, -0.0017927096923813224, 0.02950132079422474, -0.012589865364134312, 0.0033229885157197714, -0.008104683831334114, -0.03948051109910011, 0.027456404641270638, 0.021730640903115273, -0.0075252908281981945, 0.013230605982244015, 0.012617131695151329, 0.0025595531333237886, -0.012399006634950638, 0.014709762297570705, 0.018404243513941765, -0.02606586180627346, -0.010838054120540619, 0.014259880408644676, 0.0154731972143054, 0.010204130783677101, -0.011969574727118015, 0.015350501984357834, -0.012235413305461407, 0.01593671180307865, -0.0018608735408633947, -0.012637580744922161, 0.004597652703523636, 0.02129439078271389, -0.027360975742340088, 0.012242229655385017, -0.019712990149855614, 0.026597540825605392, -0.01273300964385271, -0.005367904435843229, -0.016086671501398087, 0.027551833540201187, 0.01317607518285513, 0.01987658254802227, -0.048532672226428986, 0.01785893179476261, -0.0005184714100323617, 0.005592844914644957, 0.012944318354129791, 0.010149599052965641, -0.040298476815223694, -0.02373465709388256, 0.0040864236652851105, -0.0007195547805167735, 0.025179730728268623, 0.03154623508453369, -0.03509075567126274, 0.0008252087864093482, 0.015105112455785275, 0.006107482127845287, 0.0054360684007406235, 0.00785247702151537, 0.012092269957065582, 0.021853335201740265, 0.006131339818239212, 0.009774697944521904, -0.6255806684494019, 0.00033208582317456603, 0.019726622849702835, -0.0350634902715683, 0.017204560339450836, 0.006734590046107769, -0.005674641579389572, 0.0003815046220552176, -0.01600487530231476, 0.04474275931715965, -0.03091912902891636, 0.003823992796242237, 0.02455262467265129, -0.01256941631436348, -0.010013272054493427, -0.028247104957699776, -0.0027810856699943542, -0.013135177083313465, 0.013210156932473183, 0.005047534126788378, -0.020244667306542397, 0.027756325900554657, -0.017299989238381386, -0.008656810969114304, 0.009747432544827461, 0.02343473583459854, 0.027360975742340088, -0.001558396383188665, 0.006052951328456402, 0.016795575618743896, -0.022494075819849968, -0.0010957340709865093, -0.0019375578267499804, 0.022057825699448586, 0.0289014782756567, -0.004198893904685974, -0.013475996442139149, 0.01795436255633831, 0.012208147905766964, 0.017313621938228607, -0.007361697498708963, -0.02128075808286667, 0.0171500276774168, 0.013019298203289509, 0.01445073913782835, -0.00573258101940155, 0.003290610620751977, 0.017177293077111244, 0.006247218232601881, -0.02080361172556877, 0.029446789994835854, 0.0032122221309691668, -0.012242229655385017, 0.005132738966494799, 0.0017927096923813224, -0.034027401357889175, 0.01642749086022377, -0.004393161274492741, 0.019617559388279915, -0.0026549824979156256, 0.003660399466753006, 0.020517323166131973, -0.0012601794442161918, -0.019699357450008392, -0.01824064925312996, 0.011962758377194405, -0.023707391694188118, 0.012617131695151329, -0.010960749350488186, -0.011574224568903446, 0.008806771598756313, 0.03135537728667259, -0.017518112435936928, -0.012405822984874249, 0.008711341768503189, 0.023053018376231194, 0.01130838505923748, 0.004256833344697952, 0.003021363401785493, 0.015895813703536987, 0.025097934529185295, -0.028356168419122696, -0.012705744244158268, -0.012153617106378078, 0.05414937436580658, 0.009965556673705578, 0.0007042179349809885, -0.011805981397628784, -0.0024556033313274384, -0.007463943213224411, 0.011601489968597889, 0.015077847056090832, -0.002518654800951481, -0.045369867235422134, -0.029037807136774063, 0.012071819975972176, -0.0172454584389925, 0.012092269957065582, -0.007075408939272165, -0.007593454327434301, -0.013864530250430107, -0.011983207426965237, -0.003459316212683916, 0.01834971271455288, -0.0020534363575279713, 0.02444356121122837, 0.0008558825356885791, 0.015227807685732841, 0.02313481643795967, -0.02496160753071308, -0.01333966851234436, -0.007341248448938131, 0.014014490880072117, 0.011656020767986774, -0.015023315325379372, -0.029228664934635162, 0.02280762977898121, 0.004505631513893604, 0.0022255501244217157, -0.003150874748826027, 0.020340098068118095, 0.017313621938228607, 0.018186118453741074, -0.005828010383993387, 0.018840491771697998, 0.00203980365768075, 0.004205710254609585, -0.0036569912917912006, -0.00378991081379354, -0.0023175713140517473, 0.01674104481935501, -0.008363706059753895, 0.009808779694139957, -0.0077570476569235325, 0.013973591849207878, -0.02969217859208584, 0.002189764054492116, -0.007770680356770754, 0.020558221265673637, -0.039098791778087616, -0.027142850682139397, -0.0040761991403996944, 0.01844514161348343, -0.026106759905815125, -0.049432434141635895, -0.0324460007250309, -0.0411982387304306, -0.001993793062865734, 0.003595643909648061, 0.005616702605038881, 0.007709333207458258, 0.007750231306999922, -0.002019354375079274, 0.023093916475772858, 0.0012686998816207051, -0.011199322529137135, -0.01712276227772236, -0.013660038821399212, -0.013782733120024204, -0.008091051131486893, -0.019753888249397278, 0.03751739114522934, -0.008091051131486893, 0.0012721081729978323, 0.0007408559904433787, -0.015527728013694286, -0.0036910732742398977, 0.015882181003689766, -0.02747003734111786, -0.04621510207653046, -0.006574404891580343, -0.0012175770243629813, -0.028165308758616447, -0.006499424576759338, 0.003800135338678956, 0.014614332467317581, -0.023952782154083252, -0.003520663594827056, -0.002443674486130476, -0.0019307414768263698, 0.003409897442907095, -0.0068845502100884914, -0.005010044202208519, -0.006438076961785555, 0.019222209230065346, 0.006138156168162823, 0.014055388979613781, 0.02038099616765976, 0.03031928651034832, 0.005105473566800356, -0.005862092133611441, 0.014423473738133907, -0.015664055943489075, -0.009304367937147617, -0.02941952459514141, 0.01130838505923748, -0.010579031892120838, 0.025370590388774872, 0.0013573130127042532, 0.03195521980524063, 0.03419099375605583, 0.0068947747349739075, -0.0009525900240987539, -0.03511802479624748, 0.008329624310135841, -0.0320642814040184, 0.022889425978064537, 0.0026890644803643227, 0.016359327360987663, 0.005245209205895662, 0.009365715086460114, 0.0075457398779690266, -0.020708182826638222, 0.0031849564984440804, 0.021239859983325005, 0.021962396800518036, 0.01333966851234436, 0.019140413030982018, -0.017995260655879974, -0.006417627912014723, -0.01581401750445366, 0.002653278410434723, 0.03588145971298218, 0.02260313741862774, -0.01877232827246189, 0.01177189964801073, 0.009931474924087524, 0.012180882506072521, -0.023039385676383972, -0.028247104957699776, -0.010865320451557636, 0.00862954556941986, 0.004277282394468784, -0.002148865722119808, -0.003012842731550336, 0.0440065898001194, 0.05044126138091087, -0.024389030411839485, 0.04774197190999985, -0.0008345813257619739, 0.014273513108491898, 0.030155694112181664, 0.00902489572763443, -0.006986795924603939, 0.04509721323847771, 0.00026562606217339635, 0.05564897879958153, 0.010551766492426395, -0.0016631983453407884, 0.0012473986716941, 0.01257623266428709, 0.01500968262553215, -0.0010803972836583853, -0.006472159177064896, 0.01115842442959547, -0.02077634632587433, 0.025725042447447777, 0.010272294282913208, 0.013094278052449226, 0.004669224843382835, 0.023080283775925636, -0.0019511906430125237, 0.005429252050817013, 0.00037170606083236635, 0.00927028525620699, -0.00886811874806881, 0.008186480030417442, -0.00702087813988328, -0.013162442483007908, 0.03143717348575592, -0.017981627956032753, -0.04471549391746521, -0.03639950230717659, 0.0110493628308177, 0.020108340308070183, 0.0007089041755534708, 0.015514095313847065, 0.005708723794668913, 0.006093849427998066, 0.0011630459921434522, -0.002731666900217533, -0.029773976653814316, -0.001623152056708932, 0.0443883091211319, -0.02737460844218731, -0.01946759968996048, -0.012760275043547153, 0.002130120759829879, 0.004014851525425911, 0.012337659485638142, -0.02128075808286667, 0.011485611088573933, 0.002314163139089942, -0.01886775717139244, 0.02190786600112915, -0.012562599964439869, 0.02260313741862774, -0.015868548303842545, -0.005691682919859886, -0.005797336809337139, 0.001859169453382492, -0.006018869113177061, -0.024607155472040176, 0.007920641452074051, 0.023148449137806892, -0.015854915603995323, -0.004025076050311327, -0.01753174513578415, 0.009263468906283379, -0.01273300964385271, 0.0011502652196213603, -0.021321656182408333, -0.022494075819849968, -0.03195521980524063, 0.02586136944591999, -0.024975240230560303, 0.025602348148822784, 0.02361196279525757, 0.0149142537266016, -0.008690892718732357, -0.002539103850722313, -0.021567046642303467, -0.019903847947716713, 0.022657668218016624, 0.02432086691260338, 0.011390182189643383, -0.02119896188378334, 0.02211235836148262, -0.006986795924603939, 0.0065403226763010025, 0.003135537728667259, -0.007518474478274584, 0.015991242602467537, 0.0061960951425135136, -0.013210156932473183, 0.009495226666331291, -0.014246247708797455, -0.007668434642255306, -0.00745031051337719, -0.0004988742875866592, -0.00067823042627424, -0.0309463944286108, -0.007900191470980644, -0.0419616736471653, -0.0013394199777394533, -0.017927097156643867, 0.026543008163571358, 0.02402094565331936, -0.0030094345565885305, -0.012651213444769382, 0.017777135595679283, 0.0049384720623493195, 0.012030921876430511, -0.012889786623418331, -0.010415438562631607, 0.028928743675351143, 0.024893444031476974, -0.008684076368808746, -0.027974450960755348, 0.01044270396232605, 0.023080283775925636, 0.03669942542910576, 0.0055519468151032925, -0.004618101753294468, -0.0024027761537581682, 0.01755901239812374, 0.015486829914152622, 0.014123552478849888, 0.020912673324346542, -0.007634352892637253, 0.01754537783563137, 0.0032701613381505013, -0.0265702735632658, 0.002886739559471607, 0.020053809508681297, 0.011751450598239899, 0.014069021679461002, -0.025384223088622093, 0.021348921582102776, -0.007832027971744537, -0.001540503348223865, 0.014287145808339119, -0.00280153495259583, -0.03789911046624184, -0.0255478173494339, -0.050250399857759476, 0.033618416637182236, -0.015023315325379372, -0.014273513108491898, -0.01661835052073002, -0.009222570806741714, 0.013414648361504078, -0.031082721427083015, -0.027742693200707436, -8.158362470567226e-05, 0.014532536268234253, -0.021621577441692352, -0.01753174513578415, 0.027333710342645645, 0.012303577736020088, 0.014259880408644676, 0.01633206196129322, 0.010701727122068405, 0.02646121196448803, -0.0220032949000597, -0.04027121141552925, -0.008152398280799389, -0.026911092922091484, 0.016700146719813347, 0.024484459310770035, -0.007388962898403406, 0.010238212533295155, -0.004662408493459225, -0.011390182189643383, 0.00973379984498024, -0.0005925996229052544, -0.021976029500365257, -0.0265702735632658, 0.013080645352602005, 0.04220706596970558, 0.008241010829806328, 0.014627965167164803, 0.0015311308670789003, -0.0328277163207531, -0.012944318354129791, 0.006785712670534849, 0.003230967093259096, -0.018513305112719536, -0.014259880408644676, 0.0018745062407106161, -0.021444352343678474, 0.02241227962076664, -0.016195734962821007, -0.021539781242609024, -0.011519692838191986, -0.03285498172044754, 0.013401015661656857, 0.015541360713541508, -0.019644826650619507, 0.016959169879555702, 0.021785171702504158, 0.015445931814610958, 0.015786750242114067, -0.038689810782670975, -0.012712560594081879, -0.014777925796806812, -0.006952714174985886, 0.007334431633353233, -0.002832208527252078, 0.02779722400009632, 0.008690892718732357, 0.004621509928256273, 0.0015413553919643164, -0.019222209230065346, 0.00800243765115738, 0.03326396644115448, -0.004205710254609585, -0.006386954337358475, -0.013230605982244015, 0.0154731972143054, -0.028874212875962257, -0.0022511116694658995, -0.0025356956757605076, -0.0036774405743926764, 0.009808779694139957, 0.0001765870110830292, -0.005783704109489918, -0.02313481643795967, -0.005579212214797735, -0.029664913192391396, -0.0072867171838879585, 0.009863311424851418, -0.01704096607863903, 0.032200608402490616, 0.0028645864222198725, 0.012085453607141972, 0.0007020878256298602, -0.011103893630206585, 0.012746642343699932, -0.018608735874295235, -0.013816815800964832, 0.004413610324263573, 0.019931113347411156, 0.00339626451022923, 0.012194515205919743, 0.00529633229598403, 0.0255478173494339, 0.0149142537266016, 0.0009934883564710617, 0.014723394997417927, -0.002010833937674761, -0.024279968813061714, -0.025793205946683884, 0.006158605217933655, 0.011887777596712112, 0.001814862946048379, 0.006199503317475319, -0.011799165047705173, 0.008977181278169155, 0.03296404331922531, -0.015282338485121727, -0.006772079970687628, -0.007470759563148022, -0.024307234212756157, -0.009004446677863598, 0.021253492683172226, -0.0036535831168293953, 0.0009321408579126, -0.0171500276774168, -0.0026447579730302095, 0.007838844321668148, 0.002876515034586191, 0.005902990698814392, -0.005361088085919619, 0.02584773674607277, -0.012930684722959995, -0.0029446789994835854, -0.0046385508030653, 0.0002005508722504601, -0.017886197194457054, -0.00552468141540885, -0.03200975060462952, 0.007491208612918854, 0.002891852054744959, -0.018336080014705658, 0.026597540825605392, -0.020708182826638222, -0.002107967622578144, -0.012848888523876667, -0.005838234908878803, -0.018227016553282738, -0.0218124371021986, 0.03874434158205986, -0.010769890621304512, -0.019235841929912567, -0.04089831933379173, -0.04945969954133034, 0.001496196840889752, 0.008663627319037914, 0.03130084648728371, 0.007313982583582401, 0.024470826610922813, -0.01905861683189869, -0.01824064925312996, -0.004318180959671736, -0.010074619203805923, 0.03427278995513916, 0.004331813659518957, 0.029283195734024048, 0.01130156870931387, -0.0017194334650412202, -0.047305721789598465, 0.001281480654142797, 0.011499243788421154, 0.013360117562115192, 0.001944374293088913, -0.005742805544286966, -0.0063187903724610806, -0.01344191376119852, 0.012542150914669037, 0.0031645074486732483, -0.010122333653271198, -0.042643312364816666, 0.028437964618206024, 0.013312403112649918, -0.010892585851252079, -0.009106691926717758, 0.009454327635467052, -0.030591942369937897, 0.009706534445285797, 0.009911025874316692, 0.01277390867471695, -0.002597043290734291, 0.00628470815718174, 0.01130156870931387, 0.031573500484228134, -0.009379347786307335, 0.035745128989219666, -0.01580038294196129, 0.005783704109489918, -0.010619929991662502, -0.025070669129490852, 0.0011587856570258737, 0.004935063887387514, -0.009713350795209408, 0.03599052131175995, -0.010251845233142376, -0.019222209230065346, 0.01794072985649109, 0.018308814615011215, 0.0043556708842515945, -0.018881389871239662, 0.015405033715069294, 0.032691389322280884, 0.007307166233658791, -0.003254824550822377, 0.007273084484040737, 0.0021096717100590467, -0.023393837735056877, -0.007211736869066954, -0.007443494163453579, -0.017000067979097366, -0.009215754456818104, 0.00666983425617218, 0.004624918103218079, 0.027101952582597733, 0.011601489968597889, -0.006986795924603939, -0.0009406613535247743, 0.00211819214746356, -0.001859169453382492, -0.03364568203687668, 0.023462003096938133, -0.018486039713025093, -0.01794072985649109, -0.018935920670628548, -0.0028645864222198725, 0.013653222471475601, 0.0006914372206665576, -0.03495442867279053, -0.012835255824029446, 0.050250399857759476, -0.0031696197111159563, 0.010081435553729534, -0.0031968853436410427, -0.010647195391356945, -0.027510935440659523, 0.02373465709388256, 0.022780364379286766, 0.0019767521880567074, -0.001428885036148131, -0.008370522409677505, -0.03489989787340164, -0.007109491154551506, 0.017477214336395264, 0.007620720192790031, -0.015650423243641853, -0.016386592760682106, 0.011976391077041626, -0.012303577736020088, 0.011587857268750668, -0.006025685463100672, -0.009243019856512547, 0.03021022491157055, -0.03083733282983303, 0.0011502652196213603, 0.027606364339590073, -0.01642749086022377, 0.0023073467891663313, -0.007348064798861742, 0.0011732705170288682, 0.014873355627059937, -0.010681277140974998, -0.022439545020461082, -0.004652183968573809, -0.022875793278217316, 0.006594853941351175, -0.02301212027668953, -0.00933844968676567, -0.012139984406530857, -0.009611104615032673, 0.02017650380730629, -0.03457271307706833, -0.006213136482983828, -0.019699357450008392, 0.016781942918896675, 0.0054565174505114555, 0.013373750261962414, -0.016563819721341133, -0.00841142050921917, -0.008452319540083408, -0.0017858932260423899, -0.0419616736471653, -0.018990453332662582, -0.0013394199777394533, 0.03375474736094475, 0.0468149408698082, 7.4128205596935e-05, 0.0009909322252497077, 0.010551766492426395, -0.03051014617085457, -0.021335288882255554, 0.012562599964439869, 0.01905861683189869, 0.010572215542197227, 0.029174134135246277, 0.005828010383993387, 0.03549974039196968, 0.0043590790592134, 0.03021022491157055, -0.02009470760822296, 0.004730571992695332, 7.253060903167352e-05, 0.05060485377907753, 0.030782802030444145, 0.006864101160317659, -0.017722604796290398, -0.015200541354715824, 0.008356889709830284, 0.024988872930407524, 0.016250265762209892, 0.025915902107954025, -0.010081435553729534, 0.016809208318591118, -0.028110777959227562, 0.013046563602983952, 0.0011647500796243548, 0.009188489057123661, -0.0003176010213792324, -0.0051974947564303875, 0.002637941623106599, -0.014464371837675571, 0.01389179565012455, 0.005616702605038881, 0.009679269045591354, -0.023884618654847145, 0.015241440385580063, -0.00029076149803586304, -0.0003254824550822377, -0.004328405484557152, 0.01176508329808712, -0.023870985954999924, 0.002237478969618678, -0.0252615287899971, 0.01029274333268404, 0.015882181003689766, -0.03803543746471405, -0.011294752359390259, 0.001338567933999002, -0.007341248448938131, -0.02141708694398403, 0.00011055326467612758, 0.020926306024193764, 0.041416365653276443, -0.011819614097476006, -0.005637151654809713, 0.019140413030982018, -0.016918271780014038, 0.003445683280006051, -0.0037421961314976215, -0.004386344458907843, -0.045288071036338806, 0.005204311106353998, -0.017068231478333473, 0.004672633018344641, -0.011240221560001373, -0.019440334290266037, 0.01582765020430088, -0.002477756468579173, 0.0013641293626278639, -0.030073897913098335, 0.007634352892637253, 0.02688382752239704, -0.019399436190724373, 0.00636309664696455, 0.015282338485121727, -0.00010959471546811983, 0.005729172844439745, -0.02425270341336727, -0.013216973282396793, 0.18137040734291077, -0.010183681733906269, 0.008602280169725418, 0.04378846660256386, -0.03511802479624748, -0.013366933912038803, 0.012903419323265553, -0.014968784525990486, -0.02017650380730629, 0.019004086032509804, -0.005735989194363356, 0.014532536268234253, 0.013959959149360657, 0.009154407307505608, -0.016768310219049454, -0.030046630650758743, -0.023462003096938133, -0.04057113081216812, -0.0042193434201180935, 0.009352082386612892, 0.008336440660059452, 0.0020210586953908205, -0.028056247159838676, -0.011506060138344765, 0.02718374878168106, 0.011117526330053806, -0.024511726573109627, 0.017804400995373726, 0.025016138330101967, 0.037762779742479324, -0.020408261567354202, -0.006918632425367832, -0.0009636666509322822, -0.007245818618685007, -0.02463442087173462, 0.00011854121839860454, 0.018704164773225784, -0.006489200051873922, 0.013782733120024204, 0.0022170296870172024, 0.010074619203805923, -0.009208938106894493, -0.01927674002945423, -0.01130156870931387, 0.029228664934635162, 0.009904209524393082, -0.0037626454140990973, -0.015036948956549168, -0.01430077850818634, 0.0367266908288002, -0.010838054120540619, 0.01019731443375349, 0.023870985954999924, 0.01374183502048254, 0.01420534960925579, 0.01875869557261467, -0.012508069165050983, 0.013312403112649918, 0.028656087815761566, -0.004389753099530935, -0.0034968063700944185, 0.02211235836148262, -0.018922287970781326, 0.005596253089606762, -0.0010326826013624668, 0.015091479755938053, -0.025288794189691544, 0.004563570953905582, 0.0031236091163009405, -0.015323236584663391, -0.008220561780035496, -0.02242591232061386, -0.00529633229598403, 0.025329692289233208, -0.026406681165099144, -0.011042546480894089, 0.015514095313847065, 0.03994402289390564, 0.006734590046107769, 0.00772978225722909, -0.002394255716353655, -0.017381785437464714, -0.0056950910948216915, -0.007818395271897316, -0.013619139790534973, -0.012201331555843353, 0.005395169835537672, -0.027824489399790764, 0.008909016847610474, -0.01145834568887949, -0.014341677539050579, -0.006649385206401348, -0.01130156870931387, -0.015118745155632496, 0.016182102262973785, 0.007136756554245949, 0.00800925400108099, -0.00456016231328249, -0.022480443120002747, -0.025370590388774872, -0.023080283775925636, 0.07787039875984192, 0.012085453607141972, 0.003994402475655079, -0.011124342679977417, 0.0077365986071527, -0.023066651076078415, -0.015554994344711304, -0.01641385816037655, -0.029037807136774063, -0.007791129872202873, -0.03781731054186821, 0.00742304464802146, -0.013196524232625961, 0.014559801667928696, -0.004083015490323305, -0.02201692759990692, -0.026324884966015816, 0.016781942918896675, 0.006618711166083813, -0.0034627243876457214, -0.003564970102161169, 0.020517323166131973, -0.00565419252961874, 0.016877373680472374, -0.018690532073378563, -0.060911230742931366, 0.02493434213101864, -0.017054598778486252, -0.01856783591210842, 0.02708831988275051, -0.02159431204199791, -0.007239002268761396, -0.023352939635515213, 0.0012022401206195354, -0.022166889160871506, -0.0007762159802950919, -0.031491704285144806, -0.014259880408644676, 0.002254519844427705, -0.021826069802045822, -0.0053235976956784725, 0.017572645097970963, 0.011690102517604828, 0.01674104481935501, -0.02047642506659031, 0.015445931814610958, -0.002107967622578144, 0.0036535831168293953, -0.028247104957699776, -0.01364640612155199, -0.008806771598756313, -0.002902076579630375, -0.006860692985355854, 0.009992823004722595, -0.024661686271429062, 0.020830877125263214, -0.03446365147829056, 0.020012911409139633, -0.006192686967551708, -0.033400293439626694, 0.004975961986929178, 0.018281549215316772, -0.012753458693623543, -0.015432299114763737, -0.017286356538534164, -0.17220918834209442, 0.005845051258802414, -0.0017841891385614872, -0.03577239438891411, 0.020408261567354202, 0.012194515205919743, 0.019044984132051468, 0.00831599161028862, -0.002409592503681779, -0.010095068253576756, 0.0009807075839489698, -0.016672881320118904, -0.03378201276063919, 0.005204311106353998, -0.021785171702504158, 0.011281119659543037, 0.006557363551110029, 0.01500968262553215, 0.03337302803993225, 0.02830163575708866, 0.006928856950253248, -0.03964410349726677, 0.014069021679461002, 0.004382936283946037, -0.00014399616338778287, -0.003520663594827056, 0.003239487763494253, 0.014818823896348476, -0.00517363753169775, -0.012310394085943699, 0.008206929080188274, -0.007763864006847143, 0.023175714537501335, -0.0025356956757605076, -0.003445683280006051, 0.018922287970781326, 0.0006445745239034295, -0.009154407307505608, 0.004549937788397074, 0.0149142537266016, 0.022575872018933296, 0.0012755163479596376, -0.0038274009712040424, 0.03296404331922531, 0.005098657216876745, 0.028765151277184486, 0.019290374591946602, -0.04504268243908882, -0.012514885514974594, -0.018704164773225784, 0.01987658254802227, -0.027974450960755348, 0.013578241690993309, -0.0030281797517091036, 0.013203340582549572, -0.002027875045314431, -0.03247326612472534, 0.011601489968597889, -0.010551766492426395, 0.011383365839719772, -0.013244238682091236, -0.026829296723008156, -0.0035138472449034452, -0.016686514019966125, 0.008138765580952168, -0.004839634522795677, -0.02515246532857418, 0.022044192999601364, -0.02464805357158184, -0.004856675397604704, -0.011792348697781563, -0.025806838646531105, 0.02283489517867565, 0.003300835145637393, 0.01348281279206276, 0.02170337364077568, -0.005337230395525694, -0.0016563818790018559, -0.018513305112719536, -0.02556145004928112, -0.015636790543794632, 0.0008963548461906612, -0.00988376047462225, -0.01744994893670082, -0.017708972096443176, -0.01653655432164669, 0.0025851146783679724, -0.0012124647619202733, 0.021648842841386795, -0.0006620415369980037, 0.010735808871686459, -0.04637869447469711, -0.0003472096868790686, -0.009556573815643787, -0.0011707143858075142, 0.01754537783563137, 0.011376548558473587, -0.0056882742792367935, 0.008043335750699043, -0.0019920889753848314, -0.009904209524393082, -0.0033076514955610037, -0.018608735874295235, 0.012126351706683636, -0.01404175627976656, -0.002005721675232053, 0.009406613186001778, 0.01413718517869711, 0.039098791778087616, 0.013326035812497139, -0.005783704109489918, 0.004543121438473463, 0.01877232827246189, 0.03642676770687103, -0.00016582990065217018, 0.022753097116947174, -0.034436386078596115, -0.006339239422231913, 0.02676113322377205, -0.011928676627576351, 0.05725764483213425, 0.006100665777921677, 0.005824602209031582, 0.006056359503418207, 0.00830917526036501, 0.015282338485121727, -0.126075878739357, -0.043652139604091644, 0.0036535831168293953, 0.011137975379824638, 0.0026004514656960964, 0.032091546803712845, -0.024920709431171417, 0.00841142050921917, 0.001134076272137463, 0.031491704285144806, -0.02841069921851158, -0.021567046642303467, -0.0020432118326425552, -0.004563570953905582, -0.0277835913002491, 0.03072826936841011, -0.014859722927212715, 0.014464371837675571, -0.020203769207000732, 0.04918704554438591, 0.03130084648728371, -0.018486039713025093, -0.012528518214821815, -0.00757982162758708, -0.008643178269267082, -0.003351958002895117, -0.030591942369937897, 0.0172454584389925, -0.000994340400211513, -0.012910235673189163, -0.0263794157654047, -0.004860083572566509, -0.001403323607519269, -0.010776706971228123, -0.017790768295526505, 0.01924947462975979, -0.013932693749666214, -0.006018869113177061, 0.02353016659617424, -0.007279900833964348, -0.006969755049794912, 0.015882181003689766, 0.02575230784714222, -0.003725155256688595, 0.007879742421209812, -0.01490062102675438, -0.03176436200737953, 0.015036948956549168, -0.034027401357889175, -0.021362554281949997, -0.0015422074357047677, -0.021853335201740265, -0.028628822416067123, 0.0015166460070759058, 0.02757909893989563, -0.006952714174985886, 0.004563570953905582, 0.028874212875962257, -0.008663627319037914, -0.024157274514436722, -0.031791627407073975, 0.0005657600704580545, -0.004260241519659758, 0.0007131644524633884, -0.004342038184404373, 0.024920709431171417, -0.02483891136944294, -0.018376978114247322, 0.01121295616030693, -0.011471978388726711, -0.018935920670628548, 0.01545956451445818, -0.024007312953472137, 0.007034510839730501, -0.010456336662173271, 0.002506726188585162, -0.0038274009712040424, 0.005040717776864767, 0.003609276609495282, -0.02260313741862774, -0.02008107490837574, -0.012501252815127373, 0.016209367662668228, -0.0387716069817543, 0.009965556673705578, 0.03236420452594757, -0.0012056484119966626, 0.029364993795752525, 0.005105473566800356, -0.009106691926717758, -0.004399977624416351, -0.010272294282913208, 0.03560880199074745, -0.03323670104146004, -0.008711341768503189, -0.0013078941265121102, 0.024484459310770035, -0.010885769501328468, 0.0021948765497654676, 0.002614084165543318, -0.03509075567126274, 0.013114727102220058, -0.03599052131175995, 0.0309463944286108, -0.009065793827176094, -0.021526148542761803, -0.024866178631782532, 0.010803972370922565, 0.0046385508030653, -0.00386829930357635, 0.003977361600846052, 0.03405466675758362, -0.04504268243908882, -0.002089222427457571, -0.008377338759601116, -0.022562239319086075, -0.025902269408106804, -0.022534973919391632, 0.0046044690534472466, -0.008425053209066391, 0.006536914501339197, 0.03083733282983303, 0.005463333800435066, 0.009461143985390663, 0.007470759563148022, 0.021348921582102776, -0.004406793974339962, -0.01571858674287796, 0.0185542032122612, 0.013087461702525616, -0.016768310219049454, -0.008227378129959106, 0.0266657043248415, -0.029446789994835854, 0.012712560594081879, 0.007927457801997662, -0.015514095313847065, -0.008595462888479233, 0.02151251584291458, 0.02931046113371849, 0.04013488441705704, 0.02373465709388256, -0.009931474924087524, -0.03203701600432396, -0.013953142799437046, -0.012201331555843353, -0.037162937223911285, -0.01318970788270235, -0.010510868392884731, 0.020612752065062523, 0.0005325301899574697, 0.00903171207755804, 0.05022313445806503, 0.010204130783677101, -0.018077056854963303, -0.00846595223993063, 0.0032071098685264587, -0.011894593946635723, 0.021130798384547234, -0.005633743479847908, 0.004648775793612003, 0.0025595531333237886, 0.055812571197748184, -0.021580679342150688, 0.023748289793729782, -0.006690283305943012, 0.013196524232625961, -0.034927163273096085, -0.03530888259410858, 0.02677476592361927, 0.004420426674187183, -0.0015200541820377111, -0.013135177083313465, 0.0036978896241635084, -0.005432660225778818, -0.007470759563148022, 0.015963977202773094, -0.002237478969618678, -0.006465342361479998, 0.0006905851769261062, 0.025902269408106804, 0.02006744220852852, 0.024361765012145042, -0.006093849427998066, 0.005766662769019604, 0.013128360733389854, 0.04307956248521805, -0.03051014617085457, 0.004103464540094137, 0.014409841038286686, -0.0033127637580037117, 0.010558582842350006, -0.016154835000634193, 0.02342110313475132, -0.0012823326978832483, 0.003386039985343814, 0.016877373680472374, 0.011962758377194405, -0.02941952459514141, 0.012296761386096478, 0.016754677519202232, 0.0005095248925499618, 0.023857353255152702, -0.0020585486199706793, 0.004423834849148989, -0.020258300006389618, -0.011805981397628784, -0.0028492496348917484, -0.027101952582597733, -0.019031351432204247, -0.010326825082302094, 0.025615980848670006, 0.009236203506588936, 0.03091912902891636, -0.0003932202816940844, 0.009052161127328873, -0.01580038294196129, 0.008827220648527145, 0.00816603098064661, -0.019740255549550056, -0.010422254912555218, 0.02776995860040188, 0.009318000636994839, -0.007620720192790031, 0.021771539002656937, 0.010565399192273617, 0.03762645274400711, 0.003847850253805518, 0.008759056217968464, -0.02363922819495201, -0.0033979685977101326, 0.01847240701317787, 0.00785929337143898, 0.003503622720018029, -0.0073821465484797955, -0.008643178269267082, -0.021471617743372917, -0.01664561592042446, 0.0013590171001851559, 0.00012738122313749045, 0.01998564600944519, 0.0675094947218895, 0.012439905665814877, -0.008111500181257725, 0.021580679342150688, -0.02627035416662693, -0.0008328772382810712, 0.008793138898909092, 0.00681979488581419, -0.0015873659867793322, -0.010320008732378483, 0.038798872381448746, -0.002373806666582823, 0.01997201144695282, -0.03620864450931549, -0.010878953151404858, 0.015882181003689766, -0.00989057682454586, 0.005282699596136808, -0.0027504118625074625, -0.0019682315178215504, 0.007218553218990564, 0.009229387156665325, 0.01419171690940857, -0.0066527933813631535, -0.008029703050851822, -0.0077570476569235325, 0.012596682645380497, -0.017790768295526505, -0.010817605070769787, -0.024361765012145042, 0.016563819721341133, 0.022030560299754143, -0.030292021110653877, -0.021526148542761803, -0.020530955865979195, 0.0006164569640532136, -0.006523281801491976, -0.00800243765115738, 0.009992823004722595, -0.006015460938215256, -0.013087461702525616, 0.001969935605302453, -0.005885949824005365, -0.05199539661407471, -0.006976571399718523, 0.0034439791925251484, 0.0031883646734058857, -0.0029037806671112776, -0.047114863991737366], "a12a726d-e5d7-4615-8f14-60665e34ec67": [-0.0013851937837898731, 0.008505244739353657, -0.00480910437181592, -0.04009418934583664, -0.0031035898718982935, 0.021998217329382896, -0.018769247457385063, -0.00012763448467012495, -0.018769247457385063, -0.021640969440340996, 0.005671307910233736, 0.02198447659611702, 0.0063411477021873, 0.02032190002501011, -0.001359430723823607, -0.010593770071864128, 0.01607614941895008, 0.016007447615265846, -0.01252428162842989, 0.011500629596412182, -0.005217878147959709, 0.015705160796642303, 0.015732640400528908, 0.013369309715926647, -0.018453219905495644, 0.01856314204633236, 0.03811558708548546, -0.015787603333592415, -0.005884282756596804, -0.005781230516731739, 0.046826936304569244, -0.01178230531513691, -0.01716163195669651, -0.016062408685684204, -0.01694178767502308, -0.02014327608048916, -0.030201174318790436, 0.0030348883010447025, 0.006983506493270397, -0.019428782165050507, 0.01923641748726368, 0.022712713107466698, 0.0002303646906511858, -0.016117369756102562, 0.011631161905825138, 0.019786030054092407, 0.011706734076142311, -0.012393748387694359, -0.008924323134124279, -0.024718796834349632, 0.008704478852450848, 0.03888504207134247, -0.025076044723391533, -0.002665617736056447, -0.00941210426390171, -0.023537131026387215, -0.0015122916083782911, 0.0026415723841637373, 0.004458726849406958, -0.02712334878742695, 0.02143486589193344, 0.016790643334388733, -0.005846496671438217, -0.022712713107466698, 0.0020627621561288834, 0.004874370526522398, 0.0100441575050354, 0.009611338376998901, -0.018659325316548347, 0.005674743093550205, -0.0021829898469150066, 0.011775435879826546, -0.011665512807667255, 0.009205999784171581, 0.040341515094041824, -0.007735787890851498, -0.01101284846663475, -0.009364013560116291, -0.009872403927147388, 0.011926578357815742, -0.011466278694570065, -0.015842564404010773, -0.011047199368476868, 0.0223829448223114, -0.009762481786310673, 0.008051814511418343, 0.005664438009262085, 0.01094414759427309, -0.01643339730799198, -0.018219634890556335, -0.0077907489612698555, -7.809427188476548e-06, -0.0008506103185936809, 0.031712606549263, -0.005015208851546049, 0.025021083652973175, 0.015265471301972866, 0.012373138219118118, -0.01720285229384899, -0.02170967124402523, 0.005846496671438217, 0.006117867771536112, -0.027137089520692825, -0.0020507394801825285, -0.006753356661647558, -0.01666698232293129, 0.017408957704901695, 0.013383050449192524, 0.009728130884468555, -0.0025350849609822035, -0.026738619431853294, 0.037181247025728226, 0.004025907255709171, -0.017010489478707314, 0.008182347752153873, -0.004953377414494753, -0.0017759335460141301, -0.006190004292875528, -0.026944724842905998, -0.010580029338598251, 0.02067914791405201, 0.02230050414800644, 0.02455391176044941, -0.002224210649728775, 0.01595248654484749, -0.004778188653290272, -0.0010202170815318823, -0.018219634890556335, 0.011857877485454082, -0.009714391082525253, 0.018590623512864113, -0.01055941917002201, -0.014344871044158936, 0.005932373460382223, -0.010896055959165096, -0.0049980334006249905, -0.01249680109322071, 0.0019528398988768458, -0.005063300020992756, -0.03685148060321808, 0.014523494988679886, 0.007852580398321152, -0.008958674035966396, -0.00849150400608778, -0.005290014669299126, 0.016749422997236252, 0.03638431057333946, 0.01576012186706066, -0.007852580398321152, 0.009315921925008297, -0.025790538638830185, -0.006241530179977417, -0.01832955703139305, 0.0037098804023116827, -0.007351059466600418, 0.0013482667272910476, -0.020060835406184196, -0.005025513935834169, 0.005825886502861977, -0.008951804600656033, 0.014921964146196842, 0.024897420778870583, 0.000981572549790144, -0.007021292112767696, 0.015746381133794785, 0.04350178316235542, 0.005080475006252527, 0.009425844065845013, 0.0036823998671025038, 0.003218664787709713, 0.002792715560644865, 0.003579347627237439, -0.010731172747910023, 0.007618995383381844, 0.012792217545211315, 0.011287654750049114, -0.0035037759225815535, 0.011926578357815742, -0.02067914791405201, -0.010641860775649548, 0.033938534557819366, -0.018590623512864113, 0.024389028549194336, 0.02107761800289154, -0.032317180186510086, -0.006780837196856737, 0.008725089021027088, 0.016378434374928474, 0.0036892700009047985, 0.004602999892085791, 0.021338682621717453, 0.02265775203704834, -0.009357143193483353, 0.01288152951747179, -0.6142463088035583, -0.018521921709179878, -0.023949339985847473, -0.021338682621717453, 0.002857981948181987, 0.015196769498288631, 0.008388452231884003, 0.004750708118081093, -0.02937675639986992, 0.02603786438703537, 0.012558632530272007, -0.0019133364548906684, 0.040149152278900146, -0.006506030913442373, -0.016007447615265846, -0.031465280801057816, -0.005173222161829472, -0.002255126368254423, -0.01270290557295084, 0.005860236939042807, -0.020115796476602554, 0.038720160722732544, -0.026834802702069283, -0.004884676076471806, 0.014276169240474701, 0.016515837982296944, 0.00015855015954002738, 0.014949444681406021, -0.002244821283966303, 0.02868974208831787, -0.03382861241698265, -0.00480910437181592, -0.007625865284353495, 0.01211894303560257, 0.052542898803949356, 0.0015887219924479723, -0.006176264025270939, 0.01252428162842989, 0.014193727634847164, 0.012936490587890148, 0.0029266835190355778, -0.026408853009343147, 0.018453219905495644, 0.019401300698518753, 0.034570589661598206, -0.007962502539157867, -0.005489249248057604, 0.011988409794867039, -0.009109817445278168, -0.010476977564394474, 0.0023118052631616592, -0.011363226920366287, -0.002153791720047593, -0.01599370688199997, 0.019497482106089592, -0.01518302969634533, 0.03382861241698265, -0.018439479172229767, 0.025021083652973175, -0.032042376697063446, 0.031245438382029533, 0.010387665592133999, -0.016227291896939278, -0.011294525116682053, -0.017807425931096077, 0.00503581902012229, -0.03086070902645588, -0.0009317639633081853, -0.01058689970523119, -0.033718690276145935, 0.005994204897433519, 0.037730857729911804, 0.000873797107487917, -0.007570904213935137, 0.022451646625995636, 0.021187540143728256, 0.009192259050905704, 0.009199129417538643, 0.006457940209656954, 0.012675425037741661, 0.015389134176075459, 0.0024869940243661404, -0.011425057426095009, -0.014963184483349323, 0.04982231929898262, 0.02030816115438938, -0.014812041074037552, 0.0007823382038623095, 0.008093035779893398, 0.015279211103916168, 0.008841881528496742, 0.02874470315873623, -0.004201096016913652, -0.05347723886370659, 0.00026385666569694877, 0.029074471443891525, -0.006262140814214945, -0.008752569556236267, -0.01160368137061596, -0.016227291896939278, -0.015705160796642303, 0.010923536494374275, -0.0024869940243661404, 0.018865428864955902, 0.018411999568343163, 0.019524963572621346, -0.008855622261762619, 0.019497482106089592, 0.03729116916656494, -0.010614380240440369, -0.015526536852121353, -0.02550199255347252, -0.002942141378298402, 0.02243790589272976, -0.012716646306216717, -0.027178309857845306, 0.024787496775388718, 0.0019013137789443135, 0.00288202753290534, -0.021915774792432785, 0.01306015346199274, 0.02234172448515892, -0.00037077334127388895, 0.005911763291805983, 0.022712713107466698, 0.001694350503385067, 0.01968984678387642, -0.009542636573314667, -0.011658642441034317, -0.00752281304448843, -0.005664438009262085, 0.001975167775526643, 0.027370674535632133, -0.006684654857963324, 0.010346444323658943, -0.02540581114590168, 0.007151825353503227, -0.013760908506810665, -0.00327706104144454, -0.03855527564883232, -0.019470002502202988, -0.005279709585011005, 0.0006415001698769629, -0.027576778084039688, -0.035202644765377045, -0.03649423271417618, -0.030036291107535362, -0.01824711635708809, 0.013094504363834858, 0.018975351005792618, -0.01173421461135149, -0.0018600928597152233, -0.00028468179516494274, 0.025240927934646606, 0.012263216078281403, -0.016460876911878586, 0.013396790251135826, -0.018521921709179878, 0.00539306690916419, -0.012647944502532482, 0.0029077904764562845, 0.03885756433010101, -0.01581508293747902, 0.000986725208349526, -0.010820484720170498, 0.0015681114746257663, -0.02657373622059822, 0.027178309857845306, -0.02760425955057144, -0.04891546070575714, 0.014729599468410015, -0.02522718720138073, -0.01720285229384899, 0.006777402013540268, -0.005887717939913273, 0.019016573205590248, -0.004118654411286116, 0.01380212977528572, -0.0007750386721454561, -0.014125026762485504, 0.005533905234187841, -0.001803414081223309, 0.03121795691549778, -0.017779946327209473, 0.006451069843024015, 0.009109817445278168, 0.009680040180683136, -0.010758653283119202, -0.007728917524218559, -0.004850325174629688, 0.02455391176044941, 0.03459807112812996, -0.015320432372391224, -0.019470002502202988, -0.026958465576171875, 0.038088105618953705, 0.0177936851978302, 0.001798261539079249, 0.017546361312270164, 0.0447658896446228, 0.023028738796710968, 0.0016067561227828264, 0.00558543112128973, -0.019346339628100395, 0.02269897237420082, -0.03575225546956062, 0.005389631725847721, -0.011067810468375683, 0.0320698544383049, 0.00464078551158309, 0.010270873084664345, 0.005135436542332172, -0.0021194410510361195, -0.014097546227276325, 0.0024457729887217283, 0.047541432082653046, -0.005121696274727583, 0.018164673820137978, 0.004613304976373911, -0.008725089021027088, 0.008615166880190372, 0.007316708564758301, 0.015581497922539711, -0.00905485637485981, 0.0037682766560465097, 0.0011790893040597439, 0.017505139112472534, -0.007069383282214403, -0.03333396464586258, -0.061061885207891464, 0.012283826246857643, -0.0018635279266163707, 0.025776799768209457, -0.0008991307695396245, 0.022218061611056328, 0.009116687811911106, 0.007804489228874445, -0.0021160058677196503, 0.049437593668699265, 0.00576405506581068, -0.015925005078315735, 0.014001363888382912, 0.0035930878948420286, -0.04482085257768631, 0.002049021888524294, 0.011541849933564663, 0.026285190135240555, 0.030558422207832336, -0.010703692212700844, 0.01522425003349781, 0.0037888872902840376, 0.0038438483607023954, -0.012963971123099327, 0.007131214719265699, 0.009686910547316074, 0.01536165364086628, 0.009418974630534649, 0.011768565513193607, 0.02076159045100212, 0.014021974056959152, 0.0035020585637539625, 0.011741084977984428, 0.019044052809476852, 0.0037270558532327414, 0.005977029446512461, -0.0029661867301911116, -0.003933160100132227, -0.044710930436849594, -0.00869760848581791, 0.003713315585628152, -0.02067914791405201, -0.016295993700623512, -0.030008811503648758, 0.000997030409052968, 0.0320698544383049, 0.0016144850524142385, -0.00460643507540226, 0.008051814511418343, 0.009934235364198685, -0.001564676407724619, 0.0026123742572963238, -0.02522718720138073, 0.012744126841425896, 0.030915670096874237, -0.01626851223409176, -5.085520388092846e-05, -0.00424575200304389, -0.0025574129540473223, -0.014757080003619194, -0.012764737010002136, -0.029156912118196487, 0.008752569556236267, 0.008484633639454842, 0.011747954413294792, -0.007406020537018776, -0.023578351363539696, 0.026422593742609024, -0.0010872010607272387, -0.013726557604968548, 0.0162135511636734, 0.005509859416633844, 0.008347230963408947, -0.03303167596459389, -0.016612021252512932, 0.06144661456346512, -0.016653241589665413, 0.0015191617421805859, 0.0013336676638573408, 0.0031929018441587687, -0.033306483179330826, 0.01644713617861271, -0.01441357284784317, -0.0204455628991127, -0.003558737225830555, 0.03388357535004616, -0.017560100182890892, 0.014454793184995651, 0.0018308947328478098, 0.03289427235722542, 0.0031310704071074724, 0.005568255670368671, -0.004602999892085791, -0.017422698438167572, 0.03022865578532219, 0.05518103763461113, 0.020706629380583763, -0.03715376555919647, 0.0033646554220467806, -0.0174364373087883, 0.012077721767127514, -0.009082336910068989, -0.009851793758571148, 0.018590623512864113, -0.0005783806554973125, 0.020431824028491974, 0.011747954413294792, 0.009728130884468555, -0.012215125374495983, 0.004290407989174128, 0.019387559965252876, -0.0074747223407030106, 0.00120485236402601, 0.023770716041326523, -0.03163016587495804, -0.002363331150263548, 0.01635095477104187, 0.025872981175780296, 0.032317180186510086, -0.015292951837182045, -0.008299140259623528, 0.004396895412355661, 0.0001979461667360738, 0.0013285151217132807, -0.02738441340625286, -0.001973450416699052, 0.014303650707006454, 0.024251626804471016, 0.019799768924713135, -0.017958570271730423, 0.03663163632154465, 0.011830396950244904, 0.025653136894106865, 0.004372850060462952, -0.0060766469687223434, 0.016241032630205154, -0.00771517725661397, 0.023811936378479004, -0.009480806067585945, 0.0009343402925878763, -0.009309051558375359, 0.003940030466765165, 0.018054751679301262, -0.0008123951265588403, -0.02918439358472824, 0.012895269319415092, -0.025433292612433434, -0.0355873703956604, -0.012373138219118118, 0.011322005651891232, -0.0018892909865826368, 0.005485814064741135, 0.007838839665055275, -0.018576882779598236, -0.036878958344459534, -0.02532336860895157, 0.0018927260534837842, 0.010985367931425571, -0.018123453482985497, -0.0002844670962076634, -0.001496833749115467, -0.0035140812397003174, 0.020528005436062813, -0.02825005352497101, -0.004537733271718025, -0.006615953519940376, -0.014853262342512608, -0.058039020746946335, 0.0003205353859812021, 0.0037682766560465097, -0.0015054213581606746, 0.01173421461135149, -0.0018480700673535466, -0.006574732717126608, 0.0047678835690021515, -0.018714286386966705, -0.02918439358472824, -0.00327190849930048, -0.03333396464586258, -0.00984492339193821, 0.004444986581802368, 0.008683868683874607, 0.002021541353315115, 0.022644011303782463, 0.021819593384861946, 0.005269404500722885, -0.010339573957026005, -0.0172578152269125, -0.022602790966629982, -0.021682189777493477, 0.03888504207134247, 0.030256137251853943, 0.02144860476255417, 0.008189217187464237, -0.021462345495820045, 0.0014521777629852295, 0.003953770734369755, 0.004139264579862356, -0.005320930387824774, 0.0030572162941098213, -0.01802727021276951, -0.017106670886278152, 0.009686910547316074, -0.013451752252876759, -0.01941504143178463, 0.022712713107466698, -0.021723411977291107, 0.004314453806728125, 0.017147891223430634, 0.016364695504307747, 0.030118733644485474, -0.003033170709386468, 0.02030816115438938, -0.004063693340867758, -0.03261946886777878, 0.03080574795603752, -0.04531550407409668, 0.0008974132360890508, 0.013541063293814659, -0.03588965907692909, 0.0482834056019783, 0.009096077643334866, -0.03676903620362282, -0.032949235290288925, -0.0025076044257730246, 0.007804489228874445, 0.0359446182847023, -0.016557058319449425, -0.02846989780664444, -0.03454310819506645, 0.02932179532945156, -0.03094315156340599, -0.008168607018887997, -0.0012357680825516582, -0.02653251588344574, 0.004994598217308521, 0.00867012795060873, 0.010504458099603653, 0.008580815978348255, -0.02328980527818203, -0.04201783239841461, -0.0018446350004523993, 0.006798012647777796, -0.006691525224596262, 0.036191944032907486, -0.01909901387989521, -0.0028803099412471056, 0.00297820963896811, 0.011411317624151707, 0.02085777185857296, -0.01982725039124489, -0.013183816336095333, -0.004022472072392702, 0.03525760397315025, 0.01819215528666973, 0.0366591140627861, 0.021063877269625664, 0.034433186054229736, 0.02382567711174488, -0.021228760480880737, 0.005509859416633844, -0.005485814064741135, 0.007007551845163107, 0.0005028090090490878, -0.004864065442234278, 0.014853262342512608, 0.0013937815092504025, 0.03841787204146385, 0.0015183029463514686, 0.004039647523313761, 0.010751782916486263, 0.0011550438357517123, -0.013176945969462395, -0.0058533670380711555, -0.028085168451070786, -0.024210404604673386, 0.01038079522550106, -0.003809497691690922, 0.022960038855671883, -0.028222572058439255, -0.010923536494374275, 0.020802810788154602, 0.01522425003349781, -0.009906754828989506, -0.017848646268248558, 0.021228760480880737, -0.03072330728173256, 0.011871617287397385, 0.04523305967450142, 0.0197310671210289, -0.027851583436131477, 0.0029713395051658154, -0.027851583436131477, 0.011871617287397385, 0.02175089158117771, -0.008388452231884003, 0.01941504143178463, 0.03141032159328461, 0.004159875214099884, 0.0024492081720381975, 0.0006805741577409208, -0.016543319448828697, 0.002145203994587064, 0.02355087175965309, -0.03363624960184097, -0.02825005352497101, -0.029404237866401672, -0.04644220694899559, -0.006945720873773098, -0.0017218311550095677, 0.024677574634552002, 0.006612518336623907, 0.02449895069003105, -0.014702118933200836, -0.020747849717736244, 0.002722296630963683, -0.023729493841528893, 0.014715859666466713, -0.02050052396953106, 0.02252034842967987, -0.002516192151233554, -0.0034058764576911926, -0.025982903316617012, 0.010957887396216393, 0.022671490907669067, 0.023495908826589584, 0.025392070412635803, 0.006657174322754145, -0.016241032630205154, -0.014221208170056343, -0.012744126841425896, 0.034927837550640106, 0.007886931300163269, -0.015292951837182045, 0.0005766631220467389, 0.01617233082652092, -0.001818871940486133, -0.01581508293747902, 0.017711244523525238, -0.01423494890332222, -2.903711356339045e-05, -0.008498374372720718, -0.010614380240440369, -0.029706524685025215, -0.012469320558011532, -0.017175372689962387, 0.01504562608897686, 0.002145203994587064, 0.018041010946035385, 0.020239459350705147, 0.0016625761054456234, 0.0009205999667756259, -0.02194325625896454, -0.021201279014348984, 0.025872981175780296, -0.020747849717736244, 0.0018892909865826368, -0.00842280313372612, 0.015375393442809582, 0.026683658361434937, -0.00910294707864523, -0.0010253697400912642, -0.007041902747005224, -0.016680721193552017, 0.02918439358472824, -0.009542636573314667, -0.0003235410840716213, -0.012510541826486588, -0.005152611993253231, -0.009920495562255383, -0.001813719398342073, -0.022492868825793266, 0.0071037341840565205, -0.00047876351163722575, -0.02283637598156929, 0.012325047515332699, -0.013987623155117035, 0.02603786438703537, -0.003861023811623454, -0.00576405506581068, -0.014358611777424812, -0.001552653731778264, -0.018041010946035385, 0.015801342204213142, -0.05435661971569061, -0.02012953720986843, -0.01625477336347103, -0.008635777048766613, -0.00443811621516943, 0.0146196773275733, -0.011775435879826546, 0.008271659724414349, 0.022396685555577278, -0.001942534581758082, 0.030833229422569275, -0.0011292807757854462, -0.002878592349588871, -0.027961507439613342, 0.00539306690916419, -0.0016763163730502129, -0.0035724774934351444, 0.018659325316548347, -0.02076159045100212, -0.01931885816156864, -0.043721627444028854, -0.007158695254474878, -0.01670820266008377, -0.018164673820137978, -0.01775246486067772, 0.015389134176075459, -0.0008355818572454154, 0.022149359807372093, 0.007584644481539726, -0.015911264345049858, 0.020665409043431282, -0.02099517546594143, -0.01576012186706066, 0.023042479529976845, 0.0027532121166586876, 0.013341829180717468, -0.011851007118821144, -0.017230333760380745, 0.0004257345572113991, -0.03679651767015457, -0.018480701372027397, -0.0005169787327758968, 0.0034866007044911385, -0.011212083511054516, 0.006251835729926825, -0.008237308822572231, 0.0013834763085469604, -0.00318087893538177, -0.006262140814214945, -0.011060940101742744, 0.026559995487332344, 0.012050241231918335, 0.02355087175965309, 0.003495188429951668, 0.009769352152943611, -0.0295966025441885, 0.008766310289502144, -0.0010854835854843259, 0.005111390724778175, -0.024031780660152435, -0.005571690853685141, -0.01801353134214878, 0.03657667338848114, 0.014372351579368114, 0.017367737367749214, -0.00752281304448843, 0.03861023858189583, -0.02838745526969433, -0.02026693895459175, 0.01923641748726368, 0.0006655456963926554, 0.022808894515037537, 0.008003723807632923, 0.014468533918261528, 0.026092825457453728, -0.0015363370766863227, 0.018082233145833015, -0.027288231998682022, 0.0014556128298863769, 0.01018156111240387, 0.014193727634847164, -0.008958674035966396, 0.004747272934764624, -0.016612021252512932, -0.028140129521489143, 0.01405632495880127, -0.02257530950009823, 0.015347912907600403, 0.02170967124402523, -0.004479337017983198, 0.00849150400608778, 0.0045995647087693214, -0.007618995383381844, -0.024306587874889374, -0.01788986846804619, -0.002107418142259121, -0.03187749162316322, 0.012153293937444687, 0.004530863370746374, 0.014207468368113041, -0.0008420226513408124, -0.004692311864346266, -0.01680438406765461, -0.009446455165743828, 0.017532620579004288, -0.006358323153108358, -0.00900676567107439, 0.0008111069910228252, 0.001255519688129425, 0.0051148259080946445, -0.016364695504307747, -0.013142595067620277, 0.03465303033590317, 0.003517516190186143, -0.007728917524218559, -0.014564716257154942, -0.004733532667160034, -0.017010489478707314, -0.009377753362059593, 0.024045521393418312, 0.006506030913442373, 0.00580184068530798, -0.005832756403833628, 0.030640864744782448, -0.016515837982296944, 0.017037969082593918, -0.03566981479525566, -0.0021125709172338247, -0.034213341772556305, 0.027851583436131477, -0.0065094660967588425, 0.00558543112128973, -0.0044621615670621395, -0.00813425611704588, 0.016282252967357635, -0.013362440280616283, 0.011315135285258293, -0.006832363083958626, -0.007282358128577471, 0.011356356553733349, 0.012173904106020927, -0.01194031909108162, 0.021737150847911835, 0.010092249140143394, 0.018343297764658928, -0.022589050233364105, -0.024443989619612694, 0.19928927719593048, -0.0017493116902187467, 0.01173421461135149, 0.043529264628887177, -0.018947871401906013, 0.015581497922539711, 0.0018394824583083391, 0.010882316157221794, -0.01644713617861271, 0.007770138327032328, -0.012400618754327297, 0.037043843418359756, -0.01819215528666973, 0.008725089021027088, 0.010112859308719635, -0.010806743986904621, 0.001252943417057395, -0.055153556168079376, -0.018260855227708817, 0.0028751573991030455, 0.020473044365644455, 0.012352528050541878, -0.014358611777424812, -0.02350964955985546, 0.0391048900783062, -0.008855622261762619, 0.0011284219799563289, -0.021764632314443588, 0.03479043394327164, -0.01540287397801876, -0.023028738796710968, 0.0013362439349293709, 0.006406413856893778, -0.005647262558341026, -0.008360971696674824, -0.006753356661647558, 0.008931193500757217, 0.00011840272782137617, 0.028167610988020897, -0.01613111048936844, -0.002234515966847539, -0.01905779354274273, -0.052542898803949356, -0.026079086586833, 0.006681220140308142, 0.022410426288843155, -0.015801342204213142, -0.03501027822494507, -0.005437722895294428, 0.0028528294060379267, -0.0029541640542447567, -0.003589652944356203, 0.01694178767502308, 0.0071106040850281715, 0.00041800562757998705, -0.010861705988645554, -0.001390346442349255, 0.022218061611056328, 0.010799874551594257, 0.033306483179330826, -0.014152507297694683, 0.036686595529317856, -0.00869073811918497, 0.01589752547442913, -0.0024715361651033163, 0.014207468368113041, -0.025419551879167557, 0.015567758120596409, 0.014496014453470707, -0.020967693999409676, -0.002462948439642787, -0.0391048900783062, 0.006956025958061218, 0.012744126841425896, -0.03333396464586258, -0.0009987478842958808, 0.029129432514309883, 0.026614956557750702, -0.008512115105986595, 0.028002727776765823, -0.021050136536359787, -0.02675236016511917, -0.01806849241256714, -0.005145741626620293, 0.009260960854589939, -0.020253200083971024, 0.038088105618953705, -0.018453219905495644, -0.00905485637485981, -0.01837077923119068, -0.020349381491541862, 0.014496014453470707, -0.0055991713888943195, 0.005606041755527258, 0.0433369018137455, 0.0032375578302890062, -0.014289909973740578, 0.017546361312270164, -0.016241032630205154, -0.002102265600115061, -0.0177936851978302, 0.059303127229213715, 0.02734319306910038, 0.018508180975914, 0.004585824441164732, 0.012826568447053432, -0.011322005651891232, 0.02530962973833084, -0.009137297980487347, -0.03163016587495804, -0.014454793184995651, -0.011796046048402786, -0.006028555799275637, -0.013520453125238419, 0.00045600614976137877, 0.015100587159395218, -0.005678178276866674, 0.011692993342876434, 0.004905286245048046, -0.009020505473017693, -0.012132682837545872, -0.012050241231918335, -0.01981350965797901, 0.022108139470219612, -0.010573158971965313, -0.0181509330868721, -0.027727920562028885, -0.004778188653290272, 0.011452538892626762, -0.024622613564133644, 0.03094315156340599, -0.01252428162842989, -0.012407489120960236, -0.0025986337568610907, -0.0069079347886145115, -2.635346208990086e-05, 0.013396790251135826, -0.025831760838627815, -0.018508180975914, -0.00037270557368174195, -0.005458333529531956, 0.020926473662257195, 0.00498772831633687, 0.004960247781127691, 0.02261652983725071, -0.032591987401247025, -0.010133469477295876, 0.00580184068530798, -0.01132887601852417, -0.023976819589734077, 0.005104520823806524, -0.011768565513193607, 0.000659534300211817, -0.014427312649786472, -0.020967693999409676, -0.010889186523854733, 0.006852973718196154, -0.01038079522550106, -0.008182347752153873, -0.0036617894656956196, -0.03319656103849411, 0.00307954428717494, 0.0475689135491848, 0.010806743986904621, -0.01806849241256714, -0.029266834259033203, -0.1740071326494217, 0.019662367179989815, -0.011857877485454082, -0.0009489393560215831, 0.029898889362812042, 0.018054751679301262, 0.034213341772556305, 0.0011206930503249168, -0.002452643122524023, 0.01257237233221531, -0.004620175343006849, 0.013726557604968548, -0.018934130668640137, 0.011438798159360886, 0.0009377753594890237, 0.009528896771371365, 0.00539306690916419, -0.009047986008226871, 0.026999685913324356, 0.02220432087779045, 0.012105202302336693, -0.01968984678387642, 0.01025026198476553, -0.0032169471960514784, -0.01607614941895008, 0.02937675639986992, 0.0028373715467751026, 0.012606723234057426, -0.005898023024201393, -0.02937675639986992, 0.00923348031938076, -0.017683763056993484, 0.011383837088942528, 0.0029232483357191086, 0.00029284009360708296, 0.0016745987813919783, -0.009192259050905704, -0.01832955703139305, -0.019799768924713135, 0.02374323457479477, 0.015581497922539711, 0.04531550407409668, -0.005571690853685141, -0.011837266385555267, 0.02716456912457943, 0.03720872849225998, -0.0011799480998888612, -0.03828047215938568, -0.006293056532740593, -0.014276169240474701, 0.033306483179330826, -0.018728027120232582, 0.000380434503313154, 0.00034780128044076264, 0.018576882779598236, -0.02180585265159607, -0.01963488571345806, 0.014248688705265522, 0.001689197844825685, 0.010902926325798035, 0.0011808068957179785, -0.016323473304510117, -0.004183920565992594, 0.01405632495880127, 0.010064768604934216, -0.02526840753853321, -0.04174302518367767, 0.02838745526969433, -0.036961402744054794, 0.005475508980453014, -0.015457835048437119, -0.025433292612433434, 0.0068495385348796844, -0.015265471301972866, 0.0021194410510361195, 0.03976442292332649, -0.02131120301783085, 0.006131608039140701, 0.012936490587890148, -0.029926368966698647, 0.01328686811029911, 0.006296491716057062, -0.008663257583975792, -0.004266362637281418, 0.0008029486634768546, -0.01603492721915245, 0.00011067380546592176, 0.0021847074385732412, -0.002067914931103587, -0.015842564404010773, 0.03141032159328461, -0.0444086417555809, 0.007831970229744911, -7.202921551652253e-05, 0.0032409927807748318, 0.0181509330868721, -0.004774753469973803, -0.02139364369213581, 0.019648626446723938, -0.012036501429975033, 0.017079191282391548, -0.03418586030602455, -0.023537131026387215, -0.01423494890332222, 0.006904499605298042, 0.01724407449364662, -0.037675898522138596, 0.01652957871556282, 0.03729116916656494, 0.001755323028191924, -0.044573526829481125, -0.002356461016461253, 0.009089207276701927, 0.027356933802366257, 0.005173222161829472, 0.04410635679960251, -0.005087345372885466, -0.025062303990125656, 0.001478799618780613, -0.010422016493976116, 0.0556756891310215, 0.002957599237561226, -0.017010489478707314, 0.02257530950009823, 0.009192259050905704, -0.019071534276008606, -0.12168408185243607, -0.034158382564783096, -0.006646869238466024, 0.02242416702210903, -0.007935022003948689, 0.01038079522550106, -0.0200883150100708, -0.005118261091411114, -0.005640392191708088, 0.02287759631872177, -0.0177936851978302, -0.024567652493715286, -0.01441357284784317, -0.016831865534186363, -0.0005590583896264434, -0.007543423678725958, -0.023317284882068634, -0.020074576139450073, -0.03531256690621376, 0.027824103832244873, 0.016790643334388733, -0.0054823788814246655, -0.010126600041985512, -0.0066537391394376755, -0.019607406109571457, -0.010621250607073307, -0.022176841273903847, 0.02581802010536194, 0.025570694357156754, 0.016502097249031067, 0.001899596187286079, -0.0016694462392479181, 0.0023255455307662487, -0.015499056316912174, 0.013905181549489498, -0.003627438796684146, -0.014578456059098244, -0.010497587732970715, 0.03017369471490383, -0.01769750379025936, 0.0008497515809722245, 0.007687696721404791, 0.009673169814050198, -0.0014083805726841092, -0.01680438406765461, -0.024622613564133644, -0.02599664404988289, 0.017642542719841003, -0.01644713617861271, -0.03580721840262413, -0.018659325316548347, -0.029129432514309883, -0.03143780305981636, -0.0004379719903226942, 0.030475981533527374, -0.013602894730865955, 0.013403660617768764, 0.007144954986870289, 0.005733139347285032, -0.003515798831358552, 0.007069383282214403, -0.0038713288959115744, -0.021160058677196503, 0.006121302954852581, 0.009611338376998901, 0.0029438589699566364, -0.030530942603945732, 0.006255270913243294, 0.011157122440636158, -0.015567758120596409, 0.023234844207763672, 0.013355569913983345, -0.03764841705560684, 0.01626851223409176, -0.01196092925965786, 0.009164778515696526, -0.01684560626745224, -0.0014435900375247002, -0.015787603333592415, 0.00500146858394146, -0.018975351005792618, -0.028854625299572945, -0.01739521697163582, -0.005873977206647396, 0.022149359807372093, 0.0032203823793679476, -0.0003602534416131675, 0.016117369756102562, 0.037181247025728226, -0.02838745526969433, 0.02032190002501011, 0.03374617174267769, 0.02117379941046238, 0.003713315585628152, -0.02054174616932869, 0.003101872280240059, 0.0036995753180235624, -0.00941210426390171, -7.106310658855364e-05, 0.016502097249031067, -0.05364212393760681, -0.004122089594602585, -0.0528726652264595, 0.00422170665115118, -0.015059366822242737, -0.0146196773275733, 3.4484928619349375e-05, -0.002366766333580017, 1.551150853629224e-05, -0.0035999580286443233, -0.003261603182181716, -0.004530863370746374, -0.04581015557050705, -0.03676903620362282, -0.009130427613854408, 0.0071380846202373505, -0.02014327608048916, -0.025295889005064964, 0.013863960281014442, -0.0070178573951125145, 0.007543423678725958, 0.020115796476602554, -0.008745700120925903, -0.0067121353931725025, -0.012599852867424488, 0.02657373622059822, -0.008883102796971798, -0.019676106050610542, -0.0011215518461540341, 0.021998217329382896, -0.014372351579368114, -0.006004510447382927, 0.00673274602741003, -0.0040018619038164616, -0.005341541022062302, 0.008333491161465645, -0.01747765950858593, 0.02257530950009823, -0.0015200204215943813, 0.022905077785253525, 0.003888504346832633, 0.02752181701362133, 0.011157122440636158, -0.029266834259033203, -0.001075178268365562, -0.029019510373473167, -0.020102055743336678, -0.010009807534515858, -0.00618313392624259, 0.016502097249031067, 0.012799087911844254, 0.004482772201299667, 0.04550786688923836, 0.017738724127411842, -0.004877805709838867, -0.03932473435997963, 0.0029180957935750484, 0.0024440556298941374, 0.003981251269578934, -0.008299140259623528, -0.025831760838627815, 0.008017463609576225, 0.04622236266732216, 0.007783879060298204, 0.021297462284564972, -0.0028339363634586334, 0.004510252736508846, -0.000490786274895072, -0.0320698544383049, 0.023262323811650276, 0.019566183909773827, 0.01178230531513691, -0.0017149609047919512, 0.0017776510212570429, 0.00318087893538177, 0.011438798159360886, 0.01927763782441616, -0.004290407989174128, -0.03215229883790016, 0.007460982073098421, -0.006028555799275637, 0.015581497922539711, 0.0008514691144227982, -0.0005324365338310599, 0.0009781374828889966, 0.0039709461852908134, 0.03676903620362282, -0.009205999784171581, -0.003323434619233012, 0.017766205593943596, 0.007124344352632761, 0.0026776406448334455, -0.013348699547350407, 0.015114327892661095, -0.026587476953864098, -0.0038129326421767473, 0.0038713288959115744, 0.0020507394801825285, -0.016062408685684204, 0.009686910547316074, 0.008457153104245663, 0.008429672569036484, 0.017587581649422646, -0.011672383174300194, -0.006392673589289188, 0.014399832114577293, -0.02256156876683235, 0.011273914948105812, -0.005448027979582548, -0.01515554916113615, 0.012531151995062828, 0.00887623243033886, -0.004788493737578392, 0.021874554455280304, 0.027535557746887207, 0.016405915841460228, -0.0331415981054306, 0.017092930153012276, -0.023138662800192833, -0.02206691913306713, -0.006042296066880226, 0.014908223412930965, -0.01874176599085331, 0.006128172855824232, 0.03217977657914162, 0.014331131242215633, 0.0061075626872479916, 0.024224145337939262, 0.009838053025305271, -0.014193727634847164, -0.002579740947112441, 0.024540172889828682, -0.015691420063376427, 0.020060835406184196, -0.010236522182822227, -0.017738724127411842, -0.0008922605775296688, 0.005077040288597345, 0.005791535601019859, 0.0320698544383049, -0.005578561220318079, 0.08310132473707199, 0.03888504207134247, -0.00021651704446412623, 0.0002475400688126683, -0.0005195550038479269, -0.009783091954886913, 0.008299140259623528, 0.0005676460568793118, 0.005719399079680443, -0.03239962458610535, 0.018315818160772324, 0.011466278694570065, -0.015292951837182045, -0.03413090109825134, -0.0023152402136474848, 0.02107761800289154, -0.0320698544383049, -0.0019390995148569345, -0.01132887601852417, 0.0020473042968660593, 0.006056036334484816, 0.0032959540840238333, 0.006780837196856737, -0.014179987832903862, -0.01648835837841034, -0.006588472984731197, 0.02333102561533451, 0.0035690423101186752, -0.0015079977456480265, -0.03852779418230057, -0.0052522290498018265, 0.009872403927147388, -0.027824103832244873, -0.03459807112812996, 0.001643683179281652, 0.023179883137345314, -0.01613111048936844, -0.01680438406765461, 0.02518596686422825, -0.024650095030665398, 0.015471575781702995, -0.003239275189116597, -0.012888399884104729, -0.03130039945244789, -0.014097546227276325, -0.002584893489256501, -0.011644902639091015, -0.013664726167917252, -0.049080345779657364], "523b9723-f604-4ad0-9140-1f46a38c90fd": [0.004751517903059721, -0.003912228159606457, 0.013803143054246902, -0.027178281918168068, -0.003022781340405345, 0.0006879837019369006, -0.0071690743789076805, -0.01938057690858841, 0.0011786841787397861, -0.013977020047605038, -0.01728067919611931, 0.01896594651043415, 0.010573047213256359, 0.005333336535841227, 0.008453087881207466, -0.026616526767611504, 0.01726730354130268, 0.009797289036214352, -0.01780230924487114, 0.01170993410050869, -0.0204372126609087, 0.009462910704314709, -0.0015456645051017404, 0.01173668447881937, -0.00884096696972847, 0.015782663598656654, 0.007851206697523594, -0.008874405175447464, 0.0028873581904917955, -0.0028756549581885338, 0.027713287621736526, -0.018190188333392143, -0.00019864171918015927, -0.01622404344379902, -0.026201898232102394, -0.02394149824976921, -0.01990220695734024, -0.00352769298478961, 0.00013030311674810946, 0.003051203675568104, 0.006523724179714918, 0.02955905720591545, 0.0014495307113975286, -0.027191657572984695, -0.013515577651560307, 0.027419034391641617, 0.010492797009646893, -0.018216939643025398, -0.014712653122842312, -0.019059572368860245, 0.017481306567788124, 0.025479638949036598, -0.04683973640203476, -0.009817351587116718, 0.011803559958934784, -0.016478171572089195, 0.007643891964107752, 0.01484640408307314, -0.017307430505752563, -0.03774464130401611, 0.028408795595169067, 0.018337314948439598, -0.010091542266309261, -0.013207949697971344, -0.02539938874542713, 0.012204814702272415, 0.024690506979823112, -0.0029458743520081043, 0.02061108872294426, 0.013515577651560307, 0.029478807002305984, 0.014512025751173496, -0.011549432761967182, 0.01346207782626152, 0.03959041088819504, -0.00819895975291729, 0.02030346170067787, -0.0077107674442231655, -0.008667089976370335, 0.022282982245087624, -0.033277347683906555, -0.04298769682645798, 0.000653291936032474, 0.02319249138236046, 0.016652047634124756, 0.012158001773059368, 0.006329784635454416, 0.004015885293483734, 0.01609029248356819, -0.021052468568086624, -0.011863748542964458, 0.0007770119700580835, -0.0055439951829612255, 0.010211918503046036, 0.006115782540291548, 0.01622404344379902, -0.024556756019592285, 0.005630933679640293, -0.01548841129988432, -0.023566994816064835, -0.010098230093717575, 0.02061108872294426, -0.02617514692246914, -0.011964062228798866, -0.028729798272252083, -0.022657485678792, 0.024917883798480034, 0.0020029270090162754, 0.023727497085928917, 0.01320126187056303, -0.04090117663145065, 0.040713924914598465, 0.008513275533914566, -0.03536386787891388, 0.003567818319424987, 0.0041396054439246655, 0.024195626378059387, -0.001491328002884984, -0.022175980731844902, -0.017360931262373924, 0.026201898232102394, -0.001979520544409752, 0.038252897560596466, -0.010158417746424675, 0.03929615765810013, -0.021868351846933365, -0.0020564275328069925, -0.022095730528235435, 0.015729162842035294, -0.015180782414972782, 0.0005763848894275725, -0.00889446772634983, -0.015568661503493786, 0.007269388064742088, -0.012552567757666111, 0.005416931118816137, 0.024556756019592285, -0.004925394896417856, -0.013883394189178944, -0.022630734369158745, 0.009877540171146393, 0.0061826580204069614, 0.0016978067578747869, -0.007490077987313271, -0.0019778485875576735, 0.023780997842550278, 0.026188522577285767, 0.007931457832455635, -0.007001885212957859, 0.01778893545269966, -0.0192066989839077, -0.0011536057572811842, -0.025426140055060387, -0.014458524994552135, -0.008479838259518147, -0.014177647419273853, -0.001907629193738103, -0.01463240198791027, 0.01209112536162138, -0.009844101965427399, 0.007108886260539293, 0.021921852603554726, 0.0035711620002985, -0.007202512584626675, -0.006577224470674992, 0.035684872418642044, 0.008319336920976639, 0.0018374096835032105, -0.022229481488466263, 0.005597495473921299, 0.002735215937718749, -0.021400222554802895, -0.0011084646685048938, -0.005657683592289686, 0.011903873644769192, -0.007349638734012842, -0.016424670815467834, 0.0084330253303051, -0.01685267500579357, -0.0037483826745301485, 0.042934197932481766, -0.006921634543687105, 0.011716621927917004, 0.04205143824219704, -0.043362200260162354, -0.008981405757367611, -0.01035904511809349, 0.007115574087947607, 0.010994364507496357, 0.014458524994552135, 0.0327690914273262, 0.02161422371864319, -0.016264168545603752, 0.007590391207486391, -0.5910741686820984, 0.004353607539087534, -0.022938363254070282, -0.009636787697672844, 0.0067711640149354935, 0.002634902484714985, 0.02090534195303917, -0.009650162421166897, -0.028382044285535812, 0.004487358964979649, 0.012251627631485462, 0.015475035645067692, 0.05352730676531792, -0.00213667843490839, -0.00466792332008481, -0.01320126187056303, 0.012719756923615932, -0.015408160164952278, -0.006670850794762373, -0.01726730354130268, -0.015996666625142097, 0.03375885263085365, -0.01522090844810009, 0.0027903884183615446, 0.008372836746275425, 0.029478807002305984, 0.006710975896567106, 0.01761505752801895, 0.006901571527123451, 0.033865850418806076, -0.03378560021519661, 0.008319336920976639, -0.010338982567191124, 0.0213065966963768, 0.03774464130401611, 0.014913279563188553, -0.0067410701885819435, 0.037316638976335526, -0.00456761009991169, 0.03143157809972763, 0.007563641294836998, -0.013308263383805752, 0.01691955141723156, 0.021533973515033722, 0.021988729014992714, -0.02019646018743515, -0.00048192296526394784, 0.027847038581967354, 0.019835330545902252, -0.01873856969177723, 0.025024885311722755, 0.003982447553426027, 0.001513062627054751, -0.015073781833052635, 0.029184553772211075, -0.010833862237632275, 0.01279332023113966, -0.0032535025384277105, 0.030361564829945564, -0.04373670369386673, 0.01762843318283558, -0.001672728336416185, -0.0029726247303187847, -0.023045364767313004, -0.025078386068344116, 0.0077575808390975, -0.022991864010691643, 0.00040961362537927926, -0.022002102807164192, -0.05521257221698761, 0.002350680762901902, 0.0007974926847964525, -0.0022436794824898243, 0.00022904925572220236, 0.017882561311125755, 0.01990220695734024, 0.003076281864196062, 0.020918717607855797, 0.007490077987313271, 0.013569078408181667, 0.009262283332645893, 0.006095719523727894, -0.01744118146598339, 0.009034906513988972, 0.049675267189741135, 0.010840550065040588, -0.009235533885657787, -0.003574505914002657, 0.018644943833351135, 0.016598546877503395, 0.007770955562591553, 0.024436378851532936, -0.022202730178833008, -0.05013002082705498, 2.729886728047859e-05, 0.024717256426811218, -0.004895301070064306, -0.009021530859172344, 0.00459770392626524, -0.012947134673595428, -0.026736902073025703, -0.005808154121041298, 0.002578058047220111, 0.0029007333796471357, 0.019835330545902252, 0.011362181045114994, 0.003444098401814699, 0.005289867520332336, 0.0354708693921566, -0.010887362994253635, 0.005804810207337141, -0.043469201773405075, 0.009054969064891338, 0.029799809679389, -0.009355910122394562, -0.020584339275956154, 0.02600127086043358, -0.010566359385848045, 0.009375972673296928, -0.029478807002305984, 0.009021530859172344, 0.028061041608452797, 0.01815006323158741, 0.008005021139979362, 0.013856643810868263, -0.011930624023079872, 0.010111604817211628, -0.020771590992808342, -0.010024666786193848, 0.009917665272951126, 0.00529989879578352, -0.006236158777028322, 0.016130417585372925, -0.012980571947991848, 0.005012333393096924, -0.0078177684918046, -0.001268966356292367, 8.098229045572225e-06, 0.013100949116051197, -0.00986416544765234, -0.015301158651709557, -0.0030378284864127636, -0.0010909098200500011, -0.03284934163093567, -0.030762819573283195, -0.0334913469851017, -0.017374305054545403, -0.016317669302225113, 0.005105959251523018, -0.017481306567788124, 0.01203093770891428, -0.018604818731546402, -0.010967614129185677, 0.02276448719203472, 0.0008626964408904314, -0.014525401405990124, -0.01657179743051529, 0.0031565327662974596, 0.005701153073459864, -0.011281929910182953, -0.011703246273100376, 0.03830639645457268, -0.02283136174082756, 0.0010290497448295355, -0.02945205569267273, -0.006881508976221085, -0.02382112294435501, 0.015541911125183105, -0.011549432761967182, -0.0388949029147625, 0.019688203930854797, -0.0020848498679697514, -0.018698444589972496, -0.0012789976317435503, -0.003621318843215704, 0.0026198553387075663, -0.00560752721503377, 0.014458524994552135, -0.007784330751746893, 0.0014369915006682277, 0.0016911191632971168, 0.01211787573993206, 0.024543380364775658, -0.01703992672264576, 0.004550890997052193, -0.008145459927618504, 0.018417567014694214, -0.00023531884653493762, -0.023928124457597733, 0.008098646998405457, 0.021574098616838455, 0.0288100503385067, -0.005022364668548107, -0.017106803134083748, -0.026375774294137955, 0.020758215337991714, 0.023259365931153297, 0.004881925880908966, 0.014806278981268406, 0.013923519290983677, 0.009991228580474854, -0.01615716703236103, 0.010058104991912842, -0.03587212413549423, 0.017360931262373924, 0.001131035154685378, 0.01568903774023056, 0.001014838693663478, 0.026857279241085052, -0.0030127500649541616, 0.00892790500074625, 0.01580941490828991, 0.0034156760666519403, -0.008152146823704243, 0.004641173407435417, 0.03196658194065094, -0.01516740769147873, 0.025091759860515594, 0.012686319649219513, 0.008058520965278149, -0.01029885746538639, 0.016906175762414932, 0.010078167542815208, -0.018190188333392143, -0.02059771493077278, -0.012398754246532917, 0.014712653122842312, -0.00641003530472517, -0.009877540171146393, -0.07276075333356857, 0.0065972874872386456, 0.0014160928549245, 0.00676113273948431, 0.0016610251041129231, 0.04403095692396164, 0.0020731466356664896, 0.039670661091804504, -0.012586005963385105, 0.034400857985019684, 0.012418816797435284, -0.0034156760666519403, 0.03659437969326973, 0.002359040081501007, -0.019714955240488052, 0.027419034391641617, 0.015796039253473282, 0.04566272348165512, 0.003868758911266923, -0.016130417585372925, 0.021333346143364906, 0.025038260966539383, -0.0027368878945708275, -0.020383711904287338, 0.02166772447526455, -0.004350264091044664, 0.0004990598536096513, 0.017574932426214218, 0.0018959259614348412, 0.028408795595169067, 0.01745455712080002, -0.0006867297925055027, -0.0017788935219869018, 0.01568903774023056, -0.013181199319660664, 0.02031683549284935, -0.008426337502896786, -0.01484640408307314, -0.04889950901269913, -0.004049323499202728, 0.007610454224050045, -0.029184553772211075, -0.04114192724227905, -0.02383449859917164, -0.005122678354382515, 0.034106604754924774, -0.00490533234551549, 0.018430940806865692, 0.01768193393945694, 0.023700745776295662, -0.00011995827662758529, 0.013736267574131489, -0.02862279675900936, 0.027205033227801323, 0.024610254913568497, -0.02990681119263172, 0.00529989879578352, -0.015327909030020237, 0.0033939415588974953, -0.01627754420042038, 0.0013542327797040343, -0.03782489150762558, 0.029425306245684624, 0.011342117562890053, 0.023406492546200752, -0.014886530116200447, -0.004574297461658716, 0.03975091129541397, 0.008319336920976639, 0.010726861655712128, 0.012699694372713566, 0.0018507848726585507, -0.0016643689014017582, -0.024744007736444473, -0.0003926857316400856, 0.04542197287082672, -0.003842008765786886, 0.0027619663160294294, -0.020691340789198875, 0.002161756856366992, -0.013535641133785248, 0.022082354873418808, 0.0011552775977179408, 0.000292999146040529, 0.005246398504823446, 0.024623630568385124, -0.024958008900284767, 0.0072359503246843815, 0.016117041930556297, 0.02014295943081379, -0.004704704973846674, -0.0010315575636923313, -0.01744118146598339, -0.0032217365223914385, 0.027900539338588715, 0.041944436728954315, 0.015715789049863815, -0.02118621952831745, 0.0011176600819453597, -0.03921590745449066, -0.01768193393945694, -0.006841383408755064, -0.008185585029423237, 0.02985331043601036, -0.014391649514436722, -0.0008576808031648397, 0.007831144146621227, 0.015448285266757011, -0.002925811568275094, 0.013669392094016075, 0.027017781510949135, -0.03284934163093567, -0.024864383041858673, 0.03274234011769295, -0.019460827112197876, 0.017053302377462387, 0.03640712797641754, 0.028087791055440903, 0.04689323902130127, -0.0025696984957903624, 0.022403357550501823, 0.021814851090312004, -0.01197743695229292, 0.015555286779999733, -0.049381013959646225, -0.0031431575771421194, -0.0054771192371845245, 0.02090534195303917, 0.035711620002985, -0.02588089369237423, 0.03338434547185898, 0.0037483826745301485, 0.01068004872649908, 0.007256012875586748, -0.02090534195303917, 0.019701579585671425, -0.003631350351497531, 0.01809656247496605, -0.008265836164355278, 0.0057814037427306175, -0.0018725194968283176, 0.011669808998703957, 0.02213585563004017, -0.011067927815020084, -0.019688203930854797, 0.016638673841953278, -0.027084656059741974, -0.04344245046377182, -0.01938057690858841, 0.005831560585647821, 0.016638673841953278, -0.006888196803629398, 0.004059354774653912, -0.011756747029721737, -0.028489045798778534, -0.0027987477369606495, -0.0023105551954358816, -0.03177933022379875, -0.030227813869714737, 0.0046812985092401505, -0.022403357550501823, -0.005661027505993843, 0.037022385746240616, -0.02553313970565796, -0.028382044285535812, 0.0022035541478544474, -0.01896594651043415, -0.012137938290834427, -0.009904290549457073, 0.02148047275841236, 0.006463536061346531, 0.0156355369836092, -0.004179731011390686, 0.00639666011556983, 0.0015339612727984786, 0.011255179531872272, -0.021761350333690643, 0.014619027264416218, -0.027378909289836884, -8.918500680010766e-05, 0.0023924780543893576, 0.0002132707741111517, -0.0014603979652747512, -0.006222783587872982, 0.014940029941499233, -0.004450577311217785, 0.0001037095717038028, -0.018778694793581963, -0.018765319138765335, -0.0008919545798562467, 0.04215843975543976, 0.006493629887700081, 0.008794154040515423, -0.008533339016139507, -0.018644943833351135, 0.0030445160809904337, -0.007222575135529041, 0.002058099489659071, 0.0007356326677836478, -0.027552787214517593, -0.02546626515686512, -0.01027879398316145, 0.010820487514138222, -0.018765319138765335, -0.0037951956037431955, 0.05093253031373024, -0.030227813869714737, 0.009910978376865387, 0.011475869454443455, -0.004674611147493124, 0.02324599213898182, -0.026415899395942688, 0.0288100503385067, -0.006507005076855421, -0.04250619187951088, 0.04571622610092163, -0.030950071290135384, 0.008406274951994419, -0.00639331666752696, -0.02693752944469452, 0.011181616224348545, 0.012873571366071701, -0.034347355365753174, -0.00895465537905693, -0.012365316040813923, 0.009971166029572487, 0.032635338604450226, 0.007911394350230694, -0.027124781161546707, -0.008713902905583382, 0.039082154631614685, -0.038199398666620255, 0.006767820566892624, 0.020169708877801895, -0.01903282292187214, 0.01300063543021679, 0.0010298857232555747, 0.026603151112794876, -0.014993530698120594, -0.02768653817474842, -0.03852039948105812, -0.014913279563188553, -0.0042532943189144135, -0.013595828786492348, 0.024784132838249207, -0.00193605141248554, -0.00525642978027463, -0.012231565080583096, -0.011589557863771915, -0.0031565327662974596, -0.009917665272951126, -0.002534588798880577, 0.027138156816363335, 0.026843903586268425, 0.03648737818002701, 0.013508890755474567, 0.020624464377760887, 0.05168153718113899, -0.008386212401092052, -0.018711820244789124, -0.0057044969871640205, 0.0012096140999346972, 0.010753612034022808, 0.001005643280223012, -0.021734600886702538, -0.008800841867923737, -0.006894884165376425, 0.004363639280200005, 0.021988729014992714, -0.010927489027380943, 0.01884557120501995, -0.0024292597081512213, 0.0032902841921895742, -0.03493586182594299, -0.02243010886013508, -0.03975091129541397, 0.004477327689528465, 0.007229262497276068, 0.004306794609874487, -0.028703048825263977, 0.004875238053500652, 0.023433243855834007, -0.008713902905583382, 0.0008919545798562467, -0.017133552581071854, -0.0014645777409896255, -0.018176814541220665, 0.017173677682876587, 0.03359834849834442, 0.028542546555399895, -0.016371170058846474, 0.018658319488167763, -0.045100968331098557, 0.00995110347867012, -0.00992435310035944, -0.029024051502346992, -0.0031147354748100042, 0.005517244804650545, 0.008553401567041874, -0.026790402829647064, 0.00774420564994216, -0.015368035063147545, -0.01144243124872446, 0.029612557962536812, -0.01587628945708275, -0.04202468693256378, -0.025158636271953583, -0.035337116569280624, -0.0168660506606102, -0.011877123266458511, 0.025773892179131508, 0.014364899136126041, 0.007276075426489115, -0.00282549811527133, -0.022162605077028275, -0.0006796242669224739, -0.0013701157877221704, 0.028729798272252083, 0.013181199319660664, 0.04004516452550888, 0.01492665521800518, 0.001972832949832082, -0.02317911572754383, -0.00048108704504556954, 0.01282007060945034, 0.005279836244881153, 0.01100773923099041, 0.008553401567041874, -0.022724362090229988, -0.02194860391318798, -0.015782663598656654, 0.030120812356472015, 0.010091542266309261, -0.009523099288344383, 0.011014427058398724, -0.0032133772037923336, -0.027124781161546707, -0.015595411881804466, 0.007389764301478863, -0.024075251072645187, 0.0047281114384531975, -0.02945205569267273, -0.007764268200844526, -0.024971384555101395, -0.0010031354613602161, -0.04274694249033928, 0.015073781833052635, 0.021988729014992714, 0.016585173085331917, 0.008453087881207466, -0.004025917034596205, -0.011094678193330765, -0.011910561472177505, -0.044405460357666016, 0.03429385647177696, -0.01317451149225235, 0.007363013923168182, -0.008205647580325603, -0.007336263544857502, 0.029238054528832436, -0.011569495312869549, 0.011228429153561592, -0.003434066893532872, 0.006868133787065744, 0.03202008455991745, 0.012813382782042027, -0.014338148757815361, -0.006035531405359507, -0.008941280655562878, -0.004467296414077282, -0.009589974768459797, -0.014913279563188553, 0.013234700076282024, 0.008232397958636284, -0.013241387903690338, 0.009375972673296928, -0.007095511071383953, 0.005323305260390043, -0.011656433343887329, -0.012479004450142384, -0.01094755157828331, 0.0021065843757241964, -0.008640339598059654, 0.011830310337245464, -0.030896570533514023, -0.011663121171295643, -0.039028655737638474, -0.0003007316554430872, -0.004550890997052193, 0.010573047213256359, -0.016879426315426826, 0.025506390258669853, 0.01176343485713005, -0.008680465631186962, 0.03833314776420593, 0.007409826852381229, 0.008606902323663235, -0.020945467054843903, 0.010198543779551983, 0.007864581421017647, -0.021212970837950706, 0.02213585563004017, -0.01733417995274067, -0.031993333250284195, -0.028141291812062263, -0.01768193393945694, -0.003925603348761797, -0.020236585289239883, -0.014445150271058083, 0.020009208470582962, 0.01873856969177723, 0.019046198576688766, 0.003230096073821187, -0.030254565179347992, 0.012545879930257797, -0.04330870136618614, -0.01338182669132948, 0.01103448960930109, -0.004280044697225094, 0.014124146662652493, 0.000673772650770843, 0.009282346814870834, 0.0035009426064789295, -0.021627599373459816, -0.014177647419273853, -0.009155282750725746, -0.016598546877503395, -0.008733965456485748, 0.011770122684538364, -0.010867300443351269, -0.0007770119700580835, -0.01098098885267973, 0.01797618716955185, -0.009690288454294205, 0.014231148175895214, -0.015956541523337364, 0.013448702171444893, 0.039082154631614685, -0.003992478828877211, -0.005778059829026461, 0.021426972001791, -0.00890115462243557, 0.016290919855237007, -0.00795820727944374, -0.014512025751173496, -0.002434275345876813, 0.0423724390566349, 0.01867169328033924, 0.013896769843995571, -0.01768193393945694, 0.02733878418803215, -0.029639307409524918, -0.01697305217385292, 0.026242023333907127, 0.020450588315725327, 0.03073607012629509, 0.015528536401689053, 0.0068046017549932, 0.004878581967204809, 0.0227778609842062, 0.0053266491740942, -0.034160103648900986, -0.002969280816614628, 0.016531672328710556, 0.01943407766520977, -0.01376301795244217, -0.00020804611267521977, -0.01691955141723156, -0.01721380464732647, 0.002236991887912154, -0.025145260617136955, 0.019755080342292786, 0.02646940015256405, 0.001672728336416185, 0.005885061342269182, -0.022002102807164192, -0.0029559056274592876, -0.009763851761817932, -0.006413379218429327, -0.006821320857852697, -0.018631568178534508, -0.013361764140427113, 0.004370326641947031, 0.0043302010744810104, -0.018430940806865692, 0.005768028553575277, -0.004129574168473482, -0.007035322953015566, 0.022630734369158745, -0.012418816797435284, -0.028489045798778534, -0.0023724152706563473, 0.0012923728208988905, 0.009054969064891338, -0.018925821408629417, -0.007316200993955135, 0.022055603563785553, -0.01844431646168232, 0.0035510994493961334, -0.016010042279958725, 0.012773257680237293, -0.01615716703236103, -0.0019828644581139088, 0.031404826790094376, 0.01051285956054926, -0.012311815284192562, 0.009844101965427399, 0.030655818060040474, -0.004527484532445669, 0.01645142026245594, -0.014445150271058083, 0.0003563220670912415, -0.014766153879463673, 0.03132457658648491, -0.022523734718561172, 0.00889446772634983, 0.028435545042157173, -0.001387670636177063, 0.014645777642726898, -0.016478171572089195, -0.018872320652008057, -0.019875455647706985, -0.017668558284640312, 0.0168660506606102, -0.0005559042328968644, -0.0028221544343978167, -0.001306583872064948, 0.01463240198791027, 0.01669217273592949, -0.03852039948105812, -0.01431139837950468, 0.1861819326877594, -0.007028635591268539, 0.03266208991408348, 0.02336636744439602, -0.003330409526824951, 0.007583703845739365, 0.016892800107598305, 0.00636656628921628, -0.011288617737591267, 0.007530203089118004, -0.018604818731546402, -0.00537011818960309, -0.017173677682876587, 0.009910978376865387, 0.012940446846187115, -0.010044729337096214, 0.0020881935488432646, -0.051735036075115204, -0.02475738152861595, 0.006303034257143736, 0.006737726274877787, 0.02915780246257782, -0.03833314776420593, -0.004825081210583448, 0.031699080020189285, 0.01627754420042038, -0.017053302377462387, -0.008513275533914566, 0.007884644903242588, -0.008774091489613056, -0.02024996094405651, 0.006794570479542017, 0.00671766372397542, -0.01896594651043415, -0.021440347656607628, -0.006948384921997786, 0.028248293325304985, 0.006687569431960583, -0.0014077334199100733, 0.0019594577606767416, -0.011128115467727184, -0.009583286941051483, -0.030655818060040474, -0.011101365089416504, 0.002793732099235058, -0.007590391207486391, -0.010051417164504528, -0.009148594923317432, -0.0019745049066841602, 0.026830527931451797, -0.004022573120892048, -0.044351961463689804, 0.02985331043601036, -0.006603974848985672, -0.009650162421166897, -0.003962385002523661, 0.004142949357628822, 0.01306082308292389, 0.023794371634721756, 0.0480167493224144, -0.02465038187801838, 0.052457295358181, -0.005864998325705528, 0.02194860391318798, -0.0053266491740942, 0.02440962940454483, -0.037209637463092804, -0.001074190833605826, -0.009409409947693348, -0.011877123266458511, 0.0011159881250932813, -0.03932290896773338, 0.024556756019592285, 0.01745455712080002, -0.031217575073242188, -0.015180782414972782, 0.03303659334778786, 0.0008476494112983346, 0.007008573040366173, 0.014726027846336365, -0.009663538075983524, -0.010024666786193848, -0.0029676088597625494, 0.0192066989839077, -0.0168660506606102, -0.012833446264266968, 0.02612164616584778, -0.016304293647408485, -0.005029052495956421, -0.018591443076729774, -0.011522682383656502, -0.008018395863473415, 0.005888404790312052, -0.009309097193181515, 0.015127282589673996, 0.018002936616539955, -0.018591443076729774, 0.019059572368860245, -0.002703449921682477, 0.007904707454144955, -0.024209002032876015, 0.06468217074871063, 0.026028020307421684, 0.007256012875586748, -0.012532505206763744, -0.0049354261718690395, -0.008372836746275425, 0.022644110023975372, -0.023312866687774658, -0.033116843551397324, 0.006540442816913128, -0.012418816797435284, 0.004801674745976925, 0.001917660585604608, 0.006219439674168825, -0.012860195711255074, -0.03073607012629509, -0.0027770132292062044, 0.008747341111302376, 0.0013450373662635684, -0.009997916407883167, -0.0038319772575050592, 0.0016618609661236405, 0.004407108295708895, 0.012826758436858654, -0.007677329704165459, -0.051735036075115204, 0.005617558490484953, 0.016317669302225113, -0.021747976541519165, 0.025921018794178963, -0.03295634314417839, -0.012773257680237293, -0.0007870433619245887, -0.028756549581885338, -0.012097813189029694, -0.015127282589673996, -0.016585173085331917, -0.01519415806978941, 0.001569906948134303, -0.000515360850840807, 0.03185958042740822, -0.0023222584277391434, 0.011054552160203457, 0.04274694249033928, -0.029425306245684624, -0.018992697820067406, 0.005447025410830975, 0.012900321744382381, -0.02061108872294426, -0.020584339275956154, -0.02329949289560318, 0.0063398159109056, -0.0035009426064789295, -0.021908476948738098, -0.02002258226275444, 0.00942947342991829, -0.03148507699370384, 0.0012739819940179586, 0.006272939965128899, -0.007523515727370977, 0.008479838259518147, 0.026683403179049492, 0.011241803877055645, -0.004039291758090258, -0.04122217744588852, -0.1644607037305832, -0.0002094045194098726, 0.004998958203941584, 0.00053249771008268, 0.02886354923248291, 0.029666058719158173, 0.03226083517074585, 0.0014896561624482274, 0.005115990526974201, 0.005818185396492481, 0.003771789139136672, 0.01716030389070511, -0.01387001946568489, 0.0016234074719250202, 0.001972832949832082, -0.0031230950262397528, 0.007717455271631479, 0.0037951956037431955, 0.02534588798880577, 0.020450588315725327, 0.014913279563188553, -0.015822788700461388, 0.015622162260115147, 0.010292169637978077, -0.006092375610023737, 0.0003650994913186878, 0.0007749221404083073, -0.005169491283595562, 0.0019761768635362387, -0.0059920623898506165, 0.01633104495704174, 0.018069813027977943, 0.011964062228798866, -0.009436160326004028, -0.010399170219898224, 0.023165740072727203, 0.011435743421316147, -0.033170346170663834, -0.004751517903059721, -0.001272310153581202, 0.042639944702386856, 0.03699563443660736, -0.010071479715406895, -0.021453723311424255, 0.02106584422290325, 0.03103032335639, 0.0156355369836092, -0.031164074316620827, -0.024797508493065834, -0.004430514760315418, 0.025720391422510147, -0.022282982245087624, -0.009790602140128613, -0.0026532933115959167, 0.018350690603256226, -0.027258533984422684, -0.0001469175476813689, 0.0023406492546200752, -0.003342112759128213, 0.0052096168510615826, 0.018805446103215218, -0.02295173890888691, -0.0065504745580255985, 0.01387001946568489, -0.007918082177639008, -0.03747713938355446, -0.03413335606455803, 0.034454356878995895, -0.025787267833948135, 0.0022319762501865625, -0.014779528602957726, -0.014257898554205894, -0.00267001218162477, -0.0026365742087364197, 0.01457890123128891, 0.028649548068642616, 0.005821529310196638, 0.03835989907383919, 0.002509510377421975, -0.03177933022379875, 0.02645602449774742, 0.022336483001708984, -0.0120643749833107, 0.0064668795093894005, 0.0018624881049618125, 0.005550682544708252, 0.0010081510990858078, 0.014966780319809914, -0.015715789049863815, -0.0007598751108162105, 0.037503890693187714, -0.05403556302189827, -0.00028798345010727644, -0.0022286325693130493, 0.008045146241784096, 0.0051460848189890385, -0.008626964874565601, -0.022109104320406914, 0.0334913469851017, -0.009830727241933346, 0.0071891373954713345, -0.004510765429586172, -0.01168318372219801, -0.012672943994402885, 0.014458524994552135, 0.00981066469103098, -0.025733767077326775, 0.01317451149225235, 0.03338434547185898, -0.01001129113137722, -0.009583286941051483, -0.011268554255366325, 0.006048906594514847, 0.023553619161248207, 0.004009197931736708, 0.05548007786273956, -0.004831769037991762, -0.014819653704762459, 0.00028819244471378624, -0.0177354346960783, 0.04900651052594185, 0.005042427219450474, -0.01241212897002697, 0.013515577651560307, 0.007149011828005314, 0.008660402148962021, -0.1358914077281952, -0.06329115480184555, -0.0060020936653018, 0.007704080082476139, 0.004303451161831617, 0.01089405082166195, -0.014833029359579086, 0.006754445377737284, -0.0027653099969029427, 0.02886354923248291, -0.009730413556098938, -0.019353825598955154, -0.0037985395174473524, 0.00010240340634481981, -0.005503869615495205, 0.0168660506606102, -0.017869185656309128, 0.002778685186058283, -0.03525686636567116, 0.008687152527272701, 0.014819653704762459, 0.003942322451621294, -0.017748810350894928, 0.01580941490828991, -0.020530838519334793, 0.007470014970749617, -0.02037033624947071, 0.020985594019293785, 0.031404826790094376, 0.0178558100014925, -0.014752778224647045, 0.006714319810271263, 0.003928947262465954, -0.025479638949036598, 0.01235194131731987, 0.020116209983825684, -0.02317911572754383, -0.008272523060441017, 0.030013812705874443, 0.006767820566892624, -0.009121844545006752, -0.001335006090812385, 0.001109300646930933, 0.0003136887971777469, -0.007536890916526318, -0.02716490812599659, -0.02030346170067787, 0.013482140377163887, -0.012739819474518299, -0.017895935103297234, -0.019995832815766335, -0.017173677682876587, -0.01598329097032547, 0.001641798298805952, 0.02137347124516964, -0.014966780319809914, 0.010405858047306538, -0.00019519343913998455, 0.010559672489762306, -0.012993947602808475, 0.01033229473978281, 0.017106803134083748, -0.009730413556098938, 0.009529786184430122, 0.0044438899494707584, 0.031190823763608932, -0.01756155677139759, 0.0004223618016112596, 0.03218058496713638, -0.01349551510065794, 0.007242637686431408, 0.009984541684389114, -0.014739403501152992, 0.03108382225036621, -0.0072827632538974285, 0.010787049308419228, -0.013977020047605038, -0.000515360850840807, 0.0003314526693429798, -0.000607732858043164, -0.01411077193915844, -0.016010042279958725, -0.008720590732991695, -0.009034906513988972, 0.009416097775101662, 0.014431774616241455, 0.005440337583422661, 0.019634703174233437, 0.010058104991912842, -0.022563859820365906, -0.007095511071383953, 0.00787126924842596, 0.03723638877272606, -0.014659152366220951, -0.003342112759128213, 0.015327909030020237, -0.008660402148962021, 0.003113063517957926, -0.006249533500522375, 0.004310138523578644, -0.07024622708559036, -0.0049354261718690395, -0.03678163141012192, 0.005253085866570473, -0.00963009987026453, -0.019006071612238884, 0.01455215085297823, -0.01575591415166855, 0.020236585289239883, -0.022510359063744545, 0.001882550772279501, -0.02723178267478943, -0.04611748084425926, -0.009957791306078434, -0.009409409947693348, -0.00012048074131598696, -0.00848652608692646, 0.0008894467609934509, 0.019808581098914146, -0.012271690182387829, 0.03635362908244133, 0.0135490158572793, -0.022376608103513718, -0.011181616224348545, 0.015461660921573639, -0.012947134673595428, -0.012479004450142384, -0.005955280736088753, 0.002215257380157709, 0.03926940634846687, -0.01768193393945694, -0.01837744191288948, 0.012980571947991848, 0.011154865846037865, -0.0052229915745556355, -0.007229262497276068, 0.0022219449747353792, 0.010867300443351269, 0.01673229970037937, 0.021694475784897804, 0.02774003893136978, 7.194362115114927e-05, -0.008540025912225246, -0.04338895156979561, 0.012933759018778801, -0.016652047634124756, -0.03651412948966026, -0.020570963621139526, 0.02148047275841236, 0.015782663598656654, -0.0005801466759294271, -0.009509723633527756, 0.029050802811980247, 0.024035124108195305, 0.010552984662353992, -0.04368320479989052, 0.011770122684538364, -0.0056877778843045235, -0.006048906594514847, -0.0024108688812702894, -0.038787901401519775, 0.014672527089715004, 0.02921130321919918, -0.018832195550203323, 0.012886946089565754, -0.018230315297842026, -0.01053960993885994, -0.0200760830193758, -0.02411537617444992, -0.007383076939731836, -0.019286951050162315, 0.005075865425169468, 0.0033605035860091448, -0.00595862464979291, 0.03180608153343201, 0.009536474011838436, 0.024784132838249207, -0.011643058620393276, -0.04181068390607834, 0.004035948310047388, -0.010813799686729908, 0.028114542365074158, 0.028596047312021255, 0.002681715413928032, -0.02692415565252304, 0.011221741326153278, 0.04708049073815346, -0.022657485678792, -0.006486942525953054, 0.01413752231746912, 0.01130199246108532, 0.007550266105681658, -0.024249127134680748, 0.016825925558805466, -0.02149384841322899, 0.002168444450944662, 0.015127282589673996, 0.0019694892689585686, -0.019460827112197876, 0.00743657723069191, 0.0120643749833107, -0.0015799383400008082, 0.0038520400412380695, -0.011923936195671558, -0.01780230924487114, 0.011489244177937508, -0.03218058496713638, 0.0015113906702026725, -0.0006503661279566586, 0.009931040927767754, -0.02118621952831745, 0.030843069776892662, -0.01856469362974167, 0.014017146080732346, 0.0024058532435446978, 0.013368451036512852, -0.02113271877169609, 0.013301575556397438, -0.02125309593975544, -0.010579735040664673, -0.01340857706964016, 0.0076639545150101185, -0.0021099282894283533, -0.00916197057813406, 0.037450388073921204, 0.020504087209701538, 0.013736267574131489, 0.005644308868795633, 0.006955072283744812, -0.00641003530472517, -0.03113732300698757, 0.02803429216146469, -0.029933560639619827, 0.0032250804360955954, -0.028435545042157173, -0.030013812705874443, 0.0022286325693130493, -0.0084932129830122, 0.01249906700104475, 0.03651412948966026, -0.008968031033873558, 0.06981822848320007, 0.00560752721503377, 0.006356535013765097, 0.010252043604850769, -0.013736267574131489, 0.014659152366220951, 0.031404826790094376, -0.006888196803629398, -0.010853925719857216, -0.011328742839396, 0.0332505963742733, -0.0019193324260413647, -0.0006119126337580383, -0.04560922458767891, 0.022617360576987267, 0.007095511071383953, -0.03442760929465294, 0.023981623351573944, -0.026723528280854225, 0.028435545042157173, 0.004146293271332979, 0.01495340559631586, 0.014418399892747402, -0.023259365931153297, -0.020985594019293785, 0.005196241661906242, 0.00960334949195385, 0.0067878831177949905, -0.006219439674168825, -0.041489679366350174, 0.01926019974052906, 0.008399587124586105, -0.05122678354382515, -0.03621987625956535, -0.009670225903391838, 0.00639331666752696, -0.010158417746424675, -0.005838247947394848, 0.026910779997706413, -0.008473150432109833, -0.008332711644470692, 0.007657267153263092, -0.03389260172843933, -0.060027625411748886, -0.01574253849685192, 0.002559667220339179, 0.006149220280349255, -0.022670861333608627, -0.048444751650094986], "97f8d001-26d2-4042-87a6-da4c7e9df3d1": [0.017251180484890938, 0.030749758705496788, 0.00988770741969347, -0.0377960167825222, -0.021044282242655754, -0.0012410253984853625, -0.02487787790596485, -0.023865483701229095, -0.013161112554371357, -0.01649526134133339, 0.01827707327902317, 0.013167861849069595, -0.022151164710521698, 0.0077684312127530575, -0.011770758777856827, 0.00044123473344370723, 0.015887824818491936, -0.008342120796442032, -0.011710015125572681, -0.006860651541501284, -0.016252286732196808, 0.003261593636125326, -0.008767325431108475, -0.01565834879875183, -0.01119706965982914, 0.006820156238973141, 0.008193636313080788, -0.003708733944222331, 0.010042941197752953, -0.01949194446206093, 0.005412929225713015, -0.0012705535627901554, -0.016144298017024994, -0.0011271311668679118, -0.01819608174264431, -0.008092396892607212, -0.024864379316568375, -0.021300755441188812, -0.010522141121327877, -0.0024078087881207466, 0.059015776962041855, 0.0049539776518940926, -0.01795310713350773, -0.015010417439043522, 0.0011321931378915906, 0.04327643662691116, 0.034880321472883224, -0.0397128127515316, 0.001446878770366311, 0.013593067415058613, 0.010231921449303627, 0.023420030251145363, -0.028050042688846588, 0.00030688170227222145, -0.020342355594038963, 0.006813406944274902, 0.010339910164475441, 0.015982314944267273, 0.0013793858233839273, -0.016468264162540436, 0.006627801340073347, 0.01781812123954296, -0.013944029808044434, -0.00665817316621542, -0.0036007454618811607, 0.004474778193980455, 0.027267126366496086, 0.017143193632364273, -0.01063687913119793, -0.000367203465430066, 0.018560543656349182, 0.020099380984902382, -0.017926109954714775, 0.005861756857484579, 0.019964395090937614, -0.013721303083002567, 0.010063189081847668, 0.012918137945234776, -0.0021715834736824036, 0.021705711260437965, 0.012681913562119007, -0.01631977967917919, -0.007457963656634092, 0.016346776857972145, 0.00024803634732961655, -0.03652714937925339, 0.013302847743034363, 0.008072149008512497, 0.004633386619389057, -0.02517484687268734, 0.009044046513736248, 0.003237971104681492, 0.0071474965661764145, 0.02385198511183262, 0.0016746672336012125, 0.011082331649959087, -0.008693083189427853, 0.023339038714766502, -0.02491837367415428, -0.014254497364163399, -0.01457846350967884, 0.013498577289283276, -0.003037179820239544, -0.005051842425018549, -0.018304070457816124, 0.02853599190711975, 0.0022626989521086216, -0.026146743446588516, 0.027321120724081993, -0.014133010059595108, -0.02433793433010578, 0.0252558384090662, 0.01094734575599432, -0.021786702796816826, 0.021786702796816826, -0.007721186149865389, 0.026187239214777946, -0.026862168684601784, -0.020382851362228394, -0.018223078921437263, 0.021395243704319, -0.015550361014902592, 0.03331448882818222, -0.027226630598306656, 0.047541987150907516, -0.0009145286167040467, 0.0010157679207623005, -0.018722526729106903, -0.01989690214395523, -0.021624719724059105, 0.014146508648991585, 0.017548149451613426, -0.00598324416205287, 0.01719718798995018, 0.012141969986259937, -0.0031772274523973465, 0.0005989993805997074, -0.009017049334943295, -0.014321990311145782, -0.012553676962852478, 0.02425694279372692, -0.007829174399375916, -0.011898995377123356, -0.012357947416603565, 0.003391517559066415, 0.019761916249990463, 0.025525808334350586, 0.03236958757042885, -0.0036142440512776375, -0.017845118418335915, -0.020207369700074196, -0.024202948436141014, -0.011365802027285099, 0.003140106564387679, 0.019829409196972847, -0.0007095189648680389, -0.019559437409043312, 0.0035467511042952538, -0.00665817316621542, -0.007667191792279482, 0.015158901922404766, 0.011284810490906239, 0.0005732676945626736, -0.0002301085478393361, -0.01387653686106205, 0.04316844791173935, -0.007046257145702839, 0.00716774445027113, -0.02907593548297882, 0.013653811067342758, 0.0084771066904068, 0.01853354647755623, -0.01480793859809637, -0.010623380541801453, 0.00842986162751913, -0.00967847928404808, 0.013532323762774467, 0.004316169768571854, -0.01843905635178089, -0.005932624451816082, 0.004643510561436415, 0.009206029586493969, 0.009131787344813347, 0.036284174770116806, -0.024850880727171898, -0.0327475480735302, 0.017602143809199333, 0.01847955211997032, -0.00627346383407712, -0.00347925815731287, 0.022556122392416, 0.0277530737221241, -0.011514286510646343, 0.0006837872788310051, -0.6073279976844788, -0.00809914618730545, 0.012992380186915398, -0.0036344919353723526, -0.003934835083782673, 0.004360040184110403, -0.0042351786978542805, 0.010225172154605389, -0.02447292022407055, 0.026646191254258156, 0.006135103292763233, -0.007903416641056538, 0.006867400836199522, 0.007437715772539377, 0.01669774018228054, -0.027064647525548935, 0.0163737740367651, -0.022205159068107605, -0.0025006113573908806, 0.00039483339060097933, -0.027699079364538193, 0.03668913245201111, -0.024445923045277596, 0.019721420481801033, -0.010542389005422592, 0.022340144962072372, 0.02945389412343502, 0.003425263799726963, -0.010981092229485512, 0.021719209849834442, -0.029804857447743416, -0.014915927313268185, -0.024108458310365677, 0.008605343289673328, 0.0420345701277256, 0.017008207738399506, -0.015482868067920208, 0.009982197545468807, -0.004852738231420517, 0.025188345462083817, 0.010171177797019482, -0.012540178373456001, 0.026848670095205307, -0.011885496787726879, 0.024148954078555107, -0.04079269990324974, 0.02945389412343502, 0.01631977967917919, 0.02479688636958599, -0.03531227633357048, -0.009826963767409325, -0.010319662280380726, 0.025120852515101433, 0.0012241521617397666, 0.031343694776296616, -0.016009312123060226, 0.02251562662422657, -0.011278061196208, 0.019802412018179893, -0.047838956117630005, -0.013269101269543171, 0.013788796029984951, -0.008240881375968456, -0.0027469603810459375, -0.027523597702383995, 0.009685228578746319, -0.02325804904103279, 0.001389509765431285, -0.01514540333300829, -0.0007263922016136348, 0.013674058951437473, 0.015806833282113075, 0.0017345671076327562, -0.00882806908339262, 0.026524703949689865, 0.027726076543331146, 0.02645721100270748, -0.009428756311535835, 0.019680924713611603, 0.018412059172987938, 0.018560543656349182, 0.006651423871517181, -0.03207261860370636, -0.01989690214395523, 0.05080864205956459, 0.006459068972617388, -0.0023791242856532335, 0.02329854480922222, 0.014510970562696457, 0.0009170596022158861, 0.009921453893184662, 0.0273751150816679, 0.0030709262937307358, -0.04249352216720581, -0.015253392048180103, 0.0007491710130125284, -0.019761916249990463, 0.01374830026179552, 0.022259153425693512, -0.021962184458971024, -0.01457846350967884, -0.022556122392416, -0.00011505427391966805, 0.022124167531728745, 0.0034860074520111084, 0.039361849427223206, 0.027402110397815704, 0.005568163003772497, 0.020342355594038963, -0.0508626364171505, -0.02173270843923092, -0.02401396818459034, -0.009934952482581139, 0.008402864448726177, 0.002178332768380642, -0.022110668942332268, 0.031721655279397964, 0.005217200145125389, -0.02089579775929451, -0.02205667458474636, 0.003722232533618808, -0.006756037939339876, -0.0029443770181387663, -0.022826094180345535, -0.004049573093652725, -0.013377089984714985, 0.029561882838606834, 0.014483973383903503, 0.005666027776896954, 0.007086752913892269, -0.00797765888273716, 0.00593937374651432, 0.015118406154215336, -0.007390470709651709, -0.005470298230648041, -0.040738705545663834, -0.012108223512768745, -0.01082585845142603, -0.005507419351488352, -0.030128823593258858, -0.02355501614511013, 0.002782394178211689, 0.004528772551566362, -0.006850527599453926, -0.04154862090945244, -0.035663239657878876, -0.01737266778945923, -0.0019387331558391452, 0.018142087385058403, 0.02169221267104149, 0.002335253870114684, -0.01785861700773239, -0.011143075302243233, 0.021570725366473198, -0.023703500628471375, -0.011440044268965721, -0.00433304300531745, -0.009354514069855213, -0.003516379278153181, -0.008780824020504951, -0.023609010502696037, 0.02335253730416298, -0.02335253730416298, -0.01449747197329998, -0.03747205063700676, -0.021840697154402733, -0.0033965795300900936, 0.021665215492248535, 0.015482868067920208, -0.03231559321284294, -0.010535639710724354, -0.008132892660796642, -0.020841803401708603, -0.005639030598104, -0.02321755327284336, 0.021786702796816826, -0.041764598339796066, 0.009381511248648167, -0.007491710130125284, -0.009556992910802364, -0.0045861415565013885, -0.0017986854072660208, -0.012114972807466984, -0.006529936566948891, 0.008969804272055626, -0.008544599637389183, 0.0046232626773417, 0.0013034563744440675, -0.00673916470259428, 0.016049807891249657, 0.03498831018805504, 0.014618959277868271, -0.027118641883134842, 0.01472694706171751, -0.004076570272445679, 0.01302612666040659, 0.0022019552998244762, 0.009050795808434486, 0.01399802416563034, 0.031559672206640244, 0.015374879352748394, -0.0035939961671829224, -0.005885379388928413, -0.05142957717180252, -0.009867459535598755, -0.02227265201508999, 0.0077684312127530575, -0.01034665945917368, 0.014119511470198631, -0.013080121017992496, -0.0024668648838996887, -0.003156979801133275, -0.002994996728375554, -0.00508896354585886, -0.011818003840744495, 0.027402110397815704, -0.004275674466043711, 0.02513435110449791, 0.007862920872867107, 0.01241869106888771, -0.017602143809199333, -0.0076604424975812435, 0.05561413615942001, 0.012931636534631252, -0.04233153909444809, 0.02425694279372692, 0.002719963202252984, -0.019869904965162277, -0.020990287885069847, -0.05302241072058678, 0.007835923694074154, -0.008463608101010323, 0.009934952482581139, 0.022286150604486465, 0.035582248121500015, 0.02321755327284336, 0.04870286583900452, -0.006151976529508829, 0.04227754473686218, 0.005288067739456892, -0.02011287957429886, 0.020706817507743835, 0.012330950237810612, -0.008855066262185574, 0.019451448693871498, 0.019424451515078545, 0.03371944651007652, 0.01131855696439743, -0.008848316967487335, 0.004542271140962839, 0.01905999146401882, -0.0023285045754164457, -0.007923664525151253, 0.019046492874622345, -0.0027435857336968184, 0.02047734148800373, 0.026659689843654633, 0.022704606875777245, 0.026727182790637016, 0.006445570383220911, -0.005865131504833698, -0.0050079720094799995, 0.00890906061977148, -0.018803518265485764, 0.020841803401708603, 0.011494038626551628, -0.010400653816759586, -0.03461034968495369, -0.013201608322560787, -0.014821437187492847, -0.007356724701821804, -0.03660814091563225, -0.005166580434888601, 0.005072090309113264, -0.0015877700643613935, -0.0002712370187509805, -0.01943795010447502, 0.019410952925682068, 0.024567410349845886, -0.014875431545078754, 0.0033881429117172956, -0.003496131394058466, 0.021300755441188812, 0.029939843341708183, -0.011588528752326965, -0.009604237973690033, 0.007856171578168869, -0.01737266778945923, 0.014362486079335213, -0.02367650344967842, 0.0014966547023504972, 0.029723865911364555, 0.007916915230453014, -0.0031181713566184044, -0.030317803844809532, -0.02617374062538147, 0.03617618605494499, -0.0034522609785199165, 0.011845001019537449, 0.022421136498451233, 0.004147437866777182, -0.0010537327034398913, -0.030263809487223625, -0.034799329936504364, 0.04711003229022026, -0.013788796029984951, -0.0034691342152655125, -0.011500787921249866, -0.0016468263929709792, 0.006151976529508829, -0.002978123491629958, -0.0025006113573908806, -0.019127484411001205, -0.0025309831835329533, 0.029507888481020927, -0.001844243030063808, 0.002272822894155979, 0.005200326908379793, 0.057935893535614014, 0.01472694706171751, -0.007815675809979439, 0.004660383798182011, 0.024958869442343712, 0.005284693092107773, 0.026443712413311005, 0.00419468292966485, -0.019127484411001205, 0.02497236803174019, -0.029966840520501137, -0.0198564063757658, -0.009644732810556889, -0.029237918555736542, 0.011352303437888622, -0.010630129836499691, 0.0346643440425396, -0.0028347012121230364, 0.008342120796442032, 0.0036142440512776375, 0.013903534039855003, 0.012722408398985863, -0.005085588898509741, 0.00614860188215971, 0.018371563404798508, -0.010981092229485512, 0.029318910092115402, 0.0026035381015390158, -0.0024516789708286524, 0.013944029808044434, 0.0005610345979221165, 0.010049690492451191, 0.005230698734521866, 0.00899680145084858, 0.015901323407888412, -0.046921052038669586, -0.00622959341853857, -0.00899680145084858, 0.003766102949157357, 0.02185419574379921, -0.0011026649735867977, 0.03307151421904564, 0.015685345977544785, 0.02151673100888729, -0.0037357311230152845, -0.005456799641251564, -0.008153140544891357, 0.008922559209167957, 0.01094734575599432, -0.005493920762091875, -0.0004467185353860259, 0.011352303437888622, -0.008537850342690945, 0.023582013323903084, -0.008942807093262672, -0.010684123262763023, 0.005156456492841244, -0.017102697864174843, -0.04009077325463295, -0.02543131820857525, 0.0005154769169166684, 0.013613315299153328, 0.0075524537824094296, -0.009253274649381638, -0.02539082244038582, -0.028023045510053635, 0.002397684846073389, -0.011892246082425117, 0.021719209849834442, -0.0033510217908769846, -0.009138536639511585, -0.015941819176077843, -0.024702396243810654, 0.007181243039667606, 0.003955082967877388, -0.02783406525850296, 5.141059591551311e-05, -0.01953244023025036, -0.02783406525850296, -0.011581779457628727, 0.01192599255591631, 0.006624426692724228, 0.005014721304178238, 0.012830397114157677, -0.011595278047025204, 0.02097678929567337, -0.015091408975422382, -0.02093629352748394, -0.014389483258128166, -0.02883296087384224, -0.0204368457198143, 0.004252051934599876, 0.0032683429308235645, -0.0007479055202566087, -0.015523363836109638, 0.005122710019350052, -0.006897772662341595, 0.0017598769627511501, -0.034043412655591965, -0.02501286379992962, -0.0005703148781321943, 0.03477233275771141, 0.019883403554558754, -0.004221680108457804, 0.01989690214395523, -0.01391703262925148, -0.020544834434986115, -0.0035568750463426113, -0.024864379316568375, 0.007181243039667606, -0.018128588795661926, -0.008342120796442032, 0.002920754486694932, 0.018128588795661926, 0.0031738528050482273, -0.021300755441188812, 0.0074782115407288074, -0.010110434144735336, 0.016144298017024994, 0.021881192922592163, 0.007356724701821804, 0.009192530997097492, -0.008531101047992706, 0.026322225108742714, 0.003762728301808238, -0.030047832056879997, 0.02633572369813919, -0.02297457866370678, 0.01046814676374197, 0.0006985513609834015, -0.02447292022407055, 0.009901206009089947, -0.0027756448835134506, -0.05583011358976364, -0.025687791407108307, 0.008085647597908974, 0.020369352772831917, 0.029264915734529495, -0.002966312225908041, -0.020139876753091812, -0.031721655279397964, 0.02293408289551735, -0.03536627069115639, 0.005588410887867212, -0.0064894407987594604, -0.014564964920282364, -0.0008774074958637357, -0.012054229155182838, 0.004140688572078943, -0.021678714081645012, 0.012708909809589386, -0.031802646815776825, -0.0019016120349988341, 0.013383839279413223, -0.008355619385838509, 0.008416363038122654, -0.012263457290828228, 0.016427768394351006, -0.010407403111457825, 0.006462443619966507, -0.007505208719521761, -0.03693210706114769, -0.01653575710952282, 0.008551348932087421, 0.023460526019334793, 0.02123326249420643, 0.00940850842744112, 0.014119511470198631, 0.021989181637763977, 0.016441266983747482, -0.019829409196972847, 0.015280389226973057, -0.015806833282113075, -0.0005433176993392408, -0.007417467888444662, 0.003955082967877388, 0.002853261772543192, 0.009442254900932312, -0.03137069195508957, 0.01865503378212452, -0.013761798851191998, 0.01685972325503826, 0.006810032296925783, 0.01258742343634367, 0.008841567672789097, -0.02355501614511013, -0.0006774598150514066, 0.018722526729106903, -0.004363414831459522, 0.00036994536640122533, -0.010447898879647255, 0.008261129260063171, 0.017629140987992287, 0.015415375120937824, 0.032504573464393616, 0.007046257145702839, 0.00014152414223644882, 0.0030894868541508913, -0.014753944240510464, 0.015199397690594196, 0.005578286945819855, -0.03787700831890106, 0.003378018969669938, -0.03871391713619232, 0.00466375844553113, -0.00691802054643631, 0.001985978102311492, 0.03263955935835838, -0.010501893237233162, -0.001435067504644394, -0.02301507443189621, -0.0048257410526275635, -0.003086112206801772, -0.0020382851362228394, 0.01781812123954296, -0.02713214047253132, -0.011791006661951542, -0.004761623218655586, -0.02937290444970131, -0.01331634633243084, -0.014079015702009201, 0.0015261828666552901, 0.0009077793220058084, 0.011635773815214634, -0.040981680154800415, -0.017939608544111252, -0.00728923175483942, -0.004248677287250757, 0.02649770677089691, 0.006384826730936766, 0.03593321144580841, 0.019802412018179893, 0.007613197434693575, -0.02675417996942997, -0.009516497142612934, -0.004913481883704662, 0.0072554852813482285, 0.0198564063757658, 0.021287256851792336, -0.02263711392879486, -0.006772911176085472, -0.01575283892452717, 0.013350092805922031, -0.0252558384090662, -0.003934835083782673, 0.0036007454618811607, 0.00952999573200941, -0.012290454469621181, -0.019343459978699684, 0.00830837432295084, -0.044761281460523605, 0.02991284616291523, -0.030722761526703835, -0.0011735325679183006, -0.03992879018187523, -0.015442372299730778, -0.045760177075862885, 0.01961343176662922, -0.018965501338243484, 0.017170190811157227, 0.005740270018577576, 0.0008655962301418185, -0.023379534482955933, -0.02683517150580883, -0.03706709295511246, 0.03776901960372925, 0.003148543182760477, 0.011413047090172768, -0.019802412018179893, 0.003978705499321222, 0.020585330203175545, -0.009455753490328789, -0.008369117975234985, 0.006357829552143812, 0.004231804050505161, 0.0289139524102211, 0.008335371501743793, 0.005308315623551607, -0.022731604054570198, -0.01086635421961546, -0.004228429403156042, 0.006307210307568312, -0.03647315502166748, 0.0036851114127784967, 0.004106942098587751, -0.006155351176857948, 0.041440632194280624, 0.022421136498451233, -0.025377323850989342, 0.005517543293535709, -0.005811137612909079, 0.005480422172695398, -0.007066505029797554, -0.009658231399953365, 0.03150567784905434, -0.020963290706276894, -0.033503469079732895, -0.02151673100888729, 0.0031856640707701445, 0.012027231976389885, -0.0009921453893184662, -0.010900100693106651, 0.001764938933774829, 0.01530738640576601, 0.008531101047992706, 0.026025256142020226, 0.007194741629064083, 0.0018746148562058806, 0.003820097306743264, 0.019505443051457405, -0.028562989085912704, -0.005507419351488352, 0.02583627589046955, -0.018061095848679543, -0.0028043293859809637, -0.015037414617836475, -0.02263711392879486, 0.010002445429563522, -0.000304561632219702, -0.0017134755617007613, -0.0017969980835914612, 0.019248971715569496, 0.007012510672211647, -0.006766161881387234, -0.01645476557314396, 0.011919243261218071, -0.008342120796442032, -0.016630247235298157, 0.009226277470588684, -0.015212896279990673, 0.0018358065281063318, -0.023447027429938316, 0.014146508648991585, 0.017980104312300682, -0.0018847387982532382, -0.025579802691936493, -0.0015970503445714712, 0.016643745824694633, -0.007997906766831875, -0.001722755841910839, -0.02929191291332245, 0.00043237628415226936, -0.003032117849215865, 0.04678606614470482, 0.00043406360782682896, 0.008051901124417782, -0.0010377031285315752, 0.0018273699097335339, 0.01969442330300808, 0.01192599255591631, -0.004829115699976683, -0.015779836103320122, 0.009388260543346405, 0.014106012880802155, -0.0030051206704229116, -0.03153267502784729, -0.016805728897452354, 0.042520519345998764, 0.014956423081457615, -0.007282482460141182, -0.01665724441409111, 0.005669402424246073, -0.041143663227558136, -0.019721420481801033, -0.00678303511813283, 0.017521152272820473, 0.03539326786994934, 0.010812359862029552, -0.014429979026317596, 0.022151164710521698, -0.002323442604392767, 0.02085530199110508, -0.041980575770139694, -0.00606423569843173, -0.0019640428945422173, 0.02637621946632862, -0.013134115375578403, 0.0017379417549818754, -0.010380405932664871, -0.019424451515078545, 0.010400653816759586, -0.019869904965162277, 0.031802646815776825, 0.02073381468653679, -0.011703265830874443, 0.003459010273218155, -0.018088093027472496, 0.011723513714969158, 0.0026170366909354925, 0.011082331649959087, 0.019680924713611603, -0.029399901628494263, -0.00427904911339283, 0.004066446330398321, -0.010677373968064785, -0.028239022940397263, 0.005979869514703751, 0.01453796774148941, -0.03169465810060501, 0.023069068789482117, 0.02159772254526615, -0.01691371761262417, -0.0029443770181387663, -0.02217816188931465, 0.013653811067342758, -0.01530738640576601, -0.02655170112848282, 0.022421136498451233, -0.003475883509963751, -0.0091587845236063, -0.01633327826857567, 0.005989993456751108, -0.03960482403635979, 0.0073297275230288506, 0.019383955746889114, 0.01703520491719246, -0.0183175690472126, 0.008078898303210735, 0.03353046625852585, -0.004751499276608229, 0.004913481883704662, -0.0078966673463583, 0.008342120796442032, -0.015631351619958878, 0.00984721165150404, 0.017791124060750008, 0.00010113386815646663, 0.009145285934209824, 0.01086635421961546, 0.01853354647755623, -0.003345959819853306, -0.018304070457816124, -0.023028573021292686, 0.009860710240900517, 0.010090186260640621, -0.010380405932664871, 0.008605343289673328, -0.002436493057757616, 0.03253157064318657, 0.018425557762384415, -0.020990287885069847, 0.006438821088522673, 0.17915311455726624, -0.010090186260640621, 0.0006289493176154792, 0.02983185462653637, 0.008456858806312084, 0.0210172850638628, 0.010252169333398342, -0.010049690492451191, -0.025066858157515526, 0.0073702228255569935, -0.015563859604299068, 0.026322225108742714, -0.022286150604486465, 0.00759294955059886, 0.016886720433831215, -0.002816140651702881, 0.009280271828174591, -0.05561413615942001, 0.003307151375338435, -0.0031806020997464657, -0.0036479905247688293, 0.015550361014902592, -0.012391693890094757, 0.001627422170713544, 0.020409848541021347, -0.001630796818062663, 0.016144298017024994, -0.0005015564966015518, 0.031721655279397964, 0.00246180291287601, -0.02683517150580883, 0.009152035228908062, 0.00923977605998516, 0.014713449403643608, -0.015037414617836475, -0.005463548935949802, 0.025957763195037842, 0.0066716717556118965, 0.01383604109287262, -0.011851750314235687, 0.002719963202252984, -0.0327475480735302, -0.013404087163507938, -0.013674058951437473, 0.010015944018959999, -0.005811137612909079, -0.008693083189427853, -0.014524469152092934, -0.032045621424913406, 0.02493187226355076, -0.030938738957047462, -0.020369352772831917, 0.01623878814280033, -0.0026879040524363518, 0.008382616564631462, 0.028805963695049286, 0.015131904743611813, 0.006826905533671379, 0.02165171690285206, 0.045112244784832, 0.00834887009114027, 0.043519411236047745, -0.0056829010136425495, -0.0005804388201795518, -0.0069315191358327866, -0.0026052254252135754, -0.022556122392416, 0.00020437689090613276, -0.0019792288076132536, -0.008294875733554363, 0.014510970562696457, -0.010245420038700104, -0.0020754062570631504, 0.0009347764425911009, -0.042061567306518555, -0.010481645353138447, 0.03749904781579971, 0.039901793003082275, -0.0005677838926203549, 0.020099380984902382, -0.036203183233737946, -0.019410952925682068, -0.01034665945917368, -0.0022761975415050983, -0.009901206009089947, -0.020099380984902382, 0.02763158641755581, -0.009786467999219894, -0.005250946618616581, -0.013215106911957264, -0.000654681003652513, -0.003931460436433554, -0.009131787344813347, -0.0008984990417957306, 0.006290337070822716, -0.010090186260640621, -0.018452554941177368, 0.028886955231428146, -0.020571831613779068, 0.008794322609901428, -0.03563624247908592, 0.04597615450620651, 0.009961949661374092, 0.039037883281707764, 0.006843778770416975, -0.0014873744221404195, -0.0005315064918249846, 0.008544599637389183, -0.0037188578862696886, -0.0030608023516833782, 0.003762728301808238, -0.025566304102540016, 0.012540178373456001, -0.007363473530858755, 0.0032683429308235645, -0.003587246872484684, -0.01086635421961546, 0.000971897563431412, -0.02451341599225998, -0.01246593613177538, -0.01156828086823225, -0.013620064593851566, -0.0025849775411188602, -0.0075524537824094296, 0.014794440008699894, -0.018425557762384415, -0.06889674067497253, 0.014915927313268185, -0.0033932048827409744, 0.011689767241477966, 0.026943160220980644, -0.036284174770116806, 0.03469134122133255, 0.004876360762864351, -0.014686452224850655, -0.03285553678870201, -0.008355619385838509, -0.021624719724059105, -0.006475942209362984, 0.010245420038700104, 0.005986618809401989, 0.027861062437295914, -0.01119706965982914, 0.005672777071595192, 0.0481899194419384, -0.006411823909729719, -0.002487112767994404, 0.0063207088969647884, -0.01009693555533886, -0.013383839279413223, -0.018790019676089287, -0.004451155662536621, 0.007930413819849491, -0.024648401886224747, -0.01245918683707714, -0.039523832499980927, -0.007532205898314714, -0.03733706474304199, 0.02011287957429886, -0.015131904743611813, -0.02127375826239586, -0.019923899322748184, -0.000500712834764272, 0.012067727744579315, -0.006850527599453926, -0.02289358712732792, -0.16835425794124603, -0.002549543743953109, 0.004859487526118755, -0.0015177462482824922, 0.021408742293715477, 0.01575283892452717, 0.051456574350595474, -0.0070395078510046005, 0.004225054755806923, -0.008713331073522568, -0.005686275660991669, 0.008767325431108475, -0.03293652832508087, -0.012756154872477055, -0.002019724575802684, 0.026079250499606133, -0.0002684951468836516, 0.013890035450458527, 0.04454530403017998, 0.015901323407888412, 0.04543621093034744, -0.00653331121429801, 0.027159137651324272, -0.006172224413603544, 0.006310584954917431, -0.0004804649797733873, -0.011224066838622093, 0.012027231976389885, -0.004339792300015688, -0.006236342713236809, -0.018331067636609077, 0.010252169333398342, -0.0060676103457808495, -0.01005643978714943, -0.005460174288600683, 0.007444465067237616, -0.011656021699309349, -0.02347402460873127, 0.0016982897650450468, -0.01192599255591631, 0.036905109882354736, 0.0262142363935709, -0.01947844587266445, -0.008720080368220806, 0.03290953114628792, 0.01947844587266445, 0.023622509092092514, -0.045841168612241745, 0.023622509092092514, 0.019761916249990463, 0.03439437597990036, -0.013350092805922031, 0.016049807891249657, -0.008193636313080788, 0.029318910092115402, -0.027321120724081993, -0.010029442608356476, 0.017980104312300682, -0.015577358193695545, 0.015563859604299068, -0.0004787776560988277, -0.023163558915257454, -0.013890035450458527, 0.009266773238778114, 0.011143075302243233, -0.01711619645357132, -0.01691371761262417, 0.035123296082019806, -0.04173760116100311, 0.0011870311573147774, -0.016171295195817947, 0.0063038356602191925, 0.04594915732741356, 0.0028870082460343838, 0.006057486403733492, 0.02297457866370678, 0.005578286945819855, 0.02733461931347847, -0.0059967427514493465, -0.013809043914079666, 0.02073381468653679, 0.028401006013154984, 0.012924887239933014, 0.013201608322560787, 0.008045151829719543, -0.014133010059595108, 0.01094734575599432, 0.014362486079335213, -0.006084483582526445, -0.022866589948534966, 0.031208710744976997, -0.021503232419490814, -0.014200503006577492, 0.006590680219233036, 0.02443242445588112, 0.012789901345968246, -0.001097603002563119, -0.003462384920567274, 0.04133264347910881, -0.024445923045277596, 0.020490840077400208, -0.02301507443189621, -0.009219528175890446, 0.011689767241477966, 0.026767678558826447, 0.032045621424913406, -0.010751616209745407, 0.02309606596827507, 0.022191660478711128, 0.005119335372000933, -0.029237918555736542, -0.005892128683626652, 0.005662653129547834, 0.031640663743019104, -0.012789901345968246, 0.02721313200891018, 0.0036952353548258543, -0.009799966588616371, 0.0039449590258300304, 0.0024213071446865797, 0.02605225332081318, 0.009563742205500603, -0.015712343156337738, 0.029588880017399788, 0.01530738640576601, -0.00415418716147542, -0.12829047441482544, -0.040981680154800415, -0.008166639134287834, 0.008261129260063171, 0.00024761451641097665, 0.01927596889436245, -0.018020600080490112, 0.006853902246803045, -0.007903416641056538, 0.046003151684999466, -0.011912493966519833, 0.00022821032325737178, 0.011635773815214634, -0.007221738807857037, -0.022083671763539314, 0.021908190101385117, -0.008895562030375004, -0.012641417793929577, 0.005099087487906218, 0.024121956899762154, 0.0011372551089152694, -0.009435505606234074, 0.0046570091508328915, 0.013728052377700806, -0.014173505827784538, 0.009044046513736248, -0.008085647597908974, -0.009685228578746319, 0.01391703262925148, -0.00034885384957306087, -0.0028380758594721556, -0.001493280055001378, 0.009057545103132725, -0.024027466773986816, 0.024648401886224747, -0.002235701773315668, -0.0335574634373188, -0.002126025967299938, 0.009982197545468807, 0.007471462246030569, -0.0005909845931455493, -0.014281494542956352, -0.020085882395505905, 0.019451448693871498, -0.00944900419563055, -0.007599698845297098, -0.013944029808044434, -0.0031181713566184044, -0.022029677405953407, -0.016684241592884064, -0.03709409013390541, -0.044761281460523605, -0.04503125324845314, -0.006091232877224684, 0.050457682460546494, 0.007829174399375916, 0.0035737482830882072, 0.023028573021292686, -0.011372551321983337, -0.0240949597209692, 0.01665724441409111, 0.014079015702009201, -0.019842907786369324, -0.0015160589246079326, 0.01623878814280033, 0.015563859604299068, 0.0013211732730269432, -0.013235354796051979, 0.007160995155572891, -0.014996918849647045, -0.013370340690016747, 0.0051159607246518135, -0.023743996396660805, 0.0331525057554245, -0.014470474794507027, 0.005713272839784622, -0.013242104090750217, -0.001977541483938694, -0.008213884197175503, 0.009462502785027027, -0.005706523545086384, -0.021462736651301384, 0.001830744557082653, -0.00012528366642072797, 0.009138536639511585, -0.008571596816182137, 0.012438938952982426, -0.0007289231871254742, 0.013903534039855003, -0.032504573464393616, 0.001597894006408751, 0.011170072481036186, 0.025377323850989342, 0.004572642967104912, -0.011413047090172768, -0.003513004630804062, 0.009354514069855213, -0.016589751467108727, -0.009057545103132725, 0.001514371600933373, -0.03498831018805504, 0.01131855696439743, -0.03552825376391411, 0.0026760927867144346, -0.019748417660593987, -0.00890906061977148, 0.009874208830296993, -0.01885751262307167, 0.022623615339398384, -0.021921688690781593, 0.004859487526118755, -0.0028498871251940727, -0.039280857890844345, 0.0053150649182498455, -0.012492933310568333, -0.012560426257550716, -0.019167980179190636, -0.01453796774148941, -0.0052543212659657, -0.005693024955689907, 0.017345670610666275, -0.0038268466014415026, -0.017089199274778366, -0.009003550745546818, 0.0084771066904068, 0.0047110035084187984, 0.006570432335138321, 0.008571596816182137, -0.027469603344798088, 0.023770993575453758, -0.02733461931347847, -0.016306281089782715, 0.016751734539866447, -0.007964160293340683, -0.014672953635454178, -0.005122710019350052, 0.008288126438856125, 0.001822307938709855, 0.02109827660024166, 0.02587677165865898, 0.009712225757539272, 0.02267760969698429, -0.009671729989349842, -0.05018771067261696, -0.006945017725229263, -0.002340315841138363, -0.017048703506588936, -0.024958869442343712, 0.012681913562119007, 0.017980104312300682, 0.0053555602207779884, 0.007451214361935854, 0.039577826857566833, 0.00967847928404808, -0.002252575010061264, -0.032423581928014755, 0.011102579534053802, -0.025269336998462677, 0.010292665101587772, -0.017507653683423996, -0.019964395090937614, -0.018182583153247833, 0.05364334583282471, -0.0011979987611994147, 0.010974342934787273, -0.020301859825849533, 0.0016628559678792953, -0.019370457157492638, -0.02729412354528904, 0.010609881952404976, 0.0021192766726017, -0.014173505827784538, -0.024891376495361328, 0.02093629352748394, 0.028239022940397263, 0.02741560898721218, 0.05412929505109787, -0.011575030162930489, -0.05912376567721367, 0.010812359862029552, -0.014011522755026817, 0.010704371146857738, 0.04711003229022026, 0.023042071610689163, 0.01885751262307167, 0.021908190101385117, 0.03423239290714264, -0.00021144255879335105, -0.009637984447181225, 0.0004425002261996269, -0.02713214047253132, 0.03223460167646408, 0.002028161194175482, 0.01013743132352829, -0.029804857447743416, 0.005470298230648041, 0.024648401886224747, 0.01331634633243084, -0.01081910915672779, 0.017129695042967796, 0.016562754288315773, 0.011332055553793907, 0.012756154872477055, -0.0027182758785784245, -0.023743996396660805, 0.01246593613177538, -0.012803399935364723, 0.0073702228255569935, -0.016792230308055878, -0.018209580332040787, -0.004565893672406673, 0.04111666604876518, -0.01356607023626566, 0.01611730083823204, 0.01997789368033409, 0.010110434144735336, -0.022151164710521698, 0.026565199717879295, 0.003102985443547368, -0.02393297664821148, -0.013134115375578403, -0.0009086229838430882, -0.01538837794214487, -0.014483973383903503, 0.03776901960372925, -0.01289789006114006, 0.00470425421372056, 0.0059427483938634396, 0.02683517150580883, -0.025660794228315353, -0.003914587199687958, -0.003114796709269285, -0.009948451071977615, -0.0022306398022919893, -0.02853599190711975, -0.02439192868769169, -0.0049168565310537815, -0.009941701777279377, 0.012783152051270008, 0.0021192766726017, 0.008672835305333138, 0.08455508947372437, 0.015901323407888412, 0.008220633491873741, 0.022124167531728745, 0.013302847743034363, 0.020585330203175545, 0.00842986162751913, -0.004505150020122528, -0.005227324087172747, -0.03647315502166748, 0.026781177148222923, -0.00996869895607233, -0.008740328252315521, -0.005706523545086384, 0.02575528435409069, 0.015725841745734215, -0.004896608646959066, 0.022988077253103256, -0.032261598855257034, -0.0005770641728304327, 0.017359169200062752, -0.0015067786443978548, -0.003691860707476735, 0.007775180507451296, -0.03714808449149132, 0.010873103514313698, 0.018209580332040787, -0.0046030147932469845, -0.00940850842744112, -0.03725607320666313, 0.010231921449303627, 0.001351544982753694, -0.033584460616111755, -0.027523597702383995, -0.0040192012675106525, -0.0030101826414465904, -0.01723768375813961, 0.0015422124415636063, 0.039982784539461136, 0.008625590242445469, -0.0042351786978542805, 0.012155468575656414, -0.028050042688846588, -0.033881429582834244, -0.018628036603331566, 0.0031434812117367983, -0.0018341192044317722, -0.009125038050115108, -0.050754647701978683], "aacf5ef9-6dbd-40de-991b-a512b0552188": [0.013876737095415592, -0.0009814706863835454, -0.002486851764842868, -0.0365634448826313, -0.010099065490067005, 0.010071491822600365, -0.02454107441008091, -0.007445045281201601, -0.017606152221560478, -0.004732429049909115, 0.010829783044755459, 0.0055355289950966835, -0.015027961693704128, 0.011036589741706848, -0.023934440687298775, -0.022142115980386734, 0.003353717038407922, -0.0031296764500439167, -0.02349325269460678, 0.004794470965862274, -0.0036777143832296133, 0.011739733628928661, -0.025506172329187393, -0.020101621747016907, -0.0030676343012601137, 0.00273329671472311, 0.02274874970316887, -0.014572986401617527, 0.009044351056218147, -0.022211050614714622, 0.031737953424453735, -0.020818552002310753, -0.02331402152776718, -0.03193097189068794, -0.0061835236847400665, 0.016006847843527794, -0.016117144376039505, 0.013187380507588387, 0.009340774267911911, 0.023162363097071648, 0.02674701437354088, -0.01741313375532627, -0.00018504900799598545, -0.018957290798425674, 0.0018457507248967886, 0.027353648096323013, 0.02546481229364872, -0.03865908458828926, -0.0024971922393888235, 0.010312765836715698, 0.0027815515641123056, 0.00750708719715476, -0.003974137362092733, 0.0008255038410425186, -0.01273240614682436, 0.011739733628928661, 0.03055225871503353, 0.005738888867199421, -0.011126206256449223, -0.014738432131707668, 0.008947840891778469, 0.0017888789298012853, -0.014159373007714748, -0.0025816382840275764, -0.007027984596788883, 0.001971558202058077, 0.025685405358672142, 0.012373941019177437, 0.008348101750016212, 0.02997319959104061, 0.021604418754577637, 0.008589375764131546, -0.014242095872759819, -0.013780226930975914, 0.03314423933625221, -0.015455362387001514, 0.006724668201059103, 0.010429956950247288, -0.005545869469642639, 0.03648072108626366, 0.010319659486413002, -0.009830216877162457, -0.010423063300549984, 0.02043251320719719, 0.016530757769942284, -0.031158892437815666, -0.013518271967768669, 0.0017871555173769593, 0.0009133967687375844, -0.007107260636985302, 0.011470884084701538, -0.019398478791117668, -0.004977150354534388, 0.027050331234931946, 0.011002122424542904, 0.022473007440567017, -0.011415735818445683, 0.03160008043050766, -0.03540532663464546, -0.03132433816790581, -0.01493145152926445, 0.0040223924443125725, -0.0004278315755072981, -0.008561802096664906, -0.013814695179462433, 0.026843523606657982, 0.014131798408925533, -0.037418246269226074, 0.02014298364520073, -0.014766005799174309, -0.03703220561146736, 0.029201122000813484, 0.00201808987185359, -0.03160008043050766, 0.012401514686644077, -0.005842292215675116, 0.03421963378787041, -0.004384304396808147, -0.023631123825907707, -0.0024437671527266502, 0.005132255610078573, 0.015234768390655518, 0.03410933539271355, -0.05349402874708176, 0.03992750123143196, 0.0069452621974051, 0.008265378884971142, -0.01661347970366478, -0.02001889981329441, -0.008141295053064823, 0.004611792042851448, 0.01683407463133335, -0.014986599795520306, 0.011725946329534054, -0.013759545981884003, -0.0107677411288023, 0.0052701267413794994, -0.017619939520955086, -0.005297700874507427, -0.009133967570960522, 0.02436184138059616, -0.004556643310934305, -0.011581181548535824, 0.00784487184137106, -0.002891848562285304, 0.029559586197137833, 0.03970690816640854, 0.02714684046804905, -0.007417470682412386, -0.00408098753541708, -0.029780181124806404, -0.012256749905645847, -0.014200733974575996, 0.009699239395558834, 0.009995662607252598, 0.003543290076777339, -0.03182067349553108, -0.0013287337496876717, -0.020680680871009827, -0.009919833391904831, 0.0058250585570931435, 0.01174662634730339, -0.012491131201386452, -0.018198998644948006, -0.018157638609409332, 0.03686676174402237, -0.0112227164208889, 0.017523430287837982, -0.026760801672935486, -0.01608956977725029, 0.015841402113437653, -0.0009349391330033541, 0.00038173090433701873, -0.0043326024897396564, 0.01811627671122551, 0.008272272534668446, 0.01180177554488182, -0.00647994689643383, -3.799536716542207e-05, -0.006721221376210451, 0.01563459448516369, 0.012435982935130596, 0.0074519384652376175, 0.02622310258448124, -0.017316622659564018, -0.024692732840776443, -0.02112186886370182, 0.013752653263509274, -0.011629436165094376, -0.014766005799174309, 0.03617740422487259, 0.033999040722846985, -0.034467801451683044, -0.009650984779000282, -0.588985800743103, -0.014476476237177849, -0.013731972314417362, 0.0028418703004717827, -0.013428655453026295, -0.022293774411082268, 0.001589827355928719, 0.0036432466004043818, -0.03055225871503353, 0.035736218094825745, -0.0024127461947500706, -0.010843570344150066, 0.014076650142669678, 0.007027984596788883, 0.02320372313261032, -0.013911204412579536, 0.01835065707564354, -0.01597927324473858, -0.002762594260275364, -0.0017104645958170295, -0.01852989010512829, 0.037418246269226074, -0.026016296818852425, 0.02553374692797661, -0.0013692333595827222, 0.005507954861968756, -0.000830243167001754, -0.007803510408848524, -0.005087447352707386, 0.018033552914857864, -0.00871346052736044, 0.018943503499031067, -0.009161541238427162, 0.011326119303703308, 0.03598438575863838, 0.0215354822576046, -0.004122348967939615, 0.007155515719205141, -0.024444565176963806, 0.020336002111434937, 0.017468281090259552, -0.011463990435004234, 0.03750096634030342, -0.0033451002091169357, 0.018709123134613037, -0.012704831548035145, 0.01852989010512829, 0.021976670250296593, 0.02182501181960106, -0.02524421736598015, 0.00389830837957561, -0.018612612038850784, 0.01340108085423708, -0.0011331290006637573, 0.021549269556999207, 0.01041616965085268, 0.01592412404716015, -0.009492432698607445, 0.0045049418695271015, -0.03813517466187477, -0.00969234574586153, 0.015441575087606907, -0.012270537205040455, -0.014311031438410282, -0.012415301986038685, -0.001440754160284996, -0.005749229341745377, 0.008168868720531464, -0.023121001198887825, -0.013642355799674988, 0.0013588931178674102, 0.013738865964114666, -0.00604565255343914, 0.011126206256449223, 0.024871965870261192, 0.03002834878861904, 0.025092558935284615, -0.01354584563523531, 0.018378231674432755, 0.03830062225461006, 0.01377333328127861, -0.0017957724630832672, -0.025947360321879387, -0.011560500599443913, 0.056968383491039276, -0.006362756248563528, -0.007658745627850294, -0.0011822455562651157, 0.03391631692647934, 0.01828172244131565, 0.01708224229514599, 0.04183012247085571, -0.004263666924089193, -0.0597258061170578, -0.00011406688281567767, 0.009961194358766079, -0.03769398853182793, 0.009747494012117386, 0.015455362387001514, -0.023741422221064568, -0.024582436308264732, -0.036673739552497864, 0.018888356164097786, 0.00736232241615653, -0.0050081717781722546, 0.027395008131861687, -0.0017802619840949774, 0.026071444153785706, 0.023424318060278893, -0.02738122083246708, -0.030828000977635384, -0.03234458342194557, -0.014793580397963524, 0.0071417284198105335, 4.8012570914579555e-05, -0.029614735394716263, 0.033116664737463, 0.003496758406981826, -0.011856923811137676, -0.024568649008870125, 0.00360877881757915, -0.001957771135494113, -0.0025868085213005543, -0.005914674606174231, -0.0036466934252530336, -0.0007815574062988162, 0.027519091963768005, -0.01677892543375492, 0.0016389439115300775, 0.00867899227887392, -0.002891848562285304, 0.002829806413501501, 0.006672966293990612, -0.014311031438410282, -0.004542856011539698, -0.027450157329440117, 0.0060628862120211124, -0.02117701806128025, 0.006731561850756407, -0.004518728703260422, -0.010960760526359081, 0.0016811670502647758, 0.010388595052063465, -0.004511835053563118, -0.021631991490721703, -0.03934844210743904, 0.0030021455604583025, -0.0032727178186178207, -0.00681428425014019, 0.012739299796521664, -0.01852989010512829, -0.0215354822576046, -0.013587207533419132, 0.01414558570832014, -0.010016343556344509, -0.015524297952651978, 0.0113123320043087, -0.00859626941382885, 0.020404938608407974, -0.011691478081047535, -0.015882762148976326, 0.025768129155039787, -0.016530757769942284, -0.0059698233380913734, -0.047951605170965195, -0.019991325214505196, -0.01493145152926445, 0.03344755619764328, 0.0072175576351583, -0.04312611371278763, -0.004529069177806377, -0.026030084118247032, -0.020708255469799042, -0.0006031865486875176, -0.018971078097820282, 0.016296377405524254, -0.027450157329440117, 0.011939646676182747, -0.011974113993346691, -0.000756137422285974, 0.008382569067180157, 0.0037294160574674606, -0.0025850851088762283, -0.013676824048161507, 0.03634284809231758, -0.0009280455415137112, 0.015179620124399662, -0.029256269335746765, -0.013587207533419132, -0.011174460873007774, 0.01735798455774784, 0.025974934920668602, -0.014104224741458893, 0.00044808140955865383, 0.005166723392903805, 0.01324942335486412, 0.01200858224183321, -0.003953456878662109, 0.023658698424696922, 0.041637104004621506, 0.02263845130801201, 0.01621365360915661, 0.020046472549438477, -0.034412652254104614, 0.00013302416482474655, 0.002104259328916669, -0.0006716912612318993, 0.006324841640889645, 0.022362709045410156, -0.02135624922811985, 0.004232645966112614, -0.002895295387133956, -0.00665573263540864, -0.005432125646620989, -0.003843159880489111, 0.026540206745266914, -0.0005553624359890819, 0.008782396093010902, 0.030304091051220894, 0.010857357643544674, -0.00040478125447407365, -0.002383448416367173, 0.04315368831157684, -0.012201601639389992, -0.0029435502365231514, -0.0006225746474228799, 0.00853422749787569, -0.007445045281201601, -0.013077083975076675, -0.046903785318136215, 0.018074914813041687, -0.00022016308503225446, 0.035625919699668884, -0.002702275523915887, 0.03623255342245102, -0.019936176016926765, 0.05225318670272827, 0.0075967032462358475, 0.021108081564307213, 0.00771389389410615, -0.02760181576013565, 0.015482936054468155, 0.0004933204036206007, -0.012691044248640537, 0.01621365360915661, 0.020115409046411514, 0.03372329846024513, 0.014090437442064285, -0.004563536960631609, 0.02674701437354088, 0.03333725780248642, 0.007293386850506067, -0.0053183818235993385, 0.002921146107837558, -0.009561368264257908, 0.01886078156530857, 0.0022024924401193857, 0.03044196218252182, 0.04138893634080887, 0.004429112654179335, 0.00022533324954565614, 0.012305005453526974, 0.021797437220811844, -0.006080120336264372, 0.022362709045410156, 0.0027867218013852835, 0.004663493484258652, -0.04425665736198425, 0.02385171875357628, -0.02048766054213047, -0.007837978191673756, -0.033419981598854065, -0.01788189634680748, -0.001950877602212131, 0.007920701056718826, 0.02558889612555504, -0.0060422057285904884, 0.028925379738211632, 0.01713739149272442, -0.020915061235427856, -0.011829349212348461, 0.0010710869682952762, 0.04086502641439438, 0.01938469149172306, 0.011071057990193367, 0.006969389505684376, 0.012484237551689148, -0.012063730508089066, -0.005456252954900265, -0.005376976914703846, -0.012001688592135906, 0.01322874240577221, 0.023644911125302315, 0.018778057768940926, -0.02829117141664028, -0.03675646334886551, 0.014586773701012135, 0.015386426821351051, 0.00564237916842103, 0.01828172244131565, 0.0011176185216754675, 0.011684584431350231, -0.03066255711019039, -0.017440708354115486, 0.03860393911600113, -0.0008474770584143698, 0.0006816007662564516, -0.03380601853132248, -0.009016776457428932, -0.010278298519551754, -0.002230066806077957, 0.021328676491975784, -0.013159806840121746, 0.009623410180211067, 0.018709123134613037, -0.009416603483259678, -0.005914674606174231, -0.010857357643544674, 0.03898997604846954, 0.01484872866421938, -0.01591033674776554, -0.0016320503782480955, 0.009657878428697586, -0.00419473135843873, 0.023865506052970886, -0.0027849983889609575, -0.016172291710972786, 0.027739686891436577, -0.009968088008463383, 0.00851354654878378, -0.013118444941937923, -0.012373941019177437, 0.031158892437815666, 0.004129242617636919, 0.020046472549438477, 0.002038770355284214, 0.004566983785480261, -0.010698805563151836, 0.02273496240377426, 0.01927439495921135, -0.0006109417881816626, 0.012484237551689148, 0.021852586418390274, -0.0028005088679492474, 0.023975802585482597, 0.024816816672682762, 0.0032899517100304365, 0.02309342660009861, 0.00801721028983593, 0.010464424267411232, 0.01064365729689598, 0.01654454506933689, 0.020611746236681938, -0.05062630772590637, -0.029725031927227974, 0.004639366175979376, 0.009161541238427162, 0.027008969336748123, -0.012691044248640537, 0.02928384393453598, 0.010857357643544674, 0.02564404346048832, 0.007293386850506067, -0.006548882462084293, 0.008610056713223457, -0.00960962288081646, 0.008809969760477543, 0.0010822889162227511, 0.016627267003059387, 0.006914240773767233, -0.013676824048161507, 0.018764270469546318, 0.005097787827253342, -0.009051244705915451, -0.0020577276591211557, -0.015096897259354591, -0.059174321591854095, -0.018653973937034607, 0.01472464483231306, 0.011195141822099686, 0.01580004021525383, -0.028952952474355698, -0.00824469793587923, -0.04075472801923752, -0.0017871555173769593, -0.002760870847851038, 0.013959459960460663, -0.00713483477011323, -0.006772922817617655, -0.006018077954649925, -0.021976670250296593, -0.0006566116353496909, 0.004601451568305492, -0.024968475103378296, -0.0011994794476777315, -0.007962062023580074, -0.02466515824198723, -0.0017750917468219995, 0.00888579897582531, 0.017178751528263092, 0.017675088718533516, 0.018019767478108406, -0.00727959955111146, 0.01695815846323967, -0.0005777665064670146, -0.02356218919157982, -0.00652475468814373, -0.03460567444562912, -0.01632395014166832, 0.002559234155341983, -0.007300280500203371, 0.0002072376519208774, -0.013180486857891083, 0.019426053389906883, 0.0014235201524570584, -0.017868109047412872, -0.007355428766459227, -0.020639318972826004, 0.007245131768286228, 0.023245085030794144, 0.015027961693704128, 0.010740166530013084, 0.013208061456680298, -0.010002556256949902, -0.011691478081047535, -0.01782674714922905, -0.009657878428697586, -0.010340340435504913, -0.022652238607406616, -0.0154277877882123, 0.0022697048261761665, 0.004987490829080343, -0.01362856850028038, -0.01369061041623354, 0.027284711599349976, -0.006024971604347229, -0.0033175258431583643, 0.010195575654506683, 0.006583350244909525, 0.01811627671122551, -0.01690300926566124, 0.04373274743556976, -0.026553994044661522, -0.009595835581421852, 0.015620808117091656, -0.02296934276819229, 0.02014298364520073, -0.008093039505183697, -0.01880563236773014, 0.015414000488817692, -0.008485972881317139, -0.04417393356561661, -0.01293921284377575, 0.013966353610157967, 0.010698805563151836, 0.009161541238427162, 0.014959026128053665, -0.030828000977635384, -0.032399732619524, 0.02760181576013565, -0.03355785086750984, 0.004029286094009876, 0.0009375241934321821, -0.023052066564559937, -0.00975438766181469, 0.016103357076644897, -0.009333880618214607, -0.017330409958958626, -0.009733706712722778, -0.0267883762717247, -0.013532059267163277, 0.02425154484808445, -0.005156382918357849, -0.0012003411538898945, -0.019246820360422134, 0.004063753876835108, -0.010753953829407692, 0.023879293352365494, -0.023245085030794144, -0.03595681115984917, 0.0019164098193868995, 0.051012344658374786, 0.017551004886627197, 0.04353972524404526, 0.01932954229414463, 0.025671618059277534, 0.03143463656306267, 0.026871098205447197, -0.0033606106881052256, -0.0040223924443125725, -0.0009444177849218249, 0.015648381784558296, -0.0014907324220985174, -0.00969234574586153, 0.005439019296318293, 0.018764270469546318, -0.006321394816040993, 0.030800428241491318, -0.014697070233523846, 0.008589375764131546, 0.0010745336767286062, -0.007389896549284458, 0.012015475891530514, -0.0040499665774405, -0.007513980846852064, 0.020556597039103508, -0.01414558570832014, 0.014228308573365211, -0.022652238607406616, 0.019632859155535698, 0.02616795524954796, 0.020501447841525078, 0.016709990799427032, 0.011250290088355541, 0.009940514340996742, -0.02794649265706539, 0.0064213513396680355, 0.02233513630926609, -0.011009016074240208, -0.02240407094359398, -0.009092605672776699, -0.02707790397107601, -0.007000410463660955, 1.3006209883315023e-05, -0.0006841858848929405, 0.025161495432257652, -0.007865551859140396, 0.0010667784372344613, -0.0430709645152092, -0.0018491975497454405, 0.004922002088278532, -0.018309297040104866, 0.034522950649261475, -0.049578484147787094, -0.014545411802828312, -0.004728982225060463, -0.04092017561197281, -0.02466515824198723, -0.007341641932725906, -0.0021973224356770515, 0.0040430729277431965, 0.003553630318492651, -0.023920653387904167, -0.0308555755764246, 0.014710857532918453, 0.0033675041049718857, 0.03598438575863838, -0.0011227886425331235, 0.05228076130151749, 0.03708735480904579, -0.0006669519352726638, -0.009788855910301208, -0.020501447841525078, -0.011002122424542904, 0.0077690426260232925, 0.009251157753169537, 0.018943503499031067, -0.0165583323687315, -0.005618251860141754, -0.010760847479104996, 0.0006759997340850532, -0.03802487999200821, 0.011319225654006004, 0.014517838135361671, -0.0010004279902204871, -0.004242986440658569, -0.021728502586483955, 0.006373096723109484, -0.01979830488562584, 0.028952952474355698, -0.041168343275785446, -0.015400214120745659, -0.005187404341995716, -0.03060740791261196, -0.032261863350868225, 0.007913807407021523, 0.005669953301548958, 0.008010316640138626, -0.0001307622151216492, -0.00662471167743206, -0.008899586275219917, -0.02928384393453598, -0.02540966309607029, 0.03328210860490799, 0.0028522105421870947, 0.005473487079143524, -0.03008349798619747, 0.013945672661066055, 0.024279119446873665, -0.016172291710972786, -0.020694468170404434, -0.0031382932793349028, -0.005163276568055153, 0.02135624922811985, -0.01788189634680748, -0.008616950362920761, -0.02234892174601555, -0.02620931714773178, -0.006166289560496807, 0.01324942335486412, -0.027822408825159073, 0.01887456886470318, -0.002517872955650091, 0.004997831303626299, 0.03405418619513512, 0.006821177899837494, -0.02240407094359398, 0.009809535928070545, -0.024871965870261192, 0.008127507753670216, -0.005835398565977812, -0.026595355942845345, 0.00564237916842103, -0.026981394737958908, -0.042684923857450485, -0.015331278555095196, -0.0025954253505915403, 0.015000387094914913, 0.00532182864844799, -0.027588028460741043, -0.0035708642099052668, 0.025368301197886467, 0.020225705578923225, 0.021507907658815384, -0.010719486512243748, 0.0012572130654007196, -0.011133099906146526, 0.016172291710972786, -0.011981007643043995, 0.005132255610078573, 0.012098198756575584, 0.0007591533358208835, -0.014862515963613987, -0.025947360321879387, -0.02441699057817459, 0.025602683424949646, -0.0028039556927978992, -0.008465291932225227, 0.0008996096439659595, 0.01679271273314953, 0.018557464703917503, 0.0012778937816619873, -0.005769909825176001, 0.001525200204923749, -0.005973270162940025, -0.015703530982136726, 0.005862973164767027, 0.0035708642099052668, 0.015538085252046585, 0.001166735077276826, 0.0020491108298301697, 0.010974547825753689, -0.008913373574614525, -0.0124428765848279, -0.026691865175962448, 0.019481200724840164, -0.014028395526111126, 0.015841402113437653, -0.02325887233018875, -0.005345955956727266, -0.004056860227137804, 0.032785773277282715, 0.0015519127482548356, -0.002950443886220455, -0.01950877532362938, 0.01753721758723259, 0.012477343901991844, 0.010905612260103226, -0.015758678317070007, 0.0029366565868258476, -0.01229811180382967, 0.026057658717036247, 0.02870478481054306, -0.038521215319633484, -0.02396201528608799, 0.033254534006118774, 0.025726767256855965, -0.02233513630926609, -0.0024127461947500706, 0.019715582951903343, -0.040203243494033813, -0.034412652254104614, -0.017151178792119026, 0.03060740791261196, 0.03548804670572281, 0.022886620834469795, -0.021618204191327095, 0.03386116772890091, -0.0026264465413987637, 0.030248941853642464, -0.03808002546429634, -0.003984477836638689, 0.004673833958804607, 0.021673353388905525, -0.007465725764632225, 0.001809559529647231, -0.020515235140919685, -0.01679271273314953, -0.0011382991215214133, -0.005228765308856964, 0.008878905326128006, 0.032317012548446655, -0.011015909723937511, 0.006176630035042763, -0.01279444806277752, -0.001372680184431374, -0.0030607408843934536, 0.0078724455088377, -0.0006333458586595953, -0.00479102460667491, 0.019536349922418594, 0.001811282942071557, -0.009733706712722778, -0.03165522962808609, -0.025961147621273994, 0.012498024851083755, -0.02980775386095047, 0.029532011598348618, 0.016654841601848602, -0.006514414679259062, 0.0033071856014430523, -0.029201122000813484, 0.011594968847930431, -0.022886620834469795, -0.01978451758623123, 0.0034898649901151657, 0.01136748120188713, 0.0030142092145979404, -0.034522950649261475, 0.012125772424042225, -0.031048595905303955, 0.006476500071585178, 0.0026522972621023655, 0.009850897826254368, -0.026402335613965988, 0.005887100473046303, 0.02135624922811985, -0.017440708354115486, 0.010395488701760769, -0.010733273811638355, -0.006152502726763487, -0.023355381563305855, 0.01625501550734043, 0.014338605105876923, -0.004463580437004566, 0.013800907880067825, 0.020156770944595337, 0.028732359409332275, 0.01621365360915661, -0.027615603059530258, -0.039210572838783264, 0.0045463028363883495, -0.017316622659564018, 0.004922002088278532, 0.01857125200331211, 0.005807824432849884, 0.0027867218013852835, 0.015524297952651978, -0.02170092798769474, 0.0005122777074575424, 0.19048285484313965, 0.0004842726048082113, -0.002807402517646551, 0.020515235140919685, 0.009444178082048893, 0.027753474190831184, 0.0209977850317955, 0.011443310417234898, -0.022086966782808304, -0.013366613537073135, -0.006528201512992382, 0.028456617146730423, -0.020529022440314293, 0.010540253482758999, 0.005139149259775877, -0.020294642075896263, 0.0023455338086932898, -0.032620325684547424, 0.013442442752420902, -0.00448426092043519, -0.003956903703510761, 0.003760437248274684, 0.006180076859891415, -0.004315368831157684, 0.03581893816590309, -0.008258485235273838, 0.013538951985538006, -0.016861649230122566, 0.02396201528608799, -0.012346366420388222, -0.04130621254444122, 0.0017785385716706514, -0.0015846571186557412, 0.0025247663725167513, -0.009561368264257908, -0.012332579120993614, 0.028373893350362778, 0.00018364874995313585, 0.010616082698106766, -0.019191671162843704, 0.009719920344650745, -0.05233591049909592, -0.04238160699605942, -0.019481200724840164, -0.0030107623897492886, -0.009168434888124466, -0.019756942987442017, -0.02656778134405613, -0.032840922474861145, 0.03129676356911659, -0.04003779962658882, -0.028084363788366318, 0.020763402804732323, 0.003829372813925147, -0.012242963537573814, 0.007086580153554678, -0.0017681982135400176, -0.004139583092182875, 0.02072204276919365, 0.0488615557551384, 0.008920267224311829, 0.045221757143735886, -0.017799172550439835, 0.009168434888124466, -0.01200858224183321, 0.0031538037583231926, -0.04533205181360245, 0.007169302552938461, 0.017523430287837982, -0.01632395014166832, 0.005938802380114794, -0.004797917790710926, 0.0037914582062512636, 0.006890113465487957, -0.03634284809231758, -0.011553606949746609, 0.024858178570866585, 0.03468839451670647, 0.020418725907802582, 0.03893482685089111, -0.021025359630584717, -0.01414558570832014, -0.004056860227137804, 0.01304950937628746, -0.027505306527018547, 0.004518728703260422, 0.03761126473546028, 0.00419473135843873, -0.008354995399713516, 0.0053183818235993385, -0.015207193791866302, -0.01194654032588005, -0.0011003845138475299, 0.009499326348304749, 0.0016182633116841316, 0.0053907642140984535, -0.00393622275441885, 0.027395008131861687, -0.022211050614714622, 0.008003423921763897, -0.015207193791866302, 0.04257462918758392, 0.005783697124570608, 0.03592923656105995, -0.011650117114186287, -0.01163632981479168, 0.015414000488817692, 0.023948227986693382, 0.009906046092510223, -0.017730237916111946, 0.014297244139015675, -0.028373893350362778, 0.006573009770363569, -0.0010822889162227511, 0.007493299897760153, 0.005766463000327349, -0.00023351935669779778, 0.009085712023079395, -0.01218092069029808, -0.005118468310683966, -0.0015148598467931151, -0.006659179460257292, 0.00108142732642591, -0.009278732351958752, 0.005366636905819178, -0.015758678317070007, -0.054321255534887314, -0.0016923689981922507, 0.029366567730903625, 0.021494120359420776, 0.011188248172402382, -0.029145972803235054, 0.026016296818852425, 0.005435572471469641, -0.017316622659564018, -0.027477731928229332, -0.006838412024080753, -0.013304571621119976, -0.004087881185114384, -0.0019077927572652698, 0.011643223464488983, 0.03193097189068794, 0.0020835786126554012, -0.003839713055640459, 0.0385487899184227, 0.0013132232706993818, 0.009974981658160686, 0.007534661330282688, -0.018102489411830902, -0.01398013997823, -0.004563536960631609, 0.00695904903113842, -0.011698371730744839, -0.03612225502729416, -0.00987157877534628, -0.029725031927227974, -0.01869533583521843, -0.02285904623568058, 0.011739733628928661, -0.01324942335486412, -0.019081374630331993, -0.020859913900494576, -0.006614371202886105, -0.0009590665576979518, -0.028429042547941208, -0.01186381746083498, -0.17305593192577362, -0.002466171281412244, 0.0015855188248679042, 0.001021108590066433, 0.01887456886470318, 0.008727246895432472, 0.05528635531663895, -0.013883630745112896, -0.011794881895184517, -0.010760847479104996, 0.017523430287837982, 0.016696203500032425, -0.027505306527018547, -0.023741422221064568, 0.005277020391076803, 0.011153780855238438, 0.0018526443745940924, 0.0055355289950966835, 0.03380601853132248, 0.02309342660009861, 0.040313541889190674, 0.014028395526111126, 0.012201601639389992, -0.0006389468908309937, 0.001807836233638227, -0.004274007398635149, -0.017606152221560478, -0.004594557918608189, -0.017675088718533516, -0.00552863534539938, -0.013828481547534466, 0.023176150396466255, -0.006593690253794193, -0.004391198046505451, 0.007582916412502527, -0.01621365360915661, -0.010919399559497833, -0.02505119889974594, -0.004811705090105534, -0.0024971922393888235, 0.031462207436561584, 0.03796973079442978, -0.006569562945514917, -0.0056802937760949135, 0.029063250869512558, 0.03587408736348152, 0.012704831548035145, -0.04497358575463295, -0.016572119668126106, -0.0006570424884557724, 0.027188202366232872, -0.021742289885878563, -0.004056860227137804, 0.007196877151727676, 0.019412266090512276, -0.018736697733402252, 0.007500193547457457, 0.013973246328532696, 0.008865118958055973, 0.01455919910222292, 0.003165867645293474, -0.016585906967520714, 0.010781528428196907, 0.0020008559804409742, 0.02019813098013401, -0.014076650142669678, -0.026995182037353516, 0.034991711378097534, -0.040258392691612244, 0.003414035774767399, -0.03198612108826637, 0.024747882038354874, 0.03091072477400303, 0.007803510408848524, 0.012856489978730679, 0.04420150816440582, -0.011684584431350231, 0.024334268644452095, -0.0200878344476223, -0.03391631692647934, 0.006917687598615885, 0.028373893350362778, 0.00670054042711854, 0.014959026128053665, -0.01207062415778637, -0.013139125891029835, 0.01232568547129631, 0.006590243428945541, 3.2986761652864516e-05, -0.027684537693858147, 0.009595835581421852, -0.03328210860490799, -0.009795749559998512, -0.0012477344134822488, 0.011608755216002464, 0.011277864687144756, 0.0040017119608819485, 0.002979741431772709, 0.03353027626872063, -0.02800164185464382, 0.005108128301799297, -0.022376496344804764, -0.015772465616464615, -0.0017785385716706514, 0.010105959139764309, 0.03182067349553108, -0.03648072108626366, 0.04359487444162369, 0.008272272534668446, -0.00020939188834745437, -0.027974067255854607, 0.0014149032067507505, 0.014200733974575996, 0.026981394737958908, -0.009333880618214607, 0.04908214882016182, -0.011484671384096146, -0.011408842168748379, -0.021659566089510918, 0.005435572471469641, 0.03033166565001011, 0.028622062876820564, -0.006731561850756407, 0.03234458342194557, 0.015565658919513226, -0.01324942335486412, -0.1046166718006134, -0.027560453861951828, 0.003612225642427802, 0.0037363097071647644, 0.007837978191673756, 0.006900453940033913, -0.006445479113608599, 0.02157684415578842, -0.020129196345806122, 0.03535017743706703, -0.01677892543375492, 0.0013545845868065953, -0.0036432466004043818, 0.0016363589093089104, -0.016572119668126106, 0.00874103419482708, 0.00479102460667491, -0.00813440140336752, -0.01978451758623123, 0.023451892659068108, -0.0012916808482259512, -0.0005626868805848062, 0.021659566089510918, 0.00695904903113842, -0.01985345408320427, -0.005711314734071493, -0.016130931675434113, 0.012187814339995384, 0.004587664268910885, 0.010050810873508453, 0.009457964450120926, -0.006576456595212221, 0.022872833535075188, -0.022541942074894905, 0.027270924299955368, -0.012001688592135906, -0.039679333567619324, 0.0076242778450250626, 0.028842655941843987, 0.015317491255700588, -0.008989202789962292, -0.005170170217752457, -0.007617384195327759, 0.010884931311011314, -0.012498024851083755, -0.023520827293395996, -0.0069280280731618404, -0.0019887920934706926, -0.00896852184087038, -0.028677210211753845, -0.056968383491039276, -0.004870300181210041, -0.01916409842669964, 0.006186970509588718, 0.011146887205541134, 0.00668675359338522, 0.01967422105371952, 0.012332579120993614, 0.01033344678580761, 0.000802238064352423, 0.027905132621526718, 0.011443310417234898, -0.019412266090512276, -0.026664290577173233, 0.02233513630926609, 0.020928848534822464, 0.009375241585075855, 0.01875048317015171, 0.010050810873508453, -0.019991325214505196, 0.0077897231094539165, -0.0060387589037418365, -0.01484872866421938, 0.025451024994254112, -0.01961907185614109, 0.004439452663064003, -0.0019853452686220407, -0.02182501181960106, 0.008272272534668446, 0.011691478081047535, -0.029725031927227974, -0.010064598172903061, -0.007052112370729446, -0.012277430854737759, -0.004208518657833338, -0.006166289560496807, -0.017551004886627197, -0.015882762148976326, 0.01325631607323885, -0.0194536279886961, 0.015524297952651978, 0.00609046034514904, 0.04428423196077347, -0.01432481873780489, -0.011208929121494293, -0.00622143829241395, -0.0032916751224547625, -0.01793704368174076, -0.013711291365325451, -0.0012942659668624401, -0.05867798626422882, 0.010650550946593285, -0.05081932619214058, 0.012435982935130596, -0.01580004021525383, -0.0059663765132427216, 0.015882762148976326, -0.013766439631581306, 0.023245085030794144, -0.02240407094359398, -0.0077897231094539165, -0.013345932587981224, -0.027519091963768005, -0.020846126601099968, -0.019053800031542778, 0.007114154286682606, -0.010381701402366161, -0.020680680871009827, -0.0012796170776709914, -0.014628134667873383, 0.02436184138059616, 0.010733273811638355, -0.01672377809882164, -0.018074914813041687, -0.002398958895355463, -0.001447647693566978, 0.003395078470930457, 0.00290046539157629, -0.012277430854737759, 0.02864963747560978, -0.018074914813041687, -0.015331278555095196, 0.00037160597275942564, -0.0004013344587292522, -0.018474740907549858, 0.012897850945591927, 0.024747882038354874, 0.004549749661237001, 0.0009478645515628159, 0.01932954229414463, 0.021949095651507378, -0.0002365352847846225, -0.019191671162843704, -0.04585596174001694, 0.010678124614059925, -0.023176150396466255, -0.016310162842273712, -0.024913327768445015, -0.015937911346554756, 0.018612612038850784, 0.01128475833684206, -0.004666940309107304, 0.03548804670572281, 0.008878905326128006, -0.013649249449372292, -0.03135191276669502, 0.008030997589230537, -0.036204978823661804, -0.0009375241934321821, -0.027119265869259834, -0.024113673716783524, -0.020446300506591797, 0.02944928966462612, 0.001366648357361555, 0.005214978475123644, -9.580971527611837e-05, 0.015937911346554756, -0.006031865254044533, -0.031517356634140015, 0.010443744249641895, 0.011567394249141216, 0.009485539048910141, -0.00668675359338522, 0.010319659486413002, 0.026057658717036247, 0.03251003101468086, 0.05087447538971901, -0.030469536781311035, -0.045690517872571945, 0.00684530520811677, -0.018653973937034607, 0.00917532853782177, 0.03002834878861904, 0.009285626001656055, 0.009333880618214607, 0.004708301741629839, 0.048585813492536545, 0.005759569816291332, -0.036149829626083374, -0.007079686503857374, -0.008327420800924301, 0.01174662634730339, -0.0033071856014430523, 0.008754821494221687, -0.018791845068335533, -0.0038914147298783064, 0.03948631510138512, 0.02007404714822769, -0.004570430610328913, -0.0007669085753150284, 0.022486792877316475, -0.00018838807591237128, 0.033199384808540344, -0.014021501876413822, -0.020060259848833084, 0.007258919067680836, -0.030221369117498398, 0.01120203547179699, -0.010540253482758999, -0.012049943208694458, 0.002328299917280674, 0.020859913900494576, 0.0024334266781806946, 0.007176196202635765, 0.006941815372556448, 0.009202903136610985, -0.012477343901991844, 0.005473487079143524, 0.007196877151727676, -0.018088702112436295, -0.01258764136582613, 0.0013632015325129032, -0.03460567444562912, -0.007837978191673756, 0.026485059410333633, -0.010236936621367931, 0.0205428097397089, -0.001368371769785881, 0.015372639521956444, -0.02385171875357628, -0.015896549448370934, 0.012622108682990074, -0.02332780882716179, -0.010940080508589745, -0.03286849707365036, -0.021687140688300133, 0.005935355555266142, -0.0020077493973076344, -0.007679426111280918, 0.020225705578923225, -0.006872879806905985, 0.094469353556633, 0.021659566089510918, 0.010429956950247288, 0.0075760227628052235, 0.02349325269460678, 0.026636717841029167, 0.014876303263008595, 0.0034915884025394917, -0.012449770234525204, -0.03661859408020973, 0.00894094817340374, 0.013497591018676758, -0.011967220343649387, -0.0240723118185997, 0.03176552429795265, 0.00041813752613961697, 0.010071491822600365, 0.004580770619213581, -0.02256951667368412, -0.00102024688385427, 0.02638854831457138, 0.006779816467314959, -0.013959459960460663, 0.008430824615061283, -0.042271312326192856, -0.00421196548268199, 0.02425154484808445, 0.02170092798769474, -0.009892258793115616, -0.04365002363920212, -0.011526033282279968, -0.00795516837388277, -0.03033166565001011, -0.020446300506591797, 0.0007177919615060091, 0.0016294652596116066, -0.026829736307263374, 0.0025816382840275764, 0.04218858852982521, -0.010119746439158916, -0.021962882950901985, 0.029256269335746765, -0.028346320614218712, -0.03849364072084427, -0.007631171029061079, -0.012828915379941463, -0.01295989379286766, -0.011767307296395302, -0.05603085830807686], "decefc81-7ed0-450c-b7ad-bbc3f17b4994": [-0.0157670546323061, 0.020665956661105156, -0.0018868320621550083, -0.007005292922258377, -0.022024476900696754, 0.026456816121935844, -0.0025283549912273884, -0.004439201205968857, -0.011664053425192833, -0.029722752049565315, 0.009482189081609249, 0.02273804135620594, -0.02555113658308983, 0.011712081730365753, -0.0011792700970545411, -0.0038319844752550125, 0.01461437251418829, 0.0039040271658450365, 0.013804749585688114, 0.006106474902480841, -0.01871737465262413, 0.019458385184407234, -0.015465161763131618, -0.0029022907838225365, -0.009591968730092049, -0.006264282390475273, 0.01480648573487997, -0.011492522433400154, 0.0002939598634839058, 0.011883611790835857, 0.028707291930913925, -0.026580318808555603, -0.010134004056453705, -0.010991654358804226, 0.013276436366140842, 0.013187240809202194, -0.03298868611454964, -0.006796026136726141, 0.020350342616438866, 0.014003724791109562, 0.028707291930913925, -0.015245603397488594, 0.004130446817725897, -0.022079365327954292, 0.008816651999950409, 0.024124005809426308, -0.00028259598184376955, -0.01127296406775713, -0.009091099724173546, -0.014655539765954018, -0.016137560829520226, 0.018154755234718323, -0.025029685348272324, -0.011725803837180138, -0.006984709296375513, 0.016645289957523346, 0.007307186257094145, -0.0032402053475379944, -0.011135740205645561, -0.010092836804687977, -0.0061647952534258366, 0.0008953876094892621, -0.010230060666799545, -0.009756636805832386, -0.007142517250031233, 0.0007834641728550196, 0.0014777325559407473, 0.02295760065317154, -0.019911224022507668, -0.009242046624422073, 0.01158857997506857, 0.02549624815583229, 0.013722415082156658, 0.0036707459948956966, 0.0269782692193985, -0.01906043477356434, 0.009996779263019562, 0.00015780777903273702, -0.015561219304800034, 0.02213425561785698, -0.008391257375478745, -0.0028902837075293064, -0.012130615301430225, 0.02153046987950802, 0.01643945276737213, 0.01731768809258938, 0.008871541358530521, -0.01132099237293005, 0.01337935496121645, -0.025070853531360626, -9.091100218938664e-05, -0.011053405702114105, -0.0016295368550345302, 0.03625462204217911, 0.0033722836524248123, 0.028762182220816612, 0.010724067687988281, 0.027925115078687668, -0.026909656822681427, -0.008542203344404697, -0.009502772241830826, 0.025359023362398148, -0.04462529346346855, -0.012892208993434906, -0.00850103609263897, 0.016672734171152115, 0.015753332525491714, -0.01193850114941597, 0.025317857041954994, -0.017550969496369362, -0.044515516608953476, 0.03276912868022919, 0.013749860227108002, -0.02476895973086357, -0.004277963191270828, 0.0035472442395985126, 0.03318079933524132, -0.005447798874229193, -0.005475243553519249, -0.0009056794224306941, 0.013255853205919266, 0.01003794651478529, 0.03935588523745537, -0.025564860552549362, 0.009482189081609249, -0.011657191440463066, 0.021132519468665123, -0.012706956826150417, -0.005783997941762209, -0.01081326324492693, 0.016412008553743362, 0.007334630936384201, -0.0003282659163232893, 0.0006475264672189951, 0.0031115575693547726, 0.010394729673862457, -0.02409656159579754, -0.005063571035861969, 0.0021527039352804422, -0.020130783319473267, 0.01372927613556385, 0.0014108357718214393, 0.0044083259999752045, 0.0008139107376337051, 0.0019760278519243, 0.013118629343807697, 0.05181584134697914, 0.024961072951555252, 0.025455079972743988, -0.006874930113554001, -0.017029518261551857, 0.0020394939929246902, -0.009331242181360722, -0.009564523585140705, -0.008370673283934593, 0.008672566153109074, -0.0017350278794765472, -0.011883611790835857, -0.014175254851579666, 0.0032024686224758625, 0.0026998852845281363, 0.02571580559015274, -0.0029057215433567762, -0.009427299723029137, 0.025647195056080818, 0.042704157531261444, -0.043307941406965256, -0.0006578182801604271, -0.010778957046568394, -0.010538814589381218, -0.008377534337341785, 0.0023722625337541103, 0.004339713603258133, -0.0008469303138554096, -0.01021633855998516, 0.013132351450622082, 0.003972639329731464, 0.02368488907814026, -0.029064076021313667, -0.01900554448366165, 0.026484262198209763, -0.01820964552462101, 0.03150666505098343, 0.011677775532007217, -0.032851461321115494, 0.0025678069796413183, 0.0015034620882943273, 0.037571974098682404, 0.006199100986123085, -0.013756721280515194, 0.04380194842815399, 0.023204604163765907, -0.0023619707208126783, 0.00967430230230093, -0.616959810256958, -0.0015772201586514711, 0.007677691522985697, -0.02039150893688202, -0.0013362201862037182, 0.014477147720754147, 0.0018851167988032103, 0.009379270486533642, -0.023314382880926132, 0.019513273611664772, 0.005588453728705645, -0.022532206028699875, 0.007615940645337105, 0.007067043799906969, -0.0027341912500560284, -0.02046012133359909, 0.0023379565682262182, -0.007362075615674257, -0.007513022515922785, 0.003941763658076525, -0.019266270101070404, 0.03501960262656212, -0.013413661159574986, -0.008583370596170425, 0.018772264942526817, 0.00037565111415460706, 0.0024374439381062984, 0.009242046624422073, -0.008329506032168865, 0.0028130952268838882, -0.03600761666893959, -0.012199226766824722, 0.0169471837580204, 0.012199226766824722, 0.03416881337761879, 0.03540383279323578, -0.012988265603780746, 0.021338356658816338, 0.001318209571763873, 0.011924779042601585, -0.0014322771457955241, -0.01265206653624773, 0.009790943004190922, 0.01090931985527277, 0.030793100595474243, 0.005746261216700077, -0.0022007322404533625, 0.004816567525267601, 0.0038731517270207405, 0.0037427886854857206, 0.019389772787690163, -0.010188893415033817, 0.0038903048262000084, -0.0019691665656864643, 0.013845916837453842, -0.009015627205371857, 0.03172622248530388, -0.012123754248023033, 0.022573372349143028, -0.028268175199627876, 0.0005844891420565546, 0.026690097525715828, -0.007156239356845617, -0.024878738448023796, -0.017647026106715202, 0.0032487818971276283, -0.020954128354787827, 0.02024056203663349, -0.015080934390425682, -0.022381259128451347, -0.00023006486298982054, 0.031973227858543396, 0.02251848392188549, -0.004360297229140997, 0.020130783319473267, -0.009255768731236458, 0.03655651584267616, 0.019842611625790596, 0.008466729894280434, 0.021132519468665123, 0.028844516724348068, 0.006048154551535845, -0.010051669552922249, -0.01368124783039093, 0.06251932680606842, -0.0009991633705794811, -0.0036535931285470724, 0.016796236857771873, 0.026744987815618515, 0.0008237737347371876, 0.013228408060967922, 0.02878962643444538, -0.008905847556889057, -0.04157891869544983, 0.00098801392596215, 0.022216590121388435, -0.021324632689356804, -0.01719418540596962, -0.009290074929594994, -0.020213117823004723, 0.005221378989517689, -0.01062801107764244, 0.011554273776710033, 0.030546097084879875, 0.010188893415033817, 0.04358239099383354, -0.020089615136384964, 0.029311079531908035, 0.02808978408575058, -0.007808054331690073, -0.030546097084879875, -0.015204436145722866, -0.004171614069491625, 0.01090931985527277, -0.017400022596120834, -0.017660748213529587, 0.02312226966023445, -0.007698275148868561, 0.002037778729572892, -0.02254592813551426, -0.0013173518236726522, 0.0004097427299711853, 0.006967556197196245, 0.006984709296375513, 0.019581886008381844, -0.007163100875914097, 0.008082502521574497, 0.0004268957709427923, 0.012501120567321777, -0.0032350593246519566, -0.0008709445246495306, 0.0038868740666657686, 0.0040789879858493805, 0.004847443196922541, 0.022971322759985924, -0.03233001008629799, 0.006051585078239441, -0.0003514224663376808, -0.02695082314312458, -0.03474515676498413, -0.00973605364561081, -0.023643720895051956, -0.006209393031895161, -0.014024307951331139, -0.041880812495946884, -0.03145177662372589, -0.006178517360240221, -0.005808012094348669, -0.0026381344068795443, 0.009935028851032257, -0.009585106745362282, 0.01893693394958973, 0.00852162018418312, 0.026594040915369987, -0.014943710528314114, -0.021159963682293892, 0.0037222050596028566, -0.01818219944834709, 0.004524966236203909, 0.004425479099154472, -0.01501232199370861, 0.023328106850385666, 0.010223199613392353, -0.008151114918291569, -0.008734317496418953, -0.03191833943128586, -0.010113419964909554, 0.013619497418403625, -0.010847569443285465, -0.04399406164884567, 0.012027696706354618, -0.014902543276548386, -0.021352078765630722, -0.0044906605035066605, -0.011952223256230354, 0.01881343126296997, -0.025729527696967125, -0.0048028454184532166, -0.0011158038396388292, -0.004919485654681921, 0.006693108007311821, 0.005612467881292105, 0.0037462194450199604, -0.0035987033043056726, 0.02533157914876938, -0.007464993745088577, -0.0002149487700080499, -0.0030618140008300543, 0.0023019351065158844, -8.206647908082232e-05, 0.010923042893409729, 0.018731096759438515, -0.01750980131328106, -0.01818219944834709, -0.032028116285800934, 0.014120365492999554, 0.015725888311862946, 0.01745491288602352, 0.0018044975586235523, 0.03504704684019089, 0.052611738443374634, -0.005886916071176529, 0.008116808719933033, -0.012075725011527538, 0.030820544809103012, -0.004984667524695396, 0.012899070046842098, -0.009571384638547897, 0.038971658796072006, -0.01830570213496685, 0.019087878987193108, -0.008748039603233337, 0.0016861418262124062, 0.007540467195212841, -0.014230144210159779, 0.018154755234718323, -0.01593172363936901, 0.03518427163362503, -0.0034734862856566906, -0.013976279646158218, 0.004295115824788809, 0.012007113546133041, 0.033372912555933, -0.012020835652947426, -0.028871960937976837, 0.009084238670766354, 0.004425479099154472, -0.0008962452411651611, -0.03287890553474426, -0.059390611946582794, 0.021009018644690514, -0.012693233788013458, 0.019581886008381844, -0.005732539109885693, 0.00392804155126214, 0.0054615214467048645, 0.04059090465307236, 0.005866332445293665, 0.025372745469212532, -0.011533689685165882, -0.006727414205670357, 0.022998768836259842, 0.02153046987950802, -0.027252716943621635, 0.03186344727873802, 0.013056878000497818, 0.011664053425192833, 0.009413576684892178, -0.01480648573487997, 0.005694802384823561, 0.013928251340985298, 0.005389478523284197, -0.009427299723029137, -0.01512210164219141, 0.000976864481344819, -0.00010795681737363338, 0.019142769277095795, 0.031369440257549286, 0.03274168446660042, 0.018635040149092674, 0.02077573724091053, -0.005859471391886473, 0.0034031590912491083, 0.018923209980130196, 0.008782345801591873, 0.009152851067483425, -0.008322644978761673, -0.034251149743795395, 0.008480452932417393, 0.011355298571288586, 0.025756973773241043, -0.03578805923461914, -0.04404895380139351, -0.0022110240533947945, 0.012823597528040409, 0.015314215794205666, -0.01306373905390501, 0.02428867481648922, -0.0008173413807526231, 0.005725677590817213, -0.009900722652673721, -0.021900974214076996, 0.007183684501796961, 0.03639184683561325, -0.007451271638274193, -0.006065307650715113, -0.002667294582352042, -0.004250518046319485, -0.017303965985774994, -0.01612383872270584, -0.03027164749801159, 0.012480536475777626, 0.03318079933524132, 0.013893945142626762, 0.003907457925379276, -0.011952223256230354, 0.019362328574061394, -0.0011569710914045572, -0.025784417986869812, 0.030600985512137413, 0.0020086185541003942, 0.01502604503184557, -0.024329842999577522, -0.023959336802363396, 0.0457230880856514, 0.0010000210022553802, -0.013825333677232265, -0.010278088971972466, 0.0006801172276027501, -0.015369105152785778, 0.0045935786329209805, -4.690278728958219e-06, -0.028034893795847893, -0.012569732032716274, 0.03191833943128586, -0.00978408195078373, 0.0041819061152637005, 0.015588663518428802, 0.04245715215802193, 0.010806402191519737, 0.009132266975939274, 0.005200795363634825, 0.022875266149640083, -0.001018031733110547, 0.013756721280515194, 0.030189312994480133, -0.025825586169958115, 0.017111852765083313, -0.02610003389418125, 0.008391257375478745, -0.02375350147485733, -0.0016149567672982812, 0.007204268127679825, -0.005849179346114397, 0.029173854738473892, -0.0007491580909118056, 0.011046544648706913, -0.008528481237590313, 0.023108547553420067, 0.021928420290350914, -0.026676375418901443, 0.0014245582278817892, 0.03916377201676369, -0.01808614283800125, 0.010223199613392353, 0.0017667609499767423, 0.006977848242968321, 0.025345301255583763, -0.007753164507448673, -0.01593172363936901, -0.000496579916216433, 0.00824717152863741, 0.01859387196600437, -0.008837235160171986, -0.019623054191470146, 0.020954128354787827, 0.0010763519676402211, 0.009145990014076233, -0.006562745198607445, 0.013248992152512074, 0.011753248982131481, 0.025002241134643555, 0.0024117145221680403, 0.00044040376087650657, 0.013722415082156658, -0.0016329673817381263, 0.0032556429505348206, -0.0267587099224329, 0.0051321834325790405, -0.012473675422370434, -0.021269744262099266, 0.008947014808654785, 0.006713691633194685, -0.009255768731236458, -0.011266103014349937, -0.0006672524614259601, -0.022024476900696754, -0.0022041629999876022, 0.009619412943720818, -0.004391172900795937, -0.015602386556565762, 0.004233364947140217, -0.01729024387896061, -0.0503612644970417, 0.0014459994854405522, -0.014751596376299858, 0.013447967357933521, -0.03872465714812279, -0.012768707238137722, -0.0019623052794486284, -0.028899407014250755, 0.00032848032424226403, 0.00046570447739213705, -0.010662316344678402, -0.005077293608337641, -0.012706956826150417, -0.03191833943128586, -0.005386047996580601, -0.0029108673334121704, 0.013715554028749466, 0.010991654358804226, -0.01055939868092537, 0.007808054331690073, 0.036913298070430756, -0.008974459953606129, -0.021022740751504898, -0.008878402411937714, -0.024631734937429428, -0.004003514535725117, -0.0037873866967856884, -0.024425899609923363, 0.001271896413527429, 0.01864876225590706, 0.01439481321722269, -0.028034893795847893, -0.019266270101070404, -0.028734738007187843, -0.015821944922208786, -0.0021595649886876345, 0.022408703342080116, 0.025290410965681076, 0.0010094551835209131, -0.010305534116923809, -0.007766887079924345, -0.019115325063467026, 0.0041819061152637005, -0.017331410199403763, -0.035321496427059174, 0.021009018644690514, 0.0040378207340836525, 0.004524966236203909, 0.011471939273178577, -0.005941805895417929, -0.027540886774659157, 0.0032710807863622904, -0.01285790279507637, -0.019334882497787476, 0.0015137539012357593, -0.006459827069193125, 0.018923209980130196, -0.01266578957438469, 0.01801753044128418, -0.01523188129067421, -0.02939341403543949, 0.0007984730182215571, -0.01973283290863037, -0.005804581567645073, 0.00014590786304324865, -0.018758540973067284, 0.06564803421497345, 0.008850958198308945, -0.028515178710222244, -0.018470371142029762, -0.0035163688007742167, 0.0003930185630451888, 0.014010585844516754, -0.0036741767544299364, -0.011039682663977146, -0.02216169983148575, 0.024659181013703346, -0.023300660774111748, -0.008789206854999065, -0.01163660828024149, -0.011142601259052753, 0.004730802495032549, -0.016768790781497955, 0.0017719068564474583, 0.011259241960942745, -0.015300492756068707, -0.03394925594329834, -0.01521815825253725, -0.006195670459419489, -0.012803013436496258, 0.04951047524809837, -0.041057467460632324, 0.0025352162774652243, 0.024837572127580643, 0.009914444759488106, -0.0008572221267968416, -0.023698611184954643, -0.02336927317082882, 0.0026329883839935064, 0.013592052273452282, 0.02944830246269703, 0.02305365726351738, 0.0016698463587090373, 0.035925284028053284, 0.02118740975856781, 0.0033808599691838026, 0.0051115998066961765, -0.0011200921144336462, -0.005725677590817213, -0.030710766091942787, -0.0053174360655248165, -0.0053997705690562725, 0.00980466604232788, 0.013413661159574986, 0.009619412943720818, -0.0024117145221680403, -0.01287162583321333, -0.006576467305421829, 0.005512980278581381, 0.016165005043148994, -0.055658116936683655, -0.010854430496692657, 0.017427466809749603, 0.020254284143447876, 0.006006987299770117, -0.024878738448023796, -0.008281477726995945, 0.03556850180029869, 0.01502604503184557, 0.02527668885886669, -0.02162652648985386, 0.029118964448571205, -0.01260403823107481, 0.004432340152561665, 0.021585358306765556, 0.01136902067810297, -0.02641564980149269, -0.0016295368550345302, -0.022257758304476738, -0.015341660007834435, 0.017784250900149345, -0.008260893635451794, 0.022971322759985924, 0.022683152928948402, -0.019623054191470146, -0.013029432855546474, -0.0028645542915910482, -0.007142517250031233, 0.0005896350485272706, 0.037956200540065765, -0.04182592034339905, -0.02283409982919693, -0.028679847717285156, -0.05950039252638817, -0.02169513888657093, 0.007602218072861433, 0.019815167412161827, -0.006157933734357357, 0.023506497964262962, -0.005732539109885693, -0.018991822376847267, -0.012041419744491577, -0.019993558526039124, 0.01976027712225914, -0.027499720454216003, 0.03329057991504669, 0.004830290097743273, -0.010833846405148506, -0.038367874920368195, -0.004185336641967297, 0.0002785221440717578, 0.013976279646158218, 0.007917833514511585, -0.027938837185502052, -0.012020835652947426, 0.0023791238199919462, 0.010525092482566833, 0.029558083042502403, -0.015986613929271698, -0.0258393082767725, -0.00041124364361166954, 0.009454743936657906, -0.00048371515003964305, -0.0020309174433350563, 0.004850873723626137, -0.028130950406193733, 0.025043407455086708, -0.010394729673862457, -0.020281730219721794, -0.009427299723029137, 0.0016904299845919013, 0.0007881812052801251, 0.02305365726351738, -0.0038114008493721485, 0.02723899483680725, -0.0019297146936878562, 0.003993222955614328, -0.005612467881292105, -0.026168646290898323, -0.017015794292092323, -0.011032821610569954, 0.017221631482243538, -0.010360423475503922, -0.011355298571288586, -0.0001673491351539269, 0.03625462204217911, 0.0005849179578945041, 0.0016938606277108192, 0.0007736011757515371, -0.011204351671040058, 0.026168646290898323, 0.0027770737651735544, -0.005808012094348669, -0.006936680991202593, -0.0016346827615052462, -0.006223115138709545, 0.01307746209204197, -0.008096224628388882, 0.0031801697332412004, -0.020117061212658882, -0.026429371908307076, 0.021681416779756546, 0.024055393412709236, 0.0040172371082007885, -0.0008778057526797056, -0.006542161572724581, -0.014765318483114243, 0.0035403831861913204, -0.01111515611410141, 0.03463537618517876, -0.03677607327699661, -0.04542119428515434, 0.00942043773829937, -0.03230256587266922, 0.005780567415058613, 0.019499551504850388, -0.008590231649577618, -0.013146073557436466, 0.026264702901244164, 0.011293548159301281, 0.011032821610569954, -0.016837403178215027, -0.013907668180763721, -0.03790131211280823, 0.011533689685165882, 0.01008597481995821, -0.008370673283934593, 0.02717038244009018, 0.002523209201171994, -0.03746219351887703, -0.028350509703159332, -0.007307186257094145, -0.0012830458581447601, -0.0020446397829800844, -0.012199226766824722, 0.015904279425740242, -0.01656295545399189, 0.01745491288602352, 0.01471042912453413, -0.022175423800945282, 0.005142475012689829, -0.02590792067348957, -0.008542203344404697, 0.01643945276737213, -0.004109863191843033, 0.024521956220269203, 0.0021664262749254704, 6.759361713193357e-05, -0.012892208993434906, -0.03952055424451828, -0.03619972988963127, 0.01287162583321333, 0.028323065489530563, -0.012549148872494698, 0.006816609762609005, -0.0035815504379570484, -0.01884087547659874, 0.004336283076554537, 0.013365632854402065, -0.016425730660557747, 0.03147922083735466, 0.019074156880378723, -0.01976027712225914, -0.0024031379725784063, 0.013914529234170914, -0.020130783319473267, -0.0016792805399745703, -0.017537247389554977, 0.0031698779202997684, -0.02501596324145794, -0.012610899284482002, -0.025098297744989395, 0.026744987815618515, 0.0169471837580204, -0.014106642454862595, -0.003921180032193661, 0.03287890553474426, -0.026868488639593124, -0.014312478713691235, 0.006840623915195465, -0.0020497858058661222, 0.032824017107486725, 0.03499215841293335, -0.0049469307996332645, 0.0178665854036808, 0.0029623263981193304, 0.03378458693623543, -0.031204773113131523, 0.008425562642514706, 0.0038011090364307165, -0.0013791027013212442, 0.02244987152516842, -0.0031767392065376043, -0.023300660774111748, -0.02581186220049858, 0.005849179346114397, -0.025880474597215652, 0.010964210145175457, 0.03125966340303421, -0.037764087319374084, 0.0022796362172812223, -0.020501287654042244, 0.01230214536190033, -0.019046712666749954, -0.0035849809646606445, 0.006864638067781925, -0.02334182895720005, 0.010662316344678402, -0.014559482224285603, -0.01564355380833149, -0.02641564980149269, -0.0025300702545791864, 0.01076523493975401, -0.01440853625535965, 0.014106642454862595, 0.007506160996854305, -0.0017787680262699723, -0.014161532744765282, -0.01741374470293522, 0.0013122059172019362, -0.024055393412709236, -0.026305869221687317, -0.0005733396392315626, -4.438343603396788e-05, 0.006236837711185217, -0.009454743936657906, -0.011046544648706913, -0.009351826272904873, -0.015245603397488594, -0.0030000631231814623, 0.0320555604994297, 0.011135740205645561, -0.04591520130634308, 0.022532206028699875, -0.035705722868442535, 0.021736305207014084, -0.010113419964909554, -0.008157975971698761, -0.008741178549826145, 0.0089332927018404, 0.0036467318423092365, -0.005969250574707985, 0.0008194854599423707, 0.02026800811290741, 0.0009459889843128622, 0.0035266606137156487, 0.012082586996257305, -0.012610899284482002, 0.0014682984910905361, 0.017180463299155235, -0.0038354150019586086, 0.012075725011527538, 0.004994959104806185, 0.0036501623690128326, 0.00218186411075294, -0.03172622248530388, -0.030710766091942787, 0.18783241510391235, -0.017564691603183746, 0.02147557958960533, 0.03414136916399002, -0.02317715995013714, 0.027815336361527443, 0.0025472233537584543, 0.0020652234088629484, -0.013921390287578106, 0.029695305973291397, -0.01429875660687685, 0.022724319249391556, -0.01944466307759285, 0.008157975971698761, 0.026141200214624405, -0.02365744300186634, 0.0054203541949391365, -0.027033157646656036, 0.0008910993346944451, -0.011835583485662937, 0.0044666463509202, 0.018854599446058273, -0.004370589274913073, 0.0037427886854857206, 0.031781114637851715, 0.007705136202275753, 0.013770443387329578, -0.011073988862335682, 0.027636945247650146, 0.009811527095735073, -0.020665956661105156, -0.011060266755521297, 0.022491037845611572, -0.0036227176897227764, 0.00834322813898325, 0.0029554651118814945, 0.013866500928997993, 0.004833720624446869, 0.007533606141805649, 0.007561050821095705, 0.0031956075690686703, -0.013756721280515194, -0.03666629269719124, -0.031589001417160034, 0.019238825887441635, 0.02106390707194805, 0.00037179168430157006, -0.03490982577204704, -0.0036604541819542646, 0.03068332001566887, 0.000514590588863939, 0.01461437251418829, 0.00937240943312645, 0.004497521556913853, -0.00436372822150588, 0.004154461435973644, -0.019774001091718674, 0.02077573724091053, 0.03134199604392052, 0.025564860552549362, -0.021516747772693634, 0.041853368282318115, -0.021365800872445107, 0.009983057156205177, -0.017688192427158356, 0.0258393082767725, -0.021009018644690514, 0.005838887766003609, 0.015602386556565762, -0.027733001857995987, 0.008514759130775928, -0.03378458693623543, -0.009763498790562153, 0.015698442235589027, -0.03658396005630493, -0.010298673063516617, 0.02153046987950802, 0.02634703740477562, -0.0032882336527109146, 0.027595777064561844, -0.0033328316640108824, -0.014779041521251202, 0.006792595610022545, 0.0015171845443546772, -0.0003642872325144708, -0.007005292922258377, 0.027925115078687668, -0.012405063025653362, -0.016137560829520226, -0.015918001532554626, -0.014724151231348515, -0.016329674050211906, -0.008391257375478745, 0.011801277287304401, 0.025825586169958115, 0.0018645331729203463, -0.011760110035538673, -0.017180463299155235, -0.004723941441625357, -0.0320555604994297, -0.00845300778746605, 0.08485941588878632, 0.01649434305727482, 0.05198051035404205, -0.017935195937752724, 0.014984877780079842, -0.007485577370971441, 0.013571469113230705, 0.004874887876212597, -0.03370225057005882, -0.0019142769742757082, -0.015904279425740242, 0.00027101769228465855, -0.008905847556889057, -0.010977932251989841, -0.005636482033878565, -0.009955612011253834, 0.010120281018316746, -0.001271896413527429, 0.0003162587818223983, 0.007355214562267065, -0.021105075255036354, -0.013434244319796562, 0.035897839814424515, -0.0004359011072665453, -0.025221798568964005, -0.04050856828689575, 0.011773832142353058, 0.008583370596170425, -0.017180463299155235, 0.022065643221139908, -0.026909656822681427, 0.008020752109587193, -0.008281477726995945, -0.008775484748184681, 0.006326033268123865, 0.01750980131328106, -0.01409292034804821, -0.019170213490724564, 0.02428867481648922, 0.010566259734332561, 0.014847652986645699, 0.008651982992887497, -0.0008645121706649661, 0.04355494678020477, -0.029667861759662628, -0.0026244118344038725, 0.0037873866967856884, -0.022875266149640083, -0.024178896099328995, -0.01480648573487997, -0.008000168018043041, 0.01250798162072897, -0.022079365327954292, -0.007986445911228657, -0.025921642780303955, -0.010586843825876713, -0.011135740205645561, -0.0022110240533947945, 0.005554147530347109, -0.024810126051306725, -0.017880307510495186, 0.033839475363492966, -0.0037839559372514486, -0.007382659241557121, -0.01398314069956541, -0.1733415424823761, 0.01512210164219141, -0.008672566153109074, 0.005159628111869097, 0.013941973447799683, 0.013873361982405186, 0.0228615440428257, -0.015588663518428802, -0.007492438890039921, 0.021393245086073875, 0.02714293822646141, -0.011231796815991402, -0.014751596376299858, 0.01750980131328106, 0.009893861599266529, 0.022532206028699875, -0.011821860447525978, 0.008603954687714577, 0.03068332001566887, 0.028007449582219124, 0.006106474902480841, 0.004651898983865976, 0.007238573860377073, -0.0033482692670077085, -0.0012521704193204641, 0.015245603397488594, -0.0008340655476786196, 0.031589001417160034, -0.017221631482243538, -0.018758540973067284, -0.013941973447799683, -0.0008756616152822971, 0.01719418540596962, 0.00932438112795353, 0.007814915850758553, 0.00788352731615305, -0.007341491989791393, -0.012658928520977497, -0.0039760698564350605, 0.011760110035538673, 0.04015178605914116, 0.032028116285800934, -0.01157485693693161, -0.00942043773829937, 0.02625098079442978, 0.015506329014897346, 0.001307917758822441, -0.04366472363471985, -0.020254284143447876, 0.0003115417202934623, 0.028679847717285156, -0.006476980168372393, 0.004192197695374489, 0.0013516579056158662, 0.03216534107923508, -0.0026810169219970703, -0.023067379370331764, -0.0009048217325471342, -0.005248823668807745, 0.00829519983381033, 0.007581634446978569, -0.012638344429433346, -0.002138981595635414, 0.010326117277145386, 0.015876835212111473, -0.0178254172205925, -0.03353758156299591, 0.011293548159301281, -0.03866976499557495, -0.004013806581497192, -0.03271423652768135, -0.015794500708580017, 0.04245715215802193, -0.0028405399061739445, 0.006521577946841717, 0.039026547223329544, -0.015794500708580017, 0.02840539999306202, 0.0038148313760757446, -0.02900918573141098, 0.0003003922465723008, -0.004006945062428713, -0.021804917603731155, 0.006929819937795401, -0.005265976767987013, 0.004991528578102589, 0.005660496186465025, 0.010058530606329441, 0.033043574541807175, -0.014971154741942883, 0.018635040149092674, -0.046189650893211365, -0.0011518251849338412, 0.0022762056905776262, 0.0033019562251865864, 0.026964545249938965, -0.000571195560041815, -0.01818219944834709, 0.024110283702611923, -0.020309174433350563, 0.023602554574608803, -0.02220286801457405, -0.005612467881292105, -0.009180296212434769, -0.005650204606354237, 0.01789402961730957, -0.015986613929271698, 0.022394981235265732, 0.021050184965133667, 0.01934860460460186, -0.05148650333285332, -0.0009562807972542942, 0.01075151190161705, 0.027156660333275795, 0.0029245896730571985, 0.03359247371554375, -0.007039599120616913, -0.02857006900012493, 0.011135740205645561, -0.017331410199403763, 0.04671110212802887, 0.011917917989194393, 0.012617761269211769, 0.02232636883854866, 0.02435728721320629, 0.001307917758822441, -0.11241402477025986, -0.026868488639593124, 0.02736249566078186, 0.005139044485986233, -0.004374019801616669, 0.01379102747887373, -0.009900722652673721, 0.03027164749801159, -0.01659039966762066, 0.02445334382355213, -0.03831298276782036, -0.00834322813898325, -0.01280987448990345, -0.016110114753246307, -0.014422258362174034, 0.01624733954668045, -0.0031990380957722664, -0.021983308717608452, -0.026141200214624405, 0.02460429072380066, 0.0038388457614928484, -0.018580149859189987, -0.01637084223330021, -0.0033705681562423706, -0.006840623915195465, -0.004175045061856508, -0.02055617794394493, 0.014339923858642578, 0.009242046624422073, 0.01571216620504856, 0.009763498790562153, -0.0004333281540311873, 0.008377534337341785, -0.023808389902114868, 0.016096392646431923, 0.0022161700762808323, -0.02406911551952362, 0.020789459347724915, 0.023232048377394676, -0.006579898297786713, -0.009564523585140705, -0.0018696790793910623, 0.01697462797164917, 0.011664053425192833, -6.678956560790539e-05, -0.0235613863915205, -0.0025557999033480883, -0.009049932472407818, -0.010573120787739754, -0.014971154741942883, -0.048055898398160934, -0.026552872732281685, -0.04613475874066353, -0.003993222955614328, 0.022408703342080116, 0.005077293608337641, 0.020940406247973442, 0.014628094621002674, -0.005571300629526377, 0.0008053342462517321, -0.0034237427171319723, 0.0030137854628264904, -0.0005055852234363556, 0.008844096213579178, 0.0016321097500622272, 0.01729024387896061, -0.020762015134096146, 0.00785608310252428, 0.01337935496121645, -0.008082502521574497, 0.004857734777033329, 0.0011904195416718721, -0.013612636364996433, 0.009173434227705002, -0.01285790279507637, 0.01290593110024929, 0.006404937244951725, 0.010525092482566833, 0.005169920157641172, -0.014339923858642578, -0.017331410199403763, -0.01997983641922474, -0.02029545232653618, -0.005245393142104149, -0.0006445246981456876, 0.011739525943994522, -0.0015034620882943273, -0.009921305812895298, 0.0021561344619840384, -0.03230256587266922, 0.012658928520977497, -0.0027359065134078264, -0.0007714570383541286, -0.024274952709674835, -0.0178254172205925, 0.008638259954750538, 0.011190629564225674, -0.01941721700131893, 0.004404895473271608, -0.0016346827615052462, -0.04284137859940529, 0.012940237298607826, -0.0553562231361866, 0.01564355380833149, -0.01617872714996338, -0.01440853625535965, 0.0037290663458406925, -0.01368124783039093, 0.01429875660687685, 0.005814873613417149, -0.02201075479388237, 0.009605690836906433, -0.04830290004611015, -0.017852861434221268, -0.02229892462491989, -0.012377618812024593, -0.02384955808520317, -0.020418953150510788, 0.0013602344552055001, -0.003941763658076525, 0.012212949804961681, -0.004380880855023861, 0.0061647952534258366, 0.006645079702138901, 0.008157975971698761, 0.0169471837580204, -0.011348437517881393, -0.005735969636589289, -0.008768623694777489, 0.01750980131328106, -0.005416923202574253, -0.0023293800186365843, 0.04237481951713562, -0.02220286801457405, -0.0027959421277046204, 0.013200963847339153, -0.014024307951331139, 0.021612804383039474, 0.0035009311977773905, 0.02099529467523098, 0.006295158062130213, 0.04031645506620407, 0.0010789248626679182, -0.03131455183029175, 0.009612551890313625, -0.02302621304988861, -0.03334546834230423, -0.020062170922756195, -0.01179441623389721, 0.02109135314822197, 0.02121485397219658, -0.017345132306218147, 0.04355494678020477, 0.010065391659736633, -0.0001482664083596319, -0.0374896377325058, -0.014957432635128498, -0.013406800106167793, 0.02229892462491989, -0.014984877780079842, -0.005972681101411581, 0.0009648573468439281, 0.03556850180029869, -0.002492333762347698, 0.02457684651017189, -0.024714069440960884, 0.008665705099701881, -0.0029537498485296965, -0.048659685999155045, 0.0027187534142285585, 0.0033328316640108824, 0.01008597481995821, -0.01075151190161705, 0.0013362201862037182, 0.0014468571171164513, 0.028268175199627876, 0.050114259123802185, -0.01250798162072897, -0.02128346636891365, 0.011519967578351498, -0.007286602631211281, 0.019938670098781586, 0.02312226966023445, -0.00119385018479079, 0.009996779263019562, 0.014490870758891106, 0.029283633455634117, -0.022669430822134018, -0.0003539954195730388, -0.0019211381440982223, -0.015588663518428802, 0.016645289957523346, -0.006034431979060173, 0.03068332001566887, -0.016398286446928978, 0.0007375798304565251, 0.0176058579236269, -0.025194354355335236, 0.02203819900751114, 0.002223031362518668, 0.009235185571014881, 0.004288254771381617, 0.02137952297925949, 0.0011483946582302451, -0.01203455775976181, 0.007842360064387321, -0.01583566702902317, 0.015657275915145874, -0.03910888358950615, -0.02431611903011799, 0.011519967578351498, 0.01792147383093834, -0.008206004276871681, 0.005478674080222845, 0.008748039603233337, 0.020185673609375954, -0.01383905578404665, 0.02314971387386322, 0.0013525155372917652, -0.021036462858319283, -0.027691833674907684, 0.0037462194450199604, -0.018923209980130196, 0.0035009311977773905, 0.03699563071131706, -0.012912793084979057, 0.036501623690128326, 0.01532793790102005, 0.0025523691438138485, -0.0017238784348592162, 0.0018902627052739263, 0.022340092808008194, -0.03683096170425415, -0.007396381814032793, -0.010964210145175457, -0.017468634992837906, -0.0027393370401114225, 0.014943710528314114, -0.008363812230527401, 0.01995239220559597, -0.0030566679779440165, 0.08809790760278702, 0.03109499253332615, 0.0003492783580441028, -0.004226503893733025, 0.008446146734058857, -0.0036604541819542646, -0.008075641468167305, 0.009194018319249153, -0.0027925116010010242, -0.012267839163541794, 0.025729527696967125, 0.011355298571288586, -0.021763751283288002, -0.02232636883854866, 0.004816567525267601, 0.0002768068516161293, -0.040206678211688995, -0.0026878779754042625, -0.026717541739344597, -0.007808054331690073, 0.01748235709965229, 0.0034443263430148363, -0.005485535599291325, -0.022367537021636963, -0.02738994173705578, -0.004861165769398212, 0.006813179235905409, -0.009427299723029137, -0.013859639875590801, -0.014669261872768402, 0.008322644978761673, 0.006113335955888033, -0.02394561469554901, -0.023808389902114868, -0.009633135050535202, 0.020638512447476387, -0.02244987152516842, -0.022024476900696754, 0.0407281294465065, -0.027060603722929955, -0.0056467740796506405, -0.007121933624148369, -0.015273048542439938, -0.04934580624103546, -0.019677942618727684, -0.006068738177418709, -0.009125405922532082, -0.035266607999801636, -0.029118964448571205], "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6": [-0.0033331827726215124, 0.002031930023804307, -0.008073217235505581, -0.03384619951248169, 0.006015739403665066, 0.009054266847670078, -0.004084298852831125, -0.010226075537502766, -0.030330771580338478, -0.016228189691901207, -0.0018564993515610695, 0.01363930944353342, -0.008291228674352169, 0.027864523231983185, -0.0019110020948573947, -0.01370062492787838, 0.007139858324080706, -0.004694047849625349, -0.009306342341005802, 0.0062507824040949345, -0.0018377640517428517, 0.020533906295895576, 0.02002975530922413, -0.005307203624397516, -0.012896710075438023, 0.01838104799389839, 0.03891495242714882, -0.00968104787170887, -0.006666365545243025, 0.01767251268029213, 0.031693339347839355, -0.003270164132118225, -0.01748175173997879, -0.0015192637220025063, -0.011854344978928566, -0.008325292728841305, 0.0021290131844580173, 0.01561503391712904, 0.019948000088334084, -0.018163036555051804, 0.024321844801306725, 0.027523880824446678, 0.00907470565289259, -0.013550742529332638, 0.0177406407892704, 0.020206889137625694, -0.008856694214046001, -0.005508182570338249, -0.001883750781416893, -0.009463037364184856, 0.01840829849243164, 0.03847892954945564, -0.017999527975916862, -0.006461980286985636, -0.011343381367623806, -0.02845042757689953, -0.009033828042447567, -0.003004463156685233, -0.008672747761011124, -0.026692714542150497, 0.010852857492864132, -0.0054230219684541225, -0.010628033429384232, -0.04452873393893242, 0.0002801781229209155, 0.013298667035996914, 0.004278464708477259, 0.011302504688501358, -0.012412997893989086, -0.01019201148301363, 0.017658885568380356, 0.021160686388611794, -0.02067016251385212, 0.026651836931705475, 0.05330367386341095, -0.022564131766557693, -0.023981204256415367, -0.0021801094990223646, -0.002720027230679989, 0.028559433296322823, 0.00011262479529250413, -0.0007417481392621994, -0.0100489417091012, 0.011956537142395973, -0.016596082597970963, 0.0327288918197155, 0.027128735557198524, 0.018394673243165016, -0.0017509004101157188, -0.009176897816359997, 0.0026859629433602095, 0.005041502881795168, 0.010580343194305897, 0.026719965040683746, -0.0026127249002456665, 0.017154736444354057, 0.023599684238433838, 0.022209864109754562, 0.0008873726474121213, -0.029649488627910614, 0.020983552560210228, 0.02680172026157379, -0.03210211172699928, 0.007153484039008617, -0.0005109631456434727, -0.01812215894460678, 0.01252200361341238, -0.002168186940252781, 0.0007383417105302215, -0.016309943050146103, -0.025738917291164398, 0.031529832631349564, 0.01700485311448574, -0.014429599046707153, -0.013155597262084484, -0.005436647683382034, -0.011772590689361095, -0.01703210547566414, -0.016037430614233017, -0.012045104056596756, 0.01541064865887165, 0.024321844801306725, 0.03027626872062683, -0.010553091764450073, 0.013462175615131855, 0.0058386055752635, 0.004298903048038483, -0.015437900088727474, 0.019307594746351242, -0.008965699933469296, 0.019689112901687622, 0.005521808285266161, -0.011500077322125435, 0.020901799201965332, -0.017304617911577225, -0.0026076151989400387, -0.03308315947651863, -0.008236725814640522, -0.019280342385172844, -0.016228189691901207, 0.004786021541804075, 0.010532653890550137, -0.01888519711792469, -0.022482378408312798, -0.0029891342855989933, 0.03349193185567856, 0.016514329239726067, 0.010791541077196598, 0.0023504304699599743, 0.0196482352912426, -0.005194792058318853, 0.004390876740217209, -0.011472825892269611, -0.0014732771087437868, -0.0028818321879953146, 0.007609944324940443, -0.026229441165924072, -4.888746116193943e-05, 0.014579481445252895, -0.02447172813117504, -0.008720437996089458, 0.01617368683218956, -0.011786216869950294, -0.013550742529332638, 0.01196335069835186, 0.03103930689394474, 0.025003129616379738, 0.03632607311010361, 0.010532653890550137, -0.00884988158941269, 0.004554384853690863, 0.005903327371925116, -0.007173922378569841, 0.02424009144306183, 0.01793139986693859, 0.004656577482819557, 0.004009357653558254, -0.009245026856660843, -0.011922473087906837, -0.0006578650209121406, 0.020629284903407097, -0.004908652510493994, 0.028831947594881058, 0.027632886543869972, -0.042103361338377, -0.009524352848529816, 0.0037981593050062656, 0.0026365697849541903, 0.0023504304699599743, 0.002805187599733472, 0.013571181334555149, 0.014647609554231167, -0.012958025559782982, -0.004162646364420652, -0.6217672228813171, -0.013039778918027878, -0.02176021784543991, -0.02787814848124981, -0.013945886865258217, 0.017372746020555496, 0.007875645533204079, 0.016282692551612854, -0.007494125980883837, 0.026815345510840416, 0.007691698614507914, -0.018612684682011604, 0.03534502536058426, -0.005685316398739815, -0.020016130059957504, -0.01741362363100052, 0.021160686388611794, -0.008114094845950603, -0.023940326645970345, 0.0005258662276901305, -0.014620359055697918, 0.02954048290848732, -0.019416598603129387, -0.006237156689167023, 0.024866873398423195, 0.02259138412773609, -0.0036108060739934444, 0.015233514830470085, 0.011111744679510593, 0.014252465218305588, -0.029077209532260895, -0.008938448503613472, -0.009735550731420517, 0.013932261615991592, 0.05068754404783249, -0.003896945621818304, 0.0017279069870710373, -0.001398335793055594, 0.0229320265352726, 0.03248362988233566, -0.00814815890043974, -0.034854497760534286, 0.02657008357346058, 0.011827093549072742, 0.03774314373731613, 0.008325292728841305, 0.0013344654580578208, 0.005654658656567335, -0.012051917612552643, -0.012065542861819267, -4.124963015783578e-05, 0.002805187599733472, -0.013482614420354366, -0.019879871979355812, 0.014443224295973778, -0.019225839525461197, 0.029867498204112053, -0.014429599046707153, 0.023231791332364082, -0.02861393615603447, 0.002086432883515954, 0.023940326645970345, -0.01560140773653984, -0.01201104000210762, -0.01524714007973671, 0.00996718741953373, -0.031175564974546432, -0.013176036067306995, -0.009088330902159214, -0.020629284903407097, 0.018094908446073532, 0.022059982642531395, -0.004673609510064125, -0.017849646508693695, 0.026937976479530334, 0.02102443017065525, 0.016664210706949234, 0.01182028092443943, -0.004298903048038483, 0.0019297375110909343, 0.011377446353435516, -0.006915034726262093, 0.0043874699622392654, -0.019157711416482925, 0.04128582030534744, 0.0032275838311761618, -0.017563506960868835, -0.0038731005042791367, 0.011070868000388145, 0.010437273420393467, 0.005780696403235197, 0.02954048290848732, -0.008468362502753735, -0.046872351318597794, -0.0038935390766710043, 0.021705714985728264, -0.00018671444559004158, -0.015274391509592533, -0.016378071159124374, -0.013155597262084484, 0.0015499215805903077, -0.013945886865258217, -0.017168361693620682, 0.022114485502243042, 0.02937697432935238, 0.015015503391623497, -0.01917133666574955, 0.024812370538711548, 0.0477171428501606, -0.017154736444354057, -0.019280342385172844, -0.020901799201965332, 0.013346357271075249, 0.013026153668761253, -0.0006059171282686293, -0.027864523231983185, 0.02823241613805294, 0.0011292285053059459, -0.006308691576123238, -0.010457712225615978, 0.00019714661175385118, 0.010743851773440838, -0.0017781517235562205, 0.004898433107882738, 0.03591730073094368, 0.014443224295973778, 0.015179011970758438, 0.008774939924478531, -0.0243082195520401, -0.004332967568188906, 0.002442403696477413, -0.003346808487549424, 0.0327288918197155, -0.0026978852692991495, -0.0013344654580578208, -0.03204760700464249, 0.021419575437903404, -0.019321219995617867, -0.0038662876468151808, -0.02825966849923134, -0.01271276269108057, -0.01467486098408699, 0.010553091764450073, -0.020820043981075287, -0.02539827488362789, -0.02166483737528324, -0.036189816892147064, -0.014102582819759846, -0.016214564442634583, 0.018680812790989876, -0.006008926313370466, 0.003777720732614398, -0.0219509769231081, 0.022005479782819748, -0.0057500386610627174, -0.013809630647301674, -0.005535434000194073, -0.008141346275806427, -0.0014247355284169316, -0.00814815890043974, -0.00044879596680402756, 0.036734841763973236, -0.026270318776369095, 0.002800077898427844, -0.011949724517762661, -0.005044909194111824, -0.01202466618269682, 0.013857319951057434, -0.04382019862532616, -0.032810647040605545, 0.012842207215726376, -0.01223586406558752, -0.014415973797440529, -0.014933749102056026, -0.007753014098852873, 0.00766444718465209, -0.002442403696477413, 0.029594985768198967, 0.006352975033223629, -0.00628484645858407, -0.0037640950176864862, -0.009769614785909653, 0.022128110751509666, -0.014851994812488556, 0.010219262912869453, 0.004040015395730734, -0.005944204516708851, 0.0004526281845755875, -0.03591730073094368, -0.0019092989386990666, 0.03678934648633003, 0.01579216681420803, -0.009830931201577187, -0.027224116027355194, -0.028722941875457764, 0.03809741139411926, 0.007071729749441147, 0.006329129915684462, 0.014620359055697918, 0.04275739565491676, 0.03575379401445389, -0.005760257598012686, 0.0056035625748336315, -0.023913074284791946, -0.004162646364420652, -0.016705088317394257, 0.010171572677791119, -0.010266953147947788, 0.03913296386599541, 0.004677015822380781, 0.003431969089433551, -0.00019001441251020879, -0.02373594045639038, -0.013421298936009407, -0.0003559709875844419, 0.05251338332891464, -0.0133054805919528, 0.007255676668137312, -0.012406185269355774, 0.014020828530192375, 0.019375722855329514, 0.013005714863538742, -0.0012160922633484006, 0.0006702133105136454, 0.0012620789930224419, -0.017631635069847107, 0.01629631780087948, 0.008400234393775463, -0.025302894413471222, -0.035426776856184006, -0.0027745298575609922, -0.0133054805919528, 0.0043874699622392654, 0.008890758268535137, 0.013039778918027878, 0.028068907558918, 0.012910335324704647, -0.011711275205016136, 0.04166734218597412, -0.02057478204369545, -0.005910140462219715, 0.0004952084273099899, 0.004428347107023001, -0.0317205935716629, -0.015546904876828194, -0.013210100121796131, 0.026025056838989258, 0.03757963702082634, -0.009190523996949196, 0.009694674052298069, 0.010886921547353268, 0.011098119430243969, -0.013993577100336552, -0.0024236685130745173, 0.0033910919446498156, 0.001470722258090973, 0.020111508667469025, 0.004813272971659899, 0.02050665393471718, 0.008665935136377811, -0.0004705118772108108, 0.017686137929558754, 0.015124509111046791, 0.0013140268856659532, -0.0009171788115054369, -0.013455362990498543, 0.0010798354633152485, -0.06256914138793945, 0.004482849966734648, -0.005641032941639423, -0.02347705326974392, -0.010628033429384232, -0.030412526801228523, -0.0074123721569776535, 0.01569678820669651, 0.01636444590985775, -0.008202661760151386, -0.006966130807995796, 0.020901799201965332, 0.001386413350701332, 0.0114523870870471, -0.028286918997764587, 0.005722787231206894, 0.04166734218597412, -0.014715738594532013, 0.0036550897639244795, 0.003082810901105404, 0.020629284903407097, -0.00831166747957468, -0.0031032494734972715, -0.02302740514278412, -0.009953562170267105, 0.012549255043268204, 0.006278033833950758, -0.008345731534063816, -0.025180263444781303, 0.025193888694047928, 0.0028852385003119707, -0.024894123896956444, 0.007330617867410183, 0.000245475210249424, 0.015778541564941406, -0.05537477880716324, -0.005651252344250679, 0.05597430840134621, -0.02628394402563572, 1.2142028253947501e-06, -0.0022226895671337843, 0.0042103361338377, -0.02915896289050579, 0.00460207462310791, -0.019770866259932518, -0.03613531216979027, -0.004581636283546686, 0.021746590733528137, -0.026365697383880615, 0.014388722367584705, 0.0050244708545506, 0.032456379383802414, 0.0027540912851691246, 0.004084298852831125, 0.0021085746120661497, 0.004694047849625349, 0.012290366925299168, 0.06017101928591728, 0.007494125980883837, -0.009401721879839897, 0.01361887063831091, -0.03155708312988281, 0.007739388383924961, -0.009027015417814255, -0.017018478363752365, 0.028096159920096397, -0.0027643106877803802, -0.005157321225851774, 0.019184961915016174, 0.021514954045414925, -0.008604619652032852, 0.01312834583222866, 0.020888173952698708, -0.007678072899580002, -0.0003959964378736913, 0.03030352108180523, -0.015710413455963135, 0.004789427854120731, 0.02092904970049858, 0.030194515362381935, 0.0036039934493601322, -0.020983552560210228, -0.0049733747728168964, 0.023517930880188942, -0.0025548157282173634, 0.00033148733200505376, -0.005555872339755297, 0.005617188289761543, 0.015873922035098076, 0.014347844757139683, 0.03812466189265251, -0.019893499091267586, 0.04221236705780029, 0.013523491099476814, 0.016882222145795822, 0.0068264673464000225, -0.000556949817109853, 0.009333593770861626, 0.00474514439702034, 0.0130806565284729, -0.00872725062072277, 0.022114485502243042, -0.006366600748151541, 0.00320203579030931, 0.007623570039868355, -0.002583770314231515, 0.0021375291980803013, 0.017331870272755623, -0.02839592471718788, -0.050387777388095856, -0.014797492884099483, 0.02002975530922413, 0.007650821469724178, -0.02418558858335018, -0.003420046530663967, -0.0224551260471344, -0.04578229784965515, -0.022019105032086372, -0.010539466515183449, 0.007460061926394701, -0.0077325752936303616, 0.012692324817180634, -0.012256302870810032, -0.0018530930392444134, 0.014293341897428036, -0.018135784193873405, -0.014538604766130447, -0.014606732875108719, -0.02073829062283039, -0.04450148344039917, -0.015015503391623497, -0.006567579694092274, 0.0038117850199341774, 0.01314197201281786, 0.008366169407963753, -0.0012160922633484006, 0.01569678820669651, -0.014075331389904022, -0.044773995876312256, -0.004751957021653652, -0.016677837818861008, -0.018803443759679794, 0.026420200243592262, 0.01936209574341774, 0.012481126002967358, 0.030576033517718315, 0.012590131722390652, 0.005378738511353731, -0.018299292773008347, 0.009033828042447567, -0.021160686388611794, -0.01907595805823803, 0.035644788295030594, 0.021269692108035088, 0.014225213788449764, 0.016391698271036148, -0.021065307781100273, -0.006298472173511982, -0.003699373221024871, 0.011500077322125435, 0.0029227090999484062, -0.008822630159556866, -0.01636444590985775, -0.0026280537713319063, 0.02297290228307247, -0.016514329239726067, -0.02086092159152031, 0.0168413445353508, -0.02019326388835907, 0.009183710440993309, 0.004360218998044729, 0.019893499091267586, 0.027510255575180054, -0.0015592891722917557, 0.016596082597970963, 0.016854971647262573, -0.026174938306212425, 0.02069741301238537, -0.047744397073984146, -0.0034541108179837465, 0.002241424983367324, -0.019307594746351242, 0.022482378408312798, 0.007725762668997049, -0.03221111744642258, -0.03084854781627655, 0.003842442762106657, 0.026747217401862144, 0.030521530658006668, -0.00870681181550026, -0.03420046716928482, -0.029240718111395836, 0.016473451629281044, -0.01192928571254015, -0.00971511285752058, -0.01926671713590622, -0.021637585014104843, 0.0033093378879129887, -0.004864369053393602, 0.012487939558923244, 0.014565856195986271, -0.013019341044127941, -0.03460923582315445, 0.0007528190035372972, 0.000764315715059638, -0.00920414924621582, 0.03760688751935959, -0.015560531057417393, -0.006301878951489925, 0.011942911893129349, 0.0017866677371785045, 0.012971650809049606, -0.021610334515571594, -0.0012501564342528582, -0.012610570527613163, 0.0289682038128376, 0.020942676812410355, 0.024226466193795204, 0.007766639813780785, 0.027128735557198524, 0.014552230015397072, -0.010900546796619892, -0.005300390999764204, 0.004251213278621435, 0.0054741185158491135, 0.0038662876468151808, 0.001319988165050745, 0.01553327962756157, 0.02067016251385212, 0.03613531216979027, 0.014388722367584705, -0.008481987752020359, 0.02114706113934517, -0.003140720073133707, -0.01336679607629776, -0.014306968078017235, -0.034336723387241364, -0.0037164052482694387, 0.01419796235859394, -0.012051917612552643, 0.019130459055304527, -0.01955285668373108, -0.011329756118357182, 0.01467486098408699, 0.01993437483906746, 0.003961667418479919, 0.0034558139741420746, 0.014742990024387836, -0.024989504367113113, 0.00614858977496624, 0.03891495242714882, 0.034118711948394775, -0.021923724561929703, -0.004169459454715252, -0.022673137485980988, 0.019307594746351242, 0.02918621525168419, -0.000911217590328306, 0.006938879378139973, 0.018653560429811478, -0.00614858977496624, -0.007514564786106348, 0.007078542839735746, -0.019035080447793007, -0.017427248880267143, 0.028940951451659203, -0.026529205963015556, -0.022700389847159386, -0.03534502536058426, -0.022727640345692635, -0.006901409011334181, 0.00856374204158783, 0.028314171358942986, -0.0045169140212237835, 0.015179011970758438, -0.023790443316102028, -0.033546432852745056, 0.013087469153106213, -0.023463428020477295, 0.02035677060484886, -0.014933749102056026, 0.018067656084895134, 0.0018956732237711549, -0.009735550731420517, -0.01378237921744585, -0.0015235217288136482, 0.015179011970758438, 0.021651212126016617, 0.022795768454670906, -0.0025445963256061077, 0.018680812790989876, -0.020370397716760635, -0.019471101462841034, 0.027292244136333466, 0.0020591814536601305, -0.03907845914363861, -0.00319862924516201, 0.02609318494796753, 0.0037436566781252623, -0.014579481445252895, 0.016732338815927505, -0.004850743338465691, 0.0007634640787728131, -0.011145809665322304, -0.00808684341609478, -0.003910571336746216, -0.004380657337605953, -0.017686137929558754, 0.012201800011098385, 0.004762176424264908, 0.0354812815785408, 0.010914172977209091, -0.015506028197705746, 0.010355520062148571, -0.015029129572212696, -0.03869694098830223, 0.023245416581630707, -0.025956926867365837, -0.009735550731420517, -0.013911822810769081, 0.017658885568380356, 0.019021455198526382, -0.013714251108467579, -0.004636138677597046, -0.003856068477034569, 0.012671886011958122, 0.025861548259854317, -0.017495376989245415, -0.0010713193332776427, -0.024866873398423195, -0.015574156306684017, -0.011936099268496037, 0.00047902794904075563, -0.026597334071993828, 0.007337430492043495, -0.008829442784190178, -0.022441500797867775, 0.008202661760151386, -0.008809004910290241, 0.016214564442634583, 0.00043495738646015525, -0.007371495012193918, -0.008454736322164536, -0.0042409938760101795, 0.0011053836205974221, 0.011288878507912159, -0.037388876080513, -0.0035324585624039173, -0.006976350210607052, -0.00038833197322674096, 0.0063257236033678055, 0.010076193138957024, -0.004380657337605953, 0.0002678298333194107, 0.02007063291966915, 0.012269928120076656, 0.01400720328092575, 0.006312097888439894, -0.0036584960762411356, -0.030930301174521446, 0.012372121214866638, -0.011302504688501358, -0.0008805597899481654, 0.02918621525168419, -0.01674596592783928, -0.01859905757009983, -0.01888519711792469, -0.01895332522690296, -0.008202661760151386, -0.0191440861672163, 0.0017662292812019587, 0.014102582819759846, 0.01793139986693859, 0.02392670139670372, 0.013850507326424122, -0.017727013677358627, 0.04428347200155258, -0.002355540171265602, -0.015070006251335144, 0.02561628632247448, -0.003917383961379528, 0.027128735557198524, 0.002999353688210249, -0.024417225271463394, 0.01055990532040596, -0.045537035912275314, -0.0289682038128376, -0.011029991321265697, 0.0036005869042128325, -0.01974361576139927, 0.006894595921039581, 0.004401095677167177, 0.004663390107452869, -0.009210961870849133, -0.003288899315521121, -0.009510727599263191, 0.01229717954993248, 0.0030300114303827286, 0.010934610851109028, -0.017618009820580482, 0.0012493048561736941, -0.03253813460469246, -0.010641658678650856, 0.0065267025493085384, 0.014524978585541248, -0.010430460795760155, -0.010886921547353268, -0.007003601640462875, 0.023231791332364082, 0.029867498204112053, -0.0064347293227910995, -0.012283554300665855, 0.019130459055304527, -0.014906497672200203, -0.006795809604227543, 0.014443224295973778, -0.009783240966498852, 0.013666560873389244, 0.020724665373563766, 0.022823020815849304, 0.01981174387037754, 4.369799353298731e-05, 0.008890758268535137, -0.026869848370552063, -0.0035903677344322205, -0.005855637602508068, 0.016023803502321243, -0.007180735468864441, 0.017727013677358627, -0.021446825936436653, -0.03455473482608795, -0.00321395811624825, 0.009497101418673992, 0.006339349318295717, 0.018272042274475098, -0.017563506960868835, 0.002997650532051921, 0.00598167534917593, -0.007780265528708696, -0.016418948769569397, -0.012596944347023964, 0.002566738286986947, -0.00921777542680502, 0.0014570965431630611, 0.01013069599866867, 0.010716600343585014, -0.00766444718465209, 0.0039957319386303425, -0.012147297151386738, -0.014429599046707153, -0.0016435980796813965, -0.018163036555051804, -0.0031287975143641233, 0.011949724517762661, -0.011111744679510593, 0.018231164664030075, -0.019580107182264328, 0.005147101823240519, 0.027551133185625076, 0.0033382924739271402, -0.019770866259932518, -0.011316129937767982, 0.007167109753936529, -0.026815345510840416, -0.014170710928738117, 0.027442127466201782, 0.00600552000105381, 0.012481126002967358, -0.006376820150762796, 0.015437900088727474, -0.011772590689361095, 0.012017852626740932, -0.03311040997505188, 0.0005658916779793799, -0.033001404255628586, 0.03248362988233566, -0.003474549390375614, 0.0056240009143948555, -0.006771964952349663, -0.0018428737530484796, 0.014742990024387836, -0.0074532488361001015, 0.007003601640462875, 0.0037640950176864862, -0.010961862280964851, 0.0049018398858606815, 0.018040405586361885, -0.005061941687017679, 0.023885823786258698, -0.0030436371453106403, 0.001819028751924634, -0.010369145311415195, -0.0006029364885762334, 0.19937101006507874, 0.003334886161610484, 0.016582457348704338, 0.041803598403930664, -0.016023803502321243, 0.029622236266732216, 0.01467486098408699, 0.0019331438234075904, -0.0186944380402565, 0.011874783784151077, -0.005784102715551853, 0.024253716692328453, -0.025371022522449493, 0.005443460773676634, -0.007514564786106348, 0.00971511285752058, 0.01062122080475092, -0.07706686854362488, -0.01978449337184429, -0.00083159253699705, 0.008577368222177029, -0.004196710418909788, 0.0017560099950060248, -0.01562866009771824, 0.031911350786685944, 0.004176272079348564, -0.00047902794904075563, -0.036380574107170105, 0.049297723919153214, -0.003539271419867873, -0.014920123852789402, -0.014429599046707153, 0.009864995256066322, 0.0046259197406470776, -0.025153012946248055, 0.005480931140482426, 0.012167735956609249, -0.010232888162136078, 0.028722941875457764, -0.016636960208415985, 0.014742990024387836, -0.024716990068554878, -0.029431477189064026, -0.012106419540941715, 0.009606107138097286, 0.02045215107500553, -0.0023453207686543465, -0.030903050675988197, -0.019402973353862762, -0.004278464708477259, -0.02159670926630497, -0.0022533475421369076, 0.00814815890043974, 0.009892246685922146, 0.007971025072038174, -0.01083241868764162, -0.006611863151192665, 0.019825369119644165, 0.03240187466144562, 0.04275739565491676, -0.010226075537502766, 0.029322471469640732, 0.004268245305866003, 0.018639935180544853, 0.005368519574403763, 0.0041660526767373085, -0.04793515428900719, 0.00279496842995286, 0.02647470310330391, -0.02861393615603447, -0.02392670139670372, -0.03605356067419052, 0.010083005763590336, 0.012992089614272118, -0.033382926136255264, -0.014906497672200203, 0.03204760700464249, 0.012344869785010815, -0.001258672564290464, 0.01981174387037754, -0.011098119430243969, -0.013230538927018642, -0.011295692063868046, 0.001251859706826508, 0.01083241868764162, -0.031311821192502975, 0.04112231358885765, -0.007364681921899319, -0.00555927911773324, -0.012855832464993, -0.020057005807757378, 0.0053480807691812515, -0.014225213788449764, -1.5621633792761713e-05, 0.03400970622897148, 0.00047008608817122877, 0.007112606894224882, 0.016418948769569397, -0.017904147505760193, 0.006172434892505407, -0.0032548352610319853, 0.05962599068880081, 0.024989504367113113, 0.010737039148807526, -0.007262489292770624, 0.005729599855840206, 0.01038277056068182, 0.03684384748339653, -0.0004598668310791254, -0.044583238661289215, -0.0144841019064188, -0.005061941687017679, -0.0025156419724226, -0.010491776280105114, -0.002525861142203212, 0.0005194792174734175, -0.013564367778599262, 0.0009044047328643501, 0.0043465932831168175, -0.00336895021609962, -0.020179636776447296, 0.002793265273794532, -0.016827719286084175, 0.0266109611839056, -0.024294594302773476, -0.03782489895820618, -0.018299292773008347, -0.01432059332728386, 0.0022073606960475445, -0.01731824316084385, 0.00816859770566225, -0.023054657503962517, -0.018639935180544853, -0.008672747761011124, 0.0037334372755140066, 0.016868596896529198, 0.0037436566781252623, -0.023558806627988815, -0.03174784407019615, 0.0026382729411125183, -0.005681910086423159, 0.00404342170804739, 0.004479443654417992, -0.0009589074761606753, 0.017849646508693695, -0.04332967475056648, -0.009163272567093372, -0.006516483146697283, -0.020179636776447296, -0.03831542283296585, -0.007596318610012531, 0.0013574587646871805, -0.008413859643042088, -0.01793139986693859, -0.008713624440133572, -0.014920123852789402, -0.022223489359021187, -0.026106810197234154, 0.026842597872018814, 0.01853092946112156, -0.03891495242714882, -0.004176272079348564, 0.029213465750217438, -0.0018939700676128268, 0.0004747699131257832, -0.01700485311448574, -0.17266465723514557, 0.027673764154314995, -0.0028835353441536427, -0.0013395750429481268, 0.010580343194305897, 0.005153914913535118, 0.030167263001203537, 0.012222237884998322, -0.001262930571101606, 0.012535628862679005, 0.015465150587260723, 0.004431753419339657, -0.008992951363325119, 0.0074532488361001015, 0.0009640171192586422, -0.004169459454715252, -0.004884807392954826, -0.006983162835240364, 0.007344243582338095, 0.013714251108467579, 0.02235974743962288, -0.010825606063008308, 0.018612684682011604, -0.0011752152349799871, 0.010301017202436924, 0.026297569274902344, -0.010777915827929974, 0.029676739126443863, -0.004111550282686949, -0.04150383174419403, -0.005296984687447548, -0.010880108922719955, 0.01917133666574955, 0.011752151884138584, 0.017277367413043976, 0.005940798204392195, 0.0017883710097521544, -0.027142362669110298, -0.023245416581630707, 0.018544554710388184, 0.02007063291966915, 0.050960056483745575, 0.018994202837347984, 0.004448785912245512, 0.009272277355194092, 0.033927951008081436, -0.0018633122090250254, -0.0318295955657959, -0.0252075158059597, -0.01952560432255268, 0.036925602704286575, -0.01172490045428276, 0.009224588051438332, -0.0017253522528335452, 0.025016754865646362, -0.014865620993077755, -0.010028502903878689, 0.0074328104965388775, -0.013176036067306995, -0.0010244811419397593, -0.013148784637451172, -0.02007063291966915, 0.002648492343723774, 0.011765778064727783, 0.0072829280979931355, -0.02376319281756878, -0.03125732019543648, 0.020275017246603966, -0.04259388893842697, -0.00491205882281065, -0.023517930880188942, -0.007044478319585323, 0.02242787554860115, -0.00350861344486475, 0.003951448481529951, 0.043683942407369614, -0.027074232697486877, 0.012487939558923244, 0.0012859238777309656, -0.0467633455991745, -0.006734494119882584, 0.013864133507013321, -0.01279451698064804, 0.005113037768751383, 0.005995301064103842, -0.027333121746778488, -0.024267341941595078, 0.00016521141515113413, 0.0029482573736459017, -0.023722315207123756, 0.011649959720671177, -0.02181471884250641, -0.0048677753657102585, -0.0005416209460236132, 0.00277963955886662, 0.02456710860133171, 0.003580148331820965, -0.03218386322259903, 0.011649959720671177, -0.028177913278341293, 0.0058794827200472355, -0.03646232932806015, -0.03575379401445389, -0.01620093733072281, -0.00827760249376297, 0.011575018055737019, -0.036925602704286575, 0.019675487652420998, 0.03420046716928482, 0.007609944324940443, -0.02354518137872219, 0.006243969779461622, -0.006022552028298378, 0.02880469523370266, 0.002081323182210326, 0.0439019538462162, -0.015642285346984863, -0.012610570527613163, 0.013666560873389244, -0.015873922035098076, 0.0579364076256752, -0.012515190057456493, -0.00897932518273592, 0.018231164664030075, 0.02421283908188343, -0.007535003125667572, -0.10856945067644119, -0.009483476169407368, 0.005784102715551853, 0.016868596896529198, -0.001533741015009582, 0.02507125772535801, -0.02558903396129608, 0.021896474063396454, -0.016132809221744537, 0.015138134360313416, -0.0041456143371760845, -0.019852621480822563, -0.003917383961379528, -0.010553091764450073, 0.005784102715551853, 0.004768989514559507, -0.014034453779459, -0.013182848691940308, -0.01636444590985775, 0.0191440861672163, 0.0036482769064605236, -0.0014579481212422252, 0.0023844947572797537, -0.008577368222177029, -0.027196865528821945, -0.016541579738259315, -0.009224588051438332, 0.010512215085327625, 0.015655910596251488, 0.017468126490712166, -0.00912239495664835, 0.003077701199799776, 0.005746631883084774, -0.028532180935144424, 0.00600552000105381, 0.006155402399599552, -0.017754266038537025, -0.002159670926630497, 0.03174784407019615, -0.030630536377429962, -0.0029686959460377693, 9.506043716100976e-05, -0.0014111098134890199, -0.0017764485673978925, -0.006151996087282896, -0.011254814453423023, -0.019089583307504654, 0.028177913278341293, -0.0067310878075659275, -0.03166608884930611, -0.007167109753936529, -0.014225213788449764, -0.04695410653948784, 0.0011701055336743593, 0.016500702127814293, -0.021256066858768463, 0.01741362363100052, 0.0050312839448452, 0.0015482183080166578, -0.004612294025719166, 0.0006944840424694121, -0.0033246667589992285, -0.021160686388611794, 0.014375096186995506, 0.01201104000210762, -0.005395770538598299, -0.018776191398501396, -0.0025531125720590353, -0.0028068907558918, -0.014429599046707153, -0.0008524568402208388, 0.02915896289050579, -0.02459435909986496, 0.024539856240153313, -0.012344869785010815, -0.00111645448487252, 0.0076371957547962666, -0.0025343771558254957, -0.006809435319155455, 0.004932497628033161, -0.021365072578191757, -0.03390070050954819, -0.019511979073286057, -0.016868596896529198, 0.01786327175796032, 0.015478776767849922, -0.013952700421214104, 0.011588644236326218, 0.002910786774009466, -0.03531777113676071, 0.013182848691940308, 0.024171963334083557, 0.025793420150876045, 0.008904384449124336, -0.01487924624234438, 0.03196585550904274, 0.02131056971848011, -0.024744242429733276, 0.019634610041975975, 0.008911197073757648, -0.04409271106123924, -0.007419184781610966, -0.053930457681417465, 0.00030210695695132017, -0.010723412968218327, -0.02019326388835907, -0.004929091315716505, 0.008638683706521988, 0.025289269164204597, -0.0038731005042791367, 0.005821573548018932, -0.016963975504040718, -0.042103361338377, -0.01347580086439848, -0.009047454223036766, -0.00794377364218235, -0.031884100288152695, -0.02468973957002163, 0.017945025116205215, -0.01722286455333233, 0.01202466618269682, 0.012746826745569706, 0.015288016758859158, 0.009313154965639114, -0.002720027230679989, 0.021732965484261513, 0.00541620934382081, -0.015669535845518112, 0.004789427854120731, 0.038778696209192276, -0.01572403870522976, 0.019498353824019432, 0.023136410862207413, -0.00012018279085168615, 0.0017900741659104824, -0.006574392318725586, -0.03144807741045952, 0.012419810518622398, 0.003856068477034569, 0.012903522700071335, 0.0026808532420545816, 0.01710023358464241, 0.007316992152482271, -0.03142082691192627, -0.006744713522493839, -0.03817916661500931, -0.016037430614233017, 0.005096005741506815, -0.013264602981507778, 0.00417967839166522, 0.02271401509642601, -0.0057500386610627174, 0.03853343427181244, 0.021256066858768463, -0.0032480224035680294, -0.04044102877378464, 0.01624181494116783, 0.015846669673919678, -4.6904820010240655e-06, -0.013993577100336552, -0.009749176912009716, -0.016827719286084175, 0.03763413801789284, -0.0043465932831168175, 0.004895026795566082, 0.007902896963059902, 0.016800468787550926, -0.01126162800937891, -0.03324666991829872, 0.0034455948043614626, 0.020602034404873848, -0.008611432276666164, -0.014443224295973778, -0.0009418753907084465, -0.0036039934493601322, 0.01102317776530981, 0.014075331389904022, 0.0048473370261490345, -0.04155833646655083, 0.005007438827306032, -0.019389348104596138, 0.01277407817542553, 0.009340406395494938, 0.0008247796795330942, 0.002800077898427844, 0.0040706731379032135, 0.032783396542072296, -0.002021710854023695, -0.0031168751884251833, 0.006911627948284149, 0.016405323520302773, 0.016773216426372528, -0.01598292775452137, 0.01624181494116783, -0.02768738940358162, -0.004486256279051304, 0.001049177604727447, 0.012883083894848824, -0.006911627948284149, 0.007984650321304798, 0.0016887332312762737, 0.006536921951919794, 0.018421923741698265, -0.011779403313994408, 0.0016972492448985577, 0.007548628840595484, -0.02428096905350685, -0.006741307210177183, -0.01586029678583145, -0.013755127787590027, -0.0030197922606021166, 0.02459435909986496, -0.009136021137237549, 0.028096159920096397, 0.02133782021701336, 0.018203914165496826, -0.03575379401445389, 0.018926074728369713, -0.014538604766130447, -0.014306968078017235, -0.01814941130578518, 0.016214564442634583, -0.02169208787381649, 0.006761745549738407, 0.010123883374035358, 0.011772590689361095, 0.030439777299761772, 0.022087233141064644, 0.017331870272755623, -0.006414290517568588, -0.0019910531118512154, 0.03632607311010361, -0.020329520106315613, 0.020683787763118744, -0.007868831977248192, -0.01881706900894642, 0.0088703203946352, -0.00831166747957468, 0.01229717954993248, 0.030249018222093582, 0.0011232673423364758, 0.0840432196855545, 0.024526230990886688, 0.004653171170502901, -0.0005424725241027772, 0.0041660526767373085, -0.007753014098852873, 0.02440360002219677, 0.003924197051674128, -0.007262489292770624, -0.02191009931266308, 0.009674235247075558, 0.002503719413653016, -0.006833280436694622, -0.0364895798265934, 0.004755363799631596, 0.012842207215726376, -0.024267341941595078, -0.002456029411405325, -0.01076429057866335, 0.005000625737011433, -0.008400234393775463, 0.0012501564342528582, 0.014306968078017235, -0.015219888649880886, -0.024158338084816933, -0.02399482950568199, 0.008018715307116508, -0.006557360291481018, 0.0016240112017840147, -0.03676209598779678, 0.021964602172374725, -0.0010892030550166965, -0.005184572655707598, -0.05025152117013931, 0.00786201935261488, 0.013278229162096977, -0.021964602172374725, -0.014933749102056026, 0.017822394147515297, -0.018272042274475098, -0.0026876660995185375, 0.00505512859672308, -0.0040366086177527905, -0.04038652777671814, -0.013039778918027878, -0.012528816238045692, -0.02325904183089733, 0.001183731248602271, -0.030194515362381935], "c3556ce3-e8dc-44df-9263-115d43ae8b65": [-0.0033176594879478216, 0.006871358025819063, -0.02331540919840336, -0.027354300022125244, -0.00512729212641716, -0.019119160249829292, -0.0033996175043284893, -0.022292574867606163, -0.010261140763759613, 0.008576083928346634, -0.028482042253017426, 0.020312469452619553, 0.007068057078868151, 0.012634644284844398, 0.0022112266160547733, -0.008359715342521667, -0.0012359265238046646, 0.012936249375343323, -0.012090442702174187, 0.00036717180046252906, -0.013152618892490864, 0.007363106124103069, -0.005812461022287607, -0.020941905677318573, 0.011860961094498634, 0.01033326331526041, 0.02406286634504795, -0.009834959171712399, 0.016221126541495323, 0.02075831964612007, 0.007422115653753281, -0.0025652851909399033, -0.02500702254474163, -0.01704726181924343, -0.021348418667912483, -0.01036604680120945, 0.0054846289567649364, 0.0022964628878980875, 0.013703376054763794, -0.0060386648401618, 0.02318427711725235, 0.006041943095624447, -0.0026849438436329365, -0.004815851803869009, 0.006507464684545994, 0.011415109038352966, -0.03388471156358719, -0.029452424496412277, -1.4073723832552787e-05, -0.006995934061706066, 0.016063766553997993, 0.016221126541495323, -0.04138550907373428, 0.0007581114186905324, -0.004186414182186127, -0.012398605234920979, -0.012824786826968193, 0.012890352867543697, -0.010241471230983734, -0.038080960512161255, 0.014529513195157051, -0.0007786009227856994, -0.02050916850566864, -0.040283992886543274, -0.020364921540021896, 0.008182685822248459, -0.005065003875643015, 0.01304115541279316, -0.0025751201901584864, 0.004035611636936665, 0.0018309415318071842, 0.015539235435426235, 0.004255258943885565, 0.024810323491692543, 0.037949830293655396, -0.012398605234920979, -0.011946196667850018, 0.017388207837939262, -0.017440661787986755, 0.022449932992458344, -0.007186076603829861, -0.01859463006258011, -0.012274028733372688, 0.02714448794722557, 0.012188793160021305, 0.03315036743879318, 0.018319251015782356, 0.022659745067358017, 0.0047830683179199696, -0.024272678419947624, -0.014503286220133305, -0.010228357277810574, -0.003475019009783864, 0.024574285373091698, 0.00018747890135273337, 0.017663586884737015, -0.009448117576539516, 0.026606842875480652, -0.001013000844977796, -0.026318350806832314, -0.0052485899068415165, 0.03126205503940582, -0.02028624154627323, -0.006684493739157915, -0.016129333525896072, -0.020050203427672386, -0.011493789032101631, 0.006130457855761051, 0.006120623089373112, -0.0019866616930812597, -0.01594574749469757, 0.04524081200361252, 0.010851237922906876, -0.006576309446245432, -0.018515950068831444, -0.01673254370689392, 0.0056780497543513775, -0.010910248383879662, 0.015565462410449982, -0.017873398959636688, 0.019106047227978706, 0.016994809731841087, 0.03732039034366608, -0.01594574749469757, 0.01372960302978754, 0.012136339209973812, -0.02255483902990818, -0.011028267443180084, 0.021663136780261993, -0.018345477059483528, -0.005900975316762924, 0.012969032861292362, -0.006943481042981148, 0.016299806535243988, -0.0014973725192248821, 0.007323766127228737, 0.002394812647253275, -0.010752888396382332, -0.027537886053323746, -0.010090667754411697, 0.009612033143639565, 0.013139505870640278, 0.0005487087764777243, 0.00418313592672348, 0.005438732448965311, 0.04130682721734047, 0.0048322430811822414, 0.017322640866041183, -0.002747231861576438, 0.004029055126011372, -0.01160525158047676, -0.0010752888629212976, -0.006287817377597094, -0.011769168078899384, -0.004740450531244278, -0.002183360978960991, -0.006310765631496906, 0.00016627227887511253, 0.013847622089087963, -0.02151888981461525, -0.00221450487151742, 0.016221126541495323, -0.015198290348052979, -0.010608642362058163, -0.0020456714555621147, 0.020928792655467987, 0.001112989499233663, 0.003933983854949474, -0.011572469025850296, 0.00607144832611084, -0.0019801051821559668, -0.0018702814122661948, -0.009061275981366634, 0.014463946223258972, 0.0021440209820866585, -0.003658604808151722, 0.02601674571633339, -0.009415334090590477, -0.022738425061106682, -0.027196940034627914, 0.013821396045386791, -0.011919970624148846, 0.017165282741189003, 0.018476609140634537, -0.052295755594968796, -0.00825480930507183, -0.01458196621388197, 0.00027968164067715406, 0.010628312826156616, 0.006202580872923136, 0.014949138276278973, 0.03107847087085247, -0.04038889706134796, -0.01340177096426487, -0.5912514925003052, 0.010451283305883408, -0.0351698137819767, -0.019604351371526718, 0.0038651388604193926, 0.010379159823060036, 0.025557780638337135, -0.0031914443243294954, 0.005881305783987045, 0.024902116507291794, -0.01025458425283432, 0.01536876242607832, 0.02793128415942192, 0.019132273271679878, -0.014031208120286465, -0.00898259598761797, 0.03975946083664894, -0.00453719450160861, 0.006009160075336695, -0.01576216146349907, -0.02777392417192459, 0.04017908498644829, -0.0003288564330432564, -0.007992543280124664, 0.022541726008057594, 0.021938515827059746, -0.005527247209101915, 0.006713998969644308, 0.002368585905060172, 0.00807122327387333, -0.007317209616303444, 0.010143120773136616, -0.010982370935380459, 0.022135214880108833, 0.03878907859325409, 0.0013670593034476042, -0.007999099791049957, 0.01451639924198389, -0.009415334090590477, 0.0348026417195797, 0.009035049006342888, -0.037635110318660736, -0.015814613550901413, 0.001424429938197136, -0.0016670256154611707, -0.009323541074991226, 0.014319700188934803, 0.023013804107904434, -0.009854628704488277, -0.045319490134716034, 0.02208276093006134, 0.006936924532055855, -0.020718980580568314, -0.017598019912838936, 0.025269288569688797, -0.01410988811403513, 0.020338695496320724, -0.007304096128791571, 0.02201719582080841, -0.03661227598786354, 0.01056930236518383, 0.026842880994081497, -0.007343436125665903, -0.019866617396473885, -0.02610853873193264, 0.02745920605957508, -0.018961802124977112, -0.019328972324728966, -0.01372960302978754, -0.032573383301496506, 0.022725312039256096, 0.018817555159330368, 0.002066980581730604, -0.008405611850321293, 0.013782056048512459, 0.014385267160832882, 0.028114870190620422, 0.007704051211476326, -0.010405386798083782, 0.004950262606143951, 0.026528162881731987, -0.0209156796336174, 0.005494463723152876, 0.001762096886523068, 0.04665704444050789, 0.015355649404227734, -0.012601860798895359, -0.01387384906411171, 0.0026767479721456766, -0.0011547880712896585, -0.002529223682358861, 0.03370112553238869, -0.023800600320100784, -0.04366721957921982, -0.023079371079802513, 0.03894643858075142, -0.019355200231075287, -0.00662876246497035, -0.002478409791365266, -0.012916579842567444, -0.0398905947804451, 0.0038323558401316404, 0.0008949812618084252, -0.005209249909967184, 0.03878907859325409, 0.011847847141325474, 0.011146287433803082, 0.021505776792764664, 0.04222475737333298, -0.011887187138199806, -0.008051552809774876, -0.02032558247447014, 0.013355874456465244, 0.02759033814072609, -0.014555739238858223, -0.025151269510388374, 0.04489986598491669, 0.010588972829282284, -0.0025095536839216948, -0.02608231082558632, 0.004025776404887438, 0.027642792090773582, 0.018922461196780205, -0.009375994093716145, 0.011133173480629921, -0.0006855786195956171, 0.016614524647593498, 0.0036553265526890755, -0.0310522448271513, 0.007415559142827988, 0.023774374276399612, -0.0037471193354576826, 0.015408102422952652, -0.012529738247394562, -0.004979767836630344, -0.020456714555621147, 0.0059140888042747974, -0.009461230598390102, 0.012687097303569317, -0.023066258057951927, -0.0024079259019345045, -0.018411044031381607, -0.007756504230201244, -0.010470952838659286, -0.02224012091755867, -0.01994529739022255, -0.03280942514538765, -0.00024300544464495033, -0.018476609140634537, -0.013716490007936954, -0.0042650941759347916, -0.006333713885396719, -0.017125941812992096, 0.02570202574133873, -0.015394989401102066, -0.030081862583756447, -0.025518441572785378, 0.0018079932779073715, -7.642582932021469e-05, -0.0008966204477474093, 0.015906406566500664, 0.02900657244026661, -0.02343343012034893, 0.019106047227978706, -0.01727018877863884, -0.016522731631994247, -0.012070773169398308, 0.004828964825719595, -0.029059026390314102, -0.03252093121409416, 0.004717502277344465, -0.003001301782205701, -0.013900076039135456, -0.00998576171696186, 0.009992318227887154, -0.0001488561974838376, -0.011506902053952217, 0.014555739238858223, -0.008648207411170006, -0.01536876242607832, -0.0005273997085168958, -0.003442235756665468, 0.013355874456465244, -0.020378034561872482, 0.008661320433020592, 0.004038889892399311, 0.0004765857302118093, 0.00836627185344696, -0.014096775092184544, 0.014372153207659721, 0.009362881071865559, -0.006897584535181522, -0.021400870755314827, -0.019394539296627045, -0.013532903976738453, 0.0318390429019928, 0.018070098012685776, -0.002948848530650139, 0.025020135566592216, 0.009408777579665184, 0.03485509380698204, -0.006068169604986906, 0.000353034061845392, -0.027380526065826416, -0.014227907173335552, -0.00419297069311142, 0.024325132369995117, -0.005189579911530018, 0.038080960512161255, 0.013028042390942574, 0.021125491708517075, -0.0008794092573225498, -0.01567036844789982, -0.012562520802021027, 0.010667651891708374, 0.04059871286153793, 0.007579475175589323, -0.008182685822248459, 0.009284201078116894, 0.000822038680780679, -0.010261140763759613, 0.01552612241357565, -0.0027193662244826555, -0.004425731487572193, -0.0004159368108958006, -0.012201906181871891, 0.019840391352772713, 0.023420315235853195, -0.02064030058681965, -0.04807328060269356, 0.0011220049345865846, 0.009474343620240688, -0.00860231090337038, 0.007376219145953655, 0.0351698137819767, 0.022515499964356422, 0.050223857164382935, -0.00019936282478738576, 0.02821977622807026, -0.013677150011062622, -0.01884378120303154, 0.035117361694574356, 0.001862085540778935, -0.024705417454242706, 0.015539235435426235, 0.01969614438712597, 0.027196940034627914, 0.021400870755314827, -0.00595342880114913, 0.0014318061294034123, 0.03490754961967468, 0.017007922753691673, -0.006343548651784658, -0.013218184933066368, 8.569732744945213e-05, -0.029740916565060616, 0.013316534459590912, 0.004209362436085939, 0.025177495554089546, -0.00896292645484209, 0.00992675218731165, -0.0025931508280336857, -0.027196940034627914, 0.004750285297632217, 0.008831793442368507, -0.018489724025130272, 0.005081395618617535, -0.03543207794427872, 0.008805566467344761, 0.004651935771107674, -0.0008298246539197862, -0.04086097702383995, -0.02444315142929554, -0.0288754403591156, 0.022790879011154175, 0.02001086436212063, -0.0007376219145953655, 0.015263856388628483, 0.026134764775633812, -0.016968583688139915, 0.011651148088276386, -0.02966223657131195, 0.003943818621337414, 0.048047054558992386, -0.0351698137819767, -0.023066258057951927, -0.01751933991909027, 0.009408777579665184, 0.0009761197143234313, -0.008818680420517921, -0.014962251298129559, 0.00898259598761797, -0.0011859321966767311, 0.0225810669362545, -0.0051305703818798065, 0.0100185452029109, 0.033989619463682175, -0.006153406109660864, -0.0054780724458396435, -0.01893557421863079, 0.003125877818092704, -0.0016063766088336706, -0.006550082936882973, 0.013283751904964447, 0.044873639941215515, -0.018253684043884277, 0.01201832015067339, -0.018004531040787697, 0.016837449744343758, -0.008064666762948036, 0.014699985273182392, -0.03283565118908882, -0.01947321929037571, -0.0030488374177366495, 0.020482942461967468, -0.015027817338705063, 0.03362244740128517, 0.014004982076585293, 0.020614074543118477, -0.011192183941602707, -0.01349356397986412, -0.009920195676386356, -0.020784547552466393, 0.030029408633708954, 0.027642792090773582, -0.007304096128791571, -0.0032176708336919546, 0.028009964153170586, -0.029111478477716446, -0.02422022633254528, 0.0022308966144919395, -0.023630129173398018, 0.021663136780261993, -0.012051103636622429, -0.017729153856635094, -0.011198740452528, -0.011369212530553341, -0.004261815454810858, 0.003743841079995036, 0.01648339070379734, -0.02824600227177143, -0.030055634677410126, 0.03139318898320198, -0.03029167465865612, 0.018450383096933365, 0.00871377345174551, 0.030317900702357292, 0.03821209445595741, -0.0005876388167962432, 0.011847847141325474, 0.006720555480569601, -0.004156909417361021, 0.03561566397547722, -0.022227007895708084, 0.026816654950380325, -0.0035536985378712416, 0.0073827761225402355, 0.03726793825626373, -0.02237125299870968, 0.026816654950380325, 0.006127179600298405, 0.010746331885457039, 0.022856444120407104, -0.004468349739909172, 0.018253684043884277, -0.013650923036038876, 0.015172063373029232, -0.0076188151724636555, 0.03236357122659683, -0.005546916741877794, 0.03679586201906204, 0.008851462975144386, 0.009356324560940266, -0.016089992597699165, 0.03679586201906204, -0.007048387546092272, -0.037635110318660736, -0.007553248666226864, 0.024967683479189873, -7.714296225458384e-05, -0.028613174334168434, -0.013316534459590912, -0.019643692299723625, -0.027800152078270912, -0.005992768332362175, -0.023197390139102936, 0.008615423925220966, -0.01349356397986412, 0.010851237922906876, -0.018227458000183105, -0.006936924532055855, 0.03170790895819664, -0.018568402156233788, -0.03472396358847618, -0.003273402340710163, -0.007330323103815317, -0.0176766999065876, -0.009474343620240688, 0.02264663204550743, -0.001070371363312006, 0.025557780638337135, 0.011808507144451141, -0.0023538335226476192, 0.007638484705239534, 8.646568312542513e-05, -0.03750397637486458, -0.005310878157615662, -0.01648339070379734, -0.005045333877205849, 0.019263407215476036, 0.020378034561872482, 0.021846722811460495, 0.019512558355927467, 0.003465184010565281, 0.00851051788777113, -0.020155109465122223, 0.006904141511768103, -0.0009589085238985717, -0.010687322355806828, 0.02588561177253723, 0.009684156626462936, -0.010425056330859661, 0.01266087032854557, -0.017152167856693268, -0.015447442419826984, -0.012372378259897232, 0.03718926012516022, 0.013211628422141075, -0.006045221351087093, -0.05628219246864319, 0.02305314503610134, 0.024718530476093292, -0.014083661139011383, -0.0013309977948665619, 0.03579925000667572, -0.028272228315472603, -0.010844681411981583, -0.0036815530620515347, -0.002227618359029293, 0.050695937126874924, -0.0038487473502755165, 0.04332627356052399, -0.008202356286346912, -0.012293699197471142, 0.005065003875643015, -0.004704388789832592, -0.0006679576472379267, 0.007749947719275951, -0.005868192296475172, 0.03058016672730446, -0.011211853474378586, -0.03283565118908882, -0.014936024323105812, 0.00349141051992774, 0.022908898070454597, 0.012562520802021027, -0.004370000213384628, -0.02997695468366146, -0.021807381883263588, 0.02349899522960186, -0.039339836686849594, -0.010523405857384205, 0.001117087434977293, -0.02001086436212063, -0.016365371644496918, -0.0006118164164945483, 0.015578575432300568, -0.011061050929129124, -0.018817555159330368, -0.03134073689579964, -0.01538187637925148, 0.01742754690349102, 0.008930142968893051, 0.010667651891708374, 0.0029717967845499516, -0.009428447112441063, -0.002865251386538148, -0.019446993246674538, 0.026279011741280556, 0.011742941103875637, 0.015998199582099915, 0.027354300022125244, 0.031917721033096313, 0.02871808037161827, 0.03294055536389351, 0.005714111030101776, 0.05596747249364853, -0.005327269434928894, 0.011572469025850296, 0.0075073521584272385, 0.005930480547249317, 0.007933533750474453, 0.006277982145547867, -0.017781605944037437, 0.011664261110126972, 0.005032220855355263, 0.0013965641846880317, 0.034619055688381195, -0.02856072224676609, 0.02028624154627323, 0.008569527417421341, 0.005028942599892616, -0.03204885497689247, -0.04054625704884529, -0.025505326688289642, 0.004786346573382616, 0.012228132225573063, 0.004963376093655825, 0.005222363397479057, 0.010864351876080036, 0.008149903267621994, -0.006281260401010513, -0.006858245003968477, -0.010359490290284157, -0.007146737072616816, -0.015434329397976398, 0.015080270357429981, 0.01994529739022255, 0.020050203427672386, -0.008930142968893051, 0.01569659449160099, -0.033596221357584, 0.01852906309068203, 0.006428785156458616, -0.012352708727121353, 0.009225191548466682, -0.007205746602267027, 0.00816301628947258, -0.008930142968893051, 0.00768438121303916, -0.023380976170301437, -0.0230924841016531, 0.03941851481795311, -0.02082388661801815, -0.028796760365366936, -0.030842432752251625, -0.03632378205657005, -0.018817555159330368, -0.011677375063300133, 0.04411306977272034, -0.005445288959890604, 0.005232198163866997, -0.016129333525896072, -0.0010441448539495468, 0.018070098012685776, -0.004494576249271631, 0.019840391352772713, 0.007782731205224991, 0.029059026390314102, 0.005992768332362175, 0.001853889785706997, -0.004550307989120483, -0.012680540792644024, 0.024325132369995117, 0.013014929369091988, -0.0036225432995706797, 0.017086602747440338, -0.00418313592672348, -0.012372378259897232, 0.004002828150987625, -0.007651598192751408, -0.025111928582191467, -0.030239220708608627, 0.016339145600795746, 0.010503736324608326, -0.014568853192031384, -0.02419400028884411, -0.03370112553238869, 0.0038061290979385376, 0.003314381232485175, -0.0193420872092247, -0.008012213744223118, -0.00116790144238621, -0.001962074311450124, -0.035064905881881714, 0.031629227101802826, 0.018319251015782356, 0.029216384515166283, 0.004914201330393553, 0.0024095650296658278, -0.013454223982989788, -0.011356099508702755, -0.03537962585687637, 0.009428447112441063, -0.011349542997777462, 0.009769393131136894, -0.03189149498939514, 0.0021981133613735437, 0.041254375129938126, -0.0003145138034597039, -0.015683481469750404, -0.01994529739022255, 0.011487232521176338, 0.033386409282684326, -0.0008236778085120022, -0.005756729282438755, -0.008340045809745789, -0.017506226897239685, -0.020063316449522972, 0.0037733460776507854, -0.025623347610235214, 0.025518441572785378, -0.011047936975955963, -0.003907756879925728, 0.017912738025188446, -0.011933083645999432, -0.0011383965611457825, -0.009703826159238815, -0.01650961861014366, -0.008943255990743637, -0.024954570457339287, -0.014634419232606888, 0.02498079650104046, -0.026213444769382477, -0.03204885497689247, -0.012005207128822803, -0.010149678215384483, 0.0193420872092247, 0.010825011879205704, -0.014765552245080471, -0.0017080046236515045, 0.03994304686784744, -0.005733781028538942, 0.0144377201795578, 0.0021981133613735437, -0.012555964291095734, -0.022672859951853752, 0.02871808037161827, 0.014936024323105812, 0.004238867200911045, -0.005409227684140205, 0.010910248383879662, -0.030317900702357292, -0.026056084781885147, -0.027852604165673256, 0.005258424673229456, 0.00998576171696186, -4.208030804875307e-05, 0.01094958744943142, 0.01866019517183304, 0.01877821609377861, 0.015906406566500664, -0.02233191393315792, 0.04230343922972679, -0.0265150498598814, -0.009113729000091553, 0.024679191410541534, -0.0169816967099905, 0.020941905677318573, 0.010405386798083782, -0.013250968419015408, 0.0019997749477624893, -0.023997299373149872, -0.03543207794427872, -0.036664728075265884, -0.01839793100953102, -0.007776174228638411, -0.0169816967099905, 0.009834959171712399, -0.01567036844789982, -0.02745920605957508, 0.010077554732561111, -0.03532717376947403, 0.00502566434442997, -0.011139729991555214, -0.012057660147547722, 0.000960547651629895, 0.03126205503940582, -0.02075831964612007, -0.0023456376511603594, 0.0007818792364560068, 0.010195574723184109, -0.005622318480163813, -0.03577302396297455, -0.005940315313637257, 0.029295064508914948, 0.036848314106464386, -0.015211403369903564, -0.0185552891343832, 0.01576216146349907, -0.015329423360526562, 0.0036946663167327642, 0.013703376054763794, -0.0010080833453685045, 0.00967104360461235, 0.020456714555621147, 0.01978793740272522, 0.029767142608761787, 0.031917721033096313, -0.004022498149424791, -0.02648882381618023, -0.006350105162709951, -0.003970045130699873, 0.03490754961967468, -0.00031000611488707364, 0.01789962500333786, -0.020968133583664894, -0.021794268861413002, -0.013585356995463371, 0.03073752485215664, 0.01296247635036707, 0.024482492357492447, -0.003642213298007846, -0.0022948237601667643, -0.02412843331694603, 0.000999067910015583, 0.00849084835499525, 0.004481463227421045, -0.02626589685678482, -0.015027817338705063, -0.020784547552466393, -0.0001125897906604223, 0.02028624154627323, -0.005933758802711964, -0.006143571343272924, -0.014083661139011383, -0.007015604060143232, 0.0003345934965182096, -0.02352522313594818, -0.03687454015016556, 0.011192183941602707, -0.027092033997178078, 0.015932634472846985, -0.006199302617460489, -0.002421039156615734, 0.02871808037161827, -0.03136696293950081, -0.015158950351178646, -0.00627470389008522, 0.005278094671666622, -0.04114946722984314, 0.0015957221621647477, 0.016312919557094574, 0.015237630344927311, 0.005664936266839504, -0.012097000144422054, 0.018883122131228447, -0.013224741443991661, 0.02730184607207775, -0.008458064869046211, -0.007113953586667776, -0.028114870190620422, 0.031314510852098465, -0.03301923722028732, 0.003043919801712036, 0.018633969128131866, 0.006487794686108828, 0.015276969410479069, -0.004740450531244278, -0.02088945358991623, -0.004150352906435728, 0.003904478857293725, 0.014844231307506561, 0.007874524220824242, 0.004609317518770695, 0.011631478555500507, -0.00965792965143919, -0.009356324560940266, -0.03042280673980713, -0.01632603257894516, 0.19134896993637085, 0.009494014084339142, 0.023171164095401764, 0.033045463263988495, -0.00981528963893652, -0.0010293923551216722, 0.01225435920059681, 0.010877464897930622, -0.027695244178175926, 0.003194722579792142, -0.015408102422952652, 0.020679641515016556, -0.01546055544167757, 0.013664036989212036, 0.0007068876875564456, 0.006618927698582411, -0.0029373744037002325, -0.05885239690542221, -0.004828964825719595, -0.0054780724458396435, 0.002244009869173169, 0.006838575005531311, -0.028770534321665764, -0.008759669959545135, 0.031471870839595795, 0.002750510349869728, -0.004458514973521233, -0.018424157053232193, 0.01783405989408493, 0.0009351407061330974, -0.022948237136006355, -0.014647532254457474, 0.014621306210756302, -0.011520015075802803, -0.029898276552557945, 0.006956594530493021, 0.019289633259177208, -0.007985986769199371, 0.0019932184368371964, 0.0008417085628025234, 0.03073752485215664, -0.02995072863996029, -0.03412075340747833, 0.008943255990743637, -0.009939865209162235, 0.003127516945824027, 0.010320150293409824, -0.024836549535393715, -0.02547910064458847, 0.015880180522799492, -0.010825011879205704, -0.006707441993057728, 0.025780705735087395, 0.0047437287867069244, -0.005897697061300278, -0.00039934032247401774, -0.013224741443991661, 0.01009722426533699, 0.04175268113613129, 0.009264531545341015, -0.00674678198993206, 0.05570520833134651, -0.006727111991494894, 0.01682433672249317, 0.007913864217698574, 0.03787114843726158, -0.04052003100514412, -0.0022915455047041178, 0.02163691073656082, -0.024167772382497787, -0.017480000853538513, -0.03204885497689247, 0.009395664557814598, 0.00921863503754139, -0.0239710733294487, -0.011788837611675262, 0.024731643497943878, 0.01410988811403513, 0.006995934061706066, 0.016181785613298416, -0.002629212336614728, 0.013106722384691238, -0.023472769185900688, 0.00559281324967742, -0.021151719614863396, 0.0007031995919533074, 0.023997299373149872, 0.0022013916168361902, 0.004989602603018284, -0.007494238670915365, -0.014096775092184544, -0.010123451240360737, 0.003125877818092704, 0.001003165845759213, 0.02950487658381462, 0.04010040685534477, 0.02372192218899727, 0.011959310621023178, -0.010536519810557365, -0.0030455589294433594, -0.016352258622646332, 0.04886007681488991, 0.018476609140634537, 0.003802850842475891, -0.01481800526380539, 0.004668327048420906, -0.021623797714710236, 0.027170713990926743, -0.016798110678792, -0.054656147956848145, -0.006248477380722761, -0.006618927698582411, 0.009264531545341015, -0.005028942599892616, 0.004025776404887438, -0.004678162280470133, -0.01567036844789982, -0.020705867558717728, 0.024875890463590622, 0.013546016998589039, 0.0007105757831595838, -0.010287366807460785, 0.008208912797272205, 0.004560142755508423, 0.008471177890896797, -0.02979336865246296, -0.047732334583997726, 0.006917254533618689, 0.007258199620991945, -0.01922406628727913, 0.02437758632004261, -0.017598019912838936, -0.03915625065565109, -0.016299806535243988, 0.010700435377657413, 0.0024472656659781933, -0.016181785613298416, -0.03771378844976425, -0.03781869634985924, -0.01327719446271658, -0.0010490623535588384, 0.026685522869229317, 0.004786346573382616, 0.008136789314448833, 0.0412806011736393, -0.038893986493349075, 0.0008613785030320287, -0.021912289783358574, -0.011198740452528, -0.014031208120286465, -0.011926527135074139, -0.004927314352244139, 0.002258762251585722, -0.016155559569597244, -0.004999437369406223, -0.025492213666439056, -0.007953203283250332, -0.04004795476794243, 0.03671718016266823, 0.012510067783296108, -0.02466607838869095, -0.018974915146827698, -0.005274816416203976, -0.001550645218230784, -0.01143477950245142, -0.030711298808455467, -0.16071633994579315, 0.008818680420517921, 0.02208276093006134, -0.00031492358539253473, 0.004137239418923855, -0.002193195978179574, 0.038421906530857086, 0.032547157257795334, -0.038395680487155914, 0.00989396870136261, -0.008077779784798622, -0.003438957268372178, -0.01774226687848568, -0.0036454915534704924, -0.01296247635036707, -0.013323090970516205, 0.010084111243486404, -0.01902736723423004, 0.016352258622646332, 0.021912289783358574, 0.026633068919181824, -0.011028267443180084, 0.04594893008470535, 0.01094958744943142, 0.012477285228669643, -0.0023554726503789425, -0.004333938471972942, 0.00048232279368676245, -0.016588298603892326, -0.0286918543279171, -0.0056419880129396915, 0.0066484324634075165, -0.00014506564184557647, 0.005015829112380743, 0.006146849598735571, 0.028665628284215927, 0.03089488483965397, -0.014660646207630634, 0.0012211741413921118, 0.013900076039135456, 0.038421906530857086, 0.04935838282108307, 0.01214289665222168, 0.024430038407444954, 0.0021276294719427824, 0.04403439164161682, -0.001226911204867065, -0.025741366669535637, -0.028980346396565437, -0.020141996443271637, 0.021191058680415154, -0.02044360153377056, 0.00571083277463913, 0.006268147379159927, 0.025374194607138634, 0.011559355072677135, 0.00792697723954916, 0.004258537199348211, 0.016470277681946754, 0.0019489610567688942, -0.014949138276278973, -0.0030111365485936403, -0.02516438253223896, -0.0030635898001492023, -0.02516438253223896, -0.01664075069129467, -0.011283976025879383, 0.03490754961967468, -0.02806241624057293, 0.004094621166586876, -0.030842432752251625, -0.00232760701328516, 0.019604351371526718, 0.026370802894234657, 0.006910698022693396, 0.03464528173208237, -0.01245761476457119, 0.03548453375697136, 0.012116669677197933, -0.040913429111242294, 0.01039883028715849, 0.029268838465213776, -0.01552612241357565, 0.01083812490105629, 0.006786121986806393, -0.019735485315322876, -0.0019358478020876646, -0.0048256865702569485, -0.009395664557814598, -0.01363781001418829, 0.023040030151605606, -0.03073752485215664, 0.015683481469750404, -0.023826828226447105, 0.0021276294719427824, 0.012765777297317982, -0.003796294331550598, -0.018175004050135612, 0.027065807953476906, -0.031760361045598984, -0.009494014084339142, -0.02525617554783821, -0.026685522869229317, -0.009913639165461063, -0.006120623089373112, 0.010267697274684906, -0.02790505811572075, 0.008169572800397873, 0.02561023272573948, 0.006051778327673674, -0.0035471420269459486, -0.00803843978792429, 0.007953203283250332, 0.01529008336365223, 0.013664036989212036, 0.020876340568065643, -0.012057660147547722, -0.02075831964612007, 0.020155109465122223, -0.023984186351299286, 0.05221707746386528, 0.00780895771458745, 0.006851688027381897, 0.017217734828591347, 0.001180195133201778, 0.013834509067237377, -0.10432924330234528, -0.041569095104932785, 0.0047437287867069244, 0.002303019631654024, -0.0040487246587872505, 0.03642868995666504, -0.006664824206382036, 0.03558943793177605, 0.00013502579531632364, 0.0169816967099905, -0.004022498149424791, 0.0029357352759689093, -0.01632603257894516, 0.007376219145953655, 0.025361081585288048, 0.0051371268928050995, -0.00015889605856500566, 0.01278544683009386, -0.041228149086236954, 0.007664711680263281, 0.004674884025007486, -0.002443987410515547, 0.007848297245800495, -0.011520015075802803, -0.024482492357492447, 0.005527247209101915, -0.024233339354395866, 0.02623967081308365, 0.015394989401102066, 0.011251193471252918, 0.004904366098344326, 0.002370225265622139, -0.012116669677197933, -0.010615198872983456, -0.006199302617460489, 0.025190608575940132, -0.015263856388628483, 0.010516849346458912, 0.05297764763236046, -0.015971973538398743, -0.013532903976738453, 0.0071532935835421085, -0.018017645925283432, -0.0018833946669474244, 0.001966991927474737, -0.007330323103815317, -0.004294598940759897, 0.03582547605037689, -0.02806241624057293, -0.0059140888042747974, 0.0056714932434260845, 2.712297282414511e-05, -0.016666976734995842, 0.0005101885180920362, 0.010418499819934368, -0.03204885497689247, 0.007579475175589323, -0.0015129445819184184, -0.019171614199876785, -0.02324984408915043, -0.014083661139011383, 0.0017489835154265165, -0.0239710733294487, -0.0024636571761220694, 0.009631703607738018, 0.011854403652250767, -0.01104138046503067, 0.02066652663052082, 0.016470277681946754, -0.015644142404198647, 0.011336429975926876, 0.0239710733294487, 0.002107959473505616, 0.017375094816088676, -0.011716715060174465, 0.0012121587060391903, -0.001357224304229021, -0.010352933779358864, -0.0037471193354576826, -0.013270637951791286, -0.024246452376246452, -0.007304096128791571, -0.020745206624269485, -0.03456660360097885, -0.006704163737595081, 0.019171614199876785, -0.009271088056266308, 0.005533803720027208, 0.023236729204654694, -0.01902736723423004, -0.0073893326334655285, 0.012097000144422054, 0.04652591422200203, 0.004632265772670507, -0.003937262110412121, 0.04872894287109375, 0.012064216658473015, -0.008117119781672955, 0.01780783198773861, 0.03545830771327019, -0.056072380393743515, -0.0013670593034476042, -0.042198531329631805, 0.006130457855761051, -0.012234688736498356, -0.02450871840119362, -0.007087727077305317, -0.009605476632714272, 0.043457407504320145, -0.018266797065734863, 0.008464621379971504, -0.005573143716901541, -0.02821977622807026, 0.0021981133613735437, -0.011224966496229172, 0.0030750639270991087, -0.003037363290786743, -0.03642868995666504, 0.02237125299870968, -0.009212078526616096, 0.040913429111242294, 0.03876285254955292, 0.011106947436928749, -0.011801950633525848, 0.009585807099938393, 0.017375094816088676, -0.012162566184997559, -0.012575634755194187, 0.03128828480839729, 0.03755643218755722, 0.004619152285158634, -0.003707779571413994, 0.032547157257795334, -0.0008671155665069818, 0.013441110961139202, 0.0132575249299407, 0.02185983583331108, 0.021912289783358574, 0.009244862012565136, 0.01201832015067339, 0.013677150011062622, 0.0011777363251894712, 0.00618946785107255, -0.012333039194345474, 0.015027817338705063, -0.02158445678651333, -0.043431177735328674, -0.005884584039449692, 0.013703376054763794, 0.025675799697637558, 0.004074951633810997, 0.004737171810120344, 0.03372735157608986, 0.006350105162709951, 0.02293512411415577, -0.018896235153079033, 0.02919015847146511, -0.007231973111629486, 0.010392273776233196, -0.03262583911418915, -0.03246847912669182, -0.01563102751970291, 0.03286187723278999, -0.02098124660551548, 0.004163465928286314, -0.0012752664042636752, 0.004550307989120483, -0.032547157257795334, -0.03231111913919449, -0.007671268191188574, 0.0031750525813549757, 0.025518441572785378, -0.0050125508569180965, -0.01490979827940464, 0.017847172915935516, -0.011579025536775589, 0.014083661139011383, -0.01585395447909832, -0.035720571875572205, -0.013690263032913208, -0.03058016672730446, -0.007559805177152157, 0.03503867983818054, -0.011644591577351093, -0.03126205503940582, -0.012746106833219528, 0.03847435861825943, -0.01025458425283432, -0.019683031365275383, -0.0005581339355558157, 0.02331540919840336, 0.011159400455653667, -0.020850112661719322, 0.026633068919181824, -0.01016279123723507, -0.001812910777516663, 0.00698282103985548, 0.026593729853630066, -0.017125941812992096, -0.0061140661127865314, 0.011126616969704628, 0.010916804894804955, 0.007323766127228737, 0.0019522394286468625, -0.020522281527519226, 0.0020046925637871027, -0.035877931863069534, -0.009244862012565136, -0.009795619174838066, 0.003135712817311287, -0.0353533998131752, 0.03252093121409416, -0.0004741269804071635, -0.008104006759822369, -0.0022292574867606163, 0.017007922753691673, -0.013100165873765945, 0.001027753227390349, 0.00662876246497035, -0.01467375922948122, -0.010320150293409824, 0.015263856388628483, -0.0016596493078395724, 0.005376444198191166, 0.005537081975489855, 0.0003612298460211605, 0.02595117874443531, 0.00827447883784771, -0.004376556724309921, -0.02435135841369629, -0.004324103705585003, 0.03944474458694458, -0.0010769279906526208, -0.0040421681478619576, -0.025085702538490295, -0.017571793869137764, 0.006248477380722761, -0.011690488085150719, 0.03199639916419983, 0.0070418305695056915, -0.002014527563005686, 0.08345291018486023, 0.013572243973612785, 0.006281260401010513, 0.017152167856693268, -0.009848072193562984, 0.023603901267051697, 0.027957510203123093, -0.008359715342521667, -0.011913414113223553, -0.02264663204550743, 0.0035864817909896374, -0.0016137529164552689, 0.0063009303994476795, -0.040441352874040604, -0.005530525464564562, -0.0003643032687250525, -0.006779565010219812, -0.003396339248865843, -0.02010265737771988, -0.004510967992246151, 0.00016852612316142768, 0.00016371108358725905, 0.016221126541495323, -0.025990517809987068, -0.013467337004840374, -0.006786121986806393, 0.0054485672153532505, 0.0022358139976859093, 0.005773121025413275, -0.05643955245614052, 0.03136696293950081, 0.012024876661598682, -0.022672859951853752, -0.04621119424700737, -0.0010097224730998278, 0.014962251298129559, -0.015932634472846985, -0.020535394549369812, 0.01387384906411171, -0.006264869123697281, -0.019446993246674538, 0.007920420728623867, -0.028796760365366936, -0.06147504970431328, -0.034278109669685364, -0.009244862012565136, -0.015408102422952652, -0.011506902053952217, -0.028298456221818924], "b7618784-7da4-4ea7-a537-e13e4e6958a4": [-0.005121275316923857, 0.01634189486503601, -0.0015859652776271105, -0.023826835677027702, -0.01621963642537594, -0.0224955752491951, 0.005331831518560648, -0.02200654149055481, -0.01654565893113613, 0.002085187705233693, -0.009875775314867496, 0.03116234950721264, 0.022359732538461685, 0.017808998003602028, 0.0017557687824591994, -0.008327166549861431, 0.006017838139086962, 0.01615171507000923, -0.013373727910220623, 0.016477737575769424, -0.0026115786749869585, 0.015676263719797134, -0.006398198194801807, -0.02570146694779396, 0.025932399556040764, 0.012422828003764153, 0.028798682615160942, -0.01169606950134039, 0.020675281062722206, 0.006102739833295345, 0.019194593653082848, 0.0023449871223419905, -0.03385203704237938, -0.023826835677027702, -0.026136163622140884, -0.025266770273447037, 0.009013173170387745, 0.0017150159692391753, 0.03795449063181877, -0.003922461997717619, 0.020892629399895668, 0.0076819127425551414, -0.0019238742534071207, 0.015757769346237183, -0.0025844101328402758, 0.011628147214651108, -0.021585429087281227, -0.035998355597257614, -0.009400324895977974, -0.01333976723253727, 0.006493288092315197, 0.018270863220095634, -0.03186873346567154, 0.004873361904174089, -0.013563907705247402, -0.011417591013014317, -0.017102614045143127, 0.027154985815286636, -0.03295547515153885, -0.02847266010940075, 0.02409852109849453, -0.00400736415758729, -0.02680179290473461, -0.0360255241394043, -0.026665950194001198, 0.02769835665822029, -0.0033756946213543415, -0.000481817580293864, 0.003803599625825882, 0.005919352173805237, 0.021857114508748055, 0.017591647803783417, -0.02101488783955574, 0.011879457160830498, 0.04273615777492523, -0.02479131892323494, -0.010052370838820934, 0.02022700011730194, -0.014209161512553692, 0.018868571147322655, -0.0038307681679725647, -0.020172663033008575, -0.018895739689469337, 0.03534630686044693, 0.02560637705028057, 0.027032725512981415, 0.024533217772841454, 0.018406705930829048, -0.006843083538115025, -0.011818327941000462, 0.006377821788191795, 0.008327166549861431, -0.0005259665194898844, 0.038878221064805984, -0.008558099158108234, 0.013108834624290466, -0.0224955752491951, 0.02162618190050125, 0.0022872539702802896, -0.020783955231308937, -0.0065680015832185745, 0.023935509845614433, -0.024940745905041695, -0.003396071260794997, -0.005943124648183584, -0.016301142051815987, 0.0011045720893889666, -0.004377535544335842, -0.0011156094260513783, 0.005705399438738823, -0.010779130272567272, 0.02560637705028057, 0.014222745783627033, 0.003233059775084257, 0.0004372441617306322, -0.01230056956410408, -0.012633385136723518, -0.0024417750537395477, 0.0020716034341603518, -0.018053514882922173, 0.005219761282205582, 0.010541404597461224, 0.02996693179011345, -0.007410227321088314, 0.011132321320474148, 0.013774464838206768, -0.02180277742445469, -0.015418162569403648, 0.016396231949329376, -0.006384613923728466, 0.0028272292111068964, 0.004717142786830664, -0.009420701302587986, 0.014100487343966961, 0.0030785384587943554, -5.486777445184998e-05, 0.004414892289787531, -0.01285073347389698, -0.020376427099108696, -0.014725364744663239, -0.0010519330389797688, 0.002361967461183667, 0.002044434892013669, 0.0076819127425551414, -0.002874774159863591, 0.03746545687317848, 0.0012616404565051198, 0.006856667809188366, 0.006989114452153444, -0.010718000121414661, -0.02809230051934719, -0.028635671362280846, -0.01612454652786255, 0.006615546531975269, 0.004554131533950567, -0.002496112370863557, -0.012640177272260189, 0.005253721959888935, 0.018990829586982727, -0.03243927285075188, 0.00125060323625803, 0.009216937236487865, -0.031053675338625908, -0.021884283050894737, -0.00525711802765727, 0.021965788677334785, -0.004574507940560579, -0.00046568625839427114, -0.010072747245430946, 0.0015290810260921717, 0.002378947800025344, 0.0018389725591987371, -0.012585839256644249, 0.017496557906270027, -8.203634206438437e-05, 0.011003270745277405, 0.022264642640948296, -0.008157363161444664, -0.0074441879987716675, -0.026149747893214226, 0.007899261079728603, -0.010344432666897774, 0.02578297257423401, 0.028037963435053825, -0.04778951406478882, -0.006432158872485161, -0.0032924909610301256, 0.00378322321921587, 0.022957440465688705, 0.0038647290784865618, 0.01645056903362274, 0.020838292315602303, -0.03920424357056618, -0.02470981329679489, -0.5759736895561218, -0.0034249378368258476, -0.026652365922927856, -0.005583140999078751, 0.007838131859898567, 0.020566606894135475, 0.02291668765246868, -0.013366935774683952, -0.00785850826650858, 0.024343037977814674, -0.013387312181293964, 0.026122579351067543, 0.004228108562529087, 0.01154664158821106, 0.016953187063336372, -0.013122418895363808, 0.04730048030614853, -0.0015205908566713333, 0.0044013080187141895, -0.03230343014001846, -0.024641891941428185, 0.019045166671276093, 0.002742327516898513, -0.010799506679177284, 0.02710064686834812, 0.008918083272874355, -0.0002415455674054101, -0.014603106305003166, 0.0012743757106363773, 0.02411210536956787, -0.03243927285075188, 0.011111944913864136, -0.0013796539278700948, 0.02936922386288643, 0.038986895233392715, -0.008293205872178078, -0.023052530363202095, -0.007933221757411957, 0.0013210716424509883, 0.032086081802845, 0.005121275316923857, -0.024560386314988136, 0.0008027463336475194, -0.005477862898260355, 8.553854422643781e-05, -0.007131749298423529, 0.006123116239905357, 0.01962929032742977, -0.01259263139218092, -0.05137576535344124, 0.007498525083065033, -0.000610019254963845, -0.020960550755262375, -0.010127084329724312, 0.026462186127901077, -0.02718215435743332, 0.009780684486031532, 0.014725364744663239, 0.014997050166130066, -0.045371510088443756, 0.013584285043179989, 0.01354353129863739, -0.01020179782062769, -0.020580191165208817, -0.01388993114233017, 0.019085919484496117, -0.011315708979964256, -0.00945466198027134, 0.003912273794412613, -0.038796715438365936, 0.03048313409090042, 0.02568788267672062, -0.0004830911348108202, 0.0040039680898189545, 0.02767118811607361, 0.023731745779514313, 0.013102042488753796, 0.001813502050936222, -0.029505066573619843, 0.005114483181387186, 0.023324215784668922, -0.020865460857748985, 0.01791767217218876, 0.0038171838968992233, 0.03219475597143173, 0.036894917488098145, -0.025647129863500595, -0.02458755485713482, -0.0020427368581295013, 0.010419146157801151, 0.016287557780742645, 0.03656889498233795, -0.012972991913557053, -0.03817183896899223, -0.032710958272218704, 0.024356622248888016, -0.010914972983300686, 0.009794268757104874, 0.014209161512553692, -0.0153366569429636, -0.03466709330677986, 0.009427493438124657, 0.016206052154302597, -0.018773481249809265, 0.041269056499004364, 0.018977245315909386, 0.012993368320167065, 0.010093123652040958, 0.03795449063181877, -0.011526265181601048, -0.009868983179330826, -0.019153840839862823, 0.007077412214130163, 0.01782258227467537, -0.026054657995700836, -0.02928771823644638, 0.04110604524612427, 0.02390834130346775, -0.011662107892334461, -0.029722414910793304, 0.0031702325213700533, 0.04504548758268356, 0.022441238164901733, -0.01134966965764761, 0.016070209443569183, 0.009522583335638046, 0.02428870089352131, 0.013923891820013523, -0.029994100332260132, 0.0019034978467971087, 0.031461201608181, -0.007226839195936918, 0.020946966484189034, -0.018569717183709145, 0.020593775436282158, -0.01295261550694704, 0.004985432606190443, -0.0042722574435174465, 0.015323072671890259, -0.017374299466609955, -0.005491447169333696, -0.009977657347917557, 0.008999588899314404, -0.015295904129743576, -0.019452694803476334, -0.011016855016350746, -0.024818487465381622, 0.0028849623631685972, -0.010235758498311043, -0.0070502436719834805, -0.00236706156283617, -0.007355890236794949, -0.01039876975119114, 0.01852896437048912, -0.0020325486548244953, -0.0290975384414196, -0.016287557780742645, 0.0009143921779468656, -0.0027966646011918783, -0.013074873946607113, 0.02768477238714695, 0.03776431083679199, -0.014453678391873837, 0.020376427099108696, 0.00018869420455303043, -0.011227411217987537, -0.027005556970834732, 0.006995906587690115, -0.04132339358329773, -0.03944876417517662, 0.002378947800025344, -0.00976030807942152, -0.015105724334716797, -0.009135431610047817, 0.024641891941428185, -0.004564319737255573, -0.017781829461455345, 0.012090013362467289, -0.02431586943566799, -0.016803760081529617, 0.006843083538115025, 0.0018576509319245815, 0.01389672327786684, -0.025063004344701767, 0.021272988989949226, -0.004221316426992416, 0.009529375471174717, -0.01721128821372986, -0.011227411217987537, 0.012062844820320606, 0.0005047410959377885, 0.0032313617412000895, -0.019058750942349434, -0.029124706983566284, -0.032113250344991684, 0.038688041269779205, 0.021979372948408127, -0.01862405426800251, 0.029124706983566284, 0.007647952064871788, 0.019561368972063065, -0.013407688587903976, 0.004622052889317274, -0.031814396381378174, -0.008843368850648403, -0.019167425110936165, 0.024967914447188377, -0.0036507765762507915, 0.04053550586104393, 0.007641159929335117, 0.011614562943577766, -0.006737804971635342, -0.013937476091086864, -0.010269719175994396, 0.012286985293030739, 0.02211521565914154, -0.0003833315277006477, 0.0025046025402843952, 0.026258422061800957, -0.0041533950716257095, -0.01020179782062769, 0.01751014217734337, -0.014154824428260326, -0.014236330054700375, -0.008626020513474941, -0.020675281062722206, 0.014358588494360447, 0.015907198190689087, -0.01419557724148035, -0.0418395958840847, -0.0040141562931239605, 0.004099057987332344, 0.002127638552337885, 0.0014390851138159633, 0.037601299583911896, 0.029206212610006332, 0.047762345522642136, 0.0032619263511151075, 0.03607986122369766, -0.015988703817129135, 0.00811661034822464, 0.014806870371103287, 0.014317835681140423, -0.02460113912820816, -0.0014204067410901189, 0.019357604905962944, 0.04501831904053688, 0.029803920537233353, -0.03214041888713837, 0.004822420887649059, 0.03607986122369766, 0.009522583335638046, -0.0009203352965414524, -0.007260800339281559, -0.009970865212380886, -0.016355479136109352, 0.026013905182480812, 0.01164852362126112, 0.03056463971734047, 0.00231612054631114, 0.00022668775636702776, -0.00236706156283617, -0.0029240173753350973, 0.00779737951233983, -0.00926448218524456, -0.003844352439045906, 0.003367204451933503, -0.0427904948592186, 0.015146477147936821, 0.01821652613580227, -0.005932936444878578, -0.03412372246384621, -0.01654565893113613, -0.017863335087895393, 0.017849750816822052, 0.014358588494360447, 0.006092551629990339, 0.009529375471174717, 0.017985593527555466, -0.030537471175193787, -0.0012565463548526168, -0.0364873893558979, 0.029939763247966766, 0.032086081802845, -0.01980588771402836, -0.01741505227982998, -0.013570700772106647, 0.009386740624904633, -0.004353763069957495, -0.0023874379694461823, -0.018298031762242317, 0.01353673916310072, -0.012035676278173923, 0.02538902871310711, 0.0006448290077969432, -0.010045578703284264, 0.03333583474159241, -0.014317835681140423, -0.001107119140215218, -0.02339213900268078, 0.0010986289707943797, 0.007124957162886858, -0.009393532760441303, 0.01219868753105402, 0.04202977567911148, -0.011960962787270546, -0.0009160902118310332, -0.015757769346237183, 0.0009704273543320596, -0.003207589266821742, 0.021272988989949226, -0.044067420065402985, -0.015554006211459637, -0.010568573139607906, 0.028119469061493874, -0.018393121659755707, 0.018746312707662582, 0.005066938232630491, 0.01265376154333353, -0.010228966362774372, -0.014779701828956604, -0.015961535274982452, -0.02866283990442753, 0.02549770288169384, 0.03732961416244507, 0.005342019721865654, 0.003932650201022625, 0.014005397446453571, -0.0065578133799135685, -0.04020948335528374, -0.0045167747884988785, -0.01170286163687706, 0.023446476086974144, -0.015146477147936821, -0.00926448218524456, 0.008748278953135014, -0.013217508792877197, 0.0014603105373680592, 0.01050744391977787, 0.0018525568302720785, -0.02519884705543518, -0.02767118811607361, 0.003946234472095966, -0.018325200304389, 0.017564479261636734, -0.0003684737312141806, 0.040073640644550323, 0.020661696791648865, 0.012382075190544128, 0.017768243327736855, 0.006618942599743605, -0.004948075860738754, 0.037492625415325165, -0.022821597754955292, 0.013720127753913403, 0.011234203353524208, 0.01691243425011635, 0.026258422061800957, -0.017184119671583176, 0.024573970586061478, -0.0030411817133426666, 0.01812143623828888, 0.040481168776750565, 0.0059363325126469135, 0.02458755485713482, -0.002917225006967783, 0.015757769346237183, 0.011533057317137718, 0.013923891820013523, -0.01723845675587654, 0.021245820447802544, 0.011084776371717453, -0.010167837142944336, -0.018895739689469337, 0.03333583474159241, -0.019167425110936165, -0.03814467042684555, -0.007532485760748386, 0.03097216971218586, 0.010351224802434444, -0.048957761377096176, -0.01823011040687561, -0.014399341307580471, -0.01821652613580227, -0.004037928767502308, -0.01634189486503601, 0.007349098101258278, -0.007342305965721607, -0.01145155169069767, -0.01961570605635643, -0.008938459679484367, 0.017496557906270027, -0.03512895852327347, -0.03417805954813957, -0.0019391566747799516, 0.017279209569096565, -0.01802634634077549, -0.00676836958155036, 0.008041896857321262, 0.012028884142637253, 0.033498845994472504, 0.0031940049957484007, -0.011818327941000462, 0.0006719975499436259, -0.0003470360243227333, -0.03654172644019127, -0.00400736415758729, -0.019153840839862823, -0.006880440283566713, 0.011410798877477646, 0.025117341428995132, 0.015160061419010162, 0.009081094525754452, 0.017292793840169907, 0.019466279074549675, -0.020145494490861893, -0.000553984078578651, -0.008558099158108234, -0.0024281907826662064, 0.02499508298933506, 0.010561781004071236, 0.0004533755127340555, 0.026339927688241005, -0.004557527601718903, -0.004459041636437178, 0.004051513038575649, 0.004978640470653772, 0.014698196202516556, 0.00027359597152099013, -0.04713746905326843, 0.007417019456624985, 0.005708795506507158, -0.013366935774683952, 0.005246929824352264, 0.04086152836680412, -0.020376427099108696, -0.0157306008040905, -0.015784937888383865, 0.00935277994722128, 0.05485334247350693, -0.003562478581443429, 0.025715051218867302, -0.0011028740555047989, -0.009529375471174717, 0.008279621601104736, -0.017958424985408783, 0.0006656299228779972, 0.014399341307580471, -0.000420476048020646, 0.021286573261022568, -0.011390422470867634, -0.03417805954813957, -0.013502778485417366, 0.009250897914171219, 0.01438575703650713, 0.0034300319384783506, 0.003491161158308387, -0.012558670714497566, -0.012789604254066944, 0.014820454642176628, -0.021191483363509178, -0.012959407642483711, 0.003161742351949215, -0.006788746453821659, -0.021245820447802544, -0.004560923669487238, 0.007892468944191933, -0.016613580286502838, -0.013373727910220623, -0.032031744718551636, -0.01085384376347065, 0.0025079986080527306, 0.012090013362467289, 0.004659409634768963, 0.017387883737683296, -0.01772749051451683, -0.017007524147629738, -0.01368616707623005, 0.0021531090606004, 0.01642340049147606, 0.011404006741940975, 0.03637871518731117, 0.013285430148243904, 0.02389475703239441, 0.025755804032087326, 0.004768083803355694, 0.03751979395747185, 0.01353673916310072, 0.013224300928413868, 0.011064399965107441, 2.752674959083379e-07, 0.007980767637491226, 0.003171930555254221, -0.012225856073200703, 0.01923534646630287, 0.000850715849082917, -0.004924303386360407, 0.018841402605175972, -0.022060878574848175, 0.010996478609740734, -0.00115806027315557, 0.00802152045071125, -0.0344497449696064, -0.050343357026576996, -0.01359786931425333, -0.0038103917613625526, 0.010541404597461224, -0.0026591236237436533, -0.01714336685836315, 0.0012268306454643607, 0.010018410161137581, 0.012022092007100582, -0.0091626001521945, -0.01343485713005066, 0.0009135431610047817, -0.018678391352295876, 0.023650240153074265, 0.027929289266467094, 0.026013905182480812, -0.017972009256482124, 0.01763240061700344, -0.03227626159787178, 0.02659802883863449, 0.010079539380967617, -0.015363825485110283, 0.016599996015429497, -0.007450980134308338, 0.01922176219522953, -0.0047544995322823524, 0.012606215663254261, -0.018488211557269096, -0.024818487465381622, 0.023731745779514313, -0.01751014217734337, -0.02090621367096901, -0.0202134158462286, -0.03559082746505737, -0.00785850826650858, -0.005695211235433817, 0.045670364052057266, -0.009271274320781231, 0.011302124708890915, -0.021775608882308006, -0.007226839195936918, 0.02936922386288643, -0.002238010987639427, 0.031243855133652687, 0.0012030581710860133, 0.025253184139728546, 0.024614723399281502, 0.01592078246176243, 0.00030331159359775484, -0.016396231949329376, 0.018393121659755707, 0.01634189486503601, -0.006398198194801807, 0.02052585408091545, -0.020159078761935234, -0.0101067079231143, -0.004217920359224081, 0.010391977615654469, -0.025375444442033768, -0.028608502820134163, 0.014630274847149849, 0.009522583335638046, 0.003080236492678523, -0.03526480123400688, -0.032330598682165146, 0.010371601209044456, -0.005994065664708614, -0.01952061615884304, -0.005087314639240503, 0.010996478609740734, -0.005491447169333696, -0.03925858065485954, 0.040100809186697006, 0.03205891326069832, 0.03635154664516449, -0.0007802473264746368, -0.0068023307248950005, -0.003521725768223405, -0.00030861797858960927, -0.02231897972524166, 0.003953026607632637, -0.02241406962275505, 0.01664074882864952, -0.04344254359602928, -4.5820430386811495e-05, 0.028418323025107384, -0.007498525083065033, 0.003367204451933503, -0.029342055320739746, -0.001896705711260438, 0.03635154664516449, -0.011567017994821072, -0.006299711763858795, 0.0035353100392967463, -0.015092140063643456, -0.02538902871310711, 0.0020104742143303156, -0.030320122838020325, 0.021585429087281227, -0.018189357593655586, 0.004574507940560579, 0.00945466198027134, -0.006663091480731964, -0.00027890235651284456, -0.006764973513782024, -0.004146602936089039, -0.006618942599743605, -0.028065131977200508, -0.012816772796213627, 0.024750566110014915, -0.02211521565914154, -0.023881172761321068, -0.013652206398546696, -0.012993368320167065, 0.010527820326387882, 0.004819024819880724, -0.02091979794204235, -0.0032160794362425804, 0.04632240906357765, -0.011186658404767513, 0.009868983179330826, 0.002871378092095256, -0.022346148267388344, -0.025959568098187447, 0.012463580816984177, 0.018501795828342438, -0.0007352494285441935, 0.0028934525325894356, -0.002671009860932827, -0.031705718487501144, -0.028010794892907143, -0.024546802043914795, 0.009821437299251556, 0.0055321999825537205, -0.012640177272260189, -0.012280193157494068, 0.029423560947179794, 0.010874220170080662, 0.0066766757518053055, -0.035183295607566833, 0.04363272339105606, -0.030021268874406815, -0.005966897122561932, 0.03396071121096611, -0.01623322069644928, 0.020281337201595306, 0.005708795506507158, -0.013027328997850418, 0.0006711485330015421, -0.025769388303160667, -0.030591808259487152, -0.026720287278294563, -0.015214398503303528, -0.01763240061700344, -0.017306378111243248, 0.004917511250823736, -0.01824369467794895, -0.02271292358636856, 0.0030208053067326546, -0.035699501633644104, 0.007559654302895069, -0.011200242675840855, -0.0026981786359101534, -0.0013389009982347488, 0.01095572579652071, -0.019058750942349434, 0.014331419952213764, -0.007770210970193148, 0.0265029389411211, -0.0035692707169800997, -0.01763240061700344, 0.0023280067835003138, 0.026828961446881294, 0.03116234950721264, -0.018787065520882607, -0.023052530363202095, 0.004482814110815525, -0.028798682615160942, -0.008544514887034893, 0.010629702359437943, -0.0015927574131637812, -0.007525693625211716, 0.00694836163893342, 0.007294761016964912, 0.03893255814909935, 0.023174788802862167, 0.009610881097614765, -0.0342867337167263, -0.0001960169756785035, -0.012028884142637253, 0.040589842945337296, 0.00488015403971076, 0.03108084388077259, -0.0172248724848032, -0.01983305625617504, -0.01071120798587799, 0.04061701148748398, 0.024478880688548088, 0.030428797006607056, 0.00872111041098833, -0.018298031762242317, -0.012286985293030739, -0.008795823901891708, 0.011376838199794292, 0.003161742351949215, -0.019887393340468407, -0.01548608485609293, -0.0198194719851017, 0.0023874379694461823, 0.02450604923069477, -0.010099915787577629, -0.009868983179330826, -0.003105707000941038, 0.01593436673283577, 0.001906893914565444, -0.029450729489326477, -0.02041717991232872, 0.013577492907643318, -0.031325358897447586, 0.010568573139607906, -0.007783795241266489, -0.006758181378245354, 0.021245820447802544, -0.03306414932012558, -0.008075857535004616, -0.011010062880814075, 0.0235959030687809, -0.050234682857990265, -0.01731996238231659, 0.012076429091393948, 0.019547784700989723, -0.010684039443731308, -0.012694514356553555, 0.02191145159304142, -0.008863745257258415, 0.01180474366992712, -0.017252041026949883, -0.009733139537274837, -0.028200974687933922, 0.023582318797707558, -0.04202977567911148, -0.009488622657954693, 0.01060253381729126, 0.005987273529171944, 0.009950488805770874, -0.0038647290784865618, -0.01333976723253727, -0.018148604780435562, -0.0030870286282151937, 0.00035446492256596684, 0.009719555266201496, -0.007627575658261776, -0.0046560135670006275, -0.024057768285274506, -0.012341322377324104, -0.022767260670661926, 0.0022634814959019423, 0.20767654478549957, 0.0034605965483933687, 0.014969881623983383, 0.03977478668093681, -0.01851538009941578, 0.0047748759388923645, 0.007613991387188435, -0.002856095787137747, -0.021571844816207886, 0.0168309286236763, -0.01723845675587654, 0.017768243327736855, -0.022346148267388344, 0.00832037441432476, 0.00747135654091835, 0.013964644633233547, -0.012463580816984177, -0.04792535677552223, -0.015852859243750572, -0.004418288357555866, 0.005080522503703833, 0.010650078766047955, -0.02680179290473461, -0.014358588494360447, 0.029016032814979553, -0.005498239304870367, -0.01011350005865097, -0.009522583335638046, 0.015363825485110283, -0.00022605097910854965, -0.03116234950721264, -0.004924303386360407, 0.010758752934634686, -0.01513289287686348, -0.02667953446507454, 0.0018729332368820906, 0.022957440465688705, -0.02120506763458252, -0.0010986289707943797, -0.006934777367860079, 0.01922176219522953, -0.02896169386804104, -0.025742219761013985, 0.006337068974971771, -0.0006486495840363204, 0.020335674285888672, 0.008530930615961552, -0.010813090950250626, -0.011947378516197205, 0.02379966713488102, 0.00033557426650077105, -0.011689276434481144, 0.03836201876401901, -0.008727902546525002, -0.023731745779514313, 0.0008821294759400189, -0.01714336685836315, 0.012327738106250763, 0.04194827005267143, 0.018868571147322655, -0.012307361699640751, 0.038579367101192474, -0.0012115483405068517, 0.021965788677334785, 0.01220547966659069, 0.014915544539690018, -0.047653671354055405, -0.023120451718568802, -0.001174191595055163, -0.01741505227982998, 0.007505317218601704, -0.029532235115766525, 0.006815914995968342, 0.01274885144084692, -0.03159704431891441, -0.01952061615884304, 0.0352376326918602, 0.011308916844427586, 0.016871681436896324, 0.011770782992243767, -0.0007450131233781576, 0.011478720232844353, -0.010643286630511284, -0.0007513807504437864, -0.018569717183709145, 0.0006465270416811109, 0.01592078246176243, -0.01164173148572445, -0.00012682203669101, 0.006720824632793665, -0.021992957219481468, -0.016790175810456276, 0.010799506679177284, -0.004217920359224081, 0.027820615097880363, 0.044176094233989716, 0.017265625298023224, 0.01571701653301716, -0.006238582544028759, 0.005698607303202152, -0.004099057987332344, 0.03534630686044693, 0.03627004101872444, -0.016803760081529617, -9.599207260180265e-05, -0.003295887028798461, -0.006683467887341976, 0.016056625172495842, -0.021436000242829323, -0.05944482982158661, -0.016301142051815987, -0.014018981717526913, 0.00012767105363309383, -0.006639319006353617, 0.005871807225048542, -0.0068227071315050125, 0.010881012305617332, -0.01903158240020275, 0.012463580816984177, 0.017673153430223465, 0.002925715409219265, -0.006781953852623701, 0.014032565988600254, 0.00208009360358119, -0.010276511311531067, -0.024451712146401405, -0.05906447023153305, 0.012273401021957397, 0.01602945663034916, -0.027114231139421463, 0.019153840839862823, -0.029043201357126236, -0.02620408497750759, -0.01484762318432331, 0.006262355018407106, -0.003552290378138423, -0.0070706200785934925, -0.03227626159787178, -0.02499508298933506, -0.006017838139086962, -0.007613991387188435, -0.003112499136477709, 0.007525693625211716, -0.004319802392274141, 0.050642214715480804, -0.044474948197603226, -0.007226839195936918, -0.00024069653591141105, -0.001876329304650426, -0.015975119546055794, 0.002577617997303605, -0.005966897122561932, -0.002450265223160386, -0.013672582805156708, 0.0069619459100067616, -0.02420719526708126, -0.017985593527555466, -0.02727724425494671, 0.031053675338625908, 0.011268164031207561, -0.025932399556040764, -0.020974135026335716, -0.006618942599743605, -0.00393604626879096, -0.015024218708276749, -0.018094267696142197, -0.16887982189655304, 0.008367919363081455, 0.03116234950721264, -0.01592078246176243, -0.001004388090223074, 0.0012234345776960254, 0.03056463971734047, 0.02229181118309498, -0.026652365922927856, 0.004292633850127459, -0.01594795100390911, 0.005107691045850515, -0.025470534339547157, 0.007321929559111595, -0.011770782992243767, 0.006028026342391968, 1.238703703165811e-06, -0.02269933931529522, 0.019289683550596237, 0.013706543482840061, 0.016559243202209473, -0.02718215435743332, 0.03866087272763252, 0.020879045128822327, 0.01086063589900732, 0.0043809316121041775, -0.019479863345623016, 0.002991938730701804, -0.001327863777987659, -0.029613740742206573, -0.012219063937664032, 0.022454822435975075, 0.015458916313946247, -0.0017345433589071035, -0.002234614919871092, 0.02620408497750759, 0.036514557898044586, -0.013108834624290466, 0.010914972983300686, 0.023555150255560875, 0.04773517698049545, 0.049935828894376755, 0.03176005557179451, 0.011662107892334461, -0.014005397446453571, 0.036650400608778, 0.004914115183055401, -0.05137576535344124, -0.023731745779514313, -0.014372172765433788, 0.020566606894135475, -0.01744222082197666, 0.0019816074054688215, 0.007417019456624985, 0.025130925700068474, 0.012246232479810715, -0.012144350446760654, -0.000779398309532553, 0.0009967469377443194, 0.010908180847764015, 0.013217508792877197, -0.0031091030687093735, -0.0031702325213700533, 0.0026251629460603, -0.016980355605483055, -0.017605232074856758, -0.008198115974664688, 0.0306733138859272, -0.01852896437048912, 0.014589522033929825, -0.01624680496752262, 0.005600121337920427, 0.014453678391873837, 0.01563551090657711, 0.02219672128558159, 0.04382290318608284, -0.0007000151672400534, 0.01753731071949005, -0.007647952064871788, -0.03855219855904579, 0.007342305965721607, 0.009597296826541424, -0.01942552626132965, 0.008829784579575062, -0.006326880771666765, -0.012463580816984177, -0.01170286163687706, -0.01711619831621647, -0.007009490858763456, -0.006506872363388538, 0.031406864523887634, -0.0380631648004055, 0.007539277896285057, -0.012626592069864273, -0.0054235258139669895, 0.017795413732528687, -5.346159014152363e-05, -0.030238617211580276, 0.015390994027256966, -0.021829945966601372, -0.0025130927097052336, -0.016355479136109352, -0.04140489920973778, -0.00032835762249305844, 0.0001173767086584121, 0.02710064686834812, -0.02049868553876877, -0.0009508999064564705, 0.009488622657954693, 0.007029867265373468, -0.0028170410078018904, 0.0017387884436175227, -0.0074441879987716675, 0.027929289266467094, -0.014249914325773716, 0.016192467883229256, -0.004611864686012268, -0.012110389769077301, 0.018651222810149193, -0.027467424049973488, 0.05667363479733467, 0.005375980399549007, 0.0028102488722652197, 0.013292222283780575, 0.0007140239467844367, 0.005657854489982128, -0.10188213735818863, -0.046865783631801605, 0.01000482589006424, 0.006574793718755245, -0.014141240157186985, 0.026828961446881294, -0.019493447616696358, 0.015771353617310524, -0.007172502111643553, 0.005644270218908787, -0.00338418479077518, -0.0067072403617203236, -0.018284447491168976, 0.011431175284087658, 0.020444348454475403, 0.004190751817077398, -0.02002323605120182, 0.01753731071949005, -0.0388510525226593, 0.011838704347610474, 0.011974547058343887, -0.0119949234649539, 0.011179866269230843, -0.015363825485110283, -0.013855970464646816, 0.004985432606190443, -0.04224712401628494, 0.008367919363081455, 0.017591647803783417, 0.017768243327736855, 0.01711619831621647, 0.008381503634154797, -0.01124778762459755, -0.014657443389296532, -0.00191708211787045, 0.03309131786227226, -0.007512109354138374, 0.026570860296487808, 0.034612756222486496, -0.0172248724848032, -0.01813502050936222, 0.0025555435568094254, 0.0003030993393622339, 0.0038918976206332445, 0.01125457976013422, -0.007933221757411957, -0.009278066456317902, 0.04827854782342911, -0.034612756222486496, -0.019846640527248383, -0.010086331516504288, 0.011485512368381023, -0.023120451718568802, -0.007926429621875286, 0.01624680496752262, -0.036704737693071365, -0.0007696346146985888, 0.000717420014552772, -0.012803188525140285, -0.020593775436282158, -0.020974135026335716, 0.00015197417815215886, -0.034205228090286255, 0.008890914730727673, 0.01890932396054268, 0.0101067079231143, 0.002747421618551016, 0.022685755044221878, 0.017496557906270027, -0.02340572327375412, -0.003379090689122677, 0.023976262658834457, -0.007281176745891571, 0.02071603387594223, -0.03347167745232582, 0.01612454652786255, -0.007539277896285057, -0.014467262662947178, 0.007383058778941631, 0.005077126435935497, -0.013081666082143784, -0.013068081811070442, -0.031624212861061096, -0.02947789803147316, 0.004445457365363836, 0.01369295921176672, -0.0008651491370983422, -0.003986987750977278, 0.024220779538154602, -0.03404221683740616, -0.00802152045071125, 0.0077294581569731236, 0.034802936017513275, -0.008007936179637909, -0.004217920359224081, 0.05868411064147949, 0.01582569070160389, 0.0021038660779595375, 0.010636494494974613, 0.035699501633644104, -0.053793765604496, -0.004696766380220652, -0.048360053449869156, 0.019262515008449554, -0.01783616654574871, -0.018678391352295876, 0.0059261443093419075, -0.00915580801665783, 0.04493681341409683, -0.008979212492704391, 0.001127495663240552, 0.002117450349032879, -0.03406938537955284, 0.002163297263905406, -0.012069636955857277, -0.013292222283780575, -0.002450265223160386, -0.024736981838941574, 0.04140489920973778, 0.0007798228180035949, 0.04452928528189659, 0.04124188795685768, 0.016178883612155914, -0.0063200886361300945, 0.009787476621568203, 0.013394104316830635, -0.0069619459100067616, -0.005943124648183584, 0.01325146947056055, 0.037601299583911896, -0.0003725065616890788, -0.013428064994513988, 0.03347167745232582, -0.004863173700869083, 0.018067099153995514, 0.028798682615160942, 0.03866087272763252, 0.01890932396054268, -0.0072743846103549, 0.015975119546055794, 0.012164726853370667, 0.00520617701113224, 0.008992796763777733, -0.004805440548807383, 0.014222745783627033, -0.02877151407301426, -0.030700482428073883, 0.0059465207159519196, 0.0032245696056634188, 0.021666934713721275, 0.010534612461924553, 0.006588377989828587, 0.025239599868655205, 0.0070909964852035046, 0.032629452645778656, -0.024343037977814674, 0.031624212861061096, -0.009522583335638046, -0.004971848335117102, -0.018406705930829048, -0.031406864523887634, -0.010235758498311043, 0.041214719414711, -0.02441095933318138, 0.0012667345581576228, 0.013849178329110146, 0.00724721560254693, -0.030129943042993546, -0.015880027785897255, 0.01229377742856741, -0.010140668600797653, 0.02977675199508667, 0.006714032497256994, 0.007559654302895069, 0.012307361699640751, -0.011417591013014317, 0.014575937762856483, -0.006703844293951988, -0.021789193153381348, -0.011967754922807217, -0.02062094397842884, -0.013618245720863342, 0.029206212610006332, -0.01712978258728981, -0.028309648856520653, -0.01983305625617504, 0.03817183896899223, -0.008632812649011612, -0.01812143623828888, 0.008952043950557709, 0.012219063937664032, 0.008272829465568066, -0.01380163338035345, 0.01882781833410263, -0.002854397753253579, -0.0005777566111646593, 0.003458898514509201, 0.030401628464460373, -0.012714890763163567, -0.004265465307980776, 0.006489892024546862, 0.00013573671458289027, 0.012225856073200703, -0.008238868787884712, -0.008639604784548283, -0.003725490067154169, -0.033716194331645966, -0.001752372714690864, -0.011390422470867634, 0.0034198437351733446, -0.03015711158514023, 0.04221995547413826, 0.014100487343966961, 0.003973403014242649, 0.002086885739117861, 0.02499508298933506, -0.022468406707048416, 0.003915669862180948, 0.0037798271514475346, -0.0073355138301849365, -0.008558099158108234, 0.013394104316830635, 0.0059159561060369015, 0.0101067079231143, 0.004245088901370764, 0.013862762600183487, 0.020933382213115692, 0.018162189051508904, 0.0002757185138761997, -0.027358749881386757, -0.016409816220402718, 0.03219475597143173, 0.0016309631755575538, -0.010276511311531067, -0.02351439744234085, -0.016572827473282814, 0.006724220700562, -0.013129211030900478, 0.026720287278294563, 0.003521725768223405, -0.0022006540093570948, 0.08813484013080597, -0.004425080493092537, -0.008822992444038391, 0.02530752308666706, -0.014820454642176628, 0.025715051218867302, 0.022889519110322, 0.00024918673443607986, -0.002008776180446148, -0.030618976801633835, -0.00028611900052055717, -0.008904499001801014, 0.016708670184016228, -0.04838722199201584, 0.012368490919470787, 0.017958424985408783, -0.007362682372331619, -0.002793268533423543, -0.022128799930214882, -0.009216937236487865, -0.00045931863132864237, 0.0006898269639350474, 0.00906071811914444, -0.024641891941428185, -0.015309488400816917, -0.004499794449657202, 0.00011907474254257977, -0.005342019721865654, -0.005409941542893648, -0.056401949375867844, 0.03045596554875374, 0.01592078246176243, -0.006095947697758675, -0.04708313196897507, -0.011023647151887417, 0.002290650038048625, -0.0037288861349225044, -0.014725364744663239, 0.007627575658261776, -0.023025361821055412, -0.02928771823644638, 0.006591774057596922, -0.026231253519654274, -0.042084112763404846, -0.032710958272218704, -0.01438575703650713, -0.002640445251017809, -0.008150571025907993, -0.042681820690631866], "015f77e0-1857-45de-9299-ae361ba2bb5a": [-0.0020618238486349583, -0.007100320421159267, 0.006052340380847454, -0.02165597677230835, 0.00016886729281395674, 0.01231632474809885, 0.014364494010806084, -0.027390850707888603, -0.023062385618686676, -0.004946328699588776, -0.013927550986409187, 0.024564377963542938, 0.007660153321921825, 0.019525879994034767, 0.007421200163662434, -0.010766543447971344, 0.010008720681071281, -0.007066184189170599, -0.013900242745876312, 0.015388579107820988, 0.007175419945269823, 0.03159642592072487, -0.015388579107820988, -0.0278277937322855, 0.0029425364919006824, 0.014555656351149082, 0.0153476158156991, -0.0002479138202033937, 0.011783801019191742, 0.010561726056039333, 0.01977166160941124, 0.0009856814285740256, -0.02886553294956684, -0.008506730198860168, -0.03318034112453461, 0.007776216138154268, 0.006567796226590872, 0.00031981311622075737, 0.027527395635843277, -0.014787782914936543, 0.023062385618686676, 0.002307604067027569, 0.014064095914363861, -0.007428027223795652, -0.0016018390888348222, 0.016153229400515556, -0.02646234817802906, -0.0198945514857769, 0.009701495058834553, -0.00874568335711956, 0.0005329507403075695, 0.01652189902961254, -0.021355578675866127, -0.008499902673065662, 0.012459696270525455, -0.03356266766786575, 0.01600302942097187, -0.00202768761664629, -0.011708701029419899, -0.013360891491174698, 0.022215809673070908, -0.016549207270145416, -0.011804282665252686, -0.017231931909918785, -0.003316327463835478, 0.00951716024428606, 0.011019150726497173, 0.009756113402545452, 0.00940109696239233, 0.007441681809723377, 0.04429507628083229, 0.03137795254588127, -0.0017887345748022199, 0.01154484786093235, 0.04800909012556076, -0.018665648996829987, -0.01354522630572319, 0.008390666916966438, 0.003096149303019047, 0.02016764134168625, -0.0006221314542926848, -0.0122890155762434, -0.019812624901533127, 0.012589413672685623, 0.01422794908285141, 0.05816800892353058, 0.017040768638253212, 0.016385354101657867, 0.028810914605855942, -0.01794196292757988, -0.006653136573731899, -0.007824006490409374, 0.009872175753116608, 0.026080023497343063, -0.002889625495299697, 0.017382130026817322, 0.007646498735994101, 0.023813381791114807, 0.017109040170907974, -0.027759522199630737, -0.0030193428974598646, 0.023758763447403908, -0.047681380063295364, -0.005478852894157171, -0.015538778156042099, -0.0017614256357774138, -2.225517346232664e-05, -0.02034514769911766, -0.008486248552799225, -0.01145609375089407, -0.0370309017598629, 0.02640772983431816, 0.019566843286156654, -0.01026132795959711, -0.020727474242448807, 0.010377391241490841, 0.0019116246839985251, 0.021956374868750572, -0.006397115532308817, -0.0043455325067043304, 0.03244300186634064, 0.003714013611897826, 0.03342612460255623, -0.010991841554641724, 0.034764260053634644, -0.008281431160867214, -0.005878245923668146, -0.025014974176883698, 0.02663985639810562, -0.00694329384714365, 0.0061888848431408405, 0.005997722502797842, -0.001930399565026164, 0.008615965954959393, -0.008499902673065662, 0.009134835563600063, -0.0038915215991437435, -0.0030056885443627834, -0.024195706471800804, -0.016958842054009438, -0.010486626997590065, 0.012555277906358242, -0.0024424418807029724, -0.021615013480186462, 0.0012510900851339102, 0.03795940428972244, 0.025697696954011917, 0.021751558408141136, 0.00937378779053688, 0.017300203442573547, -0.007045702543109655, 0.012630377896130085, -0.0397891029715538, 0.01185890007764101, 0.005553952418267727, -0.0022495726589113474, -0.028100883588194847, -0.009940448217093945, 0.017341166734695435, -0.011968135833740234, -0.0003373078943695873, 0.02102787233889103, -0.010705098509788513, -0.007332446053624153, 0.009715150110423565, 0.018023889511823654, 0.022475244477391243, 0.029220549389719963, -0.00010955572361126542, -0.018215052783489227, 0.002696756273508072, -0.016549207270145416, -0.017245585098862648, 0.007134456653147936, 0.0008815662004053593, -0.007796697784215212, 0.002094253199175, -0.013190210796892643, -0.014815091155469418, -0.00937378779053688, 0.004949742462486029, -0.016358045861124992, 0.0309137012809515, 0.04112723842263222, -0.04279308393597603, -0.014405457302927971, -0.0017136350506916642, 0.021328270435333252, 0.03487349674105644, 0.00016620040696579963, 0.020754782482981682, 0.028756296262145042, -0.020823054015636444, 0.0015199122717604041, -0.5763275623321533, -0.0011964722070842981, -0.022884879261255264, -0.02429128810763359, 0.013074147514998913, 0.014501038938760757, 0.021246343851089478, 0.001655603526160121, 0.011497057043015957, 0.02136923372745514, -0.008035651408135891, 0.008329221978783607, 0.028838224709033966, 0.013770525343716145, -0.011906690895557404, -0.008738855831325054, 0.041864581406116486, -0.01359984464943409, -0.004379668738692999, -0.0063629793003201485, 0.0006110371905378997, 0.030531376600265503, -0.029739418998360634, 0.002618243219330907, 0.01754598319530487, 0.010821160860359669, 0.0037856996059417725, 0.0026950493920594454, 0.01943030022084713, 0.008895882405340672, -0.022297736257314682, 0.001128199975937605, -0.0061376807279884815, 0.021410197019577026, 0.032606855034828186, -0.001549781416542828, 0.010780197568237782, 0.02160135842859745, 0.014897017739713192, 0.035064660012722015, 0.004260192159563303, -0.02217484638094902, 0.014555656351149082, 0.0024287875276058912, 0.022666407749056816, -0.004526454024016857, -0.017955617979168892, 0.004932674579322338, -0.002751374151557684, -0.034600406885147095, 0.00826094951480627, 0.007824006490409374, -0.020713819190859795, -0.002553384518250823, 0.019102592021226883, -0.03238838538527489, 0.02034514769911766, -0.010896260850131512, 0.008800300769507885, -0.03230645880103111, 0.022188501432538033, 0.022447936236858368, -0.0031610080040991306, -0.031514499336481094, -0.010759715922176838, 0.03618432581424713, -0.007864969782531261, -0.0015207657124847174, -0.022789297625422478, -0.03754977136850357, 0.017982926219701767, 0.006963775493204594, 0.004922433756291866, 0.00022359182185027748, 0.029247857630252838, 0.003819835837930441, 0.023472020402550697, 0.025806933641433716, 0.005263795144855976, 0.005560779478400946, 0.008650101721286774, -0.0013142420211806893, 0.008554520085453987, -0.015402233228087425, 0.043066173791885376, 0.010302291251718998, -0.017573293298482895, -0.004888297524303198, 0.015060871839523315, 0.0009165557567030191, 0.009530814364552498, 0.02765028551220894, -0.0025055937003344297, -0.04366696998476982, -0.01443276647478342, 0.011538020335137844, -0.029411710798740387, -0.03074984811246395, 0.0035228512715548277, -0.04566052183508873, -0.009237243793904781, -0.02594347856938839, -0.01937568187713623, -0.006011377088725567, 0.020549966022372246, 0.013238000683486462, 0.007230037823319435, 0.012698649428784847, 0.04347580671310425, -0.004707376006990671, -0.013961687684059143, -0.02079574577510357, 0.011804282665252686, 0.029002077877521515, 0.002247865777462721, -0.03080446645617485, 0.02393627166748047, 0.0008875400526449084, -0.006520005874335766, -0.029903272166848183, -9.424779273103923e-05, 0.013954860158264637, 0.018665648996829987, -0.0038846945390105247, 0.02165597677230835, 0.01517010759562254, 0.02090498059988022, 0.027063144370913506, -0.0218198299407959, -0.0014687080401927233, 0.01308780163526535, -0.016125919297337532, -0.002193247899413109, -0.00137824728153646, 0.010991841554641724, -0.012698649428784847, 0.004430872853845358, 0.00025068738614208996, -0.018324287608265877, -0.01743674837052822, 0.0047858888283371925, -0.015292997471988201, 0.011264931410551071, -0.020700164139270782, -0.029329784214496613, -0.03197874873876572, -0.028619753196835518, -0.005369617138057947, -0.023908963426947594, 0.00204987614415586, -0.0052979313768446445, -0.021628668531775475, -0.039051759988069534, 0.020536310970783234, -0.0154841598123312, -0.026039058342576027, -0.01822870783507824, 0.004936087876558304, -0.0033351024612784386, -0.0037856996059417725, -0.00575876934453845, 0.0397891029715538, -0.029821345582604408, 0.0016615773783996701, -0.011838418431580067, -0.01618053764104843, -0.027390850707888603, -0.0020464626140892506, -0.030149051919579506, -0.03981641307473183, 0.004949742462486029, -0.0016393888508901, 0.0028776777908205986, -0.006950121372938156, -0.002828180557116866, 0.0009805610170587897, -0.016153229400515556, 0.008615965954959393, -0.004417218267917633, 0.009551296010613441, 6.811229832237586e-05, 0.012207088991999626, 0.00894367229193449, -0.032661471515893936, -0.0029322956688702106, -0.011121558956801891, -0.0007317938143387437, 0.0037583906669169664, -0.03634817898273468, 0.013374545611441135, 0.006263984367251396, 0.02012667804956436, -0.025165174156427383, -0.008158541284501553, -0.034381937235593796, 0.01409140508621931, 0.02743181400001049, 0.02547922544181347, 0.013067319989204407, 0.035692762583494186, 0.047408293932676315, -0.020072059705853462, 0.004024652764201164, -0.0230896957218647, 0.009080217219889164, 0.005738287698477507, 0.023472020402550697, -0.007605535443872213, 0.037850167602300644, -0.0068204039707779884, 0.014050441794097424, 0.004157783929258585, -0.02090498059988022, -0.026189258322119713, -0.0015429542399942875, 0.03257954493165016, -0.023635873571038246, 0.0214375052601099, -0.0017068077577278018, -0.0170271135866642, 0.006055754143744707, 0.038259804248809814, -0.0037208409048616886, -0.012876157648861408, 0.006380047649145126, -0.029111312702298164, 0.026667164638638496, 0.016317082569003105, -0.01943030022084713, -0.04361235350370407, -0.003659395733848214, -0.014978945255279541, 0.011435612104833126, -0.004584485664963722, 0.03918830677866936, 0.01743674837052822, 0.04481394588947296, -0.0019116246839985251, 0.016835952177643776, -0.027172379195690155, -0.007776216138154268, 0.018501795828342438, -0.006851126439869404, -0.037522461265325546, -0.01446007564663887, -0.02612098678946495, 0.025970786809921265, 0.03727668151259422, -0.018651995807886124, 0.0310229379683733, 0.03539236634969711, -0.006219607312232256, -3.1149240385275334e-05, 0.003012515604496002, 0.006656550336629152, -0.00598748167976737, 0.017505019903182983, 0.018583722412586212, 0.019908206537365913, 0.007701116614043713, -0.001664137584157288, -0.00437284167855978, 0.004864402115345001, 0.015784557908773422, 0.022502552717924118, -0.024318596348166466, 0.009967757388949394, -0.04759945347905159, 0.015634359791874886, -0.01256893202662468, -0.02330816723406315, -0.038833290338516235, -0.03842365741729736, -0.018720267340540886, 0.0077693890780210495, 0.011073769070208073, -0.018378905951976776, -0.0005512989009730518, 0.022871224209666252, -0.002819646382704377, 0.006854540202766657, -0.03618432581424713, 0.0231443140655756, 0.031214101240038872, -0.027172379195690155, -0.0037447363138198853, 0.002852075733244419, 0.012439214624464512, -0.01308780163526535, 0.014514693059027195, -0.014555656351149082, -0.0003814715309999883, 0.006253743544220924, 0.029275165870785713, -0.009011944755911827, -0.017518674954771996, 0.012063717469573021, 0.0154841598123312, -0.01136733964085579, 0.005338894668966532, -0.006281052716076374, 0.016999805346131325, -0.031924132257699966, -0.005410580430179834, 0.058604951947927475, -0.010937224142253399, -0.010561726056039333, -0.023799726739525795, 1.7921482140081935e-05, -0.014992599375545979, 0.006581450812518597, -0.0218198299407959, -0.02965749241411686, -0.002280295128002763, 0.01090991497039795, -0.029220549389719963, 0.01943030022084713, 0.013934378512203693, 0.03498273342847824, -0.0027889239136129618, -0.0016931532882153988, 0.004495731554925442, 0.0065916916355490685, 0.0008427363354712725, 0.03943408653140068, 0.013012702576816082, 0.0014345719246193767, 0.010616344399750233, -0.04418583959341049, -0.002560211578384042, -0.0006515738787129521, -0.006397115532308817, 0.02131461538374424, -0.015074525959789753, -0.01517010759562254, -0.003966621123254299, 0.0229804590344429, 0.009817558340728283, 0.007421200163662434, 0.03858751058578491, -0.025752315297722816, -0.014897017739713192, 0.02954825572669506, -0.01589379459619522, 0.01880219392478466, 0.0012058597058057785, 0.025451917201280594, 0.015333960764110088, -0.007134456653147936, 0.012411906383931637, 0.013354063965380192, -0.007086665835231543, 0.026940254494547844, -0.01623515598475933, -0.010309118777513504, 0.0115175386890769, 0.019621461629867554, 0.02908400446176529, -0.014419112354516983, 0.03440924361348152, 0.01102597825229168, 0.021355578675866127, 0.011128386482596397, -0.004062202293425798, 0.018665648996829987, -0.013640807941555977, 0.007619190029799938, -0.0012741319369524717, 0.02343105711042881, -0.007066184189170599, 0.024673612788319588, 0.020249567925930023, -0.013149246573448181, 0.008861745707690716, 0.008370185270905495, -0.01108742319047451, -0.04497779905796051, -0.005089700687676668, 0.036484722048044205, 0.014173331670463085, -0.03173296898603439, -0.0045059723779559135, -0.024646304547786713, -0.05226927995681763, -0.005635879002511501, -0.017354821786284447, -0.010438836179673672, -0.027786830440163612, 0.026161950081586838, -0.005939690861850977, -0.007571399211883545, 0.012917120940983295, -0.013872933574020863, -0.011831591837108135, -0.009216762147843838, -0.005366203375160694, -0.008575002662837505, -0.035638146102428436, 0.017573293298482895, 0.010589035227894783, 0.028373971581459045, 0.013374545611441135, 0.012637204490602016, 0.01794196292757988, 0.006656550336629152, -0.03817787766456604, 0.006895503494888544, -0.005891900509595871, -0.005953345447778702, -0.0012246345868334174, 0.009510332718491554, 0.02005840465426445, 0.01863834075629711, 0.029329784214496613, -0.00010998242214554921, -0.011326376348733902, 0.003539919387549162, 0.001327043049968779, -0.014214294962584972, 0.02823742851614952, 0.0050180149264633656, -0.00514431856572628, 0.005147732328623533, -0.014337184838950634, -0.004243124276399612, -0.013135592453181744, 0.01040470041334629, 0.0036047780886292458, 0.026530619710683823, -0.02142385020852089, 0.00494291540235281, 0.014487383887171745, -0.00842480268329382, -0.02388165332376957, 0.02450975961983204, -0.024496104568243027, -0.009803904220461845, -0.0009139955509454012, -0.002737719565629959, 0.03924292325973511, -0.021041525527834892, 0.024823812767863274, 0.001976483501493931, -0.02360856533050537, 0.011695046909153461, -0.019266445189714432, 0.006147921551018953, -0.004492318257689476, -0.014856054447591305, 0.01065730769187212, -0.014309876598417759, -0.025970786809921265, -0.010104302316904068, -0.0036150189116597176, 0.030777158215641975, 0.0001749477960402146, 0.012241225689649582, -0.024987665936350822, -0.006909157615154982, 0.0278824120759964, -0.023567602038383484, -0.005844109691679478, 0.004232883453369141, -0.026667164638638496, 0.003973448649048805, 0.0020072059705853462, 0.0006758958916179836, -0.0007868383545428514, -0.011776973493397236, -0.030367523431777954, -0.029357094317674637, 0.007305137347429991, -0.021219033747911453, 0.030149051919579506, -0.007885451428592205, -0.010418354533612728, -0.0001478522171964869, -0.011722356081008911, 0.014637582935392857, 0.007298309821635485, -0.008165367878973484, 0.021792521700263023, 0.009237243793904781, 0.03184220567345619, 0.008575002662837505, 0.00451279990375042, 0.029520947486162186, 0.027622977271676064, 0.023745110258460045, -9.376775415148586e-05, 0.014582965523004532, 0.01668575219810009, 0.011271758005023003, -0.007905934005975723, 0.002833300968632102, 0.01709538698196411, 0.009346479550004005, 0.022420626133680344, -0.03353535756468773, 0.02120538055896759, 0.0006767492741346359, 0.0028913323767483234, -0.03667588531970978, -0.0369216650724411, -0.0019372268579900265, 0.005489093717187643, 0.001944054034538567, 0.004799543414264917, -0.010111128911376, 0.00897098146378994, 0.005611984059214592, 0.002609709044918418, -0.010179401375353336, 0.0022495726589113474, -0.004656171426177025, -0.018296979367733, 0.01068461686372757, 0.026871981099247932, 0.023635873571038246, -0.0008708986570127308, 0.009189452975988388, -0.033753830939531326, -0.0023809969425201416, 0.008322394452989101, -0.02034514769911766, 0.0023536880034953356, 0.017286548390984535, -0.011585811153054237, -0.01628977246582508, 0.019730698317289352, -0.01191351842135191, -0.01213881652802229, 0.0341634638607502, -0.019758006557822227, -0.017860036343336105, -0.022256772965192795, -0.04667095094919205, -0.030203670263290405, 0.006178644020110369, 0.024700921028852463, 0.0037856996059417725, -0.000891807081643492, 0.0032787777017802, -0.012944430112838745, 0.001577090355567634, -0.0016957134939730167, 0.053170476108789444, -0.005652947351336479, 0.03074984811246395, 0.021014217287302017, -0.010008720681071281, -0.01788734458386898, -0.005564193241298199, 0.014678547158837318, 0.029329784214496613, 0.01177014596760273, 0.00026114159845747054, -0.006533659994602203, -0.004103166051208973, -0.010650480166077614, 0.0033419295214116573, -0.02668081969022751, -0.03257954493165016, 0.012855676002800465, 0.0183515977114439, 0.00471420306712389, -0.0031524738296866417, 0.0073119644075632095, 0.0030005681328475475, 0.01880219392478466, -0.019334718585014343, -0.008062959648668766, -0.009735631756484509, 3.5416262107901275e-05, -0.032251838594675064, 0.02685832604765892, 0.010739234276115894, 0.03561083599925041, 0.009824385866522789, 0.005270622204989195, 0.0037686314899474382, -0.011592638678848743, -0.03301648795604706, 0.01896604709327221, -0.01102597825229168, -0.012411906383931637, -0.021055180579423904, -0.002247865777462721, 0.017518674954771996, -0.005140904802829027, -0.0009549589594826102, -0.0107460618019104, 0.0170817319303751, 0.028619753196835518, -0.0003183196531608701, -0.03263416513800621, -0.024482451379299164, -0.014937981963157654, -0.03165104240179062, 0.011565329506993294, -0.01903432048857212, 0.02183348499238491, 0.0029749658424407244, -0.0033231547567993402, 0.0035604010336101055, -0.0010880898917093873, -0.014009478501975536, -0.015074525959789753, -0.01770983822643757, -0.020263221114873886, -0.026435038074851036, 0.016276119276881218, 0.015784557908773422, -0.01577090285718441, -0.014378148131072521, -0.030941011384129524, -0.018733922392129898, 0.003591123502701521, -0.00854086596518755, -0.01040470041334629, 0.01846083253622055, 0.021737903356552124, 0.016043992713093758, 0.011893036775290966, 0.004813198000192642, 0.009728804230690002, -0.032770708203315735, 0.010841642506420612, 0.004649344366043806, -0.0002822633250616491, 0.03307110816240311, -0.007305137347429991, -0.031869515776634216, -0.018925083801150322, -0.03189682215452194, -0.0041748518124222755, -0.009592259302735329, 0.012152471579611301, 0.01799658127129078, 0.034436553716659546, 0.022953150793910027, -0.0010471265995875, 0.004198747221380472, 0.02599809505045414, -0.01743674837052822, -0.020836709067225456, 0.037167444825172424, -0.003983689472079277, 0.02445514127612114, 0.01765521988272667, -0.003908589947968721, 0.0049633970484137535, -0.0619366392493248, -0.022871224209666252, -0.028128191828727722, 0.0029835000168532133, -0.032142605632543564, -0.010029202327132225, 0.009578605182468891, -0.00013121085066813976, -0.012664513662457466, 0.009244070388376713, -0.03566545620560646, 0.006878435146063566, -0.010295464657247066, 0.01022719219326973, -0.018897775560617447, 0.0059601725079119205, -0.040881458669900894, -0.0021847139578312635, 0.008916364051401615, 0.0463978610932827, 0.002925468608736992, -0.0214375052601099, 0.005533470772206783, 0.025738660246133804, 0.037003591656684875, -0.016876915469765663, -0.020986909046769142, 0.017737146466970444, -0.030558686703443527, -0.021915411576628685, -0.014692201279103756, -0.007926415652036667, 0.009360133670270443, 0.01017257384955883, 0.02635311149060726, 0.010650480166077614, 0.029821345582604408, 0.007236864883452654, -0.03318034112453461, -0.014036786742508411, -0.022529862821102142, 0.03274340182542801, 0.005659774411469698, 0.007393891457468271, -0.029684800654649734, -0.02902938611805439, 0.010759715922176838, 0.0005107622127979994, 0.029111312702298164, 0.033972300589084625, -0.005250140558928251, 0.012493832968175411, -0.007899106480181217, -0.007025220897048712, 0.00432846462354064, -0.012855676002800465, -0.0077693890780210495, -0.014146022498607635, 0.00012257012713234872, -0.0008943672874011099, 0.007352927699685097, -0.030585994943976402, -0.01611226610839367, 0.019621461629867554, -0.037577081471681595, 0.0046322764828801155, -0.01921182870864868, -0.04153687506914139, -0.005454957485198975, -0.020440729334950447, 0.003224159823730588, -0.0066497232764959335, 0.0019508813275024295, 0.019744351506233215, -0.01725924015045166, -0.017586946487426758, -0.024878429248929024, 0.01148340292274952, -0.01428256742656231, 0.004420632030814886, 0.01280105859041214, 0.013845624402165413, -0.012357288040220737, -0.03312572464346886, 0.028100883588194847, -0.023854345083236694, 0.024700921028852463, -0.021068835631012917, -0.00026711542159318924, -0.037631697952747345, 0.038095951080322266, 0.001217807293869555, 0.00018326847930438817, 0.02416839823126793, -0.012541623786091805, 0.021410197019577026, -0.01532030664384365, -0.01277374941855669, -0.010008720681071281, -0.01077337097376585, 0.02748643234372139, -0.0077147711999714375, 0.003898348892107606, 0.005659774411469698, -0.005997722502797842, 0.005738287698477507, -0.04841872304677963, 0.0016513365553691983, 0.2090771198272705, 0.015688976272940636, 0.028728988021612167, 0.04170072823762894, -0.0010215244255959988, 0.035283129662275314, 0.008499902673065662, 0.004567417781800032, -0.01805119961500168, 0.011776973493397236, -0.014077750034630299, 0.02280295081436634, -0.02673543617129326, 0.0153476158156991, 0.014064095914363861, 0.0026438452769070864, 0.004321637097746134, -0.06494062393903732, -0.003860799130052328, -0.00948985107243061, -0.00911435391753912, 0.0032105054706335068, -0.005885072983801365, 0.0031115105375647545, 0.0309137012809515, -0.01182476431131363, 0.005123836919665337, -0.03653934225440025, 0.038095951080322266, 0.0018689545104280114, -0.018187742680311203, -0.01077337097376585, 0.009394270367920399, -0.006342497654259205, -0.03667588531970978, 0.002471457701176405, 0.006782853975892067, 0.010889433324337006, 0.0024322010576725006, 0.00712762912735343, 0.003908589947968721, -0.02696756273508072, -0.008370185270905495, -0.0021113213151693344, 0.011845245957374573, 0.016945187002420425, 0.0033863065764307976, -0.01770983822643757, 0.00976976752281189, 0.010240846313536167, -0.02348567545413971, -0.02251620776951313, 0.0008342022774741054, -0.015443196520209312, -0.027390850707888603, -0.016781333833932877, -0.016125919297337532, -1.6614707419648767e-05, 0.03298918157815933, 0.034026920795440674, -0.00017857475904747844, 0.044322382658720016, 0.0038949353620409966, 0.011012324132025242, -0.0033419295214116573, 0.025506535544991493, -0.046479787677526474, 0.012753267772495747, 0.016945187002420425, -0.02257082611322403, -0.017791764810681343, -0.02508324757218361, -0.017136350274086, 0.006120612844824791, -0.03367190435528755, -0.005895313806831837, 0.024605341255664825, -0.0038949353620409966, -0.0012963204644620419, 0.012050062417984009, -0.009503505192697048, -0.0019781901501119137, -0.0038812807761132717, 0.01736847497522831, -0.01652189902961254, -0.014842400327324867, 0.04246537759900093, 0.002191541250795126, -0.01571628637611866, -0.01618053764104843, -0.01953953504562378, -0.012842021882534027, -0.002696756273508072, 0.011189831420779228, 0.03364459425210953, 0.008301912806928158, -0.0024202533531934023, 0.01697249710559845, -0.01188620924949646, 0.018720267340540886, 0.0011580691207200289, 0.07422565668821335, 0.006554141640663147, 0.0029783796053379774, -0.019867243245244026, -0.0008487101877108216, 0.009967757388949394, 0.03582930937409401, 0.00020417687483131886, -0.045797064900398254, 0.0016513365553691983, -0.005332067608833313, -0.009407924488186836, 0.002683101687580347, 0.013995823450386524, 0.009196280501782894, -0.02588886022567749, -0.02572500705718994, 0.016125919297337532, 0.01359984464943409, -0.0015403940342366695, -0.01382514275610447, -0.0005026548751629889, 0.01828332431614399, -0.007639671675860882, -0.023676836863160133, -0.023854345083236694, 0.005383271723985672, 0.00651317834854126, -0.021000562235713005, 0.010705098509788513, -0.03165104240179062, -0.00020471026073209941, 0.009250897914171219, -0.02090498059988022, -0.003430683631449938, -0.0027069970965385437, -0.030777158215641975, -0.018419869244098663, -0.002136923372745514, 0.0021437506657093763, 0.00767380790784955, 0.003512610448524356, 0.024837465956807137, 0.03233376517891884, -0.02829204499721527, -0.012480177916586399, -0.01222757063806057, 8.640714077046141e-05, -0.017682528123259544, 0.021737903356552124, -0.016835952177643776, 0.0008798593771643937, -0.027281615883111954, 0.002795751206576824, -0.013770525343716145, -0.0027872170321643353, -0.02834666334092617, 0.014159677550196648, 0.0337265208363533, -0.01459661964327097, -0.015047216787934303, -0.01605764776468277, -0.004854161292314529, -0.001302294316701591, -0.02823742851614952, -0.17007997632026672, 0.012671341188251972, 0.015538778156042099, -0.006564382463693619, 0.008383839391171932, 0.010875779204070568, 0.029384402558207512, -0.003457992570474744, -0.0074348547495901585, 0.007271001115441322, 0.020276876166462898, -0.01896604709327221, -0.012534796260297298, 0.0035330920945852995, -0.0013031477574259043, -0.007967378944158554, 0.009134835563600063, -0.01851545087993145, 0.01443276647478342, 0.023977234959602356, 0.002520955167710781, -0.00960591435432434, 0.026039058342576027, 0.018269671127200127, 0.03236107528209686, 0.0033692384604364634, -0.008363357745110989, 0.015006253495812416, 0.013306273147463799, -0.032197222113609314, 0.004465009085834026, 0.017122695222496986, 0.0015352736227214336, 0.012630377896130085, 0.020386110991239548, 0.020932290703058243, 0.013565707951784134, -0.03126871958374977, 0.008595484308898449, 0.0012468231143429875, 0.0403352826833725, 0.04153687506914139, -0.013156074099242687, 0.002292242832481861, 0.019334718585014343, 0.01511548925191164, -0.002906693611294031, -0.023622218519449234, -0.01770983822643757, -0.008848091587424278, 0.03274340182542801, -0.012398251332342625, -0.0003447751805651933, -0.007387063931673765, 0.04006219282746315, -0.01071875263005495, -0.0013714199885725975, -0.00968101341277361, -0.006407356355339289, 0.017300203442573547, 0.005335480906069279, -0.03034021519124508, 0.0001247036416316405, 0.005809973459690809, -0.013108283281326294, -0.029247857630252838, -0.01914355531334877, 0.03896983340382576, -0.03555621951818466, -0.008117577992379665, -0.038833290338516235, -0.010411527007818222, 0.026871981099247932, 0.02565673366189003, 0.011736010201275349, 0.06057119369506836, -0.02165597677230835, 0.02235235460102558, -0.007885451428592205, -0.027404505759477615, -0.004021239001303911, 0.02147846855223179, 0.004492318257689476, -0.0010727286571636796, 0.016726715490221977, -0.003700359258800745, -0.0138865876942873, -0.0034870081581175327, 0.0030329974833875895, -0.022953150793910027, 0.006212780252099037, -0.029111312702298164, 0.004611794371157885, -0.012097853235900402, -0.005598329473286867, 0.015252034179866314, -0.025055937469005585, -0.03582930937409401, 0.0262848399579525, -0.03006712533533573, -0.005342308431863785, -0.006267398130148649, 0.010350082069635391, -0.013709080405533314, -0.014364494010806084, 0.01323117408901453, -0.026134639978408813, 0.006209366489201784, 0.029684800654649734, -0.006390288472175598, -0.00548567995429039, -0.00011446279677329585, -0.007953723892569542, 0.04691673070192337, 0.0026557929813861847, 0.038095951080322266, -0.009667359292507172, -0.018242361024022102, 0.028155500069260597, -0.021287307143211365, 0.04784523695707321, -0.012070544064044952, -0.0016649910248816013, 0.019525879994034767, 0.021574050188064575, -0.013278963975608349, -0.09902215749025345, -0.038095951080322266, 0.024250324815511703, 0.017409438267350197, -0.014446420595049858, 0.012077371589839458, -0.01828332431614399, 0.02085036411881447, -0.02479650266468525, 0.017272895202040672, 0.003227573586627841, -0.028428589925169945, -0.021915411576628685, 0.0013688597828149796, 0.0067009273916482925, -0.008254121989011765, -0.0029322956688702106, -0.009162143804132938, -0.011223968118429184, 0.00988583080470562, -0.008643274195492268, -0.00799468718469143, 0.0005815947661176324, 0.00767380790784955, -0.010896260850131512, -0.006229848135262728, -0.01817408949136734, 0.009640050120651722, 0.025451917201280594, 0.02393627166748047, 0.007359755225479603, 0.0003976862062700093, -0.003434097161516547, -0.027622977271676064, -0.0085135567933321, 0.02269371598958969, -0.012787403538823128, 0.013251655735075474, 0.049975331872701645, -0.003836903953924775, -0.011729182675480843, -7.827313311281614e-06, 0.0026165363378822803, -0.0010889433324337006, -0.007776216138154268, -0.00043566268868744373, -0.007619190029799938, 0.005366203375160694, -0.011927172541618347, -0.02239331789314747, -0.022830260917544365, -0.005359376315027475, -0.026271184906363487, 0.004150956403464079, 0.00418850639835, -0.02486477605998516, 0.016658443957567215, -0.018720267340540886, -0.005932863801717758, 0.0019508813275024295, 0.0031883169431239367, 0.0123436339199543, -0.023581255227327347, 0.004840506706386805, 0.009592259302735329, 0.012527968734502792, -0.012473351322114468, 0.0016632841434329748, 0.00038403173675760627, -0.015688976272940636, 0.011872555129230022, 0.01955319009721279, -0.018474487587809563, 0.03326227143406868, -0.004779061768203974, 0.0017682528123259544, 0.00683064479380846, -0.021587705239653587, 0.00503166951239109, 0.0009336238726973534, -0.03656664863228798, -0.011722356081008911, -0.016084956005215645, -0.03869674727320671, 0.004219228867441416, 0.015497814863920212, -0.015033562667667866, -0.0014678547158837318, 0.02199733816087246, -0.045633211731910706, 0.0021352164912968874, 0.0037856996059417725, 0.05805877223610878, -0.013333582319319248, 0.01551146898418665, 0.04290232062339783, 0.012876157648861408, -0.008916364051401615, 0.02165597677230835, -0.003922244068235159, -0.06554141640663147, -0.018774885684251785, -0.061226606369018555, 0.014705855399370193, -0.012159298174083233, -0.008786646649241447, -0.00377887231297791, -0.005874832160770893, 0.03727668151259422, -0.014200640842318535, 0.006410770118236542, -0.02674909122288227, -0.043120790272951126, 0.005598329473286867, -0.00289303925819695, -0.006178644020110369, -0.020031096413731575, -0.028264736756682396, 0.009783421643078327, -0.020618237555027008, 0.03184220567345619, 0.008192677050828934, 0.005830455105751753, -0.007653325796127319, 0.022789297625422478, 0.020440729334950447, 0.01806485280394554, -0.03607508912682533, 0.003452872158959508, 0.02823742851614952, -0.01149022951722145, 0.011319548822939396, 0.02892015129327774, 0.001889436156488955, -0.0016837659059092402, 0.007844488136470318, 0.016043992713093758, 0.014077750034630299, -0.008049305528402328, 0.004028066527098417, 0.023526638746261597, 0.00377887231297791, 0.006530246697366238, -0.031104864552617073, 0.008103922940790653, -0.03719475492835045, -0.04041720926761627, -0.005134077742695808, 0.00976976752281189, 0.01948491670191288, 0.01616688258945942, -0.013982169330120087, 0.03432731702923775, 0.019334718585014343, 0.02050900273025036, -0.03389037400484085, -0.003833490191027522, -0.010322772897779942, -0.006492696702480316, -0.012084199115633965, -0.022994114086031914, -0.0026762746274471283, 0.029056696221232414, -0.013791006989777088, -0.013251655735075474, -0.002425373764708638, -0.004973637871444225, -0.039570629596710205, -0.030531376600265503, -0.007598708383738995, -0.013934378512203693, 0.01532030664384365, -0.010889433324337006, -0.00865692924708128, 0.006735063623636961, 0.00040622023516334593, 0.04041720926761627, 0.002985206665471196, -0.024537067860364914, -0.013784179463982582, -0.040662989020347595, 0.0028964527882635593, 0.03640279546380043, -0.012487005442380905, -0.017177313566207886, -0.012295843102037907, 0.02571135200560093, -0.02012667804956436, -0.023212585598230362, 0.0018160435138270259, 0.0031115105375647545, 0.01645362749695778, -0.018296979367733, 0.03301648795604706, -0.014610274694859982, -0.016549207270145416, 0.007428027223795652, 0.028674369677901268, 0.008930018171668053, 0.009660531766712666, 0.005274035967886448, -0.006939880549907684, -0.00031341257272288203, 0.003690118435770273, -0.01959415338933468, 0.011223968118429184, -0.0262848399579525, -0.013224346563220024, -0.02400454506278038, -0.0019560016226023436, -0.014378148131072521, 0.03206067532300949, 0.0017119281692430377, 0.027636630460619926, 0.014350839890539646, 0.01605764776468277, -0.01656286232173443, -0.002724065212532878, 0.006461974233388901, -0.001623174175620079, -0.01925279200077057, 0.011927172541618347, -0.020099367946386337, -0.0012331686448305845, 0.008486248552799225, 0.008766165003180504, 0.035583529621362686, 0.019184518605470657, 0.0061888848431408405, -0.007748907431960106, -0.00621619401499629, 0.03039483353495598, -0.01097135990858078, 0.0005359376664273441, -0.014555656351149082, -0.04465009272098541, 0.01611226610839367, -0.033453430980443954, 0.019566843286156654, 0.03490080684423447, 0.001090650213882327, 0.06941928714513779, 0.0066463095135986805, 0.00555736618116498, 0.010466145351529121, -0.00036589690716937184, 0.024960355833172798, 0.0497022420167923, 0.00027906306786462665, -0.02011302299797535, -0.015620704740285873, 0.008964153937995434, -0.00551298912614584, -0.008506730198860168, -0.027390850707888603, 0.01277374941855669, -0.005321826785802841, -0.027513740584254265, -0.016535554081201553, -0.02674909122288227, 0.004611794371157885, 0.008042478002607822, 0.02612098678946495, 0.01594841107726097, -0.02542460896074772, -0.023977234959602356, -0.006380047649145126, -0.020618237555027008, -0.003388013457879424, -0.009250897914171219, -0.04402198642492294, 0.03356266766786575, -0.0045776586048305035, -0.030476760119199753, -0.043175410479307175, 0.00575876934453845, 0.01566166803240776, -0.022325046360492706, 0.0022683474235236645, 0.006956948433071375, -0.008977808989584446, -0.014719510450959206, 0.009838039986789227, -0.01805119961500168, -0.06652454286813736, -0.019785314798355103, -0.026544274762272835, -0.0018467659829184413, -0.018433524295687675, -0.04161880165338516], "c8f16d49-c530-47af-a49c-3e0f2e6edac3": [-0.013893725350499153, -0.005217835307121277, 0.02173243835568428, -0.012021182104945183, -0.00173073576297611, 0.026461634784936905, -0.0048009552992880344, -0.01476165559142828, -0.030507422983646393, -0.02864854782819748, -0.0038612664211541414, 0.010353661142289639, -0.012465398758649826, 0.0047360314056277275, 0.008132578805088997, -0.00309755583293736, 0.012062186375260353, -0.007004952523857355, -0.003625490004196763, 0.00652656564489007, 0.02547752484679222, 0.02573722042143345, -0.015445065684616566, -0.03843497857451439, 0.005952501203864813, 0.01648384891450405, 0.006834100000560284, -0.009465228766202927, 0.006413802970200777, 0.0041346303187310696, 0.016456512734293938, -0.0018059109570458531, -0.03747820481657982, -0.00990944541990757, -0.03471722826361656, -0.013217149302363396, 0.0018178706523030996, 0.010326324962079525, 0.01853407919406891, -0.008822822943329811, 0.04092258960008621, 0.025682548061013222, 0.01107807643711567, 0.017481626942753792, -0.00720314122736454, 0.026406962424516678, -0.013996236957609653, -0.027240723371505737, -0.01961386762559414, 0.004281563684344292, 0.017085250467061996, 0.01221937034279108, 0.015540743246674538, -0.008173584006726742, 0.007982228882610798, -0.021513747051358223, 0.021705102175474167, 0.01886211521923542, -0.02394668571650982, -0.01694856770336628, 0.004763367585837841, -0.022511525079607964, 0.005043565761297941, -0.0003241926315240562, -0.00191525649279356, 0.012971121817827225, 0.004483169410377741, 0.014802660793066025, -0.007572182919830084, 0.010832048021256924, 0.04335553199052811, 0.03977446258068085, -0.0039535267278552055, 0.031245505437254906, 0.02555953338742256, -0.018001019954681396, -0.0457884706556797, 0.013538352213799953, 0.005757729057222605, 0.012301379814743996, 0.027172381058335304, -0.0040184506215155125, -0.024206381291151047, -0.006007174029946327, -0.004062872380018234, 0.016224153339862823, 0.025094814598560333, 0.01914914883673191, -0.0015171702252700925, -0.01116008497774601, 0.026625653728842735, 0.029988029971718788, 0.0034990592394024134, 0.019012466073036194, 0.008590463548898697, 0.02722705341875553, -0.011276264674961567, 0.0066017406061291695, 0.026748666539788246, -0.04234408214688301, -0.007989062927663326, 0.027199717238545418, -0.020392954349517822, -0.005925164557993412, -0.00433965353295207, 0.0044284965842962265, 0.008105242624878883, -0.018342724069952965, -0.006181443575769663, 0.01670254021883011, -0.03914572298526764, 0.008494785986840725, 0.03376045450568199, -0.026789672672748566, -0.01511702872812748, -0.0008141121361404657, 0.03348708897829056, 0.02232016995549202, 0.012253541499376297, -0.02285323105752468, 0.01690756343305111, -0.011850329115986824, 0.02160942368209362, -0.022265497595071793, -0.010579186491668224, -0.012936951592564583, -0.035373300313949585, -0.014173923060297966, -0.001889628591015935, -0.002716554794460535, 0.020269939675927162, 0.022907903417944908, -0.013921061530709267, -0.0024910294450819492, -0.022579865530133247, -0.01607380248606205, -0.007401330396533012, -0.0051802475936710835, -0.022046806290745735, -0.018561415374279022, -0.012868610210716724, 0.015308383852243423, -0.005293010268360376, -0.012725094333291054, 0.00861779972910881, 0.019053470343351364, 0.014119250699877739, 0.026926353573799133, 0.008378606289625168, 0.021185709163546562, 0.0018093279795721173, 0.029249947518110275, -0.0018554581329226494, 0.008125744760036469, 0.0028617794159799814, -0.003037757473066449, -0.008494785986840725, 0.016101138666272163, 0.00928754173219204, -0.03318639099597931, -0.0017871171003207564, 0.014788992702960968, -0.0027763531543314457, 0.0032205695752054453, -0.025245165452361107, 0.029304619878530502, 0.010524514131247997, 0.026748666539788246, 0.003810010850429535, -0.0010994358453899622, 0.03452587127685547, -0.0009730049641802907, -0.0335690975189209, 0.014091914519667625, -0.017180927097797394, 0.018206043168902397, -0.011898168362677097, -0.007353491615504026, 0.0045549278147518635, -0.02594224363565445, -3.1260668038157746e-05, -0.011440283618867397, 0.02252519316971302, 0.02897658385336399, -0.030917467549443245, -0.006622242741286755, 0.029988029971718788, -0.0010661196429282427, 0.01603279821574688, -0.004503672011196613, 0.0037519210018217564, 0.01627882570028305, -0.0022227910812944174, 0.005723558831959963, -0.6044625043869019, -0.0018110364908352494, -0.025846567004919052, -0.027076704427599907, 0.002286006463691592, 0.012028016149997711, 0.001274559646844864, 0.0035537320654839277, -0.0014394322643056512, 0.034416526556015015, -0.013381167314946651, 0.010312656871974468, -0.005388687830418348, 0.013722872361540794, 0.0036289070267230272, -0.032995034009218216, 0.04097726196050644, -0.01232188194990158, -0.005361351650208235, 0.01086621917784214, 0.005033314693719149, 0.00826242659240961, -0.012977955862879753, 0.011433449573814869, 0.005973003339022398, 0.03993847966194153, -0.00038142819539643824, -0.026215607300400734, 0.04351954907178879, 0.028621211647987366, -0.00309755583293736, 0.004158549942076206, -0.01757730543613434, 0.016415508463978767, 0.025586869567632675, -0.015458733774721622, -0.008959504775702953, 0.021418068557977676, 0.0003722448891494423, 0.03876301646232605, 0.0001734152901917696, -0.01890312135219574, -0.02069365419447422, -0.005515118595212698, 0.01436527818441391, 0.00782504491508007, -0.03660343959927559, 0.026762334629893303, 0.007367159705609083, -0.026994694024324417, -0.0038886028341948986, 0.013681868091225624, 0.007442334666848183, -0.013415338471531868, 0.0008115493692457676, -0.018165037035942078, 0.012977955862879753, 0.009683920070528984, -0.011146416887640953, -0.019135480746626854, -0.007859215140342712, 0.01467964705079794, 0.014433619566261768, -0.010688532143831253, 0.002190329134464264, 0.021377064287662506, -0.029249947518110275, 0.006092600058764219, -0.0005129846394993365, -0.023714326322078705, 0.010148638859391212, -0.0012258667265996337, -0.019299497827887535, 0.007182639092206955, 0.008207754231989384, 0.0368221290409565, 0.034115828573703766, 0.01548607088625431, -0.005983254406601191, 0.01207585446536541, 0.011235260404646397, -0.017631977796554565, 0.020515969023108482, -0.020269939675927162, 0.037751566618680954, -0.009260205551981926, -0.017303941771388054, 0.00527934217825532, 0.019162816926836967, -0.019723212346434593, -0.0016162646934390068, 0.037614885717630386, -0.02714504487812519, -0.005617630202323198, -0.004124379251152277, 0.015964457765221596, -0.03452587127685547, -0.04360155761241913, 0.02985134907066822, -0.06445923447608948, -0.004343070555478334, -0.03772423043847084, -0.013798047788441181, 0.011802490800619125, -0.0006223302334547043, 0.030671440064907074, 0.005624464247375727, 0.03056209534406662, 0.0020826919935643673, -0.01843840256333351, -0.014652309939265251, -0.020625313743948936, 0.016770880669355392, 0.03348708897829056, 0.0003852723748423159, -0.020994355902075768, -0.008952670730650425, 0.019750548526644707, -0.024015028029680252, 0.0032957447692751884, 0.009376385249197483, 0.013176145032048225, 0.019367840141057968, 0.006359130144119263, 0.019012466073036194, 0.014898338355123997, 0.007688362617045641, 0.01249273493885994, -0.016183149069547653, -0.013688702136278152, 0.03739619627594948, 0.012704592198133469, 0.02335895411670208, -0.013962065801024437, 0.009506233036518097, -0.010845717042684555, 0.011522292159497738, 0.0015171702252700925, 0.0008256447035819292, -0.0002744318335317075, -0.018397396430373192, 0.008412777446210384, -0.010278486646711826, -0.013141973875463009, -0.021759774535894394, -0.027199717238545418, -0.014119250699877739, -0.008392274379730225, -0.01273876242339611, -0.009328546933829784, -0.0005659488961100578, -0.01778232865035534, -0.04663589969277382, 0.018206043168902397, -0.010182809084653854, -0.01932683400809765, -0.02714504487812519, -0.009738592430949211, -0.011330937966704369, 0.0021322392858564854, -0.0038851858116686344, 0.027883127331733704, -0.025381848216056824, -0.009752260521054268, -0.023550309240818024, -0.01334699708968401, -0.026365958154201508, 0.018766438588500023, -0.041660673916339874, -0.03367844596505165, -0.02203313820064068, -0.0015846568858250976, -0.007818209938704967, -0.0015923453029245138, -0.0038681006990373135, -0.015622752718627453, 0.0004425079678185284, 0.022511525079607964, -0.0004608746094163507, -0.018588751554489136, -0.003977446351200342, 0.009765928611159325, -0.007408164441585541, -0.02647530287504196, 0.002624294487759471, -0.0037519210018217564, -0.007948058657348156, 0.004551510792225599, -0.024097036570310593, 0.0008986841421574354, 0.028785228729248047, 0.007073293440043926, -0.026420630514621735, 0.0026089176535606384, -0.03638475015759468, 0.01090722344815731, -0.004893215373158455, 0.01869809813797474, 0.024889791384339333, 0.040567219257354736, 0.028293173760175705, -0.00791388750076294, 0.002309925854206085, -0.02115837298333645, 0.029113266617059708, 0.007790873758494854, 0.023673322051763535, -0.014078245498239994, 0.020720990374684334, 0.002327010966837406, 0.0016350584337487817, -0.01167947705835104, -0.026885349303483963, -0.022470520809292793, 0.02832050994038582, 0.022907903417944908, -0.01051084604114294, 0.01969587616622448, -0.004025284666568041, -0.01869809813797474, 0.0064035519026219845, 0.015540743246674538, 0.0001287800696445629, -0.0034033816773444414, 0.020515969023108482, 0.00970442220568657, 0.0047838701866567135, 0.0008235090645030141, -0.0030719279311597347, -0.03247564285993576, -0.014269600622355938, -0.012602080591022968, 0.013360665179789066, 0.001645309617742896, 0.03157354146242142, -0.006929777562618256, 0.04010250046849251, -0.00748333940282464, 0.038735680282115936, -0.02093968167901039, -0.00423714192584157, 0.0076815285719931126, -0.001961386762559414, -0.044202957302331924, -0.014693315140902996, -0.031956251710653305, 0.014734319411218166, 0.02669399417936802, -0.011037071235477924, 0.04081324487924576, 0.02189645543694496, 0.002627711510285735, -0.013059965334832668, 0.010524514131247997, -0.002279172418639064, -0.004804372321814299, 0.023714326322078705, 0.011727315373718739, 0.014119250699877739, 0.000708183622919023, -0.015800438821315765, -0.002781478688120842, 0.008645136840641499, 0.0019357588607817888, 0.02443874068558216, -0.0005228086374700069, -0.006953696720302105, -0.046280525624752045, 0.017262935638427734, -0.010367329232394695, -0.033541761338710785, -0.027582427486777306, -0.04004782438278198, -0.002832734491676092, 0.017221931368112564, 0.006854602135717869, -0.022716548293828964, 0.01794634573161602, 0.034416526556015015, -0.005477531347423792, -0.0038578493986278772, -0.029413966462016106, 0.014556633308529854, 0.025135818868875504, -0.012745596468448639, -0.00629762327298522, -0.01644284464418888, 0.023577645421028137, -0.00786604918539524, 0.028457192704081535, -0.005323763936758041, -0.014105582609772682, 0.015499738976359367, -0.008542625233530998, 0.004999144002795219, -0.019791552796959877, 0.01203485019505024, -0.014433619566261768, -0.015896117314696312, 0.00634887907654047, -0.007995896972715855, 0.0008781818323768675, -0.01192550454288721, -0.004838543012738228, 0.058390550315380096, 0.02944130264222622, -0.0002840422675944865, -0.022046806290745735, 0.0032513230107724667, -0.02539551630616188, -0.0050298976711928844, -0.00507773645222187, -0.018506743013858795, -0.012506403028964996, 0.0041824690997600555, 0.0032752424012869596, 0.023700658231973648, -0.009977785870432854, 0.00688193878158927, 0.0027045949827879667, -0.005091404542326927, -0.018342724069952965, -0.01886211521923542, -0.006444556172937155, 0.06970781832933426, 0.028375182300806046, 0.0016982738161459565, 0.011091744527220726, -0.025791892781853676, -0.0011899876408278942, -0.014419950544834137, -0.004148298874497414, 0.011590633541345596, -0.01849307492375374, -0.0006543650524690747, 0.006502646021544933, -0.004790704231709242, 0.013661365956068039, 0.030616767704486847, 0.027828454971313477, -0.025327173992991447, -0.036494094878435135, 0.03542797267436981, -0.030944805592298508, 0.01873910240828991, -0.014269600622355938, 0.013251319527626038, 0.015404061414301395, -0.030917467549443245, 0.0023816837929189205, 0.014474623836576939, -0.004343070555478334, 0.021295055747032166, -0.016333498060703278, -0.02085767313838005, 0.01323765143752098, 0.01853407919406891, 0.016333498060703278, -0.0013642571866512299, 0.03559199348092079, 0.0317375585436821, 0.0014249098021537066, 0.019463516771793365, -0.02456175535917282, 0.02207414247095585, -0.008153080940246582, 0.008590463548898697, 0.0072578140534460545, -0.0021254050079733133, 0.005815818905830383, -0.0003583631187211722, 0.017850669100880623, 0.0041824690997600555, 0.007626855745911598, -0.002183494856581092, -0.012526905164122581, -0.026338621973991394, -0.00505039980635047, 0.010490343905985355, -0.01432427391409874, 0.005361351650208235, -0.01559541653841734, -0.01786433719098568, -0.019832558929920197, -0.03367844596505165, -0.02181444689631462, -0.01136510819196701, -0.016087470576167107, 0.011836661025881767, -0.01837006025016308, -0.011050739325582981, 0.007845547050237656, -0.0026977609377354383, -0.02698102593421936, 0.027883127331733704, -0.021172041073441505, -0.00822142232209444, -0.029796676710247993, -0.01090722344815731, -0.00882965698838234, 0.02077566459774971, 0.006215613801032305, 0.00702545465901494, -0.005214418284595013, 0.004879547283053398, -0.036248065531253815, 0.00012632407015189528, -0.00832393392920494, 0.011440283618867397, 0.00571330776438117, 0.019846227020025253, 0.0398838073015213, 0.0017956597730517387, 0.019244825467467308, -0.009677086025476456, -0.003765589091926813, -0.00036412940244190395, -0.02282589301466942, -0.00811891071498394, 0.019764216616749763, 0.019244825467467308, 0.011583799496293068, -0.005460445769131184, -0.008440113626420498, 0.0032461974769830704, -0.02386467717587948, -0.005241754464805126, -0.008276094682514668, -0.0025149488355964422, -0.019244825467467308, 0.0014949593460187316, 0.02564154379069805, -0.02040662243962288, 0.0063557131215929985, 0.027760114520788193, -0.027049368247389793, 0.00791388750076294, 0.002371432725340128, -0.01627882570028305, 0.011836661025881767, -0.0058807432651519775, 0.03239363431930542, 0.005973003339022398, -0.04300015792250633, -0.003584485501050949, -0.02386467717587948, 0.018930457532405853, 0.01132410392165184, -7.335979171330109e-05, -0.0008730562985874712, 0.0010644110152497888, -0.025586869567632675, 0.005002561025321484, -0.0063727982342243195, 0.012253541499376297, -0.015540743246674538, -0.008508454076945782, -0.03146419674158096, -0.01370237022638321, 0.008166749030351639, -0.01778232865035534, -0.02020159922540188, -0.019682208076119423, -0.010114467702805996, -0.0011207923525944352, -0.003487099427729845, 0.016579527407884598, -0.01193233858793974, -0.010196477174758911, -0.02976933866739273, -0.02531350590288639, 0.02677600458264351, 0.01857508346438408, 0.027322731912136078, -0.01305313128978014, 0.017098918557167053, -0.012082688510417938, -0.00964291486889124, 0.015062356367707253, 0.020830336958169937, -0.0030873047653585672, 0.03190157935023308, 0.008419611491262913, 0.01528104767203331, 0.038161613047122955, -0.018083028495311737, 0.018260715529322624, 0.02018793113529682, 0.02394668571650982, 0.008030067197978497, -0.014624973759055138, -0.010483508929610252, -0.008399108424782753, -0.019313165917992592, -0.008187252096831799, 0.00928754173219204, 0.02282589301466942, 0.01238338928669691, -0.02439773641526699, 0.011952840723097324, -0.003145394613966346, 0.031136158853769302, -0.033705782145261765, -0.01939517632126808, -0.011911836452782154, 0.014037241227924824, -0.009048348292708397, 0.00026097719091922045, -0.0025200743693858385, -0.022388512268662453, 0.015513407066464424, -0.003488807938992977, -0.005747477989643812, -0.02252519316971302, -0.0072236438281834126, -0.02160942368209362, 0.017385950312018394, 0.025163156911730766, 0.023331617936491966, -0.004021867644041777, -0.009301209822297096, -0.030534759163856506, 0.020515969023108482, -0.01528104767203331, -0.006591489538550377, 0.03556465730071068, -0.002501280512660742, -0.020420290529727936, -0.00332649820484221, 0.04256277531385422, -0.03138218820095062, -0.02577822469174862, 0.02460275962948799, -0.032666996121406555, -0.021923793479800224, -0.002894241362810135, -0.01735861413180828, -0.03269433602690697, -0.014529296196997166, 0.005665468983352184, -0.006581238470971584, 0.0025576618500053883, -0.00497522484511137, -0.037778906524181366, -0.004599349107593298, 0.002272338140755892, 0.07123865932226181, 0.004766784608364105, 0.02606525644659996, 0.022579865530133247, -0.02185545116662979, -0.00423714192584157, 0.014898338355123997, 0.04931486397981644, 0.017180927097797394, 0.015568079426884651, 0.0019015882862731814, -0.02602425217628479, 0.0007726804469712079, 0.014337942004203796, 0.011918670497834682, -0.02189645543694496, -0.027199717238545418, 0.009540403261780739, 0.03922773525118828, -0.00300871254876256, -0.028839901089668274, 0.023085590451955795, -0.03630273789167404, 0.02652997523546219, -0.004759950563311577, 0.0038441813085228205, 5.648810838465579e-05, -0.02177344262599945, -0.02944130264222622, 0.03490858152508736, -0.012041684240102768, 0.028621211647987366, -0.00036626504152081907, -0.005689388141036034, -0.0028105236124247313, -0.011392444372177124, -0.020707322284579277, 0.012410725466907024, 0.007989062927663326, 0.006314708385616541, -0.0032308208756148815, -0.03160087764263153, 0.0011558171827346087, 0.0017871171003207564, 0.012800268828868866, -0.014501960016787052, 0.026297615841031075, 0.029659993946552277, -0.022265497595071793, -0.02215615287423134, 0.0017392784357070923, 0.0015086275525391102, -0.026502639055252075, 0.02036561816930771, -0.02106269635260105, 1.0311215419278597e-06, 0.018998797982931137, 0.009711256250739098, 0.0068785217590630054, -0.003738252678886056, -0.0076678600162267685, -0.003854432376101613, -0.015212706290185452, 0.002436356619000435, -0.024753110483288765, 0.011235260404646397, -0.006642745342105627, -0.04116861894726753, -0.018725434318184853, -0.046690572053194046, 0.0023919350933283567, 0.0006731588509865105, -0.010469840839505196, -0.028211165219545364, 7.095717592164874e-05, 0.03408849239349365, -0.0065060630440711975, -0.0015547577058896422, -0.016811886802315712, 0.00984793808311224, -0.048440102487802505, 0.0017939512617886066, 0.004155132919549942, -0.002209122758358717, 0.01977788470685482, -0.002420980017632246, -0.022306501865386963, -0.01640184037387371, -0.02747308276593685, 0.006738422438502312, -0.012711426243185997, 0.013285490684211254, 0.015253711491823196, 0.019422512501478195, 0.022784888744354248, -0.0034085074439644814, -0.028839901089668274, 0.014843665063381195, 0.004794121254235506, -0.012335550040006638, 0.004069706425070763, -0.024971801787614822, 0.00882965698838234, 0.011023403145372868, 0.0027250973507761955, -0.0019682208076119423, -0.05038098618388176, -0.01670254021883011, -0.03403381630778313, 0.030042704194784164, 0.013996236957609653, 0.010832048021256924, -0.02465743198990822, 0.0017145047895610332, -0.02207414247095585, 0.014214928261935711, -0.009560906328260899, -0.00755851436406374, -0.012759264558553696, -0.0019477184396237135, -0.022060474380850792, -0.007859215140342712, -0.02547752484679222, -0.0064206370152533054, -0.008112076669931412, 0.03971979022026062, -0.024739442393183708, -0.007141634356230497, -0.0012608914403244853, 0.021172041073441505, 0.03001536801457405, -0.03181957080960274, -0.028047146275639534, -0.003724584588780999, -0.020215267315506935, -0.013353831134736538, -0.00815991498529911, 0.005190499126911163, 0.008822822943329811, 0.013962065801024437, -0.0036323240492492914, -0.0033435833174735308, -0.0064206370152533054, 0.01228087767958641, -0.02944130264222622, -0.01731760986149311, 0.0008482826524414122, 0.03318639099597931, -0.00980693381279707, 0.005870491731911898, -0.020092254504561424, -0.011392444372177124, -0.0039159394800662994, 0.035783346742391586, 0.01623782142996788, 0.02826583757996559, -0.011686311103403568, 0.0014906880678609014, -0.016128476709127426, 0.009861606173217297, 0.017891673371195793, 0.020926013588905334, -0.01590978540480137, 0.002077566459774971, 0.004739448428153992, -0.004493420943617821, -0.003994531463831663, -0.003649409394711256, 0.012875444255769253, -0.0013360665179789066, -0.019805220887064934, 0.020119590684771538, -0.02031094580888748, -0.01957286149263382, 0.014898338355123997, -0.007244145963340998, 0.010483508929610252, -0.005122157745063305, 0.019162816926836967, 0.027131376788020134, 0.0021510329097509384, 0.02024260349571705, -0.0029779591131955385, 0.017262935638427734, -0.016579527407884598, 0.018260715529322624, -0.012082688510417938, -0.008904832415282726, -0.009321711957454681, -0.04783869907259941, 0.029331957921385765, -0.01623782142996788, 0.007408164441585541, -0.016415508463978767, -0.020707322284579277, -0.030343404039740562, 0.045815806835889816, -0.0018793775234371424, 0.004585681017488241, 0.007831878960132599, -0.027213385328650475, 0.014871001243591309, 0.0010080297943204641, -0.007893385365605354, -0.01770031824707985, 0.004715528804808855, -0.01578677073121071, -0.0013531517470255494, 0.008665638975799084, -0.007264648098498583, -0.006711086258292198, 0.006663247477263212, -0.03176489844918251, -0.008733979426324368, 0.19605666399002075, 0.01670254021883011, 0.0031966501846909523, 0.05541088432073593, -0.00037544837687164545, 0.02248418889939785, 0.03048008680343628, -0.0038886028341948986, -0.006393300369381905, 0.016292493790388107, -0.005070902407169342, 0.0029950442258268595, -0.017837001010775566, 0.010572352446615696, 0.009588242508471012, -0.0017649063374847174, -0.006827265955507755, -0.04745598882436752, -0.02128138765692711, -0.02102169208228588, 0.02398769184947014, 0.0012267209822311997, -0.006468475796282291, -0.03389713540673256, 0.03739619627594948, -0.003305995836853981, 0.008959504775702953, -0.007367159705609083, 0.045952487736940384, 0.02598324790596962, -0.008460615761578083, 0.008358104154467583, 0.009923113510012627, -0.01660686358809471, -0.02482145093381405, 0.0033008703030645847, 0.01319664716720581, 0.005600545089691877, 0.0010439087636768818, -0.009984619915485382, 0.009103021584451199, -0.03635741025209427, 0.0003062531177420169, -0.012123693712055683, 0.05062701180577278, 0.02832050994038582, -0.002528616925701499, 0.01994190365076065, -0.017891673371195793, 0.021254051476716995, -0.01569109410047531, -0.03512727469205856, 0.011064407415688038, 0.0030838875100016594, 0.010175975039601326, -0.005470696836709976, -0.005767980590462685, -0.020037580281496048, 0.027555091306567192, 0.02374166250228882, 0.013982568867504597, 0.052403878420591354, -0.0032069014851003885, 0.003700665198266506, -0.0017145047895610332, 0.02040662243962288, -0.04529641568660736, 0.02897658385336399, -0.01273876242339611, 0.00026823842199519277, -0.023536641150712967, 0.005238337442278862, -0.00980693381279707, 0.01172048132866621, -0.03559199348092079, -0.031546205282211304, 0.04792070761322975, -0.0005732101271860301, 0.005166579503566027, 0.027158712968230247, -0.023919349536299706, 0.012731928378343582, 0.01548607088625431, 0.011194256134331226, -0.011658974923193455, -0.03898170590400696, 0.016087470576167107, 0.0011225008638575673, 0.0031146411783993244, -0.0009157693712040782, -0.00762002170085907, -0.01831538788974285, -0.0011891333851963282, 0.021554751321673393, -0.007196307182312012, 0.008364938199520111, 0.010606523603200912, 0.032120268791913986, -0.0016675203805789351, 0.002169826766476035, -0.01305313128978014, 0.0472099632024765, -0.007743035443127155, 0.014529296196997166, -0.014665978960692883, -0.00411071116104722, -0.0010763707105070353, 0.023960353806614876, -0.010750039480626583, 0.0026550479233264923, -0.01020331121981144, -0.014119250699877739, 0.006499228999018669, 0.014816328883171082, -0.002875447506085038, 0.0013369207736104727, 0.0039842803962528706, -0.010271652601659298, 0.012745596468448639, -0.005699639208614826, 0.013750209473073483, -0.00017928834131453186, 0.02160942368209362, -0.007640523836016655, -0.00833076797425747, -0.03280368074774742, -0.04734664410352707, -0.007278316654264927, -0.0017444039694964886, 0.0006018279236741364, 0.012547407299280167, -0.03734152391552925, 0.020543305203318596, -0.02777378261089325, -0.03031606785953045, -0.01090722344815731, -0.008597297593951225, -0.006000339984893799, -0.015404061414301395, -0.012274043634533882, 0.0018879200797528028, -0.012649918906390667, -0.005545872263610363, 0.015923453494906425, 0.017208263278007507, -0.037532877177000046, -0.009267039597034454, -0.015663757920265198, 0.00016893040447030216, -0.027336400002241135, -0.006557318847626448, -0.00945156067609787, -0.011939172632992268, -0.019600199535489082, -0.003926190547645092, -0.03859899565577507, -0.0036801628302782774, -0.03351442515850067, 0.01670254021883011, -0.01819237507879734, -0.01927216164767742, -0.0006787115707993507, 0.002689218381419778, -0.02374166250228882, -0.01009396556764841, -0.006249784491956234, -0.17221932113170624, 0.018957793712615967, 0.010230647400021553, -0.02398769184947014, 0.0010225522564724088, -0.005593711044639349, 0.03518194705247879, -0.014214928261935711, -0.0061267707496881485, -0.001619681715965271, 0.012923283502459526, 0.0020433960016816854, -0.02460275962948799, -0.024288391694426537, -0.01898512989282608, -0.003440969390794635, 0.004117545206099749, -0.02185545116662979, 0.020092254504561424, 0.03285835310816765, 0.006123353727161884, -0.004425079561769962, 0.00861779972910881, 0.03963778167963028, 0.014023573137819767, -0.002667007502168417, 0.0031197667121887207, 0.030698776245117188, -0.01611480861902237, -0.026516307145357132, -0.015882449224591255, 0.008002731017768383, 5.499314647749998e-05, -0.0035161443520337343, 0.009232869371771812, 0.0032974532805383205, 0.008317099884152412, -0.03392447158694267, 0.0012882278533652425, -0.0027643933426588774, 0.005118740722537041, 0.019627535715699196, 0.00021495380497071892, 0.013722872361540794, 0.010476674884557724, 0.015335720032453537, 0.019668539986014366, 0.009936781600117683, 0.0035879025235772133, -0.016716208308935165, 0.027910463511943817, -0.020679986104369164, 0.015499738976359367, -0.01299162395298481, 0.04529641568660736, -0.011686311103403568, 0.004189303144812584, 0.006065263878554106, 0.0017597806872799993, 0.019436180591583252, -0.02423371933400631, -0.019463516771793365, -0.019955571740865707, 0.01151545811444521, 0.0018315387424081564, -0.007039122749119997, -0.02110370062291622, 0.01902613416314125, -0.029742002487182617, -0.021308723837137222, -0.02223816141486168, 0.0012813936918973923, 0.0358106829226017, 0.025491192936897278, 0.012069020420312881, 0.03365110978484154, -0.021705102175474167, 0.01664786785840988, -0.017016908153891563, -0.015158033929765224, -0.014665978960692883, 0.03400648012757301, 0.01090722344815731, -0.010148638859391212, 0.007736201398074627, 0.0003861266595777124, -0.030534759163856506, 0.01239022333174944, 0.002942080143839121, -0.03143686056137085, 0.011269430629909039, -0.019504521042108536, -0.03146419674158096, -0.001732444390654564, 0.009232869371771812, 0.01694856770336628, -0.0038475983310490847, -0.032666996121406555, 0.014665978960692883, -0.014802660793066025, -0.001985306153073907, 0.0034307180903851986, -0.008317099884152412, -0.015130697749555111, 0.006786261219531298, 0.013729706406593323, -0.015978125855326653, 0.017085250467061996, 0.039036378264427185, -0.003806593595072627, 0.0033384577836841345, 0.022265497595071793, -0.005293010268360376, 0.01857508346438408, -0.006608574651181698, 0.003663077484816313, -0.03157354146242142, -0.006529982667416334, 0.020215267315506935, -0.020638981834053993, 0.0413052998483181, 3.9883379940874875e-05, 0.005043565761297941, -0.006834100000560284, -0.002094651572406292, 0.003724584588780999, -0.09316244721412659, -0.03939175233244896, 0.027514087036252022, 0.013811715878546238, -0.006359130144119263, 0.012520071119070053, -0.01548607088625431, 0.040157172828912735, -0.011043905280530453, 0.024425072595477104, 0.008870662190020084, -0.018383728340268135, -0.026461634784936905, -0.008050569333136082, 0.009690754115581512, -0.021254051476716995, -0.01739961840212345, -0.022634539753198624, -0.011091744527220726, 0.02102169208228588, -0.0027643933426588774, 0.002832734491676092, -0.00953356921672821, -0.005043565761297941, 0.0012361177941784263, -0.02110370062291622, -0.022183489054441452, 0.004090209025889635, 0.0018059109570458531, 0.02364598587155342, 0.01157696545124054, -0.012048518285155296, 0.00482145743444562, -0.016210485249757767, -0.01015547290444374, 0.010961896739900112, -0.002438065130263567, -0.013176145032048225, 0.06708352267742157, 0.002028019167482853, 0.019969239830970764, -0.005426275543868542, 0.012110025621950626, -0.022634539753198624, -0.018247047439217567, 0.020215267315506935, -0.01703057624399662, 0.046608563512563705, 0.032995034009218216, -0.012274043634533882, -0.031054150313138962, -0.013381167314946651, -0.02303091622889042, -0.004175635054707527, 0.03780624270439148, -0.02797880582511425, 0.010326324962079525, 0.016757212579250336, 0.001367674209177494, 0.020597977563738823, 0.0003160771157126874, 0.029413966462016106, 0.0006445410544984043, 0.008412777446210384, 0.019668539986014366, 0.018711766228079796, 0.011761486530303955, -0.01890312135219574, 0.008856993168592453, -0.010668030008673668, -0.030206721276044846, 0.02348196692764759, -0.004284980706870556, 0.012984789907932281, 0.00766102597117424, 0.021595755591988564, -0.0015197329921647906, 0.009608744643628597, -0.0022296251263469458, -0.008850159123539925, -0.020119590684771538, -0.01690756343305111, -0.008399108424782753, -0.043164175003767014, -0.0038373470306396484, 0.019586531445384026, -0.02551852911710739, 0.021049028262495995, 0.005720141809433699, -0.03717750310897827, -0.01059968862682581, 0.012499568983912468, 0.03381512686610222, -0.01798735186457634, 0.008351270109415054, 0.03436185419559479, 0.008658804930746555, -0.0005672302795574069, 0.01105757337063551, -0.0009174779406748712, -0.04105927422642708, -0.006085766013711691, -0.06516997516155243, 0.014255932532250881, -0.008774984627962112, 0.007278316654264927, 0.015212706290185452, -0.001980180386453867, 0.025682548061013222, 0.008980006910860538, -0.006594906561076641, -0.01631982997059822, -0.003167605260387063, 0.0038373470306396484, 0.012267209589481354, -0.013784379698336124, -0.020338281989097595, -0.01973688043653965, 0.022251829504966736, 0.010394666343927383, 0.035209283232688904, -0.004500254988670349, -0.010572352446615696, 0.01034682709723711, 0.03843497857451439, 0.017932677641510963, 0.0023765582591295242, -0.021787110716104507, -0.0004506234545260668, 0.040867917239665985, -0.02223816141486168, -0.01157696545124054, 0.004469501320272684, 0.00566205196082592, -0.004572012927383184, 0.021172041073441505, 0.03329573571681976, 0.0010866218945011497, 0.00766102597117424, -0.022306501865386963, 0.028156490996479988, 0.014037241227924824, -0.016415508463978767, -0.024220051243901253, -0.003261574311181903, -0.01269775815308094, -0.003898854134604335, 0.0037587550468742847, -0.01232188194990158, 0.017085250467061996, 0.014119250699877739, 0.0003948828380089253, 0.027623431757092476, 0.01664786785840988, 0.00716213695704937, -0.029659993946552277, 0.00594225013628602, -0.023782668635249138, 0.006270286627113819, -0.008740813471376896, -0.010257984511554241, -0.0025576618500053883, 0.028129154816269875, -0.02122671529650688, -0.00801639910787344, -0.004595932085067034, 0.02760976366698742, -0.020625313743948936, -0.015622752718627453, -0.007408164441585541, 0.002935245865955949, -0.009540403261780739, -0.011064407415688038, 0.002079274971038103, 0.009458394721150398, 0.015226374380290508, 0.04346487671136856, 0.00273705692961812, -0.005952501203864813, -0.008112076669931412, -0.04245343059301376, -0.001822996186092496, 0.046608563512563705, 0.0007679819827899337, -0.009485730901360512, 0.015404061414301395, 0.04901416599750519, -0.0018640008056536317, -0.002325302455574274, 0.006557318847626448, 0.015048688277602196, 0.00917819608002901, 0.015103360638022423, 0.03097214177250862, -0.02160942368209362, -0.032749008387327194, 0.02244318462908268, 0.021882787346839905, -0.016770880669355392, 0.018588751554489136, 0.029195275157690048, -0.024917129427194595, 0.0015453608939424157, -0.0005881597171537578, -0.0024910294450819492, 0.006434305105358362, -0.018561415374279022, 0.005313512869179249, -0.017467958852648735, -0.021295055747032166, 0.006659830454736948, 0.004845377057790756, 0.029113266617059708, -0.010415168479084969, -0.01532205194234848, 0.01559541653841734, -0.007066459394991398, -0.0028259004466235638, 0.010818379931151867, -0.006072097923606634, -0.012895946390926838, 0.005327180959284306, -0.015773102641105652, -0.009219201281666756, 0.008194086141884327, -0.0030702194198966026, 0.018124032765626907, 0.013791213743388653, 0.019791552796959877, -0.017960013821721077, -0.008645136840641499, -0.0012403891887515783, -0.014597637578845024, -0.022142484784126282, -0.018971461802721024, -0.01949085295200348, 0.018848447129130363, -0.008187252096831799, -0.004558344837278128, 0.01823337934911251, -0.007544846273958683, 0.06462325155735016, -0.0017734488938003778, 0.012007514014840126, 0.002895949874073267, 0.011419781483709812, 0.01359302457422018, 0.038489650934934616, -0.010216979309916496, -0.02298991195857525, -0.02348196692764759, 0.006540233734995127, -0.016893895342946053, -0.02606525644659996, -0.016470180824398994, 0.005494616460055113, -0.006065263878554106, -0.012561075389385223, 0.004513923078775406, -0.01835639216005802, 0.0027490167412906885, 0.020420290529727936, 0.021144704893231392, 0.02169143408536911, -0.0031078069005161524, -0.017372282221913338, -0.016770880669355392, -0.0050674849189817905, 0.010982398875057697, -0.003895436879247427, -0.02411070466041565, 0.031628213822841644, -0.006287372205406427, -0.026789672672748566, -0.02661198563873768, -0.010756873525679111, 0.006465058773756027, -0.012643084861338139, -0.009273873642086983, 0.006892189849168062, 0.010087131522595882, -0.032366298139095306, 0.01040833443403244, -0.009000509977340698, -0.05461812764406204, -0.010223813354969025, 0.01674354448914528, -0.02927728369832039, 0.01142661552876234, -0.026283947750926018], "751318bf-7121-43da-88b3-b0c3e382e2f8": [-0.012964870780706406, -0.0034162807278335094, 0.0041777207516133785, -0.016602104529738426, -0.014956851489841938, -0.00637025898322463, 0.021429089829325676, -0.005058135371655226, -0.019824625924229622, -0.022503262385725975, -0.004555040970444679, 0.006587813142687082, 0.0016919937916100025, 0.006441643927246332, 0.0027704169042408466, -0.00942961499094963, 0.009184866212308407, 0.015840664505958557, 0.021374700590968132, -0.005887560546398163, -0.015745485201478004, 0.014562534168362617, -0.015133613720536232, -0.016697285696864128, -0.010592170059680939, 0.017703473567962646, 0.026541613042354584, -0.0006654098979197443, -0.005255293566733599, 0.0234550628811121, 0.017880236729979515, 0.007899937219917774, -0.011734330095350742, 0.0018067196942865849, -0.0002817157073877752, 0.0029199852142482996, 0.014209008775651455, -0.014848073944449425, 0.011577962897717953, -0.0038649863563477993, 0.022612038999795914, 0.014956851489841938, -0.0002621698076836765, 0.005404862109571695, 0.012944474816322327, 0.02503233030438423, -0.02244887501001358, -0.0030117658898234367, 0.010422205552458763, -0.010972890071570873, 0.02280239947140217, 0.015650305896997452, -0.030430393293499947, -0.024325279518961906, 0.0014701904729008675, -0.01804340071976185, -0.017594696953892708, 0.0030899494886398315, -0.017050810158252716, -0.03007686883211136, -0.005071732215583324, -0.003572647925466299, -0.014902463182806969, -0.024366071447730064, -0.009769543074071407, 0.0023030152078717947, -0.006040528416633606, 0.026256073266267776, -0.022979162633419037, -0.01845131628215313, 0.02004218101501465, 0.03758248686790466, 0.0009348032181151211, 0.037473712116479874, 0.036848243325948715, -0.02280239947140217, -0.01851930096745491, 0.0019868817180395126, 0.0019545885734260082, 0.018600884824991226, -0.0014769891276955605, 0.004453062545508146, -0.01379429642111063, 0.01191789098083973, 0.004748800303786993, 0.05153315141797066, 0.014263397082686424, 0.010952494107186794, 0.016629299148917198, -0.013896274380385876, 0.01845131628215313, 0.007369648665189743, 0.0055646286346018314, 0.0032157229725271463, 0.016670091077685356, 0.014344980008900166, 0.010687350295484066, 0.02830924093723297, -0.004857577383518219, -0.018437718972563744, 0.021469879895448685, 0.02486916445195675, -0.03845270350575447, -0.0052382973954081535, -0.009660766460001469, -0.017499515786767006, 0.0027092297095805407, -0.01802980527281761, 0.006550421006977558, -0.02200016938149929, -0.04383717104792595, 0.038262344896793365, 0.030756724998354912, -0.011870301328599453, -0.024202905595302582, -0.00638045696541667, 0.018056998029351234, -0.00435448344796896, 0.010945695452392101, -0.019824625924229622, 0.011652747169137001, 0.005374268628656864, 0.04696451500058174, -0.0018951010424643755, 0.005030940752476454, -0.01024544332176447, -0.00012407387839630246, -0.013909871689975262, 0.014875268563628197, -0.004235508386045694, 0.007016122806817293, 0.0007537913043051958, 0.004422469064593315, 0.025807367637753487, -0.009130477905273438, -0.003926173318177462, -0.015976637601852417, -0.01641174592077732, -0.024270890280604362, -0.006186697632074356, 0.014630519784986973, 0.007566806860268116, -0.01885922998189926, -0.028227657079696655, 0.014548936858773232, 0.028445212170481682, 0.015745485201478004, 0.021129952743649483, 0.023713408038020134, 0.02006937563419342, -0.000809879507869482, 0.00697533180937171, -0.016534119844436646, -0.00022265313600655645, 0.0003924048796761781, -0.004187918268144131, -7.011023990344256e-05, 0.0012118448503315449, 0.014100232161581516, -0.02473319321870804, 0.0008315499289892614, 0.018954409286379814, -0.009980298578739166, 0.005802578292787075, 0.025888949632644653, 0.02428448759019375, -0.007063712924718857, 0.01246857549995184, 0.0029522785916924477, 0.0016970927827060223, -0.012618144042789936, 0.021442685276269913, -0.022734414786100388, 0.014317786321043968, -0.008430225774645805, 0.013903073035180569, 0.02248966507613659, -0.0007155493949539959, -0.023672616109251976, -0.005489844363182783, 0.003861587028950453, -0.015215196646749973, 0.038235150277614594, 0.016466133296489716, -0.039567671716213226, -0.000149356055771932, 0.01638455130159855, 0.02020534686744213, 0.0015177804743871093, 0.015337571501731873, -0.004466659855097532, 0.018682466819882393, -0.008974110707640648, 0.0032650127541273832, -0.6300369501113892, -0.004823584575206041, -0.006808766629546881, -0.023849379271268845, 0.0022095348685979843, 0.0103610185906291, 0.006547021679580212, 0.009320837445557117, 0.014644117094576359, 0.03225241228938103, -0.003572647925466299, 0.005027541425079107, 0.01336598675698042, 0.002432188019156456, -0.028472406789660454, -0.024162113666534424, 0.03796320781111717, -0.008178678341209888, -0.0013597137294709682, -0.008851736783981323, -0.013753504492342472, 0.029859313741326332, -0.0007193735800683498, -0.011346811428666115, 0.02868996001780033, 0.02783334068953991, 0.02907068096101284, 0.003977162763476372, -0.0029624763410538435, -0.0007750368677079678, -0.016670091077685356, -0.007729972712695599, -0.002542664762586355, 0.014820880256593227, 0.03720176964998245, 0.01613980159163475, -0.007539612706750631, 0.008491412736475468, 0.01741793379187584, 0.03437356278300285, -0.018804840743541718, -0.02417571097612381, 0.018124984577298164, -0.009456809610128403, 0.02507312223315239, 0.009184866212308407, -0.0015024837339296937, 0.00826026126742363, -0.022435277700424194, -0.018233761191368103, 0.021551463752985, 0.004323889967054129, -0.00459583243355155, 0.0032905072439461946, 0.017186781391501427, -0.03010406345129013, 0.028989097103476524, -0.02482837252318859, 0.011435193009674549, -0.031327806413173676, -0.0004975702613592148, 0.016914838925004005, -0.01786663942039013, -0.019811028614640236, -0.022476067766547203, 0.03421039879322052, -0.025168301537632942, 0.002297916216775775, 0.006553820334374905, -0.025888949632644653, 0.009565586224198341, 0.014562534168362617, 0.004813386593014002, -0.014453757554292679, 0.014032245613634586, 0.009694758802652359, 0.022136140614748, -0.003729014890268445, -0.023155925795435905, -0.007485224399715662, 0.016642896458506584, -0.01427699439227581, 0.004252505023032427, -0.01948469877243042, 0.03309543430805206, 0.0028536992613226175, -0.014902463182806969, 0.01191789098083973, 0.01382828876376152, 0.005027541425079107, 0.02217693068087101, 0.019158367067575455, -0.006013334263116121, -0.04786192625761032, -0.017567502334713936, 0.019702252000570297, 2.8389336875989102e-05, -0.01569109596312046, -0.010836918838322163, -0.0023455063346773386, -0.002935282187536359, -0.004218511749058962, 0.0013427173253148794, 0.01734994724392891, 0.029505789279937744, 0.039676446467638016, -0.012645337730646133, 0.014127425849437714, 0.04117213189601898, -0.013019259087741375, -0.020354915410280228, -0.01627577282488346, 0.01793462410569191, 0.0041505261324346066, -0.013060051016509533, -0.030919890850782394, 0.0334489569067955, -0.01170713547617197, -0.01665649376809597, -0.010911703109741211, 0.0016019127797335386, 0.0034247790463268757, 0.003249715780839324, 0.005173710640519857, 0.04100896790623665, 0.007736771367490292, 0.018845632672309875, 0.021252326667308807, -0.016506925225257874, -0.010272637940943241, 0.01748591847717762, -0.0172139760106802, 0.028200464323163033, -0.01072814129292965, 0.019362324848771095, -0.0355973057448864, 0.0097763417288661, -0.0100686801597476, 0.017961818724870682, -0.03804479166865349, -0.007627994287759066, -0.013413576409220695, -0.0011413097381591797, -0.028227657079696655, -0.02956017665565014, -0.022367291152477264, -0.025739381089806557, 0.0038004000671207905, -0.006428046617656946, 0.01072814129292965, -0.008110692724585533, -0.0031511366833001375, -0.009205262176692486, 0.04310292750597, 0.011625552549958229, -0.01766268163919449, -0.04283098503947258, 0.0033856872469186783, -0.0021381499245762825, -0.004442864563316107, 0.0021806410513818264, 0.02341427095234394, -0.018954409286379814, 0.00020151383068878204, -0.01231220830231905, -0.015990233048796654, -0.011877099983394146, -0.011958682909607887, -0.03423759341239929, -0.029777731746435165, 0.004398674238473177, -0.011149653233587742, -0.012611345387995243, -0.011448790319263935, 0.0021143548656255007, 0.01289688516408205, -0.017839444801211357, 0.00945001095533371, 0.002874094992876053, -0.002267322735860944, -0.010904904454946518, -0.009416017681360245, -0.013250410556793213, -0.001516080810688436, 0.025127509608864784, -0.0010401810286566615, -0.007498821243643761, 0.012815302237868309, -0.02269362285733223, -0.00197838363237679, 0.040437888354063034, 0.009735550731420517, -0.021374700590968132, -0.037745654582977295, -0.025426646694540977, 0.008491412736475468, 0.0010546279372647405, -0.003932971972972155, 0.016534119844436646, 0.022326499223709106, 0.04718206822872162, -0.0007520916988141835, 0.0010826720390468836, -0.013937066309154034, -0.012584150768816471, -0.011979077942669392, 0.015092822723090649, -0.009307241067290306, 0.042123932391405106, 0.008770153857767582, 0.02238088846206665, 0.006771374493837357, -0.015541528351604939, -0.009817133657634258, 0.005646211560815573, 0.03366651386022568, -0.015269585885107517, 0.02314232848584652, -0.0017795254243537784, -0.0012874789535999298, 0.014440160244703293, 0.018152179196476936, 0.003098447807133198, 0.004616228397935629, -0.013631130568683147, -0.006941338535398245, 0.01755390502512455, 0.01199947390705347, -0.020273331552743912, -0.03353054076433182, 0.00032293202821165323, -0.01885922998189926, 0.000513716833665967, -0.014576131477952003, 0.005547631997615099, 0.035434141755104065, 0.038126375526189804, -0.0044496632181108, 0.02473319321870804, -0.013964259997010231, 0.01741793379187584, 0.01225781999528408, 0.022707220166921616, -0.017907429486513138, 0.006332866847515106, -0.004684214014559984, 0.01318922359496355, 0.019566280767321587, -0.016126206144690514, -0.006054125726222992, 0.014698505401611328, -0.004561839625239372, -0.022951968014240265, -0.003487665904685855, 0.004187918268144131, -0.02958737127482891, 0.022231319919228554, 0.015188002958893776, 0.014657714404165745, 0.004473458509892225, 0.006200294941663742, 0.007158893160521984, 0.015704693272709846, -0.00608811853453517, 0.002874094992876053, -0.012373395264148712, -0.004510850179940462, -0.05131559818983078, -0.006903946865350008, -0.010252241976559162, -0.002637844765558839, -0.016778867691755295, -0.03668507561087608, -0.01775786094367504, 0.010184256359934807, 0.004191317595541477, 0.004204914905130863, -0.006309072021394968, 0.017186781391501427, 0.009042096324265003, 0.01634375937283039, -0.03241557627916336, -0.011353610083460808, 0.056672871112823486, -0.015854261815547943, -0.01080972421914339, -0.002231630263850093, 0.013039655052125454, -0.00528588704764843, 0.003657629946246743, -0.014453757554292679, 0.023196717724204063, 0.016302967444062233, 0.02289758063852787, 0.008403031155467033, 0.005707398522645235, 0.026745568960905075, 0.004099537152796984, -0.04296695441007614, -0.000682406360283494, -8.838139183353633e-05, 0.0014684908092021942, -0.021959377452731133, 0.0023794991429895163, 0.04041069373488426, -0.012856093235313892, -0.024270890280604362, 0.016670091077685356, -0.0016350557561963797, -0.014440160244703293, 0.008341844193637371, -0.0329594612121582, -0.025888949632644653, -0.008674973621964455, 0.011489581316709518, -0.013019259087741375, 0.005183908622711897, 0.0017013418255373836, 0.026337655261158943, -0.015378362499177456, 0.008681772276759148, 0.010626163333654404, 0.016357356682419777, -0.009076089598238468, 0.03679385408759117, -1.6717574908398092e-05, -0.006366859655827284, 0.011217638850212097, -0.048786528408527374, -0.016629299148917198, 0.0006135708536021411, -0.0069889286532998085, 0.024325279518961906, -0.006098316051065922, 0.0025137707125395536, 0.010456198826432228, 0.017254767939448357, -0.01017065905034542, 0.00488817086443305, 0.022027362138032913, -0.01952548883855343, -0.01910397782921791, 0.029505789279937744, -0.028091685846447945, 0.007220080122351646, 0.009089686907827854, 0.01491605956107378, 0.01930793561041355, -0.031681329011917114, -0.002178941387683153, 0.008212670683860779, -0.00375960860401392, 0.0034655705094337463, -0.013705914840102196, -0.020912397652864456, 0.012128646485507488, 0.01096609141677618, 0.03818076103925705, -0.012747316621243954, 0.034020040184259415, 0.006040528416633606, 0.0007618645904585719, 0.024325279518961906, -0.007383245509117842, -0.004232109058648348, 0.001676697051152587, -0.0004996947827748954, -0.002333608688786626, 0.03989400342106819, -0.004623026587069035, 0.011346811428666115, 0.012101452797651291, 0.027738161385059357, 0.018532898277044296, 0.01834253780543804, -0.01408663485199213, -0.028717154636979103, -0.00823986530303955, 0.01883203536272049, -0.009925910271704197, -0.01408663485199213, 0.006706788204610348, -0.018396927043795586, -0.053817469626665115, 0.009375226683914661, -0.0184785109013319, -0.008572995662689209, -0.020735634490847588, 0.005466049537062645, -0.01498404610902071, -0.020477289333939552, -0.005527236498892307, -0.0024236897006630898, -0.016112608835101128, -0.01336598675698042, -0.006496032699942589, -0.015745485201478004, -0.014304189011454582, -0.006499431561678648, 0.009062492288649082, 0.017064407467842102, -0.012495769187808037, 0.015650305896997452, 0.02931542880833149, -0.00945001095533371, -0.03423759341239929, -0.019335130229592323, -0.03431917354464531, 0.006716986186802387, 0.008505010046064854, -0.002551162848249078, 0.015337571501731873, 0.03586924821138382, 0.0020752630662173033, 0.0026786362286657095, -0.013393180444836617, -0.0022163335233926773, -0.005200905259698629, -0.010898105800151825, 0.029505789279937744, 0.014453757554292679, -0.007668785750865936, 0.012556956149637699, -0.02386297658085823, -0.018016207963228226, -0.01453534048050642, 0.004714807495474815, 0.014521743170917034, 0.00903529766947031, -0.025236288085579872, 0.01486167125403881, 0.04400033876299858, -0.015242391265928745, -0.017023615539073944, -0.01291728112846613, -0.030811114236712456, -0.016248580068349838, 0.0035522521939128637, -0.013903073035180569, 0.02200016938149929, 0.003572647925466299, 0.015323974192142487, 0.010408609174191952, -0.022666428238153458, -2.977029544126708e-05, -0.013005661778151989, -0.003688223659992218, -0.007036518771201372, -0.020191749557852745, 0.047263652086257935, -0.005330077838152647, -0.02693592943251133, -0.0214562825858593, 0.019294338300824165, 0.017064407467842102, 0.0207220371812582, -0.0158950537443161, -0.01793462410569191, -0.04459861293435097, 0.013610734604299068, -0.0015211798017844558, -0.019375920295715332, -0.016914838925004005, -0.023985350504517555, -0.003939770627766848, -0.026092907413840294, 0.014127425849437714, 0.006363460328429937, 0.007478425744920969, -0.03896939754486084, -0.007532814051955938, 0.007933929562568665, -0.018369732424616814, 0.04410911351442337, -0.021755419671535492, -0.0021483476739376783, 0.0019205956486985087, -0.001315523055382073, 0.01072814129292965, -0.017322752624750137, -0.012924079783260822, -0.00905569363385439, 0.02334628440439701, 0.03214363381266594, 0.007825152948498726, -0.005251894239336252, 0.008776952512562275, 0.021510671824216843, 0.019253546372056007, -0.0007716375403106213, -0.013685518875718117, -0.01217623706907034, -0.009823932312428951, -0.004626425914466381, 0.00903529766947031, 0.018165776506066322, 0.02934262342751026, 0.01744512841105461, 0.004582235589623451, 0.01845131628215313, 0.015052031725645065, 0.0017200378933921456, -0.015745485201478004, -0.026990318670868874, -0.010768933221697807, 0.004480256699025631, 0.0005022442783229053, -0.0005995488027110696, 0.0014914360363036394, -0.006013334263116121, 0.014113828539848328, -0.003582845674827695, 0.017635487020015717, -0.017458723857998848, 0.014304189011454582, -0.023373479023575783, 0.01903599314391613, 0.013896274380385876, 0.029397010803222656, -0.0063124713487923145, -0.0030729530844837427, -0.03690263256430626, -0.0008162531885318458, 0.017404336482286453, -0.01556872297078371, -0.005836571101099253, -0.004521048162132502, -0.007988318800926208, -0.005506840534508228, 0.008715765550732613, -0.034781478345394135, -0.013508756645023823, 0.03410162031650543, -0.022136140614748, -0.014712102711200714, -0.029397010803222656, -0.027058303356170654, -0.015092822723090649, 0.008763355202972889, 0.039785224944353104, -0.028336435556411743, 0.02242168039083481, -0.02451563999056816, -0.022013766691088676, -0.0015356267103925347, -0.002741522854194045, 0.023128731176257133, -0.0141410231590271, 0.03372090309858322, -0.005897758528590202, 0.0015364765422418714, -0.013644727878272533, -0.011795517057180405, 0.017404336482286453, 0.015949442982673645, 0.014956851489841938, -0.005697200540453196, 0.011775121092796326, -0.013862282037734985, 0.005078530870378017, 0.014005051925778389, 0.0027874133083969355, -0.03720176964998245, 0.009993895888328552, 0.0183833297342062, -0.001782924635335803, -0.007859145291149616, -0.002260524081066251, -0.008464218117296696, 0.015555125661194324, -0.00023030152078717947, -0.007723174057900906, -0.0038173964712768793, -0.01802980527281761, -0.015908651053905487, 0.042885370552539825, -0.012522963806986809, 0.03907817229628563, 0.004068943206220865, -0.02713988721370697, -0.006961734499782324, -0.016710883006453514, -0.020327720791101456, 0.013114439323544502, -0.0141410231590271, 0.00031188433058559895, -0.015215196646749973, 0.007233677431941032, 0.0043748789466917515, -0.02355024218559265, 0.0016826457576826215, -0.004038349725306034, 0.018573690205812454, 0.023577436804771423, -0.02100757695734501, -0.016112608835101128, -0.00528588704764843, -0.00697533180937171, 0.0038173964712768793, -0.01607181690633297, -0.019797433167696, -0.006856356747448444, -0.004442864563316107, -0.009144075214862823, -0.0043952749110758305, 0.0020276731811463833, 0.0010682251304388046, -0.0042796991765499115, 0.0020820617210119963, -0.01609901152551174, -0.008674973621964455, 0.007940728217363358, 0.015079225413501263, -0.015242391265928745, -0.010109472088515759, -0.008464218117296696, -0.0027925120666623116, 0.009076089598238468, 0.008423427119851112, -0.01804340071976185, -0.013773900456726551, 0.020150957629084587, 0.0072064828127622604, 0.02641923911869526, -0.011210840195417404, -0.010075478814542294, -0.04068263620138168, 0.020667649805545807, 0.014521743170917034, -0.005727794021368027, 0.02803729847073555, -0.007757166866213083, -0.03353054076433182, -0.013406777754426003, -0.021089160814881325, 0.015813471749424934, 0.002092259470373392, 0.00841662846505642, 0.014181814156472683, -0.012278215028345585, 0.01607181690633297, 0.008933319710195065, -0.018804840743541718, 0.0631994977593422, -0.019090380519628525, -0.011992675252258778, 0.025440244004130363, -0.025181898847222328, 0.019647864624857903, 0.008097095414996147, -0.01975664123892784, -0.012149042449891567, -0.039431698620319366, -0.04938480257987976, -0.0035760472528636456, 0.01800261065363884, -0.018736856058239937, -0.007750368677079678, 0.012319006957113743, -0.021837003529071808, -0.0035624501761049032, 0.006047327071428299, -0.029397010803222656, 0.011034077033400536, -0.0023030152078717947, -0.01641174592077732, -0.008858535438776016, 0.0059215533547103405, -0.016112608835101128, -0.009653967805206776, 0.014834477566182613, 0.0070025259628891945, -0.0005579075659625232, -0.002144948346540332, -0.014902463182806969, 0.033503346145153046, 0.025848159566521645, -0.005234898068010807, -0.021265923976898193, 0.030321616679430008, -0.01517440564930439, -0.008722564205527306, 0.014018649235367775, -0.007920332252979279, 0.00886533409357071, 0.02224491722881794, 0.018546495586633682, 0.016534119844436646, 0.0100686801597476, 0.023958155885338783, -0.04206954315304756, -0.00010415619908599183, -0.011815913021564484, 0.011251631192862988, 0.011843106709420681, 0.0214562825858593, -0.02051808126270771, -0.01586785912513733, -0.004126731306314468, 0.015949442982673645, 0.006064323242753744, 0.03010406345129013, -0.025168301537632942, 0.0034417754504829645, -0.024406861513853073, 0.0010605767602100968, -0.012169438414275646, 0.0048677753657102585, -0.005741391330957413, -0.016438938677310944, 0.015840664505958557, 0.005962344817817211, -0.002415191615000367, -0.023917365819215775, 0.005778783466666937, -0.0016036124434322119, 0.00024687303812243044, 0.007281267084181309, -0.003402683651074767, -0.010660155676305294, 0.01353595033288002, -0.003616838715970516, 0.01596304029226303, 0.002880893647670746, -0.0013316696276888251, 0.029995284974575043, -0.008110692724585533, -0.015514333732426167, 0.0012866291217505932, -0.01102047972381115, -0.025440244004130363, 0.0030729530844837427, 0.026269670575857162, 0.011190444231033325, 0.02227211184799671, -0.032850682735443115, 0.015704693272709846, -0.02238088846206665, 0.01734994724392891, -0.017132394015789032, 0.013569943606853485, -0.03219802305102348, 0.025739381089806557, -0.016506925225257874, 0.0069889286532998085, 0.015718290582299232, 0.014480951242148876, 0.005955546163022518, 0.0027568195946514606, -0.006679594051092863, 0.0011982477735728025, -0.008892527781426907, 0.015215196646749973, 0.002056566998362541, 0.0013690617633983493, 0.014154620468616486, -0.01218983344733715, -0.001324871089309454, -0.008756556548178196, -0.00781155563890934, 0.18492107093334198, -0.01189749501645565, 0.027289455756545067, 0.019797433167696, -0.01966146193444729, 0.029424205422401428, 0.020477289333939552, 0.002201036550104618, -0.00886533409357071, 0.02758859284222126, -0.011537170968949795, 0.017390739172697067, -0.014834477566182613, 0.012808503583073616, 0.0028469006065279245, -0.00942961499094963, -0.025617007166147232, -0.05107085034251213, -0.00488817086443305, -0.0031528363469988108, 0.008212670683860779, -0.008233066648244858, -0.0032854084856808186, -0.010306630283594131, 0.04090018942952156, 0.017472321167588234, 0.009436413645744324, -0.014603326097130775, 0.031327806413173676, 0.005404862109571695, -0.007145295850932598, -0.02662319503724575, 0.007403641473501921, 0.015079225413501263, -0.01773066818714142, 0.0012118448503315449, 0.004184518940746784, -0.015283182263374329, 0.005302883684635162, 0.020368512719869614, 0.0019154967740178108, -0.0015313776675611734, -0.015391959808766842, -0.02969614788889885, 0.017581099644303322, 0.027982909232378006, -0.0016919937916100025, -0.022639233618974686, -0.017078004777431488, 0.011142854578793049, -0.028499601408839226, 0.0025562618393450975, -0.001910397782921791, 0.01813858188688755, 0.006574215833097696, 0.01975664123892784, -0.01930793561041355, 0.01858728751540184, 0.04283098503947258, 0.04769875854253769, -0.00781155563890934, 0.037473712116479874, -0.010959292761981487, 0.010340623557567596, -0.0057175965048372746, 0.013739907182753086, -0.028825931251049042, -0.012910482473671436, 0.014997642487287521, -0.029478594660758972, -0.007716375403106213, -0.017363544553518295, -0.01350195799022913, 0.022394485771656036, -0.019430309534072876, -0.019063187763094902, 0.02217693068087101, 0.018954409286379814, -0.0024100926239043474, 0.009565586224198341, -0.0032548147719353437, 0.0071181016974151134, -0.013631130568683147, 0.008409829810261726, -0.008131088688969612, -0.018097789958119392, 0.041933573782444, 0.0096063781529665, -0.011856704019010067, -0.0012245922116562724, -0.0046366238966584206, -0.0031273416243493557, -0.016914838925004005, -0.009123679250478745, 0.027955714613199234, 0.019811028614640236, -0.0005226399516686797, -0.0012432882795110345, -0.01634375937283039, -0.007526015862822533, 0.005918154027312994, 0.06771374493837357, 0.004830383230000734, 0.01665649376809597, -0.009579183533787727, 0.008484614081680775, 0.0008770153508521616, 0.029750537127256393, 0.004755598958581686, -0.06183978170156479, -0.005999736953526735, -0.015922248363494873, 0.01773066818714142, -0.012958072125911713, 0.0057039991952478886, -0.0017931225011125207, -0.04258623346686363, -0.007084108889102936, 0.019743043929338455, 0.008695369586348534, -0.007852346636354923, 0.0006216441397555172, -0.006659198086708784, 0.024325279518961906, -0.008355441503226757, -0.03867026045918465, -0.0355973057448864, -0.006910745054483414, 0.002036171266809106, -0.023917365819215775, 0.02359103411436081, -0.025712186470627785, -0.0018747053109109402, -0.008185476996004581, 0.007335655856877565, 0.005071732215583324, 0.01172753144055605, -0.020871605724096298, -0.034156009554862976, 0.01458972878754139, -0.00577538413926959, -0.00813788641244173, 0.010585371404886246, 0.007349252700805664, 0.02734384313225746, -0.037854429334402084, -0.0062920753844082355, -0.0042796991765499115, -0.02359103411436081, -0.03828953951597214, -0.017064407467842102, -0.006115312688052654, 0.0020106767769902945, -0.03494464233517647, 0.013556346297264099, -0.019987791776657104, -0.026840750128030777, -0.027982909232378006, 0.03380248323082924, 0.03603241592645645, -0.048297032713890076, -0.024134919047355652, 0.030158450827002525, -0.004925563000142574, 0.013019259087741375, -0.023291897028684616, -0.17219415307044983, 0.014929656870663166, 0.014059440232813358, 0.013141633942723274, -0.002734724199399352, -0.0002753420267254114, 0.026677584275603294, 0.013141633942723274, -0.023808587342500687, 0.0021143548656255007, 0.023944558575749397, -0.0026956326328217983, -0.0068733529187738895, -0.009456809610128403, 0.008892527781426907, -0.016602104529738426, -0.01408663485199213, 0.009069290943443775, 0.004055346362292767, 0.020123763009905815, 0.029886508360505104, -0.01734994724392891, 0.018233761191368103, 0.0023030152078717947, 0.0237949900329113, 0.012454978190362453, -0.008328246884047985, 0.04470738768577576, 0.009857924655079842, -0.044163502752780914, -0.017608292400836945, -0.008063103072345257, 0.019403114914894104, 0.031572554260492325, -0.005687003023922443, 0.018233761191368103, 0.0041505261324346066, -0.018546495586633682, 0.0003280309319961816, 0.025603409856557846, 0.03331298753619194, 0.04772595316171646, 0.0028536992613226175, 0.022680025547742844, 0.007852346636354923, 0.014059440232813358, -0.00841662846505642, -0.01225781999528408, -0.03304104506969452, -0.012597748078405857, 0.025630604475736618, -0.004837181884795427, 0.010544580407440662, -0.0003480017476249486, 0.024393264204263687, -0.0017234372207894921, -0.00638045696541667, -0.0032905072439461946, -0.0031817301642149687, 0.0014718901365995407, -0.017771458253264427, -0.016751673072576523, 0.004514249507337809, -0.0012832299107685685, 0.00157981738448143, -0.010700947605073452, -0.03127341717481613, 0.026201684027910233, -0.022775204852223396, -0.019430309534072876, -0.009980298578739166, 0.0030542570166289806, 0.03714738041162491, 0.02469240128993988, 0.003348295111209154, 0.02586175501346588, -0.019947001710534096, 0.01260454673320055, 0.015351168811321259, -0.035570111125707626, 0.0030661544296890497, 0.021605851128697395, -0.01710519939661026, -0.005000347271561623, 0.028118880465626717, -0.0019018995808437467, -0.019715849310159683, 0.017322752624750137, 0.009558787569403648, -0.03111025132238865, 0.015296779572963715, -0.012822100892663002, 0.016887644305825233, 0.017526710405945778, 0.000916107150260359, 0.014712102711200714, -0.0052179014310240746, -0.03731054440140724, 0.024338876828551292, -0.030539171770215034, -0.004521048162132502, -0.02597053349018097, -0.020939592272043228, -0.012169438414275646, 0.009647169150412083, -0.0044836560264229774, -0.016058219596743584, 0.014372174628078938, 0.03701140731573105, -0.0007321208831854165, -0.019675057381391525, -0.0002543089503888041, 0.006288676057010889, 0.03328579291701317, 0.002051468240097165, 0.015269585885107517, -0.014875268563628197, -0.025997726246714592, 0.013257209211587906, -0.04158004745841026, 0.04949358105659485, -0.012937676161527634, -0.0005625815829262137, 0.022013766691088676, 0.018981603905558586, -0.012747316621243954, -0.11258430033922195, -0.026881540194153786, 0.017567502334713936, -0.001227991539053619, -0.014032245613634586, 0.02251685969531536, -0.024950748309493065, 0.016670091077685356, -0.005802578292787075, 0.015052031725645065, -0.0009636971517466009, -0.0015407257014885545, -0.015609513968229294, -0.019797433167696, 0.0052416967228055, 0.022013766691088676, -0.014209008775651455, -0.0019002000335603952, -0.029641760513186455, 0.013495159335434437, 0.0033975846599787474, -0.013141633942723274, -0.0017846242990344763, 0.007417238783091307, -0.02958737127482891, -0.015337571501731873, -0.010340623557567596, -0.005591822788119316, 0.016112608835101128, 0.015323974192142487, -0.008471016772091389, 0.011455588042736053, -0.0025868553202599287, -0.026405641809105873, 0.0003977162705268711, 0.012522963806986809, -0.024189308285713196, 0.014467354863882065, 0.010721342638134956, -0.012998863123357296, 0.0009602978243492544, 0.007539612706750631, 0.016697285696864128, -0.005992938298732042, 0.010979688726365566, 0.005714197177439928, -0.009116880595684052, 0.02738463506102562, -0.025617007166147232, -0.007301663048565388, -0.009028499014675617, -0.02406693436205387, -0.0459311306476593, -0.018505703657865524, 0.0195526834577322, -0.02076282911002636, 0.017336349934339523, 0.006744180340319872, -0.014657714404165745, -0.016466133296489716, -0.010299831628799438, 0.006733982358127832, -0.02238088846206665, 0.012074258178472519, 0.006849558092653751, 0.008015512488782406, -0.007723174057900906, -0.008539002388715744, -6.384281005011871e-05, -0.01686045154929161, -0.011883898638188839, 0.03769126534461975, -0.009946306236088276, 0.019566280767321587, -0.019335130229592323, 0.007893138565123081, -0.003280309494584799, -0.01433138269931078, 0.01080972421914339, -0.01072814129292965, -0.011564365588128567, -0.03263312950730324, 0.00028872673283331096, -0.014576131477952003, 0.00841662846505642, 0.03780004382133484, 0.0052382973954081535, 0.003671227255836129, -0.01556872297078371, -0.01575908251106739, -0.004708008840680122, 0.0025324667803943157, 0.0252090934664011, -0.02541304938495159, -0.01575908251106739, 0.029614565894007683, 0.023115133866667747, -0.01972944661974907, 0.025997726246714592, 0.008681772276759148, -0.033503346145153046, 0.0038717850111424923, -0.04742681607604027, 0.02624247595667839, -0.023686213418841362, -0.008097095414996147, -0.005207703914493322, 0.005986139643937349, 0.03366651386022568, -0.015092822723090649, 0.0034128816332668066, -0.004181119613349438, -0.04196076840162277, 0.006948137190192938, -0.0019613869953900576, -0.014372174628078938, -0.01800261065363884, -0.03010406345129013, 0.017975416034460068, -0.0011659545125439763, 0.01613980159163475, 0.017703473567962646, 0.0033754894975572824, 0.027221469208598137, 0.022530457004904747, 0.010048285126686096, -0.0038785834331065416, -0.005364070646464825, 0.0068801515735685825, 0.02148347720503807, -0.005272290203720331, 0.004092738498002291, 0.03769126534461975, -0.006564018316566944, 0.014181814156472683, 0.00855259969830513, -0.007621195632964373, 0.024134919047355652, 0.025888949632644653, 0.00562921492382884, 0.0055510313250124454, 0.020667649805545807, 0.001917196437716484, -0.0379360131919384, -0.01453534048050642, -0.03641313314437866, -0.025535425171256065, 0.0027891129720956087, -0.016697285696864128, 0.009653967805206776, 0.02803729847073555, -0.010157061740756035, 0.026609597727656364, 0.01205386221408844, 0.004330688156187534, -0.034291982650756836, -0.0038241948932409286, -0.0013478163164108992, 0.030947085469961166, -0.012060660868883133, -0.010075478814542294, -0.033639319241046906, 0.026432836428284645, 0.002015775768086314, -0.0026905336417257786, -0.010299831628799438, 0.02000138908624649, -0.020218944177031517, -0.020300526171922684, -0.015582319349050522, -0.0031630340963602066, -0.012788107618689537, -0.01802980527281761, -0.002614049706608057, -0.006852957420051098, 0.01793462410569191, 0.006744180340319872, -0.011992675252258778, -0.018056998029351234, -0.009565586224198341, -0.024461250752210617, 0.011346811428666115, 0.016574909910559654, -0.020164554938673973, 0.017567502334713936, -0.0032837088219821453, 0.027982909232378006, -0.012223826721310616, -0.01329800020903349, 0.007335655856877565, 0.006118712015450001, 0.030511977151036263, -0.026364849880337715, 0.026405641809105873, -0.01692843623459339, -0.006057524587959051, 0.0030967481434345245, -0.0068869502283632755, -0.01600383035838604, 0.014793685637414455, -0.001997079700231552, 0.02410772442817688, 0.003773205680772662, 0.015201600268483162, -0.011353610083460808, -0.000404939753934741, -0.006084719207137823, -0.022013766691088676, -0.026908734813332558, -0.011904293671250343, -0.026541613042354584, 0.03513500466942787, -0.005846769083291292, 0.012869690544903278, 0.014344980008900166, 0.008069900795817375, -0.017254767939448357, 0.024230098351836205, 0.0006977031007409096, -0.015201600268483162, -0.011652747169137001, 0.01948469877243042, -0.012516165152192116, -0.005360671319067478, 0.00964037049561739, 0.0018611082341521978, 0.045822352170944214, 0.02458362467586994, 0.004629825241863728, -0.017132394015789032, 0.0036236371379345655, 0.02972334250807762, -0.0015934145776554942, -0.005581624805927277, -0.014385771937668324, -0.021850600838661194, -0.007770764175802469, -0.010721342638134956, 0.020123763009905815, 0.033612124621868134, -0.02406693436205387, 0.06678914278745651, 0.015337571501731873, -0.0064212484285235405, 0.007485224399715662, 0.01652052253484726, 0.004558440297842026, 0.009728752076625824, 0.009477204643189907, -0.02866276539862156, -0.01879124343395233, 0.016819659620523453, 0.0014175015967339277, -0.0005498342798091471, -0.0440819188952446, 0.005918154027312994, -0.003055956680327654, -0.033503346145153046, 0.0006114462739787996, -0.014059440232813358, -0.0054558515548706055, -0.0069005475379526615, -0.00815828237682581, 0.0240397397428751, -0.02803729847073555, -0.02255765162408352, -0.021850600838661194, 0.011040875688195229, -0.008579793386161327, -0.004337486810982227, -0.03293226659297943, 0.03951328247785568, 0.014480951242148876, -0.00953839160501957, -0.03331298753619194, 0.005000347271561623, 0.0064144497737288475, -0.020980384200811386, 0.0016214586794376373, 0.022924773395061493, -0.013134835287928581, -0.020123763009905815, -0.005418459419161081, -0.005272290203720331, -0.06798569113016129, -0.025426646694540977, -0.010136665776371956, -0.027982909232378006, -0.006190096959471703, -0.03255154564976692], "0938a373-57be-4f0f-bb30-8bd66beac402": [0.01155893225222826, 0.005833259783685207, -0.010577196255326271, -0.01835711859166622, 0.0025535221211612225, 0.005853432696312666, -0.02179991826415062, -0.0012675152393057942, -0.012520495802164078, -0.0401032418012619, -0.001867651822976768, 0.019863342866301537, -0.028941038995981216, 0.02418029122054577, 0.01525052823126316, 0.02311786450445652, 0.011727037839591503, 0.004912042059004307, -0.011478241533041, -0.008385101333260536, -0.002777102403342724, 0.005211269482970238, -0.004505226854234934, -0.011202548630535603, -0.0031301239505410194, 0.010126673616468906, 0.04101773723959923, -0.018276426941156387, -0.001644912059418857, -0.004175739828497171, 0.020858528092503548, -0.02143681049346924, -0.019863342866301537, -0.006626717746257782, -0.009931671433150768, -0.009205455891788006, -0.01577501744031906, -0.004007634706795216, 0.0035167664755135775, -0.00921218004077673, 0.02185371145606041, 0.015425357967615128, -0.02327924594283104, -0.01799401082098484, 0.001788642257452011, 0.0032410735730081797, 0.0006505681667476892, -0.026251351460814476, -0.012796188704669476, -0.016608821228146553, 0.0077933697029948235, 0.03779011219739914, -0.033271435648202896, -0.002331622876226902, -0.02179991826415062, 0.002580418949946761, -0.01573467254638672, 0.007168017327785492, 0.003479783423244953, -0.01994403265416622, 0.020562661811709404, -0.0023938219528645277, -0.010846165008842945, -0.02522926963865757, -0.0032612462528049946, 0.0011683329939842224, 0.010886510834097862, 0.009924947284162045, -0.021019907668232918, -0.008613724261522293, 0.003721855115145445, 0.03050105646252632, -0.009682875126600266, 0.01631295494735241, 0.013798097148537636, -0.008586827665567398, -0.019392646849155426, 0.00021643580112140626, -0.024570295587182045, -0.004219447262585163, 0.0026980929542332888, -0.004676694516092539, -0.0253368578851223, 0.02001127600669861, -0.00217696581967175, -0.01920436881482601, 0.023817183449864388, 0.03345971181988716, -0.03574594855308533, -0.02205543778836727, 0.0001419440668541938, 0.008196823298931122, 0.004384190775454044, 0.014699142426252365, -0.00821027159690857, 0.03157693147659302, 0.01599019207060337, 0.021867159754037857, -0.005070060957223177, -0.01862608641386032, -0.00886924471706152, 0.03187279775738716, -0.008418722078204155, 0.00704698171466589, -0.0016751710791140795, -0.0014246938517317176, 0.015519496984779835, 0.012359114363789558, 0.009279422461986542, -0.020724043250083923, -0.016541577875614166, 0.04338466003537178, 0.017778834328055382, -0.015385013073682785, 0.011209272779524326, -0.015949847176671028, 0.01672985590994358, -0.005998003296554089, -0.006189643405377865, 0.004609452094882727, 0.024059254676103592, 0.006495595443993807, 0.014873972162604332, 0.0030712869483977556, 0.0011229445226490498, -0.006045072805136442, -0.00821027159690857, -0.019083334133028984, -0.030124500393867493, -0.019432993605732918, 0.01941954530775547, 0.014026721008121967, -0.022364752367138863, 0.019984379410743713, -0.0003385223972145468, 0.022095782682299614, -0.02618410810828209, 0.013811545446515083, -0.011545483954250813, -0.03830115124583244, 0.012446529231965542, 0.0035470256116241217, -0.02126198075711727, 0.0033385746646672487, 0.004088324960321188, 0.019554028287529945, 0.008943211287260056, 0.0160977803170681, -0.022149577736854553, -0.008956659585237503, 0.0022240353282541037, 0.008331307210028172, 0.0279727503657341, 0.004468243569135666, 0.013475335203111172, 0.01098064985126257, -0.03138865530490875, -0.0015574971912428737, 0.0076925065368413925, -0.011316860094666481, 0.018975745886564255, 0.02106025442481041, -0.014362932182848454, -0.007040257100015879, -0.005201183259487152, 0.04047979786992073, 0.018222633749246597, 0.024422362446784973, -0.002795594045892358, 0.0071881902404129505, 0.0030931406654417515, 0.026143763214349747, -0.006831806618720293, 0.010435988195240498, -0.008109408430755138, 0.006714132614433765, 0.013677061535418034, 0.004485053941607475, -0.029263801872730255, -0.009198731742799282, 0.010409090667963028, -0.011283239349722862, 0.011848073452711105, 0.023454075679183006, -0.029048625379800797, -0.010906683281064034, 0.027152396738529205, 0.008909590542316437, 0.015317770652472973, 0.014282241463661194, 0.0069461180828511715, 0.023238901048898697, -0.00017062705592252314, -0.0025888243690133095, -0.6382090449333191, -0.00796819943934679, -0.01248014997690916, -0.03109278902411461, 0.008694414980709553, 0.016555028036236763, 0.0010800777235999703, -0.003889960702508688, -0.02775757573544979, 0.0028964572120457888, 0.01139755081385374, -0.01841091178357601, 0.04042600467801094, -0.015062250196933746, -0.025148579850792885, -0.018545396625995636, -0.012648255564272404, -0.008990280330181122, -0.010597368702292442, 0.004629624541848898, -0.020253347232937813, 0.039027366787195206, -0.03709079325199127, -0.018935400992631912, 0.0020088604651391506, 0.019648168236017227, 0.016165021806955338, 0.013697233982384205, 0.005093595944344997, 0.02358856052160263, -0.030474159866571426, -0.023628905415534973, 0.009198731742799282, 0.010126673616468906, 0.048010922968387604, -0.008889417164027691, -0.018141942098736763, 0.0043539316393435, 0.025901691988110542, 0.025256166234612465, -0.025054439902305603, -0.025242717936635017, 0.019930584356188774, 0.014174653217196465, 0.0016583604738116264, 0.007685782387852669, -0.003980737645179033, -0.0038798742461949587, -0.00973666924983263, -0.018774019554257393, 0.012137215584516525, -0.0017499779351055622, -0.012749118730425835, -0.022082334384322166, 0.028591379523277283, -0.011787556111812592, 0.03857012093067169, -0.007739576045423746, 0.016057435423135757, -0.022405097261071205, 0.009077695198357105, -0.00040492406697012484, -0.00021916751575190574, 0.003721855115145445, -0.02407270483672619, 0.010140121914446354, -0.04287362098693848, -0.00461617624387145, 0.016380198299884796, -0.026681700721383095, 0.032276250422000885, 0.028779657557606697, -0.0013809864176437259, -0.018020907416939735, 0.005816449411213398, 0.02606307342648506, 0.025094784796237946, 0.0012902094749733806, -0.007114223670214415, 0.0067746504209935665, 0.0155732911080122, -0.008694414980709553, -0.00023702872567810118, -0.031899694353342056, 0.04416466876864433, 0.01390568446367979, 0.0006993187707848847, 0.00037235362106002867, 0.0003238131757825613, 0.033755578100681305, -0.00847251620143652, 0.022714411839842796, -0.013522404246032238, -0.04142118990421295, -0.008270788937807083, 0.015909502282738686, -0.005755931604653597, -0.008687690831720829, -0.00638464605435729, -0.027313778176903725, -0.007672333624213934, -0.011572380550205708, 0.0009758522501215339, 0.009158385917544365, 0.008485964499413967, 0.03071623295545578, 0.005160837899893522, 0.0067477538250386715, 0.03943081945180893, -0.0171467587351799, -0.02748860791325569, -0.04475640133023262, 0.005177648738026619, 0.02064335159957409, 0.0009539985912851989, -0.020603006705641747, 0.006593096535652876, 0.0041454811580479145, -0.009669426828622818, -0.0020307141821831465, 0.013159296475350857, 0.019446441903710365, -0.012782740406692028, -0.007383192423731089, 0.023897875100374222, -0.0005908907623961568, -0.0028527500107884407, -0.01314584817737341, -0.004192550666630268, 0.012103593908250332, -0.013838442973792553, 0.016702959313988686, 0.018249530345201492, 0.0012767610605806112, 0.015425357967615128, -0.027434812858700752, 0.023212004452943802, -0.006999911740422249, 0.002444253535941243, -0.04983991011977196, -0.010140121914446354, -0.004216085188090801, 0.01013339776545763, -0.021719226613640785, -0.024839265272021294, -0.0049557494930922985, -0.02021300233900547, 0.010866337455809116, -0.0011414361651986837, 0.012486875057220459, -0.012614634819328785, 0.012352390214800835, 0.002059292048215866, 0.011431172490119934, 0.022122681140899658, -0.0047136773355305195, 0.004327035043388605, -0.016810547560453415, -0.0047506606206297874, 0.00855320692062378, -0.016353299841284752, 0.029478976503014565, -0.014699142426252365, 0.0057290345430374146, -0.0008485123980790377, -0.012419632636010647, -0.006186281330883503, 0.02232440747320652, -0.0016163341933861375, -0.032383836805820465, 0.0007005795487202704, -0.026668252423405647, -0.012890327721834183, -0.0009750117314979434, -0.005614722613245249, 0.012581014074385166, 0.002329941838979721, 0.00965597853064537, 0.003066243836656213, -0.013529128395020962, 0.006414904724806547, 0.016138125211000443, 0.024193739518523216, -0.02021300233900547, 0.005614722613245249, 0.025363754481077194, 0.020912321284413338, 0.016649166122078896, -0.008983556181192398, -0.0029569752514362335, 0.0005270106485113502, 0.032437633723020554, -0.019069885835051537, 0.0024223998188972473, -0.0033217640593647957, 0.04131359979510307, -0.0008808727143332362, 0.019648168236017227, 0.0017432537861168385, 0.041770849376916885, 0.01527742575854063, -0.008976832032203674, 0.009023902006447315, -0.02080473303794861, 0.001850841217674315, -0.037978388369083405, 0.006804909557104111, -0.011511863209307194, 0.010462884791195393, 0.015465703792870045, 0.02391132339835167, -0.015075698494911194, -0.019540579989552498, -0.010805820114910603, 0.01098064985126257, 0.038865987211465836, -0.005379375070333481, 0.004357293713837862, -0.009286146610975266, -0.013784648850560188, 0.01346188597381115, -0.009467700496315956, 0.005355840548872948, -0.0005202864413149655, 0.0019298508996143937, 0.00187101389747113, 0.005322219338268042, -0.0017449348233640194, -0.040937043726444244, -0.06406836211681366, 0.033432815223932266, 0.000663176120724529, 0.0014448665315285325, 0.0077866455540061, 0.011612726375460625, 0.03214176744222641, 0.018706778064370155, -0.003856339491903782, 0.04618193581700325, -0.014107411727309227, -0.014053617604076862, 0.03383627161383629, -0.0005148230120539665, -0.045993659645318985, 0.014658797532320023, 0.00020834572205785662, 0.01920436881482601, 0.017967112362384796, 0.002812404651194811, 0.0028241719119250774, -0.010523403063416481, 0.02750205621123314, -0.010388918220996857, 0.004165653605014086, 0.028161028400063515, 0.01242635678499937, 0.02073749154806137, 0.01835711859166622, 0.01031495165079832, 0.0015751483151689172, 0.026695149019360542, -0.014483967795968056, 0.009750117547810078, 0.02143681049346924, 0.003869788022711873, -0.015425357967615128, -0.02248578891158104, -0.019190920516848564, -0.013266883790493011, 0.01483362726867199, -0.015653980895876884, 0.0033654714934527874, -0.01631295494735241, 0.024301327764987946, 0.020871976390480995, 0.0040109967812895775, 0.004938938654959202, 0.0004513631865847856, 0.011989282444119453, -0.007416813634335995, -0.008405273780226707, -0.014241895638406277, 0.002045843517407775, 0.0422280952334404, -0.013730854727327824, 0.0006123241619206965, 0.006169470958411694, 0.0034562486689537764, 0.00857337936758995, 0.016084332019090652, -0.03077002614736557, 0.010153570212423801, -0.011202548630535603, -0.0006951161194592714, -0.009252524934709072, -0.02470478042960167, 0.017751937732100487, -0.00865407008677721, 0.009850980713963509, 0.0077866455540061, -0.002714903326705098, 0.022405097261071205, -0.030205192044377327, 0.007712678983807564, 0.04252396151423454, -0.010745301842689514, 0.001617174712009728, -0.004522037226706743, 0.003836166812106967, -0.00381263205781579, -0.0024963663890957832, -0.018343670293688774, -0.020414728671312332, -0.033432815223932266, 0.021974748000502586, -0.01720055192708969, 0.03144244849681854, 0.009064246900379658, 0.024422362446784973, 0.008862520568072796, -0.013972926884889603, -0.020387832075357437, -0.011128582060337067, 0.03257211670279503, 0.0564834401011467, 0.022943034768104553, -0.02591514028608799, 0.008136305026710033, -0.012217906303703785, -0.006438439711928368, -0.004390914924442768, 0.011619450524449348, 0.020455073565244675, -0.010967201553285122, 0.002602272666990757, -0.0002565709874033928, -0.004219447262585163, -0.017321588471531868, 0.0048851449973881245, 0.008344755508005619, -0.019554028287529945, -0.02142336219549179, -0.014954662881791592, -0.01543880719691515, 0.004158929456025362, 0.0007304183091036975, 0.025794103741645813, 0.018115045502781868, -0.016662614420056343, -0.008936487138271332, 0.0027636541053652763, 0.005715586245059967, 0.0076588853262364864, -0.016380198299884796, 0.010906683281064034, 0.02270096354186535, 0.01705261878669262, 0.02770378254354, -0.034750763326883316, 0.01683744415640831, 0.015519496984779835, 0.02132922224700451, 0.005776104051619768, -0.015385013073682785, 0.016218816861510277, 0.017913319170475006, 0.021651985123753548, -0.02342717908322811, -0.0031334860250353813, 0.0010161976097151637, 0.005439893342554569, -0.0033621094189584255, -0.010126673616468906, -0.023561663925647736, 0.022969931364059448, -0.010704956948757172, -0.01884126104414463, -0.011384102515876293, 0.01736193336546421, -0.003910133149474859, -0.009017177857458591, 0.0018323496915400028, -0.004269878845661879, -0.018599189817905426, -0.02490650676190853, -0.016353299841284752, 0.02824172005057335, -0.021557845175266266, 0.007107499521225691, -0.008963383734226227, 0.016178470104932785, 0.014362932182848454, -0.03827425464987755, -0.013878787867724895, 0.0020323952194303274, -0.0021282152738422155, -0.05906553938984871, -0.018868157640099525, 0.017509866505861282, -0.0014574744272977114, 0.0057290345430374146, 0.00523816654458642, -0.013629991561174393, 0.022136129438877106, -0.02274130843579769, -0.0380052849650383, -0.008237168192863464, -0.018128493800759315, -0.010227536782622337, 0.021920952945947647, -0.013192917220294476, 0.017657799646258354, 0.018881607800722122, -0.02037438377737999, 0.0010817587608471513, -0.013798097148537636, -0.0038798742461949587, -0.019352301955223083, -0.023884424939751625, 0.04685435816645622, 0.03779011219739914, 0.018908504396677017, 0.025417547672986984, -0.017644351348280907, -0.014685694128274918, 0.002696411916986108, 0.0019500234629958868, -0.0077664731070399284, -0.005839984398335218, -0.012365838512778282, 0.004676694516092539, 0.006828444544225931, -0.009339939802885056, -0.02559237740933895, 0.02491995505988598, -0.017388829961419106, 0.02423408441245556, 0.009844256564974785, 0.016299506649374962, 0.018720226362347603, 0.01303153671324253, 0.013361022807657719, 0.012191008776426315, -0.027421364560723305, 0.01716020703315735, -0.03824735805392265, -0.004878420848399401, 0.028672069311141968, -0.02349442057311535, 0.025821000337600708, -0.0006820879643782973, -0.005813087336719036, -0.01480672974139452, -0.0037084068171679974, 0.019459890201687813, 0.0224319938570261, 0.009326491504907608, -0.022364752367138863, -0.015869157388806343, 0.01656847633421421, -0.018289875239133835, 0.005322219338268042, -0.030743129551410675, 0.01810159720480442, 0.00788750872015953, 0.019338853657245636, 0.0013532490702345967, -0.007726127747446299, -0.028268616646528244, -0.03292177617549896, -0.013199642300605774, 0.014214999042451382, 0.020764388144016266, 0.02791895717382431, -0.020912321284413338, 0.0008043847046792507, -0.0006140052573755383, 0.00857337936758995, 0.018935400992631912, -0.03093140758574009, -0.004535485524684191, 0.006317403633147478, 0.04618193581700325, 0.005722310394048691, 0.01651468127965927, 0.0017045894637703896, 0.0438150092959404, 0.023467523977160454, -0.012742394581437111, 0.013623267412185669, 0.002074421616271138, -0.006065245717763901, -0.021826814860105515, 0.003479783423244953, 0.007497504353523254, 0.003083054441958666, 0.018720226362347603, 0.007255432195961475, 0.01340809278190136, 0.03302936255931854, -0.0016205367865040898, 0.0028393014799803495, -0.010812544263899326, -0.023709595203399658, -0.02559237740933895, 0.02147715538740158, -0.011370654217898846, 0.04042600467801094, -0.002777102403342724, -0.010523403063416481, 0.018599189817905426, 0.00608205609023571, 0.0006324968417175114, 0.006132487673312426, 0.019338853657245636, -0.03415903076529503, 0.012870155274868011, 0.015559842810034752, 0.03262590989470482, -0.02385752834379673, 0.01385189127177, -0.013744303956627846, 0.009198731742799282, 0.011458069086074829, -0.0014650392113253474, 0.028752760961651802, 0.0171467587351799, -0.003449524287134409, 0.010630990378558636, -0.005665154661983252, -0.003424308495596051, -0.017496418207883835, 0.015425357967615128, -0.021867159754037857, -0.014295689761638641, -0.03289487957954407, -0.026668252423405647, 0.005419720429927111, -3.380496127647348e-05, 0.030178295448422432, 0.0019970929715782404, 0.018384015187621117, -0.02284889668226242, -0.030258985236287117, 0.007194914389401674, -0.020293692126870155, 0.04322328045964241, -0.006105590611696243, 0.010725129395723343, 0.002809042576700449, -0.0013456842862069607, -0.013697233982384205, 0.017725041136145592, 0.022553030401468277, 0.015237079933285713, 0.025081336498260498, -0.0025736948009580374, -0.014322586357593536, -0.00503980228677392, 0.00973666924983263, 0.005732396617531776, 0.008822175674140453, -0.03442800045013428, 0.010832716710865498, 0.010711681097745895, 0.00881545152515173, -0.024422362446784973, 0.010664611123502254, -0.028107235208153725, -0.0010817587608471513, -0.006650252733379602, 0.0024509779177606106, -0.025847896933555603, 0.0007745459442958236, -0.002948570065200329, 0.036445267498493195, -0.006229988764971495, 0.03286798298358917, -0.017415726557374, 0.0022475700825452805, 0.008176649920642376, -0.011202548630535603, -0.03515421599149704, -0.0015364839928224683, -0.010402366518974304, 0.03294867277145386, -0.019083334133028984, -0.0015440487768501043, 0.020777836441993713, -0.006189643405377865, -0.016084332019090652, -0.016272610053420067, -0.001156565616838634, 0.027623090893030167, -0.0009531580144539475, 0.01237928681075573, -0.033110056072473526, 0.010617542080581188, -0.0017398917116224766, 0.009400458075106144, -0.01533121895045042, 0.0013053390430286527, -0.016245713457465172, -0.02290268987417221, 0.03405144438147545, -0.007275605108588934, 0.015801914036273956, 0.000935506948735565, 9.492706158198416e-05, -0.016823995858430862, -0.008896141313016415, -0.025511687621474266, 0.01779228262603283, -0.04671987518668175, 0.008116132579743862, 0.00612240144982934, -0.0035201285500079393, 0.003353704232722521, 0.006619993597269058, -0.02506788820028305, 0.009299594908952713, 0.047580573707818985, -0.0009296232601627707, 0.015559842810034752, 0.0016709683695808053, -0.005412996280938387, -0.02708515338599682, -0.0028409825172275305, -0.005534032359719276, -0.010678059421479702, 0.006579648237675428, -0.02754240110516548, -0.018222633749246597, -0.02057611010968685, 0.003718493040651083, 0.00020477347425185144, -0.02306407131254673, -0.024718228727579117, 0.01730814017355442, -0.006129125598818064, 0.015129492618143559, -0.0007871538982726634, -0.01746952161192894, 0.031012097373604774, -0.0030948217026889324, -0.027421364560723305, 0.024395465850830078, -0.0038966848514974117, 0.01364343985915184, -0.020414728671312332, -0.02048197016119957, -0.008936487138271332, -0.03738665580749512, -0.031738314777612686, 0.006825082469731569, 0.009434078820049763, -0.0018743760883808136, 0.003731941571459174, -0.012607910670340061, -0.006804909557104111, -0.027004463598132133, -0.004938938654959202, -0.012486875057220459, 0.008990280330181122, 0.008163201622664928, 0.02311786450445652, 0.014349482953548431, 0.0033789200242608786, -0.0137241305783391, -0.016178470104932785, 0.008257340639829636, -0.01303153671324253, -0.034858349710702896, -0.01916402392089367, -0.007181466091424227, 0.0358804315328598, 0.02353476732969284, -0.00581981148570776, -0.009306319057941437, 0.011027718894183636, -0.022983379662036896, -0.01480672974139452, 0.019338853657245636, 0.016595372930169106, 0.014282241463661194, 0.01483362726867199, 0.0026913685724139214, 0.033647991716861725, -0.015922950580716133, 0.01963471993803978, -0.019554028287529945, 0.009467700496315956, 0.008149753324687481, 0.025995830073952675, -0.009662702679634094, 0.003370514838024974, -0.011814452707767487, -0.03741355612874031, 0.003199047176167369, -0.01788642257452011, 0.0040378933772444725, 0.018249530345201492, -0.013273607939481735, 0.010496505536139011, -0.006132487673312426, 0.00855320692062378, -0.0070537058636546135, 0.0036680614575743675, 0.0009102911571972072, -0.02818792685866356, 0.005759293679147959, 0.000171257444890216, 0.031012097373604774, -0.003920219838619232, -0.014416725374758244, -0.005742482841014862, 0.0017482968978583813, 0.008983556181192398, -0.01588260568678379, 0.005547480657696724, 0.018034355714917183, -0.035450082272291183, 0.013999823480844498, -0.022835448384284973, -0.0013692190404981375, 0.023238901048898697, 0.0184647049754858, -0.00021580539760179818, 0.009279422461986542, -0.004596003796905279, -0.021880608052015305, 0.01208342146128416, 0.022579926997423172, 0.004901955835521221, 0.020979562774300575, 0.002308088121935725, 0.03668734058737755, -0.021087151020765305, 0.0171467587351799, -0.03335212543606758, -0.0163667481392622, -0.030635541304945946, 0.030016914010047913, 0.0036109054926782846, -0.024314776062965393, -0.035611461848020554, 0.006223264615982771, 0.006408180575817823, -0.012217906303703785, -0.00997201632708311, -0.002232440747320652, 0.0008867564029060304, 0.017698144540190697, -0.007208362687379122, -0.005248252768069506, 0.005029715597629547, 0.00696629099547863, 0.01401327271014452, -0.030689334496855736, -0.0012439804850146174, 0.1820380538702011, -0.006525854580104351, 0.02075093984603882, 0.033755578100681305, -0.0010472971480339766, 0.008371653035283089, 0.025565480813384056, 0.005164199974387884, -0.018612638115882874, -0.008754933252930641, -0.027784472331404686, 0.02606307342648506, -0.027730679139494896, 0.005386099219322205, 0.006925945635885, -0.009824084118008614, -0.006905772723257542, -0.04322328045964241, -0.026533767580986023, -0.00497592194005847, -0.005806363187730312, 0.013919133692979813, -0.006004727445542812, -0.033970754593610764, 0.008694414980709553, -0.010852889157831669, -0.015761569142341614, 0.004226171411573887, 0.02802654542028904, 0.002311450196430087, -0.009548391215503216, -0.0028477066662162542, -0.005833259783685207, 0.00030784314731135964, -0.005917312577366829, 3.9557318814331666e-05, 0.020710594952106476, -0.003926943987607956, 0.0359073281288147, -0.012016179040074348, 0.02627824805676937, -0.021786469966173172, -0.02611686661839485, -0.004787643905729055, 0.009091144427657127, 0.03846253082156181, 0.001156565616838634, -0.011969109997153282, -0.013959478586912155, 0.009783738292753696, -0.014537760987877846, 0.002928397385403514, 0.033325228840112686, 0.011585828848183155, -0.014040169306099415, 0.009165110066533089, -0.006495595443993807, 0.010906683281064034, 0.03456248715519905, 0.008338031359016895, -0.015613636001944542, 0.03609560802578926, -0.0010178786469623446, 0.01873367466032505, -0.005490324925631285, -0.0015944804763421416, -0.043357763439416885, 0.012197732925415039, 0.01604398712515831, -0.018558844923973083, -0.012715497985482216, -0.024045806378126144, 0.01069150771945715, 0.013051709160208702, -0.011491689831018448, -0.01566743105649948, 0.014497416093945503, 0.007295777555555105, -0.021974748000502586, 0.018652983009815216, -0.014524312689900398, -0.020966114476323128, 0.0007392438128590584, 0.009703047573566437, -0.005164199974387884, -0.028214823454618454, 0.027219638228416443, -0.026264799758791924, 0.01656847633421421, -0.03383627161383629, -0.005752569530159235, 0.0031015460845083, 0.007295777555555105, 0.0025333494413644075, 0.026533767580986023, 0.0019567476119846106, -0.0129306735470891, 0.022620271891355515, -0.006519130431115627, -0.013172744773328304, -0.01974230632185936, 0.046155039221048355, 0.0406411811709404, 0.02194785140454769, -0.0030897785909473896, 0.016218816861510277, 0.010308227501809597, -0.00581981148570776, -0.0011019314406439662, -0.032599013298749924, -0.013946030288934708, -0.016702959313988686, 0.002661109669134021, -0.011653071269392967, 0.004192550666630268, 0.006391370203346014, -0.016433991491794586, -0.01884126104414463, -0.014362932182848454, -0.004071514587849379, -0.006031624507158995, -0.01989023946225643, -0.005376012995839119, 0.015506048686802387, -0.011895143426954746, -0.004875058773905039, -0.041932228952646255, 0.008257340639829636, -0.0012111999094486237, -0.010825992561876774, 0.033432815223932266, -0.02691032364964485, -0.010059431195259094, 0.007430261932313442, 0.014295689761638641, 0.00015843940491322428, -0.003580646589398384, -0.043572939932346344, -0.0395653061568737, 0.022674066945910454, -0.004881782922893763, -0.002640936989337206, -0.01533121895045042, -0.008095959201455116, 0.017778834328055382, -0.02606307342648506, 0.011411000043153763, -0.0035739224404096603, -0.010630990378558636, -0.029694151133298874, -0.013280332088470459, -0.007073878310620785, 0.004609452094882727, -0.01869332790374756, -0.011484965682029724, -0.029478976503014565, 0.01393258199095726, -0.018962297588586807, 0.007813542149960995, -0.01229859609156847, -0.0527716688811779, 0.005591188091784716, 0.0364183709025383, -0.0033789200242608786, -0.009326491504907608, -0.0179402157664299, -0.17009584605693817, 0.013226538896560669, 0.002775421366095543, -0.0007413451676256955, 0.01947333849966526, 0.02754240110516548, 0.018384015187621117, 0.00857337936758995, 0.012675153091549873, 0.00019783913739956915, 0.0026829633861780167, 0.016003640368580818, -0.028322409838438034, 0.014914317987859249, -0.005554204806685448, 0.004158929456025362, 0.022095782682299614, 0.007302501704543829, 0.0453750304877758, 0.020253347232937813, -0.004158929456025362, -0.02907552197575569, 0.01779228262603283, -0.0023938219528645277, -0.0017735128058120608, 0.0211140476167202, -0.008492688648402691, 0.0004921287763863802, -0.009124765172600746, -0.03171141818165779, 0.006993187591433525, -0.018854709342122078, 0.015963295474648476, -0.0020475247874855995, 0.0009993870044127107, 0.00862717255949974, -0.006522492505609989, -0.01757710799574852, -0.016649166122078896, 0.03039347007870674, 0.014860523864626884, 0.020347487181425095, 0.019769202917814255, 0.0007178103551268578, 0.00939373392611742, 0.031953487545251846, 0.00247955578379333, -0.020912321284413338, -0.0056315334513783455, -0.035234905779361725, 0.03120037540793419, -0.0058030011132359505, -0.0003771866613533348, -4.5467277232091874e-05, 0.021409913897514343, -0.014726039953529835, -0.02786516398191452, 0.005987917073071003, 0.000644684478174895, 0.004431260284036398, -0.009171835146844387, -0.027784472331404686, -0.029102420434355736, 0.00844561867415905, 0.02232440747320652, -0.019285060465335846, -0.022620271891355515, 0.00393366813659668, -0.03289487957954407, 0.005930761341005564, -0.017604004591703415, 0.0007669812184758484, 0.025686517357826233, -0.016299506649374962, -0.008687690831720829, 0.023615457117557526, -0.017025722190737724, 0.003994185943156481, 0.009904774837195873, -0.01155893225222826, 0.01385189127177, 0.01414775662124157, -0.014900869689881802, -0.001850841217674315, 0.0036714235320687294, -0.022149577736854553, -0.01401327271014452, -0.013367746956646442, 0.003752114251255989, -0.028779657557606697, 0.021988196298480034, -0.040668077766895294, -0.001184303080663085, 1.3724235941481311e-05, 0.0063073174096643925, 0.02154439687728882, 0.014739488251507282, -0.02459719218313694, 0.015869157388806343, -0.007147844880819321, 0.010825992561876774, -0.010388918220996857, -0.0485488623380661, -0.01348878350108862, 0.015949847176671028, 0.014941214583814144, -0.03077002614736557, 0.006152660585939884, 0.04053359106183052, 0.018303323537111282, -0.021651985123753548, 0.005813087336719036, 0.009481148794293404, 0.016756754368543625, 0.007995096035301685, 0.02697756700217724, -0.01496811117976904, -0.02010541409254074, 0.007248708046972752, -0.006717494688928127, 0.044729504734277725, -0.00035092016332782805, -0.008936487138271332, 0.019338853657245636, 0.01065788697451353, 0.0005274309078231454, -0.118238665163517, -0.03120037540793419, -0.015008457005023956, 0.016810547560453415, -0.01208342146128416, 0.020239898934960365, -0.018236082047224045, 0.0028023181948810816, 0.01577501744031906, 0.02196129970252514, -0.023467523977160454, -0.0205895584076643, -0.004888507071882486, -0.006273696199059486, -0.01710641384124756, -0.010005638003349304, -0.01615157350897789, -0.0007997617940418422, -0.01911023072898388, 0.03286798298358917, 0.012197732925415039, -0.0047204019501805305, -0.009548391215503216, -0.014470519497990608, 0.010671335272490978, 0.003698320360854268, -0.029317595064640045, 0.0058668809942901134, 0.018706778064370155, 0.007759748492389917, 0.003197366138920188, -0.020656799897551537, 0.013878787867724895, -0.017039170488715172, 0.002677920274436474, 0.01172031369060278, 0.008828899823129177, -0.02496029995381832, 0.02676239237189293, -0.033486612141132355, -0.021705778315663338, 0.00010637924424372613, 0.022929586470127106, -0.01779228262603283, 0.0022038628812879324, -0.007087326608598232, -0.04099084064364433, 0.021127495914697647, -0.012332217767834663, -0.03077002614736557, -0.028107235208153725, -0.03230314701795578, -0.03582663834095001, 0.0033587473444640636, 0.028053442016243935, -0.011666519567370415, -0.0014230128144845366, 0.011458069086074829, -0.006714132614433765, -0.014658797532320023, 0.0008476718794554472, 0.002119810087606311, -0.006905772723257542, 0.03472386673092842, 0.020145760849118233, -0.01451086439192295, -0.04074876755475998, -0.00497592194005847, 0.011727037839591503, -0.008802002295851707, -0.0050902338698506355, 0.021611640229821205, -0.023023726418614388, 0.00897010788321495, -0.021181289106607437, -0.002116448013111949, -0.0067107705399394035, 0.004058066289871931, 0.014040169306099415, -0.022149577736854553, -0.010866337455809116, -0.04112532362341881, -0.008633896708488464, -0.015909502282738686, 0.008822175674140453, 0.015129492618143559, 0.002930078422650695, 0.0028056802693754435, 0.022674066945910454, -0.03994186222553253, 0.024355120956897736, 0.00999891385436058, 0.01071840524673462, -0.01694503240287304, -0.0005749207339249551, 0.007591643370687962, 0.02575375884771347, -0.0014129264745861292, 0.024314776062965393, 0.015237079933285713, -0.03383627161383629, -0.016743306070566177, -0.04481019452214241, 0.02048197016119957, -0.011908591724932194, -0.03176521137356758, -0.007389916572719812, 0.010550299659371376, 0.004421174060553312, -0.014470519497990608, 0.005577739793807268, -0.004881782922893763, -0.018827812746167183, -0.00036163689219392836, -0.003980737645179033, 0.004535485524684191, -0.014658797532320023, -0.028161028400063515, -0.0029704237822443247, -0.00857337936758995, 0.013636715710163116, 0.023212004452943802, 0.0062434375286102295, 0.008506136946380138, 4.105450716451742e-05, 0.027381019666790962, -0.03733286261558533, -0.007134396117180586, 0.009299594908952713, 0.022916138172149658, -0.0051272171549499035, -0.017805730924010277, 0.0018592465203255415, -0.020818181335926056, 0.0061728330329060555, -0.002200500573962927, -0.009306319057941437, 0.02353476732969284, -0.0023181745782494545, 0.018007459118962288, 0.013307229615747929, 0.03996875882148743, 0.0041454811580479145, -0.032545220106840134, 0.0008758295443840325, -0.01757710799574852, -0.01783262938261032, 0.004286689683794975, -0.0036613373085856438, 0.015748120844364166, 0.021235084161162376, -0.007806818000972271, 0.040668077766895294, 0.009023902006447315, -0.01211704220622778, -0.029963118955492973, 0.012702049687504768, -0.0042093610391020775, 0.005096958018839359, -0.018168840557336807, -0.025780655443668365, -0.012365838512778282, 0.05400892719626427, 0.015855709090828896, 0.009931671433150768, 0.009272698312997818, 0.005049888510257006, -0.020186105743050575, -0.04464881494641304, 0.027354123070836067, 0.00461617624387145, -0.0064014564268291, -0.01414775662124157, 0.005796276964247227, 0.0006472060922533274, 0.0050902338698506355, 0.01757710799574852, -0.0006656976765953004, -0.049544043838977814, 0.023763390257954597, 0.003057838650420308, 0.022889241576194763, 0.0003023797180503607, -0.0049187662079930305, -0.013502231799066067, 0.006734305527061224, 0.043788112699985504, 0.004148843232542276, -0.004952387418597937, 0.013448437675833702, 0.015371564775705338, 0.010012362152338028, 0.0007131875026971102, 0.009561839513480663, -0.019540579989552498, -0.004031169228255749, 0.005187734961509705, 0.02528306283056736, -0.013071881607174873, -0.0096358060836792, 0.009924947284162045, 0.023359937593340874, 0.01007960457354784, -0.019177472218871117, 0.00014352005382534117, -0.013609819114208221, -0.026036174967885017, 0.0006627558614127338, -0.01588260568678379, -0.021356118842959404, -0.002350114518776536, 0.02075093984603882, -0.00897010788321495, 0.011659795418381691, 0.01342826522886753, 0.015815362334251404, -0.03060864470899105, 0.013609819114208221, -0.015452255494892597, -0.019486786797642708, -0.02149060368537903, 0.023655802011489868, 0.004118584096431732, 0.007315950468182564, 0.031899694353342056, 0.010570472106337547, 0.015089147724211216, 0.03752114251255989, 0.023238901048898697, -0.017926767468452454, 0.00023891990713309497, 0.00921218004077673, -0.005181010812520981, 0.027381019666790962, -0.014524312689900398, -0.015425357967615128, -0.006381283979862928, -0.005251614842563868, 0.020226450636982918, 0.002466107252985239, 0.003407497890293598, 0.07870025932788849, 0.015075698494911194, -0.006287144962698221, 0.009723220951855183, -0.011861522682011127, 0.014873972162604332, 0.0009203774970956147, 0.0029754668939858675, 0.013495507650077343, -0.04123291000723839, 0.005930761341005564, 0.010234260931611061, 0.003580646589398384, -0.029317595064640045, -0.003390687517821789, 0.015586739405989647, -0.010778922587633133, 0.013811545446515083, -0.0006203092052601278, -0.009548391215503216, 0.0015541351167485118, -0.004636349156498909, 0.021678881719708443, -0.014699142426252365, -0.02607652172446251, -0.004058066289871931, 0.013737579807639122, -0.011417724192142487, 0.0016928220866248012, -0.02907552197575569, 0.01784607768058777, -0.0028359394054859877, -0.032114870846271515, -0.03305625915527344, -0.004148843232542276, 0.012029627338051796, -0.011922040022909641, -0.02607652172446251, 0.021840263158082962, 0.011175652034580708, 0.016649166122078896, -0.0019970929715782404, -0.01826297864317894, -0.02274130843579769, -0.008243892341852188, -0.009810635820031166, -0.020468521863222122, -0.01783262938261032, -0.048683345317840576], "b8d3d508-5cbc-4dc0-b528-dc4943c195cc": [0.009682169184088707, 0.008633995428681374, -0.007847865112125874, -0.01728142984211445, -0.008156942203640938, -0.008620557375252247, -0.013908459804952145, -0.008432423695921898, -0.0007428763783536851, -0.02522336132824421, -0.025814639404416084, 0.011617259122431278, -0.026983756572008133, 0.03598729893565178, 0.009191677905619144, 0.015588225796818733, 0.023704852908849716, 0.0022727230098098516, -0.013471720740199089, 0.0014068037271499634, -0.013182801194489002, -0.0065275696106255054, -0.02042595110833645, -0.030612049624323845, 0.003823146689683199, 0.008089751936495304, 0.02899947576224804, -0.018128031864762306, 0.028650084510445595, -0.008062874898314476, 0.010280165821313858, -0.01253777090460062, -0.01776520162820816, -0.01917620562016964, -0.003371289698407054, 0.001106125651858747, 0.0035644627641886473, -0.010555647313594818, -0.0012715826742351055, -0.0010952071752399206, 0.03867492452263832, -0.006443581078201532, -0.028972597792744637, -0.029536999762058258, -0.013303744606673717, 0.017509877681732178, 0.00012766219151671976, -0.043028876185417175, -0.02042595110833645, -0.004646231885999441, 0.015158205293118954, 0.016448264941573143, -0.039481211453676224, -0.0032100321259349585, -0.002791770501062274, 0.015856988728046417, -0.009137925691902637, 0.019122453406453133, -0.0006635074387304485, -0.015991369262337685, 0.022280411794781685, -0.008432423695921898, -0.025250237435102463, -0.017724888399243355, -0.013357496820390224, 0.006440221797674894, 0.019055262207984924, 0.013115610927343369, 0.0015848589828237891, 0.006745939143002033, 0.014217536896467209, 0.03372969478368759, 0.007256587967276573, 0.01505070086568594, 0.021984772756695747, -0.0161123126745224, -0.002339913509786129, -0.002867360133677721, -0.02719876542687416, 0.0022559252101927996, -0.010703466832637787, -0.011005824431777, -0.002123223850503564, 0.018907442688941956, 0.012987948022782803, -0.01509101502597332, 0.02460520714521408, 0.020479703322052956, -0.002504530595615506, -0.029752010479569435, 0.005240868777036667, -0.015762921422719955, -0.022374479100108147, 0.030558297410607338, -0.0058287871070206165, 0.017483001574873924, -0.003357851644977927, 0.04375453665852547, -0.005838865414261818, -0.044695205986499786, -0.013108891434967518, 0.023395776748657227, -0.018128031864762306, -0.004726860672235489, -0.017657697200775146, 0.010663152672350407, 0.01466099452227354, -0.00337968859821558, 0.017483001574873924, -0.0239870548248291, -0.014553490094840527, 0.048995405435562134, 0.0029530280735343695, -0.028569454327225685, 0.022817937657237053, -0.0035644627641886473, 0.026983756572008133, -0.010898320004343987, 0.002781691960990429, 0.010468299500644207, 0.021191924810409546, 0.0023365539964288473, 0.024511141702532768, -0.014916319400072098, 0.0072633069939911366, -0.01980779692530632, 0.0008625596528872848, -0.013384372927248478, -0.035100385546684265, -0.03402533382177353, 0.0035342269111424685, 0.025250237435102463, -0.03230525553226471, 0.0051803975366055965, 0.00804943684488535, 0.016152627766132355, 0.007048296742141247, 0.03880930691957474, -0.026069963350892067, -0.03426722064614296, 0.0020761904306709766, -0.004390907473862171, -0.013680011965334415, -0.0009440283174626529, 0.017079858109354973, 0.023597348481416702, 0.01626013219356537, 0.01932402513921261, -0.030477669090032578, -0.025680257007479668, 0.022576050832867622, 0.03270839899778366, 0.008862444199621677, -0.012356356717646122, 0.01996905542910099, 0.007431283593177795, -0.033595312386751175, -0.0036215747240930796, 0.00650405278429389, 0.00833163782954216, 0.02697031758725643, 0.02271043136715889, -0.014445984736084938, -0.002202172763645649, -0.01406971737742424, 0.034697238355875015, 0.024336446076631546, 0.022885126993060112, -0.017200801521539688, 0.009016982279717922, 0.003954168409109116, 0.0021484203170984983, -0.003381368238478899, 0.01596449315547943, -0.011610540561378002, 0.0006744259153492749, 0.017160486429929733, 0.011106610298156738, -0.02608340233564377, -0.010354075580835342, 0.014472860842943192, -0.021823516115546227, 0.008754938840866089, 0.0353422686457634, -0.031095823273062706, -0.02060064673423767, 0.00046571504208259284, 0.009137925691902637, 0.008203975856304169, 0.01347844023257494, 0.009514193050563335, 0.01996905542910099, -0.007397687993943691, -0.006295762024819851, -0.6011679768562317, -0.000353590672602877, -0.0065981196239590645, -0.023785483092069626, 0.01009875163435936, 0.01308873388916254, 0.009601540863513947, -0.004548805300146341, -0.022051963955163956, 0.007733641192317009, -0.008768376894295216, 0.02608340233564377, 0.03553040325641632, 0.005707843694835901, -0.004269964527338743, -0.01878649927675724, 0.020761903375387192, -0.019861549139022827, -0.007471597753465176, 0.008197256363928318, -0.00829132366925478, 0.027145013213157654, -0.037304237484931946, -0.0065477266907691956, 0.0064838957041502, 0.01064299512654543, 0.0024776544887572527, -0.01351875439286232, -0.0012043919414281845, 0.017577068880200386, -0.009843426756560802, 0.0007046617101877928, -0.010112189687788486, 0.026513421908020973, 0.03897056356072426, 0.0010490136919543147, -0.01635419949889183, 0.027763167396187782, -0.0013438125606626272, 0.03915869817137718, -0.014257851056754589, -0.01894775778055191, 0.015346338972449303, 0.001542024896480143, 0.0032385883387178183, -0.010192818008363247, 0.014741623774170876, 0.0082510095089674, 0.018746184185147285, -0.03883618116378784, 0.00107588991522789, 0.005647372454404831, -1.7535835468152072e-06, -0.03528851643204689, 0.0160988736897707, -0.009218554012477398, 0.02773629128932953, -0.00888260081410408, -0.005734720267355442, -0.030773308128118515, 0.0028438433073461056, 0.007485035806894302, 0.010911758057773113, 0.0016302126459777355, -0.03184835612773895, 0.018410231918096542, -0.029805762693285942, -0.008244290016591549, 0.0027447370812296867, -0.027306271716952324, 0.020063120871782303, 0.014687871560454369, -0.00609083054587245, -0.004713422618806362, 0.011610540561378002, 0.04147005453705788, 0.0306389257311821, 0.010905038565397263, 0.010589242912828922, 0.025263676419854164, 0.002439019735902548, 0.004051594994962215, -0.015306024812161922, -0.03867492452263832, 0.037142977118492126, 0.0027346585411578417, -0.0030773307662457228, -0.0023617504630237818, 0.008479457348585129, 0.026862813159823418, -0.004965387284755707, 0.045152101665735245, -0.0007021420751698315, -0.0416313111782074, -0.028650084510445595, 0.007968808524310589, -0.0018107873620465398, 0.0038668205961585045, -0.007579102646559477, -0.02671499364078045, -0.0330309122800827, -0.029832638800144196, 0.0025112496223300695, -0.008392109535634518, -0.009534349665045738, 0.01948528178036213, 0.0161123126745224, -0.010118908248841763, 0.022522298619151115, -0.012947633862495422, -0.006218492519110441, -0.04474895820021629, 0.0016906841192394495, 0.019135890528559685, 0.008130066096782684, -0.012833409942686558, 0.008748219348490238, -0.00442114332690835, -0.007283464074134827, -0.01604512147605419, 5.8371857448946685e-05, 0.010501895099878311, 0.000913792522624135, -0.005644012708216906, 0.02335546165704727, 0.002507890108972788, 0.0035879795905202627, -0.0023130374029278755, -0.011771798133850098, 0.013115610927343369, -0.011583664454519749, 0.02262980304658413, -0.01940465345978737, -0.024349883198738098, 0.01603168435394764, -0.012228693813085556, 0.01351203490048647, -0.00583550613373518, 0.002553243888542056, -0.032574016600847244, -0.007350654806941748, -0.01690516248345375, 0.005277823656797409, 0.003735798876732588, -0.020009368658065796, -0.006772815249860287, -0.02262980304658413, 0.005680967587977648, -0.029187608510255814, -0.013592664152383804, -0.014338480308651924, -0.020802218466997147, -0.010461580939590931, -0.007605979219079018, 0.008109908550977707, -0.009702326729893684, 0.0012186700478196144, 0.0006966828368604183, 0.010542209260165691, -0.0056776078417897224, -0.01564197801053524, 0.022374479100108147, -0.01760394498705864, 0.024860532954335213, -0.01987498812377453, -0.02262980304658413, -0.024228939786553383, 0.009648574516177177, -0.004105347208678722, -0.022361040115356445, -0.003762675216421485, -0.031875234097242355, -0.0028354444075375795, 0.0013950454303994775, 0.0009608260006643832, 0.015265710651874542, -0.011093172244727612, 0.007229711394757032, -0.006265526171773672, 0.005334935616701841, -0.015144767239689827, 0.0338103249669075, 0.024175187572836876, -0.017335182055830956, 0.01580323651432991, 0.03491225093603134, 0.01505070086568594, 0.00907745398581028, -0.011879302561283112, 0.02342265285551548, 0.018598366528749466, 0.016837971284985542, 0.0007970487931743264, 0.009379811584949493, 0.0028841577004641294, 0.029375743120908737, 0.008378671482205391, 0.03561103343963623, 0.00025616426137275994, 0.022441670298576355, 0.006960948929190636, 0.008029280230402946, 0.014876005239784718, -0.014204098843038082, -0.009749360382556915, -0.0017351979622617364, 0.015453844331204891, 0.0006752657936885953, 0.01728142984211445, -0.005939651280641556, 0.020439388230443, -0.03577229008078575, -0.02484709396958351, -0.013370934873819351, 0.011146925389766693, 0.018504299223423004, 0.009500754997134209, 0.004081830848008394, -0.00015495838306378573, -0.0012043919414281845, 0.0020274771377444267, 0.005795191507786512, 0.01909557543694973, -0.014432546682655811, -0.010676590725779533, -0.004646231885999441, 0.003594698617234826, -0.0003218851052224636, -0.029913267120718956, -0.06219164654612541, 0.00389033742249012, 0.0066653103567659855, 0.0076395743526518345, 0.008889320306479931, 0.050419848412275314, 0.01449973788112402, 0.04039500653743744, -0.0027749729342758656, 0.044990845024585724, -0.007653012406080961, -0.0019031745614483953, 0.025505561381578445, -0.008781814947724342, -0.04284074530005455, 0.045770253986120224, 0.010071875527501106, 0.022925442084670067, 0.007485035806894302, 0.004626074805855751, -0.0046361531130969524, 0.021044105291366577, 0.005445800255984068, -0.004162459168583155, -0.005929572973400354, -0.010051717981696129, 0.001282501150853932, 0.024228939786553383, 0.017550192773342133, 0.025519000366330147, -0.0071759591810405254, 0.0165020190179348, 0.0001498141064075753, 0.012826690450310707, 0.03080018423497677, 0.01643482781946659, 0.002566681941971183, -0.012880443595349789, -0.027709415182471275, 0.013397810980677605, -0.0005950569757260382, -0.007471597753465176, -0.028435073792934418, -0.008714624680578709, -0.0001765853667166084, 0.02985951490700245, 0.01666327565908432, 0.008318199776113033, 0.011765078641474247, 0.023436089977622032, -0.029268236830830574, -0.005822068080306053, -0.020237816497683525, 0.012974509969353676, 0.02115160971879959, -0.013102171942591667, -0.007397687993943691, -0.003487193491309881, -0.010784096084535122, -0.0005858182557858527, 0.021863829344511032, -0.024107996374368668, 0.008217413909733295, 0.0049116350710392, -0.00571792246773839, -0.01556134968996048, -0.016313884407281876, 0.029456371441483498, 0.001217830111272633, 0.020466264337301254, -0.00833835732191801, -0.0029933424666523933, -0.006383109837770462, -0.011046139523386955, 0.004041516222059727, 0.042491354048252106, 0.004172537941485643, -0.009836708195507526, -0.01332390122115612, 0.004888118244707584, -0.0023264754563570023, 0.008271166123449802, -0.014943195506930351, -0.010636276565492153, -0.034616611897945404, 0.013330620713531971, -0.018128031864762306, 0.018974633887410164, 0.008654152974486351, 0.028730712831020355, 0.02058720774948597, -0.0058119893074035645, -0.015991369262337685, -0.0013866465305909514, 0.02956387586891651, 0.04630777984857559, 0.03238588199019432, -0.02068127505481243, 0.005566743668168783, -0.031472090631723404, -0.02781691960990429, -0.000548023555893451, -0.006651872303336859, 0.025989335030317307, -0.0007139004301279783, -0.011133487336337566, -0.019431529566645622, 0.0033326551783829927, -0.006050515919923782, -0.0023936661891639233, 0.01627356931567192, -0.04235697165131569, -0.022374479100108147, -0.0005354253225959837, -0.03397158160805702, 0.03096144087612629, -0.008815410546958447, 0.012410108931362629, 0.02334202453494072, 0.003033656859770417, 0.013041701167821884, 0.012578085064888, -0.009097610600292683, 0.03450910747051239, -0.03639044240117073, 0.009467159397900105, 0.007243149448186159, 0.017872706055641174, 0.025102417916059494, -0.025666819885373116, 0.027790043503046036, 0.01878649927675724, 0.01902838610112667, 0.004891477525234222, -0.013155925087630749, 0.009252149611711502, 0.01823553629219532, 0.01151647325605154, -0.02830069325864315, -0.00293791014701128, 0.0012211896246299148, 0.019055262207984924, -0.008506333455443382, -0.016999227926135063, -0.02042595110833645, 0.027239080518484116, 0.011267867870628834, -0.031068945303559303, -0.026594050228595734, 0.022146031260490417, -0.014257851056754589, -0.021326305344700813, -0.012101031839847565, 0.0006979426252655685, -0.010710186325013638, -0.017147047445178032, -0.01148287858814001, 0.010159223340451717, -0.01626013219356537, 0.019041823223233223, -0.009500754997134209, -0.006242009345442057, 0.020157188177108765, -0.03168709948658943, -0.018571488559246063, 0.005203913897275925, -0.008197256363928318, -0.01673046685755253, -0.025760887190699577, 0.0275078434497118, 0.013391092419624329, 0.005314778536558151, 0.010871443897485733, 0.00495194923132658, 0.004293480888009071, -0.008210694417357445, -0.04832350090146065, -0.017321743071079254, -0.0012396670645102859, -0.009326059371232986, 0.006037077866494656, -0.005035937763750553, -0.005022499244660139, 0.008177099749445915, 0.0104145472869277, -0.013693450018763542, -0.0018695791950449347, -0.007720203138887882, -0.02271043136715889, -0.00962169747799635, 0.057407673448324203, 0.003557743737474084, -0.0022844814229756594, 0.016555771231651306, -0.01823553629219532, -0.04147005453705788, -0.002141701290383935, 0.0032083524856716394, -0.015668854117393494, -0.021554753184318542, -0.023382337763905525, 0.0021853751968592405, 0.0026271536480635405, -0.00544244097545743, 0.00017742524505592883, 0.0502854660153389, -0.019431529566645622, 0.01862524263560772, 0.012544490396976471, -0.012524332851171494, 0.016287008300423622, -0.007868022657930851, 0.022522298619151115, -0.0016117352060973644, -0.024806778877973557, 0.017187362536787987, -0.03507350757718086, 0.0016218137461692095, 0.012551208958029747, -0.02248198352754116, 0.030531421303749084, -0.010972229763865471, -0.03711610287427902, 0.008425705134868622, 0.008822129108011723, 0.01458036620169878, 0.011852426454424858, 0.025962458923459053, -0.019512157887220383, -0.012127907946705818, 0.003608136670663953, -0.018665555864572525, 0.007283464074134827, -0.020089996978640556, 0.018813375383615494, -0.002543165348470211, 0.035476651042699814, 0.017778640612959862, -0.018759623169898987, -0.02994014322757721, -0.028623206540942192, -0.022334164008498192, 0.017980212345719337, 0.012571366503834724, 0.02940261922776699, 0.004679827019572258, 0.0011372013250365853, -0.006584681570529938, -0.0027077822014689445, 0.0017738325987011194, -0.030853936448693275, -0.0022945599630475044, 0.03757299855351448, 0.04722157120704651, 0.018746184185147285, 0.018437108024954796, 0.014956633560359478, 0.048995405435562134, -0.0117919547483325, -0.0019115733448415995, 0.010246571153402328, 0.0002408364089205861, 0.001130482298322022, -0.010360795073211193, -0.01918964274227619, -0.0014261211035773158, 0.010676590725779533, -0.01531946286559105, 0.004095268901437521, 0.005892618093639612, 0.03424034267663956, 0.008479457348585129, 0.00562049588188529, -0.018289288505911827, -0.014204098843038082, -0.013673292472958565, 0.014015965163707733, -0.01120739709585905, 0.038701802492141724, -0.008983386680483818, 0.009373092092573643, 0.04595838859677315, -0.007135644555091858, -0.001424441346898675, -0.002218970563262701, 0.00852649100124836, -0.03295028209686279, 0.024726150557398796, 0.0015680612996220589, 0.02522336132824421, -0.006866882089525461, 0.01120739709585905, -0.03372969478368759, 0.005775034427642822, -0.021084418520331383, -0.002612035721540451, 0.02891884557902813, 0.0030504544265568256, -0.007202835287898779, -0.01824897527694702, 0.001160718034952879, 0.004222930874675512, -0.02129942923784256, 0.026822498068213463, -0.0053718904964625835, -0.02539805695414543, -0.03128395602107048, -0.017483001574873924, -0.012598242610692978, 0.0009835028322413564, 0.02460520714521408, 0.007599260192364454, 0.004202773794531822, -0.01910901442170143, -0.012974509969353676, 0.017093295231461525, -0.014325042255222797, 0.04974794015288353, 0.013485158793628216, 0.019848112016916275, 0.0151313291862607, 0.017590506002306938, -0.006097549572587013, 0.0011044458951801062, 0.019203081727027893, 0.014056279323995113, 0.006708984263241291, 0.022011648863554, -0.02154131606221199, -0.005281183402985334, 0.006168099585920572, -0.011812112294137478, -0.025088980793952942, -0.011872584000229836, 0.019135890528559685, 0.008815410546958447, 0.011146925389766693, -0.029805762693285942, -0.011106610298156738, -0.019915301352739334, -0.007149082608520985, -0.012907319702208042, 0.010569085367023945, -0.003799630096182227, -0.012470580637454987, -0.016690151765942574, 0.025572752580046654, 0.01458036620169878, 0.04426518455147743, -0.023127013817429543, 0.011462721042335033, 0.012699028477072716, -0.004659669939428568, -0.039104945957660675, 0.005943011026829481, 0.0006059754523448646, 0.033514685928821564, -0.03276215121150017, 0.004800770431756973, 0.030853936448693275, -0.006557805463671684, -0.015749482437968254, -0.02404080703854561, 0.004333795513957739, 0.03649795055389404, 0.001484912820160389, 0.0014966712333261967, -0.02648654580116272, 0.018907442688941956, -0.0023903066758066416, 0.008862444199621677, -0.020170627161860466, -0.005771674681454897, -0.0042565264739096165, -0.03544977679848671, 0.022105716168880463, -0.019364338368177414, 0.0030218984466046095, 0.0034284016583114862, 0.0009163121576420963, -0.010636276565492153, -0.00883556716144085, -0.016542332246899605, 0.030531421303749084, -0.008257728070020676, -0.0487535186111927, -0.004706703592091799, -0.0034149636048823595, 0.023006070405244827, -0.013142487034201622, -0.032117120921611786, -0.006672029383480549, 0.035261642187833786, -0.030208906158804893, 0.029510123655200005, -0.012376513332128525, -0.006416704971343279, -0.01449973788112402, 0.0077739558182656765, -4.0051912947092205e-05, -0.002507890108972788, 0.01918964274227619, -0.023234518244862556, -0.020237816497683525, -0.01351875439286232, 0.006403266917914152, 0.012289165519177914, -0.023583909496665, -0.01588386483490467, 0.02246854640543461, 0.012423546984791756, 0.023368900641798973, 0.006315919104963541, -0.03499287739396095, 0.009258868172764778, -0.011301463469862938, -0.022361040115356445, 0.022670118138194084, -0.03149896487593651, 0.014768499881029129, 0.001925011514686048, 0.013129048980772495, 0.010878162458539009, -0.02129942923784256, -0.026043087244033813, -0.00611098762601614, 0.008869162760674953, -0.005822068080306053, 0.000958306307438761, -0.02499491348862648, -0.008486175909638405, -0.016219817101955414, 0.012665432877838612, -0.024242378771305084, -0.009453721344470978, 0.006866882089525461, 0.03112269937992096, 0.030047649517655373, -0.0007621936965733767, -0.031095823273062706, -0.011214115656912327, -0.00652420986443758, -0.0003254546027164906, -0.022213220596313477, -0.04448019713163376, 0.004921713378280401, 0.035261642187833786, 0.03956184163689613, -0.020694714039564133, 0.002465896075591445, 0.004128864035010338, -0.0345628596842289, -0.003608136670663953, 0.008130066096782684, 0.016703590750694275, 0.028569454327225685, 0.011650854721665382, -0.006252088118344545, 0.045393988490104675, -0.013350777328014374, 0.010656433179974556, -0.04308263212442398, 0.004914994351565838, 0.0040717520751059055, 0.042330093681812286, -0.018746184185147285, -0.0015848589828237891, -0.008795253001153469, -0.031472090631723404, 0.006635074503719807, -0.0021568192169070244, 0.006789613049477339, 0.012430266477167606, -0.02207884006202221, 0.006215133238583803, -0.022938881069421768, 0.018437108024954796, 0.007417845074087381, 0.028112558647990227, -0.0008020881214179099, -0.023624224588274956, -0.016636399552226067, 0.006396547891199589, 0.015897301957011223, -0.012006965465843678, -0.02301950938999653, 0.008902758359909058, -0.006493974011391401, 0.004595838952809572, -0.001977084204554558, -0.008667591027915478, 0.0033175372518599033, -0.03209024295210838, 0.03206336870789528, 0.01190617959946394, -0.0065309288911521435, 0.017039543017745018, 0.00019695253286045045, 0.007135644555091858, -0.01596449315547943, -0.008889320306479931, -0.0224147941917181, 0.012961071915924549, -0.009285744279623032, 0.00939324963837862, 0.006158020813018084, 0.0029311911202967167, 0.019861549139022827, -0.01537321601063013, 0.015158205293118954, -0.009326059371232986, -0.0018208660185337067, -0.02484709396958351, 0.028515702113509178, -0.014177222736179829, -0.014755061827600002, 0.0007034018635749817, 0.019686853513121605, -0.00841226615011692, 0.00143451988697052, -0.027924424037337303, -0.001258144504390657, 0.0016562489327043295, 0.00286903977394104, -0.02176976390182972, 0.00912448763847351, -0.005526429042220116, 0.0005266065709292889, 0.018584927543997765, -0.048135366290807724, -0.0035980581305921078, 0.18028588593006134, -0.015077576972544193, 0.01202712208032608, 0.005603698547929525, 0.004474896006286144, -0.004565603099763393, 0.03875555470585823, 0.016139188781380653, -0.009010262787342072, -0.014996947720646858, -0.03190210834145546, 0.0005916974623687565, -0.0290801040828228, 0.014325042255222797, 0.012712466530501842, -0.018410231918096542, 0.003870180109515786, -0.03329967334866524, -0.010105470195412636, -0.002239127643406391, -8.267596422228962e-05, -0.009473878890275955, -0.003799630096182227, -0.020318446680903435, 0.010320479981601238, -0.015924178063869476, 0.0018107873620465398, 0.003115965286269784, 0.0012598242610692978, 0.004179256968200207, -0.022992633283138275, 0.014889443293213844, -0.006299121305346489, -0.017039543017745018, -0.014835690148174763, 0.009984527714550495, 0.019794359803199768, -0.01398908905684948, 0.009473878890275955, -0.007988966070115566, 0.02060064673423767, -0.015158205293118954, -0.002180335810407996, -0.004017999395728111, -0.008358513936400414, 0.016770780086517334, 0.0020795499440282583, -0.009426845237612724, -0.0023583909496665, 0.030289534479379654, -0.029429495334625244, -0.011442563496530056, 0.01429816521704197, -0.0018007088219746947, -0.013317182660102844, 0.0002830405137501657, -0.0007113807951100171, 0.0017234395490959287, 0.043512649834156036, 0.010273447260260582, -0.021124733611941338, 0.04574337974190712, -0.022737307474017143, 0.013303744606673717, -0.0035745413042604923, 0.00599340396001935, -0.045877762138843536, -0.0002876598737202585, 0.0016293727094307542, -0.015480720438063145, -0.0047705345787107944, 0.0007924294914118946, -0.008170380257070065, 0.007626136299222708, -0.012685590423643589, -0.012752780690789223, 0.03424034267663956, -0.000692903355229646, -0.001100246561691165, 0.019834673032164574, -0.020855970680713654, -0.017335182055830956, -0.014338480308651924, 0.025371180847287178, -0.027843795716762543, -0.016246693208813667, 0.02089628577232361, -0.00414566183462739, 0.017859268933534622, -0.038325533270835876, -0.014204098843038082, -0.001420241896994412, 0.013632978312671185, 0.009473878890275955, 0.008795253001153469, 0.025156170129776, -0.0027296191547065973, 0.03875555470585823, -0.015924178063869476, 0.002064432017505169, -0.029913267120718956, 0.027763167396187782, 0.04434581473469734, 0.021366620436310768, -0.028408197686076164, 0.014486298896372318, 0.008990106172859669, 0.0017267991788685322, -0.009010262787342072, -0.031230203807353973, -0.014419108629226685, -0.0117919547483325, -0.007881460711359978, -0.01148287858814001, 0.01823553629219532, -0.015104453079402447, -0.024094559252262115, -0.01940465345978737, 0.0025566034018993378, -0.0014454383635893464, -0.0011523192515596747, -0.023315148428082466, 0.010878162458539009, -0.013182801194489002, 0.018732747063040733, -0.010548928752541542, -0.05762268230319023, 0.011415687389671803, 0.00406839232891798, 0.005979965906590223, 0.03042391687631607, -0.03424034267663956, 0.0015000307466834784, 0.0073170592077076435, 0.011570226401090622, -0.014996947720646858, -0.024027368053793907, -0.032735273241996765, -0.026701554656028748, 0.012295885011553764, 0.0028556017205119133, 0.007612698245793581, -0.012141346000134945, -0.01878649927675724, 0.035181012004613876, -0.01226228941231966, -0.007438002619892359, -0.011825550347566605, -0.006141223479062319, -0.013720326125621796, -0.005929572973400354, 0.005607057828456163, 0.006497333757579327, -0.034697238355875015, -0.001288380241021514, -0.060471564531326294, -0.006809770129621029, -0.0290801040828228, 0.020573770627379417, -0.022925442084670067, -0.013814393430948257, 0.009043858386576176, 0.002553243888542056, -0.007424564566463232, -0.018719308078289032, -0.025572752580046654, -0.16727778315544128, 0.008519771508872509, 0.014607242308557034, 0.003282262245193124, 0.02280449867248535, 0.002858961233869195, 0.05531132593750954, 0.013438125140964985, 0.011314901523292065, -0.00011096952221123502, 0.0127729382365942, 0.02129942923784256, -0.030316410586237907, 0.0013606102438643575, -0.016125749796628952, 0.0030437353998422623, -0.0009692247840575874, 0.002749776467680931, 0.04386204108595848, 0.02389298751950264, 0.018423670902848244, -0.017899584025144577, 0.01995561644434929, 0.004824287258088589, 0.01148287858814001, -0.00907073449343443, 0.007088611368089914, -0.0151313291862607, -0.017818953841924667, -0.02506210468709469, -0.018665555864572525, 0.012678871862590313, 2.1482628653757274e-05, -0.027239080518484116, 0.010401109233498573, 0.02271043136715889, 0.013317182660102844, -0.029053227975964546, -0.007726922165602446, -0.011664292775094509, 0.011214115656912327, 0.02460520714521408, 0.004011280369013548, -0.006141223479062319, 0.007236430421471596, 0.03002077154815197, 0.020452827215194702, -0.01846398413181305, -0.0028740791603922844, -0.01870587095618248, 0.02303294651210308, -0.020076559856534004, -0.015413530170917511, 0.016313884407281876, 0.028972597792744637, -0.009030420333147049, -0.008788534440100193, 0.008183818310499191, 0.013921897858381271, -0.00010341057350160554, -0.004659669939428568, -0.010018122382462025, -0.013055139221251011, 0.002721220487728715, 0.0024994914419949055, -0.004874680191278458, 0.0011170441284775734, 0.03074643202126026, -0.04582400619983673, 0.012833409942686558, -0.022119155153632164, -0.0006521690520457923, 0.025572752580046654, -0.012900600209832191, -0.012114469893276691, 0.020022807642817497, 0.00479405140504241, 0.0416313111782074, 0.0062722451984882355, -0.01885369047522545, 0.014472860842943192, 0.025572752580046654, 0.00029836836620233953, -0.00687696086242795, 0.01462068036198616, -0.01429816521704197, -0.002566681941971183, -0.009453721344470978, -0.009447001852095127, -0.021944459527730942, 0.029644504189491272, -0.04265261068940163, -0.027790043503046036, -0.0015613421564921737, 0.02373172901570797, 0.02867696061730385, 0.004293480888009071, -0.021890707314014435, 0.01690516248345375, -0.02648654580116272, 0.016932038590312004, 0.0028656802605837584, -0.028112558647990227, 0.007579102646559477, 0.031230203807353973, 0.02655373513698578, -0.020237816497683525, 0.006954229902476072, 0.03356843814253807, 0.017590506002306938, -0.01402940321713686, 0.009151363745331764, 0.018410231918096542, 0.01814146898686886, -0.0017923100385814905, 0.021595068275928497, -0.005529788788408041, -0.013666573911905289, 0.02797817811369896, -0.002202172763645649, 0.02389298751950264, 0.012584804557263851, -0.010105470195412636, 0.016555771231651306, 0.010663152672350407, 0.011382092721760273, -0.11771798133850098, -0.05799895152449608, -0.016287008300423622, -0.007988966070115566, -0.010172661393880844, 0.020882846787571907, -0.009957650676369667, 0.023906424641609192, 0.00114476028829813, 0.032574016600847244, -0.0028035289142280817, -0.012840128503739834, -0.0023936661891639233, 0.007189397234469652, -0.006289042532444, -0.0034535983577370644, -0.003762675216421485, 0.012591524049639702, -0.02813943475484848, 0.01846398413181305, 0.008620557375252247, 0.010192818008363247, -0.0034132839646190405, -9.490676166024059e-05, -0.003685405943542719, 0.02280449867248535, -0.03149896487593651, -0.0021265833638608456, 0.022817937657237053, 0.004014640115201473, 0.0058791800402104855, -0.012618400156497955, 0.007303621154278517, -0.014015965163707733, 0.004767174832522869, 0.037761133164167404, -0.011570226401090622, -0.024000491946935654, 0.031472090631723404, -0.0022441670298576355, -0.02625809796154499, -0.012101031839847565, 0.004367390647530556, -0.005889258347451687, 0.003977685235440731, 0.008620557375252247, -0.032359007745981216, 0.016152627766132355, -0.012369794771075249, -0.03217087313532829, -0.023839235305786133, -0.020291568711400032, -0.019364338368177414, -0.004962028004229069, 0.03445535525679588, -0.008298042230308056, -0.005788472481071949, -0.000548023555893451, -0.0017620741855353117, -0.022213220596313477, 0.0031814761459827423, 0.019606225192546844, -0.00589597737416625, 0.04383516684174538, 0.03566478565335274, 0.005392048042267561, -0.02688968926668167, 0.0047705345787107944, 0.01666327565908432, -0.028112558647990227, -0.00880197249352932, 0.00254484498873353, -0.02097691409289837, 0.017093295231461525, -0.0064771766774356365, -0.008674309588968754, -0.0001611525221960619, 0.015346338972449303, 0.007747079245746136, -0.027050945907831192, -0.028408197686076164, -0.012853567488491535, 0.017859268933534622, -0.024457387626171112, -0.0032856217585504055, 0.024417074397206306, 0.0008726382511667907, 0.000628232373856008, 0.011046139523386955, -0.02123223803937435, 0.025048665702342987, -0.003339374205097556, 0.00919839646667242, -0.024067683145403862, -0.015225396491587162, -0.0023247958160936832, 0.011825550347566605, 0.0073842499405145645, -0.005788472481071949, 0.02256261184811592, -0.04593151435256004, -0.01018609944730997, -0.04660341888666153, 0.01996905542910099, -0.01466099452227354, -0.027709415182471275, 0.012551208958029747, -0.012625118717551231, 0.02781691960990429, -0.032359007745981216, 0.013619540259242058, -0.0064838957041502, -0.03182148188352585, -0.0036383725237101316, -0.0005354253225959837, -0.010985667817294598, -0.0013975650072097778, -0.009883740916848183, 0.013626258820295334, -0.02594901993870735, 0.04749033600091934, 0.018880566582083702, -0.017657697200775146, -0.0012699029175564647, 0.016636399552226067, 0.001022977288812399, -0.027333147823810577, -0.018517736345529556, 0.0032856217585504055, 0.036121681332588196, -0.00518711656332016, -0.025532439351081848, 0.0014840730000287294, -0.016058560460805893, 0.00240710424259305, 0.013727045617997646, 0.01870587095618248, 0.019229957833886147, -0.001114524551667273, 0.01651545614004135, 0.022737307474017143, 0.016999227926135063, -0.017267990857362747, -0.026123715564608574, 0.005459238309413195, 0.0025414854753762484, -0.020009368658065796, -0.02658061310648918, 0.029295112937688828, 0.030558297410607338, 0.012591524049639702, 0.004152380861341953, 0.03649795055389404, 0.014002527110278606, -0.004179256968200207, -0.023772044107317924, 0.008143504150211811, -0.03058517351746559, 0.0036014176439493895, -0.03899744153022766, -0.019391214475035667, -0.014230974949896336, 0.05256994813680649, -0.01351875439286232, -0.0058321463875472546, -0.0007160000968724489, -0.004451379179954529, -0.04017999395728111, -0.03316529467701912, 0.0027833718340843916, -0.0031176451593637466, 0.005963168106973171, -0.007968808524310589, 4.36476620961912e-05, 0.0035241483710706234, -0.0021265833638608456, 0.022065402939915657, -0.009527631103992462, -0.03663232922554016, 0.009104330092668533, -0.012282446958124638, 0.03644419461488724, 0.025115856900811195, 0.01667671464383602, -0.024148311465978622, 0.006057234946638346, 0.057891443371772766, -0.006258807145059109, -0.025115856900811195, 0.0014681152533739805, 0.014835690148174763, 0.003762675216421485, 0.008425705134868622, 0.020184064283967018, -0.017147047445178032, 0.002889197086915374, 0.006672029383480549, 0.033434055745601654, -0.006769455503672361, -0.005009061191231012, 0.024618646129965782, 0.015453844331204891, 0.00804943684488535, -0.01949872076511383, -0.014983509667217731, -0.017792077735066414, -0.020157188177108765, -0.0001738557475619018, -0.0010011403355747461, -0.015346338972449303, -0.02695688046514988, 0.03190210834145546, -0.002919432707130909, -0.0049754660576581955, -0.006715703289955854, 0.009178239852190018, -0.02523680031299591, 0.008734781295061111, 0.016690151765942574, -0.0050426567904651165, -0.017966773360967636, 0.008956510573625565, -0.005701124668121338, -0.0023516719229519367, 0.015547911636531353, 0.001375728053972125, 0.012148065492510796, 0.032896529883146286, 0.03346093371510506, -0.019848112016916275, -0.006846725009381771, -0.009957650676369667, -0.008244290016591549, 0.012430266477167606, -0.029993895441293716, -0.023543596267700195, 0.00699454452842474, -0.026540298014879227, 0.022764185443520546, -0.00389033742249012, 0.004888118244707584, 0.0801449790596962, 0.007276745047420263, 0.005093049723654985, 0.022361040115356445, -0.00852649100124836, 0.05412876978516579, 0.028408197686076164, 0.0026103558484464884, 0.0330040380358696, -0.0448295883834362, -0.007814270444214344, 0.02272387035191059, 0.0005719602340832353, -0.03647107258439064, 0.004706703592091799, 0.009440283291041851, -0.006265526171773672, 0.02296575717628002, -0.02727939561009407, 0.013592664152383804, 0.009137925691902637, -0.00705501576885581, 0.026150591671466827, -0.00532485730946064, -0.026069963350892067, -0.009480597451329231, 0.0192568339407444, 0.0029211125802248716, -0.0018527815118432045, -0.0463884100317955, 0.013827831484377384, -0.005553305149078369, -0.030450792983174324, -0.02617746777832508, -0.010206256061792374, 0.006510771811008453, -0.02483365684747696, -0.02443051151931286, 0.038164276629686356, 0.0018511017551645637, -0.0043304357677698135, 0.008318199776113033, -0.03811052441596985, -0.04929104447364807, -0.025478685274720192, 0.00544244097545743, 0.00100701954215765, -0.0208156555891037, -0.05321497842669487], "d67269bf-5add-49da-8086-3ce46606e311": [0.0051088533364236355, -0.008920639753341675, 0.002508102683350444, 0.004165832884609699, -0.012560366652905941, -0.004162524361163378, -0.02582220919430256, -0.03856787085533142, -0.005565473344177008, -0.01440008357167244, 0.0058202543295919895, 0.022103069350123405, -0.03269136697053909, 0.009714762680232525, 0.0009678364731371403, 0.0030888046603649855, 0.013963316567242146, 0.004142670892179012, 0.006223933305591345, -0.0012209629639983177, -0.018780991435050964, 0.022738367319107056, -0.022050127387046814, -0.03793257474899292, -0.01757657341659069, 0.020197175443172455, 0.029064875096082687, 0.0009719725348986685, 0.02853545919060707, -0.008874315768480301, 0.007802251260727644, 0.006601141300052404, -0.011336095631122589, -0.04253848269581795, 0.0022516674362123013, -0.011792715638875961, -0.011216976679861546, -0.008066958747804165, -0.009092699736356735, 0.006319889798760414, 0.025835443288087845, -0.012765515595674515, -0.020395707339048386, -0.017589807510375977, 0.0015758363297209144, 0.019932469353079796, 0.013738314621150494, -0.0415855348110199, -0.013162576593458652, 0.014770673587918282, 0.014903027564287186, 0.0009628732223063707, -0.0210177693516016, -0.008278724737465382, -0.0023509326856583357, 0.0316854789853096, -0.003016010159626603, 0.043385546654462814, 0.00240387418307364, -0.025200145319104195, 0.02284424938261509, 0.0023376974277198315, -0.023598667234182358, 0.009330936707556248, -0.0004648923932109028, 0.0045595853589475155, 0.03507373109459877, 0.007789015769958496, -0.00922505371272564, -0.018053045496344566, 0.05069147050380707, 0.03417372703552246, -0.003649653634056449, 0.021322183310985565, 0.0008677439764142036, -0.023148663341999054, -0.002091188682243228, 0.004116200376302004, -0.025835443288087845, 0.005939372815191746, 0.00029552102205343544, -0.007398572284728289, -0.014505966566503048, 0.011852274648845196, 0.022592777386307716, 0.01173977367579937, 0.036238446831703186, 0.040553174912929535, 0.004655541852116585, -0.025742797181010246, 0.012653014622628689, -0.018833933398127556, 0.006647464819252491, 0.023863373324275017, -0.006975040305405855, 0.014770673587918282, 0.0032492836471647024, 0.038700222969055176, -0.03811786696314812, -0.04830910265445709, -0.011832421645522118, 0.027026627212762833, -0.013976551592350006, -0.002127585932612419, -0.0171133354306221, 0.006491949316114187, 0.013778021559119225, 0.0020928429439663887, 0.03380313888192177, -0.041823770850896835, -0.01522067654877901, 0.059082694351673126, 0.010919180698692799, -0.04081788286566734, 0.022248659282922745, 0.007418425288051367, 0.007716221269220114, -0.01706039346754551, 0.011733156628906727, 0.007941222749650478, 0.022658955305814743, -0.0052941483445465565, 0.02072659134864807, -0.033697254955768585, 0.017973633483052254, -0.0006166855455376208, -0.008033869788050652, -0.011759626679122448, -0.03517961502075195, -0.01960158348083496, 0.013804491609334946, 0.027794279158115387, -0.011111093685030937, -0.01032358966767788, 0.0047548068687319756, 0.011839039623737335, 0.0039441403932869434, 0.01969423145055771, -0.012811838649213314, -0.03658256679773331, 0.0009372297208756208, -0.018953051418066025, -0.0012441248400136828, 0.004748189356178045, 0.009542702697217464, 0.0130963996052742, 0.0063033453188836575, 0.020713355392217636, -0.02572956122457981, -0.014175082556903362, -0.005135323852300644, 0.017325101420283318, 0.0172059815376997, -0.02599426917731762, 0.012990516610443592, -0.0017685764469206333, -0.021414829418063164, -0.002557735424488783, -0.007153717800974846, -0.0003780352708417922, 0.030229587107896805, 0.013658902607858181, -0.013334636576473713, 0.006048564333468676, -0.02613985724747181, 0.0433061346411705, 0.042803190648555756, 0.026391329243779182, -0.022420717403292656, 0.006630920805037022, 0.018542755395174026, 0.023691313341259956, -0.01013167668133974, 0.004192303866147995, -0.007696368265897036, -0.009350789710879326, 0.029673701152205467, -0.0068625397980213165, -0.011455213651061058, 0.0022367776837199926, -0.0009306120336987078, 0.0021474389359354973, 0.007272836286574602, 0.014982439577579498, -0.03322077915072441, -0.02148100733757019, 0.00775592727586627, 0.007100776303559542, 0.012017716653645039, 0.012255953624844551, 0.013506695628166199, 0.039626698940992355, -0.012480954639613628, 0.012831691652536392, -0.6039564609527588, -0.006941951811313629, -0.016411859542131424, -0.01789422146975994, 0.031156063079833984, 0.012308894656598568, -0.004327966365963221, -0.005396722350269556, -0.017325101420283318, 0.017272159457206726, -0.0003317114897072315, 0.01596185751259327, 0.00847063772380352, -0.01354640256613493, 0.02674868516623974, -0.023810431361198425, -0.002135857939720154, -0.03157959505915642, -0.01645156554877758, 0.010217706672847271, -0.009734615683555603, 0.032453130930662155, -0.03573550283908844, 0.002979612909257412, -0.006640847306698561, 0.028032515197992325, 0.018225105479359627, -0.03136782720685005, 0.020448647439479828, 0.013910374604165554, -0.015908915549516678, -0.014135376550257206, -0.017166275531053543, 0.024008963257074356, 0.030811943113803864, 0.01292433962225914, -0.008371371775865555, 0.013804491609334946, -0.004016934894025326, 0.07464749366044998, -0.014545672573149204, -0.00867578573524952, 0.022592777386307716, 0.003808477893471718, 0.007544161286205053, -0.009747850708663464, 0.0032608644105494022, -0.0006092406692914665, 0.01254713162779808, -0.026695743203163147, -0.005704444833099842, 0.0175236314535141, -0.0005087345489300787, -0.0002400978992227465, 0.03928258270025253, -0.0035007556434720755, 0.03195018693804741, -0.009416966699063778, 0.0073787192814052105, -0.02723839320242405, 0.01033682469278574, 0.017020687460899353, 0.0363178588449955, 0.02281777933239937, -0.03414725512266159, 0.04862675443291664, -0.026695743203163147, -0.01676921546459198, -0.0090331407263875, -0.027741337195038795, 0.02723839320242405, 0.020911885425448418, -0.009767703711986542, -0.011508154682815075, 0.007822103798389435, 0.02880016714334488, 0.014770673587918282, 0.0024551614187657833, 0.025914857164025307, 0.030600177124142647, -0.006329816300421953, 0.009602261707186699, -0.03218842297792435, -0.03517961502075195, 0.046482622623443604, -0.002561044180765748, 0.00626694830134511, 0.0031185841653496027, 0.02367807924747467, 0.02191777341067791, -0.0009785902220755816, 0.01674274355173111, 0.001937327440828085, -0.022963369265198708, -0.02113688737154007, -0.016411859542131424, -0.002427036175504327, -0.009079464711248875, -0.0002996570838149637, -0.029144287109375, -0.022963369265198708, -0.01337434258311987, 0.007034599781036377, 0.004136053379625082, -0.018317753449082375, 0.038064926862716675, 0.009013287723064423, -0.0005037712980993092, 0.03197665512561798, -0.018542755395174026, -0.029064875096082687, -0.02445896528661251, -0.007828721776604652, 0.009919910691678524, 0.014492731541395187, -0.01852951943874359, 0.01220301166176796, -0.003145054914057255, -0.01766921952366829, -0.005952607840299606, 0.007511072792112827, 0.016385389491915703, 0.008146370761096478, 0.014664790593087673, 0.03282371908426285, -0.007610338274389505, 0.01772216148674488, 0.002868766663596034, -0.006525037810206413, 0.022513365373015404, -0.008371371775865555, 0.009661820717155933, -0.007980928756296635, -0.017854515463113785, 0.002466742182150483, -0.020541295409202576, 0.013440519571304321, -0.005132014863193035, 0.0011183888418599963, -0.025438383221626282, -0.001215172465890646, -0.005390104837715626, 0.0015923805767670274, -0.007894898764789104, -0.01691480353474617, -0.027767807245254517, -0.014691261574625969, 0.009370642714202404, -0.035311970859766006, 0.0006348841707222164, -0.017272159457206726, -0.006452243309468031, -0.0066209943033754826, 0.015075087547302246, 0.02362513728439808, -0.00590628432109952, 0.0037555363960564137, 0.008536813780665398, -0.0010613113408908248, -0.0029614141676574945, -0.004950028844177723, 0.018714815378189087, -0.033114898949861526, 0.01977364346385002, -0.023889845237135887, -0.03780021890997887, -0.018092751502990723, 0.02089865133166313, -0.0011862200917676091, -0.031129593029618263, -0.0256501492112875, -0.010634620673954487, -0.009284612722694874, 0.0050526028499007225, -0.0092382887378335, 0.026086915284395218, -0.00855666771531105, -0.004281642381101847, -0.010991975665092468, 0.016557449474930763, -0.021586889401078224, 0.03131488710641861, 0.017761867493391037, -0.03105018101632595, -0.0037423011381179094, 0.03036194108426571, 0.004050023388117552, 0.009741232730448246, 0.0035404616501182318, 0.005049293860793114, 0.018000103533267975, 0.015564796514809132, -0.03012370504438877, 0.016239799559116364, 0.0006721086683683097, 0.02087217941880226, -0.004377598874270916, 0.020806003361940384, -0.003679433139041066, 0.04108259081840515, 0.013030222617089748, 0.013241988606750965, 0.005257750861346722, -0.027794279158115387, 0.0022185789421200752, -0.009284612722694874, 0.012725809589028358, -0.008827992714941502, 0.02494867332279682, -0.020078057423233986, 0.020051587373018265, -0.025319265201687813, -0.0011564405867829919, -0.018886873498558998, -0.0026421109214425087, 0.018397165462374687, 0.006640847306698561, 0.017153041437268257, 0.01487655658274889, 0.0021143504418432713, -0.0025544266682118177, 0.008940492756664753, 0.03380313888192177, 0.0011969738407060504, -0.02321484126150608, 0.0011986283352598548, -0.008331665769219398, -0.015525090508162975, -0.02752957120537758, -0.043120838701725006, 0.011078005656599998, 0.029700173065066338, 0.007147100288420916, 0.02880016714334488, 0.03351195901632309, 0.03941493481397629, 0.048070866614580154, -0.005264368839561939, 0.04396790266036987, -0.007299307268112898, -0.01160742063075304, 0.037773746997117996, -0.005648194346576929, -0.021348653361201286, 0.01755010150372982, 0.007974310778081417, 0.01337434258311987, 0.01659715548157692, 0.011786097660660744, 0.013513313606381416, 0.006753347814083099, 0.03099723905324936, -0.010694179683923721, -0.015088322572410107, -0.014916262589395046, 0.024683967232704163, 0.007054452784359455, 0.01032358966767788, 0.022711897268891335, -0.0024220729246735573, 0.016703037545084953, -0.0007018882897682488, 0.019125111401081085, 0.004523187875747681, 0.010098587721586227, -0.008278724737465382, -0.0107140326872468, -0.020250117406249046, 0.003207922913134098, 0.0032956073991954327, -0.010555208660662174, -0.0420355387032032, -0.0025279559195041656, 0.0018893491942435503, 0.028694283217191696, 0.008616226725280285, 0.010925798676908016, 0.00572429783642292, 0.01691480353474617, -0.009714762680232525, -0.004725027363747358, -0.012884633615612984, 0.019680997356772423, 0.015776561573147774, -0.013116252608597279, 0.002231814432889223, 0.003171525662764907, -0.016517743468284607, 0.009330936707556248, 0.007577249780297279, -0.019032463431358337, 0.014135376550257206, 0.0023922931868582964, -0.01569714955985546, -0.009622114710509777, -0.027979573234915733, 0.029514877125620842, 0.009833880700170994, 0.017536865547299385, 0.006882392801344395, -0.009694908745586872, 0.0035106821451336145, -0.017973633483052254, 0.008900786750018597, 0.05707091838121414, 0.004993043839931488, -0.014360377565026283, -0.022883955389261246, 0.007497837767004967, 0.0065481998026371, -0.005373560357838869, -0.008285341784358025, -0.01960158348083496, -0.020779531449079514, 0.010674326680600643, -0.008814756758511066, 0.02336042933166027, 0.006429081317037344, 0.03163253515958786, 0.014029493555426598, -0.01676921546459198, -0.007100776303559542, 0.007623573765158653, 0.016980981454253197, 0.044973790645599365, 0.03356489911675453, -0.014505966566503048, 0.01691480353474617, -0.01925746537744999, -0.030176645144820213, -0.023492783308029175, 0.00663422979414463, 0.014783909544348717, -0.0026388021651655436, 0.017682455480098724, -0.025425147265195847, 0.021692773327231407, -0.011719920672476292, -0.006716950796544552, 0.02003835141658783, -0.03298254311084747, -0.02257954329252243, 0.014307435601949692, -0.021904539316892624, 0.020342765375971794, -0.023294253274798393, -0.00032364617800340056, 0.013420665636658669, -0.002878693165257573, 0.012772132642567158, 0.02347954735159874, -0.0013094744645059109, 0.031209005042910576, -0.04944734647870064, -0.005793783813714981, 0.009145641699433327, 0.015882445499300957, 0.012884633615612984, -0.008695638738572598, 0.009794174693524837, 0.03319431096315384, 0.03128841519355774, 0.013658902607858181, -0.011329477652907372, 0.00775592727586627, 0.018780991435050964, -0.0018711505690589547, -0.034332551062107086, 0.006961805280297995, 0.0074118077754974365, -0.008086811751127243, 0.002966377418488264, -0.013275076635181904, -0.02079276740550995, 0.009416966699063778, 0.01412214059382677, -0.031103121116757393, -0.018807461485266685, 0.003586785402148962, -0.0012143453350290656, -0.016028033569455147, -0.008245635777711868, 0.013579490594565868, -0.013043457642197609, 0.0026272211689502, -0.019985409453511238, 0.00023534144565928727, -0.004969881847500801, 0.003983846865594387, -0.0015783179551362991, -0.019998645409941673, 0.03446490690112114, -0.009655202738940716, -0.012183158658444881, 0.00323439366184175, -0.011587567627429962, -0.01645156554877758, -0.03668844699859619, 0.04510614275932312, 0.031182533130049706, 0.017325101420283318, 0.009595643728971481, 0.014214788563549519, 0.0077096037566661835, -0.008172841742634773, -0.03981199488043785, -0.010495648719370365, -0.006624303292483091, 0.012765515595674515, 0.012937574647367, -0.017933927476406097, 0.00800739973783493, -0.017100099474191666, 0.009139023721218109, -0.00775592727586627, 0.0037985513918101788, -0.011124329641461372, -0.01321551762521267, -0.020104529336094856, 0.049685582518577576, 0.020435413345694542, 0.009370642714202404, 0.005664738826453686, -0.002731449669227004, -0.01821186952292919, -0.005320619326084852, -0.008272106759250164, -0.012044187635183334, -0.025954563170671463, 0.006065108813345432, 0.007398572284728289, -0.011011828668415546, 0.011316241696476936, -0.00793460477143526, 0.04288260266184807, -0.020170705392956734, 0.009840498678386211, 0.02023688144981861, 0.0038051691371947527, -0.00364634464494884, -0.0015741819515824318, 0.029064875096082687, -0.010859621688723564, -0.022182481363415718, 0.016067739576101303, -0.01969423145055771, 0.010991975665092468, -0.00424193637445569, -0.01428096555173397, 0.02700015716254711, -0.029832525178790092, -0.031235475093126297, -0.0015601193299517035, -0.005132014863193035, 0.021348653361201286, 0.013202282600104809, 0.01815892942249775, -0.0382237508893013, -0.03446490690112114, 0.025636913254857063, -0.024935439229011536, 0.002250012941658497, -0.016147151589393616, 0.012679485604166985, -0.012507425621151924, 0.013791256584227085, 0.0004446257371455431, -0.009866968728601933, 0.003626491641625762, -0.02521338127553463, -0.003676124382764101, -0.01913834549486637, -0.0024419259279966354, 0.012606690637767315, -0.005218044854700565, -0.001163058215752244, -0.002698361175134778, 0.006137903314083815, -0.017801573500037193, -0.042114950716495514, 0.010396383702754974, 0.021401595324277878, 0.02133541740477085, -0.00276453816331923, -0.015300088562071323, 0.01613391749560833, 0.03510020300745964, 0.0046257623471319675, -0.005611797329038382, 0.029038403183221817, -0.015088322572410107, 0.007398572284728289, -0.006012167315930128, -0.014836850576102734, -0.023585431277751923, -0.008066958747804165, -0.0013136105844751, 0.007901516743004322, 0.0210177693516016, 0.016835391521453857, -0.014161846600472927, 0.021203063428401947, -0.007524308282881975, -0.0026520374231040478, -0.012236100621521473, 0.01119050569832325, -0.017483925446867943, 0.03637079894542694, 0.0031119666527956724, 0.006961805280297995, 0.04375613480806351, -0.0014062582049518824, -0.0053603253327310085, -0.003573550144210458, -0.017563337460160255, -0.017655985429883003, 0.01969423145055771, -0.0008023943519219756, 0.005287530831992626, -0.012778750620782375, 0.009039758704602718, -0.043676722794771194, -0.017775103449821472, -0.03226783499121666, -0.004652232863008976, 0.03128841519355774, -0.00582687184214592, -0.008993434719741344, -0.024008963257074356, -0.008119899779558182, -0.000764342665206641, -0.0018810770707204938, 0.010144911706447601, 0.0022202334366738796, -0.03690021485090256, -0.004701865371316671, -0.02145453542470932, -0.010125058703124523, 0.020342765375971794, 0.009847115725278854, 0.001809936948120594, 0.013592725619673729, -0.04100317880511284, -0.021004533395171165, -0.003257555654272437, 0.012037569656968117, 0.050294410437345505, 0.015273617580533028, 0.026669273152947426, 0.004513261374086142, -0.0037820071447640657, -0.016385389491915703, -0.012600072659552097, 0.002412146423012018, -0.0032095774076879025, 0.0007846093503758311, 0.010191235691308975, -0.010515501722693443, -0.015617737546563148, -0.0028009354136884212, 0.009231670759618282, -0.02518691122531891, -0.034306082874536514, 0.018251577392220497, -0.008788286708295345, -0.0006638365448452532, -0.034941378980875015, 0.008371371775865555, -0.033035486936569214, 0.009820645675063133, -0.014095669612288475, 0.007914751768112183, -0.03171194717288017, -0.004417304880917072, -0.016861863434314728, 0.01412214059382677, -0.0226986613124609, 0.04595320671796799, -0.017735397443175316, 0.01867510750889778, 0.008119899779558182, 0.0038018603809177876, -0.012646396644413471, 0.010958886705338955, -0.008973581716418266, 0.028085457161068916, -0.027476629242300987, 0.01503538154065609, 0.01627950556576252, -0.017536865547299385, -0.03382960706949234, -0.023122193291783333, -0.003626491641625762, 0.03721786290407181, -0.007828721776604652, -0.005585326347500086, -0.02235454134643078, 0.0040996563620865345, -0.006855922285467386, 0.006809598300606012, -0.0105088846758008, 0.0022781381849199533, -0.011296388693153858, -0.017748631536960602, 0.015167735517024994, 0.0065316553227603436, -0.003384946146979928, -0.002522992668673396, -0.008265488781034946, 0.013539784587919712, -0.02856193110346794, -0.01801333948969841, 0.027013391256332397, -0.026219269260764122, -0.036794330924749374, -0.0029647231567651033, 0.015617737546563148, 0.03539138287305832, -0.017735397443175316, -0.008265488781034946, 0.013910374604165554, 0.03721786290407181, -0.021639831364154816, 0.022314835339784622, -0.012150070630013943, 0.00170570844784379, -0.0009273031610064209, -0.022473659366369247, -0.0010141603415831923, 0.015300088562071323, 0.024511907249689102, -0.03825022280216217, -0.027423689141869545, -0.012017716653645039, 0.005902975331991911, 0.012196394614875317, -0.011719920672476292, -0.013169193640351295, 0.003557005897164345, 0.02582220919430256, 0.019376583397388458, 0.009125788696110249, -0.01144859567284584, -0.0025378824211657047, -0.017166275531053543, -0.02977958507835865, 0.023373665288090706, -0.022341305390000343, 0.010151529684662819, -0.013711844570934772, 0.015432442538440228, 0.027714867144823074, -0.017417747527360916, -0.019853055477142334, -0.0207001194357872, 0.014175082556903362, -0.017325101420283318, -0.0013020295882597566, -0.03189724311232567, -0.0030921134166419506, -0.01784127950668335, 0.042750246822834015, -0.020342765375971794, 0.0002278965403093025, -0.006994893308728933, 0.027211923152208328, 0.024326611310243607, 0.00766327977180481, -0.018476577475667, -0.009741232730448246, 0.01674274355173111, -0.005413266830146313, -0.002734758425503969, -0.05259736254811287, 0.005165103357285261, 0.02636485919356346, 0.05548267439007759, -0.015075087547302246, -0.012659632600843906, -0.008080193772912025, -0.0335913710296154, -0.021083945408463478, 0.009125788696110249, 0.017563337460160255, 0.02572956122457981, 0.010369912721216679, -0.019350111484527588, 0.028350165113806725, -0.010939033702015877, 0.020633943378925323, -0.028006045147776604, -0.018264811486005783, 0.0037687718868255615, 0.041506122797727585, -0.023439841344952583, -0.005681282840669155, -0.012785368598997593, -0.04126788675785065, 0.0025726251769810915, -0.016398625448346138, 0.01618685945868492, 0.008973581716418266, -0.004493408370763063, 0.0012755588395521045, -0.03160606697201729, -0.010144911706447601, 0.007789015769958496, 0.01815892942249775, -0.008411077782511711, -0.011250065639615059, 0.003649653634056449, -0.008827992714941502, 0.022275129333138466, -0.03255901113152504, -0.006941951811313629, -0.000715537229552865, -0.010495648719370365, 0.007742691785097122, 0.005926137324422598, -0.01152139063924551, 0.016676567494869232, -0.02885310910642147, 0.01258021965622902, 0.01899275742471218, -0.013605961576104164, 0.01474420353770256, 0.0035040643997490406, 0.005608488339930773, -0.0007134692277759314, 0.0007974311010912061, -0.01657068356871605, 0.02257954329252243, 0.0107140326872468, 0.00876181572675705, 0.006783127784729004, -0.013513313606381416, 0.03581491485238075, -0.0017255614511668682, 0.024816321209073067, -0.022129539400339127, -0.016530977562069893, -0.005337163340300322, 0.03443843498826027, -0.0015708730788901448, -0.025756031274795532, -0.014995675534009933, 0.003884581383317709, -0.0027463394217193127, 0.004083111882209778, -0.036556094884872437, -0.02081923931837082, -0.016504507511854172, 0.012739044614136219, -0.010912563651800156, 0.01123021263629198, 0.006068417336791754, -5.9197263908572495e-05, 0.029223699122667313, -0.03165900707244873, 0.009900057688355446, 0.17915397882461548, -0.024181023240089417, 0.0027893544174730778, 0.00038072370807640254, 0.008252253755927086, 0.02790016122162342, 0.025292793288826942, 0.010991975665092468, -0.008536813780665398, -0.017272159457206726, -0.03073253110051155, 0.0014484459534287453, -0.038726694881916046, 0.014148611575365067, 0.006902245804667473, -0.005429810844361782, 0.010634620673954487, -0.04386201873421669, -0.02631191723048687, 0.009423583745956421, -0.0028141706716269255, -0.011666979640722275, 0.0007138827932067215, -0.002807553159072995, 0.010912563651800156, -0.01821186952292919, 0.0005968324840068817, 0.010945651680231094, 0.01657068356871605, -0.01818539947271347, -0.022632483392953873, 0.0003166148962918669, -0.030811943113803864, -0.021931009367108345, -0.006941951811313629, 0.010667708702385426, 0.029303111135959625, 0.001623814576305449, -0.0037985513918101788, -0.017338335514068604, 0.012712573632597923, -0.04113553464412689, -0.006306654307991266, -0.003917669877409935, 0.009794174693524837, 0.01723245345056057, -0.003025936661288142, -0.018542755395174026, -0.012626543641090393, 0.02494867332279682, -0.03160606697201729, -0.0015228948323056102, 0.01755010150372982, 0.004506643861532211, 0.00048639989108778536, 0.014069199562072754, -0.005985696334391832, 0.010641238652169704, 0.029858997091650963, 0.015657443553209305, -0.00043014955008402467, 0.04510614275932312, -0.003695977386087179, 0.00027856320957653224, -0.016411859542131424, 0.010151529684662819, 0.0017785029485821724, -0.012064040638506413, 0.019839821383357048, -0.020660413429141045, 0.0028207884170114994, -0.0018761138198897243, 0.0022963369265198708, 0.012977281585335732, -0.028350165113806725, -0.007769162766635418, 0.03613256290555, 0.009000051766633987, -0.005466208327561617, 0.02182512730360031, 0.0005211427342146635, -0.028958991169929504, -0.004715100862085819, 0.0034709759056568146, -0.027820749208331108, -0.0024882496800273657, 0.017364807426929474, -0.0068956282921135426, -0.005830180831253529, -0.017510395497083664, -0.0031831066589802504, -0.0009057957213371992, 0.0006084134802222252, 0.008291959762573242, -0.0008172841626219451, 0.01564420759677887, 0.0019092021975666285, 0.026086915284395218, -0.001352489460259676, -0.008636079728603363, -0.001967106945812702, 0.02440602332353592, 0.013050075620412827, 0.018635401502251625, -0.0075971027836203575, 0.017020687460899353, 0.011164035648107529, 0.0019455995643511415, -0.010952269658446312, -0.017655985429883003, -0.003993773367255926, -0.022566307336091995, 0.0013342908350750804, -0.01033682469278574, 0.019680997356772423, -0.002711596665903926, -0.045556146651506424, -0.017338335514068604, -0.009840498678386211, 0.013698608614504337, 0.014307435601949692, -0.03099723905324936, 0.0021160049363970757, -0.00023203260207083076, 0.010224323719739914, -0.00877505075186491, -0.05452972650527954, 0.021639831364154816, -0.002969686407595873, 0.002152402186766267, 0.018780991435050964, -0.03782669082283974, 0.02021041139960289, -0.005247824359685183, 0.0172059815376997, -0.0020299749448895454, -0.02943546511232853, 0.0028108619153499603, -0.021838361397385597, -0.0076301912777125835, 0.016200093552470207, 0.0011911833425983787, -0.04108259081840515, -0.02252660132944584, 0.036503154784440994, -0.004863998852670193, 0.007789015769958496, -0.014929498545825481, 0.006032020319253206, -0.03581491485238075, -0.022050127387046814, -0.003307188395410776, 0.011428742669522762, -0.021494241431355476, 0.0167956855148077, -0.049050286412239075, 0.0017520321998745203, -0.021242769435048103, 0.02240748330950737, -0.008106664754450321, -0.007961075752973557, 0.01117727067321539, 0.0003825849271379411, -0.003712521633133292, -0.021878067404031754, -0.006789745297282934, -0.16316565871238708, -0.008166223764419556, 0.0037323746364563704, -0.005495987832546234, 0.025610443204641342, 0.014810379594564438, 0.05071794241666794, -0.013791256584227085, 0.006478714291006327, 0.018383929505944252, 0.005515840835869312, 0.01572362147271633, -0.03202959895133972, 0.006988275796175003, -0.033114898949861526, -0.00488716084510088, 0.011627273634076118, 0.01474420353770256, 0.012586837634444237, 0.023135429248213768, 0.032453130930662155, -0.009827262721955776, 0.03216195106506348, 0.01114418264478445, -0.010098587721586227, -0.028720755130052567, -0.023082487285137177, -0.016398625448346138, -0.005366942845284939, -0.02084570936858654, -0.02150747738778591, 0.018741285428404808, -0.006055182311683893, -0.026219269260764122, 0.015564796514809132, 0.0002895237412303686, 0.012811838649213314, -0.04507967457175255, 0.0005041849217377603, 0.0103500597178936, 0.025306029245257378, 0.03639727085828781, -0.0031831066589802504, -0.005452972836792469, 0.006131285801529884, 0.02443249523639679, 0.010912563651800156, 0.0017272159457206726, -0.005022823344916105, -0.004956646356731653, 0.01181256864219904, -0.004873925354331732, -0.009284612722694874, -0.006855922285467386, 0.02321484126150608, -0.03512667492032051, -0.007729456759989262, 0.010925798676908016, -0.0005364461103454232, -0.004165832884609699, -0.012944192625582218, -0.02853545919060707, -0.01735157147049904, 0.018238341435790062, 0.007762545254081488, -0.008576520718634129, -0.007802251260727644, 0.030547235161066055, -0.02845604717731476, 0.008166223764419556, -0.036211974918842316, 0.011461831629276276, 0.049314990639686584, -0.019125111401081085, -0.00011705030919983983, 0.01412214059382677, -0.0005711889825761318, 0.031870774924755096, -0.003957375884056091, -0.035841383039951324, 0.01572362147271633, 0.023492783308029175, -0.0038117868825793266, -0.008927257731556892, 0.007583867758512497, 0.0031748346518725157, 0.0006580461049452424, 0.008801521733403206, -0.028376635164022446, -0.012765515595674515, 0.011402271687984467, -0.026113387197256088, -0.0022615939378738403, -0.006035329308360815, 0.024392789229750633, 0.020144235342741013, 0.007544161286205053, -0.00037348561454564333, 0.0063132718205451965, -0.014492731541395187, 0.026245741173624992, -0.013248606584966183, -0.02379719726741314, -0.0035702413879334927, 0.017920691519975662, 0.0012226173421368003, -0.007967693731188774, 0.02850898914039135, 0.033988431096076965, 0.011382418684661388, -0.02316189929842949, 0.005572091322392225, 0.010019175708293915, 0.019297171384096146, 0.003146709408611059, 0.012686102651059628, -0.008900786750018597, -0.004933484364300966, 0.009489760734140873, -0.007094158791005611, 0.019786879420280457, -0.008119899779558182, -0.012686102651059628, 0.008715491741895676, 0.01081329770386219, 0.008616226725280285, -0.11943598836660385, -0.04957969859242439, 0.0032724454067647457, -0.002835678169503808, 0.007398572284728289, -0.008880933746695518, -0.008755197748541832, 0.005287530831992626, -0.002101115183904767, 0.017589807510375977, -0.0187942273914814, -0.0010083698434755206, 0.007239747792482376, -0.0042055388912558556, -0.0039871553890407085, -0.005297457333654165, 0.0016130608273670077, 0.018754521384835243, -0.01923099346458912, 0.021150123327970505, -0.016729509457945824, 0.0031649081502109766, 0.010277265682816505, 0.016464801505208015, -0.017153041437268257, 0.020938357338309288, -0.01916481740772724, -0.01818539947271347, 0.0014484459534287453, -0.009165494702756405, -0.008344901725649834, 0.001094399718567729, 0.018926579505205154, 0.0007837821030989289, 0.010495648719370365, 0.039891406893730164, -0.010376530699431896, -0.012269188649952412, 0.022023657336831093, -0.012553749606013298, -0.017444219440221786, -0.01781480945646763, 0.021216299384832382, -0.00629010982811451, 0.0035172998905181885, 0.0013855778379365802, -0.03700609877705574, 0.0074118077754974365, 0.0009198582847602665, -0.0342266708612442, -0.040870826691389084, -0.02062070742249489, -0.01613391749560833, -0.00424193637445569, 0.04455025866627693, -0.014347141608595848, -0.011097858659923077, 0.0019522171933203936, -0.007358866278082132, -0.015975093469023705, -0.003844875143840909, 0.01696774549782276, -0.005515840835869312, 0.04192965477705002, 0.019191287457942963, 0.009258141741156578, -0.0236516073346138, 0.002561044180765748, 0.023082487285137177, -0.011971392668783665, -0.0119846286252141, 0.006961805280297995, -0.008133135735988617, 0.02570309117436409, -0.028297223150730133, 0.0026735449209809303, -0.0073787192814052105, 0.02179865539073944, 0.022142775356769562, -0.014426554553210735, -0.016703037545084953, -0.022195717319846153, 0.0071603357791900635, -0.021375123411417007, -0.00019408430671319366, 0.03136782720685005, -0.007894898764789104, -0.018688343465328217, 0.009086081758141518, -0.025226617231965065, 0.007901516743004322, 0.007140482775866985, 0.008920639753341675, -0.01532655954360962, -0.009264759719371796, 0.005674665328115225, 0.01207065861672163, 0.002878693165257573, 0.004678703844547272, 0.016663331538438797, -0.04290907084941864, -0.01299713458865881, -0.05286207050085068, 0.015247147530317307, -0.020303059369325638, -0.01428096555173397, 0.010085352696478367, -0.001786775072105229, 0.029620759189128876, -0.009284612722694874, 0.023122193291783333, -0.0037621541414409876, -0.030917827039957047, 0.015180970542132854, 0.0009008324122987688, 0.01708686351776123, 0.004102964885532856, -0.006670626811683178, 0.009913292713463306, -0.02980605512857437, 0.01033682469278574, 0.031103121116757393, -0.025875149294734, -0.010866239666938782, 0.004275024868547916, -0.008960345759987831, -0.030785473063588142, 0.011283153668045998, -0.008894169703125954, 0.024181023240089417, -0.009112552739679813, -0.021097181364893913, -0.01671627350151539, -0.00020349382248241454, -0.001244952087290585, 0.026788391172885895, 0.003613256150856614, 0.004652232863008976, 0.0028571856673806906, 0.024961909279227257, 0.009767703711986542, 0.03941493481397629, -0.029700173065066338, -0.027106039226055145, 0.021348653361201286, -0.02281777933239937, 0.0002634666161611676, -0.01842363551259041, 0.015776561573147774, 0.021613361313939095, -0.015855973586440086, 0.013711844570934772, 0.01153462566435337, 0.007961075752973557, -0.002807553159072995, -0.014386848546564579, 0.02345307730138302, -0.039017874747514725, -0.0012532242108136415, -0.030759001150727272, -0.011216976679861546, -0.020514825358986855, 0.05010911449790001, -0.014969204552471638, -0.00618091830983758, 0.007425043266266584, 0.004079802893102169, -0.04417966678738594, -0.02980605512857437, -0.028429577127099037, -0.004695247858762741, 0.006233859807252884, -0.014638320542871952, -0.005201500840485096, 0.007881663739681244, 0.007583867758512497, 0.017880985513329506, 0.0050526028499007225, -0.03854139894247055, 0.0040632588788867, -0.009086081758141518, 0.03393549099564552, 0.039017874747514725, 0.017470689490437508, -0.01737804152071476, 0.0031351284123957157, 0.06014152616262436, 0.016120681539177895, 0.0032013054005801678, 0.0009818990947678685, -0.0030706061515957117, 0.021044239401817322, 0.0068625397980213165, 0.010105205699801445, -0.010098587721586227, 0.014386848546564579, 0.0014219752047210932, 0.01969423145055771, 0.00626694830134511, -0.001055520842783153, 0.007941222749650478, 0.028773697093129158, 0.021242769435048103, 0.005184956360608339, -0.021560419350862503, -0.001003406592644751, -0.030256057158112526, 0.009999322704970837, -0.017973633483052254, -0.02460455521941185, -0.03163253515958786, 0.03560314700007439, -0.02850898914039135, -0.00561510631814599, 0.018807461485266685, -0.003924287389963865, -0.03793257474899292, 0.0008015671628527343, 0.011620655655860901, -0.010786827653646469, -0.030811943113803864, 0.018092751502990723, 0.0015336485812440515, 0.005886431317776442, 0.00774930976331234, 0.002273174934089184, 0.009999322704970837, 0.021004533395171165, 0.029303111135959625, -0.03909728676080704, -0.005310692358762026, -0.009926527738571167, -0.009820645675063133, 0.023108957335352898, -0.03915022686123848, -0.020885415375232697, 0.011885362677276134, -0.026179563254117966, 0.010297118686139584, 0.007418425288051367, 0.021838361397385597, 0.059347402304410934, -0.007927986793220043, 0.004288260359317064, 0.022672191262245178, 0.008986816741526127, 0.03004429116845131, 0.020289823412895203, -0.00387465488165617, 0.001326845958828926, -0.03973258286714554, -0.0026321844197809696, 0.009277994744479656, 0.0016842009499669075, -0.010039028711616993, -0.009979469701647758, 0.003378328401595354, 0.0020117764361202717, 0.014955969527363777, -0.032056067138910294, -0.0049864258617162704, 0.026814861223101616, -0.0010836459696292877, 0.006488640792667866, -0.01708686351776123, -0.04354437068104744, -0.01835745945572853, 0.02416778728365898, -0.007319160271435976, 0.004665468353778124, -0.044973790645599365, 0.016372153535485268, -0.025663383305072784, -0.031156063079833984, -0.010991975665092468, -0.0027728101704269648, 0.0026189489290118217, -0.012805221602320671, -0.011216976679861546, 0.03602667897939682, 0.005850033834576607, -0.0029217081610113382, 0.005621723830699921, -0.027317805215716362, -0.04293554276227951, -0.027714867144823074, -0.003146709408611059, -0.004294877871870995, -0.019535407423973083, -0.03999729081988335], "9efa0d03-95f2-447c-99c0-3085b92d0f82": [-0.0062420666217803955, 0.0212074127048254, -0.010433992370963097, -0.007053297478705645, -0.021818380802869797, -0.006673139054328203, -0.020039783790707588, -0.025687851011753082, 0.0073316278867423534, -0.03329102322459221, 0.016428276896476746, 0.015762999653816223, -0.025769313797354698, 0.022280002012848854, -0.006802121642976999, 0.006011256016790867, 0.018682073801755905, 0.007813614793121815, 0.0025338241830468178, 0.006459299940615892, -0.013760379515588284, 0.00914416927844286, -0.009999525733292103, -0.01520633976906538, -0.007956174202263355, -0.007372359279543161, 0.009028764441609383, -0.008363486267626286, 0.013366644270718098, -0.007691420614719391, 0.011316503398120403, -0.023827791213989258, -0.026135895401239395, -0.016998514533042908, -0.00045865101856179535, -0.002389567671343684, -0.011750970035791397, -0.015247070230543613, 0.008153041824698448, 0.013482049107551575, 0.027099868282675743, -0.017175016924738884, -0.011506582610309124, -0.015491458587348461, -0.003090484766289592, 0.016143158078193665, 0.017650214955210686, -0.049882225692272186, -0.006591676734387875, 0.01706640049815178, 0.009273151867091656, 0.011520159430801868, -0.015762999653816223, 0.007060086354613304, -0.023013165220618248, 0.03961794450879097, 0.023311860859394073, 0.025266962125897408, -0.003170250216498971, -0.019849704578518867, 0.016238197684288025, -0.010535821318626404, -0.009727983735501766, -0.001992437755689025, -0.01448675338178873, 0.007589592598378658, 0.020935870707035065, 0.012585961259901524, -0.0003899170260410756, -0.015993811190128326, 0.031145840883255005, 0.025348424911499023, -0.016278930008411407, 0.01337343268096447, 0.004076520912349224, -0.03654952347278595, -0.012708155438303947, 0.007426667492836714, -0.02054213546216488, -0.007277319673448801, -7.58407695684582e-05, -0.015152030624449253, -0.017107130959630013, 0.02595939300954342, 0.03793438524007797, -0.012423036620020866, 0.012429825030267239, 0.029272204264998436, 0.004819866735488176, -0.014310251921415329, 0.029136432334780693, 0.003470643423497677, 0.008091945201158524, 0.015219916589558125, -0.022700892761349678, 0.010732688941061497, -0.013244450092315674, 0.04143727570772171, -0.01785387098789215, -0.026882635429501534, -0.01898076944053173, 0.027629375457763672, -0.0047417981550097466, -0.004446496721357107, -0.02054213546216488, 0.0053052473813295364, 0.01948312297463417, -3.0681039788760245e-05, 0.022945279255509377, -0.02063717506825924, -0.00400863541290164, 0.06815698742866516, 0.03223200887441635, -0.027398565784096718, 0.022660160437226295, 0.020270593464374542, 0.02818603627383709, -0.0015180882764980197, -0.005420652683824301, 0.006065564230084419, 0.01224653422832489, -0.0050438884645700455, 0.03793438524007797, -0.041382964700460434, 0.02962520718574524, -0.011330080218613148, 0.016713395714759827, -0.03160746395587921, -0.047275424003601074, -0.019876858219504356, 0.020867984741926193, 0.006924315355718136, -0.01450033113360405, 0.007243376690894365, -0.0026763835921883583, 0.023827791213989258, 0.0015817307867109776, 0.0005761777283623815, -0.012266899459064007, -0.015233493410050869, 0.001437474275007844, -0.011031384579837322, -8.634842743049376e-07, 0.009727983735501766, 0.008845473639667034, 0.017310788854956627, 0.017215749248862267, 0.014758295379579067, -0.025606390088796616, -0.01847841776907444, 0.0002628439397085458, -0.006211518310010433, -0.004283571615815163, 0.007738940417766571, 0.024574531242251396, 0.0022028826642781496, -0.03149884566664696, -0.011187520809471607, -0.018722806125879288, 0.017242902889847755, 0.017120709642767906, 0.003102364717051387, -0.012036088854074478, -0.0032568040769547224, -0.0036047170870006084, 0.03896624594926834, 0.014934797771275043, 0.033562563359737396, -0.03483881056308746, -0.006632407661527395, 0.0018430898198857903, 0.018234029412269592, -0.013380221091210842, -0.0038185562007129192, 0.024913957342505455, 0.017799563705921173, 0.006472877226769924, -0.009225632064044476, -0.005810994189232588, -0.007793249096721411, -0.0050235227681696415, 0.011798489838838577, 0.015056991018354893, 0.03432288020849228, -0.03489311784505844, -0.01342095248401165, -0.015491458587348461, 0.022130655124783516, 0.01976824179291725, -0.012518076226115227, 0.023759905248880386, 0.03190615773200989, -0.014934797771275043, -0.013916515745222569, -0.5856612920761108, -0.016075273975729942, -0.009537904523313046, -0.009266363456845284, 0.009694041684269905, 0.0027459661941975355, -0.0018244213424623013, 0.006931103765964508, -0.03682106360793114, 0.026787595823407173, -0.014120172709226608, 0.025104036554694176, 0.02705913782119751, 0.008282024413347244, 0.024058600887656212, -0.01634681411087513, 0.01869565062224865, -0.025782890617847443, -0.01885857619345188, 0.02693694457411766, 0.0006012104568071663, 0.02430298924446106, -0.011228252202272415, -0.019089385867118835, -0.002841005800291896, 0.008730067871510983, 0.03986233100295067, -0.021411068737506866, 0.025972971692681313, 0.011255406774580479, 0.0009003307204693556, 0.006459299940615892, -0.0012423036387190223, -0.002618680940940976, 0.03736414760351181, 0.0004484681994654238, -0.020311323925852776, 0.024574531242251396, -0.006486454047262669, 0.03101007081568241, -0.020243439823389053, -0.011533737182617188, 0.016292506828904152, -0.007032931782305241, -0.0033009296748787165, -0.004707855638116598, 0.01569511368870735, 0.011974992230534554, 0.015572920441627502, -0.03597928583621979, -0.00750134140253067, -0.008811530657112598, 0.008974455296993256, -0.005756685510277748, 0.04124719649553299, -0.007542072795331478, 0.011669508181512356, 0.014989105984568596, 0.0030786048155277967, -0.035409048199653625, -0.003411243436858058, 0.023406900465488434, 0.021845536306500435, 0.01631966046988964, -0.01847841776907444, 0.03329102322459221, -0.029054969549179077, -0.008573931641876698, -0.010305010713636875, -0.03796153888106346, 0.01741940528154373, 0.020976603031158447, -0.029027815908193588, -0.0033229924738407135, 0.012158283032476902, 0.036006439477205276, 0.02614947222173214, -0.0050235227681696415, 0.01293217670172453, 0.031118687242269516, 0.006717264652252197, -0.01204287726432085, -0.036277979612350464, -0.03209623694419861, 0.03654952347278595, -0.0150977224111557, 0.0036590255331248045, 0.006550945341587067, 0.024601684883236885, 0.007209434174001217, 0.01976824179291725, 0.006917526945471764, -0.0008977850084193051, -0.013482049107551575, -0.01948312297463417, -0.006119872909039259, -0.008702914230525494, 0.0073316278867423534, 0.0013992886524647474, -0.03812446445226669, -0.0076574780978262424, -0.0032771697733551264, 0.009952005930244923, -0.013475260697305202, -0.011981780640780926, 0.03435003384947777, 0.032177701592445374, -0.004785923752933741, 0.012884656898677349, -0.031172996386885643, -0.033372484147548676, -0.0359521321952343, 0.0114454859867692, -0.006007861811667681, -0.006401597522199154, -0.026665402576327324, 0.013067947700619698, -0.019347351044416428, -0.009279940277338028, -0.01469041034579277, -0.009279940277338028, 0.008214138448238373, -0.011404754593968391, 0.0035945342388004065, 0.030738528817892075, -0.015762999653816223, 0.021804803982377052, 0.006812304258346558, -0.0030989705119282007, 0.017894603312015533, -0.01625177450478077, 0.02223927155137062, 0.011302926577627659, -0.02130245231091976, 0.011330080218613148, -0.019116541370749474, 0.01332591287791729, -0.013081525452435017, -0.009911274537444115, -0.012375516816973686, -0.008655394427478313, 0.0022028826642781496, 0.002954714000225067, -0.006340500432997942, -0.01625177450478077, -0.016143158078193665, -0.014269520528614521, 0.011791701428592205, -0.01922515779733658, 0.0172564797103405, -0.01612958125770092, 0.0013950458960607648, -0.018777113407850266, -0.0001701378932921216, 0.019306620582938194, -0.011425119824707508, 0.015803731977939606, -0.000786198303103447, 0.0076574780978262424, -0.003533437382429838, -0.014799026772379875, 0.036006439477205276, -0.012036088854074478, -0.006635802332311869, -0.03687537461519241, -0.031743232160806656, -0.02796880342066288, 0.027642952278256416, 0.0010420415783300996, -0.040133874863386154, -0.014418868348002434, -0.017093554139137268, -0.001005553174763918, -0.006510213948786259, -0.019089385867118835, 0.0017955700168386102, -0.017528021708130836, -0.012585961259901524, -0.03003252111375332, 0.004045972600579262, -0.012443401850759983, 0.026271667331457138, 0.022904548794031143, -0.02054213546216488, 0.027045561000704765, 0.005247544962912798, 0.00588906230404973, -0.011268983595073223, -0.013414164073765278, 0.013943670317530632, 0.0207322146743536, 0.03101007081568241, -0.013400586321949959, 0.03820592910051346, 0.008797953836619854, 0.0357077419757843, 0.003363723633810878, 0.005909428000450134, 0.013067947700619698, 0.040948498994112015, 0.008153041824698448, 0.004728221334517002, 0.005712559912353754, -0.029462283477187157, 0.0027782118413597345, -0.012144706211984158, 0.018994346261024475, -0.016781281679868698, 0.027330679818987846, -0.016075273975729942, 0.013400586321949959, -0.03043983317911625, -0.020053360611200333, 0.005692194681614637, 0.0022487053647637367, -0.007243376690894365, -0.005315430462360382, 0.020623598247766495, 0.019944744184613228, 0.012613115832209587, 0.019455967471003532, 0.011812067590653896, 0.00787471141666174, -3.4579148632474244e-05, -0.038043003529310226, 0.00012717914069071412, 0.0012151494156569242, -0.0027900917921215296, -0.024628838524222374, -0.059956423938274384, 0.020555712282657623, 0.0025440070312470198, 0.02192699909210205, 0.017840294167399406, 0.028919199481606483, -0.0021926998160779476, 0.04203466698527336, -0.018220452591776848, 0.04040541499853134, 0.007494552992284298, -0.007304473780095577, 0.0333181768655777, 0.017120709642767906, -0.024506645277142525, 0.02446591481566429, -0.0030870905611664057, 0.04885036498308182, 0.003457066137343645, -0.01448675338178873, 0.019944744184613228, -0.0002976352407131344, -0.0018872153013944626, 0.00848568044602871, 0.014188057743012905, 0.016645511612296104, 0.01199535746127367, 0.014731141738593578, 0.019116541370749474, 0.027642952278256416, 0.011357234790921211, 0.010705534368753433, -0.0061572096310555935, 0.022035615518689156, 0.0032754726707935333, 0.026855481788516045, -0.005736319813877344, -0.021058063954114914, -0.045863404870033264, 0.014242365956306458, -0.031064379960298538, -0.0073112621903419495, -0.03065706603229046, -0.022062769159674644, 0.008302389644086361, 0.019021501764655113, -0.004222474526613951, -0.0012745491694658995, 0.036033593118190765, 0.0068496414460241795, -0.013196930289268494, -0.010719111189246178, 0.0033722093794494867, 0.015219916589558125, -0.006510213948786259, -0.0010080988286063075, 0.006065564230084419, 0.016048118472099304, -0.03310094401240349, 0.02111237309873104, 0.0172564797103405, -0.01807110570371151, 0.007284108083695173, 0.007990117184817791, -0.0013254632940515876, -0.03141738474369049, -0.009497173130512238, 0.024968266487121582, -0.013665339909493923, 0.008892993442714214, 0.012260111048817635, -0.018098259344697, 0.01665908843278885, -0.018234029412269592, 0.011907107196748257, 0.07027500867843628, 0.005155899561941624, -0.01713428646326065, -0.018111836165189743, -0.004514382220804691, 0.005033705849200487, 0.006269220728427172, -0.004755375441163778, -0.023719174787402153, 0.00806479062885046, 0.03926493972539902, -0.012891445308923721, 0.012070031836628914, 0.004599238745868206, 0.03513750433921814, 0.00792223121970892, -0.0072705307975411415, -0.005967130418866873, 0.018654920160770416, 0.020935870707035065, 0.047899968922138214, 0.04322944954037666, -0.00229792227037251, 0.016984937712550163, -0.026543209329247475, -0.012002146802842617, -0.03956363722681999, 0.01960531622171402, 0.014636102132499218, -0.005339190363883972, 0.008539988659322262, -0.017079977318644524, 0.020352056249976158, -0.02329828403890133, 0.016645511612296104, 0.010406838729977608, -0.012382305227220058, -0.015043414197862148, 0.01097707636654377, -0.0017463529948145151, 0.022510813549160957, 0.02646174654364586, 0.005386710166931152, -0.011907107196748257, 0.005529269576072693, 0.009456442669034004, 0.013957247138023376, 0.004045972600579262, 0.02957089990377426, -0.03861324116587639, -0.004952243063598871, -0.002527035539969802, 0.02734425663948059, 0.02075936831533909, 0.003669208148494363, 0.02389567531645298, 0.024981843307614326, 0.02775156870484352, 0.03220485523343086, -0.009626155719161034, 0.008024059236049652, 0.021777650341391563, -0.0023980531841516495, -0.02555208094418049, -0.014948374591767788, 0.016523316502571106, -0.017365096136927605, 0.008105522021651268, 0.006272614933550358, -0.02514476887881756, 0.0022215512581169605, -0.011228252202272415, -0.045809097588062286, -0.0016368877841159701, 0.007256953977048397, 0.0063506830483675, -0.01326481532305479, -0.021723341196775436, 0.008859050460159779, -0.027724415063858032, 0.0004096462216693908, -0.030113982036709785, 0.0281588826328516, -0.015491458587348461, 0.01763663813471794, -0.013502414338290691, -0.00679533276706934, 0.020121244713664055, -0.02480534091591835, -0.02643459104001522, 0.0065679168328642845, -0.015219916589558125, -0.017500868067145348, -0.024954689666628838, 0.020976603031158447, 0.0077660949900746346, 0.007168702781200409, 0.005967130418866873, 0.017989642918109894, 0.021994883194565773, 0.0071143945679068565, -0.04426131024956703, -0.0077660949900746346, -0.0033026267774403095, 0.00692092115059495, 0.020935870707035065, -0.019564585760235786, 0.00042428402230143547, -0.00735878199338913, 0.005227179266512394, -0.02367844246327877, -0.0041953204199671745, -0.01610242761671543, -0.03334533050656319, 0.006459299940615892, 0.034187108278274536, 0.006316740531474352, 0.005566606298089027, 0.018003219738602638, 0.0009690647129900753, -0.018654920160770416, -0.004473650828003883, -0.007121182978153229, -0.0030039309058338404, -0.009904486127197742, -0.006859824061393738, 0.005844936706125736, -0.0006860672729089856, -0.009021975100040436, -0.017215749248862267, 0.022700892761349678, 0.0012397578684613109, 0.008302389644086361, -0.007026143372058868, 0.004161377903074026, -0.0023929618764668703, 0.009164534509181976, 0.02195415273308754, -0.0075760153122246265, -0.03081999160349369, 0.012287265621125698, -0.019496699795126915, 0.008526411838829517, -0.004022212699055672, -0.021750496700406075, 0.018464840948581696, -0.009103437885642052, -0.03597928583621979, 0.010182816535234451, 0.015640806406736374, 0.01420163456350565, -0.002304710913449526, 0.031091533601284027, -0.02437087520956993, -0.01991758868098259, 0.018519148230552673, -0.016713395714759827, -0.007250165566802025, -0.01775883138179779, 0.003944144118577242, -0.008003694005310535, 0.011465851217508316, -0.004938666243106127, -0.006075747311115265, -0.009361403062939644, -0.030521295964717865, -0.02242935076355934, 0.01243661344051361, -0.011520159430801868, 0.009958794340491295, -0.012443401850759983, 0.001154052559286356, -0.010332164354622364, 0.005345978774130344, -0.027289947494864464, -0.019686779007315636, -0.010291432961821556, 0.026570362970232964, 0.019999051466584206, 0.013380221091210842, -0.0048028952442109585, -0.005963736213743687, 0.015192762017250061, 0.019944744184613228, -0.006466088350862265, 0.028919199481606483, 0.011343657970428467, -0.01697136089205742, -0.038721855729818344, -0.005274699069559574, -0.014147326350212097, -0.001285580568946898, -0.005427441094070673, -0.013020427897572517, 0.011696661822497845, 0.015152030624449253, -0.01121467538177967, 0.02502257376909256, 0.0016419792082160711, -0.007677843794226646, -0.005834754090756178, 0.0007251013885252178, -0.009415711276233196, 0.032965172082185745, -0.017867449671030045, 0.002900405554100871, 0.04293075576424599, 0.000625818909611553, 0.007867923006415367, 0.023569826036691666, -0.0029699881561100483, -0.0301954448223114, 0.02092229388654232, -0.0019041866762563586, 0.024859650060534477, -0.017079977318644524, -0.0027476632967591286, -0.04445138946175575, -0.010080988518893719, -0.01703924685716629, -0.0006797030218876898, 0.019252311438322067, -0.004042578395456076, -0.0009028763743117452, -0.019184425473213196, 0.010474723763763905, 0.0015545766800642014, -0.015640806406736374, 0.015314956195652485, -0.0027765147387981415, -0.016414700075984, -0.016550472006201744, -0.013556723482906818, -0.010264279320836067, 0.00886583887040615, -0.0011167156044393778, -0.004711249843239784, 0.002021289197728038, -0.027575068175792694, -0.04089419171214104, 0.017514444887638092, -0.007345205172896385, 0.05406396836042404, 0.012599538080394268, 0.016292506828904152, 0.033155251294374466, 0.021492531523108482, 0.018994346261024475, -0.002649229485541582, 0.004911511670798063, -0.002851188648492098, 0.014839758165180683, 0.0026662007439881563, -0.005855119321495295, 0.0002908466849476099, -0.006883583962917328, 0.014948374591767788, -0.04751981049776077, -0.010515455156564713, 0.010624071583151817, -0.005074436776340008, 0.017120709642767906, -0.030466986820101738, 0.007107606157660484, -0.04472292959690094, 0.018614187836647034, -0.014541061595082283, 0.01756875216960907, -0.015043414197862148, -0.016781281679868698, -0.014989105984568596, 0.00872327946126461, -1.0590526926534949e-06, 0.038504622876644135, -0.01251128688454628, -0.009055918082594872, 0.006998989265412092, -0.0003213951422367245, -0.03997094929218292, 0.013719648122787476, 0.018736382946372032, 0.02643459104001522, -0.031580306589603424, 0.027357833459973335, 0.014948374591767788, -0.006102901417762041, -0.01572226919233799, 0.0003050602099392563, 0.005240756087005138, 0.03511035069823265, -0.0035979284439235926, -0.007609958294779062, -0.02674686536192894, -0.008404217660427094, 0.009782292880117893, 0.005861908197402954, -0.02298601157963276, -0.0044159479439258575, -0.013773956336081028, 0.012823560275137424, 0.02298601157963276, 0.006951469462364912, -0.002637349534779787, -0.002818943001329899, -0.01205645501613617, 0.013196930289268494, -0.005444412585347891, -0.027493605390191078, 0.013577088713645935, -0.02746644988656044, -0.030331216752529144, -0.007861134596168995, 0.006683322135359049, 0.009890909306704998, -0.004996368661522865, 0.00735878199338913, 0.01663193292915821, 0.0316346175968647, -0.020161977037787437, 0.012002146802842617, -0.0004938666243106127, -0.003723516594618559, -0.0012109066592529416, -0.0067240530624985695, -0.00581778259947896, 0.0026865664403885603, 0.02487322688102722, -0.030466986820101738, -0.019428813830018044, -0.024072177708148956, 0.010766630992293358, -0.006092718802392483, -0.007447033189237118, 0.0006746115977875888, -0.00256776693277061, 0.017962489277124405, 0.026081588119268417, 0.0009240906219929457, -0.007990117184817791, 0.011703450232744217, -0.0030141137540340424, -0.006832669954746962, 0.021967729553580284, -0.011927472427487373, 0.002016197657212615, -0.013855419121682644, 0.005474960897117853, 0.006388020236045122, -0.014378136955201626, -0.01293217670172453, -0.009585424326360226, 0.024262256920337677, -0.014568216167390347, 0.005756685510277748, -0.03635944426059723, -0.001003855955787003, 0.00024756972561590374, 0.024547375738620758, -0.001199875259771943, -0.013319124467670918, 6.099082747823559e-05, 0.04662372171878815, 0.020053360611200333, 0.007752517703920603, -0.021370338276028633, -0.018614187836647034, -0.010094565339386463, 0.002219853922724724, 0.004684095736593008, -0.04415269196033478, -0.006998989265412092, 0.026828328147530556, 0.02010766789317131, -0.026353130117058754, 0.0070397206582129, -0.01511130016297102, -0.04260490462183952, -0.011812067590653896, -0.01241624727845192, 0.009809446521103382, 0.030575603246688843, 0.03942786529660225, -0.011662718839943409, 0.03448580577969551, -0.028023110702633858, 0.02461526170372963, -0.04751981049776077, -0.0036759967915713787, 0.010420415550470352, 0.025294115766882896, 0.0035843513906002045, 0.001585973659530282, -0.0017853871686384082, -0.03760853409767151, -0.008499257266521454, -0.017500868067145348, 0.006119872909039259, 0.029733823612332344, -0.027113446965813637, -0.007643900811672211, -0.023637712001800537, 0.01672697253525257, 0.004904723260551691, 0.007881499826908112, 0.007840768434107304, -0.013970823958516121, 0.007813614793121815, 0.002241916721686721, 0.011791701428592205, -0.032177701592445374, -0.014065863564610481, 0.008091945201158524, -0.029353665187954903, 0.01665908843278885, 0.00942928809672594, -0.018654920160770416, -0.00750813027843833, -0.030575603246688843, 0.03342679142951965, -0.01619746722280979, -0.020189130678772926, 0.012307630851864815, 0.011574468575417995, 0.005671828985214233, -0.02881058305501938, 0.010427203960716724, -0.030955761671066284, 0.005977313499897718, 0.019442390650510788, 0.0006623073713853955, 0.0055496348068118095, -0.024384452030062675, 0.02881058305501938, -0.021058063954114914, 0.010026680305600166, -0.023759905248880386, -0.002365807769820094, -0.011350446380674839, 0.02775156870484352, 0.013454894535243511, -0.04293075576424599, -0.0069854119792580605, 0.01932019740343094, 0.0032788668759167194, 0.004487227648496628, -0.034404341131448746, -0.020623598247766495, 0.006550945341587067, -0.007433455903083086, 0.006119872909039259, 0.017500868067145348, -0.02022986300289631, -0.007759306114166975, 0.021655457094311714, -0.044614315032958984, 0.004626392852514982, 0.17965203523635864, -0.02595939300954342, 0.015464304015040398, 0.025524927303195, 0.030955761671066284, 0.02433014288544655, -0.002537218388170004, 0.0038524989504367113, -0.009008398279547691, -0.00459584454074502, -0.003530043177306652, 0.009083072654902935, -0.019252311438322067, 0.007392724975943565, 0.005464778281748295, -0.013726436533033848, -0.005923004820942879, -0.040514033287763596, -0.026488900184631348, 0.008913358673453331, -0.008343121036887169, -0.018274761736392975, 0.01031858753412962, -0.005909428000450134, 0.012226168066263199, -0.007759306114166975, -0.016088850796222687, -0.0029750794637948275, 0.03554482012987137, -0.011846009641885757, -0.01713428646326065, 0.016401123255491257, -0.02940797433257103, -0.004005241207778454, -0.016373969614505768, 0.0005676920409314334, 0.028077419847249985, 0.011384389363229275, 0.011581256985664368, -0.007080451585352421, 0.031200150027871132, -0.02921789512038231, -0.03334533050656319, -0.007861134596168995, -0.008288812823593616, 0.016238197684288025, -0.007820403203368187, -0.0030786048155277967, -0.0026882635429501534, 0.04043256863951683, -0.025511350482702255, -0.022184962406754494, 0.03198762238025665, -0.00806479062885046, -0.001150658237747848, 0.0111467894166708, 0.004297148436307907, -0.007725363597273827, 0.03448580577969551, 0.025294115766882896, -0.008003694005310535, 0.04977360740303993, -0.013957247138023376, 0.0032652898225933313, -0.016020964831113815, -0.009544692933559418, -0.01885857619345188, -0.0050880140624940395, 9.393913387611974e-06, -0.009327460080385208, 0.002606800990179181, -0.012701366096735, 0.0021349971648305655, 0.030738528817892075, -0.02897350676357746, -0.019836125895380974, 0.030466986820101738, -0.01561365183442831, -0.015505035407841206, 0.024045024067163467, -0.009347825311124325, -0.016713395714759827, 0.00042407188448123634, -0.0008659636951051652, -0.04469577595591545, -0.023692019283771515, 0.024058600887656212, -0.005705771502107382, 0.00018350283789914101, -0.019686779007315636, -0.006683322135359049, -0.008003694005310535, -0.009863754734396935, 0.006041804328560829, -0.008234504610300064, 0.012300842441618443, -0.029679516330361366, 0.028701964765787125, -0.029272204264998436, -0.014255942776799202, -0.01976824179291725, 0.019551007077097893, 0.022619429975748062, 0.02686905860900879, -0.006931103765964508, 0.010956710204482079, 0.013319124467670918, -0.0007522555533796549, 0.009734773077070713, -0.012518076226115227, -0.004286965820938349, -0.027480026707053185, -0.00815983023494482, -0.003998452797532082, -0.0044159479439258575, -0.005678617395460606, -0.011893529444932938, 0.0150977224111557, -0.011974992230534554, -0.0019551008008420467, 0.010712322778999805, -0.002231733873486519, 0.021316029131412506, -0.009001609869301319, 0.011187520809471607, -0.0079697510227561, -0.06484417617321014, 0.017704524099826813, 0.009388556703925133, 0.007881499826908112, 0.01926588825881481, -0.04572763666510582, 0.019713932648301125, 0.0008086853194981813, -0.01368570514023304, -0.019455967471003532, -0.037880077958106995, -0.00933424849063158, -0.012429825030267239, 0.010963499546051025, 0.017555175349116325, 0.006517002824693918, -0.02881058305501938, -0.025266962125897408, 0.04857882484793663, 0.004412553738802671, 0.004904723260551691, -0.005821176804602146, 0.00858072005212307, -0.037852924317121506, -0.03497457876801491, 0.014989105984568596, 0.006540762726217508, -0.04344668239355087, -0.004684095736593008, -0.054607052356004715, -0.019646046683192253, -0.023637712001800537, 0.02061002142727375, -0.025375578552484512, -0.01591234840452671, 0.007833980023860931, 0.009232420474290848, -0.002051837509498, -0.030168291181325912, -0.008947301656007767, -0.16857314109802246, 0.002340350765734911, 0.004232657607644796, -0.02104448713362217, 0.024941112846136093, 0.020243439823389053, 0.05979349836707115, -0.018899306654930115, 0.008173407055437565, 0.006557733751833439, 0.01293217670172453, -0.002026380505412817, -0.030548449605703354, -0.002399750519543886, -0.005451200995594263, 0.009395345114171505, 0.016278930008411407, 0.01938808336853981, 0.026760442182421684, 0.01970035582780838, 0.03239493444561958, -0.0012728520669043064, 0.02130245231091976, 0.027602221816778183, -0.009918062947690487, -0.01116715557873249, -0.014744718559086323, -0.013482049107551575, -0.006388020236045122, -0.01102459616959095, -0.0018057527486234903, 0.016767704859375954, -9.578211756888777e-05, -0.015776576474308968, 0.010305010713636875, -0.004721432458609343, 0.019130118191242218, -0.04472292959690094, 0.003971298690885305, 0.011689873412251472, 0.019374506548047066, 0.016686242073774338, 0.004504199139773846, -0.00391359580680728, -0.011560890823602676, 0.0013517688494175673, 0.026814749464392662, -0.004443102516233921, 0.013726436533033848, -0.00877079926431179, 0.001729381736367941, -0.028484731912612915, -0.017935333773493767, -0.004432919435203075, 0.04282213747501373, -0.010379684157669544, -0.004565296228975058, 0.008852262049913406, -0.003815161995589733, 8.374305616598576e-05, 0.036468058824539185, -0.011235040612518787, -0.011452274397015572, 0.009823023341596127, 0.012348362244665623, -0.007053297478705645, 0.0008549322956241667, 0.0215739943087101, -0.03301947936415672, 0.021166682243347168, -0.03589782118797302, 0.011859587393701077, 0.047682736068964005, -0.017718100920319557, 0.0007768640643917024, 0.029896749183535576, 0.0014799026539549232, 0.005172870587557554, -0.00630316324532032, -0.03261216729879379, -0.009171323850750923, 0.02938082069158554, 0.006931103765964508, 0.011839221231639385, -0.004507593344897032, -0.0049590314738452435, -0.01572226919233799, -0.0011014413321390748, -0.011723816394805908, -0.02655678614974022, -0.002886828500777483, -0.030928608030080795, -0.0046773068606853485, -0.0032975354697555304, 0.03999810293316841, 0.028701964765787125, 0.004222474526613951, -0.024072177708148956, 0.025076882913708687, -0.022660160437226295, 0.0024846072774380445, -0.007148337084800005, -0.03921063244342804, 0.018722806125879288, 0.010902401991188526, 0.03793438524007797, -0.037472765892744064, 0.007243376690894365, 0.017813140526413918, 0.010501878336071968, -0.004188532009720802, 0.01816614530980587, 0.010624071583151817, 0.03101007081568241, 0.004225868731737137, 0.027262793853878975, -0.0307928379625082, -0.00909664947539568, -0.013149410486221313, -0.001451051328331232, 0.004819866735488176, 0.0010870156111195683, -0.0124637670814991, 0.028946353122591972, 0.04640648886561394, 0.003112547565251589, -0.11980423331260681, -0.04100280627608299, 0.01631966046988964, 0.01960531622171402, -0.007250165566802025, 0.0007654083892703056, -0.01619746722280979, 0.033589717000722885, -0.008091945201158524, 0.029082123190164566, 0.0016275534871965647, 0.0027340862434357405, 0.0054342299699783325, -0.008743644692003727, -0.022537967190146446, 0.0215739943087101, -0.00994521751999855, 0.006965046748518944, -0.026380283758044243, 0.029869595542550087, -0.005855119321495295, -0.0018481812439858913, 0.010148873552680016, 0.006741024553775787, 0.0013458288740366697, 0.023529095575213432, -0.03204192966222763, 0.008295601233839989, 0.012518076226115227, 0.010162451304495335, -0.0012126037618145347, -0.004707855638116598, 0.019035078585147858, -0.01747371256351471, 0.008892993442714214, 0.03410564735531807, -0.015858039259910583, -0.00459584454074502, 0.01763663813471794, -0.006639196537435055, 0.008709702640771866, -0.016455432400107384, -0.025008996948599815, -0.0071551259607076645, 0.018206875771284103, -0.015925925225019455, -0.030086828395724297, -0.0009334248607046902, 0.0005626006168313324, -0.01644185371696949, -0.05914179980754852, -0.01747371256351471, -0.015342109836637974, -0.017989642918109894, 0.02464241534471512, -0.01694420725107193, -0.0038321332540363073, 0.012497710064053535, 0.024818917736411095, -0.0076167467050254345, -0.007528495509177446, -0.002036563353613019, -0.0019534036982804537, 0.015858039259910583, 0.03168892487883568, 0.012158283032476902, -0.008879415690898895, 0.012219379656016827, 0.02483249455690384, -0.028267499059438705, -0.016088850796222687, -0.0022215512581169605, 0.0043921880424022675, 0.03896624594926834, -0.0035877455957233906, 0.002645835280418396, -0.015532189980149269, 0.007704997900873423, 0.015152030624449253, -0.006876795552670956, -0.01469041034579277, -0.01919800415635109, -0.002851188648492098, 0.01111963577568531, 0.0032551069743931293, 0.023135358467698097, -0.0016784676117822528, -0.003740487853065133, 0.011282560415565968, -0.021628301590681076, 0.004931877367198467, 0.01500268280506134, 0.023121781647205353, -0.02082725428044796, -0.012545229867100716, -0.006951469462364912, 0.017310788854956627, -0.0023946589790284634, 0.013224084861576557, 0.009700830094516277, -0.03413280099630356, -0.019442390650510788, -0.041763126850128174, 0.024601684883236885, -0.010209971107542515, -0.04388115182518959, 0.013393797911703587, -0.005366344470530748, 0.0035639856941998005, -0.0071551259607076645, 0.030494140461087227, -0.0038864417001605034, -0.008560354821383953, 0.009931640699505806, 0.00010676046804292127, -0.005457989871501923, 0.006737630348652601, -0.018559880554676056, 0.005783839616924524, -0.011499794200062752, 0.02310820482671261, -0.015464304015040398, -0.008926935493946075, 0.005118562374264002, 0.025606390088796616, -0.007745729293674231, -0.025701429694890976, 0.004144406411796808, -0.028077419847249985, 0.028050266206264496, -0.009463231079280376, -0.02875627391040325, -0.0024693331215530634, -0.017894603312015533, -0.0032092842739075422, 0.037065453827381134, 0.019686779007315636, -0.008417795412242413, 0.00034664003760553896, -0.007711786311119795, 0.02013482339680195, -0.0072705307975411415, -0.04179028049111366, -0.043365221470594406, 0.005298458971083164, -0.01622462086379528, 0.0038287390489131212, -0.023542672395706177, 0.007148337084800005, 0.027412142604589462, 0.0036488426849246025, 0.01459537073969841, 0.04393545910716057, 0.004293754231184721, 0.002291133627295494, -0.0275614894926548, 0.018003219738602638, -0.04151873663067818, -0.001452748547308147, -0.02442518249154091, -0.011425119824707508, -0.027792301028966904, 0.016713395714759827, -0.01728363335132599, 0.005997678730636835, 0.001031010178849101, -0.01634681411087513, -0.03592497855424881, -0.026923367753624916, -0.0042156861163675785, -0.005274699069559574, -0.007195856887847185, -0.009972372092306614, -0.002628863789141178, 0.02355624921619892, 0.010793785564601421, 0.0402696467936039, -0.007073663175106049, -0.044424235820770264, 0.012490921653807163, -0.006096113007515669, 0.03177038952708244, 0.039509329944849014, 0.004307331517338753, -0.0075760153122246265, 0.0003222437226213515, 0.04344668239355087, 0.01569511368870735, -0.0063065579161047935, -0.01634681411087513, -0.014608947560191154, 0.01888572983443737, 0.018329069018363953, 0.004198714625090361, -0.025036152452230453, -0.01625177450478077, 0.026013702154159546, 0.018831422552466393, 0.01232120767235756, -0.0003415486426092684, 0.012728520669043064, 0.007121182978153229, 0.035653434693813324, -0.013135833665728569, -0.01097707636654377, -0.0006135146832093596, -0.01603454165160656, 0.0024438758846372366, -0.016075273975729942, -0.02602727897465229, -0.012205802835524082, 0.023949984461069107, -0.02411291003227234, 0.01111963577568531, -0.011771336197853088, 0.006089324131608009, -0.036033593118190765, 0.02279593236744404, -0.008349909447133541, -0.018220452591776848, -0.01450033113360405, 0.028620503842830658, -0.0038117675576359034, 0.009374979883432388, 0.03323671221733093, -0.014052286744117737, 0.011873164214193821, 0.006323528941720724, 0.025823622941970825, -0.03633229061961174, 0.003801584942266345, -0.006615436635911465, -0.037852924317121506, 0.0010955013567581773, -0.03896624594926834, -0.01335985492914915, 0.015491458587348461, -0.013814687728881836, 0.010909190401434898, 0.017405828461050987, 0.018396954983472824, 0.07136117666959763, -0.021343182772397995, 0.0016657391097396612, 0.019741086289286613, 0.002263979520648718, 0.024289412423968315, 0.020243439823389053, -0.003767642192542553, 0.005386710166931152, -0.030982917174696922, -0.0018736382480710745, 0.0027510575018823147, 0.01116715557873249, -0.03445865213871002, 0.012015723623335361, 0.005614126101136208, 0.005593760404735804, 0.019347351044416428, -0.03801584988832474, -0.017025670036673546, 0.02856619469821453, 0.006608647760003805, 0.020718637853860855, -0.005084619857370853, -0.04874175041913986, -0.010576551780104637, 0.00881831906735897, 0.0058517251163721085, 0.006408385932445526, -0.05395535007119179, 0.011649142019450665, -0.002608498092740774, -0.045836251229047775, -0.015464304015040398, -0.015274224802851677, -0.008411006070673466, -0.017826717346906662, 0.0022011855617165565, 0.038884781301021576, 0.01737867295742035, -0.03209623694419861, 0.016306083649396896, -0.01615673489868641, -0.024140063673257828, -0.028647657483816147, 0.005026916973292828, -0.020528558641672134, -0.0027799089439213276, -0.07065516710281372], "f301d3a7-e76e-456d-9b46-6b971f9d23b2": [-0.002986582461744547, 0.015012441202998161, -0.008426731452345848, -0.006226981990039349, -0.018261302262544632, 0.001979774096980691, -0.022390061989426613, -1.3854189091944136e-05, -0.020318912342190742, -0.01850496605038643, 0.011147651821374893, 0.007472378201782703, -0.04061075299978256, 0.031811755150556564, 0.007634821347892284, -0.0014103775611147285, 0.021537235006690025, -0.0027801443357020617, -0.021523699164390564, 0.0064672622829675674, -0.007032428402453661, 0.013888876885175705, -0.017882267013192177, -0.023919733241200447, 0.00761451618745923, -0.010051161050796509, 0.006677084602415562, -0.012941292487084866, 0.0010347281349822879, -0.0074385362677276134, 0.014227299951016903, -0.009387851692736149, -0.020048175007104874, -0.018044710159301758, 0.007012123242020607, 0.013117272406816483, -0.010064697824418545, -0.011567295528948307, 0.0028072181157767773, 0.012792387045919895, 0.042993247509002686, -0.017543844878673553, -0.009150955826044083, -0.026369914412498474, -0.01707005314528942, 0.0010034239385277033, 0.010301593691110611, -0.05929169803857803, 0.002695538569241762, 0.010612943209707737, -0.005296318791806698, 0.03254275023937225, -0.021401865407824516, 0.006189755629748106, -0.017273105680942535, 0.0355750173330307, 0.036387234926223755, 0.015201957896351814, 0.0037429577205330133, -0.01792287826538086, 0.03178468346595764, -0.004880058579146862, -0.013137578032910824, -0.007702506147325039, -0.00683614332228899, 0.012426890432834625, 0.009286325424909592, 0.008853144012391567, -0.010024087503552437, 0.0012885453179478645, 0.01704297959804535, 0.01805824786424637, -0.01604124717414379, 0.009597674012184143, 0.006568789016455412, -0.006524794269353151, -0.01049787923693657, 0.0041389125399291515, -0.025923196226358414, 0.002526327269151807, 0.004737921059131622, 0.00888021755963564, -0.009678895585238934, 0.030837098136544228, 0.04515915736556053, -0.0334632582962513, 0.019439013674855232, 0.028292156755924225, 0.005648278631269932, -0.02221408113837242, 0.025178665295243263, -0.017110662534832954, 0.014579259790480137, 0.00021542735339608043, 0.0016447354573756456, 0.0007635667570866644, -0.010254214517772198, 0.04597137123346329, -0.03289470821619034, -0.010856607928872108, -0.023297034204006195, 0.013381242752075195, -0.00705950241535902, 0.0019357791170477867, -0.009590906091034412, 0.0030204246286302805, 0.008947902359068394, 0.0014188381610438228, 0.0413958914577961, -0.005462145898491144, -0.011113809421658516, 0.05355204641819, 0.030051955953240395, -0.03311130031943321, 0.028427526354789734, -0.0029831980355083942, 0.025896122679114342, -0.011783886700868607, -0.02086038887500763, -0.0020576114766299725, 0.012663786299526691, 0.006484183482825756, 0.02674894779920578, -0.04838094115257263, 0.0340859591960907, -0.0039832377806305885, -0.004294586833566427, -0.038878027349710464, -0.048705827444791794, -0.03365277498960495, 0.020833315327763557, 0.004670236259698868, -0.01820715330541134, 0.023784363642334938, -0.004761610645800829, 0.0338422916829586, -0.0014281447511166334, 0.006815837696194649, -0.018139468505978584, -0.027398720383644104, 0.02573367953300476, 0.0010178069351240993, -0.010308362543582916, 0.02530049905180931, 0.016704555600881577, 0.028617043048143387, 0.025801364332437515, 0.01838313415646553, -0.025923196226358414, -0.020359523594379425, -0.011404852382838726, 0.0029882744420319796, 0.011953097768127918, 0.02042720839381218, 0.04716261848807335, -0.026396987959742546, -0.022566040977835655, -0.00809507630765438, -0.022281765937805176, 0.007540063001215458, 0.01923595927655697, 0.010024087503552437, -0.024637188762426376, -0.003206557361409068, 0.003908785060048103, 0.0467294380068779, 0.006524794269353151, 0.02088746428489685, -0.02160491980612278, -0.005715963430702686, -0.00837935134768486, -0.005100033711642027, -0.010321899317204952, -0.015648676082491875, 0.018410207703709602, 0.012081698514521122, 0.007330240681767464, -0.02574721723794937, -0.004677005112171173, -0.004883443005383015, 0.014159615151584148, 0.0016828080406412482, 0.01484999805688858, 0.024474745616316795, -0.028481673449277878, -0.034329622983932495, -0.0036278937477618456, 0.002504329662770033, 0.010931060649454594, 0.001549131004139781, 0.01835606060922146, 0.02337825670838356, 0.0021117590367794037, -0.008000317960977554, -0.5800298452377319, -0.007188103161752224, 0.003111798781901598, -0.013110504485666752, 0.004582246299833059, -0.019736824557185173, 0.0064097302965819836, -0.007384388241916895, -0.021280033513903618, 0.029781218618154526, -0.011066430248320103, 0.00411860691383481, 0.014349132776260376, 0.01721895858645439, 0.01277885027229786, -0.018735093995928764, 0.01551330741494894, -0.01777397282421589, -0.03129735216498375, 0.02264726348221302, -0.01882985234260559, 0.01263671275228262, -0.02720920369029045, 0.01662333495914936, -0.0009771962650120258, 0.0064604938961565495, 0.027290424332022667, -0.014714629389345646, 0.003536519594490528, 0.016352595761418343, -0.0072828615084290504, 0.015391474589705467, 0.003715883707627654, 0.0051169549115002155, 0.04293910041451454, 0.008947902359068394, -0.032867636531591415, 0.020901000127196312, -0.008968207985162735, 0.017259569838643074, -0.01866740919649601, -0.012257678434252739, 0.025314034894108772, -0.024759022518992424, 0.004575477913022041, -0.007370851468294859, 0.014579259790480137, 0.02409571222960949, -0.006226981990039349, -0.036224789917469025, -0.022606652230024338, -0.019154738634824753, 0.020792704075574875, -0.012975134886801243, 0.039744388312101364, -0.0034163794480264187, 0.030945392325520515, -0.0025686300359666348, 0.00787171721458435, -0.04147711396217346, -0.015946488827466965, 0.019790973514318466, 0.014159615151584148, 0.0015220571076497436, -0.01897875778377056, 0.007709274534136057, -0.022132860496640205, -0.009678895585238934, -0.000715341477189213, -0.0009543526684865355, 0.014998904429376125, 0.03449206426739693, 0.006034080870449543, 0.016961757093667984, 0.027398720383644104, 0.019032904878258705, 0.03703700751066208, 0.005333545617759228, 0.00851472094655037, 0.0355750173330307, 0.010606174357235432, -0.0018647103570401669, -0.023053370416164398, -0.04618796333670616, 0.04892241954803467, -0.008122150786221027, 0.0009010510402731597, 0.011777117848396301, 0.0385531410574913, 0.023473015055060387, 0.008419962599873543, 0.00492405379191041, -0.0010228833416476846, -0.01535086426883936, -0.004551788326352835, 0.0033148527145385742, -0.023852048441767693, 0.015824656933546066, -0.00462962593883276, -0.03987975791096687, -0.011140882968902588, -0.016948221251368523, 0.025665994733572006, -0.0006476569105871022, -0.02692492865025997, 0.04237055033445358, 0.022823242470622063, -0.01850496605038643, 0.01807178370654583, -0.042397625744342804, -0.01571636088192463, -0.03868851065635681, -0.015608065761625767, -0.01331355795264244, -0.006007006857544184, -0.02175382524728775, 0.03340911120176315, -0.025936733931303024, -0.003522982820868492, -0.0236760675907135, -0.0033757686614990234, 0.0009425078751519322, -0.021063443273305893, 0.011459000408649445, 0.010301593691110611, -0.008433499373495579, 0.014051320031285286, 0.0162984486669302, 0.011709433048963547, -0.009719506837427616, -0.003594051580876112, -0.01432205829769373, -4.499967326410115e-05, -0.013137578032910824, 0.01824776455760002, -0.02910437248647213, 0.005580594297498465, -0.008507952094078064, 0.012873608618974686, -0.022552503272891045, -0.009096808731555939, -0.019831582903862, 0.015540380962193012, -0.017232496291399002, -0.023743752390146255, -0.014714629389345646, -0.00253817206248641, -0.006842911709100008, -0.01868094503879547, 0.018477892503142357, -0.017719823867082596, 0.002324965549632907, 0.006392809096723795, -0.013076662085950375, 0.0030965697951614857, -0.010673859156668186, 0.02350008860230446, -0.00657555740326643, -0.00801385473459959, -0.006172834429889917, -0.00785141158849001, 0.021266497671604156, -0.013807655312120914, -0.013787350617349148, -0.02454243041574955, -0.0317305326461792, -0.016853462904691696, 0.0072625563479959965, -0.0031185674015432596, -0.025178665295243263, -0.008447036147117615, -0.026396987959742546, 0.0037564944941550493, 0.00367188872769475, -0.02501622401177883, 0.014105468057096004, -0.024298766627907753, 0.011140882968902588, -0.01521549466997385, -0.0019882346969097853, -0.007337009068578482, 0.013205262832343578, 0.010640016756951809, -0.013401548378169537, 0.02967292256653309, 0.0007703352021053433, 0.011777117848396301, -0.012900682166218758, -0.009523221291601658, 0.01632552221417427, 0.007743116468191147, 0.03657675161957741, -0.010457268916070461, 0.03465450927615166, 0.012670554220676422, 0.036522604525089264, 0.009590906091034412, 0.014971830882132053, 0.023865584284067154, 0.04274958372116089, -0.004748073872178793, 0.0007639897521585226, 0.01535086426883936, -0.02923974208533764, 0.0027226125821471214, -0.01543208584189415, 0.021970417350530624, -0.017097126692533493, 0.020549040287733078, -0.020955147221684456, 0.009225409477949142, -0.01647442765533924, -0.013902413658797741, 0.005787032190710306, 0.021672604605555534, 0.02191626839339733, -0.0047920686192810535, 0.013286484405398369, 0.03162223845720291, 0.03056635893881321, 0.009651822037994862, 0.008893754333257675, 0.015838192775845528, 0.0035669778008013964, -0.023351183161139488, 0.007837874814867973, -0.0038681740406900644, -0.013712896965444088, -0.030837098136544228, -0.04155833646655083, 0.022674337029457092, -0.003321621101349592, 0.041666630655527115, 0.010998745448887348, 0.03102661482989788, -0.016582723706960678, 0.045781854540109634, -0.009110345505177975, 0.051954690366983414, 0.004677005112171173, -0.03324666991829872, 0.034762803465127945, 0.006000238470733166, -0.01835606060922146, 0.011371010914444923, 0.002566938055679202, 0.01748969778418541, 0.0038004894740879536, -0.008318435400724411, 0.005022196099162102, 0.004396114032715559, -0.007066270802170038, -0.014281447976827621, 0.022457744926214218, 0.02220054343342781, 0.006971512455493212, 0.006064538843929768, 0.041206374764442444, 0.028887782245874405, 0.008650090545415878, -0.0018799393437802792, -0.0005757419858127832, 0.005523062311112881, 0.015851730480790138, 0.02320227585732937, 0.01893814653158188, -0.014660481363534927, -0.02647821046411991, 0.00786494929343462, -0.0229315385222435, 0.0046736206859350204, -0.02220054343342781, -0.019181812182068825, -0.007228713948279619, 0.0014577567344531417, 0.0021117590367794037, -0.0019577767234295607, 0.03516891226172447, 0.008325204253196716, -0.024325840175151825, -0.017828119918704033, -0.010606174357235432, 0.005347082391381264, 0.010694164782762527, -0.0028850554954260588, 0.008061233907938004, 0.03159516677260399, -0.03248860314488411, 0.0069173648953437805, 0.0032640891149640083, -0.01762506552040577, 0.028779486194252968, 0.01286683976650238, 0.010159456171095371, -0.027236277237534523, -0.0119937090203166, 0.018464354798197746, -0.009293093346059322, 0.014836461283266544, 0.014186689630150795, -0.022227618843317032, 0.029348036274313927, -0.017530307173728943, 0.010958134196698666, 0.055501360446214676, 0.014267911203205585, -0.025083906948566437, -0.03175760805606842, -0.005377540364861488, -0.0018883999437093735, 0.016203690320253372, -0.013408316299319267, -0.02720920369029045, 0.014200226403772831, 0.04480719566345215, -0.007296398282051086, 0.020508429035544395, 0.008338741026818752, 0.03744311258196831, 0.01353014912456274, 0.015107199549674988, 0.0051304916851222515, 0.024352913722395897, 0.03692870959639549, 0.02513805590569973, 0.020806241780519485, -0.00027391104958951473, 0.03614356741309166, -0.018153006210923195, 0.014443891122937202, -0.009665358811616898, -0.00037586098187603056, 0.022985685616731644, 0.012772081419825554, 0.010315131396055222, -0.02823800966143608, 0.010267752222716808, -0.0012200146447867155, 0.02114466391503811, 0.0063115875236690044, 0.008954671211540699, 0.005198176018893719, 0.013245873153209686, 0.009455536492168903, 0.01619015261530876, 0.013381242752075195, 0.00444010877981782, 0.007377619855105877, -0.006521409843116999, 0.008582405745983124, 0.011648517102003098, -0.002126988023519516, 0.022105785086750984, -0.02425815537571907, -0.028048492968082428, -0.0132932523265481, 0.017097126692533493, 0.005093265324831009, -0.001627814257517457, 0.034735728055238724, 0.03922998532652855, 0.033436186611652374, 0.022119322791695595, -0.007357314694672823, 0.0025787828490138054, 0.018640335649251938, -0.0023875737097114325, -0.016379669308662415, -0.0055941310711205006, 0.013943024910986423, -0.023581309244036674, -0.006037465296685696, 0.02396034449338913, 0.008318435400724411, 0.00462962593883276, -0.021564308553934097, -0.03912169113755226, 0.002225130796432495, 0.01051818486303091, 0.01124917808920145, -0.0011844802647829056, -0.026532357558608055, 0.0066297054290771484, -0.017909342423081398, -0.007052734028548002, -0.014498038217425346, 0.018423743546009064, 0.003810642287135124, -0.0022978917695581913, -0.019046442583203316, -0.026816632598638535, -0.01572989858686924, -0.020048175007104874, -0.03511476516723633, 0.0067413849756121635, -0.00544184073805809, -0.0186538714915514, -0.019736824557185173, 0.012555491179227829, 0.0049477433785796165, -0.007485915441066027, 0.023310571908950806, 0.012183225713670254, 0.0024163397029042244, 0.010301593691110611, -0.03985268622636795, 0.001825791667215526, -0.018315449357032776, -0.0016345827607437968, 0.027087371796369553, -0.0067413849756121635, -0.010172992944717407, -0.014606333337724209, 0.012433658353984356, -0.024569503962993622, -0.0005778571357950568, -0.015391474589705467, -0.017164811491966248, 0.0016430433606728911, 0.012609638273715973, 0.015080126002430916, 0.006047617644071579, 0.007668663747608662, 0.0029307426884770393, -0.021821510046720505, -0.001063494011759758, -0.0002491638879291713, -0.017313716933131218, -0.003533135401085019, -0.009604442864656448, 0.016975294798612595, -0.007242250721901655, -0.012102004140615463, -0.008914059959352016, 0.0252869613468647, 0.0027479941491037607, 0.011790654622018337, 0.0031896361615508795, 0.009881949983537197, 0.0056008994579315186, -0.005353850778192282, 0.034627433866262436, -0.00881930161267519, -0.044292792677879333, 0.002852905308827758, -0.013970098458230495, 0.006819222122430801, -0.01571636088192463, -0.025801364332437515, 0.007939402014017105, -0.004050922580063343, -0.03275933861732483, 0.009340472519397736, 0.024786096066236496, 0.02364899404346943, -0.007540063001215458, 0.02837337926030159, -0.02071148343384266, -0.03457328677177429, 0.01910058967769146, -0.027452867478132248, 0.00697828084230423, -0.007980012334883213, 0.008061233907938004, 0.004541635978966951, 0.024935001507401466, 0.0019476240267977118, -0.019222423434257507, -0.013902413658797741, -0.03630601242184639, -0.006562020629644394, 0.017719823867082596, 0.002228514989838004, 0.0034028426744043827, -0.01619015261530876, -0.011553758755326271, -0.003495908807963133, 0.003847868647426367, -0.026356378570199013, -0.03763262927532196, -0.007330240681767464, 0.022877389565110207, 0.03338203951716423, 0.023486550897359848, 0.023852048441767693, 0.024231081828475, 0.042695436626672745, 0.02823800966143608, -0.023473015055060387, 0.017259569838643074, -0.00794617086648941, -0.013536917045712471, -0.033138372004032135, 0.014308521524071693, -0.01551330741494894, -0.006169450003653765, -0.012142614461481571, 0.016975294798612595, 0.010673859156668186, 0.025814902037382126, -0.0019171659369021654, 0.012745007872581482, 0.012853302992880344, -0.008210140280425549, -0.010612943209707737, 0.008582405745983124, -0.03511476516723633, 0.019939878955483437, -0.011181493289768696, -0.00573626859113574, 0.031378574669361115, 0.008934365585446358, -0.0008177144336514175, 0.021835047751665115, 0.016718093305826187, -0.014917682856321335, 0.010687395930290222, -0.004027232993394136, 0.02176736295223236, -0.004176138900220394, -0.017313716933131218, -0.012345668859779835, -0.004416419193148613, -0.011113809421658516, -0.012244141660630703, 0.019614992663264275, -0.014660481363534927, 0.0014915990177541971, -0.014024246484041214, -0.016406742855906487, -0.004555172752588987, -0.03016025200486183, 0.021659066900610924, -0.016528576612472534, -0.0158652663230896, -0.014511574991047382, -0.017746899276971817, -0.01794995181262493, -0.00026714260457083583, 0.01175681222230196, 0.001642197254113853, 0.0024028029292821884, -0.031216131523251534, -0.036224789917469025, 0.025787826627492905, 0.002404494909569621, 0.04142296686768532, 0.007397925481200218, 0.01662333495914936, 0.010267752222716808, 0.02555770054459572, -0.012697628699243069, -0.007973244413733482, -0.003174407174810767, -0.009611211717128754, 0.008440268225967884, 0.0034688350278884172, -0.00013854188728146255, -0.01381442416459322, -0.015201957896351814, 0.01432205829769373, -0.056692611426115036, -0.013997172936797142, -0.019303644075989723, -0.005485835950821638, 0.02071148343384266, -0.014646944589912891, 0.004565325565636158, -0.02867119014263153, 0.0070865764282643795, -0.020630262792110443, -0.0038952480535954237, -0.013354169204831123, -0.04031293839216232, -0.03481695055961609, 0.01102581899613142, 0.002989966655150056, 0.01968267746269703, -0.011905718594789505, -0.010545258410274982, -0.005546751897782087, -0.008210140280425549, -0.021699678152799606, -0.004216749686747789, 0.014024246484041214, 0.025517089292407036, -0.02585551142692566, 0.025476478040218353, 0.028914855793118477, -0.014024246484041214, -0.022390061989426613, 0.005485835950821638, 0.003492524614557624, 0.033138372004032135, -0.0018917841371148825, -0.002529711462557316, -0.02159138396382332, -0.002436645096167922, -0.007817570120096207, 0.018911072984337807, -0.034167177975177765, 0.0014602949377149343, -0.012494574300944805, 0.006335277110338211, 0.033869367092847824, 0.007228713948279619, -0.02574721723794937, 0.013699360191822052, -0.007411462254822254, 0.006595863029360771, -0.018856925889849663, -0.021198812872171402, 0.02234945073723793, -0.021699678152799606, -0.04645869880914688, -0.010342204943299294, 0.00978719163686037, 0.03381521999835968, -0.00191208953037858, -0.024041565135121346, 0.01601417362689972, 0.03606234863400459, -0.007303166668862104, 0.012332132086157799, -0.013279715552926064, 0.002155754016712308, 0.008866680786013603, -0.00109226000495255, 0.007228713948279619, -0.013428621925413609, 0.012555491179227829, -0.018342522904276848, -0.009942865930497646, -0.012257678434252739, -0.00992932915687561, 0.004846216179430485, -0.011262714862823486, 0.011817729100584984, -0.006111918017268181, 0.01868094503879547, 0.02161845751106739, 0.004751457832753658, 0.004294586833566427, 0.01616307906806469, 0.006589094642549753, -0.013970098458230495, 0.014552186243236065, 0.0015948180807754397, -0.0015948180807754397, -0.014971830882132053, 0.0031033381819725037, -0.0037260365206748247, -0.009502915665507317, -0.01838313415646553, 0.003841100260615349, 0.010545258410274982, -0.002666772808879614, 0.0029053608886897564, -0.054147668182849884, -0.004037385806441307, 0.002260665176436305, 0.010924291796982288, 0.005570441484451294, -0.026654189452528954, -0.008751616813242435, 0.022877389565110207, 0.014173152856528759, 0.0006886906921863556, -0.028156787157058716, -0.01866740919649601, -0.01043696328997612, 0.025841975584626198, 0.007594210561364889, -0.05127784237265587, -0.006778611335903406, 0.046539921313524246, 0.018721556290984154, -0.028102640062570572, -0.01942547596991062, -0.005211713258177042, -0.051088325679302216, -0.03192004933953285, -0.011865108273923397, 0.009922560304403305, 0.017828119918704033, 0.013462464325129986, -0.043859612196683884, 0.03847191855311394, -0.028617043048143387, 0.021063443273305893, -0.04905778914690018, 0.005956243723630905, 0.014863534830510616, 0.03026854619383812, -0.007736348081380129, -0.0024383373092859983, 0.004802221432328224, -0.030620506033301353, -0.007546831388026476, 0.0022082095965743065, 0.0063048191368579865, 0.03392351418733597, -0.035926979035139084, -0.010206835344433784, -0.011296557262539864, 0.006399577483534813, 0.0020829930435866117, 0.008656858466565609, -0.00977365393191576, -0.02409571222960949, -0.0029019766952842474, -0.01750323362648487, 0.0028258315287530422, -0.026112712919712067, -0.008304898627102375, 0.015905877575278282, -0.02573367953300476, 0.02354069985449314, 0.024204008281230927, -0.014227299951016903, -0.007804032880812883, -0.019452549517154694, 0.028292156755924225, -0.015553917735815048, -0.01762506552040577, 0.007025660015642643, 0.0213206447660923, -0.0033723844680935144, -0.006023928057402372, 0.004599167499691248, -0.017584456130862236, 0.010870144702494144, 0.0049612801522016525, -1.8097694919561036e-05, 0.0071068815886974335, -0.014633407816290855, 0.012880376540124416, -0.021415403112769127, -0.006172834429889917, -0.022755557671189308, 0.0020322296768426895, -0.03340911120176315, 0.021063443273305893, 0.004287818446755409, -0.03654967620968819, -0.01138454768806696, 0.026505284011363983, 0.011621443554759026, 0.014660481363534927, -0.04559233784675598, -0.02791312336921692, 0.02557123638689518, -0.01191248744726181, -0.010829533450305462, 0.007824338041245937, -0.02364899404346943, 0.020765630528330803, 0.023418866097927094, -0.04134174436330795, -0.005407998338341713, 0.18745923042297363, 0.0011057968949899077, -0.024921463802456856, 0.020616725087165833, 0.026572968810796738, 0.02354069985449314, 0.015093662776052952, -5.086258624942275e-06, -0.019614992663264275, -0.015851730480790138, 0.003463758621364832, 0.011959866620600224, -0.011431926861405373, 0.008995281532406807, 0.013692592270672321, -0.011939560994505882, -0.01822069101035595, -0.02099575847387314, -0.015418549068272114, 0.011641749180853367, 0.0017868730938062072, -0.008724543265998363, 0.009117113426327705, -0.015053052455186844, 0.03162223845720291, -0.014362669549882412, -0.005529830697923899, -0.008778691291809082, 0.03178468346595764, -0.010112076997756958, -0.026776023209095, 0.007404693868011236, -0.023161664605140686, 0.001742878113873303, -0.0132932523265481, 0.011716201901435852, 0.012900682166218758, -0.006622936576604843, 0.008826070465147495, 0.013509843498468399, 0.0241092499345541, -0.01263671275228262, -0.02454243041574955, 0.003654967760667205, -0.007073039188981056, 0.03765970468521118, -0.0072693247348070145, -0.008433499373495579, -0.023161664605140686, 0.03281348571181297, -0.04058367758989334, -0.015973562374711037, 0.04789361357688904, 0.019926343113183975, -0.00690721208229661, 0.008338741026818752, -0.007621284574270248, 0.0037361891008913517, 0.01381442416459322, 0.039609018713235855, -0.023324107751250267, 0.046648215502500534, -0.01359783299267292, 0.000941661826800555, -0.02233591303229332, -0.017286643385887146, -0.04228932783007622, 0.029375109821558, -0.001502597820945084, -0.016582723706960678, 0.0006239672657102346, -0.018491428345441818, 0.0026583122089505196, -0.013509843498468399, -0.01953377202153206, -0.004619473125785589, 0.02379790134727955, 0.019141200929880142, 0.00404753815382719, 0.02471841126680374, -0.009320167824625969, 6.858352571725845e-05, -0.014254373498260975, -0.004311508033424616, -0.035331353545188904, 0.005834411364048719, 0.014349132776260376, 0.019290106371045113, -0.004267513286322355, 0.006250671576708555, -0.007519757375121117, 0.0018850157503038645, -0.016366133466362953, 0.0051237232983112335, -0.013184957206249237, -0.008047697134315968, -0.02247128263115883, 0.016352595761418343, -0.024867316707968712, -0.02012939564883709, -0.017394939437508583, 0.010233909823000431, 0.010998745448887348, 0.03175760805606842, -0.01551330741494894, -0.0015372862108051777, 0.002216670196503401, 0.0027479941491037607, 0.026505284011363983, -0.014877072535455227, 0.01242012158036232, -0.027669459581375122, -0.008318435400724411, -0.013421853072941303, -0.010227140970528126, -0.01147253718227148, 0.006582326255738735, 0.024623652920126915, -0.021415403112769127, -0.009807496331632137, -0.0023841895163059235, -0.022403597831726074, 0.009340472519397736, 0.004206596873700619, 0.016691019758582115, 0.0005080574192106724, -0.050167813897132874, 0.0024231080897152424, 0.015838192775845528, 0.021875659003853798, 0.02692492865025997, -0.042099811136722565, 0.0338422916829586, 0.01440327987074852, -0.02746640518307686, -0.029348036274313927, -0.024488283321261406, -0.00566519983112812, -0.033165447413921356, 5.594554022536613e-05, 0.022850316017866135, 0.009651822037994862, -0.005509525537490845, -0.026342840865254402, 0.057234086096286774, -0.007722811307758093, 0.014606333337724209, 0.003979853820055723, -0.0071068815886974335, -0.028562895953655243, -0.02588258497416973, 0.008413193747401237, 0.014078393578529358, -0.029050225391983986, -0.024190470576286316, -0.05227957293391228, -0.021862121298909187, -0.015946488827466965, 0.01942547596991062, -0.03178468346595764, -0.015540380962193012, -0.018911072984337807, 0.019614992663264275, -0.003651583334431052, -0.024447672069072723, -0.01571636088192463, -0.168074369430542, 0.00042429775930941105, -0.0023554235231131315, -0.0013071586145088077, 0.015161347575485706, 0.0005000198725610971, 0.05111540108919144, -0.015391474589705467, 0.0023554235231131315, -0.0049578957259655, 0.027425793930888176, 0.0014103775611147285, -0.037388965487480164, -0.010477573610842228, 0.0073437774553895, 0.004426572006195784, -0.01972328871488571, 0.036224789917469025, 0.022850316017866135, 0.018626797944307327, 0.030024882405996323, 0.0008650936069898307, 0.018153006210923195, 0.034167177975177765, -0.009915791451931, -0.013130810111761093, -0.0047853002324700356, -0.004352118819952011, -0.03208249434828758, -0.00800708681344986, -0.018870463594794273, -0.0032691655214875937, -0.006078076083213091, -0.013651981018483639, 0.01822069101035595, 0.0022268230095505714, 0.0009441999718546867, -0.029618775472044945, 0.006111918017268181, 0.005235402844846249, 0.006193139590322971, 0.023730216547846794, 0.009577369317412376, 0.005604283884167671, -0.013198493979871273, 0.03229908645153046, 0.011946329846978188, -0.008061233907938004, 0.024515356868505478, -0.033436186611652374, 0.017882267013192177, -0.023716678842902184, -0.0006819221889600158, -0.017381401732563972, 0.021686142310500145, -0.0019679293036460876, -0.0051372600719332695, -0.002187904203310609, -0.01359783299267292, 0.006182986777275801, 0.027019686996936798, -0.01854557730257511, -0.004643162712454796, 0.001538132200948894, 0.01007823459804058, 0.0013020822079852223, 0.0019002447370439768, 0.026234544813632965, -0.05390400439500809, 0.0015931259840726852, -0.035223059356212616, 0.03178468346595764, 0.051088325679302216, -0.025760753080248833, 1.9247803720645607e-05, 0.04250591993331909, -0.0024180319160223007, 0.010849839076399803, -0.006771842949092388, -0.027710068970918655, 0.0024704874958842993, 0.020481355488300323, -0.002526327269151807, 0.013421853072941303, -0.002191288396716118, 0.0021608304232358932, 0.0010093464516103268, -0.0021371408365666866, 0.0009382775751873851, -0.027750680223107338, 0.00339945824816823, -0.015093662776052952, -0.00992932915687561, 0.004433340393006802, 0.04339935630559921, 0.0409085638821125, -0.005658431444317102, -0.014525112695991993, 0.02997073531150818, -0.024325840175151825, -0.010964903049170971, -0.004365655593574047, -0.028292156755924225, 0.019344255328178406, 0.015174884349107742, 0.047135546803474426, -0.024149861186742783, 0.011709433048963547, 0.013340632431209087, -0.007688968908041716, -0.015053052455186844, -0.0030390380416065454, 0.010200067423284054, 0.03072880208492279, -0.0030864172149449587, 0.007790496107190847, -0.018694482743740082, -0.003030577441677451, -0.0016938067274168134, 0.0053267767652869225, 0.025056833401322365, 0.019168274477124214, -0.007045965641736984, 0.017110662534832954, 0.02339179255068302, 0.012508112005889416, -0.10266397893428802, -0.03562916815280914, -0.011553758755326271, -0.006457109469920397, -0.024434136226773262, 0.004358887206763029, -0.007479146588593721, 0.009590906091034412, -0.004419803619384766, 0.02103636972606182, 0.00019258380052633584, -0.01049787923693657, -0.001271624118089676, 0.0016836540307849646, -0.010924291796982288, 0.019669141620397568, -0.007939402014017105, -0.0015296716010197997, -0.007952938787639141, 0.029727069661021233, -0.0018850157503038645, -0.005749805830419064, 0.008798995986580849, -0.007804032880812883, -0.003171022981405258, 0.015946488827466965, -0.024082176387310028, -0.004903748165816069, -0.002189596416428685, 0.020643798634409904, 0.00528955040499568, -0.007079807575792074, 0.025476478040218353, -0.03587283194065094, 0.017422012984752655, 0.019019369035959244, -0.03246152773499489, 0.0005994316306896508, 0.019831582903862, 0.00011506379814818501, 0.0067549217492341995, -0.018274838104844093, -0.021686142310500145, 0.005343697965145111, 0.01720542274415493, -0.013706129044294357, -0.024488283321261406, 0.029131446033716202, 0.004193060100078583, -0.013462464325129986, -0.045781854540109634, -0.03102661482989788, -0.005377540364861488, 0.0014213763643056154, 0.017408475279808044, -0.016081858426332474, -0.00473453663289547, 0.009658590890467167, 0.002397726522758603, 0.0031541017815470695, 0.0013054665178060532, -0.00948937889188528, -0.002385881729424, -0.0019814663100987673, 0.03465450927615166, 0.03511476516723633, -0.009428462944924831, -0.002023769076913595, 0.019181812182068825, -0.02515159174799919, -0.010166225023567677, 0.0015009057242423296, -0.00031346423202194273, 0.01793641597032547, -0.015364401042461395, -0.01470109261572361, -0.008812532760202885, -0.011587601155042648, 0.027804827317595482, -0.011777117848396301, -0.015120736323297024, -0.017367864027619362, 0.00720163993537426, -0.002472179476171732, -0.008568868972361088, 0.004687157459557056, 0.005793800577521324, -0.0036820415407419205, 0.019479623064398766, -0.03630601242184639, 0.006964744068682194, 0.00890052318572998, 0.035493798553943634, -0.02159138396382332, -0.023459477350115776, -0.005424919538199902, 0.0059663960710167885, -0.005702426191419363, 0.02321581356227398, 0.010599406436085701, -0.04172077775001526, -0.0064537255093455315, -0.041802000254392624, 0.0405295304954052, -0.00031579090864397585, -0.02647821046411991, 0.011134114116430283, 0.011425158008933067, 0.0334632582962513, -0.020251227542757988, 0.02188919484615326, 0.0007821799954399467, 0.00247894786298275, 0.0071204183623194695, -0.012244141660630703, -0.003912169020622969, 0.0039020164404064417, -0.027412258088588715, -0.0013900721678510308, -0.0049578957259655, 0.04237055033445358, -0.006321740336716175, -0.0029595084488391876, -0.004206596873700619, 0.01521549466997385, -0.0029273582622408867, -0.0009357394301332533, -0.007249019108712673, -0.031541015952825546, 0.026965539902448654, -0.027723606675863266, -0.01529671624302864, 0.004108454566448927, -0.020386597141623497, -0.0032251705415546894, 0.024474745616316795, 0.011905718594789505, -0.018843388184905052, 0.00407461216673255, -0.006744768936187029, 0.020603187382221222, 0.014795850962400436, -0.022078711539506912, -0.01850496605038643, -0.006991817615926266, -0.008812532760202885, -0.0005985855823382735, -0.03560209274291992, -0.022146396338939667, 0.024285228922963142, 0.01037604734301567, 0.023026296868920326, 0.03175760805606842, -0.005766726564615965, -0.00761451618745923, -0.02574721723794937, 0.02688431739807129, -0.02923974208533764, 0.005641510244458914, -0.027263350784778595, -0.010565564036369324, -0.04025879129767418, 0.029916586354374886, -0.010044392198324203, 0.03070172853767872, -0.004304739646613598, -0.006913980469107628, -0.015608065761625767, -0.017449086531996727, 0.014010709710419178, 0.006426651496440172, -0.014579259790480137, -0.0056144362315535545, 0.00286813429556787, 0.006900443695485592, 0.027710068970918655, 0.030918318778276443, -0.02631576731801033, -0.03955487161874771, 0.003712499514222145, -0.00846057292073965, 0.018735093995928764, 0.02956462651491165, 0.006721079349517822, 0.00808830838650465, -0.011709433048963547, 0.04938267543911934, 0.01233890000730753, -0.022295303642749786, -0.023838510736823082, -0.005682121030986309, 0.012102004140615463, 0.016975294798612595, 0.009502915665507317, -0.02218700759112835, -0.013746739365160465, 0.02191626839339733, 0.007763422094285488, 0.0009382775751873851, 0.004382576793432236, 0.019208885729312897, 0.015283179469406605, 0.012832997366786003, 0.0016971910372376442, -0.01514781080186367, 0.005580594297498465, -0.025990881025791168, 0.0202647652477026, -0.012345668859779835, -0.013658749870955944, -0.016366133466362953, 0.010667091235518456, 0.005908864550292492, 0.018193617463111877, 0.015256105922162533, 0.013191726058721542, -0.02777775377035141, 0.017611529678106308, 0.01659626141190529, -0.019452549517154694, -0.03229908645153046, 0.020224153995513916, -0.009502915665507317, -0.017435548827052116, 0.024488283321261406, -0.018775703385472298, 0.02176736295223236, 0.010640016756951809, 0.04174785315990448, -0.03449206426739693, 0.02320227585732937, -0.00890052318572998, -0.021956879645586014, 0.020386597141623497, -0.038742657750844955, -0.028996076434850693, 0.012311826460063457, -0.004250592086464167, 0.00881930161267519, 0.02217346988618374, 0.006287897936999798, 0.09031831473112106, 0.002570322249084711, -0.011005513370037079, 0.004687157459557056, 0.0017031134339049459, 0.02850874699652195, 0.02643759921193123, 0.0024992532562464476, 0.007587442174553871, -0.050167813897132874, 0.009699201211333275, 0.005001890938729048, -0.007012123242020607, -0.004524714779108763, 0.015201957896351814, 0.005502756685018539, -0.0071204183623194695, 0.027994345873594284, -0.028454599902033806, -0.03194712474942207, 0.033598627895116806, -0.0007910635904408991, 0.002462026895955205, 0.006189755629748106, -0.03863436356186867, -0.012670554220676422, -0.0018224074738100171, -0.0013570759911090136, -0.0027446099556982517, -0.04540282115340233, -0.0014188381610438228, 0.011662053875625134, -0.030810024589300156, -0.01286007184535265, -0.0037192681338638067, -0.003367308061569929, -0.021131128072738647, 0.004646546673029661, 0.05098003149032593, 0.006497720256447792, -0.0347086563706398, 0.004643162712454796, -0.022850316017866135, -0.0323532335460186, -0.008785459212958813, -0.015391474589705467, -0.02896900288760662, -0.01007146667689085, -0.06735970079898834], "4c2e44e7-e40e-4937-96de-44c0628f61f4": [-0.0036298015620559454, 0.009822209365665913, 0.01597781851887703, -0.012960231862962246, -0.025010503828525543, 0.0019085730891674757, -0.01877460442483425, -0.010277189314365387, -0.012679214589297771, -0.010437770746648312, 0.022053135558962822, 0.008109345100820065, -0.028984885662794113, 0.01613839901983738, -0.001604974502697587, 0.001910245860926807, 0.02677689678966999, -0.0028436235152184963, 0.007513856515288353, -9.80109180090949e-05, -0.011622056365013123, 0.013033831492066383, -0.006516915746033192, -0.014358625747263432, -0.0009107958758249879, -0.0063161891885101795, 0.01109347678720951, -0.013769827783107758, 0.006720987614244223, -0.010779005475342274, 0.021062886342406273, -0.014813604764640331, -0.023645564913749695, -0.01562989316880703, -0.011153694242238998, -0.01305390428751707, -0.02693747729063034, -0.024475233629345894, 0.009173194877803326, 0.011541765183210373, 0.050288643687963486, -0.008718214929103851, -0.004359107464551926, -0.02202637307345867, 0.0019453729037195444, 0.03366849943995476, 0.025532392784953117, -0.059789691120386124, -0.0005043249693699181, 0.021785501390695572, -0.003907473292201757, 0.028208743780851364, -0.007112403865903616, 0.00208086334168911, -0.02315044030547142, 0.017824500799179077, 0.034310825169086456, 0.0037201284430921078, -0.012224235571920872, -0.010812459513545036, 0.029118703678250313, 0.014144517481327057, -0.0041851443238556385, 0.007627601735293865, -0.018333006650209427, 0.01109347678720951, 0.021450957283377647, 0.0184802059084177, -0.011066713370382786, -0.012358052656054497, 0.00832345336675644, 0.012538706883788109, -0.017302611842751503, -6.847696204204112e-05, 0.014412152580916882, -0.019082386046648026, -0.010999804362654686, 0.013863500207662582, -0.012665833346545696, 0.003409002674743533, 0.010243735276162624, 0.0027834055945277214, -0.02094244956970215, 0.02021983452141285, 0.04517681151628494, -0.023832909762859344, 0.010952968150377274, 0.034391116350889206, 0.010805768892168999, -0.010002863593399525, 0.042045481503009796, 0.001340684830211103, 0.020179688930511475, 0.01233797986060381, -0.0023050077725201845, 0.013508884236216545, -0.02266869693994522, 0.021785501390695572, -0.021036121994256973, -0.012525324709713459, -0.008637924678623676, 0.026549406349658966, -0.013375066220760345, -0.005563465412706137, 0.011167076416313648, -0.0007251239730976522, 0.01537563931196928, -0.006931750103831291, 0.02371247299015522, 0.0030744588002562523, -0.002632860792800784, 0.050342168658971786, 0.017409665510058403, -0.003924200311303139, 0.013756446540355682, -0.012886632233858109, 0.029841318726539612, -0.010765623301267624, -0.029038412496447563, 0.00047630691551603377, 0.0032551123294979334, 0.006710951216518879, 0.0374956838786602, -0.026870569214224815, 0.027834054082632065, -0.004693651106208563, -0.006757787428796291, -0.035515181720256805, -0.051626820117235184, -0.021424192935228348, 0.03332057595252991, 0.010464534163475037, 0.002527479315176606, 0.013903645798563957, -0.0009651592117734253, 0.013475429266691208, -0.00025007157819345593, 0.01324124913662672, -0.016419416293501854, -0.02277575060725212, 0.019912054762244225, 0.004456125199794769, -0.006590515375137329, 0.012786269187927246, 0.01316095795482397, 0.025358429178595543, 0.026790278032422066, -0.006945131812244654, -0.0023819527123123407, -0.029787791892886162, -0.021785501390695572, -0.013729683123528957, 0.0019855182617902756, -0.003971036523580551, 0.007058877032250166, -0.0200324896723032, -0.017409665510058403, 0.006219171453267336, -0.0091865761205554, 0.028449615463614464, 0.014398770406842232, 0.009260175749659538, -0.007754728198051453, -0.017034977674484253, -0.003659910522401333, 0.04544444754719734, 0.009139739908277988, -0.006008408963680267, -0.015991199761629105, 0.009989481419324875, 0.00229664403013885, 0.029868081212043762, 0.003760273801162839, -0.003445802489295602, 0.025987371802330017, 0.010792386718094349, 0.012565470300614834, -0.011775946244597435, -0.017516721040010452, 0.004228635225445032, -0.009039376862347126, 0.013863500207662582, 0.02080863155424595, 0.035943400114774704, -0.012893322855234146, -0.013729683123528957, -0.0063161891885101795, 0.005724046844989061, 0.013495502062141895, 0.0012169035617262125, 0.01656661555171013, 0.02438156120479107, -0.010993113741278648, -0.014679787680506706, -0.5853716135025024, -0.006098735611885786, -0.003270166926085949, 0.00768781965598464, -0.0005971608916297555, -0.018038608133792877, -0.010518060997128487, -0.003044349839910865, -0.022173572331666946, 0.027619946748018265, -0.017275849357247353, -0.0035628927871584892, 0.010538133792579174, -0.014599497430026531, 0.011374494060873985, -0.0183731522411108, 0.011140312999486923, -0.015268584713339806, -0.023137059062719345, 0.005252339877188206, 0.003683328628540039, 0.024020254611968994, -0.03380231931805611, 0.021357284858822823, -0.005155322141945362, -0.003469220595434308, 0.012813032604753971, -0.023351166397333145, 0.01128082163631916, 0.005734082777053118, -0.009929263964295387, -0.001345702912658453, 0.00010924950038315728, -0.009641556069254875, 0.04579237475991249, 0.014291716739535332, -0.023645564913749695, 0.013983936049044132, -0.018065372481942177, 0.03190210834145546, -0.03350792080163956, -0.008249853737652302, 0.049699846655130386, -0.011648819781839848, 0.006446661427617073, 0.0016417743172496557, 0.005456411279737949, 0.027700237929821014, 0.004690305795520544, -0.028235508129000664, -0.01133434846997261, -0.01683424971997738, 0.010712096467614174, -0.00777480099350214, 0.01651308871805668, 0.007272984832525253, 0.0097352284938097, -0.015268584713339806, -0.005279103294014931, -0.044213324785232544, 0.001910245860926807, -0.008611160330474377, 0.01608487218618393, 0.0019637728109955788, -0.021504484117031097, 0.019055621698498726, -0.009233412332832813, 0.0010011227568611503, 0.0003240894293412566, -0.0196845643222332, 0.0376027375459671, 0.024956976994872093, -0.013702919706702232, 0.018185807392001152, 0.01589752733707428, 0.03176829218864441, 0.04587266221642494, -0.006971895694732666, 0.009989481419324875, 0.013254630379378796, 0.016901159659028053, -0.0027499510906636715, -0.029145468026399612, -0.021731974557042122, 0.04560502991080284, -0.025064030662178993, 0.01233797986060381, 0.005911391228437424, 0.023083530366420746, 0.012879941612482071, 0.007955454289913177, 0.015389020554721355, -0.00831007119268179, -0.01587076485157013, -0.027486128732562065, -0.0098422821611166, -0.017878027632832527, -0.0024254433810710907, 0.01164212916046381, -0.05470462515950203, -0.017891408875584602, -0.0038338734302669764, 0.02320396713912487, -0.0005754155572503805, -0.0041316174902021885, 0.030055426061153412, 0.004904414061456919, 0.012672523967921734, 0.017342757433652878, -0.022682078182697296, -0.0200592540204525, -0.043999217450618744, -0.006192408036440611, 0.00753392931073904, -0.014064227230846882, -0.020768487825989723, 0.023404693230986595, 0.008557633496820927, -0.0036364924162626266, -0.02443508803844452, -0.00961479265242815, 0.006018445361405611, -0.016767341643571854, -0.005804337095469236, 0.021290374919772148, -0.011300893500447273, 0.006978586316108704, -0.019537365064024925, 0.0204071793705225, 0.007272984832525253, -0.004931177478283644, 0.00486761424690485, 0.008945704437792301, -0.0191225316375494, 0.012304525822401047, -0.021464338526129723, 0.013783209957182407, 0.002902168547734618, 0.013743064366281033, -0.023190585896372795, -0.01501433178782463, -0.0014452297473326325, -0.011909764260053635, -0.016071490943431854, -0.021357284858822823, -0.0017714101122692227, 0.002356861950829625, -0.009741919115185738, -0.010772314853966236, 0.028556669130921364, -0.034524932503700256, 0.0016886105295270681, -0.006526952143758535, -0.009501047432422638, -0.013515574857592583, -0.009380611591041088, 0.029680738225579262, -0.014184662140905857, -0.007313130423426628, -0.017637155950069427, -0.007982217706739902, 0.02677689678966999, -0.014438915997743607, -0.019671183079481125, -0.02478301338851452, -0.029734265059232712, -0.017034977674484253, 0.01659337803721428, -0.0026060971431434155, -0.04691644012928009, -0.021196702495217323, -0.011240676045417786, 0.017369519919157028, 0.0018968640360981226, -0.02104950323700905, 0.017222320660948753, -0.016713814809918404, -0.0025960609782487154, -0.03093862347304821, -0.006041863467544317, -0.004369143862277269, 0.020634669810533524, -1.0928217761829728e-06, -0.021343903616070747, 0.024421706795692444, -0.00808258168399334, 0.01672719605267048, -0.0008363598026335239, -0.00794876366853714, 0.02373923733830452, 0.025987371802330017, 0.03040335141122341, -0.01952398382127285, 0.03688012436032295, 0.008142799139022827, 0.008142799139022827, 0.022922949865460396, 0.00762091064825654, 0.012424961663782597, 0.04753199964761734, 0.010531443171203136, 0.01576370932161808, 0.017837882041931152, -0.011488238349556923, 0.00832345336675644, -0.0020557723473757505, 0.017008213326334953, -0.029198994860053062, -0.010799078270792961, -0.02376599982380867, 0.009728537872433662, 0.002482315991073847, -0.01821257174015045, 0.0057708825916051865, 0.026576168835163116, -0.002979113720357418, -0.013542338274419308, 0.021464338526129723, 0.012625687755644321, -0.0027566419448703527, 0.0017479920061305165, 0.010417697951197624, 0.029814554378390312, -0.0006933422992005944, -0.024689342826604843, 0.00608869967982173, 0.0060920449905097485, -0.011227293871343136, -0.020607905462384224, -0.03736186772584915, 0.017717447131872177, -0.017048358917236328, 0.01882813312113285, -0.0026730059180408716, 0.012271071784198284, -0.01357579231262207, 0.05189445614814758, -0.01906900480389595, 0.0394761823117733, 0.008597779087722301, -0.034417878836393356, 0.018025226891040802, -0.002560933819040656, -0.03225003555417061, 0.014907277189195156, -0.00667415140196681, 0.034685514867305756, 0.0013858482707291842, -0.0035930017475038767, 0.014800223521888256, 0.0023050077725201845, -0.010250425897538662, 0.0019788274075835943, 0.01925634779036045, 0.00794876366853714, 0.0011993399821221828, -0.0044795433059334755, 0.025130940601229668, 0.010959658771753311, 0.020554378628730774, 0.01869431510567665, 0.0031396946869790554, 0.01831962540745735, -0.01592429168522358, 0.028422852978110313, 0.00779487332329154, -0.012986995279788971, -0.024796396493911743, 0.002681369660422206, -0.014144517481327057, 0.006115463096648455, -0.036157507449388504, -0.024609051644802094, 0.00010140863014385104, 0.010906131938099861, -0.0021762081887573004, 0.01228445302695036, 0.03139360249042511, 0.012170707806944847, -0.02277575060725212, -0.006426589097827673, -0.003827182576060295, 0.011019877158105373, 0.018145661801099777, 0.00655371556058526, 0.0025810063816607, 0.021825645118951797, -0.0006879059365019202, -0.013943791389465332, 0.005680555943399668, -0.025251375511288643, 0.012572160921990871, 0.012719360180199146, 0.015670036897063255, -0.014372006990015507, -0.019537365064024925, 0.026281770318746567, -0.006048554088920355, 0.022053135558962822, 0.01810551807284355, -0.0200592540204525, 0.028262270614504814, -0.024047017097473145, 0.006771169137209654, 0.058826204389333725, 0.002592715434730053, 0.0026178061962127686, -0.026081044226884842, -0.016071490943431854, 0.012371434830129147, 0.01204358134418726, -0.00825654435902834, -0.007460329681634903, 0.017208939418196678, 0.028610195964574814, -0.005894664209336042, 0.01635250635445118, 0.007748037576675415, 0.0391550213098526, 0.00307111325673759, -0.011608674190938473, -0.0030861678533256054, 0.0074670203030109406, 0.014131135307252407, 0.03896767646074295, 0.01987190917134285, -0.003368857316672802, 0.013448665849864483, -0.010658569633960724, 0.004543106537312269, -0.04148344695568085, 0.00022184444242157042, 0.020527616143226624, -0.007259603124111891, 0.003193221753463149, -0.01128082163631916, 0.014693168923258781, 0.0012729396112263203, 0.0204071793705225, 0.011688964441418648, -0.0031798400450497866, -0.0032684942707419395, 0.043704818934202194, -0.010558206588029861, 0.013268012553453445, 0.02347160130739212, 0.015201675705611706, 0.027994636446237564, -0.008029053919017315, 0.004456125199794769, 0.011361111886799335, 0.007875164039433002, 0.025666210800409317, -0.025171084329485893, -0.01525520347058773, 0.021999608725309372, -0.00028498959727585316, 0.012679214589297771, -0.00200391816906631, 0.03310646861791611, 0.03059069626033306, 0.03131331130862236, 0.01561651099473238, -0.011013186536729336, 0.013569101691246033, 0.021665064617991447, 0.0095612658187747, -0.023806145414710045, -0.007299748715013266, 0.004860923159867525, -0.034471407532691956, 0.015455929562449455, 0.0017965008737519383, 0.001717883045785129, 0.009521120227873325, -0.0203001257032156, -0.03291912376880646, -0.003743546549230814, 0.028931358829140663, 0.008724905550479889, 0.0056839012540876865, -0.009220031090080738, -0.00829668901860714, -0.011060022749006748, -0.011307585053145885, -0.02048747055232525, 0.022387679666280746, 0.003066095057874918, -0.004476197995245457, -0.012993685901165009, -0.004001145251095295, 0.0013013759162276983, -0.01987190917134285, -0.03222327306866646, 0.025960609316825867, -0.015442547388374805, -0.012926777824759483, -0.016687050461769104, 0.0021879172418266535, 0.013997318223118782, 0.021062886342406273, 0.025224613025784492, 0.021544629707932472, 0.021839028224349022, 0.0021929354406893253, -0.074027881026268, -0.016820868477225304, -0.01579047366976738, 0.014171280898153782, 0.0021377357188612223, -0.006346298381686211, -0.008999231271445751, -0.0026546060107648373, 0.013957172632217407, -0.013957172632217407, 0.006767823826521635, -0.008557633496820927, -0.033989664167165756, 0.012445034459233284, 0.014813604764640331, -0.0006251789745874703, 0.027673473581671715, -0.002938968362286687, 0.0035160568077117205, 0.002979113720357418, 0.004322307649999857, -0.015910908579826355, -0.004101508762687445, -0.004021218046545982, -0.01856049709022045, 0.023752618581056595, 0.007594147231429815, -0.0029055140912532806, -0.03364173695445061, 0.03125978633761406, -0.013254630379378796, 0.015094622038304806, 0.004951250273734331, 0.015054476447403431, 0.0094943568110466, 0.006526952143758535, 0.034284062683582306, 0.00412827217951417, -0.023832909762859344, -0.0025040612090379, -0.026763513684272766, 0.018680933862924576, 0.010952968150377274, -0.026188097894191742, 0.006266007665544748, 0.0007698691915720701, -0.014974186196923256, -0.005322593729943037, 0.021183321252465248, 0.009233412332832813, 0.011648819781839848, 0.02427450753748417, -0.03056393377482891, -0.011220603249967098, 0.0037100922781974077, -0.01675396040081978, 0.005974954459816217, -0.00290718674659729, 0.018895041197538376, 0.004519688431173563, 0.006326225586235523, -0.012204162776470184, -0.012344671413302422, -0.005188776180148125, -0.03077804110944271, -0.0074670203030109406, 0.014479061588644981, 0.002868714276701212, -0.003659910522401333, -0.0201930720359087, 0.003330384846776724, -0.0037803463637828827, 0.005118522327393293, -0.02414068952202797, -0.028128454461693764, -0.008604469709098339, 0.04994071647524834, 0.034257300198078156, 0.01856049709022045, 0.017958318814635277, 0.015389020554721355, 0.029787791892886162, 0.014090990647673607, -0.03423053398728371, 0.017918173223733902, -0.014438915997743607, 0.0067812055349349976, -0.0371745228767395, -0.007272984832525253, 0.0003506438515614718, -0.0074469479732215405, 0.0036532196681946516, -0.006871532183140516, 0.017770973965525627, 0.026040898635983467, -0.006834732368588448, 0.01893518678843975, -0.0012202489888295531, -0.012886632233858109, -0.0012353034690022469, 0.01589752733707428, -0.025519011542201042, 0.0392620749771595, -0.017958318814635277, 0.003138022031635046, 0.017329376190900803, 0.0033839119132608175, 0.0025910427793860435, -0.00584782799705863, 8.384507236769423e-05, -0.013341612182557583, 0.0021762081887573004, 0.008129417896270752, 0.02478301338851452, -0.0004579070082399994, -0.022735605016350746, -0.014117754064500332, 0.0001733355748001486, -0.0187210775911808, -0.017463192343711853, 0.03291912376880646, -0.0038238370325416327, 0.00825654435902834, -0.04536415636539459, -0.02349836565554142, -0.00913304928690195, -0.03134007379412651, 0.03024277091026306, -0.014532588422298431, -0.012398198246955872, -0.01524182129651308, -0.013917027041316032, 0.0074469479732215405, 0.010283879935741425, 0.025237994268536568, 0.005479829385876656, 0.00813610851764679, -0.023618800565600395, -0.051278892904520035, 0.028449615463614464, -0.017797736451029778, 0.020982595160603523, 0.021116413176059723, 0.042553987354040146, 0.011655510403215885, 0.01635250635445118, -0.010538133792579174, 0.00036130743683315814, -0.0035495110787451267, -0.009226721711456776, 0.0050783767364919186, 0.0005315066664479673, -0.0018466825131326914, -0.016713814809918404, -0.022039754316210747, 0.0047906688414514065, -0.04619382694363594, -0.017008213326334953, 0.006115463096648455, -0.004436052404344082, 0.03305293992161751, 0.003726819297298789, 0.008049126714468002, -0.03305293992161751, 0.01205696351826191, -0.0201930720359087, -0.01144140213727951, -0.02701776847243309, -0.028208743780851364, -0.021384047344326973, 0.017222320660948753, 0.015937672927975655, 0.012866559438407421, -0.02282927744090557, 0.00989580899477005, -0.006158953532576561, -0.010999804362654686, -0.026870569214224815, 0.004054672550410032, 0.03182181715965271, 0.05502578616142273, -0.02094244956970215, 0.014706551097333431, 0.03364173695445061, -0.00404129084199667, -0.017182176932692528, 0.00992257334291935, -0.0009509411174803972, 0.02430127188563347, -0.016472943127155304, 0.004717069212347269, -0.017423048615455627, -0.0024990432430058718, -0.015094622038304806, 0.005530011374503374, -0.009507738053798676, 0.002644569845870137, -0.017115266993641853, 0.0001996809005504474, 0.040814358741045, 0.013682846911251545, -0.044025979936122894, 0.0039275456219911575, -0.011474857106804848, 0.011956600472331047, -0.003122967667877674, -0.034819331020116806, 0.007239530794322491, -0.028476379811763763, -0.0395832359790802, -0.0007870146073400974, 0.011688964441418648, 0.0369068868458271, 0.00421525351703167, -0.027566419914364815, 0.01976485550403595, 0.051278892904520035, -0.01150831114500761, 0.019697947427630424, -0.03998469188809395, -0.010946277529001236, -0.03029629774391651, -0.006978586316108704, -0.00027537147980183363, -0.0009409047779627144, 0.014853750355541706, -0.00824316218495369, 0.02403363585472107, -0.028610195964574814, -0.0011324312072247267, 0.011073403991758823, -0.0007757237181067467, -0.009159812703728676, 0.003365512005984783, 0.0187210775911808, 0.025813410058617592, 0.0007213603239506483, -0.0016417743172496557, 0.029466629028320312, 0.00617568101733923, -0.017784355208277702, 0.017837882041931152, 0.019724709913134575, 0.00902599561959505, 0.005098449531942606, 0.015268584713339806, 0.0001778310106601566, -0.020500851795077324, -0.022494733333587646, -0.0015096295392140746, 0.0073599666357040405, -0.007888546213507652, 0.00021661719074472785, -0.04533739387989044, -0.01541578397154808, 0.0020457361824810505, 0.02293633110821247, -0.002376934513449669, -0.01997896283864975, -0.002064136089757085, 0.043035730719566345, 0.02392658218741417, 0.020848777145147324, -0.02339131198823452, -0.014318480156362057, -0.010384243912994862, 0.02712482213973999, -0.011822782456874847, -0.03326704725623131, -0.017717447131872177, 0.03321352228522301, 0.01675396040081978, -0.01621869020164013, -0.0070923310704529285, -0.02035365253686905, -0.04862930625677109, -0.028503142297267914, -0.009795445948839188, 0.019296493381261826, 0.029868081212043762, 0.004499615635722876, -0.028636960312724113, 0.04003821685910225, -0.03077804110944271, 0.029653973877429962, -0.05540047585964203, 0.00602179067209363, 0.015228440053761005, 0.043437182903289795, 0.007339893840253353, 0.010832532308995724, 0.0074134934693574905, -0.023993490263819695, 0.0046836151741445065, -0.004717069212347269, 0.011434711515903473, 0.026308534666895866, -0.021263612434267998, -0.005131904035806656, -0.03128654882311821, -0.0064399708062410355, 0.02739245630800724, 0.007640983443707228, -0.0202733613550663, -0.011053331196308136, -0.010959658771753311, -0.010966350324451923, 0.008463961072266102, -0.029065176844596863, -0.02400687150657177, 0.009768682532012463, -0.03896767646074295, 0.02626838907599449, -0.0007468693074770272, 0.0007288875640369952, -0.0032618034165352583, -0.03048364259302616, 0.0198451466858387, -0.008269925601780415, -0.025251375511288643, -0.0008923959103412926, 0.007266294211149216, 0.009527810849249363, -0.022160189226269722, -0.003424057038500905, -0.02363218367099762, 0.02218695357441902, 0.01209710817784071, -0.00584782799705863, -0.010417697951197624, -0.02387305535376072, 0.020822014659643173, -0.0395297110080719, 0.015777092427015305, -0.02021983452141285, -0.009112976491451263, -0.043838635087013245, 0.0195775106549263, 0.00246057054027915, -0.04678262397646904, 0.008403743617236614, 0.027914345264434814, 0.025144321843981743, 0.014840369112789631, -0.04520357400178909, -0.029841318726539612, -0.0033822390250861645, 0.007052185945212841, 0.00014333116996567696, 0.012786269187927246, -0.028181981295347214, -0.0014653024263679981, 0.02653602510690689, -0.03307970240712166, -0.006158953532576561, 0.20682844519615173, -0.022213716059923172, -0.0013615938369184732, 0.0392620749771595, 0.014719933271408081, 0.01587076485157013, 0.011314275674521923, -0.006563751958310604, -0.022575024515390396, -0.02013954520225525, 0.009400684386491776, 0.023592038080096245, -0.0393156036734581, 0.011916454881429672, 0.0004579070082399994, 0.002851987024769187, -0.025478865951299667, -0.03182181715965271, -0.021598156541585922, 0.014800223521888256, -0.016151780262589455, -0.0019420274766162038, -0.002402025507763028, -0.006557060871273279, 0.016526469960808754, -0.021638302132487297, 0.005794300697743893, -0.001266248757019639, 0.029787791892886162, -0.018520351499319077, -0.027834054082632065, 0.0022314079105854034, -0.01240488886833191, 1.4270389328885358e-05, -0.01571018248796463, -0.009447520598769188, -0.0027298785280436277, 0.025987371802330017, 0.02448861487209797, 0.00954788364470005, 0.013890263624489307, -0.03337410092353821, -0.017717447131872177, 0.01587076485157013, -0.003412347985431552, 0.014826986938714981, 0.010745551437139511, -0.017891408875584602, -0.03187534585595131, 0.05620338022708893, -0.02621486224234104, -0.006623969879001379, 0.035301074385643005, 0.0018149007810279727, -0.018078753724694252, -0.008805195800960064, -0.013301466591656208, -0.016044726595282555, 0.003613074542954564, 0.04555150121450424, -0.015469311736524105, 0.03372202813625336, 0.015108004212379456, 0.029225757345557213, -0.019216204062104225, -0.002390316454693675, -0.03008219040930271, 0.028476379811763763, 0.002676351461559534, -0.03085833229124546, -0.018025226891040802, -0.016392651945352554, -0.007139167282730341, -0.018011845648288727, -0.028610195964574814, -0.01925634779036045, 0.029814554378390312, 0.02680365927517414, -0.003639837959781289, 0.01581723615527153, -0.01605810783803463, -0.008477343246340752, -0.0050750314258039, -0.006028481759130955, -0.036318089812994, -0.0014527570456266403, 0.012063654139637947, 0.004720414988696575, -0.00036381653626449406, -0.00985566433519125, 0.005503247492015362, -0.004620051477104425, -0.01624545268714428, -0.009173194877803326, -0.01169565599411726, 0.009327084757387638, -0.00796214584261179, 0.019002094864845276, -0.03340086713433266, -0.005877936724573374, -0.028342561796307564, 0.024689342826604843, 0.002928932197391987, 0.012117180973291397, -0.011943218298256397, -0.0020791904535144567, 0.0050516133196651936, -0.001206030836328864, 0.007554002106189728, 0.0029105322901159525, 0.0008426324930042028, -0.0189619492739439, -0.011515001766383648, -0.004753869026899338, 0.013809973374009132, -0.0009358866373077035, 0.021651683375239372, 0.004265435039997101, 0.005620338022708893, 0.007299748715013266, 0.002945659216493368, -0.013809973374009132, 0.014545969665050507, 0.018252717331051826, 0.0018450097413733602, -0.021022740751504898, -0.041965190321207047, -0.008055818267166615, 0.023458220064640045, -0.007112403865903616, 0.022922949865460396, -0.05462433397769928, 0.01517491228878498, 0.0024956976994872093, -0.009628173895180225, -0.023592038080096245, -0.008985850028693676, 0.001302212243899703, -0.012585542164742947, 0.0011332675348967314, 0.0404396690428257, -0.009715155698359013, -0.026843804866075516, -0.017958318814635277, 0.03698717802762985, -0.008892177604138851, 0.017717447131872177, -0.003409002674743533, -0.004777287133038044, -0.020929068326950073, -0.025492247194051743, 0.0018215917516499758, 0.02634868025779724, -0.011086786165833473, 0.007888546213507652, -0.04691644012928009, -0.02626838907599449, -0.016044726595282555, 0.023484984412789345, -0.009574647061526775, -0.03032306209206581, -0.006252625957131386, 0.008102653548121452, -0.0062894257716834545, -0.03265148773789406, -0.005329284816980362, -0.166362002491951, -0.011187149211764336, 0.007366657257080078, -0.018078753724694252, 0.0021377357188612223, 0.006025135982781649, 0.050690095871686935, -0.021477719768881798, -0.004961286671459675, -0.00038388915709219873, 0.0046233972534537315, -0.009206648916006088, -0.0411890484392643, -0.02381952852010727, -0.002142753917723894, -0.009808828122913837, -0.0007840873440727592, 0.0180519912391901, 0.02424774318933487, 0.019430311396718025, 0.02720511145889759, -0.01324124913662672, 0.016820868477225304, 0.0405467227101326, 0.0029707499779760838, -0.008992540650069714, -0.007600837852805853, -0.029091939330101013, -0.028636960312724113, -0.007554002106189728, -0.015041095204651356, 0.007701201364398003, -0.013448665849864483, -0.014746696688234806, 0.014024081639945507, 0.019724709913134575, 0.010618424043059349, -0.02229400724172592, -0.007661055773496628, 0.013823355548083782, 0.010772314853966236, 0.0385126955807209, 0.0020239907316863537, -0.006423243321478367, -0.005797646474093199, 0.006396479904651642, 0.017851263284683228, -0.024930214509367943, 0.018386533483862877, -0.0194704569876194, 0.004783978220075369, -0.035060204565525055, -0.0036732922308146954, -0.022012989968061447, 0.03273177891969681, -0.0207818690687418, -0.004964631982147694, 0.021731974557042122, -0.00042591625242494047, 0.009092903696000576, 0.017583629116415977, -0.025371812283992767, -0.010471224784851074, 0.02013954520225525, -0.005546738393604755, 0.005928118247538805, -0.00832345336675644, -0.003051040694117546, -0.059522055089473724, 0.005877936724573374, -0.03099215030670166, 0.008109345100820065, 0.04046643525362015, -0.012532015331089497, 0.0003947618242818862, 0.028262270614504814, -0.004707033280283213, 0.006480115931481123, -0.01963103748857975, -0.0378168448805809, -0.007165931165218353, 0.034685514867305756, 0.0035327838268131018, -0.005991681944578886, 0.015857381746172905, 0.019028859212994576, 0.008470652624964714, -0.00817625317722559, 0.012705978006124496, -0.028556669130921364, 0.0075004748068749905, -0.027860818430781364, -0.010725478641688824, 0.00032597125391475856, 0.019216204062104225, 0.026415588334202766, -0.001533047528937459, -0.01592429168522358, 0.017302611842751503, -0.03112596645951271, -0.008196325972676277, -0.010819151066243649, -0.0071525489911437035, -0.0046501606702804565, 0.03147389367222786, 0.017489956691861153, -0.026576168835163116, 0.013983936049044132, 0.02355189248919487, 0.004058017861098051, -0.011702346615493298, 0.013769827783107758, 0.0199254360049963, 0.04051996022462845, -0.008611160330474377, 0.014077608473598957, -0.021691828966140747, -0.021946081891655922, -0.006165644619613886, -0.002179553732275963, 0.01696806773543358, 0.00853756070137024, -0.003984418231993914, 0.009092903696000576, 0.0414031557738781, 0.020259980112314224, -0.10229015350341797, -0.028342561796307564, -0.009701773524284363, 0.0007523056701757014, -0.0206748154014349, 0.014264953322708607, -0.0187210775911808, 0.013850118964910507, 0.0017245738999918103, 0.024421706795692444, -0.007105713244527578, 0.009005922824144363, 0.013087358325719833, -0.0027566419448703527, -0.012197471223771572, 0.013508884236216545, -0.011829473078250885, -0.010886059142649174, -0.003649874357506633, 0.03907473012804985, 0.021450957283377647, -0.00774134648963809, -0.008604469709098339, -0.002082535997033119, -0.024234361946582794, 0.020795250311493874, -0.025666210800409317, 0.010551515966653824, 0.005964918062090874, 0.0029523500707000494, 0.008263234980404377, -0.007246221415698528, 0.03315999358892441, -0.027646711096167564, 0.002704787766560912, 0.012411579489707947, -0.03053716942667961, 0.005526665598154068, 0.011006494984030724, 0.014626260846853256, 0.010959658771753311, -0.010350788943469524, -0.010979731567203999, 0.005794300697743893, 0.008637924678623676, -0.006744405720382929, -0.014037462882697582, 0.0040780906565487385, 0.010879368521273136, -0.020447324961423874, -0.0372815765440464, -0.014224807731807232, -0.01856049709022045, -0.008637924678623676, 0.015348875895142555, -0.010912822559475899, 0.00129050319083035, 0.0036532196681946516, -0.004616706166416407, 0.0057106646709144115, 0.0020440632943063974, -0.00392085500061512, 0.0006711787427775562, 0.006276044063270092, 0.019751474261283875, 0.035220783203840256, -0.009179885499179363, 0.013890263624489307, 0.014090990647673607, -0.023190585896372795, -0.014318480156362057, 0.009969409555196762, -0.0012771214824169874, 0.02424774318933487, -0.01651308871805668, 0.005389502737671137, -0.00262449705041945, -0.0028001326136291027, 0.01565665565431118, -0.005673864856362343, 0.0007477056933566928, -0.0008882141555659473, 0.013462048023939133, 0.009286939166486263, -0.01939016580581665, 0.021531246602535248, 0.02323072962462902, -0.01930987648665905, 0.009989481419324875, -0.01300037745386362, 0.00471372390165925, 0.010243735276162624, 0.03096538595855236, -0.03321352228522301, -0.025880318135023117, -0.021129794418811798, 0.0011792673030868173, -0.009233412332832813, 0.018520351499319077, 0.002249807817861438, -0.049378685653209686, -0.011829473078250885, -0.033588211983442307, 0.034658752381801605, -0.02242782525718212, -0.029359575361013412, 0.0063797528855502605, -0.0205142330378294, 0.0102571165189147, -0.004155035596340895, 0.012759505771100521, 0.010645187459886074, -0.004640124272555113, 0.008216398768126965, -0.02224048040807247, -0.017717447131872177, 0.002979113720357418, -0.014010699465870857, 0.01651308871805668, -0.0205409973859787, 0.0395297110080719, 0.00013057667820248753, -0.003890745807439089, 0.012786269187927246, 0.009835591539740562, 0.00832345336675644, -0.0058612097054719925, -0.014893895946443081, -0.04051996022462845, 0.03688012436032295, -0.012920086272060871, -0.017797736451029778, -0.00200391816906631, -0.036344852298498154, -0.024100543931126595, 0.02691071294248104, 0.023083530366420746, -0.011528383940458298, 0.03206269070506096, -0.015054476447403431, 0.015643274411559105, 0.02616133540868759, -0.028744013980031013, -0.011601983569562435, 0.00765436515212059, 0.011341039091348648, 0.0071257855743169785, -0.02070157788693905, -0.017249085009098053, 0.026495879516005516, 0.014773460105061531, 0.002020645420998335, 0.034391116350889206, -0.011916454881429672, -0.020661432296037674, -0.013488811440765858, -0.010564897209405899, -0.043089259415864944, 0.009353848174214363, -0.014693168923258781, -0.003424057038500905, -0.022869423031806946, 0.020099399611353874, -0.0006548697128891945, 0.0047639054246246815, -0.005984990857541561, 0.0052289217710494995, -0.019028859212994576, -0.017770973965525627, 0.010705405846238136, 0.01568342000246048, -0.01605810783803463, 0.0009024322498589754, 0.005329284816980362, 0.029787791892886162, 0.02365894615650177, 0.021357284858822823, -0.009400684386491776, -0.04656851664185524, -0.00813610851764679, -0.01180270966142416, 0.025251375511288643, 0.035675764083862305, -0.006215826142579317, -0.006453352514654398, 0.009768682532012463, 0.0404396690428257, 0.008049126714468002, -0.03286559507250786, -0.0188816599547863, 0.0018299552612006664, 0.005178740248084068, 0.0010989768197759986, 0.0056036110036075115, -0.01579047366976738, -0.015964435413479805, 0.013876882381737232, 0.03008219040930271, 7.690589882258791e-06, 0.008216398768126965, 0.008182944729924202, 0.019457075744867325, 0.035863108932971954, -0.008878795430064201, -0.0015798837412148714, -0.00825654435902834, -0.016446178779006004, 0.012130563147366047, -0.009173194877803326, -0.029493393376469612, -0.012980304658412933, 0.013796591199934483, -0.00961479265242815, 0.0011023222468793392, 0.018547115847468376, 0.0036465288139879704, -0.013743064366281033, 0.008771741762757301, 0.0042821625247597694, -0.016392651945352554, -0.03382908180356026, 0.018333006650209427, -0.0037803463637828827, -0.0034926387015730143, 0.0393156036734581, -0.019055621698498726, 0.0028252233751118183, 0.0011817764025181532, 0.02669660560786724, -0.04405274614691734, 0.00843050703406334, -0.008129417896270752, -0.02256164327263832, 0.020795250311493874, -0.04453448951244354, 0.00030318042263388634, 0.006051899865269661, -0.013615937903523445, 0.007640983443707228, 0.016178544610738754, -0.0053694299422204494, 0.06963866204023361, 0.011046640574932098, 0.0008434688788838685, 0.009869045577943325, -0.001943700248375535, 0.01364270132035017, 0.007580765523016453, 0.0062894257716834545, 0.011956600472331047, -0.03289235755801201, 0.03168800100684166, -0.011742492206394672, 0.0004177617374807596, -0.021558010950684547, 0.006001717876642942, 0.008805195800960064, -0.004225289914757013, 0.01678072288632393, -0.025237994268536568, -0.034872859716415405, 0.03412348031997681, 0.004673578776419163, 0.010022936388850212, 0.010431080125272274, -0.0401720367372036, -0.010417697951197624, 0.018132280558347702, -0.00282020540907979, -0.0367998331785202, -0.04057348892092705, 0.003910818602889776, 0.006526952143758535, -0.04014527052640915, -0.027700237929821014, -0.004984704777598381, -0.0025508974213153124, -0.01608487218618393, 0.013595865108072758, 0.0389944389462471, -0.001528029446490109, -0.007647674065083265, 0.01589752733707428, -0.03166123852133751, -0.028289034962654114, -0.00011991309293080121, 0.0031012222170829773, -0.03714775666594505, -0.0018567187944427133, -0.0747772604227066], "7a406987-eba0-4222-a34f-7ad3724a5604": [-0.004648001864552498, -0.009040950797498226, -0.01562534086406231, -0.01589381694793701, -0.013893666677176952, 0.02044449746608734, 0.0006682551465928555, -0.03017677552998066, -0.018806789070367813, -0.00741666741669178, -0.006181675009429455, -0.0030941932927817106, -0.015155506320297718, 0.01622941344976425, -0.011732429265975952, 0.014954148791730404, 0.027841027826070786, 0.02523680403828621, 0.022793667390942574, -0.004292270168662071, 0.021531827747821808, 0.011719005182385445, 0.010329638607800007, -0.04011040925979614, 0.021666064858436584, 0.003933182917535305, 0.013256034813821316, -0.009423530660569668, 0.014041328802704811, 0.005963537376374006, -0.0018323530675843358, -0.004305694252252579, -0.009846380911767483, -0.003065667813643813, -0.00660116970539093, -0.007309276610612869, 0.004362745676189661, -0.015544798225164413, 0.022243289276957512, -0.003089159494265914, 0.04325158894062042, 0.00462115416303277, -0.025142837315797806, -0.01741071045398712, -0.00533932913094759, 0.014363500289618969, 0.00045892727212049067, -0.03039155714213848, -0.020377377048134804, 0.009732278063893318, 0.007859653793275356, 0.007510634139180183, -0.023921269923448563, 0.013148644007742405, -0.03355957940220833, 0.014779639430344105, 0.0020521683618426323, -0.00198840512894094, -0.0001832143316278234, -0.008638235740363598, 0.006258861627429724, -0.00904766283929348, -0.005819231271743774, 0.0264583732932806, -0.003033786080777645, 0.0014950793702155352, 0.0043493215925991535, -0.006101131904870272, -0.003819080302491784, 0.004993665497750044, 0.018524888902902603, 0.018524888902902603, -0.01781342551112175, 0.014940725639462471, 0.03506305068731308, -0.014940725639462471, -0.015813274309039116, 0.016309956088662148, -0.01194049883633852, 0.004476848058402538, 0.013235898688435555, -0.031331226229667664, -0.016658976674079895, 0.024592461064457893, 0.04019095376133919, -0.013799699954688549, 0.021276773884892464, 0.06572308391332626, -0.004215083550661802, -0.0264583732932806, 0.02056531049311161, 0.009940347634255886, -0.0007429252145811915, 0.028914934024214745, -0.027451736852526665, -0.0016905638622120023, 0.004033861681818962, 0.0012391875497996807, 0.005114479921758175, -0.022041933611035347, -0.010638386942446232, 0.012994269840419292, 0.008322776295244694, -0.009161765687167645, -0.005319193471223116, 0.017840273678302765, 0.001156966551207006, 0.0056581455282866955, 0.026082506403326988, -0.02596169151365757, -0.008799321949481964, 0.05382956936955452, 0.015974359586834908, -0.035197287797927856, 0.006127979606389999, -0.029344497248530388, 0.017115386202931404, 0.006829374469816685, -0.016484465450048447, 0.02202850952744484, 0.015155506320297718, -0.012215686962008476, 0.008577829226851463, 0.0018373870989307761, 0.028861239552497864, 0.01686033420264721, -0.009806109592318535, -0.012403621338307858, -0.023290349170565605, -0.023558825254440308, 0.04153333604335785, -0.00042725540697574615, 0.00867850799113512, 5.235819116933271e-05, -0.023290349170565605, 0.01698114722967148, -0.01228280644863844, 0.04260724410414696, -0.013759427703917027, -0.030552642419934273, 0.017155658453702927, 0.016658976674079895, -0.0053493971936404705, 0.003206617897376418, 0.006218590307980776, 0.04137225076556206, 0.01500784419476986, 0.009228885173797607, -0.018981298431754112, -0.0017350303241983056, -0.005104412324726582, 0.0015261219814419746, 0.007423379458487034, -0.01200090628117323, 0.009624888189136982, 0.02725037932395935, -0.020632430911064148, -3.185538298566826e-05, 0.005570890381932259, 0.003926470875740051, 0.018014783039689064, 0.02792157046496868, 0.012678809463977814, -0.015773003920912743, -0.00505742896348238, 0.040647365152835846, 0.023572249338030815, -0.0065541863441467285, -0.013108372688293457, -0.004043929278850555, -0.009510785341262817, 0.012464028783142567, -0.010618251748383045, 0.026163049042224884, 0.0186054315418005, -0.009960483759641647, 0.004205015487968922, -0.014980996958911419, -0.006564253941178322, -0.003327432554215193, -0.004852715414017439, 0.005288989748805761, -0.0034398569259792566, 0.022686276584863663, -0.03662021458148956, -0.02410920336842537, -0.004842647351324558, -0.005403092596679926, 0.022565461695194244, 0.001847454928793013, 0.011906939558684826, 0.033183712512254715, -0.007967044599354267, 0.004319117870181799, -0.6194292902946472, 0.005181599408388138, 0.014712519943714142, -0.027572551742196083, 0.019034994766116142, -0.003926470875740051, -0.0246058851480484, -0.010772624984383583, -0.03361327573657036, 0.047010261565446854, 0.010557844303548336, 0.01447089109569788, 0.00795362051576376, -0.001150254625827074, -0.014779639430344105, -0.02033710666000843, 0.00595682580024004, -0.014403772540390491, -0.01904841884970665, 0.02000151015818119, -0.009175189770758152, 0.03594902157783508, 0.0015059862053021789, -0.006456863135099411, -0.011182052083313465, 0.005953469779342413, -0.018055055290460587, -0.02668657898902893, 0.028807545080780983, 0.019451133906841278, -0.001020211260765791, -0.008591252379119396, -0.009087934158742428, -0.013611765578389168, 0.04730558395385742, -0.00122240767814219, -0.00037859403528273106, 0.024404527619481087, -0.002065592212602496, 0.019518252462148666, -0.013128507882356644, -0.014524586498737335, 0.010416894219815731, 0.0001927578414324671, -0.004403016995638609, 0.004235219210386276, -0.021988237276673317, 0.03455294296145439, 0.0040875570848584175, -0.012591554783284664, -3.290412132628262e-05, -0.002382730133831501, -0.010443741455674171, -0.02005520462989807, 0.022296985611319542, 0.01641734689474106, 0.02735777013003826, -0.0115512078627944, 0.009477226063609123, -0.01753152534365654, -0.002365950495004654, -0.004832579754292965, 0.008383183740079403, 0.008477150462567806, -0.011806260794401169, 0.030579490587115288, -0.012014330364763737, -0.008725491352379322, 0.0008339555934071541, -0.043412674218416214, 0.02546500973403454, 0.0008859729277901351, -0.02471327595412731, -0.018175868317484856, 0.004909766837954521, 0.009423530660569668, 0.02522338181734085, -0.003614366753026843, 0.021370740607380867, 0.028753848746418953, 0.0031076171435415745, -0.009175189770758152, -0.024807242676615715, -0.00488627515733242, 0.01241704449057579, -0.026646306738257408, -0.010510860942304134, 0.0022870854008942842, 0.0027871232014149427, 0.015316592529416084, 0.01149080041795969, 0.028619609773159027, 0.002522002439945936, -0.0031596345361322165, -0.009906788356602192, -0.00029406583053059876, -0.012685521505773067, -0.006131335627287626, 0.004835935775190592, -0.04080845043063164, -0.0012761030811816454, 0.003112651174888015, 0.014202415011823177, -0.010390046052634716, 0.010571268387138844, 0.017155658453702927, -0.011195476166903973, 0.026995327323675156, 0.013786275871098042, -0.005399736575782299, -0.004134540446102619, -0.04231191799044609, -0.0007076876354403794, -0.0050876326858997345, -0.01320233941078186, -0.01455143466591835, 0.043009959161281586, 0.0038660636637359858, -0.0010378300212323666, -0.009040950797498226, 0.02068612538278103, 0.01859200745820999, 0.003275415161624551, -0.01647104136645794, 0.038526397198438644, 0.011329714208841324, -0.010470589622855186, -0.020766668021678925, -0.018860483542084694, 0.014779639430344105, -0.01328959409147501, -0.013410408049821854, 0.015517950057983398, -0.030418403446674347, 0.0070408000610768795, 0.018806789070367813, 0.010249095968902111, 0.001228280714713037, 0.009463801980018616, -0.004285558592528105, -0.009255732409656048, 0.0009749058517627418, 0.0034264333080500364, -0.01508838776499033, -0.009678582660853863, -0.0294518880546093, -0.009255732409656048, -0.0018424210138618946, -0.024740122258663177, -0.00822880957275629, -0.014027904719114304, -0.008879865519702435, -0.016605280339717865, -0.00243810354731977, 0.002127677435055375, -0.011645174585282803, -0.0023709842935204506, -0.017571795731782913, 0.0038929113652557135, -0.013920513913035393, -0.00023135135415941477, 0.023907845839858055, -0.018739670515060425, 0.004080845043063164, 0.018055055290460587, -0.011155204847455025, -0.021424436941742897, 0.030579490587115288, -0.02961297333240509, -0.03653967007994652, 0.0012912048259750009, -0.012168703600764275, 0.008658371865749359, 0.009685294702649117, -0.008920136839151382, -0.010000755079090595, -0.010940423235297203, -0.009027527645230293, -0.02202850952744484, -0.02241780050098896, -0.013155356049537659, 0.026337558403611183, 0.02331719733774662, -0.03275414928793907, 0.014927301555871964, 0.003825792111456394, 0.02781418152153492, 0.03283469378948212, -0.004476848058402538, 0.021706337109208107, 0.029398193582892418, 0.028243742883205414, -0.0017887256108224392, -0.0034331451170146465, -0.007725415285676718, 0.00686964625492692, 0.01328959409147501, 0.021276773884892464, 0.014041328802704811, 0.042848873883485794, 0.00443657673895359, 0.025867724791169167, 0.011410257779061794, -0.002832428552210331, -0.018578583374619484, 0.005443363916128874, 0.021169383078813553, -0.016028055921196938, 0.00795362051576376, 0.00023554630752187222, 0.005765535868704319, -0.02427028864622116, -0.0070609357208013535, -0.007886501960456371, 0.035922177135944366, 0.016873756423592567, 0.0094369538128376, 0.008416743017733097, -0.0029868027195334435, 0.014242686331272125, 0.006597813684493303, 0.020216291770339012, 0.004661425948143005, 0.007577753160148859, 0.011000830680131912, 0.018833637237548828, -0.012403621338307858, 0.0030874814838171005, -0.031116442754864693, -0.05157436430454254, 0.016658976674079895, -0.018954452127218246, 0.015222625806927681, 0.004943326115608215, 0.013625189661979675, -0.018672550097107887, 0.03860694169998169, 0.0010940423235297203, 0.03235143423080444, -0.002293797442689538, -0.014336653053760529, 0.011229035444557667, 0.011651886627078056, -0.025303924456238747, 0.0455067902803421, 0.019907543435692787, 0.022498343139886856, 0.013074812479317188, -0.032727304846048355, 0.02180030383169651, -0.0074502271600067616, -0.01708853803575039, -0.03033786080777645, -0.009443665854632854, -0.011497512459754944, -0.0123029425740242, 0.0008423454710282385, 0.001922964002005756, 0.012437180615961552, 0.022162746638059616, 0.004731900990009308, 0.009504073299467564, -0.008430167101323605, 0.009745702147483826, 0.02259230986237526, -0.01651131361722946, -0.025975115597248077, -0.027008751407265663, 0.004866139031946659, -0.008396606892347336, -0.007725415285676718, -0.027545703575015068, -0.007067647762596607, 0.017209352925419807, 0.039412371814250946, 0.012772776186466217, 0.008866441436111927, 0.010893439874053001, -0.0068159508518874645, -0.0018508108332753181, -0.0038761314935982227, -0.013839971274137497, 0.022055355831980705, 0.019988086074590683, 0.005627941805869341, -0.005225226748734713, 0.0141084473580122, -0.004047285299748182, 0.0013423832133412361, 0.02590799704194069, -0.009933635592460632, 0.007564329542219639, -0.013450680300593376, 0.005762179847806692, 0.0025136126205325127, -0.0009002357837744057, 0.01219555176794529, -0.021397588774561882, 0.02797526679933071, 0.00047990199527703226, 0.007255581207573414, 0.019934391602873802, -0.02174660749733448, -0.009893364273011684, 0.03146546334028244, -0.002840818604454398, 0.003265347331762314, -0.03248567506670952, 0.007383107673376799, -0.009913500398397446, -0.012772776186466217, -0.01589381694793701, -0.018336955457925797, -0.02044449746608734, 0.015128659084439278, 0.010517572984099388, -0.005782315973192453, 0.0010814574779942632, 0.015168930403888226, 0.0032569572795182467, -0.018954452127218246, -0.015571645461022854, -0.009544344618916512, 0.009759126231074333, 0.05600422993302345, 0.03237828239798546, 0.004161388147622347, -0.00041152435005642474, -0.023169534280896187, -0.008638235740363598, -0.02730407565832138, -0.012182127684354782, 0.023612521588802338, -0.005456787999719381, -0.015142083168029785, 0.00026763766072690487, 0.025545552372932434, 0.01138340961188078, 0.023639367893338203, -0.01087330374866724, -0.018618855625391006, -0.005711840465664864, 0.008195249363780022, -0.015289745293557644, 0.02382730320096016, 0.012524435296654701, 0.00505742896348238, 0.018900755792856216, -0.0027871232014149427, -0.0024951547384262085, 0.020202867686748505, 0.005463499575853348, 0.02123650349676609, -0.045828964561223984, -0.011846532113850117, 0.03017677552998066, -0.011007542721927166, 0.023075567558407784, 0.014027904719114304, 0.017786577343940735, 0.009202037006616592, 0.028968630358576775, -0.005993741098791361, -0.016283107921481133, 0.023746758699417114, 0.023062143474817276, 0.005973605439066887, -0.03653967007994652, -0.011047814041376114, 0.016820061951875687, 0.008517421782016754, 0.006862934213131666, -0.0036680621560662985, -0.03229774162173271, 0.012813047505915165, -0.0018424210138618946, -0.040486279875040054, -0.003728469368070364, 0.013786275871098042, -0.001639385474845767, -0.027062445878982544, -0.02439110353589058, -0.01596093736588955, -0.012215686962008476, -0.01915580965578556, -0.015746155753731728, 0.006493778899312019, -0.007658296264708042, -0.012249247170984745, -0.012692233547568321, -0.00915505364537239, 0.0076113129034638405, -0.039143893867731094, -0.0056749251671135426, 0.010960559360682964, -0.03645912930369377, -0.038687486201524734, 0.002656240714713931, -0.023558825254440308, 0.01832353137433529, -0.011806260794401169, 0.008577829226851463, 0.010994118638336658, 0.00870535522699356, 0.005077564623206854, -0.06733394414186478, 0.00879260990768671, -0.01798793487250805, -0.012128432281315327, 0.009141629561781883, 0.025532128289341927, -0.0010025925002992153, 0.0018189293332397938, 0.0130076939240098, -0.007362972013652325, 0.010940423235297203, 0.03500935435295105, -0.0246058851480484, 0.00047402907512150705, 0.006356184836477041, 0.0003884521429426968, 0.031035900115966797, 0.007047512102872133, -0.01741071045398712, -0.005466855596750975, -0.014980996958911419, 0.0035472477320581675, -0.009067798964679241, -0.01112835668027401, -0.013209051452577114, 0.024364255368709564, -0.013799699954688549, -0.02613620087504387, -0.012591554783284664, 0.027330921962857246, -0.019477980211377144, 0.012007618322968483, -0.004725188948214054, 0.019961237907409668, 0.013155356049537659, 0.017732882872223854, 0.04875535890460014, 0.0009430242353118956, -0.017840273678302765, 0.0033777717035263777, -0.03415022790431976, 0.022041933611035347, 0.025384467095136642, -0.0343918576836586, 0.0352778322994709, -0.0012626792304217815, 0.01005445048213005, -0.013141931965947151, -0.021115688607096672, 0.007477074395865202, -0.001440544961951673, 0.0010864913929253817, -0.05093001946806908, -0.011249171569943428, 0.003314008703455329, -0.013350001536309719, 0.0005906486185267568, -0.03820422664284706, 0.005084276665002108, -0.009490649215877056, -0.013772851787507534, -0.0023055432830005884, -0.026673154905438423, 0.013222474604845047, -0.03240513056516647, -0.003842571983113885, 0.02421659417450428, 0.020981449633836746, -0.007087783422321081, -0.007463650777935982, -0.01622941344976425, -0.0032703811302781105, -0.010712218470871449, 0.006826018914580345, -0.03624434769153595, -0.016162294894456863, 0.04741297662258148, 0.016591856256127357, 0.029076021164655685, 0.01129615493118763, 0.007859653793275356, 0.020833788439631462, -0.0173704382032156, -0.0038492840249091387, 0.00792677327990532, -0.014913877472281456, -0.0025924777146428823, -0.016994571313261986, 0.008497285656630993, -0.002020286861807108, 0.009846380911767483, 0.013162067160010338, -0.012900303117930889, -9.556614713801537e-06, 0.016283107921481133, -0.000219186011236161, -0.0022669497411698103, -0.03331795334815979, -0.013269457966089249, 0.005393024533987045, 0.006641441024839878, -0.004251998849213123, 0.016605280339717865, -0.03039155714213848, -0.0056111617013812065, 0.028914934024214745, -0.023021873086690903, 0.01652473770081997, 0.005987029056996107, 0.006987104658037424, -0.03248567506670952, 0.0068998499773442745, 0.010604827664792538, 0.02915656380355358, -0.010551132261753082, 0.011873379349708557, -0.013813123106956482, 0.021169383078813553, -0.009846380911767483, 0.0017232844838872552, 0.016269685700535774, 0.012088160961866379, 0.020927755162119865, -0.017007995396852493, 0.004795663990080357, -0.011987482197582722, -0.02298160083591938, 0.02640467882156372, -0.022243289276957512, -0.013068100437521935, 0.00661459332332015, -0.0022350680083036423, -0.0016863689525052905, -0.01933031901717186, 0.015598493628203869, 0.01168544590473175, 0.010631674900650978, -0.016336804255843163, -0.03675445169210434, 0.012323077768087387, -0.011443817056715488, 0.05568205565214157, 0.030874814838171005, 0.01256470661610365, 0.04231191799044609, 0.007208597846329212, 0.011678733862936497, 0.0030975493136793375, 0.007396531756967306, -0.003027074271813035, 0.01707511395215988, 0.005641365423798561, -0.010880015790462494, -0.009262444451451302, -0.00352711183950305, 0.0043291859328746796, -0.018806789070367813, -0.03401599079370499, 0.007812670432031155, 0.003261991310864687, 0.013772851787507534, -0.026324134320020676, 0.00896040815860033, -0.03173394128680229, 0.006681712344288826, -0.010168553330004215, -0.0053695328533649445, -0.032727304846048355, -0.008517421782016754, -0.013410408049821854, 0.015410559251904488, 0.008819458074867725, 0.023303773254156113, -0.015934089198708534, -0.006362896412611008, 0.0031076171435415745, -0.015289745293557644, -0.008074435405433178, 0.011866668239235878, 0.007537481840699911, 0.03538522124290466, -0.007886501960456371, -0.007081071380525827, 0.03600271791219711, -0.016833486035466194, 0.010041026398539543, -0.004379525315016508, 0.003993589896708727, 0.035304680466651917, -0.0015194100560620427, 0.00280893687158823, -0.03747934103012085, 0.0007525736000388861, -0.011349850334227085, -6.434000533772632e-05, -0.004319117870181799, 0.017048267647624016, -0.021102264523506165, -0.012631826102733612, 0.02675369754433632, 0.009040950797498226, -0.00958461593836546, 0.0013071456924080849, -0.011316291056573391, 0.012188839726150036, -0.014282957650721073, 0.0037553170695900917, 0.007067647762596607, -0.035653699189424515, -0.01708853803575039, 0.00217130477540195, 0.007691856008023024, -0.0018894043751060963, -0.010752489790320396, -0.01698114722967148, 0.02551870606839657, 0.04617798328399658, -0.020860634744167328, 0.01894102804362774, -0.01219555176794529, 0.0064535075798630714, -0.04421810433268547, 0.0005415677442215383, 0.0007982985116541386, -0.015464254654943943, 0.00280222506262362, -0.015934089198708534, 0.0029079376254230738, -0.024485070258378983, 0.0036378586664795876, 0.022686276584863663, -0.02904917299747467, -0.02044449746608734, 0.008457014337182045, 0.023961540311574936, 0.027894724160432816, -0.00015689103747718036, -0.044137559831142426, 0.01982700079679489, -0.003698265878483653, 0.016900604590773582, 0.012511012144386768, -0.02247149497270584, 0.022323833778500557, 0.004872851073741913, 0.0065911016426980495, 0.011396833695471287, -0.05471554026007652, -0.00994705967605114, -0.025585824623703957, 0.03232458978891373, -0.006077640224248171, -0.011739141307771206, -0.035707395523786545, -0.008128130808472633, -0.028512218967080116, 0.012101585045456886, 0.007376396097242832, -0.0309553574770689, 0.022672852501273155, 0.03382805734872818, 0.005305769853293896, 0.00831606425344944, -0.006755543407052755, -0.00904766283929348, 0.0018524888437241316, 0.022954752668738365, -0.03973454236984253, -0.013880242593586445, 0.011651886627078056, 0.04872851073741913, 0.016309956088662148, -0.025209957733750343, -0.011705582030117512, -0.009819533675909042, -0.02562609501183033, -0.010960559360682964, -0.0065541863441467285, 0.01640392281115055, 0.026659730821847916, -0.011510936543345451, -0.013182203285396099, 0.029961993917822838, -0.007336124312132597, 0.02061900682747364, -0.040996383875608444, 0.0019179300870746374, 0.00361772277392447, 0.01429638173431158, -0.021666064858436584, 0.010665235109627247, 0.0025404603220522404, -0.028673306107521057, -0.005054072942584753, -0.007738839369267225, 0.008289216086268425, 0.009490649215877056, -0.01573273167014122, -0.019692761823534966, -0.014994421042501926, 0.002652884926646948, 0.021733185276389122, 0.014631977304816246, 0.0075911772437393665, -0.004755392670631409, 0.0027619535103440285, 0.005211803130805492, 0.009611464105546474, -0.012900303117930889, -0.021317046135663986, -0.012712369672954082, -0.0025790538638830185, 0.005550754722207785, -0.00015384970174636692, -0.0009270834270864725, 0.0014850114239379764, -0.026391254737973213, 0.015920665115118027, -0.010242383927106857, -0.0026512069161981344, 0.02123650349676609, -0.022296985611319542, 0.0014321551425382495, -0.006325981114059687, 0.014980996958911419, -0.039707694202661514, 0.001205627922900021, 0.008114706724882126, -0.016645552590489388, 0.015303168445825577, -0.00870535522699356, 0.03487511724233627, -0.050822630524635315, 0.013645325787365437, -0.015585069544613361, -0.01354464702308178, -0.04311734810471535, 0.024686427786946297, -0.0014187312917783856, -0.005044004879891872, -0.007067647762596607, 0.003292194800451398, 0.007242157589644194, 0.010611539706587791, -0.034579791128635406, -0.0038895553443580866, -0.0005658984300680459, 0.010631674900650978, 0.0171959288418293, -0.0060608601197600365, 0.007624736987054348, 0.020149173215031624, 0.016054904088377953, -0.013813123106956482, 0.007443515118211508, 0.19974662363529205, 0.004664781969040632, 0.032727304846048355, 0.022995024919509888, 0.007879789918661118, 0.03186817839741707, 0.04483560100197792, 0.012047889642417431, 0.0019212859915569425, -0.013517798855900764, -0.022498343139886856, 0.02326350100338459, -0.016028055921196938, -0.0001845777005655691, -0.010349774733185768, -0.012625114060938358, -0.011651886627078056, -0.019182655960321426, -0.015652189031243324, -0.024068931117653847, 0.010839744471013546, 0.012323077768087387, -0.014001057483255863, -0.015289745293557644, 0.03181448206305504, 0.010269232094287872, -0.012886879034340382, -0.001922964002005756, 0.01228280644863844, -0.013987633399665356, -0.015209201723337173, 0.00026616943068802357, 5.993531522108242e-05, -0.011148492805659771, -0.006634728983044624, -0.00641994783654809, -0.00487620709463954, 0.012940574437379837, 0.02730407565832138, -0.011960634961724281, 0.021504979580640793, -0.021786879748106003, -0.009994043037295341, 0.003483484499156475, -0.015249473974108696, 0.011396833695471287, 0.01635022833943367, -0.007027376443147659, -0.0007051706779748201, 0.032727304846048355, -0.014739368110895157, 0.0014816555194556713, 0.03178763389587402, 0.026874512434005737, 0.015571645461022854, -0.011933786794543266, -0.006782391108572483, -0.008175114169716835, 0.005382956936955452, -0.011678733862936497, -0.03151915967464447, 0.048245254904031754, -0.004480204079300165, 0.029263954609632492, -0.0035707394126802683, 0.008181826211512089, -0.029532430693507195, 0.011437105014920235, 0.003721757559105754, -0.006208522245287895, 0.0006187547696754336, -0.00768514396622777, 0.004708409309387207, -0.006537406239658594, -0.028807545080780983, -0.039358675479888916, 0.021813727915287018, 0.020216291770339012, 0.023169534280896187, -0.009524209424853325, -0.014175566844642162, 0.01292715035378933, -0.011316291056573391, -0.0068998499773442745, -0.04000302031636238, -0.033291105180978775, 0.013423832133412361, -0.0038694196846336126, -0.005923266056925058, -0.014913877472281456, -0.009007391519844532, -0.007725415285676718, 6.260959344217554e-05, -0.006191742606461048, -0.019988086074590683, 0.006416591815650463, -0.0053863124921917915, 0.024404527619481087, -0.02674027346074581, -0.018068477511405945, -0.01354464702308178, -0.00524200638756156, 0.021531827747821808, 0.021598946303129196, 0.00516817532479763, 0.02124992571771145, 0.0032452114392071962, 0.005359465256333351, 0.012403621338307858, -0.02388099767267704, -0.03151915967464447, 0.0031495667062699795, 0.01191365160048008, 0.00252871448174119, 0.0022870854008942842, -0.004748680628836155, -0.00014136973186396062, -0.0024095778353512287, 0.002615969395264983, 0.003428111085668206, 0.01703484356403351, -0.01183310803025961, -0.004500339739024639, 0.017571795731782913, -0.005137971602380276, -0.025934843346476555, -0.02494147978723049, 0.00524200638756156, 0.00696696899831295, -0.0168469101190567, 0.02253861539065838, -0.03731825575232506, -0.019706185907125473, -0.0025555621832609177, 0.02000151015818119, 0.009987330995500088, -0.007973756641149521, -0.023693064227700233, -0.025760333985090256, -0.012081448920071125, -0.000461024756077677, 0.026498645544052124, -0.018081901594996452, -0.012739216908812523, 0.04988295957446098, -0.017330167815089226, 0.0007072681910358369, -0.007946908473968506, -0.011651886627078056, -0.02686108835041523, -0.018216140568256378, 0.013598342426121235, 0.011437105014920235, -0.03178763389587402, -0.009953771717846394, -0.04400332272052765, 0.004131184425204992, -0.011108221486210823, 0.011866668239235878, 0.00540980463847518, -0.029720364138484, 0.013618477620184422, 0.020927755162119865, -0.015705883502960205, -0.015182354487478733, -0.015236049890518188, -0.16903290152549744, 0.0035304678604006767, 0.03624434769153595, -0.041560184210538864, -0.0034499249886721373, 0.006812594830989838, 0.020377377048134804, 0.02162579447031021, -0.017236201092600822, -0.0013549680588766932, -0.0020337107125669718, 0.012611690908670425, -0.0324588268995285, -0.012430468574166298, -0.02484751306474209, -0.009685294702649117, 0.01596093736588955, -0.002832428552210331, 0.023693064227700233, 0.023250076919794083, 0.007839517667889595, -0.02719668485224247, 0.030418403446674347, 0.020189443603157997, -0.0045372555032372475, 0.008195249363780022, -0.00947051402181387, -0.02899547852575779, -0.00047486808034591377, -0.041721269488334656, -0.026673154905438423, 0.009222173132002354, -0.01915580965578556, -0.008269080892205238, 0.012792912311851978, 0.0017736238660290837, 0.014256109483540058, -0.009356411173939705, -0.02359909750521183, 0.02904917299747467, -0.002884445944800973, 0.019907543435692787, 0.024793818593025208, 0.000614559801761061, -0.014645401388406754, 0.01673951931297779, -0.01165859866887331, -0.008188537321984768, -0.008154978044331074, -0.025196533650159836, 0.005849434994161129, -0.03208296000957489, -0.0027904792223125696, -0.02220301888883114, 0.021035145968198776, -0.012235823087394238, -0.01202775351703167, 0.0449698381125927, 1.329929455096135e-05, -0.011497512459754944, 0.00452383141964674, -0.027330921962857246, 0.014054752886295319, 0.01775973103940487, -0.019290046766400337, -0.02405550703406334, -0.01730331964790821, 0.00723544554784894, -0.022739971056580544, 0.0006476999260485172, -0.001030279090628028, -0.004631222225725651, 0.01567903533577919, -0.010134993121027946, 0.004033861681818962, 0.02162579447031021, -0.012349925935268402, 0.006044080480933189, -0.014430619776248932, -0.005184955429285765, -0.010920288041234016, 0.02202850952744484, -0.004698341246694326, 0.0028894799761474133, 0.009416818618774414, -0.010383334010839462, -0.006873002275824547, -0.014497739262878895, -0.017343591898679733, -0.026042234152555466, 0.009839668869972229, -0.02966666966676712, -0.032673608511686325, -0.0001489206333644688, 0.01792081631720066, 0.025948267430067062, 0.011202188208699226, -0.021102264523506165, 0.0020538463722914457, -0.014162142761051655, -0.0067320517264306545, 0.02275339514017105, -0.030874814838171005, -0.005020513199269772, 0.027169836685061455, 0.0006770645268261433, -0.006513914559036493, -0.004278846550732851, 0.027787333354353905, 0.022350680083036423, 0.007772399112582207, 0.027492009103298187, 0.024471646174788475, 0.03433816134929657, -0.018336955457925797, 0.024471646174788475, -0.023518554866313934, -0.02130362205207348, 0.004218439105898142, 0.004916478414088488, 0.023129263892769814, 0.01871282234787941, 0.005879638716578484, 0.02163921855390072, 0.0008901678957045078, 0.01882021315395832, -0.1257544606924057, -0.03584163263440132, -0.004943326115608215, -0.015464254654943943, -0.001257645315490663, 0.015987783670425415, -0.0020941179245710373, 0.03667391091585159, -0.0016662331763654947, 0.025196533650159836, 0.017101962119340897, -0.01703484356403351, -0.0032217197585850954, 0.002248491859063506, -0.017840273678302765, -0.019034994766116142, -0.006050792522728443, -0.013665460981428623, -0.019679337739944458, 0.018471192568540573, 0.020981449633836746, -0.0278678759932518, 0.009846380911767483, -0.002355882665142417, -0.011276018805801868, -0.0023357467725872993, -0.029425039887428284, -0.007725415285676718, 0.01943770982325077, 0.0022216441575437784, 0.0012274417094886303, -0.03337164595723152, 0.022632582113146782, -0.012115009129047394, -0.003688198048621416, 0.016497889533638954, -0.0246058851480484, -0.007557617500424385, 0.04738612845540047, -0.020471343770623207, -0.006644797045737505, 0.007678431924432516, 0.010255808010697365, -0.01894102804362774, 0.03023047000169754, -0.0026746985968202353, -0.03361327573657036, 0.02832428552210331, -0.0002403705002507195, -0.023182958364486694, -0.02686108835041523, -0.01927662268280983, -0.00505742896348238, -0.002483408898115158, 0.027129564434289932, -0.02439110353589058, 0.014001057483255863, 0.003085803473368287, -0.00379894464276731, 0.016900604590773582, 0.006416591815650463, -0.014336653053760529, -0.012276094406843185, 0.008410030975937843, 0.02675369754433632, 0.019370589405298233, -0.03307632356882095, 0.009342987090349197, 0.03243197873234749, -0.029317649081349373, -0.002483408898115158, 0.02484751306474209, -0.00806101132184267, 0.019853847101330757, -0.0062454380095005035, -0.0028391405940055847, -0.013853395357728004, -0.006789103150367737, 0.009671871550381184, -0.0017753018764778972, -0.013786275871098042, -0.013088236562907696, 0.007658296264708042, -0.023733336478471756, 0.009483937174081802, 0.019531676545739174, -0.007336124312132597, -0.013215762563049793, 0.014940725639462471, -0.011705582030117512, 0.0033559580333530903, -0.011141780763864517, 0.005403092596679926, -0.008846305310726166, -0.016551585868000984, 0.010853168554604053, 0.02455218881368637, 0.005987029056996107, 0.013786275871098042, 0.0014254432171583176, -0.026042234152555466, -0.024189746007323265, -0.03833846375346184, 0.01663212850689888, 0.012665385380387306, -0.023075567558407784, 0.02894178219139576, -0.008215385489165783, 0.02494147978723049, -0.004809088073670864, 0.020350530743598938, -0.008550981059670448, -0.020162595435976982, 0.016833486035466194, -0.029961993917822838, 0.00804087519645691, 0.010061162523925304, -0.00040334422374144197, 0.021840576082468033, -0.012665385380387306, 0.02551870606839657, -0.001710699638351798, -0.0009866516338661313, 0.009014103561639786, 0.004218439105898142, 0.0030908375047147274, 0.0036244348157197237, -0.002473341068252921, -0.013162067160010338, 0.029425039887428284, -0.0026663087774068117, -0.02691478468477726, 0.013282882049679756, -0.03159970045089722, -0.008175114169716835, 0.0336938202381134, 0.018336955457925797, 0.014967572875320911, 0.01059140358120203, 0.002832428552210331, 0.008430167101323605, 0.025693215429782867, -0.01831010729074478, -0.0235454011708498, 0.005550754722207785, -0.02022971585392952, -0.011376697570085526, -0.0016519703203812242, -0.019464556127786636, 0.02123650349676609, 0.014323228970170021, -0.011135068722069263, 0.01814902201294899, -0.01267209742218256, -0.03074057586491108, -0.01277948822826147, 0.00480237603187561, -0.03753303363919258, 0.001854166854172945, -0.025639519095420837, -0.01590724103152752, -0.020269986242055893, 0.016108598560094833, -0.013813123106956482, 0.010282655246555805, -0.01168544590473175, -0.011148492805659771, -0.035653699189424515, -0.0019112181616947055, -0.013088236562907696, -0.0003458734427113086, -0.010470589622855186, -0.029076021164655685, 0.006708560045808554, 0.01191365160048008, -0.005362820811569691, 0.019397437572479248, 0.009853092953562737, -0.025317348539829254, -0.0031109731644392014, -0.024297136813402176, 0.03543891757726669, 0.016256261616945267, -0.00867850799113512, -0.01365874893963337, -0.008356335572898388, 0.0343918576836586, 0.017880544066429138, -0.01612202264368534, -0.016162294894456863, 0.01741071045398712, -0.007792534772306681, 0.012484163977205753, 0.003946606535464525, -0.005654789507389069, -0.00361101096495986, 0.009792685508728027, 0.017612067982554436, -0.014564857818186283, -0.01837722584605217, -0.004758748691529036, 0.032056111842393875, 0.01647104136645794, -0.02848537266254425, 0.009356411173939705, -0.023867573589086533, -0.0026898004580289125, 0.007396531756967306, 0.006547474302351475, -0.03415022790431976, -0.01982700079679489, 0.0094369538128376, 0.001394400605931878, 0.009557768702507019, 0.015168930403888226, 0.014658824540674686, -0.006487066857516766, 0.009457089938223362, 0.006728696171194315, -0.02488778531551361, -0.02308899164199829, 0.021545249968767166, 0.01036991085857153, 0.009363123215734959, 0.03815053030848503, -0.003835860174149275, 0.021102264523506165, 0.044808752834796906, 0.0384458564221859, -0.025491857901215553, 0.0033559580333530903, -0.04878220707178116, -0.014739368110895157, 0.00299183651804924, -0.016484465450048447, -0.014430619776248932, 0.015356863848865032, -0.018793364986777306, 0.013041253201663494, -0.012061313726007938, -0.024699851870536804, 0.08908054977655411, -0.016283107921481133, -0.004366101697087288, 0.018404074013233185, -0.021840576082468033, 0.019880695268511772, 0.04263409227132797, 0.015303168445825577, -0.0027552417013794184, -0.01101425476372242, 0.03237828239798546, -0.003946606535464525, 0.01286674290895462, -0.01966591365635395, -0.0003238499630242586, 0.007074359804391861, -0.01622941344976425, 0.01365874893963337, -0.005299057811498642, -0.006077640224248171, 0.04792308062314987, -0.0031931940466165543, 0.027129564434289932, 0.014940725639462471, -0.020014934241771698, -0.003053921740502119, 0.0218674223870039, -0.0004639612161554396, -0.0264583732932806, -0.02366621606051922, -0.005309125874191523, 0.011665310710668564, 0.002161236945539713, -0.024404527619481087, -0.014913877472281456, 0.01853831298649311, -0.009342987090349197, -0.007758975028991699, 0.026874512434005737, 0.007980468682944775, -0.0012039499124512076, -0.011007542721927166, -0.027787333354353905, -0.03176078572869301, -0.006570965982973576, 0.02674027346074581, -0.009685294702649117, -0.014846758916974068, -0.07775083929300308], "ec793519-e044-423d-ba4b-21c3ec916891": [0.0129103884100914, 0.016718585044145584, 0.004136143252253532, 0.0038048499263823032, -0.020734257996082306, 0.013178099878132343, -0.013800528831779957, -0.015165857970714569, -0.021403536200523376, -0.026971936225891113, -0.0010030815610662103, 0.013258413411676884, -0.03627490997314453, 0.004008980002254248, 0.013566281646490097, 0.018579179421067238, 0.01685244031250477, 0.009604150429368019, 0.008593539707362652, -0.004142835736274719, -0.01106317900121212, 0.016598114743828773, -0.02232714183628559, -0.030358485877513885, 0.004738493822515011, 0.005076479632407427, 0.010775389149785042, 0.0007516837795265019, -0.004142835736274719, 0.020841341465711594, 0.004035751335322857, -0.0073821451514959335, -0.026704223826527596, -0.0086069256067276, -0.004869003314524889, -0.009202583692967892, -0.019904350861907005, -0.02872544713318348, -0.005919771268963814, 0.011618680320680141, 0.04130788892507553, -0.0027758339419960976, -0.02503102645277977, 0.0005136714898981154, 0.0024094036780297756, 0.01339896209537983, -0.012207644991576672, -0.04200393706560135, -0.0021249603014439344, 0.001047421363182366, -0.007295139133930206, 0.040772464126348495, -0.0335710234940052, -0.0013611457543447614, -0.024843629449605942, 0.017039839178323746, 0.0019425817299634218, 0.009155734442174435, 0.005237106699496508, -0.012528899125754833, 0.009416752494871616, -0.01528632827103138, -0.02027914859354496, -0.010601376183331013, -0.005032976623624563, 0.005662098526954651, 0.020332690328359604, 0.016678428277373314, -0.026623910292983055, -0.016250088810920715, 0.013338726945221424, 0.019904350861907005, -0.016009148210287094, 0.00741560896858573, 0.002449560444802046, -0.023023191839456558, -0.005802647210657597, 0.0003384040901437402, -0.013961155898869038, -0.002872879384085536, 0.009309668093919754, 0.012649369426071644, -0.020466545596718788, 0.015098929405212402, 0.019944507628679276, -0.005595170892775059, 0.033142685890197754, 0.008700624108314514, -0.03587334230542183, -0.01973033882677555, 0.025526294484734535, 0.010434056632220745, 0.0033631259575486183, 0.0018288043793290854, -0.009958868846297264, 0.027440430596470833, 0.005260531324893236, 0.04417240247130394, -0.02837742120027542, -0.014777676202356815, 0.00315397628583014, 0.018927205353975296, 0.0008403632091358304, 0.0020295879803597927, -0.005652059335261583, 0.0021366726141422987, 0.002906343201175332, 0.0031891134567558765, 0.040103185921907425, -0.025405824184417725, -0.03335685655474663, 0.036569394171237946, 0.021778332069516182, -0.02590109035372734, 0.01910121738910675, -0.01603592000901699, 0.03603396937251091, -0.0013678385876119137, 0.011350968852639198, 0.011658837087452412, 0.029073471203446388, -0.014844603836536407, 0.05273916944861412, -0.02535228058695793, 0.000591475167311728, -0.0015661123907193542, -0.016276860609650612, -0.023531842976808548, -0.02754751592874527, -0.02346491441130638, 0.040772464126348495, 0.024749930948019028, -0.0135395098477602, 0.023076733574271202, -0.0011084930738434196, 0.026262501254677773, -0.003463517874479294, 0.010601376183331013, 0.0036308374255895615, -0.029876606538891792, 0.02495071478188038, -0.0042934236116707325, 0.0065689715556800365, -0.01367336604744196, 0.037586696445941925, 0.010012410581111908, 0.005374308675527573, 0.03501666709780693, -0.013198178261518478, -0.017026452347636223, -0.006709520239382982, 0.010695075616240501, 0.03978193178772926, -0.013639901764690876, 0.03557886183261871, 0.0031272051855921745, -0.01932877115905285, -0.0029046700801700354, 0.009149041026830673, -0.011712378822267056, 0.0006768081802874804, 0.009550608694553375, -0.018217768520116806, 0.01198678370565176, -0.008091581054031849, 0.03804180771112442, -0.0060737053863704205, 0.007629778236150742, -0.004490860737860203, -0.0008027162402868271, 0.005508164409548044, 0.02306334674358368, -0.03319622948765755, 0.008452991023659706, -0.0064551942050457, 0.00452767126262188, 0.0142824100330472, -0.005966620519757271, -0.02730657532811165, 0.00017819547792896628, -0.013158021494746208, -0.010126188397407532, 0.009557301178574562, 0.029849834740161896, -0.030037233605980873, -0.020265761762857437, 0.023090118542313576, 0.02746720239520073, 0.009195891208946705, 0.028082938864827156, 0.009932097047567368, 0.015192628838121891, 0.003938705660402775, 0.022648394107818604, -0.6249457597732544, -0.003557216841727495, 0.003051911247894168, -0.04162914305925369, 0.020841341465711594, 0.007228211034089327, 0.0018321507377550006, -0.006913649849593639, -0.004748533014208078, 0.024067265912890434, 0.0024094036780297756, -0.00905534252524376, 0.004236534703522921, 1.8928041754406877e-05, -0.00980493426322937, -0.03921973705291748, 0.005702255293726921, -0.014416265301406384, -0.022019272670149803, -0.02649005502462387, -0.01499184500426054, 0.015661124140024185, -0.04087955132126808, -0.00040909668314270675, -6.818278052378446e-05, 0.031054535880684853, 0.0327678918838501, -0.004812114406377077, 0.011899776756763458, -0.0071211266331374645, -0.01705322414636612, -0.015902064740657806, 0.017575262114405632, 0.015902064740657806, 0.035980429500341415, 0.002128306543454528, -0.03445447236299515, 0.008787631057202816, 0.0023491685278713703, 0.03466864302754402, -0.024535760283470154, -0.03410644829273224, 0.001064989948645234, -0.011029714718461037, 0.010193116031587124, -0.004979434423148632, -0.007000656332820654, 0.012401736341416836, 0.014215481467545033, -0.026503439992666245, 0.010514370165765285, -0.006421729922294617, -0.002252123085781932, -0.01567450910806656, 0.016651656478643417, -0.006361495237797499, 0.047732964158058167, -0.012997394427657127, 0.010079339146614075, -0.03895202651619911, -0.007857332937419415, 0.02078779973089695, 0.013733601197600365, 0.00626779580488801, -0.029849834740161896, 0.020131906494498253, -0.03349070996046066, -0.015554039739072323, 0.014857989735901356, -0.015353255905210972, 0.017856357619166374, 0.009557301178574562, 0.0037948107346892357, -0.005263878032565117, 0.0016999681247398257, 0.005488086026161909, 0.029582122340798378, -0.0030368526931852102, -0.004822153598070145, 0.0097647774964571, 0.010755310766398907, -6.473180837929249e-05, -0.01118364930152893, -0.04995496943593025, 0.05932487174868584, 0.009115577675402164, 0.013111172243952751, 0.01689259707927704, 0.010795467533171177, 0.015928834676742554, -0.006274488754570484, 0.0189004335552454, -0.0038081964012235403, -0.03415999189019203, -0.0026938472874462605, 0.012461971491575241, -0.01418871060013771, -0.012555669993162155, 0.029501810669898987, -0.011518288403749466, 0.01499184500426054, -0.009717928245663643, 0.013044243678450584, 0.031188393011689186, -0.0063347239047288895, 0.05215020477771759, -0.004467436112463474, 0.018338238820433617, 0.03391905128955841, -0.022728707641363144, -0.03207184001803398, -0.04192362353205681, 0.013151328079402447, 0.017039839178323746, 0.007489230018109083, -0.01524617150425911, 0.010741924867033958, -0.004581213463097811, -0.021711405366659164, -0.010407285764813423, -0.004671566188335419, 0.004186338745057583, -0.0021400190889835358, -0.004674912430346012, 0.02610187418758869, -0.014523349702358246, 0.015594196505844593, 0.018137454986572266, -9.078400580619927e-06, 0.005876267794519663, 0.0018522291211411357, -0.0035940271336585283, 0.008305749855935574, 0.002954866038635373, 0.027172720059752464, -0.03290174528956413, 0.015808366239070892, 0.011745843105018139, -0.0007475007441826165, -0.03828274831175804, -0.0026486709248274565, -0.002737350296229124, 0.013706830330193043, -0.01749494858086109, -0.042191337794065475, -0.02931441180408001, -0.006254410371184349, 0.006180789787322283, -0.009691157378256321, 0.022380683571100235, -0.010795467533171177, 0.006485311780124903, -0.006967192515730858, 0.017869744449853897, 0.02417435124516487, -0.012174181640148163, -0.012207644991576672, -0.00909549929201603, -0.014750905334949493, 0.005581785459071398, -0.009831706061959267, 0.03335685655474663, -0.0032744465861469507, -0.001602086122147739, -0.0030084082391113043, -0.03241986408829689, -0.01532648503780365, 0.02397356741130352, 0.007214825600385666, -0.0264498982578516, -0.019127989187836647, 0.0020563590805977583, -0.02491055801510811, -0.02671761065721512, -0.00121055799536407, -0.013231641612946987, -0.02608848735690117, 0.0064451550133526325, 0.006619167514145374, -0.0008683892665430903, 0.01349935308098793, 0.021550778299570084, -0.012134024873375893, -0.01118364930152893, 0.013352111913263798, 0.009336438961327076, 0.005096558015793562, -0.005461315158754587, 0.009858476929366589, -0.002255469560623169, 0.019877580925822258, 0.04307478293776512, -0.018445324152708054, 0.007080969866365194, -0.01118364930152893, 0.020573630928993225, -0.009309668093919754, 0.022019272670149803, -0.010239965282380581, 0.04004964232444763, 0.04087955132126808, -0.002740696771070361, 0.013867456465959549, -0.021001968532800674, 0.003289505373686552, -0.031108079478144646, 0.009356517344713211, -0.017776045948266983, 0.006164057645946741, -0.0077970982529222965, 0.015928834676742554, -0.01737447828054428, 0.0069069573655724525, -0.018405167385935783, 0.008640388958156109, 0.022541310638189316, -0.004350312054157257, 0.03533792123198509, 0.025968017056584358, -0.02299642004072666, 0.01863272115588188, -0.004490860737860203, 0.022340526804327965, 0.008968335576355457, -0.0386575423181057, 0.008680545724928379, 0.013854071497917175, -0.017735889181494713, -0.026142030954360962, -0.054479293525218964, 0.013412347063422203, -0.0013243354624137282, 0.013071015477180481, -0.006579010747373104, -0.0012072116369381547, 0.029073471203446388, 0.04730462655425072, -0.010434056632220745, 0.026905007660388947, -0.012649369426071644, -0.008780937641859055, 0.03863077238202095, 0.0019158106297254562, -0.021483849734067917, 0.036837104707956314, 0.014161939732730389, 0.018579179421067238, 0.01619654707610607, -0.0021048819180577993, 0.006592396181076765, -0.00234247581101954, 0.020466545596718788, -0.011290733702480793, -0.004387122578918934, 0.013720215298235416, 0.027440430596470833, 0.010460827499628067, 0.02770814299583435, 0.026945164427161217, 0.016772126778960228, 0.03290174528956413, -6.818278052378446e-05, 0.014081626199185848, 0.01056791190057993, 0.025794005021452904, -0.016169775277376175, -0.019087832421064377, -0.027226261794567108, -0.01084900926798582, -0.0030903948936611414, -0.0013879169709980488, -0.009630922228097916, -0.012743068858981133, -0.0034601713996380568, 0.01851225085556507, -0.0003846261533908546, -0.020761027932167053, 0.025365667417645454, 0.007984495721757412, -0.0027841997798532248, -0.009256125427782536, -0.0009503759210929275, 0.00803803838789463, 0.04759910702705383, -0.028323879465460777, -0.002337456215173006, 0.015741437673568726, -0.015192628838121891, -0.001461537554860115, 0.011223805136978626, -0.008834480307996273, 0.019623255357146263, -0.0010541140800341964, -0.009557301178574562, -0.009744699113070965, -0.014764290302991867, 0.016477644443511963, -0.0008261410403065383, 0.00045176318963058293, 0.002872879384085536, -0.02279563620686531, 0.013653287664055824, -0.01886027678847313, -0.014041469432413578, 0.037426069378852844, 0.013827299699187279, -0.02397356741130352, 0.0007830561953596771, 0.008272286504507065, -0.006940421182662249, -0.009463602676987648, -0.02923409827053547, -0.032446637749671936, -0.02789553999900818, 0.016772126778960228, -0.006615820806473494, 0.009195891208946705, 0.015487111173570156, 0.013606438413262367, 0.01110333576798439, -0.008272286504507065, -0.010039182379841805, 0.01811068505048752, 0.013071015477180481, 0.01658472791314125, 0.0189004335552454, -0.03266080468893051, 0.0382024347782135, -0.012093868106603622, -0.015299713239073753, -0.018686264753341675, -0.005966620519757271, 0.006338070146739483, -0.012528899125754833, 0.012006862089037895, -0.015125701203942299, -0.0035839879419654608, -0.018217768520116806, 0.010360435582697392, -0.0009871862130239606, -0.02082795649766922, -0.02361215651035309, 0.02086811326444149, -0.01752171851694584, 0.006328030955046415, -0.0016957852058112621, 0.011478131636977196, 0.02070748619735241, -0.022688550874590874, 0.0071345120668411255, 0.011391125619411469, 0.001495001488365233, 0.021363379433751106, -0.016450872644782066, -0.028993157669901848, 0.029421497136354446, 0.008104966022074223, 0.003557216841727495, -0.00931636057794094, 0.029260870069265366, 0.02113582380115986, 0.023090118542313576, -0.015928834676742554, -0.01981065236032009, -0.0004584559937939048, 0.03266080468893051, 0.013057629577815533, -0.020854728296399117, -0.00957068707793951, -0.006913649849593639, -0.01886027678847313, -0.0023976913653314114, 0.002295626327395439, 0.0032259237486869097, 0.005635327659547329, -0.0028260296676307917, -0.014603663235902786, -0.004992819856852293, 0.008948257192969322, 0.0023324366193264723, -0.007743555586785078, 0.0022119665518403053, 0.0030368526931852102, -0.018605951219797134, -0.012033632956445217, -0.04058506712317467, 0.01869964972138405, -0.01398792676627636, 0.0003229270223528147, -0.021671248599886894, -0.023036576807498932, 0.0142824100330472, -0.007261674851179123, -0.01009941753000021, -0.008198665454983711, 0.001979392021894455, -0.024830244481563568, -0.005193603690713644, 0.03351748362183571, 0.012776532210409641, -0.001954294042661786, 0.007730170153081417, -0.006552239414304495, 0.03828274831175804, -0.019944507628679276, -0.02746720239520073, 0.006204214412719011, 0.0023943448904901743, 0.017280777916312218, 0.01287023164331913, -0.0123816579580307, 0.00787741132080555, -0.0021416922099888325, -0.007910875603556633, -0.011585216037929058, -0.006127247586846352, -0.019971279427409172, -0.013800528831779957, -0.017789430916309357, 0.029528580605983734, 0.03386550769209862, 0.0037981572095304728, -0.0006650958093814552, -0.015473726205527782, -0.017950057983398438, 0.002695520408451557, -0.011002943851053715, -0.003875124268233776, -0.004454050678759813, -0.003714497433975339, 0.01914137415587902, 0.023397987708449364, -0.021015355363488197, -0.03477572649717331, 0.018445324152708054, -0.025968017056584358, -0.006060319487005472, 0.007977803237736225, -0.015928834676742554, 0.013506046496331692, 0.013452503830194473, 0.0264498982578516, 0.0009662712691351771, -0.03014431707561016, 0.006913649849593639, -0.01800359971821308, 0.010320278815925121, 0.005310727283358574, -0.021858645603060722, 0.009671078994870186, -0.018338238820433617, -0.023759396746754646, -0.00811835192143917, 0.0106080686673522, 0.016049304977059364, 0.017709117382764816, 0.017026452347636223, -0.007636471185833216, -0.03828274831175804, 0.018244540318846703, -0.010280122049152851, 0.007040813099592924, -0.021015355363488197, -0.00023424757819157094, 0.00764316413551569, -0.00010117613419424742, -0.0010516042821109295, -0.004444011487066746, -0.01202694047242403, -0.02602156065404415, -0.015165857970714569, 0.010969479568302631, 0.01017973106354475, 0.028752217069268227, -0.03458832949399948, 0.012200952507555485, -0.0039554378017783165, 0.006143979262560606, -0.011478131636977196, -0.040852777659893036, -0.02338460087776184, 0.005136714782565832, 0.006123900879174471, 0.006241024937480688, 0.0020931693725287914, 0.005270570516586304, 0.016718585044145584, 0.027440430596470833, 0.0015334850177168846, 0.014978460036218166, 0.002959885634481907, -0.025285353884100914, -0.030626198276877403, 0.004621370229870081, -0.01944924145936966, 0.0009980619652196765, 0.009269511327147484, 0.018953975290060043, 0.005066440440714359, 0.03812212124466896, -0.015165857970714569, -0.006435115821659565, 0.006344763096421957, -0.030251402407884598, 0.00476526515558362, -0.006408344488590956, 0.00265201716683805, 0.023665698245167732, 0.0016397330909967422, -0.008339214138686657, 0.005300688091665506, -0.006860107649117708, 0.014054855331778526, 0.0006366514717228711, 0.016049304977059364, -0.012127332389354706, 0.008519919589161873, -0.00825220812112093, 0.00844629853963852, -0.028484506532549858, 0.007027427665889263, -0.019837424159049988, 0.0030251401476562023, -0.0029080163221806288, -0.008600233122706413, 0.033062372356653214, -0.016397330909967422, -0.020024821162223816, -0.009476987645030022, -0.00042394630145281553, -0.024000337347388268, -0.003314603352919221, 0.021631091833114624, -0.011350968852639198, -0.002098188968375325, -0.020854728296399117, -0.03592688590288162, 0.007703399285674095, 0.005237106699496508, 0.02401372417807579, 0.00043126652599312365, 0.017267392948269844, -0.027360117062926292, -0.01503200177103281, -0.013559588231146336, -0.01752171851694584, 0.05030299350619316, -0.004959356039762497, 0.03828274831175804, -0.0015861907741054893, -0.005123329348862171, -0.0378008671104908, 0.004688297864049673, 0.0018589218379929662, 0.014603663235902786, -0.0006274488987401128, 0.0022822406608611345, -0.008995107375085354, -0.006140633020550013, 0.018619336187839508, -0.009229354560375214, -0.011558445170521736, -0.02624911442399025, 0.019743725657463074, 0.0057357195764780045, -0.004032404627650976, -0.0019492745632305741, 0.010092724114656448, -0.026342812925577164, 0.013017472811043262, -0.007669935002923012, -0.00488238874822855, -0.02078779973089695, -0.007462458685040474, -0.0006818277761340141, 0.013666673563420773, -0.021938959136605263, 0.02616880089044571, -0.01587529294192791, -0.00392197398468852, -0.011678915470838547, -0.014001312665641308, -0.018070528283715248, -0.003046891652047634, 0.00856676883995533, 0.03796149417757988, -0.012642676942050457, -0.006709520239382982, 0.017187079414725304, -0.0007930953870527446, -0.012970623560249805, -0.021738175302743912, -0.004869003314524889, 0.024415289983153343, -0.000960415112785995, 0.00292307510972023, -0.03638199716806412, 0.010594683699309826, 0.01924845762550831, 0.011437974870204926, -0.014429651200771332, -0.00038588105235248804, -0.01261590514332056, 0.0003218812635168433, 0.042940929532051086, 0.01287023164331913, -0.015085544437170029, -0.01507215853780508, -0.0032108649611473083, 0.001715026912279427, -0.014175324700772762, -0.005511511117219925, 0.032286010682582855, -0.03887171298265457, -0.014242253266274929, 0.0020295879803597927, -0.01402808353304863, -0.0008006247808225453, -0.005370962433516979, -0.01800359971821308, 0.009905326180160046, 0.02499087154865265, 0.004792036022990942, 0.020386232063174248, -0.01318479236215353, -0.007288446184247732, -0.02102874033153057, 0.003133897902444005, -0.006351456046104431, -0.006451847497373819, 0.027761684730648994, -0.0193020012229681, -0.010320278815925121, -0.02318381704390049, -0.014563506469130516, 0.016812283545732498, -0.012374965474009514, -0.0007249126210808754, 0.004233188461512327, 9.045721526490524e-05, 0.004099332727491856, 0.009711235761642456, -0.023036576807498932, 0.026222344487905502, -0.006940421182662249, -0.03450801596045494, 0.037586696445941925, 0.005173525307327509, 0.012368272058665752, -0.021202752366662025, -0.008285671472549438, 0.009704542346298695, -0.03367811068892479, -0.03541823476552963, 0.008432912640273571, 0.014255638234317303, 0.004112718161195517, -0.0064920042641460896, -0.02342475764453411, -0.01520601473748684, -0.01001910399645567, 0.017160309478640556, -0.017347706481814384, 0.00931636057794094, 0.0014966747257858515, 0.0024227893445640802, 0.015473726205527782, 0.009149041026830673, -0.01595560647547245, -0.010126188397407532, 0.011016328819096088, -0.008995107375085354, -0.012227723374962807, -0.030974222347140312, -0.005411119200289249, 0.042780302464962006, 0.031456105411052704, -0.011832849122583866, -0.018726421520113945, -0.004909160081297159, -0.022768864408135414, -0.008432912640273571, 0.005809340160340071, 0.0035772952251136303, 0.024187736213207245, 0.012080482207238674, -0.0011252249823883176, 0.021778332069516182, -0.01133758295327425, 0.024294821545481682, -0.05049039423465729, 0.0015083871548995376, 0.007228211034089327, 0.016758741810917854, -0.0032744465861469507, -0.010668303817510605, 0.004504246171563864, -0.044145628809928894, 0.002407730557024479, -0.01654457300901413, 0.024629460647702217, 0.032286010682582855, -0.032526951283216476, 0.008921486325562, -0.006194175221025944, 0.021979115903377533, 0.0216177050024271, 0.0013552895979955792, 0.005926463752985001, -0.028591590002179146, 0.001455681398510933, 0.0034434394910931587, 0.01177261397242546, -0.0258207768201828, -0.014335951767861843, 0.0034702105913311243, 0.009878555312752724, 0.013659980148077011, 0.009738006629049778, 0.014657205902040005, 0.01985080912709236, -0.03148287534713745, 0.001546034007333219, -0.013666673563420773, 0.005350884050130844, 0.01084900926798582, -0.015446954406797886, 0.0028310492634773254, 0.02263500913977623, -0.013773757964372635, -0.024923942983150482, -0.0007759451400488615, 0.027654599398374557, 0.01788312941789627, -0.0024595996364951134, -0.012448585592210293, 0.021898802369832993, -0.020105134695768356, 0.018953975290060043, -0.020105134695768356, -0.0003413321974221617, -0.014550121501088142, 0.01685244031250477, 0.010802160017192364, -0.020426388829946518, -0.010681689716875553, 0.013097786344587803, -0.013974541798233986, 0.017829587683081627, -0.015701280906796455, 0.00522706750780344, 0.022701937705278397, 0.025767233222723007, -0.0323127806186676, 0.013646595180034637, -0.021738175302743912, 0.01009941753000021, 0.02082795649766922, -0.02425466477870941, 0.0010800486197695136, 0.19210979342460632, -0.01859256438910961, 0.01944924145936966, 0.024669617414474487, -0.0025984749663621187, 0.008600233122706413, 0.04114726185798645, 0.014724133536219597, -0.010521062649786472, -0.007000656332820654, -0.041361428797245026, 0.01877996325492859, -0.02200588770210743, 0.008272286504507065, 0.012354887090623379, -0.03490958362817764, -0.009041956625878811, -0.0331694558262825, -0.012488742358982563, -0.0038081964012235403, -0.00155440007802099, 0.008954950608313084, -0.004377083387225866, -0.01499184500426054, 0.02417435124516487, 0.023290902376174927, -0.011069871485233307, 0.006682748906314373, 0.04055829718708992, -0.007984495721757412, -0.021122438833117485, 0.009048649109899998, 0.003707804484292865, 0.008613618090748787, -0.0007374616106972098, -0.00557174626737833, 0.0302246306091547, -0.006371534429490566, 0.010708460584282875, 0.033972591161727905, 0.012649369426071644, -0.03480249643325806, 0.01670519821345806, -0.011364353820681572, 0.02632942795753479, 0.03480249643325806, 0.008941564708948135, -0.0005797627381980419, -0.019636640325188637, 0.038844943046569824, -0.02157754823565483, 0.007656549569219351, 0.024120807647705078, 0.0008378534112125635, -0.012977316044270992, 0.021122438833117485, 0.0037814253009855747, 0.0007353700930252671, 0.05231083184480667, 0.020613787695765495, 0.0031154928728938103, 0.04205748066306114, -0.0161563903093338, 0.028778988867998123, 0.002340802690014243, 0.024923942983150482, -0.030197858810424805, -0.011819464154541492, 0.009028570726513863, -0.018485480919480324, 0.008225436322391033, -0.015527267940342426, -0.01157183013856411, 0.026275886222720146, -0.013325341045856476, -0.005427851341664791, 0.036569394171237946, 0.010286815464496613, -0.01658472791314125, 0.03450801596045494, -0.0061975219286978245, 0.002283914014697075, -0.012649369426071644, 0.00272563798353076, -0.016772126778960228, -0.005474700592458248, 0.006311299279332161, -0.012943851761519909, 0.0021617705933749676, -0.01173245720565319, -0.0006119718309491873, -0.007516000885516405, 0.004735147580504417, -0.009878555312752724, 0.01483121793717146, -0.013171406462788582, -0.014496578834950924, 0.021082282066345215, -0.015259556472301483, -0.01595560647547245, 0.0037814253009855747, 0.06698141992092133, 0.024227892979979515, 0.02947503887116909, 0.0033781847450882196, 0.00011775123857660219, 0.016798898577690125, -0.01141789648681879, 0.007301831617951393, -0.027186105027794838, 0.0010206501465290785, -0.02310350351035595, 0.00695380661636591, 0.009436830878257751, -0.005367616191506386, -0.011698993854224682, -0.019703568890690804, -0.011197034269571304, -0.03399936482310295, -0.020493317395448685, 0.023638928309082985, -0.025258582085371017, -0.017535105347633362, 0.013117864727973938, -0.014269024133682251, -0.009999025613069534, -0.04738494008779526, 0.036569394171237946, -0.0021249603014439344, -0.01788312941789627, 0.03215215355157852, -0.033972591161727905, 0.005685523618012667, 0.01634378917515278, 0.00195931363850832, -0.010755310766398907, -0.002402710961177945, -0.020680714398622513, -0.03049234300851822, 0.023746011778712273, 0.016718585044145584, -0.012354887090623379, -0.01564773917198181, -0.013880842365324497, 0.023157047107815742, -0.03440093249082565, 0.011558445170521736, 0.008011267520487309, -1.9712351786438376e-05, -0.01363320928066969, -0.021711405366659164, -0.014590278267860413, 0.0018037064000964165, -0.023009805008769035, -0.003158995881676674, -0.02695854939520359, 0.00817189458757639, -0.023478301241993904, 0.013813914731144905, -0.006465233396738768, -0.03469541296362877, 0.0030619504395872355, -0.012963930144906044, -0.02428143471479416, -0.0025415862910449505, -0.012401736341416836, -0.16833700239658356, 0.0012197606265544891, 0.0306529700756073, 0.004715069197118282, 0.01689259707927704, 0.0335710234940052, 0.023478301241993904, -0.0027892193756997585, 0.0014155246317386627, -0.004116064868867397, 0.015928834676742554, 0.00422314926981926, -0.03081359714269638, 0.005250492133200169, -0.010654918849468231, -0.004400508012622595, 0.004490860737860203, 0.033222999423742294, 0.036730021238327026, 0.02425466477870941, 0.01202694047242403, -0.01524617150425911, 0.009403367526829243, 0.012602520175278187, -0.009905326180160046, 0.005541628692299128, -0.014563506469130516, 0.008004574105143547, 0.0021249603014439344, -0.03544500470161438, -0.016691813245415688, -0.006087090820074081, -0.0017200465081259608, 0.002734003821387887, 0.008299057371914387, 0.0048790425062179565, -0.011424588970839977, -0.019127989187836647, -0.0037211901508271694, 0.003092068014666438, 0.01839178241789341, 0.017026452347636223, -0.012020247057080269, 0.01745479181408882, 0.0071345120668411255, 0.03434738889336586, 0.0073821451514959335, -0.014590278267860413, -0.024334978312253952, -0.01414855383336544, 0.009577379561960697, -0.0030770092271268368, 0.01503200177103281, -0.008365985006093979, 0.039433907717466354, -0.018659492954611778, -0.02691839449107647, -0.007656549569219351, -0.016946138814091682, 0.012113946489989758, -0.010681689716875553, -0.022862564772367477, -0.01882012002170086, 0.002827703021466732, 0.013599744997918606, -0.018365010619163513, 0.000875918660312891, 0.018793348222970963, -0.035659175366163254, -0.008954950608313084, -0.030171088874340057, -0.005682176910340786, 0.051936034113168716, -0.0025466058868914843, -0.012160795740783215, 0.020814571529626846, 0.0018237847834825516, 0.016691813245415688, 0.004694990813732147, -0.010634840466082096, 0.010152959264814854, 0.015018616802990437, -0.0032426558900624514, 0.020145291462540627, 0.012495435774326324, 0.014804447069764137, -0.015165857970714569, 0.00884117279201746, 0.010420670732855797, -0.021095668897032738, 0.013084400445222855, -0.03571271523833275, -0.01056791190057993, 0.014777676202356815, 0.011605294421315193, 0.010875780135393143, -0.0071345120668411255, -0.01611623354256153, 0.016999682411551476, -0.022460997104644775, 0.008191972970962524, -0.0011921528493985534, -0.028404192999005318, -0.01182615663856268, 0.03292851895093918, 0.005558360368013382, 0.0033748382702469826, 0.0003463517932686955, 0.03587334230542183, 0.01894059032201767, -0.032205697149038315, -0.002934787655249238, -0.004788689780980349, 0.009798241779208183, 0.0033949166536331177, 0.019074445590376854, -0.022487767040729523, -0.010735232383012772, -0.0047552259638905525, 0.000811082252766937, 0.03525760769844055, -0.003207518719136715, 0.012395043857395649, 0.022889334708452225, 0.004865657072514296, 0.006187482737004757, -0.1033366471529007, -0.04990142956376076, 0.0021584241185337305, 0.006451847497373819, -0.010969479568302631, 0.0026570367626845837, -0.031134849414229393, 0.003520406549796462, -0.00403909757733345, 0.0174414049834013, -0.04722431302070618, 0.008412834256887436, -0.013760372065007687, -0.013800528831779957, -0.023786168545484543, 0.015420183539390564, -0.01835162565112114, -0.016879212111234665, -0.013372190296649933, 0.018579179421067238, 0.018405167385935783, -0.028939615935087204, -0.009162426926195621, -0.0004592925834003836, -0.008399449288845062, -0.0005906385486014187, -0.012515513226389885, -0.01748156175017357, 0.006220946554094553, -0.0016606480348855257, -0.00611051544547081, -0.01133758295327425, 0.01117695588618517, -0.008901407942175865, 0.003731229342520237, 0.03560563176870346, -0.02845773473381996, -0.01214071735739708, 0.018338238820433617, -0.017347706481814384, -0.011558445170521736, 0.003252695081755519, 0.018766578286886215, 0.0019275229424238205, -0.0018488826462998986, -0.005150100216269493, -0.021992500871419907, 0.009356517344713211, -0.012047018855810165, -0.018672877922654152, -0.026275886222720146, -0.028163252398371696, -0.02947503887116909, -0.01705322414636612, 0.01725400798022747, 0.009677771478891373, 0.0029013236053287983, 0.017066609114408493, -0.014349337667226791, -0.016477644443511963, 0.013057629577815533, 0.0057691833935678005, -0.004490860737860203, 0.03999610245227814, 0.01041397824883461, -0.008198665454983711, -0.007817176170647144, -0.013131250627338886, 0.0053040343336761, -0.011698993854224682, -0.026195572689175606, 0.030840367078781128, -0.004129450302571058, 0.011324197053909302, -0.021751560270786285, -0.005903039127588272, -0.01418871060013771, 0.010936015285551548, 0.028859302401542664, -0.03544500470161438, 0.0012356559745967388, -0.03571271523833275, 0.014683976769447327, -0.023009805008769035, -0.0032995445653796196, 0.005173525307327509, 0.0025599913205951452, -0.010159652680158615, 0.01487137470394373, -0.025004256516695023, 0.020935041829943657, -0.013285184279084206, 0.01149821002036333, -0.033811964094638824, -0.004152874927967787, 0.0009060361771844327, 0.028270335868000984, 0.007817176170647144, 0.02180510386824608, -0.0009060361771844327, -0.02998369000852108, 0.010480905883014202, -0.04299446940422058, 0.03081359714269638, -0.03311591595411301, -0.029849834740161896, -0.003727882867679, 0.01495168823748827, 0.024067265912890434, -0.024027109146118164, 0.01910121738910675, 0.01057460531592369, -0.020172063261270523, 0.01956971175968647, -0.0012649369891732931, -0.013191484846174717, -0.01349935308098793, -0.019917737692594528, -0.012060403823852539, -0.021015355363488197, 0.0344277024269104, 0.009122270159423351, -0.006421729922294617, 0.004551095888018608, 0.009035264141857624, 0.02671761065721512, -0.020212220028042793, -0.00361075927503407, -0.012937159277498722, 0.02200588770210743, -0.005176871549338102, -0.013378883711993694, 0.006421729922294617, -0.006508736405521631, 0.011926548555493355, 0.02114921063184738, 0.003660955000668764, 0.005066440440714359, 0.021055512130260468, 0.009811627678573132, 0.03415999189019203, 0.039166197180747986, -0.008807709440588951, -0.038844943046569824, -0.007803790736943483, -0.019034288823604584, -0.01017973106354475, -0.0004120247613172978, 0.0016656676307320595, 0.03453478589653969, 0.029582122340798378, -0.01697291061282158, 0.031777359545230865, 0.006880186032503843, -0.00037416868144646287, -0.02770814299583435, 0.008258900605142117, -0.028993157669901848, 0.020225604996085167, -0.007890797220170498, -0.0020580324344336987, -0.010949401184916496, 0.05552336946129799, -0.011504902504384518, 0.004621370229870081, 0.0015200994675979018, 0.015433569438755512, -0.02149723470211029, -0.03480249643325806, 0.010447442531585693, -0.006023509427905083, -0.011484824120998383, -0.020694101229310036, -0.0010917610488831997, -0.00931636057794094, 0.02778845652937889, 0.03260726481676102, 0.01021988783031702, -0.02283579297363758, 0.006140633020550013, -0.012722990475594997, 0.01877996325492859, 0.03954099118709564, -0.008814401924610138, 0.012582441791892052, 0.015982378274202347, 0.02998369000852108, 0.0019643332343548536, -0.013459197245538235, 0.007971110753715038, -0.022179899737238884, 0.028912844136357307, 0.009503759443759918, 0.019462628290057182, -0.021403536200523376, -0.005969966761767864, 0.009236047975718975, 0.0019693528302013874, -0.02574046328663826, -0.004597945604473352, 0.0009754738421179354, 0.03140256181359291, 0.014242253266274929, 0.0048924279399216175, -0.018244540318846703, -0.010889166034758091, -0.02578062005341053, 0.01210056059062481, -0.030706511810421944, -0.003137244377285242, -0.017347706481814384, 0.02703886292874813, -0.01965002529323101, -0.0004810441459994763, 0.019556326791644096, 0.015272942371666431, -0.023197203874588013, 0.015968991443514824, 0.011725764721632004, -0.02888607420027256, -0.03651585057377815, 0.00595323508605361, -0.002894630888476968, -0.01823115535080433, 0.01520601473748684, -0.008466376923024654, 0.021671248599886894, 0.024187736213207245, 0.023518458008766174, -0.03092068061232567, -0.00825220812112093, -0.0061339400708675385, -0.010347050614655018, 0.01973033882677555, -0.015299713239073753, -0.025593221187591553, 0.009858476929366589, 0.009577379561960697, 0.010521062649786472, 0.012200952507555485, 0.020520087331533432, 0.06826643645763397, 0.006716212723404169, -0.014657205902040005, -0.00016418246377725154, -0.008948257192969322, 0.015902064740657806, -0.004032404627650976, 0.020453160628676414, 0.01182615663856268, -0.02990337647497654, 0.02781522646546364, -0.0032577146776020527, -0.003376511624082923, -0.012488742358982563, -0.021778332069516182, -0.008995107375085354, -0.013827299699187279, 0.019074445590376854, -0.00992540456354618, -0.018177611753344536, 0.0205870158970356, -0.008680545724928379, 0.013599744997918606, -0.02299642004072666, -0.02393341064453125, -0.01511231530457735, -0.004152874927967787, -0.03327654302120209, 0.007428994867950678, -0.03124193474650383, 0.019971279427409172, 0.01928861439228058, -0.0369441919028759, -0.011705686338245869, 0.004668219480663538, 0.002503102645277977, -0.018137454986572266, -0.011116720736026764, 0.032526951283216476, 0.005973313469439745, -0.005394387058913708, -0.02149723470211029, -0.004932584706693888, -0.043636977672576904, -0.015741437673568726, -0.005812686402350664, -0.015781594440340996, -0.02106889709830284, -0.05014236643910408], "83808199-cb49-4a60-bcfe-27a4b9d3b685": [0.01299121044576168, 0.017171723768115044, -0.0024345344863831997, -0.0327133983373642, -0.004538843873888254, 0.02388865128159523, -0.016455065459012985, 0.008536679670214653, -0.015541675500571728, -0.02405727654695511, 0.02769678272306919, 0.00968192983418703, -0.018113218247890472, 0.02654450759291649, 1.4504999853670597e-05, -0.0023379260674118996, 0.015134163200855255, 0.016792315989732742, -0.01587892696261406, 0.0004169535532128066, 0.007236856035888195, 0.018576938658952713, 0.0003317624214105308, 0.009941894561052322, -0.014923380687832832, 0.013820286840200424, 0.029987283051013947, -0.021064169704914093, -0.02085338719189167, 0.0015202667564153671, 0.026207255199551582, -0.015106058679521084, -0.01618807390332222, 0.00558221573010087, -0.04032966494560242, -0.01486717164516449, -0.004911225754767656, 0.009007426910102367, 0.016693951562047005, -0.01416456513106823, 0.01680636778473854, 0.03695714846253395, -0.011227665469050407, -0.010602345690131187, 0.0036184280179440975, 0.004563434980809689, 0.028301024809479713, -0.018169427290558815, -0.009969999082386494, 0.0011786238756030798, 0.021120376884937286, 0.029762448742985725, 0.009253338910639286, -0.01112227514386177, -0.017846226692199707, 0.003959192428737879, -0.00733522092923522, 0.02208997681736946, -0.00478826928883791, -0.015569779090583324, 0.014213747344911098, -0.0007175377686508, -0.028272921219468117, -0.03333169221878052, 0.0016493707662448287, 0.003147681010887027, -0.012049716897308826, 0.003518306417390704, -0.008592887781560421, -0.01564004085958004, 0.015415205620229244, -0.0031828114297240973, 0.007791915908455849, -0.0030405335128307343, 0.031476810574531555, -0.01303336676210165, -0.019785422831773758, -0.015471414662897587, -0.0063937269151210785, -0.007092821411788464, -0.006260231602936983, 0.006214562337845564, -0.008831774815917015, 0.014213747344911098, -0.0022922565694898367, -0.030240220949053764, 0.026094837114214897, 0.027514105662703514, -0.049772705882787704, -0.013672739267349243, -0.006924195680767298, 0.03611401841044426, 0.0032776633743196726, 0.010834205895662308, -0.0036114018876105547, 0.03004349209368229, -0.002996620489284396, 0.01804295741021633, -0.005750841461122036, -0.03083041124045849, 0.013173888437449932, 0.005691119935363531, -0.00577894551679492, 0.007236856035888195, -0.011185509152710438, -0.017031202092766762, 0.025940263643860817, -0.0039732446894049644, 0.00402945326641202, 0.016469117254018784, -0.0047812433913350105, 0.03555193170905113, -0.013974860310554504, -0.025729482993483543, 0.013869469985365868, -0.028441546484827995, -0.009520329535007477, -0.03215131536126137, -0.014839068055152893, -0.0159491878002882, 0.021851088851690292, 0.011585995554924011, -0.0034691239707171917, 0.011382239870727062, 0.00945006962865591, -0.0009265634580515325, -0.00805890653282404, -0.010904466733336449, -0.003418184816837311, -0.007988645695149899, 0.009176052175462246, -0.0018109704833477736, 0.004429939668625593, 0.009119844064116478, 0.0010161459213122725, 0.01571030169725418, -0.033191174268722534, 0.004588026087731123, 0.0028086730744689703, -0.03369705006480217, 0.024928510189056396, 0.018548835068941116, -0.016469117254018784, 0.00243102153763175, -0.020347509533166885, 0.012098899111151695, 0.0033549501094967127, -0.004949869122356176, -0.009063635021448135, 0.017621392384171486, -0.009049583226442337, 0.008958243764936924, 0.0034831759985536337, -0.0006490335799753666, 0.006471014115959406, 0.0013902843929827213, -0.024633415043354034, 0.00945709552615881, 0.02730332314968109, -0.027036331593990326, 0.01271719392389059, -0.0014623015886172652, -0.0010012155398726463, -0.013764078728854656, 0.016820421442389488, 0.03782838210463524, 0.03243235498666763, 0.020024310797452927, 0.011986481957137585, -0.005483850371092558, 0.009857581928372383, 0.018380209803581238, -0.012253472581505775, 0.00976624246686697, 0.021584099158644676, -0.010637476108968258, 0.001287527964450419, -0.000645081396214664, -0.019644903019070625, 0.0007935072062537074, 0.013286305591464043, -0.0016203882405534387, 0.0011408587452024221, 0.04367407411336899, -0.0050271558575332165, -0.00136744964402169, 0.025954317301511765, -0.022469384595751762, -0.007149029988795519, -0.004039992578327656, 0.013778130523860455, 0.01478285901248455, 0.0071911863051354885, -0.015401153825223446, -0.6277375221252441, -0.041116584092378616, -0.031561125069856644, -0.014501816593110561, -0.01922333799302578, 0.004310496151447296, 0.0015167536912485957, 0.01455802470445633, -0.03479311615228653, 0.02716280147433281, -0.016750160604715347, 0.004855017177760601, 0.017031202092766762, -0.019195234403014183, -0.022455330938100815, -0.012063768692314625, -0.00581407593563199, 0.001290162792429328, -0.015373049303889275, 0.007461690343916416, -0.003391837002709508, 0.010862310416996479, -0.009218208491802216, -0.0042964438907802105, 0.020839335396885872, 0.016244282945990562, 0.011867038905620575, -0.015344944782555103, 0.027064437046647072, 0.01812727004289627, -0.03352842479944229, 0.0036008628085255623, 0.007616263814270496, -0.0021886220201849937, 0.053341951221227646, -0.006706387270241976, -0.021148482337594032, -0.0026224821340292692, 0.02124684676527977, 0.03130818530917168, -0.049070097506046295, -0.035692453384399414, 0.02419779822230339, 0.026249412447214127, 0.02208997681736946, 0.00737035134807229, 0.010258067399263382, 0.009485199116170406, -0.016455065459012985, 0.0015141188632696867, -0.009098765440285206, 0.0037800276186317205, -0.011157405562698841, -0.02100796066224575, 0.00406809663400054, -0.007672472391277552, 0.028048086911439896, -0.015541675500571728, 0.010525058954954147, -0.011888116598129272, -0.005266042426228523, 0.013679765164852142, -0.001019658986479044, -0.011375213041901588, -0.003145924536511302, -0.020740969106554985, -0.025785690173506737, -0.009703007526695728, 0.021064169704914093, -0.012309681624174118, 0.024225901812314987, 0.00956951268017292, -0.023832442238926888, -0.01821158267557621, 0.011494657024741173, 0.0435897633433342, -0.004999051336199045, -0.013799209147691727, -0.0020814742892980576, 0.018492626026272774, -0.01007538940757513, -0.01572435349225998, 0.0058527193032205105, -0.01155086513608694, 0.023635711520910263, 0.004352652467787266, -0.01875961758196354, -0.014459659345448017, -0.02779514715075493, 0.013939729891717434, -0.00203404831700027, 0.015288736671209335, -0.005114981904625893, -0.023705972358584404, -0.009618694894015789, 0.013939729891717434, 0.007356299087405205, -0.007071743253618479, -0.00741250766441226, -0.02934088371694088, -0.002824481576681137, -0.022680165246129036, 0.02187919430434704, -0.00558572867885232, 0.03113955818116665, 0.021106325089931488, -0.02661476656794548, 0.010735840536653996, 0.03276960924267769, -0.030633682385087013, -0.0145861292257905, -0.028891215100884438, -0.019785422831773758, 0.01874556392431259, 0.01104498840868473, -0.023607607930898666, -0.00737035134807229, 0.019349807873368263, -0.004391296301037073, -0.022286705672740936, 0.0032583416905254126, 0.027120644226670265, -0.016159970313310623, -0.013370618224143982, 0.027331426739692688, 0.022427227348089218, 0.011768673546612263, -0.018324000760912895, -0.021963506937026978, 0.01836615614593029, 0.0034129153937101364, 0.00022505392553284764, 0.03431534394621849, -0.006077553611248732, 0.005118494853377342, -0.0028859598096460104, 0.02630561962723732, -0.01742466352880001, 0.0006977769662626088, -0.002907037967815995, -0.028610171750187874, -0.0034972282592207193, 0.00562085909768939, -0.014909328892827034, -0.005406563635915518, -0.024169694632291794, -0.01571030169725418, -0.001579988282173872, 0.004380756989121437, 0.01467044185847044, -0.0069066304713487625, 0.0048479908145964146, -0.025153344497084618, 0.04145383462309837, 0.025729482993483543, -0.006126736290752888, 0.013468983583152294, -0.014853119850158691, -0.006523709278553724, -0.004247261676937342, 0.0023326564114540815, 0.03774406760931015, -0.020052414387464523, -0.0004088296554982662, -0.0012409802293404937, -0.0031318722758442163, 0.00025227994774468243, 0.04988512396812439, -0.009794346988201141, -0.038559094071388245, 0.023382773622870445, -0.01666584610939026, 0.006530735641717911, 0.0011803803499788046, 0.00366761046461761, 0.019251441583037376, -0.00813619326800108, 0.023832442238926888, -0.014810963533818722, -0.025195499882102013, 0.008747462183237076, -0.004110252950340509, 0.014192668721079826, -0.023776233196258545, 0.0004140992241445929, 0.01438939943909645, 0.012204290367662907, -0.0021921349689364433, -0.0044439914636313915, -0.006787187419831753, -0.011185509152710438, 0.0068785264156758785, -0.005462772212922573, -0.018633147701621056, -0.0023133347276598215, 0.040976062417030334, 0.0072719864547252655, -0.007531951181590557, 0.009443042799830437, 0.042774736881256104, 0.014951485209167004, 0.014017017558217049, 0.012246446684002876, -0.020052414387464523, 0.004240235313773155, -0.04943545535206795, 0.0021130917593836784, -0.014881224371492863, 0.015344944782555103, 0.008599914610385895, 0.0074897943995893, 0.001328806160017848, -0.029818657785654068, -0.015892978757619858, 0.014108356088399887, 0.038783926516771317, -0.011311979033052921, 0.0016151187010109425, -0.025392230600118637, 0.003493715077638626, 0.014115381985902786, -0.012155107222497463, 0.028343182057142258, 0.00021396590454969555, 0.023790284991264343, 0.018872033804655075, 0.01424185186624527, -0.005476824473589659, -0.005287120584398508, -0.027289271354675293, 0.0031107941176742315, -0.007314142771065235, 0.01171246450394392, 0.008873931132256985, 0.001193554257042706, -0.005761380307376385, 0.009583564475178719, -0.026249412447214127, 0.04679365083575249, 0.0016774750547483563, -0.01428400818258524, -0.0002043050481006503, 0.0018478573765605688, -0.03639506176114082, 0.003184567904099822, 0.0006160988705232739, 0.027528157457709312, 0.01015267614275217, 0.0026207254268229008, 0.03777217119932175, -0.0001502921077189967, 0.02894742414355278, -0.01954653672873974, -0.002611942822113633, 0.01603350043296814, 0.004085661843419075, 0.018324000760912895, 0.0017477358924224973, 0.01272421982139349, 0.01875961758196354, 0.011754621751606464, 0.005803537089377642, 0.02428211085498333, -0.004345626570284367, 0.0039451406337320805, 0.00474611297249794, -0.012056742794811726, -0.02303146943449974, -0.029762448742985725, -0.015892978757619858, -0.0420159213244915, -0.008564784191548824, -0.004893660545349121, 0.010300223715603352, 0.027261165902018547, -0.0057859718799591064, -0.010068363510072231, 0.013876495882868767, 0.006780161056667566, 0.002682203659787774, -0.03083041124045849, -0.023677868768572807, 0.01124874409288168, 0.03853098675608635, 0.0009335895301774144, 0.020024310797452927, -0.006639639846980572, 0.010672605596482754, -0.005160651169717312, -0.00661504827439785, -0.006056475453078747, -0.0053925118409097195, -0.006548300851136446, 0.00024086258781608194, 0.007560055237263441, -0.029453301802277565, 0.019588693976402283, -0.024141589179635048, -0.00786217674612999, 0.010553162544965744, -0.007756785489618778, 0.014768807217478752, -0.05103740096092224, -0.004802321549504995, 0.06093011051416397, -0.01899850368499756, 0.013813260942697525, -0.016764212399721146, -0.009794346988201141, -0.017466818913817406, 0.010229963809251785, 0.010286171920597553, -0.021570047363638878, -0.010194833390414715, 0.027893513441085815, -0.00977326836436987, 0.0070541780441999435, -0.007475742604583502, 0.016679899767041206, -0.01641290821135044, -0.021682463586330414, -0.025954317301511765, -0.01719982922077179, 0.015218475833535194, 0.07363325357437134, 0.039036866277456284, -0.015696248039603233, 0.004155922681093216, 0.014326164498925209, 0.013827312737703323, -0.017944592982530594, -0.0027998904697597027, 0.019448172301054, -0.014305085875093937, -0.006632613483816385, 0.026741236448287964, 0.003372515318915248, -0.012710167095065117, 0.011417370289564133, 0.005146598909050226, -0.007602212019264698, -0.003585054073482752, 0.008796644397079945, -0.03113955818116665, -0.008564784191548824, 0.023523295298218727, 0.042521797120571136, 0.006446422543376684, -0.006102145183831453, -0.018155375495553017, 0.03212320804595947, 0.00021462459699250758, -0.016848525032401085, -0.01276637613773346, 0.0004452774301171303, 0.018562886863946915, 0.01836615614593029, 0.026024576276540756, -0.02327035553753376, 0.03906496986746788, 0.018099166452884674, 0.008768539875745773, 0.02785135619342327, -0.011059040203690529, 0.023481138050556183, 0.01696094125509262, 0.015977291390299797, -0.003997835796326399, 0.010728814639151096, -0.002237804466858506, -0.008466418832540512, 0.029846761375665665, -0.025195499882102013, -0.021148482337594032, 0.012731245718896389, -0.022623958066105843, -0.02030535228550434, -0.018576938658952713, -0.0021710568107664585, -0.001529049244709313, 0.0018057009438052773, 0.003815158037468791, 0.002413456328213215, -0.017790019512176514, -0.022862844169139862, -0.022455330938100815, 0.00657289195805788, -0.002611942822113633, -0.003927575424313545, 0.0005041207768954337, -0.013012288138270378, 0.013560322113335133, -0.02973434329032898, -0.012393994256854057, 0.0026470732409507036, -0.042437486350536346, -0.05227398872375488, -0.013602478429675102, 0.009063635021448135, 0.003107281168922782, -0.0038959579542279243, 0.0055295201018452644, -0.0068785264156758785, 0.007047152146697044, -0.029846761375665665, -0.05618048459291458, 0.007398455869406462, -0.0190547127276659, 0.011642204597592354, 0.01697499491274357, 0.001897039939649403, 0.005768406670540571, -0.000533981597982347, 0.01649722084403038, 0.0036640975158661604, -0.0026277515571564436, -0.009028504602611065, -0.01711551658809185, 0.003044046461582184, 0.01875961758196354, 0.008698279038071632, 0.03431534394621849, 0.018717460334300995, -0.018028905615210533, 0.004187540151178837, -0.0016484925290569663, 0.0142067214474082, -0.00634454470127821, -0.02442263253033161, 0.002604916924610734, 0.0016994315665215254, 0.015148214995861053, -0.017087411135435104, -0.001457032049074769, 0.02872258983552456, -0.02232886292040348, 0.021120376884937286, 0.015977291390299797, 0.030155908316373825, 0.010342380963265896, 0.03558003902435303, 0.007173621095716953, 0.01625833474099636, -0.02335467003285885, -0.0006393727380782366, -0.05081256479024887, 0.0036957147531211376, 0.03841857239603996, -0.015625987201929092, 0.020670708268880844, 0.01467044185847044, -0.008318871259689331, -0.03237614780664444, 0.000978380790911615, 0.013911626301705837, 0.02225860208272934, -0.016609638929367065, -0.020375613123178482, -0.011958377435803413, 0.008297793567180634, -0.018338052555918694, -0.008817723020911217, -0.018422365188598633, 0.024141589179635048, 0.00471098255366087, 0.004840964917093515, -0.0013639365788549185, 0.0006042423192411661, -0.017607340589165688, -0.03611401841044426, 0.007777863647788763, 0.0032969850581139326, 0.024394528940320015, 0.01618807390332222, 0.0010187807492911816, -0.002972029149532318, -0.005308198742568493, 0.0027647600509226322, 0.00953438226133585, -0.01696094125509262, -0.015092006884515285, -0.009984050877392292, 0.03026832640171051, 0.013876495882868767, 0.020951751619577408, -0.008670175448060036, 0.030549367889761925, 0.020417770370841026, -0.0029456813354045153, 0.013806235045194626, -0.0145861292257905, 0.0007724289898760617, -0.0016318056732416153, 0.0016555186593905091, 0.01482501532882452, 0.015977291390299797, 0.032966338098049164, -0.016441011801362038, 0.007812993600964546, 0.022371018305420876, -0.0020024310797452927, 0.004187540151178837, -0.0021956481505185366, -0.04505118355154991, -0.007004995364695787, 0.010173754766583443, -0.013433853164315224, 0.02816050313413143, -0.010862310416996479, -0.0069066304713487625, 0.03619833290576935, 0.005111468490213156, -0.008803670294582844, 0.015611936338245869, 0.009857581928372383, -0.021696515381336212, 0.0024679084308445454, 0.04606293886899948, 0.023523295298218727, -0.026502350345253944, -0.0026786907110363245, -0.02942519634962082, 0.006414805538952351, 0.013525191694498062, 0.0064745270647108555, 0.01884393021464348, 0.0009458852000534534, 0.004426426254212856, -0.004162948578596115, -0.008796644397079945, 0.005216859746724367, -0.027809200808405876, 0.014108356088399887, -0.01890013925731182, -0.026642872020602226, -0.025406282395124435, -0.015696248039603233, 0.01750897616147995, -0.01656748168170452, -0.005613832734525204, 0.0114735784009099, 0.023846494033932686, -0.015288736671209335, -0.03018401376903057, 0.010665579698979855, -0.020375613123178482, 0.029003633186221123, -0.00048084690934047103, 0.01999620534479618, 0.02445073612034321, 0.004282392095774412, 0.0009652068838477135, 0.018773669376969337, 0.005982701666653156, 0.004531817510724068, 0.020136727020144463, 0.026347776874899864, -0.019251441583037376, -0.0021078221034258604, -0.016708003357052803, 0.027528157457709312, -0.0034058892633765936, -0.020642604678869247, 0.009695981629192829, 0.03462449088692665, 0.011923247016966343, -0.028371285647153854, 0.020375613123178482, -0.03338790312409401, -0.0010328328935429454, 0.002771786181256175, 0.005406563635915518, -0.01572435349225998, -0.0012181454803794622, -0.008550731465220451, 0.013258201070129871, 0.022778531536459923, 0.01711551658809185, -0.0036008628085255623, -0.007286038715392351, -0.009344678372144699, -0.019335754215717316, -0.031223872676491737, -0.00020386591495480388, -0.024717727676033974, 0.008986348286271095, -0.0083680534735322, 0.008459392935037613, -0.006453448906540871, 0.014656390063464642, -0.025476543232798576, -0.01292094960808754, -0.010447771288454533, 0.02615104615688324, -0.013525191694498062, 0.009948920458555222, -0.01860504411160946, -0.0028086730744689703, -0.003822184167802334, 0.0013331974623724818, 0.0030739072244614363, 0.0054592592641711235, 0.0038467752747237682, -0.013890547677874565, 0.01845046877861023, -0.013180914334952831, 0.010735840536653996, 0.014248877763748169, 0.0002625994966365397, -0.011607074178755283, 0.011333056725561619, -0.009140921756625175, -1.6700647393008694e-05, -0.04002051427960396, 0.01977137103676796, -0.012548567727208138, 0.003839749377220869, -0.0064358836971223354, 0.01697499491274357, -0.009836503304541111, 0.006871500052511692, 0.0229471568018198, 0.0021324134431779385, 0.020136727020144463, -0.0004527426208369434, -0.009857581928372383, -0.0498008094727993, -0.0014561538118869066, 0.0004369339731056243, -0.0037273322232067585, 0.013651661574840546, -0.004735573660582304, -0.0020639090798795223, -0.010658553801476955, 0.004640721715986729, 0.001036345842294395, 0.005452233366668224, -0.015696248039603233, 0.007440612185746431, 0.004310496151447296, 0.010806101374328136, -0.002104309154674411, -0.024844197556376457, 0.03409051150083542, -0.0057543544098734856, -0.001601944793947041, 0.014333190396428108, 0.018886085599660873, 0.00793946348130703, -0.00581758888438344, -0.021373316645622253, -0.007321168668568134, -0.03105524554848671, -0.0058246152475476265, 0.009871633723378181, 0.001193554257042706, 0.017790019512176514, 0.0002397647622274235, -0.020895542576909065, -0.003152950666844845, -0.01658153347671032, 0.0026101863477379084, 0.01097472757101059, 0.015963239595294, 0.0025768126361072063, 0.03853098675608635, 0.0002060615661321208, 0.008845826610922813, -0.019644903019070625, -0.01812727004289627, 0.009871633723378181, 0.008431288413703442, -0.03631075099110603, -0.0055962675251066685, -0.013349540531635284, 0.02272232249379158, 0.005206320434808731, -0.021064169704914093, -0.006773135159164667, -0.007707602810114622, -0.020979857072234154, -0.0334722138941288, 0.00015128015365917236, 0.011979456059634686, 0.005216859746724367, 0.010412640869617462, 0.0030352638568729162, 0.026347776874899864, -0.01486717164516449, 0.015077954158186913, -0.0031828114297240973, 0.015373049303889275, 0.018352104350924492, 0.03777217119932175, 0.004581000190228224, -0.006618561688810587, -0.009583564475178719, -0.03527089208364487, 0.020108623430132866, -0.00391352316364646, -0.006702874321490526, 0.006931221578270197, -0.00800972431898117, -0.007686524651944637, 0.024099433794617653, -0.01812727004289627, -0.02537817880511284, 0.011867038905620575, -0.006376161705702543, -0.02224455028772354, 0.0005950205959379673, 0.005561137571930885, 0.006586944218724966, -0.0015325623098760843, -0.00833292305469513, -0.004644234664738178, -0.003885418875142932, 0.010511006228625774, -0.0001504018873674795, -0.007482768502086401, 0.025870002806186676, -0.016300491988658905, 0.017860280349850655, -0.032095104455947876, -0.015485466457903385, 0.030605576932430267, 0.016848525032401085, -0.002787594683468342, -0.024998771026730537, 0.014768807217478752, -0.01929359883069992, -0.0003073907282669097, 0.028666380792856216, -0.005940545350313187, 0.008838800713419914, 0.006636126898229122, 0.03361273556947708, -0.028118347749114037, 0.020052414387464523, -0.05901901796460152, -0.023565450683236122, -0.027331426739692688, 0.02123279497027397, 0.029987283051013947, -0.02740168757736683, -0.019167128950357437, -0.015077954158186913, 0.023593556135892868, -0.012148081324994564, 0.0005208076909184456, -0.019434120506048203, -0.013539244420826435, 0.00273489928804338, 0.018267791718244553, -0.022202393040060997, -0.0013779887231066823, -0.00825563631951809, 0.001343736657872796, -0.018717460334300995, -0.00960464309900999, 0.2116815447807312, -0.015344944782555103, 0.03066178597509861, 0.04856422170996666, -0.01752302795648575, 0.011347109451889992, 0.025406282395124435, -0.0009344678255729377, -0.02241317555308342, 0.012857714667916298, -0.005631397943943739, 0.012576672248542309, -0.02498471736907959, 0.003542897757142782, 0.02068476192653179, 0.00937980879098177, -0.009717060253024101, -0.05440991371870041, -0.012028638273477554, -0.000985406804829836, 0.010827179998159409, 0.019897840917110443, -0.029003633186221123, -0.026361828669905663, 0.01874556392431259, 0.003414671868085861, -0.006994456518441439, 0.010679632425308228, 0.03026832640171051, 0.003920549061149359, -0.021668411791324615, 0.016202125698328018, -0.0025451951660215855, -0.004169974941760302, -0.02272232249379158, -0.007637341972440481, 0.017958644777536392, 0.0007675985689274967, 0.04350544884800911, -0.015092006884515285, 0.007609237916767597, -0.029846761375665665, -0.03726629540324211, -0.01882987841963768, 0.003853801405057311, 0.030914723873138428, -0.0034304806031286716, -0.02272232249379158, -0.023481138050556183, 0.00816429778933525, -0.03026832640171051, -0.009049583226442337, 0.03850288316607475, 0.019673006609082222, 0.00657640490680933, -0.00833292305469513, -0.01124171819537878, 0.020726917311549187, 0.012225368060171604, 0.02794972062110901, -0.015232527628540993, 0.01287879329174757, -0.006846908945590258, 0.015935136005282402, -0.012302654795348644, 0.0027436818927526474, -0.03403430059552193, -0.0036149148363620043, 0.014529920183122158, -0.044011324644088745, 0.006664230953902006, -0.013750026002526283, -0.0020603961311280727, 0.02661476656794548, -0.03004349209368229, -0.018071061000227928, 0.019644903019070625, 0.00630590133368969, 0.003980270586907864, 0.03293823450803757, -0.024001067504286766, -0.011234692297875881, -0.008396157994866371, -0.02513929270207882, -0.013321436010301113, -0.04224075376987457, 0.02731737494468689, -0.01783217489719391, 0.003941627219319344, -0.011304953135550022, -0.016553429886698723, -0.00816429778933525, -0.01131900493055582, 0.0031828114297240973, 0.020403718575835228, 0.0026593690272420645, -0.0043386006727814674, 0.02558896131813526, -0.009428991004824638, 0.011867038905620575, -0.022666113451123238, 0.05339816212654114, 0.025083083659410477, -0.007012021727859974, 0.0018320487579330802, -0.006962839048355818, 0.007981619797647, 7.485787591576809e-06, 0.011529787443578243, -0.01773381046950817, -0.029593823477625847, -9.479710570303723e-05, 0.0016203882405534387, -0.011860012076795101, 0.023059574887156487, 0.01735440269112587, 0.001990135293453932, 0.0016221448313444853, 0.016370750963687897, 0.0050552599132061005, 0.011614100076258183, -0.015204424038529396, -0.021148482337594032, 0.011354135349392891, -0.01279448065906763, -0.016862576827406883, -0.024633415043354034, -0.007960541173815727, -0.019827580079436302, -0.010616397485136986, 0.03928980603814125, -0.017171723768115044, 0.000274236430414021, -0.026881758123636246, 0.0009362242999486625, -0.005729763302952051, 0.0025627603754401207, -0.026108890771865845, -0.01712956838309765, -0.005445207003504038, -0.018717460334300995, 0.009091739542782307, -0.007019047625362873, -0.016679899767041206, -0.011136326938867569, -0.03133628889918327, 0.0007834072457626462, -0.014178616926074028, -0.008761513978242874, -0.029678136110305786, -0.008698279038071632, 0.003518306417390704, -0.01128387451171875, 0.011220639571547508, 0.02855396457016468, -0.01136116124689579, -0.011909195221960545, -0.022469384595751762, 0.024071328341960907, 1.702999543340411e-05, -0.040189143270254135, 0.019560588523745537, 0.03628264367580414, -0.018464522436261177, -0.013658687472343445, -0.009246313013136387, -0.18099166452884674, 0.010279146023094654, -0.015302788466215134, -0.021274952217936516, 0.02241317555308342, 0.019265493378043175, 0.02031940594315529, 0.0014745972584933043, 0.005209833849221468, -0.004363191779702902, 0.005157138220965862, 0.019082816317677498, -0.015120110474526882, -0.0011680847965180874, -0.004521278664469719, 0.011726517230272293, -0.003621940966695547, 0.010925544425845146, 0.03074609860777855, 0.012436150573194027, 0.020024310797452927, -0.010433719493448734, 0.011101196520030499, -0.0023818390909582376, 0.001505336258560419, 0.018801772966980934, 0.006629100535064936, 0.010489928536117077, -0.02862422540783882, -0.03361273556947708, 0.012393994256854057, -0.009934868663549423, 0.017621392384171486, 0.0015255362959578633, 0.01132603082805872, -0.007236856035888195, -0.01493743248283863, -0.028315076604485512, -0.024577206000685692, 0.018380209803581238, 0.00793946348130703, 0.035608142614364624, 0.028104295954108238, 0.01315983571112156, 0.006896091625094414, 0.012696115300059319, 0.02467557042837143, -0.02474583126604557, 0.01727009005844593, -0.034118615090847015, 0.020263196900486946, -0.017452767118811607, 0.010855283588171005, 0.013012288138270378, 0.007546003442257643, 0.0008624505717307329, -0.016525326296687126, 0.01936385966837406, 0.00570165878161788, 0.015597883611917496, -0.001884744269773364, -0.02786540798842907, -0.010806101374328136, 0.0015527623472735286, 0.011614100076258183, -0.02537817880511284, -0.035523828119039536, -0.0022992826998233795, -0.035523828119039536, 0.015752457082271576, 0.0021201176568865776, -0.009239287115633488, 0.012225368060171604, -0.004949869122356176, 0.006829343736171722, -0.0006160988705232739, -0.04232506826519966, -0.008382106199860573, -0.001640588277950883, -0.030015386641025543, -9.364439029013738e-05, 0.00790433306246996, 0.00016730837523937225, 1.176730165752815e-05, -0.020642604678869247, -0.02388865128159523, 0.0030001334380358458, -0.006207535974681377, 0.020979857072234154, -0.013454930856823921, 0.020122675225138664, -0.040751226246356964, -0.019939998164772987, -0.00573678920045495, -0.005789484828710556, 0.013511139899492264, 0.012977158650755882, -0.015134163200855255, 0.010286171920597553, -0.009147947654128075, 0.017565185204148293, -0.02685365453362465, -0.03602970764040947, -0.006643152795732021, 0.0002546951873227954, -0.0017890140879899263, -0.049463558942079544, 0.013314410112798214, 0.037153877317905426, 0.0052414508536458015, -0.022047819569706917, 0.0149795887991786, 0.006910143420100212, 0.011424396187067032, 0.0076654464937746525, 0.028315076604485512, -0.0233406163752079, -0.02490040473639965, 0.016230231150984764, 0.00996297225356102, 0.06992348283529282, -0.008269689045846462, 0.0025645168498158455, 0.010159702971577644, 0.011501682922244072, -0.003184567904099822, -0.11404722929000854, -0.005009590648114681, -0.0015553970588371158, 0.0264601930975914, 0.014108356088399887, 0.03321927785873413, -0.012330759316682816, 0.004489661194384098, -0.00558572867885232, 0.03496174141764641, 0.005406563635915518, -0.023537347093224525, -0.006997969467192888, -0.008002698421478271, -0.0268396008759737, -0.004282392095774412, -0.015401153825223446, -0.01821158267557621, -0.008951217867434025, 0.02778109535574913, 0.011782725341618061, -0.00010495197784621269, -0.004205105360597372, -0.004732060711830854, -0.026122942566871643, -0.0063937269151210785, -0.03496174141764641, 0.023171991109848022, -0.009070660918951035, 0.001363058341667056, 0.0074476380832493305, -0.016820421442389488, 0.0032214547973126173, -0.027598418295383453, -0.004212131258100271, -0.013960808515548706, -0.0024099433794617653, -0.002142952522262931, 0.031111454591155052, -0.022061871364712715, 0.008030802011489868, -0.0016177535289898515, 0.021808933466672897, -0.0061478144489228725, -0.01875961758196354, -0.0014491276815533638, -0.05297659710049629, 0.03144870698451996, 0.02272232249379158, -0.026656923815608025, -0.019265493378043175, -0.016989046707749367, -0.03417482227087021, -0.005206320434808731, 0.018267791718244553, 0.012358863838016987, -0.008529653772711754, 0.0149795887991786, -0.012562619522213936, 0.019448172301054, -0.012112950906157494, 0.004018914420157671, -0.010623423382639885, 0.014543972909450531, 0.00721577787771821, 0.011466552503407001, -0.011614100076258183, -0.013251175172626972, 0.023720024153590202, -0.017073359340429306, 0.0007452029385603964, 0.013672739267349243, -0.030858516693115234, 0.021851088851690292, -0.009281443431973457, 0.0006297118379734457, -0.015232527628540993, 0.003409402212128043, 0.012752323411405087, -0.0038643404841423035, -0.006608022376894951, -0.03484932705760002, -0.02637588046491146, -0.016595587134361267, 0.01435426902025938, 0.005129033699631691, -0.00025403648032806814, 0.019349807873368263, 0.007763811387121677, -0.030408848077058792, 0.015120110474526882, 0.018169427290558815, 0.005107955541461706, 0.028427494689822197, -0.003383054630830884, -0.0076935505494475365, 0.019434120506048203, -0.015246580354869366, 0.008346975781023502, 0.010482901707291603, -0.039177387952804565, 0.0030335073824971914, -0.057304657995700836, 0.008473444730043411, -0.029902970418334007, -0.02809024229645729, 0.009295495226979256, -0.014333190396428108, -0.00930252205580473, -0.00021934523829258978, -0.004760164767503738, 0.008782592602074146, -0.027963774278759956, -0.006520196329802275, -0.009211182594299316, -0.0036114018876105547, 0.0015764753334224224, -0.014326164498925209, 0.017916487529873848, 0.001802187878638506, 0.011508708819746971, 0.027724886313080788, 0.028835006058216095, -0.00825563631951809, 0.013595452532172203, 0.016131864860653877, -0.02263800986111164, 0.005072825122624636, 0.005455746315419674, 0.01766354963183403, -0.018464522436261177, 0.0021903784945607185, -0.008670175448060036, -0.0043069832026958466, -0.009717060253024101, -0.0037659755907952785, -0.009941894561052322, -0.001287527964450419, -0.005143085960298777, 0.009948920458555222, -0.003685175674036145, 0.02241317555308342, -0.005406563635915518, -0.019321702420711517, 0.005195781588554382, -0.02467557042837143, -0.0005006077699363232, 0.0072719864547252655, -0.01898445188999176, 0.009147947654128075, 0.01416456513106823, 0.02740168757736683, 0.021598150953650475, 0.0167361069470644, -0.008079985156655312, -0.02950950898230076, 0.013820286840200424, -0.0055470853112638, -0.007264960091561079, -0.014087277464568615, 0.007050665095448494, -0.022061871364712715, 0.0221883412450552, -0.007279012352228165, 0.004363191779702902, -0.006632613483816385, 0.016918785870075226, 0.00725793419405818, -0.020572343841195107, 0.021120376884937286, 0.010721788741648197, -0.024155640974640846, -0.029593823477625847, -0.007805968169122934, 0.010735840536653996, 0.02598242089152336, 0.008796644397079945, 0.02225860208272934, -0.0381094254553318, 0.0005550598143599927, -0.012892845086753368, 0.013258201070129871, 0.01711551658809185, -0.0026523428969085217, -0.015541675500571728, 0.015738405287265778, 0.026881758123636246, 0.009752190671861172, 0.016286438331007957, -0.002503038849681616, 0.028666380792856216, 0.009204156696796417, -0.00840318389236927, 0.0007544246618635952, -0.010440745390951633, -0.0024275085888803005, 0.02076907455921173, 0.015907030552625656, -0.014234825037419796, -0.0066115353256464005, 0.009400886483490467, 0.006544787902384996, -0.0006709900335408747, -0.01617402210831642, 0.0037835408002138138, 0.0018952833488583565, -0.057782430201768875, 0.02164030633866787, -0.008023776113986969, -0.03448396921157837, 0.007012021727859974, 0.01891419105231762, 0.0217948816716671, 0.014796911738812923, 0.021893246099352837, 0.022371018305420876, -0.03943032771348953, 0.0225818008184433, -0.019574642181396484, 0.01132603082805872, -0.015344944782555103, 0.020516134798526764, -0.001884744269773364, -0.0009379808325320482, 0.0435616560280323, 0.0021921349689364433, 0.025940263643860817, 0.010468849912285805, 0.016764212399721146, -0.018717460334300995, -0.016202125698328018, 0.0114735784009099, -0.013567348010838032, 0.012028638273477554, -0.01580866612493992, -0.003906496800482273, 0.0007842854829505086, -0.01128387451171875, 0.006432370748370886, 0.013258201070129871, 0.0024029172491282225, 0.08937165886163712, 0.025504646822810173, -0.011529787443578243, 0.009330625645816326, -0.005237937904894352, -0.021106325089931488, 0.00961166899651289, 0.011375213041901588, 0.008677201345562935, -0.02031940594315529, -0.00045581653830595315, 0.00848047062754631, -0.008684227243065834, -0.04499497637152672, 0.002701525343582034, 0.019012555480003357, 0.019644903019070625, 0.005097416695207357, 0.009162000380456448, 0.0007074378081597388, -0.0009081200114451349, 0.01482501532882452, 0.0006042423192411661, -0.011340082623064518, -0.016047552227973938, -0.002580325584858656, 0.02615104615688324, -0.0221883412450552, -0.0016660577384755015, -0.04527601972222328, 0.007356299087405205, -0.00017839641077443957, -0.012386968359351158, -0.013651661574840546, -0.006485065910965204, 0.006741517689079046, -0.0021710568107664585, -0.005712198093533516, 0.0001344834454357624, -0.005139573011547327, -0.004047018475830555, -0.010616397485136986, -0.012211316265165806, -0.020417770370841026, -0.0005572554655373096, -0.0012620585039258003, -0.03260098397731781, 0.0018935268744826317, -0.022680165246129036], "3363e09a-1ab4-4c17-bb8a-e6752917130a": [-0.004130892921239138, 0.011881102807819843, -0.0028780526481568813, -0.016022436320781708, -0.0031669021118432283, 0.044127821922302246, -0.006504329387098551, -0.007141190115362406, -0.020936354994773865, -0.004190055187791586, 0.02437470480799675, 0.0005072263302281499, 0.01760936714708805, 0.013280107639729977, 0.000762579555157572, -0.008623718284070492, 0.015298573300242424, 0.03457839414477348, -0.009173575788736343, -0.009813915938138962, -0.01183238159865141, 0.01259104534983635, -0.023650841787457466, -0.008526274934411049, -0.025989476591348648, 0.007155110593885183, 0.012180392630398273, -0.021200843155384064, -0.00398124847561121, -0.016829822212457657, 0.011059796437621117, -0.006044954992830753, -0.02324714884161949, 0.003814202966168523, -0.04479600489139557, 0.016760220751166344, 0.01869516260921955, -0.010154967196285725, 0.01197158545255661, -0.013997010886669159, 0.018945731222629547, 0.020240332931280136, -0.01183238159865141, -0.005282810423523188, -0.00773280905559659, 0.0006051044911146164, 0.0017809474375098944, -0.024527831003069878, -0.015061925165355206, 0.014922721311450005, 0.02514033019542694, 0.025042887777090073, -0.018221866339445114, 0.005230608396232128, -0.013175704516470432, 0.009570308029651642, 0.002622264437377453, 0.013182665221393108, -0.02113124169409275, -0.0018131383694708347, 0.0157022662460804, -0.00045719972695223987, -0.011553972028195858, -0.0032138836104422808, -0.00285021192394197, -0.010120166465640068, 0.020657945424318314, 0.0014894879423081875, -0.006431247107684612, -0.009410222992300987, 0.030374418944120407, -0.002721447730436921, 0.0009622509824112058, 0.0005763935623690486, 0.014630391262471676, -0.012737210839986801, -0.025488341227173805, -0.010788347572088242, 0.004896517843008041, -0.0036993592511862516, 0.00980695616453886, -0.009069172665476799, -0.019530389457941055, 0.03602612018585205, 0.0013694241642951965, -0.008317467756569386, 0.01294601708650589, 0.020073287189006805, -0.032740894705057144, -0.015228970907628536, 0.007259513717144728, 0.03942270949482918, -0.009215337224304676, 0.005355892702937126, -0.013628118671476841, 0.004767753649502993, -0.023929251357913017, 0.032044872641563416, -0.005021801684051752, -0.00741959922015667, -0.008268746547400951, -0.003464451525360346, -0.006138917990028858, -0.0051679667085409164, -0.021924706175923347, 0.01674629934132099, 0.0007534442702308297, -0.010322012938559055, 0.001707865041680634, 0.0001932549785124138, 0.018180105835199356, 0.019432947039604187, 0.008018177933990955, -0.019432947039604187, 0.010454257018864155, -0.024360785260796547, 0.006580892018973827, -0.021896865218877792, -0.023163625970482826, -0.002764949109405279, 0.01781817339360714, 0.011581812985241413, 0.012806812301278114, -0.008108661510050297, 0.01959999091923237, -0.00705766724422574, -0.027492886409163475, -0.02030993439257145, -0.007127269636839628, -0.012417039833962917, 0.002702307188883424, 0.030792031437158585, 0.04758009314537048, 0.01302257925271988, -0.009556387551128864, 0.030903395265340805, -0.05067043378949165, 0.006229400634765625, -0.0017548465402796865, -0.05122724920511246, 0.01154005154967308, 0.025432659313082695, 0.0013102622469887137, 0.017748571932315826, -0.0144911864772439, 0.0186812411993742, 0.031710781157016754, -0.0023612561635673046, 0.004545026458799839, 0.007767610251903534, -0.014101414009928703, 0.013405391946434975, 0.0028101906646043062, 0.006713136099278927, 0.024332944303750992, 0.002321234904229641, -0.012110790237784386, 0.009208376519382, -0.0007242983556352556, -0.037084076553583145, 0.008916047401726246, 0.03120964579284191, 0.006779258605092764, 0.007558803539723158, 0.014379823580384254, 0.01998976431787014, 0.0075379228219389915, 0.0020306454971432686, -0.02231447957456112, -0.002456959104165435, -0.0016678437823429704, 0.010621301829814911, 0.0042909784242510796, 0.01809658296406269, -0.01503408420830965, 0.013829966075718403, 0.008602837100625038, 0.019892321899533272, -0.01971135474741459, -0.005140125751495361, 0.009855677373707294, -0.0011005854466930032, 0.0035009928978979588, 0.06219656392931938, 0.004256177227944136, 4.611148688127287e-05, 0.03922782465815544, -0.026824703440070152, 0.027646010741591454, 0.0005716084269806743, 0.017915617674589157, 0.013655959628522396, -0.010760506615042686, -0.0014129255432635546, -0.6200724840164185, -0.013899567537009716, -0.024931523948907852, 0.01630084589123726, -0.015688344836235046, 0.008004257455468178, 0.0076353661715984344, 0.014574709348380566, -0.008971729315817356, 0.035357940942049026, -0.020449139177799225, 0.005136645399034023, 0.0007047227118164301, -0.022272717207670212, -0.026448851451277733, -0.02604515850543976, -0.001499058329500258, -0.01965567283332348, -0.0026100841350853443, -0.009646871127188206, -0.015563061460852623, -0.0019245019648224115, -0.012897295877337456, -0.02280169539153576, 0.007050707004964352, -0.008171303197741508, 0.01717783324420452, -0.031599417328834534, 0.03137668967247009, 0.014254539273679256, -0.035886917263269424, 0.014811357483267784, 0.02470879629254341, 0.007412638980895281, 0.03819771111011505, -0.005651702173054218, -0.021381808444857597, 0.003424430266022682, 0.016161641106009483, 0.04588179662823677, -0.04538066312670708, -0.019460787996649742, 0.02903805486857891, 0.024722715839743614, 0.011018035002052784, -0.00723167322576046, 0.01776249147951603, 0.0357477106153965, -0.016231242567300797, -0.013997010886669159, 0.0052514891140162945, -0.009229257702827454, 0.0002623134641908109, -0.015354255214333534, -0.004398861899971962, -0.014150136150419712, 0.012465761974453926, -0.014769596047699451, -0.003285225946456194, 0.010036643594503403, -0.008825564756989479, 0.010885790921747684, 0.010774427093565464, -0.013120022602379322, 0.0019923641812056303, -0.006535650696605444, 0.0008382719825021923, 0.004137853160500526, 0.024513909593224525, 0.0009135294239968061, 0.018834367394447327, 0.009702553041279316, -0.026086920872330666, 0.001581710996106267, 0.006392966024577618, 0.01620340161025524, -0.0031512414570897818, -0.01552130002528429, -0.024945443496108055, -0.00236299610696733, -0.012904255650937557, -0.018138345330953598, 0.006410366389900446, -0.004127413034439087, 0.01852811686694622, 0.006253761705011129, -0.02502896636724472, 0.008853405714035034, -0.005220168270170689, -0.014950561337172985, 0.009257098659873009, -0.0012476202100515366, -0.012709369882941246, -0.011240762658417225, -0.014310221187770367, 0.015006243251264095, -0.011519171297550201, 0.004854756407439709, 0.00999488215893507, -0.04017441347241402, -0.005014841444790363, -0.018124423921108246, 0.013203545473515987, -0.027868738397955894, 0.009820876643061638, 0.009284939616918564, -0.018597720190882683, 0.004377981182187796, 0.03265737369656563, -0.01324530690908432, 0.001316352398134768, -0.028091466054320335, -0.032852258533239365, -0.027005670592188835, -0.00495915999636054, -0.03154373541474342, 0.0067931790836155415, 0.015020163729786873, -0.004339699633419514, -0.011790620163083076, -0.005658662412315607, 0.0031094802543520927, -0.0020915474742650986, -0.020866751670837402, 0.011957664974033833, 0.006420806981623173, 0.01034985389560461, -0.02379004657268524, -1.8270588043378666e-05, 0.014171016402542591, 3.632367224781774e-05, -0.005543818697333336, 0.02622612565755844, -0.028258509933948517, 0.01824970729649067, 0.011247722432017326, 0.026796864345669746, -0.004113492555916309, 0.014713914133608341, 0.009960080496966839, -0.028425555676221848, 0.001399005064740777, -0.009006530046463013, -0.021409649401903152, 0.0072664739564061165, -0.024889761582016945, -0.012611926533281803, -0.009841756895184517, -0.004499785136431456, 0.004809515085071325, -0.006337284110486507, 0.012723290361464024, -0.014574709348380566, 0.02362300083041191, 0.025070728734135628, -0.01061434205621481, 0.008192184381186962, -0.01912669651210308, -0.02047698013484478, -0.017205674201250076, 0.005042682401835918, 0.05612725019454956, -0.028411636129021645, 0.008707240223884583, 3.259886216255836e-05, -0.01189502328634262, 0.007040266878902912, 0.03828123211860657, -0.012549283914268017, -0.03162726014852524, -0.0015129788080230355, -0.0014477266231551766, -0.01232655718922615, -0.015799708664417267, -0.012417039833962917, 0.023636922240257263, -0.004851276520639658, 4.4616124796448275e-05, -0.030457941815257072, -0.004499785136431456, 0.023386353626847267, 0.005815267562866211, 0.028369873762130737, -0.00495915999636054, 0.013990051113069057, -0.0033426478039473295, 0.018555957823991776, -0.008352269418537617, -0.005331531632691622, 0.02589203417301178, -0.014950561337172985, -0.006212000269442797, -0.015437777154147625, 0.00606931559741497, 0.006163278594613075, 0.01982271857559681, 0.0012537103611975908, -0.007990337908267975, 0.007872013375163078, 0.02628180757164955, 0.018514197319746017, 0.004579827655106783, 0.004197015427052975, -0.020769309252500534, 0.0011110258055850863, -0.04295850545167923, 0.0034279103856533766, -0.03346475958824158, 0.02026817388832569, -0.012451841495931149, -0.001851419685408473, 0.0031321009155362844, -0.027659932151436806, 0.012361357919871807, 0.019961923360824585, 0.028467318043112755, -0.003339167684316635, 0.0024708795826882124, -0.028954533860087395, 0.0077815307304263115, -0.009716473519802094, -0.009932240471243858, 0.020504821091890335, -0.0015129788080230355, -0.015479538589715958, 0.022398002445697784, 0.02096419595181942, 0.0037376403342932463, 0.006507809739559889, 0.006107596680521965, -0.01148436963558197, -0.0022986140102148056, 0.035246577113866806, 0.016551412642002106, 0.025766750797629356, -0.009354541078209877, 0.027715612202882767, -0.004614628851413727, 0.033242031931877136, 0.00478167412802577, 0.012089909985661507, 0.019975842908024788, 0.00496960012242198, -0.0246531143784523, 0.0173309575766325, -0.009967041201889515, 0.013913488015532494, 0.001159747363999486, 0.0029441749211400747, 0.019850559532642365, 0.008261785842478275, 0.0067931790836155415, -0.014825277961790562, -0.012305676937103271, 0.003398329485207796, -0.0030276975594460964, 0.006765338126569986, 0.015618743374943733, 0.03332555294036865, 0.008540195412933826, -0.0019053614232689142, -0.00343313068151474, 0.009271019138395786, -0.0007569243898615241, 0.01091363187879324, 0.014094454236328602, -0.01208294928073883, -0.008693319745361805, -0.026741182431578636, -0.0270891934633255, -0.018082663416862488, -0.027980102226138115, -0.005926630925387144, -0.01264672726392746, 0.02984544262290001, -0.0060936762019991875, -0.0037585210520774126, -0.012730250135064125, 0.011366046033799648, 0.01873692311346531, -0.042819298803806305, -0.019794877618551254, 0.020379535853862762, 0.026017317548394203, 0.013635079376399517, 0.00717599131166935, 0.011519171297550201, -0.012848573736846447, -0.025641465559601784, 0.009326700121164322, -0.026240045204758644, -0.00224119215272367, -0.0033130666706711054, -0.00820610485970974, 0.001046643708832562, 0.0034400909207761288, 0.01695510558784008, -0.01918237842619419, -0.007711928337812424, -0.004158733878284693, 0.008491473272442818, 0.015117607079446316, -0.024096297100186348, 0.011031955480575562, 0.0487494096159935, -0.003196483012288809, 0.0011066757142543793, -0.032796576619148254, -0.012417039833962917, -0.015841471031308174, 0.009382382035255432, -0.0019453826826065779, -0.03129316866397858, -0.013363630510866642, 0.014129254966974258, -0.01059346180409193, 0.002815410727635026, -0.028258509933948517, 0.03435566648840904, -0.007530962582677603, -0.025168171152472496, -0.02053266204893589, 0.0027510286308825016, 0.010572580620646477, 0.07238633185625076, 0.03833691403269768, -0.0005281069898046553, 0.0045311059802770615, 0.03906077891588211, 0.0001107654461520724, -0.02909373678267002, -0.020073287189006805, 0.003984728362411261, -0.013683800585567951, -0.01766504906117916, -0.0025578823406249285, 0.00017030799062922597, -0.00638948567211628, 0.022398002445697784, -0.0038385638035833836, -0.008484513498842716, -0.03218407556414604, 0.0008012957987375557, -0.0300681684166193, 0.014177977107465267, 0.018138345330953598, 0.03505168855190277, 0.03276873752474785, 0.0035166533198207617, 0.007482240907847881, 0.03081987239420414, -0.008804683573544025, 0.012041187845170498, -0.029372146353125572, 0.004906957969069481, 0.010516898706555367, 0.023107944056391716, 0.016648856922984123, -0.024834079667925835, 0.03638805076479912, 0.019683513790369034, 0.008080820553004742, 0.005470736417919397, -0.013607238419353962, -0.003309586551040411, 0.0059718722477555275, 0.005122724920511246, -0.017804253846406937, -0.0015007983893156052, 0.003144281217828393, -0.014755675569176674, 0.023219307884573936, -0.02253720536828041, -0.03093123622238636, 0.021799422800540924, -0.007238633465021849, -0.012653687968850136, -0.019321583211421967, -0.007878974080085754, 0.024931523948907852, -0.010064484551548958, 0.0005463776178658009, 0.012987778522074223, 0.007997297681868076, 0.0010057523613795638, -0.00902045052498579, 9.880255674943328e-05, -0.016008514910936356, -0.0008730731206014752, -0.008853405714035034, -0.03260169178247452, -0.004033450037240982, -0.04543634504079819, -0.004590267781168222, 0.0028641324024647474, -0.02237016148865223, -0.004054330755025148, 0.02308010309934616, 0.00040847816853784025, 0.009445024654269218, 0.014644311740994453, -0.007941615767776966, -0.006111077032983303, 0.010739626362919807, -0.02519601210951805, -0.016314765438437462, 0.010328972712159157, -0.032156236469745636, 0.00527933007106185, 0.013280107639729977, 0.013370591215789318, -0.011199001222848892, -0.02388748899102211, 0.01993408240377903, 0.013481954112648964, 0.01863948069512844, -0.02313578501343727, -0.028355954214930534, 0.0020393456798046827, 0.002711007371544838, 0.019572149962186813, 0.05331531912088394, 0.00926405843347311, -0.027646010741591454, 0.005662142299115658, 0.012229113839566708, -0.002270773285999894, -0.025418739765882492, -0.01912669651210308, 0.009326700121164322, -0.0013537636259570718, 0.02628180757164955, -0.021159082651138306, -0.003915125969797373, 0.010328972712159157, -0.02026817388832569, 0.020811069756746292, -0.01348891481757164, 0.02171589992940426, 0.03237896412611008, 0.03758521005511284, 0.014240618795156479, 0.0003738945524673909, -0.01852811686694622, -0.023748286068439484, -0.053705088794231415, 0.01819402538239956, 0.021785501390695572, -0.0335761234164238, 0.025098567828536034, 0.004447583109140396, -0.012291756458580494, -0.016871582716703415, 0.020880673080682755, 0.01318962499499321, 0.003198222955688834, -0.0030607585795223713, -0.03591475635766983, -0.006636573933064938, -0.010440336540341377, -0.0036784785334020853, 0.014449425972998142, -0.01311306282877922, 0.027284078299999237, -0.0008517574169673026, -0.0038524840492755175, 0.0181522648781538, -0.0009004790335893631, -0.018542038276791573, -0.03889373317360878, -0.005832667928189039, 0.01318962499499321, 0.021841183304786682, 0.0208528321236372, -0.0012650208082050085, -0.006692255847156048, 0.0142197385430336, -0.005032242275774479, -0.013913488015532494, -0.020671866834163666, 0.0020793669391423464, 0.004757313523441553, 0.026936067268252373, 0.03533009812235832, 0.031989190727472305, -0.018778685480356216, 0.014797437004745007, 0.016078118234872818, 0.0028797928243875504, 0.02605907991528511, -0.024151979014277458, -0.009431104175746441, -0.015938913449645042, 0.01863948069512844, 0.015075845643877983, -0.004245736636221409, 0.029817601665854454, 0.005004401318728924, 0.01781817339360714, 0.022606808692216873, 0.003481852123513818, -0.002683166414499283, -0.0039603677578270435, -0.055932361632585526, -0.0009927019709721208, 0.0026379250921308994, 0.005811787210404873, 0.007280394434928894, -0.018347151577472687, 0.0034383507445454597, 0.030652828514575958, 0.004364060703665018, -0.016105959191918373, 0.011560932733118534, 0.015075845643877983, -0.03435566648840904, 0.006031034514307976, -0.006834940053522587, 0.03967327997088432, -0.010391614399850368, -0.0007377837901003659, -0.03677782416343689, 0.007217752747237682, -7.161418034229428e-05, -0.013662920333445072, 0.01566050387918949, -0.0102941719815135, 0.009103973396122456, -0.01360027864575386, -0.010948432609438896, -0.0052132080309093, -0.016871582716703415, 0.010683944448828697, -0.02448606863617897, -0.008324428461492062, -0.006274641957134008, -0.017887776717543602, 0.005630821455270052, -0.0033687485847622156, 0.003547974396497011, 0.00958422850817442, 0.0038107228465378284, -0.020894592627882957, -0.029344305396080017, 0.009424143470823765, 0.002060226397588849, 0.04423918575048447, 0.024305103346705437, 0.01625908352434635, 0.02459743246436119, -0.00033452577190473676, 0.0013059120392426848, 0.028147146105766296, -0.006573931779712439, 0.012653687968850136, 0.010057523846626282, 0.043905094265937805, -0.01911277510225773, -0.015075845643877983, -0.024555671960115433, 0.006285082548856735, -0.01289033517241478, -0.01397613063454628, -0.004611148498952389, 0.02752072736620903, 0.005606460850685835, -0.013551556505262852, 0.018082663416862488, -0.027910498902201653, 0.010906671173870564, -0.012124710716307163, 0.01213863119482994, -0.025363057851791382, 0.0023716965224593878, -0.0287039652466774, 0.04966815933585167, 0.01993408240377903, 0.01251448318362236, 0.0119159035384655, -0.013537636026740074, -0.010704824700951576, -0.03162726014852524, -0.015423856675624847, -0.004447583109140396, -0.017094310373067856, 0.033019304275512695, -0.012883375398814678, -0.0030015967786312103, -0.008526274934411049, -0.009702553041279316, -0.021896865218877792, -0.022871296852827072, -0.009772154502570629, 0.033186350017786026, -0.010447296313941479, 0.004771233536303043, -0.007795451208949089, -0.010976273566484451, 0.0009135294239968061, -0.006250281352549791, -0.00016095518367365003, -0.004788634367287159, -0.028536919504404068, 0.015618743374943733, 0.014964481815695763, 0.016871582716703415, 0.006232880987226963, 0.002998116659000516, -0.009236217476427555, -0.003205183194950223, -0.00975127425044775, -0.011324284598231316, 0.004002128727734089, -0.02887101098895073, -0.007349996827542782, -0.013913488015532494, -0.007753689773380756, -0.004478904418647289, -0.003267825348302722, -0.0276181697845459, 0.025154249742627144, 0.025905955582857132, -0.006949783768504858, 0.008407951332628727, -0.0048617166467010975, -0.02096419595181942, -0.046021003276109695, -0.0056447419337928295, -0.009013490751385689, -0.0002888493181671947, 0.022328399121761322, -0.006664414890110493, -0.023094024509191513, -0.03780793771147728, 0.0050705233588814735, 0.018347151577472687, 0.005592540372163057, 0.005328051745891571, 0.028188908472657204, -0.00411697244271636, 0.01405269280076027, -0.023261070251464844, -0.02324714884161949, 0.04151077941060066, -0.02525169402360916, 0.008769882842898369, -0.0005402874085120857, 0.01972527615725994, 0.009006530046463013, 0.0029180741403251886, -0.035190895199775696, -0.0017139551928266883, -0.007162070833146572, -0.020671866834163666, 0.005731744691729546, 0.0029859361238777637, -0.003876844886690378, -0.01749800331890583, -0.021465331315994263, -0.020560503005981445, -0.026615897193551064, 0.024151979014277458, 0.01847243495285511, 0.017052549868822098, 0.005289770662784576, 0.029260782524943352, 0.002356035867705941, 0.009605109691619873, 0.0008091260679066181, -0.00961903017014265, 0.0047990744933485985, 0.041900549083948135, -0.029427828267216682, -0.004875637125223875, -0.0017200454603880644, 0.025376977398991585, 0.021785501390695572, -0.037139758467674255, -0.007315195631235838, -0.012772011570632458, -0.03544146195054054, -0.03282441943883896, -0.022982660681009293, 0.029483510181307793, 0.017734652385115623, -0.014769596047699451, 0.016662776470184326, 0.020992036908864975, -0.004705111496150494, 0.012660647742450237, -0.018764764070510864, -0.03455055505037308, 0.01955823041498661, 0.03786361962556839, 0.026782942935824394, -0.009479825384914875, -0.01982271857559681, -0.017943458631634712, 0.0063651250675320625, 0.020880673080682755, -0.0008909087046049535, 0.006138917990028858, -0.016286924481391907, -0.022565046325325966, 0.009124853648245335, -0.01674629934132099, -0.009243178181350231, 0.01311306282877922, 0.00896476861089468, -0.044990889728069305, 0.003796802368015051, 0.010767467319965363, -0.017470162361860275, -0.02308010309934616, -0.005303690675646067, -0.0016887243837118149, 0.007259513717144728, 0.01330098882317543, 7.090728468028829e-05, -0.0181522648781538, 0.02280169539153576, -0.02427726238965988, 0.0033739686477929354, 0.0005420274683274329, -0.008192184381186962, 0.011929824016988277, 0.008087780326604843, 0.007892894558608532, -0.004057810641825199, 0.016273004934191704, -0.031070441007614136, 0.007684087380766869, 0.024151979014277458, 0.009445024654269218, 0.0058291880413889885, -0.007809371687471867, 0.01879260502755642, -0.032796576619148254, 0.001233699731528759, -0.032685212790966034, -0.026991749182343483, -0.013147863559424877, 0.00417265435680747, 0.021646296605467796, -0.038002826273441315, 0.004353620111942291, 0.0032260639127343893, 0.021646296605467796, 0.0143519826233387, -0.007725848816335201, -0.016593175008893013, -0.01684374362230301, -0.01667669788002968, 0.012243034318089485, -0.010837068781256676, -0.009048291482031345, 0.006229400634765625, 0.00975127425044775, -0.024138057604432106, -0.0061597987078130245, 0.2183839976787567, -0.012194313108921051, 0.014449425972998142, 0.030513623729348183, -0.017149992287158966, -0.011080676689743996, 0.026448851451277733, 0.011233801953494549, -0.0060379947535693645, 0.020574422553181648, -0.001799218007363379, 0.007558803539723158, -0.019906241446733475, 0.003622796619310975, 0.007102909032255411, 0.020894592627882957, -0.03833691403269768, -0.013774284161627293, -0.016231242567300797, -0.017456242814660072, 0.00014627346536144614, 0.005126205272972584, -0.02296873927116394, -0.015855390578508377, 0.04627157002687454, -0.007078547962009907, -0.0203238558024168, 0.024138057604432106, 0.02216135337948799, -0.005439415108412504, -0.027757374569773674, 0.007050707004964352, -0.004732952453196049, -0.012980817817151546, -0.020296014845371246, -0.013015619479119778, 0.021367888897657394, -0.001834019087255001, 0.030792031437158585, -0.015744026750326157, 0.0007921605138108134, -0.04359884560108185, -0.022551126778125763, -0.01684374362230301, 0.0009787814924493432, 0.04343179985880852, -0.00969559233635664, -0.004005609080195427, -0.013774284161627293, 0.025905955582857132, -0.02004544623196125, -0.019544309005141258, 0.02920510061085224, -0.0009396302630193532, -0.011978546157479286, -0.02351163700222969, -0.00937542226165533, -0.003380928887054324, 0.00864459853619337, 0.024875842034816742, -0.020811069756746292, 0.014727834612131119, 0.005000920966267586, 0.01410837471485138, -0.03098691813647747, 0.003814202966168523, -0.016509652137756348, 0.010384654626250267, 0.014379823580384254, -0.06937951594591141, 0.017470162361860275, -0.028188908472657204, -0.0025700628757476807, 0.024388626217842102, -0.014658232219517231, -0.021298285573720932, 0.007384798023849726, 0.0034400909207761288, 0.006044954992830753, 0.03457839414477348, 0.011978546157479286, -0.013746443204581738, 0.013948289677500725, -0.027172716334462166, -0.02585027366876602, -0.058967020362615585, 0.001725265639834106, -0.006121517159044743, 0.015493459068238735, -0.023525558412075043, -0.02437470480799675, -0.028620442375540733, -0.013969169929623604, 0.00041543837869539857, 0.012229113839566708, 0.026017317548394203, 0.00527933007106185, 0.021632377058267593, -0.014783516526222229, 0.02502896636724472, -0.01934942416846752, 0.05802042782306671, -0.0008395770564675331, -0.015423856675624847, 0.015841471031308174, 0.0007260384154506028, -0.00331132672727108, -0.0131339430809021, 0.018054822459816933, -0.014435505494475365, -0.0016748040216043591, -0.003796802368015051, -0.00325564481317997, -0.004433663096278906, 0.03914429992437363, 0.024513909593224525, 0.014254539273679256, -0.025070728734135628, 0.002677946351468563, 0.027924420312047005, 0.022091751918196678, -0.006100636441260576, 0.005272369831800461, 0.028258509933948517, 0.0014311961131170392, -0.031599417328834534, -0.028286350890994072, -0.019419025629758835, -0.018444593995809555, -0.017358798533678055, 0.030680669471621513, -0.008282667025923729, 0.00969559233635664, -0.008199144154787064, 0.00594751164317131, -0.025919875130057335, 0.015159368515014648, -0.010878830216825008, -0.011317324824631214, 0.0010188028682023287, -0.00526888994500041, -0.0020115047227591276, -0.005366332828998566, -0.0025404819753021, -0.005028761923313141, -0.020811069756746292, 0.00980695616453886, 3.395828025531955e-05, -0.019920160993933678, -0.01717783324420452, -0.006963704247027636, -0.00036410673055797815, 0.00975127425044775, 0.02838379517197609, 0.02064402587711811, -0.011115478351712227, -0.014066613279283047, -0.03842043876647949, -0.005234088748693466, -0.03012385033071041, -0.03711191564798355, -0.0060971565544605255, 0.017748571932315826, -0.014024851843714714, -0.022843455895781517, -0.0029754957649856806, -0.17896129190921783, 0.007948576472699642, 0.007955536246299744, -0.02561362460255623, 0.043682366609573364, 0.016105959191918373, 0.05131077393889427, -0.0022342319134622812, -0.0023769165854901075, -0.009333660826086998, 0.007196872029453516, 0.017149992287158966, -0.029177259653806686, -0.02204999141395092, 0.009333660826086998, 0.011379966512322426, -0.005317611154168844, -0.002676206175237894, 0.023706523701548576, 0.02253720536828041, 0.033297713845968246, -0.04045282304286957, 0.007503121625632048, 0.004524145741015673, 0.018667321652173996, 0.027451124042272568, 0.0025143809616565704, -0.006845380645245314, -0.008247865363955498, -0.03931134566664696, 0.0131339430809021, -0.012013346888124943, 0.01581363007426262, -0.005126205272972584, 0.004402341786772013, 0.010920591652393341, -0.01684374362230301, -0.017094310373067856, -0.012486642226576805, 0.010412495583295822, -0.0054359352216124535, 0.022578967735171318, 0.0024221581406891346, 0.012152551673352718, -0.021701978519558907, 0.004687711130827665, 0.02411021664738655, -0.013704681769013405, 0.007892894558608532, -0.012180392630398273, -0.0105586601421237, -0.0157022662460804, 0.018402833491563797, -0.00638948567211628, 0.026574136689305305, -0.004179614596068859, -0.016440048813819885, 0.022328399121761322, 0.009438063949346542, 0.015061925165355206, -0.007280394434928894, -0.013551556505262852, 0.015563061460852623, -0.008623718284070492, 0.034049417823553085, -0.02296873927116394, -0.02654629573225975, -0.020950274541974068, -0.01824970729649067, 0.014268459752202034, 0.0021959508303552866, -0.0028954532463103533, -0.000501571164932102, -0.01918237842619419, 0.00931974034756422, -0.0048617166467010975, -0.033297713845968246, 0.006553051061928272, 0.0035671149380505085, -0.040703389793634415, -0.0033513479866087437, 0.024778397753834724, 0.0006177198956720531, 0.005467256065458059, -0.025919875130057335, 0.00773280905559659, -0.0029319943860173225, -0.007217752747237682, 0.020866751670837402, 0.003581035416573286, 0.012751131318509579, -0.01575794816017151, -0.007830251939594746, -0.01641220971941948, 0.01397613063454628, 0.014122295193374157, 0.019948001950979233, -0.01983663998544216, 0.007082028314471245, -0.014964481815695763, 0.030374418944120407, -0.01096931379288435, -0.013572437688708305, -0.0050705233588814735, 0.016022436320781708, 0.0012006387114524841, -0.04691191017627716, 0.018013060092926025, 0.037947144359350204, 0.0008282666676677763, -0.02204999141395092, 0.008554115891456604, 0.01281377300620079, 0.027381522580981255, 0.01652357168495655, 0.007844172418117523, -0.003278265707194805, -0.012584085576236248, 0.01497840229421854, -0.006466048303991556, 0.05996929109096527, 0.005780466366559267, 0.01238223910331726, 0.002242932328954339, -0.009034371003508568, -0.011567892506718636, -0.09939200431108475, -0.004499785136431456, -0.002665765816345811, 0.032100554555654526, -0.0018792605260387063, 0.022022150456905365, -0.007127269636839628, 0.007287354674190283, -0.01618948206305504, 0.04128805175423622, 0.018347151577472687, -0.006740977056324482, -0.0064277672208845615, 0.0020289053209125996, -0.019001413136720657, -0.003300886368378997, -0.02718663588166237, -0.015075845643877983, -0.011547012254595757, 0.0262678861618042, -0.0076632071286439896, -0.008387070149183273, -0.004868676885962486, -0.006883661728352308, -0.015590902417898178, -0.005328051745891571, -0.03446703031659126, 0.013273147866129875, -0.010043603368103504, 0.013843885622918606, 0.007349996827542782, -0.006138917990028858, 0.012006387114524841, -0.04137157276272774, -0.017595447599887848, -0.0064277672208845615, -0.005119245033711195, 0.008916047401726246, 0.021409649401903152, -0.030151691287755966, 0.0030033367220312357, 0.005021801684051752, 0.019739195704460144, -0.028342032805085182, -0.0016191222239285707, -0.002375176642090082, -0.03299146145582199, 0.03538578003644943, 0.006591332610696554, -0.01819402538239956, -0.025418739765882492, 0.017915617674589157, -0.017637208104133606, -0.02757640928030014, 0.028369873762130737, -0.007517042104154825, -0.003196483012288809, 0.02117300219833851, -0.03218407556414604, 0.007092468440532684, -0.0029772359412163496, 0.0015938914148136973, 0.010892750695347786, 0.00102924311067909, -0.0018827406456694007, 0.002458699280396104, -0.010245449841022491, -0.015535220503807068, 0.015730107203125954, -0.03858748450875282, -0.005776986014097929, 0.036276690661907196, -0.028355954214930534, 0.005613421089947224, -0.006292042788118124, 0.009417183697223663, -0.0027405882719904184, -0.010245449841022491, 0.015423856675624847, -0.008755962364375591, 0.0004287063202355057, -0.025209931656718254, -0.02068578638136387, -0.010565620847046375, 0.01847243495285511, 0.0032904460094869137, -0.002858912106603384, 0.003059018636122346, 0.014560788869857788, -0.014477266930043697, 0.003199963131919503, -0.0012458801502361894, 0.0006172849098220468, 0.008428831584751606, 0.01546561811119318, 0.019043173640966415, 0.00810170080512762, 0.008435791358351707, 0.0144911864772439, 0.015396015718579292, -0.05367724969983101, 0.0143519826233387, -0.060915883630514145, 0.029399987310171127, -0.012848573736846447, -0.01251448318362236, 0.00023686513304710388, -0.012987778522074223, 0.012075989507138729, 0.0021507092751562595, -0.012444880791008472, 0.011324284598231316, -0.03939487040042877, 0.016217323020100594, -0.012249995023012161, -0.013990051113069057, -0.0023438555654138327, -0.0009805215522646904, 0.02669942006468773, -1.4287491467257496e-05, 0.01232655718922615, 0.003807242726907134, 0.016175560653209686, -0.004371020942926407, 0.021813342347741127, 0.015688344836235046, -0.008679399266839027, 0.007496161386370659, -0.016398288309574127, 0.0249176025390625, -0.022411921992897987, -0.004966120235621929, -0.0018444594461470842, -0.0131339430809021, 0.00748920114710927, 0.012549283914268017, -0.0001227827015100047, -0.006890621967613697, 0.005018321797251701, 0.009187496267259121, -0.003222583793103695, 0.021952547132968903, -0.0006316403741948307, -0.002754508750513196, 0.00410305242985487, -0.005275850184261799, 0.0061806789599359035, 0.01392044872045517, -0.011553972028195858, 0.017484083771705627, -0.0010048823896795511, 0.02724231779575348, 0.03368748724460602, 0.015145448036491871, -0.008108661510050297, -0.009180535562336445, 0.013447153382003307, -0.03761305287480354, 0.012486642226576805, -0.00939630251377821, 0.010809228755533695, -0.028202828019857407, 0.03335339576005936, -0.003481852123513818, 0.011240762658417225, -0.012229113839566708, 0.01824970729649067, -0.018054822459816933, -0.0013476734748110175, -0.008714200928807259, 0.025056807324290276, -0.020170729607343674, -0.031710781157016754, -0.017358798533678055, 0.0034522712230682373, 0.026421010494232178, 0.004889557603746653, 0.009542467072606087, -0.045046571642160416, -0.0056447419337928295, -0.004806034732609987, 0.015493459068238735, 0.017024708911776543, -0.0076632071286439896, -0.007196872029453516, 0.0045311059802770615, 0.024625273421406746, -0.0027179676108062267, 0.012500562705099583, -0.008380110375583172, 0.002328194910660386, 0.008296587504446507, 0.012006387114524841, 0.0065008495002985, -0.016022436320781708, -0.013280107639729977, 0.011762779206037521, 0.013147863559424877, 0.003668038174510002, 0.02795226126909256, 0.02199430949985981, 0.020922433584928513, -0.015298573300242424, -0.002970275701954961, -0.011087637394666672, -0.01005056407302618, -0.03942270949482918, 0.022565046325325966, 8.053197234403342e-05, -0.036833506077528, -0.013126983307301998, 0.018416753038764, 0.03649941459298134, 0.002780609531328082, 0.02546050027012825, 0.020560503005981445, -0.026407090947031975, 0.007113349158316851, -0.0017870375886559486, 0.009660791605710983, 0.0008491473854519427, 0.04268009588122368, 0.004311859142035246, -0.002449998864904046, 0.018026981502771378, -0.008714200928807259, 0.035302259027957916, 0.025070728734135628, 0.04599316045641899, -0.008755962364375591, -0.01598067581653595, -0.01959999091923237, -0.01875084452331066, 0.0034975127782672644, -0.0033844090066850185, 0.002756248926743865, 0.0015930213266983628, -0.01134516578167677, 0.006417326629161835, 0.002148969331756234, 0.01446334645152092, 0.07878974080085754, 0.01018280815333128, -0.025919875130057335, -0.016871582716703415, -0.013335789553821087, -0.0008926487644203007, 0.02242584340274334, -0.010983234271407127, 0.02525169402360916, -0.025641465559601784, 0.00032626051688566804, 0.0005768286064267159, 0.01294601708650589, -0.029260782524943352, -0.0040195295587182045, 0.005296730902045965, 0.007816331461071968, 0.02621220424771309, -0.00693238340318203, 0.005609940737485886, 0.02280169539153576, 7.487678522011265e-05, 0.00839403085410595, -0.009445024654269218, -0.02427726238965988, -0.008317467756569386, 0.021841183304786682, 0.0010266330791637301, 0.003492292482405901, -0.03538578003644943, 0.009194456040859222, -0.01798521913588047, -0.018374992534518242, -0.0012650208082050085, -0.009723433293402195, -0.027228398248553276, -0.002319494727998972, 0.00224119215272367, 0.03830907493829727, 0.01289033517241478, -0.013509795069694519, -0.001229349640198052, -0.008254826068878174, -0.015507379546761513, -0.0021768100559711456, -0.0036993592511862516, -0.020435217767953873, -0.018458515405654907, -0.040118731558322906], "476b4f33-d161-4cbe-a216-dbfa745ef944": [-0.0008957540849223733, 0.018564634025096893, 0.0019277047831565142, -0.029083197936415672, 0.009959807619452477, 0.035872071981430054, 0.006177735049277544, 0.004822754301130772, -0.007906382903456688, -0.023034675046801567, 0.031094714999198914, 0.011901481077075005, 0.00466211186721921, 0.01757284440100193, 0.00021619016479235142, -0.010700157843530178, 0.025353508070111275, 0.031318217515945435, 0.012984069064259529, 0.004099864978343248, -0.007955274544656277, 0.006205672863870859, -0.020687904208898544, 0.011447492986917496, -0.02348167821764946, 0.015910549089312553, 0.01526798028498888, -0.0044909934513270855, -0.007106665056198835, -0.02039455808699131, 0.009694399312138557, -0.0049379970878362656, -0.01962626911699772, 0.0034555504098534584, -0.04050973802804947, -0.004819261841475964, 0.003977637272328138, -0.013500917702913284, 0.03173728287220001, -0.0013401389587670565, 0.026722457259893417, 0.030088957399129868, -0.012767551466822624, -0.007277783937752247, -0.013954905793070793, 0.023146426305174828, 0.002530112396925688, -0.024431562051177025, -0.011070333421230316, 0.03279891982674599, 0.016092143952846527, 0.03668226674199104, -0.008248620666563511, -0.002654086332768202, -0.01887194998562336, -0.004766878671944141, 0.023844869807362556, 0.026107827201485634, -0.010155372321605682, 0.003392690559849143, 0.015631170943379402, -0.0066736298613250256, -0.009428991004824638, -0.014010781422257423, -0.00117949687410146, -0.00508467061445117, 0.004113833885639906, 0.0042116157710552216, 0.01653914712369442, -0.0010380620369687676, 0.028454598039388657, -0.0038484251126646996, -0.005542151164263487, -0.0026610707864165306, 0.039671603590250015, -0.02933463826775551, -0.013745373114943504, -0.009198504500091076, -0.02592623233795166, -0.007724788039922714, 0.0037541352212429047, -0.01789412833750248, -0.007913367822766304, 0.030088957399129868, 0.01941673643887043, 0.01204117015004158, -0.00039527550688944757, 0.01477906946092844, -0.04414164647459984, -0.020618058741092682, 0.006788873113691807, 0.025074129924178123, -0.004780847579240799, -0.0017740471521392465, -0.004480516538023949, 0.004134786780923605, -0.0162737388163805, 0.018941793590784073, 0.0019050053087994456, -0.010965567082166672, -0.004050973802804947, 0.000702809018548578, -0.022000977769494057, -0.0017845237161964178, -0.028328878805041313, -0.0007058646879158914, 0.02077171765267849, -0.008821344934403896, 0.0039077927358448505, 0.0077178035862743855, -5.214455541135976e-06, 0.03763214871287346, -0.0155333885923028, -0.01903957687318325, 0.0009795674122869968, -0.025618916377425194, -0.010511578060686588, -0.01049760915338993, -0.01800587959587574, -0.02005930431187153, 0.017042027786374092, 0.001967865275219083, 0.013012006878852844, -0.01526798028498888, 0.01494669634848833, -0.005936771631240845, -0.012977085076272488, -0.02668055146932602, 0.00033372515463270247, -0.010511578060686588, -0.014052688144147396, 0.010434749536216259, 0.043471138924360275, -0.004386226646602154, -0.014290158636868, 0.027141524478793144, -0.03595588356256485, -0.008094962686300278, -0.007550176698714495, -0.040425922721624374, 0.014318096451461315, 0.030452147126197815, -0.007431441452354193, 0.0159943625330925, -0.009498834609985352, 0.041794873774051666, 0.01968214474618435, -0.001838653115555644, -0.004508454352617264, 0.008353387005627155, -0.0015837211394682527, 0.004047481343150139, 0.004927520640194416, 0.01806175522506237, 0.00744541035965085, -0.0010371889220550656, -0.012425314635038376, 0.01984977163374424, -0.009121675044298172, -0.029474325478076935, 0.017335373908281326, 0.017153779044747353, 0.007606052327901125, 0.010721111670136452, 0.0021145383361727, 0.021512066945433617, 0.027853935956954956, -0.011321772821247578, -0.006942530628293753, -0.003869378473609686, -0.016148019582033157, 0.01947261206805706, 0.007899398915469646, 0.018899887800216675, 0.006233610212802887, -0.015756890177726746, 0.02419409155845642, 0.01638549007475376, -0.011545275337994099, 0.002437568735331297, 0.013787279836833477, -0.0004022599314339459, -0.009994730353355408, 0.03975541889667511, -0.005091655068099499, -0.0008878966327756643, 0.02434774860739708, -0.0026645627804100513, -0.0058843884617090225, 0.01382918655872345, 0.015491481870412827, 0.015016540884971619, -0.004875137470662594, -0.010783971287310123, -0.6249116063117981, -0.021330472081899643, -0.02370518073439598, 0.004602744244039059, -0.020240899175405502, 0.011398602277040482, -0.0043932111002504826, 0.018131598830223083, -0.02972576580941677, 0.043247636407613754, -0.009442959912121296, 0.006753950845450163, -0.0005434765480458736, -0.0016238817479461432, -0.028971446678042412, -0.024766815826296806, 0.007050789427012205, -0.026666581630706787, 0.0015042732702568173, 0.0013995066983625293, -0.0056399330496788025, 0.008493076078593731, -0.020701872184872627, -0.017279498279094696, 0.01253008097410202, 0.0003651551087386906, 0.007249846123158932, -0.023579461500048637, 0.05305378884077072, 0.029222887009382248, -0.04321970045566559, 0.011405586265027523, 0.011182084679603577, 0.004571314435452223, 0.040481798350811005, 0.01149638369679451, -0.013766326010227203, 0.03025658242404461, 0.001369822770357132, 0.031038839370012283, -0.041738998144865036, -0.01892782561480999, 0.017558876425027847, 0.031010901555418968, 0.02077171765267849, 0.00589835736900568, 0.013319321908056736, 0.03539712727069855, -0.010148387402296066, -0.0058250208385288715, 0.00013554173347074538, -0.024613156914711, 0.000642131722997874, -0.025912262499332428, 8.026646537473425e-05, -0.011272882111370564, -0.004683065228164196, -0.01947261206805706, -0.005591042339801788, 0.004424640908837318, -0.005374524742364883, -0.0004958950448781252, 0.0052767423912882805, -0.006341869011521339, -0.0024340765085071325, -0.0016806302592158318, -0.0046725887805223465, -0.0026698012370616198, 0.01558926422148943, 0.0003754135104827583, 0.013731404207646847, 0.006031061988323927, -0.04643253982067108, -0.007410488091409206, -0.007494301535189152, 0.01483494509011507, -0.004082403611391783, -0.021330472081899643, -0.00465163541957736, 0.003782072803005576, -0.021763507276773453, -0.013235509395599365, 0.00954772625118494, -0.016888370737433434, 0.03620732203125954, 0.003995098173618317, -0.017670627683401108, 0.0015514182159677148, -0.031010901555418968, 0.0004937124322168529, 0.0003236850316170603, 0.017712533473968506, -0.008213698863983154, -0.0015147498343139887, -0.011461461894214153, 0.022252418100833893, 0.023300083354115486, 0.010714126750826836, 0.027043741196393967, -0.046013474464416504, -0.0036563531029969454, -0.021358409896492958, 0.0028059978503733873, -0.00800416525453329, 0.007221908308565617, 0.020855531096458435, -0.023733118548989296, -0.0047564017586410046, 0.02564685419201851, -0.02056218311190605, 0.020436463877558708, -0.03265922889113426, -0.032072536647319794, -0.016832495108246803, 0.007263815030455589, -0.027895843610167503, -0.008416247554123402, 0.012823427096009254, -0.00471798749640584, -0.01806175522506237, -0.008087978698313236, 0.0031971263233572245, -0.01789412833750248, -0.014387940987944603, -0.004267491400241852, -0.0006382029969245195, -0.0050357794389128685, -0.015924517065286636, -0.014387940987944603, 0.01821541227400303, 0.009226442314684391, -0.010183310136198997, 0.016203895211219788, -0.030088957399129868, 0.013235509395599365, -0.0013715688837692142, 0.013270431198179722, -0.0007049916312098503, 0.01887194998562336, 0.01472319383174181, -0.03070358745753765, 0.008220682851970196, 0.013556793332099915, -0.029865454882383347, -0.006844748742878437, -0.027043741196393967, -0.0030923597514629364, -0.00478433957323432, -0.01187354326248169, -0.008451169356703758, 0.00894706416875124, -0.00808099377900362, -0.035006001591682434, 0.01795000396668911, 0.016692806035280228, -0.006977452896535397, 0.004421148914843798, -0.014373972080647945, -0.020436463877558708, -0.02005930431187153, 0.016148019582033157, 0.041515495628118515, -0.0122856255620718, 0.00956867914646864, -0.008087978698313236, -0.017042027786374092, 0.0038798549212515354, 0.02635926753282547, -0.012537064962089062, -0.032519541680812836, 0.009896948002278805, -0.002367724198848009, -0.006146304775029421, -0.013431073166429996, -0.0017723010387271643, 0.006516480352729559, -0.019025607034564018, 0.010776987299323082, -0.02278323471546173, -0.012439283542335033, 0.00738953473046422, 0.011838621459901333, 0.009254379197955132, -0.016092143952846527, 0.036235261708498, -0.00570977758616209, 0.005025302991271019, -0.015435607172548771, 0.008695624768733978, 0.023663274943828583, 0.008688639849424362, 0.00024663793738000095, -0.006554894614964724, 0.0122856255620718, -0.004019543994218111, 0.009903931990265846, 0.0015592756681144238, -0.005877404008060694, -0.007340643554925919, 0.027309151366353035, 0.021246658638119698, 0.004955458454787731, 0.018913855776190758, -0.017014089971780777, 0.00452940771356225, -0.04947775602340698, 0.021162845194339752, -0.016120081767439842, 0.03215635195374489, -0.014136501587927341, 0.0011856082128360868, -0.005409447010606527, -0.02077171765267849, 0.00036209943937137723, 0.020254869014024734, 0.012956131249666214, -0.012369439005851746, 0.008898173458874226, -0.020799655467271805, 0.016986152157187462, 0.0003263042017351836, -0.006174242589622736, 0.026233546435832977, -0.00397414481267333, -0.003410151693969965, 0.028887633234262466, 0.021567942574620247, -0.013577746227383614, 0.0062475791200995445, 0.005252297036349773, 0.01241832971572876, -0.004955458454787731, 0.009589632973074913, 0.002732661087065935, 0.009827103465795517, 0.010595391504466534, 0.03291067108511925, -0.016148019582033157, 0.023439772427082062, -0.010155372321605682, 0.009596616961061954, 0.005999631714075804, 0.007515254896134138, -0.02478078380227089, 0.0027693293523043394, -0.0051545146852731705, 0.03140202909708023, -0.0012868825579062104, -0.008150838315486908, 0.030675649642944336, 0.013172648847103119, 0.0025283663999289274, -0.0014614935498684645, -0.02098125033080578, 0.012027201242744923, -0.012669769115746021, 0.016804557293653488, 0.03288273140788078, 0.015701014548540115, 0.019668176770210266, 0.0010118703357875347, -0.004941489547491074, 0.01410157885402441, 0.00794828962534666, 0.016175957396626472, 0.006107890512794256, -0.013989828526973724, -0.013172648847103119, -0.04660016670823097, -0.02504619210958481, -0.014960665255784988, -0.03196078538894653, -0.02218257263302803, 0.00768986577168107, 0.014667319133877754, 0.010679204948246479, -0.010469671338796616, -0.0030504530295729637, 0.013123758137226105, 0.014234283939003944, -0.024389656260609627, -0.01834113337099552, 0.015701014548540115, 0.023439772427082062, -0.005385001190006733, -0.0069530075415968895, -0.0012091806856915355, 0.013514886610209942, -0.03059183619916439, 0.005870419554412365, -0.03676607832312584, -0.005804067477583885, -0.020101211965084076, -0.03450312092900276, 0.0005242693587206304, -0.02624751627445221, 0.026010045781731606, -0.02387280762195587, -0.0010214740177616477, 0.0016003092750906944, -0.007410488091409206, 0.016678836196660995, -0.024096310138702393, 0.005440876819193363, 0.050790827721357346, 0.013940936885774136, 0.009862025268375874, -0.0206040907651186, -0.02961401455104351, -0.01774047128856182, 0.010239185765385628, 0.0006229245336726308, -0.025088099762797356, 0.0029614015948027372, 0.027951719239354134, -0.01740521751344204, 0.01681852526962757, -0.02429187297821045, 0.03726895898580551, -0.025842418894171715, -0.04039798676967621, -0.021721599623560905, 0.0005103004514239728, 0.008199729956686497, 0.06883861869573593, 0.051824524998664856, -0.02592623233795166, -0.0021389839239418507, 0.03472662344574928, -0.0005687951343134046, -0.010637298226356506, -0.014332065358757973, 0.008527997881174088, -0.02961401455104351, -0.024375686421990395, -0.0009769481839612126, 0.01222974993288517, 0.011356695555150509, 0.032240163534879684, 0.006118367426097393, -0.01364060677587986, -0.03838646784424782, 0.011196053586900234, -0.015812765806913376, 0.007976227439939976, 0.022154634818434715, 0.028971446678042412, 0.027085648849606514, 0.008981986902654171, 0.009966792538762093, 0.02141428552567959, -0.020045336335897446, 0.0064920345321297646, -0.028943508863449097, -0.017670627683401108, 0.018522728234529495, 0.03467074781656265, 0.015617202036082745, -0.01962626911699772, 0.04039798676967621, 0.016608992591500282, -0.013892046175897121, -0.00470751104876399, -0.011140177957713604, 0.022364169359207153, 0.001327916164882481, 0.006146304775029421, -0.00941502209752798, 0.004466547630727291, 0.005919310729950666, -0.017069965600967407, 0.02809140831232071, -0.023775024339556694, -0.02473887801170349, 0.023062612861394882, -0.012523096054792404, -0.0024951903615146875, -0.013088835403323174, -0.015309887006878853, -0.0011052872287109494, -0.013465995900332928, -0.016986152157187462, 0.010364904999732971, 0.029977206140756607, 0.0049764118157327175, -0.0050986395217478275, -0.010204263031482697, -0.0063104392029345036, -0.007787647657096386, 0.015184166841208935, -0.028342846781015396, 0.00941502209752798, -0.046516355127096176, -0.018634479492902756, -0.007969243451952934, -0.01593848690390587, -0.025856386870145798, -0.007159048225730658, 0.021623818203806877, 0.018145568668842316, 0.028300940990447998, -5.4538635595235974e-05, 0.009261364117264748, -0.012446267530322075, -0.01204117015004158, -0.03249160200357437, 0.007871461100876331, -0.03168140724301338, -0.009463912807404995, 0.011643057689070702, 0.002308356575667858, -0.0013122011441737413, -0.02961401455104351, 0.027099616825580597, 0.016078175976872444, 0.008793407119810581, -0.025632886216044426, -0.02001739852130413, 0.010176325216889381, -0.006795857567340136, -0.0008464265265502036, 0.0350339375436306, 0.01778237707912922, -0.02376105636358261, 0.0026855161413550377, 0.00381699507124722, -0.02169366367161274, -0.00421510823071003, -0.006348853465169668, 0.018243350088596344, -0.006485050078481436, 0.02218257263302803, -0.005419923458248377, 0.009023893624544144, 0.02483665943145752, -0.03455899655818939, 0.019458642229437828, 0.016120081767439842, 0.014569536782801151, 0.012886286713182926, 0.01838303916156292, 0.0169163066893816, 0.015337824821472168, -0.033273860812187195, 0.010630314238369465, -0.045594409108161926, 0.010616345331072807, 0.010679204948246479, -0.027686310932040215, 0.01653914712369442, -0.0022227971348911524, -0.020324712619185448, -0.011000488884747028, 0.00484021520242095, 0.018117630854249, 0.01605023816227913, 7.770186493871734e-05, -0.02201494760811329, -0.01271866075694561, 0.004078911617398262, -0.012544049881398678, -0.009554710239171982, -0.015826735645532608, 0.03411199152469635, 0.012425314635038376, -0.005605011247098446, -0.0013043436920270324, -0.013438058085739613, -0.015072416514158249, -0.043638765811920166, -0.019877709448337555, 0.008604827336966991, 0.014639381319284439, 0.022685453295707703, -0.0038554095663130283, -0.009289301931858063, 0.004295429214835167, -0.023439772427082062, -0.0021896210964769125, 0.011265897192060947, 0.003918269649147987, 0.014611443504691124, 0.015659108757972717, 0.020785685628652573, 0.02777012251317501, 0.0008049564203247428, 0.013731404207646847, 0.027462808415293694, 0.010022668167948723, 0.029027322307229042, -0.018941793590784073, -0.00478433957323432, -0.034084055572748184, 0.0036388919688761234, 0.013899030163884163, 0.009945838712155819, 0.020869499072432518, -0.003055691486224532, 0.005416431464254856, 0.02423599734902382, -0.003452058183029294, 0.00553167425096035, -0.0035707936622202396, -0.046572230756282806, -0.0233280211687088, 0.012544049881398678, 0.018480822443962097, 0.004920536186546087, -0.0110633485019207, -0.001605547615326941, 0.03981129452586174, -0.010176325216889381, -0.007640974596142769, 0.0023624859750270844, 0.0021581912878900766, -0.03271510452032089, 0.021665725857019424, 0.008500060066580772, 0.027183430269360542, -0.021875258535146713, 4.4709950088872574e-06, -0.03366499021649361, -0.0034677733201533556, -0.006230118218809366, 0.006959991995245218, 0.005060224793851376, -0.007899398915469646, 0.0018142076442018151, -0.019724050536751747, -0.0031674422789365053, 0.00794828962534666, -0.00663172360509634, 0.0021721599623560905, -0.04014654830098152, -0.01572895236313343, -0.016231833025813103, -0.006925069727003574, 0.008129885420203209, 0.002254227176308632, 0.0022262893617153168, 0.006680614314973354, 0.010574438609182835, -0.013801248744130135, -0.026261484250426292, -0.00527325039729476, 0.0003409278579056263, 0.05288616195321083, 0.0037925494834780693, 0.013165664859116077, 0.032184287905693054, -0.004511946812272072, -0.025828449055552483, 0.007606052327901125, 0.0029194948729127645, 0.007815585471689701, 0.018620509654283524, 0.021218720823526382, -0.01734934188425541, 0.004222092684358358, -0.013291384093463421, 0.020673934370279312, 0.006383775733411312, -0.01526798028498888, 0.012124983593821526, 0.023956621065735817, -0.002404392696917057, -0.014360003173351288, 0.004260506946593523, -0.017237592488527298, 0.007061266340315342, -0.017391249537467957, 0.03668226674199104, -0.020701872184872627, -0.0073196906596422195, -0.030955027788877487, 0.04682366922497749, 0.01589657925069332, 0.02011517994105816, -0.006785381119698286, -0.012509127147495747, -0.006687598768621683, -0.026973897591233253, -0.01762872003018856, 0.0068552251905202866, -0.023202301934361458, 0.02472490817308426, -0.027965687215328217, 0.006212657317519188, -0.01866241730749607, -0.0002193549880757928, -0.032547477632761, -0.014988603070378304, -0.01827128790318966, 0.024990316480398178, -0.019165296107530594, 0.010336967185139656, -0.025255726650357246, -0.005978678353130817, -0.0017050758469849825, -0.0009088499355129898, -0.002870603697374463, -0.0096804304048419, -0.014276189729571342, 0.011587182059884071, 0.005866927560418844, 0.018969731405377388, -0.01644136570394039, 0.01768459565937519, -0.011517337523400784, -0.0052208672277629375, 0.02229432389140129, 0.004152248147875071, 0.0017199177527800202, -0.03064771182835102, -0.006663153413683176, -0.021302534267306328, 0.006464096717536449, -0.0049729193560779095, -0.0009507565409876406, -0.014848913997411728, -0.0031953800935298204, 0.022825142368674278, -0.009044846519827843, 0.03366499021649361, -0.005102131515741348, -0.026596738025546074, -0.02944638766348362, -0.0027117079589515924, -0.01217387430369854, -0.01757284440100193, 0.02376105636358261, 0.019765958189964294, -0.014583505690097809, -0.01296311616897583, 0.014241267926990986, 0.010560469701886177, 0.0068342722952365875, -0.014024750329554081, 0.028398722410202026, -0.011768776923418045, 0.01713980920612812, -0.016511209309101105, -0.034894250333309174, 0.03698958083987236, -0.02559097856283188, 0.006715536583214998, 0.00700888317078352, 0.02391471341252327, -0.007752725388854742, 0.016804557293653488, -0.027853935956954956, -0.011650041677057743, -0.02050630934536457, -0.016315646469593048, 0.0023659782018512487, 0.005332618020474911, 0.004201139323413372, -0.010078542865812778, -0.01958436332643032, -0.012425314635038376, -0.011049380525946617, 0.019975490868091583, 0.01800587959587574, 0.009764243848621845, -0.011705917306244373, 0.03226809948682785, 0.014751131646335125, 0.023719150573015213, -0.0015819751424714923, -0.007654943503439426, -0.002238512272015214, 0.021358409896492958, -0.03975541889667511, -0.005632948596030474, -0.009254379197955132, 0.03260335326194763, 0.021218720823526382, -0.022140666842460632, -0.017642689868807793, -0.009387084282934666, -0.017586814239621162, -0.03819090500473976, -0.016734711825847626, 0.010951598174870014, 0.022643545642495155, 0.009666461497545242, -0.0035934930201619864, 0.022154634818434715, 0.0033001466654241085, 0.03545300289988518, -0.020645996555685997, -0.013403135351836681, -0.005695808678865433, 0.027616465464234352, 0.015449576079845428, 0.007148571778088808, -0.02939051203429699, -0.025395413860678673, 0.03173728287220001, 0.007913367822766304, -0.003712228499352932, 0.0008608319330960512, 0.00819274503737688, -0.026331329718232155, 0.011251929216086864, -0.00818576104938984, 0.0027309150900691748, 0.007710819132626057, 0.0011681471951305866, -0.03525744006037712, 0.004466547630727291, -0.0060659837909042835, -0.0002571146178524941, -0.03766008839011192, -0.013619652949273586, 0.004424640908837318, 0.010665236040949821, 0.01179671473801136, -0.012271656654775143, -0.00038217968540266156, 0.018620509654283524, -0.00949185062199831, 0.009128659963607788, 0.004969427362084389, -0.007969243451952934, -0.0031429969239979982, 0.0038903316017240286, 0.027784092351794243, -0.007508270442485809, 0.023565491661429405, -0.022224480286240578, 0.002374708652496338, 0.018187474459409714, 0.007459379266947508, 0.010316014289855957, -0.011321772821247578, 0.03478249907493591, -0.028217127546668053, 0.008374340832233429, -0.0375203974545002, -0.02278323471546173, -0.00033939999411813915, 0.014597474597394466, 0.013200586661696434, -0.04310794919729233, 0.009540741331875324, 0.011531306430697441, 0.03400024026632309, -0.006904116366058588, -0.010343952104449272, -0.03416786715388298, -0.02246195077896118, -0.013291384093463421, -0.00935914646834135, -0.01515622902661562, -0.00707872724160552, 0.0007394773419946432, 0.007382550276815891, -0.033385612070560455, -0.012090060859918594, 0.20551009476184845, -0.012900255620479584, 0.010895722545683384, 0.020590120926499367, -0.02955813892185688, -0.005007841624319553, 0.032072536647319794, 0.003712228499352932, -0.0084372004494071, 0.018997669219970703, -0.014848913997411728, -0.0029683858156204224, -0.02169366367161274, 0.00489609083160758, 0.014304127544164658, 0.016455335542559624, -0.033217985183000565, -0.02385883778333664, -0.006558386608958244, -0.021302534267306328, 0.006991421803832054, 0.0008119408739730716, -0.009917900897562504, -0.009750274941325188, 0.027378994971513748, 0.002083108527585864, -0.013654575683176517, 0.011182084679603577, 0.02711358666419983, -0.004553853068500757, -0.02045043371617794, 0.02607988938689232, -0.00757811451330781, -0.018089693039655685, -0.024445531889796257, -0.005528182256966829, 0.032687168568372726, 0.002601702930405736, 0.03145790472626686, -0.002940448233857751, 0.005262773483991623, -0.02554907277226448, -0.016958214342594147, -0.021065063774585724, 0.0024410609621554613, 0.04632078856229782, -0.018746230751276016, -0.01117509976029396, 0.0007661054842174053, 0.015449576079845428, -0.011999263428151608, -0.02223844826221466, 0.024543313309550285, 0.002540589077398181, 0.01103541161864996, -0.028594287112355232, -0.014807007275521755, 0.0040893880650401115, -0.0016256278613582253, 0.015645140781998634, -0.031429968774318695, 0.005968201905488968, -0.009652492590248585, 0.006160273682326078, -0.030228644609451294, -0.0011419554939493537, -0.023188332095742226, -0.0044909934513270855, -0.0017880159430205822, -0.05118195712566376, 0.032072536647319794, -0.029530201107263565, -0.009855041280388832, 0.01778237707912922, -0.007613036781549454, -0.022475920617580414, 0.006261548027396202, -0.0073755658231675625, 0.0058320052921772, 0.04092880338430405, -0.007312706205993891, 0.013137727044522762, 0.006966976448893547, -0.011091286316514015, -0.02983751706779003, -0.053444914519786835, 0.03721308335661888, -0.007466363720595837, 0.011098271235823631, -0.022322261705994606, -0.02261560782790184, -0.022587670013308525, -0.01697218231856823, 0.013689497485756874, 0.0169163066893816, -0.008730546571314335, -0.005671363323926926, 0.023230239748954773, -0.01477906946092844, 0.009554710239171982, -0.007864476181566715, 0.04752211272716522, 0.008143854327499866, -0.011203037574887276, 0.018131598830223083, -0.019556425511837006, 0.015198135748505592, -0.016036268323659897, 0.01859257183969021, -0.007494301535189152, -0.005992647260427475, 0.0069495150819420815, 0.006533941254019737, -0.0038903316017240286, 0.02792378142476082, 0.02195907197892666, -0.010448718443512917, -0.031429968774318695, 0.007396519184112549, 0.009575664065778255, 0.018466852605342865, -0.016343584284186363, -0.0005591915105469525, 0.014639381319284439, -0.005503736902028322, -0.01969611458480358, -0.037995338439941406, -0.005213882774114609, -0.004934505093842745, -0.01779634691774845, 0.0363190732896328, -0.030871214345097542, 0.016245801001787186, 0.0034817419946193695, -0.004798308480530977, -0.029139073565602303, -0.0031098208855837584, -0.0060066161677241325, -0.006024077534675598, -0.005730730947107077, -0.0032564939465373755, -0.0007674150401726365, -0.0017076949588954449, -0.019346890971064568, 0.009233426302671432, -0.036849893629550934, 0.005147530231624842, -0.00919151958078146, -0.006359330378472805, -0.016497241333127022, 0.007585098966956139, 0.009484865702688694, -0.005325633566826582, 0.00639774464070797, 0.009687414392828941, -0.01930498518049717, -0.02093934267759323, -0.03553681820631027, 0.002870603697374463, -0.0031133131124079227, -0.02082759328186512, 0.020198993384838104, 0.012655801139771938, -0.022853080183267593, -0.0032495094928890467, -0.01035792101174593, -0.17969560623168945, 0.02099521830677986, 0.005873912014067173, -0.028398722410202026, 0.03411199152469635, 0.020925374701619148, 0.03243572637438774, -0.004197646863758564, 0.011049380525946617, 0.0006661406951025128, -0.00014078007370699197, 0.0034398355055600405, -0.015128291212022305, 0.004180185962468386, -0.0032896699849516153, 0.013424089178442955, -0.020408526062965393, 0.0011585435131564736, 0.01951451785862446, 0.016148019582033157, 0.02445949986577034, -0.0355926938354969, 0.024054402485489845, 0.011070333421230316, 0.03411199152469635, 0.015561326406896114, 0.016902338713407516, 0.020799655467271805, -0.026205608621239662, -0.03472662344574928, 0.01266278512775898, 0.0040055750869214535, 0.01990564726293087, -0.007808601018041372, 0.015170197933912277, 0.014192377217113972, -0.010029652155935764, -0.02152603678405285, -0.01713980920612812, 0.0245712511241436, -0.0021739061921834946, 0.026205608621239662, 0.0027466299943625927, 0.0011681471951305866, -0.016399459913372993, 0.018564634025096893, 0.020743779838085175, -0.026484986767172813, -0.005887880921363831, 0.0036039697006344795, 0.015058447606861591, -0.01659502275288105, 0.014471754431724548, 0.002627894515171647, 0.023942651227116585, -0.00029858469497412443, -0.009442959912121296, 0.0033525300677865744, 0.005049748346209526, 0.016078175976872444, 0.002542335307225585, -0.031429968774318695, 0.0070123751647770405, 0.003925253637135029, 0.008367355912923813, -0.02955813892185688, -0.02797965705394745, -0.006478065624833107, -0.014541598968207836, 0.017614752054214478, 0.0035934930201619864, 0.00508467061445117, -0.004103356972336769, -0.012977085076272488, 0.009875994175672531, 0.013822201639413834, -0.008709593676030636, -0.003799533937126398, 0.011314788833260536, -0.028566349297761917, -0.009771227836608887, 0.025241756811738014, -0.018075725063681602, -0.0031639502849429846, -0.017670627683401108, -0.00025733286747708917, 0.00022874033311381936, -0.003242525039240718, 0.01264183223247528, -0.013493932783603668, 0.008290527388453484, -0.01713980920612812, -0.01279548928141594, -0.013214555568993092, -8.048473318922333e-06, 0.024417594075202942, 0.019011639058589935, -0.00421860022470355, 0.007103173062205315, -0.018844012171030045, 0.02651292458176613, 0.0020324713550508022, -0.032072536647319794, -0.012264672666788101, 0.01790809817612171, 0.0052767423912882805, -0.023034675046801567, 0.012460236437618732, 0.040425922721624374, -0.004075419157743454, -0.012949147261679173, 0.011810683645308018, 0.0032826855313032866, 0.021400315687060356, -0.001943419687449932, 0.03760421276092529, -0.003305385122075677, -0.0206040907651186, 0.02370518073439598, 0.0006600293563678861, 0.07274989783763885, -0.015924517065286636, 0.02033868245780468, -0.004868153017014265, -0.011545275337994099, 0.002186128869652748, -0.10348142683506012, -0.017503000795841217, 0.011615119874477386, 0.006348853465169668, 0.00875848438590765, 0.02169366367161274, -0.02011517994105816, 0.0122856255620718, -0.005783114116638899, 0.044504836201667786, -0.0007643593708053231, -0.005178960505872965, -0.005486275535076857, 0.0193608608096838, -0.014918758533895016, -0.015142260119318962, -0.020198993384838104, -0.01035792101174593, -0.02131650224328041, 0.026484986767172813, -0.012460236437618732, 0.005011334083974361, -0.013626637868583202, -0.010176325216889381, -0.0011218752479180694, -0.00307140639051795, -0.05115402117371559, 0.024585219100117683, -0.009030877612531185, 0.011433524079620838, -0.007752725388854742, -0.021106969565153122, 0.010309029370546341, -0.03386055305600166, -0.005999631714075804, -0.004431625362485647, -0.0003315425128675997, -0.00943597499281168, 0.02695992775261402, -0.008856266736984253, -0.0042290766723454, 0.010909691452980042, 0.01434603426605463, -0.021232690662145615, -3.115713843726553e-05, 0.009282317012548447, -0.02554907277226448, 0.011566228233277798, 0.007340643554925919, -0.008011150173842907, -0.02174953743815422, 0.01697218231856823, -0.0016011822735890746, -0.025968138128519058, 0.01420634612441063, 0.0007001898484304547, 0.003359514521434903, 0.010553484782576561, -0.011950372718274593, 0.011440508998930454, 0.012292609550058842, -0.005891372915357351, 0.0016326123150065541, 0.004690049681812525, -0.00022230154718272388, 0.02191716432571411, -0.0030923597514629364, -0.029027322307229042, 0.020632028579711914, -0.024878567084670067, -0.000512046564836055, 0.0331900455057621, -0.02566082403063774, 0.015966424718499184, -0.017042027786374092, 0.006156781688332558, 0.0020796163007616997, 0.00012910296209156513, 0.023607399314641953, -0.02131650224328041, -0.011084302328526974, -0.02283911034464836, -0.005989155266433954, -0.019165296107530594, 0.04810880497097969, 0.020324712619185448, 0.0103020453825593, 0.009366130456328392, 0.02033868245780468, -0.013445042073726654, -0.0009350415784865618, 0.009764243848621845, 0.0025126514956355095, 0.008835313841700554, 0.017042027786374092, 0.023886775597929955, 0.013130742125213146, -0.016846463084220886, 0.02022693119943142, -0.00220359000377357, -0.04344319924712181, 0.00924739520996809, -0.052299465984106064, 0.019751988351345062, -0.022336231544613838, -0.012348485179245472, 0.000425177626311779, -0.030787400901317596, 0.008618796244263649, 0.003729689633473754, -0.012914224527776241, 0.006739981938153505, -0.03422374278306961, -0.004560837522149086, 0.0009009924251586199, -0.00843021646142006, -0.003701751818880439, -0.03210047632455826, 0.023691212758421898, 0.0035428558476269245, 0.014904789626598358, 0.02001739852130413, 0.012257687747478485, -0.012921209447085857, 0.03020070679485798, 0.014793038368225098, -0.007173017133027315, 0.007934320718050003, -0.00627551693469286, 0.01951451785862446, -0.024445531889796257, -0.013347259722650051, -0.0103020453825593, -0.019458642229437828, 0.01097953598946333, 0.0012947401264682412, 0.00282695097848773, 0.0028653654735535383, -0.003115059109404683, 0.003663337556645274, 0.0005919310497120023, 0.03877759724855423, -0.00949185062199831, 0.004700526595115662, 0.012571987695991993, -0.01364060677587986, 0.003642384195700288, 0.008576889522373676, -0.021400315687060356, 0.015477513894438744, 0.012215781025588512, -0.0018054770771414042, 0.025032224133610725, 0.007382550276815891, 0.0016177702927961946, -0.017097903415560722, 0.027756154537200928, -0.01521210465580225, 0.0027885367162525654, -0.01103541161864996, 0.005748191848397255, -0.020478371530771255, 0.029222887009382248, -0.008039087988436222, 0.006083445157855749, -0.014932727441191673, 0.016804557293653488, -0.02293689176440239, 0.0019067514222115278, -0.0021564450580626726, 0.005503736902028322, -0.020897436887025833, -0.025898294523358345, -0.011936403810977936, 0.026931991800665855, 0.039895106106996536, 0.008611811324954033, 0.002750122221186757, -0.0239705890417099, -0.01073508057743311, -0.005262773483991623, 0.01681852526962757, 0.02054821513593197, 0.011356695555150509, -0.024585219100117683, -0.0013628383167088032, 0.026554830372333527, -0.018899887800216675, 0.004176693502813578, -0.009240411221981049, 0.011028426699340343, 0.014932727441191673, 0.02966989018023014, 0.00851402897387743, -0.00984805729240179, -0.005185944959521294, 0.01659502275288105, 0.01209704577922821, 0.01103541161864996, 0.007752725388854742, 0.011761792935431004, 0.0067085521295666695, -0.012439283542335033, -0.0010162356775254011, -0.0009673446184024215, -0.022266386076807976, -0.059842661023139954, 0.02316039428114891, -0.006299962755292654, -0.02207082323729992, -0.002229781588539481, 0.02466903254389763, 0.015351793728768826, 0.024906504899263382, 0.042381566017866135, 0.01990564726293087, -0.029167011380195618, 0.020143117755651474, -0.002056916942819953, 0.01407364197075367, -0.010148387402296066, 0.034531060606241226, 0.006516480352729559, -0.010260138660669327, 0.03307829424738884, -0.002498682588338852, 0.030284520238637924, 0.01239737682044506, 0.041850749403238297, 0.011237960308790207, -0.012753582559525967, 0.00466211186721921, -0.007291752845048904, 0.0024777292273938656, -0.017069965600967407, -0.006488542538136244, -0.004679573234170675, -0.015240042470395565, 0.008751500397920609, 0.00421860022470355, 0.011042395606637001, 0.08174585551023483, 0.0084372004494071, -0.022378137335181236, -0.014485723339021206, -0.008451169356703758, 0.004302413668483496, 0.01843891479074955, -0.0007957893540151417, 0.016678836196660995, -0.016958214342594147, 0.00446305563673377, -0.0034136439207941294, 0.01952848769724369, -0.054255109280347824, -0.022168604657053947, 0.005570088978856802, 0.0169163066893816, 0.020198993384838104, -0.02342580258846283, -0.004354796838015318, 0.01913735829293728, 0.020268836989998817, -0.0018107154173776507, -0.010707142762839794, -0.011650041677057743, -0.0017967465100809932, 0.02033868245780468, -0.017265530303120613, -0.0006172496359795332, -0.029111135751008987, -0.012166890315711498, -0.021609850227832794, -0.03525744006037712, -0.00998076144605875, -0.004176693502813578, -0.015044478699564934, 0.011405586265027523, -0.009701383300125599, 0.04355495050549507, 0.00789241399616003, -0.02402646467089653, 0.011719886213541031, -0.015351793728768826, -0.04050973802804947, -0.008087978698313236, -0.020534245297312737, -0.0199615228921175, -0.003513172036036849, -0.047857366502285004], "479ce05c-61fd-4bea-8a73-e26b16cd3e70": [-0.023380465805530548, 0.026491234079003334, -0.01098711509257555, -0.030283812433481216, -0.0008824492688290775, 0.014744182117283344, 0.0043927151709795, -0.020127655938267708, -0.013060959056019783, -0.014943044632673264, 0.037556473165750504, -9.110800601774827e-05, 0.001246437430381775, 0.03519853949546814, -0.0080112898722291, 0.0030415202490985394, 0.027954287827014923, 0.04332346469163895, 0.019559478387236595, 0.01232232991605997, -0.01545440312474966, -0.0007905644597485662, -0.008771225810050964, -0.0008935464429669082, -0.018735622987151146, 0.011676028370857239, 0.0211503729224205, -0.03820987418293953, -0.02818155847489834, -0.0026136122178286314, 0.002279808511957526, -0.006537581793963909, -0.01802540197968483, 0.011157567612826824, -0.04883477836847305, 0.013920326717197895, -0.006388435605913401, -0.012499884702265263, 0.013721464201807976, 0.0026881855446845293, 0.030340630561113358, 0.01499986182898283, 0.01674700528383255, 0.0004430001717992127, -0.010468653403222561, 0.0056107440032064915, 0.014325152151286602, -0.01401265524327755, -0.006242840085178614, 0.02210206910967827, 0.0280253104865551, 0.04781205952167511, -0.018735622987151146, -0.016988480463624, -0.022471383213996887, -0.0006383108557201922, 0.0012038241839036345, 0.011541087180376053, 0.005781196523457766, -0.0012082629837095737, 0.005362166557461023, -0.01610780693590641, -0.02045435644686222, 0.010724333114922047, -0.002533712424337864, 0.015070883557200432, 0.021022533997893333, 0.0010813110275194049, -0.012897608801722527, -0.016363484784960747, 0.022911719977855682, 0.003226177766919136, -0.00958797987550497, -0.019133346155285835, 0.011803868226706982, -0.033181510865688324, -0.02426113933324814, -0.0009854312520474195, -0.00737919332459569, -0.005177509039640427, -0.007073798682540655, 0.0018483494641259313, -0.022783881053328514, 0.01443878747522831, 0.01778392679989338, -0.00208982452750206, 0.0076490771025419235, 0.008728613145649433, -0.013735668733716011, -0.018167445436120033, 0.011406145058572292, 0.020923102274537086, -0.00948144681751728, -0.006349373143166304, 0.012421760708093643, 0.021817980334162712, -0.01896289363503456, 0.02677532099187374, -0.014417480677366257, -0.0014674935955554247, 0.0032119732350111008, -0.00185190059710294, -0.005031913984566927, -0.0018732071621343493, -0.028508260846138, -0.001472820295020938, 0.004410470835864544, -0.007048940751701593, -0.001961984671652317, 0.0063174134120345116, -6.54179893899709e-05, 0.04261324554681778, 0.0060013653710484505, -0.005291144363582134, 0.02090889774262905, -0.02173275500535965, 0.019460048526525497, -0.029317911714315414, -0.01460213866084814, -0.017911767587065697, 0.007769814692437649, 0.0012348962482064962, 0.019460048526525497, -0.006274800281971693, 0.016889048740267754, 0.001262417295947671, -0.019374821335077286, -0.009083722718060017, -0.037641700357198715, -0.01379958912730217, 0.033721279352903366, 0.027741221711039543, 0.010092237032949924, 0.007343682460486889, -0.007052491884678602, 0.022996947169303894, -0.028650304302573204, -0.0036310034338384867, 0.002221215283498168, -0.03863600641489029, 0.023934438824653625, 0.02039754018187523, -0.009197358042001724, 0.01669018715620041, 0.018579374998807907, 0.02285490371286869, 0.014559525065124035, 0.012201592326164246, 0.006122102495282888, -0.011462962254881859, -0.001296152826398611, -0.017343590036034584, 0.0072442516684532166, -0.009488549083471298, 0.03139175474643707, -0.005490006413310766, -0.018281081691384315, 0.024815112352371216, -0.011370633728802204, -0.014176005497574806, 0.03332355618476868, 0.02431795746088028, 0.0020756199955940247, 0.01054677739739418, 0.010795354843139648, 0.03448832035064697, 0.00867889728397131, 0.001724060857668519, -0.006541132926940918, 0.0003011779917869717, -0.030255403369665146, 0.008757021278142929, -0.011526882648468018, 0.009474344551563263, 0.00923997163772583, 0.0026722054462879896, 0.01499986182898283, 0.019871976226568222, -0.02580942213535309, 0.0040944223292171955, 0.0103337112814188, -0.002427179366350174, 0.018948689103126526, 0.03139175474643707, -0.0039559295400977135, 0.00730106933042407, 0.02580942213535309, 0.0031782377045601606, 0.011661824770271778, 0.01847994327545166, 0.016519734635949135, 0.012009833008050919, -0.00828117411583662, -0.013316638767719269, -0.6163579821586609, -0.022286726161837578, 0.003718005493283272, 0.009701615199446678, -0.020227085798978806, 0.007421806454658508, -0.01518451888114214, 0.02036913111805916, -0.031533800065517426, 0.0318462960422039, -0.03741442784667015, 0.009808148257434368, -0.0014266559155657887, -0.01369305606931448, -0.0012517640134319663, -0.011178874410688877, 0.012812381610274315, -0.00759225944057107, -0.009758432395756245, 0.017244160175323486, -0.012329432182013988, 0.002246072981506586, -0.0057172770611941814, -0.0033877529203891754, -0.004801092203706503, -0.0054438416846096516, 0.0150282708927989, -0.019133346155285835, 0.01784074492752552, 0.02610771358013153, -0.03292583301663399, -0.006977918557822704, 0.012783973477780819, -0.0011336898896843195, 0.045795030891895294, 0.0033966307528316975, -0.03508490324020386, 0.025269653648138046, 0.009950192645192146, 0.020681627094745636, -0.02528385818004608, -0.025908851996064186, 0.030567899346351624, 0.023110583424568176, 0.02818155847489834, 0.002439608098939061, 0.01054677739739418, 0.024360571056604385, -0.0007501706713810563, -0.01133512333035469, -0.004825949668884277, 0.0020756199955940247, -0.00537281995639205, -0.0011869564186781645, -0.0020063736010342836, 0.004058911465108395, 0.01775551773607731, -0.022414566949009895, -0.002064966829493642, 0.00026056222850456834, 0.0016068744007498026, -0.001637058798223734, -0.011803868226706982, -0.014616342261433601, 0.00249287486076355, -0.023380465805530548, -0.012712950818240643, -0.004495697095990181, 0.01690325327217579, -0.0010813110275194049, 0.0009614613372832537, -0.0028692916966974735, -0.056760840117931366, 0.00527338869869709, -0.00910502951592207, 0.037641700357198715, 0.014239925891160965, -0.004396266303956509, 0.005756339058279991, 0.002130662091076374, -0.005298246629536152, -0.01823846809566021, -0.006047529634088278, -0.011391940526664257, 0.03701670467853546, -0.007219393737614155, -0.023039560765028, 0.014033962041139603, -0.026462825015187263, 0.007155473809689283, -0.0011594353709369898, 0.02045435644686222, 0.009119234047830105, -0.025965670123696327, 0.013309536501765251, -0.0017631229711696506, 0.0080112898722291, -0.00867889728397131, 0.012045343406498432, -0.03443150222301483, -0.012045343406498432, -0.019928794354200363, 0.01784074492752552, 0.0006316525395959616, -0.00843742210417986, 0.025028178468346596, -0.017343590036034584, -0.01524133700877428, 0.0365905724465847, -0.032840605825185776, 0.014183107763528824, -0.017641883343458176, -0.009225767105817795, 0.005735032260417938, -0.00937491375952959, -0.03161902725696564, 0.008636283688247204, 0.010085134766995907, -0.009651899337768555, -0.01583792269229889, 0.00015081092715263367, 0.010042521171271801, -0.030965624377131462, -0.018011197447776794, 0.027698608115315437, 0.005429637618362904, 0.003467652713879943, -0.0028977005276829004, -0.016207236796617508, 0.02061060629785061, -0.007734303828328848, 0.0018199406331405044, 0.026420211419463158, -0.023039560765028, 0.010489960201084614, -0.0025656723883002996, 0.013749873265624046, -0.0036931477952748537, 0.03522694855928421, 0.021434461697936058, -0.01789756305515766, 0.0099714994430542, 0.026093509048223495, -0.02124980464577675, -0.0026260411832481623, -0.03434627503156662, -0.01972993277013302, -0.0017098564421758056, -0.00846583116799593, 0.01802540197968483, -0.002176826586946845, 0.015014066360890865, -0.02213047817349434, 0.020227085798978806, -0.0054118819534778595, -0.004751376807689667, -0.022741267457604408, -0.002592305652797222, -0.021264009177684784, -0.017585065215826035, 0.002221215283498168, 0.04377800598740578, -0.019502662122249603, 0.004229364451020956, 0.016647573560476303, -0.00892037246376276, -0.02474408969283104, 0.01917595975100994, -0.024729885160923004, -0.02397705242037773, 0.00945303775370121, -0.012258409522473812, -0.001534076756797731, -0.004403368569910526, 0.005244980100542307, 0.030312221497297287, -0.009644797071814537, 0.002349055139347911, -0.039857588708400726, -0.0032386064995080233, 0.022059455513954163, 0.011264100670814514, -0.006381333339959383, 0.004570270422846079, 0.016860639676451683, 0.014701569452881813, 0.02136343903839588, -0.017613474279642105, -0.006750647909939289, 0.004208057653158903, -0.0046306392177939415, -0.0017933073686435819, -0.024999769404530525, -0.011825175024569035, -0.00384939624927938, 0.014275436289608479, -0.013366353698074818, 0.01680382341146469, -0.03448832035064697, 0.032357655465602875, 0.015326563268899918, 0.011768357828259468, 0.026150327175855637, -0.029232684522867203, 0.000629433139692992, -0.041931431740522385, 0.01896289363503456, -0.02626396343111992, 0.022116273641586304, -0.008977189660072327, 0.012918914668262005, -0.009552468545734882, -0.00980104599148035, -0.018920280039310455, 0.025326471775770187, 0.008472933433949947, -0.018891870975494385, 0.029744043946266174, -0.02474408969283104, 0.010163258761167526, -0.012634826824069023, -0.0016193032497540116, 0.03289742395281792, 0.004900522995740175, -0.0034498972818255424, 0.014403276145458221, 0.02829519473016262, -0.010795354843139648, 0.004879216197878122, -0.013472887687385082, 0.007084451615810394, 8.150892972480506e-05, 0.008693101815879345, -0.0015243112575262785, -0.006075938232243061, 0.0010360345477238297, 0.03778374195098877, -0.009715819731354713, 0.046306390315294266, -0.013508398085832596, -0.014019757509231567, 0.019914589822292328, -0.015852127224206924, 0.009069519117474556, 0.01610780693590641, -0.021960025653243065, 0.02267024666070938, 0.016164623200893402, 0.010163258761167526, 0.01589474081993103, -0.017158932983875275, 0.0067613013088703156, -0.01592314802110195, -0.012563805095851421, -0.0031942178029567003, -0.00913343857973814, 0.0031942178029567003, 0.024147504940629005, 0.023039560765028, 0.005738583393394947, 0.011051034554839134, -0.007663281634449959, 0.010930296964943409, -0.01088058203458786, 0.007262006867676973, 0.0047904388047754765, -0.010596493259072304, -0.014843612909317017, -0.004271977581083775, 0.0030663779471069574, -0.026817934587597847, -0.040283720940351486, -0.030340630561113358, 0.0005135783576406538, 0.00042435689829289913, -0.0035067149437963963, -0.005674663465470076, -0.0019921690691262484, 0.007492828648537397, -0.008025494404137135, -0.023295240476727486, -0.016335077583789825, 0.0150282708927989, 0.019232777878642082, -0.03215879574418068, -0.009168949909508228, -0.004193853586912155, -0.008820941671729088, -0.030283812433481216, -0.0012695195619016886, -0.027031000703573227, 0.004811745602637529, -0.02373557724058628, -0.013508398085832596, -0.00685362983494997, -0.008380604907870293, 0.0057492367923259735, -0.010149054229259491, -0.00013294444943312556, 0.000966787978541106, -0.0018962894100695848, -0.005095833912491798, -0.02583782933652401, 0.008913270197808743, 0.029076436534523964, 0.021178781986236572, 0.01784074492752552, -0.013806691393256187, 0.005607192870229483, -0.018408920615911484, 0.02386341616511345, -0.01781233586370945, -0.045482534915208817, 0.009730024263262749, 0.01409077923744917, -0.014168903231620789, 0.009999907575547695, -0.023849211633205414, 0.01896289363503456, -0.011427451856434345, -0.02495715580880642, -0.042329154908657074, 0.0051988158375024796, 0.007198086939752102, 0.03477240726351738, 0.04988590255379677, -0.014055267907679081, 0.008373502641916275, 0.026334984228014946, 0.004328795243054628, -0.012251307256519794, -0.015411789529025555, -0.009829455055296421, -0.008288276381790638, -0.024019666016101837, -0.0029882537201046944, 0.010191667824983597, -0.0028071473352611065, 0.025425901636481285, 0.016889048740267754, 0.0001155218415078707, -0.013785384595394135, 0.008650488220155239, -0.0150282708927989, 0.034090593457221985, 0.026207145303487778, 0.03352241963148117, 0.01951686479151249, 0.0008296265732496977, 0.008536852896213531, 0.013274025171995163, -0.021022533997893333, -0.002217664150521159, -0.009410425089299679, -0.03207356855273247, 0.03267015516757965, 0.030994033440947533, 0.001102617708966136, -0.009126336313784122, 0.032300837337970734, 0.03207356855273247, 0.003188891103491187, -0.011363531462848186, -0.0015820167027413845, 0.018920280039310455, 0.024090686812996864, -0.0064061908051371574, -0.02823837660253048, -0.002052537864074111, -0.008962986059486866, -0.036278076469898224, 0.00569241913035512, 0.0027414520736783743, -0.01303965225815773, 0.010241382755339146, -0.014715773984789848, -0.01571008190512657, -0.0007586044957861304, -0.011690232902765274, -0.00352979707531631, -0.013955837115645409, -0.019673114642500877, -0.013636237941682339, 0.009744228795170784, 0.011960117146372795, -0.013160389848053455, 0.01917595975100994, -0.004726518876850605, 0.002784065203741193, -0.023820802569389343, -0.023692963644862175, 0.010553879663348198, -0.041562117636203766, -0.0032119732350111008, -0.010347915813326836, -0.033295147120952606, -0.01057518646121025, -0.005774094723165035, 0.0027432276401668787, 0.02258501946926117, 0.013487091287970543, 0.004044706933200359, 0.00913343857973814, 0.019502662122249603, -0.04272687807679176, -0.03636329993605614, 0.0015882310690358281, -0.03522694855928421, 0.013011244125664234, 0.011683130636811256, 0.009353606961667538, -0.0007466195384040475, -0.01610780693590641, 0.020766854286193848, 0.0174714308232069, -0.007084451615810394, -0.03474399819970131, -0.015127701684832573, 0.014048165641725063, -0.0033220574259757996, -0.004303937777876854, 0.043266646564006805, 0.012087957002222538, -0.02744292840361595, -0.025397492572665215, -0.003945276141166687, -0.0065340306609869, -0.02370716817677021, -0.024815112352371216, 0.017698701471090317, -0.0018252673326060176, 0.0031196444761008024, -0.012230001389980316, 0.01626405492424965, -0.009637695737183094, -0.017727108672261238, 0.004168995656073093, 0.0020933756604790688, 0.032357655465602875, -0.004126382526010275, 0.03528376668691635, 0.021633323282003403, 0.014872021973133087, -0.03164743632078171, 0.012166080996394157, -0.021860593929886818, 0.0047158654779195786, 0.022144682705402374, 0.009339402429759502, 0.03951667994260788, 0.010916092433035374, -0.032726969569921494, 0.003959480673074722, 0.007663281634449959, 0.009943090379238129, 0.030283812433481216, -0.013309536501765251, -0.00846583116799593, -0.018806645646691322, -0.015042475424706936, -0.012095059268176556, 0.010042521171271801, -0.009737126529216766, 0.015156110748648643, 0.007947370409965515, 0.02018447406589985, -0.012812381610274315, 0.004247120115906, -0.017286771908402443, -0.0320451594889164, -0.0006161165074445307, 5.526405220734887e-05, 0.0180538110435009, 0.033664461225271225, 0.0026508988812565804, -0.00544739281758666, -0.0027627586387097836, -0.01690325327217579, -0.01358652301132679, -0.031874705106019974, -0.02333785407245159, -0.010560981929302216, 0.02863609977066517, 0.0334940105676651, 0.043607551604509354, -0.018707213923335075, 0.028224172070622444, 0.011860686354339123, -0.017712904140353203, 0.008167538791894913, -0.027371907606720924, 0.0054651484824717045, -0.03945986554026604, 0.0092683807015419, 0.009893374517560005, 0.010972910560667515, 0.030681535601615906, -0.037670109421014786, 0.026221349835395813, 0.01775551773607731, 0.0032528110314160585, 0.008764123544096947, -0.0034907348453998566, -0.049829088151454926, -0.0060155694372951984, 0.0034534484148025513, 0.008444524370133877, 0.009509855881333351, -0.017585065215826035, -0.011995628476142883, 0.017031094059348106, -0.0073649887926876545, -0.003261688631027937, 0.0026970631442964077, 0.029261093586683273, -0.017641883343458176, 0.017130523920059204, 0.020298108458518982, 0.025979874655604362, -0.009886272251605988, -0.010454448871314526, -0.020170269533991814, -0.004911176394671202, 0.001143455388955772, 0.01303965225815773, 0.02154809609055519, -0.013835099525749683, 0.00677905697375536, -0.015766900032758713, -0.004801092203706503, 0.017073705792427063, -0.034090593457221985, 0.007578055374324322, -0.03619284927845001, -0.007322375662624836, -0.0010884132934734225, -0.0026100610848516226, 0.010163258761167526, -0.0050745271146297455, 0.00980104599148035, -0.0004718528944067657, 0.015724286437034607, -0.02461625076830387, -0.035851944237947464, -0.0033699972555041313, -0.01884925737977028, 0.04215870425105095, 0.014872021973133087, -0.0030308670829981565, 0.038067832589149475, -0.0020631912630051374, -0.017570860683918, 0.011185976676642895, 0.012059547938406467, 0.010837968438863754, 0.04605071246623993, 0.026065099984407425, -0.02538328804075718, -0.012954425998032093, -0.015823718160390854, -0.01623564586043358, -0.021022533997893333, -0.021903207525610924, 0.025695785880088806, 0.04051098972558975, -0.00966610386967659, -0.014190210029482841, 0.02130662277340889, -0.023849211633205414, 0.017499838024377823, 0.005823810119181871, 0.02176116406917572, -0.023664554581046104, -0.011533984914422035, -0.009097927249968052, 0.021164577454328537, -0.009857864119112492, 0.021434461697936058, -0.005323104560375214, -0.026761116459965706, -0.008394809439778328, -0.04355073347687721, -0.008742816746234894, 0.000403272220864892, -0.004108626861125231, 0.020766854286193848, -0.027073614299297333, 0.019445843994617462, -0.003385977353900671, 0.014957248233258724, -0.02127821370959282, -0.02322421781718731, -0.00115144532173872, 0.03036903776228428, -0.031022440642118454, 0.010454448871314526, -0.003208422102034092, -0.020255494862794876, 0.002908353926613927, -0.011860686354339123, 0.0018643294461071491, -0.019644705578684807, -0.02522704005241394, -0.014829409308731556, 0.004772683139890432, 0.03167584538459778, 0.009921783581376076, 0.006367128808051348, -0.021505484357476234, -0.011448757722973824, 0.009275482967495918, 0.00048650120152160525, 0.01786915399134159, -0.02887757495045662, -0.01542599406093359, -0.0023472795728594065, -0.010340813547372818, 0.003558205906301737, -0.016434507444500923, -0.01759926974773407, 0.0043465509079396725, 0.0180538110435009, -0.004474390763789415, 0.028167353942990303, -0.013614931143820286, -0.014275436289608479, -0.027897469699382782, -0.016036784276366234, -0.005081629380583763, -0.007247802335768938, 0.009538264013826847, 0.004619985818862915, -0.023820802569389343, -0.011569495312869549, 0.0007550534210167825, 0.014126290567219257, 0.005983609706163406, -0.004449532832950354, 0.025326471775770187, -0.008771225810050964, 0.008231458254158497, -0.0003637661866378039, -0.02845144271850586, 0.033664461225271225, -0.019772544503211975, 0.0160225797444582, -0.007578055374324322, -0.003101889044046402, 0.008899065665900707, -0.0008385043474845588, -0.02279808558523655, 0.0018341450486332178, -0.024119095876812935, 0.020979920402169228, 0.01607939787209034, 0.005177509039640427, -0.005070975981652737, -0.008693101815879345, -0.03622125834226608, -0.020596401765942574, -0.009218664839863777, 0.013139083981513977, 0.026519641280174255, 0.0015935577685013413, -0.013053856790065765, 0.011477166786789894, -0.004215159919112921, 0.017400408163666725, -0.025354880839586258, -0.010944501496851444, 0.013742770999670029, 0.011420349590480328, -0.019914589822292328, -0.010475755669176579, -0.0012997039593756199, 0.020937306806445122, 0.00737919332459569, -0.02349410206079483, -0.00421871105208993, -0.005923240911215544, -0.0022141130175441504, -0.03923259302973747, -0.013806691393256187, 0.00019908374815713614, 0.05056771636009216, 0.026434415951371193, -0.015795309096574783, 0.016761209815740585, -0.018224263563752174, 0.027187248691916466, -0.0370735228061676, -0.006356475409120321, -0.009332300163805485, 0.032783787697553635, -0.0006067948415875435, -0.018437329679727554, -0.04119280353188515, -0.008082311600446701, 0.02109355479478836, 0.0026508988812565804, -0.0007204301655292511, 0.013139083981513977, 0.02757076919078827, -0.020567992702126503, -0.013082265853881836, -0.001810175133869052, 0.0066760750487446785, 0.001514545758254826, 0.009673206135630608, -0.031533800065517426, -0.006470110733062029, -0.012244204990565777, -0.015624855645000935, -0.01328112743794918, -0.0018625538796186447, 0.025184426456689835, -0.010774048045277596, 0.0014674935955554247, -0.0010759844444692135, 0.00223009311594069, 0.024019666016101837, -0.017911767587065697, 0.0030663779471069574, -0.011079443618655205, -0.007805326022207737, 0.02063901536166668, 0.002716594375669956, 0.012308125384151936, -0.010908990167081356, 0.00894878152757883, -0.005237877834588289, 0.018224263563752174, 0.027684403583407402, 0.02450261451303959, -0.007357886992394924, -0.007141269277781248, 0.01997140608727932, -0.020326517522335052, 0.0026508988812565804, -0.027087818831205368, -0.0063706799410283566, -0.016207236796617508, 0.021264009177684784, 0.0026171633508056402, -0.03556785359978676, 0.007308171130716801, -0.005592988338321447, 0.026093509048223495, 0.008558159694075584, -0.03249970078468323, -0.011640517972409725, -0.025667376816272736, -0.00349606154486537, -0.010908990167081356, -0.00010264909360557795, 0.006551786325871944, 0.002730798674747348, 0.012123468331992626, -0.02365035004913807, -0.011718641966581345, 0.18977098166942596, -0.012926016934216022, 0.021136168390512466, 0.041505299508571625, -0.004637741483747959, -0.01786915399134159, 0.019261186942458153, -0.033181510865688324, -0.015610652044415474, 0.022996947169303894, 0.013565216213464737, 0.02498556487262249, -0.018920280039310455, -0.00026966191944666207, 0.01669018715620041, 0.011008420959115028, -0.04349391907453537, -0.02677532099187374, -0.009431730955839157, -0.014083676971495152, -0.005284042097628117, 0.012364942580461502, -0.030141767114400864, -0.019019711762666702, 0.026036692783236504, -0.0027716364711523056, -0.00442112423479557, 0.0076348730362951756, 0.02261342853307724, 0.010340813547372818, -0.03534058481454849, 0.009488549083471298, 0.007997085340321064, -0.005901934113353491, -0.023295240476727486, -0.024119095876812935, 0.012634826824069023, 0.010283996351063251, 0.028977006673812866, 0.0016583653632551432, -0.009786841459572315, -0.016306668519973755, -0.03124971129000187, -0.01401265524327755, -0.009779739193618298, 0.03786896914243698, -0.015411789529025555, -0.017002684995532036, 0.014261232689023018, 0.031136076897382736, -0.005312451161444187, 0.018252672627568245, 0.0206674225628376, 0.04139166325330734, 0.013671749271452427, -0.034971266984939575, -0.005543272942304611, -0.003588390303775668, 0.0006676074699498713, 0.02157650515437126, -0.02991449646651745, 0.01741461269557476, -0.0026420210488140583, 0.0170879103243351, -0.017428817227482796, -0.0033593440894037485, -0.026207145303487778, -0.005521966144442558, -0.003657636698335409, -0.040624625980854034, 0.014928840100765228, -0.005113589111715555, -0.03289742395281792, 0.03994281217455864, -0.004950238391757011, -0.015340767800807953, 0.006811016704887152, 0.020809467881917953, -0.000901092542335391, 0.01592314802110195, -0.020525379106402397, -0.01338766049593687, -0.00023858978238422424, -0.009637695737183094, -0.015979966148734093, -0.04122121259570122, 0.00527338869869709, -0.005063873715698719, -0.014218619093298912, -0.026817934587597847, -0.024019666016101837, -0.03749965503811836, -0.0072584557346999645, 0.020085042342543602, -0.012357840314507484, -0.0018643294461071491, -0.001538515673018992, 0.03264174610376358, -0.012095059268176556, -0.0027858407702296972, -0.03653375431895256, 0.045027993619441986, 0.022059455513954163, 0.0023295239079743624, 0.009261278435587883, -0.00030872406205162406, -0.00158024113625288, 0.0011984974844381213, 0.009410425089299679, 0.007088002748787403, -0.018806645646691322, -0.016278259456157684, -2.0834990209550597e-05, -0.011860686354339123, -0.0037712720222771168, 0.015014066360890865, 0.00022272078786045313, -0.014928840100765228, 0.02914745919406414, 0.010582288727164268, 0.020567992702126503, -0.01117177214473486, -0.003820987418293953, 0.004850807599723339, -0.008210151456296444, -0.014943044632673264, -0.0434655100107193, -0.006896243430674076, -0.007038287352770567, -0.01821005903184414, 0.02562476322054863, -0.01690325327217579, 0.015695877373218536, -0.01370725966989994, -0.00036110286600887775, -0.012173183262348175, -0.0042400178499519825, -0.011370633728802204, -0.032386064529418945, 0.011420349590480328, 0.007269109133630991, 0.01607939787209034, 0.010312405414879322, -0.029744043946266174, -0.0017134074587374926, -0.007556748576462269, 0.010972910560667515, -0.009872067719697952, -0.022627633064985275, -0.026306575164198875, 0.0017844295362010598, 0.017712904140353203, 0.006544684059917927, -0.005429637618362904, 0.021022533997893333, -0.014062370173633099, -0.015227132476866245, -0.037556473165750504, -0.009332300163805485, 0.013224310241639614, -0.042300745844841, 0.013629135675728321, 0.03480081632733345, -0.015056679956614971, -0.019346412271261215, -0.013032549992203712, -0.18283922970294952, 0.0052343267016112804, 0.012940221466124058, -0.03428945690393448, 0.017570860683918, 0.005113589111715555, 0.03218720480799675, 0.015624855645000935, -0.0018501250306144357, -0.013053856790065765, 0.004502799361944199, -0.007855040952563286, -0.008409013040363789, 0.009062416851520538, 0.014843612909317017, 0.018352104350924492, -0.008139129728078842, 0.0006778169190511107, 0.04426095634698868, 0.03133494034409523, 0.03781215101480484, -0.023082174360752106, 0.0031622578389942646, 0.007009878754615784, -0.0022283175494521856, 0.008195946924388409, 0.021406052634119987, 0.031079258769750595, -0.015568038448691368, -0.015497016720473766, -0.006104347296059132, 0.007578055374324322, 0.024886135011911392, 0.010539676062762737, 0.005244980100542307, 0.0018980648601427674, -0.020923102274537086, -0.008181742392480373, -0.022499792277812958, -0.0028817206621170044, 0.013927428983151913, 0.01460213866084814, -0.01499986182898283, 0.015283949673175812, 0.007116411812603474, 0.016164623200893402, 0.009467242285609245, -0.015795309096574783, 0.02103673852980137, -0.003650534665212035, 0.0059800585731863976, -0.021860593929886818, 0.02221570536494255, -0.0042400178499519825, 0.03355082869529724, -0.0006671635783277452, -0.013210105709731579, 0.013295331969857216, 0.005209469236433506, 0.01018456555902958, -0.001469269162043929, -0.02997131459414959, -0.012656133621931076, -0.0037783742882311344, -0.0036398812662810087, -0.007578055374324322, -0.024602046236395836, -0.0018945138435810804, -0.02015606500208378, 0.0038067831192165613, -0.002658001147210598, 0.0016974275931715965, -0.0031445021741092205, 0.00374286319129169, 0.02482931688427925, 0.00822435598820448, -0.031164485961198807, 6.724902777932584e-05, -0.025795217603445053, -0.0396871343255043, -0.015440198592841625, 0.03599398583173752, 0.011164669878780842, -0.00013405416393652558, -0.004751376807689667, -0.012016934342682362, 0.011583699844777584, -0.01613621413707733, 0.006825221236795187, -0.02343728393316269, 0.007748508360236883, -0.019460048526525497, -0.020255494862794876, -0.008394809439778328, 0.014325152151286602, 0.002389892702922225, -0.008515547029674053, -0.0026508988812565804, 0.00730106933042407, -0.02191741205751896, 0.022144682705402374, -0.0010617800289765, -0.032386064529418945, 0.0008198610739782453, 0.02221570536494255, 0.012343636713922024, -0.027883265167474747, -0.00025368196656927466, 0.036278076469898224, -0.0006880263099446893, -0.007918961346149445, -0.0013263372238725424, -0.010837968438863754, 0.01842312514781952, 0.001131914323195815, 0.014005552977323532, 0.0032350553665310144, -0.022925924509763718, 0.02240036241710186, 0.0062854536809027195, 0.05306769162416458, 0.018281081691384315, 0.007240700535476208, -0.012890506535768509, 0.003517368109896779, -0.008636283688247204, -0.10386268049478531, -0.010362120345234871, 0.004271977581083775, 0.04389164224267006, -0.010468653403222561, 0.001946004806086421, -0.006864283233880997, 0.04031213000416756, -0.024516819044947624, 0.03857918828725815, -0.009928885847330093, -0.014097881503403187, -0.003377099521458149, 0.0027414520736783743, -0.003510266076773405, 0.0023668105714023113, -0.02474408969283104, -0.015354972332715988, -0.04730070009827614, 0.03051108308136463, -0.0017258364241570234, -0.01653393916785717, -0.0007510583964176476, 0.0026757565792649984, -0.01653393916785717, -0.00019586556300055236, -0.02480090782046318, 0.017883358523249626, -0.0056959702633321285, 0.008941679261624813, -0.00033602319308556616, -0.020766854286193848, 0.016704391688108444, -0.022925924509763718, 0.01186778862029314, -0.022712858393788338, 0.006210880354046822, -0.0021501933224499226, 0.012656133621931076, -0.020624810829758644, -0.0015731388702988625, 0.020170269533991814, 0.010106440633535385, -0.004403368569910526, 0.0032244022004306316, 0.0008837809436954558, -0.026974182575941086, 0.03215879574418068, -0.004754927940666676, -0.01328112743794918, -0.03693147748708725, -0.006182471290230751, -0.008132027462124825, 0.0030077847186475992, 0.01914755068719387, 0.005525517277419567, 0.019019711762666702, 0.03491445258259773, 0.005891281180083752, 0.004176097922027111, 0.000376416981453076, 0.026576459407806396, 0.005891281180083752, 0.015979966148734093, 0.013536807149648666, -0.0016628042794764042, -0.01930379867553711, -0.01478679571300745, 0.03590875864028931, -0.029403138905763626, -0.00934650469571352, 0.039374638348817825, -0.0064061908051371574, 0.0034285904839634895, 0.0004125938576180488, 0.007791121490299702, -0.0033451395574957132, -0.012038241140544415, 0.021377643570303917, -0.023749781772494316, -0.0003460106672719121, -0.02453102357685566, -0.020298108458518982, -0.0026171633508056402, 0.014630546793341637, 0.03423263877630234, 0.01098711509257555, -0.005830912385135889, 0.01738620363175869, -0.005241428967565298, -0.012485680170357227, -0.012095059268176556, 0.014339356683194637, -0.006878487765789032, -0.01018456555902958, 0.015880536288022995, 0.02267024666070938, -0.025695785880088806, 0.03636329993605614, 0.011448757722973824, -0.04053939878940582, -0.016491325572133064, -0.056249480694532394, 0.015468607656657696, -0.022173091769218445, -0.013913224451243877, -0.01387771312147379, -0.01542599406093359, 0.003616799134761095, 0.00582736125215888, -0.009872067719697952, 0.021590709686279297, -0.03085198812186718, -0.009254176169633865, -0.019374821335077286, -0.012712950818240643, -0.011889095418155193, -0.01722995564341545, 0.036732617765665054, 0.0018625538796186447, 0.011853584088385105, 0.013636237941682339, -0.004477941896766424, 0.0018155017169192433, 0.019133346155285835, 0.02954518236219883, 0.024431593716144562, 0.001213589683175087, -0.013643340207636356, 0.004538310691714287, -0.032783787697553635, 0.007393397856503725, -0.004243568982928991, -0.0156816728413105, -0.0017258364241570234, 0.024388980120420456, -0.01759926974773407, 0.0011177099077031016, -0.000966787978541106, 0.0033309352584183216, 0.030113359913229942, 0.03315310552716255, -0.008472933433949947, -0.000497598375659436, 0.022940129041671753, -0.01098711509257555, -0.01720154657959938, 9.931992826750502e-05, -0.006896243430674076, 0.03130653128027916, 0.017371999099850655, 0.003959480673074722, 0.031363345682621, 0.009083722718060017, -0.012244204990565777, -0.01366464700549841, 0.03130653128027916, -0.013721464201807976, -0.002292237477377057, 0.0043785106390714645, 0.019857771694660187, -0.02301115170121193, 0.024460002779960632, -0.002895924961194396, -0.004158342257142067, -0.019246982410550117, 0.023806598037481308, -0.018977098166942596, -0.020653218030929565, 0.011349326930940151, -0.001633507665246725, -0.015113497152924538, -0.010589390993118286, -0.006700932513922453, 0.01607939787209034, 0.03420422971248627, 0.023778190836310387, 0.007322375662624836, -0.01044024433940649, -0.011533984914422035, 0.0069211008958518505, 0.010511266998946667, 0.03309628739953041, -0.012350738048553467, -0.010454448871314526, -0.0030131114181131124, 0.01497145276516676, -0.019346412271261215, 0.01208085473626852, -0.014310947619378567, 0.018735622987151146, 0.015979966148734093, 0.022897515445947647, 0.008629181422293186, -0.013181696645915508, -0.014772591181099415, 0.015156110748648643, 0.004424675367772579, 0.004282630980014801, 0.014509809203445911, 0.012485680170357227, 0.05076657608151436, 0.0020720690954476595, -0.0065695419907569885, 0.0006405303138308227, -0.04610753059387207, -0.07477203756570816, 0.01613621413707733, -0.017457226291298866, -0.013082265853881836, 0.016889048740267754, 0.025567946955561638, 0.0017418162897229195, 0.03926100209355354, 0.02461625076830387, 0.01109364815056324, -0.01890607550740242, 0.026334984228014946, 0.0024413836654275656, -0.003226177766919136, -0.021391848102211952, 0.0264770295470953, 0.019744135439395905, -0.010191667824983597, 0.030198585242033005, -0.01542599406093359, 0.034971266984939575, 0.014630546793341637, 0.032329246401786804, -0.004754927940666676, 0.025852033868432045, -0.02157650515437126, -0.02762758731842041, -0.0022318686824291945, -0.004744274541735649, -0.004811745602637529, 0.009069519117474556, -0.0045773726888000965, 0.007862143218517303, 0.0095595708116889, 0.02629237063229084, 0.08147652447223663, 0.0036540855653584003, 0.0007008991087786853, 0.008977189660072327, -0.009914681315422058, 0.008508444763720036, 0.03309628739953041, 0.0016343954484909773, 0.03613603115081787, -0.019673114642500877, 0.022286726161837578, 0.0032119732350111008, 0.010617800056934357, -0.057158563286066055, -0.008409013040363789, 0.04088030382990837, -0.008409013040363789, 0.022414566949009895, -0.02306796982884407, -0.0040624625980854034, 0.020014019683003426, 0.004932483192533255, 0.01545440312474966, 0.013856406323611736, -0.012620622292160988, -0.022712858393788338, 0.03710193186998367, -0.007222944870591164, -0.002899476094171405, -0.009474344551563263, -0.022741267457604408, -0.0076348730362951756, -0.01499986182898283, 0.0015331889735534787, 0.003789027687162161, -0.017457226291298866, -0.02021288126707077, 0.0009587979875504971, 0.044942766427993774, -0.007982880808413029, -0.01460213866084814, -5.3599469538312405e-05, -0.027244066819548607, -0.051107484847307205, -0.0036469835322350264, -0.017883358523249626, -0.04690297693014145, -0.003098337911069393, -0.05303928256034851], "47ee3c46-bad3-4aac-99eb-11a0b98ebf20": [0.007369804661720991, 0.01261991262435913, -0.035908494144678116, -0.03071453794836998, 0.0017801587237045169, 0.00415165675804019, -0.02709280513226986, 0.005681768525391817, -0.011335461400449276, -0.018038474023342133, 0.024130845442414284, 0.02838427573442459, -0.007615464739501476, 0.02709280513226986, -0.005351881962269545, 0.014290401712059975, 0.01576436311006546, 0.009461425244808197, -0.0012686592526733875, -0.010226480662822723, 0.006422257982194424, 0.01437462866306305, -0.046970222145318985, -0.008176974020898342, -0.010500216856598854, 0.007060974836349487, 0.017617342993617058, -0.02269899845123291, 0.0012765554711222649, 0.0005110608763061464, 0.014107911847531796, -0.010373877361416817, -0.015399382449686527, -0.006566144991666079, -0.014515005052089691, -0.017631379887461662, -0.00016494323790539056, -0.006881993729621172, 0.015090552158653736, -0.014767684042453766, 0.005765994545072317, -0.0002515823289286345, 0.004769316408783197, -0.014128968119621277, 0.02361145056784153, 0.0177577193826437, 0.03318517655134201, -0.008099766448140144, -0.0084577277302742, 0.011595158837735653, 0.03565581515431404, 0.027527974918484688, -0.0048254672437906265, -0.017069870606064796, -0.0014467628207057714, -0.009159614332020283, -0.00346380821429193, 0.03649808093905449, -0.00783304963260889, -0.009054331108927727, -0.009159614332020283, -0.0007589143933728337, -0.01643817313015461, -0.020045869052410126, -0.005587013904005289, -0.00896308571100235, -0.005281693302094936, 0.03068646229803562, -0.01958262361586094, -0.021365413442254066, -0.007650558836758137, 0.012184743769466877, 0.01349727064371109, 0.013686779886484146, 0.023723751306533813, -0.007790936157107353, -0.024229109287261963, -0.03138834983110428, 0.004657014738768339, -0.022614771500229836, 0.003388355253264308, 0.0004399948811624199, -0.005920409690588713, 0.020593339577317238, 0.005302750039845705, -0.006331013049930334, 0.0169154554605484, 0.020270472392439842, -0.05328719690442085, -0.023078016936779022, 0.0038217699620872736, 0.02665763534605503, 0.02310609258711338, 0.027275295928120613, -0.021561942994594574, 0.01931590586900711, 0.013700817711651325, 0.03470125049352646, 0.011925045400857925, -0.02526790089905262, 0.014992288313806057, 0.0029180916026234627, 0.0009677255293354392, 0.0016713663935661316, -0.02053718827664852, -0.006790748331695795, 0.036750759929418564, 0.014641344547271729, -0.006615276914089918, -0.006639842875301838, -0.007643539924174547, 0.019708963111042976, -0.006667918525636196, -0.048373993486166, 0.022783223539590836, -0.01586262695491314, 0.016789115965366364, -0.01948435977101326, -0.019133416935801506, -0.02286745049059391, 0.00302688404917717, 0.0027917521074414253, 0.002540827728807926, 0.003462053369730711, -0.0014283383497968316, -0.0057168626226484776, 0.00035796192241832614, -0.004207807593047619, -0.016971606761217117, -0.01684526726603508, 0.007804973982274532, 0.026573410257697105, 4.400496982270852e-05, 0.0018547341460362077, -0.013483232818543911, 0.023723751306533813, -0.024481788277626038, 0.012479535304009914, -0.02577325887978077, -0.03023725561797619, 0.014114930294454098, 0.02445371262729168, -0.02188481017947197, -0.005032523535192013, 0.0034427514765411615, -0.001960017019882798, 0.0010730084031820297, -0.030939141288399696, 0.018529795110225677, 0.007489125244319439, 0.0005904617137275636, -0.02087409421801567, -0.0007418059394694865, 0.006618786137551069, 0.003979694563895464, 0.02490292116999626, -0.010844141244888306, 0.016704890877008438, 0.023625487461686134, 0.00896308571100235, 0.0016011777333915234, 0.012760289944708347, -0.00019258001702837646, 0.017701568081974983, 0.019526472315192223, 0.04143935814499855, 0.004330637399107218, 0.0049623348750174046, 0.001552045694552362, -0.0026759409811347723, 0.004492071457207203, 0.03728419169783592, -0.025380203500390053, 0.008822708390653133, 0.005509806331247091, 0.016115305945277214, 0.011932064779102802, 0.004049883224070072, -0.025085410103201866, -0.004646486137062311, -0.0023793941363692284, -0.0004750891821458936, -0.003793694544583559, 0.03439242020249367, -0.039895206689834595, -0.0001527699059806764, 0.039726756513118744, 0.01245146058499813, -0.012893648818135262, -0.011426706798374653, -0.0027496388647705317, 0.016297796741127968, 0.022923601791262627, 0.002691733418032527, -0.6315852403640747, -0.014613269828259945, -0.011510932818055153, -0.05272568762302399, -0.0008150652865879238, 0.007868143729865551, 0.0020354697480797768, 0.012247913517057896, -0.03868796303868294, 0.03467317670583725, -0.01111085806041956, 0.0019056209130212665, 0.002940902952104807, -0.021702319383621216, -0.01900707744061947, -0.0361892506480217, -0.0102335000410676, 0.006401201710104942, -0.010065047070384026, 0.006703012622892857, -0.00041915764450095594, 0.0039340718649327755, -0.015385344624519348, 0.010486179031431675, 0.014894023537635803, 0.006352069787681103, 0.025253864005208015, -0.015946853905916214, 0.03717188909649849, 0.0035146947484463453, -0.04478033632040024, -0.003332204418256879, 0.012458479031920433, -0.003639279631897807, 0.03919332101941109, -0.007868143729865551, -0.008668294176459312, -0.01900707744061947, 0.04292735829949379, 0.019737038761377335, -0.048626672476530075, -0.01813673786818981, 0.013799081556499004, 0.007341729011386633, 0.02608208917081356, -0.0029303745832294226, 0.020424887537956238, 0.026727823540568352, 0.004653505049645901, 0.0011923291021957994, -0.019273793324828148, 0.0076856533996760845, 0.036385778337717056, -0.010135236196219921, 0.00650297524407506, -0.001975809456780553, 0.04028826579451561, -0.010345801711082458, 0.00654508825391531, -0.008682332001626492, 0.018249040469527245, 0.025632882490754128, 0.008696368895471096, -0.015006326138973236, -0.012998931109905243, -0.03183755651116371, -0.018852662295103073, 0.014325495809316635, 0.02188481017947197, 0.00258294097147882, -0.0006773201166652143, 0.02956344373524189, -0.007271540351212025, -0.04725097492337227, 0.013427081517875195, 0.020719679072499275, -0.004681580699980259, -0.01708390936255455, 0.02174443192780018, 0.018206926062703133, 0.012023309245705605, -0.016185494139790535, 0.001625743811018765, 0.007089050021022558, 0.028945785015821457, -0.010114178992807865, -0.01317440252751112, 0.005923918914049864, 0.008822708390653133, 0.02229190431535244, -0.01732254959642887, 0.034083589911460876, -0.0003399761044420302, -0.024313336238265038, -0.030433783307671547, 0.013328817673027515, -0.004056902136653662, 0.008352445438504219, -0.00559754204005003, -0.0015380079858005047, -0.013749949634075165, -0.01444481685757637, -0.01486594881862402, 0.006222220603376627, 0.04618410766124725, 0.009440368972718716, -0.035234685987234116, 0.017097946256399155, 0.04357309266924858, -0.03545928746461868, -0.023007826879620552, -0.004242901690304279, -0.020621415227651596, 0.015371306799352169, 0.02094428241252899, -0.014164062216877937, 0.026461107656359673, -0.0016187248984351754, 0.014079836197197437, -0.007994483225047588, -0.0014818571507930756, 0.011707460507750511, -0.011714479885995388, -0.005081655457615852, 0.035768117755651474, 0.01799636147916317, 0.014571156352758408, -0.010156292468309402, -0.021323300898075104, 0.0009335085633210838, 0.009987839497625828, 0.0040709394961595535, 0.04028826579451561, 0.002221469534561038, 0.009433349594473839, 0.023120129480957985, 0.022179601714015007, -0.0027057710103690624, 0.029619595035910606, -0.02066352777183056, -0.014157043769955635, 0.01259885635226965, 0.010949423536658287, -0.041018225252628326, -0.015230929479002953, -0.049974292516708374, -0.0175892673432827, -0.015553796663880348, -0.001545904204249382, 0.01035282015800476, 0.0013713100925087929, 0.006906559690833092, -0.006162560544908047, 0.015090552158653736, 0.003656826913356781, -0.001898602000437677, 0.008169954642653465, -0.017027758061885834, -0.026531295850872993, 0.00047728256322443485, 0.004607882350683212, 0.020031830295920372, -0.014753647148609161, -0.003902486991137266, -0.026629559695720673, -0.01648028753697872, -0.0002798771020025015, 0.03371861204504967, -0.010570405051112175, -0.055055949836969376, 0.0059870886616408825, 0.0037691285833716393, -0.005155353806912899, -0.0033041290007531643, -0.005155353806912899, 0.009679010137915611, 0.01087221596390009, -0.01019840594381094, -0.010163310915231705, -0.021435603499412537, 0.008724444545805454, -0.008162936195731163, 0.007587389089167118, 0.0014309703838080168, 0.0019565075635910034, 0.005864258855581284, 0.012037347070872784, -0.00878059584647417, 0.001851224689744413, -0.0006141503690741956, 0.01359553448855877, 0.003049695398658514, -0.016662776470184326, 0.021028509363532066, -0.0005259759491309524, 0.0328201949596405, -0.01857190765440464, 0.015090552158653736, 0.019975678995251656, 0.04028826579451561, 0.023428959771990776, 0.010387915186583996, -0.00977727398276329, -0.042225468903779984, 0.02070564031600952, -0.04376962035894394, 0.007489125244319439, -0.012409347109496593, 0.02097235806286335, 0.010254556313157082, 0.017168134450912476, 0.002226733835414052, -0.01569417491555214, -0.017771756276488304, 0.01445885468274355, 0.02783680520951748, 0.0002967662294395268, 0.025295976549386978, 0.004797391593456268, -0.004846523981541395, 0.011251234449446201, -0.003139185719192028, 0.026671674102544785, -0.006903050001710653, 0.01677507907152176, 0.00649595633149147, 0.012079460546374321, -0.006759163457900286, -0.002821582369506359, -0.04677369445562363, -0.007552294991910458, -0.00653806934133172, -0.008499841205775738, 0.01344813872128725, 0.01024753786623478, 0.008443689905107021, 0.019358020275831223, -0.007636521011590958, 0.032427139580249786, -0.033774759620428085, 0.004428901709616184, 0.024804655462503433, 0.01975107565522194, -0.03220253810286522, -0.0036533174570649862, -0.0009879047283902764, 0.0177577193826437, -0.0027320918161422014, -0.01077395211905241, 0.004158675204962492, 3.37508536176756e-05, 0.009629878215491772, -0.02202518656849861, -0.0005365042015910149, 0.03568389266729355, 0.006032711360603571, 0.008591086603701115, -0.005720371846109629, 0.018080586567521095, 0.023218393325805664, 0.018080586567521095, -0.0004821080365218222, 0.001963526476174593, 0.003909505903720856, -0.015904739499092102, -0.009391237050294876, -0.0026601485442370176, -0.01768753118813038, -0.03627347573637962, 0.0015713475877419114, -0.02053718827664852, -0.011272291652858257, -0.006899540778249502, 0.0026513750199228525, 0.01493613701313734, 0.009629878215491772, -0.013609572313725948, -0.0021337338257580996, 0.01650836132466793, 0.02171635814011097, -0.020452961325645447, -0.009931689128279686, 0.011903989128768444, 0.02615227736532688, 0.004818448331207037, 0.009784292429685593, -0.025548655539751053, -0.006362597923725843, 0.006611767690628767, 0.012079460546374321, -0.002842638874426484, -0.016803154721856117, 0.01227598823606968, -0.0033743176609277725, -0.0013993855100125074, -0.012065422721207142, 0.015511684119701385, -0.014557118527591228, -0.02097235806286335, -0.00981236808001995, 0.004207807593047619, -0.0092999916523695, -0.033100951462984085, -0.0083735017105937, 0.05519632622599602, 0.005393994972109795, 0.006232748739421368, -0.005878296680748463, -0.004765806719660759, -0.013258629478514194, 0.015988966450095177, -0.027780653908848763, -0.04834591597318649, -0.03745264559984207, 0.02834216319024563, -0.01958262361586094, -0.006906559690833092, 0.0028514123987406492, 0.015581872314214706, -0.011475838720798492, -0.0018915832042694092, -0.0011002065148204565, -0.00798044539988041, 0.006759163457900286, 0.048795126378536224, 0.018824586644768715, -0.013307761400938034, 0.010058028623461723, -0.007755842059850693, 0.00887885969132185, -0.004807920195162296, -0.008548973128199577, 0.01263395044952631, 0.010858179070055485, -0.010296669788658619, -0.0025162617675960064, -0.014795759692788124, -0.0056747496128082275, 0.006853918079286814, 0.006506484467536211, -0.0057975794188678265, -0.0069732386618852615, -0.013104214332997799, -0.028370238840579987, -0.0014046496944501996, 0.010780971497297287, 0.024818694218993187, -0.0037059588357806206, -0.00517641007900238, -0.012739233672618866, 0.02939499169588089, 0.015848588198423386, -0.004713165573775768, -0.003558562835678458, -0.022502468898892403, 0.020621415227651596, 0.01641009747982025, 0.02226382866501808, -0.02215152606368065, 0.005671239923685789, 0.019231680780649185, -0.012612894177436829, 0.017673492431640625, 0.011503913439810276, 0.013300742022693157, 0.014767684042453766, 0.017336588352918625, -0.016957569867372513, 0.007341729011386633, -0.01542745716869831, -0.02358337491750717, 0.02090216986835003, -0.02310609258711338, -0.012121574021875858, 0.007973426952958107, -0.0013748194323852658, -0.02455197647213936, -0.02479061856865883, 0.019694924354553223, -0.018277114257216454, 0.02584344707429409, 0.0038252794183790684, 0.0009554424905218184, -0.014781721867620945, -0.01485191099345684, -0.02202518656849861, 0.014613269828259945, -0.0012125083012506366, -0.0021109224762767553, 0.001655573956668377, -0.013981572352349758, 0.0002011342439800501, -0.0314444974064827, 0.023625487461686134, -0.009686028584837914, -0.0355154387652874, -0.04556644707918167, -0.01768753118813038, 0.0011159989517182112, -0.020214321091771126, 0.005369429010897875, 0.002131979214027524, 0.008724444545805454, -0.0072153895162045956, -0.011419687420129776, -0.030265331268310547, 0.004723693709820509, -0.037087664008140564, 0.0024337901268154383, 0.010696744546294212, -0.007973426952958107, 0.004369241185486317, -0.026629559695720673, 0.007608445826917887, -0.010535310953855515, 0.009510557167232037, 0.008429653011262417, -0.031079517677426338, 0.012570780701935291, 0.013293723575770855, 0.028440427035093307, 0.011847837828099728, 0.01972300000488758, -0.02025643363595009, -0.009124520234763622, -0.0034480157773941755, 0.009735160507261753, -0.028636954724788666, 0.020551227033138275, -0.005057089496403933, -0.004506108816713095, 0.014388665556907654, -0.0047833542339503765, -0.011939083226025105, -0.003793694544583559, 0.0022758657578378916, 0.010156292468309402, 4.063262895215303e-05, 0.023021865636110306, 0.002381148748099804, 0.01245146058499813, 0.019694924354553223, 0.026138240471482277, -0.024313336238265038, 0.0009063105098903179, -0.05247300863265991, 0.01718217320740223, 0.032932497560977936, -0.008647236973047256, 0.0194562841206789, 0.005969541613012552, -0.00788218155503273, -0.04099015146493912, -0.008113804273307323, 0.02740163542330265, 0.011447763070464134, -0.021604055538773537, -0.003023374592885375, -0.024032581597566605, -0.003177789505571127, -0.00800150167196989, -0.01210753619670868, -0.04593142867088318, -0.004277996253222227, 0.008548973128199577, 0.015525721944868565, 0.013384968973696232, -4.326469934312627e-05, -0.00023359648184850812, -0.02361145056784153, -0.003797204000875354, -0.012374253012239933, 0.004590335302054882, 0.025043297559022903, -0.005594032350927591, 0.0102335000410676, 0.0059870886616408825, -0.00801553949713707, 0.010191386565566063, -0.012676063925027847, -0.021898847073316574, -0.02243228070437908, 0.022642847150564194, 0.009328067302703857, 0.02394835464656353, -0.0016274985391646624, -0.015497646294534206, 0.042197395116090775, -0.021969037130475044, 0.02222171612083912, 0.00751018151640892, 0.012184743769466877, -0.02438352443277836, 0.010043990798294544, 0.014515005052089691, 0.02970382198691368, 0.044668033719062805, -0.021323300898075104, 0.0006492446991614997, 0.0250292606651783, 0.017771756276488304, 0.0020863565150648355, 0.010451084934175014, -0.03565581515431404, 0.015301117673516273, 0.0074961441569030285, -0.007938331924378872, 0.013258629478514194, -0.024748506024479866, -0.008169954642653465, 0.027822766453027725, 0.0002789997379295528, 0.014367609284818172, 0.016662776470184326, 0.031079517677426338, -0.013272667303681374, -0.003328694961965084, 0.019807226955890656, 0.021267149597406387, -0.01833326555788517, 0.003663845593109727, -0.0361892506480217, 0.0020653000101447105, 0.019610699266195297, 0.01667681522667408, 0.002761922078207135, -0.006748635321855545, 0.0013967534760013223, 0.0175892673432827, -0.021112734451889992, 0.009229802526533604, -0.015946853905916214, 0.00964391604065895, -0.0012748007429763675, -0.035908494144678116, -0.021772507578134537, -0.011539008468389511, -0.013097195886075497, 0.009573726914823055, 0.0037270153407007456, 0.002303941175341606, 0.031949859112501144, -0.003000563243404031, -0.016311833634972572, 0.009980821050703526, -0.026292655616998672, 0.05104115977883339, -0.01890881359577179, 0.007826030254364014, 0.028524652123451233, -0.019975678995251656, -0.021519828587770462, 0.021870771422982216, 0.013827157206833363, 0.006780220195651054, 0.03843528404831886, 0.016157418489456177, 0.0007466314127668738, -0.016662776470184326, -0.006801276933401823, 0.02821582369506359, -0.004657014738768339, -0.01493613701313734, 0.002307450631633401, 0.028426388278603554, -0.009005199186503887, -0.016761040315032005, -0.000728645536582917, -0.03593657165765762, 0.009159614332020283, 0.0023390355054289103, 0.01948435977101326, 0.010226480662822723, 0.003811241826042533, -0.01938609592616558, 0.027078768238425255, 0.0008892019977793097, 0.024650242179632187, 0.027205107733607292, 0.010928367264568806, -0.01363062858581543, -0.012198781594634056, -0.02651725895702839, 0.021926922723650932, -0.013279685750603676, 0.022137489169836044, 0.011124894954264164, -0.003355015767738223, 0.009784292429685593, 0.013883307576179504, 0.005706334486603737, -0.004355203360319138, -0.02387816645205021, 0.020438924431800842, -0.005492259282618761, 0.0022811300586909056, -0.02005990594625473, 0.0009589519468136132, -0.00609588110819459, -0.0006760040996596217, -0.011300367303192616, -0.0015976682770997286, -0.00019674745271913707, 0.003997241612523794, 0.003328694961965084, 0.015609947964549065, -0.021926922723650932, -0.004200788680464029, -0.004657014738768339, -0.01982126384973526, 0.011272291652858257, -0.02922653965651989, 0.01060550007969141, -0.02516963705420494, -0.023639526218175888, -0.0017196210101246834, 0.005990598350763321, 0.008689350448548794, -0.001578366500325501, 0.002372375223785639, 0.012254931963980198, 0.0405970960855484, -0.011574102565646172, -0.009496519342064857, 0.004692108836025, -0.012788365595042706, -0.032792121171951294, 0.0010265085147693753, 3.534106508595869e-05, -0.015076514333486557, 0.03501008078455925, -0.011335461400449276, -0.009636896662414074, -0.024355448782444, -0.00104844244197011, -0.000488688237965107, -0.0009668481652624905, -0.01941417157649994, 0.00468508992344141, -0.0026812050491571426, 0.02699454128742218, 0.0021723376121371984, -0.012037347070872784, 0.02053718827664852, -0.014255307614803314, -0.0005996739491820335, 0.04113052785396576, 0.008808671496808529, 0.019091302528977394, -0.0004492071457207203, -0.012121574021875858, -0.0027057710103690624, -0.003342732787132263, -0.0032672800589352846, -0.0007242587744258344, -0.011995234526693821, 0.011054706759750843, -0.016017042100429535, -0.009805349633097649, 0.006088862195611, -0.009096444584429264, -0.0002144042809959501, 0.000600990024395287, 0.016662776470184326, 0.010977499186992645, 0.020438924431800842, -0.022755147889256477, 0.017476964741945267, -0.01569417491555214, -0.0018319227965548635, -0.013279685750603676, -0.011356517672538757, -0.032764043658971786, -0.030096877366304398, -0.02692435309290886, 0.021491752937436104, 0.005874786991626024, -0.02858080342411995, -0.020916206762194633, -0.008127841167151928, -0.04843014478683472, -0.01596089079976082, 0.0038217699620872736, 0.007341729011386633, 0.03369053453207016, 0.01998971775174141, 0.01586262695491314, 0.04918818175792694, -0.004993919748812914, 0.03164102882146835, -0.0069837672635912895, -0.010830103419721127, 0.00800150167196989, 0.017575228586792946, 0.0019214133499190211, 0.005327316001057625, -0.016550475731492043, -0.03647000342607498, 0.013420063070952892, 0.009594783186912537, 0.0023864128161221743, 0.0062292395159602165, -0.013651685789227486, 0.00139763078186661, 0.0022758657578378916, 0.012928742915391922, -0.01080904621630907, 0.0018933378159999847, 0.000630820170044899, -0.03703151270747185, 0.011272291652858257, 0.0046780710108578205, 0.019905490800738335, -0.013974552974104881, -0.0022583187092095613, -0.02168828248977661, -0.00328131765127182, 0.005520334467291832, 0.007008333224803209, 0.000633890915196389, -0.0025724126026034355, -0.015006326138973236, 0.005551919341087341, 0.0008505982696078718, 0.002105658408254385, 0.017701568081974983, 0.005839692894369364, -0.012367233633995056, -0.015385344624519348, 0.007257502526044846, -0.044836487621068954, -0.013567458838224411, 0.016255682334303856, -0.00933508574962616, 0.02253054454922676, -0.0005027259467169642, 0.027626238763332367, -0.021758470684289932, 0.0057028247974812984, -0.016957569867372513, -0.017954247072339058, -0.03941792622208595, 0.0067416164092719555, 0.035908494144678116, -0.01593281514942646, -0.022109413519501686, -0.015553796663880348, 0.010212443768978119, -0.008050634525716305, 0.010479160584509373, -0.013644666410982609, -0.024537939578294754, 0.043685395270586014, 0.002496959874406457, -0.014255307614803314, 0.0030303935054689646, 0.003021619748324156, 0.0008624425972811878, -0.026461107656359673, -0.0018196398159489036, 0.17957055568695068, 0.006885502953082323, 0.028665030375123024, 0.018993038684129715, -0.016227608546614647, 0.011237197555601597, 0.019105341285467148, -0.02212345041334629, -0.02077583037316799, 0.019021114334464073, -0.015216891653835773, -0.0028777332045137882, -0.015848588198423386, 0.007811992894858122, -0.010977499186992645, -0.0034339779522269964, -0.03778954967856407, -0.055224400013685226, -0.011946102604269981, 0.005864258855581284, -0.013658704236149788, -0.012290026061236858, -0.023976430296897888, -0.015273042023181915, 0.037424568086862564, -0.003853354835882783, -0.008071690797805786, 0.020242396742105484, 0.034588947892189026, 0.008036596700549126, 0.00015200221969280392, -0.009243840351700783, -0.0041235811077058315, -0.007910257205367088, -0.020817942917346954, 0.002324997913092375, 0.016859306022524834, -0.004428901709616184, 0.027177032083272934, 0.004874599166214466, 0.01998971775174141, -0.03225868567824364, -0.028496578335762024, -0.038407210260629654, 0.02181462198495865, 0.041860491037368774, -0.01998971775174141, -0.002330261981114745, -0.023976430296897888, -0.01751907728612423, -0.01982126384973526, 0.008520897477865219, 0.012844515964388847, 0.012318101711571217, 0.010387915186583996, -0.0026285636704415083, -0.020916206762194633, 0.013062100857496262, 0.026615522801876068, 0.01900707744061947, 0.0008387539419345558, -0.001501159043982625, -0.01802443526685238, 0.009356142021715641, -0.015904739499092102, 0.010156292468309402, -0.011468819342553616, 0.009461425244808197, -0.006706522312015295, -0.03338170424103737, 0.003426959039643407, -0.004881618078798056, -0.008822708390653133, 0.010535310953855515, -0.014388665556907654, -0.014430779032409191, 0.012788365595042706, 0.022670922800898552, -0.007222408428788185, 0.040400564670562744, -0.029423067346215248, -0.03133219853043556, 0.0017169889761134982, -0.03234291449189186, -0.018010398373007774, -0.044162675738334656, -0.005541391205042601, 0.0018249040003865957, 0.007229427341371775, -0.011489876545965672, -0.022993789985775948, -0.017799831926822662, -0.015132665634155273, 0.017210248857736588, 0.012311083264648914, 0.0003086105571128428, -0.006892521865665913, 0.008071690797805786, -0.0069837672635912895, 0.007022371049970388, -0.02831408753991127, 0.07288385927677155, 0.024636203423142433, 0.0006922351894900203, 0.004207807593047619, 0.018950926139950752, -0.014248289167881012, -0.01660662703216076, 0.0034129214473068714, -0.01864209584891796, 0.0015906494809314609, -0.015946853905916214, -0.001572225010022521, -0.02709280513226986, -0.004242901690304279, 0.01109682023525238, 0.007124144583940506, -0.019526472315192223, 0.015385344624519348, 0.008296294137835503, -0.011202102527022362, 0.0010773952817544341, 0.0027285823598504066, -0.01205840427428484, -0.0036954304669052362, -0.015806475654244423, -0.0022706016898155212, 0.011433725245296955, 0.0042604487389326096, 0.0013309515779837966, 0.01126527227461338, -0.002010903786867857, 0.00015046684711705893, 0.002798771020025015, 0.006776710506528616, -0.005492259282618761, 0.004495580680668354, 0.0025513560976833105, -0.01593281514942646, 0.023021865636110306, -0.021870771422982216, 0.00695920130237937, -0.012767309322953224, 0.0055273533798754215, 0.023836053907871246, -0.01735062524676323, -0.00211443193256855, -0.01715409755706787, -0.014585194177925587, -0.03380283713340759, 0.0016564512625336647, -0.006197654642164707, -0.00692761642858386, 0.008162936195731163, 0.008942029438912868, -0.007587389089167118, 0.006008145399391651, -0.030742613598704338, 0.015918778255581856, -0.00046719296369701624, -0.03826683387160301, 0.015118627808988094, 0.025183673948049545, -0.014585194177925587, 0.003888449165970087, -0.003198846010491252, -0.18080587685108185, -0.0028110540006309748, -0.00892799161374569, -0.006204673554748297, 0.041720110923051834, 0.00026452334714122117, 0.02260073460638523, 0.023639526218175888, -0.00850685965269804, -0.002002130262553692, -0.00806467141956091, 0.00552384415641427, -0.009447387419641018, -0.012430403381586075, -0.014879986643791199, 0.006636333651840687, -0.021196961402893066, 0.006394182797521353, 0.020691603422164917, 0.018824586644768715, 0.009412293322384357, -0.009679010137915611, 0.01121614035218954, -0.01772964373230934, -0.002081092447042465, 0.013342855498194695, 0.009412293322384357, 0.0042288638651371, -0.03481355309486389, -0.02476254291832447, 0.0020302056800574064, -0.008850784040987492, 0.005920409690588713, -0.010984518565237522, 0.008892897516489029, -0.005881805904209614, -0.007594408001750708, 0.005748447496443987, -0.015244967304170132, 0.0272331815212965, -0.020649490877985954, 0.009833425283432007, -0.005127278156578541, -0.014093874022364616, -0.00280754454433918, 0.019638774916529655, 0.0054325987584888935, -0.02747182361781597, 0.004811429418623447, -0.007032899186015129, 0.02759816311299801, -0.016859306022524834, 0.0030040726996958256, -0.0013160365633666515, -0.003369053592905402, 0.010570405051112175, -0.025057334452867508, 0.01772964373230934, 0.015609947964549065, 0.016213569790124893, -0.008724444545805454, -0.024130845442414284, -0.007657577749341726, 0.005667730700224638, 0.004274486564099789, -0.031276047229766846, -0.042955432087183, 0.010219462215900421, -0.012872591614723206, 0.010079084895551205, 0.012037347070872784, -0.017743682488799095, 0.005720371846109629, -0.004762297496199608, -0.008071690797805786, 0.009292972274124622, -0.040877848863601685, -0.01367976050823927, 0.011861875653266907, -0.009475463069975376, -0.029507294297218323, 0.016873342916369438, -0.004190260078758001, -0.0013353383401408792, -0.006857427768409252, -0.012472516857087612, -0.007755842059850693, -0.0025776769034564495, -0.005404523108154535, -0.01664873957633972, -0.001498526893556118, -0.012781346216797829, 0.01948435977101326, -0.005839692894369364, -0.006678446661680937, 0.026376880705356598, 0.008317350409924984, -0.004158675204962492, 0.0025285447482019663, -0.014143005944788456, 0.02507137320935726, -0.03405551612377167, -0.031276047229766846, -0.012486554682254791, 0.024804655462503433, 0.015413419343531132, -0.030096877366304398, 0.005316787399351597, 0.04107437655329704, 0.001119508408010006, -0.04082169756293297, 0.0034462609328329563, 0.012254931963980198, -0.013806100003421307, 0.01251463033258915, 0.03234291449189186, -0.001809111563488841, -0.014164062216877937, -0.0032093743793666363, 0.01765945553779602, 0.04607180505990982, -0.011033650487661362, 0.02212345041334629, 0.031472574919462204, -0.01072482019662857, -0.02658744715154171, -0.09259282052516937, 0.004137618932873011, -0.0015415174420922995, 0.03439242020249367, -0.006123956758528948, 0.024720430374145508, -0.017617342993617058, 0.007166257593780756, -0.0014134232187643647, 0.020424887537956238, 0.014837873168289661, -6.031833981978707e-05, -0.016185494139790535, -0.011819763109087944, 0.010275613516569138, 0.006439805496484041, -0.020719679072499275, -0.019498396664857864, -0.022179601714015007, 0.03105144388973713, 0.00789621938019991, 0.007790936157107353, -0.02648918330669403, -0.036245401948690414, -0.006001126486808062, -0.008394557982683182, -0.033746685832738876, 0.040344417095184326, -0.005471202544867992, 0.011581121012568474, -0.006074824370443821, -0.009489500895142555, -0.005941466428339481, -0.011468819342553616, -0.013827157206833363, -0.005281693302094936, -0.0005250985850580037, -0.020410848781466484, 0.024172957986593246, -0.01607319340109825, 0.001231810194440186, 0.011454781517386436, 0.010289650410413742, -0.03579619154334068, 0.009587764739990234, -0.0033655441366136074, -0.01914745382964611, 0.02387816645205021, 0.019105341285467148, -0.04115860164165497, -0.03571196645498276, -0.01393945887684822, -0.04205701872706413, -0.0023916771169751883, 0.03809837996959686, 0.011903989128768444, -0.018305189907550812, 0.00751720042899251, -0.03166910260915756, 0.01544149499386549, -0.017912134528160095, 0.008906935341656208, -0.012893648818135262, 0.021997110918164253, -0.028131596744060516, -0.010710782371461391, 0.0028321105055510998, -0.002567148534581065, 0.02083197981119156, -0.022909563034772873, 0.014290401712059975, 0.014964212663471699, -0.02598382532596588, -0.000642664497718215, -0.0044885617680847645, 0.012816441245377064, -0.021870771422982216, -0.004551731515675783, -0.0007567210122942924, -0.02140752784907818, -0.011040668934583664, -0.02936691604554653, -0.01799636147916317, 0.003758600214496255, 0.013792063109576702, 0.015160740353167057, 0.009994858875870705, 0.0030286386609077454, 0.025295976549386978, -0.03290442377328873, 0.01503440085798502, 0.013244591653347015, 0.020986394956707954, 0.0007032021530903876, -0.02272707410156727, 0.004990410525351763, 0.014795759692788124, 0.0016099513741210103, 0.004035845398902893, 0.0052852025255560875, -0.04539799690246582, -0.014753647148609161, -0.06670726090669632, 0.016311833634972572, -0.002804035088047385, -0.024032581597566605, -0.002721563447266817, -0.0009501783642917871, -0.018712284043431282, -0.0009668481652624905, -0.010816065594553947, -0.001477470388635993, -0.05280991271138191, 0.01626972109079361, -0.0023829033598303795, -0.017336588352918625, 0.002751393709331751, -0.038716040551662445, 0.018389416858553886, 0.017982322722673416, -0.004664033651351929, 0.018389416858553886, -0.000683900318108499, -0.011300367303192616, 0.01486594881862402, 0.013827157206833363, -0.014255307614803314, 0.01897900179028511, 0.005429089535027742, 0.010086104273796082, 0.009538632817566395, 0.014065798372030258, 0.004544712603092194, -0.017870021983981133, 0.002174092223867774, 0.003355015767738223, -0.014143005944788456, 0.0026759409811347723, -0.009124520234763622, 0.023625487461686134, 0.019947603344917297, 0.018192889168858528, -0.005222032777965069, -0.027794690802693367, 0.014220213517546654, -0.015244967304170132, -0.005636145826429129, 0.004744750447571278, -0.027345484122633934, -0.010479160584509373, 0.04590335488319397, 0.0314444974064827, 0.05168689414858818, 0.005783541593700647, -0.004063920583575964, -0.018122700974345207, 0.00021922975429333746, -0.009201726876199245, 0.0008900793618522584, -0.020312584936618805, 0.015539758838713169, -0.021323300898075104, 0.05337142199277878, 0.009749198332428932, -0.009959764778614044, -0.010015915147960186, 0.00326377060264349, -0.014269345439970493, -0.027008578181266785, 0.020003754645586014, 0.001015980145893991, -0.015301117673516273, -0.03413974121212959, 0.002879487816244364, 0.023822015151381493, 0.022881487384438515, 0.019877415150403976, 0.021926922723650932, -0.03237098827958107, 0.012725195847451687, 0.006745125632733107, 0.026208428665995598, 0.015511684119701385, -0.006773201283067465, -0.004386788234114647, 0.012739233672618866, 0.03388706222176552, 0.016831230372190475, -0.009412293322384357, 0.029254615306854248, -0.010696744546294212, 0.015567834489047527, -0.00047070239088498056, 0.017505040392279625, -0.01304104458540678, -0.005162372719496489, -0.005365919787436724, -0.009138557128608227, 0.006829352118074894, -0.007699691224843264, -0.0010203670244663954, 0.01883862353861332, 0.007776898331940174, -0.0036006758455187082, 0.003211128991097212, -0.016452211886644363, -0.0517430454492569, 0.023793939501047134, -0.03548736497759819, -0.05544900521636009, 0.014894023537635803, 0.013806100003421307, 0.012802403420209885, -0.009749198332428932, 0.025450391694903374, 0.013848213478922844, -0.028187748044729233, 0.028608879074454308, -0.004295543301850557, -0.015188816003501415, -0.008436671458184719, 0.028370238840579987, -0.008668294176459312, 0.03136027231812477, 0.0466894656419754, -0.005730900447815657, 0.025548655539751053, -0.01341304462403059, 0.03725611791014671, -0.01033176388591528, 0.026966465637087822, 0.017434852197766304, -0.024678315967321396, 0.03223061189055443, -0.000722504046279937, -0.010907310992479324, -0.009061350487172604, -0.004751769360154867, 0.004158675204962492, -0.002075828379020095, 0.020354697480797768, 0.0798465684056282, 0.03647000342607498, -0.018852662295103073, 0.022137489169836044, 0.0026496201753616333, -0.014641344547271729, 0.0022021678742021322, -0.0034181855153292418, 0.0015687155537307262, -0.011054706759750843, 0.005320297088474035, 0.01111085806041956, 0.01596089079976082, 0.0011554800439625978, -0.022067300975322723, -0.00561508908867836, -0.01653643697500229, 0.004551731515675783, -0.0057554664090275764, 0.013293723575770855, 0.04256237670779228, -0.0013221780536696315, -0.005734409671276808, 0.003367298748344183, -0.027289332821965218, -0.015273042023181915, 0.03430819511413574, -0.009229802526533604, -0.026222465559840202, -0.019091302528977394, 0.022839374840259552, 0.00742595549672842, -0.017336588352918625, -0.03152872622013092, 0.013995609246194363, 0.002544337185099721, -0.002256563864648342, -0.003332204418256879, 0.012479535304009914, -0.009686028584837914, 0.03223061189055443, -0.004727203398942947, 0.0014722062041983008, -0.008640218526124954, -0.02615227736532688, -0.0029338840395212173, -0.01155304629355669, 0.012767309322953224, -0.03602079674601555], "20146fda-7b8b-4d03-adb9-1c79e9d87125": [-0.016104144975543022, 0.017682721838355064, -0.018465379253029823, -0.025018464773893356, -0.010393408127129078, 0.023081723600625992, -0.03345523402094841, 0.013039846904575825, -0.027326637879014015, -0.029077664017677307, 0.019380688667297363, 0.022007228806614876, -0.02655724622309208, 0.024050094187259674, -0.006785230711102486, 0.0032748852390795946, 0.02363886870443821, -0.0014334877487272024, 0.0013398011215031147, -0.013119438663125038, 0.00894085131585598, 0.004394149873405695, -0.020335793495178223, -0.002387764398008585, -0.004510221537202597, 0.023041926324367523, 0.0036347080022096634, -0.024673566222190857, 0.022484781220555305, -0.015984756872057915, 0.0017725834622979164, 0.0013480919878929853, -0.023798052221536636, -0.017284762114286423, -0.022471517324447632, -0.01312607154250145, 0.0005716540035791695, -0.01736435294151306, 0.0064768111333251, -0.02241845428943634, 0.001780874328687787, 0.014963324181735516, 0.005087264813482761, -0.02756541408598423, -0.004649507813155651, 0.00728268176317215, 0.031067468225955963, -0.027326637879014015, -0.021012326702475548, 0.03510013595223427, 0.03242053464055061, 0.019911302253603935, 0.006247983779758215, 0.0007548817666247487, -0.017284762114286423, -0.018598031252622604, -0.0167541466653347, 0.02072048932313919, -0.004384201020002365, -0.008861259557306767, 0.01323882769793272, -0.00661941384896636, -0.007634213659912348, -0.027247045189142227, -0.009385241195559502, -0.013291888870298862, -0.006536505185067654, 0.008708707988262177, -0.018465379253029823, -0.024103155359625816, -0.0033229722175747156, 0.008450033143162727, 0.02276335470378399, -0.005359204486012459, 0.013139337301254272, -0.02371845953166485, -0.020826611667871475, -0.013378113508224487, 8.451483881799504e-05, -0.005889819003641605, 0.01179953571408987, -0.009405138902366161, -0.011719943955540657, -0.010612286627292633, 0.020614366978406906, 0.009464832954108715, 0.02306845784187317, 0.016807207837700844, -0.025005199015140533, -0.03276543319225311, -0.005471960175782442, 0.018823543563485146, 0.03507360816001892, 0.011215860024094582, -0.024726627394557, 0.031040938571095467, 0.004994407296180725, 0.02228580228984356, -0.011872495524585247, -0.028149088844656944, 0.03594912216067314, 0.0027807506266981363, -0.016303125768899918, -0.008304114453494549, -0.015401080250740051, -0.009206158109009266, 0.007979112677276134, 0.00013172086619306356, -0.007010741624981165, -0.0019781964365392923, -0.02899807319045067, 0.03361441567540169, -0.001644075266085565, -0.0426613911986351, 0.02098579704761505, -0.008841360919177532, -0.016250062733888626, -0.017563333734869957, -0.015692919492721558, -0.002258427208289504, 0.013636788353323936, 0.0045400685630738735, 0.012602089904248714, -6.435771501855925e-05, 0.012423007749021053, -0.0002015712670981884, -0.006695689633488655, -0.012602089904248714, -0.0025204180274158716, -0.007985745556652546, 0.018770482391119003, 0.012661783955991268, -0.0006773623172193766, -0.009013811126351357, -0.012774540111422539, 0.020733755081892014, -0.006175023969262838, 0.01101024728268385, -0.04316547513008118, -0.05608593299984932, 0.022139882668852806, 0.03632054850459099, -0.019380688667297363, -0.00861585047096014, 0.010499530471861362, -0.006602832116186619, -0.006291096098721027, -0.02621234767138958, 0.021211307495832443, -0.0013099540956318378, -0.01280107069760561, -0.0034954219590872526, 0.012608722783625126, -0.013703115284442902, 0.009577588178217411, 0.011899026110768318, -0.0013257067184895277, 0.024925608187913895, 0.02111845090985298, -0.022697027772665024, 0.021649064496159554, 0.02455417811870575, 0.014233728870749474, 0.018160274252295494, 0.025018464773893356, 0.02459397353231907, 0.03284502774477005, 0.0068714553490281105, -0.0038303721230477095, -0.013610257767140865, -0.030032770708203316, 0.02481948398053646, -0.04680018499493599, 0.022842947393655777, 0.0033495028037577868, 0.01818680576980114, 0.00970360916107893, -0.006831659469753504, -0.012728110887110233, -0.015149039216339588, 0.006990843918174505, -0.011733208782970905, -0.009796466678380966, 0.03289808705449104, -0.02390417456626892, 0.005730634555220604, 0.019791914150118828, -0.0030062617734074593, 0.00448037451133132, -0.023360295221209526, -0.009915854781866074, 0.03212869539856911, 0.021741921082139015, 0.011534228920936584, -0.6371616721153259, -0.010088304989039898, -0.011129635386168957, -0.053008370101451874, -0.0017875069752335548, 0.009192893281579018, 0.020919470116496086, 0.017085781320929527, -0.015998022630810738, 0.033163394778966904, -0.017045985907316208, 8.301212074002251e-05, 0.01210463885217905, -0.011540861800312996, -0.029077664017677307, -0.026398062705993652, -0.0053061433136463165, -0.0032019258942455053, -0.02310825325548649, -0.0019699055701494217, 0.005014305468648672, 0.011282186955213547, -0.00743523333221674, 0.006247983779758215, 0.007866357453167439, -0.00024706730619072914, 0.0243817288428545, -0.02005722187459469, 0.024355197325348854, 0.008649013005197048, -0.03422462195158005, -0.00308585399761796, 0.02716745249927044, 0.013915360905230045, 0.028945012018084526, 0.004370935261249542, -0.010744939558207989, -0.002004727255553007, 0.00573395099490881, 0.03165114298462868, -0.03292461857199669, -0.006049003452062607, 0.01487046666443348, -0.0010355269769206643, 0.001057912246324122, -0.015931695699691772, 0.022484781220555305, 0.013928625732660294, -0.02611948922276497, 0.004533436149358749, -0.010346978902816772, -0.009803099557757378, 0.012708213180303574, -0.0027790924068540335, -0.00010285834287060425, -0.008423502556979656, 0.015931695699691772, -0.013371480628848076, 0.011202595196664333, -0.004861753899604082, 0.015361284837126732, -0.002381131751462817, -0.0014956691302359104, -0.02804296649992466, -0.005491858348250389, -0.0015139089664444327, 0.004546701442450285, 0.004002821631729603, 0.038310352712869644, -0.016608228906989098, -0.0036181265022605658, 0.023572541773319244, 0.005690838675945997, -0.04849814996123314, 0.0035484833642840385, 0.015255161561071873, 0.012025047093629837, -0.0064768111333251, 0.01748374104499817, 0.026981737464666367, 0.026278674602508545, -0.0029233533423393965, -0.0025287088938057423, 4.440785778569989e-05, 0.019181707873940468, -0.031067468225955963, -0.02691541239619255, 0.010870960541069508, -0.001857150113210082, 0.020203139632940292, -0.016847005113959312, 0.010220957919955254, -0.019287830218672752, -0.026504185050725937, -0.026066428050398827, 0.0071765584871172905, 0.005690838675945997, -0.004699253011494875, -0.020614366978406906, 0.005651042331010103, -0.008118399418890476, -0.01648884080350399, -0.01618373766541481, 0.016555167734622955, 0.056934915482997894, -0.006009207107126713, -0.004841855727136135, -0.0013290230417624116, 0.04420017451047897, -0.029210317879915237, 0.007355641108006239, -0.013477603904902935, -0.013968422077596188, 0.03027154691517353, 0.031465429812669754, -0.017244964838027954, 0.027591945603489876, -0.0031339407432824373, 0.013179133646190166, -0.011428105644881725, 0.007839826866984367, 0.024448055773973465, -0.031332775950431824, -0.006513290572911501, 0.014618424698710442, 0.011998516507446766, 0.005644409917294979, -0.006549770478159189, -0.03374706953763962, -0.004546701442450285, 0.01748374104499817, -0.019393952563405037, 0.0297939945012331, -0.003999505657702684, 0.007083700969815254, 0.031598083674907684, 0.028732765465974808, -0.0025038362946361303, 0.02215314842760563, -0.00852962490171194, 0.001833935733884573, 0.011965353041887283, -0.006141860969364643, -0.012960255146026611, -0.020441915839910507, -0.0426613911986351, -0.017815375700592995, -0.015812307596206665, -0.019526606425642967, 0.03276543319225311, -0.019261300563812256, 0.005770430900156498, -0.008290848694741726, 0.016462309285998344, 0.004072465002536774, 0.0027973323594778776, 0.009915854781866074, -0.005714052822440863, -0.007753601763397455, -0.004901549778878689, 0.015109242871403694, 0.01591842994093895, -0.03210216760635376, -0.018107213079929352, -0.030112363398075104, -0.0262521430850029, 0.02005722187459469, 0.020999060943722725, -0.011912291869521141, -0.05247775465250015, 0.008264318108558655, 0.010028610937297344, -0.012966887094080448, 0.01709904707968235, 0.00837707333266735, 0.01622353307902813, 0.007607682608067989, 0.01219086442142725, 0.016992922872304916, -0.004443895071744919, 0.00021245300013106316, -0.009544424712657928, 0.0030344505794346333, -0.0160908792167902, 0.007614315487444401, 0.00996891688555479, 0.0037773107178509235, 0.004573232028633356, 0.0016515370225533843, -0.005740583874285221, 0.021450083702802658, 0.021861309185624123, -0.0101612638682127, 0.01398168783634901, 0.007421968039125204, 0.039238929748535156, -0.01238321140408516, 0.009471465833485126, 0.011176064610481262, 0.017934763804078102, 0.02516438439488411, 0.033694010227918625, -0.0076541113667190075, -0.03271237388253212, 0.008702075108885765, -0.04613691568374634, 0.020295998081564903, -0.0253898948431015, 0.011123002506792545, 0.01000871229916811, 0.02398376725614071, -0.010002080351114273, -0.01723170094192028, -0.0318368598818779, 0.017417415976524353, 0.023386826738715172, 0.006417117081582546, 0.00939850602298975, 0.009153096936643124, -0.0004854291910305619, 0.01341127697378397, -0.014552097767591476, 0.02194090187549591, -0.024660300463438034, -0.001026407117024064, 0.029900116845965385, 0.030324608087539673, 0.0025983520317822695, -0.018399052321910858, -0.025283772498369217, -0.03005930222570896, 0.0005471960175782442, -0.0023015395272523165, -0.0005285416264086962, 0.006277830805629492, 0.009975548833608627, 0.03860219195485115, -0.02172865718603134, 0.02891848050057888, -0.008370441384613514, 0.004002821631729603, 0.01919497363269329, 0.0006292753969319165, -0.03685116395354271, 0.02310825325548649, 0.002513785380870104, 0.012549028731882572, 0.00291174603626132, -0.005044152494519949, 0.010167896747589111, 0.0058599719777703285, 0.014950058422982693, -0.02844092808663845, 0.005561501253396273, 0.022564373910427094, -0.0019483494106680155, 0.01648884080350399, 0.008781666867434978, 0.016024552285671234, 0.03860219195485115, 0.020879672840237617, -0.02272355742752552, 0.018452113494277, -0.004536752589046955, 0.012277089059352875, -0.033561356365680695, 0.003873484442010522, -0.028069498017430305, -0.012449538335204124, -0.005601297598332167, -0.024832749739289284, -0.013636788353323936, 0.012681682594120502, 0.01548067294061184, -0.0021009009797126055, -0.003916596993803978, -0.031040938571095467, -0.004739049356430769, 0.007335742935538292, 0.02865317277610302, -0.03711647167801857, -0.016382716596126556, 0.006977578159421682, 0.025549080222845078, 0.0019400586606934667, 0.010181162506341934, -0.016979658976197243, -0.013232194818556309, -0.006151809822767973, 0.011050043627619743, -0.004652824252843857, 0.000671973277349025, 0.003734198398888111, -0.0012776197399944067, -0.0028271793853491545, -0.01613067463040352, 0.02198069915175438, 0.0005127890035510063, -0.006204870995134115, -0.01146790198981762, 0.009915854781866074, -0.014857200905680656, -0.02777766063809395, 0.01888987049460411, 0.04706548899412155, 0.004162006080150604, 0.0065464540384709835, 0.0032483546528965235, 0.001347262877970934, -0.014724547043442726, 0.01103677786886692, -0.016594963148236275, -0.026053162291646004, -0.024182748049497604, 0.03271237388253212, -0.019009258598089218, 0.012728110887110233, 0.00208763568662107, 0.012476068921387196, -0.021224573254585266, 0.008841360919177532, -0.0030294761527329683, 0.006022472400218248, 0.012489334680140018, 0.059641048312187195, 0.0026248826179653406, -0.01179953571408987, 0.023665398359298706, -0.010055141523480415, -0.010114835575222969, -0.013835768215358257, -0.012250558473169804, 0.020216405391693115, 0.011401575058698654, -0.014220464043319225, -0.015440876595675945, 0.008814830332994461, -9.34793206397444e-05, 0.031120529398322105, 0.0024623821955174208, 0.012655152007937431, -0.038973622024059296, 0.013888830319046974, -0.0220204945653677, 0.00557145057246089, 0.01766945607960224, 0.010937287472188473, 0.0033992480020970106, 0.00955105759203434, -0.02594703994691372, 0.06712271273136139, 0.022909272462129593, 0.014963324181735516, -0.002104217419400811, -0.009438302367925644, 0.007269416004419327, 0.0047324164770543575, 0.013470971025526524, 0.0017991141648963094, 0.002810597652569413, 0.008556155487895012, -0.00909340288490057, 0.036479733884334564, 0.0075347232632339, 0.01757659949362278, 0.033349111676216125, 0.015560264699161053, 0.013902095146477222, 0.019168442115187645, -0.014366382732987404, -0.0014459240483120084, 0.0075015597976744175, 0.004467109218239784, -0.015414346009492874, 0.013417909853160381, 0.011693413369357586, -0.03772667795419693, -0.011726576834917068, 0.022670496255159378, -8.342666842509061e-05, 0.007727071177214384, 0.005531654227524996, -0.020707223564386368, -0.0018969462253153324, -0.007096966728568077, -0.018704155460000038, -0.004772212356328964, 0.008688809350132942, 0.0025966938119381666, 0.0027724597603082657, -0.005730634555220604, 0.01358372624963522, -0.02556234411895275, 0.030324608087539673, 0.004238281864672899, -0.017642926424741745, -0.008151562884449959, -0.00966381374746561, 0.0160908792167902, 0.0031239918898791075, 0.004364302847534418, -0.007415335159748793, 0.012277089059352875, 0.010572490282356739, -0.014207198284566402, -0.028971541672945023, -0.02603989839553833, -0.023652132600545883, -0.013902095146477222, -0.00376736163161695, -0.020813345909118652, 0.015215365216135979, -0.01614394038915634, 0.015082712285220623, -0.016382716596126556, 0.006556403357535601, 0.006320943124592304, -0.02037559077143669, 0.01268831454217434, 0.021357227116823196, 0.0018123795744031668, 0.01919497363269329, 0.024726627394557, -0.013902095146477222, -0.01967252604663372, 0.006702322047203779, 0.0037043511401861906, -0.02542969211935997, 0.015891898423433304, 0.0006707296706736088, -0.0059362477622926235, 0.03196951374411583, -0.00878829974681139, -0.0019616149365901947, 0.0021473297383636236, -0.00492808036506176, 0.004049250390380621, 0.017656192183494568, 0.006045687012374401, 0.019964363425970078, 0.015865368768572807, -0.006002574693411589, 0.027459291741251945, -0.013046479783952236, 0.0010388433001935482, -0.03191645070910454, 0.02146334946155548, 0.01533475425094366, -0.022657232359051704, 0.027618475258350372, -0.017682721838355064, -0.00597604364156723, -0.02298886515200138, -0.01210463885217905, 0.02350621484220028, -0.0014799165073782206, -0.01144800428301096, 0.005843390244990587, -0.03215522691607475, -0.012701580300927162, -0.002760852687060833, -0.022126616910099983, -0.03998178988695145, 0.01550720352679491, -0.003963025752454996, 0.0058798701502382755, 0.008078603073954582, 0.020601101219654083, -0.0029100878164172173, -0.026159286499023438, 0.011328616179525852, 0.0026248826179653406, 0.021476615220308304, 0.019075585529208183, -0.001936742221005261, -0.0015412687789648771, -3.124613795080222e-05, -0.0033047322649508715, 0.012721478007733822, -0.011268921196460724, -0.021702125668525696, -0.01415413711220026, 0.0064701782539486885, -0.005946196615695953, 0.014525567181408405, -0.005087264813482761, 0.00036541916779242456, 0.0018405683804303408, -0.004576548468321562, 0.01565312221646309, 0.012303619645535946, -0.028255213052034378, -0.00968371145427227, -0.00462297722697258, 0.014233728870749474, 0.01284749899059534, 0.03422462195158005, 0.003568381303921342, 0.018783746287226677, 0.02089293859899044, -0.009172994643449783, 0.012641886249184608, -0.0016059373738244176, 0.001780874328687787, 0.02249804697930813, 0.012900561094284058, -0.025787856429815292, 0.01487046666443348, -0.02891848050057888, -0.022471517324447632, 0.013928625732660294, -0.01042657159268856, -0.0033262884244322777, 0.021516410633921623, 0.027379699051380157, -0.001707914867438376, 0.023691929876804352, 0.02367866411805153, 0.025628671050071716, -0.0005529996124096215, 0.021184775978326797, -0.03716953471302986, 0.007017374504357576, 0.029422564432024956, 0.0063176266849040985, -0.0021456717513501644, -0.009982181712985039, 0.012416374869644642, -0.012529131025075912, 0.01103677786886692, 0.008828096091747284, -0.0041984859853982925, -0.011096471920609474, 0.0038270556833595037, -0.025044996291399002, -0.0006491734529845417, -0.012131170369684696, -0.00852962490171194, -0.013596992008388042, 0.0055548688396811485, 0.000754467211663723, 0.03987566754221916, -0.025044996291399002, -0.016714351251721382, 0.01723170094192028, -0.0450226254761219, 0.04523487016558647, 0.003356135683134198, 0.008894423022866249, 0.012290353886783123, -0.0014111024793237448, -0.01940721832215786, -0.006075534038245678, -0.00678191427141428, 0.01533475425094366, 0.024501116946339607, -0.006161758676171303, -0.020839877426624298, -0.005491858348250389, -0.019858241081237793, 0.027193984016776085, -0.003419145941734314, -0.021516410633921623, 0.01670108549296856, -0.013623522594571114, -0.03170420601963997, -0.015003119595348835, 0.0022435036953538656, 0.010108202695846558, 0.0028537102043628693, -0.003591595683246851, 0.034914422780275345, -0.001544585102237761, -0.017430679872632027, -0.00822452176362276, 0.014273525215685368, -0.006175023969262838, 0.023015396669507027, 0.02220620959997177, -0.023784786462783813, -0.0010686904424801469, 0.0013994952896609902, -0.016342921182513237, 0.02111845090985298, -0.028838887810707092, 0.010061774402856827, 0.0015462433220818639, 0.009862793609499931, 0.005435480270534754, -0.003545166924595833, -0.012867397628724575, -0.028812358155846596, -0.010798001661896706, 0.02428887039422989, -0.012098006904125214, 0.001052937819622457, 0.019128646701574326, 0.009206158109009266, 0.009119933471083641, -0.0016706060850992799, 0.014246994629502296, -0.018637828528881073, 0.014445974491536617, -0.01723170094192028, -0.005372469779103994, 0.02769806794822216, -0.00766737712547183, -0.021529676392674446, 0.008277583867311478, -0.01644904352724552, 0.0052663469687104225, -0.017656192183494568, 0.0011673514964058995, -0.017695987597107887, -0.00909340288490057, 0.011713311076164246, 0.015281692147254944, 0.020441915839910507, -0.013291888870298862, 0.011050043627619743, 0.009013811126351357, 0.016992922872304916, -0.02857358194887638, -0.0044273133389651775, -0.005034203175455332, 0.0025718212127685547, -0.022431720048189163, 0.0016847004881128669, -0.004241598304361105, -0.015600061044096947, 0.03311033546924591, -0.0002331801224499941, -0.015546999871730804, -0.01402148324996233, 0.012164332903921604, 0.003561748657375574, 0.006516607012599707, -0.009610751643776894, 0.002608301118016243, -0.018743950873613358, 0.027114391326904297, -0.00880819745361805, -0.03393278643488884, 0.03297768160700798, -0.003342870157212019, -0.005140326451510191, 0.02716745249927044, -0.019526606425642967, 0.005034203175455332, -0.02769806794822216, -0.010605653747916222, -0.008874524384737015, -0.03422462195158005, -0.01310617383569479, -0.022444985806941986, 0.004118893761187792, -0.0013737936969846487, -0.022922538220882416, -0.01101688016206026, -0.002866975497454405, -0.009119933471083641, 0.004543385002762079, -0.003266594372689724, 0.005030887201428413, -0.010851062834262848, 0.023625602945685387, 0.0002437509538140148, 0.0048086922615766525, -0.017550067976117134, 0.0063939024694263935, -0.017218435183167458, -0.002460723975673318, -0.03642667457461357, -0.036214426159858704, -0.023320499807596207, 0.007567886728793383, 0.005548235960304737, -0.013703115284442902, -0.0314919613301754, -0.04136138781905174, -0.06717577576637268, -0.004069148562848568, 0.009584221057593822, 0.001668947865255177, 0.04152056947350502, 0.0024275605101138353, 0.013623522594571114, 0.0291307270526886, -0.0008506411104463041, 0.0291307270526886, -0.0053824190981686115, -0.007707173004746437, 0.009259220212697983, 0.02255110815167427, 0.007269416004419327, 0.0034456767607480288, -0.02036232501268387, -0.04056546464562416, 0.001505618100054562, 0.004957927390933037, -0.003545166924595833, 0.008695442229509354, -0.014936793595552444, 0.0005563159356825054, 0.003661238821223378, 0.001631639082916081, 0.0037474636919796467, 0.011885760352015495, 0.007999011315405369, -0.019871506839990616, -0.00361481006257236, 0.009630650281906128, 0.01866435818374157, -0.009046974591910839, 0.018040886148810387, -0.004278077743947506, -0.0011084864381700754, 0.017152108252048492, 0.002493887208402157, -0.009444935247302055, 0.0024507748894393444, -0.01700618863105774, 0.024315401911735535, 0.007004109211266041, 0.014379648491740227, 0.012456171214580536, -0.0060887993313372135, -0.004646191839128733, -0.007096966728568077, 0.021224573254585266, -0.03881443664431572, -0.007249518297612667, 0.006453596521168947, -0.029581747949123383, 0.0056112464517354965, 0.00039733893936499953, 0.01648884080350399, -0.024832749739289284, 0.019553137943148613, 0.018558235839009285, -0.021529676392674446, -0.016847005113959312, 0.027936844155192375, 0.06372678279876709, -0.021397022530436516, -0.00835054274648428, -0.013928625732660294, -0.005425531417131424, -0.015891898423433304, 0.01164698414504528, -0.019592933356761932, -0.005279612727463245, 0.035126667469739914, -0.008032173849642277, -0.011487799696624279, 0.008602584712207317, 0.028547050431370735, 0.02098579704761505, -0.02476642280817032, 0.00316710420884192, 0.17499659955501556, 0.014406179077923298, 0.006058952305465937, 0.019645994529128075, -0.0002740125637501478, -0.00198482908308506, 0.024633770808577538, -0.0005347597179934382, 0.0034954219590872526, -0.0030443996656686068, -0.023612337186932564, -0.025005199015140533, -0.008993912488222122, 0.015891898423433304, 0.021251102909445763, -0.0068913535214960575, -0.02966134063899517, -0.06070227921009064, -0.00679186312481761, 0.009212790988385677, -0.020269466564059258, -0.016236798837780952, -0.024700095877051353, -0.009325547143816948, 0.013338317163288593, 0.010831165127456188, -0.00042656416189856827, 0.02485928125679493, 0.016289860010147095, 0.0022783251479268074, 0.0029813891742378473, 0.020468447357416153, 0.006506658159196377, -0.008264318108558655, -0.034091971814632416, 0.006592882797122002, 0.017112310975790024, -0.007004109211266041, -0.004977825563400984, 0.020879672840237617, 0.01883680932223797, -0.009146464057266712, -0.02594703994691372, -0.05107162892818451, 0.01310617383569479, 0.07619621604681015, -0.012356680817902088, 0.011116369627416134, -0.0012137802550569177, -0.023519480600953102, -0.014246994629502296, 0.01205821055918932, 0.015666387975215912, 0.0335082933306694, 0.014419443905353546, 0.004049250390380621, -0.014313321560621262, 0.009922487661242485, 0.011421473696827888, 0.004546701442450285, -0.018465379253029823, 0.00894085131585598, -0.0101612638682127, 0.012781172059476376, -0.008443400263786316, 0.025840917602181435, -0.0029034551698714495, -0.004944662097841501, 0.012157700955867767, -0.012091374024748802, -0.0018803644925355911, -0.017523538321256638, -0.00402271980419755, 0.03074909932911396, 0.022365393117070198, -0.014140871353447437, 0.007581152021884918, 0.0023015395272523165, 0.005156907718628645, 0.029236849397420883, -0.028547050431370735, -0.010572490282356739, 0.0076939077116549015, -0.03732871636748314, -0.008416869677603245, -0.03000623919069767, -0.002784067066386342, 0.008675544522702694, 0.010526061989367008, -0.0024972036480903625, -0.021304165944457054, -0.02791031263768673, 0.000754467211663723, -0.002341335639357567, 0.011806168593466282, 0.011083207093179226, -0.0049048662185668945, 0.0012013439554721117, -0.0008348884875886142, 0.010718408972024918, -0.026238877326250076, 0.0738615170121193, 0.019858241081237793, -0.022789884358644485, 0.0068714553490281105, 0.006078850477933884, -0.01223729271441698, 0.005664308089762926, 0.004603079054504633, -0.01234341599047184, 0.005475276615470648, -0.0036546061746776104, 0.014207198284566402, 0.010419938713312149, -0.0047324164770543575, 0.0029747565276920795, -0.006931149400770664, -0.023585807532072067, 0.015772510319948196, 0.022299066185951233, -0.02381131798028946, -0.02072048932313919, 0.005196704063564539, 0.006715587340295315, 0.021343961358070374, -0.00463292608037591, -0.007408702280372381, 0.011408207938075066, -0.00852962490171194, 0.005710736848413944, 0.016329655423760414, -0.026928676292300224, 0.011096471920609474, -0.002895164303481579, -0.01195208728313446, -0.002387764398008585, 0.009318914264440536, -0.003992872778326273, -0.011806168593466282, 0.011302084662020206, -0.011912291869521141, -0.005843390244990587, -0.019168442115187645, 0.01548067294061184, -0.00198482908308506, -0.03284502774477005, -0.015573530457913876, -0.03427768498659134, 0.001427684212103486, -0.025496019050478935, -0.009524527005851269, -0.019340891391038895, -0.003165445988997817, -0.0054785930551588535, -0.0039497604593634605, 0.00371761666610837, -0.020945999771356583, -0.041202202439308167, 0.002507152734324336, 0.017112310975790024, -0.0392654612660408, 0.018637828528881073, -0.010545959696173668, -0.005352572072297335, -0.014485770836472511, 0.008211256936192513, -0.1666128933429718, -0.0029747565276920795, 0.003243379993364215, -0.006655893288552761, 0.019433749839663506, 0.002236871048808098, 0.006238034460693598, 0.004009454511106014, -0.023691929876804352, 0.019990894943475723, 0.0038038413040339947, 0.008125031366944313, 0.016289860010147095, -0.015666387975215912, -0.012436273507773876, -0.030430730432271957, -0.011050043627619743, 0.01055259257555008, 0.0003322557604406029, 0.017112310975790024, 0.025098057463765144, -0.01384903397411108, 0.015082712285220623, -0.022922538220882416, 0.00027525617042556405, 0.008158194832503796, -0.004390833433717489, 0.013165867887437344, 0.008257685229182243, -0.00506073422729969, 0.0029963126871734858, -0.0003347430319990963, -0.01249596755951643, -0.01147453486919403, 0.022524578496813774, 0.0003160886117257178, -0.018823543563485146, -0.027021534740924835, -0.014989854767918587, 0.036532796919345856, -0.012031679973006248, 0.012131170369684696, -0.013073010370135307, -0.02442152425646782, -0.0004162006080150604, 0.024487851187586784, 0.0226837620139122, 0.006878088228404522, -0.0054023172706365585, -0.03040420077741146, 0.0070638032630085945, -0.036134835332632065, 0.01705924980342388, 0.006851557642221451, 0.015493937768042088, -0.013530665077269077, -0.01398168783634901, 0.01014136616140604, -0.0013456047745421529, 0.0019466913072392344, -0.01219086442142725, -0.008058705367147923, 0.013205664232373238, -0.004689304158091545, -0.012867397628724575, -0.011845964938402176, -0.0238643791526556, 0.012734743766486645, -0.010280652903020382, 0.0005239816382527351, -0.003084195777773857, -0.029475625604391098, 0.0032715690322220325, -0.009776568971574306, -0.0215031448751688, -0.005272979848086834, -0.013451073318719864, -0.009172994643449783, 0.020136812701821327, -0.007793397642672062, -0.040459342300891876, 0.025058262050151825, -0.004271445330232382, -0.01740415021777153, 0.006748750805854797, 0.0017742416821420193, 0.00642374949529767, 0.016037818044424057, -0.00328815053217113, -0.016594963148236275, -0.009504629299044609, -0.013902095146477222, -0.015308222733438015, -0.014008218422532082, -0.0027757761999964714, 0.007780132349580526, 0.011945455335080624, 0.006569668650627136, 0.005316092167049646, -0.005379102658480406, 0.020601101219654083, -0.029820524156093597, -0.024050094187259674, -0.012555661611258984, 0.03555116057395935, 0.004785478115081787, -0.013192398473620415, 0.003439044114202261, 0.025827651843428612, -0.00275919446721673, -0.03507360816001892, 0.0021688861306756735, 0.019831709563732147, -0.0023214376997202635, 0.018478643149137497, 0.0076740095391869545, -0.004258180037140846, -0.016210267320275307, 0.016170471906661987, 0.031253185123205185, 0.04557976871728897, -0.0030510323122143745, 0.001832277630455792, 0.015891898423433304, -0.007441865745931864, -0.03581646829843521, -0.10532694309949875, 0.004782161675393581, 0.002706133062019944, 0.017125576734542847, -0.004162006080150604, 0.01797456108033657, -0.021834779530763626, 0.007932684384286404, 0.03459605202078819, 0.009385241195559502, -0.008847993798553944, -0.015241896733641624, -0.0176163949072361, -0.011686780489981174, -0.008098500780761242, -0.013225561939179897, -0.0029250115621834993, -0.007070435676723719, -0.003953076899051666, 0.02237865887582302, -0.012860764749348164, 0.004251547157764435, -0.022975599393248558, -0.03589605912566185, -0.023572541773319244, -0.005863288417458534, -0.027406230568885803, -0.001933425897732377, 0.012290353886783123, -0.0160908792167902, -0.018120478838682175, -0.009517894126474857, -0.009915854781866074, 0.0135439308360219, 0.005747216288000345, -0.0030046035535633564, 0.0014658221043646336, -0.030032770708203316, 0.02037559077143669, -0.026371531188488007, 0.0045400685630738735, 0.013179133646190166, 0.0018405683804303408, -0.04207771643996239, 0.017855171114206314, -0.00894085131585598, -0.03486135974526405, 0.04443895071744919, 0.003936495166271925, -0.002986363833770156, -0.006022472400218248, 0.020004160702228546, -0.019778648391366005, -0.03311033546924591, 0.030722569674253464, -0.0020014108158648014, -0.011912291869521141, 0.0018919716821983457, -0.025973571464419365, 0.03921239823102951, -0.041281793266534805, -0.016541901975870132, -0.022166414186358452, 0.006543138064444065, -0.00043402594747021794, 0.0004385859065223485, 0.012555661611258984, -0.012224027886986732, 0.03549809753894806, -0.008662278763949871, 0.006075534038245678, -0.00551838893443346, -0.015281692147254944, -0.006831659469753504, -0.006904618814587593, 0.0023031977470964193, -0.018942931666970253, 0.0028935063164681196, 0.007859724573791027, -0.014499036595225334, -0.004510221537202597, -0.014419443905353546, -0.025310304015874863, -0.0035783303901553154, 0.01550720352679491, 0.026358267292380333, 0.012748009525239468, 0.02966134063899517, 0.026146020740270615, -0.031996045261621475, 0.018558235839009285, 0.026530716568231583, 0.018478643149137497, -0.0012684998800978065, -0.02333376556634903, -0.003191976808011532, 0.03096134588122368, -0.007607682608067989, -0.019261300563812256, 0.00789288803935051, -0.040194034576416016, -0.0026149337645620108, -0.0521593876183033, 0.019049054011702538, -0.010472999885678291, -0.04295323044061661, -0.02127763442695141, -0.0044637927785515785, -0.0017941396217793226, -0.008861259557306767, -0.02129090018570423, -0.0010454760631546378, -0.03549809753894806, 0.024978669360280037, -0.004142107907682657, 0.0034788402263075113, -0.019393952563405037, -0.018850073218345642, 0.008078603073954582, 0.0003198194899596274, -0.017324557527899742, -0.007335742935538292, 0.00275919446721673, -0.01631638966500759, 0.02678275853395462, -0.021914372220635414, -0.004423996899276972, 0.014140871353447437, -0.011076574213802814, -0.0001259172713616863, -0.02415621653199196, 0.007017374504357576, 0.011123002506792545, -0.027034800499677658, 0.020521508529782295, 0.019287830218672752, -0.00793931633234024, 0.01114290114492178, -0.02080008201301098, 0.013795972801744938, 0.00441736401990056, 0.011660249903798103, -0.024222543463110924, -0.0013837426668033004, 0.027618475258350372, -0.013112806715071201, 0.013033214025199413, 0.008463297970592976, -0.022736823186278343, -0.008184726350009441, 0.008801565505564213, 0.016953127458691597, 0.05337980017066002, 0.014552097767591476, 0.004284710623323917, -0.017218435183167458, 0.0012718162033706903, -0.00646686227992177, 0.009020443074405193, -0.02569499798119068, 0.0063176266849040985, -0.036267489194869995, 0.0595879890024662, -0.0008303284994326532, -0.0041785878129303455, -0.03114706091582775, 0.011116369627416134, 0.002762510906904936, -0.018783746287226677, 0.020335793495178223, -0.033481765538454056, -0.005949513055384159, -0.0033047322649508715, 0.01923476904630661, 0.010519429109990597, 0.03263277933001518, 0.021516410633921623, 0.016117410734295845, -0.010194427333772182, 0.0011093155480921268, -0.004831906873732805, 0.01670108549296856, 0.02899807319045067, 0.0019267932511866093, -0.023784786462783813, 0.009862793609499931, 0.03276543319225311, 0.00822452176362276, -0.019566403701901436, 0.01936742290854454, -0.00789288803935051, 0.02533683367073536, -0.004616344813257456, -0.00037972087739035487, -0.0064336988143622875, 0.02451438084244728, 0.0016764096217229962, -0.0014799165073782206, -0.012549028731882572, 0.00603905413299799, 0.014074544422328472, 0.03191645070910454, 0.015454142354428768, 0.012887295335531235, 0.005896451883018017, 0.017152108252048492, -0.04844508692622185, 0.029289910569787025, -0.04658793658018112, -0.06717577576637268, -0.007256150711327791, 0.02188784070312977, 0.018770482391119003, 0.0020975847728550434, 0.040273625403642654, 0.009206158109009266, -0.037885863333940506, 0.005548235960304737, 0.0037706780713051558, 0.02058783546090126, -0.014804139733314514, 0.023015396669507027, -0.006075534038245678, -0.003107410157099366, 0.04024709761142731, -0.016037818044424057, 0.007853091694414616, -0.016581697389483452, 0.029555218294262886, -0.027485821396112442, 0.010353611782193184, 0.008781666867434978, -0.017961295321583748, 0.021052123978734016, -0.003667871467769146, -0.003488789079710841, 0.0029482259415090084, -0.010632184334099293, 0.0014169060159474611, 0.011978617869317532, 0.017045985907316208, 0.06547781080007553, 0.015401080250740051, -0.015215365216135979, 0.01207810826599598, -0.0031173592433333397, -0.011441371403634548, 0.011839332059025764, 0.0048650698736310005, -0.0023512847255915403, -0.0020179925486445427, 0.02024293690919876, 0.015188834629952908, 0.02987358719110489, -0.023214377462863922, -0.05566144362092018, 0.0044836909510195255, -0.00165485346224159, 0.01971232146024704, -0.0008473247289657593, 0.02041538618505001, 0.035259321331977844, 0.009086770005524158, 0.016422513872385025, -0.015149039216339588, -0.016104144975543022, -0.014233728870749474, 0.03000623919069767, -0.026875615119934082, -0.03265931084752083, -0.007169926073402166, 0.036002181470394135, 0.0009965599747374654, -0.019699057564139366, -0.04061852768063545, 0.014751078560948372, 0.017152108252048492, -0.006473494693636894, 0.006669158581644297, 0.004002821631729603, 0.005558184813708067, 0.02569499798119068, -0.016157206147909164, 0.000829084892757237, -0.016886800527572632, -0.023877644911408424, -0.009046974591910839, -0.009769936092197895, -0.00039547350024804473, -0.009153096936643124], "ff608a4c-36da-45aa-ad71-ea74392d397c": [0.00027366101858206093, 0.025327125564217567, -0.029512079432606697, -0.005900377407670021, -0.003899616189301014, 0.027256552129983902, -0.04076253995299339, -0.008295176550745964, -0.007873963564634323, -0.006946616340428591, 0.032392632216215134, 0.016033265739679337, -0.0045823887921869755, 0.022786259651184082, -0.008234033361077309, 0.011855104938149452, 0.025191249325871468, 0.01098550483584404, 0.0031811764929443598, -0.02568040043115616, 0.00424609798938036, 0.015992503613233566, -0.03839831426739693, -0.004595976322889328, 0.004110222682356834, 0.02231069654226303, 0.005013792309910059, -0.015639226883649826, 0.02160414680838585, -0.00559126166626811, 0.010136284865438938, 0.006844709627330303, -0.025340711697936058, -0.0219438336789608, -0.025422237813472748, -0.007085888180881739, -0.008920202031731606, -0.018777944147586823, 0.023941198363900185, -0.023995548486709595, -0.0023285599891096354, 0.01712026633322239, -0.004799789283424616, -0.0077041201293468475, 0.015027789399027824, 0.01293531246483326, 0.014796801842749119, -0.024226536974310875, -0.01767735555768013, 0.01760941743850708, 0.016671879217028618, 0.02612878754734993, 0.002994348295032978, -0.005207414273172617, -0.032283931970596313, -0.03054472990334034, -0.020449208095669746, 0.032610032707452774, -0.033153533935546875, -0.004595976322889328, 0.016671879217028618, -0.006820931565016508, -0.0029349029064178467, -0.0069771879352629185, -0.005621833726763725, -0.01732407882809639, 0.006861694157123566, 0.0011897566728293896, -0.012704324908554554, -0.019484493881464005, 0.029376203194260597, 0.005119095556437969, 0.023180298507213593, -0.0010674690129235387, -0.0016491843853145838, -0.023098772391676903, -0.009443321265280247, -0.018927406519651413, 0.008879439905285835, -0.0033459251280874014, 0.016250666230916977, 0.00013852895062882453, -0.012194792740046978, 0.01293531246483326, 0.03559928387403488, 0.008831883780658245, 0.03092518076300621, 0.01759582944214344, -0.03415900841355324, -0.016046853736042976, -0.003559928387403488, 0.03445793315768242, 0.019158393144607544, 0.018560543656349182, -0.03540905937552452, 0.03554493561387062, 0.002128144260495901, 0.03062625415623188, 0.0012143839849159122, -0.010007203556597233, 0.0217400211840868, -0.0087911207228899, -0.01770452968776226, -0.00418835086748004, -0.02160414680838585, -0.015652814880013466, 0.024579811841249466, 0.010007203556597233, -0.008349526673555374, 0.008451432920992374, -0.002478022826835513, 0.03396878391504288, -0.016766991466283798, -0.050355322659015656, 0.00766335753723979, -0.011889073997735977, -0.008628071285784245, -0.006199303083121777, -0.012337462045252323, -0.002004158217459917, 0.0022860991302877665, 0.006759787909686565, 0.0012865676544606686, -0.002371021080762148, 0.016603941097855568, 0.011562974192202091, 0.012405399233102798, 0.0028312981594353914, -0.036631934344768524, -0.00766335753723979, 0.014497876167297363, -0.001063222880475223, -0.00549275241792202, 0.0001903313386719674, -0.014171776361763477, 0.016766991466283798, -0.020258981734514236, 0.0037467568181455135, -0.028615303337574005, -0.04516489431262016, 0.02574833668768406, 0.050355322659015656, -0.027623414993286133, 0.0084854019805789, -0.0019107440020889044, -0.012385018169879913, -0.007092681713402271, -0.009647134691476822, 0.01707950420677662, -0.011569767259061337, -0.010421622544527054, -0.024742862209677696, -0.00647105323150754, -0.009477290324866772, -0.009980028495192528, 0.016671879217028618, -0.022881371900439262, 0.0038384725339710712, 0.007873963564634323, -0.014239713549613953, 0.02655000053346157, 0.018927406519651413, 0.008301970548927784, 0.024770036339759827, 0.024511873722076416, 0.027270138263702393, 0.01763659156858921, -0.001272980123758316, -0.012582037597894669, -0.0050851269625127316, 0.0021638115867972374, 0.027813639491796494, -0.04747477173805237, 0.009416147135198116, -0.018424667418003082, 0.011501830071210861, 0.019661132246255875, 0.013512781821191311, -0.010231397114694118, -0.02612878754734993, 0.004796392284333706, -0.018777944147586823, 0.009545228444039822, 0.05100752413272858, -0.027446776628494263, 0.008003044873476028, 0.04002881422638893, 0.003267796942964196, 0.0048371548764407635, -0.03002840466797352, 0.0003600690979510546, 0.03209370747208595, 0.020422032102942467, -0.0035395470913499594, -0.6248081922531128, -0.02154979668557644, -0.015883803367614746, -0.05307282507419586, 0.0021145567297935486, 0.025068961083889008, 0.0175822414457798, -0.0038520600646734238, -0.033017657697200775, 0.03174043074250221, -0.037420012056827545, 0.009185158647596836, -0.0038011069409549236, -0.013057599775493145, -0.003267796942964196, -0.023221060633659363, -0.004935664124786854, -0.009280271828174591, -0.006610325071960688, -0.0065321968868374825, 0.007160619366914034, 0.011270842514932156, -0.00013937815674580634, 0.015788691118359566, 0.008023426868021488, -0.003481800202280283, 0.016332190483808517, -0.024892324581742287, 0.023112360388040543, 0.019389381632208824, -0.04421376809477806, 0.010394447483122349, 0.009959647431969643, 0.013329350389540195, 0.041795190423727036, 0.011338779702782631, -0.004714867100119591, -0.02263679727911949, 0.010177046991884708, 0.037691760808229446, -0.050328150391578674, -0.04462139308452606, 0.01748712919652462, 0.019158393144607544, -0.002537467982620001, -0.0012738293735310435, 0.012561655603349209, 0.00673261284828186, -0.010584672912955284, -0.008716389536857605, -0.008308764547109604, -0.012582037597894669, 0.015856627374887466, -0.015204427763819695, -0.006090602837502956, -0.02659076265990734, 0.025517350062727928, -0.00672921584919095, 0.0257619246840477, 0.012194792740046978, 0.01729690469801426, 0.03106105513870716, 0.01277905609458685, -0.03095235489308834, -0.0050545549020171165, -0.010883597657084465, 0.004229113459587097, 0.002121350495144725, 0.03972988948225975, -0.02656358852982521, -0.015041377395391464, 0.03839831426739693, -0.010041172616183758, -0.04318111762404442, 0.009259889833629131, 0.009878122247755527, 0.007133444305509329, -0.012092886492609978, 0.013030425645411015, 0.0339416079223156, 0.03078930452466011, -0.028968578204512596, -0.004939061123877764, -0.0014742452185600996, 0.007683738600462675, -0.027433188632130623, -0.02188948355615139, -0.002635977463796735, 7.313903915928677e-05, 0.0038588538300246, -0.01330896932631731, 0.018315967172384262, -0.018845880404114723, -0.029457729309797287, -0.009715071879327297, 0.020231807604432106, -0.0014980232808738947, 0.011501830071210861, -0.008444639854133129, -0.009388972073793411, -0.009993615560233593, -0.01788116805255413, -0.019484493881464005, -0.012126855552196503, 0.05554575473070145, -0.014470702037215233, -0.020884007215499878, 0.0020839849021285772, 0.04486596956849098, -0.03869723901152611, 5.482773849507794e-05, -0.020530732348561287, -0.011705642566084862, 0.024117836728692055, 0.03027297928929329, -0.023655859753489494, 0.023954786360263824, 0.012677149847149849, 0.0027803448028862476, -0.020000819116830826, 0.004687692038714886, 0.0351644828915596, -0.02231069654226303, 0.0014598084380850196, 0.01553052756935358, 0.037691760808229446, 0.028832703828811646, -0.027365252375602722, -0.01721537858247757, 0.004898298531770706, 0.029403379186987877, -0.018587717786431313, 0.03524601086974144, 0.0037671381141990423, 0.01713385432958603, 0.028452252969145775, 0.03206653147935867, -0.007235351018607616, 0.014728864654898643, -0.018723594024777412, -0.01054390985518694, 0.012765469029545784, 0.0018105361377820373, -0.011868692934513092, -0.005550499074161053, -0.03535471111536026, -0.025517350062727928, -0.008573721162974834, -0.01326141320168972, 0.024253711104393005, 0.00553351454436779, 0.011454273946583271, -0.01721537858247757, 0.005944536998867989, 0.0038656475953757763, 0.0015184045769274235, 0.0007095229811966419, -0.004959442187100649, -0.019076868891716003, 0.0016491843853145838, 0.0016347477212548256, 0.01668546535074711, -0.020449208095669746, -0.01775887981057167, -0.03981141373515129, -0.02125087007880211, 0.012147236615419388, 0.012962487526237965, -0.003580309683457017, -0.03910486400127411, 7.244904554681852e-05, -0.0034987847320735455, -0.020884007215499878, -0.0017111774068325758, 0.02648206241428852, 0.0008207707433030009, -0.0011702246265485883, -0.00018735906633082777, -0.0017383524682372808, -0.006426893640309572, 0.01693004183471203, -0.016766991466283798, 0.003624469041824341, -0.00902210921049118, 0.0070043629966676235, 0.016046853736042976, 0.023207472637295723, -0.014362001791596413, 9.283031249651685e-05, 0.012154030613601208, 0.023750973865389824, 0.009585990570485592, 0.01536747720092535, 0.00900172721594572, -0.0011082316050305963, 0.03043602965772152, -0.002695422852411866, 0.007907932624220848, 0.012792644090950489, 0.01790834218263626, 0.04774652048945427, 0.029403379186987877, 0.0011829629074782133, -0.0433441661298275, 0.016141965985298157, -0.037012387067079544, 0.024280887097120285, -0.019892118871212006, 0.019620368257164955, 0.01686210371553898, 0.010496353730559349, 0.009850947186350822, -0.021169345825910568, -0.018546955659985542, 0.018329555168747902, 0.007113063242286444, 0.012133649550378323, 0.009694690816104412, -0.0050545549020171165, 0.0035259597934782505, 0.0088930269703269, 0.003556531621143222, 0.027025563642382622, -0.008879439905285835, 0.008288383483886719, 0.007187794428318739, 0.011821136809885502, 0.011929837055504322, 0.008288383483886719, -0.028778353706002235, -0.016766991466283798, -0.001099739340133965, 0.010890391655266285, -0.002642771229147911, 0.018152916803956032, 0.006746200378984213, 0.0340774841606617, -0.013539956882596016, 0.04206693917512894, -0.016250666230916977, 0.020653020590543747, 0.01691645383834839, 0.002318369457498193, -0.028724003583192825, 0.019620368257164955, -0.02157697081565857, 0.041360389441251755, 0.0030690794810652733, -0.012439368292689323, -0.0069771879352629185, -0.003923394251614809, 0.009803391061723232, -0.02240580879151821, -0.001568508567288518, 0.0297838281840086, 0.010129490867257118, 0.02221558429300785, 0.014592989347875118, 0.0037161847576498985, 0.03429488465189934, 0.009470496326684952, -0.024498285725712776, 0.01283340621739626, -0.00028915927396155894, 0.010625435039401054, -0.0053840521723032, 0.01773170568048954, -0.032800257205963135, -0.006090602837502956, 0.001318837981671095, -0.018723594024777412, -0.023750973865389824, 0.0022860991302877665, 0.004021903965622187, 6.475299596786499e-05, -0.011957012116909027, -0.008057394996285439, -0.0025816275738179684, -0.003491990966722369, 0.01710667833685875, -0.00642349710687995, -0.005900377407670021, 0.028533777222037315, 0.019199157133698463, 0.005686374381184578, 0.01679416559636593, -0.02562605030834675, -0.0016610735328868032, 0.013743769377470016, 0.024674924090504646, 0.00891340896487236, -0.023587923496961594, -0.0008377550984732807, -0.022894959896802902, 0.004079650621861219, -0.005859615281224251, 0.016766991466283798, -0.015815865248441696, 0.0016135171754285693, -0.004752232693135738, -0.0009893408278003335, 0.01718820445239544, -0.025259187445044518, 0.005190430209040642, 0.0348927341401577, -0.0014810389839112759, 0.016372952610254288, -0.011393129825592041, -0.0013918709009885788, -0.019104043021798134, -0.0018903628224506974, -0.023873260244727135, -0.015299540013074875, -0.019117631018161774, 0.036903686821460724, -0.00865524634718895, -0.006644294131547213, -0.0032796859741210938, -0.007602213881909847, -0.007017950527369976, 0.011495036073029041, -0.018737180158495903, -0.01698439195752144, 0.005720342975109816, 0.059513308107852936, 0.0009290461894124746, -0.022731909528374672, 0.02134598419070244, -0.00015158570022322237, -0.004045682027935982, -0.020299743860960007, -0.01330896932631731, 0.014796801842749119, -0.0024015929084271193, -0.009307446889579296, 0.014620164409279823, 0.007092681713402271, -0.007235351018607616, 0.03497425839304924, -7.99327899585478e-05, 0.0177860539406538, -0.02114216983318329, -0.007330463267862797, -0.0261016134172678, 0.01675340346992016, -0.004066063556820154, 0.02193024568259716, 0.0052481768652796745, 0.023805323988199234, -0.015639226883649826, 0.05231192708015442, 0.0171746164560318, 0.007058713119477034, -0.01553052756935358, -0.010727341286838055, 0.02183513343334198, 0.000268990290351212, 0.02538147382438183, -0.006657881662249565, 0.011950218118727207, 0.02607443742454052, -0.00222495524212718, 0.029267502948641777, 0.006661278195679188, 0.028533777222037315, 0.020707370713353157, 0.014402763918042183, 0.027120675891637802, 0.008974552154541016, -0.020924771204590797, -0.02244657278060913, 0.012045330367982388, -0.015041377395391464, -0.007378019858151674, -0.012704324908554554, -0.00014086430019233376, -0.03424053266644478, -0.013186682015657425, 0.033452458679676056, 0.0032304313499480486, -0.00040274238563142717, 0.02108781971037388, -0.009042490273714066, 0.005829043220728636, -0.01796269230544567, -0.024348823353648186, -0.002024539513513446, -0.00662051560357213, -0.01741919107735157, 0.009735452942550182, -0.019267093390226364, 0.0031726842280477285, -0.050056397914886475, 0.02642771415412426, -0.010937947779893875, -0.012568449601531029, -0.0036006909795105457, -0.016712641343474388, 0.028262028470635414, 0.02637336403131485, 0.020381269976496696, -0.0132546192035079, 0.03114258125424385, 0.0003598567855078727, -0.010734135285019875, -0.023873260244727135, -0.01763659156858921, -0.0010530322324484587, 0.005530118010938168, 0.0221476461738348, -0.036958035081624985, -0.003678819164633751, -0.03478403389453888, 0.028262028470635414, -0.0025544525124132633, 0.010387653484940529, -0.00776526378467679, -0.027990277856588364, 0.0032779874745756388, 0.01808498054742813, -0.0017035345081239939, 0.013696213252842426, 0.004667310975492001, -0.01794910430908203, -0.012819819152355194, 0.020802482962608337, 0.008349526673555374, -0.03953966498374939, 0.009850947186350822, -0.002027936279773712, -0.010149871930480003, 0.028452252969145775, -0.0034682126715779305, 0.009830566123127937, -0.008886233903467655, -0.0034512283746153116, 0.008505783043801785, 0.02167208306491375, 0.006304606329649687, 0.0181257426738739, 0.018682830035686493, -0.01070696022361517, 0.010516734793782234, -0.007778851315379143, 0.007486719638109207, -0.028887053951621056, 0.023098772391676903, 0.015666402876377106, -0.016522416844964027, 0.033153533935546875, -0.012738293968141079, 0.01779964193701744, -0.024702098220586777, -0.008390289731323719, 0.006127968430519104, 0.029213152825832367, -0.02644130028784275, -0.014525051228702068, -0.04046361520886421, -0.012174411676824093, 0.007031538058072329, -0.02222917228937149, -0.011440685950219631, 0.008403876796364784, 3.741873797480366e-06, 0.002153620822355151, 0.0077041201293468475, 0.0052515738643705845, 0.005367067642509937, -0.028153328225016594, -0.00036028141039423645, 0.004123810213059187, 0.009728659875690937, 0.028289202600717545, -0.0001782299659680575, -0.009307446889579296, -0.012140443548560143, 0.007996251806616783, -0.008831883780658245, -0.006501625292003155, -0.00108700105920434, 0.0009613165748305619, 0.01277226209640503, -0.007575038820505142, 0.01283340621739626, -0.01675340346992016, -0.002252130303531885, 0.01811215467751026, 0.006936425343155861, 0.012099680490791798, 0.019498081877827644, 0.0050307768397033215, -0.006090602837502956, 0.0004742891469504684, 0.013533162884414196, 0.020856833085417747, 0.02176719531416893, 0.009266683831810951, 0.0015948343789204955, 0.020843245089054108, -0.012235555797815323, -0.0003352294152136892, -0.004691089037805796, -0.03619713708758354, -0.0018631877610459924, 0.0019209346501156688, -0.023465635254979134, 0.014294063672423363, -0.028887053951621056, 0.0024185774382203817, 0.02126445807516575, 0.007140238303691149, 0.012004568241536617, 0.012201586738228798, 0.037854813039302826, -0.02175360918045044, 0.01554411556571722, 0.016087615862488747, 0.0023931008763611317, -0.007473132107406855, 0.0019481097115203738, -0.03193065524101257, -0.0008067585877142847, 0.041496265679597855, 0.015095727518200874, -0.019810594618320465, 0.0021162552293390036, 0.007147031836211681, 0.0035327535588294268, 0.0003509399830363691, -0.009191952645778656, -0.009830566123127937, -0.009606371633708477, -0.002693724585697055, -0.04024621471762657, -0.01097871083766222, 0.0017001376254484057, -0.014076664112508297, 0.013641863130033016, 0.007323669735342264, 0.007622594945132732, 0.024375999346375465, -0.016522416844964027, -0.02237863466143608, 0.009674309752881527, -0.03921356424689293, 0.050056397914886475, 0.005981902591884136, 0.007588626351207495, 0.02675381302833557, -0.005132683087140322, -0.009816978126764297, 0.010462385602295399, 0.00053628213936463, -0.0012959090527147055, 0.01766376756131649, 0.013872850686311722, -0.014756039716303349, -0.0029518872033804655, -0.029620779678225517, 0.03141433000564575, -0.010027584619820118, -0.018383905291557312, 0.013281794264912605, -0.004922076594084501, -0.01686210371553898, 0.0014394271420314908, -0.011304810643196106, -0.00859410222619772, 0.006800550501793623, 0.0017833610763773322, 0.0359797365963459, 0.013125537894666195, -0.0035225627943873405, -0.01724255457520485, 0.02178078331053257, 0.004633341915905476, 0.02676740102469921, 0.020489970222115517, -0.011529005132615566, -0.006053237244486809, -0.005241383332759142, -0.011834723874926567, 0.015992503613233566, -0.02127804607152939, 0.029593603685498238, -0.005632024258375168, -0.016033265739679337, 0.006892266217619181, -0.011943424120545387, -0.019267093390226364, -0.029022928327322006, -0.015666402876377106, 0.024933086708188057, -0.005995490122586489, -0.010564291849732399, -0.003114937338978052, -0.0009205540409311652, 0.004874520469456911, -0.008247620426118374, 0.0025561510119587183, -0.01760941743850708, 0.01101947296410799, 0.00554370554164052, 0.009490878321230412, 0.022772671654820442, -0.01071375422179699, -0.018587717786431313, 0.008777533657848835, 0.00039828396984376013, 0.027147851884365082, -0.01527236495167017, -0.003430847078561783, -0.01809856854379177, -0.013329350389540195, 0.010353685356676579, 0.00429705111309886, 0.013166300021111965, -0.000257101230090484, -0.003998125903308392, 0.002695422852411866, 0.018995342776179314, -0.006304606329649687, -0.00912401545792818, 0.01720179244875908, -0.02226993441581726, -0.018954580649733543, -0.0027208994142711163, -0.009402559138834476, 0.00010227788152405992, 0.01351957581937313, -0.00043012973037548363, -0.03163173049688339, -0.02603367529809475, 0.007683738600462675, 0.005632024258375168, -0.0005044364370405674, -0.028669653460383415, 0.00026049811276607215, -0.006491434294730425, 0.02619672566652298, -0.009769422002136707, -0.027473952621221542, 0.041088640689849854, -0.021169345825910568, 0.001384227885864675, 0.022555271163582802, 0.00021644483786076307, 0.012378224171698093, -0.011440685950219631, -0.023574335500597954, 0.0009613165748305619, -0.028098978102207184, -0.010442003607749939, -0.0211965199559927, 0.0066171190701425076, 0.0039437757804989815, -0.023370523005723953, -0.00450086360797286, -0.029050102457404137, -0.00642010010778904, -0.0018394095823168755, 0.004140794742852449, 0.015340302139520645, -0.006508418824523687, 0.023275410756468773, 0.006933028809726238, 0.012289905920624733, -0.009837359189987183, 0.005842630751430988, -0.027175026014447212, -0.008872645907104015, -0.03815373778343201, -0.023397697135806084, -0.013811707496643066, 0.02156338281929493, 0.009035696275532246, -0.005064745433628559, -0.03540905937552452, -0.03481120988726616, -0.050273798406124115, -0.022623209282755852, -0.0015566195361316204, -0.000482356728753075, 0.033289406448602676, -0.006990775465965271, 0.016372952610254288, 0.02703915163874626, -0.0001454288576496765, 0.037202611565589905, 0.005584468133747578, -0.02168567106127739, 0.010842835530638695, 0.023207472637295723, 0.011318398639559746, 0.004765820223838091, -0.020585082471370697, -0.014131014235317707, 0.0021858911495655775, 0.008410670794546604, -0.0001185722867376171, 0.004721660632640123, 0.0007965679396875203, -0.001953205093741417, -0.012819819152355194, 0.00028406394994817674, -0.0011914550559595227, 0.00858051422983408, 0.011250460520386696, -0.015761515125632286, -0.007378019858151674, -0.007316875737160444, 0.011630911380052567, -0.00912401545792818, 0.006990775465965271, 0.0076497700065374374, 0.007357638329267502, 0.020462794229388237, 0.014959852211177349, -0.002719201147556305, -0.003658437868580222, -0.03809938579797745, 0.012663562782108784, 0.004466895014047623, 0.008458226919174194, 0.01098550483584404, -0.014103839173913002, -0.019525256007909775, -0.02190307155251503, 0.02573475055396557, -0.0267130509018898, -0.012514099478721619, 0.00673261284828186, -0.004494070075452328, 0.011712436564266682, 0.012167617678642273, 0.0016729625640437007, -0.018275205045938492, 0.009137602522969246, 0.025313537567853928, -0.02176719531416893, -0.03206653147935867, 0.014878327026963234, 0.05223039910197258, -0.021182933822274208, -0.015938153490424156, -0.016169140115380287, -0.00532970204949379, -0.015938153490424156, -0.005808661691844463, -0.023683035746216774, -0.01756865531206131, 0.04693127050995827, 0.00657295947894454, -0.0057237399742007256, 0.015136489644646645, 0.01512290257960558, -0.0013086473336443305, -0.0181257426738739, 0.009640340693295002, 0.1884859800338745, 0.01701156608760357, 0.014294063672423363, 0.03010992892086506, -0.004884711001068354, -0.00663070660084486, 0.04100711643695831, -0.005679580383002758, -0.007588626351207495, 0.016101203858852386, -0.012249142862856388, -0.02161773294210434, 0.006875281687825918, 0.013499194756150246, 0.02549017407000065, -0.013900025747716427, -0.050898823887109756, -0.04780087247490883, -0.027759289368987083, 0.023954786360263824, -0.0015150076942518353, -0.009348209016025066, -0.02580268681049347, -0.022990072146058083, 0.006070221774280071, 0.010278954170644283, -0.014878327026963234, 0.01793551817536354, 0.012561655603349209, 0.0026037071365863085, -0.010625435039401054, 0.009212333709001541, -0.005125889554619789, -0.02165849693119526, -0.03799068555235863, -0.011780373752117157, 0.014728864654898643, -0.003065682714805007, -0.0029552842024713755, 0.007276113145053387, 0.04051796346902847, -0.03179478272795677, -0.03217523172497749, -0.02703915163874626, -0.0006611174321733415, 0.0532902255654335, 0.0003908532962668687, 0.003342528361827135, 0.0014411256415769458, -0.019199157133698463, -0.006858297158032656, -0.01292851846665144, 0.018370317295193672, 0.01769094169139862, 0.02667228877544403, -0.00532970204949379, -0.028017451986670494, 0.016834929585456848, 0.0211965199559927, 0.011637705378234386, -0.027079913765192032, 0.006212890613824129, -0.016128377988934517, 0.015027789399027824, -0.016440890729427338, 0.014796801842749119, 0.0004993411130271852, -0.014131014235317707, 0.018682830035686493, -0.0333981066942215, 0.0026257869321852922, -0.03013710491359234, 0.005879996344447136, 0.032012179493904114, 0.018669243901968002, -0.0018648861441761255, 0.009151190519332886, 0.019144807010889053, 0.009803391061723232, 0.027881577610969543, -0.02167208306491375, -0.025041786953806877, 0.01740560494363308, -0.02709350176155567, -0.014266888611018658, -0.01527236495167017, 0.0028805527836084366, -0.00896775908768177, 0.011413510888814926, -0.0048643299378454685, -0.020489970222115517, -0.029349029064178467, -0.00323212961666286, 0.006983981933444738, 0.011311604641377926, 0.014144601300358772, 0.012452956289052963, -0.0171746164560318, -0.00771091366186738, 0.0068107410334050655, -0.037148259580135345, 0.08380778133869171, 0.011542592197656631, -0.019633956253528595, 0.004684295039623976, 0.003383290721103549, -0.02145468257367611, -0.01512290257960558, 0.006403115577995777, -0.029349029064178467, 0.008234033361077309, -0.03111540526151657, -0.0007880757912062109, 0.006715628318488598, -0.0009341415134258568, 0.005771296098828316, 0.013967963866889477, -0.011624117381870747, 0.010462385602295399, 0.02149544656276703, 0.0005834138719365001, 0.009144396521151066, 0.013866057619452477, 0.0057271369732916355, 0.009660721756517887, -0.0128469942137599, -0.008220445364713669, -0.004150985274463892, -0.004969633184373379, -0.0224873349070549, 0.016359366476535797, -0.005312717519700527, 0.009409353137016296, -0.006379337515681982, 0.00849219597876072, 0.009905297309160233, 0.0063351779244840145, -0.014063076116144657, 0.00537725817412138, 0.02562605030834675, 0.0012908137869089842, 0.007126650772988796, -0.007921520620584488, 0.005632024258375168, 0.0016958914930000901, -0.01687569171190262, -0.0007006061496213078, -0.025313537567853928, 0.01782681792974472, -0.021291634067893028, -0.013431256636977196, -0.01554411556571722, -0.009783009998500347, 0.010292541235685349, -0.015870215371251106, -0.012806231155991554, -0.007778851315379143, -0.04709432274103165, 0.004283463582396507, 0.001161732361651957, -0.03576233610510826, 0.004269876051694155, -0.02145468257367611, 0.001136255799792707, -0.0021604145877063274, -0.0006827725446783006, -0.17272447049617767, 0.004494070075452328, 0.0217400211840868, -0.022555271163582802, 0.018669243901968002, 0.0034953877329826355, 0.018723594024777412, 0.001393569284118712, -0.03500143438577652, 0.006610325071960688, -0.003238923382014036, 0.0036652316339313984, -0.024539049714803696, -0.02983817830681801, -0.013981550931930542, -0.016671879217028618, -0.00429365411400795, 0.0175822414457798, -0.010047965683043003, 0.009280271828174591, 0.02703915163874626, -0.028669653460383415, 0.0025119914207607508, -0.015693577006459236, -0.0029332044068723917, -0.016780579462647438, 0.009456909261643887, 0.02592497505247593, -0.010183840990066528, -0.0036924066953361034, 0.005550499074161053, -0.005462180357426405, 0.0015396351227536798, 0.0007316026603803039, 0.009164777584373951, 0.005367067642509937, -0.014538639225065708, -0.008465020917356014, -0.01807139255106449, 0.013641863130033016, -0.0070111569948494434, 0.023343347012996674, -0.0018156314035877585, -0.0054723708890378475, -0.0019667926244437695, -0.0014360302593559027, 0.019878532737493515, -0.019348619505763054, -0.0038724413607269526, -0.0038520600646734238, -0.004120413213968277, -0.025177661329507828, 0.006858297158032656, 0.004850742407143116, 0.012690736912190914, 0.007214969489723444, -0.011841517873108387, -0.005604849196970463, 0.003067381214350462, -0.00852616410702467, 0.010217810049653053, -0.015095727518200874, 0.02209329605102539, -0.0009808485629037023, -0.016318602487444878, -0.05271955206990242, -0.02130522020161152, -0.008471814915537834, -0.024865148589015007, 0.0007018799660727382, 0.006440481171011925, -0.03592538461089134, -0.004799789283424616, -0.009205540642142296, 0.01081566046923399, 0.0012738293735310435, -0.02621031366288662, -0.019715482369065285, 0.0087911207228899, -0.016481652855873108, -0.041740842163562775, 0.029865354299545288, -0.023723797872662544, -0.00906966533511877, -0.014932677149772644, 0.011433891952037811, 0.008261208422482014, 0.007466338574886322, 0.0017918533412739635, 0.0063623529858887196, -0.015353890135884285, -0.01782681792974472, -0.01835673116147518, -0.028098978102207184, 0.0036278660409152508, 0.018818706274032593, 0.020788894966244698, 0.0035938972141593695, -0.014769626781344414, 0.016671879217028618, 0.00641670310869813, -0.03568080812692642, -0.013505987823009491, 0.0046129608526825905, 0.020163869485259056, -0.02157697081565857, -0.024742862209677696, 0.007826407440006733, 0.02684892527759075, -0.0084854019805789, -0.021128583699464798, 0.011726023629307747, 0.020408444106578827, -0.014294063672423363, 0.01775887981057167, 0.023914024233818054, -0.013872850686311722, -0.027596239000558853, 0.0003957363369408995, 0.04771934822201729, 0.03932226449251175, -0.005414624232798815, 0.0072557320818305016, 0.014552226290106773, 0.004820170346647501, -0.024104248732328415, -0.08744923770427704, -0.006161937024444342, -0.0012891152873635292, 0.0259657371789217, -0.018710006028413773, 0.01673981547355652, -0.01774529181420803, -0.007778851315379143, 0.008933790028095245, 0.020245395600795746, 0.0015778499655425549, -0.01071375422179699, -0.015394652262330055, -0.015734340995550156, 0.002031333278864622, -0.01536747720092535, -0.0028550762217491865, -0.004650326445698738, -0.020177457481622696, 0.03614278510212898, 0.004956045653671026, -0.013879644684493542, -0.018614893779158592, -0.0344851091504097, -0.012860581278800964, -0.008329145610332489, -0.03002840466797352, 0.019810594618320465, 0.0021875896491110325, -0.006284224800765514, -0.008471814915537834, 0.009660721756517887, -0.0226911474019289, 0.02186230942606926, -0.04111581668257713, 0.002343846019357443, -0.0016534305177628994, -0.019919294863939285, 0.014239713549613953, -0.019443731755018234, 0.0037467568181455135, 0.00889982096850872, -0.0037399630527943373, -0.019864944741129875, 0.010842835530638695, -0.011977393180131912, -0.024253711104393005, 0.04929549619555473, -0.0036278660409152508, -0.00776526378467679, -0.011467861011624336, 0.0226911474019289, -0.01324782520532608, -0.03135998174548149, 0.024036310613155365, -0.0070111569948494434, -0.015775103121995926, -0.0013663943391293287, -0.03589820861816406, 0.03616996109485626, -0.02608802542090416, -0.0035429440904408693, -0.019905706867575645, 0.015829453244805336, 0.0006853201775811613, 0.019498081877827644, 0.010788485407829285, 0.0016789070796221495, 0.020897595211863518, -0.01320026908069849, 0.0012610910926014185, -0.0018818705575540662, -0.014389176853001118, 0.006348765455186367, -0.014620164409279823, 0.00559126166626811, -0.01501420233398676, -0.008050601929426193, 0.005142873618751764, -0.020924771204590797, -0.007017950527369976, -0.013927200809121132, -0.024077072739601135, -0.019036106765270233, 0.010802073404192924, 0.03076213039457798, 0.0007375471759587526, 0.012914931401610374, 0.019158393144607544, -0.01777246780693531, 0.02190307155251503, 0.01710667833685875, 0.02582986280322075, 0.0005685525247827172, -0.019797006621956825, 0.010054759681224823, 0.021006295457482338, -0.00543840229511261, 0.0021706053521484137, 0.010312922298908234, -0.0434800423681736, 0.008315558545291424, -0.05989375710487366, 0.037746112793684006, -0.012731499969959259, -0.02131880819797516, -0.011365954764187336, -0.0026308821979910135, -0.013227444142103195, -0.008179683238267899, -0.024933086708188057, 0.02180795930325985, -0.0363873615860939, 0.012242349795997143, 0.008172889240086079, -0.0044159418903291225, -0.005778090097010136, -0.003118334338068962, 0.01811215467751026, 0.011970599181950092, 0.001220328500494361, 0.010251779109239578, 0.0029620779678225517, -0.019239919260144234, 0.00905607733875513, -0.00167041493114084, 0.007364432327449322, 0.003412164282053709, 0.010007203556597233, 0.0009842454455792904, -0.020639432594180107, 0.005244780331850052, 0.02683533914387226, -0.005078332964330912, 0.0017035345081239939, 0.02635977603495121, -0.003021523356437683, 0.002501800889149308, -0.01703874208033085, 0.012072505429387093, 0.011427098885178566, 0.003634659806266427, -0.01729690469801426, -0.019987231120467186, 0.019239919260144234, -0.016468066722154617, 0.004150985274463892, 0.011651292443275452, -0.02602008730173111, -0.002987554529681802, 0.005757708568125963, 0.01358071994036436, 0.04453986883163452, 0.011610530316829681, -0.0002923438441939652, -0.02638695016503334, 0.015516940504312515, -0.012548068538308144, 0.002644469728693366, -0.02157697081565857, 0.000926498556509614, -0.03948531299829483, 0.05296412482857704, -0.012031743302941322, -0.0033985767513513565, -0.018275205045938492, 0.008573721162974834, -0.007738088723272085, -0.005944536998867989, 0.019008930772542953, -0.0086892144754529, -0.009253096766769886, -0.01809856854379177, -0.006216287147253752, 0.013689419254660606, 0.03062625415623188, 0.016427302733063698, 0.010618641972541809, -0.0024831180926412344, 0.004205335397273302, 0.004317432176321745, 0.008349526673555374, 0.03478403389453888, -0.002150224056094885, -0.002301385160535574, 0.0033459251280874014, 0.025530938059091568, 0.011644498445093632, -0.016169140115380287, 0.022555271163582802, 0.003950569313019514, 0.002894140314310789, -0.012602418661117554, 0.02165849693119526, 0.006851503625512123, 0.004660516977310181, -0.016889279708266258, -0.00890661496669054, -0.028887053951621056, -0.0009129110258072615, 0.003957363311201334, -0.000505285628605634, 0.004606166854500771, 0.010177046991884708, 0.0012644879752770066, -0.0063351779244840145, -0.03581668436527252, 0.03815373778343201, -0.0355721078813076, -0.06402435898780823, 0.0008373305317945778, 0.03008275479078293, 0.007133444305509329, 0.02182154543697834, 0.03644170984625816, 0.0106661980971694, -0.036849334836006165, 0.007126650772988796, 0.0009358399547636509, 0.006885472219437361, -0.01331576332449913, 0.011053442023694515, -0.0003224911342840642, 0.006015871651470661, 0.04853459820151329, 0.0029960465617477894, 0.014565814286470413, -0.000997832976281643, 0.03616996109485626, -0.041034288704395294, 0.016780579462647438, 0.02622389979660511, -0.02619672566652298, 0.023669447749853134, 0.0030554919503629208, -0.011882279999554157, -0.01113496720790863, -0.013859263621270657, 0.007371225859969854, 0.008349526673555374, 0.008084570057690144, 0.0770140215754509, 0.005550499074161053, -0.024715686216950417, 0.023560747504234314, -0.015571290627121925, 0.0015897389966994524, 0.011515417136251926, -0.015897391363978386, -0.0128469942137599, -0.0008916805381886661, 0.02198459580540657, 0.01093115471303463, 0.004436322953552008, -0.005818852689117193, -0.03842548653483391, -0.009545228444039822, 0.02103346958756447, 0.03030015528202057, 0.013573925942182541, 0.006481243763118982, 0.03062625415623188, 0.009375384077429771, 0.011107792146503925, -0.02216123417019844, -0.01512290257960558, -0.021074233576655388, 0.0344851091504097, -0.03646888583898544, -0.03644170984625816, -0.012242349795997143, 0.032474156469106674, 0.021019883453845978, -0.020272569730877876, -0.036849334836006165, -0.012052124366164207, 0.02188948355615139, -0.003357814159244299, 0.006229874677956104, -0.020000819116830826, -0.0024185774382203817, 0.009653927758336067, -0.03858853876590729, 0.0013961170334368944, -0.014565814286470413, -0.013376906514167786, 0.006389528047293425, -0.0001351320679532364, -0.0015973820118233562, -0.011936630122363567], "7a9c5d00-cd62-4a4e-9607-bd6caef08515": [-0.00960407592356205, 0.018927056342363358, -0.019141223281621933, -0.03338336572051048, -0.01622319035232067, 0.021363211795687675, -0.025325311347842216, -0.011451270431280136, -0.002173465909436345, -0.021389983594417572, 0.021858474239706993, 0.03167002648115158, -0.017481425777077675, 0.014790945686399937, -0.011946532875299454, 0.015620844438672066, 0.022407278418540955, -0.005953188519924879, 0.006960445083677769, -0.025633176788687706, 0.007388779893517494, -0.00022190601157490164, -0.04393111541867256, -0.012354790233075619, -0.0028009098023176193, 0.015701157972216606, 0.017668822780251503, -0.03134877234697342, 0.022487591952085495, -0.00041515874909237027, 0.020439613610506058, 0.0011076477821916342, -0.03879109397530556, -0.009162355214357376, -0.015165738761425018, -0.0384163036942482, -0.0013803767506033182, -0.02378598228096962, 0.0010549424914643168, -0.029367724433541298, 0.0079911258071661, -0.002837719861418009, -0.004574484657496214, -0.010253271088004112, 0.0059431493282318115, 0.011645359918475151, 0.019101066514849663, -0.031910963356494904, -0.010567829012870789, 0.02037268690764904, 0.021323055028915405, 0.03619431331753731, -0.010935929603874683, 0.008573394268751144, -0.02231357991695404, -0.019154610112309456, -0.008084824308753014, 0.026650473475456238, -0.030331477522850037, 0.003430027049034834, -0.004698300268501043, 0.0009336366201750934, -0.011464656330645084, -0.007428936660289764, -0.025673333555459976, -0.012943750247359276, -0.00724823260679841, 0.008352533914148808, -0.018244396895170212, -0.013064219616353512, 0.03627462685108185, -0.0005496409139595926, 0.02270175889134407, 0.012702812440693378, 0.014201984740793705, -0.024508798494935036, -0.010641449131071568, -0.019101066514849663, 0.006133892107754946, -0.01959632895886898, 0.02211279794573784, -0.010875695385038853, -0.004517596680670977, -0.002646976849064231, 0.0060903895646333694, 0.004320160951465368, 0.014255526475608349, 0.030518874526023865, -0.02781500853598118, -0.023491501808166504, -0.016397202387452126, 0.021563993766903877, 0.00742224371060729, 0.024348171427845955, -0.023076552897691727, 0.029474807903170586, 0.011317416094243526, 0.018913671374320984, -0.009858399629592896, -0.007562790997326374, 0.02805594727396965, 0.01238156110048294, -0.011839449405670166, -0.010594600811600685, -0.018525492399930954, -0.020319145172834396, 0.01951601728796959, -0.007536020129919052, 0.002991652814671397, 0.013867348432540894, -0.0036776582710444927, 0.029314182698726654, 0.0037312000058591366, -0.05921732261776924, 0.02386629581451416, -0.026596931740641594, 0.000452596228569746, -0.024067077785730362, -0.021952172741293907, 0.0035438034683465958, 0.0009428391349501908, -0.0010775304399430752, 0.001243175589479506, -0.008298992179334164, 0.021162429824471474, 0.014817716553807259, 0.0246024951338768, -0.0008508139871992171, -0.04168235883116722, -0.020466385409235954, 0.005257143639028072, 0.02744021639227867, 0.0036140771117061377, -0.0007646450540050864, -0.026181980967521667, 0.009657617658376694, -0.022688373923301697, 0.002568337367847562, -0.02813626080751419, -0.03515024855732918, 0.016156263649463654, 0.027734696865081787, -0.019542787224054337, -0.015768084675073624, -0.0033463677391409874, 0.000588960712775588, 0.009758008643984795, -0.026744171977043152, 0.021470295265316963, -0.016089336946606636, -0.01212723646312952, -0.01102293562144041, -0.0011076477821916342, -0.0009553880081512034, -0.005514814052730799, -0.0008294809376820922, -0.00596657395362854, 0.014268912374973297, 0.013044141232967377, -0.006344713270664215, 0.009711159393191338, 0.024308014661073685, -0.002419424010440707, 0.018927056342363358, 0.0006027644849382341, 0.03014408051967621, 0.012682734057307243, -0.0053976913914084435, -0.01994435116648674, -0.005196908954530954, -0.0032894795294851065, 0.0341329500079155, -0.04350278154015541, 0.01645074412226677, -0.02126951329410076, 0.004708339460194111, 0.015647616237401962, 0.013706722296774387, -0.02378598228096962, -0.015848398208618164, 0.023719055578112602, -0.0224608201533556, 0.014643705449998379, 0.05008843168616295, -0.031723566353321075, -0.010407203808426857, 0.018137313425540924, -4.232632272760384e-05, 0.005551624111831188, -0.002390979789197445, 0.0006123852799646556, 0.021778160706162453, 0.03132200241088867, -0.0031606443226337433, -0.6240842342376709, -0.015138967894017696, -0.01839163713157177, -0.04730425402522087, -0.002650323323905468, 0.0010290080681443214, 0.007803729735314846, -0.00010619489330565557, -0.025927657261490822, 0.038389530032873154, -0.0319645032286644, 0.009898555465042591, -0.007636411115527153, -0.014951570890843868, -0.012856745161116123, -0.01765543594956398, -0.006220897659659386, -0.02658354490995407, -0.01932862028479576, 0.006234283093363047, -0.014523236081004143, 0.023023011162877083, -0.0051567526534199715, 0.011578432284295559, 0.0005257980665192008, -0.029207097366452217, 0.017160173505544662, -0.011765829287469387, 0.008178522810339928, 0.014911415055394173, -0.05284583941102028, 0.0028176417108625174, 0.013278387486934662, -0.0017819408094510436, 0.029983455315232277, 0.023237178102135658, -0.0005948168691247702, -0.007636411115527153, 0.019275078549981117, 0.02731974609196186, -0.031643252819776535, -0.02258129045367241, 0.02204587124288082, 0.011698901653289795, 0.006836629472672939, -0.011625281535089016, 0.022808842360973358, 0.014054744504392147, -0.001960971625521779, -0.010293426923453808, -0.02173800580203533, 0.013626409694552422, 0.03298180177807808, -0.0009185779490508139, 0.003911904059350491, -0.010735147632658482, 0.020131748169660568, 0.009965483099222183, 0.004233155399560928, 0.0027406751178205013, 0.02670401521027088, 0.014188599772751331, 0.010956007987260818, -0.0224608201533556, -0.009791471995413303, -0.017173560336232185, 0.002200236776843667, -0.0038918256759643555, 0.042083922773599625, 0.004410512745380402, -0.020278988406062126, 0.031910963356494904, -0.004112686030566692, -0.05126635357737541, 0.0035270715598016977, 0.012789817526936531, 0.025700105354189873, 0.004069183021783829, 0.01955617405474186, 0.02208602800965309, 0.037773799151182175, -0.03373138606548309, -0.01171898003667593, -0.0016188054578378797, 0.03410618007183075, -0.026396149769425392, -0.03092043846845627, 0.001360298483632505, 0.006900210399180651, 0.008218679577112198, -0.009182433597743511, 0.04781290143728256, -0.016825538128614426, -0.03488253802061081, -0.02204587124288082, 0.0026051474269479513, -0.0006588161340914667, 0.004320160951465368, -0.005551624111831188, 0.0021517144050449133, -0.01788298971951008, -0.018645960837602615, -0.006599037442356348, -0.012428410351276398, 0.03884463757276535, 0.001957625150680542, -0.021550608798861504, -0.0072080763056874275, 0.03512347489595413, -0.01792314648628235, 0.0015903612365946174, -0.00925605371594429, -0.00785727147012949, 0.019074296578764915, 0.021256128326058388, -0.01673183962702751, 0.02487020567059517, -0.002116577699780464, 0.011665438301861286, -0.00910212006419897, 0.007308467291295528, 0.01769559271633625, -0.0008386834524571896, 0.012796510010957718, 0.0005559153505600989, 0.02394660748541355, 0.01649090088903904, -0.010367047041654587, -0.011785907670855522, -0.007977740839123726, 0.008506466634571552, -0.008058053441345692, 0.02507098764181137, -0.008640321902930737, 0.020118363201618195, 0.02832365781068802, 0.028350427746772766, -0.006900210399180651, 0.03239284083247185, -0.03737223520874977, -0.004400473553687334, -6.708422006340697e-05, 0.016169648617506027, 0.013271695002913475, -0.004397127311676741, -0.02746698632836342, -0.027948863804340363, -0.028698449954390526, -0.01986403949558735, 8.256116416305304e-05, 0.011404421180486679, 0.020185289904475212, -0.01057452242821455, -0.015125581994652748, 0.006552188191562891, -0.008225372061133385, -0.0012615806190297008, -0.019101066514849663, -0.023411188274621964, -0.0010432301787659526, 0.0026620356366038322, 0.002892934950068593, -0.02088133431971073, -0.0006893517565913498, -0.045109037309885025, -0.03472191095352173, 0.008439539931714535, 0.012816588394343853, -0.0016154590994119644, -0.04020995646715164, 0.013184688985347748, -0.0004793671832885593, -0.013880733400583267, 0.0035203788429498672, 0.010306812822818756, 0.006157316733151674, -0.006508685182780027, -0.001979376655071974, -0.0033848509192466736, -0.009376522153615952, -0.012769739143550396, -0.0026787673123180866, 0.004029026720672846, -0.007877349853515625, 0.013760264031589031, 0.015085426159203053, 0.02781500853598118, 0.00045134135871194303, -0.015125581994652748, 0.01602240838110447, 0.03193773329257965, 0.012254399247467518, 0.006940366700291634, 0.016249962151050568, 0.008620243519544601, 0.018953826278448105, -0.0183514803647995, 0.00640160171315074, 0.04998134821653366, 0.014108286239206791, 0.043904345482587814, 0.020038049668073654, -0.014014588668942451, -0.024629266932606697, 0.019930966198444366, -0.021430138498544693, 0.0024411752820014954, -0.011973303742706776, 0.025833958759903908, 0.018364867195487022, 0.016156263649463654, 0.003982177469879389, -0.033972326666116714, -0.02386629581451416, 0.019154610112309456, 0.015433448366820812, 0.00582937290892005, -0.0039252894930541515, 0.0019241614500060678, 0.012669348157942295, -0.006210858467966318, 0.002165100071579218, 0.026315836235880852, -0.007228154223412275, -0.004748495761305094, 0.01008595246821642, 0.012829974293708801, -0.0037747027818113565, 0.01955617405474186, -0.021563993766903877, -0.014710633084177971, -0.006789780221879482, 0.030277935788035393, -0.010815460234880447, 0.01355948206037283, 0.012522107921540737, 0.03373138606548309, -0.022567903622984886, 0.03046533279120922, -0.02243405021727085, 0.008258835412561893, 0.013432320207357407, -0.008747405372560024, -0.019703414291143417, 0.015821626409888268, -0.016075950115919113, 0.023692283779382706, 0.00544119393453002, 0.000711521424818784, 0.009242667816579342, -0.02006482146680355, 0.017414497211575508, -0.0166113693267107, -0.0033881973940879107, 0.01738772727549076, -0.0023324184585362673, 0.013358700089156628, 0.01974356919527054, 0.0019526055548340082, 0.027226047590374947, 0.023919837549328804, -0.027654383331537247, 0.011712287552654743, 0.008800947107374668, 0.02192540094256401, -0.0017534967046231031, 0.01626334711909294, -0.029555119574069977, -0.017749134451150894, 0.01276304665952921, -0.006331327836960554, -0.028725221753120422, 0.0060301548801362514, -0.0012833320070058107, -0.00016710924683138728, 0.005066400859504938, -0.015152353793382645, -0.0014247160870581865, 0.007469092961400747, 0.032339297235012054, -0.020586853846907616, -0.010935929603874683, 0.00017223336908500642, 0.02448202669620514, 0.014322454109787941, 0.01195322535932064, -0.02386629581451416, 0.0033497142139822245, 0.01238156110048294, 0.02417416125535965, 0.003533764276653528, -0.007449014578014612, 0.0028728567995131016, -0.0071478416211903095, 0.007964354939758778, -0.008446232415735722, 0.026757556945085526, -0.029635433107614517, -0.006341367028653622, 0.003396563231945038, 0.0013067566324025393, -0.021671077236533165, -0.012997292913496494, -0.0010106030385941267, 0.05126635357737541, -0.014054744504392147, 0.012194164097309113, -0.02867168001830578, -0.013184688985347748, -0.02754729986190796, -0.005772484466433525, 0.002866164082661271, -0.03825567662715912, -0.028511052951216698, 0.017334185540676117, -0.015901939943432808, -0.013412241823971272, 0.007442322093993425, 0.019355392083525658, -0.015661001205444336, 0.01587516814470291, -0.00807143934071064, -0.002836046740412712, -0.011692209169268608, 0.05600481107831001, 0.019007369875907898, -0.0267709419131279, 0.010621371679008007, -0.015594073571264744, -0.014148443005979061, -0.0072549255564808846, -0.03472191095352173, 0.00910212006419897, 0.01804361492395401, 0.0005023734411224723, -0.012655963189899921, 0.018538877367973328, -0.0028176417108625174, 0.010213114321231842, 0.001387906027957797, -0.00033003551652655005, -0.01649090088903904, -0.030947208404541016, -0.033892013132572174, 0.039995789527893066, -0.024669423699378967, 0.02262144535779953, 0.025740260258316994, 0.007241539657115936, -0.01955617405474186, 0.06275109201669693, 0.022808842360973358, -0.010889080353081226, -0.0230899378657341, -0.012287862598896027, 0.02106873132288456, 0.004169574473053217, 0.032821174710989, 0.0052772220224142075, 0.013191381469368935, 0.022594675421714783, -0.0053374567069113255, 0.025820573791861534, 0.0020764211658388376, 0.019114453345537186, 0.006759663112461567, 0.015527146868407726, 0.00925605371594429, 0.009958790615200996, -0.003681004513055086, -0.04071860387921333, 0.00619078055024147, -0.021952172741293907, -0.008446232415735722, -0.01675860956311226, -0.003844976658001542, -0.020894721150398254, -0.013539403676986694, 0.03290148824453354, 0.002004474401473999, 0.015326364897191525, 0.005407730117440224, -0.008285606279969215, -0.023451345041394234, -0.015205895528197289, -0.011498119682073593, 0.005287261214107275, -0.0033179237507283688, -0.0033798315562307835, -0.0017986727179959416, -0.034748684614896774, -0.005959881003946066, -0.03964776545763016, 0.007723416667431593, -0.00977808702737093, -0.008359226398169994, -0.020867949351668358, -0.012087080627679825, 0.030759813264012337, 0.009818242862820625, 0.02215295471251011, -0.004892389755696058, 0.021711234003305435, -0.005538238678127527, -0.024575725197792053, -0.008760791271924973, -0.026530003175139427, -0.014764174818992615, -0.016357045620679855, -0.00987178459763527, -0.04642081260681152, 0.0016748571069911122, -0.027868550270795822, 0.022795457392930984, -0.0008901338442228734, 0.019154610112309456, -0.004541021306067705, -0.026757556945085526, 0.019449088722467422, 0.022608060389757156, 0.01971679925918579, 0.019382162019610405, 0.000757952278945595, -0.018967213109135628, -0.029849600046873093, 0.01484448742121458, 4.6038701839279383e-05, -0.03884463757276535, -0.0009486952912993729, -0.007034065201878548, -0.0035404572263360023, 0.04160204529762268, -0.010614678263664246, 0.008111595176160336, -0.000766318233218044, -0.00917574018239975, 0.015567302703857422, 0.015205895528197289, 0.005089825484901667, 0.01710663177073002, -0.003396563231945038, -0.016290118917822838, 0.013840577565133572, -0.013372085988521576, -0.0051433672197163105, -0.02417416125535965, 0.00039759030914865434, 0.008211986161768436, -0.027574069797992706, 0.014094901271164417, -0.014175213873386383, 0.008178522810339928, -0.023759210482239723, -0.007616333197802305, -9.976358705898747e-05, 0.030063768848776817, -0.027306361123919487, 0.018405022099614143, -0.055041056126356125, 0.0021968905348330736, -0.016383817419409752, -0.0067094676196575165, -0.017521582543849945, 0.00781711470335722, 0.010795382782816887, -0.0003708193835336715, -0.00022148771677166224, 0.008198601193726063, -0.006749623920768499, -0.030010227113962173, 0.00894149485975504, 0.022982854396104813, 0.00048647820949554443, 0.019502632319927216, 0.00566540053114295, -0.013746879063546658, -0.00197435705922544, 0.0010683279251679778, -0.012435102835297585, -0.002641957253217697, -0.0029849600978195667, 0.0011954898945987225, 0.017949916422367096, 0.008680477738380432, 0.018190855160355568, -0.012421716935932636, 0.008385997265577316, 0.022728530690073967, 0.0070876069366931915, 0.01084892451763153, 0.030893666669726372, 0.009095427580177784, -0.014991727657616138, 0.0065889982506632805, 0.012796510010957718, 0.019877424463629723, 0.019489245489239693, -0.005605165846645832, 0.004688261076807976, 0.04781290143728256, 0.00803128257393837, -0.00724823260679841, 0.004912468139082193, -0.021510452032089233, 0.011457962915301323, 0.0020546698942780495, -0.00872732698917389, 0.008185215294361115, -0.02200571447610855, -0.0014004549011588097, 0.025833958759903908, 0.006806511897593737, 0.01765543594956398, 0.006251015234738588, 0.03536441549658775, -6.671821029158309e-05, -0.0009537148289382458, 0.011277259327471256, -0.004577830899506807, -0.00807143934071064, 0.01695939153432846, -0.03132200241088867, 0.005504774861037731, 0.015112197026610374, 0.00042415212374180555, -0.008667092770338058, -0.003824898274615407, 0.00011576341057661921, 0.004015641286969185, 0.008185215294361115, -0.013813805766403675, -0.014817716553807259, 0.008513160049915314, -0.0017166866455227137, -0.02145691029727459, -0.004858925938606262, -0.003978831227868795, -0.008948187343776226, -0.011237102560698986, 0.020573468878865242, 0.008265528827905655, 0.029287410899996758, -0.003369792364537716, -0.01873965933918953, 0.003296172246336937, -0.0269717238843441, 0.059859827160835266, 0.0031121219508349895, 0.007388779893517494, 0.03022439405322075, 0.008439539931714535, -0.018364867195487022, 0.018538877367973328, 0.0085198525339365, -0.0007111031445674598, 0.023879680782556534, 0.0375596322119236, -0.007890734821557999, -0.009376522153615952, -0.02521822787821293, 0.01710663177073002, -0.007930891588330269, -0.02243405021727085, 0.011598510667681694, 0.029474807903170586, 0.0038516693748533726, -0.0010348642244935036, -0.013265001587569714, -0.01210715901106596, 0.005953188519924879, 0.001136928447522223, 0.02883230522274971, 0.008064745925366879, 0.009088735096156597, -0.02848428301513195, 0.02987637184560299, 0.016075950115919113, 0.005059707909822464, 0.015446833334863186, 0.010654835030436516, -0.01706647500395775, -0.009269438683986664, -0.027868550270795822, 0.015460219234228134, -0.027841780334711075, 0.028377199545502663, -0.026677243411540985, -0.03739900514483452, 0.0039252894930541515, 0.0026185328606516123, -0.006164009682834148, -0.006655925419181585, -0.03092043846845627, 0.02343796007335186, -0.00983832124620676, -0.014938185922801495, -0.005618551280349493, -0.005253797397017479, 0.005832719150930643, -0.0015117216389626265, -0.010179650969803333, 0.0007240703562274575, 0.010474131442606449, 0.002646976849064231, 0.015500376001000404, 0.037318695336580276, 0.009570611640810966, -0.010594600811600685, 0.006816551089286804, 0.0012498684227466583, 0.026141824200749397, -0.035016391426324844, -0.004939239006489515, -0.022219881415367126, -3.7646636883437168e-06, 0.012542186304926872, 0.00724823260679841, 0.0358462929725647, -0.0014740750193595886, 0.008211986161768436, -0.006993908900767565, 0.019355392083525658, 0.0032108398154377937, -0.002909666858613491, 0.021871859207749367, -0.008359226398169994, -0.016638141125440598, 0.0033898705150932074, -0.00830568466335535, -0.015620844438672066, 0.023263948038220406, -0.006632500793784857, -0.026650473475456238, -0.012816588394343853, 0.017253872007131577, 0.008774176239967346, 0.010380432941019535, -0.041066624224185944, 0.007696645800024271, -0.02145691029727459, 0.036033689975738525, -0.008426154032349586, -0.025097757577896118, 0.03351721912622452, -0.01488464418798685, 0.021282898262143135, 0.02580718882381916, -0.008365919813513756, 0.024107232689857483, -0.005558317061513662, 0.0071746124885976315, -0.016075950115919113, -0.010025718249380589, -0.02313009463250637, -0.01523266639560461, -0.01587516814470291, 0.028859075158834457, -0.010326891206204891, -0.016986163333058357, -0.029153555631637573, 0.0009127217927016318, -0.005832719150930643, -0.004879004321992397, 0.02296946756541729, -0.006786433979868889, 0.020975032821297646, 0.0073419311083853245, 0.02355842851102352, -0.014991727657616138, -0.003127180738374591, -0.022407278418540955, -0.012120543979108334, -0.034079410135746, -0.03100075200200081, -0.007127763237804174, 0.008613551035523415, 0.010554444044828415, 0.014242141507565975, -0.026128439232707024, -0.023799367249011993, -0.047277484089136124, -0.01990419626235962, 0.006732891779392958, -0.0006596527528017759, 0.026864640414714813, 0.020238831639289856, -0.005193562712520361, 0.04791998490691185, 0.013418935239315033, 0.03506993502378464, -0.023545043542981148, -0.02689141221344471, 0.009088735096156597, 0.00223537371493876, -0.00987178459763527, -0.0003384014416951686, -0.0168389230966568, -0.01932862028479576, 0.010019024834036827, -0.01433584000915289, 0.01571454294025898, 0.023290719836950302, 0.0035739208105951548, -0.013961046002805233, 0.0022922619245946407, 0.005675439722836018, -0.0011603530729189515, 0.01144457794725895, 0.01765543594956398, -0.012950443662703037, 0.0005722288624383509, -0.001223933999426663, 0.010447360575199127, -0.005227026529610157, 0.010514287278056145, -0.016624754294753075, 0.0015727928839623928, 0.011712287552654743, 0.011183560825884342, -0.010313505306839943, -0.014576777815818787, -0.026744171977043152, 0.010976086370646954, 0.011672130785882473, 0.014697247184813023, 0.015968866646289825, -0.00927613116800785, -0.017173560336232185, -0.012060309760272503, 0.02370566874742508, -0.026248909533023834, -0.007013986818492413, 0.022875770926475525, -0.002794217085465789, 0.019770340994000435, -0.004293390084058046, 0.0017384380334988236, -0.026837870478630066, 0.011886298656463623, 0.03046533279120922, -0.01241502445191145, -0.030893666669726372, 0.01781606115400791, 0.050115205347537994, -0.02685125544667244, -0.016209805384278297, -0.023611970245838165, 0.0057155960239470005, -0.015901939943432808, -0.01193314790725708, -0.02654339000582695, -0.011819371022284031, 0.03357076272368431, 0.005812640767544508, -0.011163483373820782, 0.013191381469368935, 0.01808377169072628, 0.007696645800024271, -0.03512347489595413, -0.020653782412409782, 0.19018077850341797, -0.0025800494477152824, 0.01649090088903904, 0.02744021639227867, -0.020145133137702942, 0.009617460891604424, 0.029126785695552826, -0.007536020129919052, -0.025191456079483032, 0.019930966198444366, -0.00979816447943449, -0.02037268690764904, 0.016932621598243713, 0.01335200760513544, 0.018833357840776443, -0.005213641095906496, -0.026610316708683968, -0.04280673712491989, -0.013244924135506153, 0.015607459470629692, 0.0047518424689769745, -0.011176868341863155, -0.02623552270233631, -0.021831704303622246, 0.006475221831351519, 0.0020195329561829567, 0.003187415422871709, 0.022286809980869293, 0.010500902310013771, 0.0036876972299069166, 0.004976049065589905, 0.0064685288816690445, -0.01247525867074728, -0.003394890110939741, -0.03434712067246437, -0.007315159775316715, 0.029742516577243805, -0.012943750247359276, 0.010032410733401775, 0.01206700224429369, 0.011725672520697117, -0.021296285092830658, -0.009403293021023273, -0.038898177444934845, -0.0027423484716564417, 0.047009773552417755, 0.007000601384788752, 0.012495337054133415, -0.007797036785632372, 0.0002597617858555168, -0.018793201074004173, -0.007442322093993425, -0.0011628627544268966, 0.02670401521027088, 0.027654383331537247, 0.010119415819644928, -0.02153722383081913, 0.020198676735162735, 0.016249962151050568, 0.016477514058351517, -0.02944803610444069, 0.0019860693719238043, -0.014188599772751331, 0.006599037442356348, -0.014790945686399937, 0.018833357840776443, -0.0071946908719837666, -0.011123326607048512, 0.006170702166855335, -0.03429357707500458, 0.011424499563872814, -0.029715746641159058, -0.010962700471282005, 0.021523837000131607, 0.006287825293838978, 9.453488746657968e-05, 0.01154496893286705, 0.0323660708963871, 4.977721982868388e-05, 0.030866896733641624, -0.012615806423127651, -0.027948863804340363, 0.01707986183464527, -0.0071143778041005135, -0.01649090088903904, -0.021550608798861504, 0.004805384203791618, -0.008432846516370773, -0.0028644907288253307, -0.019234921783208847, -0.03177710995078087, -0.044493306428194046, 0.002867837203666568, -0.0031907616648823023, 0.015781469643115997, 0.02476312220096588, 0.007288388907909393, -0.0137000298127532, -0.01171898003667593, -0.0034969544503837824, -0.04074537381529808, 0.07999157905578613, 0.019663257524371147, -0.0010992818279191852, 0.003711121855303645, 0.020399458706378937, -0.014764174818992615, -0.028377199545502663, -0.001401291461661458, -0.020586853846907616, 0.0297692883759737, -0.02239389345049858, 0.0122008565813303, -0.002071401569992304, 0.012635884806513786, 0.004564445465803146, 0.012006768025457859, -0.024160776287317276, 0.010828846134245396, 0.007884042337536812, 0.000597326667048037, -0.008774176239967346, 0.0018722927197813988, 0.008613551035523415, 0.002143348567187786, -0.004249887075275183, -0.014590163715183735, 0.013666566461324692, -0.006411640904843807, 0.002014513360336423, 0.008124981075525284, -0.011638667434453964, 0.011002857238054276, -0.01902075484395027, 0.006371484138071537, -0.0009403293370269239, 0.003992216661572456, 0.00023989274632185698, -0.015928709879517555, 0.029662204906344414, -0.007937584072351456, 0.0071344561874866486, -0.004932546056807041, 0.011872912757098675, -0.006960445083677769, -0.019114453345537186, 0.013465783558785915, -0.023772597312927246, 0.00742224371060729, -0.028270114213228226, -0.0005228699883446097, -0.0123012475669384, -0.005902992561459541, -0.0005513140931725502, 0.008580086752772331, -0.01373349316418171, -0.007375394459813833, -0.040290266275405884, 0.011846141889691353, 0.005434501450508833, -0.015647616237401962, 0.003256015945225954, 0.004430591128766537, -0.016129491850733757, -0.0025398931466042995, -0.008124981075525284, -0.16897818446159363, -0.0033881973940879107, 0.018579034134745598, -0.023063166067004204, 0.03576597943902016, -0.014590163715183735, 0.03014408051967621, -0.009403293021023273, -0.02556625008583069, -0.023384418338537216, 0.0006174048758111894, 0.002810948994010687, -0.03204481676220894, -0.029742516577243805, -0.0057624452747404575, -0.01622319035232067, -0.011973303742706776, 0.007703338749706745, 0.008948187343776226, 0.013398856855928898, 0.025967814028263092, -0.03515024855732918, 0.0026436306070536375, -0.03330305218696594, -0.013191381469368935, -0.008901338092982769, 0.0071478416211903095, 0.0013803767506033182, -0.02899293042719364, 0.005598473362624645, -0.0017434576293453574, 0.0020513234194368124, -0.006217551417648792, -0.014777559787034988, 0.008365919813513756, -0.004196345340460539, -0.01563422940671444, 0.009958790615200996, -0.01722710207104683, 0.011571739800274372, -0.009885170497000217, 0.016865693032741547, -0.011290645226836205, -0.01567438617348671, -0.0070742215029895306, 0.007950969971716404, 0.01591532491147518, -0.016075950115919113, 0.010956007987260818, -0.014951570890843868, 0.007609640248119831, -0.0336778461933136, -0.021001804620027542, 0.0018639268819242716, -0.0005094844964332879, 0.00596657395362854, -0.01761527918279171, 0.0024010189808905125, -0.015781469643115997, -0.00045301453792490065, 0.004313468001782894, -0.014349224977195263, 0.018726274371147156, -0.01869950257241726, -0.012314633466303349, -0.0274000596255064, -0.01563422940671444, 0.022956082597374916, -0.030492102727293968, 0.0018672732403501868, -0.004239847883582115, -0.012214242480695248, -0.005063054617494345, -0.005032937042415142, 0.0017350916750729084, -0.002876203041523695, -0.01947586052119732, -0.0007512595620937645, 0.019315235316753387, -0.03480222448706627, -0.02343796007335186, 0.036488793790340424, 0.00022734385856892914, -0.005876221694052219, -0.022340351715683937, -0.008914723992347717, -0.003978831227868795, -0.002277203369885683, -0.0005165955517441034, -0.010962700471282005, 0.005605165846645832, -0.030090538784861565, 0.001243175589479506, -0.007275003474205732, -0.00679981941357255, 0.013592946343123913, 0.018645960837602615, -0.0034333732910454273, -0.008780868723988533, 0.01001233235001564, 0.00882771797478199, -0.03954068198800087, -0.010440667159855366, 0.003339675022289157, 0.030866896733641624, -0.017401112243533134, -0.013157918117940426, 0.013961046002805233, 0.018672732636332512, 0.008760791271924973, -0.015005113556981087, 0.01373349316418171, -0.00015822045679669827, 0.002688806504011154, 0.0067228530533611774, 0.006414987146854401, -0.018217626959085464, -0.009865092113614082, 0.01994435116648674, 0.02487020567059517, 0.05043645575642586, -0.004166227765381336, 0.001223933999426663, 0.004748495761305094, 0.0034149682614952326, -0.01902075484395027, -0.09385892003774643, 0.013057527132332325, -0.0013510959688574076, 0.01820424012839794, -0.008794254623353481, 0.02161753550171852, -0.01792314648628235, 0.0070742215029895306, 0.02685125544667244, 0.021242743358016014, -0.00010577659122645855, -0.016383817419409752, -0.01967664249241352, -0.0023976725060492754, 0.0073553165420889854, -0.0018120581516996026, 0.006585652008652687, -0.004099300596863031, -0.018137313425540924, 0.028002405539155006, 0.007636411115527153, 0.006110467482358217, 0.0021199239417910576, -0.027761466801166534, -0.010815460234880447, 0.004621333908289671, -0.03520378842949867, 0.022019099444150925, 0.005220333579927683, -0.012910286895930767, -0.0009972176048904657, -0.006093735806643963, -0.011973303742706776, 0.010413896292448044, -0.015607459470629692, 0.0073285456746816635, 0.008452924899756908, -0.015005113556981087, 0.013010677881538868, -0.009496991522610188, 0.005558317061513662, 0.0062744393944740295, 0.0012264437973499298, -0.01722710207104683, 0.013626409694552422, -0.012495337054133415, -0.02141675353050232, 0.028377199545502663, 0.015968866646289825, -0.011384342797100544, -0.01873965933918953, 0.0035270715598016977, -0.02778823859989643, -0.019181380048394203, 0.03290148824453354, 0.03308888524770737, -0.01706647500395775, -0.008037975057959557, -0.038710784167051315, 0.03161648288369179, -0.026489848271012306, -0.02623552270233631, -0.013867348432540894, 0.031375546008348465, 0.008901338092982769, -0.007275003474205732, 0.0062744393944740295, 0.0063346740789711475, 0.022808842360973358, -0.01839163713157177, -0.009932019747793674, 0.0037044291384518147, -0.021470295265316963, -0.0037178145721554756, 0.005986651871353388, 0.014523236081004143, -0.01618303544819355, -0.011237102560698986, 0.011611896567046642, -0.010494209825992584, -0.0040591442957520485, -0.01352601870894432, -0.011217025108635426, 0.000496099004521966, 0.01571454294025898, 0.01812392845749855, 0.004574484657496214, 0.01679876632988453, 0.022567903622984886, -0.023223793134093285, 0.01765543594956398, 0.005511467810720205, 0.002233700593933463, -0.025914272293448448, -0.018766431137919426, 0.0034936079755425453, -0.0021249435376375914, -0.013204767368733883, 0.009363137185573578, 0.014375995844602585, -0.02378598228096962, 0.005113250110298395, -0.06248337775468826, 0.035525038838386536, -0.006819897331297398, -0.028377199545502663, 0.0031991275027394295, 0.011732365004718304, -0.009831628762185574, -0.015072040259838104, -0.019234921783208847, 0.01932862028479576, -0.04411851242184639, 0.018338095396757126, 0.0015443487791344523, -0.010654835030436516, 0.00824545044451952, -0.0250308308750391, 0.028805533424019814, -7.3986102506751195e-06, 0.005779176950454712, 0.022956082597374916, -0.007850578986108303, -0.03022439405322075, 0.018445178866386414, -0.007750188000500202, 0.01433584000915289, 0.021215971559286118, 0.00311379530467093, 0.021095503121614456, -0.007382087409496307, 0.014402766712009907, 0.01144457794725895, -0.0271992776542902, 0.013579560443758965, 0.006933674216270447, -0.002417750656604767, 0.008078131824731827, 0.007288388907909393, 0.02355842851102352, 0.03132200241088867, 0.010340276174247265, -0.025860730558633804, -0.02595442906022072, 0.008533237501978874, -0.0029548427555710077, -0.002745694713667035, 0.02355842851102352, -0.01018634345382452, -0.001223933999426663, 0.010259963572025299, 0.03142908588051796, 0.06087712198495865, 0.011725672520697117, -0.0022755300160497427, -0.025405624881386757, -0.00921589694917202, -0.022902540862560272, 0.013224845752120018, -0.011819371022284031, 0.0164105873554945, -0.011565047316253185, 0.03830922022461891, -0.022715143859386444, -0.00041536788921803236, -0.006866746582090855, 0.0046648369170725346, -0.004069183021783829, -0.019837267696857452, 0.00917574018239975, -0.010661527514457703, 0.01583501324057579, -0.017548352479934692, 0.012421716935932636, -0.005307339131832123, 0.02157737873494625, 0.01649090088903904, 0.007435629144310951, -0.013244924135506153, 0.008044668473303318, -0.004008948802947998, 0.013934275135397911, 0.03986193239688873, -0.010822153650224209, 0.00171250372659415, 0.001322651864029467, 0.026262294501066208, 0.0164105873554945, -0.0017233793623745441, 0.036301396787166595, 0.0007533510215580463, 0.0044506690464913845, -0.011143404990434647, 0.02944803610444069, -0.013271695002913475, 0.02204587124288082, -0.012876823544502258, -0.0009093754342757165, -0.012990599498152733, -0.021684464067220688, 0.004112686030566692, 0.013104376383125782, 0.005063054617494345, 0.020693939179182053, -0.018257781863212585, -0.00259008863940835, -0.030090538784861565, 0.033195968717336655, -0.042512256652116776, -0.05921732261776924, -0.008807639591395855, 0.04128079116344452, 0.009583997540175915, 0.01881997287273407, 0.028457511216402054, 0.0038784402422606945, -0.025191456079483032, -0.004273311700671911, 0.027172505855560303, -0.0017334185540676117, -0.016865693032741547, 0.025633176788687706, 0.0021533877588808537, 0.019342005252838135, 0.05388990789651871, -0.008660400286316872, 0.040263496339321136, -0.006020115688443184, 0.014857873320579529, -0.01851210743188858, 0.024107232689857483, 0.020627010613679886, -0.019850654527544975, 0.02840396948158741, 0.007924199104309082, 0.0010122762760147452, -0.0029079935047775507, -0.033972326666116714, -0.0071746124885976315, 0.01416182890534401, 0.000894316763151437, 0.08133012056350708, 0.014429537579417229, -0.03038501925766468, 0.027132349088788033, -0.0024980634916573763, 0.0013870694674551487, 0.00979816447943449, 0.0015443487791344523, -0.028163030743598938, -0.007723416667431593, 0.012261091731488705, 0.010266656056046486, 0.016745224595069885, -0.018886899575591087, -0.02495051734149456, 0.001210548565723002, 0.0022102759685367346, 0.006793126463890076, 0.0007353643304668367, 0.006759663112461567, 0.024160776287317276, -0.0007077567861415446, -0.0029765942599624395, -0.010500902310013771, -0.026837870478630066, -0.0047451495192945, 0.04521612077951431, -0.031054293736815453, -0.04443976283073425, -0.012394946068525314, 0.024856820702552795, 0.01982388272881508, -0.035605352371931076, -0.03996901586651802, -0.014442923478782177, 0.017789291217923164, -0.008954879827797413, -0.00837930478155613, -0.01286343764513731, 0.009282824583351612, 0.011397728696465492, -0.04245871305465698, -0.007910813204944134, -0.01053436566144228, -0.0010248251492157578, 0.0017652090173214674, 0.002993325935676694, 0.006853361148387194, -0.008325763046741486], "f620bea9-7052-4504-ade1-ba5cf9d769a4": [0.019865652546286583, 0.017106909304857254, -0.020366013050079346, -0.04462672024965286, -0.0021282213274389505, 0.02004145458340645, -0.035485006868839264, 0.010514326393604279, -0.011913982219994068, -0.005500581581145525, 0.04135409742593765, 0.027087068185210228, -0.012786231935024261, 0.015538212843239307, 0.007424263749271631, 0.002981876488775015, 0.026708416640758514, 0.009905779734253883, 0.009358088485896587, -0.010696889832615852, 0.03610707446932793, 0.024734022095799446, -0.037053704261779785, -0.01841866597533226, 0.004165160935372114, 0.013773429207503796, 0.0025660365354269743, -0.015673445537686348, 0.007748821750283241, 0.006639915052801371, 0.01747203804552555, -0.005733857396990061, -0.01590334065258503, -0.00039196290890686214, -0.005355206783860922, -0.014821480959653854, -0.011880174279212952, -0.004138114396482706, -0.0015408052131533623, -0.01304993499070406, 0.004489718470722437, 0.02161015197634697, 0.005443107802420855, -0.012664522975683212, 0.01956814154982567, 0.01177198812365532, 0.028047218918800354, -0.0021146980579942465, -0.016985200345516205, 0.021109791472554207, 0.013428586535155773, 0.024071384221315384, -0.014970236457884312, -0.007005042862147093, -0.010656320489943027, -0.016633596271276474, -0.005040790885686874, 0.015267748385667801, -0.027695614844560623, -0.011988360434770584, -0.016795875504612923, 0.010784790851175785, -0.018864931538701057, -0.012312917970120907, -0.013293353840708733, -0.002239788183942437, -0.022096989676356316, 0.0175531767308712, -0.021542536094784737, -0.025356091558933258, 0.026126917451620102, -0.0018543754704296589, 0.015308317728340626, 0.006504682824015617, 0.013002604246139526, -0.02117740735411644, -0.006163220852613449, -0.028507009148597717, -0.0023158565163612366, -0.02424718625843525, 0.0011063708225265145, -0.0013041483471170068, -0.012982319109141827, 0.021785954013466835, 0.013861330226063728, 0.004787229932844639, 0.0287774745374918, 0.03962311893701553, -0.03397040069103241, -0.020771710202097893, 0.0027688853442668915, 0.016471317037940025, 0.0307789146900177, 0.02527495287358761, -0.026627277955412865, 0.020771710202097893, 0.013915423303842545, 0.02325998805463314, -0.011271628551185131, -0.00909438543021679, 0.012096546590328217, 0.01653893291950226, -0.006518206093460321, -0.0009702931274659932, -0.014848527498543262, -0.01255633682012558, 0.038865819573402405, -0.0037865096237510443, -0.004117829259485006, 0.004672282375395298, -0.030292076990008354, 0.027682090178132057, -0.01281327847391367, -0.04806162789463997, 0.031590308994054794, -0.030400263145565987, 0.019148919731378555, -0.03153621777892113, -0.00931075681000948, -0.002347974106669426, 0.00408402131870389, -0.010318239219486713, 0.012887656688690186, 0.00036301472573541105, 0.00690699927508831, 0.009554175660014153, -0.0070253279991447926, 0.008850966580212116, -0.04573562741279602, -0.01243462786078453, 0.0071808453649282455, 0.028750427067279816, -0.009060576558113098, 0.0035059023648500443, -0.01810763031244278, 0.021813001483678818, -0.013036412186920643, 0.0052233547903597355, -0.036269355565309525, -0.03413268178701401, 0.015551736578345299, 0.038865819573402405, -0.04146227985620499, 0.006450589746236801, -0.0058724707923829556, 0.008891535922884941, 0.014929667115211487, -0.022975999861955643, 0.010047773830592632, -0.020893419161438942, 0.010439948178827763, -0.0038811725098639727, 0.010406140238046646, 0.007214653305709362, -0.007978716865181923, 0.024625835940241814, -0.01664711907505989, 0.016106190159916878, 0.0011917363153770566, 0.003316576825454831, 0.03413268178701401, 0.0012204732047393918, -0.0007518081110902131, 0.024977441877126694, 0.0025711078196763992, 0.03770281746983528, 0.02050124481320381, -0.0018256385810673237, -0.003925123251974583, -0.0024646122474223375, -0.003559995209798217, 0.04238186404109001, -0.025883499532938004, 0.004766945261508226, 0.01357734203338623, 0.02354397624731064, 0.00504755275323987, 0.006798813585191965, -0.008668402209877968, -0.006704150699079037, 0.013313638977706432, -0.007938147522509098, 0.021975278854370117, 0.045438118278980255, -0.042571187019348145, -0.01153533160686493, 0.0308600552380085, 0.0111228721216321, -0.0015847557224333286, -0.017106909304857254, -0.00567638361826539, 0.024571742862462997, 0.01775602623820305, 0.008898298256099224, -0.6331044435501099, -0.004368009511381388, -0.011231058277189732, -0.04830504581332207, 0.0030883720610290766, 0.01005453523248434, 0.005791331175714731, 0.006552014034241438, -0.029453637078404427, 0.03361879661679268, -0.026951834559440613, -0.0013244332512840629, 0.01227911002933979, -0.0261674877256155, -0.02354397624731064, -0.02177243120968342, -0.00826946645975113, -0.01137305237352848, 0.0024933491367846727, -0.002986947540193796, 0.006866429932415485, 0.011487999930977821, -0.003979215864092112, 0.005443107802420855, 0.03881172463297844, 0.010494041256606579, 0.002564346184954047, -0.02747924253344536, 0.020758187398314476, 0.020054979249835014, -0.04073202610015869, -0.0002349664573557675, 0.02581588178873062, 0.010122152045369148, 0.036269355565309525, 0.0014647368807345629, -0.009324280545115471, -0.029615916311740875, 0.026789557188749313, 0.019595187157392502, -0.04743955656886101, -0.020176688209176064, 0.020176688209176064, 0.015592305921018124, -0.007403979077935219, -0.007349886000156403, 0.032563984394073486, 0.00724169984459877, 0.002834811108186841, 0.0027401484549045563, -0.022448593750596046, 0.010446709580719471, 0.016498364508152008, -0.015889817848801613, -0.005767665803432465, -0.002364878077059984, 0.03759463131427765, -0.0016075762687250972, 0.013496202416718006, 0.00620040949434042, 0.006866429932415485, 0.007613589055836201, 1.3305345419212244e-05, -0.008222135715186596, -0.002214431995525956, -0.020947512239217758, 0.0021096267737448215, 0.0037053702399134636, 0.045005373656749725, -0.018743222579360008, -0.0010598846711218357, 0.025491325184702873, -0.0070253279991447926, -0.05863680690526962, 0.005892755929380655, 0.011846366338431835, -0.0030816104263067245, -0.011913982219994068, 0.012786231935024261, 0.014429306611418724, 0.013475917279720306, -0.023151801899075508, 0.004973175004124641, -0.0032320565078407526, 0.01924358308315277, -0.023516930639743805, -0.010210053063929081, 0.00021806238510180265, 0.0038507452700287104, 0.01355705689638853, -0.019000165164470673, 0.016322562471032143, -0.028912706300616264, -0.032996729016304016, -0.026708416640758514, 0.018837885931134224, -0.013293353840708733, -0.004837942309677601, -0.006484398152679205, -0.005612148437649012, -0.011711133643984795, -0.02152901329100132, -0.011663801968097687, 0.0019642519764602184, 0.047845255583524704, 0.005727095995098352, -0.035485006868839264, 0.0027621237095445395, 0.036539819091558456, -0.03172554075717926, -0.009141716174781322, -0.004800753202289343, -0.015294794924557209, 0.022218698635697365, 0.042219582945108414, -0.019743943586945534, 0.003742559114471078, 0.01149476133286953, 0.010358808562159538, -0.012015406973659992, 6.423543527489528e-05, 0.026235103607177734, -0.015159562230110168, -0.00345857092179358, 0.028507009148597717, 0.01728271320462227, 0.0173503290861845, -0.02105569839477539, -0.03294263407588005, -0.0035363296046853065, 0.013888376764953136, -0.01348267961293459, 0.03345651924610138, -0.0009500082232989371, 0.0001760135346557945, 0.024747544899582863, 0.030400263145565987, -0.0026167486794292927, 0.02758742868900299, -0.024666406214237213, -0.01849980466067791, 0.013780190609395504, 0.008830681443214417, -0.014794434420764446, -0.01578163169324398, -0.018445711582899094, -0.03240170329809189, -0.02216460555791855, -0.0007146191783249378, 0.02511267364025116, 0.0040400708094239235, 0.006653438322246075, -0.007018566131591797, 0.013374493457376957, -0.016268469393253326, -0.004253061953932047, 0.008945629000663757, -0.02231336012482643, -0.01304993499070406, 0.0011545474408194423, 0.01487557403743267, 0.0066872467286884785, -0.025220859795808792, -0.017377374693751335, -0.03456542640924454, -0.0013109099818393588, 0.008641356602311134, 0.027682090178132057, -0.003972454462200403, -0.04043451324105263, 0.003294601570814848, 0.006000941619277, -0.0001656598033150658, 0.012204731814563274, 0.033159006386995316, 0.002197528025135398, 0.00027891702484339476, 0.02377387136220932, -0.003019065363332629, -0.013983039185404778, 0.012569859623908997, -0.024612313136458397, 0.009865210391581059, -0.01151504646986723, 0.014361690729856491, 0.018161723390221596, 0.009107908234000206, 0.007140275556594133, -0.0054667736403644085, 0.0022228839807212353, -0.010135674849152565, 0.02004145458340645, -0.0053112562745809555, 0.01570049300789833, 0.004286869894713163, 0.03164440393447876, -0.00812747236341238, -0.000546846364159137, 0.011379813775420189, 0.04143523424863815, 0.03464656323194504, 0.014767387881875038, -0.006562156602740288, -0.027032975107431412, 0.020690571516752243, -0.04273346811532974, 0.00791110098361969, -0.003641134826466441, 0.009107908234000206, 0.018648561090230942, 0.009479797445237637, -0.0028889041859656572, -0.00203693937510252, -0.01728271320462227, 0.018405141308903694, -6.29148053121753e-05, 0.005683145485818386, 0.014077702537178993, 0.0077893915586173534, 0.007451310288161039, 0.00142163154669106, 0.022975999861955643, 0.030156845226883888, -0.008249182254076004, 0.020920466631650925, -0.003735797479748726, -0.02274610474705696, 0.014537492766976357, 0.016971677541732788, -0.03702665492892265, -0.009134954772889614, -0.010514326393604279, 0.015024329535663128, -0.002789170015603304, 0.016863491386175156, 0.019608711823821068, 0.034808844327926636, -0.022326884791254997, 0.04070498049259186, -0.016106190159916878, 0.01948700100183487, -0.013827522285282612, 0.00866164080798626, -0.03637754172086716, 0.012326441705226898, -0.0173503290861845, 0.016363130882382393, -0.0013835973804816604, -0.01538945734500885, 0.004212492145597935, -0.017499083653092384, 0.012684807181358337, -0.02818245068192482, 0.004597904626280069, 0.02743867225944996, -0.004246300086379051, 0.011602947488427162, -0.009412181563675404, -0.0003207545669283718, 0.024463556706905365, 0.018486281856894493, 0.0016126474365592003, 0.009750262834131718, -0.01304993499070406, -0.0024358751252293587, -0.006315357517451048, 0.008215373381972313, -0.036702096462249756, -0.013043173588812351, 0.0017580223502591252, -0.000938175420742482, -0.031779635697603226, -0.009824640117585659, 0.005602005869150162, 0.0032354374416172504, -0.0037121318746358156, -0.01590334065258503, -0.006244360469281673, 0.008492600172758102, 0.017783071845769882, -0.020609430968761444, 0.001989607932046056, 0.019500525668263435, 0.021204454824328423, 0.017336804419755936, 0.015768108889460564, -0.022029371932148933, 0.009520367719233036, 0.007005042862147093, 0.03156326338648796, -0.0038473643362522125, 0.002997090108692646, 0.008107188157737255, -0.0033605273347347975, 0.00693742698058486, -0.023408744484186172, 0.019743943586945534, -0.02888566069304943, -0.015443550422787666, 0.007349886000156403, -0.0031762730795890093, -0.00466552097350359, -0.03332128748297691, 0.0021620295010507107, 0.048386186361312866, 0.0015864461893215775, 0.011582662351429462, -0.023449314758181572, 0.004851465579122305, -0.03175259009003639, 0.00838441401720047, -0.018283432349562645, -0.03034617006778717, -0.018553897738456726, 0.02853405475616455, -0.010548134334385395, 0.002334450837224722, 0.001235686824657023, -0.0017833784222602844, -0.01565992273390293, 0.0074918800964951515, -0.006761624477803707, -0.007579781115055084, 0.003891314845532179, 0.043977607041597366, 0.006771767046302557, -0.004547192715108395, 0.002713101916015148, -0.006146316882222891, 0.0032354374416172504, 0.005216593388468027, -0.01192750595510006, 0.022692011669278145, 0.00535182561725378, -0.004888654686510563, 0.010034251026809216, -0.0036817046348005533, -0.014037132263183594, 0.02762799710035324, 0.009405420161783695, -0.003969073761254549, -0.005743999965488911, -0.02480163797736168, -0.03026503138244152, 0.012191209010779858, 0.005531008820980787, 0.02416604571044445, 0.009696169756352901, 0.005720334127545357, -0.013705813325941563, 0.05531008914113045, 0.025910545140504837, -0.007302554324269295, -0.015240701846778393, -0.0071673220954835415, 0.013360969722270966, -0.0030697775073349476, 0.02152901329100132, -0.014686248265206814, 0.006890095304697752, 0.015714015811681747, -0.005882613360881805, 0.028696333989501, 0.015051376074552536, 0.01019652932882309, 0.02046067640185356, 0.02243507094681263, 0.008005763404071331, 0.00916876271367073, -0.005463392473757267, -0.02266496606171131, 0.008898298256099224, -0.017783071845769882, -0.0050813606940209866, -0.002691126661375165, -0.008553454652428627, -0.02499096468091011, 0.003161059459671378, 0.020528292283415794, -0.006474255584180355, 0.0024257327895611525, 0.01897311769425869, -0.031157566234469414, -0.019351769238710403, -0.03156326338648796, -0.02542370744049549, 0.003972454462200403, -0.007938147522509098, 0.0027232442516833544, 0.0004788075457327068, -0.02212403528392315, -0.007938147522509098, -0.047169093042612076, 0.002033558674156666, -0.010595466010272503, -0.025004487484693527, -0.016701212152838707, -0.012252063490450382, 0.02861519530415535, 0.008959152735769749, 0.006240979302674532, 0.005510724149644375, 0.030210938304662704, 0.009594745002686977, -0.0008257633890025318, -0.02861519530415535, -0.01231968030333519, -0.008235658518970013, 0.004401817452162504, 0.018324002623558044, -0.015754584223031998, 0.02031191997230053, -0.026302719488739967, 0.012644237838685513, -0.0033909548074007034, 0.010507564060389996, 0.011312197893857956, -0.03407858684659004, 0.006694008130580187, 0.02078523300588131, 0.02002793177962303, -0.003789890557527542, 0.00109707354567945, -0.005094883963465691, -0.010818598791956902, 0.016227899119257927, 0.01716100238263607, -0.029588868841528893, 0.018472759053111076, -0.006802194286137819, 0.002679293742403388, 0.024652883410453796, -0.0073228394612669945, 0.016782352700829506, 0.008479077368974686, -0.02046067640185356, 0.024977441877126694, 0.009594745002686977, 0.026478521525859833, 0.01849980466067791, 0.033591751009225845, 0.003125560935586691, 0.02184004709124565, -0.01413179561495781, 0.019811559468507767, -0.04925167188048363, 0.011697610840201378, 0.020636478438973427, -0.010399378836154938, 0.01396951638162136, -0.0017005485715344548, 0.009303995408117771, -0.04043451324105263, -0.00844526942819357, 0.01332040037959814, 0.021190932020545006, -0.02039305865764618, -0.003891314845532179, -0.01747203804552555, -0.005189546849578619, -0.027506288141012192, -0.003654658095911145, -0.03913628309965134, 0.008999722078442574, 0.00685966806486249, -0.004229396115988493, 0.011359529569745064, 0.010561657138168812, 0.007505403365939856, -0.030319124460220337, -0.009412181563675404, -0.017742503434419632, 0.007836722768843174, 0.01373962126672268, -0.005071218591183424, -0.0010260764975100756, -0.00497993640601635, -0.002336141187697649, 0.0027401484549045563, -0.02133968658745289, 0.006680484861135483, -0.01606561988592148, 0.003597184317186475, 0.012962033972144127, 0.011846366338431835, -0.007485118228942156, 0.006758243776857853, 0.02177243120968342, -0.00775558315217495, 0.021867094561457634, -0.007099705748260021, 0.011487999930977821, -0.013104028068482876, 0.0046012853272259235, 0.006410019937902689, 0.01862151362001896, 0.021813001483678818, 0.01448339968919754, 0.023868534713983536, 0.02192118763923645, -0.01267128437757492, 0.006697389297187328, -0.01590334065258503, -0.050982650369405746, 0.0032506510615348816, 0.009006483480334282, -0.025180289521813393, 0.018391618505120277, -0.0222457442432642, -0.007829961366951466, 0.014753865078091621, -0.006352546159178019, 0.009946350008249283, 0.01072393637150526, 0.02325998805463314, 0.004253061953932047, 0.013780190609395504, 0.02447708137333393, 0.020082024857401848, -0.034619517624378204, 0.011792273260653019, -0.03475474938750267, 0.024220138788223267, 0.01371933612972498, 0.015375934541225433, 0.0013624673010781407, -0.003106966381892562, 0.007092944346368313, -0.004591143224388361, -0.008370891213417053, -0.01460510864853859, -0.02983228676021099, 0.002363187726587057, 0.001642229501157999, -0.035566143691539764, -0.009486558847129345, 0.004526907578110695, 0.011183726601302624, 0.00698475819081068, 0.01395599264651537, 0.007119990419596434, 0.03131984546780586, -0.0029413066804409027, -0.030670728534460068, 0.003553233575075865, -0.034781794995069504, 0.041381143033504486, 0.007147036958485842, -0.00014801618817728013, 0.03415972739458084, 0.002165410201996565, -0.03913628309965134, 0.016579503193497658, 0.016985200345516205, 0.006291691679507494, 0.030102752149105072, 0.02054181508719921, -0.011596186086535454, -0.026559660211205482, -0.023287035524845123, 0.032726261764764786, -0.01175170298665762, -0.024071384221315384, 0.014064178802073002, 0.016363130882382393, -0.010960593819618225, -0.005365348886698484, -0.008296512998640537, -0.015497643500566483, 0.002207670360803604, 0.0048075150698423386, 0.013530010357499123, 0.005990799516439438, -0.006511444225907326, -0.02657318487763405, 0.021975278854370117, 0.00724169984459877, 0.028858613222837448, 0.013097266666591167, 0.009986919350922108, -0.01790478266775608, -0.001042135409079492, -0.030454356223344803, 0.017688410356640816, -0.025220859795808792, 0.02888566069304943, -0.0010877763852477074, -0.020731139928102493, 0.017458515241742134, 0.012678045779466629, -0.005564816761761904, -0.012177686206996441, -0.0036986086051911116, 0.01782364211976528, 0.008472315967082977, -0.015970956534147263, -0.008708972483873367, -0.0023310701362788677, 0.0007691347855143249, 0.004973175004124641, -0.003174582729116082, -0.01563287526369095, 0.003735797479748726, -0.010480518452823162, 0.006697389297187328, 0.024774592369794846, -0.01833752542734146, -0.008708972483873367, -0.0014038822846487164, -0.017066340893507004, 0.011359529569745064, -0.03318605199456215, -0.00039872454362921417, -0.013151359744369984, -0.0025880117900669575, -0.004628331866115332, -0.001575458562001586, -0.0013421825133264065, 0.00968264602124691, -0.000859571504406631, 0.0025880117900669575, 0.040245190262794495, -0.01716100238263607, -0.01307022012770176, 0.028804520145058632, -0.00816804263740778, -0.020338967442512512, 0.004695948213338852, 0.002184004755690694, -0.019987361505627632, 0.01486205030232668, -0.0013895138399675488, -0.009283710271120071, -0.03318605199456215, 0.0070253279991447926, 0.014469876885414124, -0.0001349155354546383, -0.028804520145058632, 0.008600786328315735, 0.006930665113031864, 0.02931840345263481, 0.0057169534265995026, -0.04216549172997475, 0.030481403693556786, -0.006085461936891079, 0.007512164767831564, 0.036188215017318726, 0.004293631762266159, 0.02593759261071682, -0.006579060573130846, -0.01586277037858963, -0.0018273290479555726, -0.018837885931134224, -0.021515488624572754, -0.006038130726665258, -0.00916876271367073, 0.004510003607720137, -0.016349608078598976, -0.016755305230617523, -0.006301834248006344, -0.016985200345516205, 0.012130354531109333, 0.013401539996266365, 0.019987361505627632, -0.0027976222336292267, 0.01332040037959814, 0.002375020645558834, 0.006146316882222891, -0.009533890523016453, -0.023151801899075508, -0.013651720248162746, -0.007228176575154066, -0.04530288279056549, -0.013692289590835571, -0.0199197456240654, 0.016146758571267128, 0.008749541826546192, -0.0038439836353063583, -0.009067338891327381, -0.015578783117234707, -0.037405308336019516, -0.0010057915933430195, 0.0029328546952456236, 0.004479576367884874, 0.029372496530413628, 0.01543002761900425, 0.005422822665423155, 0.021272070705890656, -0.0003957663429901004, 0.016674166545271873, -0.010162721388041973, -0.0017749264370650053, 0.009195809252560139, 0.0354309119284153, 0.005656098946928978, -4.2312978621339425e-05, -0.011156680062413216, -0.02006850205361843, 0.0034991407301276922, 0.007052374538034201, 0.009560937061905861, 0.018756747245788574, -0.006923903711140156, -0.0009288781438954175, -0.01177198812365532, -0.007613589055836201, -0.02006850205361843, 0.027222299948334694, 0.009087623097002506, -0.028479961678385735, -0.00909438543021679, 0.0006313666817732155, 0.02342226728796959, -0.011521807871758938, 0.003411239478737116, -0.0024443273432552814, -0.0063897352665662766, 0.013550295494496822, 0.006808955688029528, -0.0002006300783250481, -0.012772709131240845, -0.015402981080114841, 0.0057034301571547985, 0.00717408349737525, 0.00903353001922369, 0.012191209010779858, -0.012481958605349064, -0.025356091558933258, -0.02519381232559681, 0.025045057758688927, -0.04908939450979233, -0.012765946798026562, 0.01478091161698103, -0.010027489624917507, -0.004334201104938984, 0.012360249646008015, 0.016633596271276474, -0.008452030830085278, 0.012407581321895123, -0.007234938442707062, -0.02369273267686367, -0.041813887655735016, 0.01160970889031887, 0.027803799137473106, -0.005757523234933615, -0.006416781805455685, -0.016471317037940025, 0.021745383739471436, -0.013726097531616688, -0.01818877086043358, -0.005064456723630428, -0.021326163783669472, 0.03483588993549347, 0.004888654686510563, -0.0018087346106767654, -0.014429306611418724, 0.0068055749870836735, 0.00029180635465309024, -0.012367011047899723, 0.007160560227930546, 0.20252418518066406, 0.006886714603751898, 0.02443651109933853, 0.016877014189958572, -0.006126031745225191, 0.008310036733746529, 0.03821670264005661, -0.020163163542747498, -0.01818877086043358, 0.01983860693871975, -0.012853847816586494, -0.01598448120057583, -0.017566701397299767, 0.002508562756702304, -0.006572299171239138, -0.0020048217847943306, -0.05041467398405075, -0.055391229689121246, -0.014794434420764446, 0.008999722078442574, -0.005176023580133915, 0.01448339968919754, -0.027655044570565224, -0.03326719254255295, 0.020163163542747498, -0.004395056050270796, -0.014659201726317406, 0.015402981080114841, 0.00814775750041008, 0.009162001311779022, -0.0012787922751158476, 0.002077509183436632, -0.00562905240803957, -0.008526408113539219, -0.033159006386995316, -0.00717408349737525, 0.045762673020362854, -0.005460011772811413, 0.011738180182874203, 0.01486205030232668, 0.03399744629859924, -0.028074264526367188, -0.014753865078091621, -0.03356470540165901, 0.016701212152838707, 0.05566169321537018, -0.0035566145088523626, 0.0024341847747564316, -0.008310036733746529, -0.005270686466246843, -0.01552469003945589, -0.01889197900891304, 0.01940586231648922, 0.006112508475780487, 0.027655044570565224, -0.007687967270612717, -0.023882057517766953, 0.007214653305709362, 0.016444271430373192, 0.015308317728340626, -0.01767488569021225, 0.008648118004202843, -0.020528292283415794, 0.014402260072529316, -0.033510610461235046, 0.011291912756860256, -0.011508285067975521, -0.007038851268589497, 0.023435790091753006, -0.02365216240286827, -0.006075319834053516, -0.0120424535125494, 0.0014613560633733869, 0.028912706300616264, 0.008174804039299488, -0.007640635594725609, 0.017701933160424232, 0.019933268427848816, 0.0032709359657019377, 0.02085285075008869, -0.01448339968919754, -0.016484839841723442, -0.002349664457142353, -0.024706976488232613, -0.013246022164821625, -0.02455822005867958, 0.009689408354461193, -0.0025626556016504765, 0.012312917970120907, -0.01660655066370964, -0.0175531767308712, -0.015835724771022797, 0.007742059882730246, -0.0029244027100503445, -0.0021383636631071568, 0.021380256861448288, -4.8625588533468544e-05, -0.005219974089413881, -0.008823920041322708, 0.0029362353961914778, -0.028317684307694435, 0.07756935805082321, 0.024341847747564316, 0.0008194244001060724, -0.011684087105095387, 0.014429306611418724, -0.021799476817250252, 0.004787229932844639, -0.004875131417065859, -0.01602504961192608, 0.005094883963465691, -0.03018389269709587, 0.007018566131591797, -0.02562655694782734, 0.012110069394111633, 0.003735797479748726, 0.01152857020497322, -0.027181729674339294, 0.008871251717209816, 0.0035329489037394524, -0.009892256930470467, 0.007917862385511398, -0.005432965233922005, 0.001102144829928875, -0.009216094389557838, 0.0024324944242835045, -0.007349886000156403, 0.012394057586789131, -0.013394778594374657, -0.016281992197036743, 0.009736739099025726, -0.018283432349562645, -0.012745662592351437, -0.010122152045369148, 0.006399877835065126, 0.008506123907864094, 0.00029539846582338214, -0.020338967442512512, -0.01396951638162136, 0.0261674877256155, -0.014104749076068401, 0.007775868289172649, -0.0038270794320851564, 0.01703929342329502, -0.002875380916520953, -0.01348267961293459, 0.013022888451814651, -0.031860776245594025, -0.004168541636317968, -0.0011993431253358722, -9.117628360399976e-05, -0.0009339493699371815, 0.003982597030699253, 0.007829961366951466, -0.006470874883234501, -0.031238704919815063, -0.007451310288161039, -0.04557335004210472, 0.02243507094681263, 0.01162999402731657, -0.027533335611224174, 0.01598448120057583, 0.01565992273390293, -0.014415783807635307, -0.005476915743201971, -0.01153533160686493, -0.17212390899658203, -0.0014926285948604345, 0.012225016951560974, -0.012049214914441109, 0.04159751534461975, 0.00567638361826539, 0.027533335611224174, 0.00037125544622540474, -0.002346283756196499, -0.011562378145754337, -0.0035092830657958984, 0.008458792231976986, -0.015673445537686348, -0.03870353847742081, -0.014442830346524715, 0.007667682133615017, -0.02117740735411644, 0.03421381860971451, 0.012481958605349064, 0.01602504961192608, 0.02766856737434864, -0.022069942206144333, 0.002363187726587057, -0.023097708821296692, 0.004570858087390661, 0.0027857893146574497, 0.005507342983037233, 0.008925344794988632, -0.047169093042612076, -0.017701933160424232, 0.00891182105988264, 0.00026032255846075714, 0.007978716865181923, -0.015876295045018196, -0.0031018953304737806, -0.0044322446919977665, 0.006890095304697752, -0.006886714603751898, -0.02420661598443985, 0.023990243673324585, -0.01858094334602356, 0.031860776245594025, 0.0041076866909861565, -0.017066340893507004, 0.000551917590200901, -0.0041719223372638226, 0.022151082754135132, -0.03148212283849716, 0.008844205178320408, -0.013408301398158073, 0.015335364267230034, -0.03259103000164032, -0.0013472536811605096, -0.006521586794406176, 0.0055479127913713455, 0.010034251026809216, -0.01290794089436531, 0.0032117716036736965, 0.01409122534096241, -0.012130354531109333, 0.019730420783162117, -0.021745383739471436, 0.002983566839247942, -0.008019287139177322, 0.015565259382128716, -0.021461395546793938, -0.03305082023143768, 0.00375946331769228, -0.02169129066169262, -0.008053095079958439, 0.0038203177973628044, -0.016633596271276474, -0.0008206921629607677, -0.006464113015681505, 0.01672825962305069, 0.002189076039940119, -0.04519469663500786, -0.021190932020545006, 0.002211051294580102, -0.02039305865764618, -0.023598069325089455, 0.010791553184390068, -0.010243861004710197, -0.011988360434770584, 0.006673723459243774, 0.0016227898886427283, 0.00891182105988264, 0.024382418021559715, 0.002821287838742137, -0.013421825133264065, 0.021826524287462234, -0.015118992887437344, -0.015578783117234707, -0.012522528879344463, -0.0019760846626013517, 0.008323559537529945, 0.019432909786701202, -0.012123593129217625, -0.01253605168312788, 0.014334644190967083, 0.006497920956462622, -0.028696333989501, -0.013705813325941563, 0.0062342179007828236, 0.022692011669278145, -0.015186608768999577, -0.037378259003162384, 0.0035464721731841564, 0.014591585844755173, -0.009865210391581059, -0.03415972739458084, 0.025410184636712074, 0.015592305921018124, -0.029778193682432175, -0.0012940058950334787, 0.01086593046784401, -0.00625788327306509, -0.01833752542734146, 0.01062927395105362, 0.0035363296046853065, 0.03778395801782608, 0.0010979188373312354, 0.016227899119257927, 0.01703929342329502, 0.0015323531115427613, -0.013915423303842545, -0.08151814341545105, -0.013928946107625961, 0.0038000328931957483, 0.01087945420295, -0.008634594269096851, 0.018134677782654762, -0.015592305921018124, 0.003999501001089811, 0.021326163783669472, 0.0008967604371719062, 0.0018256385810673237, -0.016904061660170555, -0.013448870740830898, -0.004885273519903421, -0.0005764284869655967, -0.0006668652058579028, -0.011873412877321243, -0.006393115967512131, -0.021231500431895256, 0.016863491386175156, 0.01889197900891304, 0.015186608768999577, -0.01866208389401436, -0.04029928147792816, -0.029534775763750076, -0.007809676229953766, -0.04157046601176262, 0.03472770377993584, 0.005084741860628128, -0.010656320489943027, -0.0220023263245821, -0.01177198812365532, -0.006673723459243774, -0.01570049300789833, -0.017634317278862, -0.01152857020497322, 0.0022651441395282745, -0.016403701156377792, 0.02739810198545456, -0.019257105886936188, 0.016971677541732788, 0.0014841766096651554, 0.012529290281236172, -0.008803634904325008, 0.010460233315825462, -0.007552734576165676, -0.023625116795301437, 0.022340407595038414, 0.012137115933001041, -0.02298952266573906, -0.041191816329956055, -0.0015585544751957059, -0.0395149327814579, -0.026694893836975098, 0.025761788710951805, 0.017255665734410286, -0.012326441705226898, 0.01695815473794937, -0.01952757127583027, 0.028155405074357986, -0.03094119392335415, -0.004442387260496616, 0.005064456723630428, 0.010155959986150265, -0.015348888002336025, 0.018121153116226196, -0.0005920647527091205, -0.00625788327306509, 0.02338169701397419, -0.009601506404578686, 0.011968075297772884, 0.0008097045356407762, -0.01732328161597252, 0.007579781115055084, -0.0053923954255878925, 0.01928415335714817, 0.0014588205376639962, -0.007884054444730282, 0.02396319806575775, -0.01474034134298563, -0.016106190159916878, -0.01192750595510006, -0.006781909614801407, -0.012394057586789131, 0.008350606076419353, 0.014239980839192867, 0.014239980839192867, 0.019662804901599884, 0.023746825754642487, -0.037486445158720016, 0.007579781115055084, 0.0019777752459049225, 0.00851964671164751, -0.003456880571320653, -0.023800918832421303, 0.00014622013259213418, 0.02499096468091011, 0.00407387875020504, 0.003135703271254897, 0.0004247145261615515, -0.049576230347156525, 0.005307875107973814, -0.06712941080331802, 0.033943355083465576, -0.008296512998640537, -0.030833007767796516, -0.00537211075425148, 0.004564096685498953, -0.00252884766086936, -0.00724169984459877, -0.017877735197544098, 0.005230116657912731, -0.0529840886592865, 0.0017529511824250221, 0.013076981529593468, -0.011339244432747364, 0.000864642730448395, -0.016200851649045944, 0.03121165931224823, 0.015335364267230034, 0.009804355911910534, 0.013766667805612087, 0.0073228394612669945, -0.01253605168312788, 0.01240081898868084, 0.0013920494820922613, -0.014523969031870365, 0.007606827653944492, -0.0035836610477417707, 0.015849247574806213, -0.008154518902301788, 0.004540430847555399, 0.013983039185404778, -0.013117551803588867, 0.01257662195712328, 0.0012179375626146793, -0.009615030139684677, -0.008634594269096851, -0.013333923183381557, 0.010311477817595005, 0.027344008907675743, 0.0131648825481534, -0.026086347177624702, -0.006572299171239138, 0.01478091161698103, -0.00627816841006279, 0.010284431278705597, 0.0018476139521226287, -0.015200131572782993, -0.0017047745641320944, 0.028831567615270615, 0.02420661598443985, 0.029778193682432175, 0.0022634537890553474, -0.0009153549326583743, -0.026911266148090363, -0.005169262178242207, -0.02278667502105236, -0.01617380604147911, -0.023449314758181572, 0.012427865527570248, -0.027857892215251923, 0.05073922872543335, -0.01794535107910633, 0.0014655821723863482, -0.009804355911910534, 0.007897577248513699, 0.0056222910061478615, -0.016187328845262527, 0.03199600800871849, -0.001732666278257966, -0.004564096685498953, -0.030156845226883888, -0.0027249346021562815, 0.002532228361815214, 0.021813001483678818, 0.022029371932148933, 0.014415783807635307, -0.01979803666472435, 0.0143481669947505, -0.0073363627307116985, 0.01279299333691597, 0.03754054009914398, -0.001493473770096898, -0.0023090948816388845, 0.007201130036264658, 0.027993125841021538, 0.013435347937047482, -0.0027604331262409687, 0.012488720938563347, 0.006413400638848543, -0.00717408349737525, -0.02664080075919628, 0.014429306611418724, -0.003404477844014764, 0.019541094079613686, -0.004716232884675264, 0.003756082383915782, -0.009162001311779022, 0.008634594269096851, 0.00037717187660746276, 0.00802604854106903, 0.011467714793980122, 0.005385634023696184, 0.008600786328315735, -0.00015604561485815793, -0.04381532594561577, 0.03640458732843399, -0.033835168927907944, -0.04998192936182022, -0.007207891903817654, 0.004956270568072796, 0.011846366338431835, 0.011312197893857956, 0.011616471223533154, 0.008566978387534618, -0.027993125841021538, 0.01806706003844738, 0.012238540686666965, -0.0111228721216321, -0.011704372242093086, 0.010412901639938354, 0.006085461936891079, 0.023476360365748405, 0.0484132319688797, -0.013584103435277939, 0.026789557188749313, -0.011332483030855656, 0.03294263407588005, -0.0217589084059, 0.007579781115055084, 0.01487557403743267, -0.030589589849114418, 0.04002881795167923, 0.006595964543521404, -0.009134954772889614, -0.005487058311700821, -0.027222299948334694, 0.0020741282496601343, -0.01111611071974039, -0.0007374396664090455, 0.07059136033058167, 0.009202570654451847, -0.0222457442432642, 0.02649204432964325, -0.00537211075425148, -0.028723381459712982, -0.0078029148280620575, 0.0005489594186656177, -0.004033308941870928, -0.016498364508152008, 0.023882057517766953, 0.01279299333691597, -0.0010328381322324276, -0.00789081584662199, -0.01007482036948204, 0.005290971137583256, -0.002794241299852729, -0.0029041178058832884, -0.007904338650405407, 0.02294895425438881, 0.04054269939661026, -0.001905087730847299, 0.003276007017120719, -0.014023609459400177, -0.03213123977184296, -0.003985977731645107, 0.029291357845067978, -0.03313196077942848, -0.03267217054963112, -0.019311198964715004, 0.03018389269709587, 0.01747203804552555, -0.015998004004359245, -0.024896301329135895, -0.007282269652932882, 0.02294895425438881, -0.002964972285553813, -0.00038160919211804867, -0.02255677990615368, -0.024314802139997482, 0.029967520385980606, -0.04019109532237053, -0.00730931619182229, -0.0022228839807212353, -0.007370170671492815, -0.005493819713592529, -0.013672004453837872, 0.02834472991526127, 0.00028441083850339055], "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7": [-0.0206927340477705, 0.00804640632122755, -0.0004791583342012018, -0.0046655344776809216, -0.005701552610844374, 7.505734538426623e-05, -0.008433186449110508, -0.011416918598115444, -0.0002546877658460289, -0.017156459391117096, -0.0012432216899469495, 0.00879924651235342, 0.01143763866275549, 0.023717906326055527, 0.00344475987367332, 0.014241794124245644, 0.020043496042490005, 0.012066156603395939, 0.022391803562641144, -0.0149462865665555, 0.007189965341240168, 0.020305953919887543, 0.0062195616774261, -0.017543239519000053, -0.007134710904210806, 0.0062022944912314415, 0.02261281944811344, -0.02219841256737709, 0.009835264645516872, 0.0024121953174471855, 0.010215138085186481, -0.019919173792004585, -0.00965568795800209, -0.007335007656365633, -0.03235138952732086, -0.035141732543706894, -0.004596466664224863, 0.0004025361849926412, 0.01392408274114132, -0.013302471488714218, 0.007072549778968096, 0.0065200068056583405, -0.007238312624394894, 0.009710942395031452, -0.018137222155928612, 0.03373274579644203, -0.002191178034991026, -0.013033106923103333, -0.03143969550728798, 0.0392858050763607, 0.017349848523736, 0.020637478679418564, -0.01168628316372633, -0.001997788203880191, 0.009496832266449928, -0.016990695148706436, -0.0052111707627773285, 0.011548147536814213, -0.005117929074913263, -0.02320680394768715, 0.003194388933479786, -0.01551264338195324, -0.02269570156931877, -0.03337359428405762, -0.017819510772824287, -0.017073577269911766, 0.00253997091203928, 0.017032137140631676, 0.005459814798086882, -0.018081968650221825, 0.03859512507915497, 0.01801289990544319, -0.03884376958012581, 0.0023327672388404608, 0.008626576513051987, -0.034340545535087585, -0.015733661130070686, 0.012991665862500668, -0.020623665302991867, 0.012715394608676434, 0.003337704809382558, -0.01747417077422142, -0.01998824067413807, 0.026370111852884293, 0.011154460720717907, -0.008743992075324059, 0.0021566441282629967, 0.027240367606282234, -0.01931137591600418, -0.0033584251068532467, 0.032296136021614075, 0.009683315642178059, 0.014393744058907032, -0.010905816219747066, -0.021272903308272362, 0.04058428108692169, -0.018289171159267426, 0.009151492267847061, 0.013820480555295944, -0.02102425880730152, 0.006167760584503412, 0.0031235944479703903, 0.015567897818982601, 0.011921114288270473, -0.0029008504934608936, -0.0025037103332579136, -0.0032755436841398478, 0.02429807558655739, -0.0020392287988215685, -0.03541800379753113, -0.035224612802267075, 0.027944859117269516, -0.00725212600082159, -0.0355285108089447, 0.015139676630496979, -0.016659170389175415, 0.029754437506198883, 0.016659170389175415, 0.00593638326972723, -0.017322221770882607, 0.0017448270227760077, -0.005186996888369322, 0.016230948269367218, -0.021466294303536415, 0.013848107308149338, -0.007107083685696125, 0.0021946316119283438, -0.009324162267148495, -0.04113682359457016, -0.022143159061670303, 0.03160545602440834, 0.023151550441980362, 0.004371996037662029, 0.008847594261169434, -0.01701832376420498, 0.020637478679418564, -0.0026366659440100193, 0.006437125150114298, -0.01592705026268959, -0.0186068844050169, 0.026121467351913452, 0.02240561693906784, 0.00280070211738348, -0.007183058187365532, -0.008605856448411942, 0.041247330605983734, 0.03331834077835083, 0.03072138875722885, -0.03574952855706215, -0.008833779953420162, 0.0019252668134868145, -0.026743078604340553, 0.007417889311909676, -0.01998824067413807, -0.015747474506497383, -0.0022567925043404102, -0.0422142818570137, -0.008868314325809479, -0.0005011737230233848, -0.014739083126187325, 0.0005654931883327663, 0.02174256555736065, -0.028290199115872383, -0.002795521868392825, 0.01064335834234953, 0.022433243691921234, 0.005677378736436367, -0.006851532496511936, -0.00680318521335721, -0.010456874966621399, 0.004900365136563778, 0.030417488887906075, -0.0075422110967338085, 0.02240561693906784, 0.01763993315398693, 0.007210685405880213, 0.003139134729281068, -0.0035224612802267075, -0.020375020802021027, -0.023068668320775032, 0.007666533347219229, -0.010228951461613178, 0.0068998802453279495, 0.015112049877643585, -0.028290199115872383, -0.0022757863625884056, 0.03925817832350731, -0.031218675896525383, 0.014124379493296146, -0.03273817151784897, 0.014255608431994915, 0.029920199885964394, 0.010429248213768005, -0.007335007656365633, -0.6175220012664795, -0.004969432950019836, -0.021977396681904793, -0.038235973566770554, -0.019449511542916298, 0.023883668705821037, 0.011555054225027561, -0.0029871852602809668, -0.044424451887607574, 0.00612286664545536, -0.0072659398429095745, -0.00788064394146204, 0.011886579915881157, 0.008895941078662872, 0.0014892759500071406, -0.03867800533771515, -0.02554129809141159, -0.022723328322172165, -0.013406073674559593, 0.0065510873682796955, -0.019339002668857574, 0.005207717418670654, -0.0006155673763714731, -0.008329585194587708, 0.012846623547375202, 0.004327102098613977, 0.029201894998550415, -0.0048623778857290745, 0.011776071973145008, 0.025223584845662117, -0.024229008704423904, 0.01827535778284073, -0.011472173035144806, -0.0005093755316920578, 0.043706148862838745, 0.02558273822069168, -0.020084936171770096, 0.010809121653437614, 0.02432570420205593, 0.02128671668469906, -0.023648837581276894, -0.028704605996608734, 0.015623152256011963, -0.003108054166659713, 0.010505222715437412, -0.0018665591487661004, 0.0208999365568161, 0.0022740596905350685, -0.006454392336308956, -0.01458713412284851, -0.007922085002064705, -0.007887550629675388, -0.023344939574599266, -0.01143763866275549, 0.012535817921161652, 0.0068273586221039295, 0.0028058821335434914, -0.022668074816465378, 0.0034585734829306602, -0.026991723105311394, -0.0019857012666761875, 0.0026073120534420013, -0.0032703636679798365, -0.007217592094093561, 0.0009393230429850519, 0.007590558845549822, -0.0208999365568161, 0.00946920458227396, 0.017529424279928207, -0.03157782927155495, 0.02875986136496067, 0.014158912934362888, -0.02964392863214016, -0.009013356640934944, 0.014752896502614021, 0.011299503035843372, -0.01660391502082348, -0.011023231782019138, -0.00753530440852046, -0.00741098215803504, 0.003132227808237076, 0.015015354380011559, -0.017584679648280144, -0.004693161696195602, 0.022764770314097404, 0.02269570156931877, -0.00042455154471099377, -0.00022684478608425707, -0.005791340954601765, 0.0065200068056583405, 0.00915839895606041, 0.02909138612449169, -0.022005023434758186, -0.02642536722123623, -0.0009548632660880685, 0.021190021187067032, -0.01751561090350151, 0.027903418987989426, -0.0042683943174779415, -0.023386379703879356, -0.010650265030562878, 0.004517038818448782, -0.012597979046404362, -0.0006336977239698172, 0.03226850926876068, 0.019573833793401718, -0.021977396681904793, 0.024436211213469505, 0.03859512507915497, -0.017239339649677277, -0.01580272801220417, -0.021977396681904793, -0.008626576513051987, -0.004810577258467674, 0.025389349088072777, -0.03541800379753113, 0.012363148853182793, 0.015346880070865154, -0.008156915195286274, 0.005155916325747967, 0.026356298476457596, 0.017529424279928207, 0.0067790113389492035, -0.017501797527074814, 0.007286660373210907, 0.013654717244207859, 0.02504400908946991, -0.01902129128575325, -0.018924595788121223, -0.018137222155928612, 0.003144314745441079, 0.01020132377743721, 0.004330555442720652, -0.01020132377743721, 0.0039196014404296875, -0.0111820874735713, 0.015526456758379936, -0.006602888461202383, 0.005780980456620455, -0.022060276940464973, -0.010353273712098598, 0.007569838315248489, 0.0013364632613956928, -0.02290290594100952, -0.019117986783385277, -0.026936469599604607, -0.011506706476211548, 0.01034636702388525, 0.002196358283981681, 0.028980877250432968, -0.020457902923226357, 0.03704800456762314, -0.011278782971203327, -0.008419373072683811, 0.031798847019672394, 0.0011845139088109136, -0.014683828689157963, -0.012611792422831059, -0.0023310405667871237, -0.0005961420247331262, -0.00855060201138258, 0.031494949012994766, -0.02349688857793808, -0.008819966576993465, -0.019131800159811974, -0.012017808854579926, -0.022723328322172165, 0.01873120665550232, -0.025817569345235825, -0.034810204058885574, -0.002448455896228552, -0.010981790721416473, -0.000363037979695946, 0.003567355452105403, -0.03884376958012581, 0.022861463949084282, 0.008060220628976822, 0.0036433301866054535, -0.03934105858206749, -0.011064672842621803, 0.021562987938523293, -0.006485472898930311, 0.007832296192646027, -0.005048861261457205, 0.03696512430906296, -0.0006932687247171998, 0.010270392522215843, -0.0033981390297412872, -0.01815103553235531, 0.030970031395554543, -0.017985273152589798, 0.005742993205785751, -0.016880186274647713, 0.0003200864011887461, -0.00765962665900588, 0.02454672008752823, 0.00013511402357835323, 0.011962554417550564, -0.008205262944102287, 0.03102528676390648, 0.014628574252128601, -0.00655454071238637, 0.004164792597293854, -0.029036132618784904, 0.006426765117794275, -0.02386985532939434, 0.0160928126424551, 0.0013882641214877367, 0.026273416355252266, 0.010256578214466572, 0.0056083109229803085, -0.0045273988507688046, -0.03005833737552166, -0.022516125813126564, 0.030003082007169724, 0.006043438334017992, 0.010615731589496136, 0.0006077972357161343, 0.00922056008130312, -0.008156915195286274, 0.005553056485950947, 0.010850561782717705, 0.02282002381980419, 0.011914207600057125, -0.004731148947030306, -0.002001241547986865, 0.01751561090350151, -0.002113476861268282, -0.029754437506198883, -0.017487984150648117, -0.01755705289542675, 0.006703036837279797, -0.01538832113146782, 0.017653746530413628, 0.007915177382528782, 0.009006449952721596, 0.019131800159811974, 0.007466236595064402, 0.05105496942996979, -0.011230435222387314, 0.005218077450990677, 0.015277812257409096, 0.028649352490901947, -0.006727210246026516, -0.022336548194289207, 0.028455961495637894, 0.024090873077511787, 0.003964495845139027, -0.022971972823143005, 0.000485201773699373, -0.012957132421433926, 0.01730840839445591, -0.04033563658595085, 0.017874764278531075, 0.03583240881562233, -0.0007191691547632217, 0.03586003556847572, -0.0023241338785737753, 0.02922952175140381, 0.03646783530712128, 0.01951858028769493, -0.0275857076048851, 0.014614760875701904, -0.0072659398429095745, 0.0002797248598653823, -0.016576288267970085, -0.022060276940464973, -0.010774587281048298, -0.01990536041557789, 0.01822010427713394, -0.018745020031929016, -0.01634145714342594, -0.012142131105065346, 0.011195901781320572, 0.016189508140087128, -0.023013412952423096, -0.003764198860153556, 0.006368057336658239, 0.00922056008130312, 0.0033791454043239355, -0.027447570115327835, -0.020761800929903984, 0.018206290900707245, 0.0149462865665555, 0.018413493409752846, 0.009234374389052391, -0.0046033733524382114, 0.006582167930901051, 0.0003226764383725822, -0.0011447998695075512, 0.0016179148806259036, 0.019546207040548325, 0.01914561353623867, 0.00741098215803504, -0.000871118507348001, 0.0010524216340854764, 0.020996632054448128, -0.00452394550666213, 0.019214680418372154, 0.0010006207739934325, 0.013855013996362686, 0.008343398571014404, -0.005231890827417374, 0.006191934458911419, 0.03240664303302765, -0.016286203637719154, 0.016659170389175415, -0.007321194279938936, -0.00688951974734664, 0.00942776445299387, -0.0005702415946871042, -0.026784518733620644, -0.0011085392907261848, 0.013115988112986088, 0.000284904963336885, -0.009255094453692436, 0.0009255094337277114, -0.01960146054625511, 0.030804269015789032, 0.020513156428933144, -0.02578994259238243, -0.0223641749471426, -0.02900850400328636, 0.012052343226969242, 0.016272390261292458, 0.05669090524315834, -0.002258519409224391, -0.009683315642178059, -0.007749415002763271, -0.012736114673316479, -0.005473628640174866, -0.00855060201138258, 0.018758833408355713, 0.0004593013145495206, -0.034423425793647766, -0.004890005104243755, 0.02776528336107731, -0.005635938141494989, 0.01617569476366043, -0.012432216666638851, -0.0008452180190943182, -0.009199840016663074, 0.010042468085885048, -0.021673496812582016, 0.0007139890803955495, -0.006575261242687702, 0.020761800929903984, 0.017460357397794724, -0.013185055926442146, 0.003978309221565723, 0.01478052418678999, 0.03146732226014137, -0.009227467700839043, -0.013703064993023872, -0.022226039320230484, 0.012066156603395939, 0.024463839828968048, 0.05663565173745155, -0.011720817536115646, -0.0009436397813260555, 0.01285353023558855, 0.03265528753399849, 0.015775101259350777, 0.0071761514991521835, 0.004869284573942423, 0.025762315839529037, 0.00959352683275938, -0.010456874966621399, 0.011119927279651165, 0.010242764838039875, -0.026052400469779968, -0.006378417834639549, 0.003594982670620084, -0.009676408022642136, 0.028000114485621452, -0.014752896502614021, -0.014435184188187122, -0.005680832080543041, 0.02194976806640625, 0.02174256555736065, -0.0392858050763607, -0.015402134507894516, -0.0005749900010414422, -0.0017482804832980037, -0.014062218368053436, 0.0005957103567197919, 0.028041554614901543, -0.017294595018029213, 0.0097178490832448, -0.01660391502082348, -0.03605342656373978, -0.013551115989685059, -0.033677492290735245, -0.0010334280086681247, -0.016023745760321617, -0.013744506053626537, -0.024560533463954926, -0.00028663166449405253, 0.00930344220250845, 0.021853074431419373, -0.012611792422831059, -0.003988669253885746, 0.009351789020001888, 0.019076544791460037, -0.008543695323169231, -0.03298681229352951, 0.004392716567963362, -0.03837410733103752, -0.028732232749462128, 0.013627090491354465, 0.019960613921284676, 0.009441577829420567, -0.0032600034028291702, -0.00042239317554049194, 0.020167818292975426, -0.006067612208425999, 0.0021013899240642786, -0.034174781292676926, 0.015263998880982399, 0.005128289107233286, 0.004903818480670452, 0.007590558845549822, 0.0033843256533145905, -0.009821451269090176, 0.024187566712498665, 0.004865831229835749, 0.0023603944573551416, -0.01877264678478241, 0.008371025323867798, -0.01718408614397049, 0.0009747202857397497, 0.01058119721710682, -0.057630229741334915, 0.005404560826718807, 0.02145248092710972, -0.00965568795800209, -0.006509646773338318, 0.025389349088072777, 0.008336491882801056, 0.019173240289092064, 0.0006829085759818554, 0.0018458387348800898, 0.007859923876821995, -0.011990182101726532, 0.02265426144003868, 0.011340944096446037, 0.013399166986346245, -0.00427530100569129, -0.02023688517510891, 0.05293361470103264, -0.001994334626942873, -0.025444602593779564, -0.01747417077422142, 0.009579713456332684, -0.003594982670620084, 0.03478257730603218, 0.0006595981540158391, -0.017860950902104378, -0.02128671668469906, 0.009634967893362045, -0.008205262944102287, 0.01089200284332037, -0.012646326795220375, -0.004579199478030205, -0.0051213824190199375, 0.003451666794717312, 0.013040013611316681, -0.010519036091864109, -0.010850561782717705, -0.03047274425625801, -0.0028335093520581722, 0.02834545262157917, 0.018758833408355713, 0.011589588597416878, 0.010843655094504356, -0.0013977609341964126, -0.014448998495936394, 0.010132255963981152, -0.01064335834234953, -0.055088531225919724, -0.045722927898168564, 0.009123865514993668, 0.013385352678596973, 0.012169758789241314, 0.01918705366551876, 0.0029871852602809668, 0.023759346455335617, -0.0052595180459320545, -0.006388777866959572, 0.023842228576540947, 0.014545693062245846, -0.018537815660238266, -0.032213255763053894, 0.012715394608676434, 0.02320680394768715, 0.0032910839654505253, 0.01722552627325058, 0.010981790721416473, 0.014835778623819351, 0.02801392786204815, 0.0009039257420226932, -0.03119104914367199, -0.010664079338312149, -0.04000410810112953, -0.0024363689590245485, 0.013558022677898407, -0.007459329906851053, 0.012874250300228596, -0.01571984775364399, -0.004157885909080505, 0.006941320840269327, -0.0006539863534271717, 0.0034603001549839973, -0.005718819331377745, 0.008163821883499622, -0.026604942977428436, 0.02458816207945347, 0.014891032129526138, 0.01051212940365076, -0.006005451083183289, -0.017695188522338867, -0.020126376301050186, 0.006654689088463783, 0.009862891398370266, 0.0035535418428480625, 0.020098749548196793, -0.007569838315248489, 0.010560477152466774, 0.0005922569544054568, 0.01538832113146782, -0.03312494978308678, -1.1270743016211782e-05, 0.015554084442555904, 0.010712426155805588, 0.003715851344168186, -0.019504766911268234, -0.009075517766177654, -0.009931959211826324, -0.001681802561506629, -0.0021272904705256224, -0.026729265227913857, 0.015471202321350574, -0.021134767681360245, -0.01592705026268959, 0.003740024985745549, -0.018164848908782005, 0.062437351793050766, -0.003712398000061512, 0.021424852311611176, 0.03663359582424164, -0.004202779848128557, -0.009034077636897564, 0.011444546282291412, -0.002707460429519415, 0.034837834537029266, 0.008688737638294697, 0.03257240727543831, -0.03157782927155495, -0.0003222447703592479, -0.012494377791881561, 0.007901364006102085, -0.004012843128293753, -0.04058428108692169, 0.022101717069745064, 0.012342427857220173, 0.030168844386935234, -0.015277812257409096, 0.029063759371638298, -0.03782156482338905, -0.019366631284356117, -0.017874764278531075, -0.024574346840381622, 0.008150008507072926, 0.0037020377349108458, -0.02458816207945347, -0.007183058187365532, -0.009918145835399628, 0.03782156482338905, -0.009938865900039673, -0.006692676339298487, -0.006150493863970041, 0.010422341525554657, -0.03152257576584816, 0.004976340103894472, 0.003788372501730919, 0.02603858709335327, 0.0025451509281992912, 0.005197356920689344, 0.015222557820379734, 0.0016809392254799604, 0.007279753219336271, -0.01973959617316723, 0.010885096155107021, 0.0284283347427845, 0.012383868917822838, 0.0008296777959913015, -0.024353330954909325, 0.011113019660115242, 0.011907300911843777, 0.018841713666915894, -0.001025657868012786, -0.005224984139204025, -0.008757805451750755, 0.004589559976011515, 0.01848256215453148, 0.010111535899341106, -0.015415947884321213, -0.01490484643727541, -0.005908756051212549, 0.02617672272026539, -0.0007739918073639274, 0.002315500285476446, -0.022046463564038277, -0.041993264108896255, 0.017128830775618553, 0.02370409294962883, 0.007846109569072723, 0.025555111467838287, 0.0052284374833106995, -0.006140133365988731, 0.018068155273795128, 0.02909138612449169, -0.008633483201265335, 0.020167818292975426, -0.0011378931812942028, -0.01450425200164318, -0.039948854595422745, -0.0018216650933027267, -0.03577715530991554, -0.01502916868776083, 0.027834350243210793, -0.017750442028045654, -0.021521547809243202, -0.04016987234354019, -0.013696158304810524, 0.02909138612449169, -0.0013615003554150462, -0.0020944830030202866, -0.0041786059737205505, -0.016714423894882202, 0.013164335861802101, -0.009731662459671497, -0.021424852311611176, 0.0074040754698216915, 0.0046655344776809216, -0.0014676922000944614, 0.013026200234889984, 0.004969432950019836, 0.009607340209186077, -0.026604942977428436, -0.013378445990383625, 0.016659170389175415, -0.014255608431994915, -0.010857469402253628, -0.006188481114804745, 0.034091901034116745, -0.013454420492053032, -0.022668074816465378, -0.006081426050513983, -0.005314772482961416, -0.01272920798510313, 0.031246304512023926, -0.005953650455921888, -0.015830354765057564, 0.005763713736087084, 0.032627660781145096, 0.03038986213505268, -0.0009255094337277114, -0.011251156218349934, -0.019242309033870697, 0.026964096352458, -0.0034171328879892826, 0.004154432099312544, -0.00701384199783206, 0.012176665477454662, 0.006475112866610289, 0.029864946380257607, -0.009994120337069035, -0.019131800159811974, -0.012577258981764317, -0.04365089163184166, -0.017709001898765564, -0.012383868917822838, 0.020706547424197197, 0.023427821695804596, 0.02442239783704281, -0.016161881387233734, 0.024657228961586952, -0.013261030428111553, 0.004137165378779173, -0.02015400491654873, -0.0037849191576242447, 0.02287527732551098, 0.017833324149250984, -0.014379930682480335, -0.013433700427412987, -0.021300530061125755, -0.03787681832909584, 0.029146641492843628, 0.017349848523736, 0.008025686256587505, 0.020927563309669495, -0.024601975455880165, 0.0066719562746584415, -0.021977396681904793, 0.007928991690278053, -0.003546635154634714, -0.019753409549593925, 0.012611792422831059, -0.033180203288793564, -0.013302471488714218, -0.012107597663998604, 0.017211712896823883, -0.028621723875403404, 0.00038591670454479754, 0.005062674637883902, 0.009510645642876625, 0.019711969420313835, -0.007894457317888737, 0.00831577181816101, -0.003598436014726758, -0.02884274162352085, 0.0008443546830676496, -0.013551115989685059, -0.009855984710156918, 0.051358867436647415, 0.004675894510000944, 0.02399417757987976, -0.02500256896018982, 0.003235829761251807, -0.05448073521256447, -0.008875221014022827, 0.013937896117568016, -0.014041497372090816, 0.0029319310560822487, -0.01465620193630457, 0.04718716815114021, -0.028732232749462128, 0.02199121005833149, 0.006944774184376001, -0.01973959617316723, -0.02106570079922676, 0.024436211213469505, 0.02875986136496067, -0.01346132718026638, 0.008543695323169231, 0.008668017573654652, -0.018869342282414436, -0.012273360043764114, -0.012570352293550968, -0.020720360800623894, -0.015250185504555702, 0.023386379703879356, -0.01032564602792263, -0.011299503035843372, -0.010194417089223862, -0.015360694378614426, 0.024643415585160255, -0.012722301296889782, 0.019380444660782814, 0.17084628343582153, -0.025403162464499474, 0.01335772592574358, 0.04340224713087082, -0.015374507755041122, 0.0017750442493706942, -0.00753530440852046, -0.023358752951025963, 0.016037559136748314, 0.042960215359926224, -0.026397738605737686, 0.026080027222633362, -0.03014121763408184, -0.004596466664224863, 0.02997545525431633, -0.018468748778104782, -0.048513270914554596, -0.033926136791706085, -0.03489308804273605, 0.008371025323867798, 0.009821451269090176, 0.0035880757495760918, -0.007839202880859375, -0.014013870619237423, 0.01032564602792263, -0.011817512102425098, -0.029036132618784904, -0.0005370026919990778, 0.02884274162352085, 0.0012984758941456676, -0.02207409031689167, -0.0032133825588971376, -0.005625578109174967, 0.018910782411694527, -0.01986391842365265, -0.015125863254070282, 0.02244705706834793, 0.011976368725299835, 0.053541410714387894, 0.00606070552021265, -0.015857983380556107, -0.02667401172220707, 0.016755864024162292, 0.0033463381696492434, -0.0030096324626356363, 0.0179714597761631, -0.008626576513051987, -0.025265026837587357, -0.00324618979357183, 0.03406427428126335, -0.023676466196775436, -0.020167818292975426, 0.021839259192347527, 0.01747417077422142, 0.006858439184725285, -0.025886638090014458, 0.004451424349099398, -0.009586620144546032, 0.030113590881228447, 0.015664592385292053, -0.007549118250608444, 0.03348410129547119, -0.02031976729631424, -0.009165306575596333, 0.0029181174468249083, -0.01047068927437067, -0.01507060881704092, -0.011548147536814213, 0.007307380437850952, -0.01600993238389492, -0.0019528940320014954, -0.028290199115872383, 0.0026401192881166935, 0.01377903949469328, -0.024063246324658394, -0.030831895768642426, 0.018206290900707245, 0.01373069267719984, 0.021645870059728622, 0.033290714025497437, 0.0071278042159974575, 0.0067962780594825745, -0.02805536799132824, -0.013267937116324902, -0.0015220831846818328, -0.029699184000492096, 0.027240367606282234, 0.022143159061670303, -8.76838166732341e-05, -0.031246304512023926, -0.030417488887906075, -0.013102174736559391, -0.0036087960470467806, -0.002170457737520337, -0.0019252668134868145, 0.015485015697777271, 0.008136195130646229, 0.030168844386935234, -0.023980364203453064, 0.011548147536814213, -0.01910417340695858, 0.034837834537029266, 0.017418917268514633, -0.01478052418678999, 0.004468691069632769, -0.009579713456332684, 0.0009954406414180994, 0.022709514945745468, 0.024104686453938484, -0.025859009474515915, -0.023814601823687553, -0.019325189292430878, -0.0034637534990906715, 0.010104629211127758, -0.005660112015902996, -0.006879159715026617, 0.01747417077422142, -0.012411495670676231, -0.011271876282989979, 0.0006423312006518245, -0.006464752368628979, -0.00520426407456398, -0.00054218276636675, 0.010152976959943771, -0.0021635510493069887, -0.02027832716703415, -0.021341972053050995, 0.016230948269367218, 0.004244220443069935, -0.015443575568497181, 0.029754437506198883, -0.01822010427713394, 0.03445105254650116, -0.00536312023177743, 0.007638906128704548, 0.02525121346116066, 0.007735601160675287, 0.00011989750055363402, -0.007590558845549822, 0.01047068927437067, -0.01994680054485798, 0.0048140306025743484, -0.016659170389175415, -0.007549118250608444, 0.0033532450906932354, -0.026895027607679367, -0.00022425473434850574, -0.0011275329161435366, 0.0013615003554150462, -0.04232478886842728, -0.001857925672084093, 0.005967463832348585, -0.008536788634955883, -0.016410525888204575, 0.007777042221277952, -0.021079514175653458, -0.013081454671919346, -0.051193103194236755, 0.020913749933242798, 0.008854500949382782, -0.022971972823143005, -0.0037918260786682367, 0.018427306786179543, 0.002883583540096879, -0.012812089174985886, -0.00507994182407856, -0.17592968046665192, 0.012176665477454662, 0.01730840839445591, -0.036854613572359085, 0.019670529291033745, 0.00917911995202303, 0.043623264878988266, 0.013392259366810322, -0.008978823199868202, -0.004192419815808535, 0.014324676245450974, 0.015236372128129005, -0.028000114485621452, -0.0006777284434065223, -0.004037017002701759, 0.010014841333031654, -0.014670015312731266, 0.025941891595721245, 0.020140189677476883, 0.029782064259052277, 0.013343912549316883, -0.03558376431465149, 0.028455961495637894, 0.020499343052506447, -0.014407557435333729, 0.0072659398429095745, -0.01763993315398693, 0.036357324570417404, 0.004430703818798065, 0.0014530152548104525, 0.0031494947616010904, -0.012867343612015247, 0.017985273152589798, -0.016921628266572952, 0.012446030043065548, -0.001001484110020101, -0.0062195616774261, -0.006295536179095507, -0.004717335570603609, -0.0038919744547456503, -0.0008637800347059965, 0.0048623778857290745, -0.006751384120434523, 0.0021756377536803484, -0.007238312624394894, 0.017709001898765564, 0.016230948269367218, -0.006319710053503513, 0.02048552967607975, -0.011555054225027561, 0.014960099942982197, -0.03467207029461861, 0.010746960528194904, -0.005774073768407106, 0.01625857688486576, -0.0082536106929183, -0.012860436923801899, 0.012577258981764317, -0.01605137251317501, -0.004786403384059668, -0.002569324802607298, -0.022391803562641144, 0.02165968343615532, 0.008578229695558548, 0.0014581953873857856, -0.034810204058885574, -0.03478257730603218, -0.001566113904118538, -0.02098281867802143, 0.010822935029864311, -0.006392231211066246, -0.03784919157624245, 0.009966493584215641, -0.037517666816711426, 0.01151361409574747, -0.0026401192881166935, -0.029367657378315926, 0.01268776785582304, 0.002369027817621827, -0.018551629036664963, 0.001944260555319488, 0.04342987760901451, 0.01015988364815712, -0.003199568949639797, 0.025859009474515915, -0.021687310189008713, 0.006613248493522406, 0.0032979906536638737, 0.005480535328388214, -0.014082938432693481, 0.007763228379189968, -0.050447169691324234, -0.0021739110816270113, -0.02909138612449169, 0.010014841333031654, 0.007162338122725487, 0.004489411599934101, -0.019504766911268234, 0.0047553228214383125, -0.02750282548367977, 0.0016740324208512902, -0.0035777154844254255, -0.041413094848394394, 0.008909755386412144, 0.02475392445921898, -0.004997060168534517, -0.007438609376549721, 0.014960099942982197, 0.04779496416449547, -0.0014633755199611187, -0.0020288685336709023, 0.03226850926876068, 0.006523460149765015, 0.019131800159811974, 0.006848079152405262, 0.04243529960513115, 0.017322221770882607, 0.0028110621497035027, 0.017584679648280144, -0.0057498998939991, 0.014283235184848309, 0.010001027025282383, -0.01225263997912407, 0.01852400228381157, 0.029533419758081436, -0.026977909728884697, -0.11255300045013428, -0.021038072183728218, 0.016438152641057968, 0.04503225162625313, -0.021839259192347527, 0.0013753139646723866, -0.008267424069344997, 0.0167282372713089, 0.008371025323867798, 0.03160545602440834, -0.0020599490962922573, -0.0013632270274683833, 0.014324676245450974, 0.004085364285856485, -0.005186996888369322, 0.011700096540153027, -0.004019749816507101, -0.02458816207945347, -0.0009686768753454089, 0.032213255763053894, 0.023427821695804596, -0.020347394049167633, -0.01848256215453148, 0.009766196832060814, -0.020347394049167633, -0.0054701752960681915, -0.02467104233801365, 0.020292140543460846, -0.0021514641121029854, 0.03870563209056854, 0.03215799853205681, -0.006143586710095406, 0.01398624386638403, -0.001073142047971487, -0.006077972240746021, -0.01020132377743721, 0.003280723700299859, -0.019532393664121628, 0.01352348830550909, -0.011672469787299633, -0.014110565185546875, -0.0056670187041163445, 0.04213140159845352, -0.02784816548228264, 0.02190832793712616, -0.023400193080306053, -0.026024773716926575, 0.013012386858463287, -0.009745475836098194, -0.02428426221013069, -0.04290496185421944, -0.010429248213768005, -0.0029302043840289116, 0.008640390820801258, 0.022806210443377495, -0.015540270134806633, 0.019490951672196388, 0.013827387243509293, -0.01567840576171875, 0.0024639961775392294, -0.019490951672196388, -0.0046171871945261955, -0.0003140429616905749, 0.0036053427029401064, 0.006703036837279797, -0.006188481114804745, -0.03749004006385803, -0.011188995093107224, 0.03201986476778984, -0.020927563309669495, -0.0194356981664896, 0.023054854944348335, -0.025320280343294144, 0.022212225943803787, -0.03309732303023338, -0.010056281462311745, -0.0043167416006326675, -0.02052696980535984, 0.01237696222960949, -0.022129345685243607, -0.007010388653725386, -0.048181746155023575, -0.0038090930320322514, 0.00775632169097662, 0.036219190806150436, 0.007107083685696125, -0.01531925331801176, 0.003954135347157717, 0.014158912934362888, -0.014863405376672745, 0.01291569136083126, 0.01231480110436678, 0.014476625248789787, -0.03936868533492088, -0.003142588073387742, 0.022101717069745064, 0.008281237445771694, -0.0066408757120370865, -0.013930989429354668, -0.00991123914718628, -0.05039191618561745, -0.005977823864668608, -0.05823802575469017, 0.02922952175140381, -0.00027476061950437725, 0.0029319310560822487, 0.011472173035144806, 0.004948712885379791, 0.012321707792580128, -0.005570323672145605, -0.0017448270227760077, -0.02834545262157917, -0.03215799853205681, 0.011195901781320572, 0.0008219076553359628, 0.007369541563093662, -0.0039506820030510426, -0.028027741238474846, 0.01576128788292408, 0.004738055635243654, 0.013115988112986088, 0.01352348830550909, -0.009040984325110912, 0.005497802514582872, 0.024063246324658394, 0.026729265227913857, -0.015098236501216888, -0.01156196091324091, -0.0016110080759972334, 0.008433186449110508, -0.01902129128575325, -0.0015557537553831935, 0.03022409975528717, -0.01964290253818035, -0.006485472898930311, 0.011251156218349934, 0.004520492162555456, -0.010463781654834747, -0.007970431819558144, 0.003249643137678504, 0.01964290253818035, 0.019808664917945862, -0.02275095507502556, -0.03591529279947281, 0.016065185889601707, -0.016244763508439064, 0.0012225012760609388, -0.008522975258529186, -0.020223071798682213, 0.015263998880982399, 0.029671557247638702, 0.006357697304338217, 0.027903418987989426, 0.0034102259669452906, -0.0007541347877122462, -0.029450539499521255, 0.028290199115872383, -0.020015867426991463, 0.0018751926254481077, 0.0003421017900109291, 0.02304104156792164, -0.018952222540974617, 0.020678920671343803, -0.007569838315248489, 0.02203265018761158, 0.01421416737139225, -0.014476625248789787, -0.009952680207788944, -0.012266453355550766, -0.0188140869140625, -0.008626576513051987, -0.032213255763053894, -0.00645784568041563, -0.003456846810877323, 0.0029509246814996004, 0.022060276940464973, 0.02737850323319435, 0.02432570420205593, -0.02228129468858242, 0.017957646399736404, 0.006191934458911419, 0.02261281944811344, 0.0032841770444065332, 0.0008469447493553162, -0.016078999266028404, 0.015098236501216888, 0.014158912934362888, -0.008951195515692234, -0.018717393279075623, 0.013620183803141117, -0.0023085935972630978, 0.010146070271730423, -0.005843141581863165, 0.009455391205847263, -0.018040526658296585, -0.027544265612959862, 0.008633483201265335, 0.027710027992725372, -0.010056281462311745, -0.015788914635777473, 0.015263998880982399, 0.00810856744647026, 0.009869798086583614, 0.019919173792004585, -0.00422350037842989, -0.01519493106752634, -0.029947828501462936, 0.020844683051109314, -0.011907300911843777, -0.0434851311147213, 0.0013943075900897384, 0.020803242921829224, -0.016313830390572548, 0.009773103520274162, 0.006295536179095507, 0.007873737253248692, -0.022170785814523697, 0.002940564416348934, -0.0036778640933334827, -0.023593584075570107, -0.009517552331089973, 0.023110108450055122, 0.015595524571835995, 0.021480107679963112, 0.026784518733620644, 0.014476625248789787, 0.03406427428126335, 0.0342852883040905, 0.03608105331659317, 0.018551629036664963, 0.00037836242699995637, -0.009945773519575596, -0.01755705289542675, 0.006564900744706392, -0.017860950902104378, -0.032047491520643234, -0.004834750667214394, 0.01580272801220417, 0.003280723700299859, -0.004368542693555355, -0.018385866656899452, 0.07127804309129715, -0.004903818480670452, 0.005297505296766758, 0.007272846531122923, -0.0027575346175581217, 0.012259546667337418, -0.00227923970669508, 0.012515097856521606, 0.011403105221688747, -0.03146732226014137, -0.003674410516396165, -0.001209551002830267, 0.022543752565979958, -0.05472937971353531, 0.0028145157266408205, 0.0017370568821206689, -0.03892664983868599, 0.004420343786478043, -0.020886123180389404, 0.002909483853727579, 0.019048918038606644, -0.011485986411571503, 0.03737952932715416, 0.005877675488591194, -0.01784713752567768, -0.0035777154844254255, 0.03713088482618332, -0.01482196431607008, -0.008460814133286476, -0.024132313206791878, -0.011002511717379093, 0.016078999266028404, -0.01605137251317501, 0.0018631058046594262, 0.00886140763759613, -0.002969918306916952, -0.025389349088072777, -0.00236730114556849, 0.04331936687231064, 0.020292140543460846, -0.021632056683301926, -0.0008797519840300083, -0.014096751809120178, -0.015236372128129005, -0.005494349170476198, 0.021549174562096596, -0.018745020031929016, -0.004247673787176609, -0.06569735705852509], "9936a434-0aae-4070-99e6-d1abeb440546": [-0.016074709594249725, 0.010496798902750015, -0.006026317365467548, -0.01580294780433178, -0.005115915555506945, 0.01718893274664879, -0.01309891790151596, -0.03024708479642868, -0.0017248380463570356, -0.0111829973757267, 0.0067736622877418995, 0.01905050128698349, -0.012711657211184502, 0.03633454814553261, 0.010598708875477314, 0.008383850567042828, 0.026836475357413292, 0.004178337287157774, 0.016033945605158806, -0.01637364737689495, 0.010095950216054916, 0.030627552419900894, 0.004120587836951017, -0.017569398507475853, -0.00023396989854518324, 0.023819919675588608, 0.018167274072766304, -0.020083194598555565, 0.02102077379822731, -0.0003806788008660078, 0.0013273864751681685, -0.014974073506891727, -0.013825880363583565, -0.007154128514230251, -0.010741383768618107, -0.01785474829375744, -0.02311333827674389, -0.023425865918397903, 0.01914561726152897, -0.0030080631840974092, 0.010775354690849781, -0.0170394629240036, -0.012351572513580322, -0.00561188068240881, -0.00771124055609107, 0.010510386899113655, -0.004660714417695999, -0.023860683664679527, -0.032013535499572754, 0.040546856820583344, 0.011108262464404106, 0.01775963231921196, -0.0170394629240036, -0.002257321262732148, 0.010951999574899673, -0.011380024254322052, 0.00544202933087945, 0.011617816053330898, -0.008764317259192467, -0.033209290355443954, 0.008037354797124863, -0.025382550433278084, -0.02494773082435131, -0.017977042123675346, -0.02573584020137787, -0.017515046522021294, 0.01116261538118124, 0.004599567968398333, 0.008981727063655853, -0.02115665376186371, 0.03440504148602486, 0.012929066084325314, -0.03092649020254612, -0.026021189987659454, 0.018765151500701904, -0.034486569464206696, -0.0015923541504889727, 0.009518456645309925, -0.00894096214324236, 0.005030989646911621, 0.02686365135014057, -0.012650510296225548, -0.009137989953160286, 0.03225812315940857, 0.016577469184994698, -0.010714207775890827, 0.006162198260426521, 0.02959485724568367, -0.027991462498903275, 0.006488312501460314, 0.030736256390810013, 0.0001483012456446886, 0.012888302095234394, 0.006216550711542368, -0.016604645177721977, 0.02437703125178814, -0.003638210706412792, 0.031198251992464066, 0.0043753646314144135, -0.022094232961535454, -0.0012288728030398488, 0.0177732203155756, -0.0047626253217458725, 0.010028009302914143, -0.007439478766173124, -0.010061979293823242, 0.018615681678056717, 0.02761099673807621, 0.010034803301095963, -0.025504842400550842, -0.030382966622710228, 0.038427114486694336, 0.006518885493278503, -0.003381735645234585, 0.024594441056251526, -0.011760490946471691, 0.020667482167482376, 0.028616514056921005, -0.0005133749800734222, 0.0034989328123629093, 0.0055201612412929535, 0.002517193555831909, 0.01636005938053131, -0.024675969034433365, 0.01650952734053135, -0.0062539177015423775, 0.013452207669615746, -0.01709381490945816, -0.025885310024023056, -0.016577469184994698, 0.0356823205947876, 0.005856466479599476, 0.01119658537209034, -0.00986495241522789, -0.019471731036901474, 0.02110230177640915, -0.0010309962090104818, 0.007976207882165909, -0.00979701243340969, -0.02697235532104969, 0.006284491159021854, 0.011746902950108051, -0.0006259013316594064, -0.0034921388141810894, 0.006233535706996918, 0.03736724331974983, 0.028698043897747993, 0.03935110569000244, -0.037122659385204315, -0.020246252417564392, 0.0005936296074651182, -0.00853331945836544, 0.00772482855245471, -0.010286183096468449, -0.00560508668422699, -0.018248803913593292, -0.03744877129793167, 0.0002883222477976233, -0.01978425681591034, -0.003909972496330738, 0.00038110342575237155, 0.013656029477715492, -0.027094649150967598, -0.014294669032096863, -0.005509969778358936, 0.01585729978978634, 0.0061214338056743145, 0.012514629401266575, -0.011726520955562592, -0.00659361993893981, 0.013717175461351871, 0.022080644965171814, -0.008995315060019493, 0.009212723933160305, 0.007602535653859377, 0.0023252617102116346, 0.0030844961293041706, 0.0029197405092418194, -0.005567719228565693, -0.01708022691309452, -0.007806356996297836, -0.003729930380359292, 0.0045044515281915665, 0.01838468387722969, -0.03367128223180771, -0.001025900710374117, 0.013642441481351852, -0.013030976988375187, 0.01645517535507679, -0.0356823205947876, 0.007317185867577791, 0.03247553110122681, 0.01842544786632061, -0.018208038061857224, -0.6400533318519592, -0.01588447578251362, -0.02246111072599888, -0.03206789121031761, -0.021333299577236176, 0.040519680827856064, 0.01841185986995697, -0.006855190731585026, -0.04535704106092453, 0.006267506163567305, -0.0017868336290121078, -0.0013673014473170042, 0.014634371735155582, -0.0021129478700459003, -0.010761766694486141, -0.037122659385204315, -0.01907767727971077, -0.016047533601522446, -0.004378761630505323, -0.005968567915260792, -0.021306123584508896, 0.007235657423734665, -0.009633954614400864, -0.02246111072599888, 0.017229696735739708, -0.006039905361831188, 0.03179612755775452, -0.011250937357544899, 0.004701478872448206, 0.012718451209366322, -0.016822053119540215, 0.017365576699376106, -0.02566790021955967, 0.01308532990515232, 0.04864535853266716, 0.002670059446245432, -0.008200411684811115, 0.010931617580354214, 0.01903691329061985, 0.021931175142526627, -0.025830956175923347, -0.02305898629128933, 0.002661566948518157, 0.008594466373324394, 0.0037537096068263054, 0.017515046522021294, 0.016156237572431564, -0.01544965710490942, -0.010170684196054935, -0.018683621659874916, 0.011250937357544899, -0.01409084815531969, -0.00887981615960598, -0.012032252736389637, 0.032557059079408646, 0.00446708407253027, 0.019417379051446915, -0.01709381490945816, 0.009613572619855404, -0.023928623646497726, 0.011013145558536053, 0.0111829973757267, 0.0017868336290121078, 0.0006721857935190201, -0.0038420320488512516, 0.00658682594075799, -0.034513745456933975, 0.003852223278954625, 0.020721836015582085, -0.0396772176027298, 0.017311224713921547, 0.0204364862293005, -0.02948615327477455, -0.005679821129888296, -0.0007121007656678557, 0.011604228056967258, 0.0003137999156024307, -0.006464533042162657, -0.012480659410357475, 0.0052314139902591705, 0.0006764320423826575, -0.0077859750017523766, -0.018833091482520103, -0.011468347162008286, 0.024037329480051994, 0.015558362007141113, -0.009423339739441872, 0.005659439135342836, -0.0016942648217082024, 0.020069606602191925, 0.01219530962407589, 0.022189348936080933, -0.013431825675070286, -0.033779989928007126, 0.008703171275556087, 0.004358379635959864, -0.01411802414804697, 0.037883590906858444, -0.0006182580254971981, -0.011536287143826485, -0.011882783845067024, 0.008159647695720196, -0.015531185083091259, -0.018547741696238518, 0.017311224713921547, 0.02102077379822731, -0.010775354690849781, 0.019539671018719673, 0.01452566683292389, -0.017311224713921547, -0.019322263076901436, -0.025844544172286987, -0.0009273870382457972, -0.005666233133524656, 0.004232689738273621, -0.03144283592700958, 0.02626577578485012, 0.0007583852275274694, -0.010782148689031601, -0.010673443786799908, 0.022067056968808174, 0.01079573668539524, 0.013275562785565853, -0.013058152981102467, 0.008112088777124882, -0.00271591916680336, 0.017596574500203133, -0.025436902418732643, -0.005302751436829567, -0.006039905361831188, -0.019580435007810593, 0.004066235385835171, 0.015055602416396141, -0.01254180632531643, 0.01220210362225771, -0.00279065384529531, 0.024213973432779312, 0.01216133963316679, 0.0026326922234147787, -0.036551959812641144, -0.01318723987787962, 0.008417820557951927, 0.003957530949264765, -0.021971939131617546, -0.01633288338780403, -0.017351988703012466, 0.004619949962943792, 0.003064113901928067, -0.013078534975647926, 0.026102717965841293, -0.021509945392608643, 0.0223659947514534, 0.0003645429387688637, -0.01714816875755787, 0.02959485724568367, 0.003869208274409175, -0.0053944713436067104, -0.031551543623209, -0.006179183255881071, -0.006712515838444233, -0.008411026559770107, 0.02698594518005848, -0.026075541973114014, -0.005343515891581774, -0.015259423293173313, -0.007874296978116035, -0.022053468972444534, 0.010340536013245583, -0.010388094000518322, -0.03291035071015358, 0.005092136096209288, -0.019566847011446953, 0.014539254829287529, -0.0036246227100491524, -0.03144283592700958, 0.004660714417695999, 0.010102744214236736, -0.004507848527282476, -0.0197706688195467, -0.00424967473372817, 0.01589806377887726, 0.012867920100688934, 0.022529050707817078, -0.0058904364705085754, 0.02030060440301895, 0.011053910478949547, 0.000633120012935251, 0.007874296978116035, -0.013757939450442791, 0.028779571875929832, -0.019526083022356033, 0.031850479543209076, -0.005513367243111134, 0.010415269993245602, 0.0026275967247784138, 0.0070318360812962055, 0.012766009196639061, 0.024703145027160645, 0.013547324575483799, 0.051036860793828964, 0.02305898629128933, -0.013323120772838593, 0.03888911008834839, -0.023439453914761543, 0.010721001774072647, -0.014593607746064663, 0.012874714098870754, -0.01445772685110569, 0.018520565703511238, 0.010089156217873096, 0.00013354542898014188, -0.027366410940885544, -0.025273844599723816, -0.022719284519553185, 0.023194868117570877, 0.022175760939717293, 0.009015697054564953, -0.01279318518936634, -0.005085342098027468, -0.027135413140058517, 0.015177895314991474, -0.007092982530593872, 0.009015697054564953, 0.010496798902750015, -0.01640082336962223, 0.004382158629596233, 0.010483210906386375, -0.000981739372946322, -0.020259840413928032, -0.035220324993133545, -0.015667065978050232, 0.014281081035733223, -0.006355828605592251, 0.030382966622710228, 0.004769419319927692, 0.010523974895477295, 0.011882783845067024, 1.0151257811230607e-05, 0.04418846592307091, -0.02172735333442688, 0.009362192824482918, 0.031850479543209076, 0.003145642578601837, -0.018031394109129906, -0.011726520955562592, 0.01771886833012104, 0.020151136443018913, 0.01508277840912342, -0.02102077379822731, -0.01699869893491268, -0.01915920525789261, 0.014620783738791943, -0.010754972696304321, 0.03209506720304489, 0.03595408424735069, -0.0029214390087872744, 0.02375197969377041, 0.012025458738207817, 0.03242117911577225, 0.020939243957400322, 0.019213557243347168, -0.0316874235868454, 0.02820887230336666, 0.001511674840003252, 0.011373230256140232, -0.005003813654184341, -0.024010153487324715, -0.010476415976881981, -0.00655964994803071, -0.008295528590679169, -0.009599984623491764, -0.002843307564035058, -0.006719309836626053, 0.00771124055609107, 0.008478967472910881, -0.011386818252503872, 0.003957530949264765, -0.00992609839886427, 0.0014123119181022048, -0.00992609839886427, -0.014050084166228771, -0.018642857670783997, 0.018547741696238518, 0.020558778196573257, 0.012949449010193348, 0.022664932534098625, -0.0010046693496406078, -0.006539267487823963, 0.0018326934659853578, 0.01974349282681942, 0.0038386350497603416, 0.011746902950108051, 0.010598708875477314, -0.006216550711542368, 0.011658580042421818, -0.01640082336962223, 0.025912486016750336, -0.0010590216843411326, 0.016074709594249725, 0.0010072170989587903, 0.010523974895477295, 0.01905050128698349, -0.023276396095752716, 0.0011405502445995808, 0.03951416164636612, -0.012018664740025997, 0.0035261090379208326, -0.03035579062998295, -0.001483649481087923, 0.010707413777709007, 0.0014989360934123397, -0.031171075999736786, -0.01573500595986843, 0.01581653580069542, 0.0036178287118673325, -0.005822496023029089, 0.012752421200275421, -0.003121863352134824, 0.046416912227869034, 0.017256872728466988, -0.013397855684161186, -0.012562188319861889, -0.015137131325900555, 0.013228004798293114, 0.02630653977394104, 0.05073792487382889, 0.0021842853166162968, -0.0044433050788939, 0.005289163440465927, -0.018167274072766304, -0.011502317152917385, 0.006053493358194828, 0.015286600217223167, 0.017528634518384933, -0.004215704742819071, -0.000935879594180733, 0.02303181029856205, -0.0042394837364554405, 0.012881508097052574, -0.001287471386604011, -0.006912940181791782, -0.01410443615168333, -0.0032033920288085938, -0.013941379263997078, -0.0025987219996750355, -0.009348604828119278, 0.020205488428473473, 0.018167274072766304, -0.011400406248867512, 7.972386811161414e-05, 0.009640748612582684, 0.018180862069129944, -0.0018157083541154861, -0.02690441533923149, -0.010354124009609222, 0.014688723720610142, 0.013703587464988232, 0.04750395938754082, -0.023819919675588608, -0.025776604190468788, 0.023860683664679527, 0.014294669032096863, 0.022202936932444572, -0.0010029708500951529, 0.016971522942185402, 0.024730321019887924, 0.010082362219691277, -0.028643691912293434, -0.0033494639210402966, 0.0020348161924630404, 0.0007745210314169526, -0.0041103968396782875, 0.0022063658107072115, -0.005272178445011377, 0.028833923861384392, -0.005445426795631647, -0.017460694536566734, 0.0009222915396094322, 0.02301822230219841, 0.015585537999868393, -0.03831841051578522, -0.008132470771670341, 0.009348604828119278, -0.00950486771762371, -0.013343502767384052, -0.0025019068270921707, 0.012833950109779835, -0.012983419001102448, -0.005336721893399954, 0.008784699253737926, -0.02299104630947113, -0.012086604721844196, -0.04657996818423271, -0.019349439069628716, -0.018670033663511276, -0.008118882775306702, -0.029241567477583885, -0.00755497720092535, 0.013887026347219944, 0.022230112925171852, 0.0003535026335157454, -0.00540466234087944, 0.0011065800208598375, 0.01831674389541149, -0.02246111072599888, -0.02954050526022911, 0.01410443615168333, -0.027991462498903275, -0.01717534475028515, 0.02576301619410515, 0.0033426699228584766, 0.003719739383086562, -0.005469205789268017, -0.007636506110429764, 0.003247553249821067, -0.023357924073934555, 0.011121850460767746, -0.02762458473443985, -0.004793198313564062, 0.015028426423668861, 0.019947314634919167, 0.012066222727298737, 0.012684481218457222, 0.0004201691772323102, 0.011923547834157944, -0.0030301439110189676, 0.003553285263478756, -0.01708022691309452, 0.016686173155903816, -0.007840326987206936, -0.011352848261594772, -0.014865369535982609, -0.041715431958436966, -0.016645409166812897, 0.03937828168272972, -0.017474282532930374, 0.007473448757082224, -0.0007838628953322768, 0.017406342551112175, 0.01587088778614998, 0.009552426636219025, 0.014824604615569115, -0.0012373653007671237, -0.0026853459421545267, 0.015232247300446033, -0.002659868448972702, 0.025885310024023056, -0.002491715829819441, -0.021836059167981148, 0.03600843623280525, -0.0008581727161072195, -0.010605502873659134, -0.026795711368322372, 0.0002464964345563203, -0.009701895527541637, 0.023303572088479996, 0.01352014858275652, -0.01712099276483059, -0.0244313832372427, 0.022868752479553223, 0.003923560492694378, 0.009579602628946304, -0.02244752272963524, 0.0038488260470330715, 0.005190650001168251, -0.00041804605280049145, 0.022705696523189545, -0.006240329705178738, -0.004011883400380611, -0.02439061924815178, -0.01182163693010807, 0.03736724331974983, 0.01644158735871315, 0.005639056675136089, -0.008750729262828827, -0.01833033189177513, -0.004225895740091801, 0.010605502873659134, -0.024078093469142914, -0.04628102853894234, -0.023493805900216103, 0.022026291117072105, 0.010476415976881981, 0.005221222992986441, 0.015639889985322952, -0.0021503150928765535, 0.002885770285502076, -0.003723136382177472, -0.013805498369038105, 0.02365686185657978, 0.009239899925887585, -0.005706997122615576, -0.026564713567495346, 0.02035495638847351, 0.0015363033162429929, -0.00771124055609107, 0.022556226700544357, -0.007507419213652611, 0.036470431834459305, 0.030382966622710228, -0.004813580308109522, -0.01714816875755787, -0.003587255487218499, -0.03595408424735069, -0.009341810829937458, 0.023344336077570915, -0.001780039630830288, 0.023425865918397903, 0.0026972356718033552, 0.0005817400524392724, 0.02698594518005848, 0.0065120914950966835, -0.003971118945628405, -0.012575776316225529, 0.015544774010777473, -0.04856383055448532, 0.031306955963373184, 0.006101051811128855, 0.011488729156553745, -0.0020331176929175854, 0.003587255487218499, -0.015571950003504753, -0.01573500595986843, 0.009104019030928612, 0.01222927961498499, 0.0282904002815485, 0.002082374645397067, 0.010265801101922989, -0.011488729156553745, 0.015055602416396141, -0.008180029690265656, 0.002046705922111869, 0.006991071626543999, -0.0023745184298604727, 0.008730347268283367, -0.011916753835976124, 0.00221146154217422, -0.0006106147193349898, 0.007194892968982458, 0.016930758953094482, -0.03592690825462341, 0.019498907029628754, -0.02115665376186371, -0.013798704370856285, 0.012976625002920628, -0.01508277840912342, 0.04783007130026817, 0.011699344031512737, 0.015531185083091259, 0.030681904405355453, -0.014838192611932755, -0.003108275355771184, 0.00771803455427289, -0.008560496382415295, 0.02632012777030468, 0.003685769159346819, 0.028100168332457542, -0.023915035650134087, 0.002262416761368513, -0.005112518556416035, 0.010170684196054935, -0.023385100066661835, -0.03872605413198471, 0.019335851073265076, -0.009022491052746773, 0.01645517535507679, -0.021360475569963455, 0.021836059167981148, -0.0354105606675148, 0.005781731568276882, -0.004042456392198801, 0.004297233186662197, -0.014267493039369583, -0.012371954508125782, -0.02357533387839794, 0.029078509658575058, -0.005564322229474783, 0.043726470321416855, -0.02689082734286785, -0.0019872579723596573, -0.0030726066324859858, -0.008200411684811115, -0.033725637942552567, 0.0009987244848161936, -0.011481935158371925, 0.03880758211016655, 0.0016127362614497542, -0.013771528378129005, 0.012011870741844177, -0.00788788590580225, 0.006060287822037935, -0.02945897728204727, -0.007242451421916485, 0.027216941118240356, -0.005024195648729801, -0.0009681513183750212, -0.02375197969377041, 0.014797428622841835, -0.0002216557040810585, 0.010068774223327637, -0.01653670333325863, -0.01831674389541149, -0.010157096199691296, 0.00021560475579462945, 0.010048391297459602, 0.012643716298043728, 0.0008968138718046248, 0.0018462815787643194, -0.0052619874477386475, 0.014607195742428303, -0.009647542610764503, -0.007602535653859377, -0.005027592647820711, -0.053020723164081573, 0.006461136043071747, 0.021346887573599815, 0.004164749290794134, 0.041090380400419235, 0.007772387005388737, -0.0007562620448879898, 0.004915491212159395, 0.02886109985411167, -0.007826738990843296, 0.018602093681693077, 0.021401239559054375, -0.014770252630114555, -0.02032778039574623, 0.0013409744715318084, -0.031306955963373184, -0.030138380825519562, 0.012433101423084736, -0.029268743470311165, -0.02444497123360634, -0.040410976856946945, -0.0027278088964521885, 0.014376197941601276, 0.003323986195027828, 0.003859017277136445, 0.001048830570653081, -0.008016972802579403, 0.021238183602690697, -0.009994039312005043, -0.03247553110122681, 0.00658682594075799, -0.0012518026633188128, -0.009613572619855404, 0.026782123371958733, -0.0004929928691126406, 0.01903691329061985, -0.016278529539704323, -0.009538838639855385, 0.020001666620373726, -0.029839443042874336, -0.008560496382415295, -0.0034411835949867964, 0.02618424780666828, -0.0262250117957592, -0.02967638522386551, -0.006620796397328377, 0.004402540624141693, -0.008098500780761242, 0.013778322376310825, -0.00015116749273147434, -0.008315910585224628, 0.013812292367219925, 0.025450490415096283, 0.00011528644245117903, -0.0025902295019477606, 0.006481518503278494, -0.022569814696907997, 0.015218659304082394, 0.004392349626868963, -0.013628853484988213, -0.017379164695739746, 0.006491709500551224, 0.006267506163567305, 0.042422011494636536, -0.01652311533689499, -0.014620783738791943, -0.0001508490095147863, -0.042422011494636536, -0.00015286599227692932, -0.03611714020371437, 0.020001666620373726, 0.018887443467974663, 0.01414520014077425, -0.014226729050278664, 0.01785474829375744, -0.005105724558234215, 0.011495523154735565, -0.030736256390810013, -0.010490004904568195, 0.010116332210600376, 0.007208480965346098, -0.02945897728204727, -0.010564738884568214, -0.01410443615168333, -0.031823303550481796, 0.02891545370221138, 0.006671751383692026, 0.002517193555831909, 0.020653894171118736, -0.03016555681824684, -0.00559829268604517, -0.016061121597886086, -0.005183856002986431, -0.018914619460701942, -0.008560496382415295, 0.007147334516048431, -0.04951499402523041, 0.007670476101338863, 0.010985969565808773, 0.018941795453429222, -0.027216941118240356, -0.01352694258093834, 0.008139264769852161, 0.001269637024961412, 0.0154088931158185, -0.00771124055609107, 0.006614002399146557, -0.0062471237033605576, -0.03337234631180763, 0.01972990483045578, 0.007568565662950277, -0.012439895421266556, 0.04155237600207329, 0.009606778621673584, 0.03299187868833542, -0.014566430822014809, 0.010557944886386395, -0.04647126421332359, -0.006196168251335621, 0.01915920525789261, -0.013594882562756538, 0.01570782996714115, -0.02570866420865059, 0.016183413565158844, -0.01915920525789261, 0.013791910372674465, 0.0036687839310616255, -0.020056018605828285, -0.010028009302914143, 0.01549042109400034, 0.03019273281097412, -0.022760048508644104, -0.004365173634141684, 0.012616540305316448, -0.008057736791670322, -0.02358892187476158, -0.0017333305440843105, 0.0018309949664399028, -0.023520981892943382, 0.01544965710490942, -0.016930758953094482, -0.007521007210016251, -0.002072183648124337, 0.013465795665979385, 0.0005995744140818715, -0.02621142379939556, 0.02967638522386551, 0.17501458525657654, -0.025980425998568535, 0.0018768548034131527, 0.030084028840065002, 0.00754818320274353, 0.03225812315940857, -0.006063684821128845, -0.0008530772174708545, -0.000631421513389796, 0.011461553163826466, -0.014715899713337421, 0.014376197941601276, -0.021224593743681908, -0.00794223789125681, 0.012759215198457241, -0.02179529517889023, -0.026700593531131744, -0.03312775865197182, -0.02959485724568367, 0.005795320030301809, 0.00079999869922176, -0.003685769159346819, 0.017256872728466988, -0.01212736964225769, 0.016645409166812897, -0.025368962436914444, -0.03310058265924454, 0.006264108698815107, 0.03551926463842392, 0.0025019068270921707, -0.026116305962204933, 0.008832257241010666, 0.0038080618251115084, -0.0020246251951903105, -0.015653477981686592, -0.022012703120708466, 0.02110230177640915, 0.007018247619271278, 0.03280164673924446, 0.002050102921202779, -0.007357949856668711, -0.023357924073934555, 0.01023183111101389, -0.012494247406721115, -0.01899614743888378, 0.013757939450442791, 0.0024696351028978825, -0.02432267926633358, -0.007099776528775692, 0.02030060440301895, -0.021917587146162987, -0.00771124055609107, 0.01417237613350153, 0.018765151500701904, -0.004711669869720936, -0.01573500595986843, 0.0007074298919178545, 0.00558470468968153, 0.030138380825519562, 0.0019719714764505625, -0.004847550764679909, 0.037937942892313004, -0.031171075999736786, -0.005666233133524656, -0.005156679544597864, 0.003237362252548337, -0.0006683641113340855, -0.004548612516373396, 0.009939687326550484, -0.019240733236074448, 0.00164246023632586, -0.0366063117980957, -0.0007154978229664266, 0.01834391988813877, -0.016033945605158806, -0.030709080398082733, 0.01906408928334713, 0.011509111151099205, 0.012609746307134628, 0.01769169233739376, 0.011461553163826466, -0.009029285050928593, -0.03595408424735069, -0.016169825568795204, 0.00989212840795517, -0.048944294452667236, 0.02562713623046875, 0.027515878900885582, 0.0016772797098383307, -0.023425865918397903, -0.023996565490961075, 0.012514629401266575, 0.012365160509943962, 0.002483223332092166, 0.01638723537325859, 0.00853331945836544, 0.004015280399471521, 0.02970356121659279, -0.02492055483162403, 0.006097654812037945, -0.006872175727039576, 0.03212224319577217, 0.02706747315824032, -0.017297636717557907, 0.011712932959198952, 0.008016972802579403, 0.013452207669615746, 0.013323120772838593, 0.024132445454597473, -0.025110788643360138, -0.0051329005509614944, -0.03163307160139084, 0.006535870488733053, 0.011549875140190125, 0.004086617846041918, 0.00038980829413048923, 0.021523533388972282, -0.01975708082318306, -0.01512354239821434, -0.010299771092832088, 0.014213141053915024, -0.01313968189060688, 0.014416961930692196, 0.02104794979095459, 0.005285766441375017, -0.020762600004673004, -0.02896980568766594, -0.0010921426583081484, 0.007500625215470791, -0.008295528590679169, 0.01913202926516533, -0.004283645190298557, 0.028399106115102768, 0.005278972443193197, 0.0022997839841991663, 0.019444555044174194, -0.003335875691846013, -0.0027889551129192114, -0.01182843092828989, 0.014281081035733223, 0.008023766800761223, -0.008064530789852142, -0.02572225220501423, 0.010653061792254448, 0.003916766494512558, -0.02235240675508976, 0.0005244152853265405, -0.006831411737948656, 0.002792352344840765, -0.030790608376264572, -0.01828956790268421, 0.006790647283196449, -0.009749453514814377, -0.018656445667147636, 0.01123734936118126, -0.01967555284500122, -0.010707413777709007, -0.03867170214653015, 0.014213141053915024, 0.005662836134433746, -0.018941795453429222, -0.0037842828314751387, 0.012446689419448376, -0.004151161294430494, -0.014362609945237637, 0.0043481881730258465, -0.1736014187335968, 0.005204237997531891, 0.013812292367219925, -0.028426282107830048, 0.014851780608296394, 0.017297636717557907, 0.035791024565696716, 0.00982418842613697, -0.004490863531827927, -0.006919734179973602, 0.018520565703511238, 0.02757023274898529, -0.037177011370658875, 0.01834391988813877, 0.002523987554013729, 0.0042360867373645306, -0.0108840586617589, 0.03304623067378998, 0.012874714098870754, 0.010911235585808754, 0.017623750492930412, -0.018873855471611023, 0.04204154759645462, -0.004912094213068485, -0.01123734936118126, 0.014702311716973782, -0.007215274963527918, 0.012623334303498268, -0.007092982530593872, 3.7314166547730565e-05, -0.006257314700633287, -0.014226729050278664, 0.010191066190600395, -0.007405508309602737, 0.009763041511178017, -0.009980451315641403, 0.008003383874893188, -0.01178766693919897, -0.010408475995063782, 0.018928207457065582, 0.008268351666629314, 0.0014734583673998713, 0.002490017330273986, -0.002092565642669797, 0.00989212840795517, 0.02826322428882122, 0.00638979859650135, -0.0003949038218706846, 0.007772387005388737, 0.0015142225893214345, 0.008234381675720215, -0.03872605413198471, -0.00654945895075798, -0.006046699360013008, 0.015558362007141113, -0.019322263076901436, -0.00853331945836544, 0.023847095668315887, -0.010564738884568214, -0.01452566683292389, -0.005540543235838413, -0.020925655961036682, 0.005509969778358936, 0.0016789782093837857, 0.0020534999202936888, -0.03426916152238846, -0.01350656058639288, 0.009681513532996178, -0.021224593743681908, 0.015599125996232033, -0.002658169949427247, -0.029160037636756897, 0.010034803301095963, -0.04133496433496475, 0.008608054369688034, -0.004337997175753117, -0.01717534475028515, 0.020219076424837112, 0.010326947085559368, -0.031143900007009506, 0.004096808843314648, 0.04282965511083603, -0.007602535653859377, 0.01640082336962223, 0.00775200454518199, -0.010727795772254467, -0.005686615128070116, -0.0034038161393254995, 0.004005088936537504, -0.007059012074023485, 0.004232689738273621, -0.05603727698326111, 0.000981739372946322, -0.011848813854157925, 0.018004218116402626, 0.0029248360078781843, -0.002520590554922819, -0.027488702908158302, 0.004494260530918837, -0.002799146343022585, 0.012242867611348629, -0.004056044388562441, -0.03742159530520439, 0.0011252636322751641, 0.006342240609228611, -0.004806786309927702, -0.020069606602191925, 0.002887468785047531, 0.03823688253760338, 0.0005532900104299188, -0.02049083821475506, 0.01841185986995697, 0.003909972496330738, 0.018914619460701942, 0.011549875140190125, 0.03089931420981884, -0.0036619899328798056, -0.007874296978116035, 0.009382575750350952, -0.012670893222093582, 0.013377473689615726, 0.006315064150840044, -0.030600376427173615, 0.0326114147901535, 0.03600843623280525, -0.022529050707817078, -0.10750895738601685, -0.031361307948827744, 0.008078118786215782, 0.0422046035528183, -0.008166441693902016, -0.0019396996358409524, 0.0009180452325381339, 0.024757497012615204, -0.0034445805940777063, 0.021360475569963455, 0.015001250430941582, -0.01979784481227398, 0.01641441136598587, -0.01631929539144039, 0.01122376136481762, 0.005815702024847269, 0.012582570314407349, -0.03179612755775452, -0.024594441056251526, 0.03565514460206032, 0.010992763563990593, -0.012677687220275402, -0.021985527127981186, 0.006658163387328386, -0.0026938386727124453, -0.008743935264647007, -0.032013535499572754, 0.010415269993245602, 0.015979591757059097, 0.04084579646587372, 0.02309975028038025, -0.021278947591781616, -0.0043753646314144135, 0.006026317365467548, -0.011903165839612484, -0.0043481881730258465, -0.0029452182352542877, -0.00319999479688704, 0.020572366192936897, -0.016278529539704323, -0.006977483630180359, -0.008295528590679169, 0.02757023274898529, -0.023507393896579742, 0.0070046596229076385, -0.028480634093284607, -0.03089931420981884, 0.010422063991427422, -0.015245835296809673, -0.01320082787424326, -0.04223177954554558, -0.013581294566392899, 0.00337324314750731, 0.011685756035149097, 0.02834475226700306, -0.009423339739441872, 0.010761766694486141, 0.0058904364705085754, -0.001773245632648468, -0.013037770986557007, -0.005180459003895521, -0.01413161214441061, 0.0031932007987052202, 0.011454759165644646, 0.00853331945836544, -0.014593607746064663, -0.04231330752372742, -0.015354540199041367, 0.025423314422369003, -0.028154520317912102, -0.020001666620373726, 0.014770252630114555, -0.004915491212159395, 0.013594882562756538, -0.023969389498233795, -0.0018157083541154861, -0.0198386088013649, -0.030817786231637, 0.01905050128698349, -0.020640306174755096, -0.0038386350497603416, -0.0592440664768219, 0.002858594059944153, -0.0023762169294059277, 0.024050917476415634, 0.007425890304148197, -0.011678962036967278, -0.01588447578251362, 0.005798717029392719, -0.021863235160708427, 0.017447106540203094, 0.006284491159021854, 0.006369416601955891, -0.035818200558423996, -0.005333324894309044, 0.024716733023524284, 0.017297636717557907, -0.017433518543839455, 0.0011541382409632206, 0.000932482595089823, -0.03731289133429527, -0.01708022691309452, -0.059515830129384995, 0.02500208280980587, -0.004827168304473162, 0.006311667151749134, 0.0025511637795716524, -0.0018055172404274344, 0.021346887573599815, -0.008947756141424179, 0.01117620337754488, -0.030518846586346626, -0.017474282532930374, 0.011604228056967258, -0.0037910768296569586, 0.01023862510919571, 0.0033171921968460083, -0.01985219679772854, 0.0020280221942812204, -0.010748177766799927, 0.007466654758900404, 0.0005617825663648546, -0.016129061579704285, -0.0007074298919178545, 0.02771970070898533, 0.02562713623046875, -0.012759215198457241, -0.008377056568861008, -0.009763041511178017, 0.01642799936234951, -0.01219530962407589, -0.017284048721194267, 0.012405925430357456, -0.022678520530462265, -0.004881520755589008, 0.02630653977394104, 0.012005076743662357, -0.022583402693271637, -0.006617399398237467, 0.017936276271939278, 0.013567706570029259, 0.028072990477085114, -0.027312058955430984, -0.041063204407691956, 0.017977042123675346, -0.021808883175253868, -0.012575776316225529, 0.008411026559770107, -0.01512354239821434, 0.009667925536632538, 0.01417237613350153, -0.004552009515464306, 0.0499226376414299, 0.010748177766799927, 0.00981739442795515, -0.020640306174755096, 0.014906133525073528, -0.03970439359545708, -0.0033613534178584814, -0.0061418162658810616, 0.01646876335144043, -0.041090380400419235, 0.0395413376390934, 0.005479396786540747, 0.003546491265296936, 0.002850101562216878, 0.0031864068005234003, -0.0022997839841991663, -0.03228529915213585, -0.00983777642250061, -0.0012535011628642678, -0.0112169673666358, -0.01544965710490942, -0.000742673990316689, 0.003899781499058008, 0.03329081833362579, 0.0314156599342823, 0.01024541910737753, -0.03549208864569664, 0.014416961930692196, 0.002970695961266756, 0.021251771599054337, 0.003104878356680274, 0.007126952521502972, -0.017365576699376106, 0.00773162255063653, 0.03277447074651718, -0.00036411831388249993, -0.010326947085559368, 0.02034136839210987, -0.016862818971276283, 4.625788642442785e-05, 0.00659361993893981, 0.02168658934533596, -0.01971631683409214, -0.0057511585764586926, -0.0005706997471861541, 0.02030060440301895, 0.00979701243340969, -0.016930758953094482, 0.016903582960367203, 0.031252603977918625, 0.00328152347356081, 0.0056526451371610165, 0.00441952608525753, -0.012494247406721115, -0.008431409485638142, 0.02826322428882122, -0.012833950109779835, -0.05198802798986435, -0.006321858149021864, 0.009104019030928612, -0.0077655925415456295, 0.007310391869395971, 0.024608029052615166, 0.004535024520009756, -0.023982977494597435, 0.011481935158371925, -0.01543606910854578, -0.01447131484746933, -0.011312084272503853, 0.01317365188151598, 0.0177732203155756, 0.020572366192936897, 0.03592690825462341, 0.019267909228801727, 0.022583402693271637, 0.028399106115102768, 0.03497574105858803, 0.0085537014529109, 0.014838192611932755, -0.0065120914950966835, 0.0036246227100491524, 0.014403373934328556, -0.0024611426051706076, -0.026714183390140533, -0.014321845956146717, 0.03481268510222435, -0.0019023324130102992, 0.007290009409189224, 0.008152853697538376, 0.07315827161073685, -0.008322704583406448, -0.006957101635634899, 0.011869195848703384, 0.0023762169294059277, 0.033779989928007126, -0.016156237572431564, 0.01021144911646843, 0.014199553057551384, -0.042367659509181976, -0.015218659304082394, 0.004810183309018612, 0.015979591757059097, -0.040492504835128784, 0.003166024573147297, -0.0054250443354249, -0.04005768522620201, 0.00033821602119132876, -0.017392752692103386, -0.004589376971125603, 0.025939662009477615, -0.0009367288439534605, 0.02299104630947113, -0.004300630185753107, -0.013228004798293114, -0.01631929539144039, 0.03473115339875221, -0.0030080631840974092, 0.004619949962943792, -0.018697209656238556, -0.01709381490945816, 0.02117024175822735, -0.02618424780666828, -0.0017953262431547046, 0.011746902950108051, -0.0026089129969477654, -0.027964286506175995, -0.03625302016735077, 0.04266659915447235, 0.01317365188151598, 0.0029044540133327246, 0.013703587464988232, -0.00981060042977333, -0.010442445985972881, -0.009559220634400845, 0.01220210362225771, -0.021265359595417976, -0.012371954508125782, -0.05043898522853851], "278d2c56-536c-4910-9fcb-daa1088cb994": [-0.0025312185753136873, 0.02286430634558201, 0.006791313644498587, 0.0027240423951298, -0.02774045802652836, 0.018694087862968445, -0.02098182588815689, -0.013275416567921638, -0.00703969644382596, -0.01943923719227314, 0.02210608497262001, 0.006598489824682474, -0.016079530119895935, 0.022851234301924706, -0.004765031393617392, 0.010458230972290039, 0.0075364625081419945, 0.014040174894034863, 0.008935251273214817, -0.019556891173124313, 0.01749139092862606, 0.022498268634080887, -0.009190170094370842, -0.001098114182241261, 0.0012100499588996172, 0.00618016067892313, 0.010621640831232071, -0.015961874276399612, -0.0012116840807721019, 0.01289630588144064, 0.008863350376486778, -0.021413227543234825, -0.012602168135344982, -0.024903662502765656, -0.025217408314347267, -0.010405940003693104, -0.009164025075733662, -0.006676926743239164, 0.012569486163556576, -0.024550696834921837, 0.0004050521820317954, 0.001893920241855085, -0.010366721078753471, 0.02512590028345585, -0.0026978966780006886, 0.017988156527280807, 0.029361482709646225, -0.023347999900579453, 2.5392359020770527e-05, 0.033100299537181854, 0.011111870408058167, 0.007444953080266714, -0.00518009252846241, -0.0018775792559608817, -0.015661200508475304, -0.0036571125965565443, -0.0032159059774130583, 0.03417227044701576, -0.0006319876410998404, -0.03966284170746803, -0.0013677404494956136, -0.010294821113348007, -0.010883096605539322, -0.037466611713171005, -0.009634644724428654, -0.013687209226191044, 0.002054061973467469, 0.015425890684127808, -0.01171975489705801, -0.027112962678074837, 0.024602988734841347, 0.01738680899143219, -0.03072105348110199, -0.0020066730212420225, 0.028184931725263596, -0.016275621950626373, -0.037780359387397766, -0.009157488122582436, -0.003774767741560936, -0.012308030389249325, 0.01579192839562893, -2.490723636583425e-05, 0.0034773617517203093, 0.014484649524092674, 0.009164025075733662, -0.0029283047188073397, 0.014563086442649364, 0.020197458565235138, -0.021870775148272514, -0.03030272386968136, 0.010249066166579723, 0.013478045351803303, 0.007458026055246592, 0.010033365339040756, -0.01415782980620861, 0.029570648446679115, 0.003047593869268894, 0.026799216866493225, 0.000303533801343292, -0.03822483494877815, 0.03809410706162453, 0.002594948513433337, 0.004353238735347986, -0.001771362847648561, -0.008288147859275341, 0.020838024094700813, 0.011373326182365417, 0.00021304559777490795, 0.007941719144582748, -0.004957855213433504, -0.036185476928949356, 0.024642206728458405, 0.010732759721577168, -0.027322128415107727, 0.026799216866493225, -0.006467761937528849, -0.006346839014440775, -0.006556003354489803, -0.004042760003358126, -0.0010499083437025547, 0.008686867542564869, 0.004683326464146376, 0.02692994475364685, -0.02375325746834278, -0.006902432534843683, 0.010151020251214504, 0.0031374692916870117, -0.03702213615179062, -0.010556276887655258, -0.014118611812591553, 0.0297536663711071, 0.0014290191465988755, 0.016733169555664062, 0.00892217829823494, -0.00627167010679841, 0.010602031834423542, -0.01054320391267538, 0.016863897442817688, -0.02194921113550663, -0.03937523812055588, 0.014366994611918926, 0.03621162474155426, -0.002124328166246414, -0.0312701091170311, 0.0030524961184710264, -0.004212706349790096, 0.026119431480765343, 0.004477430135011673, -0.02687765285372734, -0.016171040013432503, -0.010608567856252193, -0.007458026055246592, 0.008177028968930244, 0.013791792094707489, -0.0012745968997478485, 0.001603050739504397, -0.049519721418619156, -0.0007165521965362132, -0.0011267109075561166, -0.011484445072710514, 0.006536394357681274, 0.03030272386968136, 0.0019609183073043823, -0.005778172519057989, 0.0031489080283790827, 0.015059852041304111, 0.009059442207217216, -0.008889496326446533, -0.00432055676355958, -2.3234839318320155e-05, 0.0025050730910152197, 0.012085792608559132, -0.032080624252557755, -0.0015491254162043333, 0.0039643230848014355, 0.010706613771617413, 0.003461020765826106, -0.0034544842783361673, -0.011987746693193913, 0.021818483248353004, -0.027269836515188217, 0.002003404777497053, -0.0036211623810231686, 0.04622538015246391, -0.040028877556324005, 0.016144894063472748, 0.017609046772122383, -0.005202970001846552, 0.021504737436771393, -0.009399334900081158, 0.028498679399490356, 0.02477293461561203, -0.002299176761880517, -0.007693335879594088, -0.6525936126708984, -0.016236403957009315, 0.005768368020653725, -0.03937523812055588, -0.012549877166748047, 0.027662020176649094, 0.02138708159327507, -0.00828161183744669, 0.0029707911890000105, 0.034224558621644974, -0.015085997991263866, 0.002008307259529829, 0.0012672434095293283, -0.004954586736857891, -0.01477225124835968, -0.039270658046007156, -0.0025246823206543922, -0.0202497486025095, -0.016863897442817688, -0.00011581673606997356, -0.001632464467547834, 0.003513311967253685, -0.020328186452388763, -0.035165801644325256, 0.014916052110493183, 0.005248724482953548, 0.031766876578330994, -0.015713492408394814, 0.026524687185883522, 0.02394934929907322, -0.013504190370440483, 0.0077586998231709, -0.013340780511498451, -0.011144552379846573, 0.04261729121208191, 0.0005666236975230277, -0.020838024094700813, -0.006255329120904207, 0.035113509744405746, 0.03276040777564049, -0.029779812321066856, -0.029204608872532845, -0.010320966131985188, 0.006457957439124584, 0.0010270309867337346, 0.006601758301258087, 0.020746516063809395, 0.001853067777119577, 0.005265065468847752, -0.00014533264038618654, -0.009700008668005466, 0.0094843078404665, 0.014014028944075108, -0.018393414095044136, 0.017321445047855377, -0.01794893853366375, 0.002923402236774564, -0.003954518586397171, -0.0010433719726279378, -0.012621777132153511, 0.005647444631904364, -0.0015540277818217874, -0.0018841156270354986, -0.028707843273878098, -0.0010588958393782377, -0.027426710352301598, -0.030355015769600868, -0.009660790674388409, 0.008503848686814308, -0.03113938309252262, -0.00477156788110733, 0.0018661405192688107, -0.028341805562376976, -0.0029544502031058073, 0.02447226084768772, 0.010948460549116135, -0.0038237906992435455, -0.005248724482953548, -0.013909447006881237, 0.010092192329466343, 0.01719071716070175, 0.0049088322557508945, -0.00918363407254219, -0.010556276887655258, 0.021504737436771393, -0.0164194218814373, -0.024289241060614586, -0.003980664070695639, -0.014432358555495739, 0.00846463069319725, 0.020890315994620323, 0.03082563541829586, -0.0024315386544913054, -0.026537761092185974, -0.0016684146830812097, 0.010327503085136414, 0.02154395543038845, 0.009340506978332996, -0.003031252883374691, -0.0015965142520144582, 0.005421938840299845, -0.0007337102433666587, 0.004804249852895737, 0.014105538837611675, 0.03025043196976185, 0.005745490547269583, -0.016811605542898178, 0.03158385679125786, 0.032655827701091766, -0.023099618032574654, -0.03174073249101639, -0.026642343029379845, -0.02698223479092121, -0.004591817036271095, 0.00866725854575634, -0.028838571161031723, 0.013857156038284302, 0.013687209226191044, -0.002689726185053587, 0.0030688371043652296, 0.014144756831228733, 0.01610567606985569, -0.012915914878249168, -0.004095050971955061, -0.017465244978666306, 0.03134854882955551, 0.014105538837611675, 0.0012157693272456527, -0.020132094621658325, -0.010033365339040756, 0.013935592956840992, 0.012013892643153667, 0.03221135213971138, -0.005510180257260799, -0.004108123946934938, -0.010621640831232071, 0.0077979182824492455, 0.01351726334542036, 0.01281786896288395, -0.0005678492598235607, -0.021099479869008064, 0.02096875198185444, 0.007569144479930401, -0.017909720540046692, -0.002467488870024681, -0.03508736565709114, -0.009791518561542034, -0.0030279846396297216, 0.0029283047188073397, 0.028760135173797607, -0.0155173996463418, 0.02677307091653347, 0.003299244912341237, -0.014968343079090118, 0.004013346042484045, -0.02154395543038845, -0.021047189831733704, -0.0004857357998844236, 0.0005870499298907816, 0.00964118167757988, 0.009405870921909809, 0.03477361798286438, -0.027609730139374733, 0.0018596041481941938, -0.03809410706162453, -0.012987815774977207, -0.010915778577327728, 0.03678682819008827, -0.0022256423253566027, -0.05908900499343872, 0.003467557253316045, -0.002699530916288495, -0.0005723430076614022, -0.00812473800033331, -0.009615035727620125, -0.014353921636939049, -0.011288353241980076, -0.011419081129133701, -0.010876559652388096, -0.023164981976151466, 0.0035067754797637463, -0.0018743110122159123, 0.008353511802852154, -0.002426636405289173, 0.02123020775616169, 0.0008489142055623233, 0.0039741275832057, -0.002838429296389222, -0.015203652903437614, 0.003297610906884074, 0.0006372984498739243, 0.006637708283960819, -0.006353375036269426, 8.055595571931917e-06, 0.02056349627673626, 0.03158385679125786, -0.007020087447017431, -0.008575749583542347, -0.005245456472039223, 0.03093021735548973, 0.023060398176312447, 0.005709540564566851, 0.005778172519057989, -0.040081169456243515, 0.022079939022660255, -0.02902159094810486, 0.013883301056921482, -0.006882823072373867, 0.03801566734910011, 0.008869887329638004, 0.02221066690981388, -0.02682536281645298, -0.02626323141157627, -0.011961601674556732, 0.032394371926784515, 0.017373735085129738, 0.012870159931480885, 0.02364867366850376, -0.006663853768259287, -0.013491117395460606, 0.0176874827593565, -0.006376252509653568, 0.014824542216956615, 0.01953074522316456, -0.005464425776153803, 0.019726837053894997, 0.020733442157506943, -0.008222783915698528, -0.004673521965742111, -0.021269427612423897, -0.01779206469655037, -0.01190277375280857, -0.0010899436892941594, -0.009242461062967777, 0.022955816239118576, -0.000679784978274256, 0.014759178273379803, 0.012576022185385227, 0.02672077901661396, -0.015164434909820557, 0.018994761630892754, 0.012432222254574299, 0.015595836564898491, -0.02041969634592533, 0.011196843348443508, 0.015072925016283989, 0.01708613522350788, 0.0292307548224926, -0.001371008693240583, -0.0187202338129282, 0.004160414915531874, 0.03349248319864273, -0.01161517295986414, 0.006591953802853823, 0.030355015769600868, -0.018785597756505013, 0.017321445047855377, 0.01626254990696907, 0.0014265680219978094, 0.031191673129796982, -0.011216452345252037, -0.0019821615424007177, 0.00984380953013897, 0.0017811674624681473, 0.006428543943911791, -0.006732486188411713, -0.014406212605535984, -9.45351530390326e-06, -0.057258814573287964, 0.008837205357849598, 0.003951250575482845, -0.017360663041472435, -0.008013619109988213, 0.007830600254237652, 0.019360799342393875, -0.013105470687150955, 0.008392730727791786, 0.026655415073037148, 0.01775284670293331, 0.008719549514353275, -0.016837751492857933, -0.007301152218133211, 0.008294684812426567, 0.026145577430725098, 0.02815878577530384, -0.0028956227470189333, -0.009523526765406132, 0.007641044910997152, 0.0037192082963883877, 0.037414319813251495, -0.006850141100585461, -0.00387934991158545, 0.006699804216623306, -0.005542862229049206, 0.00658868532627821, 0.003500239225104451, 0.02164853736758232, -0.0054284753277897835, -0.00738612562417984, -0.009536598809063435, 0.014210120774805546, 0.02368789352476597, -0.0022436173167079687, 0.010157556273043156, 0.040081169456243515, -0.014628450386226177, -0.004235583357512951, -0.015621982514858246, 0.007876355201005936, 0.006304352078586817, 0.005255260970443487, -0.011164161376655102, -0.01830190420150757, 0.022289104759693146, 0.008503848686814308, -0.015438963659107685, 0.013464972376823425, -0.001405324786901474, 0.027714312076568604, 0.0034414115361869335, -0.012347248382866383, -0.028760135173797607, -0.021256353706121445, 0.004258460830897093, 0.03958440199494362, 0.040028877556324005, 0.004281338304281235, 0.01407939288765192, 0.016079530119895935, -0.005585348699241877, -0.01882481575012207, -0.006928578019142151, 0.0037976449821144342, 0.022838162258267403, -0.03801566734910011, 0.0028024790808558464, 0.027479002252221107, 0.00017872953321784735, 0.018210394307971, -0.011425617150962353, 0.01666780561208725, -0.02821107767522335, 0.015674274414777756, -0.021779265254735947, 0.016027238219976425, 0.02610635943710804, 0.00287928176112473, 0.006536394357681274, 0.008333902806043625, -0.004327092785388231, 0.006745558697730303, -0.00019547903502825648, -0.0005314905429258943, -0.0121773025020957, -0.015295162796974182, 0.012445294298231602, 0.03093021735548973, 0.03649922460317612, 0.0027256764005869627, -0.017478318884968758, 0.024838298559188843, 0.01200081966817379, 0.008118201978504658, 0.010941923595964909, -0.000627493835054338, 0.010242530144751072, 0.009883028455078602, -0.0043467022478580475, -0.00413100142031908, 0.006546198856085539, -0.01556969154626131, -0.0072750067338347435, 0.014105538837611675, -0.021818483248353004, 0.041205428540706635, -0.010039901360869408, -0.03066876158118248, 0.0019658205565065145, -0.004621230531483889, -0.005147410556674004, -0.010680467821657658, -0.012857087887823582, -0.007078914903104305, -0.02066807821393013, 0.010968069545924664, -0.022093012928962708, 0.00198706379160285, -0.005327161401510239, -0.018890179693698883, -0.004624499008059502, -0.026027921587228775, -0.013687209226191044, -0.03754504770040512, 0.0009894466493278742, 0.005408866330981255, -0.02045891433954239, -0.018550286069512367, -0.010700077749788761, 0.0058729504235088825, -0.013831010088324547, -0.00483366334810853, -0.01708613522350788, 0.01738680899143219, 0.009412407875061035, -0.011589027009904385, -0.01852414198219776, -0.0009485942428000271, -0.053206250071525574, 0.0010834073182195425, 0.009131343103945255, -0.012935523875057697, -0.009601962752640247, 0.00625859759747982, 0.020432768389582634, -0.0021161576732993126, 0.0008391095907427371, -0.010771977715194225, -0.044029150158166885, -0.002467488870024681, 0.002264860551804304, -0.0036048213951289654, 0.01128181628882885, -0.006144210696220398, -0.009196707047522068, 0.010732759721577168, 0.014654596336185932, -0.009333970956504345, -0.009379725903272629, 0.004376115743070841, 0.005274869967252016, -0.02236754074692726, -0.00553959421813488, -0.04758495092391968, 0.0030361551325768232, 0.0205242782831192, -0.02698223479092121, -0.003931641113013029, -0.0027681628707796335, 0.009948392398655415, 0.028550969436764717, 0.003565603168681264, 0.015857292339205742, 0.011007287539541721, -0.0010433719726279378, 0.025413500145077705, -0.016445567831397057, 0.013726428151130676, 0.02713910862803459, -0.0010768709471449256, 0.04117928445339203, 0.001707633025944233, -0.030198141932487488, -0.0317930206656456, 0.008817595429718494, 0.010693540796637535, 0.020380476489663124, -0.009347043931484222, -0.031976040452718735, -0.018393414095044136, 0.009556208737194538, -3.1609593861503527e-05, 0.0065396623685956, -0.024903662502765656, -0.007810991257429123, -0.017308371141552925, -0.011745900847017765, 0.004291142802685499, 0.010288284160196781, -0.013144688680768013, -0.027557438239455223, 0.007673726882785559, 0.014275484718382359, 0.007091987878084183, -0.0016716828104108572, 0.013425753451883793, -0.0007096073240973055, -0.009968001395463943, -0.017151499167084694, 0.0075952899642288685, -0.03247280791401863, -0.013190443627536297, 0.019112417474389076, 0.019400017336010933, -0.0009698374778963625, 0.02789733000099659, 0.014393140561878681, 0.009556208737194538, 0.009968001395463943, -0.012628314085304737, 0.02543964609503746, 0.004866345319896936, -0.006627903785556555, -0.03830327093601227, 0.0033891203347593546, 0.011046506464481354, 0.0028041130863130093, 0.01580500230193138, 0.00036481249844655395, -0.001411861157976091, 0.016994625329971313, -0.01323619857430458, -0.0025426573120057583, -0.0016112212324514985, -0.027766602113842964, 0.027923475950956345, -0.02451147884130478, -0.010693540796637535, 0.028943153098225594, -0.03364935889840126, -0.03210676833987236, 0.009144415147602558, 0.00013532378943637013, 0.006438348442316055, 0.0019837957806885242, 0.018027374520897865, -0.04389842227101326, 0.022393686696887016, 0.0033531703520566225, -0.003031252883374691, -0.009052906185388565, 0.012373394332826138, -0.021295571699738503, -0.014484649524092674, 0.026576979085803032, 0.00792211014777422, 0.0013146322453394532, 0.009327434934675694, 0.02364867366850376, 0.0007688433979637921, -0.005356574896723032, 0.012432222254574299, 0.013909447006881237, 0.006288011092692614, 0.0038826181553304195, -0.01405324786901474, -0.014445431530475616, -0.004588548559695482, 0.0009453259990550578, 0.0115432720631361, 0.003222442464902997, -0.028498679399490356, 0.028028057888150215, -0.01243875827640295, -0.00333356112241745, 0.009804591536521912, -0.019269289448857307, 0.04293103888630867, -0.017674410715699196, 0.0034937027376145124, 0.022276030853390694, -0.019269289448857307, -0.008275074884295464, 0.010791586712002754, 0.002923402236774564, 0.0004595902282744646, 0.002826990559697151, 0.03440757840871811, -0.004353238735347986, -0.00810512900352478, -0.021726975217461586, 0.015452035702764988, -0.010628176853060722, -0.015007561072707176, 0.027871185913681984, 0.005140874069184065, -0.006660585757344961, -0.027295982465147972, 0.019975220784544945, -0.028498679399490356, 0.005379452370107174, -0.004046028014272451, -0.0011013824259862304, -0.013765646144747734, 0.005023219157010317, -0.01651093177497387, 0.0031685170251876116, 0.007830600254237652, 0.033623211085796356, 0.005202970001846552, -0.02102104388177395, -0.021374009549617767, -0.009680399671196938, -0.02323034591972828, 0.00812473800033331, -0.017099207267165184, 0.01824961230158806, 0.003699599066749215, 0.015203652903437614, 0.027452856302261353, -0.003292708657681942, 0.014902979135513306, -0.026576979085803032, -0.014066320843994617, 0.0218054112046957, -0.001082590315490961, 0.0029430114664137363, -0.007150815334171057, 0.004578744061291218, 0.013190443627536297, 0.004624499008059502, 0.003804181469604373, 0.003526384709402919, 0.0029528161976486444, -0.005261797457933426, -0.004611426033079624, 0.019295435398817062, 0.0012443660525605083, -0.012353785336017609, -0.017007697373628616, -0.0019053589785471559, 0.01989678479731083, 0.018994761630892754, -0.018890179693698883, -0.0564221553504467, 0.00711813336238265, 0.002938109217211604, -0.009347043931484222, 0.012294957414269447, 0.030171995982527733, -0.003640771610662341, 0.01861565001308918, 0.0205242782831192, -0.03150542080402374, -0.026184795424342155, -0.002555730054154992, -0.020498132333159447, -0.02010594867169857, 0.00023633149976376444, -0.017295299097895622, -0.01994907483458519, -0.0006107443477958441, 0.001316266367211938, -0.013249271549284458, -0.041153136640787125, -0.012432222254574299, 0.011687072925269604, 0.00182365404907614, -0.003957786597311497, -0.008817595429718494, -0.0169292613863945, 0.01325580757111311, 0.0008766938699409366, -0.029884394258260727, 0.007137742359191179, 0.0074776350520551205, 0.00652658985927701, 0.024171585217118263, 0.003392388578504324, 0.0017239740118384361, -0.018890179693698883, 0.01908627152442932, 0.016027238219976425, -0.026759998872876167, -0.007928646169602871, 0.006725949700921774, 0.01626254990696907, -0.02549193799495697, -0.009915710426867008, -0.011680536903440952, 0.0010008853860199451, -0.025975631549954414, 0.03524423763155937, 0.026433179154992104, -0.009098661132156849, 0.002201130846515298, 0.009758836589753628, 0.012229593470692635, -0.010837341658771038, -0.023465655744075775, -0.0009077417780645192, 0.007987474091351032, -0.011863555759191513, -0.013608773238956928, -0.006663853768259287, 0.016798533499240875, 0.039270658046007156, 0.023988567292690277, -0.02852482534945011, -0.02533506415784359, -0.012262275442481041, -0.04227739945054054, -0.006474298425018787, -0.010347112081944942, 0.0033727793488651514, 0.013713355176150799, 0.003640771610662341, 0.0035067754797637463, 0.029413774609565735, 8.496035661664791e-06, 0.020393550395965576, -0.015177507884800434, -0.01677238754928112, 0.0014110441552475095, 0.02800191380083561, -0.006719413213431835, -0.013491117395460606, -0.02554422803223133, -0.016628587618470192, 0.020223604515194893, 0.005376184359192848, -0.0008256282890215516, 0.03312644734978676, 0.008052838034927845, -0.013353853486478329, -0.019138561561703682, -0.008451557718217373, -0.01789664663374424, 0.005265065468847752, 0.028917009010910988, -0.007882891222834587, -0.00129829125944525, 0.009020224213600159, 0.00757568096742034, -0.020066730678081512, -0.005274869967252016, -0.009588890708982944, -0.0016136723570525646, 0.011314498260617256, -0.0036734535824507475, -0.02821107767522335, 0.007373052649199963, -0.029858248308300972, 0.0343552865087986, -0.016327913850545883, -0.00984380953013897, 0.03380623087286949, -0.008961396291851997, 0.010249066166579723, -0.023883985355496407, 0.032080624252557755, -0.0538598895072937, -0.01682467944920063, 0.027426710352301598, -0.016654733568429947, 0.002178253373131156, -0.003617894137278199, 0.025413500145077705, -0.01153673604130745, 0.013491117395460606, -0.0037159400526434183, 0.010216384194791317, -0.005160483065992594, 0.014406212605535984, 0.028080349788069725, -0.02605406753718853, -0.01584422029554844, -0.005846804473549128, 0.019138561561703682, -0.003340097377076745, 0.00603962829336524, -0.027452856302261353, -0.03304801136255264, 0.013223125599324703, 0.0015548447845503688, -0.016236403957009315, 0.005372915882617235, -0.008693404495716095, 0.010432085022330284, 0.005317356903105974, 0.025884121656417847, 0.1872023344039917, 0.0008423778344877064, 0.028237223625183105, 0.021099479869008064, -0.011340644210577011, 0.019870638847351074, -0.0027730653528124094, -0.0217923391610384, 0.007327298168092966, 0.023779401555657387, -0.006529857870191336, 0.022968890145421028, -0.042748019099235535, -0.005467693787068129, 0.01958303712308407, -0.021400155499577522, -0.041728340089321136, -0.04086553677916527, -0.024694496765732765, -0.004215974360704422, -0.0030982508324086666, 0.008974469266831875, -0.021674683317542076, -0.019347727298736572, 0.02205379493534565, -0.014746105298399925, -0.02133479155600071, 0.01297474279999733, 0.040081169456243515, 0.0014265680219978094, -0.020145166665315628, 0.010196775197982788, 0.0021586441434919834, -0.008628040552139282, -0.027923475950956345, 0.006654049269855022, 0.04497039318084717, 0.008660722523927689, 0.0333356112241745, -0.0034937027376145124, 0.012321103364229202, -0.026145577430725098, 0.005232383497059345, -0.031217819079756737, -0.005663785617798567, 0.01594880223274231, -0.0016128552379086614, -0.013530336320400238, 0.019988292828202248, -0.009046369232237339, -0.007967865094542503, -0.018903251737356186, 0.024145441129803658, 0.005281406454741955, 0.007529926020652056, -0.003977396059781313, -0.015974948182702065, 0.005935045890510082, 0.017778992652893066, 0.004591817036271095, -0.002049159724265337, 0.033466339111328125, -0.01351726334542036, 0.008503848686814308, -0.013144688680768013, 0.028550969436764717, -0.01773977465927601, -0.02713910862803459, -0.005095119122415781, -0.008647649548947811, -0.01615796610713005, -0.02949221059679985, 0.0003127256059087813, 0.03456445410847664, -0.011314498260617256, -0.04170219600200653, 0.01556969154626131, 0.009778445586562157, 0.02821107767522335, 0.04099626466631889, -0.011510590091347694, 0.0009461430599913001, -0.011347180232405663, -0.03995044156908989, -0.0017795333405956626, -0.050905440002679825, 0.025374282151460648, -0.019203925505280495, 0.0036963310558348894, -0.015046779997646809, -0.019099343568086624, 0.0032273447141051292, 0.00856267660856247, -0.0043238247744739056, 0.02200150303542614, -0.0031734195072203875, -0.005735686048865318, 0.04316634684801102, -0.01485068816691637, 0.03561027720570564, -0.015099070966243744, 0.04170219600200653, 0.03809410706162453, -0.020092876628041267, 0.022589778527617455, -0.005604958161711693, -0.012118474580347538, 0.003140737535431981, 0.013353853486478329, -0.03759733960032463, -0.007170424330979586, -0.021936139091849327, 0.0060102143324911594, -0.0026407032273709774, -0.0073338341899216175, 0.017465244978666306, 0.015556618571281433, -0.01397481095045805, -0.019922928884625435, -0.00738612562417984, 0.0022730310447514057, -0.009144415147602558, 0.018432632088661194, 0.00396105507388711, 0.0013661064440384507, -0.006670390255749226, -0.023883985355496407, 0.02266821451485157, -0.006232452113181353, -0.03278655558824539, 0.03252509981393814, -0.030355015769600868, 0.0039675915613770485, -0.013909447006881237, -0.004304215777665377, 0.012294957414269447, -0.008896032348275185, -0.007673726882785559, -0.009876491501927376, 0.016327913850545883, -0.005062437150627375, -0.013007424771785736, -0.011602099984884262, -0.02415851317346096, 0.007542998995631933, -0.01146483514457941, 0.016811605542898178, -0.003201198996976018, 0.020890315994620323, -0.03425070643424988, -0.0077783092856407166, 0.016916189342737198, -0.004101587459445, 0.0019151634769514203, 0.016850825399160385, -0.032342080026865005, -0.0011822703527286649, -0.041832923889160156, 0.017818210646510124, 0.012268812395632267, -0.038277123123407364, -0.005941582378000021, 0.00912480615079403, -0.029466064646840096, -0.015347453765571117, -0.014027101919054985, -0.165135458111763, 0.00541213434189558, 0.0384601429104805, -0.04225125163793564, 0.004065637476742268, 0.0200013667345047, 0.025008244439959526, 0.011046506464481354, 0.002451147884130478, -0.016275621950626373, -0.0007267653127200902, -0.008229320868849754, -0.005853340961039066, -0.002294274279847741, -0.011647854931652546, 0.0069547235034406185, -0.0050493646413087845, -0.0016847556689754128, 0.001875945134088397, 0.027871185913681984, -0.00048246761434711516, -0.019609183073043823, 0.02651161514222622, 0.020903388038277626, -0.010660858824849129, 0.013791792094707489, 0.005454620812088251, 0.016641659662127495, -0.011334107257425785, -0.016537077724933624, -0.006464493926614523, 0.010830805636942387, 0.022132230922579765, -0.0004066862748004496, 0.020942607894539833, -0.0008529994520358741, -0.014314703643321991, 0.009536598809063435, -0.013399608433246613, 0.015530472621321678, -0.003846667939797044, 0.0108961695805192, -0.007693335879594088, -0.011530199088156223, 0.003624430624768138, 0.01645864173769951, 0.00954313576221466, 0.020955679938197136, -0.013713355176150799, -0.01856335997581482, 0.02112562581896782, -0.02964908443391323, 0.022014575079083443, -0.008392730727791786, 0.013778719119727612, -0.002230544574558735, -0.0022844697814434767, 0.0033319268841296434, -0.004673521965742111, 0.007000478450208902, -0.007726017851382494, -0.010680467821657658, -0.0027959425933659077, 0.019556891173124313, -0.001991966273635626, -0.011680536903440952, -0.019047053530812263, -0.010379794053733349, 0.009784982539713383, 0.00846463069319725, 0.0005425207200460136, -0.02703452669084072, 0.015438963659107685, 0.008144346997141838, 0.010713149793446064, -0.016589369624853134, -0.0133342444896698, 0.004307483788579702, -0.007229252252727747, 0.00433362927287817, -0.013621845282614231, 0.03205447643995285, -0.019478455185890198, -0.02380554750561714, 0.013608773238956928, -0.003791108727455139, 0.003199564991518855, -0.022798942402005196, -0.012432222254574299, -0.025831829756498337, -0.002125962171703577, -0.042957182973623276, -0.0016863896744325757, 0.001098114182241261, 0.011791654862463474, 0.009556208737194538, 0.0007271738722920418, 0.0033989250659942627, 0.00022346297919284552, -0.013674137182533741, 0.01743909902870655, -0.017112279310822487, -0.04878764599561691, -0.005019950680434704, 0.03493048995733261, 0.0033025131560862064, -0.004330361261963844, -0.0038826181553304195, 0.0564221553504467, 0.002219105837866664, -0.018628723919391632, 0.00812473800033331, 0.0055722761899232864, 0.00946469884365797, 0.0031391032971441746, 0.03404154255986214, -0.006804386619478464, -0.006797850131988525, -0.014183975756168365, 0.0022615923080593348, 0.00966732669621706, 0.009216316044330597, -0.0038074497133493423, 0.02642010524868965, 0.014968343079090118, -0.024838298559188843, -0.09715696424245834, -0.021112553775310516, -0.008582285605370998, 0.023151908069849014, -0.005703004077076912, -0.004055832512676716, -0.023191126063466072, 0.01687696948647499, 0.014027101919054985, 0.019347727298736572, 0.022014575079083443, -0.018341122195124626, -0.01000068336725235, -7.409615500364453e-05, 0.0018383609130978584, 0.006422007456421852, -0.01228188443928957, -0.028341805562376976, -0.0008129640482366085, 0.025518083944916725, -0.01651093177497387, -0.003320488380268216, -0.01764826476573944, 0.004902295768260956, -0.013072788715362549, -0.024655278772115707, -0.021609319373965263, 0.015818074345588684, 0.013478045351803303, 0.01964840106666088, 0.009876491501927376, -0.013831010088324547, -0.02113869972527027, -0.0038401316851377487, -0.012111938558518887, -0.004186560399830341, -0.020798806101083755, -0.02394934929907322, 0.018145030364394188, -0.02447226084768772, 0.008863350376486778, 0.0017746310913935304, 0.005696467589586973, -0.05236959084868431, -0.008726086467504501, 0.005634371656924486, -0.006480834912508726, 0.020079802721738815, -0.0037126720417290926, -0.031008655205368996, -0.01805352047085762, -0.01323619857430458, -0.017504462972283363, -0.022249886766076088, 0.023426437750458717, -0.01118377037346363, 0.0007733371458016336, 0.03396310284733772, -0.004836931824684143, 0.007621435914188623, -0.0016880237963050604, 0.012863623909652233, -0.014419285580515862, 0.01181780081242323, -0.017203789204359055, 0.010556276887655258, -0.0061082602478563786, -0.021622391417622566, 0.027008380740880966, -0.014641523361206055, -0.009752300567924976, 0.010915778577327728, -0.01397481095045805, 0.02163546532392502, -0.006085383240133524, -0.01626254990696907, -0.030198141932487488, -0.011262207292020321, 0.013164297677576542, -0.01254334021359682, -0.005827195476740599, -0.030642615631222725, -0.01515136193484068, 0.012647923082113266, 0.023374145850539207, 0.011353717185556889, -0.008399266749620438, 0.001921699964441359, -0.006876286584883928, -0.007392662111669779, 0.009987610392272472, 0.0021847898606210947, 0.018118884414434433, -0.000545788905583322, -0.012151156552135944, -0.0025524620432406664, 0.017399881035089493, -0.01810581237077713, 0.004768299404531717, -0.007752163801342249, -0.04282645508646965, -0.006739022675901651, -0.06332458555698395, 0.020132094621658325, -0.00616708816960454, -0.02821107767522335, -0.0039675915613770485, -0.01677238754928112, -0.00730768870562315, -0.007706408854573965, -0.004938245750963688, -0.02698223479092121, -0.037414319813251495, 0.012844014912843704, 0.00031456397846341133, -0.009301288984715939, 0.011406008154153824, -0.025426574051380157, 0.03733588382601738, 0.010209848172962666, -0.0037943769712001085, 0.017059989273548126, -0.0047290814109146595, 0.0007239056867547333, 0.004568939562886953, 0.02619786746799946, -0.04159761220216751, 0.0073599801398813725, 0.006889359559863806, 0.026341669261455536, -0.014105538837611675, 0.013831010088324547, 0.014916052110493183, -0.010948460549116135, -0.0018792133778333664, 0.01953074522316456, 0.010615103878080845, 0.0012149523245170712, -0.00460162153467536, 0.024642206728458405, 0.013164297677576542, 0.02035433240234852, -0.015438963659107685, -0.010445157997310162, 0.014497722499072552, -0.0253873560577631, 0.014040174894034863, 0.01264138612896204, -0.016118748113512993, 0.0015025535831227899, 0.035165801644325256, -0.018184248358011246, 0.041728340089321136, 0.018131958320736885, 0.004660448990762234, -0.029936686158180237, 0.024184659123420715, -0.027348274365067482, -0.00580758647993207, -0.016863897442817688, 0.03702213615179062, -0.03072105348110199, 0.026733852922916412, -0.0007132840109989047, -0.009889564476907253, 0.011353717185556889, 0.012111938558518887, 0.009255534037947655, -0.012602168135344982, 0.008680331520736217, 0.01687696948647499, -0.027452856302261353, -0.029100026935338974, 0.008536530658602715, 0.0031783217564225197, 0.009432016871869564, 0.03419841453433037, 0.022132230922579765, -0.01413168478757143, 0.02405393123626709, 0.0034348752815276384, 0.04201594367623329, 0.018275758251547813, 0.03558412939310074, -0.0187202338129282, 0.0017468513688072562, 0.04128386452794075, 0.02087724395096302, -0.009523526765406132, 0.008771841414272785, 0.011968137696385384, 0.008111665025353432, -0.03189760446548462, 0.005582080688327551, -0.012569486163556576, 0.013569554314017296, -0.0023204199969768524, 0.007810991257429123, 0.0024952685926109552, 0.007405734620988369, 0.012007356621325016, 0.015138288959860802, -0.013987883925437927, 0.012451831251382828, 0.0091051971539855, -0.02943992055952549, -0.012968205846846104, 0.014380067586898804, -0.02692994475364685, -0.04167604818940163, -0.00013011510600335896, 0.013013960793614388, -0.011445226147770882, 0.007000478450208902, 0.006941650528460741, 0.025426574051380157, -0.024328459054231644, 0.011138015426695347, -0.017399881035089493, -0.018864033743739128, -0.017922792583703995, 0.034538306295871735, 0.010752368718385696, 0.03568871319293976, 0.01636713184416294, -0.004251924343407154, 0.030224287882447243, 0.006415470968931913, 0.025308918207883835, 0.0217923391610384, -0.0012231228174641728, -0.008314293809235096, -0.004454552661627531, 0.022589778527617455, -0.0108961695805192, -0.009811127558350563, -0.012026965618133545, 0.013386535458266735, -0.004879418294876814, 0.005389256868511438, 0.007765236310660839, 0.06316771358251572, -0.005059169139713049, -0.001887383870780468, 0.017556754872202873, -0.014210120774805546, 0.014863760210573673, 0.02040662243962288, -0.028498679399490356, 0.013883301056921482, -0.0035688711795955896, 0.001004970632493496, 0.024341532960534096, 0.029361482709646225, -0.01084387768059969, 0.0055493987165391445, -0.0029462797101587057, -0.008935251273214817, -0.005408866330981255, -0.009941855445504189, 0.0036211623810231686, 0.026276305317878723, 0.020838024094700813, 0.033623211085796356, -0.010595494881272316, -0.030328869819641113, -0.0117981918156147, 0.026537761092185974, -0.01754368282854557, -0.018707159906625748, -0.019779128953814507, 0.007699872367084026, 0.03712671995162964, 0.011053042486310005, -0.009654254652559757, 0.02368789352476597, -0.000830122095067054, -0.025217408314347267, -0.0014510795008391142, 0.016798533499240875, -0.010634713806211948, 0.013556481339037418, 0.0029871321748942137, -0.0119223827496171, -0.01800123043358326, -0.016733169555664062, 0.0035394574515521526, -0.01549125462770462, 0.01687696948647499, -0.057258814573287964], "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3": [0.025321684777736664, -0.00793929398059845, 0.0005979916895739734, -0.03561846911907196, -0.005447182804346085, 0.012614874169230461, 0.011912223882973194, -0.0188730601221323, -0.023364771157503128, -0.027134129777550697, -0.0025758377742022276, 0.014289415441453457, -0.011189873330295086, 0.01796683855354786, -0.0007494391174986959, -0.004889002535492182, 0.03225625306367874, -0.0051188417710363865, -0.024257859215140343, 0.012332500889897346, -0.01664033904671669, 0.004652597010135651, -0.007926160469651222, -0.00038272287929430604, -0.0320461168885231, 0.03527699410915375, 0.006133416201919317, -0.03089035488665104, -0.009679502807557583, 0.0001040944698615931, 0.022366613149642944, 0.0031750607304275036, -0.010277084074914455, 0.0024559933226555586, -0.02060670219361782, -0.0002632887044455856, 0.0008101823041215539, -0.0037989094853401184, 0.0024592767003923655, -0.0008610751829110086, 0.034830451011657715, 0.009778005070984364, -0.01103883609175682, -0.006796665955334902, -0.026057168841362, 0.006478174589574337, 0.013501396402716637, -0.017060616984963417, -0.0025709127075970173, 0.021329054608941078, 0.025150947272777557, 0.028132285922765732, -0.0010827055666595697, -0.0317571759223938, -0.0020701922476291656, -0.008011529222130775, -0.008740446530282497, 0.026017768308520317, 0.007709454745054245, -0.03207238391041756, 0.01979241706430912, 0.01447328645735979, -0.009088488295674324, 0.012614874169230461, 0.008241367526352406, 0.01294978242367506, 0.0023312235716730356, 0.008871783502399921, 0.019503476098179817, -0.0068032327108085155, 0.007413947489112616, 0.014158078469336033, 0.0071118734776973724, 0.0070527722127735615, 0.04260557144880295, 0.0024724104441702366, -0.024454863741993904, 0.011912223882973194, 0.004255303647369146, 0.0008553292136639357, -0.02280002273619175, -0.014867296442389488, -0.00017381570069119334, -0.0034213168546557426, 0.01648273505270481, 0.012181463651359081, -0.022773755714297295, 0.014039875939488411, -0.02494080923497677, -0.025991501286625862, -0.008720746263861656, 0.02462560124695301, -0.012450704351067543, 0.012759344652295113, -0.00839240476489067, 0.03328067809343338, -0.003683989867568016, 0.024953942745923996, -0.004550810903310776, -0.019122600555419922, -0.013048285618424416, -0.006783532444387674, 0.002321373438462615, -0.00971890427172184, -0.0328604020178318, -0.014460152946412563, 0.028578830882906914, 0.018360847607254982, 0.02269495464861393, 0.007098739966750145, -0.013961073942482471, 0.06319914013147354, -0.007381113711744547, -0.03443644195795059, 0.016758542507886887, -0.025321684777736664, 0.002979697659611702, -0.01963481307029724, -0.02396891824901104, -0.0031225262209773064, 0.00839240476489067, 0.0217230636626482, 0.0070856064558029175, -0.020843109115958214, 0.014657157473266125, -0.005112275015562773, -0.019122600555419922, -0.003805476240813732, -0.0007917130715213716, -0.02085624262690544, -0.0013872422277927399, 0.0009324894053861499, 0.010579158551990986, -0.017073750495910645, -0.02101384662091732, 0.010533190332353115, -0.0434461273252964, -0.009035954251885414, -0.024559933692216873, -0.01628573052585125, 0.027869613841176033, 0.007952427491545677, 0.0003375759406480938, 0.0037792089860886335, -0.0018518451834097505, 0.0002386631240369752, 0.017165685072541237, -0.0069280024617910385, 0.003667572746053338, 0.019529743120074272, 0.004150234628468752, -0.007157841231673956, -0.0064650410786271095, 0.02086937613785267, 0.01455208845436573, -0.005575235933065414, -0.011360610835254192, 0.02131592109799385, 0.0037660752423107624, -0.004077999386936426, 0.032597728073596954, 0.033149342983961105, -0.003687273245304823, -0.017034349963068962, 0.007847358472645283, 0.021289652213454247, 0.03863921016454697, -0.0021489940118044615, 0.006698163691908121, -0.007092173211276531, -0.003398332977667451, 0.01572098396718502, -0.014775360934436321, 0.013501396402716637, 0.01060542557388544, -0.001598201459273696, 0.01323215663433075, -0.003500118851661682, 0.0005015414208173752, 0.004984221886843443, 0.024953942745923996, 0.00516480952501297, -0.0028811953961849213, 0.027554405853152275, -0.01348826289176941, 0.015405775979161263, 0.03293920308351517, -1.0244634722766932e-06, 0.0090293874964118, -0.00036938401171937585, 0.006277886684983969, 0.034121233969926834, -0.018334580585360527, -0.017585963010787964, -0.6421831250190735, -0.0012107586953788996, -0.00642564008012414, -0.01908320002257824, 0.004613196011632681, 0.0020734756253659725, 0.011459113098680973, 0.011084804311394691, -0.009101621806621552, 0.04255303740501404, -0.005463600158691406, 0.0033490818459540606, 0.01544517744332552, -0.019569143652915955, -0.0071775419637560844, 0.0008635377162136137, 0.008602543734014034, -0.0564747117459774, -0.02432352676987648, 0.006954269949346781, 0.008898050524294376, 0.03979497030377388, -0.02931431494653225, 0.0019043798092752695, 0.01267397589981556, 0.023338502272963524, 0.011170173063874245, -0.013593331910669804, 0.024454863741993904, 0.028578830882906914, -0.02844749391078949, 0.010493789799511433, 0.010854965075850487, -0.026175372302532196, 0.03532952815294266, -0.0009464439353905618, -0.0020964595023542643, 0.025636892765760422, 0.021053247153759003, 0.024008318781852722, -0.027291731908917427, -0.01305485237389803, -0.004636179655790329, 0.024087121710181236, -0.004419474396854639, -0.014341950416564941, 0.02106638066470623, 0.0015875303652137518, 0.014735959470272064, -0.005841192789375782, 0.014171212911605835, 0.007551851216703653, 0.018452784046530724, -0.02752813883125782, -0.016929280012845993, -0.00031684941495768726, 0.01498549897223711, -0.02375878021121025, 0.008989986032247543, -0.02441546320915222, -0.004061582498252392, -0.0010022619972005486, 0.03199357911944389, -0.013048285618424416, -0.031100492924451828, 0.007197242230176926, -0.01289724837988615, -0.020330896601080894, 0.004412907641381025, 0.004334105644375086, 0.013363492675125599, -0.00038580107502639294, -0.014144944958388805, -0.02763320691883564, 0.005575235933065414, 0.008819248527288437, 0.0188730601221323, -0.018203243613243103, -0.002203170442953706, 0.016141260042786598, 0.016154393553733826, 0.009134456515312195, -0.013869138434529305, -0.003880994627252221, 0.0241659227758646, 0.000698956660926342, -0.011662684381008148, 0.012759344652295113, 0.0008586126496084034, -0.012411302886903286, -0.0052436115220189095, 0.014092410914599895, -0.015734117478132248, -0.023338502272963524, 0.002546287141740322, 0.027764543890953064, -0.01411867793649435, -0.011104504577815533, -0.007591251749545336, -0.027291731908917427, -0.0039039787370711565, -0.04066179320216179, 0.01679794304072857, 0.001003903686068952, 0.0149329649284482, -0.004412907641381025, 0.015602780506014824, 0.0005475091747939587, 0.03078528493642807, -0.019175134599208832, 0.0006230277358554304, -0.018137576058506966, -0.009922475554049015, 0.0002745754609350115, 0.016863612458109856, -0.01770416460931301, -4.512128361966461e-05, -0.006412506569176912, 0.02779081091284752, -0.010401854291558266, 0.0042848545126616955, 0.009712337516248226, -0.017086884006857872, -0.006973970215767622, -0.016627205535769463, 0.025124680250883102, -0.009600700810551643, -0.004931686911731958, -0.042316634207963943, 0.017927438020706177, -0.008989986032247543, -0.0070790392346680164, 0.005154959391802549, -0.0066817463375627995, -0.0019651229958981276, 0.010933767072856426, 0.02202513813972473, 0.0014110469492152333, -0.007335145492106676, -0.007492749486118555, -0.008779847994446754, -0.0013281407300382853, 0.009357728064060211, -0.000378618628019467, 0.0016482735518366098, -0.0253873523324728, -0.03383229300379753, 0.0004953850293532014, 0.010355886071920395, -0.009482498280704021, 0.017940571531653404, -0.022117072716355324, -0.0045146937482059, 0.023890117183327675, 0.006071031559258699, 0.01101913582533598, 0.001750059425830841, 0.010277084074914455, -0.010106346569955349, -0.003165210597217083, -0.004806917160749435, 0.019267071038484573, -0.025728827342391014, 0.001007187063805759, -0.01724448800086975, -0.016417067497968674, -0.021342188119888306, 0.05087977647781372, -0.014420752413570881, -0.05678991973400116, -0.001558800577186048, 0.00499735539779067, 0.003519819350913167, 0.005102424416691065, -0.01724448800086975, 0.0069871037267148495, -0.023837581276893616, -0.00694770272821188, 0.0076043857261538506, -0.0171000175178051, -0.005279728677123785, 0.016311997547745705, -0.007578118238598108, -0.021329054608941078, 0.02080370858311653, -0.00882581528276205, 0.010277084074914455, 0.0031422267202287912, -0.00482005113735795, 0.011281808838248253, 0.024297259747982025, 0.02253735065460205, -0.021053247153759003, 0.01038215309381485, -0.019910618662834167, 0.013987340964376926, -0.004202769137918949, 0.01310738641768694, 0.011465679854154587, 0.06256872415542603, 0.024953942745923996, 0.007702887989580631, -0.0026152387727051973, -0.0016129768919199705, -0.009449663572013378, -0.04665073752403259, 0.021749330684542656, 0.00028504134388640523, 0.011682385578751564, -0.0047806501388549805, 0.009686069563031197, -0.014079277403652668, -0.0014291057595983148, -0.035697270184755325, 0.0019322888692840934, 0.02850002981722355, -0.012431003153324127, 0.006018497049808502, -0.019096333533525467, -0.004009047988802195, 0.010441254824399948, 0.003805476240813732, 0.007985261268913746, 0.0068689011968672276, -0.013829737901687622, 0.0236143097281456, -0.004025464877486229, -0.006612794939428568, -0.0009152514976449311, -0.05124751850962639, -0.0027367251459509134, -0.0008237263537012041, 0.016325131058692932, 0.0019010964315384626, 0.023627443239092827, 0.007197242230176926, 0.016771676018834114, -0.03540832921862602, 0.03735211119055748, 0.007926160469651222, -0.006153116934001446, 0.015891721472144127, 0.0005438153748400509, -0.011078236624598503, 0.007716021500527859, 0.02060670219361782, 0.024796338751912117, -0.0014028383884578943, -0.01847905106842518, 0.032282520085573196, 0.0023180898278951645, -0.010546323843300343, -0.017993105575442314, 0.008497473783791065, 0.003880994627252221, -0.013087686151266098, -0.0037627918645739555, 0.016955547034740448, 0.03769358620047569, 0.03196731209754944, -0.006993670482188463, 0.00821510050445795, 0.01107166986912489, 0.011839988641440868, 0.0036905568558722734, -0.00037492476985789835, -0.0061005824245512486, -0.025413621217012405, -0.025925833731889725, -0.027659475803375244, -0.043078385293483734, -0.03283413499593735, 0.004593495279550552, -0.003953229635953903, 0.008563142269849777, -0.016627205535769463, 0.00255777919664979, 0.02731800079345703, 0.0023230151273310184, 0.004797067027539015, -0.01566844992339611, -0.023995185270905495, 0.011051969602704048, 0.017848635092377663, -0.006382955703884363, -0.010946900583803654, -0.03934842720627785, -0.011761186644434929, -0.02071177214384079, -0.0006981358164921403, -0.009587567299604416, 0.010349319316446781, -0.021447256207466125, -0.008077196776866913, -0.02111891470849514, 0.005453749559819698, 0.035539668053388596, -0.004580361768603325, -0.012916948646306992, -0.03475164994597435, -0.007591251749545336, -0.009738604538142681, -0.025256017223000526, -0.021105781197547913, 0.04189635440707207, -0.01060542557388544, 0.010881232097744942, -0.01648273505270481, -0.013081119395792484, -0.019345872104167938, 0.005752540193498135, -0.014722825959324837, -0.00334579823538661, -0.014486419968307018, 0.021539192646741867, 0.007033071480691433, 0.020291496068239212, 0.014617756940424442, 0.027344267815351486, -0.017218220978975296, -0.024796338751912117, -0.018242646008729935, 0.008175699971616268, 0.004846318159252405, 0.08174385875463486, -0.002955072093755007, -0.008188833482563496, 0.027081593871116638, 0.001910946681164205, -0.0045311106368899345, -0.022918226197361946, -0.031415700912475586, 0.028158554807305336, 0.00039072619983926415, -0.01368526741862297, 0.008261068724095821, 0.005969245918095112, 0.007853925228118896, 0.012214298360049725, 0.011964758858084679, 0.003289980348199606, -0.04260557144880295, -0.008497473783791065, -0.023745646700263023, 0.020370297133922577, 0.052035536617040634, 0.030864086002111435, 0.008307036012411118, 0.005237044300884008, -0.009863373823463917, 0.036459024995565414, -0.0059035774320364, 0.001417613821104169, -0.028027217835187912, -0.010874665342271328, 0.020186426118016243, 0.014775360934436321, 0.026529980823397636, -0.017191952094435692, 0.046782076358795166, 0.0048693022690713406, 0.023338502272963524, 0.008865216746926308, -0.005624487064778805, 0.025781363248825073, 0.0013076193863525987, -0.0038383102510124445, -0.00842523854225874, 0.0054241991601884365, 0.0013486620737239718, -0.00690830172970891, 0.03377975896000862, -0.026753252372145653, -0.021591726690530777, -0.0020504917483776808, -0.006822932977229357, -0.035592202097177505, 0.006993670482188463, -0.018912462517619133, -0.004478576127439737, -0.007867058739066124, 0.004941537510603666, -0.00316849397495389, 0.004186352249234915, -0.0043767900206148624, -0.014131811447441578, -0.006074314936995506, -0.002424800768494606, 0.004980938043445349, -0.017008081078529358, -0.011097937822341919, 0.019148867577314377, -0.000270471180556342, 0.006438774056732655, 0.018045639619231224, -0.04988161846995354, -0.017769834026694298, -0.012168330140411854, 0.032650262117385864, 0.02528228424489498, 0.006757264956831932, 0.008760146796703339, -0.011334342882037163, -0.0021342188119888306, 0.002726874779909849, -0.019910618662834167, 0.0030962589662522078, -0.029235513880848885, -0.004806917160749435, -0.0038777112495154142, -0.01811130903661251, -0.010112913325428963, -0.00028216835926286876, 0.04888346046209335, 0.00664234533905983, 0.003578920615836978, -0.024284126237034798, 1.4018636647961102e-05, -0.00742708146572113, 0.006566827185451984, -0.0018830376211553812, 0.018452784046530724, 0.014460152946412563, -0.024796338751912117, 0.007880192250013351, -0.0003051522362511605, -0.012831579893827438, -0.03485671803355217, 0.0029698475264012814, 0.027712009847164154, 0.010139181278645992, 0.0031947612296789885, -0.019162001088261604, -0.005818208679556847, 0.023798180744051933, -0.014000475406646729, 0.042658109217882156, 0.026792654767632484, 0.01325185690075159, -0.001625289674848318, -0.011413144879043102, 0.020935043692588806, 0.020028822124004364, -0.010362452827394009, 0.013343792408704758, -0.03785119205713272, 0.0037693586200475693, 0.028368692845106125, -0.011308075860142708, 0.012306233868002892, 0.018741725012660027, -0.038744278252124786, -0.018991263583302498, -0.025453021749854088, 0.0066226450726389885, 0.011275242082774639, -0.004636179655790329, -0.006583244074136019, -0.00473139900714159, 0.007519016973674297, -0.028316156938672066, 0.00021526879572775215, -0.022629285231232643, -0.0020488500595092773, 0.009351161308586597, 0.002078400691971183, 0.009351161308586597, -0.023535508662462234, -0.01216176338493824, -0.025820763781666756, 0.0008881633402779698, -0.0015095493290573359, 0.01688987948000431, 0.012056694366037846, -0.003015815280377865, 0.015103702433407307, 0.0034016163554042578, -0.00010101626685354859, 0.017730433493852615, -0.006481458432972431, 0.011419711634516716, -0.003506685607135296, 0.031520769000053406, 0.03007606789469719, 0.021237118169665337, -0.00979770626872778, 0.02030462957918644, -0.0014094052603468299, -0.012687109410762787, 0.0005672096740454435, -0.013015450909733772, 0.0053256964311003685, -0.008786414749920368, -0.010165448300540447, 0.01913573406636715, -0.0006148191750980914, -0.007367979735136032, -0.038245201110839844, 0.013540796935558319, 0.01918826811015606, 0.000438335700891912, 0.004291421268135309, -0.02370624616742134, -0.030154868960380554, -0.0077882567420601845, 0.009173857048153877, 0.019004397094249725, 0.018387114629149437, -0.01674540899693966, -0.013356925919651985, 0.014013608917593956, -0.017717299982905388, 0.0124178696423769, 0.00581492530182004, 0.011721786111593246, -0.000979278120212257, 0.0007317907875403762, 0.03588114306330681, 0.019726747646927834, -0.033858560025691986, 0.011899090372025967, -0.04570511728525162, 0.005916710942983627, 0.007105306722223759, 0.012345634400844574, 0.01678480952978134, -0.009429963305592537, -0.01320588868111372, -0.01766476407647133, 0.01841338351368904, 0.016574671491980553, -0.0114722466096282, 0.022708088159561157, -0.004678864032030106, -0.007184108719229698, -0.027554405853152275, -0.005933128297328949, -0.018124442547559738, -0.02345670573413372, 0.013448861427605152, 0.011636417359113693, 0.016981814056634903, -0.00999471079558134, -0.021355321630835533, 0.007761989254504442, -0.008871783502399921, 0.041449811309576035, 0.017218220978975296, 0.02046223357319832, 0.02157859317958355, 0.006071031559258699, -0.017113151028752327, -0.014315682463347912, 0.02411338873207569, 0.006195801310241222, 0.012700242921710014, 0.010309918783605099, 0.004071432631462812, -0.008799548260867596, -0.034173768013715744, 0.010474088601768017, -0.023115230724215508, -0.03018113598227501, 0.01162985060364008, 0.006688313093036413, -0.014368217438459396, -0.027869613841176033, -0.002935371594503522, -0.017901170998811722, 0.029603255912661552, -0.014998632483184338, 0.00043710440513677895, -0.02407398819923401, 6.895168189657852e-05, -0.01084183156490326, 0.015681583434343338, 0.0011368818813934922, 0.0040451656095683575, -0.01162985060364008, 0.005874026566743851, -0.010795863345265388, -0.005417632404714823, -0.03771985322237015, -0.008569709025323391, 0.0012247132835909724, 0.014000475406646729, -0.009915908798575401, -0.0004957954515703022, 0.014670290984213352, 0.01310738641768694, 0.0013076193863525987, 0.0003989347314927727, -0.007525583729147911, 0.031678374856710434, -0.0035132523626089096, -0.020278362557291985, -0.005312562920153141, 0.020619837567210197, -0.007394247222691774, -0.022563617676496506, -0.006776965223252773, -0.03241385892033577, 0.00673099746927619, 0.005634337663650513, 0.003917112480849028, 0.008740446530282497, -0.007709454745054245, 0.010441254824399948, -0.0022212292533367872, -0.0017090167384594679, -0.011400011368095875, 0.011702085845172405, 0.008261068724095821, -0.0077291554771363735, -0.009929042309522629, -0.021079514175653458, -0.009200125001370907, -0.016364533454179764, 0.0017106584273278713, -0.004554094281047583, -0.00716440798714757, 0.03632768616080284, -0.002313164761289954, 0.004639463033527136, 0.0009037595591507852, 0.01867605559527874, -0.017993105575442314, 0.012476971372961998, -0.031205561012029648, -0.008004962466657162, 0.04045165330171585, 0.009370862506330013, -0.003844877239316702, -0.01685047708451748, -0.00489885313436389, 0.027449335902929306, -0.004265154246240854, -0.014775360934436321, 0.011189873330295086, 0.024310393258929253, 0.008582842536270618, -0.01908320002257824, -0.0366428941488266, 0.015143102966248989, -0.0055489689111709595, 0.010625125840306282, -0.0028007517103105783, -0.0037759256083518267, -0.0022737637627869844, -1.34029960463522e-06, 0.0014299266040325165, -0.002075117314234376, -0.03648529201745987, 0.009390562772750854, -0.015471444465219975, -0.008267635479569435, 0.008050929754972458, -0.017874902114272118, -0.012293100357055664, -0.008438372984528542, -0.018754858523607254, 0.012358767911791801, -0.000679666583891958, 0.0038317434955388308, -0.01577351801097393, 0.023798180744051933, 0.007893325760960579, -0.011360610835254192, -0.0012632933212444186, -0.017428359016776085, 0.004005764611065388, 0.006356688681989908, -0.055686693638563156, 0.0006841812864877284, -0.026372376829385757, 0.032282520085573196, 0.027659475803375244, -0.03215118497610092, -0.014144944958388805, 0.0020455666817724705, -0.025623759254813194, 0.0028894038405269384, 0.00018069034558720887, 0.03777238726615906, 0.04105580225586891, 0.019267071038484573, 0.01534010749310255, 0.008077196776866913, -0.006392805837094784, 0.023548642173409462, -0.020015688613057137, 0.002597179962322116, 0.0037463747430592775, 0.021906934678554535, 0.00038149161264300346, -0.0003273152688052505, -0.016167527064681053, -0.00014518844545818865, 0.021539192646741867, -0.0015768592711538076, -0.0035526533611118793, -0.01644333451986313, 0.0034771349746733904, -0.007276044227182865, -0.002835227642208338, -0.008944018743932247, 0.005900294054299593, 0.0026332975830882788, 0.014578355476260185, -0.01381660345941782, -0.003611754858866334, 0.011708652600646019, -0.005296146031469107, -0.010946900583803654, -0.027764543890953064, -0.004422757774591446, -0.014959231950342655, 0.007400813978165388, -0.0009456230909563601, -0.03349081799387932, 0.00660294434055686, 0.001886320998892188, 0.028263622894883156, -0.015510844998061657, 0.013035151176154613, 0.016548404470086098, -0.01485416293144226, -0.014368217438459396, -0.02391638420522213, 0.00624833581969142, -0.016325131058692932, -0.009751738049089909, 0.006392805837094784, 0.009968443773686886, 0.0032489376608282328, -0.023574909195303917, 0.03377975896000862, -0.011229273863136768, -0.01007351279258728, -0.027002792805433273, -0.013435727916657925, -0.017796101048588753, 0.021959468722343445, 0.029997264966368675, 0.009095055051147938, 0.017796101048588753, 0.011327776126563549, 0.0035395196173340082, 0.009154156781733036, -0.037273310124874115, -0.011097937822341919, -0.01821637712419033, 0.007591251749545336, -0.002928804839029908, 0.013067985884845257, 0.004055015742778778, -0.0012156838783994317, 0.02568942680954933, -0.024454863741993904, -0.016193795949220657, 0.20667117834091187, -0.016403933987021446, 0.025308551266789436, 0.02600463479757309, 0.019109467044472694, 0.021946335211396217, 0.00716440798714757, -0.011682385578751564, -0.013475128449499607, 0.009127889759838581, -0.012969483621418476, 0.010217982344329357, -0.025807630270719528, 0.0038383102510124445, 0.0034081831108778715, -0.008129731751978397, 0.008050929754972458, -0.044601887464523315, -0.003486985107883811, -0.013297824189066887, 0.00024112567189149559, -0.007781689986586571, -0.0301286019384861, 0.0033359481021761894, 0.0005446362192742527, 0.01724448800086975, -0.016679739579558372, 0.01664033904671669, 0.01878112554550171, -0.010086646303534508, -0.0033080391585826874, 0.00908192154020071, -0.00017340527847409248, -0.011413144879043102, -0.029997264966368675, -0.005194359924644232, 0.039006952196359634, -0.028867771849036217, 0.01959541253745556, -0.021079514175653458, -0.009213258512318134, -0.010296784341335297, 0.003500118851661682, -0.023430438712239265, 0.014026742428541183, -0.0017664764309301972, -0.019621679559350014, -0.0037529414985328913, -0.01857098750770092, 0.02249794825911522, -0.00039175228448584676, -0.013737802393734455, 0.01761223003268242, 0.0019076631870120764, -0.005722989793866873, -0.017730433493852615, 0.011518214829266071, 0.021959468722343445, -0.0002848361327778548, -0.00017576522077433765, -0.0012058336287736893, 0.012358767911791801, -0.0029911897145211697, 0.025531822815537453, -0.01333065889775753, 0.013724667951464653, -0.03078528493642807, 0.01094033382833004, -0.0014332099817693233, -0.019359005615115166, -0.01111763808876276, -0.005217344034463167, 8.7728702055756e-05, 0.01786176860332489, -0.016863612458109856, -0.01685047708451748, 0.031153026968240738, -0.0014274639543145895, 0.01312708668410778, 0.02920924685895443, -0.01534010749310255, -0.02264241874217987, -0.028473760932683945, -0.018229512497782707, -0.022458547726273537, -0.04257930442690849, 0.022209009155631065, -0.02299702726304531, -0.012174896895885468, -0.011754619888961315, -0.009561300277709961, -0.03241385892033577, 0.00772258872166276, -0.02025209367275238, 0.01432881597429514, 0.03104795701801777, -0.008957152254879475, 0.028473760932683945, -0.01673227548599243, 0.023982051759958267, -0.02655624784529209, 0.03913828730583191, 0.009252659045159817, 0.017073750495910645, 0.013501396402716637, -0.01918826811015606, -0.004892285913228989, 0.011774321086704731, 0.022195875644683838, -0.008261068724095821, 0.004879152402281761, -0.015681583434343338, 0.00951533205807209, -0.018071908503770828, 0.00954160001128912, 0.014184346422553062, -0.01004724483937025, -0.020685505121946335, 0.009351161308586597, 0.007407380733639002, -0.027002792805433273, -0.032335054129362106, -0.02453366480767727, 0.004337389022111893, -0.0075387172400951385, -0.013750935904681683, -0.041502345353364944, 0.008359570987522602, -0.03133689984679222, -0.008188833482563496, 0.020317763090133667, -0.01745462603867054, 0.005040039774030447, -0.014841028489172459, -0.009390562772750854, -0.019884351640939713, -0.027817079797387123, 0.002923879772424698, 0.004248736891895533, 0.0033556486014276743, -0.013245290145277977, -0.004399774130433798, 0.003628171980381012, 0.005542402155697346, 0.0022507798857986927, -0.01015231478959322, -0.01867605559527874, 4.4120868551544845e-05, 0.006025063805282116, -0.01618066243827343, -0.014867296442389488, 0.013501396402716637, -0.0057361233048141, -0.025256017223000526, 0.00890461727976799, -0.034988053143024445, -0.012995750643312931, -0.020225826650857925, 0.0068360669538378716, 0.003450867487117648, -0.030864086002111435, 0.01970048062503338, 0.01759909652173519, -0.0030502912122756243, -0.009554733522236347, -0.030391275882720947, -0.1650637686252594, 0.009095055051147938, -0.011839988641440868, -0.04538990929722786, 0.03861294314265251, 0.005371664650738239, 0.03333321213722229, 0.01715255156159401, -0.005995512939989567, -0.002260630251839757, 0.000233737999224104, 0.014972365461289883, -0.022274676710367203, -0.007656920235604048, -0.0050531732849776745, 0.012168330140411854, -0.02253735065460205, 0.010401854291558266, 0.04137101024389267, 0.024914542213082314, 0.020317763090133667, -0.014368217438459396, 0.02437606081366539, 0.02616223879158497, 0.01938527263700962, 0.008096897974610329, -0.0035395196173340082, 0.001644990174099803, -0.021512925624847412, -0.022195875644683838, 0.004366939887404442, 0.02666131779551506, 0.007315445225685835, -0.0180587749928236, 0.04386640340089798, 0.009548166766762733, 0.017979972064495087, -0.013777202926576138, -0.02178873121738434, 0.014289415441453457, 0.025150947272777557, 0.004107550252228975, 0.022773755714297295, -0.0014939531683921814, -0.011918790638446808, 0.009403696283698082, 0.01876799203455448, -0.031468234956264496, 0.02168366312980652, -0.0011877748183906078, 0.04336732625961304, -0.01289724837988615, 0.015221904963254929, 0.010566024109721184, 0.00673099746927619, -0.01084183156490326, -0.012050127610564232, 0.031835976988077164, -0.004764232784509659, 0.01949034258723259, 0.03209865093231201, -0.00469199800863862, -0.006166250444948673, 0.018794259056448936, 0.007184108719229698, -0.030811551958322525, -0.002035716315731406, 0.019529743120074272, -0.02248481474816799, 0.005956111941486597, 0.011977892369031906, -0.0046887146309018135, 0.009062221273779869, -0.0013987341662868857, -0.01287754811346531, 0.02366684377193451, 0.0056409044191241264, 0.017323289066553116, 0.015038033947348595, 0.005122125148773193, -0.00018007471226155758, -0.008136298507452011, 0.0003209536662325263, -0.012647708877921104, -0.002388683380559087, -0.0016023057978600264, 0.01447328645735979, 0.004028748255223036, -0.009502198547124863, -0.005660604685544968, 0.009607267566025257, -0.03724704310297966, -0.01959541253745556, -0.006116999313235283, 0.006973970215767622, 0.022327210754156113, 0.021158317103981972, -0.014092410914599895, 0.002565987640991807, -0.024770071730017662, 0.03617008402943611, 0.004951387643814087, -0.014486419968307018, -0.009679502807557583, 0.03456777706742287, 0.01664033904671669, -0.028027217835187912, 0.008366137742996216, 0.04638806730508804, 0.010592292062938213, -0.01023111678659916, 0.018255779519677162, 0.011301509104669094, 0.003134018275886774, 0.00347385136410594, 0.034935519099235535, 0.014538954943418503, -0.022012004628777504, 0.005512851290404797, 0.009922475554049015, 0.04050418734550476, -0.005365097429603338, -0.009167290292680264, 0.023285968229174614, 0.00900311954319477, -0.002630014205351472, -0.10648766905069351, -0.041554879397153854, 0.005998796317726374, 0.0037824923638254404, 0.011931924149394035, 0.023128364235162735, -0.019056931138038635, 0.025413621217012405, -0.012614874169230461, 0.030259938910603523, 0.012457271106541157, -0.007328578736633062, 0.012470404617488384, -0.002562704263255, -0.00986994057893753, -0.012726510874927044, -0.0062516191974282265, -0.00010435098374728113, -0.033911094069480896, 0.0046821474097669125, 0.00847120676189661, 0.00898341927677393, 0.0019421391189098358, 0.0020291495602577925, -0.012923515401780605, 0.009042521007359028, -0.03149450197815895, 0.024743804708123207, 0.004659163765609264, 0.00801809597760439, -0.008458073250949383, -0.007650353480130434, 0.014223746955394745, -0.029498185962438583, 0.030969155952334404, -0.017073750495910645, -0.01577351801097393, -0.010835264809429646, 0.027239197865128517, -0.025820763781666756, 0.002470768755301833, -0.000571313954424113, 0.006583244074136019, -0.013225589878857136, -0.01050692331045866, -0.002887762151658535, -0.029288047924637794, 0.005805075168609619, 0.029498185962438583, -0.024349793791770935, -0.043183453381061554, -0.01549771148711443, -0.027843346819281578, 0.001254263916052878, 0.009390562772750854, -0.007361412979662418, 0.00768318772315979, 0.0011089729377999902, 0.010539757087826729, 0.012746211141347885, -0.010198282077908516, -0.005828058812767267, -0.014381350949406624, 0.01674540899693966, 0.001681107678450644, 0.022261543199419975, 0.017375824972987175, -0.008103464730083942, 0.02060670219361782, -0.021499792113900185, -0.024244725704193115, 0.029655789956450462, -0.03149450197815895, 0.022708088159561157, -0.015957389026880264, 0.00872731301933527, -0.0086813447996974, 0.013659000396728516, 0.013803469948470592, 0.011222707107663155, -0.033359479159116745, -0.015261305496096611, 0.005013772286474705, -0.026332976296544075, 0.019674213603138924, 0.02492767572402954, 0.0037627918645739555, 0.015694716945290565, 0.028683900833129883, -0.01455208845436573, -0.0035428032279014587, 0.01048065535724163, 0.021184584125876427, 0.01648273505270481, 0.022406013682484627, 0.009810839779675007, 0.007479615975171328, -0.0005109812482260168, 0.004268437623977661, 0.028053484857082367, -0.02839495986700058, 0.011531348340213299, -0.05011802166700363, 0.004426041152328253, -0.02589956484735012, -0.03362215310335159, 0.020225826650857925, -0.03509312495589256, -0.002887762151658535, -0.02391638420522213, 1.4352108337334357e-05, -0.01853158511221409, -0.026635050773620605, -0.003897411748766899, 0.009508765302598476, -0.021854400634765625, -0.01050692331045866, -0.026897722855210304, 0.019529743120074272, 0.007952427491545677, 0.0038514439947903156, 0.016548404470086098, 0.006113715935498476, -0.014959231950342655, 0.04102953523397446, -0.01210922934114933, -0.04184382036328316, -0.006671896204352379, -0.013947940431535244, 0.025728827342391014, -0.013179621659219265, -0.020619837567210197, 0.01048065535724163, -0.0008561500580981374, 0.007308878470212221, 0.014302548952400684, -0.02575509622693062, -0.006005363073199987, 0.008057496510446072, 0.005532551556825638, 0.01572098396718502, 0.04625672847032547, 0.004810200538486242, -0.014998632483184338, 0.02193320170044899, -0.03816640004515648, -0.0018715456826612353, -0.00624833581969142, -0.006382955703884363, 0.008871783502399921, 0.015786651521921158, 0.013264990411698818, -0.001095839194022119, 0.02111891470849514, -0.008274202235043049, -0.0068623339757323265, 0.01993688754737377, -0.009666369296610355, -0.002405100269243121, -0.01188595686107874, -0.00647489121183753, -0.02218274213373661, 0.018492184579372406, -0.017782967537641525, 0.003068349789828062, -0.008924317546188831, -0.0035460866056382656, -0.02702905982732773, -0.03409496694803238, -0.01432881597429514, 0.001550592016428709, 0.004954671021550894, -0.012733077630400658, -0.009022819809615612, 0.025124680250883102, 0.019766150042414665, 0.024297259747982025, -0.025965234264731407, -0.0276857428252697, 0.01929333806037903, -0.02865763194859028, 0.024691268801689148, 0.029682056978344917, 0.0038744278717786074, -0.035040587186813354, 0.02437606081366539, 0.03821893408894539, 0.0011393445311114192, 0.023285968229174614, -0.030259938910603523, -0.004320972133427858, 0.018176976591348648, 0.020173292607069016, 0.0019421391189098358, -0.014604623429477215, 0.03669542819261551, -0.0211714506149292, -0.002840152708813548, 0.008753580041229725, -0.006973970215767622, 0.001492311479523778, -0.0027285167016088963, 0.003048649523407221, -0.010487223044037819, -0.0019716897513717413, -0.03199357911944389, -0.032229986041784286, 0.013291257433593273, -0.007742288988083601, -0.01853158511221409, -0.008320169523358345, 0.027554405853152275, 0.00928549375385046, 0.005709855817258358, 0.008366137742996216, 0.006369822192937136, -0.035697270184755325, 0.005611353553831577, -0.014959231950342655, 0.0019421391189098358, -0.014683425426483154, 0.019805550575256348, -4.355653072707355e-05, 0.018964996561408043, 0.043682534247636795, -0.027002792805433273, 0.02540048584342003, 0.0061268494464457035, 0.02834242582321167, 0.002291822573170066, 0.012332500889897346, 0.006202368065714836, -0.007354846224188805, -0.011971325613558292, -0.03138943389058113, -0.012450704351067543, 0.014867296442389488, -0.03062768094241619, 0.0027974683325737715, 0.0252428837120533, 0.01534010749310255, 0.055896829813718796, 0.00382189336232841, -0.018452784046530724, -0.00036076505784876645, -0.01048065535724163, 0.008641944266855717, 0.006685029715299606, -0.0057295565493404865, 0.019267071038484573, -0.004094416741281748, 0.00981740653514862, 0.005384798161685467, -0.023942651227116585, -0.019779283553361893, -0.01572098396718502, 0.020422831177711487, -0.01913573406636715, 0.013580198399722576, -0.01750716008245945, 0.008720746263861656, 0.014000475406646729, -0.0014438810758292675, -0.0018912461819127202, -0.009180423803627491, -0.025453021749854088, 0.009929042309522629, 0.03816640004515648, 0.01731015555560589, 0.00608088169246912, -0.04039911925792694, 0.002268838696181774, 0.0018928878707811236, -0.02565002627670765, -0.008766713552176952, 0.0037824923638254404, 0.0034048997331410646, 0.0183214470744133, -0.018859926611185074, 0.0020504917483776808, 0.01892559602856636, -0.002167052822187543, 0.0031356599647551775, -0.028788968920707703, -0.05072217062115669, -0.0176516305655241, 0.00946279801428318, -0.024284126237034798, -0.013442294672131538, -0.03349081799387932], "df1de581-9827-42fd-b1ed-e2fc4ca4899b": [-0.006245537661015987, -0.021314410492777824, 0.011985896155238152, -0.030670607462525368, 0.0031383393798023462, 0.02873293310403824, 0.0003070866805501282, -0.02766721323132515, -0.023971792310476303, -0.011577600613236427, 0.02098223753273487, 0.003339027054607868, 0.005190197378396988, 0.033300306648015976, -0.019501302391290665, -0.010581082664430141, 0.023085998371243477, 0.005446247290819883, -0.005716137588024139, -0.0017456364585086703, -0.016221096739172935, -0.0032248427160084248, 0.020248690620064735, -0.034988850355148315, -0.002600288949906826, 0.016401024535298347, 0.007923701778054237, -0.020677747204899788, -0.004636576399207115, -0.021757308393716812, 0.025895625352859497, -0.009127827361226082, 0.009024023078382015, -0.01354987546801567, -0.023501213639974594, -0.013328427448868752, -0.011688324622809887, -0.006287059281021357, 0.021964915096759796, -0.02307215705513954, 0.018006525933742523, 0.007882179692387581, 0.005588112398982048, -0.01275404542684555, -0.018186451867222786, -0.020871514454483986, 0.026656854897737503, -0.04290563240647316, -0.03119654767215252, 0.02629700116813183, 0.032054658979177475, 0.03703724965453148, -0.0045258523896336555, -0.02548041008412838, -0.0006431519868783653, 0.0018079187721014023, 0.002401331439614296, 0.020788470283150673, 0.0035120337270200253, -0.016041170805692673, 0.007626130245625973, -0.004733460023999214, -0.009473840706050396, -0.017383702099323273, 0.0037819237913936377, 0.011889012530446053, -0.01153607852756977, 0.022726144641637802, 0.015667475759983063, -0.01152223814278841, 0.03324494510889053, 0.005671155638992786, 0.0022542758379131556, 0.009806012734770775, 0.025618813931941986, -0.009999780915677547, -0.04052506014704704, -0.0007953977910801768, -0.00017419600044377148, -0.004968748893588781, -0.007062128745019436, -0.001129732932895422, -0.011833650059998035, 0.00032525238930247724, 0.012920131906867027, -0.006062150467187166, 0.010421916842460632, 0.01851862482726574, -0.022532377392053604, -0.012172742746770382, 0.006020629312843084, 0.023432010784745216, -0.018657030537724495, 0.008055186830461025, -0.015376824885606766, 0.04041433706879616, -0.01426958292722702, 0.024899108335375786, 0.03540406748652458, -0.022906072437763214, 0.016401024535298347, 0.0007097594789229333, 0.0026348901446908712, 0.0012430523056536913, -0.01958434469997883, -0.009958258830010891, 0.00579226016998291, -0.0008520574192516506, 0.009093225933611393, 0.01633182168006897, -0.0046434965915977955, 0.01698232628405094, 0.003954930696636438, -0.04224128648638725, 0.030809013172984123, -0.009584564715623856, -0.0008550850325264037, -0.019473621621727943, -0.006716115400195122, -0.003730021882802248, 0.016816239804029465, 0.013307666406035423, 0.028456123545765877, -0.0033130759838968515, 0.007985983975231647, -0.014027373865246773, -0.021342091262340546, -0.037895362824201584, 0.020871514454483986, 0.000250643293838948, 0.019778111949563026, 0.022380132228136063, 0.028649890795350075, -0.017840439453721046, -0.022587738931179047, 0.0169269647449255, -0.019445940852165222, -0.00527670094743371, -0.018657030537724495, -0.01941825821995735, 0.01739754155278206, 0.01083713211119175, -0.017189934849739075, -0.007612289860844612, -0.009743730537593365, 0.01077484991401434, 0.009799093008041382, 0.0013857827289029956, -0.0006124433130025864, 0.003861506935209036, 0.011487636715173721, -0.02813779003918171, -0.008546525612473488, 0.023778025060892105, 0.0141450185328722, 0.0042871031910181046, -0.032552920281887054, 0.01732833869755268, 0.005698836874216795, -0.018684711307287216, 0.0013511814177036285, 0.030642926692962646, -0.001031984225846827, -0.016401024535298347, 0.02448389120399952, 0.01281632762402296, 0.029812494292855263, 0.018131090328097343, -0.0182694960385561, 0.012338829226791859, -0.00685452064499259, 0.010034381411969662, -0.014518712647259235, -0.0028442281764000654, 0.006595010869204998, 0.001627991907298565, 0.007383921183645725, -0.0002670789253897965, -0.014947769232094288, 0.004536232445389032, 0.01341147068887949, 0.011037820018827915, 0.0006210936116985977, 0.04127245023846626, -0.0027750255540013313, 0.012982414104044437, 0.034767404198646545, -0.014068895019590855, 0.03271900489926338, 0.0013494513696059585, 0.03468436002731323, 0.03628985956311226, 0.008006745018064976, -0.015999648720026016, -0.6430862545967102, -0.02460845559835434, -0.018006525933742523, -0.02682294137775898, 0.00460543530061841, 0.00863648857921362, 0.012324988842010498, 0.029120467603206635, 0.01439414732158184, 0.030061623081564903, -0.008055186830461025, 0.021715786308050156, 0.0021816131193190813, -0.018933840095996857, -0.004757680930197239, -0.006795698776841164, 0.0065465690568089485, -0.05851774662733078, 0.012497995980083942, -0.0033442173153162003, 0.008470402099192142, 0.03443523123860359, -0.026684535667300224, -0.004553533159196377, 0.028206992894411087, 0.010754088871181011, 0.009709129109978676, -0.02741808257997036, 0.02451157197356224, -0.0072939577512443066, -0.023099839687347412, 0.019445940852165222, 0.005484308581799269, -0.011632963083684444, 0.0349058099091053, -0.0041452376171946526, 0.0036677394527941942, 0.021508177742362022, 0.018781594932079315, 0.036732759326696396, -0.016470227390527725, -0.026020189747214317, -0.005238639190793037, 0.004432428628206253, -0.008767973631620407, -0.01267792284488678, 0.016401024535298347, 0.018463263288140297, -0.0075223264284431934, -0.004401287529617548, -0.0029117008671164513, 0.006466986145824194, 0.015667475759983063, -0.025245120748877525, -0.0006833759834989905, 0.0025103255175054073, 0.009591485373675823, -0.009079385548830032, -0.0017707223305478692, -0.018809275701642036, -0.009037863463163376, 0.0017240105662494898, 0.008359678089618683, -0.018836956471204758, 0.00022382727183867246, -0.004615815822035074, -0.011113942600786686, 0.003702340880408883, 0.0057472786866128445, -0.012151982635259628, 0.014961609616875648, 0.010283511132001877, -0.027376562356948853, -0.011418434791266918, 0.009646846912801266, 0.011245427653193474, -0.004297483712434769, -0.01623493805527687, -0.02478838339447975, 0.015875084325671196, 0.029120467603206635, 0.009127827361226082, 0.014781682752072811, -0.01426958292722702, 0.02304447628557682, 0.0014203840401023626, -0.04019289091229439, -0.012345749884843826, 0.0017733174609020352, 0.004501631483435631, 0.007460043765604496, 0.0018165691290050745, -0.02339049056172371, -0.019971879199147224, 0.005570812150835991, 0.013667520135641098, 0.002442853059619665, -0.0042421212419867516, 0.009799093008041382, -0.02381954714655876, 0.0016764338361099362, -0.010200467891991138, 0.0094461590051651, -0.012774806469678879, 0.01066412590444088, 0.0003968338423874229, 0.011826730333268642, 0.01995803974568844, 0.025771060958504677, -0.010207388550043106, -0.007473884616047144, -0.019819634035229683, -0.013778244145214558, -0.0006215261528268456, -0.008837176486849785, -0.028400760143995285, -0.0013191752368584275, 0.0011366532417014241, 0.005944506265223026, 0.008325076662003994, 0.008269715122878551, 0.02011028490960598, -0.009750651195645332, 0.005913365166634321, -0.013369948603212833, 0.015293781645596027, 0.0011288679670542479, -0.009792172349989414, -0.04431736469268799, 0.011729846708476543, -0.008103628642857075, -0.016470227390527725, 0.022850709035992622, -0.004726539831608534, 0.020663905888795853, 0.0046884785406291485, 0.007639970630407333, -0.02135593257844448, -0.023335127159953117, -0.012435712851583958, -0.0013105248799547553, 0.022629261016845703, -0.00010045195085695013, -0.01426958292722702, -0.0055535114370286465, -0.024677658453583717, -0.031556401401758194, -0.005100233945995569, -0.02197875641286373, 0.003771543502807617, 0.019999561831355095, -0.0255080908536911, -0.030559882521629333, 0.01745290495455265, 0.021092962473630905, -0.0009567263768985868, -0.007473884616047144, 0.002498215064406395, -0.013715961948037148, -0.0014074085047468543, 0.003999912180006504, 0.02644924633204937, -0.028705252334475517, 0.015141536481678486, -0.012684842571616173, -0.03947318345308304, 0.009653767570853233, 0.039833035320043564, -0.0032507937867194414, -0.0361514538526535, -0.0020864594262093306, -0.010532640852034092, -0.0021089501678943634, -0.009937497787177563, 0.003563935635611415, 0.002133171074092388, -0.01605501025915146, 0.0023511594627052546, 4.154861380811781e-05, -0.01630414091050625, -0.004027593415230513, 0.0052940016612410545, 0.009453079663217068, -0.015653636306524277, 0.023362809792160988, -0.018006525933742523, 0.004498171154409647, 0.0035120337270200253, -0.004799202550202608, -0.0059860278852283955, -0.012809406965970993, 0.03216538205742836, -0.0030518360435962677, -0.004096795804798603, 0.005657315254211426, 0.021286729723215103, -0.003428990487009287, 0.009411558508872986, 0.021162165328860283, 0.04639344662427902, 0.02757032960653305, 0.006204016041010618, 0.024566935375332832, -0.021771147847175598, 0.00500335032120347, -0.045009393244981766, 0.016913123428821564, -0.005830321926623583, 0.011314630508422852, 0.010269670747220516, 0.007273196708410978, -0.0167331974953413, -0.012795566581189632, -0.0059721870347857475, 0.017937323078513145, 0.009985939599573612, -0.008899458684027195, -0.001432494493201375, -0.01685776188969612, 0.010691806674003601, 0.0018200292252004147, 0.007480804808437824, 0.008934060111641884, 0.00849116314202547, -0.04262882098555565, 0.02008260414004326, 0.02881597727537155, 0.0030829773750156164, 0.01645638607442379, -0.025092875584959984, -0.013778244145214558, -0.011840570718050003, 0.008131309412419796, 0.0017404461978003383, 0.0049791294150054455, -0.0056503950618207455, 0.016317980363965034, -0.0256049744784832, 0.016290299594402313, 0.0002534546365495771, 0.014574074186384678, 0.0065154279582202435, 0.005743818357586861, -0.0025137856137007475, -0.005813021212816238, 0.0017240105662494898, 0.02582642249763012, 0.02572953887283802, -0.003065676661208272, 0.017868120223283768, 0.0025604974944144487, -0.017383702099323273, -0.0034584016539156437, 0.005944506265223026, 0.03357711806893349, -0.01583356224000454, 0.0062109362334012985, 0.006020629312843084, 0.022587738931179047, 0.02264310233294964, -0.01358447689563036, 0.014324945397675037, 0.021715786308050156, 0.016913123428821564, 0.004224820528179407, -0.0036435185465961695, -0.024553094059228897, -0.016193415969610214, -0.045009393244981766, -0.00493414793163538, -0.03418610244989395, -0.0302553903311491, -0.018463263288140297, -0.0025155157782137394, 0.011972055770456791, -0.0017421762458980083, 0.014823203906416893, -0.005556971300393343, -0.012567197903990746, -0.01689928211271763, -0.021909553557634354, -0.026864461600780487, -0.0003639626083895564, 0.021148324012756348, -0.013667520135641098, -0.023335127159953117, -0.0029826334211975336, 0.007688412442803383, 0.00916242878884077, 0.006646913010627031, 0.00020631034567486495, 0.014947769232094288, -0.007231675088405609, -0.011148544028401375, -0.0018286795821040869, -0.0001904153759824112, 0.028954381123185158, -0.0017032497562468052, -0.012089700438082218, -0.017909642308950424, -0.004266342148184776, 0.0042421212419867516, -0.014504872262477875, -0.015432187356054783, 0.0375908687710762, 0.012920131906867027, 0.007280116900801659, -0.004377066623419523, -0.021992597728967667, -0.027722574770450592, 0.0005973052466288209, -0.023570416495203972, -0.03551479056477547, -0.024124037474393845, 0.0021746926940977573, -0.019625866785645485, 0.020151806995272636, 0.01642870530486107, 0.04492634907364845, -0.010124345310032368, -0.00860188715159893, -0.03676043823361397, -0.009439239278435707, 0.00983369443565607, 0.07545854896306992, 0.008505003526806831, -0.011785208247601986, 0.015888923779129982, 0.015362984500825405, -0.006768017541617155, -0.013432230800390244, -0.015805881470441818, 0.02326592616736889, -0.02507903426885605, -0.02635236270725727, 0.021438974887132645, -0.00047793067642487586, -0.012844008393585682, 0.0008697906159795821, 0.011072421446442604, -0.009854454547166824, -0.02498215064406395, 0.011480716988444328, -0.05026879161596298, -0.009916737675666809, 0.04249041527509689, 0.01820029318332672, 0.007556927390396595, 0.017286818474531174, -0.0008044806309044361, 0.017259135842323303, 0.001535433460958302, 0.012657161802053452, -0.030116986483335495, -0.01080253068357706, 0.013681360520422459, 0.01067796628922224, 0.020594703033566475, 0.0010622604750096798, 0.04237969219684601, 0.004370146431028843, 0.014532553032040596, 0.01804804615676403, 0.007709173485636711, 0.02210332080721855, 0.005671155638992786, 0.0004072142473887652, -0.011072421446442604, -0.008470402099192142, -0.02610323391854763, -0.019099926576018333, 0.0390302836894989, -0.012414952740073204, -0.014504872262477875, 0.01369520090520382, -0.0007750694639980793, -0.029591046273708344, -0.01779891736805439, 0.0019861154723912477, 0.010795610956847668, -0.0188923180103302, 0.015169217251241207, -0.012345749884843826, -0.022034117951989174, -0.014961609616875648, -0.011674484238028526, -0.01436646655201912, -0.005484308581799269, 0.007397761568427086, -0.005522370338439941, -0.02460845559835434, 0.018573986366391182, -0.016996167600154877, 0.004013752564787865, 0.020650066435337067, -0.028899019584059715, -0.028220834210515022, -0.018587827682495117, 0.030919736251235008, 0.013065457344055176, 0.007363160140812397, 0.003864967031404376, 0.004543152637779713, -0.0011773097794502974, -0.010269670747220516, -0.018435580655932426, -0.016525588929653168, -0.020221009850502014, 0.005148675758391619, 0.012096620164811611, -0.0011807698756456375, 0.007480804808437824, -0.003067406825721264, 0.036455947905778885, 0.012601799331605434, 0.003958390560001135, 0.005560431629419327, -0.02657381072640419, 0.0016738387057557702, -0.0023373188450932503, 0.007453123573213816, 0.03764623403549194, 0.008214352652430534, -0.007259356323629618, -0.011369992978870869, 0.027847139164805412, -0.007909861393272877, -0.019335215911269188, -0.006761097349226475, 0.021286729723215103, -0.0015873353695496917, 0.007570768240839243, -0.003736942308023572, 0.0030466460157185793, 0.013390709646046162, -0.01561211422085762, 0.010138185694813728, -0.002162582240998745, 0.012463394552469254, 0.005352823529392481, 0.009840614162385464, 0.014975450001657009, -0.008892538025975227, -0.021245207637548447, 0.01720377430319786, -0.033078860491514206, -0.018753914162516594, 0.020414777100086212, -0.0038788076490163803, 0.027860980480909348, 0.018573986366391182, -0.02950800210237503, -0.013605237938463688, -0.003499923273921013, 0.0281931534409523, 0.019916517660021782, 0.016096532344818115, -0.018698550760746002, -0.01892000064253807, 0.012601799331605434, -0.021840350702404976, -0.0032265728805214167, -0.02045629918575287, -0.014352626167237759, -0.001102917012758553, -0.018753914162516594, 0.01363291870802641, -0.029867855831980705, -0.016470227390527725, -0.03119654767215252, 0.0055535114370286465, 0.01839406043291092, 0.019971879199147224, 0.014200380071997643, -0.004415127914398909, -0.015792040154337883, 0.001234401948750019, 0.0005358878988772631, -0.007833737879991531, 0.001367617049254477, 0.0019048025133088231, 0.001534568378701806, 0.02876061387360096, 0.02386106736958027, 0.027598010376095772, -0.016096532344818115, 0.005698836874216795, 0.017010007053613663, -0.0020466679707169533, 0.0008507598540745676, 0.009639927186071873, 0.013909729197621346, -0.013079297728836536, 0.029618727043271065, 0.012449554167687893, 0.0016885442892089486, -0.007633050438016653, 0.010366554372012615, 0.02667069435119629, 0.010200467891991138, 0.004899546504020691, 0.004563913680613041, -0.015722839161753654, -0.03282972797751427, -0.009425398893654346, 0.0006695354823023081, 0.014560233801603317, 0.019501302391290665, -0.029895538464188576, -0.006093292031437159, 0.03925173357129097, 0.012297308072447777, -0.009695288725197315, 0.0013814575504511595, 0.02189571224153042, -0.021023759618401527, 0.015888923779129982, 0.012968573719263077, 0.016650153324007988, -0.03191625326871872, 0.016511747613549232, -0.026310840621590614, 0.015778200700879097, 0.02769489400088787, 0.008608807809650898, 0.021217526867985725, -0.0013131200103089213, 0.016124213114380836, -0.0022144841495901346, 0.00026556511875241995, 0.0326082818210125, -0.0029445721302181482, 0.00544970715418458, -0.007307798136025667, -0.003903028555214405, -0.04924459382891655, -0.02585410326719284, -0.01886463724076748, 0.0006146059022285044, 0.0071209510788321495, 0.009190109558403492, 0.015681317076086998, -0.0012586228549480438, -0.004730000160634518, 0.003074327018111944, 0.005228259135037661, 0.029203511774539948, 0.014670957811176777, 0.01613805443048477, 0.04262882098555565, 0.0045777540653944016, -0.02575721964240074, 0.011812889948487282, 0.005861463025212288, 0.014670957811176777, -0.00493414793163538, 0.030559882521629333, -0.00922471098601818, -0.023030636832118034, -0.008878697641193867, 0.014726320281624794, -0.01476784236729145, -0.030310753732919693, 0.01570899784564972, -0.005608873441815376, -0.00213144114241004, -0.011058581061661243, 0.018698550760746002, -0.018504783511161804, 0.03609609231352806, -0.02788866125047207, 0.022020278498530388, -0.009120906703174114, -0.018366379663348198, -0.021120643243193626, 0.008062106557190418, 0.005453167483210564, 0.023127520456910133, -0.0016781638842076063, 0.0012395922094583511, -0.017120731994509697, 0.002697172574698925, -0.0255080908536911, -0.005657315254211426, -0.00927315279841423, 0.014117336831986904, 0.0003034102846868336, 0.00472307950258255, 0.005221338476985693, 0.005034491419792175, 0.009286993183195591, -0.003261174075305462, -0.0029099707026034594, 0.02476070262491703, -0.02105144038796425, -0.026781419292092323, -0.015252260491251945, 0.004671177826821804, 0.006314740050584078, -0.021784989163279533, -0.010152026079595089, -0.007570768240839243, -0.0033476774115115404, 0.004999890457838774, 0.0030812472105026245, -0.005947966128587723, -0.021646583452820778, -0.0004091605660505593, -0.00527670094743371, 0.0035085733979940414, 0.003133149119094014, 0.016968484967947006, -0.012539517134428024, -0.027736416086554527, -0.0032352230045944452, -0.02500983141362667, 0.00037628933205269277, 0.0011141623836010695, 0.010359634645283222, -0.0025120556820183992, 0.0031556400936096907, 0.027210475876927376, -0.014823203906416893, 0.015888923779129982, -0.007259356323629618, 0.017937323078513145, -0.022490855306386948, 0.003948010038584471, -0.02900974452495575, 0.003126228926703334, 0.02545272931456566, 0.004359765909612179, -0.002067428780719638, -0.014643277041614056, 0.002562227426096797, 0.013819766230881214, 0.005186737515032291, -0.002567417686805129, -0.012421872466802597, 0.000897904159501195, 0.029175831004977226, 0.008421960286796093, -0.026933664456009865, 0.025549612939357758, -0.013715961948037148, 0.0007166797877289355, 0.035487111657857895, -0.010470358654856682, -0.017757395282387733, -0.018255654722452164, -0.008345837704837322, -0.0034186099655926228, -0.021591221913695335, 0.0029705229680985212, -0.014532553032040596, 0.012491075322031975, 0.004543152637779713, -0.032580599188804626, -0.003288855077698827, 0.0011790398275479674, -0.027681052684783936, -0.002534546423703432, 0.004387447144836187, 0.015044652856886387, -0.004117556847631931, 0.03213770315051079, 0.0014247092185541987, -0.00539434514939785, 0.00013083622616250068, -0.015030811540782452, 0.022878389805555344, 0.0031487199012190104, -0.04146621748805046, -0.006453145761042833, -0.02744576521217823, 0.02548041008412838, 0.024816064164042473, -0.04907850921154022, -0.02207564003765583, -0.02048397995531559, -0.010733328759670258, 0.011342311277985573, -0.014809363521635532, 0.00488570611923933, 0.02923119254410267, 0.0032507937867194414, 0.012954733334481716, 0.004972209222614765, -0.002396141178905964, 0.022006437182426453, -0.004470489919185638, 0.0016487527173012495, -0.003373628482222557, 0.027653371915221214, -0.00799290370196104, 0.01510001439601183, -0.013542955741286278, -0.03044915944337845, 0.017605150118470192, 0.016636313870549202, -0.0059721870347857475, 0.01510001439601183, -0.0028788296040147543, -0.014975450001657009, 0.0007633915520273149, -0.009127827361226082, 0.0058234017342329025, 0.022117162123322487, 0.008435800671577454, -0.029120467603206635, -0.007501565385609865, 0.00707942945882678, 0.010380394756793976, -0.0018061887240037322, -0.01904456503689289, 0.010643364861607552, 0.005830321926623583, 0.0031539099290966988, -0.013335347175598145, -0.01302393525838852, 0.01705152913928032, 0.009985939599573612, 0.021438974887132645, -0.007902940735220909, 0.021217526867985725, 0.018214132636785507, 0.0018061887240037322, 0.011203906498849392, -0.009231631644070148, 0.013369948603212833, -0.042767226696014404, -0.004754221066832542, 0.01286476943641901, 0.01486472599208355, -0.0052940016612410545, -0.019501302391290665, 0.025909466668963432, -0.011709085665643215, 0.030670607462525368, -0.010366554372012615, 0.003427260322496295, -0.01685776188969612, 0.008913299068808556, 0.05013038590550423, -0.03172248601913452, 0.013369948603212833, 0.004193679429590702, 0.005467007867991924, -0.02145281620323658, -0.025065192952752113, -0.016774717718362808, -0.007667651865631342, -0.0018113788682967424, -0.0071417116560041904, -0.008823336102068424, 0.001301009557209909, 0.007653811015188694, 0.004062194377183914, -0.01010358426719904, -0.0004000777262263, 0.2249916046857834, -0.016470227390527725, 0.013051616959273815, 0.017369860783219337, 0.011245427653193474, -0.0005203172913752496, 0.013266144320368767, -0.016041170805692673, -0.01208277978003025, 0.013681360520422459, -0.0021210606209933758, 0.00910014659166336, -0.028843658044934273, -0.0016920043854042888, 0.004512011539191008, -0.030283072963356972, -0.028206992894411087, -0.04262882098555565, -0.024248601868748665, -0.01127310935407877, -0.0010830211685970426, -0.012041258625686169, -0.00939771719276905, -0.01286476943641901, 0.014601755887269974, -0.00039423874113708735, 0.009999780915677547, 0.024027153849601746, 0.027335040271282196, 0.006034469697624445, -0.005532750394195318, 0.015916606411337852, -0.010207388550043106, -0.015847403556108475, -0.03532102331519127, -0.011646803468465805, 0.03925173357129097, 0.00020944609423168004, 0.04415128007531166, -0.0037127211689949036, -0.021148324012756348, -0.012311148457229137, -0.012394191697239876, -0.008318156935274601, 0.01060184370726347, -0.0009844074957072735, -0.029314234852790833, 0.00398953165858984, -0.0010890763951465487, 0.025784900411963463, -0.011750606819987297, -0.009003262966871262, 0.03554247319698334, 0.014186539687216282, -0.011203906498849392, -0.023252084851264954, 0.020096445456147194, 0.01487856637686491, 0.012871690094470978, -0.006646913010627031, -0.011044740676879883, 0.013501433655619621, -0.014850884675979614, 0.01366059947758913, 0.0011063771089538932, -0.006550029385834932, -0.044262003153562546, 0.0020189867354929447, -0.007397761568427086, -0.016913123428821564, 0.023459693416953087, -0.027777936309576035, -0.009639927186071873, 0.016567111015319824, -0.026158595457673073, -0.03211002051830292, 0.02172962762415409, 0.027251996099948883, 0.006335501093417406, 0.028899019584059715, -0.015224579721689224, -0.0042871031910181046, 0.006543109193444252, -0.024207081645727158, -0.0243593268096447, -0.03413073718547821, 0.017757395282387733, -0.020179487764835358, -0.006335501093417406, -0.017757395282387733, -0.004923767410218716, -0.013875127770006657, -0.004709239117801189, -0.020968398079276085, 0.012567197903990746, 0.01123850792646408, -0.011660643853247166, 0.020373255014419556, -0.00949460081756115, 0.02319672331213951, -0.002340779174119234, 0.045978229492902756, 0.011916693300008774, -0.0010544750839471817, -0.0011254078708589077, -0.015293781645596027, -0.005176356993615627, 0.011729846708476543, 0.026961345225572586, -0.015432187356054783, -0.01206893939524889, -0.016151893883943558, -0.00573689816519618, -0.0036469788756221533, 0.0023165580350905657, 0.004006832372397184, -0.015875084325671196, -0.007937542162835598, 0.030781330540776253, -0.02008260414004326, -0.012124300934374332, -0.02363961935043335, 0.016179576516151428, 0.016068851575255394, -0.023113679140806198, 0.002297527389600873, -0.05096082016825676, 0.004868405405431986, -0.01144611556082964, -0.007757615298032761, 0.009536122903227806, -0.0101174246519804, 0.010435757227241993, -0.007162472698837519, -0.00679915864020586, -0.012331909500062466, -0.013715961948037148, -0.006096751894801855, -0.0005709217512048781, -0.008242033421993256, -0.018587827682495117, -0.002067428780719638, -0.01144611556082964, -0.014006612822413445, 0.0008122659055516124, -0.00914858840405941, 0.005567351821810007, 0.008816415444016457, 0.004121016710996628, -0.016650153324007988, -0.011632963083684444, 0.015902765095233917, -0.004646956920623779, -0.018380219116806984, 0.011072421446442604, -0.0281931534409523, -0.005114074796438217, -0.0444004088640213, 0.00993057806044817, 0.015016971156001091, -0.03119654767215252, 0.032359153032302856, 0.014809363521635532, -0.026504607871174812, -0.02788866125047207, 0.0010397696169093251, -0.1791517734527588, 0.016816239804029465, 0.003364978125318885, -0.041576940566301346, 0.028926700353622437, 0.009958258830010891, 0.012504915706813335, 0.009847534820437431, -0.0009022293379530311, -0.005494689103215933, 0.0014567153993993998, 0.02232476882636547, -0.029812494292855263, 0.013072377070784569, -0.01336302887648344, 0.012747124768793583, -0.0018926920602098107, -0.022809188812971115, 0.012594879604876041, 0.024912947788834572, 0.016788559034466743, -0.008290475234389305, 0.027708733454346657, 0.0028148170094937086, 0.012366510927677155, 0.015944287180900574, -0.004179839044809341, -0.013342267833650112, -0.017757395282387733, -0.012698682956397533, 0.001301874523051083, 0.018061887472867966, 0.01449103094637394, 0.0026539210230112076, 0.020193329080939293, 0.008048266172409058, 0.015155376866459846, -0.007252436131238937, -0.020400935783982277, 0.019653547555208206, 0.031528718769550323, 0.013051616959273815, 0.034490592777729034, -0.0066434526816010475, 3.365518568898551e-05, 0.029840175062417984, 0.017466744408011436, -0.010809451341629028, -0.0006518022855743766, -0.014138097874820232, 0.007646890822798014, -0.010781770572066307, -0.003958390560001135, 0.0014394148020073771, 0.027971703559160233, -0.011044740676879883, -0.030836693942546844, 0.01963970810174942, 0.008214352652430534, 0.014504872262477875, 0.015086174011230469, -0.028054747730493546, -0.009183189831674099, 0.005034491419792175, -0.008982501924037933, -0.0510161817073822, 0.009757570922374725, 0.01655326969921589, -0.023598097264766693, 0.009536122903227806, 0.017812758684158325, 0.007896020077168941, -0.006840680260211229, -0.019681228324770927, -0.01153607852756977, -0.0021833430510014296, 0.005103694275021553, 0.018089568242430687, 0.014670957811176777, -0.01752210594713688, 0.0008723856881260872, 0.008774894289672375, -0.015321463346481323, -0.005197117570787668, 0.022490855306386948, -0.00038472338928841054, -0.009266232140362263, -0.005892604123800993, 0.0031504498329013586, -0.02020716853439808, 0.021757308393716812, -0.049632128328084946, -0.011743687093257904, -0.004131397232413292, 0.0019099926576018333, 0.025867944583296776, -0.005148675758391619, -0.00719707366079092, 0.007287037093192339, -0.0073354789055883884, 0.023030636832118034, 0.013944330625236034, -0.02881597727537155, -0.01958434469997883, 0.014518712647259235, 0.025771060958504677, -0.023224404081702232, 0.0029047804418951273, 0.027681052684783936, 0.012248866260051727, -0.02900974452495575, 0.015224579721689224, -0.0072939577512443066, 0.009044784121215343, -0.001702384790405631, 0.034047696739435196, -0.001662593218497932, -0.016262618824839592, 0.007155552040785551, -0.008055186830461025, 0.044234324246644974, 0.0005069092730991542, -0.0032179225236177444, 0.03371552377939224, -0.008629567921161652, -0.030670607462525368, -0.07927853614091873, -0.03756318986415863, 0.002870179247111082, 0.013999693095684052, 0.010048222728073597, 0.02613091468811035, -0.018878478556871414, 0.013729802332818508, -0.01094785612076521, 0.015044652856886387, 0.016691675409674644, -0.010311191901564598, -0.0022075639571994543, -0.01286476943641901, 0.0005216148565523326, -0.005287081003189087, -0.02026253007352352, 0.0067853182554244995, -0.02478838339447975, 0.023113679140806198, -0.022684622555971146, 0.013854366727173328, 0.01436646655201912, 0.004560453351587057, 0.005138295702636242, -0.00353625463321805, -0.038144491612911224, 0.029148148372769356, 0.003102008020505309, 0.004442809149622917, -0.005425486247986555, -0.012830168008804321, 0.013183102011680603, -0.020788470283150673, 0.001269868342205882, -0.007006766740232706, -0.02575721964240074, -0.0010717757977545261, 0.04224128648638725, -0.007349319756031036, -0.01630414091050625, 0.010629524476826191, 0.0028892098926007748, -0.024649977684020996, -0.0322207473218441, -0.0029220811557024717, -0.028899019584059715, 0.00679223844781518, 0.0216742642223835, -0.03933477774262428, -0.021314410492777824, 0.013148500584065914, -0.0243593268096447, -0.0020570482593029737, 0.011369992978870869, -0.00719015346840024, 0.0047403802163898945, 0.004394367337226868, -0.00466079730540514, 0.012857849709689617, -0.020400935783982277, -0.0006833759834989905, 0.0019099926576018333, 0.02709975093603134, 0.010401155799627304, 0.01867086999118328, -0.008940979838371277, -0.02294759266078472, 0.032303787767887115, -0.02192339487373829, -0.005235179327428341, 0.008338917046785355, -0.03122422844171524, 0.02170194499194622, -0.019182970747351646, 0.005207498092204332, -0.008338917046785355, 0.006913342978805304, 0.016401024535298347, -0.019930358976125717, -0.014906247146427631, -0.02264310233294964, -0.00432516448199749, -0.016497908160090446, 0.04096795991063118, 0.01829717680811882, -0.0007573363254778087, 0.03465667739510536, 0.01705152913928032, -0.02485758624970913, -0.00359161663800478, 0.024276284500956535, 0.029895538464188576, -0.0034549415577203035, 0.0008252413826994598, 0.004311324097216129, 0.008255873806774616, -0.02463613823056221, -0.008982501924037933, 0.004027593415230513, -0.046421125531196594, 0.007480804808437824, -0.06621307879686356, 0.019307535141706467, -0.021245207637548447, -0.03141799569129944, 0.0037196415942162275, -0.03833825886249542, -0.01122466754168272, -0.006328580901026726, 0.009529202245175838, -0.0010596653446555138, -0.024553094059228897, -0.005242099519819021, 0.014027373865246773, -0.01613805443048477, 0.016885442659258842, -0.01658095046877861, 0.03761855140328407, -0.017342180013656616, 0.012484154663980007, 0.021176006644964218, 0.004799202550202608, 0.00579226016998291, 0.05406109616160393, -0.022380132228136063, -0.041355494409799576, 0.006498127244412899, -0.006896042264997959, 0.015515230596065521, -0.023681141436100006, -0.011079341173171997, 0.0001312687381869182, -0.02220020443201065, -0.002595098689198494, 0.018947681412100792, -0.0037092610727995634, -0.010906334966421127, -0.0007205724250525236, -0.0019082626095041633, 0.021757308393716812, 0.021868031471967697, -0.006259378045797348, -0.019819634035229683, 0.009965179488062859, -0.018781594932079315, -0.002633160213008523, 0.0056815361604094505, -0.002641810569912195, 0.008290475234389305, 0.018601667135953903, 0.010498039424419403, 0.017535947263240814, 0.019695069640874863, -0.0007819897728040814, -0.017093051224946976, 0.03399233520030975, -0.015376824885606766, 0.0003825608000624925, -0.001870201202109456, -0.01278864685446024, -0.016027329489588737, 0.03460131585597992, -0.003074327018111944, -0.00039142739842645824, 0.006107132416218519, 0.014587915502488613, -0.0051728966645896435, -0.016290299594402313, -0.008075946941971779, 0.007176313083618879, -0.006269758567214012, -0.015224579721689224, 0.0002694577560760081, 0.012996254488825798, 0.021508177742362022, 0.02026253007352352, -0.021411294117569923, -0.0046434965915977955, -0.00927315279841423, -0.03875347599387169, 0.022435493767261505, 0.029148148372769356, 0.011757527478039265, -0.035708557814359665, 0.0006150383851490915, 0.033853929489851, 0.006148654036223888, -0.004512011539191008, -0.02388874813914299, 0.011639882810413837, 0.005221338476985693, 0.017840439453721046, 0.008830255828797817, -0.012089700438082218, 0.033770885318517685, -0.020594703033566475, -0.000632771581877023, 0.0023874908220022917, -0.00213836133480072, 0.017314499244093895, 0.006359721999615431, -0.0021470116917043924, 0.004792282357811928, -0.006923723500221968, -0.020774630829691887, -0.0429609939455986, 0.008871777914464474, -0.008892538025975227, -0.029148148372769356, -0.014657117426395416, 0.007162472698837519, 0.006089831702411175, 0.01911376789212227, 0.0013459912734106183, 0.008401199243962765, -0.05004734545946121, 0.007069048937410116, -0.012954733334481716, 0.01727297715842724, -0.02613091468811035, 0.03224842622876167, 0.0037231016904115677, 0.026587652042508125, 0.0215773805975914, -0.0228230282664299, 0.03125190734863281, 0.009411558508872986, 0.02823467366397381, 0.008138230070471764, 0.0050102705135941505, -0.015016971156001091, 0.0044808704406023026, -0.012345749884843826, -0.03659435361623764, -0.00842888094484806, -0.0031469897367060184, -0.004062194377183914, -0.021286729723215103, 0.02339049056172371, -0.015321463346481323, 0.07368696480989456, -0.0017586118774488568, -0.033494073897600174, 0.011425354517996311, -0.030421476811170578, 0.00977141223847866, 0.013196942396461964, 0.015446027740836143, 0.016885442659258842, -0.030366115272045135, 0.005224798806011677, 0.00949460081756115, 0.006951404735445976, -0.02058086358010769, -0.006826839875429869, 0.03321726247668266, -0.0036192976403981447, 0.017508266493678093, -0.004916847217828035, 0.008387358859181404, 0.019971879199147224, 0.020096445456147194, -0.0010389045346528292, -0.0036123774480074644, -0.03274668753147125, 0.0038718872237950563, 0.038642749190330505, 0.007958303205668926, 0.006204016041010618, -0.023307446390390396, -0.016041170805692673, -0.005999868270009756, -0.03689884394407272, -0.005529290530830622, 0.010290431790053844, -0.003633138258010149, 0.011342311277985573, -0.018629349768161774, 0.0028511486016213894, 0.011134703643620014, -0.0063216607086360455, 0.009252391755580902, -0.03020002879202366, -0.0377846360206604, -0.01219350378960371, -0.0025535770691931248, -0.019695069640874863, -0.011356151662766933, -0.032359153032302856], "bb687d40-1093-4eaf-90c9-d0eb2e3dade1": [0.013973870314657688, 0.00935737881809473, -0.006440972909331322, -0.03596440330147743, 0.005801713094115257, 0.006216368172317743, -0.0022045818623155355, -0.010290352627635002, -0.021257974207401276, -0.026164723560214043, 0.011589604429900646, 0.02283366210758686, -0.018687114119529724, 0.02186613529920578, -0.0014875744236633182, 0.007615828420966864, 0.020290445536375046, 0.00101417675614357, -0.018355390056967735, 0.024202024564146996, 0.003063263138756156, 0.015577202662825584, 0.015508092939853668, 0.0004712380177807063, -0.026551734656095505, 0.016254471614956856, 0.014056800864636898, -0.03201135993003845, -0.011216415092349052, -0.016558552160859108, 0.03226014971733093, -0.005632395856082439, -0.02577771246433258, -0.004274400882422924, -0.03292359784245491, -0.014803179539740086, -0.00948177557438612, 0.006713953800499439, 0.008472781628370285, -0.0201798714697361, 0.016005679965019226, 0.021714095026254654, -0.0027660937048494816, -0.007712581194937229, 0.0029043119866400957, 0.011990437284111977, 0.012543310411274433, -0.016033323481678963, -0.008279276080429554, 0.009350468404591084, 0.020953893661499023, 0.032647162675857544, -0.007373946253210306, -0.018521253019571304, -0.015632489696145058, -0.012412003241479397, -3.5668149394041393e-06, 0.024879293516278267, 0.001506579457782209, -0.02985515259206295, 0.015508092939853668, 0.023745903745293617, -0.006883271504193544, -0.014429990202188492, -0.0047685313038527966, 0.0036973394453525543, -0.01028344128280878, 0.013020163401961327, -0.013911671936511993, -0.0065342700108885765, 0.005815534852445126, 0.01698702946305275, -0.010324906557798386, -0.0022806019987910986, 0.040884971618652344, 0.014734070748090744, -0.022142572328448296, -0.009094764478504658, -0.0075052534230053425, 0.0032394914887845516, -0.004727066028863192, -0.011188771575689316, -0.005228107329457998, 0.008597178384661674, 0.002218403620645404, -0.01783016137778759, 0.0008547938195988536, 0.032481301575899124, -0.036655493080616, -0.023787369951605797, -0.004872194956988096, 0.021340904757380486, -0.009910251945257187, 0.03557739034295082, -0.012225408107042313, 0.028749406337738037, 0.012861212715506554, 0.015964213758707047, -0.0015540920430794358, -0.03082268126308918, 0.008154879324138165, -0.00023367530957330018, -0.0012526033679023385, -0.005915743298828602, 0.001068600220605731, -0.01795455627143383, 0.021810848265886307, 0.007201173342764378, 0.013966958969831467, -0.011043641716241837, -0.00044920947402715683, 0.04196307435631752, -0.002800648333504796, -0.032481301575899124, 0.0039012115448713303, -0.021714095026254654, -0.012854301370680332, -0.031983714550733566, -0.018383033573627472, -0.0067692412994802, -0.001521265134215355, 0.021810848265886307, 0.004170737229287624, -0.001954061212018132, 0.022253146395087242, -0.0012310066958889365, -0.006257833447307348, 0.0007597687072120607, -0.00458539230749011, -0.003966865129768848, 0.012425824999809265, -0.00021423836005851626, -0.0009200155618600547, 0.006789973936975002, -0.013040896505117416, 0.012778282165527344, -0.03759537637233734, -0.009557795710861683, -0.020718922838568687, -0.022059639915823936, 0.024962224066257477, 0.0027419053949415684, 0.004737432114779949, 0.007961373776197433, -0.020083118230104446, 0.019751394167542458, 0.010988354682922363, -0.0015705054393038154, -0.011347722262144089, 0.027353402227163315, -0.0067381421104073524, -0.011154216714203358, -0.0025881377514451742, 0.01416737586259842, 0.01008993573486805, 0.008901258930563927, -0.019613176584243774, 0.018562717363238335, 0.02610943652689457, -0.005438889842480421, 0.016669126227498055, 0.014899932779371738, -0.00044359435560181737, -0.013607591390609741, -0.003966865129768848, 0.035383883863687515, 0.040719110518693924, 0.006945469416677952, 0.012736815959215164, -0.014077533967792988, -0.008396761491894722, 0.007754046469926834, -0.011105840094387531, 0.018051309511065483, 0.02581917867064476, -0.0004235095111653209, 0.004865284077823162, -0.004761620424687862, -0.001039228867739439, -0.0077264029532670975, 0.02514190785586834, -0.011548139154911041, -0.004578480962663889, 0.029468141496181488, -0.013676701113581657, -0.004032518714666367, 0.017346397042274475, 0.009516329504549503, -0.003807914210483432, -0.0008975550881586969, 0.007657293695956469, 0.021548232063651085, -0.0181204192340374, -0.01816188544034958, -0.6435443758964539, -0.03745716065168381, -0.01311691664159298, -0.017899269238114357, 0.00035612809006124735, 0.0174984373152256, 0.007180440705269575, 0.006599923595786095, -0.03145848587155342, 0.03709779307246208, 0.0041016279719769955, -0.010470036417245865, 0.014554386958479881, -0.025805355980992317, -0.012978698126971722, -0.018479786813259125, 0.008044305257499218, -0.030684461817145348, -0.028113601729273796, 0.005127898883074522, -0.003052896587178111, 0.021506767719984055, -0.03325532376766205, 0.00592956505715847, 0.004806541372090578, 0.025501275435090065, 0.01154122781008482, 0.010677363723516464, 0.013773453421890736, 0.03875641152262688, -0.031845495104789734, -0.0016940380446612835, 0.013054718263447285, -0.013441729359328747, 0.05083668977022171, -0.002484473865479231, -0.004205291625112295, 0.0013234402285888791, 0.018479786813259125, 0.028859980404376984, -0.044423360377550125, -0.025031333789229393, 0.004170737229287624, 0.03919870778918266, 0.01795455627143383, -0.005217740777879953, 0.00603322871029377, -0.00041119943489320576, -0.0007869804394431412, -0.004962036851793528, -0.007318658754229546, 0.015300765633583069, -0.005694593768566847, -0.028099780902266502, 0.015121081843972206, 0.004540471360087395, 0.027436332777142525, -0.02569478191435337, 0.01174855511635542, -0.012847390957176685, 0.00587427755817771, 0.010221242904663086, 0.013213668949902058, -0.01577070727944374, -0.021631164476275444, -0.009654548019170761, -0.02283366210758686, -0.019544066861271858, 0.008873614482581615, -0.020539239048957825, 0.02682817168533802, 0.018659470602869987, -0.031043829396367073, -0.029025843366980553, 0.007933730259537697, 0.029882796108722687, 0.013531571254134178, -0.01465113926678896, -0.0046510458923876286, 0.005476899910718203, -0.0027367223519831896, -0.009827321395277977, -0.011783109977841377, -0.008251632563769817, 0.033448830246925354, 0.015591024421155453, -0.022529583424329758, 0.0023134287912398577, 0.004581936635077, 0.014899932779371738, -0.007705670315772295, 0.026551734656095505, -0.0066102901473641396, -0.024989867582917213, -0.01476171426475048, 0.022018175572156906, -0.0011973159853368998, -0.02081567607820034, -0.011098929680883884, -0.028030671179294586, 0.006275110878050327, -0.030546244233846664, 0.007214995101094246, -0.00320148142054677, 0.026206189766526222, -0.0015385424485430121, 0.0028749406337738037, 0.017940735444426537, 0.038535263389348984, -0.02833475172519684, -0.007097509689629078, -0.020207514986395836, -0.007332480978220701, 0.0055598309263587, 0.022432830184698105, -0.014899932779371738, 0.0055045438930392265, 0.014747892506420612, 0.0013830468524247408, -0.017885448411107063, 0.006022862158715725, 0.020428664982318878, -0.025639494881033897, 0.0037042503245174885, 0.01636504754424095, 0.04129962623119354, 0.0022253147326409817, -0.024464638903737068, -0.034250494092702866, 0.018977371975779533, -0.001940239337272942, 0.005338681861758232, 0.025211017578840256, -0.001776105142198503, 0.0017225455958396196, -0.008479692973196507, 0.026164723560214043, -0.013054718263447285, -0.010497679933905602, -0.022405186668038368, -0.029910439625382423, -0.007933730259537697, 0.008521158248186111, -0.010020826943218708, -0.007038766983896494, -0.015798350796103477, -0.02384265698492527, -0.013773453421890736, 0.006707042921334505, 0.007781690452247858, 0.012688440270721912, 0.0004980178200639784, -0.015604846179485321, 0.015328409150242805, 0.003756082383915782, 0.003949587699025869, 0.030463313683867455, -0.0055598309263587, -0.025598028674721718, -0.003223941894248128, -0.008369117975234985, 0.012709172442555428, -0.015577202662825584, 0.0005602160235866904, -0.0008228308288380504, 0.007919908501207829, -0.007291015237569809, 0.04552910849452019, -0.018092775717377663, -0.051693644374608994, 0.017415504902601242, -0.009067120030522346, 0.011900595389306545, 0.010373283177614212, -0.019917257130146027, 0.00669667636975646, -0.017982201650738716, 0.004868739750236273, 0.0029924262780696154, -0.029827509075403214, 0.000805985473562032, 0.008797594346106052, 0.009046387858688831, -0.020967716351151466, 0.020635992288589478, 0.014512921683490276, 0.003607497550547123, 0.01319984719157219, -0.016116254031658173, -0.0052833943627774715, 0.016752058640122414, 0.015701599419116974, -0.01766429841518402, -0.005628940183669329, -0.01173473335802555, 0.024036161601543427, 0.005749881267547607, 0.015991857275366783, 0.008776862174272537, 0.05437507852911949, 0.011520495638251305, 0.0108086708933115, 0.004958581645041704, -0.015784529969096184, -0.0008591131190769374, -0.046109624207019806, 0.011534317396581173, -0.0022045818623155355, 0.014899932779371738, -0.0029751488473266363, 0.0007757502025924623, -0.006371863652020693, -0.017166713252663612, -0.03049095720052719, 0.008161790668964386, 0.041990719735622406, -0.009875697083771229, 0.01871475763618946, -0.01517636887729168, 0.006053961347788572, 0.011776198633015156, -0.006447883788496256, 0.0220319963991642, 0.008120325393974781, 0.013953137211501598, 0.011389187537133694, 0.007539808284491301, -0.0015454533277079463, -0.010781027376651764, -0.047325946390628815, -0.008147968910634518, -0.018618004396557808, 0.011658713221549988, 0.0033569769002497196, 0.030518600717186928, 0.009391933679580688, 0.011326989158987999, -0.016627661883831024, 0.034665148705244064, 0.0005818126373924315, -0.00722190598025918, -0.00708368793129921, 0.009917163290083408, -0.030546244233846664, -0.014374703168869019, 0.008500425145030022, 0.030684461817145348, 0.013787275180220604, -0.01311691664159298, 0.03405698761343956, -0.010822492651641369, 0.01828628033399582, -0.010048470459878445, -0.004975858610123396, 0.019502602517604828, 0.006565369199961424, 0.009032566100358963, 0.0028714851941913366, 0.0391157791018486, 0.015231656841933727, -0.002468924270942807, 0.003187659429386258, 0.019226165488362312, 0.00223913649097085, 0.0016940380446612835, -0.006275110878050327, -0.006109248846769333, -0.04270945489406586, -0.014222662895917892, -0.00821707770228386, -0.04116141051054001, -0.024119094014167786, 0.002349711023271084, 0.007553630042821169, 0.009654548019170761, 0.0003582877398002893, -0.004716699477285147, 0.0029768766835331917, 0.008002839982509613, 0.00034273817436769605, -0.024367885664105415, -0.025929752737283707, 0.015397518873214722, 0.024077627807855606, 0.002396359806880355, -0.0029267724603414536, -0.011907506734132767, 0.012425824999809265, -0.0011714000720530748, -0.0025363056920468807, -0.015577202662825584, 0.0016888548852875829, 0.002849024720489979, -0.010027737356722355, -0.004675234202295542, -0.01673823595046997, 0.03002101369202137, -0.02022133767604828, -0.0051071662455797195, -0.005397424567490816, -0.007373946253210306, 0.003505561500787735, -0.05299289524555206, -0.009391933679580688, 0.06695294380187988, -0.005535643082112074, 0.010352551005780697, -0.016461798921227455, -0.0025829544756561518, -0.01917087845504284, 0.013351887464523315, 0.003158288076519966, -0.02328978292644024, -0.0045577483251690865, 0.024630500003695488, -0.02211492694914341, 0.01393931545317173, 0.018604183569550514, 0.022612513974308968, -0.011720911599695683, -0.021838491782546043, -0.018687114119529724, -0.011790021322667599, 0.0015825994778424501, 0.06236409768462181, 0.013904760591685772, -0.009516329504549503, 0.0006941150058992207, 0.0030045202001929283, 0.0012914772378280759, -0.003552210284397006, -0.012308339588344097, 0.0325365886092186, -0.006520448252558708, -0.0018866797909140587, 0.03259187564253807, 0.003756082383915782, -0.0060194069519639015, 0.01875622384250164, 0.01488611102104187, 0.0058259014040231705, -0.002052541822195053, -0.0025656772777438164, -0.010366372764110565, 0.00732556963339448, 0.03035273775458336, 0.026648487895727158, 5.2317784138722345e-05, 0.0005844042752869427, -0.0132274916395545, 0.03527330979704857, -0.006945469416677952, -0.010373283177614212, -0.01820334978401661, -0.01198352687060833, 0.010470036417245865, 0.018230993300676346, 0.024741075932979584, -0.01828628033399582, 0.043289970606565475, 0.011057463474571705, 0.016005679965019226, 0.015273122116923332, -0.0006811570492573082, 0.020677456632256508, 0.012418914586305618, 0.011610337533056736, -0.012356716208159924, 0.0026209645438939333, 0.0031962981447577477, -0.00011338220065226778, 0.026427337899804115, -0.022806018590927124, -0.02745015360414982, 0.012598598375916481, -0.021119756624102592, -0.03331061080098152, 0.0016404783818870783, -0.006986935157328844, 0.004122360609471798, -0.001966155366972089, -0.00468905596062541, -0.015314587391912937, -0.008417494595050812, -0.019281452521681786, -0.012432736344635487, 0.006631022784858942, 0.007553630042821169, 0.0004638951795641333, 0.010483858175575733, 0.0064928047358989716, 0.015231656841933727, -0.018175706267356873, 0.007491431664675474, 0.01194206066429615, -0.038618192076683044, -0.04953743889927864, -0.0057395147159695625, 0.006147258915007114, 0.0078024230897426605, -0.00015927499043755233, 0.012329072691500187, -0.020967716351151466, 0.0025812266394495964, -0.020276624709367752, -0.04721537232398987, 0.014775536023080349, -0.01892208494246006, 0.00011856538185384125, 0.009550884366035461, 5.831084490637295e-05, 0.010939978063106537, 0.003341427305713296, 0.013669789768755436, 0.008818327449262142, -0.011195681989192963, -0.0017666026251390576, -0.022419007495045662, -0.010546056553721428, 0.025542741641402245, -0.006095427088439465, 0.02703549899160862, 0.011582693085074425, -0.01867329142987728, 0.015259300358593464, -0.013317333534359932, 0.008071948774158955, -0.022045819088816643, 0.0048860167153179646, 0.02944049797952175, 0.0052833943627774715, 0.00788535363972187, -0.01740168407559395, -0.0011299345642328262, 0.04334525763988495, -0.013573036529123783, 0.01988961361348629, 0.011679446324706078, 0.026772884652018547, 0.0089565459638834, -0.003020069794729352, 0.010470036417245865, 0.027533086016774178, -0.011340811848640442, 0.018217172473669052, -0.04478272795677185, -0.0013769997749477625, 0.03333825245499611, -0.013897850178182125, 0.013669789768755436, 0.008604088798165321, -0.013966958969831467, -0.015134903602302074, -0.018852975219488144, 0.0014832550659775734, 0.023704437538981438, -0.015521914698183537, -0.012557132169604301, -0.00990334153175354, 0.01194206066429615, -0.034416355192661285, -0.021672628819942474, -0.010269619524478912, 0.006430606357753277, 0.006465160753577948, 0.0010452759452164173, -0.010311084799468517, -0.01669676974415779, 0.0002166139893233776, -0.028362395241856575, -7.083687523845583e-05, -0.013040896505117416, 0.0009658003691583872, 0.02481018379330635, -0.0025794990360736847, 0.010760294273495674, -0.01951642334461212, 0.002126834122464061, 0.0043538762256503105, -0.019834326580166817, 0.0007515620090998709, -0.009067120030522346, 0.03527330979704857, 0.016931742429733276, 0.04124433919787407, -0.005414701998233795, 0.020995359867811203, 0.008348384872078896, -0.02270926721394062, 0.00865937676280737, -0.005127898883074522, 0.009129318408668041, 0.0009450676152482629, 0.006271655205637217, 0.01753990165889263, 0.004920571576803923, 0.016047144308686256, -0.012329072691500187, 0.0023583497386425734, 0.022985702380537987, -0.0026416971813887358, 0.003115094965323806, -0.020801853388547897, -0.0287217628210783, -0.008458959870040417, 0.02337271347641945, -0.009488685987889767, 0.027781877666711807, -0.02127179689705372, -0.010504590347409248, 0.021465301513671875, 0.0070664105005562305, -0.0017415505135431886, 0.002104373648762703, 0.010276530869305134, -0.011098929680883884, -0.005642761941999197, 0.03729129582643509, 0.02547363191843033, -0.029744578525424004, 0.010870869271457195, -0.0358261838555336, 0.02149294503033161, 0.010981444269418716, 0.020166050642728806, 0.023193029686808586, 0.007553630042821169, 0.00598139688372612, -0.005414701998233795, 0.012253052555024624, 0.008548801764845848, -0.026551734656095505, 0.016931742429733276, -0.0063580418936908245, -0.003125461284071207, -0.04306882247328758, -0.006009040400385857, 0.019074125215411186, -0.01711142621934414, 0.004384975414723158, 0.02040102146565914, 0.025929752737283707, -0.020635992288589478, -0.029634002596139908, 0.025280127301812172, -0.019350562244653702, 0.030712105333805084, -0.007968285121023655, 0.010656630620360374, 0.01988961361348629, -0.0012750638416036963, -0.013904760591685772, -0.0025224839337170124, 0.014319416135549545, 0.011679446324706078, 0.0222393237054348, 0.01597803458571434, -0.0010487313847988844, -0.007138974964618683, -0.02602650597691536, 0.017816338688135147, -0.006171447224915028, -0.028749406337738037, 0.020926250144839287, 0.012826657854020596, -0.0016206095460802317, -0.030131589621305466, 0.006371863652020693, -0.035218022763729095, 0.03300653025507927, 0.0026347863022238016, -0.010691185481846333, -0.01396004855632782, -0.0017778328619897366, -0.019626999273896217, 0.01984814740717411, 0.019143234938383102, 0.011492851190268993, 0.01125096995383501, -0.004657956771552563, -0.006371863652020693, -0.022778375074267387, -0.023815013468265533, -0.0031893872655928135, 0.00037297344533726573, 0.011043641716241837, -0.023662973195314407, 0.01630975864827633, 0.001053914544172585, 0.009640726260840893, -0.008811417035758495, 0.009702924638986588, 0.0034813734237104654, 0.023939410224556923, -0.011707089841365814, 0.007733313832432032, -0.018175706267356873, 0.005190097261220217, -0.007042222190648317, -0.01135463360697031, -0.014208841137588024, -0.01208719052374363, -0.00010566141281742603, -0.00937811192125082, 0.02114740014076233, 0.007512164767831564, 0.00519355246797204, -0.0016275204252451658, 0.0062992991879582405, 6.185403890412999e-06, -0.0026088703889399767, 0.007740224711596966, -0.0035332052502781153, -0.04306882247328758, -0.0020732744596898556, -0.016420334577560425, -0.004115449730306864, -0.01892208494246006, 0.010456214658915997, 0.0018244815291836858, -0.001947150332853198, 0.03856290504336357, -0.0031703822314739227, 0.011582693085074425, 0.01404297910630703, 0.007318658754229546, -0.03524566814303398, 0.020718922838568687, -0.022018175572156906, 0.006724320352077484, 0.033531758934259415, -0.005691138561815023, 0.0037802704609930515, -0.014623495750129223, 0.006876360159367323, 0.006005585193634033, -0.0025656772777438164, -0.021976709365844727, 0.014181197620928288, 0.027408689260482788, 0.003631685860455036, -0.011009087786078453, -0.021838491782546043, 0.012114834040403366, -0.01069809589534998, 0.004146548919379711, 0.012605508789420128, 0.008251632563769817, 0.0036524184979498386, -0.0064755273051559925, -0.012418914586305618, 0.0015549558447673917, -0.04572261497378349, -0.009385022334754467, -0.010442392900586128, -0.012667707167565823, 0.007560540921986103, -0.006921281106770039, -0.03002101369202137, 0.005131354555487633, -0.01803748868405819, -0.006523903924971819, 0.00883214920759201, 0.0070767770521342754, -0.010573700070381165, 0.01758136786520481, 0.009523240849375725, 0.004599214065819979, -0.006313120946288109, -0.018825331702828407, 0.0022408640943467617, -0.0038355577271431684, -0.04060853645205498, -0.0038355577271431684, -0.02888762392103672, 0.03557739034295082, 0.01270226202905178, -0.015245478600263596, -0.014512921683490276, -0.013006341643631458, -0.025971218943595886, -0.015715420246124268, 0.004336599260568619, 0.023732081055641174, 0.028141245245933533, 0.009391933679580688, 0.00811341404914856, 0.036766067147254944, -0.019530246034264565, 0.005407791119068861, -0.009772033430635929, 0.012446558102965355, 0.007318658754229546, 0.013773453421890736, -0.011174949817359447, 0.003230852773413062, -0.005742970388382673, -0.02657937817275524, 0.025169551372528076, -0.010020826943218708, 0.003541843965649605, 0.0023877210915088654, 0.001550636487081647, -0.015038151293992996, 0.019392026588320732, -0.004630313254892826, -0.0008236946887336671, -0.006779607385396957, 0.013324243947863579, -0.015839817002415657, 0.008541891351342201, 0.022598691284656525, 0.013745809905230999, 0.013566126115620136, -0.01993107795715332, -0.01053223479539156, -0.0017061320831999183, 0.011506672948598862, -0.012481112033128738, -0.014499099925160408, 0.017857804894447327, -0.0020076208747923374, 0.023483289405703545, -0.03427813947200775, 0.00018238335906062275, 0.00968910288065672, 0.014305594377219677, -0.01736021786928177, -0.023234495893120766, 0.0009200155618600547, -0.023870300501585007, 0.0003023525350727141, 0.02073274552822113, -0.0053697810508310795, 0.00738085713237524, 0.004993136040866375, 0.03632377088069916, -0.00822398904711008, -0.010228154249489307, -0.050311461091041565, -0.01661383919417858, -0.020926250144839287, 0.025750068947672844, 0.02359386347234249, 0.006865994073450565, -0.006423695478588343, -0.01892208494246006, 0.01723582111299038, -0.008528068661689758, -0.01727728731930256, 0.000652649556286633, -0.012957965955138206, 0.012059547007083893, 0.015521914698183537, -0.014692605473101139, -0.004084350541234016, -0.006831439211964607, 0.017346397042274475, -0.013483194634318352, -0.012239230796694756, 0.2225867509841919, -0.00724263908341527, 0.03646198660135269, 0.042571235448122025, 0.0012422369327396154, 0.024036161601543427, 0.008044305257499218, -0.007933730259537697, -0.01589510403573513, 0.01269535068422556, -0.02262633480131626, 0.02152058854699135, -0.018396856263279915, -0.0037146168760955334, 0.0039253998547792435, 0.027339579537510872, 0.001462522428482771, -0.05437507852911949, -0.025432167574763298, -0.003956499043852091, 0.004526649136096239, 0.008458959870040417, -0.004443718120455742, -0.017526080831885338, 0.0070491330698132515, 0.002541488967835903, -0.013559214770793915, -0.0009347012382932007, 0.03615790605545044, -0.008244721218943596, -0.017733408138155937, 0.01783016137778759, 0.0006561049958691001, 0.0014348786789923906, -0.021644985303282738, -0.001104882569052279, 0.02977222204208374, -0.005393968895077705, 0.03679371252655983, -0.03507980331778526, 0.004049796145409346, -0.01456820871680975, -0.008700842037796974, -0.03082268126308918, 0.008687020279467106, 0.022598691284656525, -0.01766429841518402, -0.016337402164936066, -0.017000850290060043, 0.008147968910634518, -0.0201798714697361, -0.007235727738589048, 0.028113601729273796, 0.02468578889966011, 0.005114077124744654, -0.01568777672946453, -0.0018072042148560286, 0.018148062750697136, 0.0062820217572152615, 0.013103094883263111, 3.960278263548389e-05, 0.007919908501207829, -0.006181813310831785, 0.016503265127539635, 0.000991716282442212, 0.010062292218208313, -0.03687664121389389, 0.003604042110964656, -0.006879815831780434, -0.02695256844162941, -0.013821830041706562, -0.009571617469191551, 0.005397424567490816, 0.01715289056301117, -0.041437845677137375, -0.014996685087680817, 0.018258636817336082, 0.008590267039835453, -0.0069489250890910625, 0.024450816214084625, -0.012778282165527344, -0.0156463123857975, -0.012239230796694756, -0.0018659470370039344, -0.01988961361348629, -0.04807232320308685, 0.030325094237923622, -0.03010394610464573, -0.014609673991799355, -0.009032566100358963, -0.005096799694001675, -0.007145885843783617, 0.0051071662455797195, -0.017415504902601242, 0.020705102011561394, 0.010905424132943153, -0.010905424132943153, 0.025197196751832962, -0.00944030936807394, 0.020829496905207634, -0.028666475787758827, 0.027616016566753387, 0.022170215845108032, 0.016917919740080833, 0.007809333968907595, -0.006565369199961424, 0.014554386958479881, 0.001666394411586225, 0.015162547118961811, -0.014222662895917892, -0.027864808216691017, -0.01737404055893421, 0.0009303819388151169, -0.013020163401961327, 0.011147305369377136, 0.02363532967865467, -0.0021199232432991266, -0.01816188544034958, 0.006983479484915733, -0.00029500966775231063, -0.008175612427294254, -0.016337402164936066, -0.026759061962366104, 0.002541488967835903, -0.010331817902624607, -0.008141057565808296, -0.036738425493240356, 0.004606124944984913, -0.018092775717377663, -0.006129981484264135, 0.012474201619625092, -0.012812836095690727, -0.013338065706193447, 0.0006228461861610413, 0.003519383491948247, -8.336290920851752e-05, -0.007636561058461666, -0.0270769651979208, -0.004143093712627888, -0.00034813734237104654, -0.007553630042821169, 0.0035660320427268744, 0.009322823956608772, -0.0013415813446044922, 0.0025812266394495964, -0.019101768732070923, 0.004070528782904148, 0.0018987738294526935, -0.0007325569749809802, -0.024367885664105415, -0.014208841137588024, 0.0008845971315167844, -0.012577865272760391, -0.01219085417687893, 0.01850743032991886, -0.01038710493594408, -0.013338065706193447, -0.021879956126213074, 0.017056137323379517, -0.012640063650906086, -0.035798538476228714, 0.013483194634318352, 0.026164723560214043, 0.00012029311619699001, -0.007636561058461666, -0.030297450721263885, -0.17780402302742004, 0.0008707752567715943, -0.009640726260840893, -0.021935243159532547, 0.024906937032938004, 0.026427337899804115, 0.027519263327121735, 0.008680108934640884, 0.005642761941999197, -0.007760957349091768, -0.021368548274040222, 0.02219785936176777, -0.015231656841933727, 0.004018696956336498, 0.00025440804893150926, 0.009191516786813736, -0.010096847079694271, 0.0076089175418019295, 0.02443699538707733, 0.009267536923289299, 0.022018175572156906, -0.016558552160859108, 0.02400851808488369, 0.0031703822314739227, -0.0019212343031540513, 0.024865472689270973, -0.01257095392793417, -0.009295180439949036, -0.03165199235081673, -0.035798538476228714, 0.02085714042186737, 0.014595852233469486, 0.0234694667160511, -0.0002669341047294438, 0.037236008793115616, -0.019405849277973175, -0.02123033069074154, -0.01496904157102108, -0.0317072793841362, 0.026040326803922653, 0.024063805118203163, 0.021216508001089096, 0.01921234279870987, -0.01665530540049076, -0.0065169925801455975, 0.03447164222598076, 0.016213007271289825, -0.025321591645479202, 0.01964082010090351, -0.006935103330761194, 0.040553249418735504, -0.01682116650044918, -0.01020051073282957, 0.005300671793520451, -0.0004226456512697041, -0.01278519257903099, -0.014008424244821072, 0.019198521971702576, 0.009765123017132282, 0.01795455627143383, -0.004167281556874514, -0.017222000285983086, -0.0034157196059823036, 0.018521253019571304, -0.009592349641025066, -0.02738104574382305, -0.02152058854699135, 0.02451992593705654, -0.04461686685681343, 0.01372507680207491, 0.006026317831128836, -0.00291122286580503, 0.01834156922996044, 0.0008871887112036347, 0.00956470612436533, 0.020760389044880867, -0.017222000285983086, -0.0012120016617700458, -0.0002377786731813103, -0.005756792146712542, -0.0107050072401762, 0.010428570210933685, 0.0036973394453525543, -0.00917078461498022, -0.006368407979607582, -0.02254340425133705, -0.007574362680315971, -0.01622682809829712, 0.0022374086547642946, -0.018700936809182167, 0.01174855511635542, -0.029468141496181488, -0.030850324779748917, 0.0022771465592086315, 0.012080279178917408, 0.014582030475139618, 0.015535736456513405, -0.002323795109987259, 0.017000850290060043, -0.010048470459878445, 0.023068634793162346, -0.018396856263279915, -0.031264979392290115, -0.0012724722037091851, 0.020580705255270004, 0.009474864229559898, -0.03485865518450737, 0.009371200576424599, 0.03300653025507927, -0.0009830776834860444, -0.0368489995598793, 0.01123023685067892, 0.0160609669983387, 0.014706427231431007, -0.013172203674912453, 0.044257499277591705, -0.002097462769597769, -0.025971218943595886, 0.007740224711596966, 0.007512164767831564, 0.04785117506980896, -0.005584019236266613, -0.005511454772204161, 0.011147305369377136, 0.014015335589647293, -0.009212249889969826, -0.11665624380111694, -0.03411227464675903, -0.0023618051782250404, 0.014457633718848228, 0.011326989158987999, 0.02123033069074154, -0.013745809905230999, 0.014623495750129223, -0.010781027376651764, 0.02944049797952175, 0.010953799821436405, -0.024464638903737068, -0.00034662557300180197, -0.016973206773400307, -0.013040896505117416, -0.02069127932190895, 0.003555665723979473, -0.011714001186192036, -0.02804449200630188, 0.013573036529123783, 0.023828834295272827, 0.017056137323379517, 0.0056634945794939995, 0.0007498342893086374, -0.0270769651979208, -0.003118550404906273, -0.026565557345747948, 0.027090786024928093, 0.007408500649034977, 0.01174855511635542, -0.001258650328963995, -0.00893581286072731, 0.007297926116734743, -0.014706427231431007, 0.011479029431939125, -0.01311691664159298, -0.025169551372528076, -0.013863295316696167, 0.04268180951476097, -0.030850324779748917, 0.0034779179841279984, -0.0005235018325038254, -0.007733313832432032, -0.02438170835375786, -0.005915743298828602, 0.005815534852445126, -0.04569496959447861, 0.017387861385941505, 0.018604183569550514, -0.035466816276311874, -0.02262633480131626, -0.00463722413405776, -0.04218422621488571, -0.010960711166262627, 0.02839003875851631, -0.0018469420028850436, 0.011893684975802898, 0.01820334978401661, 0.0088528823107481, 0.013669789768755436, -0.009723657742142677, -0.0066102901473641396, -0.017512258142232895, 0.005812079645693302, 0.01541134063154459, 0.017000850290060043, -0.00022330893261823803, -0.005988307762891054, 0.015591024421155453, -0.0065930127166211605, 0.01238435972481966, 0.012536399997770786, -0.03165199235081673, 0.026302943006157875, -0.018134240061044693, -0.005863911472260952, -0.014008424244821072, 0.011589604429900646, -0.00034230624441988766, 0.009136229753494263, -0.02283366210758686, -0.03026980720460415, -0.015425162389874458, -0.01133390050381422, -0.008998011238873005, 0.016876453533768654, 0.012722994200885296, 0.025542741641402245, 0.007843888364732265, -0.015715420246124268, 0.0071251532062888145, 0.025888286530971527, 0.02102300338447094, 0.02145148068666458, 0.0001681295980233699, -0.003045985708013177, 0.01630975864827633, -0.008403672836720943, 0.0021354728378355503, 0.02118886448442936, -0.02510044351220131, -0.0026866181287914515, -0.0588809959590435, -0.002114739967510104, -0.018051309511065483, -0.028265642002224922, 0.013593769632279873, -0.01657237485051155, 0.008106503635644913, -0.01406371220946312, -0.006413328927010298, -0.008147968910634518, -0.03712543472647667, -0.004927482455968857, 0.003249857807531953, -0.011423742398619652, -0.014105177484452724, -0.009730568155646324, 0.018217172473669052, -0.005376691929996014, 0.0044990056194365025, 0.019986366853117943, 0.0195578895509243, -0.024146737530827522, 0.004281311761587858, -0.0024343698751181364, -0.03303417190909386, -0.00800975039601326, -0.0089565459638834, 0.03919870778918266, -0.004771986976265907, -0.011050553061068058, 0.0041189054027199745, 0.006081605330109596, -0.007560540921986103, 0.0049551259726285934, -0.03250894322991371, 0.01476171426475048, -0.007097509689629078, 0.011320078745484352, 0.006520448252558708, 0.04060853645205498, -0.005051878746598959, -0.01972375065088272, 0.016669126227498055, -0.030601531267166138, -0.005421612877398729, -0.0016473893774673343, -0.005086433608084917, 0.010815582238137722, 0.015259300358593464, 0.013953137211501598, 0.006233645137399435, 0.01301325298845768, -0.01198352687060833, -0.02577771246433258, 0.011209503747522831, -0.010207421146333218, -0.006316576153039932, -0.022308433428406715, -0.0033051450736820698, -0.007754046469926834, 0.021727915853261948, -0.0010150406742468476, -0.004806541372090578, 0.003344882745295763, 0.012418914586305618, -0.009198428131639957, -0.03507980331778526, 0.004737432114779949, -0.0006889318465255201, -0.020926250144839287, -0.01657237485051155, -0.003249857807531953, 0.022488117218017578, 0.027933917939662933, 0.014112087897956371, 0.006071238778531551, -0.031983714550733566, 0.013020163401961327, 0.0003712457255460322, 0.023234495893120766, 0.011375365778803825, 0.011520495638251305, -0.026814350858330727, 0.023220675066113472, 0.03516273573040962, 0.016848810017108917, 0.003151377197355032, -0.0027730045840144157, -0.0003187659604009241, 0.007235727738589048, 0.027021678164601326, -0.005387058015912771, -0.019654642790555954, 0.004823818802833557, -0.010539145208895206, 0.013165293261408806, -0.010843225754797459, -0.008693930692970753, -0.0011143850861117244, -0.0021130123641341925, 0.01391858235001564, -0.02699403464794159, 0.008845970965921879, -0.020428664982318878, -0.04995209351181984, -0.004122360609471798, -0.005186641588807106, -0.02110593393445015, 0.007228816859424114, 0.024326421320438385, 0.011492851190268993, -0.004326232708990574, 0.0305738877505064, 0.008839060552418232, -0.023483289405703545, 0.020235158503055573, -0.0348033681511879, -0.0016525725368410349, -0.01841067709028721, 0.02270926721394062, -0.0038044587709009647, 0.022336076945066452, 0.04342819005250931, 0.0025328502524644136, 0.027616016566753387, 0.01711142621934414, 0.011403009295463562, -0.01373198814690113, 0.016917919740080833, 0.008237810805439949, -0.010276530869305134, 0.009205338545143604, -0.016503265127539635, -0.010345639660954475, 0.0005731740384362638, -0.021423837170004845, -0.0013363981852307916, 0.0107050072401762, 0.005079522263258696, 0.0842025876045227, 0.017761051654815674, -0.0015039878198876977, -0.004333143588155508, 0.014540565200150013, -0.008355296216905117, 0.004664867650717497, -0.01698702946305275, 0.006254378240555525, -0.03366997838020325, 0.006174902431666851, 0.009163873270154, -0.01028344128280878, -0.03637905791401863, -0.002242591930553317, 0.01968228630721569, -0.007636561058461666, 0.010262709110975266, -0.014008424244821072, 0.0012526033679023385, 0.016378868371248245, 0.0077471355907619, 0.0014763441868126392, 0.00012374857033137232, -0.03494158759713173, 0.0034157196059823036, 0.022045819088816643, -0.005919198505580425, 0.0013839107705280185, -0.03173492103815079, -0.005276483483612537, -0.0068729049526154995, -0.024547569453716278, -0.026551734656095505, 0.005255750846117735, 0.007705670315772295, 0.007830066606402397, -0.02434024214744568, 0.00421565817669034, -0.0015005323803052306, 0.01436088141053915, 0.0055598309263587, -0.01610243134200573, -0.03662784770131111, -0.00534904794767499, -0.007719492074102163, -0.019820503890514374, 0.005791346542537212, -0.02569478191435337], "9f7ff698-db2b-41ab-9c8e-c255d8e3a586": [0.01790366694331169, 0.009224548004567623, 0.011522161774337292, -0.026903226971626282, 0.007370092906057835, 0.015067443251609802, -0.000480232120025903, -0.024216994643211365, -0.016608277335762978, -0.032098427414894104, 0.01096309907734394, 0.032289326190948486, -0.0208898838609457, 0.016335561871528625, 0.001038017333485186, 0.007083743344992399, 0.029862171038985252, 0.004612274002283812, -0.019253600388765335, 0.007806435227394104, -0.00792915653437376, 0.0157764982432127, 0.010704020969569683, 0.008665484376251698, -0.019076338037848473, 0.0004329333023633808, 0.02188529074192047, -0.03144391253590584, -0.007131468504667282, -0.026166899129748344, 0.03384379297494888, 0.0008168633212335408, -0.00800415314733982, -0.009647253900766373, -0.0377163328230381, -0.010301767848432064, -0.00032896114862523973, 0.005266787018626928, 0.0006579222972504795, -0.020385364070534706, 0.015231071040034294, 0.02972581423819065, -0.009292726404964924, 0.0044350097887218, -0.01673099771142006, 0.012551656924188137, 0.0041486602276563644, -0.01789003238081932, -0.005058842711150646, 0.019103609025478363, 0.012667560949921608, 0.03264385461807251, -0.007908702827990055, -0.00396457826718688, -0.022921603173017502, -0.01330843847244978, -0.0063201445154845715, 0.03782541677355766, 0.00423047412186861, -0.02387610264122486, 0.016431013122200966, 0.0256623774766922, -0.005634950939565897, -0.006753077730536461, 0.002783386269584298, 0.015108349733054638, -0.002379428828135133, -0.013894773088395596, -0.019471772015094757, -0.012544839642941952, 0.006596267223358154, 0.004390693735331297, -0.011972140520811081, 0.010069960728287697, 0.03335291147232056, 0.01675826869904995, -0.025239670649170876, 0.002592486562207341, 0.0067223976366221905, -0.005822441540658474, -0.0206853486597538, -0.016021940857172012, -0.021230777725577354, -0.0031907525844872, 0.006661036983132362, -0.008610941469669342, 0.0028004308696836233, 0.03179844096302986, -0.009319997392594814, -0.03444376587867737, -0.0021476219408214092, 0.0208898838609457, -0.0026572560891509056, 0.030243970453739166, -0.013035723939538002, 0.016076484695076942, 0.004135024268180132, 0.017180975526571274, 0.0007414409192278981, -0.016567369922995567, -0.0023248859215527773, 0.003742998233065009, -0.013683419674634933, -0.009933603927493095, -0.01044494193047285, -0.0012749375309795141, 0.02855314500629902, 0.013492519967257977, 0.01786275953054428, -0.00769734987989068, -0.013008452951908112, 0.03828903287649155, -0.017985481768846512, -0.03662547841668129, 0.0006332075572572649, -0.0276259183883667, -0.005484958179295063, -0.028062259778380394, -0.024012459442019463, 0.0004597785882651806, 0.0026146445889025927, 0.02184438332915306, 0.01866726577281952, 0.0005023901467211545, 0.01982630044221878, 0.002173188840970397, -0.022103462368249893, -0.01189032569527626, -0.003328813938423991, -0.014494744129478931, 0.011338080279529095, 0.009163186885416508, 0.004837262909859419, -0.005191790871322155, -0.020548991858959198, 0.006729215383529663, -0.02282615378499031, -0.004615682642906904, -0.017085526138544083, -0.03332563862204552, 0.018149109557271004, 0.005529274232685566, 0.007029200904071331, 0.00016256305389106274, -0.010840377770364285, 0.01673099771142006, 0.0022089825943112373, -0.01431747991591692, -0.00497021060436964, 0.02382155880331993, -0.00591448275372386, 0.0025941908825188875, -0.010717656463384628, -0.0025703285355120897, 0.012640289030969143, 0.008563216775655746, -0.01883089542388916, 0.025975998491048813, 0.036107320338487625, -0.01962176524102688, 0.03171662613749504, 0.013212988153100014, -0.003944124560803175, -0.013001634739339352, -0.015149257145822048, 0.027175940573215485, 0.038179945200681686, 0.016212841495871544, 0.009797247126698494, -0.02091715671122074, -0.004561139736324549, 0.013465248979628086, -0.018230924382805824, 0.024176087230443954, 0.03237114101648331, -0.00883593037724495, 0.008160963654518127, 0.013758416287600994, 0.003417446045204997, -0.020085379481315613, 0.021558033302426338, 0.00047724932665005326, -0.022539803758263588, 0.036925461143255234, -0.01239484641700983, 0.004240700975060463, 0.015176528133451939, 0.024407893419265747, 0.010117685422301292, 0.012578928843140602, 0.017590045928955078, 0.02378065139055252, -0.023467030376195908, -0.003565734252333641, -0.6379323601722717, -0.016499191522598267, 0.004711132496595383, -0.01865363121032715, 0.001803320599719882, 0.007472360972315073, 0.0033219961915165186, 0.012469843029975891, -0.02967127226293087, 0.045925021171569824, 0.014603829011321068, -0.011869871988892555, 0.015531056560575962, -0.017249153926968575, -0.0034106282982975245, -0.01242893561720848, 0.009510897099971771, -0.03727998957037926, -0.014958357438445091, 0.004319106228649616, -0.01294709276407957, 0.01589922048151493, -0.01694916933774948, 0.0073155504651367664, 0.013744780793786049, 0.035043735057115555, 0.0028294066432863474, -0.002674300689250231, 0.01891270838677883, 0.03867083042860031, -0.020535357296466827, -0.002502150135114789, 0.023385217413306236, -0.0022737521212548018, 0.04734313115477562, 0.002290796721354127, 0.0016328744823113084, 0.014726550318300724, 0.018230924382805824, 0.012810735031962395, -0.04240700975060463, -0.030271243304014206, 0.016144663095474243, 0.03839811682701111, 0.006098564714193344, -0.001493108575232327, 0.010997188277542591, -0.005484958179295063, -0.020126285031437874, 0.0024305626284331083, 0.006906479597091675, 0.0070564718917012215, 0.005273605231195688, -0.030025800690054893, 0.010833559557795525, 0.0030066706240177155, 0.02863495983183384, -0.017194611951708794, 0.0026231668889522552, -0.023289766162633896, -0.011338080279529095, -0.0016516235191375017, 0.007990517653524876, -0.024257902055978775, -0.03291656821966171, 0.011051731184124947, -0.009047283791005611, -0.013492519967257977, -0.007329185958951712, -0.014085672795772552, 0.03152572736144066, 0.01866726577281952, -0.028007717803120613, -0.008754116483032703, -0.008883655071258545, 0.030871212482452393, 0.021312590688467026, -0.025239670649170876, -0.0067633045837283134, 0.0067223976366221905, 0.005839486140757799, -0.001997629413381219, -0.003473693272098899, -0.013758416287600994, 0.04366149380803108, -0.00645309267565608, -0.020521720871329308, 0.0007648772443644702, 0.009599529206752777, 0.0039168535731732845, -0.024380622431635857, 0.029398558661341667, -0.002895880723372102, -0.03736180439591408, -0.01592649146914482, 0.028962215408682823, -0.0015416857786476612, -0.013478884473443031, -0.002297614701092243, -0.03130755573511124, -0.00045040404074825346, -0.017371876165270805, 0.004567957948893309, -0.0055395010858774185, 0.016267383471131325, -0.00843367725610733, 0.00517133716493845, 0.006398549769073725, 0.04038892686367035, -0.015162892639636993, -0.00668830843642354, -0.030298514291644096, -0.011672155000269413, -0.0025157856289297342, 0.026098720729351044, -0.019253600388765335, 0.009504079818725586, 0.005062251817435026, 0.006071293260902166, -0.005133839324116707, 0.007411000318825245, 0.010397217236459255, -0.029344014823436737, 0.01336979866027832, 0.013465248979628086, 0.028444059193134308, -0.002693049842491746, -0.01229257881641388, -0.03695273399353027, 0.013322073966264725, -0.007138286251574755, -0.017290061339735985, 0.00645309267565608, -0.007813253439962864, -0.003252113237977028, 0.002616348909214139, 0.0033458585385233164, -0.01677190512418747, -0.004632727243006229, -0.012578928843140602, -0.01975812204182148, -0.033271096646785736, 0.006323553621768951, -0.005894029047340155, -0.006258783861994743, -0.014835636131465435, -0.023098867386579514, -0.008208688348531723, 0.0027697505429387093, -0.005764489993453026, -0.0002067725290544331, -0.020930791273713112, -0.022989781573414803, 0.02263525314629078, -0.008413223549723625, -0.0001933498861035332, 0.020167192444205284, 0.002440789481624961, -0.0049940734170377254, -0.003800950013101101, -0.0019856980070471764, 0.02658960595726967, -0.022103462368249893, 0.011774422600865364, -0.008235959336161613, -0.005921300500631332, 0.00024054218374658376, 0.07057835906744003, -0.02273070253431797, -0.044043295085430145, 0.02183074690401554, -0.007595082279294729, 0.016417376697063446, 0.018162745982408524, -0.002573737408965826, 0.02176256850361824, -0.028062259778380394, 0.01892634481191635, 0.002457834081724286, -0.019349051639437675, -0.008010970428586006, 0.000701812154147774, 0.00016597197100054473, -0.01874908059835434, 0.029371287673711777, 0.0019481999333947897, -0.009558621793985367, 0.012960728257894516, -0.007499632425606251, -0.004619091749191284, 0.022348903119564056, 0.0020896701607853174, -0.00719282915815711, 0.002926561050117016, 0.009606347419321537, 0.018121838569641113, 0.0010610275203362107, 0.032289326190948486, 0.011685790494084358, 0.04968847334384918, 0.009974510408937931, 0.016131026670336723, 0.0045440951362252235, -0.017535503953695297, 0.007949610240757465, -0.04862488806247711, 0.010574481450021267, -0.004789537750184536, 0.008542763069272041, -0.004315697588026524, 0.005634950939565897, -0.011188087984919548, -0.010479031130671501, -0.04085254296660423, 0.015462878160178661, 0.04038892686367035, -0.019226329401135445, 0.009667707607150078, -0.014712914824485779, 0.005321329925209284, -0.0015936718555167317, 0.008515491150319576, 0.019471772015094757, -0.00739054661244154, 0.007792799733579159, 0.015299249440431595, 0.013567516580224037, 0.003136209910735488, -0.004629318602383137, -0.03673456236720085, 0.001551912515424192, -0.026071447879076004, 0.01769913174211979, 0.0009962579933926463, 0.029289472848176956, 0.019008159637451172, 0.023453395813703537, -0.01390840858221054, 0.04617046192288399, -0.0041009350679814816, -0.007445089519023895, 0.004383875988423824, 0.007226918358355761, -0.022976145148277283, -0.01038358174264431, 0.012688013724982738, 0.04352513700723648, 0.007990517653524876, -0.009579075500369072, 0.03646184876561165, -0.0034941467456519604, 0.01333570946007967, -0.021298956125974655, -0.005348601378500462, 0.004373649135231972, -0.0008577704429626465, 0.01092219166457653, 0.02289433218538761, 0.04077072814106941, 0.0248169656842947, -0.018980886787176132, 0.0030100797303020954, 0.0199081152677536, 0.016335561871528625, 0.005846304353326559, 0.001259597367607057, -0.003197570564225316, -0.030953027307987213, -0.03430740907788277, -0.0057304007932543755, -0.038043588399887085, -0.03957078605890274, 0.0022737521212548018, 0.013656148687005043, 0.013131174258887768, -0.003664592979475856, -0.011242630891501904, 0.0013661262346431613, 0.027353204786777496, 0.007336003705859184, -0.03452558070421219, -0.02064444124698639, 0.011024459265172482, 0.01178805809468031, -0.007329185958951712, 0.006251966115087271, -0.019976293668150902, 0.002797021996229887, -0.0004440123157110065, 0.005314512178301811, 0.0018663856899365783, 0.005420188885182142, -0.0017385510727763176, -0.010976734571158886, -0.006316735874861479, -0.007745074573904276, 0.03163481131196022, -0.014372022822499275, -0.011501708999276161, -0.002174893394112587, -0.006528088822960854, -0.0029470145236700773, -0.05470640957355499, -0.006364460568875074, 0.06801484525203705, 0.0014095900114625692, -0.0006387470639310777, -0.009326815605163574, -0.011603976599872112, -0.028198616579174995, 0.02192619815468788, -0.00030978594440966845, -0.014412929303944111, -0.006995111703872681, 0.01572195626795292, -0.020521720871329308, 0.02159894071519375, 0.007547357119619846, 0.02076716348528862, 0.0042543369345366955, -0.013049360364675522, -0.020930791273713112, -0.02086261287331581, 0.0007555027259513736, 0.0813232809305191, 0.014440201222896576, -0.0034805110190063715, 0.008747298270463943, 0.00116840866394341, 0.0012834598310291767, -0.014903814531862736, -0.02383519522845745, 0.031062113121151924, -0.006003114860504866, -0.00046957924496382475, 0.021026240661740303, -0.000962168734986335, 0.022403446957468987, 0.019526315852999687, 0.009688161313533783, 0.005334965419024229, -0.004336150828748941, 0.0009783611167222261, -0.02293523959815502, 0.016403740271925926, 0.03329836577177048, 0.019417230039834976, 0.010369946248829365, 0.005109976511448622, -0.0039168535731732845, 0.041043441742658615, -0.015599234960973263, -0.012265307828783989, -0.023194316774606705, -0.014494744129478931, 0.0009476807899773121, 0.012265307828783989, 0.011194905266165733, -0.02187165431678295, 0.03226205334067345, 0.00346005754545331, 0.025212399661540985, 0.006194014567881823, -0.01859908737242222, 0.03376198187470436, 0.016512826085090637, 0.02090352028608322, -0.018080931156873703, -0.008167780935764313, -0.008235959336161613, 0.0009195571765303612, 0.026344163343310356, -0.026957768946886063, -0.032180238515138626, 0.002456129528582096, -0.004602047149091959, -0.013656148687005043, 0.01287209615111351, -0.0075678108260035515, -0.006084928754717112, -0.028116803616285324, 0.003356085391715169, -0.009108643978834152, 0.0033356319181621075, -0.010779016651213169, -0.012722102925181389, 0.0009527941583655775, 6.162694626254961e-05, -0.007199646905064583, -0.001330332481302321, -0.007301914505660534, 0.022185275331139565, -0.027925902977585793, 0.004530459642410278, 0.019417230039834976, -0.03387106582522392, -0.040879812091588974, 0.0018544545164331794, 0.012919820845127106, 0.015544692054390907, 0.009544986300170422, 0.014631100930273533, -0.009735886007547379, -0.004820218309760094, -0.004131615627557039, -0.041234340518713, 0.011678972281515598, -0.025157857686281204, 0.013199352659285069, 0.0035009647253900766, 0.0014291913248598576, 0.006030385848134756, 0.006190605461597443, 0.02663051150739193, 0.015571963973343372, 0.00155532150529325, -0.006838301196694374, -0.01973085105419159, -0.0013073222944512963, 0.016431013122200966, 0.0012178380275145173, 0.0333801805973053, 0.02192619815468788, -0.024176087230443954, 0.0064905909821391106, 0.005075887311249971, 0.0004819365858566016, -0.034061964601278305, -0.0034975558519363403, 0.029453100636601448, -0.012667560949921608, 0.023930644616484642, -0.016131026670336723, -0.013499338179826736, 0.03978895768523216, -0.019171787425875664, 0.02668505534529686, 0.02665778435766697, 0.02972581423819065, 0.012142586521804333, 0.01236075721681118, 0.016294656321406364, 0.03779814764857292, -0.02770773135125637, 0.014126580208539963, -0.04848853126168251, -0.002236254047602415, 0.025239670649170876, -0.024080637842416763, 0.005348601378500462, 0.01031540334224701, -0.03545280545949936, -0.02661687694489956, -0.027121396735310555, -0.012694831937551498, 0.007520085666328669, -0.013547062873840332, -0.018394552171230316, -0.010274495929479599, 0.0019550176803022623, -0.026057813316583633, 0.008045059628784657, -0.013894773088395596, 0.014631100930273533, 0.01587194949388504, 0.005737218540161848, -0.011310809291899204, -0.017099160701036453, 0.001198236714117229, -0.036134593188762665, -0.002410109154880047, -0.0043975114822387695, 0.009797247126698494, 0.013737962581217289, 0.0017947982996702194, 0.010172228328883648, 0.0004388989182189107, -0.0031549588311463594, 0.013962951488792896, -0.03068031370639801, 0.0013056177413091063, -0.010322220623493195, 0.022553440183401108, 0.007336003705859184, 0.02871677279472351, 0.002406700048595667, 0.022253453731536865, 0.0066814906895160675, -0.0127630103379488, 0.00987906102091074, 0.0029197430703788996, 0.014222029596567154, 0.003858901560306549, 0.005900846794247627, 0.028144074603915215, 0.006817847490310669, 0.02283978834748268, 0.004659998696297407, 0.008999559096992016, 0.025321485474705696, -0.00334244966506958, -0.016458284109830856, -0.019962657243013382, -0.03951624408364296, -0.006950795650482178, 0.023385217413306236, -0.0047384039498865604, 0.01869453862309456, -0.012449389323592186, -0.00981088262051344, 0.04229792580008507, -0.002444198355078697, 0.007792799733579159, 0.003610050305724144, 0.0019192240433767438, -0.0020180828869342804, -0.010294949635863304, 0.027257753536105156, 0.0178082175552845, -0.040034402161836624, 0.015190164558589458, -0.03973441570997238, 0.026098720729351044, 0.009681343100965023, 0.02372610941529274, 0.007922338321805, 0.019976293668150902, -0.0028157709166407585, -0.013015271164476871, 0.01790366694331169, 0.0078541599214077, -0.03359835222363472, 0.011331262066960335, -0.0005816476186737418, -0.00334415421821177, -0.028089530766010284, -0.0029180387500673532, 0.01585831306874752, -0.02461242862045765, 0.009783610701560974, 0.026112355291843414, 0.00544064212590456, -0.016035577282309532, -0.01478109322488308, 0.002883949549868703, -0.014153851196169853, 0.036925461143255234, 0.012210764922201633, 0.0315529964864254, 0.03673456236720085, -0.0043600136414170265, -0.021258048713207245, -0.005341783631592989, 0.02270343154668808, 0.0004870499833486974, 0.02094442769885063, 0.01229939702898264, -0.008958651684224606, -0.003061213530600071, -0.027435017749667168, 0.005614497233182192, -0.02078079991042614, -0.025907820090651512, 0.00766326067969203, 0.008542763069272041, -0.019049065187573433, -0.03749816119670868, -0.002406700048595667, -0.052824683487415314, 0.03348926827311516, -0.0009877356933429837, 0.009756339713931084, -0.013703873381018639, 0.0012220991775393486, -0.02473515085875988, 0.01690826192498207, 0.01233348622918129, 0.020426271483302116, 0.00392707996070385, 0.012749374844133854, -0.01782185398042202, -0.025335121899843216, -0.017399147152900696, 0.002427153754979372, 0.007656442932784557, 0.018408188596367836, -0.024885144084692, 0.019226329401135445, -0.0029214476235210896, 0.019376322627067566, -0.014726550318300724, -0.006483772769570351, -0.003257226664572954, 0.02581237070262432, -0.0030680312775075436, -0.012878913432359695, -0.007690532132983208, 0.020494449883699417, -0.007404182571917772, 0.0001931368315126747, -0.01229257881641388, -0.003417446045204997, 0.006497408729046583, -0.010056325234472752, 0.018530908972024918, -0.0015791839687153697, -0.0029401967767626047, -0.004520232789218426, 0.004625909496098757, -0.011079002171754837, -0.011535798199474812, 0.003091893857344985, -0.015421970747411251, -0.01881725899875164, -0.0006681490340270102, -0.016635548323392868, -0.016471918672323227, -0.00894501619040966, 0.0031754125375300646, 0.007915521040558815, -0.00467022554948926, 0.03286202624440193, -0.011249448172748089, 0.0197035800665617, 0.01684008352458477, 0.013669784180819988, -0.02961673028767109, 0.02165348269045353, -0.011338080279529095, -0.01232666801661253, 0.02176256850361824, -0.013287984766066074, 0.0048406715504825115, -0.009831336326897144, 0.004499779548496008, 0.013478884473443031, -0.007554174866527319, -0.0078541599214077, 0.01682644709944725, 0.024135179817676544, 0.007847342640161514, -0.017453689128160477, -0.04608864709734917, 0.010785834863781929, -0.01589922048151493, -0.01377205178141594, -0.001937973196618259, 0.007445089519023895, -0.008740480057895184, -0.020467178896069527, -0.007758710533380508, -0.009258637204766273, -0.03171662613749504, 0.0032623400911688805, -0.023330673575401306, -0.011808511801064014, 0.008010970428586006, -0.010015417821705341, -0.023398851975798607, -0.00843367725610733, -0.01334252767264843, -0.000917852739803493, 0.004015712067484856, 0.01294709276407957, -0.01565377786755562, 0.013894773088395596, 0.016035577282309532, -0.004349786788225174, -0.021094420924782753, -0.005116794724017382, 0.0014828818384557962, -0.006538315676152706, -0.041207071393728256, 0.0075678108260035515, -0.014085672795772552, 0.05451550707221031, 0.009722250513732433, -0.024421529844403267, -0.019594494253396988, -0.014808365143835545, -0.024489708244800568, -0.007942792028188705, -0.006156516261398792, 0.023057959973812103, 0.026875954121351242, 0.00013710264465771616, 0.007179193198680878, 0.030843941494822502, -0.020303549244999886, -0.014126580208539963, -0.013349344953894615, 0.004390693735331297, -0.0038520838133990765, 0.024080637842416763, -0.006838301196694374, 0.006197423208504915, -0.019349051639437675, -0.0005011117900721729, 0.015067443251609802, -0.014903814531862736, -0.005778125952929258, -0.009524532593786716, 0.007574628572911024, -0.004983846563845873, 0.006671263836324215, -0.009681343100965023, 0.007329185958951712, -0.0025669196620583534, 0.008379134349524975, -0.0064224121160805225, 0.005491775926202536, 0.013615241274237633, -0.0015791839687153697, -0.004687270149588585, -0.016485555097460747, -0.014576558023691177, 0.007574628572911024, 0.005897438153624535, -0.0073769111186265945, -0.016526462510228157, 0.016594640910625458, -0.002590782009065151, 0.02279888279736042, -0.02757137455046177, 0.0024612429551780224, 9.555639553582296e-05, -0.0006136062438599765, -0.007404182571917772, -0.018449096009135246, 0.016594640910625458, -0.014262937009334564, -0.001124092610552907, 0.015435606241226196, -0.005863348953425884, -0.018040023744106293, -0.011917597614228725, 0.03348926827311516, -0.022348903119564056, -0.002229436067864299, -0.039134442806243896, 0.004448645282536745, -0.015381064265966415, 0.019185421988368034, 0.019062701612710953, -0.009360904805362225, 0.005144065711647272, -0.0070155649445950985, 0.018108202144503593, -0.0037975411396473646, -0.030325785279273987, -0.01678553968667984, -0.020085379481315613, 0.010860830545425415, 0.0073769111186265945, 0.002618053462356329, 0.0012647106777876616, -0.005965616554021835, 0.02684868313372135, -0.0088700195774436, -0.009565440006554127, 0.21151690185070038, -0.0009059215080924332, 0.03485283628106117, 0.02578509971499443, -0.003518009325489402, 0.015012900345027447, 0.019949020817875862, -0.01290618535131216, -2.799045978463255e-05, 0.022226182743906975, -0.021108055487275124, 0.011883508414030075, -0.01793093793094158, -0.003328813938423991, -0.0053895083256065845, 0.025116950273513794, 0.021394405514001846, -0.037116359919309616, -0.01888543739914894, -0.006780349183827639, 0.0013269236078485847, 0.00940181128680706, -0.026044176891446114, -0.019580857828259468, 0.005921300500631332, 0.011978957802057266, -0.01678553968667984, 0.010935827158391476, 0.016117392107844353, -0.007649624720215797, -0.009742704220116138, 0.026957768946886063, 0.0023606796748936176, 0.009613164700567722, -0.030843941494822502, 0.008385952562093735, 0.02583964169025421, -0.0033969925716519356, 0.02754410356283188, -0.024994228035211563, -0.0030441689305007458, -0.014426564797759056, -0.013035723939538002, -0.022253453731536865, -0.008754116483032703, 0.021108055487275124, -0.013233441859483719, -0.02057626284658909, -0.0069780671037733555, 0.0076700784265995026, -0.011985776014626026, -0.0052463337779045105, 0.03368016704916954, 0.007751892786473036, -0.00832459144294262, -0.007281461264938116, -0.004656589590013027, 0.01891270838677883, 0.0009562030900269747, 0.02860768884420395, 0.0033492676448076963, 0.009722250513732433, 0.019389959052205086, 0.01092219166457653, 0.0048440806567668915, 0.0005249742534942925, -0.03430740907788277, 0.007635989226400852, 0.0032129106111824512, -0.01784912496805191, -0.008495038375258446, 0.011194905266165733, -0.0030220109038054943, 0.00991996843367815, -0.03171662613749504, -0.017208246514201164, 0.02465333603322506, 0.017030982300639153, 0.009122279472649097, 0.03749816119670868, -0.020126285031437874, -0.014508379623293877, -0.014467472210526466, -0.018435459583997726, -0.02568964846432209, -0.039898041635751724, 0.019335415214300156, -0.023262495175004005, -0.0004870499833486974, 0.014522015117108822, -0.008631395176053047, -0.008692755363881588, -0.0018749081064015627, -0.01985357142984867, 0.026003269478678703, 0.026998676359653473, -0.014412929303944111, 0.00994723942130804, -0.01863999478518963, 0.021312590688467026, -0.018380917608737946, 0.030871212482452393, 0.014031129889190197, 0.010765381157398224, 0.0059178913943469524, -0.014412929303944111, -0.0025771462824195623, 0.007492814213037491, 0.009224548004567623, -0.004530459642410278, -0.017249153926968575, -0.004407738335430622, 0.00886320136487484, -0.018571816384792328, 0.0029384922236204147, 0.021298956125974655, 0.004649771843105555, -0.0228534247726202, 0.011569887399673462, 0.0014112944481894374, -0.013703873381018639, -0.007976881228387356, -0.025921456515789032, 0.004036165773868561, -0.00984497182071209, -0.002739070216193795, -0.03370743617415428, 0.009504079818725586, -0.02676686830818653, -0.00789506733417511, 0.018435459583997726, -0.03569824993610382, -0.011944868601858616, -0.004005485214293003, -0.007499632425606251, -0.00788824912160635, -0.004827036056667566, -0.014153851196169853, -0.006521271076053381, -0.011910779401659966, -0.0031413231045007706, -0.009204094298183918, 0.0103426743298769, -0.009817699901759624, 0.014167486689984798, -0.011222177185118198, -0.0004478473565541208, 0.006296282168477774, 0.006640583276748657, -0.013437977060675621, -0.004394102841615677, 0.005249742418527603, -0.010097231715917587, -0.009606347419321537, 0.005621315445750952, -0.02256707474589348, -0.022539803758263588, -0.01964903622865677, 0.0066780815832316875, 0.009667707607150078, -0.026985039934515953, 0.026453247293829918, 0.01884452998638153, 0.0012834598310291767, -0.007349639665335417, -0.03237114101648331, -0.17377328872680664, -0.0012042023008689284, -0.012674378231167793, -0.034198321402072906, 0.04846125841140747, 0.010492667555809021, 0.025157857686281204, 0.011869871988892555, -0.004458872135728598, -0.014208394102752209, -0.01675826869904995, 0.008774569258093834, -0.024407893419265747, 0.0008637360297143459, -0.013744780793786049, 0.012688013724982738, -0.01044494193047285, 0.01041767094284296, 0.026930497959256172, 0.008985922671854496, 0.041125256568193436, -0.014031129889190197, 0.01081992406398058, 0.019362686201930046, 0.007083743344992399, 0.01679917611181736, 0.0008718322496861219, 0.006473546382039785, -0.02382155880331993, -0.04131615534424782, 0.03138937056064606, 0.005069069564342499, 0.0074587250128388405, -0.013131174258887768, 0.03239841014146805, -0.006119017954915762, 0.00984497182071209, -0.023957915604114532, -0.026889590546488762, 0.018544545397162437, 0.015312885865569115, 0.020139921456575394, 0.0315529964864254, -0.015558327548205853, -0.018503637984395027, 0.02273070253431797, 0.015312885865569115, -0.031007571145892143, 0.014644736424088478, -0.028907673433423042, 0.032152969390153885, -0.021994376555085182, -0.013990223407745361, 0.006623538676649332, 0.005239515565335751, -0.010642659850418568, -0.01044494193047285, 0.015558327548205853, 0.006661036983132362, -0.0005582112353295088, 0.008508673869073391, -0.009170005097985268, -0.010533574037253857, 0.030053071677684784, -0.0007380319875665009, -0.029180387035012245, -0.0061735608614981174, 0.008760933764278889, -0.0455704927444458, 0.018939979374408722, 0.012026682496070862, -0.009142733179032803, 0.008201870135962963, -0.012844824232161045, -0.0077109853737056255, 0.020249007269740105, -0.00793597474694252, -0.0020658078137785196, 0.002297614701092243, -0.0023299993481487036, -0.0029384922236204147, 0.006770122330635786, 0.00014392049342859536, -0.010840377770364285, -0.00762235326692462, -0.005191790871322155, 0.002483400981873274, -0.005079296417534351, -0.002007856033742428, -0.011726697906851768, 0.01778094656765461, -0.02279888279736042, -0.03847993165254593, -0.004878169856965542, 0.015135621652007103, 0.028198616579174995, 0.022976145148277283, -0.0032282506581395864, 0.014099308289587498, -0.0198399368673563, 0.03291656821966171, -0.002853269223123789, -0.03231659531593323, -0.00884274858981371, 0.019389959052205086, 0.009633618406951427, -0.01993538625538349, 0.01091537345200777, 0.018244558945298195, 0.011188087984919548, -0.02679414115846157, 0.009388175792992115, 0.008576852269470692, 0.003431081771850586, -0.003681637579575181, 0.034061964601278305, -0.0009042170131579041, -0.03839811682701111, 0.007274643052369356, -0.0034123326186090708, 0.042188841849565506, -0.00029359356267377734, -0.0028464512433856726, 0.014358386397361755, 0.010724473744630814, -0.007738256826996803, -0.11421258002519608, -0.02879858762025833, -0.008883655071258545, -0.002647029235959053, 0.01045857835561037, 0.02361702360212803, -0.020003564655780792, 0.01793093793094158, -0.01981266401708126, 0.03485283628106117, 0.003565734252333641, -0.015067443251609802, -0.004898623563349247, -0.014399293810129166, 0.0024595384020358324, -0.028880402445793152, -0.01229257881641388, 0.010240406729280949, -0.027121396735310555, 0.018612723797559738, 0.002190233441069722, 0.0030663269571959972, 0.015462878160178661, -0.007976881228387356, -0.017385510727763176, -0.009354086592793465, -0.0496339313685894, 0.017426418140530586, 0.00396457826718688, 0.010806288570165634, -0.0076087177731096745, -0.005767899099737406, 0.011222177185118198, -0.020385364070534706, 0.013962951488792896, -0.0005415927735157311, -0.026971405372023582, -0.00940181128680706, 0.024244265630841255, -0.020371727645397186, 0.00890410877764225, 0.011713061481714249, -0.0056894938461482525, -0.017249153926968575, 0.003906626719981432, 0.01045176014304161, -0.046906791627407074, 0.01340388786047697, 0.024898778647184372, -0.024012459442019463, -0.02669868990778923, -0.002082852413877845, -0.03738907724618912, -0.017971845343708992, 0.018980886787176132, 0.005290649831295013, 0.00793597474694252, 0.007383728865534067, -0.0014914041385054588, 0.009715432301163673, -0.01143353059887886, -0.0016891217092052102, -0.01484927162528038, 0.027694096788764, 0.025144221261143684, 0.009504079818725586, 0.00021859724074602127, -0.0020351274870336056, 0.009360904805362225, -0.018612723797559738, -0.007676896173506975, 0.010199500247836113, -0.024312444031238556, 0.03348926827311516, -0.01095628086477518, 0.008999559096992016, -0.0055429101921617985, 0.007281461264938116, 0.018503637984395027, 0.013151627965271473, -0.017521867528557777, -0.012585746124386787, -0.014767457731068134, -0.023303402587771416, -0.011440347880125046, 0.0050315712578594685, 0.008208688348531723, 0.02770773135125637, -0.006964431144297123, -0.02159894071519375, -0.010547210462391376, 0.029425829648971558, 0.007008747197687626, 0.03638003394007683, 0.01340388786047697, 0.0025941908825188875, 0.01589922048151493, -0.0014752116985619068, 0.002396473428234458, 0.012258489616215229, -0.02877131663262844, 0.01095628086477518, -0.044016022235155106, 0.0013874319847673178, -0.012606199830770493, -0.03973441570997238, 0.01671736128628254, -0.017085526138544083, 0.01675826869904995, -0.031989339739084244, -0.01283800695091486, -0.024326080456376076, -0.038152676075696945, -0.0013380026211962104, 0.003165185684338212, 0.0021339862141758204, -0.0061292448081076145, -0.012919820845127106, 0.00882911216467619, -0.011753968894481659, -0.006995111703872681, 0.019294507801532745, 0.028225887566804886, -0.030134886503219604, 0.0199081152677536, 0.005396326072514057, -0.013049360364675522, 0.004874760750681162, -0.021394405514001846, 0.029834900051355362, -0.0029657636769115925, -0.014794728718698025, 0.009817699901759624, -0.009272272698581219, -0.012503932230174541, -0.0012919821310788393, -0.01779458113014698, 0.0228534247726202, -0.0019158151699230075, 0.0020351274870336056, 0.006916706450283527, 0.04671588912606239, -0.0014138511614874005, -0.004363422282040119, 0.012878913432359695, -0.03891627490520477, -0.010499484837055206, 0.002086261287331581, -0.009626800194382668, -0.003872537286952138, 0.01888543739914894, 0.01482200063765049, 0.01669009029865265, 0.009101826697587967, -0.015462878160178661, -0.017480960115790367, 0.010124503634870052, -0.012558475136756897, -0.01769913174211979, -0.012994817458093166, -0.006176969967782497, -0.0004968506400473416, 0.02871677279472351, -0.009231365285813808, -0.00470431474968791, -0.003313473891466856, 0.0032129106111824512, -0.024271536618471146, -0.019580857828259468, -0.0050963410176336765, 0.01775367558002472, -0.024912415072321892, -0.021121691912412643, 0.0007806435460224748, 0.017058255150914192, 0.018421823158860207, 0.0031600722577422857, -0.0022993190214037895, -0.029180387035012245, 0.010649478062987328, -0.011549433693289757, 0.023385217413306236, 0.021394405514001846, 0.014303844422101974, -0.019444501027464867, 0.018012752756476402, 0.055688176304101944, 0.008658666163682938, 0.020194463431835175, -0.011747151613235474, -0.010254042223095894, 0.008065513335168362, 0.028116803616285324, -0.010751745663583279, -0.020126285031437874, 0.016526462510228157, 0.011290355585515499, 0.015994669869542122, -0.01193805132061243, 0.0068723903968930244, 0.0011061957338824868, -0.00595198106020689, 0.00934045109897852, -0.0137788699939847, 0.0017223587492480874, -0.014440201222896576, -0.038070861250162125, 0.016581004485487938, -0.011910779401659966, -0.03166208416223526, -0.010513120330870152, 0.03376198187470436, -0.0055395010858774185, 0.004094117321074009, 0.01986720785498619, 0.014058401808142662, -0.036161862313747406, 0.01891270838677883, -0.018080931156873703, -0.013199352659285069, -0.019239965826272964, 0.03629821911454201, -0.004813400097191334, 0.023194316774606705, 0.04524323716759682, -0.003315178444609046, 0.01964903622865677, 0.005355419125407934, 0.01973085105419159, -0.007370092906057835, 0.008685938082635403, 0.010622206144034863, -0.007329185958951712, -0.005161110311746597, -0.010792652145028114, -0.00843367725610733, 0.013137992471456528, -0.03078939951956272, 0.008065513335168362, 0.007288279011845589, -0.0020641032606363297, 0.06321508437395096, 0.011801693588495255, -0.01765822432935238, -0.0009723954717628658, -0.01438565831631422, -0.0072064646519720554, 0.0319620706140995, -0.003221432911232114, -0.0023419305216521025, -0.01973085105419159, 0.008672301657497883, -0.00198228913359344, 0.0012076111743226647, -0.0375799760222435, -0.0026231668889522552, 0.014412929303944111, -0.006695126183331013, 0.013635694980621338, -0.02188529074192047, 0.018449096009135246, 0.014085672795772552, 0.0046531809493899345, 0.016417376697063446, 0.011815330013632774, -0.03059849888086319, 0.01873544417321682, 0.025089679285883904, -0.0037941320333629847, -0.007001929450780153, -0.026494154706597328, -0.01091537345200777, -0.007111014798283577, -0.029453100636601448, -0.026466883718967438, 0.008672301657497883, 0.015531056560575962, 0.004019121173769236, 0.0017163930460810661, 8.261313632829115e-05, -0.009960874915122986, 0.005890620406717062, -0.00544746033847332, -0.02159894071519375, -0.05214289575815201, -0.021080784499645233, -0.00844049546867609, -0.03076212853193283, -0.010281314142048359, -0.03269839659333229], "d665cef5-0e08-47bb-9e34-0b0767c0f1ff": [0.0142612149938941, 0.004433435387909412, 0.018581992015242577, -0.010960989631712437, -0.001178770326077938, 0.006358567159622908, 0.007408939767628908, -0.024943873286247253, -0.04137872904539108, -0.03801223635673523, -0.003952980972826481, 0.03302876278758049, -0.01659390516579151, 0.006501046475023031, -0.0044036139734089375, -0.0052154166623950005, 0.0273295771330595, -0.004035817924886942, 0.001506804721429944, 0.022147295996546745, -0.012558086775243282, 0.0017362631624564528, 0.0024486612528562546, 0.001587984967045486, -0.020305002108216286, 0.020185716450214386, 0.002824741182848811, -0.02573910728096962, 0.010569998994469643, -0.011802613735198975, 0.009927184320986271, 0.0028595326002687216, -0.024572763592004776, -0.007660764269530773, -0.021511107683181763, -0.0036680216435343027, -0.005888052750378847, -0.006027218885719776, 0.007939096540212631, -0.00868794322013855, 0.0345132015645504, 0.024705301970243454, -0.011279083788394928, 0.006782692391425371, -0.01242554746568203, 0.03196844831109047, -0.009092187508940697, -0.022929277271032333, -0.021564124152064323, 0.014910656958818436, 0.020384525880217552, 0.03581208363175392, -0.03226003423333168, -0.008389730006456375, -0.016156526282429695, -0.012803284451365471, -0.019416989758610725, 0.01720358431339264, 0.009496431797742844, -0.03663382679224014, 0.01435399241745472, 0.03705795481801033, 0.010212143883109093, 0.004632244352251291, -0.014645579271018505, 0.02929115854203701, 0.010994124226272106, 0.005560018587857485, 0.013823836110532284, -0.009807898662984371, -0.00157555949408561, 0.026825929060578346, 0.0004609878233168274, 0.013187647797167301, 0.03883397951722145, 0.020596588030457497, -0.01514922734349966, 0.014486531727015972, 0.00868794322013855, 0.011709836311638355, -0.015215497463941574, -0.025354744866490364, -0.01005309633910656, -0.0004672005889005959, 0.017097553238272667, -0.008919886313378811, 0.0014811252476647496, 0.008992782793939114, -0.006892037112265825, -0.03363844379782677, -0.0025314982049167156, 0.017031284049153328, 0.0028893540147691965, 0.024228161200881004, -0.007256519980728626, 0.013810582458972931, -0.0039165327325463295, 0.01666017435491085, 0.0005935269873589277, 0.0021537616848945618, -0.0061498177237808704, -0.007567986845970154, -0.023287132382392883, -0.011312218382954597, -0.030643057078123093, 0.012935823760926723, -0.0015962687321007252, 0.0077535416930913925, 0.020835157483816147, -0.019827861338853836, -0.016143271699547768, 0.05768105015158653, -0.01097424328327179, -0.045275382697582245, -0.004539466928690672, -0.016766205430030823, -0.00591456051915884, -0.01742890104651451, -0.02246539108455181, 0.020185716450214386, 0.00774028804153204, 0.025898154824972153, 0.018038582056760788, -0.009933811612427235, 0.0182108823210001, -0.02324737049639225, -0.017587948590517044, -0.007309535518288612, -0.018157867714762688, -0.01607700251042843, -0.0006991441478021443, 0.0032571502961218357, 0.01981460675597191, 0.003783993422985077, -0.019178418442606926, -3.618940900196321e-05, -0.021789440885186195, 0.012027930468320847, -0.031120197847485542, -0.011497773230075836, 0.019072387367486954, -0.00014537890092469752, 0.0019996848423033953, 0.015096211805939674, -0.006338686216622591, 0.015348036773502827, 0.027024738490581512, 0.0018704590620473027, -0.0041120280511677265, 0.011424876749515533, 0.006580570247024298, 0.001187882386147976, -0.012498443946242332, 0.003783993422985077, 0.023393165320158005, -0.012326143682003021, -0.011451384983956814, 0.02406911365687847, 0.022558167576789856, 0.004774723667651415, 0.027382593601942062, 0.012432174757122993, -0.001314622932113707, 0.0007099129725247622, 0.010649522766470909, 0.029503220692276955, 0.034062568098306656, 0.0031908806413412094, -6.67873173370026e-05, -0.005957636050879955, 0.0059245009906589985, 0.02330038696527481, -0.025275221094489098, 0.015586607158184052, 0.022134041413664818, 0.0008532209321856499, 0.02045079506933689, 0.004930457100272179, -0.0008250563405454159, -0.01660715788602829, 0.024983635172247887, -0.0019516393076628447, -0.00047962614917196333, 0.022107534110546112, -0.02188221737742424, -0.00502654816955328, 0.023207610473036766, 0.016699936240911484, 0.011643566191196442, 0.011451384983956814, 0.017468662932515144, 0.030377978459000587, -0.022160550579428673, 0.0004564317932818085, -0.6450946927070618, 0.002821427769958973, 0.0035288555081933737, -0.022094281390309334, 0.008111397735774517, 0.013744312338531017, 0.007455328479409218, 0.017839772626757622, 0.00042661046609282494, 0.04045095667243004, 0.003571930807083845, -0.006742930505424738, 0.008310206234455109, -0.027051245793700218, -0.004493078216910362, -0.0072498926892876625, -0.002041103318333626, -0.03422161564230919, -0.027356086298823357, -0.00872107781469822, 0.007700526155531406, 0.02531498298048973, -0.014115422032773495, 0.017534932121634483, 0.008296952582895756, 0.04116666689515114, -0.003209104761481285, 0.0020361330825835466, 0.026375295594334602, 0.03241908177733421, 0.004088833462446928, -0.009695240296423435, 0.010000080801546574, -0.011590550653636456, 0.035732559859752655, 0.005566645413637161, 0.013459352776408195, 0.0006639384082518518, 0.004499705042690039, 0.026242757216095924, -0.03279019147157669, -0.01659390516579151, -0.006076921243220568, 0.022518405690789223, 0.018396437168121338, -0.00018068817735183984, 0.010874839499592781, 0.005192222073674202, 0.0027849795296788216, -0.003147805342450738, 0.0020841786172240973, 0.01165682077407837, 0.004281015135347843, -0.020835157483816147, 0.0072498926892876625, -0.014605817385017872, 0.021921979263424873, -0.008588538505136967, -0.009350638836622238, -0.03867493197321892, -0.002731963759288192, -0.004930457100272179, 0.0032770310062915087, -0.004880755208432674, -0.030802104622125626, 0.010119366459548473, -0.002102402737364173, -0.007660764269530773, -0.0071836235001683235, -0.0036348868161439896, 0.0173758864402771, 0.018727784976363182, -0.018780801445245743, -0.020305002108216286, 0.010357936844229698, 0.006805886514484882, 0.03048400953412056, -0.03954968973994255, -0.007369178347289562, 0.010762181133031845, 0.0016352020902559161, -0.00939702708274126, -0.010815196670591831, -0.01659390516579151, 0.026759659871459007, -0.005245238076895475, -0.005457300692796707, 0.021974995732307434, 0.0036580811720341444, -0.0004214331565890461, 0.005145833361893892, 0.017919296398758888, 0.00022635205823462456, -0.030749088153243065, -0.007939096540212631, 0.02899957075715065, -0.004052385222166777, -0.014605817385017872, -0.01094110868871212, -0.026852436363697052, -0.013770820572972298, -0.016766205430030823, 0.0033847191371023655, 0.006269102916121483, 0.017336124554276466, -0.003946354147046804, 0.019191673025488853, 0.00957595556974411, 0.02579212374985218, -0.02401609905064106, -0.012014675885438919, -0.020198971033096313, -0.011769479140639305, -0.008992782793939114, 0.015202243812382221, -0.017004776746034622, 0.017004776746034622, 0.006703168619424105, 0.014128675684332848, -0.009628971107304096, 0.01577216200530529, 0.011073647998273373, -0.015215497463941574, -0.0119218984618783, 0.0035520498640835285, 0.02265094593167305, -0.03350590169429779, -0.004406927619129419, -0.023883558809757233, 0.009383773431181908, 0.0035586769226938486, 0.007117353845387697, -0.0011249262606725097, -0.010636269114911556, 0.002715396462008357, -0.006703168619424105, 0.015414305962622166, -0.014923911541700363, 0.004171670414507389, -0.009204845875501633, -0.02556680701673031, -0.022730467841029167, 0.01761445589363575, -0.013267171569168568, -0.009357266128063202, -0.026043947786092758, -0.04328729584813118, 0.0010420893086120486, -0.005268432199954987, -0.004330717492848635, 0.015613114461302757, -0.020437540486454964, -0.033055271953344345, 0.023989589884877205, -0.008873498067259789, 0.0029191754292696714, 0.00315111898817122, 0.015414305962622166, -0.013068363070487976, -0.013651534914970398, -0.013214156031608582, 0.01346598006784916, 0.003260463709011674, -0.016911998391151428, -0.01260447595268488, -0.02335340343415737, -0.016461364924907684, 0.044983796775341034, -0.023207610473036766, -0.051027581095695496, 0.013134632259607315, 0.005288313142955303, 0.01378407422453165, 0.013704550452530384, -0.014910656958818436, 0.010033215396106243, -0.033240824937820435, 0.0004257821128703654, -0.00939702708274126, -0.021921979263424873, 0.008714450523257256, 0.022014757618308067, -0.005828410387039185, -0.011530907824635506, 0.019496513530611992, 0.011729717254638672, -0.00426776148378849, -0.0026607238687574863, -0.005321447737514973, 0.018701277673244476, 0.03552049770951271, 0.010026589035987854, -0.02681267447769642, 0.013128004968166351, -0.006143190898001194, 0.012902689166367054, 0.0080915167927742, 0.009476550854742527, 0.0031063868664205074, 0.04151127114892006, 0.019072387367486954, 0.0005036488873884082, -0.004526212811470032, -0.0220545195043087, -0.0018124731723219156, -0.02929115854203701, 0.01992063783109188, -0.015878193080425262, 0.010563372634351254, -0.0142612149938941, 0.006547435186803341, -0.011305592022836208, -0.0024105561897158623, -0.020742380991578102, 0.0018157867016270757, 0.031570833176374435, -0.0121604697778821, 0.02686569094657898, -0.015135973691940308, 0.0062889838591217995, 0.0006805058219470084, 0.016978267580270767, 0.01396962907165289, -1.9932649593101814e-05, 0.00011773206642828882, 0.022452136501669884, -4.809722304344177e-05, 0.007448701653629541, -0.005397657863795757, -0.033479396253824234, -0.006825767457485199, -0.02497038058936596, 0.01517573557794094, 0.009920557029545307, 0.03143829107284546, 0.01695176027715206, 0.028920048847794533, -0.01831691339612007, 0.023883558809757233, 0.010947735980153084, -0.009403654374182224, 0.018475960940122604, 0.010212143883109093, -0.024267923086881638, 0.001367638586089015, 0.021497854962944984, 0.029900837689638138, 0.007707152981311083, -0.00922472681850195, 0.03480478748679161, 0.015069704502820969, -0.00027439752011559904, -0.009854287840425968, 0.0029125483706593513, 0.005503689404577017, -0.02401609905064106, 0.0054672411642968655, 0.006742930505424738, 0.04612363129854202, 0.02444022335112095, -0.017230093479156494, -0.008986156433820724, 0.02929115854203701, 0.017654217779636383, 0.0004073508607689291, -0.008966275490820408, -0.005878112278878689, -0.03263114392757416, -0.020768888294696808, -0.005178968422114849, -0.035440973937511444, -0.035785578191280365, -0.010854958556592464, 0.00260108127258718, 0.0020874920301139355, 0.004628930706530809, -0.0024171832483261824, 0.02152436226606369, 0.012677372433245182, 0.021617138758301735, -0.011650193482637405, -0.02046404778957367, 0.0306695643812418, -0.0008731018169783056, -0.013890105299651623, -0.010516983456909657, -0.0243209395557642, 0.0055765858851373196, -0.007077591959387064, 0.0036680216435343027, -0.021139997988939285, 0.0036315734032541513, -0.014300976879894733, -0.0023542270064353943, 0.007945723831653595, 0.0018406377639621496, 0.023406418040394783, -0.007037830073386431, 0.007031203247606754, -0.013505741953849792, -0.0029904150869697332, -0.005198849365115166, -0.04275713860988617, -0.001505148014985025, 0.05047091841697693, 0.006663407199084759, 0.010285040363669395, -0.012942450121045113, 0.0005504517466761172, -0.013207528740167618, 0.015255259349942207, -0.0185687392950058, -0.007833065465092659, -0.007037830073386431, 0.0180915966629982, -0.014022644609212875, 0.019735082983970642, 0.02117975987493992, 0.021511107683181763, 0.025527045130729675, -0.027051245793700218, -0.0067926328629255295, 9.593558206688613e-05, -0.006298924330621958, 0.05269757658243179, 0.01980135217308998, -0.012127334251999855, 0.014619071036577225, -0.006066980771720409, -0.006570629775524139, -0.015507083386182785, -0.02383054420351982, 0.03029845468699932, -0.013518995605409145, -0.008310206234455109, 0.002437064191326499, 0.010205516591668129, 0.013572011142969131, 0.013479233719408512, 0.012200230732560158, 0.008747585117816925, -0.03416860103607178, 0.005791962146759033, -0.0037773665972054005, 0.010888093151152134, 0.03467224910855293, 0.017004776746034622, 0.009264488704502583, -0.0024735124316066504, 0.02212078869342804, 0.027064500376582146, -0.012750268913805485, 0.014460024423897266, -0.0185687392950058, -0.02982131391763687, 0.01283641904592514, 0.01768072508275509, 0.005228670313954353, -0.02461252547800541, 0.04654775932431221, -0.011895391158759594, -0.0012963988119736314, 0.003850263077765703, -0.014725102111697197, 0.019483258947730064, 0.008051754906773567, 0.005593153182417154, -0.008767466060817242, -0.014314230531454086, 0.014539547264575958, 0.004204805474728346, 0.019589290022850037, -0.01049710251390934, -0.008482507430016994, 0.014446769841015339, -0.010265159420669079, -0.01766747236251831, 0.004135222174227238, -0.0015681041404604912, -0.0002304939116584137, -0.008972901850938797, -0.010894720442593098, -0.011736343614757061, -0.0042511941865086555, -0.01589144766330719, -0.021789440885186195, 0.0035354825668036938, -0.013035227544605732, 0.002576230326667428, -0.011491146869957447, -0.013128004968166351, 0.020715873688459396, -0.028787508606910706, 0.025010142475366592, 0.008131278678774834, -0.03374447301030159, -0.031093690544366837, -0.007985485717654228, 0.022929277271032333, 0.027144022285938263, 0.0068191406317055225, -0.005904620047658682, -0.005371150095015764, -0.00021558324806392193, 0.0004052799486089498, -0.03994730859994888, 0.006878782995045185, -0.025765616446733475, 0.0033582113683223724, -0.010656150057911873, -0.0056892442516982555, -0.0017843086970970035, -0.01159717794507742, 0.030218932777643204, -0.006613704841583967, -0.008137905038893223, -0.018953101709485054, -0.015281766653060913, -0.01467208657413721, 0.005990770645439625, -0.022226819768548012, 0.014685340225696564, 0.02331364154815674, -0.02430768497288227, 0.010450714267790318, -0.012286381796002388, -0.002619305392727256, -0.030749088153243065, 0.00717699620872736, 0.025540299713611603, 0.016646919772028923, 0.014035898260772228, -0.010152501054108143, -0.0020609842613339424, 0.039470165967941284, -0.019774844869971275, 0.033532410860061646, 0.032127495855093, 0.015586607158184052, 0.011756224557757378, -0.003648140700533986, 0.012630983255803585, 0.03724350780248642, -0.02471855655312538, 0.004559347406029701, -0.04281015321612358, 0.005835037212818861, 0.011285711079835892, -0.0215773768723011, 0.006666720379143953, 0.022319596260786057, -0.0352289117872715, -0.010888093151152134, -0.029556235298514366, -0.015785416588187218, 0.009801272302865982, -0.0033399872481822968, 0.013207528740167618, -0.0037210374139249325, 7.035966700641438e-05, -0.022730467841029167, 0.005351269152015448, -0.014645579271018505, 0.012233366258442402, 0.009231353178620338, 0.013320187106728554, -0.0038535764906555414, -0.03159733861684799, 0.0005525226588360965, -0.029927344992756844, -0.02253166027367115, -0.009748256765305996, 0.010510356165468693, 0.016355333849787712, 0.002897637663409114, 0.01998690702021122, -0.017985565587878227, -0.0163023192435503, 0.019774844869971275, -0.016752950847148895, 0.006090174894779921, 0.00089712452609092, 0.029158618301153183, 0.0218159481883049, 0.020384525880217552, -0.008588538505136967, 0.02693196013569832, -0.008197547867894173, -0.012982212007045746, 0.002395645482465625, 0.007521598134189844, 0.007945723831653595, -0.0160637479275465, -0.008793974295258522, 0.011219440959393978, -0.008621673099696636, -0.007945723831653595, -0.0007997910724952817, 0.004463256802409887, 0.032710667699575424, -0.005188908893615007, 0.008416237309575081, -0.025222204625606537, -0.020530318841338158, -0.010152501054108143, 0.02401609905064106, 0.010106111876666546, 0.019947145134210587, -0.028442906215786934, 1.1370670108590275e-05, 0.007581240963190794, -0.02080865018069744, -8.972280920716003e-05, -0.0011100155534222722, 0.004884068388491869, 0.013717805035412312, -0.007230012211948633, 0.027303069829940796, 0.012173723429441452, -0.020053178071975708, 0.015493829734623432, -0.036554303020238876, 0.009966946206986904, 0.0023890186566859484, 0.02010619267821312, 0.014062406495213509, -0.013505741953849792, -0.003890024730935693, -0.026706643402576447, 0.00901266373693943, -0.009416908025741577, -0.0108483312651515, 0.01476486399769783, 0.01227312721312046, 0.0024701987858861685, -0.022916022688150406, -0.00641820952296257, 0.015414305962622166, -0.023459434509277344, 0.02331364154815674, 0.01339971087872982, 0.009715121239423752, -0.01932421140372753, -0.028389891609549522, 0.011809240095317364, -0.006825767457485199, 0.04668029770255089, 0.006938425824046135, 0.007892708294093609, 0.031226228922605515, 0.006832394283264875, -0.020649602636694908, -0.01387685164809227, 0.025301728397607803, -0.0026905452832579613, 0.025805378332734108, 0.0026706643402576447, -0.030165916308760643, 0.003512288210913539, -0.024387208744883537, -0.001453789067454636, -0.007958977483212948, -0.0273295771330595, 0.009701867587864399, -0.013704550452530384, -0.027859734371304512, -0.02709100767970085, 0.007819810882210732, -0.04312824830412865, 0.02710426039993763, -0.003734291298314929, 0.006365193985402584, -0.015348036773502827, 0.004784664139151573, -0.010338055901229382, 0.010258532129228115, -0.00023939888342283666, 0.02099420502781868, 0.006643526256084442, -0.001288115163333714, -0.02170991711318493, 0.003013609442859888, -0.04405602067708969, -0.007349297404289246, 0.00358849810436368, 0.019827861338853836, -0.027780210599303246, -0.00358849810436368, 0.01144475769251585, 0.009529566392302513, -0.0020825217943638563, 0.0008888408192433417, 0.00016039311594795436, 0.026759659871459007, -0.004811171907931566, -0.015758907422423363, 0.012286381796002388, 0.0163023192435503, 0.003989429213106632, -0.02455950900912285, -0.018237389624118805, -0.023446179926395416, 0.007687272038310766, 0.01001996174454689, 0.0059510087594389915, 0.01366478856652975, -0.008528895676136017, -0.016978267580270767, -0.001968206837773323, 0.012153842486441135, -0.01102725975215435, 0.016050493344664574, 0.0080915167927742, -0.011100156232714653, -0.005944381933659315, -0.01339971087872982, -0.007813184522092342, -0.012246619910001755, -0.014009390957653522, 0.010205516591668129, -0.0005309850675985217, 0.04593807831406593, -0.02934417314827442, 0.007508344482630491, -0.0079722311347723, 0.015520337037742138, -0.02123277634382248, 0.01529502123594284, -0.02881401591002941, -0.002768411999568343, 0.03196844831109047, -0.006951679941266775, -0.004532839637249708, -0.01993389241397381, 0.0010230367770418525, 0.031332261860370636, 0.0021670155692845583, 0.002206777222454548, 0.030457502231001854, 0.02046404778957367, 0.007760168518871069, -0.007833065465092659, -0.044798240065574646, 0.010278413072228432, -0.003048401093110442, 0.005245238076895475, 0.007892708294093609, 0.0013742655282840133, 0.0013162796385586262, -0.02626926451921463, 0.013545503839850426, -0.013538876548409462, -0.04180285707116127, 0.009145203046500683, -0.026070455089211464, -0.003449331969022751, 0.0036580811720341444, -0.013267171569168568, -0.03035147115588188, -0.008482507430016994, -0.026415057480335236, 0.004552720580250025, 0.006689914967864752, -0.010304921306669712, -0.014711848460137844, 0.02471855655312538, 0.021749678999185562, -0.00436053890734911, 0.0001061348884832114, -0.029079094529151917, -0.002562976209446788, -0.0182108823210001, -0.0376146174967289, 0.001626918325200677, -0.009158456698060036, 0.054341062903404236, 0.01055674534291029, -0.02094119042158127, -0.01058325357735157, -0.013472607359290123, -0.005666049662977457, -0.0039430405013263226, 0.004579228349030018, 0.035440973937511444, 0.04050397127866745, 0.012312889099121094, 0.008900005370378494, 0.030855119228363037, -0.004161729943007231, 0.010046469047665596, -0.037031445652246475, -0.001883713062852621, -0.0029440263751894236, 0.018900087103247643, -0.004986786283552647, 0.0005649482482112944, -0.00592781463637948, -0.006693228147923946, 0.011636939831078053, 0.00107522401958704, -0.0033896893728524446, 0.009125322103500366, 0.015798669308423996, -0.016633667051792145, -0.01707104593515396, -0.009211472235620022, 0.013273797929286957, 0.0023326894734054804, -0.0092843696475029, -0.002067611087113619, 0.009907303377985954, 0.007985485717654228, -0.0026491268072277308, -0.012471936643123627, -0.0086283003911376, -0.014923911541700363, -0.01008623093366623, 0.01744215562939644, -0.014778117649257183, -0.04090159013867378, -0.00014755337906535715, -0.00847588013857603, 0.020967697724699974, -0.010709165595471859, 0.01005309633910656, 0.0007227527094073594, -0.009622343815863132, -0.0003588912368286401, -0.019284449517726898, 0.013638281263411045, -0.023035308346152306, 0.006004024762660265, 0.0049635921604931355, 0.014619071036577225, -0.02793925814330578, -0.014247961342334747, 0.02934417314827442, -0.010245278477668762, -0.005225357133895159, -0.028389891609549522, -0.00309810321778059, -0.019006118178367615, 0.0037243508268147707, 0.011318845674395561, -0.002044416731223464, 0.009357266128063202, 0.00047838359023444355, 0.003923159558326006, 0.0022548227570950985, -0.034592725336551666, -0.018065089359879494, -0.004638871178030968, 0.018953101709485054, 0.009768136776983738, 0.011802613735198975, -0.0008540492854081094, 0.009509685449302197, 0.0347517728805542, -0.023101577535271645, -0.0008105598972178996, 0.202307790517807, -0.005434106104075909, 0.026945214718580246, 0.022213565185666084, 0.011623685248196125, 0.016143271699547768, -0.005175654776394367, -0.01387685164809227, -0.011464638635516167, 0.004645498003810644, -0.025831885635852814, 0.011146544478833675, -0.018939848989248276, 0.0013187647564336658, -0.0019781470764428377, -0.00963559839874506, 0.015639621764421463, -0.0316503532230854, -0.023379910737276077, 0.0036249463446438313, 0.00570581154897809, -0.00018017043475992978, -0.028204336762428284, -0.009244607761502266, 0.012491817586123943, 0.018303660675883293, -0.020145954564213753, 0.0017329497495666146, 0.030802104622125626, 0.0033548979554325342, -0.009741629473865032, 0.008210801519453526, 0.0027733822353184223, -0.0061763254925608635, -0.026110216975212097, 0.0019864309579133987, 0.031809400767087936, -0.009025917388498783, 0.021325552836060524, -0.015215497463941574, -0.015281766653060913, -0.008747585117816925, -0.013061735779047012, -0.005208789370954037, 0.017932550981640816, 0.0163023192435503, -0.008747585117816925, -0.013008720241487026, -0.015533591620624065, 0.023446179926395416, -0.0006266618147492409, -0.013200901448726654, 0.012942450121045113, 0.009344011545181274, -0.0052419244311749935, -0.007283027749508619, 0.004920517094433308, 0.013081616722047329, -0.0011000751983374357, 0.021723171696066856, -0.009947065263986588, 0.010139246471226215, -0.00032285714405588806, 0.03960270434617996, 0.003674648702144623, 0.005891366396099329, -0.028840525075793266, 0.027197038754820824, -0.01707104593515396, -0.010059723630547523, -0.005825096741318703, 0.011325472965836525, 0.007011322304606438, 0.00453615328297019, -0.0159444622695446, -0.02335340343415737, 0.020265240222215652, 0.01328042522072792, 0.014035898260772228, 0.03191543370485306, -0.0031941940542310476, -0.02567283809185028, -0.012584595009684563, -0.018953101709485054, -0.025633076205849648, -0.022863008081912994, 0.03533494472503662, -0.028654970228672028, -0.011133290827274323, 0.0009451700025238097, -0.005984143819659948, -0.04376443475484848, -0.000801861984655261, -0.019523020833730698, 0.018250644207000732, 0.03949667513370514, -0.007846319116652012, 0.019827861338853836, -0.022863008081912994, 0.012047811411321163, -0.013638281263411045, 0.038038741797208786, 0.010026589035987854, 0.00999345351010561, 0.010212143883109093, -0.004244566895067692, 0.010364563204348087, 0.0026391863357275724, 0.00647785235196352, -0.004383733030408621, 0.014486531727015972, -0.026282519102096558, 0.005808529444038868, -0.004691886715590954, -0.0017959058750420809, 0.011809240095317364, -0.002819770947098732, -0.031173214316368103, 0.012670745141804218, -0.002070924500003457, -0.020835157483816147, -0.02152436226606369, -0.020888173952698708, -0.0044301217421889305, -0.0018853697692975402, -0.01106039434671402, -0.034062568098306656, 0.022160550579428673, -0.02929115854203701, -0.0037144103553146124, 0.012790030799806118, -0.05540137365460396, 0.013611773028969765, -0.0010959332576021552, -0.015679383650422096, -0.02442697063088417, -0.005593153182417154, -0.011895391158759594, -0.00824393704533577, 0.002046073554083705, -0.0005591496592387557, -0.003293598536401987, -0.004343971610069275, 0.011159798130393028, 0.009562701918184757, -0.017508424818515778, -0.002682261634618044, -0.004072266165167093, 0.016262557357549667, -0.008316833525896072, -0.017336124554276466, -0.00481779919937253, -0.003906592261046171, -0.037985727190971375, 0.011126663535833359, -0.010258532129228115, -0.008038501255214214, -0.0228895153850317, 0.008807227946817875, 0.0018770861206576228, -0.02626926451921463, 0.01053023710846901, 0.0046819462440907955, 0.007627629674971104, -0.013499114662408829, -0.02929115854203701, -0.16646920144557953, 0.005675990134477615, -0.019735082983970642, -0.050258856266736984, 0.038277313113212585, 0.0010951049625873566, 0.006073607597500086, 0.012054437771439552, -0.004227999597787857, -0.020066430792212486, -0.016752950847148895, 0.01797231286764145, -0.010291666723787785, 0.0008167726919054985, -0.007925842888653278, 0.003459272440522909, -0.016620412468910217, 0.012445428408682346, 0.03422161564230919, 0.015507083386182785, 0.037216998636722565, -0.01790604181587696, 0.02087491936981678, 0.020609842613339424, 0.006013965234160423, 0.015758907422423363, -0.007395686116069555, 0.008349968120455742, -0.009602462872862816, -0.03782667964696884, 0.017150569707155228, 0.03742906451225281, 0.01915191113948822, -0.016567396000027657, 0.03560002148151398, 0.017654217779636383, 0.014208199456334114, -0.032763682305812836, -0.015586607158184052, -0.0034692129120230675, 0.021444838494062424, 0.004824426025152206, 0.00040113809518516064, -0.012399040162563324, -0.01447327807545662, 0.0073625510558485985, 0.013147885911166668, -0.02857544645667076, 0.022253327071666718, -0.008489133790135384, 0.037031445652246475, -0.01760120317339897, 0.003701156470924616, -0.003989429213106632, 0.021855710074305534, -0.02194848656654358, -0.008409610949456692, 0.012465309351682663, -0.017587948590517044, 0.010854958556592464, 0.02681267447769642, -0.010424206033349037, -0.013008720241487026, 0.03557351604104042, 0.005106071941554546, -0.02679942175745964, -0.0016401723260059953, 0.01524200476706028, -0.02483784221112728, 0.010132620111107826, 0.01744215562939644, -0.027541641145944595, 0.008674688637256622, 0.002234941814094782, -0.007216758094727993, 0.02128579095005989, -0.003515601623803377, 0.006497733294963837, -0.00766739109531045, 0.004678633064031601, -0.012147215195000172, -0.01375756599009037, -0.0012897718697786331, -0.01642160303890705, -0.02508966624736786, -0.012352650985121727, 0.008025246672332287, 0.014446769841015339, -0.01061638817191124, -0.015560098923742771, -0.004436749033629894, -0.025951171293854713, -0.02958274446427822, -0.009324130602180958, -0.004539466928690672, 0.02947671338915825, 0.01277677621692419, -0.014632324688136578, -0.0033863759599626064, -0.021670155227184296, 0.026362041011452675, -0.0032124181743711233, -0.006156444549560547, -0.005682616960257292, 0.02258467487990856, 0.012279754504561424, -0.006580570247024298, 0.01005309633910656, 0.04079555720090866, 0.011968287639319897, -0.018396437168121338, 0.017627710476517677, 0.022147295996546745, 0.030643057078123093, 0.004539466928690672, 0.02923814207315445, -0.0036680216435343027, -0.01428772322833538, 0.003833695547655225, 0.012173723429441452, 0.03883397951722145, -0.014380500651896, -0.017031284049153328, 0.007435447536408901, 0.0010719106066972017, -0.0006494419649243355, -0.13147886097431183, -0.03944365680217743, -0.0025298416148871183, 0.011809240095317364, 0.017296362668275833, 0.016328826546669006, -0.008296952582895756, 0.02710426039993763, -0.001117470907047391, 0.028628461062908173, -0.002702142344787717, -0.0053545827977359295, -0.0001392696867696941, -0.017720486968755722, -0.0023028680589050055, -0.017481917515397072, -0.0006051241653040051, 0.0012102483306080103, -0.022518405690789223, 0.013943120837211609, 0.01485764142125845, -0.0008283698698505759, 0.008833736181259155, -0.0024552883114665747, -0.0031378648709505796, -0.004761470016092062, -0.043552372604608536, 0.020198971033096313, 0.0031925374642014503, 0.021670155227184296, -0.01819762960076332, -0.002044416731223464, 0.011279083788394928, -0.013982882723212242, 0.02455950900912285, 0.0016219482058659196, -0.01565287634730339, -0.017389139160513878, 0.027859734371304512, -0.005967576522380114, 0.011458011344075203, 0.005331388209015131, -0.010125992819666862, -0.02793925814330578, 0.02027849294245243, 0.008164413273334503, -0.02656085044145584, 0.00024043435405474156, -0.0006730505265295506, -0.017455410212278366, -0.05858231708407402, -0.01055674534291029, -0.03154432401061058, -0.00251990114338696, 0.01708430051803589, 0.01248519029468298, 0.025951171293854713, 0.005089504178613424, 0.004652124829590321, 0.0085090147331357, -0.015281766653060913, -0.007514971308410168, -0.018595246598124504, 0.017932550981640816, 0.00791258830577135, -0.00023857051564846188, -0.017945803701877594, -0.005944381933659315, 0.020649602636694908, -0.022995546460151672, -0.015414305962622166, 0.044851258397102356, -0.01962905190885067, 0.023684751242399216, -0.01366478856652975, 0.029900837689638138, 0.00046512967674061656, 0.019297704100608826, 0.01067603100091219, 0.009628971107304096, -0.02674640528857708, 0.00026590671041049063, 0.007004695478826761, -0.032233528792858124, 0.008118024095892906, 0.03925810381770134, 0.007528224959969521, 0.0034526456147432327, 0.024228161200881004, -0.009112068451941013, -0.018780801445245743, 0.020079685375094414, 0.021908726543188095, 0.011020632460713387, 0.028151320293545723, 0.0022796737030148506, 0.006689914967864752, 0.00251327408477664, 0.005116011947393417, 0.003258806886151433, -0.03705795481801033, -0.0006738788797520101, -0.02094119042158127, 0.003378092311322689, -0.023287132382392883, -0.020715873688459396, 0.006898663938045502, -0.01378407422453165, 0.02307507023215294, -0.024095622822642326, -0.009774764068424702, -0.008263817988336086, -0.0345132015645504, -0.006388388108462095, 0.010192262940108776, -0.014221453107893467, -0.019257942214608192, -0.030086392536759377, 0.006000711116939783, -0.006557375658303499, -0.0027187098748981953, -0.005066310055553913, 0.010006708092987537, -0.015003434382379055, 0.03848937526345253, 0.003565303748473525, -0.029900837689638138, -0.005775394383817911, -0.028495922684669495, 0.009675359353423119, 0.0016898744506761432, -0.02360522747039795, 0.013247290626168251, 0.0076408833265304565, 0.014049152843654156, 0.009251234121620655, -0.016925252974033356, 0.012239992618560791, -0.011511027812957764, 0.010808569379150867, 0.03467224910855293, 0.059218503534793854, -0.009821153245866299, -0.021802693605422974, 0.017402393743395805, -0.03231305256485939, -0.0009493118268437684, 0.0020261926110833883, -0.019416989758610725, 0.0028015468269586563, -0.0054109119810163975, 0.021988248452544212, 0.016408350318670273, 0.009953691624104977, 0.008548776619136333, -0.008084889501333237, 0.014181692153215408, -0.012372531928122044, 0.0031097005121409893, -0.014632324688136578, -0.018369929865002632, 0.002852905774489045, 0.008615046739578247, -0.012246619910001755, 0.0006129936664365232, -0.006060353945940733, -0.0045030186884105206, -0.03883397951722145, -0.017216838896274567, 0.0025646330323070288, 0.0009136919397860765, 0.0020593274384737015, -0.01607700251042843, -0.015082958154380322, 0.028548939153552055, 0.00763425650075078, 0.03846286982297897, -0.0007310364162549376, -0.016739698126912117, 0.01005309633910656, -0.011511027812957764, 0.03000686876475811, 0.030404487624764442, 0.03149130940437317, -0.031093690544366837, 0.02082190476357937, 0.04471871629357338, -0.0048211123794317245, 0.009774764068424702, -0.02823084406554699, -0.026759659871459007, 0.01040432509034872, 0.025155935436487198, -0.00954282097518444, -0.02394982986152172, 0.01595771685242653, -0.013929867185652256, 0.00502654816955328, 0.0056892442516982555, -0.013386456295847893, -0.013625027611851692, -0.007216758094727993, 0.001644314150325954, -0.00498015945777297, 0.004956965334713459, -0.013081616722047329, -0.024214906617999077, 0.007813184522092342, -0.01514922734349966, -0.017574694007635117, -0.007992112077772617, 0.04193539544939995, 0.005937755107879639, -0.005626287776976824, 0.03019242361187935, -0.0033913461957126856, -0.019006118178367615, 0.01654088869690895, -0.01797231286764145, -0.008104770444333553, -0.01677946001291275, 0.020503809675574303, -0.005122639238834381, 0.023910067975521088, 0.05068298056721687, -0.013731058686971664, 0.02870798483490944, 0.005510316230356693, 0.027117514982819557, -0.002982131438329816, 0.003730977885425091, 0.005854918155819178, -0.005500375758856535, -0.00945666991174221, -0.012266500853002071, -0.00856865756213665, 0.015692638233304024, -0.04766108840703964, 0.01968206837773323, 0.011928525753319263, 0.012206858024001122, 0.05953659862279892, -0.0016467992682009935, -0.013797327876091003, -0.01141162309795618, 0.002266419818624854, 0.01655414327979088, 0.012763522565364838, 0.004940397571772337, 0.020305002108216286, -0.013810582458972931, 0.02217380329966545, -0.0005997397820465267, -0.010755553841590881, -0.022438881918787956, -0.015692638233304024, -0.0025828571524471045, -0.02751513198018074, 0.03896651789546013, -0.023737765848636627, 0.023234117776155472, 0.01742890104651451, -0.007077591959387064, 0.011007378809154034, -0.0026441565714776516, -0.03363844379782677, 0.015215497463941574, 0.020782142877578735, 0.013207528740167618, -0.01526851300150156, -0.029211634770035744, -0.006845648400485516, 0.010828450322151184, -0.05116012319922447, -0.020954443141818047, -0.003177626756951213, 0.00530819408595562, 0.01643485762178898, -0.010623014532029629, 0.006013965234160423, -0.004516272339969873, 0.02218705788254738, -0.011159798130393028, -0.025818631052970886, -0.0718892514705658, -0.02793925814330578, -0.0003969962417613715, -0.011935153044760227, -0.00913194939494133, -0.03438066318631172], "0e222bbb-583f-4ab9-84e6-79c3709b03e8": [0.02501779794692993, 0.0005197769496589899, 0.00952895823866129, -0.03592369332909584, 0.005682437680661678, 0.020058080554008484, -0.009707069955766201, -0.016701366752386093, -0.026470091193914413, -0.04496627300977707, -0.007097053341567516, 0.014317414723336697, 0.00026395590975880623, 0.0031255120411515236, -0.0014231783570721745, -0.00457609212026, 0.030470745638012886, -0.0043568783439695835, -0.017523419111967087, -0.011618342250585556, 0.0025312367361038923, 0.002423342317342758, 0.008645252324640751, 0.0006529323291033506, -0.010508570820093155, 0.024182043969631195, 0.021345963701605797, -0.024867087602615356, -0.006172243971377611, 0.01265275850892067, 0.013892686925828457, -0.00224523083306849, -0.005929053761065006, -0.004459634888917208, -0.020578714087605476, -0.001712609431706369, 0.0006961757317185402, -0.006682601757347584, 0.03074476309120655, -0.009028876200318336, 0.01369402464479208, 0.006881264504045248, 0.004706250503659248, -0.03723897784948349, -0.015276475809514523, 0.013796781189739704, 0.012892523780465126, -0.011015503667294979, -0.0026202923618257046, 0.013652921654284, 0.008391786366701126, 0.023072274401783943, -0.006620947737246752, -0.010672981850802898, -0.006480514071881771, 0.007055950816720724, -0.021592579782009125, 0.005213182885199785, 0.0139063885435462, -0.03469061478972435, 0.022866761311888695, 0.028223803266882896, -0.0212363563477993, 0.0005099294357933104, -0.022524237632751465, -0.018112557008862495, -0.012289685197174549, 0.0031717526726424694, 0.0002733752771746367, -0.0113785769790411, 0.023085974156856537, 0.01915382407605648, 0.01012494694441557, -0.015783408656716347, 0.03304651007056236, 3.620563438744284e-05, -0.007419023662805557, 0.002916573779657483, 0.00228290818631649, -0.014153003692626953, -0.028018290176987648, -0.023168180137872696, -0.02544252574443817, 0.015180569142103195, 0.005853699054569006, -0.018742797896265984, 0.00866580381989479, 0.000545466085895896, -0.01897571235895157, -0.008713756687939167, -0.008104067295789719, 0.02360660769045353, -0.010515421628952026, 0.02144186943769455, -8.924300345825031e-06, 0.012830869294703007, -0.024908190593123436, 0.009426201693713665, 0.011954013258218765, -0.004432233050465584, 0.002687084022909403, 0.024264249950647354, -0.019852567464113235, -0.011830705218017101, -0.0258946530520916, 0.003331025131046772, 0.017468616366386414, 0.011104559525847435, 0.03299170732498169, 0.01490655168890953, -0.0004444221267476678, 0.03282729536294937, 0.011734799481928349, -0.029155461117625237, 0.0018753072945401073, -0.04219869524240494, -0.03436179459095001, -0.012330787256360054, -0.009590612724423409, -0.010727785527706146, 0.02522331103682518, 0.003962978255003691, 0.01437221746891737, -0.001200539176352322, 0.006137991789728403, -0.0020431429147720337, -0.017468616366386414, -0.03019672818481922, -0.005374168045818806, -0.027004424482584, 0.003344726050272584, -0.005867399740964174, 0.01949634589254856, -0.009604313410818577, -0.01261165551841259, 0.017605625092983246, -0.012406142428517342, -0.0042164442129433155, -0.007069651503115892, -0.024908190593123436, 0.02374361641705036, 0.0018376298248767853, 0.005309089086949825, -0.0036204562056809664, -0.011597790755331516, 0.031649019569158554, 0.030306335538625717, -0.00691209128126502, 0.005983856972306967, 0.012097872793674469, 0.010351011529564857, -0.001686920179054141, 0.005723540671169758, -0.007795797660946846, 0.0038670720532536507, 0.007871152833104134, -0.014098200015723705, 0.03660873696208, 0.03362194821238518, -0.017865940928459167, 0.021496672183275223, 0.017002785578370094, -0.0019746385514736176, -0.007097053341567516, 0.006737405434250832, 0.02127745933830738, 0.05436507239937782, 0.007213510572910309, -0.010227703489363194, -0.02372991479933262, -0.0020243043545633554, 0.027867579832673073, -0.017934445291757584, 0.0004932315205223858, -0.014440721832215786, -0.006610671989619732, 0.006459962576627731, 0.025702841579914093, 0.00048466844600625336, -0.0030912598595023155, 0.013235045596957207, 0.0078026484698057175, 0.009049427695572376, 0.052803173661231995, -0.005021370481699705, -0.01494765467941761, 0.023250384256243706, -0.00685728807002306, 0.018413975834846497, 0.022236520424485207, 0.022770853713154793, 0.017208298668265343, 0.007699891924858093, -0.012789767235517502, -0.6352821588516235, -0.012940476648509502, 0.022072110325098038, -0.006302402354776859, -0.016742469742894173, -0.012721262872219086, 0.015386082231998444, 0.01986626908183098, -0.02077052742242813, 0.045377299189567566, -0.014728440903127193, 0.010625028982758522, 0.013515912927687168, -0.011474482715129852, -0.005062473472207785, -0.004928889684379101, 0.009494706057012081, -0.04110262542963028, -0.01919492520391941, -0.011974564753472805, -0.002363400999456644, 0.016509555280208588, 0.009741322137415409, 0.012851420789957047, -0.01012494694441557, 0.015386082231998444, 0.005853699054569006, -0.012193778529763222, 0.02220911905169487, 0.02229132317006588, -0.02327778749167919, 0.01029620785266161, 0.003355001797899604, -0.0012176652671769261, 0.04378799721598625, -0.006617522798478603, -0.006312678102403879, -0.001751999370753765, 0.01239929161965847, 0.03521125018596649, -0.021756989881396294, 0.00593590410426259, 0.015728604048490524, 0.01893460936844349, 0.017865940928459167, -0.0026083041448146105, 0.021880296990275383, -0.0027247616089880466, 0.00478845601901412, -0.008124618791043758, 0.005435822065919638, -0.0025106852408498526, -0.0048535349778831005, -0.01787964254617691, -0.0008340407512150705, 0.0005167798954062164, 0.009611164219677448, 0.015810810029506683, -0.0281141959130764, -0.005302238743752241, -0.0025997410994023085, -0.008802812546491623, 0.009076829999685287, -0.00904257781803608, -0.032251860946416855, 0.02008548192679882, -0.020359499379992485, -0.0010078706545755267, 0.018756497651338577, -0.014851748943328857, 0.013193942606449127, 0.0015413484070450068, -0.03490982949733734, -0.01826326549053192, 0.020619817078113556, 0.038198038935661316, 0.010398964397609234, -0.02251053787767887, -0.007282014936208725, 0.019564850255846977, -0.008001310750842094, -0.01025510486215353, -0.00107723125256598, -0.007460126653313637, 0.017304204404354095, -0.0016560932854190469, -0.046007540076971054, 0.00234627490863204, -0.003986954689025879, 0.0069634695537388325, -0.003829394467175007, 0.03329312801361084, -0.012200629338622093, -0.02510000392794609, -0.0040588839910924435, 0.021921399980783463, 0.025291815400123596, -0.0012091022217646241, 0.00861785002052784, -0.030635155737400055, -0.014207807369530201, -0.05557074770331383, 0.03490982949733734, -0.015701202675700188, 0.01681097410619259, -0.0036307319533079863, -0.02008548192679882, 0.00539129413664341, 0.042609721422195435, -0.006052361335605383, 0.005285112652927637, -0.01422150805592537, -0.013872136361896992, -0.009433052502572536, -0.005538578610867262, -0.028717033565044403, -0.008912418968975544, 0.00459664361551404, 0.007569733541458845, -0.0031666147988289595, 0.007953357882797718, 0.031237995252013206, -0.022537939250469208, -0.007049100007861853, 0.0031905912328511477, 0.01935933716595173, 0.010912747122347355, -0.011981415562331676, -0.02552472986280918, 0.0010361287277191877, -0.00215960037894547, 0.0018393425270915031, 0.021839193999767303, -0.007987610064446926, 0.014070798642933369, 0.010378412902355194, 0.03005971945822239, -0.017811138182878494, -0.003894473658874631, 0.008823363110423088, -0.007823199965059757, 0.002902872860431671, 0.009878330864012241, -0.010570225305855274, -0.000576293037738651, -0.00576464319601655, -0.028415614739060402, -0.019030515104532242, -0.014481824822723866, -0.02372991479933262, 0.022072110325098038, -0.003416655818000436, -0.027209937572479248, 0.005819446872919798, 0.00020294421119615436, 0.0044185323640704155, 0.014194106683135033, -0.019564850255846977, -0.024442361667752266, -0.014194106683135033, -0.007624536752700806, 0.030936576426029205, -0.014509226195514202, 0.001676644547842443, 0.004781605210155249, 0.0018479055725038052, -0.03315611928701401, 0.028634829446673393, 0.013317250646650791, -0.03469061478972435, -0.003997230436652899, -0.020373200997710228, -0.010097544640302658, 0.006185945123434067, 0.010481169447302818, 0.006446261890232563, -0.027004424482584, 0.004904913250356913, -0.01830436848104, -0.012173227034509182, -0.017084991559386253, 0.010926447808742523, 0.008172571659088135, -0.012734963558614254, 0.039431117475032806, -0.024045035243034363, 0.027401750907301903, 0.0021236357279121876, 0.006117440760135651, -0.0015730317682027817, 0.0054906257428228855, 0.01029620785266161, -0.006778507959097624, -0.0013906387612223625, 0.005997558124363422, -0.00234627490863204, 0.005997558124363422, 0.01297472883015871, 0.0035930543672293425, 0.028908846899867058, 0.0025192482862621546, 0.026182372123003006, 0.018194761127233505, -0.027100330218672752, 0.0013546739937737584, -0.025935756042599678, 0.0018581812037155032, -0.03019672818481922, 0.017975548282265663, 0.004336326848715544, 0.010138647630810738, -0.016660263761878014, -0.01642734929919243, -0.025935756042599678, 0.0075560323894023895, 0.021852895617485046, -0.025195909664034843, 0.0014017707435414195, -0.03575928509235382, 0.00993313454091549, -0.0009462166926823556, -0.00586054939776659, 0.0013015831355005503, 0.0047576287761330605, 0.0005861405516043305, 0.01490655168890953, 0.008974073454737663, -0.0030672834254801273, 0.011960864067077637, -0.04263712465763092, -0.011351174674928188, 0.00041958928341045976, 0.0259905606508255, 0.005768068600445986, 0.022072110325098038, -0.016824673861265182, 0.02326408587396145, -0.03244367241859436, 0.0007621111581102014, 0.010700383223593235, 0.02212691307067871, 0.005329640582203865, 0.014070798642933369, -0.02505890093743801, 0.05214552953839302, 0.02415464259684086, 0.014481824822723866, 0.0027196237351745367, -0.0116799958050251, 0.03748559579253197, 0.012193778529763222, 0.02190769836306572, -0.015618997626006603, 0.006227047648280859, 0.007090202998369932, -0.001133747398853302, -0.007309416774660349, 0.002894309815019369, 0.04595273360610008, 0.024045035243034363, -0.000433504261309281, 0.016879478469491005, 0.02858002483844757, 0.00229832180775702, -0.006984021048992872, 0.00458636786788702, -0.02245573326945305, -0.022236520424485207, -0.01402969565242529, -0.020825330168008804, -0.014851748943328857, -0.04170546308159828, 0.0019181225216016173, -0.013831033371388912, -0.011536137200891972, -0.014810645952820778, -0.014427021145820618, 0.018701694905757904, 0.000213112827623263, 0.017728932201862335, -0.022524237632751465, -0.024593070149421692, -0.004391130525618792, 0.023318888619542122, -0.009254940785467625, -0.013899537734687328, -0.02463417313992977, -0.014933953993022442, -0.011426529847085476, 0.014207807369530201, -0.013872136361896992, 0.002889171941205859, -0.01727680303156376, -0.01513946708291769, 0.006692877504974604, 0.012481496669352055, 0.021263757720589638, -0.010378412902355194, -0.010967550799250603, -0.019030515104532242, -0.02020879089832306, -0.007158707361668348, -0.018235864117741585, -0.008289029821753502, 0.04622675105929375, 0.0048535349778831005, 0.00957691203802824, -0.013282998465001583, -0.01923602819442749, -0.016578059643507004, 0.003492010524496436, -0.003812268376350403, -0.02641528658568859, -0.0046959747560322285, 0.02178439125418663, -0.014111901633441448, 0.02033209800720215, 0.004966567270457745, 0.013358352705836296, -0.009254940785467625, 0.010946999303996563, -0.03814323619008064, -0.014838047325611115, 0.012981578707695007, 0.07831420004367828, -0.0078026484698057175, -2.8950457817700226e-06, 0.022743452340364456, 0.010351011529564857, 0.015468288213014603, 0.00084388826508075, -0.009597462601959705, 0.00991258304566145, -0.006346930284053087, -0.011248418129980564, 0.016920581459999084, 0.013063784688711166, 0.011056605726480484, 0.01656435802578926, 0.013625520281493664, -0.0026528318412601948, -0.028607426211237907, -0.018633190542459488, -0.025853551924228668, 0.027949785813689232, 0.000546322378795594, 0.03211485221982002, 0.02105824463069439, 0.009501556865870953, 0.013440558686852455, 0.04296594485640526, -0.0007728149648755789, 0.007734144106507301, -0.0349920354783535, -8.712900307727978e-05, 0.011063456535339355, 0.014290012419223785, 0.018715394660830498, -0.015002458356320858, 0.039047494530677795, 0.014769542962312698, 0.025374021381139755, 0.010946999303996563, -0.01818106137216091, 0.019647054374217987, 0.011563538573682308, -0.003990379627794027, -0.020455406978726387, -0.001125184353441, 0.005220033228397369, -0.012049919925630093, 0.01864689029753208, -0.005103575997054577, -0.021811792626976967, 0.017016487196087837, -0.011584090068936348, -0.0376226045191288, -0.012296535074710846, -0.00431920075789094, 0.016619160771369934, -0.012447244487702847, -0.006799058988690376, -0.006398308556526899, -0.027579860761761665, -0.013474810868501663, -0.02356550469994545, -0.019715558737516403, -0.017098691314458847, -0.02029099501669407, -0.020277295261621475, -0.016975384205579758, 0.009850929491221905, -0.023702513426542282, -0.026894817128777504, 0.0078026484698057175, -0.039979152381420135, -0.018783899024128914, -0.004082860890775919, 0.017290504649281502, 0.013926939107477665, 0.0064051588997244835, -0.004771329928189516, -0.012447244487702847, -0.004439083393663168, -0.0113785769790411, -0.0198251660913229, -0.018318070098757744, -0.03485502675175667, -0.005244010128080845, 0.021551476791501045, -0.002385664964094758, -0.013276147656142712, -0.0013658059760928154, 0.02678520977497101, -0.0001540278026368469, 0.00917273573577404, -0.00957691203802824, -0.02322298288345337, 0.014139303006231785, 0.005048772320151329, 0.0016458176542073488, 0.020606115460395813, 0.010474318638443947, -0.018742797896265984, -0.0053159394301474094, -0.018441377207636833, 0.0048535349778831005, -0.015536792576313019, -0.011474482715129852, 0.031703826040029526, -0.005158379208296537, 0.0038328198716044426, -0.03891048580408096, 0.008713756687939167, 0.04293854162096977, -0.027415450662374496, 0.011214165948331356, 0.00224523083306849, 0.007891704328358173, 0.01664656400680542, 0.01783853955566883, 0.004367154091596603, 0.029456881806254387, -0.04143144562840462, -0.01919492520391941, -0.05167970061302185, -0.006391458213329315, 0.04123963415622711, -0.014714740216732025, 0.016660263761878014, 0.004545265343040228, -0.02942948043346405, -0.01609852723777294, -0.020263593643903732, -0.01778373494744301, 0.016632862389087677, -0.003925300668925047, 0.006429135799407959, -0.008597299456596375, -0.007891704328358173, -0.018756497651338577, -0.027579860761761665, -0.021798092871904373, -0.0035074239131063223, -0.014769542962312698, -0.01830436848104, 0.0014137590769678354, -0.010419515892863274, -0.016550656408071518, -0.03507424145936966, -0.007206660229712725, -0.0005467505543492734, 0.024976694956421852, 0.018879806622862816, -0.002938837744295597, 0.012371890246868134, 0.0041821920312941074, -0.0018170785624533892, -0.017646726220846176, -0.018112557008862495, -0.007014847826212645, -0.013399455696344376, 0.03359454497694969, 0.022044707089662552, 0.031018780544400215, -0.012296535074710846, 0.04143144562840462, 0.02246943488717079, 0.012515748851001263, -0.011138811707496643, 0.004411681555211544, -0.0012108148075640202, 0.0012836006935685873, 0.00239422800950706, 0.0072272117249667645, 0.0240724366158247, -0.004983693361282349, 0.0021133599802851677, 0.02114045061171055, 0.0227571539580822, 0.0032916353084146976, -0.000555741717107594, -0.012967878021299839, -0.030415942892432213, -0.013235045596957207, -6.16004181210883e-05, -0.01373512763530016, 0.024524565786123276, -0.026894817128777504, -0.0009873192757368088, 0.046610377728939056, 0.0006349499453790486, -0.0011697121663019061, 0.007836900651454926, 0.012769215740263462, -0.013372054323554039, -0.000542897148989141, 0.01099495217204094, 0.014550329186022282, -0.02160627953708172, 0.006326379254460335, -0.029566489160060883, 0.013008981011807919, 0.018838703632354736, 0.030799567699432373, 0.022688649594783783, -0.011330623179674149, 0.018783899024128914, -0.021222654730081558, 0.032169654965400696, -0.00953580904752016, -0.019249729812145233, 0.006374332122504711, -0.004545265343040228, -0.010590776801109314, -0.015125766396522522, 0.002312022726982832, 0.0037506145890802145, -0.03044334426522255, -0.00019106297986581922, 0.005449523217976093, 0.007693041115999222, -0.01864689029753208, -0.024825984612107277, -0.001150017138570547, -0.005374168045818806, 0.030963977798819542, 0.01384473405778408, 0.013604968786239624, 0.011234717443585396, 0.01244039461016655, -0.009179586544632912, 0.006497640162706375, -0.0005818590288981795, 0.0020174537785351276, 0.023634009063243866, 0.0139063885435462, -0.009453603997826576, -0.00011977562098763883, 0.005675587337464094, 0.013187091797590256, -0.006706578191369772, -0.014070798642933369, 0.010960699990391731, 0.003310473868623376, -0.0036375822965055704, -0.036279916763305664, 0.0038533711340278387, -0.01992107182741165, 0.022181715816259384, -0.004846684634685516, -0.007004572544246912, -0.011303221806883812, -0.011981415562331676, -0.01246094610542059, 0.019647054374217987, 0.02344219759106636, 0.00919328723102808, 4.1664574382593855e-05, -0.01609852723777294, 0.004555541090667248, -0.0037917171139270067, -0.014536628499627113, 0.0036958111450076103, -0.007302566431462765, 0.019975876435637474, -0.019729260355234146, 0.013741977512836456, 0.014728440903127193, 0.016975384205579758, -0.014632534235715866, -0.009412501007318497, -0.012173227034509182, 0.029922710731625557, -0.005809171125292778, -0.00932344514876604, -0.019427841529250145, 0.007514929864555597, -0.005370743107050657, -0.005977006629109383, -0.018194761127233505, 0.005178930703550577, -0.0009230964351445436, -0.021044544875621796, 0.011858107522130013, -0.006158543284982443, 0.007288865279406309, 0.015865612775087357, -0.0033121865708380938, 0.00796020869165659, -0.017084991559386253, 0.006617522798478603, 0.003442344954237342, -0.008138319477438927, 0.0025243861600756645, -0.030963977798819542, 0.003952702507376671, 0.01498875766992569, -0.002402791054919362, -0.00791910570114851, -0.005100150592625141, 0.021798092871904373, -0.009919433854520321, 0.019852567464113235, 0.01893460936844349, 0.0016304041491821408, -0.03838985040783882, 0.022729750722646713, -0.012502048164606094, -0.005997558124363422, 0.033868562430143356, -0.017043888568878174, -0.01571490429341793, -0.011632042936980724, 0.011817004531621933, 0.03227926045656204, -0.015728604048490524, -0.0054118456318974495, 0.027703169733285904, 0.010076993145048618, 0.01246094610542059, 0.008713756687939167, -0.03978734090924263, 0.03685535490512848, -0.02896364964544773, 0.027072928845882416, 0.0094056511297822, 0.020099183544516563, -0.011775902472436428, -0.012577403336763382, 0.00239422800950706, 0.0032659461721777916, -0.03765000402927399, -0.00029242804157547653, 0.0031392129603773355, 0.004497312009334564, 1.9213335690437816e-05, -0.0007043106015771627, -0.02530551701784134, -0.020195089280605316, -0.025976859033107758, 0.02208581008017063, 0.011960864067077637, 0.012885672971606255, 0.0012125273933634162, 0.03334793075919151, 0.0066243731416761875, 0.011810154654085636, -0.0001999471423914656, -0.003911599982529879, 0.0019557999912649393, 0.015509390272200108, -0.03197784349322319, -0.018030351027846336, 0.0023479873780161142, 0.0422809012234211, 0.006874414160847664, -0.03392336517572403, -0.01783853955566883, -0.023291487246751785, -0.0343891978263855, -0.01915382407605648, -0.0005313370493240654, 0.019003113731741905, 0.014659936539828777, 0.0070765018463134766, 0.0002288474206579849, 0.01966075599193573, -0.004213019274175167, 0.020647218450903893, -0.0012125273933634162, -0.0037643155083060265, 0.02627827785909176, 0.008419187739491463, -0.0072272117249667645, 0.0024730078876018524, -0.024045035243034363, 0.0031871660612523556, 0.02462047152221203, 0.009111082181334496, -0.015221672132611275, 0.015372381545603275, 0.007501229178160429, -0.010090694762766361, 0.0281141959130764, -0.009570061229169369, -0.01048802025616169, 0.013680323958396912, 0.004980267956852913, -0.03282729536294937, -0.004922039341181517, 0.010563374496996403, -0.004990543704479933, 0.011056605726480484, -0.007528631016612053, -0.02072942443192005, 0.007480677682906389, 0.014290012419223785, -0.006716853938996792, -0.0222502201795578, 0.014769542962312698, 0.0004731083463411778, 0.03532085567712784, -0.014235208742320538, -0.009282343089580536, 0.021126748993992805, 0.01205676980316639, 0.01846877858042717, -0.022647546604275703, 0.0035690779332071543, -0.018016651272773743, 0.001220234204083681, 0.009583761915564537, -0.0054460978135466576, -0.011179913766682148, -0.009097380563616753, 0.027442852035164833, -0.024894488975405693, 0.018030351027846336, -0.012673309072852135, -0.01080999057739973, -0.01114566158503294, 0.01118676457554102, 0.061544328927993774, -0.02505890093743801, 0.015660099685192108, -0.005610508378595114, 0.01479694526642561, 0.0029885033145546913, -0.02479858323931694, -0.017016487196087837, -0.010440066456794739, -0.0030570076778531075, 0.014646234922111034, -0.0024798584636300802, -0.0014180405996739864, -0.0012219467898830771, 0.006850437726825476, -0.016208134591579437, -0.016112228855490685, 0.22359828650951385, -0.020112885162234306, 0.005100150592625141, 0.03353974223136902, -0.0037506145890802145, 0.011426529847085476, 0.006079763174057007, 0.01135802548378706, -0.009734471328556538, 0.017687829211354256, -0.029182864353060722, 0.0008837064378894866, -0.019386738538742065, -0.004463059827685356, 0.023318888619542122, 8.707548113306984e-05, -0.014838047325611115, -0.0465281717479229, -0.00774784479290247, -0.007699891924858093, 0.00655929371714592, 0.010556524619460106, -0.04411681741476059, -0.017002785578370094, 0.014522927813231945, -0.009857779368758202, 0.0008648677612654865, 0.018057752400636673, 0.023085974156856537, 0.010666131041944027, -0.02072942443192005, 0.02429165132343769, 0.00343378190882504, -0.007610836066305637, -0.03699236363172531, -0.015427185222506523, 0.04088341072201729, -0.017304204404354095, 0.03455360606312752, 0.005017945542931557, -0.014536628499627113, 0.0007556888740509748, 0.0015062399907037616, -0.014975056052207947, -0.0049323150888085365, 0.005161804612725973, -0.009816677309572697, 0.003932151012122631, -0.007597135379910469, 0.011666295118629932, -0.0017879641382023692, -0.02152407541871071, 0.03756779804825783, 0.027497656643390656, -0.0019557999912649393, -0.01187180820852518, -0.00883021391928196, 0.015523090958595276, -0.002818955108523369, 0.029018452391028404, -0.005189206451177597, 0.044993672519922256, -0.006117440760135651, 0.030717361718416214, -0.007693041115999222, 0.003355001797899604, -0.005877675488591194, 0.007206660229712725, 0.00046754235518164933, -0.024277949705719948, 0.014769542962312698, -0.020702023059129715, -0.012001966126263142, 0.027114031836390495, -0.02666190266609192, -0.026689304038882256, 0.01953744702041149, 0.017359009012579918, 0.035403061658144, 0.029402077198028564, -0.016495853662490845, -0.021647382527589798, 0.0038533711340278387, -0.007336818613111973, -0.0248807892203331, -0.0414588488638401, 0.02934727445244789, -0.012639056891202927, -0.01944154128432274, -0.006220197305083275, -0.013940640725195408, -0.0003012051747646183, -0.01241984311491251, -0.01116621308028698, 0.03444400057196617, -0.00228290818631649, -0.0001604500866960734, 0.015358680859208107, -0.027703169733285904, 0.006199645809829235, -0.014153003692626953, 0.03978734090924263, 0.013550165109336376, 0.0020773950964212418, 0.009494706057012081, -0.015344980172812939, -0.001099495217204094, 0.014577730558812618, -0.002782990224659443, -0.010508570820093155, -0.00556255504488945, -0.015550493262708187, 0.020016977563500404, 0.0064736632630229, -0.0029148610774427652, 0.009898882359266281, -0.004723376594483852, -0.012001966126263142, 0.027237338945269585, -0.005726965609937906, -0.02492189221084118, -0.02105824463069439, -0.0020585565362125635, -0.006634648889303207, -0.006521616596728563, 0.002919998951256275, -0.036745745688676834, 0.0032505325507372618, -0.015851913020014763, 0.0025843274779617786, 0.04688439518213272, -0.01961965300142765, 0.008309580385684967, -0.016071125864982605, -0.003925300668925047, -0.017441213130950928, 0.0025278113316744566, -0.030963977798819542, -0.0024558817967772484, 0.011885508894920349, -0.011803303845226765, -0.016536956652998924, 0.01672876812517643, -0.014331115409731865, -0.009001474827528, -0.029922710731625557, 0.0007693897350691259, 0.008295879699289799, 0.00686756381765008, -0.011734799481928349, -0.006833311636000872, 0.01877019926905632, -0.011501885019242764, -0.01719459891319275, 0.017222000285983086, -0.018002949655056, 0.0008922694833017886, -0.030388541519641876, -0.006775082554668188, -0.013015830889344215, -0.023853223770856857, 0.014879150316119194, 0.043075550347566605, -0.006888114847242832, -0.029456881806254387, -0.0037677406799048185, -0.1755904108285904, 0.019838867709040642, -0.004497312009334564, -0.04017096385359764, 0.02747025527060032, 0.02297636680305004, 0.010768887586891651, 0.00338582880795002, -0.0014642809983342886, -0.010590776801109314, 0.026442687958478928, 0.003346438752487302, -0.024935591965913773, 0.012214330025017262, 0.011817004531621933, 0.015084663406014442, -0.00547692459076643, -0.002740174997597933, 0.041513651609420776, 0.03285469859838486, 0.0337863564491272, -0.012961028143763542, 0.005086449906229973, 0.02577134594321251, 0.005408420227468014, 0.0037882919423282146, 0.01172109879553318, 0.0005232021794654429, -0.025757644325494766, -0.02633308246731758, -0.000570298929233104, 0.009590612724423409, 0.032251860946416855, -0.004315775819122791, 0.006230473052710295, 0.009097380563616753, 0.011193614453077316, -0.011817004531621933, -0.018879806622862816, 0.007638237904757261, 0.030552951619029045, 0.02046910673379898, 0.011659444309771061, -0.008967222645878792, 0.008843914605677128, 0.0013880699407309294, 0.005877675488591194, -0.0355948731303215, -0.004336326848715544, -0.012645907700061798, -0.0004405687504913658, -0.0030638582538813353, 0.003288209903985262, 0.010364712215960026, 0.0020431429147720337, -0.0030895473901182413, -0.015660099685192108, 0.012851420789957047, 0.0161807332187891, 0.0402531698346138, 0.0019164099358022213, -0.017564522102475166, 2.2558277123607695e-05, -0.009296043775975704, -0.012330787256360054, -0.046774785965681076, -0.014290012419223785, 0.012645907700061798, -0.018208462744951248, 0.006189370062202215, 0.009001474827528, -0.005072748754173517, -0.002782990224659443, -0.013324100524187088, -0.007487528026103973, -0.004901487845927477, -0.015249073505401611, 0.022140614688396454, -0.015564193949103355, -0.010481169447302818, 0.014838047325611115, -0.0020140286069363356, -0.020756825804710388, 0.01850988157093525, -0.01907161809504032, 0.005548854358494282, -0.008528795093297958, 0.0039013242349028587, -0.01563269831240177, -0.019852567464113235, 0.008138319477438927, -0.05962620675563812, -0.019770363345742226, 0.001718603540211916, 0.028415614739060402, 0.03304651007056236, 0.005302238743752241, -0.002937125042080879, 0.006884689908474684, -0.01333095133304596, 0.0219488013535738, 0.003007342107594013, -0.03058035299181938, 0.007446425501257181, 0.016865776851773262, 0.0013580992817878723, -0.026552295312285423, 0.022428331896662712, 0.02751135639846325, 0.004130813758820295, -0.019345635548233986, 0.019003113731741905, 0.02364771068096161, 0.020373200997710228, 0.009008325636386871, 0.022537939250469208, 0.020112885162234306, -0.029073256999254227, 0.007864302024245262, 0.023154478520154953, 0.038746073842048645, -0.0001865673839347437, -0.015701202675700188, 0.001757137244567275, 0.008254777640104294, -0.03214225172996521, -0.1033594012260437, -0.022496836259961128, -0.007145006209611893, 0.015262775123119354, 0.006175669375807047, 0.033101312816143036, -0.014427021145820618, 0.01509836409240961, -0.02140076644718647, 0.042828936129808426, 0.009145334362983704, -0.010604477487504482, -0.002305172150954604, -0.0016629437450319529, -0.006237323395907879, -0.013974892906844616, -0.010837391950190067, -0.003438919549807906, -0.022853059694170952, 0.025168508291244507, 0.011769051663577557, -0.010714083909988403, 0.005675587337464094, 0.009857779368758202, -0.01622183620929718, -0.008076665922999382, -0.02637418359518051, 0.006182519719004631, -0.0037369136698544025, -0.009659117087721825, -0.023469598963856697, -0.015057262033224106, -0.00025860400637611747, -0.02742915228009224, 0.0024867088068276644, -0.007062801159918308, -0.04211648926138878, 0.00478845601901412, 0.039431117475032806, -0.028936248272657394, 0.003962978255003691, -0.006401733960956335, 0.0024764330592006445, -0.015207971446216106, -0.001680069835856557, 0.009309744462370872, -0.030772164463996887, 0.004302074667066336, 0.01509836409240961, -0.02510000392794609, -0.020565012469887733, 0.004014356527477503, -0.012262282893061638, -0.0018547559157013893, 0.013091186061501503, 0.011248418129980564, 0.02208581008017063, -0.0037882919423282146, -0.02441495843231678, 0.031155789270997047, -0.006189370062202215, -0.014810645952820778, -0.007782096974551678, 0.017564522102475166, 0.02722363919019699, 0.030498147010803223, -0.007994460873305798, -0.007864302024245262, 0.007412173319607973, -0.015523090958595276, -0.01205676980316639, 0.01533127948641777, -0.021030843257904053, 0.0030159051530063152, -0.019208626821637154, -0.03493723273277283, -0.0047918809577822685, -0.00031212306930683553, 0.019468942657113075, -0.0025089727714657784, -0.023976530879735947, -0.01868799328804016, -0.021880296990275383, -0.008768560364842415, 0.013447408564388752, 0.007309416774660349, -0.0018581812037155032, 0.025374021381139755, -0.0016047150129452348, -0.006894965190440416, 0.008076665922999382, 0.013193942606449127, -0.0005060760886408389, 0.011084008030593395, 0.007905405014753342, 0.010892195627093315, 0.01367347314953804, -0.01761932484805584, 0.0027110606897622347, 0.01855098456144333, -0.04946015775203705, 0.0029148610774427652, -0.04373319447040558, 0.007419023662805557, -0.016084827482700348, -0.028168998658657074, 0.013043233193457127, -0.027442852035164833, 0.00576464319601655, 0.0015704628312960267, -0.0075834342278540134, -0.006018109153956175, -0.00655929371714592, 0.013961191289126873, 0.012556851841509342, -0.011810154654085636, -0.003382403403520584, -0.009378248825669289, -7.28394152247347e-05, -0.006795634049922228, 0.020578714087605476, 0.01634514331817627, 0.003452620469033718, -0.001677500898949802, 0.047624241560697556, -0.004764479119330645, -0.02411353960633278, 0.012412992306053638, -0.022948965430259705, 0.03529345244169235, -0.002803541487082839, -0.006751106120646, 0.012502048164606094, -0.026059065014123917, -0.024593070149421692, 0.01118676457554102, 0.0018222163198515773, -0.003565652761608362, 0.007275164593011141, 0.018756497651338577, 0.01259110402315855, 0.0267030056566, -0.032717689871788025, -0.010015339590609074, -0.0032916353084146976, -0.010837391950190067, -0.005788619630038738, -0.008576747961342335, -0.006549018435180187, -0.0043397522531449795, 0.007871152833104134, 0.021181553602218628, 0.02849782072007656, 0.011364875361323357, -0.027209937572479248, -0.03477282077074051, 0.006206496153026819, -0.035430461168289185, 0.004524713847786188, 0.0046959747560322285, 0.009549509733915329, -0.021373365074396133, 0.03677314892411232, -0.016701366752386093, 0.01133747398853302, -0.0030176176223903894, 0.018701694905757904, -0.017728932201862335, -0.017249401658773422, 0.0017622750019654632, 0.017989248037338257, -0.004743928089737892, -0.006059212144464254, -0.01460513286292553, 0.0026716706342995167, 0.036279916763305664, -0.002366826171055436, -0.017701530829072, -0.025511030107736588, -0.002950825961306691, -0.015906715765595436, 0.036499131470918655, 0.013180241920053959, 0.006018109153956175, -0.03014192543923855, 0.02544252574443817, 0.02627827785909176, -0.010474318638443947, 0.017126094549894333, -0.015002458356320858, 0.010556524619460106, 0.012961028143763542, 0.010789439082145691, 0.005107000935822725, -0.009802975691854954, 0.014139303006231785, -0.023154478520154953, 0.009981087408959866, -0.0018633189611136913, -0.002880608895793557, 0.009467304684221745, -0.0071381558664143085, 0.020565012469887733, -0.011405978351831436, -0.007994460873305798, -0.019907372072339058, -0.03630731999874115, 0.0027367498259991407, 0.002423342317342758, -0.007453275844454765, -0.019468942657113075, 0.0392393060028553, 0.014632534235715866, 0.019016815349459648, 0.017167195677757263, 0.0030655707232654095, -0.027675768360495567, 0.013372054323554039, 0.0031272247433662415, 0.00896037183701992, -0.018194761127233505, 0.04058199003338814, -0.006905240938067436, 0.015906715765595436, 0.03592369332909584, -0.007145006209611893, 0.041595857590436935, 0.0013401168398559093, 0.015646399930119514, 0.00595645559951663, -0.011652594432234764, -0.0004649734473787248, -0.01889350637793541, 0.0003153342113364488, -0.018016651272773743, -0.008521944284439087, -0.013837884180247784, -0.012200629338622093, 0.004743928089737892, 0.01373512763530016, -0.0033036235254257917, 0.07250502705574036, 0.01265275850892067, -0.01792074367403984, 0.018002949655056, 0.004093136638402939, 0.010494870133697987, 0.01613963022828102, 0.0013538177590817213, 0.013104886747896671, -0.026867415755987167, -0.008330131880939007, -0.007282014936208725, 0.001765700289979577, -0.03860906511545181, -0.018194761127233505, 0.01893460936844349, 0.002171588595956564, 0.030470745638012886, -0.01634514331817627, 0.03206004574894905, 0.005607082974165678, 0.015934117138385773, 0.020099183544516563, 0.009515257552266121, -0.034498803317546844, -0.0029319871682673693, 0.033484939485788345, -0.011419679038226604, -0.007953357882797718, -0.03482762351632118, -0.013899537734687328, -0.02403133548796177, -0.030772164463996887, -0.0031460635364055634, -0.023812120780348778, -0.002163025550544262, 0.0018821577541530132, -0.0240724366158247, 0.01719459891319275, -0.004737077746540308, 0.005415271036326885, -0.007603985723108053, -0.023168180137872696, -0.03811583295464516, 0.0004666860622819513, 0.0008378941565752029, -0.012967878021299839, -0.015084663406014442, -0.0412670336663723], "3b555f83-9634-48a7-b8c0-a207c923d7bf": [0.029094239696860313, -0.004630491603165865, 0.0006121059413999319, -0.014219298027455807, 0.016596009954810143, 0.028465913608670235, -0.014110023155808449, -0.010818139649927616, -0.01111181452870369, -0.008550701662898064, 0.004794402979314327, 0.014069045893847942, -0.005453462712466717, 0.027741972357034683, -0.024450089782476425, -0.015079831704497337, 0.010674717836081982, -0.00016785958723630756, -0.015516928397119045, 0.00792920496314764, -0.006098863203078508, 0.01163769606500864, 0.017784366384148598, -0.006727189291268587, -0.015407653525471687, 0.010729354806244373, 0.018795153126120567, -0.017688751220703125, -0.0011593303643167019, 0.0017159455455839634, 0.015284720808267593, 0.0041626617312431335, -0.017688751220703125, -0.01850830763578415, -0.023411985486745834, -0.012846541590988636, -0.017265314236283302, 0.011432806961238384, 0.014314912259578705, -0.019041018560528755, 0.012067963369190693, 0.01716969907283783, -0.00878973864018917, -0.015093490481376648, 0.003592387307435274, 0.009199516847729683, 0.019355181604623795, -0.02160896174609661, -0.011869903653860092, 0.014574438333511353, -0.006180818658322096, 0.029039602726697922, -0.011548911221325397, -0.0028803979512304068, -0.009028775617480278, 0.008721441961824894, -0.007000374607741833, 0.021472368389368057, 0.0022179235238581896, -0.03433939814567566, 0.027564402669668198, 0.021021611988544464, -0.01682821847498417, -0.02354857698082924, -0.0019669346511363983, 0.006713530048727989, -0.017101403325796127, 0.00859167892485857, -0.01160354819148779, 0.0014051971957087517, 0.03311006352305412, 0.029449380934238434, -0.0015998417511582375, 0.021636279299855232, 0.015448631718754768, 0.004487069323658943, -0.019136633723974228, 0.01415100134909153, -0.0004321877786424011, 0.009506850503385067, -0.0053271143697202206, -0.029394743964076042, -0.0024603756610304117, -0.0004317609127610922, 0.0004708178748842329, 0.014205638319253922, -0.0035650688223540783, 0.02760537900030613, -0.030542122200131416, -0.014833964407444, -0.017060425132513046, 0.02796052023768425, -0.001506787957623601, 0.009377087466418743, -0.0143422307446599, 0.021472368389368057, -0.007901886478066444, 0.04245300218462944, 0.006044225767254829, -0.007621871307492256, 0.00016316422261297703, 0.004128513857722282, -0.004155832342803478, -0.0026806313544511795, -0.02057085745036602, -0.006037396378815174, -0.017634114250540733, 0.0009091949905268848, 0.009472701698541641, -0.0028940574266016483, -0.031498271971940994, 0.0337383896112442, 0.0016826509963721037, -0.01853562705218792, 0.009937116876244545, -0.03291883319616318, -0.002962353639304638, -0.010210302658379078, -0.004077291581779718, -0.01725165545940399, 0.01951909437775612, 0.004463165532797575, 0.016035979613661766, -0.007478449027985334, 0.008899012580513954, -0.00912439078092575, -0.019382501021027565, -0.01029908750206232, 0.0014410527655854821, -0.010469828732311726, 0.012505059130489826, 0.015530587173998356, 0.0011772580910474062, -0.0022810976952314377, -0.01650039479136467, 0.0013309249188750982, -0.024395452812314034, 0.02091233804821968, -0.031826093792915344, -0.05362628400325775, 0.018808811902999878, 0.017634114250540733, -0.01548960991203785, 0.002465497702360153, -0.015120808966457844, 0.010101028718054295, -0.0035616541281342506, 0.007218922954052687, 0.010865947231650352, 0.002265731105580926, -0.009814184159040451, -0.006027151830494404, -0.005532003473490477, 0.00579835893586278, 0.009622953832149506, 0.022647066041827202, -0.01984691619873047, 0.016404779627919197, 0.008270686492323875, -0.004319743253290653, 0.03125240281224251, 0.029094239696860313, -0.00943855382502079, 0.006290092598646879, -0.013092407956719398, 0.01949177496135235, 0.044611167162656784, 0.01651405543088913, 0.0006428392953239381, -0.010626910254359245, -0.03371107205748558, 0.013843667693436146, -0.024040311574935913, -0.0005071003106422722, 0.014697371982038021, -0.02188214659690857, 0.0022896346636116505, -0.0024603756610304117, -0.00011823803652077913, 0.0008421792299486697, 0.016596009954810143, -0.0025115979369729757, 8.675768913235515e-05, 0.046605419367551804, -0.02557014860212803, 0.013488526456058025, 0.03237246349453926, 0.006129596382379532, 0.005685670301318169, -0.0030989462975412607, 0.018330737948417664, 0.02494182251393795, -0.010428850539028645, 0.023466622456908226, -0.6254851818084717, -0.030924582853913307, -0.012983134016394615, -0.018931744620203972, 0.009110731072723866, 0.020284011960029602, 0.02928547002375126, 0.0034592095762491226, -0.007744804956018925, 0.027905883267521858, 0.00278136832639575, -0.0024159830063581467, 0.021663598716259003, -0.013003623113036156, -0.0026345313526690006, -0.010770332999527454, 0.007184774614870548, -0.034585267305374146, 0.0025474533904343843, -0.012088451534509659, -0.006764752324670553, 0.026813142001628876, -0.027222920209169388, -0.01789364032447338, 0.019122974947094917, 0.02252413146197796, 0.0020249863155186176, -0.010189813561737537, 0.004978802986443043, 0.038601089268922806, -0.0056105442345142365, 0.0028240536339581013, 0.007819931022822857, -0.010223961435258389, 0.037289801985025406, -0.018399033695459366, 0.012716778554022312, 0.01146012544631958, 0.03939332813024521, 0.054746344685554504, -0.025897972285747528, -0.012211385183036327, 0.0012310415040701628, 0.011931370012462139, -0.0015332527691498399, -0.01655503176152706, 0.03070603311061859, -0.005678840447217226, -0.016281846910715103, -0.0009373672655783594, -0.00012122600310249254, 0.00943855382502079, -0.0074647897854447365, -0.02934010699391365, 0.004664639942348003, -0.006935493089258671, 0.0417427234351635, -0.008653146214783192, 0.014956898055970669, -0.005491025745868683, -0.0030921166762709618, 0.005603714380413294, 0.010278599336743355, -0.028247365728020668, 0.009465872310101986, -0.0035240910947322845, -0.01887710765004158, -0.008414109237492085, 0.01787998154759407, -0.0035445799585431814, 0.002897472120821476, 0.013891475275158882, -0.025542831048369408, -0.019409818574786186, -0.011473785154521465, 0.028438596054911613, 0.024777911603450775, 0.00624228548258543, -0.004193395376205444, 0.011521591804921627, 0.010927414521574974, 0.010517636314034462, 0.01077716238796711, -0.0178526621311903, 0.027796609327197075, -0.0007235143566504121, -0.013932452537119389, -0.019710322842001915, -0.0021137716248631477, 0.003483113134279847, 0.020721109583973885, 0.022387539967894554, -0.008052138611674309, -0.015557905659079552, -0.002013034652918577, 0.018330737948417664, 0.00030370528111234307, -0.005374921951442957, 0.011979177594184875, -0.027181942015886307, -0.007478449027985334, -0.008605338633060455, 0.024805229157209396, -0.003290176158770919, 0.019027359783649445, 0.007266730535775423, 0.0049173361621797085, 0.011863074265420437, 0.044611167162656784, 0.008120434358716011, 0.009377087466418743, -0.01852196641266346, -0.024682296440005302, 0.012259192764759064, -0.011398659087717533, -0.021991420537233353, -0.018440011888742447, -0.0008660829626023769, 0.026553615927696228, -0.0014325156807899475, 0.0072599006816744804, -0.0005382605013437569, -0.014478824101388454, -0.014765668660402298, 0.0031689500901848078, 0.04381893202662468, -0.01077716238796711, -0.015721816569566727, -0.036279015243053436, -0.006255944725126028, 0.008584849536418915, -0.00039953357190825045, 0.023302709683775902, 0.0006765606231056154, -0.015721816569566727, -0.016664305701851845, 0.014560779556632042, -0.0054432181641459465, -0.008537041954696178, -0.01246408186852932, -0.007157456129789352, -0.009452213533222675, 0.010736184194684029, -0.0236305333673954, 0.018057551234960556, -0.0003291029715910554, -0.028383959084749222, -0.00996443536132574, -0.004831966012716293, -0.002112064277753234, 0.004036313388496637, -0.0027403905987739563, -0.01647307723760605, 0.013037770986557007, -0.016432099044322968, 0.001686919596977532, 0.003153583500534296, -0.014110023155808449, -0.026444341987371445, -0.0027130721136927605, 0.0033140797168016434, 0.025160370394587517, -0.03748102858662605, -0.004135343246161938, -0.01859026402235031, -0.010169324465095997, 0.0004065766406711191, 0.024996459484100342, -0.008161412551999092, -0.045949775725603104, 0.013235830701887608, 0.004842210561037064, 0.006515470799058676, 0.00892633106559515, -0.0013548285933211446, -0.002059134654700756, -0.023739807307720184, 0.01577645353972912, 0.00487977359443903, -0.01647307723760605, 0.013269978575408459, 0.00023327468079514802, -0.013119726441800594, 0.0010193228954449296, 0.02156798355281353, -0.001965227071195841, 0.023029524832963943, 0.00014246189675759524, -0.012860200367867947, -0.003810935653746128, 0.010278599336743355, 0.023849081248044968, 0.002813809085637331, 0.01891808584332466, -0.019478116184473038, 0.017005788162350655, 0.00239549414254725, -0.0020113270729780197, 0.004767084494233131, 0.040294840931892395, 0.016350142657756805, -0.005374921951442957, -0.023056844249367714, -0.005873485002666712, 0.0005467975861392915, -0.034585267305374146, 0.029422063380479813, 0.0008485820144414902, 0.021813850849866867, 0.008694123476743698, 0.013529504649341106, 0.010387873277068138, -0.0235622376203537, -0.02353491820394993, 0.00857802014797926, 0.03472185879945755, -0.011835755780339241, 0.03160754591226578, -0.029859159141778946, 0.020379627123475075, 0.011425977572798729, 0.0081067755818367, 0.02690875716507435, -0.025501852855086327, -0.004869529046118259, 0.006945737637579441, 0.02390371821820736, -0.007778952829539776, -0.005743721965700388, -0.04269887134432793, -0.01716969907283783, -0.00926098320633173, 0.007765293586999178, 0.00766284903511405, 0.014588098041713238, 0.020953316241502762, -0.007895057089626789, -0.022729020565748215, 0.032509058713912964, 0.014738350175321102, -0.00206084200181067, 0.015913046896457672, 0.012689460068941116, -0.037617623805999756, 0.016923831775784492, 0.01062008086591959, 0.033574480563402176, 0.028411276638507843, 0.005077832844108343, 0.020420605316758156, -0.012429933995008469, 0.01195185910910368, -0.0020881604868918657, -0.009821013547480106, 0.03431208059191704, -4.092444578418508e-05, 0.003988506272435188, -0.001062008086591959, 0.012409444898366928, 0.016022320836782455, 0.004569025244563818, 0.016035979613661766, 0.018972722813487053, 0.015339357778429985, 0.005521758925169706, -0.008311664685606956, -0.006952567026019096, -0.013768541626632214, -0.038628410547971725, -0.010019073262810707, 0.005170032847672701, -0.027728313580155373, -0.0034131095744669437, 0.013666097074747086, 0.00579835893586278, 0.01650039479136467, 0.012627992779016495, 0.0036231207195669413, 0.010114687494933605, 0.005152958910912275, -0.029558654874563217, -0.0051358845084905624, -0.009875650517642498, 0.026130178943276405, -0.009028775617480278, -0.00037221505772322416, 0.004049972631037235, 0.012020155787467957, 0.016664305701851845, 0.01652771420776844, -0.002118893899023533, 0.022032398730516434, -0.0012310415040701628, 0.01615891419351101, -0.006173988804221153, -0.0061842333525419235, 0.031197767704725266, -0.007758464198559523, -0.04258959740400314, -0.002093282761052251, 0.01197234820574522, 0.008072626776993275, -0.024122266098856926, -0.02358955517411232, 0.07539916038513184, -0.0025764794554561377, 0.013208512216806412, -0.02690875716507435, -0.003995335660874844, -0.028083454817533493, 0.011528422124683857, -0.0034745761658996344, 0.005613958928734064, -0.010831799358129501, 0.01853562705218792, -0.027741972357034683, -0.006546203978359699, -0.00926098320633173, 0.00047551325405947864, -0.001544350991025567, -0.006416440941393375, -0.029777202755212784, -0.02423154003918171, 0.011740140616893768, 0.06698504835367203, 0.007512597367167473, -0.016090616583824158, 0.02862982451915741, 0.01956007070839405, -0.0023391495924443007, -0.02862982451915741, -0.03278224170207977, 0.028056135401129723, -0.0007435763836838305, -0.023507598787546158, 0.014069045893847942, -0.01953275315463543, -0.0059281219728291035, -0.005337358918040991, 0.011692333035171032, 0.023739807307720184, -0.016910172998905182, 0.01722433604300022, -0.03193536773324013, -0.011016199365258217, 0.026758505031466484, 0.017115062102675438, 0.006918419152498245, -0.0026123349089175463, -0.023138798773288727, 0.04417407140135765, 0.019163953140378, -0.011180110275745392, -0.022851955145597458, -0.0068228039890527725, 0.028711780905723572, 0.018043892458081245, 0.02969524823129177, -0.021759213879704475, 0.05687719210982323, 0.007717486005276442, 0.033902302384376526, 0.006385707762092352, -8.222238830057904e-05, 0.029531337320804596, 0.014615416526794434, 0.010312747210264206, -0.0006197892944328487, -0.006583767011761665, -0.016746262088418007, -0.01159671787172556, 0.038601089268922806, -0.01126206573098898, -0.019792279228568077, 0.011419148184359074, -0.005255402997136116, -0.02565210498869419, -0.012948986142873764, -0.007819931022822857, -0.019997168332338333, -0.02832932025194168, -0.014069045893847942, -0.0011593303643167019, -0.005989588797092438, -0.01281922310590744, -0.03816399350762367, 0.013905134052038193, -0.0039099655114114285, 0.028411276638507843, -0.004029484000056982, 0.008967309258878231, 0.01716969907283783, -0.013474867679178715, -0.0007256485987454653, 0.010804480873048306, -0.02633506804704666, -0.0342574417591095, -0.003109190845862031, 0.006146670319139957, -0.010572273284196854, 0.0048046475276350975, 0.000355781230609864, 0.018098529428243637, 0.026703868061304092, -0.03209928050637245, -0.03300078958272934, 0.000959563534706831, -0.020707448944449425, -0.0009800523985177279, 0.008796568028628826, -0.004528047051280737, -0.006846707779914141, 0.031498271971940994, 0.0242861770093441, 0.008058968000113964, 0.013707075268030167, -0.007936034351587296, -0.011507933028042316, 0.0038655728567391634, 0.019300544634461403, 0.007553575094789267, 0.04204322397708893, 0.011193769983947277, -0.023015866056084633, 0.0021086493507027626, 0.005132469814270735, -0.010019073262810707, -0.04185199737548828, 0.0015725231496617198, 0.015079831704497337, -0.021076250821352005, 0.021991420537233353, -0.027523424476385117, -0.005170032847672701, 0.03739907592535019, -0.028083454817533493, 0.027059009298682213, 0.029422063380479813, 0.0018525382038205862, 0.03171681985259056, 0.005945196375250816, 0.017975596711039543, 0.029941115528345108, -0.009602464735507965, 0.026430683210492134, -0.051058340817689896, -0.0068774414248764515, 0.01919127069413662, -0.02760537900030613, 0.0391201414167881, -0.008058968000113964, -0.01165818516165018, -0.024081289768218994, 0.0015503268223255873, -0.0034882354084402323, 0.023343687877058983, -0.0008076042286120355, -0.009766376577317715, -0.008844375610351562, -0.012662140652537346, -0.00404314324259758, -0.014915919862687588, -0.014451505616307259, -0.01580377295613289, 0.01681455783545971, -0.013365593738853931, -0.005972514860332012, -0.024682296440005302, 0.010920584201812744, -0.03199000656604767, 0.0027147794608026743, -0.01584475114941597, 0.007280389778316021, 0.013549993745982647, 0.01298996340483427, 0.013741223141551018, 0.009725398384034634, 0.011309873312711716, 0.005685670301318169, -0.018139507621526718, -0.018358055502176285, -0.016432099044322968, 0.020748427137732506, 0.01792095974087715, 0.0378088541328907, -6.119992031017318e-05, 0.028110772371292114, 0.013372423127293587, -0.008550701662898064, -0.005111980717629194, -0.004664639942348003, -0.014383208937942982, -0.01718335784971714, 0.008188731037080288, 0.024723274633288383, 1.1525006812007632e-05, 0.018754174932837486, 0.008017989806830883, 0.011910881847143173, 0.03239978104829788, -0.0070959897711873055, -0.011746970005333424, -0.011248406954109669, -0.04291741922497749, -0.01094790268689394, 0.010381042957305908, 0.0022571939043700695, 0.026731187477707863, -0.009383916854858398, -0.00422071386128664, 0.030159663408994675, 0.03062407858669758, 0.004422187805175781, 0.015694499015808105, 0.016582351177930832, -0.014519801363348961, 0.022810976952314377, 0.029585974290966988, 0.019642027094960213, -0.03174413740634918, -0.0023186607286334038, -0.04611368849873543, 0.0023101235274225473, 0.0212674792855978, 0.004087535664439201, 0.02663557231426239, 0.02597992680966854, 0.007055011577904224, -0.008379960432648659, 0.00412168400362134, 0.007731145713478327, -0.009042435325682163, 0.014314912259578705, -0.0036333652678877115, -0.003657268825918436, -0.032864198088645935, -0.03469454124569893, -0.01849464885890484, -0.004155832342803478, 0.01685553602874279, 0.029886476695537567, 0.016240868717432022, -0.005702744238078594, -0.019696664065122604, 0.0019413233967497945, -0.01482030563056469, 0.01986057497560978, 0.008257027715444565, 0.023138798773288727, 0.01820780336856842, -0.014629075303673744, -0.014560779556632042, 0.01915029250085354, 0.01954641193151474, 0.0033584723714739084, 0.01283288188278675, 0.010114687494933605, -0.029094239696860313, -0.002033523516729474, -0.027578061446547508, 0.004944655112922192, 0.004149002488702536, -0.004090950824320316, -0.0031569981947541237, 0.026362387463450432, -0.005200766026973724, -0.0014504435239359736, -0.0010765210026875138, -0.02660825289785862, 0.028165409341454506, 0.010538125410676003, -0.01265531126409769, -0.026799483224749565, 0.002895764773711562, -0.002897472120821476, 0.005094906780868769, -0.0006543642957694829, 0.014943238347768784, 0.023466622456908226, -0.008974138647317886, -0.0006923541077412665, -0.03816399350762367, -0.007389663718640804, 0.004743180703371763, 0.00019208344747312367, 0.01096839178353548, -0.039939697831869125, 0.006088618654757738, 0.021103568375110626, 0.016609668731689453, -0.010155665688216686, -0.006481322459876537, -0.010927414521574974, 0.027728313580155373, -0.001519593526609242, -0.02252413146197796, -0.012552866712212563, 0.0015178860630840063, 0.0035479948855936527, -0.0077857826836407185, -0.013317786157131195, -0.01094790268689394, -0.015571565367281437, -0.028220046311616898, 0.010435680858790874, 0.025788696482777596, -0.002035230863839388, 0.018603922799229622, 0.006382292602211237, 0.0008387644193135202, 0.015052513219416142, 0.002600383013486862, -0.0005327114486135542, -0.019081996753811836, 0.011876733042299747, -0.020324990153312683, -0.03338325023651123, -0.00437779538333416, 0.024777911603450775, 0.004944655112922192, 0.013549993745982647, 0.014752008952200413, -0.007430641446262598, 0.0014521508710458875, -0.009650272317230701, 0.011719651520252228, -0.033219337463378906, 0.014069045893847942, -0.029913796111941338, -0.010982051491737366, 0.03442135453224182, 0.009889310225844383, -0.007860908284783363, -0.019696664065122604, -0.0035548245068639517, -0.009739058092236519, -0.01783900335431099, -0.01779802516102791, 0.011849414557218552, -0.006406196393072605, 0.02092599868774414, -0.008393620140850544, -0.033246658742427826, 0.02793320268392563, -0.013010452501475811, -0.00574030727148056, 0.017961936071515083, 0.0044973138719797134, 0.016746262088418007, -0.002207679208368063, -0.02659459412097931, 0.0006001540459692478, -0.03548677638173103, -0.016705283895134926, -0.004179735668003559, 0.002866738708689809, -0.006290092598646879, -0.007519426755607128, -0.02928547002375126, -0.0075672343373298645, -0.033574480563402176, -0.0025440386962145567, 0.003127972362563014, -0.007164285983890295, -0.012067963369190693, 0.0025918460451066494, 0.001145671121776104, 0.0014069045428186655, -0.006778411567211151, -0.020748427137732506, -0.025037437677383423, 0.0009168783435598016, -0.05786065757274628, -0.0023767126258462667, -0.01178111881017685, 0.049009453505277634, 0.023780785501003265, -0.023726148530840874, 0.00021011795615777373, -0.003868987550958991, -0.032864198088645935, -0.010394702665507793, 0.0033635946456342936, 0.016022320836782455, 0.009377087466418743, 0.001100424793548882, 0.010101028718054295, 0.014984216541051865, -0.01792095974087715, 0.0022708531469106674, -0.01160354819148779, 0.0033653019927442074, -0.002943572122603655, 0.019956190139055252, 0.004224128555506468, 0.006628159433603287, -0.014519801363348961, -0.015598883852362633, 0.020065464079380035, -0.009131220169365406, -0.01146012544631958, -0.0011311580892652273, 0.008052138611674309, -0.02424520067870617, -0.004507558420300484, -0.008550701662898064, -0.0030938240233808756, 0.006204722449183464, 0.00857802014797926, -0.027222920209169388, 0.001499104662798345, -0.007737975101917982, 0.004739766009151936, -0.001867904793471098, -0.012764585204422474, -0.006071544252336025, 0.008393620140850544, 0.0032338316086679697, -0.02319343574345112, -0.007212093099951744, -0.008140923455357552, 0.008721441961824894, 0.022141672670841217, -0.016240868717432022, 0.01247774064540863, 0.018139507621526718, -0.005371506791561842, 0.007307708263397217, -0.021677257493138313, -0.00013211072655394673, -0.03067871555685997, -0.009821013547480106, 0.02260608784854412, -0.003450672375038266, 0.006539374589920044, -0.02155432477593422, 0.024135926738381386, -0.003527505788952112, -0.01889076642692089, -0.031197767704725266, 0.01682821847498417, -0.02794686146080494, 0.02390371821820736, 0.028575187548995018, -0.014178319834172726, -0.0038724024780094624, -0.013208512216806412, 0.0116172069683671, -0.0014794694725424051, -0.009329279884696007, 0.003049431601539254, -0.01367975678294897, 0.010278599336743355, 0.016677966341376305, -0.011692333035171032, -0.000504966068547219, -0.004469995386898518, 0.007007204461842775, -0.015475950203835964, 0.01618623174726963, 0.21406804025173187, 0.0008524236618541181, 0.03996701538562775, 0.03480381518602371, 0.016240868717432022, 0.026143837720155716, 0.03239978104829788, 0.014314912259578705, -0.01884979009628296, 0.02018839679658413, -0.014041727408766747, 0.012723607942461967, -0.023739807307720184, 0.0020881604868918657, 0.012279681861400604, 0.009397576563060284, -0.020406946539878845, -0.06348827481269836, -0.010114687494933605, 0.0025730645284056664, 0.010210302658379078, -0.006580352317541838, -0.01689651422202587, -0.01951909437775612, 0.016254529356956482, 0.019655685871839523, -0.021390413865447044, -0.00015153249842114747, 0.0206118356436491, 0.011822096072137356, -0.0035240910947322845, 0.01550326868891716, 0.0035753133706748486, -0.004811476916074753, -0.011391828767955303, 0.0005429558805190027, 0.02525598555803299, -0.0024279349017888308, 0.011350851505994797, -0.033574480563402176, 0.013140215538442135, 0.009889310225844383, -0.01725165545940399, -0.015134468674659729, -0.018071211874485016, 0.016759920865297318, -0.025433557108044624, -0.004374380689114332, 0.0008519968250766397, -0.006638403981924057, 0.003162120468914509, -0.0051734475418925285, 0.02663557231426239, 0.004070461727678776, -0.010503976605832577, -0.018071211874485016, -0.009834672324359417, 6.023950481903739e-05, -0.0022418273147195578, 0.007813100703060627, -0.021690916270017624, 0.01925956830382347, -0.006334485486149788, -0.0005126493633724749, 0.0024945237673819065, -0.011200599372386932, -0.018071211874485016, 0.0007196726510301232, -0.019368842244148254, -0.007642360404133797, -0.029804522171616554, -0.03130704164505005, -0.009670761413872242, -0.0009330987231805921, -0.0192322488874197, -0.028083454817533493, 0.03330129384994507, 0.026143837720155716, 0.013782201334834099, 0.0370166152715683, -0.03428476303815842, -0.01195185910910368, -0.02591163106262684, 0.008379960432648659, 0.011610377579927444, -0.021472368389368057, 0.050074875354766846, -0.02898496575653553, 0.003708491101861, 0.009404405951499939, -0.004572439938783646, 0.003327739192172885, 0.0033328612335026264, -0.01111181452870369, 0.013099237345159054, 0.010251279920339584, 0.00032888955320231616, 0.02596626803278923, -0.009998584166169167, 0.02596626803278923, -0.008448257111012936, 0.06365218758583069, 0.013536334037780762, 0.01890442706644535, 0.008530212566256523, -0.01684187725186348, 0.004398284014314413, 0.022250946611166, 0.024053970351815224, -0.03127972409129143, -0.032864198088645935, -0.025474533438682556, 0.005402240436524153, -0.017620455473661423, 0.0002287927345605567, 0.036606837064027786, 0.00320480577647686, -0.021376753225922585, 0.003950943239033222, -0.0056993295438587666, -0.01008736900985241, -0.012218214571475983, -0.010340065695345402, 0.02121284231543541, -0.010736184194684029, -0.004398284014314413, -0.017101403325796127, 0.006754507776349783, -0.03199000656604767, -0.01689651422202587, 0.028875691816210747, -0.01749752275645733, -0.009588805958628654, -0.015093490481376648, 0.00035556781222112477, -0.022319244220852852, 0.001970349345356226, -0.028520550578832626, -0.009725398384034634, -0.0262531116604805, -0.02764635719358921, 0.007225752808153629, 0.006368633359670639, -0.007977012544870377, -0.00010532575834076852, -0.04302669316530228, 0.0017876566853374243, 0.007102819159626961, 0.020980635657906532, -0.02925815060734749, 0.009902969002723694, 0.0007350393570959568, 0.0030152832623571157, -0.017278973013162613, -0.015667179599404335, -0.02491450496017933, -0.010770332999527454, -0.022305583581328392, 0.009021946229040623, -0.007382834330201149, -0.01984691619873047, 0.0242178812623024, 0.03548677638173103, 0.004480239935219288, -0.027018031105399132, -0.02936742454767227, -0.17429225146770477, 0.006331070326268673, 0.02189580537378788, -0.027837587520480156, 0.020830383524298668, -0.004217298701405525, 0.01656869240105152, 0.023384666070342064, 0.003052846295759082, 0.003739224513992667, 0.00047850122791714966, -0.008953649550676346, -0.0022367050405591726, -0.016254529356956482, -0.0010073710000142455, 0.01987423375248909, -0.006843293085694313, 0.005262232851237059, 0.015243742614984512, 0.007225752808153629, 0.005921292584389448, -0.022797318175435066, 0.013488526456058025, 0.022332902997732162, 0.015257402323186398, 0.03171681985259056, 0.0033533500973135233, 0.020024485886096954, -0.010476658120751381, -0.02597992680966854, 0.008475575596094131, 0.019805938005447388, 0.01651405543088913, 0.02593894861638546, -0.010292258113622665, -0.015735477209091187, -0.010845458135008812, 0.004145587794482708, -0.03802740201354027, 0.040622662752866745, 0.00963661354035139, 0.006570107769221067, 0.03130704164505005, -0.03261833265423775, -0.012436763383448124, 0.020324990153312683, 0.03592387214303017, -0.001203723018988967, 0.009226835332810879, -0.018672218546271324, 0.002516719978302717, -0.03565068915486336, -0.005385166499763727, 0.011624036356806755, 0.00022004226048011333, -0.021486027166247368, -0.02226460538804531, 0.029831839725375175, -0.0023135384544730186, 0.0006949152448214591, -0.0016621621325612068, -0.027578061446547508, 0.007628701161593199, 0.020734768360853195, -0.005265647545456886, -0.02830200269818306, -0.008489235304296017, 0.011876733042299747, -0.03644292429089546, 0.008939990773797035, 0.013864156790077686, -0.016910172998905182, -0.015284720808267593, 0.0019293715013191104, 0.006983300670981407, 0.009117561392486095, -0.01958739012479782, -0.008407278917729855, 0.004606587812304497, -0.01012151688337326, 0.0118152666836977, -0.002074501244351268, -0.0023613458033651114, 0.0010961561929434538, 0.0023681754246354103, -0.01957373134791851, -0.00993028748780489, -0.0036470245104283094, 0.009049264714121819, -0.016609668731689453, 0.01820780336856842, -0.03881963714957237, -0.0143422307446599, -0.03188072890043259, 0.006331070326268673, 0.01548960991203785, 0.03127972409129143, -0.012368466705083847, -0.0018644899828359485, -0.0006108253728598356, 0.025556489825248718, -0.022305583581328392, -0.037289801985025406, 0.010094198398292065, 0.003715320723131299, 0.006126181688159704, -0.015134468674659729, -0.01214991882443428, 0.02360321395099163, 0.023002207279205322, -0.030460167676210403, 0.01146012544631958, 0.027892224490642548, 0.015271061100065708, -0.007307708263397217, 0.0418793149292469, 0.00015345333667937666, -0.022128013893961906, -0.010538125410676003, 0.005593470297753811, 0.05518344044685364, 0.028165409341454506, -0.014424186199903488, 0.030869944021105766, -0.007000374607741833, -0.03234514594078064, -0.0883481428027153, -0.030432848259806633, -0.004319743253290653, 0.030842626467347145, 0.0018200974445790052, 0.03939332813024521, -0.014055386185646057, 0.01501153502613306, -0.018358055502176285, 0.018658559769392014, 0.002600383013486862, -0.03261833265423775, -0.01432857196778059, -0.024764252826571465, 0.007369175087660551, -0.0030357721261680126, -0.015284720808267593, -0.006860367022454739, -0.011576229706406593, 0.02458668127655983, 0.0060544703155756, -0.01681455783545971, 0.007055011577904224, -0.01012834720313549, -0.02152700535953045, -0.0043299878016114235, -0.036552201956510544, 0.024846207350492477, 0.005695914383977652, 0.008796568028628826, 0.006348144728690386, -0.005753966514021158, -0.012539207935333252, -0.001961812376976013, 0.001867904793471098, -0.00775163434445858, -0.02895764820277691, -0.0317714549601078, 0.029476700350642204, -0.037590306252241135, 0.003940698690712452, -0.00018247928528580815, -0.01012151688337326, -0.02893032878637314, -0.029831839725375175, 0.006962811574339867, -0.02261974662542343, 0.01655503176152706, 0.01079082116484642, -0.05078515782952309, -0.025187689810991287, 0.006447174120694399, -0.009943947196006775, -0.012416274286806583, 0.03297347202897072, -0.009097072295844555, -0.009800524450838566, -0.0059178778901696205, -0.0012250655563548207, 0.019163953140378, -0.012197726406157017, 0.0013215341605246067, -0.02733219414949417, 0.012361637316644192, 0.013850497081875801, -0.0012600674526765943, -0.01283288188278675, -0.014902261085808277, 0.0002635811688378453, -0.03239978104829788, -0.007860908284783363, 0.0025184275582432747, -0.01921859011054039, 0.023507598787546158, -0.005695914383977652, -0.007396493572741747, -0.017319951206445694, 0.019300544634461403, 0.009513679891824722, 0.0003828863555099815, -0.008024820126593113, -0.023521259427070618, 0.003327739192172885, -0.02259242907166481, 0.014369549229741096, 0.018317077308893204, 0.0030272351577878, 0.01954641193151474, 0.003657268825918436, -0.02629408985376358, 0.013959771953523159, 0.025433557108044624, 0.008837546221911907, 0.03212659806013107, 0.02027035318315029, -0.02052987925708294, -0.011350851505994797, -0.02223728783428669, -0.02596626803278923, 0.022046057507395744, -0.03212659806013107, -0.005528588779270649, -0.0573689229786396, -0.003985091112554073, -0.017374588176608086, -0.02969524823129177, 0.0016322825103998184, 0.01921859011054039, -0.018385374918580055, 0.013208512216806412, -0.0037562986835837364, 0.006788656115531921, -0.04155149310827255, -0.03311006352305412, -0.0030101612210273743, -0.009991753846406937, -0.027810268104076385, -0.013358763419091702, 0.02252413146197796, -0.01712872087955475, 0.022974887862801552, 0.015161787159740925, -0.00147434719838202, -0.022182650864124298, 0.013666097074747086, 0.012081622146070004, -0.012566526420414448, 0.0012242118827998638, -0.0005958855617791414, 0.010722525417804718, -0.012675800360739231, -0.020051805302500725, 0.005453462712466717, -0.008687294088304043, -0.0058154333382844925, 0.021363094449043274, -0.026417024433612823, -0.0024672052823007107, 0.008311664685606956, -0.0002015809150179848, 0.012429933995008469, 0.030514804646372795, 0.006594011560082436, -0.018412692472338676, -0.008175071328878403, -0.015353016555309296, 0.009138050489127636, 0.015721816569566727, -0.0123070003464818, -0.007212093099951744, 0.024135926738381386, 0.007205263711512089, 0.024409111589193344, 0.010244450531899929, -0.009397576563060284, -0.014287593774497509, 0.0007192458142526448, 0.00035556781222112477, -0.0029060090892016888, 0.009158538654446602, -0.002946987049654126, 0.004763669800013304, 0.029422063380479813, -0.01580377295613289, -0.004930995404720306, -0.0034848207142204046, -0.006641818676143885, -0.00824336800724268, -0.012853370979428291, 0.0168691948056221, 0.002042060485109687, -0.02017473801970482, -0.02226460538804531, -0.0014333693543449044, -8.953223004937172e-05, 0.04037679359316826, 0.011665014550089836, -0.007055011577904224, -0.012552866712212563, 0.0005664327763952315, -0.024750592187047005, 0.03327397629618645, 0.03207195922732353, 0.01951909437775612, -0.021472368389368057, 0.005463707260787487, 0.0477801188826561, 0.005412484984844923, -0.0018098530126735568, 0.0121089406311512, 0.007587722968310118, 0.019983507692813873, 0.009315620176494122, 0.0035718984436243773, -0.01925956830382347, 0.014301253482699394, 0.001674114027991891, 0.014683712273836136, -0.007526256609708071, -0.008694123476743698, 0.016787240281701088, 0.013584141619503498, 0.014588098041713238, 0.010053221136331558, 0.010312747210264206, -0.023780785501003265, -0.03983042389154434, 0.01329046767205, -0.007109649013727903, -0.030077707022428513, -0.007075500674545765, 0.02796052023768425, 0.013037770986557007, 0.013106067664921284, 0.012375296093523502, 0.009711739607155323, -0.02320709638297558, 0.0016211842885240912, -0.03237246349453926, -0.012587015517055988, -0.033902302384376526, 0.03674342855811119, -0.03005038946866989, 0.005357847549021244, 0.02895764820277691, -0.009329279884696007, 0.017060425132513046, 0.0272365789860487, 0.03379302844405174, -0.00808628648519516, -0.013877815566956997, -0.007020863704383373, -0.0006897930288687348, -0.009220005944371223, -0.00928147230297327, -0.006378877907991409, 0.0031330944038927555, -0.016732603311538696, -0.008707783184945583, 0.0021086493507027626, 0.008537041954696178, 0.08692757785320282, 0.03311006352305412, 0.000782419927418232, 0.0012216507457196712, -0.0162135511636734, 0.007007204461842775, -0.004514387808740139, -0.01329046767205, 0.021499687805771828, -0.02464131824672222, 0.01482030563056469, 0.024081289768218994, -0.0009023653692565858, -0.009493190795183182, -0.0010577394859865308, 0.001919127069413662, -0.023138798773288727, 0.026348726823925972, -0.018959064036607742, 0.029394743964076042, -0.0014256860595196486, 0.004811476916074753, -0.00573006272315979, 0.014752008952200413, -0.015230083838105202, -0.003290176158770919, 0.034148167818784714, -0.010237621143460274, -0.020707448944449425, -0.0404314324259758, -0.02358955517411232, 0.019095655530691147, -0.0048558698035776615, -0.0350496806204319, 0.010872776620090008, -0.004435847047716379, 0.0036811726167798042, -0.0276326984167099, -0.01163769606500864, -0.013413400389254093, -0.006279848515987396, 0.005962270312011242, -0.03431208059191704, -0.04682397097349167, -0.026512637734413147, -0.0006735726492479444, -0.030432848259806633, -0.015981342643499374, -0.02898496575653553], "45498fda-c622-4a9a-a1bc-4d2124f9b64d": [0.016281617805361748, 0.0068634129129350185, 0.021045958623290062, -0.019968803972005844, 0.00165716209448874, 0.022330259904265404, -0.002741222269833088, -0.015812087804079056, -0.03438611328601837, -0.008852007798850536, 0.003880521282553673, 0.0182978305965662, -0.012111092917621136, 0.017607346177101135, 0.0018073423998430371, -0.011883232742547989, 0.023863133043050766, 0.017124008387327194, -0.008548194542527199, 0.00152942247223109, -0.007560802157968283, 0.01524589117616415, 0.02202644571661949, -0.019388796761631966, -0.01269109919667244, -0.0042982641607522964, 0.01952689327299595, -0.018173543736338615, -0.014486358501017094, -0.00485755642876029, 0.023959802463650703, -0.014624455012381077, -0.011662278324365616, 0.00014014671614859253, -0.02488505095243454, -0.017289724200963974, -0.001904010190628469, 0.0057586380280554295, 0.02072833478450775, -0.020548809319734573, -0.0061487616039812565, 0.0040496899746358395, -0.0032832524739205837, -0.017745444551110268, 0.004823032300919294, 0.013112295418977737, 0.002206097124144435, -0.023296937346458435, -0.01862926408648491, 0.011109890416264534, 0.008631052449345589, 0.03816996514797211, -0.016115901991724968, -0.011303226463496685, -0.00545137282460928, 0.0235731303691864, -0.008520575240254402, 0.0036906381137669086, 0.013609443791210651, -0.016392095014452934, 0.03245275840163231, 0.03350229188799858, -0.019057363271713257, -0.01516303326934576, 0.011979901231825352, 0.006732220761477947, -0.015011126175522804, -0.00677019776776433, 0.0015907030319795012, 0.009777256287634373, 0.02714983932673931, 0.027122220024466515, 0.0011988532496616244, -0.0018280568765476346, 0.029166052117943764, -0.000657254655379802, -0.01000511646270752, 0.0020507380831986666, 0.008734624832868576, 0.0026255662087351084, -0.0029535461217164993, -0.032728951424360275, -0.008755339309573174, 0.01398921012878418, 0.01362325344234705, 0.01969260908663273, 0.004536481108516455, 0.015176842920482159, -0.014403500594198704, -0.003600875148549676, -0.015522085130214691, 0.01407206803560257, 0.010336548089981079, 0.010364167392253876, -0.0239874217659235, 0.02147405780851841, -0.023545511066913605, 0.02919367142021656, -0.0077265179716050625, 0.00014284391363617033, 0.0058967350050807, -0.0018176996381953359, -0.015632562339305878, -0.012304428033530712, -0.019002124667167664, -0.0002891402691602707, -0.0010624825954437256, 0.005023272708058357, 0.002749853301793337, 0.02007928118109703, -0.026210779324173927, 0.0455443374812603, 0.011544895358383656, -0.022551214322447777, 0.028889859095215797, -0.030795594677329063, -0.006777102593332529, -0.020286425948143005, -0.015342558734118938, -0.022385498508810997, 0.014762552455067635, -0.007263893727213144, 0.015287320129573345, -0.01488683931529522, 0.01171061210334301, -0.014058258384466171, -0.011441322974860668, -0.024429330602288246, -0.0016545727849006653, -0.013436822220683098, -0.0045295762829482555, -0.009445823729038239, 0.02285502664744854, -0.007167226169258356, 0.004791960120201111, -0.009659874252974987, -0.010405597276985645, 0.02440171130001545, -0.025630773976445198, -0.054852064698934555, 0.015259700827300549, 0.02333836629986763, -0.00379075831733644, -0.008872722275555134, -0.014900648966431618, 0.006238524802029133, 0.018339259549975395, -0.0016519834753125906, 0.011565610766410828, -0.01886402815580368, -0.017372582107782364, -0.03789377212524414, -0.016944482922554016, 0.01846354827284813, 0.02293788455426693, 0.02756412886083126, -0.026169350370764732, 0.0030743808019906282, -0.00878295861184597, -0.0036768284626305103, 0.028268422931432724, 0.01699972152709961, -0.0076367552392184734, 0.013581824488937855, 0.011082271113991737, 0.01593637466430664, 0.037451863288879395, 0.007194845471531153, 0.003467956790700555, 0.00558946980163455, -0.02902795560657978, 0.014500168152153492, -0.009777256287634373, 0.012028235010802746, 0.013878731988370419, -0.006304120644927025, 0.012912054546177387, 0.00817533303052187, 0.0011643290054053068, -0.012663479894399643, 0.02325550839304924, -0.003915045410394669, 0.003814925206825137, 0.04043475538492203, -0.01610209234058857, -0.013409202918410301, 0.028807001188397408, -0.007691993843764067, 0.014362071640789509, 0.014997316524386406, -0.001043494208715856, 0.028157945722341537, -0.01496969722211361, 0.030547020956873894, -0.6244186758995056, -0.013222772628068924, -0.0011453406186774373, -0.03620899096131325, -0.0028137231711298227, 0.01771782524883747, 0.02470552548766136, 0.011724421754479408, -0.029083194211125374, 0.03154131770133972, 0.013236582279205322, 0.013761349953711033, 0.037949010729789734, -0.009832494892179966, -0.022012636065483093, -0.010992508381605148, 0.016640668734908104, -0.035905178636312485, 0.0005433247424662113, -0.012456335127353668, -0.0037182574160397053, 0.023683607578277588, -0.0187121219933033, -0.02292407490313053, 0.024456949904561043, 0.019223080947995186, -0.013947781175374985, -0.027205077931284904, 0.010674885474145412, 0.029580343514680862, -0.020755955949425697, 0.006835793610662222, 0.0008829566650092602, -0.00693591358140111, 0.03441373258829117, -0.012946578674018383, -0.006024474743753672, 0.019167840480804443, 0.019305938854813576, 0.021833110600709915, -0.01025369018316269, -0.002622113795951009, -0.006414598319679499, 0.014293023385107517, 0.02253740467131138, 0.001035726279951632, 0.035187073051929474, 0.00862414762377739, -0.00979797076433897, -0.018822599202394485, 0.01235966756939888, -0.012256094254553318, -0.0008428222499787807, -0.016557810828089714, 0.02016213908791542, -0.013637063093483448, 0.026984121650457382, -0.009970591403543949, 0.0069807954132556915, -0.02188834920525551, 0.0039979033172130585, -0.015038745477795601, -0.0019057363970205188, -0.011282511986792088, -0.014859220013022423, 0.005202798638492823, -0.011468942277133465, -0.0008316019084304571, 0.01724829524755478, -0.018560215830802917, -0.002086988417431712, 0.013395393267273903, -0.018435928970575333, -0.007236274424940348, 0.006856508087366819, 0.009942972101271152, 0.008948675356805325, -0.007671279367059469, 0.002437409246340394, 0.004236120730638504, 0.017510678619146347, 0.006297215819358826, 0.017676396295428276, -0.007105082273483276, 0.02488505095243454, -0.0036353992763906717, -0.03352991119027138, -0.01798020862042904, -0.003184858476743102, 0.0004919699858874083, 0.008306524716317654, 0.0018591287080198526, -0.015881136059761047, -0.01593637466430664, -0.0025444342754781246, 0.0166682880371809, 0.018256401643157005, 0.015259700827300549, 0.013436822220683098, -0.028972717002034187, -0.007940568029880524, -0.0075193727388978004, 0.012753243558108807, -0.010764649137854576, 0.02985653653740883, 0.01675114594399929, -0.011468942277133465, 0.012380382046103477, 0.04507480934262276, 0.0026635427493602037, 0.01541160698980093, -0.016295427456498146, -0.02333836629986763, 0.008209857158362865, 0.002820627996698022, -0.02894509769976139, 0.014417310245335102, -0.00508196372538805, 0.021184055134654045, -0.01853259652853012, 0.020024042576551437, 0.018670693039894104, -0.0005170000367797911, -0.02308979071676731, -0.008921056054532528, 0.03593279793858528, -0.011102985590696335, -0.007250084076076746, -0.015287320129573345, 0.006635553203523159, 0.012877530418336391, -0.02528553083539009, 0.0256031546741724, -0.006338644772768021, -0.014900648966431618, -0.006618291139602661, 0.023214079439640045, 0.0012316511711105704, -0.019098792225122452, -0.0199135635048151, 0.00019549333956092596, -0.018601644784212112, 0.0015976078575477004, -0.0219573974609375, -0.002404611324891448, 0.0008458431693725288, -0.03684423863887787, -0.02064547687768936, -0.021184055134654045, -0.007616040762513876, 0.001848771469667554, 0.004432908724993467, -0.02277216874063015, 0.00500255823135376, -0.003400634741410613, 0.0028258066158741713, 0.01999642327427864, -0.013664682395756245, -0.032646093517541885, -0.0025841370224952698, 0.010557503439486027, 0.03466230630874634, -0.037120431661605835, 0.005599827039986849, -0.03935759887099266, -0.004008260555565357, -0.02252359502017498, 0.04275478050112724, -0.0058932825922966, -0.04620720446109772, 0.009038438089191914, -0.009673683904111385, 0.009763446636497974, -0.005882925353944302, 0.005030177533626556, 0.0022354426328092813, -0.020065471529960632, 0.001952344086021185, 0.0029828916303813457, -0.007650564890354872, -0.008686291053891182, -0.0024650285486131907, 0.015466846525669098, -0.008755339309573174, 0.03181751072406769, -0.005706851836293936, 0.019885944202542305, -0.006418050732463598, -0.0014413857134059072, 0.011745136231184006, 0.016392095014452934, 0.008672481402754784, -0.011883232742547989, 0.002152584493160248, -0.02333836629986763, 0.013768254779279232, 0.012829196639358997, -0.007326037157326937, 0.020217377692461014, 0.04043475538492203, 0.026542212814092636, -0.012249189428985119, -0.006076260935515165, -0.0030933693051338196, 0.004360407590866089, -0.04985295981168747, 0.029331767931580544, 0.010260595008730888, 0.02228882908821106, 0.007181035820394754, 0.014955887570977211, -0.01698591187596321, -0.022910265251994133, -0.024346472695469856, 0.008858912624418736, 0.013063960708677769, -0.00017531825869809836, 0.007712708320468664, -0.018988315016031265, 0.030353685840964317, 0.00617638137191534, 0.012981102801859379, 0.014790171757340431, -0.02146024815738201, -0.0058587584644556046, 0.012628955766558647, 0.011738231405615807, 0.016723526641726494, 0.006024474743753672, -0.033308956772089005, -0.02170882374048233, -0.006576862186193466, 0.023863133043050766, 0.0024650285486131907, 0.031099408864974976, 0.0006857371190562844, -0.002390801440924406, -0.02603125385940075, 0.03734138607978821, -0.0017546929884701967, 0.007643660064786673, 0.017027340829372406, 0.002095619449391961, -0.028157945722341537, 0.03482802212238312, -0.002088714623823762, 0.03913664445281029, -0.001353349070996046, -0.004253382794559002, 0.014914458617568016, 0.0008212446700781584, -0.005137202329933643, -0.0004842020571231842, -0.015798278152942657, 0.012256094254553318, 0.006397336255759001, 0.011593230068683624, 0.004909342620521784, 0.014458739198744297, 0.01252538338303566, -0.0019644275307655334, 0.022219780832529068, 0.020231187343597412, 0.013084675185382366, 0.016143521293997765, -0.007429610006511211, -0.016709716990590096, -0.01659923978149891, -0.014279212802648544, -0.004902437794953585, -0.013975400477647781, -0.02993939444422722, -0.008051046170294285, -0.004836841952055693, 0.014527787454426289, -0.0005273573333397508, 0.0235731303691864, -0.0030933693051338196, -0.006556147709488869, -0.0020369284320622683, -0.01635066606104374, -0.007395085878670216, -0.01069559995085001, 0.02267550118267536, -0.005958878435194492, 0.002739496063441038, -0.0048955329693853855, 0.016875434666872025, 0.01162775419652462, 0.017303533852100372, -0.011890137568116188, 0.0029915228951722383, -0.01985832490026951, 0.017994018271565437, -0.02105976827442646, -0.005775900557637215, 0.03090607188642025, -0.013547300361096859, -0.035739462822675705, -0.008196047507226467, -0.0076367552392184734, 0.021860729902982712, -0.0111858444288373, -0.010992508381605148, 0.05960259586572647, 0.002342467661947012, 0.004964581225067377, -0.015218271873891354, -0.024360282346606255, -0.017275914549827576, 0.006998057477176189, -0.027702225372195244, -0.02480219304561615, -0.002421873388811946, 0.0031745010055601597, -0.02308979071676731, 0.01798020862042904, -0.0015328748850151896, 0.023545511066913605, 0.00013432075502350926, -0.012463239952921867, -0.026224590837955475, -0.027950800955295563, 0.01516303326934576, 0.07622945308685303, 0.02716364897787571, 0.0022199067752808332, 0.010129403322935104, 0.013029436580836773, -0.018670693039894104, -0.03236990049481392, -0.022634072229266167, 0.030519401654601097, -0.02057642862200737, -0.007609135936945677, 0.021695014089345932, 0.0045951721258461475, 0.00677019776776433, 0.007498658262193203, 0.0223578792065382, 0.006507813464850187, -0.025023147463798523, 0.004964581225067377, -0.03758995980024338, -0.003129619639366865, 0.00845843181014061, 0.022785978391766548, 0.020534999668598175, 0.020949291065335274, -0.007256988901644945, 0.03651280328631401, 0.013512776233255863, 0.019706418737769127, -0.041843343526124954, -0.028586046770215034, 0.011779660359025002, 0.031845130026340485, 0.041346192359924316, -0.021929778158664703, 0.04267192259430885, -0.0037079001776874065, 0.006811626721173525, 0.013360869139432907, 0.011903947219252586, 0.020797384902834892, 0.007933663204312325, 0.01608828268945217, 0.010343452915549278, -0.011669183149933815, 0.0050370823591947556, -0.0033333124592900276, 0.025244101881980896, -0.03082321397960186, -0.024857431650161743, 0.005216608289629221, -0.01325039193034172, -0.02927652932703495, 0.004236120730638504, 0.013602538965642452, -0.009224869310855865, -0.015756849199533463, -0.006369716953486204, 0.006021022330969572, 0.009100581519305706, -0.020631667226552963, -0.02325550839304924, 0.005140654742717743, 0.006324835121631622, 0.01878117024898529, -0.005202798638492823, -0.010143212974071503, 0.02804746851325035, -0.03115464746952057, -0.01844973862171173, -0.00390468817204237, -0.02262026257812977, -0.029055574908852577, -0.007691993843764067, 0.013858017511665821, 0.011544895358383656, 0.006601029075682163, 0.0036146847996860743, -0.0117934700101614, 0.0016235009534284472, -0.01568780094385147, -0.04278239980340004, -0.0008592212689109147, -0.007326037157326937, -0.009873923845589161, -0.004981843288987875, -0.0012730802409350872, -0.021501677110791206, 0.01171061210334301, 0.03645756468176842, 0.0014474275521934032, 0.006887579802423716, -0.01625399850308895, -0.0030864644795656204, 0.0028154493775218725, 0.00026432599406689405, 0.010522979311645031, 0.01912641152739525, 0.003642304101958871, -0.0062661441043019295, 0.0054686348885297775, 0.008265095762908459, 0.014652074314653873, -0.03955093398690224, 0.0026721737813204527, 0.02001023292541504, -0.01601923257112503, 0.008520575240254402, -0.0182978305965662, 0.0002958293189294636, 0.04162238910794258, -0.015314939431846142, 0.02041071280837059, 0.025396008044481277, 0.008962485007941723, 0.016557810828089714, 0.012290618382394314, 0.01586732640862465, 0.025409817695617676, 0.0035559935495257378, 0.01806306652724743, -0.04383193701505661, -0.006328287534415722, 0.02065928652882576, -0.04537862166762352, 0.014790171757340431, 0.0003635830944404006, -0.012104188092052937, -0.035325173288583755, 0.010495360009372234, 0.007201750297099352, 0.02105976827442646, -0.004678030498325825, -0.008244381286203861, -0.008555099368095398, -0.011475847102701664, 0.004142905119806528, -0.010384882800281048, -0.008582718670368195, -0.014141116291284561, 0.023283127695322037, -0.021101197227835655, -0.008734624832868576, -0.026293639093637466, -0.004854104015976191, -0.02830985188484192, -0.0006632963777519763, -0.0013015627628192306, 0.003942664712667465, 0.012615146115422249, 0.013077770359814167, -0.014444929547607899, 0.013933971524238586, 0.016613049432635307, -0.002073178766295314, -0.023614559322595596, 0.0006378347752615809, -0.011116795241832733, 0.0006382663268595934, 0.007084367796778679, 0.026970311999320984, 0.005182083696126938, 0.023117411881685257, 0.018518786877393723, -0.010384882800281048, -0.001576893264427781, -0.0027343174442648888, -0.009473443031311035, -0.012670384719967842, 0.001011559390462935, 0.017193056643009186, -0.006304120644927025, 0.004263740032911301, 0.01061964686959982, 0.019333558157086372, 0.04319669306278229, -0.0007314817048609257, 0.003417896805331111, -0.021322151646018028, -0.04278239980340004, -0.008057950995862484, 0.004909342620521784, -0.004011713434010744, 0.017911160364747047, -0.03016035072505474, 0.0006628648261539638, 0.039247121661901474, 0.020838813856244087, -0.01251847855746746, 0.007367466576397419, 0.009079867042601109, -0.009390585124492645, 0.023034552112221718, 0.034855641424655914, 0.0223716888576746, -0.02267550118267536, -0.0017477881629019976, -0.055984459817409515, 0.01643352396786213, 0.014265403151512146, -0.008720815181732178, 0.019084982573986053, 0.006462932098656893, 0.023545511066913605, 0.0060417368076741695, -0.00025483182980678976, 0.008686291053891182, -0.006918651517480612, 0.01459683571010828, -0.0025927680544555187, -0.013264201581478119, -0.014928268268704414, -0.031127028167247772, -0.01643352396786213, 0.007084367796778679, 0.007919853553175926, 0.03187274932861328, 0.015480656176805496, -0.007954377681016922, -0.022979313507676125, 0.00398409366607666, -0.026735547930002213, 0.028751762583851814, 0.035905178636312485, 0.029884155839681625, 0.05164821818470955, -0.01593637466430664, -0.022730739787220955, 0.0051441071555018425, 0.012594431638717651, -0.012511573731899261, 0.023296937346458435, -0.0019229984609410167, -0.023296937346458435, -0.003162417560815811, -0.029580343514680862, 0.011655373498797417, -0.006103880237787962, -0.016792574897408485, -0.0006425818428397179, 0.016461143270134926, -0.01641971431672573, -0.01532874908298254, 0.003504207357764244, -0.043307170271873474, 0.035408031195402145, -0.020286425948143005, 0.003728614654392004, -0.012718718498945236, -0.01069559995085001, -0.003083012066781521, 0.020880242809653282, -0.0024512188974767923, 0.018256401643157005, 0.018366878852248192, -0.006915199104696512, -0.018201163038611412, -0.02952510491013527, -0.01740020141005516, -0.013271106407046318, -0.011399894021451473, 0.01675114594399929, -0.01904355362057686, 0.0073191323317587376, 0.02430504374206066, -0.012718718498945236, -0.00693246116861701, -0.01081298291683197, -0.017469249665737152, 0.03002225235104561, -0.02097691036760807, -0.014624455012381077, -0.004004808142781258, 0.007067105732858181, -0.009625350125133991, -0.01798020862042904, -0.00684960326179862, -0.007312227506190538, -0.004612434655427933, -0.014638264663517475, -0.007836995646357536, 0.022703120484948158, -0.02813032642006874, 0.008727720007300377, -0.0015803456772118807, -0.006349002011120319, 0.019140221178531647, -0.0065147182904183865, 0.0038218300323933363, -0.028586046770215034, 0.02342122420668602, -0.02163977548480034, -0.03165179491043091, 0.002342467661947012, 0.013878731988370419, -0.01635066606104374, 0.01741401106119156, 0.026556022465229034, -0.0007824049098417163, 0.010094879195094109, -0.0044812425039708614, -0.0016632038168609142, -0.02405647002160549, 0.020852623507380486, -0.022302638739347458, -0.021253103390336037, 0.03504897654056549, 0.002566874958574772, -0.007408895529806614, -0.021335961297154427, 0.007098177447915077, -0.0044398135505616665, -0.0317070335149765, -0.013561110012233257, 0.023448843508958817, 0.011924661695957184, 0.018159734085202217, -0.012870625592768192, -0.041263334453105927, 0.02050738036632538, -0.01731734350323677, 0.004156714770942926, 0.019402606412768364, 0.006666624918580055, 0.020065471529960632, 0.0001925803517224267, -0.015798278152942657, -0.004060047212988138, -0.04035189747810364, -0.012773958034813404, 0.009238678961992264, 0.0252164825797081, -0.016792574897408485, 0.0002777041227091104, -0.02326931804418564, -0.011696802452206612, -0.02219216153025627, -0.00744341965764761, 0.004819579888135195, -0.025547916069626808, -0.028268422931432724, 0.015273510478436947, 0.01643352396786213, -0.010750838555395603, 0.002972534392029047, -0.011862518265843391, -0.019319748505949974, 0.01333324983716011, -0.06595505028963089, -0.0044156466610729694, 0.0003918497823178768, 0.032563235610723495, 0.01053678896278143, -0.006970438174903393, -0.007291513029485941, 0.0029052123427391052, -0.031845130026340485, -0.011558705940842628, -0.017179246991872787, 0.011765850707888603, 0.02603125385940075, -0.021915968507528305, -0.008140808902680874, 0.02601744420826435, -0.008520575240254402, 0.003970284014940262, -0.003994450904428959, 0.00890724640339613, -0.02478838339447975, 0.0252026729285717, -0.004336240701377392, 0.010488455183804035, -0.018822599202394485, -0.007284608203917742, 0.016447333618998528, -0.020383093506097794, 5.4888099839445204e-05, -0.014417310245335102, -0.015508275479078293, -0.02448456920683384, -0.010951079428195953, -0.01541160698980093, 0.010723219253122807, 0.008106284774839878, 0.00999821163713932, -0.011662278324365616, -0.012138712219893932, 0.010143212974071503, 0.00980487558990717, -0.005699947010725737, -0.01926450990140438, -0.002223359188064933, -0.00648364657536149, 0.009577015414834023, -0.011448227800428867, -0.0038425445090979338, 0.011123700067400932, -0.004747078754007816, 0.028751762583851814, -0.011524180881679058, 0.018090685829520226, -0.008037236519157887, 0.002575505990535021, 0.00943201407790184, -0.019098792225122452, 0.018767360597848892, -0.021405009552836418, 0.00020218240388203412, 0.0049852957017719746, -0.003392003709450364, 0.01451397780328989, -0.014417310245335102, 0.011890137568116188, -0.023241698741912842, -0.013395393267273903, -0.03162417560815811, 0.006494003813713789, -0.014417310245335102, 0.005765542853623629, 0.036236610263586044, -0.013312535360455513, -0.0024840168189257383, -0.0006753798807039857, 0.012856815941631794, 0.0004924015374854207, -0.018518786877393723, -0.0006680434453301132, 0.00011500877735670656, 0.0024961004965007305, -0.0034921239130198956, 0.004446718376129866, 0.009908447973430157, -0.01235276274383068, 0.011586325243115425, -0.050046294927597046, 0.016792574897408485, 0.21322152018547058, 0.0020662739407271147, 0.04535100236535072, 0.027688415721058846, 0.022136922925710678, 0.04026903957128525, 0.03267371281981468, 0.005416848696768284, -0.004035880323499441, 0.01960975117981434, -0.005806972272694111, 0.013940876349806786, -0.04137381166219711, 0.006939365994185209, 0.0017814491875469685, -0.0011047747684642673, -0.016820194199681282, -0.05051582306623459, 0.0002753305889200419, 9.618228796171024e-05, 0.012739433906972408, 0.0010909650009125471, -0.02666649967432022, -0.01593637466430664, 0.040793806314468384, 6.591966666746885e-05, -0.0025444342754781246, 0.019292129203677177, 0.010032735764980316, 0.00029151380294933915, -0.01090274564921856, 0.017593536525964737, 0.0017797229811549187, -0.008976294659078121, -0.016323046758770943, -0.0030070587527006865, 0.02619696967303753, 0.003880521282553673, 0.009003913961350918, -0.03098893165588379, 0.012276808731257915, 0.007719613146036863, -0.024995528161525726, -0.011434418149292469, -0.011386084370315075, 0.03308800235390663, -0.03714805096387863, 0.007878424599766731, 0.0033609317615628242, 0.013043246231973171, -0.011986806057393551, -0.003583613084629178, 0.021612156182527542, 0.016626859083771706, 0.018836408853530884, -0.020783575251698494, 0.0067736501805484295, 0.006894484627991915, 0.003569803200662136, 0.007616040762513876, -0.031044170260429382, 0.0077265179716050625, -0.007243179250508547, 0.012028235010802746, -0.01389944739639759, -0.008665576577186584, -0.026072682812809944, 0.0019488916732370853, -0.0006883264286443591, -0.011482751928269863, -0.006597576662898064, -0.04327955096960068, -0.00699460506439209, 0.0005195893463678658, -0.022233590483665466, -0.02692888304591179, 0.023876944556832314, 0.021667394787073135, 0.017938779667019844, 0.02797842025756836, -0.024539807811379433, -0.014679694548249245, -0.0199135635048151, -0.015093985013663769, 0.007850805297493935, -0.02706698141992092, 0.048665326088666916, -0.02764698676764965, 0.01610209234058857, 0.01896069571375847, -0.018242591992020607, 0.003233192255720496, 0.010882031172513962, 0.0006594124133698642, 0.02708079107105732, 0.01650257222354412, -0.005140654742717743, 0.019941182807087898, -0.01325039193034172, 0.01032273843884468, -0.004598624538630247, 0.04965962469577789, 0.026169350370764732, 0.009024628438055515, 0.012580621987581253, -0.02423599548637867, 0.008078665472567081, 0.026473164558410645, 0.03308800235390663, -0.026210779324173927, -0.013830398209393024, -0.024512188509106636, -0.006283406168222427, -0.02007928118109703, 0.017676396295428276, 0.014845410361886024, 0.011579420417547226, -0.017938779667019844, 0.0075193727388978004, -0.00522351311519742, -0.00845152698457241, 0.0006939365994185209, -0.012166331522166729, 0.013650872744619846, -0.007464134134352207, -0.007816281169652939, -0.019720228388905525, -0.005206251051276922, -0.02340741455554962, -0.02839270979166031, 0.041511911898851395, -0.02603125385940075, -0.005931259132921696, -0.015549704432487488, -0.014762552455067635, -0.043914794921875, -0.0072707985527813435, -0.02285502664744854, 0.012297523207962513, -0.0042671924456954, -0.027909372001886368, 0.01904355362057686, -0.014665883965790272, 0.005948521196842194, 0.005016367882490158, -0.039965227246284485, 0.01068869512528181, 0.0028258066158741713, 0.009390585124492645, -0.0028637831564992666, 0.005209703464061022, 0.015963993966579437, 0.00308819068595767, -0.02699793130159378, -0.013471346348524094, -0.021902158856391907, -0.002829259028658271, -0.03140322118997574, 0.011455132625997066, 0.002594494493678212, -0.01804925687611103, 0.0101639274507761, 0.038998547941446304, 0.007018771953880787, -0.028185565024614334, -0.018670693039894104, -0.17610108852386475, 0.006307573057711124, 0.017855921760201454, -0.017704015597701073, 0.01698591187596321, -0.00845152698457241, 0.034027062356472015, 0.01789735071361065, -0.006286858581006527, 0.014472548849880695, -0.007042938843369484, 0.021515486761927605, -0.027011742815375328, -0.022661691531538963, -0.020148329436779022, 0.018836408853530884, -0.0020576429087668657, 0.006649362854659557, 0.017041150480508804, 0.027053171768784523, 0.002981165423989296, -0.02390456385910511, 0.014914458617568016, 0.034165158867836, -0.008347953669726849, 0.03082321397960186, -0.0011513824574649334, 0.01496969722211361, -0.01788354106247425, -0.020686905831098557, 0.01952689327299595, 0.018284020945429802, 0.021418819203972816, 0.01764877699315548, -0.0042568352073431015, 0.018601644784212112, 0.0008717363234609365, -0.015646371990442276, -0.039854746311903, 0.027467461302876472, 0.006701149046421051, 0.0041636195965111256, 0.028503187000751495, -0.013595634140074253, -0.02275835908949375, 0.005106130614876747, 0.024332663044333458, -0.011462037451565266, 0.002000677864998579, -0.03974426910281181, 0.014141116291284561, -0.03220418468117714, -0.009763446636497974, -0.01415492594242096, 0.02985653653740883, -0.022634072229266167, -0.012028235010802746, 0.007450324483215809, 0.015825897455215454, 0.01243562065064907, 0.009128200821578503, -0.02147405780851841, 0.00825128611177206, 0.024291234090924263, -0.014023734256625175, -0.02789556235074997, -0.004567552823573351, 0.001170370727777481, -0.027550319209694862, 0.006559600122272968, 0.011192749254405499, 0.0029967015143483877, -0.00530637102201581, 0.014210164546966553, 0.006241977214813232, 0.021115006878972054, -0.008410097099840641, -0.04258906468749046, 0.0020196663681417704, -0.01434826198965311, 0.008030331693589687, 0.00031870161183178425, -0.0235869400203228, -0.006645910441875458, -0.006438765209168196, -0.0046883877366781235, -0.010702504776418209, -0.005095773376524448, 0.004902437794953585, -0.002820627996698022, 0.024816002696752548, -0.04935581237077713, 0.004892080556601286, -0.02129453234374523, 0.008292715065181255, 0.015604943037033081, 0.017952589318156242, -0.01625399850308895, 0.01659923978149891, -0.00440874183550477, 0.030547020956873894, 0.005358157213777304, -0.034689925611019135, -0.014555406756699085, -0.0041636195965111256, 0.015756849199533463, -0.01570161059498787, -0.0011418882058933377, 0.034689925611019135, 0.013561110012233257, -0.021184055134654045, 0.03283942863345146, 0.013160629197955132, -0.00603828439489007, 0.008430812507867813, 0.03040892444550991, 0.008568909019231796, -0.01887783780694008, 0.005175178870558739, -0.000932153663598001, 0.057061612606048584, 0.003184858476743102, -3.206975452485494e-05, 0.02603125385940075, -0.002204370917752385, -0.030629878863692284, -0.10970412939786911, -0.03863949701189995, -0.002373539377003908, 0.018919266760349274, 0.010674885474145412, 0.0030795594211667776, -0.009217964485287666, 0.03375086933374405, -0.01305705588310957, 0.007954377681016922, 0.015107794664800167, -0.01789735071361065, -0.013885636813938618, -0.018284020945429802, 0.00927320308983326, 0.002030023606494069, -0.02789556235074997, 0.010944174602627754, -0.006998057477176189, 0.01822878234088421, 0.00995678175240755, 0.004101476166397333, 0.008886531926691532, -0.006100427825003862, -0.012898244895040989, -0.004947319161146879, -0.03165179491043091, 0.013892541639506817, 0.011807279661297798, 3.8489099097205326e-05, -0.003512838389724493, -0.015453035943210125, 0.004757435992360115, -0.029497485607862473, -0.018808789551258087, 0.0018832955975085497, -0.022578833624720573, -0.015756849199533463, 0.03698233515024185, -0.031265124678611755, 0.0038598065730184317, -0.001864307327196002, 0.014375881291925907, -0.025630773976445198, -0.02245454676449299, 0.009397489950060844, -0.02074214443564415, -0.0029690819792449474, 0.015204462222754955, -0.018601644784212112, -0.030464163050055504, 0.019333558157086372, -0.015756849199533463, -0.001848771469667554, 0.021197864785790443, -0.006031379569321871, -0.011020127683877945, -0.01912641152739525, 0.0011910852044820786, 0.037037573754787445, -0.01764877699315548, 0.0013602538965642452, -0.011682992801070213, 0.0170687697827816, 0.010060355067253113, 0.01532874908298254, -0.004315526224672794, -0.013595634140074253, 0.016889244318008423, -0.02960796281695366, 0.005551492795348167, 0.019899753853678703, -0.026873644441366196, 0.029083194211125374, -0.019982613623142242, 0.004767793230712414, -0.0037493291310966015, 0.02325550839304924, 0.007961282506585121, -0.00890724640339613, -0.017455440014600754, -0.014583026058971882, -0.016792574897408485, -0.016474952921271324, 0.01879497990012169, 0.017289724200963974, -0.003752781543880701, 0.009646064601838589, 0.01659923978149891, -0.007464134134352207, -0.004508861806243658, 0.010108688846230507, 0.0016701086424291134, 0.004926604684442282, 0.026473164558410645, -0.0027533057145774364, 0.0014353439910337329, -0.006528527941554785, 0.0015112973051145673, 0.01641971431672573, -0.03645756468176842, -0.011765850707888603, -0.05018439143896103, 0.003825282445177436, -0.021363580599427223, -0.042423348873853683, 0.0019229984609410167, 0.015259700827300549, -0.0030156897846609354, -0.003107178956270218, -0.00364920892752707, -0.012456335127353668, -0.033391814678907394, 0.0018349618185311556, -0.003908140584826469, -0.02260645292699337, -0.008182237856090069, -0.020148329436779022, 0.013892541639506817, -0.00020250606758054346, 0.01781449280679226, 0.01142751332372427, 0.019057363271713257, -0.02260645292699337, 0.021418819203972816, -0.001689097029156983, -0.0066321007907390594, -0.01243562065064907, -0.020783575251698494, 0.020051661878824234, -0.02969082072377205, 0.001186769688501954, -0.0013956412440165877, -0.003276347415521741, 0.016474952921271324, 0.020963100716471672, -0.005358157213777304, 0.00882438849657774, 0.007988901808857918, 0.005579112563282251, 0.012021330185234547, 0.03132036328315735, -0.004968033637851477, -0.02293788455426693, -0.011738231405615807, -0.028199374675750732, -0.00671150628477335, 0.02546505816280842, -0.011827994138002396, -0.006207453086972237, 0.01480398140847683, 0.0040980237536132336, 0.027716035023331642, 0.009611540473997593, 0.009259393438696861, -0.020106900483369827, -0.0015570418909192085, -0.011109890416264534, -0.010522979311645031, -0.001744335750117898, -0.002687709638848901, 0.0037562339566648006, 0.01608828268945217, -0.01960975117981434, -0.015273510478436947, -0.0008380751824006438, -0.014679694548249245, -0.0033592055551707745, -0.00816842820495367, 0.019582131877541542, 0.007167226169258356, -0.022578833624720573, 0.006469836924225092, -0.0018470452632755041, 0.0005916586378589272, 0.037286147475242615, 0.007602231111377478, -0.0012221570359542966, -0.010115593671798706, 0.010371072217822075, -0.02774365432560444, 0.04051761329174042, 0.019402606412768364, 0.002699793316423893, -0.0199273731559515, 0.01969260908663273, 0.039164263755083084, -0.015425416640937328, 0.01389944739639759, -0.011006318032741547, 0.002109429333359003, 0.009611540473997593, 0.009342251345515251, 0.005075058899819851, -0.027191268280148506, -0.0002132948866346851, -0.005938163958489895, 0.015977803617715836, 0.00471600703895092, -0.0060175699181854725, 0.016226379200816154, 0.006469836924225092, -0.020604047924280167, 0.015466846525669098, 0.019098792225122452, -0.015218271873891354, -0.026542212814092636, 0.019568322226405144, 0.009590825997292995, -0.02373884618282318, -0.0014077246887609363, 0.020203568041324615, 0.008472241461277008, 0.02007928118109703, 0.0026514593046158552, 0.009211059659719467, -0.023807894438505173, 0.009293917566537857, -0.0272465068846941, 0.004187786485999823, -0.02455361746251583, 0.011448227800428867, -0.007153416518121958, 0.00898319948464632, 0.021833110600709915, -0.0015492739621549845, 0.008934865705668926, 0.028862239792943, 0.05244918167591095, -0.0029828916303813457, -0.03836330398917198, 0.01231823768466711, -0.013133009895682335, 0.004104928579181433, 0.00247020716778934, -0.02050738036632538, -0.002687709638848901, -0.04187096282839775, -0.016143521293997765, 0.00870700553059578, -4.183363125775941e-05, 0.08186380565166473, 0.013077770359814167, -0.004640053957700729, -0.007118891924619675, -0.026901263743638992, -0.010516074486076832, 0.006549242418259382, -0.003966831602156162, 0.016847815364599228, -0.011033937335014343, 0.006328287534415722, 0.017786873504519463, 0.0038632589858025312, -0.021736443042755127, -0.03328133746981621, 0.03604327514767647, -0.04524052515625954, 0.031762272119522095, -0.01625399850308895, 0.023531701415777206, 0.018587835133075714, 0.005630898755043745, 0.01069559995085001, 0.0042671924456954, -0.012055854313075542, 0.002827532822266221, 0.031209886074066162, -0.00952177681028843, -0.022993123158812523, -0.02757793851196766, -0.017427820712327957, 0.022136922925710678, -0.009618445299565792, -0.03471754491329193, 0.0009416477987542748, 0.016861625015735626, 0.020231187343597412, -0.026445545256137848, 0.008272000588476658, 0.0030571187380701303, -0.0062247151508927345, -0.007025676779448986, -0.03181751072406769, -0.023379795253276825, -0.020300235599279404, -0.016737336292862892, -0.023600749671459198, -0.010661075823009014, -0.03535279259085655], "53b70118-7161-41bf-9e8c-8c33daf2307b": [0.02618618682026863, 0.006480908486992121, 0.01619536243379116, -0.02340865507721901, 0.007040560245513916, 0.024251587688922882, -0.0033700033091008663, -0.02794114500284195, -0.034131862223148346, -0.011987607926130295, -0.0012928997166454792, 0.009472628124058247, -0.013514559715986252, 0.007044014986604452, -0.001762731117196381, -0.0059419842436909676, 0.023906122893095016, 0.005655249115079641, -0.008063134737312794, -0.0010009824763983488, -0.022316986694931984, 0.0068885562941432, 0.028770258650183678, -0.011801057495176792, -0.009134073741734028, -0.0028759895358234644, 0.019525635987520218, -0.026282915845513344, -0.007227111142128706, -0.00821513868868351, 0.023450110107660294, -0.010087554343044758, -0.010343197733163834, -0.007123471703380346, -0.010605750605463982, -0.007227111142128706, 0.001369765610434115, 0.006311630830168724, 0.02013365365564823, -0.020714033395051956, 0.010142829269170761, 0.013486922718584538, -0.0014440403319895267, -0.025771629065275192, -0.010149737820029259, 0.019276902079582214, 0.00024592733825556934, -0.035292621701955795, -0.01681719720363617, -5.176565173314884e-05, 0.017991775646805763, 0.04388777166604996, -0.023463929072022438, 0.007406752556562424, 0.005834890529513359, 0.027692411094903946, -0.006574183702468872, -0.00023923395201563835, 0.00893370434641838, -0.008028588257730007, 0.033800218254327774, 0.027775321155786514, -0.014025846496224403, -0.003155815415084362, 0.0020399661734700203, 0.005430697463452816, -0.01598808355629444, -0.004176662303507328, -0.002128059510141611, 0.00842241756618023, 0.020271839573979378, 0.03391076624393463, 0.004781224764883518, -0.006000712979584932, 0.04330739378929138, -0.007579484488815069, -0.01162832509726286, -0.019456543028354645, 0.018019413575530052, -0.0006451543886214495, -0.0015994992572814226, -0.02474905550479889, -0.0003787151363212615, 0.011490139178931713, 0.0013343554455786943, 0.0066605499014258385, -0.0029053539037704468, 0.03324747458100319, -0.010046099312603474, -0.015200424939393997, -0.017853589728474617, 0.005910892505198717, -0.006159626878798008, 0.020050741732120514, -0.013362554833292961, 0.01923544704914093, -0.0003290546592324972, 0.012858177535235882, -0.0038173794746398926, -0.009396626614034176, -0.0003204180393368006, 0.003934837412089109, -0.02018892765045166, -0.010474474169313908, -0.01864124834537506, -0.00644981674849987, 0.01086830347776413, 0.017245572060346603, 0.011220676824450493, -0.008643514476716518, -0.019525635987520218, 0.05049304664134979, 0.004522126168012619, -0.016361184418201447, 0.01843396946787834, -0.03421477600932121, 0.0020106015726923943, -0.027637135237455368, -0.013811659067869186, -0.026946207508444786, 0.02052057348191738, -0.002062421292066574, 0.015324791893362999, -0.0014509496977552772, 0.007620940450578928, -0.02796878106892109, -0.012063609436154366, -0.031147051602602005, -0.00982500147074461, -0.015946626663208008, 0.008311868645250797, -0.0008062270935624838, 0.015559707768261433, -0.002451068488880992, 0.004549763631075621, 0.0006719278753735125, -0.02946118637919426, 0.012865087017416954, -0.026407282799482346, -0.03236308693885803, 0.01691392809152603, 0.008892248384654522, 0.0072616576217114925, 0.0009638451156206429, -0.014702956192195415, 0.009901003912091255, 0.0023301560431718826, 0.008733334951102734, -0.003585918340831995, -0.0057450695894658566, -0.012775266543030739, -0.026697473600506783, -0.011296679265797138, 0.023906122893095016, 0.028024055063724518, 0.02794114500284195, -0.018351057544350624, 0.005247601307928562, -0.003454641904681921, -0.009002797305583954, 0.031008867546916008, 0.00045946738100610673, -0.015532070770859718, 0.015739349648356438, 0.014813505113124847, 0.023187557235360146, 0.04952574893832207, 0.02340865507721901, 0.011193039827048779, 0.004294120240956545, -0.021460236981511116, 0.01601571962237358, -0.016623737290501595, 0.019041987136006355, 0.026282915845513344, -0.01846160739660263, 0.01191160548478365, 0.003380367299541831, -0.005855618044734001, -0.009534811601042747, 0.017259391024708748, -0.004525580909103155, 0.001984691945835948, 0.03275000676512718, -0.008684970438480377, -0.00016873766435310245, 0.020838400349020958, -0.0027188032399863005, 0.0007889538537710905, 0.014191669411957264, -0.0024977060966193676, 0.03404895216226578, 0.003078086068853736, 0.031533971428871155, -0.6257047653198242, 0.0017791406717151403, -0.021156227216124535, -0.038249798119068146, 0.010177375748753548, 0.012160340324044228, 0.00888533890247345, 0.0042077540419995785, -0.02912954054772854, 0.04604347050189972, 0.02018892765045166, 0.005365059245377779, 0.035983551293611526, -0.009845729917287827, -0.010412290692329407, -0.016236817464232445, 0.014772049151360989, -0.03819452226161957, -0.014081120491027832, 0.014979328028857708, -0.0034010950475931168, 0.008878430351614952, -0.019898738712072372, -0.01339019276201725, 0.02379557490348816, 0.03134051337838173, -0.001460449886508286, -0.015421521849930286, 0.005365059245377779, 0.04073713719844818, -0.02147405408322811, -0.00562761165201664, -0.0036584658082574606, -0.009182438254356384, 0.032224901020526886, -0.009534811601042747, -0.008228957653045654, 0.009002797305583954, 0.03305401653051376, 0.03385549038648605, -0.020976586267352104, -0.00396592915058136, 0.010066826827824116, 0.008304959163069725, 0.012339981272816658, 0.0036239195615053177, 0.01980200782418251, -0.00529251154512167, -0.0061285351403057575, -0.004159389063715935, 0.020672578364610672, 0.005047231912612915, -0.0004711268120445311, -0.02582690306007862, 0.016927745193243027, 0.001851688139140606, 0.04792279377579689, -0.0030055386014282703, 0.011455592699348927, -0.019000530242919922, 0.011414136737585068, -0.00391410943120718, 0.01195997092872858, 0.002152241999283433, -0.016126269474625587, 0.018116142600774765, -0.017397576943039894, 0.00413175206631422, 0.00894752237945795, -0.030317937955260277, 0.013438557274639606, 0.02796878106892109, -0.017494307830929756, -0.003941746428608894, 0.012049791403114796, 0.008374052122235298, 0.020879855379462242, -0.014675319194793701, -0.002542616566643119, 0.020202746614813805, 0.010605750605463982, -0.0009215257596224546, -0.0005315830348990858, -0.009555540047585964, 0.025785448029637337, 0.004307938739657402, -0.01998164877295494, -0.016305910423398018, -0.005147416610270739, 0.0027308946009725332, -0.01169050857424736, 0.0021816063672304153, -0.019691459834575653, -0.009880276396870613, 0.0015606345841661096, 0.017190298065543175, 0.017107388004660606, -0.005154326092451811, -0.008781700395047665, -0.025232704356312752, -0.008809337392449379, 0.002188515616580844, 0.018047049641609192, 0.004919410217553377, 0.014316036365926266, -0.002684256760403514, -0.002413067501038313, -0.002167787868529558, 0.03487806394696236, 0.014246943406760693, 0.007468936033546925, -0.02817605994641781, -0.015241880901157856, 0.003551372094079852, 0.019884919747710228, -0.025564350187778473, 0.006653640419244766, 0.0024044308811426163, 0.01434367336332798, -0.012878905050456524, 0.029931018128991127, 0.024983970448374748, -0.006294357590377331, -0.019428906962275505, 0.005403060000389814, 0.029931018128991127, 0.005454879719763994, -0.015006965026259422, -0.023961396887898445, 0.00744129903614521, 0.012823631055653095, -0.01580844260752201, 0.022952642291784286, -0.010799210518598557, -0.013093093410134315, -0.008788608945906162, 0.021791880950331688, -0.013037818484008312, -0.0013455830048769712, -0.024652324616909027, -0.031893253326416016, -0.01962236687541008, 0.014371310360729694, -0.031920891255140305, -0.012643990106880665, -0.017521943897008896, -0.028576798737049103, -0.020589666441082954, -0.01902816817164421, -0.004909046459943056, 0.0019069623667746782, 0.0037102855276316404, -0.012229432351887226, 0.0005881527904421091, -0.01026028674095869, -0.0058107078075408936, 0.026158548891544342, -0.020078379660844803, -0.022441353648900986, -0.012540350668132305, 0.007303113117814064, 0.030317937955260277, -0.012740720063447952, 0.00903734378516674, -0.02683565951883793, -0.007310022599995136, -0.01449567824602127, 0.03098122961819172, -0.015532070770859718, -0.04383249953389168, 0.0061285351403057575, -0.012339981272816658, 0.013245097361505032, 6.974058487685397e-05, -0.0019415088463574648, 0.019401269033551216, -0.03056667186319828, 0.022911185398697853, 0.009140982292592525, -0.013887660577893257, -0.01926308311522007, -0.004573945887386799, 0.0066709136590361595, -0.007475845515727997, 0.02183333784341812, 0.0014198578428477049, 0.009002797305583954, 0.00641872501000762, 0.005841799546033144, 0.007247839123010635, 0.02260717749595642, 0.01604335755109787, -0.010716299526393414, 0.008070043288171291, -0.016540825366973877, 0.03847089409828186, 0.005707068368792534, -0.00198296457529068, 0.0069231027737259865, 0.038995999842882156, 0.03330275043845177, 0.0008632286917418242, -0.005140507128089666, -0.011766511015594006, 0.010515930131077766, -0.0365639291703701, 0.03382785618305206, 0.0014794504968449473, 0.0032663641031831503, 0.0018862345023080707, 0.0061492626555264, -0.016416458413004875, -0.036066461354494095, -0.00800785981118679, -0.014799686148762703, 0.027720047160983086, -0.011165402829647064, 0.020824581384658813, -0.007952585816383362, 0.025094520300626755, 0.02502542734146118, 0.021750425919890404, 0.01434367336332798, 0.0009724817355163395, -0.013279643841087818, 0.012595624662935734, 0.017466669902205467, 0.008691878989338875, -0.0002230403188150376, -0.026545468717813492, -0.011966879479587078, 0.004639584105461836, 0.011490139178931713, 0.003675739048048854, 0.03482279181480408, -0.008878430351614952, 0.017632491886615753, -0.03435296192765236, 0.03590064123272896, 0.005023049656301737, -0.0011227586073800921, 0.021667513996362686, -0.003299183212220669, -0.04526962712407112, 0.028549160808324814, 0.012229432351887226, 0.03697848692536354, 0.023574477061629295, -0.013756384141743183, 0.019276902079582214, 0.013106911443173885, 0.006964558269828558, -0.009963187389075756, -0.015642618760466576, 0.01938745006918907, 0.013127639889717102, 0.002307700924575329, 0.003851925954222679, 0.01684483513236046, 0.01245053019374609, -0.015076057985424995, 0.00315754278562963, 0.01456477027386427, 0.014854961074888706, 0.022192619740962982, -0.01356983371078968, -0.016513189300894737, -0.01488259807229042, -0.039051271975040436, 0.009762817993760109, -0.015241880901157856, -0.02328428626060486, -0.011393409222364426, -0.0019501454662531614, 0.0115246856585145, 0.0035824638325721025, 0.02338101714849472, 0.015352428890764713, -0.006563819944858551, 0.0015036329859867692, -0.024914877489209175, -0.027982600033283234, -0.01815759763121605, 0.03015211597084999, -0.012498894706368446, 0.007033651228994131, -0.012664717622101307, -0.0025374344550073147, -0.003185180015861988, 0.007897311821579933, -0.016955383121967316, 0.0007272021612152457, -0.02907426655292511, 0.0067918263375759125, -0.006080170162022114, -0.004145570565015078, 0.02835570089519024, -0.00354446261189878, -0.035320259630680084, -0.015518251806497574, -0.013362554833292961, 0.002438977360725403, -0.0198296457529068, -0.004618856590241194, 0.06190718337893486, 0.007123471703380346, -0.005672522354871035, -0.017646310850977898, -0.009769727475941181, -0.03360675647854805, 0.01640263944864273, -0.016596099361777306, -0.024735236540436745, -0.005299421027302742, 0.017369940876960754, -0.03783524036407471, 0.009465718641877174, 0.0022524266969412565, 0.019345995038747787, -0.0025512531865388155, -0.012429801747202873, -0.02356065809726715, -0.030069204047322273, 0.007627849467098713, 0.05892237275838852, 0.028383338823914528, -0.012402164749801159, 0.008083862252533436, 0.008899157866835594, -0.017494307830929756, -0.016029538586735725, -0.02868734672665596, 0.03498861566185951, -0.012326162308454514, -0.008353324607014656, 0.03277764469385147, -0.010122100822627544, 0.009279168210923672, 0.00827732216566801, 0.017162661999464035, 0.008387871086597443, -0.007068197708576918, 0.018323421478271484, -0.021985340863466263, 0.008546784520149231, 0.003959019668400288, 0.02534325420856476, 0.025149794295430183, 0.017964137718081474, -0.008070043288171291, 0.04496562108397484, 0.023519203066825867, 0.0036584658082574606, -0.03813924640417099, -0.021543147042393684, 0.00982500147074461, 0.03294346481561661, 0.030787769705057144, -0.01720411702990532, 0.049663934856653214, -0.0038311979733407497, 0.01637500338256359, 0.029212452471256256, 0.01774304173886776, 0.014868779107928276, 0.021432599052786827, 0.01882088929414749, -0.0058763460256159306, -0.013915297575294971, 0.024113401770591736, 0.002454523229971528, 0.03164451941847801, -0.0239475779235363, -0.007724579423666, 0.010129010304808617, -0.005123233888298273, -0.03556899353861809, -0.0015597708988934755, 0.004511762410402298, 0.006494726985692978, -0.02806551195681095, 0.005444515962153673, 0.003731013275682926, -0.014523315243422985, -0.014468040317296982, -0.01394293550401926, 0.008256594650447369, 0.0071372902020812035, 0.023892303928732872, -0.009866457432508469, -0.009120254777371883, 0.017231754958629608, -0.024914877489209175, -0.014647682197391987, 0.014246943406760693, -0.03059430979192257, -0.05195781588554382, 0.006871283054351807, 0.017964137718081474, 0.027954963967204094, -0.010122100822627544, 0.0002125684404745698, -0.0038795629516243935, 0.014150213450193405, -0.009935550391674042, -0.034187138080596924, 0.0013792657991871238, -0.0015062239253893495, -0.0024199767503887415, 0.004473761189728975, 0.010412290692329407, -0.016831016167998314, 0.022883549332618713, 0.02376793697476387, -0.010398472659289837, 0.004643038846552372, -0.010211922228336334, -0.011932333931326866, -0.007938767783343792, 0.009887185879051685, -0.015518251806497574, 0.02374029904603958, 0.007475845515727997, -0.021252958104014397, -0.0006252902094274759, 0.000274212216027081, 0.008208229206502438, -0.026946207508444786, -0.023187557235360146, 0.008070043288171291, -0.011711236089468002, 0.009956277906894684, -0.026379646733403206, -0.017660129815340042, 0.05024431273341179, -0.025564350187778473, 0.028908444568514824, 0.033026378601789474, 0.004214663058519363, 0.02101804129779339, 0.01640263944864273, 0.02546762116253376, 0.026766566559672356, -0.012961816973984241, 0.006778007838875055, -0.044025957584381104, -0.005147416610270739, 0.009507174603641033, -0.03805633634328842, 0.015255698934197426, 0.005776161327958107, -0.024831967428326607, -0.02899135649204254, -0.0014440403319895267, 0.00717183668166399, 0.014150213450193405, -0.020258020609617233, -0.016416458413004875, -0.0011115310480818152, -0.01417785044759512, -0.0215016920119524, -0.0024372499901801348, -0.007696942426264286, 0.004701767582446337, 0.023242831230163574, -0.02376793697476387, -0.017908863723278046, -0.021073317155241966, -0.005465243477374315, -0.03258418291807175, -0.006750370375812054, -0.0038415619637817144, -0.0023422471713274717, 0.012989453971385956, 0.023781755939126015, 0.0052856020629405975, -0.0015589072136208415, 0.008954431861639023, -0.0030159023590385914, -0.01920780912041664, 0.006916193291544914, -0.02912954054772854, 0.0051992363296449184, -0.011379591189324856, 0.023602114990353584, -6.202162330737337e-05, 0.04195317253470421, 0.004598128609359264, -0.012353800237178802, 0.003328547580167651, 0.008152955211699009, -0.010902849957346916, -0.010550476610660553, -0.008657332509756088, 0.003261181991547346, -0.0075242104940116405, 0.007206383161246777, -0.0013801294844597578, -0.0033216383308172226, 0.04084768891334534, -0.012001425959169865, -0.0002729167172219604, -0.020852219313383102, -0.03443587198853493, -0.013030909933149815, 0.006829827092587948, 0.0030176297295838594, 0.015214242972433567, -0.020672578364610672, 0.006187263876199722, 0.0404331311583519, 0.011835603974759579, -0.005724341608583927, 0.013756384141743183, 0.011738873086869717, -0.010909759439527988, 0.012367618270218372, 0.022192619740962982, 0.015753166750073433, -0.023864667862653732, 0.020271839573979378, -0.046596210449934006, 0.00987336691468954, 0.0298757441341877, 0.003456369275227189, 0.025730174034833908, 0.0020416933111846447, 0.007572575472295284, 0.004311393015086651, -0.011718145571649075, -0.00925844069570303, -0.0003247363492846489, 0.005009230691939592, 0.012443620711565018, -0.008671151474118233, -0.01332800928503275, -0.011427955701947212, -0.005862527526915073, 0.004180117044597864, 0.01125522330403328, 0.026877114549279213, 0.015946626663208008, -0.013811659067869186, -0.03391076624393463, -0.007876583375036716, -0.04106878489255905, 0.02209589071571827, 0.032252538949251175, 0.02508070133626461, 0.030345575883984566, -0.012415983714163303, -0.017273209989070892, -0.0055377911776304245, -0.001266126288101077, -0.0027585315983742476, 0.021128591150045395, -0.002385430270805955, -0.020796945318579674, -0.0068021900951862335, -0.032252538949251175, 0.014675319194793701, -0.01768776774406433, -0.020644940435886383, 0.009534811601042747, 0.027623318135738373, -0.002178151858970523, -0.02490106038749218, 0.009797364473342896, -0.04253355413675308, 0.03858144208788872, -0.00831877812743187, -0.005116324871778488, -0.017466669902205467, -0.0037621052470058203, -0.018019413575530052, 0.016679011285305023, 0.0017774133011698723, 0.014316036365926266, 0.008374052122235298, -0.008899157866835594, -0.011054854840040207, -0.024679962545633316, -0.026821840554475784, -0.006653640419244766, 0.007037105970084667, 0.01489641610532999, -0.030096841976046562, 0.0145509522408247, 0.02144641801714897, -0.003927927929908037, -0.010446837171912193, 0.0021746971178799868, -0.011393409222364426, 0.028770258650183678, -0.017673948779702187, -0.0160986315459013, -0.0012358982348814607, 0.012257070280611515, -0.0034080042969435453, -0.016084812581539154, -0.012008335441350937, -0.004380485974252224, -0.015186605975031853, -0.019428906962275505, 0.0006887692725285888, 0.008298049680888653, -0.019884919747710228, -0.010737027041614056, 0.008836974389851093, 0.004594673868268728, 0.00697146775200963, -0.018682703375816345, 0.012623261660337448, -0.022676270455121994, 0.009044252336025238, -0.01456477027386427, -0.015131331980228424, 0.008360234089195728, 0.01944272592663765, -0.007427480537444353, 0.0207278523594141, 0.04192553460597992, 0.0037137402687221766, -0.007648577447980642, -0.008401689119637012, 0.005485971458256245, -0.02639346569776535, 0.026890933513641357, -0.03697848692536354, -0.025218887254595757, 0.02379557490348816, -0.007890402339398861, 0.005257965065538883, -0.03247363492846489, 0.015435340814292431, 0.0036308288108557463, -0.01301709096878767, -0.013176004402339458, 0.0032300902530550957, 0.023602114990353584, 0.016001902520656586, 0.011186131276190281, -0.03617700934410095, 0.014288399368524551, -0.02626909874379635, -0.00952790305018425, 0.02191624976694584, 0.02251044660806656, 0.007821309380233288, -0.012595624662935734, -0.005890164524316788, -0.0031989985145628452, -0.027872052043676376, 0.0029830834828317165, 0.004788133781403303, 0.014675319194793701, 0.0023975216317921877, 0.00782821886241436, -0.03775232657790184, -0.009970096871256828, -0.025218887254595757, -0.009147891774773598, 0.015960445627570152, -0.015601163730025291, -0.02057584747672081, 0.019940193742513657, 0.009203166700899601, -0.0009845729218795896, -0.014965509064495564, -0.00782821886241436, -0.001044165575876832, 0.0014284944627434015, -0.07169073075056076, -0.008995887823402882, 0.0011685326462611556, 0.04032258316874504, 0.023450110107660294, -0.0029709921218454838, -0.007050924468785524, -0.010819938965141773, -0.00631508557125926, -0.006194172892719507, -0.004477215930819511, 0.020644940435886383, 0.012782175093889236, -0.021239139139652252, -0.016540825366973877, 0.03178270533680916, -0.01256798766553402, -0.0034114590380340815, -0.016679011285305023, 0.014357492327690125, -0.030069204047322273, 0.007904221303761005, -0.004598128609359264, -0.0032300902530550957, -0.00034373687230981886, -0.023657388985157013, 0.015974264591932297, -0.01456477027386427, -0.0036411925684660673, -0.01367347314953804, 0.01026028674095869, -0.02054821141064167, -0.014150213450193405, -0.023187557235360146, 0.0009733453625813127, 0.003141996916383505, 0.010108282789587975, -0.0004706949694082141, -0.0011175767285749316, 0.010488293133676052, 0.0070647429674863815, 0.0015036329859867692, -0.008643514476716518, -0.014440403319895267, 0.0042803012765944, 0.0036826482973992825, -0.03128523752093315, -0.027250215411186218, 0.008063134737312794, 0.00446685217320919, 0.026794202625751495, -0.01923544704914093, 0.022137345746159554, 0.012160340324044228, 0.0034943704959005117, 0.004850317258387804, -0.012761447578668594, 0.018613610416650772, -0.028936080634593964, -0.019940193742513657, 0.012167248874902725, -0.009631541557610035, 0.0052199638448655605, -0.0034995523747056723, 0.01432985533028841, -0.0266560185700655, 6.709562876494601e-05, -0.01882088929414749, -0.0042077540419995785, -0.004795043263584375, 0.00936208013445139, 0.03427004814147949, -0.01947036199271679, 0.011027216911315918, 0.0021436053793877363, 0.014412766322493553, -0.00013699814735446125, -0.014440403319895267, -0.0038311979733407497, -0.008443145081400871, 0.008450054563581944, 0.00034935068106278777, 0.00023707481159362942, 0.022164983674883842, -0.011863240972161293, -0.0030867226887494326, -0.03283291682600975, -0.00010650013427948579, 0.21667514741420746, 0.008415508083999157, 0.030096841976046562, 0.023629751056432724, -5.629986844724044e-05, 0.040598951280117035, 0.020769307389855385, 0.00039577242569066584, -0.011427955701947212, 0.009866457432508469, -0.010066826827824116, 0.008512238040566444, -0.043224480003118515, 0.008222048170864582, 0.0039452011696994305, 0.007406752556562424, -0.0014449040172621608, -0.056103385984897614, -0.004953956697136164, -0.014143303968012333, 0.00034935068106278777, -0.001786049921065569, -0.011801057495176792, -0.003834652714431286, 0.01941508799791336, 0.008684970438480377, -0.008747153915464878, 0.010391563177108765, 0.01031556073576212, 0.0038415619637817144, -0.017756860703229904, 0.011234495788812637, 0.014468040317296982, -0.0077176704071462154, -0.01434367336332798, -0.008878430351614952, 0.016471732407808304, -0.001668592100031674, 0.024044308811426163, -0.0494428351521492, 4.256226748111658e-05, 0.001851688139140606, -0.016623737290501595, -0.017038295045495033, 0.01285126805305481, 0.014440403319895267, -0.013998209498822689, -0.007918039336800575, 0.0019363268511369824, 0.006608730182051659, -0.02117004618048668, 0.004238845780491829, 0.028521524742245674, 0.016651375219225883, -0.008567512035369873, -0.028051692992448807, 0.013652745634317398, 0.0030038112308830023, -0.002920899773016572, 0.01580844260752201, -0.01571171171963215, 0.009672997519373894, -0.006895465310662985, 0.016057176515460014, 0.021128591150045395, 0.006242538336664438, -0.022344624623656273, 0.0051335981115698814, -0.007316931616514921, -0.003456369275227189, -0.006860918831080198, -0.03294346481561661, 0.000979391043074429, -0.0019000531174242496, -0.028286607936024666, -0.031865619122982025, 0.04051604121923447, 0.01795032061636448, 0.006591456942260265, 0.03396603837609291, -0.015642618760466576, -0.019456543028354645, -0.0198296457529068, -0.00362737406976521, 0.0006991332047618926, -0.025868359953165054, 0.04444051533937454, -0.031064141541719437, 0.011614506132900715, 0.010011552833020687, -0.015532070770859718, -0.00755875650793314, 0.0034339141566306353, -0.007579484488815069, 0.018834708258509636, 0.0005626748315989971, -0.005223418585956097, 0.027208760380744934, -0.02376793697476387, 0.004777770023792982, -0.006543091963976622, 0.04562891274690628, 0.008505328558385372, 0.0283280648291111, -0.00014541883138008416, -0.011787238530814648, 0.00981118343770504, 0.012132702395319939, 0.027236398309469223, -0.015006965026259422, -0.014702956192195415, -0.02183333784341812, -0.004104114603251219, -0.006401451770216227, 0.020451480522751808, 0.010965033434331417, -0.010357016697525978, -0.011400318704545498, 0.01263017114251852, -0.0037724690046161413, -0.026407282799482346, -0.012409074231982231, -0.014260762371122837, 0.017756860703229904, -0.00952790305018425, -0.00330954696983099, -0.020106015726923943, 0.006729642860591412, -0.01830960251390934, -0.0018015957903116941, 0.044357601553201675, -0.039438191801309586, -0.0016340456204488873, 0.001526951789855957, 0.009935550391674042, -0.035264983773231506, -0.011655962094664574, -0.023173738270998, 0.0024372499901801348, -0.015421521849930286, -0.020382387563586235, 0.01795032061636448, -0.009016615338623524, -0.00661909393966198, 0.009382807649672031, -0.029516462236642838, -0.002278336323797703, -0.0003469756047707051, 0.0011443501571193337, 0.0012307162396609783, 0.0007673623622395098, 0.021156227216124535, -0.019304540008306503, -0.02618618682026863, -0.015780804678797722, -0.018765615299344063, 0.023311924189329147, -0.020451480522751808, 0.011953061446547508, -0.005724341608583927, -0.014150213450193405, 0.028521524742245674, 0.029323000460863113, 0.008415508083999157, -0.03429768607020378, -0.03509916365146637, -0.17632493376731873, 0.008774790912866592, 0.005226873327046633, -0.02788587100803852, 0.027996418997645378, 0.003769014496356249, 0.02286973036825657, 0.018323421478271484, 0.008823155425488949, -0.001211715629324317, -0.0022247894667088985, 0.005617247894406319, -0.03313692659139633, -0.012098155915737152, -0.023298105224967003, 0.004781224764883518, 8.005052950466052e-05, 0.01086830347776413, 0.036425746977329254, 0.0321972630918026, 0.0031264510471373796, -0.019511818885803223, 0.03769705444574356, 0.04590528458356857, -0.011372681707143784, 0.014689138159155846, -0.008256594650447369, 0.010674843564629555, -0.00782821886241436, -0.021612240001559258, 0.020492935553193092, 0.01256798766553402, 0.02230316959321499, 0.008284231647849083, 0.004311393015086651, 0.007724579423666, 0.005423787981271744, -0.023104645311832428, -0.03822216019034386, 0.016775742173194885, 0.020686395466327667, 0.011483229696750641, 0.02791350707411766, -0.025370890274643898, -0.012374527752399445, 0.019318358972668648, 0.022234076634049416, -0.019580909982323647, 0.0028500796761363745, -0.03095359168946743, 0.012132702395319939, -0.018972894176840782, -0.0026013455353677273, -0.0030590854585170746, 0.03134051337838173, -0.022372262552380562, -0.013721837662160397, 0.006138898897916079, 0.010944305919110775, -0.008325687609612942, 0.0035686451010406017, -0.022344624623656273, 0.004062659107148647, 0.031008867546916008, -0.006411815527826548, -0.03540316969156265, -0.00010185795690631494, 0.0011909878812730312, -0.02364357002079487, 0.00826350413262844, 0.015241880901157856, -0.009956277906894684, 0.011607597582042217, 0.00547906244173646, -0.0023128828033804893, 0.02286973036825657, -0.008899157866835594, -0.02353302203118801, 0.00016215225332416594, 0.001342992065474391, 0.005140507128089666, 0.005520517937839031, -0.01830960251390934, -0.007040560245513916, -0.009251531213521957, -0.010813029482960701, -0.0014690865064039826, 0.004943592939525843, -0.004294120240956545, -0.017162661999464035, 0.022344624623656273, -0.045850008726119995, -0.010253377258777618, -0.008173682726919651, 0.023878484964370728, 0.015725530683994293, 0.018351057544350624, -0.019332176074385643, 0.024624688550829887, -0.021626058965921402, 0.02466614358127117, -0.009569358080625534, -0.0422295443713665, -0.014537133276462555, 0.007648577447980642, 0.0029157178942114115, -0.0012419437989592552, 0.007475845515727997, 0.033385660499334335, 0.01134504470974207, -0.02093513123691082, 0.010557386092841625, 0.024735236540436745, 0.008222048170864582, 0.011904696002602577, 0.03590064123272896, -0.007938767783343792, -0.022413717582821846, -0.0026566197630017996, 0.008526056073606014, 0.04938756301999092, 0.0023681570310145617, -0.017577217891812325, 0.03283291682600975, -0.004625765606760979, -0.02194388583302498, -0.11143293231725693, -0.027664773166179657, -0.005675976630300283, 0.014633863233029842, 0.024583231657743454, 0.017881227657198906, -0.015407703816890717, 0.026048000901937485, -0.017936501652002335, 0.020285658538341522, 0.011448683217167854, -0.015089876018464565, -0.0007168382289819419, -0.00992864090949297, -0.005009230691939592, -0.01489641610532999, -0.03330275043845177, -0.007551847491413355, -0.006954194512218237, 0.01681719720363617, 0.0029001720249652863, -0.0031264510471373796, 0.007938767783343792, -0.003313001710921526, -0.016706649214029312, 0.0013093092711642385, -0.036840301007032394, 0.007151109166443348, 0.005655249115079641, 0.000573470548260957, 0.003078086068853736, -0.005738160572946072, 0.0030228118412196636, -0.016264455392956734, 0.019967831671237946, 0.01580844260752201, -0.018199054524302483, -0.012001425959169865, 0.046098742634058, -0.036038827151060104, 0.0024044308811426163, 0.006491272244602442, -0.003910654690116644, -0.01627827249467373, -0.010550476610660553, 0.006819463334977627, -0.04529726505279541, -0.010135919786989689, 0.02865971066057682, -0.029571736231446266, -0.022178800776600838, 0.002489069476723671, -0.009134073741734028, -0.014993146061897278, 0.00618035439401865, -0.011262132786214352, -0.01367347314953804, -0.012429801747202873, 0.01058502309024334, 0.02495633438229561, -0.025564350187778473, -0.0035030068829655647, 0.000731520471163094, 0.035983551293611526, 0.023892303928732872, 0.013984390534460545, -0.02693238854408264, -0.014827323146164417, 0.018710341304540634, -0.02502542734146118, 0.0034650058951228857, 0.026725109666585922, -0.03427004814147949, 0.036481019109487534, -0.01048138365149498, -0.002464886987581849, -0.023367198184132576, 0.024624688550829887, 0.006684732157737017, -0.007386024575680494, -0.024458864703774452, -0.011441774666309357, -0.009500265121459961, -0.008021678775548935, 0.016236817464232445, 0.02400285191833973, 0.003769014496356249, 0.010129010304808617, 0.015960445627570152, 0.0043390304781496525, 0.006902374792844057, 0.024071944877505302, -0.017494307830929756, 0.00571052310988307, 0.015352428890764713, -0.0010398472659289837, 0.008843883872032166, -0.015960445627570152, -0.0054168784990906715, 0.025923633947968483, -0.028825532644987106, -0.012533441185951233, -0.05234473571181297, -0.0008770472486503422, -0.027595680207014084, -0.031948529183864594, -0.0016893199644982815, 0.016416458413004875, -0.0016850016545504332, -0.019345995038747787, -0.007538028992712498, 0.019926374778151512, -0.026158548891544342, -0.011711236089468002, -0.009887185879051685, -0.02266245149075985, -0.0024078853894025087, -0.02606181986629963, 0.004387395456433296, -0.01893143728375435, 0.006484363228082657, 0.014046574011445045, 0.007655486464500427, -0.022593358531594276, 0.0238232109695673, -0.005282147787511349, -0.009652270004153252, 0.007420571055263281, -0.015559707768261433, 0.029903382062911987, -0.019221628084778786, -0.008754062466323376, 0.018212873488664627, -0.006560365203768015, 0.00954172108322382, 0.011745782569050789, -0.01637500338256359, 0.006556910462677479, 0.011434865184128284, 0.005662158131599426, 0.026973845437169075, 0.02114240825176239, 0.0027809867169708014, -0.024790510535240173, -0.005164689850062132, -0.025633443146944046, -0.01356983371078968, 0.008691878989338875, -0.010806120000779629, -0.006843645591288805, 0.02111477218568325, 0.0013680382398888469, 0.012125793844461441, 0.012429801747202873, 0.003820833982899785, -0.0239475779235363, 0.0011797602055594325, 0.0005704477662220597, -0.01350765023380518, -0.01815759763121605, 0.006380723789334297, 0.004453033674508333, 0.03169979527592659, -0.013984390534460545, -0.007517301011830568, 2.5086637833737768e-05, -0.011275951750576496, -0.01273381058126688, -0.018005594611167908, 0.005993803963065147, -0.0030711768195033073, -0.01604335755109787, -0.01124140527099371, -0.0012851267820224166, -0.0018620520131662488, 0.03460169583559036, 0.006435998249799013, -0.009389717131853104, -0.01684483513236046, 0.023270469158887863, -0.01720411702990532, 0.04264410212635994, 0.005496335215866566, 0.0066052754409611225, -0.01705211214721203, 0.02466614358127117, 0.03877490013837814, 0.0047432235442101955, 0.007220201659947634, 0.000757430272642523, 0.002689438872039318, 0.005534336436539888, 0.029571736231446266, -9.208780102198943e-05, -0.032998740673065186, -0.0035358259920030832, -0.0029571736231446266, 0.008781700395047665, -0.0022230620961636305, -0.0003333729400765151, 0.016319729387760162, 0.0198296457529068, -0.001786049921065569, -5.511233757715672e-05, 0.007289294619113207, -0.016444096341729164, -0.03819452226161957, 0.021598421037197113, 0.012927270494401455, -0.014191669411957264, 0.008878430351614952, 0.012022154405713081, -0.00018104483024217188, 0.00887152086943388, 0.029903382062911987, 0.015960445627570152, -0.03214199095964432, -0.0019104169914498925, -0.012816721573472023, -0.010626479052007198, -0.01962236687541008, 0.021073317155241966, -0.019580909982323647, 0.019345995038747787, 0.01884852722287178, -0.00435284897685051, 0.013079274445772171, 0.014758231118321419, 0.04029494524002075, -0.0013093092711642385, -0.00964536052197218, 0.009838820435106754, -0.007330750115215778, 0.008774790912866592, -0.021100953221321106, -0.017190298065543175, 0.009161710739135742, -0.04142806679010391, -0.001837869524024427, 0.0099770063534379, 0.002122877398505807, 0.08971014618873596, 0.008816245943307877, -0.009009706787765026, -0.010536658577620983, -0.015932809561491013, -0.005175053607672453, 0.005054141394793987, -0.0011978971306234598, 0.0222755316644907, -0.015587344765663147, 0.007144199684262276, 0.0034097316674888134, 0.0012825358426198363, -0.026407282799482346, -0.007772944401949644, 0.026324372738599777, -0.03366203233599663, 0.020810764282941818, -0.010640297085046768, 0.01768776774406433, 0.007455117534846067, -0.000476308778161183, 0.004573945887386799, 0.012339981272816658, -0.015352428890764713, 0.004777770023792982, 0.014357492327690125, -0.005054141394793987, -0.00416629808023572, -0.027181122452020645, -0.030345575883984566, 0.007669305428862572, -0.014136395417153835, -0.045822370797395706, -0.009714453481137753, 0.004850317258387804, 0.011497048661112785, -0.0283280648291111, 0.0019345994805917144, -0.002684256760403514, -0.006239083595573902, -0.002737803850322962, -0.03918945789337158, -0.034850429743528366, -0.030456123873591423, -0.007779853884130716, -0.022980278357863426, -0.01619536243379116, -0.050078488886356354], "a0fa9976-9308-4e10-bcbc-a24ff57cef61": [0.0007058210321702063, 0.009257229045033455, 0.013738957233726978, -0.02967778779566288, 0.007849857211112976, 0.032984428107738495, -0.008061645552515984, -0.01312408596277237, -0.02232665941119194, -0.03760279715061188, -0.004632030613720417, 0.01962122693657875, -0.014401651918888092, -6.250123988138512e-05, -0.010022401809692383, 0.006435653194785118, 0.023365110158920288, -0.010145376436412334, -0.026999682188034058, 0.01888338103890419, -0.006521051749587059, 0.012311089783906937, 0.01747600920498371, -0.00869018118828535, -0.015836352482438087, 0.024225929751992226, 0.025455672293901443, -0.011231648735702038, -0.013896091841161251, -0.003723387373611331, 0.02065967582166195, -0.006452732719480991, -0.00851255189627409, 0.016068637371063232, -0.019839847460389137, -0.0046012867242097855, 0.00167467026039958, -0.004573959391564131, 0.03552589565515518, -0.00688314251601696, 0.013486177660524845, 0.047495391219854355, -0.0030675246380269527, -0.025264378637075424, -0.012140292674303055, 0.007002701051533222, 0.0016106212278828025, -0.024676835164427757, -0.019580235704779625, 0.030770892277359962, 0.028065459802746773, 0.0323558934032917, 0.006336590275168419, -0.007009532768279314, -0.008860978297889233, -0.011880679987370968, 0.01880139857530594, 0.024061962962150574, 0.016054973006248474, -0.0024953526444733143, 0.0008578308625146747, 0.022094376385211945, -0.027600890025496483, -0.013636479154229164, 0.016574198380112648, -0.005523594096302986, -0.009646647609770298, -0.011593740433454514, -0.010828566737473011, -0.012932793237268925, 0.007214489858597517, 0.021342866122722626, -0.002684938022866845, 0.008628694340586662, 0.013417858630418777, -0.015604067593812943, -0.03328503295779228, 0.0021622974891215563, 0.005950587801635265, -0.0009684222750365734, 0.0019692962523549795, -0.012174451723694801, -0.02482713758945465, -0.004826739896088839, 0.004088893998414278, -0.017148077487945557, -0.0003373252402525395, 0.03385891392827034, -0.028202097862958908, -0.028584683313965797, -0.01018636766821146, 0.010439148172736168, 0.0016353868413716555, 0.023706704378128052, -0.01944359764456749, 0.006784080062061548, 0.007221322041004896, 0.018869716674089432, -0.0019846679642796516, -0.021247219294309616, 0.006302430760115385, 0.003552589798346162, -0.010719256475567818, -0.0037199712824076414, 0.0003499215526971966, -0.012297426350414753, 0.0002196883870055899, -0.0031990387942641973, 0.008546710945665836, 0.01236574538052082, -0.007091515697538853, 0.008560375310480595, 0.009257229045033455, -0.038285985589027405, 0.012919128872454166, -0.03380425646901131, 0.009749125689268112, -0.01889704540371895, -0.016246266663074493, -0.01120432186871767, 0.03905116021633148, 0.011846520006656647, 0.01739402674138546, -0.010213695466518402, 0.029431840404868126, 0.01813187077641487, -0.008881473913788795, -0.005506514105945826, 0.013267556205391884, 0.00669868104159832, 0.02167079783976078, 0.025510327890515327, 0.01982618309557438, 0.0009445106261409819, -0.006186288315802813, 0.018487131223082542, -0.02511407621204853, -0.0039488403126597404, -0.01889704540371895, -0.03145408257842064, 0.01580902375280857, -0.0008847314747981727, 0.01065776962786913, 0.009954082779586315, -0.00991309154778719, 0.024786144495010376, -0.006398077588528395, 0.005041944794356823, 0.001596103422343731, 0.02187575399875641, -0.013978074304759502, -0.012919128872454166, -0.007228153757750988, 0.022353988140821457, 0.021342866122722626, 0.021807435899972916, -0.020427390933036804, 0.02474515326321125, -0.00032515591010451317, -0.040226247161626816, 0.013991737738251686, 0.001444947556592524, -0.011040356010198593, 0.01989450305700302, 0.0017626311164349318, 0.019047345966100693, 0.05684143677353859, 0.030579598620533943, 0.014592945575714111, -0.028803303837776184, -0.019320622086524963, 0.009407530538737774, -0.016683507710695267, 0.014825230464339256, 0.02705433778464794, -0.008457896299660206, 0.0012920837616547942, 0.009749125689268112, 0.0032092866022139788, -0.007057356182485819, 0.020591355860233307, 0.010309342294931412, 0.017366698011755943, 0.021602477878332138, 0.0051444233395159245, -0.008628694340586662, 0.003098268061876297, 0.012891802005469799, -0.011286304332315922, 0.010261518880724907, 0.01684747450053692, 0.025824595242738724, -0.00047567125875502825, 0.0001541448145871982, -0.6366240978240967, -0.026453129947185516, -0.009981410577893257, -0.01832316443324089, 0.007118843495845795, 0.007938671857118607, 0.008519383147358894, 0.010719256475567818, -0.030770892277359962, 0.05815315991640091, 0.025278043001890182, -0.006620114203542471, 0.012112964875996113, -0.01691579259932041, -0.009223069995641708, -0.0007498014019802213, 0.015699714422225952, -0.039297107607126236, -0.018815061077475548, 0.005595328751951456, 0.013267556205391884, 0.003979583736509085, -0.014278678223490715, -0.007774705998599529, 0.013445185497403145, 0.03451477736234665, -0.006773832254111767, -0.008546710945665836, 0.019238639622926712, 0.045336510986089706, -0.02948649413883686, 0.006896806415170431, 0.011750874109566212, 0.008430568501353264, 0.04025357589125633, -0.018008897081017494, -0.006592786870896816, 0.008963457308709621, 0.02689037099480629, 0.012283761985599995, -0.041346680372953415, -0.014032729901373386, 0.010869557969272137, 0.0077405464835464954, 0.012502383440732956, 0.007412615232169628, 0.0010256394743919373, -0.0021178899332880974, -0.012823482975363731, -0.012727836146950722, -0.004362170118838549, 0.005875437054783106, -0.004813075996935368, -0.03989831730723381, 0.01423768699169159, 0.005315220914781094, 0.04047219455242157, -0.022914204746484756, -0.011662059463560581, -0.0011819192441180348, -0.00421186862513423, -0.007398951333016157, -0.006872894708067179, 0.002153757493942976, -0.021698124706745148, -0.0103708291426301, -0.02863933891057968, -0.0014483635313808918, -0.007180330343544483, -0.012201779522001743, 0.011361455544829369, 0.015686050057411194, -0.029841754585504532, -0.006695265416055918, 0.02111058123409748, 0.03257451578974724, 0.021520495414733887, -0.0005990725476294756, 0.0031734190415591, 0.025045758113265038, 0.0036072449292987585, 0.0010264934971928596, 0.004225532058626413, -0.0041913725435733795, 0.05369875952601433, -0.008758500218391418, -0.02575627528131008, -0.008874642662703991, 0.0006033424870111048, 0.009448522701859474, -0.011675722897052765, 0.017230059951543808, -0.010773912072181702, -0.008553543128073215, -0.002121306024491787, 0.004201620351523161, -0.006879726890474558, -0.024335239082574844, -0.00028843441396020353, -0.025360025465488434, -0.0020188274793326855, -0.028202097862958908, 0.020591355860233307, -0.000988918007351458, 0.008806323632597923, 0.017325706779956818, -0.004314347170293331, 0.015836352482438087, 0.03276580944657326, -0.01712075062096119, -0.012591198086738586, -0.018090879544615746, -0.0021264299284666777, 0.022108038887381554, 0.024116618558764458, -0.02176644466817379, 0.024608515202999115, 0.010767079889774323, 0.007030028384178877, -0.007836192846298218, 0.019033683463931084, 0.015166825614869595, -0.027969812974333763, 0.0020529869943857193, 0.032875120639801025, 0.019211312755942345, -0.00357991736382246, -0.002384334336966276, -0.030743565410375595, 0.010685096494853497, 0.014989196322858334, -0.02372036874294281, 0.03238322213292122, 0.0012690260773524642, 0.00011443438415881246, 0.024977438151836395, 0.017790276557207108, -0.020700667053461075, 0.01915665715932846, -0.01776294782757759, -0.024909120053052902, -0.0037199712824076414, 0.0054142833687365055, -0.02549666352570057, 0.000942802638746798, -0.01101986039429903, -0.03060692735016346, -0.004881395027041435, -0.015002859756350517, 0.0023040594533085823, 0.010316174477338791, -0.00795233529061079, -0.024717826396226883, 0.011149666272103786, 0.006859230808913708, -0.0007553523173555732, 0.016300922259688377, -0.003706307616084814, -0.008574038743972778, -0.017243724316358566, -0.0023348028771579266, 0.024485541507601738, -0.01255020685493946, 0.0068284873850643635, -0.00380195421166718, 0.002070066751912236, -0.013171909376978874, 0.040144264698028564, -0.014428979717195034, -0.030169684439897537, 0.018090879544615746, -0.006022322922945023, 0.010179536417126656, 0.009981410577893257, 0.00786352064460516, 0.013370035216212273, -0.02168446220457554, 0.0241849385201931, 0.009448522701859474, -0.022258341312408447, -0.002247696276754141, 0.0039078486151993275, 0.019279630854725838, -0.01474324706941843, 0.021452177315950394, -0.0034159517381340265, -0.00939386710524559, 0.01451096311211586, -0.008608197793364525, -0.0031836670823395252, 0.015235144644975662, 0.031016841530799866, -0.0024697331245988607, -0.004789164289832115, -0.011580076068639755, 0.02678106166422367, 0.014442644082009792, 0.013247060589492321, 0.008997616358101368, 0.042275816202163696, 0.022435970604419708, 0.017995232716202736, -0.004235779866576195, -0.011785033158957958, -0.007569748908281326, -0.027122655883431435, 0.02288687601685524, -0.008061645552515984, 0.01952558010816574, 0.006862646900117397, 0.012727836146950722, -0.0007544983527623117, -0.027095329016447067, -0.028393389657139778, -0.002247696276754141, 0.0370015874505043, -0.018200190737843513, 0.02325579896569252, -0.030934859067201614, 0.00981744471937418, 0.011586908251047134, -0.0027720448561012745, 0.012734668329358101, -0.018104543909430504, 0.008293930441141129, 0.008881473913788795, -0.007371623534709215, -0.002450945321470499, -0.023761359974741936, -0.04448935389518738, -0.013151413761079311, -0.01591833494603634, 0.01748967170715332, 0.001759215141646564, 0.023460756987333298, 0.007870352827012539, 0.019962821155786514, -0.022941531613469124, 0.04282236844301224, 0.010726088657975197, -0.003972752019762993, 0.015426437370479107, -0.004570543300360441, -0.01483889389783144, 0.007289641071110964, 0.00823244359344244, 0.041264697909355164, 0.011689386330544949, -0.005728551186621189, 0.03872322663664818, 0.011771369725465775, 0.023761359974741936, -0.008574038743972778, -0.010937876999378204, 0.01340419426560402, 0.007788369897753, 0.005878852680325508, 0.003897600807249546, 0.011573243886232376, 0.014811566099524498, -0.013417858630418777, -0.012017318047583103, 0.027491578832268715, 0.014524626545608044, 0.010159039869904518, -0.019593898206949234, -0.02344709262251854, -0.04175659269094467, -0.034460119903087616, -0.014497298747301102, -0.03905116021633148, -0.0160959642380476, 0.0023945821449160576, 0.012823482975363731, 0.02790149301290512, 0.0005226405919529498, -0.0031016841530799866, 0.007972830906510353, 0.006831903476268053, 0.021096916869282722, -0.03380425646901131, -0.029267873615026474, 0.010398156940937042, 0.030934859067201614, -0.019839847460389137, 0.004263107664883137, -0.019949158653616905, 0.0126936761662364, -0.008362249471247196, 0.03380425646901131, -0.006712344940751791, -0.0020188274793326855, -0.009967747144401073, 0.0008932713535614312, 0.008403240703046322, -0.0018446139292791486, 0.013848268426954746, -0.014989196322858334, -0.006237527821213007, -0.020495710894465446, -0.00814362894743681, 0.003518430283293128, -0.05356212332844734, -0.0033408007584512234, 0.05536574497818947, 0.006128217093646526, 0.003538925899192691, -0.02037273533642292, -0.0012041230220347643, -0.01720273308455944, 0.0016772323288023472, 0.003726803231984377, -0.01692945696413517, -0.02501842938363552, 0.014087384566664696, -0.022067047655582428, 0.023037178441882133, 0.007221322041004896, -0.0011793572921305895, -0.005790038034319878, -0.011197489686310291, -0.03328503295779228, -0.016806481406092644, 0.0010162455728277564, 0.07646266371011734, 0.009270892478525639, -0.015494756400585175, 0.010992532595992088, 0.001538886222988367, -0.012522879056632519, -0.011730378493666649, -0.034186843782663345, 0.02929520234465599, -0.002292103599756956, -0.01917032152414322, 0.018391484394669533, 0.001193875097669661, 0.002763504860922694, 0.029076579958200455, 0.011224817484617233, -0.010869557969272137, -0.017598982900381088, 0.01627359353005886, -0.014647601172327995, 0.004604702815413475, 0.02389799803495407, 0.025551319122314453, 0.002075190655887127, 0.00786352064460516, -0.005523594096302986, 0.03954305499792099, -0.0049258023500442505, 2.698068055906333e-05, -0.014278678223490715, -0.008997616358101368, 0.004959961865097284, 0.011826024390757084, 0.009387034922838211, -0.010992532595992088, 0.032219257205724716, 0.016355575993657112, 0.014497298747301102, 0.02893994189798832, -0.0002675117284525186, 0.022736573591828346, 0.023693040013313293, 0.009018112905323505, 0.004174293018877506, -0.0064185732044279575, 0.001807038439437747, -0.001469713170081377, 0.028065459802746773, -0.019949158653616905, -0.025633301585912704, -0.014893549494445324, -0.009516841731965542, -0.03626374155282974, 0.0089292973279953, 0.005486018490046263, -0.0012425524182617664, -0.012823482975363731, 0.006804575677961111, -0.01908833719789982, -0.015194153413176537, -0.0075492532923817635, -0.0024902287404984236, 0.007248649373650551, 0.012215442955493927, 0.008266602642834187, -0.005349380429834127, -0.010760247707366943, 0.007146170828491449, -0.012898633256554604, -0.0241849385201931, 0.01851445809006691, -0.034924689680337906, -0.03451477736234665, -0.013643311336636543, -0.0036994756665080786, 0.007494598161429167, 0.011327295564115047, 0.01859644055366516, -0.00019236077787354589, 0.008860978297889233, -0.0023211392108350992, -0.038750555366277695, 0.0052229901775717735, -0.0269860178232193, 0.007556085009127855, 0.012372576631605625, -0.019238639622926712, -0.004659357946366072, 0.02277756668627262, 0.012427232228219509, 0.004710597451776266, 0.0003687092976178974, -0.01691579259932041, -0.010486971586942673, 0.010855894535779953, 0.018856054171919823, 0.0029770019464194775, 0.04642961546778679, 0.011942166835069656, -0.00671917712315917, -0.0029291785322129726, -0.0213018748909235, -0.00814362894743681, -0.030907530337572098, -0.022818557918071747, 0.03292977437376976, 0.0020359072368592024, -0.0007258897530846298, -0.012386240996420383, 0.00537329213693738, 0.04924435913562775, -0.004666190128773451, 0.037903398275375366, 0.01999014988541603, 0.03178201615810394, 0.02203972078859806, -0.0061350492760539055, 0.005506514105945826, 0.016054973006248474, -0.02075532265007496, -0.0014253058470785618, -0.04793263226747513, -0.005380123853683472, 0.0202634260058403, -0.037548139691352844, -0.009257229045033455, 0.002763504860922694, -0.025264378637075424, -0.023392437025904655, 0.0005128197371959686, 0.01617794670164585, 0.02296885848045349, -0.010063393972814083, -0.02697235532104969, 0.006261439528316259, -0.00939386710524559, -0.03634572774171829, -0.0010794406989589334, -0.011764537543058395, 0.01926596835255623, 0.017913250252604485, 0.008355418220162392, -0.023050842806696892, 0.0001369583187624812, 0.0011136002140119672, -0.03183666989207268, 0.0020034557674080133, 0.0014902089023962617, 0.01287813764065504, 0.012864474207162857, 0.011887512169778347, 0.010773912072181702, 0.004222116433084011, 0.013889259658753872, 0.0019248888129368424, -0.027956148609519005, -0.007815697230398655, -0.015740705654025078, 0.023556401953101158, 0.009837941266596317, 0.025715284049510956, -0.006083809770643711, 0.02214903011918068, 0.005151255056262016, 0.006220447830855846, -0.007351127918809652, 0.009885763749480247, 0.012119796127080917, 0.007146170828491449, -0.00020890680025331676, 0.009790117852389812, 0.00571830291301012, 0.012358913198113441, 0.014360660687088966, 0.015289799310266972, 0.031481411308050156, -0.008006990887224674, -0.014633936807513237, -0.011190657503902912, -0.02085096947848797, 0.005246901884675026, 0.0016106212278828025, -0.011750874109566212, 0.011853352189064026, -0.026535112410783768, -0.024020971730351448, 0.040964093059301376, 0.0044099935330450535, -0.002384334336966276, 0.014005402103066444, -0.005393787752836943, -0.006951461546123028, 0.019703209400177002, 0.024963775649666786, 0.027669208124279976, -0.03068890981376171, 0.012481887824833393, -0.0472494438290596, 0.0015286384150385857, 0.0022681918926537037, -0.003470606869086623, 0.007296472787857056, 0.00769955525174737, -0.0047481730580329895, -0.011156498454511166, 0.01181919313967228, -0.005673895590007305, -0.018254846334457397, -0.014005402103066444, -0.008526215329766273, -0.01600031740963459, -0.029459167271852493, -0.022203685715794563, -0.002358714584261179, -0.018582778051495552, 0.0038907688576728106, 0.020591355860233307, -0.004676437936723232, -0.023870671167969704, -0.03462408483028412, 0.0004504786338657141, -0.020796313881874084, 0.03568986430764198, 0.028912615031003952, 0.026384809985756874, 0.036892279982566833, -0.012837146408855915, -0.00483357161283493, -0.003757546888664365, 0.006845567375421524, -0.0005294724833220243, 0.01694311946630478, 0.008915633894503117, -0.024116618558764458, 0.001918056863360107, -0.011265808716416359, 0.005431363359093666, -0.026849379763007164, -0.012352081015706062, 0.0042836032807827, 0.027928821742534637, -0.0031802509911358356, -0.02680838853120804, 0.0009615903836674988, -0.02669907920062542, 0.027122655883431435, -0.021561486646533012, 0.014278678223490715, -0.019388942047953606, -0.01859644055366516, -0.015453765168786049, 0.011176994070410728, 0.007398951333016157, 0.00483357161283493, 0.0059027643874287605, -0.018815061077475548, -0.007692723069339991, -0.012372576631605625, -0.025551319122314453, 0.016259929165244102, 0.004604702815413475, 0.014210359193384647, -0.028120113536715508, 0.019498251378536224, 0.019402606412768364, 0.002479980932548642, -0.0323558934032917, -0.006521051749587059, -0.01692945696413517, 0.02716364711523056, -0.004645694512873888, -0.002702017780393362, -0.000308503134874627, -0.006456148810684681, -0.0089292973279953, -0.0027720448561012745, -0.009885763749480247, 0.010527962818741798, -0.0012382825370877981, -0.026384809985756874, 0.009926755912601948, -0.0016832101391628385, -0.023119160905480385, -0.0051307594403624535, -0.0054279472678899765, -0.005595328751951456, -0.005608992651104927, -0.008280267007648945, 0.0015516960993409157, -0.020509373396635056, 0.020345408469438553, -0.025988560169935226, -0.01656053401529789, 0.010350333526730537, 0.005540673620998859, 0.010978869162499905, 0.010972036980092525, 0.022818557918071747, -0.0035628376062959433, 0.01208563707768917, -0.002341634826734662, 0.017598982900381088, -0.025455672293901443, 0.026644423604011536, -0.0160959642380476, -0.040034953504800797, 0.027587225660681725, -0.004006911534816027, 0.009407530538737774, -0.00869018118828535, 0.004444153048098087, -0.002544884104281664, 0.0002937718527391553, -0.010384493507444859, 0.01223593857139349, 0.03560788184404373, 0.008574038743972778, -0.006380997598171234, -0.014852558262646198, 0.013028440065681934, -0.004621782805770636, 0.00036187737714499235, 0.02724563144147396, 0.014401651918888092, 0.0004246454918757081, -0.011771369725465775, 0.0006242651725187898, -0.015180489048361778, -0.01822751760482788, -0.016505878418684006, -0.001549988053739071, -0.0024116619024425745, 0.02176644466817379, 0.002322847256436944, -0.01830950193107128, -0.0032810214906930923, -0.018090879544615746, 0.004058150574564934, 0.004334842786192894, -0.015235144644975662, -0.007282808888703585, 0.03806736692786217, 0.0023330950643867254, 0.018077217042446136, -0.027792183682322502, -0.013561327941715717, -0.004351922310888767, -0.01833682879805565, -0.0541360005736351, 0.014032729901373386, -0.00036379884113557637, 0.02801080420613289, 0.009755957871675491, -0.017885923385620117, -0.01880139857530594, -0.015836352482438087, -0.02613886259496212, 0.01019319985061884, -0.0027413011994212866, 0.025428343564271927, 0.01451096311211586, 0.011265808716416359, -0.00967397540807724, 0.04110072925686836, -0.009134254418313503, 0.0023655465338379145, -0.012994280084967613, 0.013376866467297077, -0.015166825614869595, 0.010794407688081264, -0.004304098896682262, -0.001381752430461347, -0.01638290472328663, -0.027833174914121628, 0.03462408483028412, -0.02102859877049923, -0.014087384566664696, 0.007651731837540865, 0.0068284873850643635, -0.024881791323423386, 0.006428821012377739, -0.019498251378536224, 0.006022322922945023, -0.0002766920952126384, 0.028229424729943275, -0.01999014988541603, -0.0019675882067531347, 0.0028676914516836405, 0.009516841731965542, 0.005270813591778278, -0.00948268175125122, -0.01386193186044693, -0.00991309154778719, 0.009680806659162045, -0.025168731808662415, -0.023870671167969704, 0.008095805533230305, 0.013971242122352123, 0.015590403228998184, -0.02065967582166195, 0.027095329016447067, 0.023050842806696892, -0.001548280124552548, -0.009749125689268112, -0.012741499580442905, 0.019102001562714577, -0.03301175683736801, -0.012413568794727325, 0.006244359537959099, -0.010500635020434856, -0.004895058926194906, -0.013035271316766739, 0.018405146896839142, -0.027983475476503372, 0.00180874636862427, -0.03303908556699753, -0.01936161331832409, -0.023556401953101158, 0.020318079739809036, 0.021834762766957283, -0.01199682243168354, 0.023037178441882133, -0.004345090594142675, 0.018350493162870407, 0.0029343024361878633, -0.02634381875395775, -0.009065935388207436, -0.01027518231421709, -0.007815697230398655, 0.00869701337069273, -0.009011280722916126, 0.01196266245096922, -0.004044486675411463, -0.00011475462815724313, -0.035662535578012466, 0.008000158704817295, 0.2058315873146057, 0.009202573448419571, 0.027751190587878227, 0.033148396760225296, 0.010828566737473011, 0.024676835164427757, 0.018815061077475548, -0.01138878334313631, -0.022545281797647476, 0.006712344940751791, -0.02269558236002922, 0.0062409439124166965, -0.03380425646901131, 0.0031392595265060663, 0.00393176032230258, -0.0005768688279204071, -0.004109390079975128, -0.04787797853350639, -0.010384493507444859, -0.0005392933962866664, -0.0015593819553032517, 0.016902128234505653, -0.01721639558672905, -0.010323005728423595, 0.009366539306938648, 0.018118208274245262, -0.008341753855347633, -0.00021701968216802925, 0.008683349005877972, -0.009632984176278114, -0.015385446138679981, 0.0277101993560791, 0.0004111951857339591, -0.0004327583883423358, -0.04574642330408096, -0.0026610263157635927, 0.011504924856126308, -0.008451064117252827, 0.03052494488656521, -0.02671274170279503, -0.00841690506786108, -0.006387829780578613, -0.030251668766140938, -0.006032570730894804, 0.017079757526516914, 0.0034484032075852156, -0.011088179424405098, -0.0021588813979178667, -0.011641562916338444, 0.0015183904906734824, -0.025619637221097946, -0.005229821894317865, 0.027505243197083473, 0.03366762027144432, -0.00016022947966121137, -0.011498093605041504, 0.009284556843340397, 0.001688334159553051, -6.228774145711213e-05, 0.016765490174293518, -0.0023962901905179024, 0.02529170550405979, 0.0018019145354628563, 0.01851445809006691, 0.00940069928765297, -0.008703844621777534, -0.04350556060671806, -0.0005930946208536625, 0.006080394145101309, -0.0018582777120172977, 0.004591038916260004, -0.0103708291426301, -0.007877185009419918, 0.0061487131752073765, -0.029431840404868126, -0.02586558647453785, 0.041346680372953415, 0.020482046529650688, 0.0178585946559906, 0.040335558354854584, -0.017257388681173325, 0.007433110848069191, -0.015686050057411194, 0.0022528201807290316, 0.00048549214261583984, -0.033066410571336746, 0.033640291541814804, -0.02131553925573826, -0.011040356010198593, -0.0001861693599494174, -0.004362170118838549, -0.009653479792177677, -0.012584365904331207, -0.008881473913788795, 0.018118208274245262, -0.006667937617748976, -0.005974499508738518, 0.019867174327373505, -0.027300285175442696, 0.011149666272103786, -0.014715920202434063, 0.06203368306159973, 0.011518589220941067, 0.03210994601249695, 0.005301557015627623, -0.014401651918888092, 0.006333174649626017, 0.02343342825770378, 0.018869716674089432, 0.00767905917018652, -0.02167079783976078, 0.0008710676920600235, 0.010849062353372574, -0.01446997094899416, 0.013465681113302708, 0.014278678223490715, -0.011375118978321552, -0.018842389807105064, 0.01572704128921032, -0.012112964875996113, -0.025155067443847656, -0.008717508986592293, -0.011921671219170094, -0.0011332419235259295, -0.029377184808254242, -0.0014782530488446355, -0.025838257744908333, -0.006066730245947838, -0.023310454562306404, -0.012680012732744217, 0.022080712020397186, -0.021342866122722626, -0.004307514987885952, -0.005311804823577404, 0.011880679987370968, -0.020727993920445442, -0.0014825230464339256, -0.019839847460389137, 0.010234191082417965, -0.010521131567656994, -0.014961868524551392, -0.00033177429577335715, -0.005790038034319878, -0.0011733793653547764, 0.0065176356583833694, -0.02400730922818184, -0.0030060375574976206, -0.0008253793348558247, 0.007911344058811665, -0.01683381013572216, 0.0026490704622119665, 0.0006148713291622698, -0.016615189611911774, -0.0189790278673172, 0.005783206317573786, -0.010760247707366943, 0.005677311681210995, -0.029923737049102783, 0.012188115157186985, 0.0003279313677921891, -0.02456752397119999, 0.02399364486336708, 0.01962122693657875, -0.007146170828491449, -0.014497298747301102, -0.02687670849263668, -0.17445948719978333, 0.009523672983050346, 0.013103590346872807, -0.02959580533206463, 0.023105496540665627, -0.00205811089836061, 0.011293136514723301, 0.007351127918809652, -0.016246266663074493, 0.0013211192563176155, -0.008348586037755013, -0.0006977081065997481, -0.013383698649704456, -0.00884048268198967, -0.011088179424405098, 0.016628852114081383, 0.012017318047583103, 0.004632030613720417, 0.023050842806696892, 0.0178585946559906, 0.010855894535779953, 0.004082062281668186, 0.009653479792177677, 0.03301175683736801, -0.004457816947251558, 0.006825071293860674, -0.0020632348023355007, 0.015166825614869595, -0.004406577441841364, -0.029513822868466377, 0.00832125823944807, 0.01520781684666872, 0.0020854384638369083, -0.005807118024677038, 0.029459167271852493, 0.002690061926841736, -0.006039402447640896, -0.01843247562646866, -0.03672831133008003, 0.03640038147568703, 0.03210994601249695, 0.020331744104623795, 0.03088020347058773, -0.016984112560749054, -0.0030128692742437124, 0.020973943173885345, 0.00041802707710303366, -0.028311407193541527, 0.0029752939008176327, -0.015166825614869595, 0.012673180550336838, 0.006425404921174049, 0.007426279131323099, 0.003050444880500436, 0.01251604687422514, -0.025278043001890182, -0.008997616358101368, 0.011361455544829369, 0.017639974132180214, 0.006497140042483807, 0.012174451723694801, -0.028967270627617836, 0.0010674848454073071, 0.008027486503124237, -0.02141118422150612, -0.05050142854452133, -0.015781696885824203, 0.016068637371063232, -0.04847918450832367, 0.010083889588713646, 0.009591992013156414, -0.004297267179936171, 0.023966316133737564, -0.004700349643826485, -0.005287893116474152, 0.010869557969272137, -0.02381601557135582, 0.00190097710583359, 0.001030763378366828, 0.008847314864397049, -0.00037490070099011064, -0.00047609827015548944, -0.011880679987370968, 3.0289884307421744e-05, -0.0007848148816265166, -0.010029233992099762, -0.007412615232169628, -0.005704639479517937, -0.007597076706588268, -0.008095805533230305, 0.03153606504201889, -0.03943374752998352, -0.03265649825334549, -0.014128375798463821, 0.005086352117359638, 0.016984112560749054, 0.0218620914965868, -0.002826699987053871, 0.009366539306938648, 0.0033561724703758955, 0.022176358848810196, -0.004970209673047066, -0.03746615722775459, -0.014688592404127121, 0.032328568398952484, 0.019279630854725838, -0.016423895955085754, -0.015057515352964401, 0.026740070432424545, 0.01796790584921837, -0.01701143942773342, 0.019580235704779625, 0.008191452361643314, -0.00031512154964730144, -0.014715920202434063, 0.036127105355262756, 0.01385509967803955, -0.039870988577604294, 0.007392119616270065, 0.007228153757750988, 0.04350556060671806, -0.011983158066868782, -0.010261518880724907, 0.018268508836627007, -0.011040356010198593, -0.010473308153450489, -0.10012837499380112, -0.01539911050349474, 0.023105496540665627, 0.020809978246688843, 0.01830950193107128, 0.023652048781514168, -0.03216459974646568, 0.024034636095166206, -0.00823927577584982, 0.037083569914102554, 0.005991579033434391, -0.01758531853556633, -0.01638290472328663, -0.006111137568950653, -0.0009726922144182026, -0.02959580533206463, -0.01367747038602829, -0.004433905240148306, -0.030579598620533943, 0.0023535906802862883, 0.004290435463190079, 0.006989037152379751, -0.004157213028520346, -0.0006951461546123028, -0.010910550132393837, -0.004990705288946629, -0.03126278892159462, 0.0023621306754648685, 0.012891802005469799, -0.01989450305700302, -0.017517000436782837, -0.0054006194695830345, 0.010070225223898888, -0.03722020983695984, 0.012468223460018635, -0.005643152166157961, -0.020618684589862823, -0.024868128821253777, 0.051020655781030655, -0.031208135187625885, -0.0073306323029100895, 0.00535279605537653, 0.0026473626494407654, -0.00609064195305109, 0.005383539944887161, -0.0018326580757275224, -0.04793263226747513, 0.010760247707366943, 0.03153606504201889, -0.014715920202434063, -0.03071623668074608, -0.008287099190056324, -0.016164284199476242, -0.0379580557346344, 0.018186526373028755, 0.028229424729943275, -0.007569748908281326, 0.008437400683760643, -0.009551000781357288, 0.027573561295866966, -0.01288496982306242, -0.012748331762850285, -0.0012502382742241025, 0.02149316854774952, 0.04353288933634758, 0.02519606053829193, 0.009031776338815689, -0.00616237660869956, 0.012570702470839024, -0.016410231590270996, -0.00912059098482132, 0.02948649413883686, -0.03161804750561714, 0.02995106391608715, -0.03309373930096626, 0.007788369897753, -0.01027518231421709, 0.01889704540371895, 0.01582268811762333, 0.017708294093608856, -0.013561327941715717, -0.011559580452740192, -0.02567429281771183, -0.022531617432832718, 0.007405783049762249, 0.009264061227440834, -0.01955290697515011, 0.04077279940247536, 0.013875595293939114, -0.028885288164019585, -0.008184620179235935, 0.03227391093969345, -0.0075492532923817635, 0.021137908101081848, 0.007925007492303848, 0.007870352827012539, 0.004532967694103718, -0.016792818903923035, 0.0017216396518051624, 0.012468223460018635, -0.025237051770091057, 0.005482602398842573, -0.05667747184634209, 0.000511538761202246, -0.027778519317507744, -0.01664251647889614, 0.0020956862717866898, 0.000684044323861599, 0.01572704128921032, -0.01944359764456749, 0.005246901884675026, 0.006825071293860674, -0.03842262551188469, -0.004949714057147503, -0.021547824144363403, -0.011675722897052765, -0.006910470314323902, -0.01944359764456749, -0.016041308641433716, -0.010862726718187332, -0.002468025078997016, 0.016601525247097015, 0.02529170550405979, -0.018774069845676422, 0.013602319173514843, 0.0037780425045639277, -0.025605974718928337, -0.0007408345118165016, 0.003316889051347971, 0.02790149301290512, -0.026097871363162994, -0.004491976462304592, 0.020536702126264572, 0.004635446239262819, -0.01694311946630478, -0.015535748563706875, -0.029240546748042107, 0.006322926376014948, -0.00697878934442997, 0.013192404992878437, 0.008396409451961517, 0.028338735923171043, -0.024130282923579216, -0.005550921428948641, 0.005574833136051893, -0.032410550862550735, -0.018350493162870407, 0.002105934312567115, 0.00020506384316831827, 0.0005316074821166694, 0.025510327890515327, 0.02354273945093155, 0.022996187210083008, -0.0008189743966795504, -1.3423622476693708e-05, -0.022818557918071747, -0.0006456148694269359, -9.587348358763848e-06, -0.01989450305700302, -0.0269860178232193, 0.016492214053869247, -0.0018838973483070731, 0.017749285325407982, 0.0011998530244454741, -0.008519383147358894, -0.001232304610311985, -0.007829361595213413, -0.004064982291311026, -0.023952653631567955, -0.0024748570285737514, -0.015139497816562653, -0.012317921966314316, -0.008013823069632053, 0.002872815355658531, 0.009106927551329136, 0.01833682879805565, 0.002889895113185048, -0.00544502679258585, -0.01376628503203392, 0.014961868524551392, -0.032711151987314224, 0.017626309767365456, 0.010521131567656994, -0.0026029550936073065, -0.019484588876366615, 0.015945661813020706, 0.030934859067201614, 0.01070559211075306, 0.0045295520685613155, -0.008703844621777534, 0.0085672065615654, 0.008280267007648945, 0.008246107026934624, -0.004799412097781897, -0.016041308641433716, 0.016355575993657112, 0.0028079121839255095, 0.019142992794513702, -0.0126936761662364, 0.0010410113027319312, -0.0027413011994212866, 0.0006597056635655463, 0.01349300891160965, -0.010541627183556557, 0.012707340531051159, -0.0039215125143527985, -0.037903398275375366, 0.02242230623960495, 0.0012442603474482894, -0.030634254217147827, -0.006299015134572983, 0.024061962962150574, 0.005858357064425945, 0.010391324758529663, 0.0048062438145279884, -0.004194788634777069, -0.025155067443847656, 0.010363996960222721, -0.029158564284443855, 0.00277887680567801, -0.025332698598504066, 0.03653701767325401, -0.00804114993661642, 0.03172735869884491, 0.02149316854774952, -0.014825230464339256, 0.026466794312000275, 0.0013168493751436472, 0.027272958308458328, -0.012044645845890045, 0.007433110848069191, -0.0056978072971105576, -0.026002224534749985, 0.0241849385201931, -0.022121703252196312, -0.007009532768279314, 0.0025192643515765667, -0.025264378637075424, -0.011054019443690777, 0.03396822512149811, -0.021233554929494858, 0.08192818611860275, 0.008710676804184914, -0.014101048931479454, -0.0036823959089815617, -0.01851445809006691, -0.024786144495010376, -0.008129964582622051, -0.002450945321470499, 0.0029120987746864557, -0.0334763266146183, -0.016218937933444977, -0.003188790986314416, 0.007398951333016157, -0.026070542633533478, 0.016205275431275368, 0.008246107026934624, -0.01456561777740717, 0.015071178786456585, -0.0032485700212419033, 0.019566571339964867, 0.03522529453039169, 0.012215442955493927, -0.013964410871267319, -0.011969494633376598, -0.012153956107795238, 0.0015243684174492955, 0.04279504343867302, -0.026917699724435806, -0.004755004774779081, -0.026029551401734352, -0.010022401809692383, 0.0009573204442858696, -0.005240069702267647, -0.030552271753549576, -0.00024808349553495646, 0.002655902411788702, 0.009093263186514378, -0.007829361595213413, 0.004345090594142675, -0.004328010603785515, 0.00036529332282952964, 0.002466317033395171, -0.021274546161293983, -0.04817858338356018, -0.003224658314138651, -0.01833682879805565, -0.010316174477338791, -0.014169367961585522, -0.028229424729943275], "50ce3962-d5f7-44be-81d3-35dfd06afa74": [0.01140440721064806, 0.022725671529769897, 0.0002760597562883049, -0.038633640855550766, -0.0005508203757926822, 0.016060398891568184, -0.03569593280553818, 0.007974770851433277, -0.01892882026731968, -0.01464697252959013, 0.029377086088061333, 0.023307669907808304, -0.021132102236151695, 0.028989087790250778, -0.009699981659650803, 0.012194262817502022, 0.008002485148608685, 0.005061311647295952, -0.0016645861323922873, -0.002809530356898904, 0.014009544625878334, 0.02693823352456093, 0.016670111566781998, -0.0018360678805038333, -0.017875680699944496, 0.005283025559037924, 0.02336309850215912, -0.02541395090520382, -0.011633049696683884, -0.01859625056385994, 0.039714496582746506, -0.009984052740037441, -0.026785805821418762, -0.0022587100975215435, -0.021381530910730362, -0.007905485108494759, -0.010663051158189774, 0.009242696687579155, 0.012783190235495567, -0.020037390291690826, 0.015339828096330166, 0.023917382583022118, -0.006131773814558983, -0.0019192106556147337, 0.010669979266822338, 0.008501340635120869, 0.020494675263762474, -0.013295902870595455, -0.0034365649335086346, 0.00399431400001049, 0.02053624577820301, 0.03935421258211136, 0.003907707054167986, -0.00897248275578022, -0.02454095333814621, -0.0019313356606289744, -0.009027911350131035, 0.011917119845747948, -0.002021406777203083, -0.021381530910730362, 0.00886855460703373, -0.004125956445932388, -0.007503628730773926, -0.021755672991275787, 0.0064158448949456215, -0.002345317043364048, -0.005858095828443766, 0.004049742128700018, -0.016711682081222534, -0.008404341526329517, 0.004628276918083429, 0.01442525815218687, -0.013365188613533974, 0.0094089824706316, 0.026217663660645485, -7.124777312128572e-06, -0.01977410539984703, -0.006169881206005812, -0.01740453764796257, 0.00114061392378062, 0.008293484337627888, 0.002078567398712039, -0.012776261195540428, 0.0068696653470396996, -0.010559123009443283, -0.02819923125207424, 0.021353816613554955, 0.03472593426704407, -0.05199190229177475, -0.016240540891885757, -0.004507027100771666, 0.021048959344625473, 0.011515263468027115, 0.02940480038523674, -0.01242983341217041, 0.0214231014251709, 0.0061456309631466866, 0.02420838177204132, -0.0023054778575897217, -0.03239793702960014, 0.014633115381002426, 0.008293484337627888, -0.0010791230015456676, 0.0024908166378736496, -0.00448624137789011, -0.026868948712944984, 0.024887381121516228, -0.006149095483124256, 0.002062978222966194, -0.004160599317401648, -0.01135590672492981, 0.02194967307150364, -0.0066375588066875935, -0.0322316512465477, 0.0217141006141901, -0.013988759368658066, -0.012845546938478947, -0.024707239121198654, -0.02594052255153656, -0.01622668281197548, 0.015159685164690018, 0.015021114610135555, 0.00042653936543501914, 0.010413623414933681, 0.008584483526647091, 0.008321198634803295, 0.010178051888942719, -0.009852409362792969, -0.016905682161450386, -0.003419243497774005, 0.046643052250146866, 0.008889339864253998, -0.01275547593832016, 0.013018760830163956, -0.0235709547996521, 0.011646906845271587, -0.035280220210552216, 0.010905550792813301, -0.006180273834615946, -0.02734008990228176, 0.018138965591788292, 0.017681680619716644, -0.019871104508638382, -0.0005174766993150115, -0.019483106210827827, 0.015145828016102314, -0.004742598161101341, -0.006294595077633858, -0.012471404857933521, 0.00815491285175085, -0.013600760139524937, -0.011272763833403587, 0.00035075825871899724, 0.01399568747729063, -0.0025133343879133463, 0.018901105970144272, -0.01955239102244377, 0.017806394025683403, 0.022670242935419083, -0.008854697458446026, 0.01597725600004196, -0.002847637515515089, -0.006447023246437311, -0.010129552334547043, 0.01632368378341198, 0.03882763907313347, 0.041238777339458466, 0.02476266771554947, 0.015700113028287888, -0.007371985819190741, 0.0025133343879133463, 0.0224623866379261, -0.015866398811340332, 0.013427546247839928, 0.02714609168469906, 0.00854291208088398, -7.58352325647138e-05, -0.004697562661021948, -0.009000197052955627, 0.005570560693740845, 0.007001308258622885, 0.0065405587665736675, 0.003585528815165162, 0.029460228979587555, -0.01794496551156044, 0.006554415915161371, 0.025455523282289505, -0.013531474396586418, -0.005788810551166534, -0.004985097795724869, 0.008515197783708572, 0.01847153715789318, 0.008085627108812332, -0.0016524611273780465, -0.6363188028335571, -0.04032420739531517, -0.03708164393901825, -0.03414393588900566, -0.01161919254809618, 0.009152625687420368, 0.006294595077633858, 0.010399766266345978, -0.029681943356990814, 0.016794824972748756, 0.0022691027261316776, -0.006453951820731163, 0.009547553025186062, -0.023626383394002914, -0.012797047384083271, -0.020771818235516548, -0.011633049696683884, -0.007586771156638861, -0.015118113718926907, 0.01140440721064806, -0.00972076691687107, 0.017543109133839607, -0.021866530179977417, -0.0021010853815823793, 0.011584549210965633, 0.017335252836346626, 0.008244983851909637, 4.259980778442696e-05, 0.015422970987856388, 0.03200994059443474, -0.025455523282289505, -0.011445978656411171, 0.007829271256923676, 0.013067260384559631, 0.05459703877568245, -0.018443822860717773, -0.018942678347229958, -0.019538534805178642, 0.0326196514070034, 0.024804238229990005, -0.04132192209362984, -0.02984822914004326, 0.0311230830848217, 0.026508664712309837, 0.003311850829049945, 0.012506047263741493, 0.01032355148345232, 0.00308147631585598, -0.014113472774624825, -0.006287666503340006, -0.005927381571382284, 0.0027229234110563993, -0.0030606905929744244, -0.022988956421613693, 0.02075796015560627, 0.0013935063034296036, 0.0378299281001091, -0.00950598157942295, 0.011210407130420208, -0.01086397934705019, 0.0017875679768621922, 0.017210539430379868, -0.005584417842328548, -0.01978796161711216, -0.0125337615609169, -0.013441403396427631, -0.026120664551854134, -0.008272698149085045, 0.012007191777229309, -0.006880058441311121, 0.015228970907628536, 0.02390352636575699, -0.015935683622956276, -0.01955239102244377, 0.00886855460703373, 0.031732797622680664, 0.012554547749459743, -0.00924962479621172, -0.003377672052010894, 0.011161907576024532, -0.000573771249037236, -0.010690765455365181, -0.0055359178222715855, -0.0035508861765265465, 0.02940480038523674, 0.00035184083390049636, -0.013524545356631279, -0.006443559192121029, -0.0019434605492278934, 0.01772325113415718, -0.009381268173456192, 0.01685025356709957, -0.011376692913472652, -0.033257078379392624, -0.014743971638381481, 0.017044253647327423, -0.001623014803044498, -0.0107600511983037, -0.014674685895442963, -0.010510622523725033, 0.0020266033243387938, -0.006817701272666454, 0.016046540811657906, 0.011272763833403587, 0.036056216806173325, 0.011064907535910606, -0.018568536266684532, 0.033146221190690994, 0.035169363021850586, -0.02788051776587963, -0.027935946360230446, -0.01861010678112507, -0.017917251214385033, 0.017792537808418274, 0.015298256650567055, -0.021021245047450066, 0.006294595077633858, 0.018346821889281273, -0.00030464003793895245, -0.014522258192300797, 0.006557880435138941, 0.01524282805621624, -0.017972679808735847, 0.004046278074383736, 0.027825089171528816, 0.020771818235516548, 0.01011569518595934, -0.020259104669094086, -0.02249010093510151, -0.0010540069779381156, -0.008674554526805878, 0.010067194700241089, 0.030208513140678406, 0.0005850301240570843, -0.0005742042558267713, -0.004922740627080202, 0.03059651330113411, -0.019261391833424568, 0.002967155072838068, -0.022199099883437157, -0.03187136724591255, -0.004583241418004036, 0.0014108276227489114, -0.018540821969509125, -0.013205831870436668, -0.013870973140001297, -0.0181666798889637, -0.019718676805496216, 0.007815414108335972, 0.02887823060154915, -0.011924048885703087, 0.007032486610114574, -0.02193581499159336, 0.026009807363152504, 0.015506112948060036, -0.01793110929429531, 0.03145565465092659, -0.02691052109003067, -0.010593765415251255, -0.007233414798974991, -0.002530655823647976, 0.023390812799334526, -0.01978796161711216, 0.011480621062219143, -0.006800380069762468, 0.0004663785803131759, 0.0013389438390731812, 0.038522783666849136, -0.027409376576542854, -0.04661533981561661, 0.012734689749777317, -0.013226618058979511, 0.005993202794343233, 0.004707955289632082, -0.00044429380795918405, 0.015603112988173962, 0.0019122820813208818, 0.017058109864592552, 0.003911171108484268, -0.03234250843524933, 0.0003977425512857735, -0.01189633458852768, 0.01416890136897564, -0.015228970907628536, 0.017543109133839607, 0.02106281742453575, 0.013018760830163956, 0.004735669586807489, -0.019538534805178642, -0.023099813610315323, 0.0038349570240825415, 0.024402381852269173, -0.010164194740355015, -0.013579973950982094, -0.00481188390403986, 0.04722505435347557, 0.0003676466294564307, 0.010337408632040024, 0.011750834994018078, 0.04201477766036987, 0.013379045762121677, 0.005522061139345169, -0.012180405668914318, -0.018901105970144272, 0.007032486610114574, -0.052463043481111526, 0.007337342947721481, -0.006651415955275297, 0.014730114489793777, 0.02140924520790577, 0.010462122969329357, 0.004541669972240925, -0.023169098421931267, -0.02984822914004326, 0.01221504807472229, 0.04461991414427757, -0.007794627919793129, 0.009367411024868488, -0.008189556188881397, -0.0013839794555678964, 0.026134520769119263, 0.0019347998313605785, 0.01232590526342392, 0.006474737543612719, 0.026827378198504448, 0.00036483188159763813, 0.004520884249359369, 0.0018066215561702847, -0.007219557650387287, -0.051631614565849304, 0.008965554647147655, -0.012949475087225437, 0.010572980158030987, 0.014355972409248352, 0.015506112948060036, 0.004416956100612879, 0.005525525193661451, -0.011827048845589161, 0.04933133348822594, -0.00630152365192771, -0.00908333994448185, -0.00494699040427804, 0.0214231014251709, -0.040684495121240616, -0.015575398690998554, 0.0013701224233955145, 0.03181593865156174, 0.020674817264080048, 0.0002249616227345541, 0.036804500967264175, -0.020369961857795715, 0.022988956421613693, -0.022199099883437157, 0.00040380502468906343, 0.02020367607474327, 0.010746194049715996, 0.012478332966566086, -0.001184783410280943, 0.008584483526647091, 0.011986405588686466, -0.001233283313922584, 0.018222108483314514, 0.027520233765244484, 0.003980456851422787, -0.002745441161096096, -0.008335055783390999, -0.014258972369134426, -0.03785764053463936, -0.023210670799016953, 0.001969442702829838, -0.021769529208540916, -0.009173410944640636, 0.00010235862282570451, 0.003706778632476926, 0.021021245047450066, 0.0057992031797766685, 0.008563698269426823, -0.011494478210806847, 0.01600497029721737, 0.007067129481583834, -0.02681352011859417, -0.026896663010120392, 0.012561475858092308, 0.034199364483356476, 0.016683967784047127, 0.017349109053611755, -0.008231127634644508, 0.015603112988173962, 0.008612197823822498, 0.0015017649857327342, -0.0107600511983037, -0.004617884289473295, -0.010392837226390839, 0.0008457171497866511, -0.006062488537281752, -0.029598800465464592, 0.02617609314620495, -0.017986537888646126, -0.008390484377741814, 0.005338454153388739, -0.008286555297672749, 0.009880123659968376, -0.060139887034893036, -0.013191974721848965, 0.0715581476688385, -0.010593765415251255, 0.010808550752699375, 0.0003362515999469906, 0.013656188733875751, -0.024998238310217857, 0.014155044220387936, -0.0009189000120386481, -0.01698882505297661, -0.013912544585764408, 0.01589411310851574, -0.013586902990937233, 0.0012194262817502022, 0.002123603131622076, 0.024887381121516228, -0.0010003106435760856, -0.0009682659874670208, -0.00854291208088398, -0.017252109944820404, 0.01632368378341198, 0.044813916087150574, 0.024887381121516228, -0.01513197086751461, -0.004011635202914476, -0.001211631577461958, 0.004032420925796032, -0.002525459509342909, -0.01588025502860546, 0.021270673722028732, -0.00740662869066, -0.000518342771101743, 0.007455128710716963, 0.0041017066687345505, -0.018069680780172348, 0.015478398650884628, 0.009887052699923515, 0.00683502247557044, 0.017529252916574478, -0.00016509454871993512, -0.020771818235516548, -0.004586705472320318, 0.014577686786651611, 0.026550235226750374, -0.0047044912353158, -0.01097483653575182, -0.024499382823705673, 0.018998106941580772, 0.02463795244693756, -0.02323838509619236, -0.007392771542072296, 0.007254200521856546, 0.019718676805496216, 0.019857248291373253, 0.027256948873400688, -0.01870710775256157, 0.02854565903544426, 0.019330676645040512, 0.01204876322299242, 0.016268255189061165, 0.0055913464166224, 0.022143671289086342, 0.015187399461865425, 0.022323815152049065, -0.006478202063590288, 0.0015935683622956276, 0.0013813812984153628, -0.016060398891568184, 0.01496568601578474, -0.0023314598947763443, -0.0236679557710886, 0.015603112988173962, -0.030208513140678406, -0.026855092495679855, -0.014799400232732296, 0.006748415529727936, 0.0003332203486934304, 0.000629199668765068, 0.004309563431888819, -0.005965488497167826, -0.02660566382110119, -0.021048959344625473, -0.012131905183196068, 0.019178248941898346, 0.008355841040611267, 0.000754346780013293, -0.004707955289632082, -0.0005906595615670085, 0.013115760870277882, -0.025386236608028412, -0.0033361008390784264, 0.010836265049874783, -0.036167073994874954, -0.06928557902574539, -0.011480621062219143, -0.007725342642515898, 0.0029359764885157347, -0.00037111088749952614, -0.0026726913638412952, -0.023626383394002914, 0.02117367461323738, -0.032037653028964996, -0.04874933511018753, -0.012658475898206234, -0.012700047343969345, 0.007177986204624176, 0.021811101585626602, 0.009450552985072136, 0.013233546167612076, 0.012485262006521225, -0.00011518727842485532, 0.007953984662890434, -0.009880123659968376, 0.012124977074563503, -0.0215201023966074, -0.010981764644384384, 0.02161710150539875, 0.01324740331619978, 0.034642789512872696, 0.02075796015560627, -0.01815282180905342, 0.00912491139024496, 0.008799268864095211, 0.007891627959907055, -0.009374339133501053, -0.008203413337469101, 0.00020309336832724512, -0.0007604092825204134, 0.009381268173456192, -0.01892882026731968, -0.009921695105731487, 0.032702796161174774, -0.017210539430379868, 0.025566380470991135, 0.00775998504832387, 0.04509105533361435, 0.022143671289086342, 0.025109095498919487, 0.002556638093665242, 0.021644815802574158, -0.021145960316061974, 0.014522258192300797, -0.045783914625644684, 0.0008448510779999197, 0.032370224595069885, -0.008958625607192516, 0.02249010093510151, 0.003855742746964097, -0.006602915935218334, -0.041017062962055206, 0.0020369961857795715, 0.011993334628641605, 0.020841103047132492, -0.027298519387841225, -0.025247666984796524, -0.012471404857933521, 0.00048023569979704916, -0.01021962333470583, -0.007843127474188805, -0.02379266917705536, -0.005854631774127483, 0.008057912811636925, 0.004403098952025175, 0.011549906805157661, -0.0012211584253236651, -5.150408833287656e-05, -0.03004222922027111, 0.008771554566919804, -0.010566051118075848, 0.018138965591788292, 0.023404669016599655, 0.007732270751148462, 0.002809530356898904, -0.005802667699754238, 0.01600497029721737, 0.00886162556707859, -0.03622250258922577, -0.01535368524491787, -0.012866332195699215, 0.03999163955450058, 0.005300347227603197, 0.026009807363152504, -0.0020941568072885275, 0.014009544625878334, 0.028407089412212372, -0.018859535455703735, 0.014716257341206074, 0.0032165830489248037, 0.010656122118234634, -0.0008643376640975475, 0.011445978656411171, 0.02476266771554947, 0.008716125972568989, 0.041765350848436356, -0.003876528237015009, 0.005615596659481525, 0.018859535455703735, -0.002019674750044942, -0.006568273063749075, 0.006471273489296436, -0.028490232303738594, -0.002471763174980879, 0.012991046532988548, -0.020799532532691956, 0.028462518006563187, -0.020383818075060844, -0.016406826674938202, 0.02767266146838665, 0.007371985819190741, 0.0017182824667543173, 0.016891824081540108, 0.01404418796300888, -0.026439378038048744, 0.006987451110035181, 0.046199627220630646, 0.028517944738268852, -0.028573373332619667, -0.008445912040770054, -0.026674948632717133, 0.015284399501979351, 0.023626383394002914, 0.014182758517563343, 0.022296100854873657, 0.019524676725268364, -6.695801857858896e-05, 0.009596053510904312, -0.0016238808166235685, -0.006429702043533325, -0.030319370329380035, -0.0019729069899767637, -0.013919473625719547, -0.02368181198835373, -0.026023665443062782, -0.01708582416176796, 0.004829205106943846, -0.0036721357610076666, 0.006384666543453932, 0.012797047384083271, 0.027852803468704224, -0.025649523362517357, -0.03350650891661644, 0.002618995029479265, -0.022656384855508804, 0.026855092495679855, -0.017640110105276108, 0.009353553876280785, 0.01891496405005455, -0.010489837266504765, -0.0037795284297317266, 0.00762141402810812, 0.014300543814897537, 0.004583241418004036, 0.03328479453921318, 0.012741618789732456, -0.01642068289220333, -0.012041834183037281, -0.0196632482111454, 0.023931240662932396, 0.0013813812984153628, -0.01535368524491787, 0.005934310145676136, 0.034310221672058105, 0.012845546938478947, -0.02075796015560627, 0.01912282034754753, -0.026231521740555763, 0.011813191697001457, 0.011944834142923355, -0.0019434605492278934, -0.01784796640276909, 0.004423884209245443, -0.013843259774148464, 0.005982810165733099, 0.012769333086907864, 0.01999581977725029, 0.006938951089978218, 0.003197529586032033, 0.006758808623999357, -0.012984118424355984, -0.013011832721531391, 0.006893915589898825, -0.011245050467550755, 0.0036236359737813473, -0.013538402505218983, 0.00880619790405035, 0.005906595848500729, 0.008078699000179768, -0.03317393735051155, -0.00011984240700257942, -0.006911236792802811, 0.02562180906534195, -0.0163098257035017, -0.0054700965993106365, -0.022129815071821213, 0.0006820299313403666, -0.00456245569512248, 0.0031576904002577066, -0.006634094286710024, -0.0017771752318367362, -0.004112099297344685, -0.029765086248517036, 0.01880410686135292, -0.00822419859468937, 0.022018957883119583, -0.0007751324446871877, -0.008300412446260452, -0.012727761641144753, 0.0006751014152541757, -0.026009807363152504, 0.006873129867017269, -0.04849990829825401, 0.012041834183037281, 0.0027627625968307257, 0.00043086972436867654, 0.005629453342407942, 0.020508531481027603, -0.008134127594530582, 0.01978796161711216, 0.023501669988036156, 0.004475848749279976, 0.008736912161111832, 0.011979477480053902, 0.004015099722892046, -0.037802211940288544, 0.008549841120839119, 0.0007344271871261299, 0.0035456896293908358, 0.01676711067557335, -0.02085496112704277, 0.001590970205143094, -0.021686388179659843, -0.007850056514143944, -0.0072957719676196575, 0.0003516243305057287, -0.034116219729185104, 0.006509380415081978, 0.016808683052659035, 0.018734822049736977, -0.004250670317560434, -0.011286620981991291, 0.02139538712799549, -0.00572991743683815, -0.0068107726983726025, 0.021048959344625473, -0.0006712040631100535, 0.017570823431015015, -0.010621479712426662, -0.019399963319301605, -0.00222753151319921, -0.025039808824658394, -0.007489771582186222, 0.00037630731821991503, -0.0037102429196238518, 0.012526833452284336, 0.005653703585267067, -0.019496962428092957, 0.005283025559037924, -0.010268122889101505, -0.0034331006463617086, 0.004105170723050833, 0.014660828746855259, 0.012187333777546883, 0.030568799003958702, -0.007143343333154917, 0.012097262777388096, -0.022420814260840416, -0.015034971758723259, -0.00334995798766613, -0.011653834953904152, -0.03297993540763855, -0.004978169221431017, -0.01794496551156044, 0.03625021502375603, 0.0001721313747111708, -0.01161226350814104, -0.015422970987856388, -0.00491927657276392, -0.031178511679172516, -0.005373097024857998, 0.004015099722892046, 0.007960913702845573, 0.01783410832285881, 0.004195242188870907, -0.004801490809768438, 0.041127920150756836, -0.028032947331666946, 0.016794824972748756, 0.002925583627074957, 0.0181666798889637, 0.006311916746199131, 0.022005101665854454, -0.009069482795894146, -0.009228839538991451, -0.005951631348580122, -0.03661050274968147, 0.01281783264130354, -0.006498987786471844, -0.005716060753911734, 0.006332702003419399, -0.0006634094752371311, -0.0037829927168786526, 0.01053833682090044, -0.009471339173614979, -0.023072099313139915, 0.004105170723050833, -0.00016628540470264852, -0.011376692913472652, -0.004645598120987415, -0.0005811328301206231, 0.014342115260660648, -0.00024964462500065565, -0.005047454498708248, -0.011148050427436829, 0.008709197863936424, -0.004576312843710184, -0.00929119624197483, 0.0026969413738697767, 0.020272960886359215, -0.017972679808735847, 0.007787699345499277, -0.038522783666849136, 0.00035790333640761673, 0.02876737341284752, 0.017210539430379868, -0.01037205196917057, -0.02430538274347782, 0.009055625647306442, -0.049663905054330826, -0.011930976994335651, 0.030291656032204628, -0.018332965672016144, 0.004870776552706957, 0.013392902910709381, 0.028365517035126686, -0.012415976263582706, 0.005861560348421335, -0.05847703292965889, -0.008549841120839119, -0.03153879567980766, 0.021755672991275787, 0.022296100854873657, -0.019399963319301605, -0.026342378929257393, -0.017099682241678238, 0.014882543124258518, -0.012616904452443123, -0.0015632559079676867, 0.014494543895125389, -0.014397543855011463, 0.007029022555798292, 0.026328520849347115, -0.018097393214702606, 0.011030265130102634, -0.007718414068222046, 0.010448265820741653, -0.010579908266663551, 0.004125956445932388, 0.20674817264080048, -0.0005811328301206231, 0.02734008990228176, 0.045229628682136536, -0.018845679238438606, 0.01977410539984703, 0.010836265049874783, -0.00811334140598774, -0.015921827405691147, 0.0016489968402311206, -0.016171254217624664, 0.01880410686135292, -0.023072099313139915, 0.0023141384590417147, 0.0015225507086142898, 0.012291261926293373, -0.010579908266663551, -0.05140990391373634, -0.016891824081540108, -0.0025982093065977097, 0.01227740477770567, 0.004832669161260128, -0.014314400963485241, -0.03212079778313637, 0.024499382823705673, -0.018859535455703735, -0.014951828867197037, -0.006201059557497501, 0.03176051005721092, -0.005199883133172989, -0.012131905183196068, 0.015422970987856388, 0.002014478202909231, 0.002350513357669115, -0.026896663010120392, 0.0018066215561702847, 0.01409961562603712, -0.01053833682090044, 0.04356677457690239, -0.023169098421931267, 0.027159947901964188, -0.02042539045214653, -0.04054592177271843, -0.0203145332634449, 0.0008210341329686344, 0.029543371871113777, -0.011979477480053902, -0.022323815152049065, -0.01676711067557335, -0.0036201716866344213, -0.024291524663567543, -0.00025159327196888626, 0.02433309704065323, 0.02260095626115799, 0.0012843814911320806, -0.01292176079005003, -0.00516177574172616, 0.019081249833106995, 0.016600824892520905, 0.01236747670918703, -0.009166482836008072, 0.02217138558626175, -0.007101772353053093, 0.004202170763164759, -0.018346821889281273, 0.003588993102312088, -0.03320164978504181, 0.003862671321257949, 0.015422970987856388, -0.0214231014251709, -0.004652526695281267, -0.01565854251384735, -0.0003206623368896544, 0.013967973180115223, -0.028240803629159927, -0.01210419088602066, 0.021381530910730362, 0.025995951145887375, -0.005009347572922707, 0.03547421842813492, -0.02411138266324997, -0.016489967703819275, -0.01357304584234953, -0.011736977845430374, -0.008182627148926258, -0.03733107075095177, 0.02734008990228176, -0.033146221190690994, 5.093573054182343e-05, -0.0006924227927811444, -0.010690765455365181, 0.0037760641425848007, -0.0049504549242556095, 0.009762338362634182, 0.02282267063856125, 0.014480686746537685, -0.008258841000497341, 0.023806525394320488, -0.01232590526342392, 0.009367411024868488, -0.02117367461323738, 0.03791306912899017, 0.019926533102989197, 0.013974902220070362, 0.006630630232393742, -0.0007751324446871877, 0.0013060332275927067, 0.002031799638643861, 0.01015726663172245, -0.023861953988671303, -0.019261391833424568, -0.0027679589111357927, -0.0029359764885157347, -0.01859625056385994, 0.0044481344521045685, 0.01622668281197548, 0.0025046737864613533, 0.00010598528751870617, 0.013268188573420048, -0.0006027845665812492, -0.0012306851567700505, -0.0020439247600734234, -0.01597725600004196, 0.02228224277496338, -0.01270697545260191, -0.007184914778918028, -0.010302766226232052, -0.011667692102491856, -0.008030199445784092, -0.009665338322520256, 0.02066096104681492, -0.01921982131898403, -0.006322309374809265, -0.018637821078300476, 0.0050751687958836555, 0.013898687437176704, -0.001901889219880104, -0.019635533913969994, -0.021242959424853325, -0.0012696583289653063, -0.017653966322541237, -0.0003752247430384159, -0.0033291722647845745, -0.008986339904367924, -0.0023366562090814114, -0.018970392644405365, 0.010669979266822338, -0.005854631774127483, -0.006585594732314348, -0.027395518496632576, -0.004219491966068745, -0.00473220506682992, -0.008702268823981285, -0.0001210332484333776, 0.008397412486374378, -0.003699850058183074, -0.020037390291690826, -0.022614814341068268, 0.01718282513320446, 0.001571050612255931, -0.050966475158929825, 0.015700113028287888, 0.04051820933818817, -0.010773908346891403, -0.004146742168813944, -0.015547684393823147, -0.17825794219970703, 0.004652526695281267, -0.008986339904367924, -0.016254397109150887, 0.02323838509619236, 0.011314335279166698, 0.02347395569086075, 0.0032304401975125074, 0.0011094353394582868, 0.002918655052781105, -0.012291261926293373, 0.008307341486215591, -0.009332767687737942, 0.0005997533444315195, -0.01551997009664774, 0.009201125241816044, -0.010392837226390839, 0.011910191737115383, 0.017446110025048256, 0.002518530935049057, 0.01642068289220333, -0.012727761641144753, 0.014785543084144592, -0.009492124430835247, -0.017265968024730682, 0.024901239201426506, -0.006419309414923191, 0.0019486569799482822, -0.030984511598944664, -0.033672794699668884, 0.01740453764796257, -0.018776392564177513, 0.02398666925728321, -0.009997909888625145, 0.023972811177372932, -0.022531671449542046, -0.020924245938658714, -0.013337474316358566, -0.03439336270093918, 0.020688675343990326, -7.962428935570642e-05, 0.04331734776496887, 0.027935946360230446, -0.002289888449013233, 0.007143343333154917, 0.030180798843503, 0.010150337591767311, -0.03103994019329548, 0.0176123958081007, -0.03245336562395096, 0.026965947821736336, -0.02700752019882202, -0.005168704316020012, 0.010011767037212849, 0.004441205877810717, -0.006949343718588352, -0.020508531481027603, 0.017099682241678238, 0.005570560693740845, -0.0042090993374586105, 0.0008158377604559064, -0.0196632482111454, 0.001118962187319994, 0.013067260384559631, 0.004112099297344685, -0.017224395647644997, -0.026965947821736336, 0.012305119074881077, -0.0374419279396534, 0.003873063949868083, 0.0004200438561383635, -0.010178051888942719, 0.005885810125619173, -0.01610196940600872, 0.009367411024868488, 0.014688543044030666, -0.03705392777919769, -0.009866266511380672, 0.0030884048901498318, -0.02074410393834114, -0.0084805553779006, 0.01633754000067711, 0.007316557690501213, -0.00190535350702703, -0.007524414453655481, -0.028143802657723427, -0.00929119624197483, -0.006602915935218334, 0.0011665959609672427, -0.02605137974023819, 0.02736780419945717, -0.02182495780289173, -0.004860383458435535, -0.01772325113415718, 0.009845481254160404, 0.011605335399508476, 0.02646709233522415, -0.016794824972748756, -0.003181940410286188, 0.0011986405588686466, 0.012249691411852837, -0.027159947901964188, -0.050633903592824936, -0.004084385000169277, 0.013697759248316288, 0.013864045031368732, -0.05459703877568245, 0.0031490297988057137, 0.027922090142965317, 0.0001244975283043459, -0.036028504371643066, 0.01064919400960207, 0.0036859929095953703, 0.009138768538832664, -0.00580613175407052, 0.03134479746222496, -0.010150337591767311, -0.02614837884902954, 0.0004785035562235862, 0.008535983972251415, 0.05146532878279686, -0.0028736195527017117, -0.010725407861173153, 0.01861010678112507, 0.006963200867176056, -0.01643454097211361, -0.10603465884923935, -0.013455260545015335, -0.0018343357369303703, 0.033035364001989365, 0.006803844124078751, 0.027215376496315002, -0.017335252836346626, 0.008189556188881397, -0.002179031493142247, 0.027963660657405853, 0.005719524808228016, -0.020480819046497345, -0.015339828096330166, -0.005906595848500729, -0.013337474316358566, -0.01858239248394966, -0.008037127554416656, -0.02055010385811329, -0.017487680539488792, 0.03588993102312088, 0.009734624065458775, 0.019760247319936752, -0.0065717375837266445, -0.010178051888942719, -0.029792800545692444, -0.007233414798974991, -0.03547421842813492, 0.03231479600071907, 0.01565854251384735, 0.0007729672943241894, 0.0052795615047216415, -0.01611582562327385, 0.005418132524937391, -0.01416890136897564, 0.0009119714959524572, -0.011716191656887531, 0.0024284597020596266, -0.026855092495679855, 0.027187662199139595, -0.027922090142965317, -0.002748905448243022, -0.005435453727841377, 0.004371920134872198, -0.002575691556558013, -0.008515197783708572, -0.011736977845430374, -0.040601350367069244, 0.027423232793807983, 0.00794012751430273, -0.03212079778313637, -0.013046475127339363, -0.02355709858238697, -0.03450421988964081, -0.0028199232183396816, 0.027631090953946114, -0.003800314152613282, -0.005002418998628855, 0.010988693684339523, 0.0014948364114388824, 0.015547684393823147, -0.011688477359712124, -0.004974704701453447, -0.023695670068264008, 0.025136809796094894, 0.005965488497167826, -0.012519904412329197, -0.02194967307150364, -0.010025624185800552, 0.013191974721848965, -0.02411138266324997, 0.017252109944820404, 0.007226486224681139, -0.029016802087426186, 0.020813388749957085, -0.009457482025027275, -0.002073371084406972, -0.00789855606853962, 0.0019330676877871156, -0.0009648017585277557, -0.00117612280882895, -0.010739265009760857, -0.035280220210552216, -0.028351660817861557, -0.01206261944025755, 0.006668737158179283, 0.013101903721690178, -0.0036894571967422962, 0.008729983121156693, 0.014120401814579964, -0.03206536918878555, 0.0203145332634449, 0.03746964409947395, 0.0074204858392477036, 0.0208688173443079, -0.011529120616614819, -0.0009951142128556967, 0.017556967213749886, -0.019815675914287567, 0.006395059172064066, 0.01427282951772213, -0.028379375115036964, -0.004825740586966276, -0.0655718743801117, 0.006599451880902052, -0.015021114610135555, -0.02681352011859417, 0.001791032264009118, 0.00572991743683815, -0.005037061870098114, 0.0032616187818348408, -0.005889274645596743, -0.004306098911911249, -0.029543371871113777, -0.017168967053294182, -0.012949475087225437, 0.008445912040770054, -0.013191974721848965, -0.019413819536566734, 0.011646906845271587, -0.006339630577713251, 0.003585528815165162, 0.02973737195134163, 0.02552480809390545, -0.016489967703819275, -0.015145828016102314, 0.02172795869410038, -0.025663379579782486, 0.004337277263402939, -0.0058477031998336315, 0.02020367607474327, -0.011903262697160244, -0.0018447285983711481, -0.007884698919951916, 0.0004958249628543854, -0.0066548800095915794, 0.01021962333470583, -0.02140924520790577, 0.00897941179573536, -0.0022621741518378258, 0.016157398000359535, -0.0018828356405720115, 0.02973737195134163, -0.002457906026393175, -0.019483106210827827, 0.0067276302725076675, -0.039409637451171875, -0.004306098911911249, 0.005695275031030178, -0.01719668135046959, -0.0011007747380062938, 0.015949541702866554, 0.021658673882484436, 0.021450815722346306, 0.017238253727555275, -0.02431923896074295, -0.024568667635321617, 0.010212695226073265, -0.008750769309699535, -0.0072472719475626945, -0.01824982278048992, 0.0012523368932306767, -0.009457482025027275, 0.033118508756160736, 0.0058962032198905945, 0.002426727442070842, 0.00252719153650105, 0.003966599702835083, 0.02258710004389286, -0.023099813610315323, 0.03794078528881073, 0.025330808013677597, -0.014037258923053741, -0.02722923457622528, 0.009097197093069553, 0.005580953788012266, 0.019275249913334846, 0.014120401814579964, 0.014633115381002426, -0.03195451200008392, 0.015478398650884628, -0.005154847167432308, 0.018859535455703735, 0.01708582416176796, 0.005071704741567373, -0.010337408632040024, 0.01858239248394966, 0.036388788372278214, 0.015228970907628536, 0.00318886898458004, 0.0040047066286206245, 0.029127659276127815, 0.004856919404119253, -0.017640110105276108, 0.0014679882442578673, -0.019081249833106995, 0.003431368386372924, 0.009027911350131035, 0.012762404046952724, -0.01200026273727417, -0.00951291061937809, -0.009519838728010654, 0.010787765495479107, 0.012616904452443123, -0.017764823511242867, 0.004735669586807489, -0.002792208921164274, -0.04087849333882332, 0.019843390211462975, -0.0034677432850003242, -0.03115079738199711, 0.01805582270026207, 0.019760247319936752, 0.016683967784047127, 0.019067391753196716, 0.02293352782726288, 0.007365057244896889, -0.03644421696662903, 0.019108964130282402, -0.021436959505081177, -0.0064643449150025845, -0.020924245938658714, 0.02454095333814621, -0.014452972449362278, 0.013226618058979511, 0.036582786589860916, -0.0025618344079703093, 0.012353619560599327, 0.014951828867197037, 0.024513239040970802, -0.02831008844077587, 0.013905616477131844, 0.0017841036897152662, -0.019635533913969994, 0.026231521740555763, -0.0070740580558776855, -0.012949475087225437, -0.001196042401716113, -0.002404209692031145, 0.012374404817819595, 0.009048696607351303, 0.009069482795894146, 0.08851926028728485, 0.03320164978504181, -0.002005817601457238, 0.0028372446540743113, -0.0032339044846594334, -0.02887823060154915, 0.0005105481250211596, 0.006876593921333551, -0.007462057285010815, -0.03037479892373085, 0.009499053470790386, 0.01335133146494627, -0.005092490464448929, -0.021769529208540916, -0.004309563431888819, 0.020342247560620308, 0.002253513550385833, 0.007981698960065842, -0.0024890846107155085, -0.001065265852957964, 0.00923576857894659, 0.015547684393823147, 0.0062599522061645985, 0.0007824940257705748, -0.018083536997437477, -0.010254265740513802, 0.032037653028964996, -0.0077669136226177216, -0.015824826434254646, -0.03525250405073166, -0.006294595077633858, -0.005750703159719706, -0.011210407130420208, -0.02873965911567211, 0.0019209427991881967, 0.007572914008051157, -0.012076476588845253, -0.012914832681417465, -0.001680175424553454, -0.017335252836346626, 0.020841103047132492, 0.004125956445932388, -0.012741618789732456, -0.0075521282851696014, -0.005684881936758757, -0.001851657172665, -0.036056216806173325, 0.009540624916553497, -0.021464673802256584], "5cabf076-22d0-4480-a111-3d87c6574c5b": [-0.0001770713133737445, 0.029886923730373383, -0.002491125138476491, -0.009102883748710155, -0.016324680298566818, 0.025480180978775024, -0.02025786228477955, -0.010780076496303082, -0.015666957944631577, -0.014667218551039696, 0.019771147519350052, -0.0032672379165887833, -0.014272584579885006, 0.033254463225603104, 0.0002908367896452546, 0.0027723016683012247, -0.00155304791405797, 0.0074388450011610985, 0.009260737337172031, -0.021652234718203545, 0.007892673835158348, 0.03012370504438877, -0.01045121531933546, -0.007984754629433155, -0.012220489792525768, 0.021349681541323662, 0.01719287410378456, -0.013299155049026012, 0.005929370876401663, 0.008839794434607029, -0.006698906887322664, -0.020639341324567795, -0.02056041546165943, -0.01654830574989319, -0.035595957189798355, -0.004387011285871267, -0.008583282120525837, -0.0015053630340844393, 0.006873203441500664, -0.003916739486157894, -0.0016665051225572824, -1.8459915736457333e-05, -0.002875892911106348, 0.022744053974747658, -0.006139842327684164, 0.02666408196091652, 0.024888230487704277, -0.022809825837612152, -0.00900422502309084, 0.03370171785354614, 0.024454133585095406, 0.017968986183404922, 0.0029202892910689116, -0.009477785788476467, -0.01765328086912632, -0.011911359615623951, -0.0012924253242090344, 0.03238626942038536, -0.014048959128558636, -0.05593274533748627, 0.013239960186183453, -0.022691436111927032, -0.011516726575791836, -0.028650404885411263, -0.01629837043583393, -0.016798241063952446, -0.0006737547810189426, 0.0289924219250679, -0.026387838646769524, -0.03001846931874752, 0.02046833373606205, 0.029439672827720642, -0.021231291815638542, -0.011760083958506584, 0.032675668597221375, -0.01866617240011692, -0.051881175488233566, -0.0006610114360228181, -0.013549089431762695, -0.008293884806334972, 0.0019320606952533126, -0.01787690632045269, -0.005350574851036072, 0.014654063619673252, 0.0038838530890643597, 0.0073993816040456295, -0.00038887860137037933, -0.004834262654185295, -0.017166564241051674, -0.014522519893944263, 0.019179197028279305, 0.0036898248363286257, 0.0066627319902181625, 0.007353340741246939, -0.007294145878404379, 0.022020559757947922, -0.008984493091702461, 0.022349420934915543, -0.007662470452487469, -0.03922658786177635, 0.018863489851355553, -0.0002653500414453447, -0.013943723402917385, -0.006070781499147415, -0.0096224844455719, -0.007715088315308094, 0.0017890060553327203, 0.0007876230520196259, 0.01707448437809944, -0.007063942961394787, -0.017521735280752182, 0.010234166868031025, 0.007346763741225004, -0.0008961473358795047, 0.0036010323092341423, -0.001700213411822915, -0.0016130651347339153, 0.00018755377095658332, -0.015298631973564625, 0.0028742486611008644, 0.0035385487135499716, 0.014246275648474693, 0.022125795483589172, -0.015574876219034195, -0.006748235784471035, 0.010734036564826965, 0.005870176013559103, -0.024112118408083916, -0.01877140812575817, -0.020271016284823418, 0.029176583513617516, 0.009675102308392525, 0.012615123763680458, 0.002609515329822898, -0.01642991602420807, 0.01967906579375267, -0.024033190682530403, 0.0013524425448849797, -0.019415976479649544, -0.04004216566681862, 0.016627231612801552, 0.042804598808288574, -0.0181268397718668, -0.025677498430013657, -0.001322844997048378, 0.005715610925108194, 0.023901646956801414, 0.008668786846101284, -0.010530142113566399, -0.012029750272631645, -0.004525132942944765, -0.01208236813545227, -0.0020751154515892267, 0.00604776106774807, -0.0017462540417909622, -0.006728504318743944, -0.057511281222105026, 0.0009397214744240046, -0.0049592298455536366, -0.02888718619942665, -0.01349647156894207, 0.04293614625930786, 0.004620502702891827, 0.016390452161431313, 7.204119901871309e-05, 0.010148663073778152, 0.018021604046225548, 0.003604321042075753, -0.004439628683030605, 0.008188649080693722, 0.011115515604615211, -0.008484624326229095, -0.010438061319291592, -0.007840055972337723, 0.005853733047842979, 0.02079719491302967, 0.004745469894260168, -0.004245600663125515, -0.008241266943514347, 0.026387838646769524, -0.03712187334895134, 0.0025322327855974436, 0.0006963640335015953, 0.04340970516204834, -0.025480180978775024, 0.021086592227220535, 0.03364909812808037, -0.0010120709193870425, 0.02620367705821991, -0.01686401292681694, 0.030834045261144638, 0.03080773539841175, -0.01800845004618168, -0.01168773416429758, -0.6448840498924255, -0.014364666305482388, -0.003055122448131442, -0.04080512374639511, -0.019047651439905167, 0.021862706169486046, 0.02282298170030117, 0.004594193771481514, 0.0032902583479881287, 0.034122660756111145, -0.018245231360197067, -0.005620241165161133, 0.001211032154969871, -0.008754290640354156, -0.007267836946994066, -0.031439151614904404, -0.0018350465688854456, -0.008247843943536282, -0.029755380004644394, 0.004479092080146074, -0.004482381045818329, 0.0005639973096549511, -0.026585156098008156, -0.022888753563165665, 0.007294145878404379, 0.0017725629732012749, 0.019192351028323174, -0.008188649080693722, 0.02553279884159565, 0.015206551179289818, -0.011766660958528519, 0.0256380345672369, -0.020770886912941933, -0.009648793376982212, 0.04788222163915634, -0.01147726271301508, -0.013746406883001328, -0.0009495872654952109, 0.03328077495098114, 0.03125498816370964, -0.01932389661669731, -0.02090243063867092, -0.01777167059481144, 0.00865563191473484, -0.000909301801584661, -0.00466654310002923, 0.034569911658763885, 0.013009756803512573, 0.00033543864265084267, 0.01629837043583393, -0.015706419944763184, 0.014443593099713326, 0.028939804062247276, -0.012911099009215832, 0.02091558463871479, -0.011760083958506584, 0.008688517846167088, 0.00968167930841446, -0.007149446755647659, -0.023651711642742157, -0.0009397214744240046, 0.0015366049483418465, 0.007070519961416721, -0.020178936421871185, -0.004202848765999079, -0.018153149634599686, -0.012069213204085827, -0.011996864341199398, 0.013535935431718826, -0.015180242247879505, -0.0037687516305595636, 0.008280729874968529, -0.01754804514348507, -0.012273107655346394, 0.01967906579375267, 0.032912448048591614, -0.00020122206478845328, -0.009813223965466022, -0.0037391541991382837, 0.0011115515371784568, 0.020968202501535416, 0.004775067325681448, -0.004900034982711077, -0.0007329498184844851, 0.008379388600587845, -0.015088161453604698, -0.020073700696229935, 0.0012587170349434018, -0.007471730932593346, 0.0032409292180091143, 0.012661163695156574, 0.03635891526937485, -0.007761129178106785, -0.025953741744160652, 0.0006429240456782281, 0.00878059957176447, 0.010911621153354645, 0.0008862814866006374, 0.011727197095751762, 0.0014001274248585105, 0.007623007055372, -0.007366495206952095, 0.010997124947607517, 0.029176583513617516, 0.017587507143616676, 0.017008712515234947, -0.014325202442705631, 0.03822685033082962, 0.027861136943101883, -0.011957400478422642, -0.021441763266921043, -0.013522780500352383, -0.027071870863437653, 0.0016582836396992207, 0.006787699181586504, -0.029413362964987755, 0.0036141867749392986, 0.002096491400152445, -0.0008903922280296683, -0.008754290640354156, 0.0103920204564929, 0.018192613497376442, -0.009306777268648148, -0.008741135708987713, -0.011733775027096272, 0.035727500915527344, 0.01766643486917019, 0.004804665222764015, -0.0164167620241642, -0.026808781549334526, 0.0017922946717590094, 0.014430438168346882, 0.02227049320936203, -0.013680634088814259, 0.011825855821371078, 0.00282491953112185, -0.004534998908638954, 0.008175494149327278, 0.008287306874990463, -0.004308084491640329, -0.01888979971408844, 0.02124444581568241, -0.011845587752759457, -0.0387004092335701, -0.009905305691063404, -0.025335481390357018, -0.009635639376938343, 0.0007411713595502079, 0.004903323482722044, 0.02936074510216713, -0.01378586981445551, 0.010398597456514835, -0.0034530446864664555, -0.015417022630572319, -0.006991593167185783, -0.015798501670360565, -0.017035020515322685, -0.0002904257271438837, -0.009806646965444088, 0.0008398297941312194, 0.006629846058785915, 0.0256380345672369, -0.029308127239346504, -0.004278486594557762, -0.024493597447872162, -0.020862966775894165, -0.010523565113544464, 0.03038679249584675, 0.017390191555023193, -0.05619583651423454, -0.00404828367754817, 0.007616430055350065, 0.0035681461449712515, -0.017284955829381943, -0.026940325275063515, 0.00899107102304697, -0.017587507143616676, -0.006827162578701973, -0.028071608394384384, -0.015272323042154312, 0.011378604918718338, -0.0008295528823509812, -0.0216916985809803, -0.0030682769138365984, 0.023533321917057037, -0.0022872311528772116, 0.0033165672793984413, -0.008274152874946594, -0.011996864341199398, 0.010628800839185715, 0.015890583395957947, -0.018613554537296295, 0.010536719113588333, -0.008583282120525837, 0.02023155428469181, 0.031991638243198395, -0.0061233993619680405, 0.003518817014992237, -0.004436340183019638, 0.034911926835775375, 0.031228678300976753, 0.025559108704328537, 0.0176401250064373, -0.018758254125714302, 0.016258908435702324, -0.017968986183404922, 0.0174296535551548, -0.015495949424803257, 0.03617475554347038, 0.00604776106774807, 0.020876122638583183, -0.020284170284867287, -0.034359440207481384, -0.013641171157360077, 0.035806428641080856, 0.016350988298654556, 0.0216916985809803, 0.0324125811457634, -0.0036931135691702366, -0.0017676299903541803, 0.007149446755647659, -0.0014116375241428614, 0.010977393947541714, 0.021967941895127296, -0.015035543590784073, 0.008852949365973473, 0.016574613749980927, -0.0040318407118320465, -7.008858665358275e-05, -0.02922920137643814, -0.018810871988534927, -0.014312048442661762, 0.00195672526024282, -0.0037161337677389383, -0.004511978477239609, 0.009569866582751274, 0.01440412923693657, 0.0046895635314285755, 0.0263352207839489, -0.020073700696229935, 0.02891349419951439, 0.016350988298654556, 0.011963977478444576, -0.016245752573013306, 0.01230599358677864, 0.020547259598970413, 0.016324680298566818, 0.02912396565079689, 0.009938191622495651, -0.00042587550706230104, 0.00710998335853219, 0.027703285217285156, -0.013068951666355133, 0.007248105481266975, 0.019402822479605675, -0.020941894501447678, 0.01535124983638525, 0.02194163203239441, 0.0015300277154892683, 0.026282602921128273, -0.0009964500786736608, 0.002778878901153803, -0.004985538776963949, -0.011247060261666775, 0.011878473684191704, -0.0052683595567941666, -0.017863750457763672, -0.00316364667378366, -0.044146355241537094, 0.009425167925655842, 0.016114208847284317, -0.011220751330256462, -0.01642991602420807, 0.007721665780991316, -0.0033297217451035976, -0.01856093667447567, 0.010161817073822021, 0.008024218492209911, 0.004235734697431326, 0.022467810660600662, -0.00046040595043450594, -0.015614339150488377, 0.014259430579841137, 0.027361268177628517, 0.01911342516541481, 0.007017902098596096, -0.00395949138328433, -0.003956202417612076, 0.000517545617185533, 0.019087115302681923, -0.008418851532042027, 0.004567884840071201, 0.008872680366039276, -0.00972772017121315, -0.006011586636304855, -0.009135769680142403, 0.026808781549334526, -0.012555927969515324, 0.007524348795413971, 0.0018021605210378766, 0.021520689129829407, 0.007741397246718407, -0.02767697535455227, 0.005626818630844355, 0.049776460975408554, -0.004982250276952982, -0.0028380739968270063, -0.010168394073843956, -0.003439890220761299, -0.010444638319313526, -0.004952652845531702, -0.033017683774232864, -0.01765328086912632, 0.03385956957936287, 0.024677759036421776, -0.015075006522238255, -0.0003705856797751039, -0.013535935431718826, 0.027624357491731644, 0.0010457792086526752, -0.025243401527404785, -0.02991323359310627, -0.015298631973564625, -0.008649054914712906, 0.027940064668655396, 0.02980799786746502, -0.0002750103594735265, 0.013384658843278885, 0.015574876219034195, -0.013733251951634884, -0.008701672777533531, -0.0016311525832861662, 0.003867410123348236, 0.008234689012169838, -0.01202317327260971, 0.006021452136337757, 0.020836658775806427, -0.004561307840049267, 0.017824288457632065, -0.008668786846101284, 0.006998170632869005, -0.03349124640226364, -0.0002797377237584442, -0.020665651187300682, 0.017495427280664444, 0.012779554352164268, 0.0037325769662857056, -0.0054755425080657005, 0.009859264828264713, -0.005455810576677322, 0.0046796975657343864, 0.0035319714806973934, 0.0035385487135499716, 0.007879518903791904, -0.008313615806400776, 0.01865301840007305, 0.017166564241051674, 0.03720080107450485, -0.007853209972381592, -0.012332302518188953, 0.026585156098008156, 0.007971600629389286, 0.016232598572969437, 0.013641171157360077, 0.014680372551083565, 0.027361268177628517, 0.008727981708943844, -0.01879771798849106, -0.004008820280432701, -0.005820846650749445, -0.02069195918738842, 0.003109384560957551, 0.0053472863510251045, -0.013187342323362827, 0.029965851455926895, -0.010655109770596027, -0.008188649080693722, -0.00900422502309084, 0.0014478123048320413, 0.002422064309939742, -0.027361268177628517, 0.0029811286367475986, -0.0009060131851583719, -0.008320193737745285, -0.0009874063543975353, -0.03454359993338585, 0.017021866515278816, -0.018639864400029182, -0.013970032334327698, -0.013562244363129139, -0.03462252765893936, 0.012194180861115456, -0.029202891513705254, 0.0039529139176011086, 0.013930568471550941, -0.02655884623527527, -0.013404390774667263, -0.01440412923693657, 0.0013064019149169326, -0.021191827952861786, -0.0005726299132220447, -0.013838487677276134, 0.016008973121643066, 0.026624618098139763, -0.011266791261732578, -0.013680634088814259, -0.0035319714806973934, -0.03578012064099312, -0.0027410597540438175, 0.020836658775806427, -0.018495164811611176, -0.00791898276656866, 0.012891367077827454, 0.017521735280752182, -0.0021556864958256483, 0.0036174755077809095, 0.0037292882334440947, -0.05030263960361481, 0.0029350880067795515, -0.005590643733739853, -0.01564064808189869, 0.008800331503152847, 0.009556712582707405, -0.01079980842769146, 0.013522780500352383, 0.025480180978775024, -0.006143130827695131, -0.006001720670610666, 0.017284955829381943, 0.012444115243852139, -0.02303345315158367, -0.015311786904931068, -0.04982908070087433, 0.0090634198859334, 0.012661163695156574, -0.03948967531323433, -0.015430176630616188, 0.02000792697072029, 0.021625924855470657, 0.010253898799419403, 5.909228275413625e-05, 0.007340186275541782, 0.011924514546990395, -0.006439106073230505, 0.025809042155742645, -0.023796411231160164, 0.00525520509108901, 0.028387315571308136, -0.00310609582811594, 0.04872410371899605, 0.007340186275541782, -0.03943705931305885, -0.021178673952817917, 0.013161033391952515, 0.011720620095729828, 0.021441763266921043, -0.010043427348136902, -0.02383587509393692, -0.022678282111883163, -0.004156807903200388, 0.010641954839229584, 0.004212714731693268, -0.04383064806461334, -0.0030419679824262857, -0.015943201258778572, -0.00460734823718667, 0.0057452088221907616, 0.006846894510090351, -0.009740875102579594, -0.027834828943014145, 0.006544341798871756, 0.007373072672635317, 0.00803737249225378, 0.011108937673270702, 0.007123137824237347, -0.007445422001183033, 0.001933705061674118, -0.006402931641787291, -0.004551441874355078, -0.023862183094024658, -0.014930307865142822, 0.005406481213867664, 0.008438583463430405, 0.009471208788454533, 0.01051041018217802, 0.009221273474395275, -0.00016494454757776111, 0.02957121655344963, -0.012292839586734772, 0.02295452542603016, 0.0009060131851583719, -0.0039825113490223885, -0.06508824974298477, 0.010319670662283897, 0.01321365125477314, 0.020731423050165176, -0.0017988719046115875, -0.013082106597721577, 0.028703022748231888, 0.01585111953318119, -0.012056059204041958, -0.0031620024237781763, -0.006199037190526724, -0.02970276214182377, 0.025782734155654907, -0.02284928970038891, -0.01389110554009676, 0.02204686775803566, -0.033228155225515366, -0.03685878589749336, 0.005817558150738478, 8.725104271434247e-05, 0.011437799781560898, -0.0026325355283915997, 0.021731160581111908, -0.03285983204841614, 0.01259539183229208, -0.0014996080426499248, 0.021862706169486046, 0.005613664165139198, 0.0017988719046115875, -0.03191271051764488, -0.010332825593650341, 0.014022650197148323, 0.01181270182132721, -0.0006955418502911925, 0.0018531340174376965, 0.015390713699162006, -0.01321365125477314, -0.012444115243852139, 0.008977916091680527, 0.01596950925886631, 0.014022650197148323, -0.0014067046577110887, 0.00615299679338932, -0.020494641736149788, 0.013062374666333199, 0.0025651189498603344, 0.008668786846101284, 0.012016595341265202, -0.03320184722542763, 0.03606951981782913, -0.016272062435746193, -0.0034234472550451756, 0.02216525748372078, -0.009602752514183521, 0.021349681541323662, 0.00044601826812140644, -0.006998170632869005, 0.01778482459485531, -0.028518861159682274, -0.002336560282856226, 0.023796411231160164, 0.01377271581441164, 0.015140779316425323, 0.001103330054320395, 0.047277115285396576, 0.002071826718747616, 0.0020159203559160233, -0.01775851473212242, 0.0067811221815645695, -0.008129454217851162, -0.023585939779877663, 0.034359440207481384, 0.016377298161387444, -0.005452522076666355, -0.023914800956845284, 0.012417806312441826, -0.039173971861600876, 0.012246798723936081, -0.005975411739200354, 0.014996079728007317, -0.007123137824237347, -0.0067416587844491005, -0.012628277763724327, 0.00032372295390814543, 0.01842939294874668, 0.032438889145851135, 0.006814008112996817, -0.013068951666355133, -0.021981095895171165, -0.005245339125394821, -0.028308389708399773, 0.010293361730873585, -0.011700889095664024, 0.021178673952817917, 0.001570313237607479, 0.0033675406593829393, 0.025151319801807404, -0.007774283643811941, 0.0015949778025969863, -0.03138653188943863, -0.012049481272697449, 0.02373063936829567, -0.010970816016197205, 0.007715088315308094, -0.014035804197192192, -0.009701411239802837, 0.02069195918738842, -0.0019353493116796017, -0.007063942961394787, -0.011076051741838455, 0.00872140470892191, -0.004659966100007296, -0.002627602545544505, 0.013022911734879017, -0.006448972038924694, -0.0030600554309785366, -0.030097395181655884, 0.0061858827248215675, 0.013174187391996384, 0.015364404767751694, -0.020323634147644043, -0.04609321430325508, 0.007537503261119127, -0.0024286415427923203, 0.0007493929006159306, 0.01912657916545868, 0.02002108283340931, -0.00288411439396441, 0.011339141055941582, 0.02532232739031315, -0.036490462720394135, -0.011003702878952026, 0.005896484944969416, -0.009865841828286648, -0.026164213195443153, -0.010957662016153336, -0.024585679173469543, -0.03128129616379738, 0.014377820305526257, 0.009365973062813282, -0.01719287410378456, -0.03970014676451683, -0.01034597959369421, 0.007596698123961687, -0.006689040921628475, -0.017232337966561317, -0.01552225835621357, -0.014377820305526257, 0.00680085364729166, -0.0017478982917964458, -0.025809042155742645, 0.004288352560251951, 0.01979745551943779, 0.0009158789762295783, -0.005801115185022354, -0.020876122638583183, 0.012891367077827454, -0.007774283643811941, -0.005159835331141949, 0.012549350969493389, -0.022217875346541405, -0.015943201258778572, 0.013220228254795074, 0.020718269050121307, -0.02216525748372078, -0.01587742753326893, -0.021389145404100418, -0.00472244992852211, -0.02554595284163952, 0.03578012064099312, 0.025348637253046036, -0.010484101250767708, -0.007971600629389286, 0.0181268397718668, 0.0017018577782437205, 0.001751186908222735, -0.03025524877011776, -0.007859787903726101, 0.014930307865142822, -0.01502238865941763, -0.03183378279209137, -0.017298109829425812, 0.007721665780991316, 0.029413362964987755, 0.020770886912941933, -0.03767436370253563, -0.011970555409789085, -0.01877140812575817, -0.03567488491535187, -0.02294137142598629, -0.00094547652406618, 0.005827424116432667, 0.017390191555023193, 0.008616168983280659, 0.010398597456514835, 0.029387054964900017, 0.008478047326207161, 0.04604059457778931, -0.02709817886352539, -0.0154564855620265, 0.0005541314603760839, 0.03380695357918739, -0.01366748008877039, -0.0183373112231493, -0.02722972445189953, -0.004314661491662264, 0.034675147384405136, 0.0016023771604523063, -0.01500923465937376, 0.025835352018475533, 0.006028029602020979, -0.02271774597465992, -0.0121547169983387, 0.003078142646700144, -0.013022911734879017, -0.0030584109481424093, 0.01719287410378456, -0.022651974111795425, -0.0035845893435180187, 0.01832415722310543, 0.014417284168303013, -0.02194163203239441, -0.005488696973770857, -0.016114208847284317, -0.0043311044573783875, 0.011378604918718338, 0.0022625664714723825, -0.021415455266833305, 0.013851642608642578, -0.025361791253089905, 0.032886140048503876, -0.007997909560799599, -0.013535935431718826, 0.04193640500307083, 0.007662470452487469, 0.007057365495711565, -0.006169439759105444, 0.0243094339966774, -0.0488293394446373, -0.00432781595736742, 0.028387315571308136, -0.017232337966561317, 0.004107479006052017, -0.0092738913372159, 0.04732973128557205, -0.021323373541235924, 0.02922920137643814, 0.0050381566397845745, -0.0008887479198165238, 0.004232446197420359, 0.011911359615623951, 0.024427825585007668, -0.019823765382170677, -0.017455963417887688, 0.0038706986233592033, -0.0023497147485613823, 0.0057846722193062305, 0.001398483058437705, -0.01596950925886631, -0.028966112062335014, 0.006337159313261509, 0.0025536087341606617, -0.011089206673204899, 0.012404652312397957, 0.0036437842063605785, 0.008366233669221401, 0.003972645848989487, 0.002833141013979912, 0.18090008199214935, -0.002232968807220459, 0.019955309107899666, 0.02778221108019352, -0.012838749215006828, 0.018153149634599686, -0.0023645134642720222, -0.001412459765560925, -0.0007884452352300286, 0.03433312848210335, -0.015140779316425323, 0.025940587744116783, -0.01685085892677307, -0.00694555277004838, 0.025335481390357018, -0.024427825585007668, -0.04704033583402634, -0.03554334118962288, -0.03420158475637436, 0.017824288457632065, -0.02149438112974167, -0.004216003231704235, -0.022296803072094917, -0.017495427280664444, 0.016495687887072563, -0.01399634126573801, -0.03157069534063339, -0.0018284693360328674, 0.04214687645435333, 0.0063568907789886, -0.006159574259072542, 0.011483839713037014, -0.005541314370930195, 0.0011148401536047459, -0.0289924219250679, -0.0015752461040392518, 0.04193640500307083, 0.007965022698044777, 0.024230508133769035, -0.002379312179982662, -0.0007502150838263333, -0.03204425424337387, 0.010372288525104523, -0.03877933695912361, -0.010043427348136902, 0.01686401292681694, 0.010221011936664581, -0.008129454217851162, 0.017732206732034683, 0.005725476890802383, -0.0030140148010104895, -0.004742181394249201, 0.019087115302681923, 0.003627341240644455, -0.001775851589627564, -0.010602491907775402, -0.004788221791386604, -0.007761129178106785, 0.011700889095664024, 0.003185022622346878, -0.0010161817772313952, 0.0216916985809803, -0.02170485258102417, 0.005610375665128231, -0.008122876286506653, 0.01944228634238243, -0.011345718055963516, -0.039200279861688614, -0.004130498971790075, -0.01428573951125145, -0.021336527541279793, -0.02407265454530716, 0.00567943649366498, 0.022191567346453667, -0.022244185209274292, -0.052907221019268036, 0.02046833373606205, 0.011043165810406208, 0.03272828832268715, 0.035148706287145615, -0.0027887446340173483, -0.018245231360197067, 0.007346763741225004, -0.031228678300976753, 0.0005623530014418066, -0.05319662019610405, 0.015377558767795563, -0.013180765323340893, 0.013266269117593765, -0.02124444581568241, -0.019757993519306183, 0.013351772911846638, 0.0041995602659881115, -0.007412536069750786, 0.013292578049004078, 0.0036832476034760475, -0.01034597959369421, 0.028650404885411263, -0.013851642608642578, 0.027256032451987267, -0.02112605608999729, 0.038516245782375336, 0.021757470443844795, -0.021389145404100418, 0.023533321917057037, -0.0064719924703240395, -0.018047913908958435, 0.017745360732078552, 0.011404912918806076, -0.03280721232295036, -0.01022758986800909, -0.014062113128602505, 0.004235734697431326, 0.0023497147485613823, 0.0018958860309794545, 0.023454394191503525, 0.013082106597721577, -0.020218398422002792, -0.009241005405783653, -0.005610375665128231, -0.001718300860375166, -0.013128147460520267, 0.012181025929749012, 0.01333204098045826, 0.01978430151939392, -0.003000860335305333, -0.02598004974424839, 0.02722972445189953, 0.004002243280410767, -0.024677759036421776, 0.019836919382214546, -0.022993989288806915, -0.0012011663056910038, -0.006748235784471035, -0.002224747324362397, 0.008405697531998158, -0.01887664385139942, -0.00750461732968688, -0.008734558708965778, 0.0017676299903541803, 0.000208518686122261, -0.012687472626566887, -0.005676147993654013, -0.027045561000704765, 0.01490399893373251, -0.0048967464827001095, 0.007116560824215412, -0.01865301840007305, 0.008806908503174782, -0.04464622214436531, -0.01845570094883442, 0.009162078611552715, -0.012371765449643135, 0.003403715556487441, 0.0015415378147736192, -0.0236122477799654, 0.00032701154123060405, -0.05635368824005127, 0.015548567287623882, 0.010168394073843956, -0.05061834678053856, 0.006149708293378353, 0.017377035692334175, -0.029992159456014633, -0.006846894510090351, -0.0033806951250880957, -0.16595661640167236, 0.011444376781582832, 0.008754290640354156, -0.03967383876442909, 0.011168133467435837, 0.020336788147687912, 0.014851381070911884, 0.005748497322201729, -0.013825333677232265, -0.016166826710104942, 0.010747190564870834, 0.010549874044954777, 0.009241005405783653, -0.002976195653900504, -0.005978700239211321, 0.013286001048982143, -0.009615907445549965, -0.0082083810120821, 0.003293546847999096, 0.030071087181568146, 0.006176017224788666, -0.014719836413860321, 0.03146545961499214, 0.00849120132625103, -0.004354124888777733, 0.004248889163136482, 0.007925559766590595, 0.018192613497376442, 0.004337681923061609, -0.0026802204083651304, 0.011115515604615211, 0.006189171690493822, 0.024480443447828293, -0.005643261596560478, 0.006985016167163849, -0.00933308620005846, -0.0054755425080657005, 0.02070511318743229, -0.009069997817277908, 0.015561721287667751, 0.0030205920338630676, 0.004311372991651297, -0.010372288525104523, 0.0036470729392021894, -0.006179305724799633, 0.023441240191459656, 0.021889014169573784, 0.0014872757019475102, -0.006965284235775471, -0.028703022748231888, 0.0046402341686189175, -0.035701192915439606, 0.027308650314807892, -0.0035451259464025497, 0.012634854763746262, -8.915227226680145e-05, -0.012417806312441826, 0.01732441782951355, -0.004400165751576424, -0.0035286827478557825, -0.004893457517027855, -0.014259430579841137, -0.004903323482722044, 0.02788744680583477, 0.0035286827478557825, -0.0092738913372159, -0.019994772970676422, -0.0010663331486284733, 0.003476065117865801, -0.000790911668445915, 0.013825333677232265, -0.02765066735446453, 0.01378586981445551, -0.010648531839251518, 0.00512037193402648, -0.0032080430537462234, -0.007905827835202217, 0.005755074322223663, 0.015272323042154312, 0.004212714731693268, -0.005597221199423075, 0.02462514117360115, -0.006866625975817442, -0.014548828825354576, 0.01337808184325695, -0.0052584935910999775, -0.009793492965400219, -0.03246519714593887, -0.016627231612801552, -0.01844254694879055, 0.016627231612801552, -0.03080773539841175, 0.003285325365141034, 0.01565380208194256, -0.0004883591900579631, 0.006728504318743944, 0.018626710399985313, -0.012029750272631645, 0.0038871418219059706, -0.0214812271296978, 0.02270459197461605, -0.016798241063952446, -0.053933270275592804, 0.001693636178970337, 0.039858002215623856, -0.006932398304343224, -0.011404912918806076, 0.004054861143231392, 0.03633260726928711, 0.006853471510112286, -0.017495427280664444, -0.005343997851014137, 0.015943201258778572, 0.007445422001183033, 0.006008297670632601, 0.03875302895903587, 0.0006766323349438608, -0.006952130235731602, -0.005863598547875881, -0.0008509288891218603, 0.0042620436288416386, 0.008662208914756775, -0.006320716347545385, 0.03146545961499214, 0.02204686775803566, -0.012029750272631645, -0.09944768995046616, -0.00719548761844635, -0.0014938529348000884, 0.04180486127734184, -0.006455549504607916, -0.005018425174057484, -0.03001846931874752, 0.014272584579885006, 0.0008994359523057938, 0.03180747479200363, 0.01118786446750164, -0.002045518020167947, -0.01511447038501501, 0.000977540505118668, 0.012075790204107761, 0.010641954839229584, -0.01844254694879055, -0.0328335240483284, 0.008392542600631714, 0.01879771798849106, 0.0033741178922355175, -0.02149438112974167, -0.020100008696317673, 0.012148139998316765, -0.016679849475622177, -0.02295452542603016, -0.022415192797780037, 0.02757173962891102, 0.01575903780758381, 0.008570128120481968, 0.013022911734879017, -0.005919505376368761, -0.014088422060012817, 0.007544080726802349, -0.02023155428469181, -0.003124183276668191, -0.003943048417568207, -0.034122660756111145, 0.02179693430662155, -0.01450936496257782, -0.0013573754113167524, -0.004564596340060234, -0.0028265637811273336, -0.0364641509950161, -0.011608807370066643, -0.0010457792086526752, -0.014101576991379261, 0.03935813158750534, -0.001348331687040627, -0.028650404885411263, -0.01462775468826294, -0.0021523977629840374, -0.00853724218904972, -0.006794276647269726, 0.032912448048591614, -0.01866617240011692, 0.01440412923693657, 0.032886140048503876, -0.0046895635314285755, 0.012799285352230072, -0.01879771798849106, 0.01596950925886631, -0.012161294929683208, 0.03059726394712925, -0.013654325157403946, 0.005689302459359169, -0.004860571585595608, -0.022809825837612152, 0.022665128111839294, -0.0026193810626864433, -0.0070113250985741615, 0.011286523193120956, -0.015693265944719315, 0.014535673893988132, -0.0023891781456768513, -0.012601968832314014, -0.0342278927564621, -0.02428312599658966, 0.020205244421958923, 0.0017659857403486967, -0.008136031217873096, -0.025243401527404785, -0.012832172214984894, 0.01608789898455143, 0.02846624329686165, 0.01387795154005289, -0.00216390797868371, -0.011983709409832954, 0.0035451259464025497, -0.00559393223375082, 0.010115777142345905, 0.008977916091680527, 0.03493823483586311, -0.003426735755056143, -0.007794015109539032, -0.013509626500308514, 0.009944768622517586, -0.01820576749742031, 0.0010778432479128242, -0.02396741881966591, -0.06519348174333572, -0.007261259946972132, -0.060668352991342545, 0.02812422625720501, -0.0023349160328507423, -0.032333653420209885, 0.0029054905753582716, -0.007175755687057972, 0.0028989133425056934, -0.008418851532042027, -0.004584327805787325, -0.0107406135648489, -0.053801726549863815, 0.0005043911514803767, 0.0029350880067795515, -0.01664038747549057, -0.0020899141672998667, -0.028045300394296646, 0.03475407138466835, 0.006281252950429916, -0.004567884840071201, 0.01564064808189869, -0.007070519961416721, -0.00016268363106064498, 0.004426474682986736, 0.03543810546398163, -0.031018206849694252, 0.014943461865186691, -0.0046895635314285755, 0.00944489985704422, 0.0005245339125394821, 0.015324940904974937, 0.00710998335853219, -0.005587355233728886, 0.00539990421384573, 0.021875860169529915, 0.0035780121106654406, 0.0005076797679066658, -0.011957400478422642, 0.014048959128558636, 0.007202064618468285, 0.009037110954523087, -0.010957662016153336, -0.017390191555023193, 0.025927433744072914, -0.033333390951156616, 0.019757993519306183, 0.02530917339026928, -0.017916368320584297, 0.0041107675060629845, 0.026387838646769524, -0.01710079237818718, 0.030334176495671272, 0.02059987746179104, -0.003903584787622094, -0.041436538100242615, 0.0046007707715034485, -0.018508318811655045, 0.0065739392302930355, -0.007570389658212662, 0.03596428409218788, -0.028045300394296646, 0.034911926835775375, -0.006715349853038788, -0.01387795154005289, -0.005702456459403038, 0.018047913908958435, -0.0009709632722660899, -0.013522780500352383, -0.00014788485714234412, 0.01698240265250206, 0.005452522076666355, -0.029834305867552757, -0.0029120678082108498, 0.007044211030006409, 0.016824549064040184, 0.02644045650959015, 0.031176060438156128, -0.008346502669155598, 0.03146545961499214, -0.00014069101598579437, 0.02957121655344963, 0.012628277763724327, 0.02475668676197529, -0.0032129758037626743, 0.007182333152741194, 0.02765066735446453, -0.0036898248363286257, -0.013614862225949764, 0.003785194829106331, 0.010096045210957527, 0.016495687887072563, -0.03722710907459259, 0.011437799781560898, -0.0018005161546170712, -0.0032211975194513798, -0.010806385427713394, 0.016614077612757683, 0.004087747074663639, 0.008760867640376091, 0.00838596560060978, 0.011648271232843399, -0.0018465567845851183, 0.010622222907841206, 0.0031324047595262527, -0.023336004465818405, -0.016837703064084053, 0.01575903780758381, -0.018192613497376442, -0.04083143174648285, 0.003906873520463705, 0.013266269117593765, -0.005343997851014137, 0.0009857621043920517, 0.023309696465730667, 0.024940848350524902, -0.017363881692290306, 0.024875076487660408, -0.026624618098139763, -0.028176844120025635, -0.028650404885411263, 0.03767436370253563, 0.00528480252251029, 0.03720080107450485, 0.01112866960465908, -0.022217875346541405, 0.036385226994752884, 0.004114056006073952, 0.03388587757945061, 0.0223888847976923, 0.014338357374072075, -0.007886096835136414, 0.004107479006052017, 0.008760867640376091, -0.010655109770596027, -0.0027558584697544575, -0.012509888038039207, 0.017482271417975426, -0.0002137599076377228, 0.002303674118593335, 0.015785347670316696, 0.06692986935377121, -0.004515266977250576, 0.0012644721427932382, 0.0185477826744318, -0.010339402593672276, 0.01587742753326893, 0.017587507143616676, -0.00865563191473484, 0.010714304633438587, -0.01056960504502058, -0.004692852031439543, 0.020310480147600174, 0.023888492956757545, -0.0065344758331775665, -0.01024074386805296, 0.005672859027981758, -0.015430176630616188, 0.0007699467823840678, -0.007840055972337723, 0.002127733314409852, 0.03275459632277489, 0.016719313338398933, 0.027624357491731644, 0.008136031217873096, -0.03606951981782913, -0.021652234718203545, 0.03212318196892738, -0.0005915394285693765, -0.01158249843865633, -0.015680111944675446, 0.003821369493380189, 0.03196532651782036, -0.00542950164526701, -0.007570389658212662, 0.023927954956889153, 0.0023069626186043024, -0.02651938423514366, -0.0012455625692382455, 0.018731946125626564, -0.005018425174057484, 0.02059987746179104, 0.011056320741772652, -0.01512762438505888, -0.021191827952861786, -0.011543035507202148, -0.012845326215028763, -0.01719287410378456, 0.02599320560693741, -0.058195315301418304], "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021": [0.006895013619214296, 0.02610964886844158, 0.005265644285827875, -0.019592171534895897, 0.014094705693423748, 0.008431654423475266, -0.00963049940764904, -0.017538901418447495, -0.03330271691083908, -0.024122612550854683, 0.029726052656769753, 0.009690110571682453, -0.022758182138204575, 0.022519737482070923, 0.007848790846765041, -0.002015185309574008, 0.007855414412915707, -0.0059081194922327995, 0.007053976412862539, 0.021592453122138977, -0.012365984730422497, 0.036402493715286255, 0.013101188465952873, -0.0042092036455869675, -0.007815673016011715, 0.006249227095395327, 0.01604200154542923, -0.011571170762181282, -0.0024920739233493805, 0.002041679108515382, 0.015763815492391586, -0.014916013926267624, -0.004997394513338804, -0.007961389608681202, -0.031024249270558357, -0.0049543422646820545, -0.008153469301760197, -0.0004125168779864907, 0.027633043006062508, -0.031368669122457504, -0.004891419317573309, 0.03703834488987923, -0.0013669149484485388, 0.017167987301945686, -0.022943638265132904, 0.027606548741459846, 0.033567655831575394, -0.036402493715286255, -0.015101470984518528, 0.043608807027339935, 0.03754172474145889, 0.01563134603202343, -0.001737000304274261, -0.0017750851111486554, -0.025116130709648132, -0.0016086709219962358, -0.0242815762758255, 0.05357047915458679, -0.002420871751382947, -0.028321880847215652, 0.015353161841630936, -0.014213928021490574, 0.0010912137804552913, -0.017128247767686844, 0.014902766793966293, -0.010458431206643581, -0.021340763196349144, 0.0033796164207160473, -0.0168500617146492, -0.034865852445364, 0.016744086518883705, 0.013684052042663097, -0.029779041185975075, -0.01252494752407074, 0.014955754391849041, -0.04236359894275665, -0.03995266184210777, -0.004441024735569954, -0.0208903681486845, 0.0038084848783910275, -0.0018495989497750998, -0.020532701164484024, -0.010180246084928513, 0.010080894455313683, 0.003497182624414563, -0.012405726127326488, 0.0029938004445284605, 0.005437854211777449, -0.02245350182056427, -0.019949838519096375, -0.0008850587764754891, 0.034362468868494034, 0.010114011354744434, 0.02188388630747795, -0.021976614370942116, 0.034759875386953354, -0.0005733425496146083, 0.016108235344290733, 0.00270899198949337, -0.02686472237110138, -0.008981401100754738, -0.0003671876329462975, 0.006149875465780497, -0.008160092867910862, 0.0012336180079728365, -0.014147693291306496, 0.01245209015905857, 0.015127964317798615, 0.007544111926108599, 0.011697016656398773, -0.009153611026704311, 0.016810322180390358, 0.01564459316432476, -0.03891940414905548, 0.013491972349584103, -0.01413444709032774, 3.59632758772932e-05, 0.010577652603387833, -0.022175317630171776, -0.004699339158833027, 0.0052557094022631645, -0.011074411682784557, 0.011730133555829525, -0.017790593206882477, 0.004421154502779245, 0.010955189354717731, -0.00843827798962593, -0.013578076846897602, -0.0029656507540494204, -0.009093999862670898, 0.045039474964141846, -0.001536640920676291, 0.0021178487222641706, 0.020161788910627365, -0.027739018201828003, 0.0033051026985049248, -0.01744617335498333, 0.00851775985211134, -0.016108235344290733, -0.0308917798101902, 0.0040005650371313095, 0.03730328381061554, -0.014849779196083546, 0.0075706057250499725, 0.009458289481699467, 0.0040999166667461395, 0.0071202111430466175, -0.011226750910282135, -0.007782556116580963, 0.018214493989944458, -0.014213928021490574, -0.015141211450099945, 0.006245915312319994, -0.012558065354824066, 0.017485912889242172, 0.030017483979463577, -0.035395726561546326, 0.007795803248882294, 0.004298620391637087, -0.028507336974143982, -0.001554855378344655, 0.0182542335242033, -0.0063088382594287395, 0.01453185360878706, 0.022532984614372253, 0.03285232186317444, 0.022334281355142593, 0.023605983704328537, 0.013260151259601116, -0.007259303703904152, -0.014664323069155216, 0.0011508248280733824, -0.014783545397222042, -0.002894448582082987, -0.006457865703850985, 0.01364431157708168, 0.02245350182056427, -0.00116738339420408, -0.005275579635053873, -0.005179539322853088, -0.0017220975132659078, -0.00851775985211134, -0.017167987301945686, 0.04994082823395729, -0.021605700254440308, 0.011716886423528194, 0.029328646138310432, -0.006043899804353714, 0.007868661545217037, 0.00921984575688839, 0.0043582315556705, 0.020360492169857025, -0.01683681458234787, 0.0012476927367970347, -0.6303406953811646, -0.017393184825778008, -0.007146704941987991, -0.01984386332333088, -0.0014298376627266407, 0.015419396571815014, 0.002293370198458433, 0.006759232841432095, -0.02108907140791416, 0.03409752994775772, -0.008868802338838577, -0.006537347100675106, 0.01133272610604763, 0.0009471536614000797, -0.0011011488968506455, -0.021406996995210648, 0.0019208011217415333, -0.004964277148246765, -0.013657557778060436, 0.01661161705851555, 0.0019257686799392104, 0.02222830429673195, -0.03105074353516102, -0.007173198740929365, 0.016200963407754898, 0.0006519960588775575, 0.025208858773112297, 0.004735768307000399, 0.00213440740481019, 0.030547361820936203, -0.01622745767235756, 0.019353726878762245, -0.008676722645759583, -0.013101188465952873, 0.05375593900680542, 0.0008610487566329539, -0.006842026021331549, -0.004027058836072683, 0.026957450434565544, 0.03131568059325218, -0.033991556614637375, -0.012074553407728672, -0.0032752971164882183, 0.02042672596871853, 0.021022837609052658, -0.006305526476353407, 0.02507638931274414, -5.557490294449963e-05, -0.009498029947280884, 0.012710404582321644, 0.0070208590477705, 0.006514165084809065, -0.0009678519563749433, -0.00972985103726387, -0.004080046433955431, -0.002088043373078108, 0.03290531039237976, -0.0025632758624851704, 0.011531430296599865, -0.013975484296679497, -0.0025136000476777554, 0.013723792508244514, 0.0031527632381767035, -0.01665135845541954, -0.012094423174858093, -0.01805553026497364, -0.019936591386795044, -0.022996624931693077, -6.19913698756136e-05, -0.014916013926267624, -0.010114011354744434, -0.0019174893386662006, -0.00045039475662633777, -0.014266915619373322, -0.004162839613854885, 0.05855131521821022, -3.122854104731232e-05, -0.008769450709223747, 0.003705821465700865, 0.002470547566190362, -0.0027338298968970776, 0.00496096583083272, -0.0039078365080058575, -0.0033630577381700277, 0.022970132529735565, -0.013558206148445606, -0.0070274826139211655, -0.007881907746195793, -0.006633387412875891, 0.019499443471431732, 0.0037687441799789667, 0.03584612160921097, -0.0009007895132526755, -0.036985356360673904, -0.013737039640545845, 0.010941943153738976, 0.01314092893153429, 0.016002260148525238, -0.004305243957787752, -0.019300740212202072, -0.005901495926082134, -0.029938003048300743, 0.019923344254493713, -0.004550311714410782, 0.028931239619851112, 0.001550715765915811, 0.013604570180177689, 0.012664040550589561, 0.037223801016807556, -0.004378101788461208, -0.01784357987344265, -0.029143190011382103, -0.019539183005690575, 0.006126692984253168, 0.01862514764070511, -0.01866488717496395, 0.013737039640545845, 0.007815673016011715, -0.00682215578854084, 0.006736050825566053, 0.01944645494222641, 0.010902201756834984, -0.012975342571735382, -0.021314268931746483, 0.01453185360878706, 0.03025592863559723, 0.006047211587429047, -0.0030202942434698343, -0.03242842108011246, -0.012703781016170979, -0.000503796327393502, -0.004907977767288685, 0.021804403513669968, -0.0029871768783777952, -0.003550170222297311, 0.0006718664080835879, -0.006322084926068783, 0.0009413581574335694, 0.011908967047929764, -0.023950403556227684, -0.0008424203260801733, 0.0029209423810243607, 0.007179821841418743, -0.024520019069314003, -0.007458006963133812, -0.007259303703904152, -0.028215905651450157, -0.006020717788487673, -0.01787007413804531, 0.0333557054400444, -0.008444901555776596, 0.01783033274114132, -0.00901451800018549, 0.0035865993704646826, 0.00038995573413558304, -0.0010125602129846811, -0.01305482443422079, -0.006394943222403526, -0.017128247767686844, 0.0015010398346930742, 0.00793489534407854, 0.03226945921778679, -0.017591888085007668, -0.009584135375916958, -0.00873633287847042, -0.008908542804419994, -0.002790129277855158, 0.04103890806436539, -0.005669674836099148, -0.04106540232896805, -0.007563982158899307, -0.00692150741815567, 0.012379231862723827, -0.005066941026598215, -0.0015424364246428013, 0.00237947516143322, -0.025142624974250793, 0.0024556447751820087, -0.009451665915548801, -0.016744086518883705, 0.01222689263522625, 0.016081741079688072, 0.007895154878497124, -0.002256941283121705, 0.02104933001101017, 0.0042125154286623, 0.01764487661421299, -0.013790027238428593, -0.0006279860390350223, -0.0063088382594287395, 0.005772338714450598, 0.017790593206882477, -0.0012924011098220944, -0.006047211587429047, 0.03311726078391075, 0.035183776170015335, 0.0038912780582904816, 0.02062542922794819, 0.002036711433902383, 0.03454792499542236, 0.020983096212148666, 0.0036859510000795126, -0.008583993650972843, -0.023182082921266556, -0.0029822092037647963, -0.047609373927116394, 0.01502198912203312, -0.006401566322892904, 0.026758747175335884, -0.0030252616852521896, 0.005838572978973389, -0.0035667289048433304, -0.030176447704434395, -0.018161505460739136, 0.006686375010758638, 0.025354575365781784, 0.00011766976967919618, 0.021406996995210648, -0.010153751820325851, 0.0018297286005690694, 0.02085062675178051, -0.020016072317957878, 0.011922214180231094, -0.006146563682705164, -0.0019621977116912603, 0.006226045079529285, 0.017154740169644356, 0.003924395423382521, -0.006901637185364962, -0.04676157236099243, 0.006454553920775652, 0.0015474039828404784, 0.001645927899517119, -0.002599705010652542, 0.005176228005439043, 0.04053552821278572, 0.0026228870265185833, -0.01922125741839409, 0.034415457397699356, -0.003619716502726078, 0.01304157730191946, 0.012710404582321644, 0.033620644360780716, -0.02266545221209526, -0.021221540868282318, 0.03211049735546112, 0.027341609820723534, 0.006948001217097044, -0.004530441015958786, 0.018214493989944458, -3.0969811632530764e-05, 0.03187205269932747, -0.034415457397699356, 0.005411360412836075, 0.01784357987344265, -0.006252538878470659, 0.00481524970382452, -0.017485912889242172, 0.01646590232849121, 0.02082413248717785, -0.005835261195898056, -0.002091354923322797, 0.010067647323012352, -0.011061164550483227, 0.005987600889056921, -0.0067691681906580925, -0.024943919852375984, -0.02344701997935772, -0.04191320389509201, -0.0021758039947599173, -0.0202412698417902, -0.014213928021490574, -0.029938003048300743, 0.009411925449967384, 0.0011028047883883119, -0.024718722328543663, 0.010994930751621723, 0.008848931640386581, 0.01043193694204092, -0.010842591524124146, -0.024599501863121986, -0.026334846392273903, 0.013193916529417038, 0.02744758501648903, -0.0035402351059019566, 0.00012874335516244173, -0.0019075542222708464, 0.0032024390529841185, 0.011743380688130856, 0.012657416984438896, -0.0023811310529708862, 0.007252680137753487, 0.006070394068956375, -0.01053128857165575, -0.02085062675178051, -0.01767137087881565, 0.040826957672834396, -0.017711110413074493, -0.01024648081511259, 0.007901778444647789, 0.0028795457910746336, 0.006994365248829126, -0.027103165164589882, 0.006401566322892904, 0.030785804614424706, -0.0058153909631073475, 0.0016484116204082966, 0.0027470767963677645, -0.0009678519563749433, -0.03372661769390106, 0.019790874794125557, -0.01923450455069542, -0.004537064582109451, -0.01621421054005623, 0.023526500910520554, -0.016492396593093872, 0.009358937852084637, 0.0015250497963279486, 0.025314833968877792, 0.013670804910361767, -0.016320185735821724, -0.028560325503349304, -0.007563982158899307, 0.010114011354744434, 0.061253685504198074, 0.022744935005903244, -0.008756203576922417, 0.00963049940764904, -0.0020317439921200275, -0.005298761650919914, -0.004086670000106096, -0.007014235947281122, 0.015975765883922577, -0.03203101456165314, -0.024520019069314003, 0.02610964886844158, -0.004103228449821472, -0.010875708423554897, 0.02626861073076725, 0.005984289105981588, 0.01805553026497364, -0.018505925312638283, -0.0009719915688037872, -0.014174187555909157, 0.013670804910361767, 0.01252494752407074, 0.0010754830436781049, 0.007146704941987991, -0.004503947217017412, -0.011491689831018448, 0.03446844592690468, -0.012114293873310089, 0.0006180508644320071, 0.005709415767341852, -0.013551582582294941, 0.02364572323858738, 0.025195611640810966, 0.0258579570800066, -0.016797075048089027, -0.0008312432328239083, 0.025222105905413628, 0.01333963219076395, 0.02406962402164936, -0.0025367820635437965, 0.004494012333452702, 0.024308068677783012, 0.01907554268836975, -0.02890474535524845, 0.006855272687971592, -0.0060571469366550446, -0.01802903600037098, 0.021301021799445152, -0.001718785846605897, -0.030361903831362724, 0.028984226286411285, -0.014598088338971138, -0.03725029528141022, -0.014571595005691051, -0.0040601762011647224, 0.018135011196136475, -0.011206881143152714, -0.020122047513723373, -0.004944406915456057, -0.008246198296546936, -0.00873633287847042, -0.019923344254493713, 0.0035137413069605827, -0.015114718116819859, -0.004407907370477915, -0.033779606223106384, 0.0007078814669512212, 0.0060240295715630054, -0.04053552821278572, -0.01354495994746685, 0.014598088338971138, -0.0545242577791214, -0.040191106498241425, -0.00652078865095973, -0.012266633100807667, 0.0031163343228399754, -0.0006867691990919411, -0.008054117672145367, -0.0028662988916039467, 0.01565784029662609, -0.02127452753484249, -0.02787148579955101, -0.018413197249174118, -0.050656162202358246, 0.008948284201323986, 0.0016666260780766606, -0.012948849238455296, 0.00901451800018549, 0.007173198740929365, 0.022824415937066078, 0.008795944042503834, -0.0018082024762406945, 0.023990143090486526, -0.020175034180283546, -0.010577652603387833, 0.0011516527738422155, 0.00621942151337862, 0.016810322180390358, 0.0306533370167017, -0.012836250476539135, 0.022374020889401436, 0.0009637122857384384, -0.009855696931481361, -0.03226945921778679, -0.00963049940764904, -0.002202297793701291, -0.0006317117367871106, 0.003533611772581935, -0.03332921117544174, -0.0019539182540029287, 0.043423350900411606, -0.030520867556333542, 0.018492678180336952, 0.024506771937012672, 0.018903331831097603, 0.019208010286092758, 0.021181799471378326, 0.007212939206510782, 0.02107582427561283, -0.0258579570800066, 0.025420809164643288, -0.041833724826574326, -0.005778961814939976, 0.023168835788965225, -0.011478442698717117, 0.03926382213830948, 0.012458713725209236, -0.030361903831362724, -0.020148541778326035, 0.011716886423528194, -0.009405301883816719, 0.01822773925960064, -0.006110134534537792, -0.027421090751886368, -0.023168835788965225, -0.005119928624480963, -0.0019274245714768767, -0.004507259000092745, -0.03388557955622673, -0.006706245243549347, 0.01282962691038847, 0.00943841878324747, -0.009584135375916958, 0.016797075048089027, 0.0070208590477705, -0.035183776170015335, 0.021195046603679657, -0.01785682700574398, 0.011776497587561607, 0.018797356635332108, 0.005994223989546299, -0.004245632793754339, -0.004623169545084238, 0.01024648081511259, 0.005858443211764097, -0.015498877502977848, -0.02368546463549137, -0.006686375010758638, 0.015008741989731789, -0.0016484116204082966, 0.014757051132619381, -0.009180104359984398, 0.017909813672304153, 0.010339208878576756, -0.022731687873601913, -0.0028845134656876326, -0.006182992365211248, -0.01431990321725607, -0.04670858383178711, 0.004298620391637087, -0.0032040949445217848, 0.010339208878576756, 0.016704346984624863, -0.006534035317599773, 0.03730328381061554, 0.019499443471431732, -0.0019539182540029287, -0.010339208878576756, -0.016532136127352715, -0.03770069032907486, 0.009597382508218288, 0.004894731100648642, -0.015406149439513683, 0.029143190011382103, -0.011981824412941933, -0.02768602967262268, 0.00012543163029477, 0.0128428740426898, -0.000378364697098732, 0.013776780106127262, 0.028083436191082, -0.0007381009636446834, 0.017525654286146164, 0.022996624931693077, 0.035607676953077316, -0.006404878105968237, -0.0016740774735808372, -0.03531624749302864, -0.004288685042411089, 0.013657557778060436, 0.011829485185444355, 0.011286362074315548, 0.0064081898890435696, 0.026334846392273903, -0.026613030582666397, -0.0033580902963876724, 0.011200257577002048, -0.004239009227603674, -0.014558347873389721, -0.01553861889988184, -0.00922646839171648, -0.017326951026916504, 0.005252397619187832, 0.00257983454503119, -0.02202960103750229, -0.003199127269908786, -0.01963191106915474, 0.027023684233427048, -0.024162353947758675, -0.011213504709303379, 0.007875284180045128, -0.026586536318063736, 0.027156153693795204, -0.0018529107328504324, 0.009471536614000797, 0.036217037588357925, -0.0048119379207491875, 0.015472384169697762, 0.007974636740982533, 0.022519737482070923, -0.0007008440443314612, 0.015286927111446857, 0.021128812804818153, -0.014054965227842331, 0.01665135845541954, -0.030812298879027367, 0.002540093846619129, 0.005619999021291733, -0.008100481703877449, 0.03144815191626549, 0.004566870164126158, -0.018545666709542274, -0.029593583196401596, 0.011226750910282135, -0.024135859683156013, 0.004586740396916866, -0.01382976770401001, 0.017565395683050156, -0.012776639312505722, 0.016187716275453568, -0.03330271691083908, 0.010339208878576756, 0.014757051132619381, 0.01702227257192135, -0.000845732050947845, -0.010325961746275425, -0.01763162948191166, -0.017711110413074493, -0.027844993397593498, 0.006245915312319994, -0.0027818498201668262, 0.015313421376049519, -0.0038051733281463385, -0.010677005164325237, 0.006130004767328501, -0.016532136127352715, -0.011796368286013603, -0.020532701164484024, -0.004364855121821165, 0.021698428317904472, -0.006570464465767145, 0.010763109661638737, 0.008391913957893848, 0.0005820358637720346, 0.033170249313116074, -0.012293127365410328, -0.010743238963186741, 0.010809473693370819, -0.011094282381236553, -0.024149106815457344, -0.009769591502845287, 0.021208293735980988, -0.016532136127352715, -0.013869509100914001, -0.024096118286252022, 0.012962095439434052, 0.002028432209044695, 0.01665135845541954, 0.01706201210618019, -0.04392673447728157, 0.00852438248693943, 0.0030020796693861485, -0.01663811132311821, 0.009637122973799706, 0.014598088338971138, 0.0040999166667461395, 0.007431513164192438, 0.04143631458282471, -0.01304157730191946, -0.005219280254095793, -0.002083075698465109, -0.019181517884135246, -0.023102600127458572, -0.010975060053169727, -0.004679468926042318, -0.01624070480465889, 0.01682356745004654, -0.011915590614080429, -0.003404454328119755, -0.04257554933428764, -0.013816521503031254, 0.001007592654787004, -0.014664323069155216, -0.009279455989599228, 0.0035302999895066023, 0.008484642021358013, 0.015512124635279179, -0.0030120147857815027, -0.022347526624798775, 0.015750568360090256, -0.00992855429649353, -0.021724922582507133, 0.02583146281540394, 0.0011143957963213325, -0.0016260574338957667, -0.016571877524256706, -0.007815673016011715, 0.029832027852535248, -0.007285797502845526, -0.006636699195951223, -0.008921789936721325, 0.003500494407489896, -0.0010829344391822815, -0.0002225065982202068, -0.017989296466112137, 0.02127452753484249, -0.03192503750324249, 0.02124803513288498, 0.009305950254201889, 0.004219138994812965, 0.005080187693238258, 0.03046787902712822, 0.012273256666958332, -0.0010564406402409077, -0.022784674540162086, -0.0034773123916238546, 0.00692150741815567, -0.007656710688024759, -0.015883037820458412, -0.015512124635279179, 0.0037389385979622602, 0.028984226286411285, 0.02482469752430916, -0.014717310667037964, -0.03309076651930809, -0.015008741989731789, -0.02202960103750229, -0.030573854222893715, -0.0018082024762406945, 0.016373174265027046, 0.024811452254652977, -0.004344984423369169, 0.005888248793780804, 0.023552995175123215, -0.013458854518830776, 0.022903896868228912, 0.007385149132460356, 0.012875990942120552, -0.011405584402382374, 0.03831004723906517, -0.005169604439288378, -0.0007687344332225621, -0.01626719906926155, -0.02226804569363594, 0.02283766306936741, 0.013790027238428593, -0.0260301660746336, 0.0013611194444820285, 0.014584841206669807, -0.022970132529735565, -0.014187434688210487, -0.013988730497658253, -0.0026427574921399355, 0.009862320497632027, 0.01382976770401001, -0.027765510603785515, -0.015074976719915867, 0.001076310989446938, 0.028374869376420975, -0.023778192698955536, 0.010961812920868397, -0.012518324889242649, -0.011127399280667305, 0.006981118582189083, -0.021327516064047813, -0.027368104085326195, 0.016094988211989403, -0.016386421397328377, 0.03428298979997635, -0.008723086677491665, 0.0018446313915774226, 0.012286503799259663, 0.010882331989705563, -0.0011466850992292166, 0.0008084751316346228, 0.00497090071439743, -0.03873394802212715, -0.0005965246818959713, 0.03868095949292183, -0.010610770434141159, 0.010465053841471672, 0.0020350555423647165, 0.030388398095965385, -0.014253668487071991, 0.017737604677677155, -0.016386421397328377, 0.01354495994746685, -0.011372467502951622, 0.00776930944994092, 0.04050903394818306, -0.016280444338917732, -0.0180820245295763, 0.0014927604934200644, -0.011259868741035461, 0.01682356745004654, 0.0008258617017418146, -0.009789462201297283, -0.027527067810297012, 0.01662486419081688, 0.012213645502924919, -0.021698428317904472, -0.01741967909038067, 0.0059147425927221775, 0.024109365418553352, -0.0034210130106657743, 0.01282962691038847, 0.1867283582687378, -0.002730518113821745, 0.024228587746620178, 0.022334281355142593, -0.024162353947758675, 0.01604200154542923, 0.019115282222628593, -0.017803838476538658, -0.0024043130688369274, 0.03332921117544174, -0.012319620698690414, 0.005302073433995247, -0.03629651665687561, -0.005288826301693916, -0.005010641645640135, -0.015353161841630936, -0.03354116156697273, -0.04098592326045036, -0.027739018201828003, -0.0013660870026797056, -0.007603723090142012, 0.009656992740929127, -0.015273680910468102, -0.006401566322892904, 0.01761838234961033, -0.012783262878656387, -0.018903331831097603, -0.00606377050280571, 0.03428298979997635, -0.00741164293140173, -0.023937156423926353, 0.03250790387392044, -0.0028464284259825945, 0.019181517884135246, -0.031580619513988495, 0.011763250455260277, 0.03513079136610031, -0.019181517884135246, 0.04289347678422928, -0.02805694378912449, -0.00012429321941453964, -0.025778476148843765, -0.004599987529218197, -0.015207446180284023, -0.001573069836013019, 0.022307787090539932, -0.01882385089993477, -0.0222945399582386, 0.017353445291519165, 0.012935602106153965, -0.042628537863492966, 0.022917144000530243, 0.05092110112309456, -0.0039508892223238945, 0.010716745629906654, -0.014929261058568954, 0.013710545375943184, 0.010895579122006893, 0.025977179408073425, 0.025169117376208305, -0.00011321963393129408, 0.04029708355665207, -0.020214775577187538, 0.007305667735636234, 0.0020251204259693623, 0.001335453474894166, -0.02286415733397007, -0.022360773757100105, 0.016121482476592064, -0.01761838234961033, -0.01744617335498333, -0.03110373020172119, 0.013372750021517277, 0.025500290095806122, -0.023566242307424545, -0.02747407928109169, 0.024930674582719803, 0.02205609530210495, 0.014810038730502129, 0.04811275750398636, -0.024096118286252022, -0.022201811894774437, 0.010067647323012352, -0.0389723926782608, -0.003646210301667452, -0.04413868486881256, 0.01987035572528839, 0.0006880110595375299, 0.009610628709197044, -0.01907554268836975, -0.020201528444886208, 0.0004582600959111005, 0.0028381492011249065, 0.025010155513882637, 0.013213787227869034, 0.020903615280985832, -0.004133034031838179, 0.019698146730661392, -0.010888955555856228, 0.023937156423926353, -0.028719287365674973, 0.033806100487709045, 0.013803274370729923, 0.005335190799087286, 0.008544253185391426, -0.0030616908334195614, -0.002722238888964057, 0.005788897164165974, 0.004424465820193291, -0.028003955259919167, -0.026414327323436737, -0.01704876497387886, 0.014518607407808304, -0.005206033121794462, -0.019539183005690575, 0.019698146730661392, 0.005434542428702116, -0.02145998552441597, -0.01062401756644249, 0.0020002825185656548, -0.011193634010851383, 0.018982814624905586, 0.010816097259521484, 0.008285938762128353, 0.005295449867844582, -0.010166998952627182, -0.014439125545322895, 0.0017270651878789067, -0.015194199047982693, -0.02625536359846592, 0.014187434688210487, -0.030414892360568047, -0.000496758904773742, 0.006640010513365269, 0.003788614645600319, 0.009272833354771137, 0.00951790064573288, -0.017803838476538658, 0.011107529513537884, -0.010471677407622337, -0.013154176063835621, -0.014227175153791904, -0.011895719915628433, -0.009180104359984398, 0.012392478995025158, -0.031580619513988495, 0.0005013125482946634, -0.010034529492259026, 0.006245915312319994, -0.015922779217362404, -0.008497889153659344, 0.002766947029158473, -0.006974495016038418, -0.002194018568843603, 0.007299044169485569, -0.023831181228160858, -0.009107246994972229, -0.03695886209607124, 0.013372750021517277, 0.019499443471431732, -0.05892223119735718, -0.018307222053408623, 0.021195046603679657, -0.009703357703983784, -0.01642616093158722, -0.006229356862604618, -0.16680501401424408, 0.005583570338785648, -0.006908260751515627, -0.02104933001101017, 0.01645265519618988, 0.02244025655090809, 0.018611900508403778, 0.015485631301999092, -0.01384301483631134, -0.010776356793940067, 0.008696592412889004, 0.015101470984518528, -0.0017386561958119273, -0.0012634234735742211, -0.010875708423554897, 0.014796791598200798, -0.0071665751747787, 0.004576805513352156, 0.0036594572011381388, 0.014425878413021564, 0.022188564762473106, -0.02263895981013775, 0.021592453122138977, 0.015989013016223907, -0.004735768307000399, -0.004775508772581816, -0.004921224899590015, 0.026374585926532745, -0.006014094687998295, -0.01682356745004654, 0.00035725245834328234, 0.006855272687971592, 0.015286927111446857, 0.00822632759809494, 0.023407280445098877, -0.005408048629760742, -0.004623169545084238, 0.0008718118770048022, -0.022930391132831573, 0.010637263767421246, 0.010180246084928513, 0.01904904842376709, 0.009782838635146618, 0.006080328952521086, -0.002922598272562027, 0.045595843344926834, 0.025526784360408783, 0.0021857391111552715, 0.013564829714596272, -0.02906370721757412, 0.005775650031864643, -0.04737092927098274, 0.025990426540374756, 0.015273680910468102, 0.02069166488945484, -0.0010812785476446152, -0.028613312169909477, 0.009696734137833118, 0.00187774864025414, 0.0014869649894535542, -0.004397972021251917, -0.016757333651185036, -0.015432643704116344, 0.03465390205383301, -0.01802903600037098, -0.014849779196083546, -0.03203101456165314, 0.00013008873793296516, -0.00445758318528533, 0.021022837609052658, -0.007000988814979792, -0.02967306599020958, 0.007053976412862539, -0.012816379778087139, 0.004676157142966986, 0.0008349689305759966, 0.0038680960424244404, 0.007650087121874094, 0.025738734751939774, -0.001668281969614327, -0.022917144000530243, 0.010405443608760834, -0.003323317039757967, -0.015896284952759743, 0.00328192044980824, -0.0007852930575609207, -0.0003587013343349099, -0.016558630391955376, -0.012193775735795498, -0.01703551970422268, 0.021910378709435463, -0.022824415937066078, -0.02263895981013775, -0.012816379778087139, 0.008285938762128353, -0.0034309481270611286, 0.022175317630171776, -0.010670381598174572, 0.006487671285867691, -0.008670099079608917, 0.01683681458234787, -0.0043582315556705, -0.0662345215678215, -0.005596817005425692, 0.02588445134460926, 0.002425839425995946, -0.02969955839216709, -0.003450818592682481, 0.03208400309085846, -0.013121058233082294, -0.02863980643451214, -0.014598088338971138, 0.006981118582189083, -0.00213440740481019, 0.02086387388408184, 0.021420244127511978, -0.007087093777954578, -0.021367255598306656, 1.0646681403159164e-05, -0.006679751444607973, 0.01082272082567215, -0.012988589704036713, 0.011306232772767544, 0.03854849189519882, 0.010153751820325851, -0.01235273852944374, -0.10115335881710052, -0.029381632804870605, -0.012796509079635143, 0.03775367513298988, 0.011895719915628433, -0.0005410532467067242, -0.029990991577506065, 0.01343236118555069, -0.0020300881005823612, 0.034362468868494034, 0.01364431157708168, -0.00601740600541234, -0.00911386962980032, -0.0037190683651715517, 0.021155305206775665, -0.025924190878868103, -0.002763635478913784, -0.02244025655090809, -0.023380786180496216, 0.028560325503349304, 0.004725832957774401, -0.005689545534551144, -0.006030653137713671, -0.01583005115389824, -0.0005803799722343683, -0.006994365248829126, -0.02887825109064579, 0.022201811894774437, 0.01312768179923296, 0.017790593206882477, -0.0002444467681925744, -0.015154458582401276, -0.0166778527200222, -0.0244537852704525, 0.012220269069075584, 0.009021141566336155, 0.0014521918492391706, -0.020214775577187538, 0.016532136127352715, -0.02885175682604313, -0.006136628333479166, -0.016916297376155853, 0.007338785100728273, -0.04994082823395729, -0.02506314218044281, 0.003642898751422763, -0.013816521503031254, 0.03513079136610031, -0.012478583492338657, -0.029434621334075928, -0.025910943746566772, -0.0033216611482203007, -0.027116412296891212, -0.021406996995210648, 0.04405920207500458, -0.015339914709329605, 0.00981595553457737, 0.025765229016542435, -0.0014240421587601304, 0.01252494752407074, -0.007948142476379871, -0.0015416084788739681, -0.051609937101602554, 0.020718157291412354, 0.0034773123916238546, 0.012471959926187992, -0.005381554830819368, -0.021526219323277473, 0.029328646138310432, -0.0009868943598121405, -0.01023323368281126, 0.010809473693370819, -0.030520867556333542, 0.027739018201828003, -0.012544818222522736, 0.004318490624427795, -0.015101470984518528, -0.0062757208943367004, 0.01361781731247902, 0.01184935588389635, -0.009584135375916958, -0.022903896868228912, -0.021579205989837646, 0.012551441788673401, 0.041833724826574326, 0.015353161841630936, -0.014107952825725079, 0.017565395683050156, 0.01361781731247902, -0.017737604677677155, 0.02063867636024952, 0.02426832914352417, 0.010193493217229843, -0.0013346256455406547, -0.006696309894323349, -0.001823105150833726, 0.03423000127077103, -0.02367221750319004, 0.005109993275254965, 0.00551733560860157, -0.03624352812767029, -0.012988589704036713, -0.06538672000169754, 0.006994365248829126, -0.01273027528077364, -0.026930956169962883, 0.01805553026497364, 0.019552430137991905, 0.006093576084822416, -0.018956320360302925, 0.0017866762354969978, -0.016306938603520393, -0.04448310285806656, 0.005735909566283226, 0.01552537176758051, -0.007583852857351303, -0.00931919738650322, -0.05036472901701927, 0.02588445134460926, -0.026573289185762405, -0.005401425063610077, 0.009570888243615627, 0.015008741989731789, -0.00884230900555849, 0.016783827915787697, 0.019327232614159584, -0.0010572685860097408, 0.007226186338812113, 0.00030757655622437596, 0.01686330884695053, -0.018201246857643127, -0.019764380529522896, 0.0018578782910481095, -0.011902343481779099, 0.00901451800018549, 0.009305950254201889, -0.014558347873389721, 0.017764098942279816, -0.010127258487045765, 0.016333432868123055, -0.0012361017288640141, 0.008179963566362858, -0.01947294920682907, -0.010027906857430935, 0.028931239619851112, -0.013564829714596272, 9.127944940701127e-05, 0.018108518794178963, -0.011279738508164883, -0.010266350582242012, 0.01724747009575367, -0.002425839425995946, 0.032189976423978806, 0.012823003344237804, 0.007285797502845526, -0.025328081101179123, 0.021340763196349144, -0.014372890815138817, 0.006189615931361914, -0.01941996067762375, 0.01885034516453743, -0.036190543323755264, 0.04337036609649658, 0.013438984751701355, 0.011902343481779099, -0.00466953357681632, 0.02406962402164936, 0.014982248656451702, -0.021605700254440308, 0.00911386962980032, 0.01984386332333088, -0.019764380529522896, 0.0028083436191082, -0.0067095570266246796, 0.010663758032023907, 0.039634738117456436, -0.0005501604755409062, 0.01235273852944374, -0.017923060804605484, 0.029964497312903404, -0.0026659395080059767, 0.033567655831575394, 0.01606849394738674, 0.013293268159031868, -0.026811733841896057, -0.007179821841418743, 0.04093293473124504, -0.009709980338811874, 0.00022788814385421574, -0.008093858137726784, 0.00591805437579751, 0.014664323069155216, 0.003871407825499773, 0.006573776248842478, -0.010253103449940681, -0.0003282748511992395, 0.002319863997399807, 0.014916013926267624, -0.014929261058568954, -0.008603864349424839, 0.0154458899050951, 0.002616263460367918, 0.009557641111314297, -5.316872830007924e-06, 0.0012907452182844281, -0.007153328042477369, -0.03473338112235069, 0.016094988211989403, -0.02327481098473072, -0.03086528740823269, 0.01453185360878706, 0.0300704725086689, 0.017565395683050156, 0.012975342571735382, 0.029911508783698082, 0.022307787090539932, -0.037170812487602234, 0.01601550728082657, -0.04384725168347359, -0.029434621334075928, -0.03873394802212715, 0.03788614645600319, 0.009074129164218903, 0.007908402010798454, 0.004348296206444502, -0.013909249566495419, 0.01902255415916443, 0.027765510603785515, 0.039025381207466125, 0.011061164550483227, 0.007272550370544195, 0.00963049940764904, -0.022360773757100105, -0.004331737756729126, -0.006994365248829126, -0.017340198159217834, 0.007418266497552395, 0.008656851947307587, -0.0036859510000795126, 0.012624300085008144, 0.01707525923848152, 0.0702085942029953, 0.02184414491057396, -0.017115000635385513, 0.0272621288895607, 0.0005186991184018552, -0.0056564281694591045, 0.02263895981013775, 0.006749297492206097, 0.0031660101376473904, -0.024294821545481682, -0.009425172582268715, 0.011339349672198296, 0.012624300085008144, -0.021592453122138977, -0.0065671526826918125, 0.017724357545375824, -0.011942083947360516, 0.005398113280534744, -0.003887966275215149, 0.015167705714702606, 0.029567090794444084, -0.002344702137634158, 0.0067095570266246796, -0.009199975058436394, -0.032401926815509796, -0.012717028148472309, 0.03168659657239914, 0.014425878413021564, -0.007444760296493769, -0.0035634171217679977, 0.0019042424391955137, 0.008683345280587673, 0.005788897164165974, -0.03690587356686592, 0.012922354973852634, 0.01643940806388855, -0.008484642021358013, 0.006179680582135916, 0.0006685546832159162, 0.004934472031891346, 0.012836250476539135, 0.02326156385242939, -0.010365702211856842, -0.03955525532364845, -0.010557782836258411, -0.025367820635437965, -0.00772294495254755, 0.02144673839211464, -0.0424695760011673], "e79cb32e-d193-420b-9804-a5e004fdb394": [0.023888584226369858, 0.007355935871601105, 0.004138127900660038, -0.04014977067708969, -0.003717693965882063, 0.023623744025826454, 0.003664725925773382, -0.023425113409757614, -0.019492236897349358, -0.012467351742088795, 0.023862099274992943, 0.012652739882469177, -0.03842831030488014, 0.025649771094322205, 0.011421232484281063, 0.003906392492353916, 0.013460502028465271, -0.00908401794731617, -0.0098255705088377, -0.01338104996830225, -0.0011189497308805585, 0.024007761850953102, 0.00639589037746191, -0.007256621029227972, -0.0024133562110364437, 0.01608904078602791, 0.014672146178781986, -0.037898629903793335, -0.01498995441943407, 0.0013233732897788286, 0.029291324317455292, -0.011891324073076248, -0.002358732745051384, -0.017691323533654213, -0.033952511847019196, -0.007627397309988737, 0.0032691210508346558, -0.0053894976153969765, 0.023689953610301018, -0.018830137327313423, 0.016314154490828514, 0.04134155064821243, -0.005061757750809193, 0.008448401466012001, -0.016261186450719833, 0.00349257979542017, 0.021610958501696587, -0.023769406601786613, -9.817707905313e-05, 0.017505936324596405, 0.006614383310079575, 0.03411141410470009, -0.006938812788575888, -0.010626711882650852, -0.005498744081705809, 0.0054888129234313965, -0.0179694052785635, 0.029264839366078377, -0.001252197427675128, -0.0099977171048522, 0.012083332985639572, 0.0001305579353356734, -0.013235388323664665, -0.03615068271756172, 0.0017628424102440476, 0.0038434930611401796, -0.009653424844145775, 0.012805022299289703, 0.0004957477212883532, -0.025212785229086876, -0.0030291094444692135, 0.004810159560292959, -0.020432420074939728, -0.010957762598991394, 0.019770318642258644, -0.006952054798603058, -0.022140638902783394, -0.004442694131284952, -0.005402739625424147, -0.00920981727540493, 0.0012025398900732398, -0.012169405817985535, -0.003136700950562954, 0.01836666651070118, 0.003638241905719042, -0.02019406296312809, 0.00018880207790061831, 0.028470318764448166, -0.029503196477890015, -0.009249542839825153, 0.0001844570506364107, 0.024656619876623154, 0.004697602707892656, 0.02527899481356144, -0.007759817410260439, 0.03278721496462822, 0.005644406192004681, 0.013202282600104809, -0.00280896108597517, -0.033899541944265366, 0.010600227862596512, 0.006697146221995354, 0.0010229451581835747, -0.0018588469829410315, -0.0039990865625441074, -0.019929222762584686, 0.012030364945530891, -0.0028851027600467205, 0.025901369750499725, 0.012341552414000034, -0.02122694067656994, 0.027887670323252678, 0.008633789606392384, -0.041156165301799774, 0.003578652860596776, -0.01872420124709606, -0.014314611442387104, -0.016658447682857513, -0.026258904486894608, -0.004061986226588488, -0.0012621289351955056, 0.027437442913651466, 0.009474657475948334, -0.016261186450719833, 0.005674201063811779, 0.0009956335416063666, 0.015638813376426697, -0.028258446604013443, 0.0039361873641610146, -0.013215525075793266, 0.03376712277531624, -0.0008574200910516083, 0.002275970298796892, 0.011421232484281063, -0.022948401048779488, 0.005190867464989424, -0.01930684968829155, -0.0032426370307803154, -0.004022260196506977, -0.024855250492691994, 0.015334246680140495, 0.02735798992216587, -0.014698630198836327, -0.011858219280838966, -0.0077796801924705505, 0.008858904242515564, -0.012242237105965614, -0.004608219023793936, -0.009573972783982754, 0.010891552083194256, 0.0159036535769701, -0.018975798040628433, -0.007938584312796593, 0.020525114610791206, 0.013202282600104809, 0.013612785376608372, -0.026404565200209618, 0.0005954765947535634, 0.011818492785096169, -0.02049862965941429, 0.01345388125628233, 0.0027675798628479242, -0.007269863039255142, -0.01335456594824791, 0.0015509702498093247, 0.032416436821222305, 0.053444746881723404, 0.011619863100349903, 0.007931963540613651, -0.013069862499833107, -0.008170319721102715, -0.0005015410715714097, -0.006329680327326059, 0.0032972602639347315, 0.016459817066788673, 0.003846803680062294, 0.015135616064071655, -0.004065296612679958, -0.025212785229086876, 0.009468036703765392, 0.01153379026800394, -0.005548401735723019, -0.019478995352983475, 0.039964381605386734, -0.02143881283700466, -0.005449086893349886, 0.0099977171048522, -0.013837899081408978, -0.003641552524641156, 0.006465410813689232, 0.01148082222789526, 0.02478904090821743, -0.004412899725139141, 0.00012114369019400328, -0.6423963308334351, -0.029026484116911888, -0.024722831323742867, -0.016976255923509598, -0.007845890708267689, 0.0006029251962900162, 0.013917351141571999, 0.011884703300893307, -0.027622830122709274, 0.03797808289527893, 0.0028420661110430956, -0.022710045799613, 0.007667123340070248, -0.0067799086682498455, -0.012997032143175602, -0.021173972636461258, 0.003274086629971862, -0.03347579762339592, -0.007389041129499674, 0.008560959249734879, -0.010659817606210709, 0.013573058880865574, -0.02612648345530033, -0.008527853526175022, 0.019293606281280518, 0.024775799363851547, 0.022948401048779488, -0.01471187174320221, 0.03519726172089577, 0.02780821919441223, -0.020021917298436165, 0.016804110258817673, 0.0018290524603798985, -0.004657876677811146, 0.035382647067308426, -0.017095433548092842, 0.0005611301166936755, 0.014314611442387104, 0.019002282992005348, 0.03125113993883133, -0.03705114126205444, -0.022895433008670807, 0.01589041016995907, 0.02478904090821743, -0.0034594747703522444, -0.0011578481644392014, 0.013943835161626339, 0.0098255705088377, -0.0025259132962673903, 0.015665296465158463, 0.010289041325449944, -0.006088013760745525, 0.003270776243880391, -0.030933333560824394, 0.009547488763928413, 0.00013562713866122067, 0.01778401806950569, -0.016976255923509598, -0.0077333333902060986, -0.009050913155078888, 0.00010686714813346043, -0.004075228236615658, 0.016420090571045876, -0.02350456640124321, -0.010798858478665352, 0.009984474629163742, -0.01138150691986084, -0.0046115294098854065, 0.006597830913960934, -0.006028424482792616, 0.013520090840756893, 0.012500456534326077, -0.022299543023109436, -0.007607534062117338, 0.010262557305395603, 0.039673060178756714, 0.0032658104319125414, -0.006872602738440037, -0.012129680253565311, 0.011606620624661446, 0.0021501712035387754, 0.00851461198180914, -0.01120936032384634, -0.0039361873641610146, 0.036521460860967636, -0.007885616272687912, -0.04242739826440811, -0.007845890708267689, -0.006832876708358526, 0.016764383763074875, -0.007561187259852886, 0.025212785229086876, -0.0027593036647886038, -0.011725799180567265, -0.022153880447149277, 0.014394063502550125, 0.012334931641817093, -0.012500456534326077, -0.004932648502290249, -0.03678629919886589, 0.01679086685180664, -0.016406849026679993, 0.012202511541545391, -0.01921415515244007, 0.03411141410470009, 0.012573287822306156, -0.011070319451391697, 0.0250803641974926, 0.02316027320921421, -0.01259315013885498, -0.028973516076803207, -0.024577168747782707, -0.01081872172653675, 0.014605935662984848, 0.0074883559718728065, -0.022299543023109436, 0.004608219023793936, 0.018803652375936508, 0.0038666666951030493, -0.006273401901125908, 0.010957762598991394, 0.02019406296312809, -0.026682648807764053, -0.012361415661871433, 0.009408446960151196, 0.030006391927599907, 0.007501597981899977, -0.0070712328888475895, -0.027172602713108063, 0.00789885874837637, 0.009189954027533531, 0.022286301478743553, 0.02527899481356144, -0.0037408675998449326, -0.00415799068287015, -0.012036985717713833, 0.02290867641568184, -0.022974886000156403, -0.006978538818657398, -0.009984474629163742, -0.0267620999366045, -0.007422145921736956, -0.009805707260966301, -0.026695890352129936, 0.00905753392726183, -0.015837442129850388, -0.01491050235927105, 0.0004407106025610119, -0.002924828790128231, 0.03106575272977352, -0.017254337668418884, -0.011196118779480457, -0.023332420736551285, 0.03299908712506294, 0.005700685083866119, 0.00043243434629403055, 0.016062557697296143, 0.0016726312460377812, -0.00836894940584898, 0.004773744381964207, -0.006760045420378447, 0.030006391927599907, -0.028417350724339485, 0.0003140839107800275, -0.015572602860629559, 0.005237214732915163, -0.01330821868032217, 0.05635799095034599, -0.009931506589055061, -0.047326941043138504, 0.019094977527856827, -0.015016438439488411, 0.0016875285655260086, 0.008309360593557358, -0.0064885844476521015, -0.004545319359749556, -0.014235159382224083, 0.02316027320921421, -0.0024779108352959156, -0.025795433670282364, 0.00701164361089468, 0.00024828765890561044, 0.014420547522604465, -0.009408446960151196, 0.02429908700287342, 0.017797259613871574, 0.022577624768018723, -0.006753424648195505, -0.004386415705084801, -0.00933561660349369, -0.004720776341855526, 0.02216712385416031, -0.0075545660220086575, 0.01283812802284956, 0.011606620624661446, 0.022405479103326797, -0.0071970317512750626, -0.002360388170927763, 0.0017810502322390676, 0.03914337977766991, 0.014817807823419571, 0.002590467920526862, 0.001819120952859521, -0.02212739735841751, -0.006938812788575888, -0.037792693823575974, 0.011513927020132542, 0.00011462614202173427, 0.036468490958213806, 0.005296803545206785, 0.012679223902523518, 0.00841529667377472, -0.0294767115265131, -0.0021137557923793793, 0.016420090571045876, 0.04248036444187164, -0.005223972722887993, 0.005839725956320763, -0.014155707322061062, -0.007183789741247892, 0.01207009144127369, 0.00644554803147912, 0.009322374127805233, 0.0069719175808131695, -0.008885388262569904, 0.011441095732152462, 0.02127990871667862, 0.002954623196274042, -0.01668493077158928, -0.04536712169647217, -0.00933561660349369, -0.022392237558960915, 0.02415342442691326, 0.011176255531609058, 0.012473972514271736, 0.0020392693113535643, -0.00038670803769491613, -0.027331506833434105, 0.024365296587347984, 0.0018158104503527284, 0.004803538788110018, 0.01322876662015915, 0.011527168564498425, -0.015916895121335983, -0.013467122800648212, 0.002006164286285639, 0.012507077306509018, 0.02039269357919693, -0.007812784984707832, 0.025345204398036003, -0.0019085045205429196, 0.028417350724339485, -0.019280364736914635, 0.0053398399613797665, 0.02196849323809147, -0.004631392657756805, 0.007859132252633572, 0.012315068393945694, 0.02587488479912281, 0.006703766994178295, -0.0008789383573457599, -2.154412868549116e-05, 0.03752785176038742, 0.022299543023109436, 0.007958447560667992, -0.019200913608074188, -0.030986301600933075, -0.03490593656897545, -0.03988493233919144, 0.002602054737508297, -0.028126027435064316, -0.022776255384087563, -0.015400456264615059, 0.008170319721102715, 0.024762555956840515, 0.0017909817397594452, 0.00789885874837637, 0.017956163734197617, 0.00995136983692646, -0.009229680523276329, -0.026603195816278458, -0.01792968064546585, 0.01079223770648241, 0.020366210490465164, 0.01189794484525919, 0.01350684929639101, -0.0014036529464647174, 0.025345204398036003, 0.006521689239889383, 0.0010974315227940679, -0.0037938356399536133, 0.006376027129590511, -0.004694292321801186, -0.013784931041300297, -0.018088584765791893, -0.029609132558107376, 0.007892237044870853, -0.02849680371582508, 0.008084246888756752, 0.0006869292119517922, -0.022259816527366638, 0.017055707052350044, -0.04176529496908188, 0.004740639124065638, 0.07087123394012451, -0.02701369859278202, 0.017505936324596405, -0.007581050042062998, -0.004959132522344589, -0.024828767403960228, 0.010295662097632885, 0.008044520393013954, -0.02884109504520893, -0.006379337981343269, 0.01722785457968712, -0.017903195694088936, 0.021518263965845108, 0.005074999760836363, 0.019810045138001442, -0.010600227862596512, -0.01276529673486948, -0.03909040987491608, -0.004575114231556654, 0.011884703300893307, 0.04311598092317581, 0.024272602051496506, -0.018605021759867668, 0.006498516071587801, 0.003179737366735935, 0.002352111740037799, -0.0005694063729606569, -0.012679223902523518, 0.01994246616959572, -0.012242237105965614, -0.01798264868557453, 0.03506483882665634, -0.0015286244451999664, 6.579623004654422e-05, 0.030297717079520226, 0.004667808301746845, 0.01052077580243349, -0.007819406688213348, 0.016022831201553345, -0.027861187234520912, 0.004873059224337339, 0.027172602713108063, 0.0074883559718728065, 0.005022031720727682, 0.005055136978626251, -0.023041095584630966, 0.035726938396692276, -0.004700913093984127, -0.007375799119472504, -0.007289725821465254, -0.007249999791383743, 0.0028321347199380398, 0.02296164445579052, 0.04690319672226906, -0.00702488562092185, 0.04346027225255966, 0.020723743364214897, 0.018552053719758987, 0.017413241788744926, -0.003664725925773382, 0.010342009365558624, 0.014751598238945007, 0.020207306370139122, -0.010216210037469864, -0.004664497449994087, -0.008547716774046421, -0.027543378993868828, 0.013718721456825733, -0.007746575400233269, -0.02987397275865078, 0.02652374468743801, -0.00312842451967299, -0.052358902990818024, -0.006786529440432787, 0.002560673514381051, 0.0029016551561653614, -0.0012919234577566385, -0.012036985717713833, -0.017797259613871574, -0.01876392588019371, -0.01619497686624527, -0.0012232306180521846, -0.00019469890685286373, 0.01195091288536787, 0.002699714619666338, -0.0052934931591153145, -0.007965068332850933, 0.028523286804556847, -0.015731506049633026, -0.007018264848738909, 0.02394155226647854, -0.03519726172089577, -0.030880365520715714, -0.007514839991927147, 0.01545342430472374, 0.010169862769544125, -0.011719178408384323, -0.0011843321844935417, -0.010143378749489784, 0.005372945219278336, -0.018141552805900574, -0.040467578917741776, -0.014407305978238583, -0.030377168208360672, 0.006127739790827036, 0.02093561552464962, 0.002019406296312809, 0.0058264839462935925, 0.015069406479597092, 0.011275570839643478, -0.005230593495070934, -0.00312842451967299, -0.009984474629163742, -0.02661643736064434, 0.009607077576220036, 0.01604931429028511, -0.002717922441661358, 0.03416438400745392, 0.0025093606673181057, -0.005508675705641508, 0.017651598900556564, 0.0020839611534029245, -0.005399429239332676, -0.014685387723147869, -0.015691781416535378, 0.007494977209717035, -0.0065382421016693115, 0.018247488886117935, -0.02794063836336136, 0.01397031918168068, 0.03623013570904732, -0.01753241941332817, 0.014235159382224083, 0.015519634820520878, 0.022988127544522285, 0.015042922459542751, 0.0011537100654095411, -0.003909703344106674, 0.02453744225203991, -0.01698949746787548, 0.013149314559996128, -0.0433543361723423, -0.007144063711166382, 0.030059359967708588, -0.00429703202098608, 0.018300456926226616, 0.0048068491742014885, -0.0199557077139616, -0.016367122530937195, -0.004601598251610994, 0.01773105002939701, 0.019584931433200836, -0.008263013325631618, -0.03193972632288933, -0.017704566940665245, 0.017558904364705086, -0.03599178045988083, -0.0033386414870619774, -0.02976803667843342, -0.010004337877035141, 0.013162557035684586, -0.0017313926946371794, 0.0026897829957306385, 0.013261872343719006, -0.0057106162421405315, -0.03135707601904869, 0.003644862910732627, 0.005733789876103401, -0.008263013325631618, 0.00354223744943738, 0.01338104996830225, 0.0026798516046255827, 0.005598059389740229, 0.007501597981899977, -0.001176883582957089, -0.015188584104180336, -0.0006145119550637901, 0.009660045616328716, 0.02339863032102585, 0.006137670949101448, 0.03307854011654854, -0.013182420283555984, 0.01402328722178936, 0.008090867660939693, -0.024325570091605186, 0.01669817417860031, 0.009679908864200115, -0.0018952625105157495, 0.004601598251610994, -0.011745662428438663, 0.01722785457968712, 0.006124428939074278, 0.007210273761302233, -0.006813013460487127, 0.00913698598742485, 0.03909040987491608, 0.0069255707785487175, -0.01054063905030489, 0.0009178367326967418, -0.019810045138001442, -0.010805479250848293, 0.01424840185791254, 0.00211706617847085, 0.03090684860944748, -0.023915067315101624, -0.022829223424196243, 0.02033972553908825, -0.009170090779662132, -0.008739725686609745, 0.008428539149463177, 0.011593379080295563, -0.02138584479689598, 0.026139724999666214, 0.03946118801832199, 0.02794063836336136, -0.01639360748231411, 0.012129680253565311, -0.0332639254629612, 0.0003900185402017087, 0.01733379065990448, 0.0010577054927125573, 0.026748858392238617, 0.02563652954995632, 0.014261643402278423, 0.0035587898455560207, 0.012493835762143135, 0.03821643814444542, -0.01970410905778408, 0.005369634833186865, -0.013957077637314796, -0.024616895243525505, -0.042003653943538666, -0.02415342442691326, -0.0011115011293441057, -0.015109132044017315, 0.010262557305395603, 0.022378996014595032, 0.02799360640347004, -0.02251141518354416, -0.01595662161707878, 0.006160844583064318, -0.004277168773114681, 0.04057351499795914, -0.01589041016995907, 0.027967123314738274, 0.04049406200647354, -0.013864383101463318, -0.00010003923671320081, 0.014698630198836327, 0.014115981757640839, 3.372574064997025e-05, 0.016155250370502472, 0.013877625577151775, -0.009812328964471817, 0.004747260361909866, -0.010169862769544125, 0.00435993168503046, -0.0036978309508413076, -0.014579451642930508, 0.0213328767567873, 0.002954623196274042, 0.0166319627314806, -0.02685479447245598, 0.012103196233510971, -0.02424611896276474, 0.01970410905778408, -0.006627625320106745, 0.011692694388329983, -0.007051369640976191, -0.018750684335827827, -0.03146301209926605, -0.0004605736176017672, 0.019121460616588593, 0.019876254722476006, 0.00640582200139761, -0.01955844648182392, -0.016658447682857513, -0.017161643132567406, -0.03554155305027962, -0.005737100262194872, -0.004237442743033171, 0.021491780877113342, -0.020326483994722366, 0.004498972557485104, 0.009242922067642212, -2.0470801246119663e-05, -0.01773105002939701, 0.0015037956181913614, 0.015069406479597092, 0.027543378993868828, -0.01791643723845482, -0.0009989440441131592, -0.018446117639541626, -0.00045974599197506905, 0.00284537672996521, 0.013957077637314796, -0.007614155299961567, 0.007230137009173632, -0.0011777111794799566, -0.013718721456825733, 0.0037507989909499884, -0.004634703043848276, -0.000698929768987, -0.005157762672752142, -0.00026856450131163, -0.005594749003648758, 0.003797146026045084, 0.00789885874837637, 0.0027146118227392435, -0.047432877123355865, 0.008037899620831013, -0.022365752607584, -0.0036779679358005524, 0.009838812984526157, 0.013877625577151775, -0.007163926959037781, 0.002706335624679923, 0.031621918082237244, 0.001893607317470014, 0.0128646120429039, 0.013268493115901947, 0.0009501141612417996, -0.03808401897549629, -0.0014491723850369453, -0.00712420092895627, -0.003063869895413518, 0.019174428656697273, 0.00566757982596755, -0.013440638780593872, -0.017413241788744926, 0.0066839042119681835, 0.002057477133348584, -0.0005880279350094497, -0.021889040246605873, -0.0040818494744598866, 0.022855708375573158, 0.014367579482495785, 0.0027758560609072447, -0.019094977527856827, 0.022114155814051628, 0.005124657414853573, -0.0037044519558548927, 0.010030821897089481, 0.0076538813300430775, -0.000134282250655815, 0.00010376355203334242, -0.010388355702161789, 0.0029165525920689106, -0.028523286804556847, -0.0023123857099562883, 0.00427054800093174, 0.0024795662611722946, 0.0024580478202551603, 0.004740639124065638, -0.029450228437781334, 0.02300136908888817, -0.02513333223760128, 0.0010684645967558026, 0.013056620955467224, 0.011143150739371777, -0.007845890708267689, 0.03559451922774315, 0.004585045389831066, -0.00789885874837637, -0.027026940137147903, 0.0075876712799072266, 0.002592123346403241, -0.005611301399767399, -0.03739543259143829, -0.011057077907025814, -0.026775341480970383, 0.03747488558292389, 0.011884703300893307, -0.024921460077166557, -0.021306391805410385, -0.006174086593091488, -0.004843264818191528, -0.008302739821374416, 0.004214269574731588, 0.02384885773062706, -0.0046148402616381645, 0.01488401833921671, 0.004896232858300209, 0.030747944489121437, -0.016208218410611153, 0.016353880986571312, 0.006865981500595808, 0.008322603069245815, 0.004777054768055677, 0.02464337833225727, -0.004548630211502314, 0.004740639124065638, -0.00772671215236187, -0.031727854162454605, 0.010368493385612965, 0.0076538813300430775, -0.009646803140640259, 0.005783447530120611, 0.007316209841519594, -0.029052967205643654, -0.0036779679358005524, -0.007077853661030531, 0.007647260092198849, 0.0010841895127668977, 0.005101483780890703, -0.0016949771670624614, 0.01328173466026783, -0.00021032034419476986, 0.022206848487257957, 0.01901552453637123, 0.00630981707945466, -0.014579451642930508, 0.0005358875496312976, 0.007945205084979534, -0.009454794228076935, -0.01427488587796688, 0.015440182760357857, -0.015638813376426697, 0.0399114154279232, -0.03191324323415756, -0.0008346603717654943, 0.03405844792723656, 0.009540867060422897, -0.011752283200621605, -0.02198173478245735, 0.01639360748231411, -0.034588128328323364, -0.007481735199689865, 0.021213699132204056, -0.009679908864200115, -4.386415457702242e-05, -0.01702922396361828, 0.03440273925662041, -0.026179451495409012, 0.0069719175808131695, -0.03050958923995495, -0.011070319451391697, -0.01335456594824791, 0.019280364736914635, 0.02276301383972168, -0.023968035355210304, 0.0018538812873885036, -0.007349315099418163, 0.03268127888441086, -0.008004794828593731, -0.013573058880865574, -0.03159543499350548, -0.018459361046552658, -0.011474200524389744, 0.01876392588019371, -0.017863469198346138, -0.000630650669336319, -0.01802237331867218, 0.007541324011981487, -0.012116437777876854, 0.00010236693924525753, 0.21695707738399506, -0.005932420026510954, 0.03530319780111313, 0.04361917823553085, -0.0018356734653934836, 0.028629222884774208, 0.012202511541545391, -0.00493926927447319, -0.003482648404315114, 0.0226703193038702, -0.019002282992005348, 0.029662100598216057, -0.01901552453637123, -0.00043905535130761564, 0.021121004596352577, 0.00789885874837637, -0.003125114133581519, -0.04430776089429855, -0.022604109719395638, -0.006544862873852253, -0.011129908263683319, 0.00251267128624022, -0.0042440639808773994, -0.02735798992216587, 0.021359359845519066, -0.006154223810881376, -0.005968835670500994, 0.004253995604813099, 0.0240474883466959, 0.0009136986336670816, -0.019836530089378357, 0.01195091288536787, -0.009918265044689178, 0.007349315099418163, -0.033608220517635345, -0.002492808271199465, 0.02449771575629711, -0.0019978880882263184, 0.04862465709447861, -0.03146301209926605, 0.004174543544650078, -0.021399086341261864, -0.032019179314374924, -0.01916118711233139, -0.005601369775831699, 0.0028950341511517763, -0.013294977135956287, -0.020379452034831047, -0.026748858392238617, -0.006124428939074278, -0.01630091294646263, -0.008944977074861526, 0.020273515954613686, 0.015228310599923134, -0.006690524984151125, -0.019730594009160995, 0.006793150678277016, 0.005435844883322716, 0.004313584417104721, 0.007680365350097418, 0.0073426938615739346, 0.029609132558107376, -0.007329451851546764, 0.006472032051533461, -0.004641324281692505, 0.011732419952750206, -0.03265479579567909, -0.019333332777023315, 0.0044658672995865345, -0.029344292357563972, -0.003245947416871786, -0.026139724999666214, 0.01123584434390068, 0.02873515896499157, -0.03427032008767128, -0.019478995352983475, 0.018379908055067062, 0.01579771749675274, -0.00350582180544734, 0.037951596081256866, -0.01263949740678072, -0.012857990339398384, -0.009785844944417477, -0.008978081867098808, -0.02158447541296482, -0.031966209411621094, 0.012275341898202896, -0.027887670323252678, 0.009441552683711052, -0.00435993168503046, -0.007706849370151758, -0.007945205084979534, -0.00053712900262326, 0.0028966895770281553, 0.01281164400279522, 0.008011415600776672, -0.011785387992858887, 0.018088584765791893, -0.014751598238945007, 0.01488401833921671, -0.021054795011878014, 0.033952511847019196, 0.024325570091605186, 0.015334246680140495, 0.005852967966347933, -0.020525114610791206, 0.0172808226197958, 0.03837534040212631, 0.016658447682857513, -0.011659588664770126, -0.016406849026679993, 0.003343607299029827, -0.0051941778510808945, -0.01599634625017643, 0.00834246538579464, 0.01332808192819357, -0.012195889838039875, -0.0014086187584325671, 0.0047108447179198265, -0.004995547700673342, 0.0034495433792471886, -0.004730707500129938, -0.016923287883400917, 0.008501369506120682, -0.005223972722887993, -0.02033972553908825, -0.022577624768018723, -0.01343401800841093, -0.008229908533394337, -0.010394977405667305, 0.024563927203416824, -0.0399908684194088, 0.006667351350188255, 0.004879680462181568, 0.017717808485031128, -0.0013457192108035088, -0.007442009169608355, -0.012288584373891354, -0.007104337681084871, -0.009468036703765392, -0.02167716808617115, -0.004151369910687208, 0.00035753424162976444, -0.03371415659785271, 0.003760730614885688, -0.011772146448493004, 0.009269406087696552, 0.0058099315501749516, 0.011964155361056328, -0.022047944366931915, -0.001868778490461409, 0.0024481164291501045, -0.01271894946694374, -0.010759131982922554, 0.010401598177850246, -0.0373159795999527, -0.01669817417860031, -0.02696073055267334, 0.011547031812369823, 0.0035952054895460606, -0.04425479471683502, 0.0006695491028949618, 0.013235388323664665, -0.0015733161708340049, -0.022524656727910042, -0.01639360748231411, -0.16833241283893585, -0.005882762372493744, 0.0028420661110430956, -0.03450867533683777, 0.026828309521079063, 0.002572260331362486, 0.0373159795999527, 0.01644657552242279, 0.0018853310029953718, -0.018035616725683212, -0.007183789741247892, 0.012195889838039875, -0.013851141557097435, -0.0038170090410858393, 0.00567751144990325, 0.016658447682857513, -0.008428539149463177, -0.0023570775520056486, 0.02015433833003044, 0.014605935662984848, 0.003548858454450965, -0.027225570753216743, 0.028020091354846954, 0.009355478920042515, -0.011136529967188835, 0.009931506589055061, -0.011262328363955021, 0.011487443000078201, -0.0043731736950576305, -0.01145433820784092, 0.008203424513339996, 0.015625569969415665, 0.026285387575626373, 0.0071175796911120415, 0.030456621199846268, 0.002802340080961585, 0.002497773850336671, -0.02232602797448635, -0.03673333302140236, 0.004621461033821106, 0.01192442886531353, 0.03623013570904732, 0.032019179314374924, 0.005750342272222042, -0.013083104975521564, 0.021213699132204056, 0.032310500741004944, -0.01743972674012184, 0.007931963540613651, -0.032125115394592285, 0.018591780215501785, -0.04568492993712425, 0.0014855879126116633, -0.0022395546548068523, 0.019386300817131996, -0.004846575204282999, -0.019863013178110123, 0.0075876712799072266, 0.012646118178963661, 0.0038368720561265945, 0.011944292113184929, -0.01753241941332817, -0.0032194633968174458, 0.009401826187968254, -0.00026939212693832815, -0.048465751111507416, -0.017558904364705086, 0.021491780877113342, -0.03217808157205582, 0.010097031481564045, 0.010355250909924507, 0.0038865297101438046, 0.012156164273619652, -0.0012910958612337708, 0.017068950459361076, -8.855593478074297e-05, -0.02073698677122593, 0.0029612442012876272, 0.015400456264615059, -0.010401598177850246, 0.012606392614543438, 0.022498173639178276, -0.002087271772325039, 0.001689183758571744, 0.013122830539941788, -0.01051415503025055, -0.0011628138599917293, -0.01338104996830225, 0.0028238585218787193, -0.01876392588019371, 0.0182739719748497, -0.037210043519735336, -0.01916118711233139, -0.013824657537043095, 0.018883105367422104, 0.024073971435427666, 0.0186182651668787, 0.0011288812384009361, 0.0099977171048522, -0.0051941778510808945, 0.007647260092198849, -0.0308538805693388, -0.05331232771277428, -0.0017082191770896316, 0.010044063441455364, 0.025610044598579407, -0.03705114126205444, 0.007183789741247892, 0.040520548820495605, 0.011878082528710365, -0.03204566240310669, -0.0006037528510205448, 0.0086205480620265, 0.013215525075793266, -0.015837442129850388, 0.03125113993883133, -0.009342237375676632, -0.035382647067308426, 0.006700456608086824, 0.020352967083454132, 0.02759634703397751, 0.0004866438393946737, -0.006667351350188255, 0.02173013612627983, 0.012824885547161102, -0.028947031125426292, -0.09131689369678497, -0.028576254844665527, 0.01402328722178936, 0.015254794619977474, 0.0013473744038492441, 0.014420547522604465, -0.020723743364214897, 0.010560502298176289, -0.010421461425721645, 0.023332420736551285, 0.018379908055067062, -0.012705707922577858, -0.00920981727540493, -0.004141438286751509, 0.0041281962767243385, -0.019478995352983475, -0.011613242328166962, -0.022352511063218117, -0.03164840117096901, 0.025318721309304237, 0.004743949510157108, 0.017015982419252396, 0.007064611651003361, -0.002706335624679923, -0.014499999582767487, -0.008547716774046421, -0.04232146218419075, 0.029370775446295738, 0.001622973708435893, -0.0039825341664254665, 0.00699840160086751, -0.016817351803183556, -0.013626026920974255, -0.016022831201553345, 0.0005983732989989221, -0.01328173466026783, -0.022206848487257957, -0.01416894979774952, 0.04433424770832062, -0.019068492576479912, 0.0005193350370973349, -0.006422374397516251, 0.0019879566971212626, -0.017889954149723053, -0.008653652854263783, 0.00042312356526963413, -0.039381735026836395, 0.017638355493545532, 0.02044566161930561, -0.028126027435064316, -0.028205478563904762, -0.0019184360280632973, -0.023769406601786613, 0.011606620624661446, 0.020816437900066376, -0.0018638127949088812, 0.007375799119472504, 0.014897259883582592, 0.0049028536304831505, 0.02089589089155197, -0.009315753355622292, -0.01634063944220543, -0.01722785457968712, 0.023782648146152496, 0.013155936263501644, 0.02478904090821743, -0.007422145921736956, -0.012222373858094215, 0.02592785283923149, -0.008150456473231316, -0.004399657715111971, 0.006448858417570591, -0.030032876878976822, 0.01841963455080986, -0.02053835615515709, -0.007567808032035828, -0.005382876843214035, 0.014063013717532158, 0.011427854187786579, -0.008309360593557358, -0.014288127422332764, -0.018009131774306297, -0.02884109504520893, 0.0011669520754367113, 0.015810959041118622, 0.01350684929639101, 0.002966210013255477, 0.03408493101596832, 0.012473972514271736, -0.016327397897839546, 0.008289497345685959, 0.022100912407040596, 0.0186182651668787, 0.013559817336499691, 0.004237442743033171, -0.014725114218890667, 0.0096732871606946, -0.022604109719395638, -0.007832648232579231, 0.019439268857240677, -0.03752785176038742, -0.0186182651668787, -0.07039452344179153, 0.003711072960868478, -0.020856164395809174, -0.03554155305027962, 0.005902625620365143, -0.025159817188978195, 0.0020160959102213383, -0.019584931433200836, -0.0020111300982534885, -0.010659817606210709, -0.02952967956662178, -0.009633561596274376, -0.014208675362169743, -0.010898173786699772, 0.002347146160900593, -0.018644748255610466, 0.008766209706664085, -0.00772671215236187, 0.005078310612589121, 0.00903767067939043, 0.01811506785452366, -0.02286894991993904, 0.013275113888084888, -0.00017462899268139154, -0.03956712409853935, 0.014314611442387104, 0.0056146117858588696, 0.03228401765227318, -0.03289315104484558, -0.013275113888084888, 0.00424737436696887, -0.008018036372959614, -0.00418447470292449, 0.00491278525441885, -0.016314154490828514, -0.004326826427131891, 0.010421461425721645, 0.005607991013675928, 0.006793150678277016, 0.015228310599923134, -0.01197739690542221, -0.017002739012241364, 0.0086404113098979, -0.013539954088628292, 0.0067302510142326355, 0.00854109600186348, -3.4812001104000956e-05, -0.005912557244300842, 0.02976803667843342, 0.023676712065935135, 0.0270666666328907, 0.0027096460107713938, -0.0036117578856647015, -0.03204566240310669, 0.017836986109614372, -0.006200570613145828, 0.01733379065990448, -0.01056712307035923, 0.0013763413298875093, -0.012520319782197475, 0.031436529010534286, 0.006054908502846956, 0.004561872221529484, 0.0007407249067910016, 0.015162100084125996, 0.004631392657756805, -0.01649954356253147, -0.0021336188074201345, 0.004121575504541397, -0.02509360760450363, -0.024722831323742867, -0.0014450342860072851, 0.016777625307440758, 0.017956163734197617, 0.0030506278853863478, 0.00010883276263484731, -0.027146117761731148, 0.02612648345530033, -0.022458447143435478, 0.02082967944443226, 0.03331689536571503, 0.01930684968829155, -0.02355753444135189, 0.012348173186182976, 0.024921460077166557, 0.015784474089741707, -0.005045205354690552, 0.002861929126083851, 0.01604931429028511, -0.00772671215236187, -0.008925113826990128, -0.001449999981559813, -0.008084246888756752, -0.002057477133348584, -0.000189526253961958, 0.008759588934481144, -0.015321004204452038, -0.006528310477733612, 0.0005276112933643162, 0.005184246692806482, 0.018287213519215584, -9.36897959036287e-06, -0.0026666095945984125, -0.004396346863359213, -0.04351324215531349, 0.017995890229940414, -0.0016966323601081967, -0.03628310561180115, 0.008090867660939693, 0.020604565739631653, 0.002737785456702113, 0.014513242058455944, 0.02010137028992176, 0.01407625526189804, -0.04912785440683365, 0.00040574342710897326, -0.034482192248106, -0.0019432648550719023, -0.033105023205280304, 0.030986301600933075, 0.0005222317413426936, 0.028999999165534973, 0.018803652375936508, -0.012315068393945694, 0.02735798992216587, 0.008183561265468597, 0.017400000244379044, -0.004919406492263079, -0.0022362442687153816, -0.004638013429939747, -0.01935981772840023, 0.010368493385612965, -0.03331689536571503, 0.0008756278548389673, -0.012560045346617699, -0.0014168949564918876, 0.004068607464432716, 0.01704246550798416, 0.003913013730198145, 0.0825771689414978, 0.017836986109614372, -0.009567351080477238, -7.920635312075319e-07, -0.017294064164161682, -0.00997123308479786, 0.023226484656333923, -0.0009542522602714598, -0.005985388066619635, -0.02958264760673046, -0.010805479250848293, 0.015493150800466537, -0.008858904242515564, -0.04790958762168884, -0.0043698628433048725, 0.027967123314738274, 0.0028950341511517763, 0.014115981757640839, -0.002729509025812149, 0.006740182638168335, 0.002439840231090784, 0.023584017530083656, -0.008044520393013954, -0.0127123286947608, -0.04918082058429718, 0.0016792522510513663, 0.03522374480962753, 0.003926255740225315, 0.006601141300052404, -0.05026666447520256, -0.0011388127459213138, -0.0009319063974544406, 0.0026119863614439964, -0.019478995352983475, 0.005697374232113361, 0.0074089039117097855, 0.014036529697477818, -0.01148082222789526, -0.0012348173186182976, -0.003694520564749837, 0.0013266837922856212, 0.01619497686624527, -0.014341095462441444, -0.017267579212784767, -0.003922945354133844, -0.011884703300893307, -0.02502739615738392, -0.0011628138599917293, -0.04049406200647354]}, "text_id_to_ref_doc_id": {"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f": "6685c205-00b5-4be1-b3aa-d0e9dae77c44", "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "43e2934d-8b5a-4253-a65c-6963192bf333": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "e6412f55-0e69-40ea-9d17-2ba2dc205df8": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "30edcd48-606d-40a4-b815-a31a30ffd824": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "08affb40-2cbf-4b09-aa2b-e31dde7a6daa": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "a7c1cef1-ba90-4dd4-a366-05c37ea5289f": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ad10fe86-f437-47cb-873c-2c6cd3329369": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "a49e389c-f457-4114-bb4a-7ab41ec6490c": "65bb8589-485e-470d-b83a-68f40dd30598", "c381a8cb-0c74-4ec8-9dd4-326416f7bc32": "65bb8589-485e-470d-b83a-68f40dd30598", "6d7285c2-c06b-4c3e-9c04-eb4cb0482338": "65bb8589-485e-470d-b83a-68f40dd30598", "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9": "65bb8589-485e-470d-b83a-68f40dd30598", "209fc505-f77b-42eb-a0ec-3c89bc7993dd": "65bb8589-485e-470d-b83a-68f40dd30598", "38d0187e-fd3c-40fe-84c5-6038c6db529f": "65bb8589-485e-470d-b83a-68f40dd30598", "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21": "c3fd772a-d386-4522-bf40-858dcb47beef", "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5": "c3fd772a-d386-4522-bf40-858dcb47beef", "d2c42aad-be12-4391-9d49-6f98b336a7aa": "c3fd772a-d386-4522-bf40-858dcb47beef", "9447d812-d668-42d7-860b-27936468ab3d": "c3fd772a-d386-4522-bf40-858dcb47beef", "b8d382cd-0334-429b-9834-99a34e818741": "c3fd772a-d386-4522-bf40-858dcb47beef", "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e": "c3fd772a-d386-4522-bf40-858dcb47beef", "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f": "c3fd772a-d386-4522-bf40-858dcb47beef", "28a02a3b-dde7-460a-9f99-bcb347d728bb": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "741aa787-463c-4189-b641-510278e53f0f": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "3fa2421e-8b56-472f-bdf8-db7bd95d817d": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "b7059d13-4bf1-4044-b228-2d2a847e89a2": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "44d86782-fbbf-4972-bfa0-f05631ace2d2": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "c127a5a8-e5bd-4e52-98f2-f01c12db95b3": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ea53cead-3e5e-49cf-9c71-78029f117c0a": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "447c0f42-0e4f-435d-97c3-e88d6657386c": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "26da9a8c-b014-4fbf-b7f5-47bf05613a9e": "6798d972-db6f-4157-b244-43106ac2bb95", "62c45f91-a5d5-4db9-997b-7f2538092433": "6798d972-db6f-4157-b244-43106ac2bb95", "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e": "6798d972-db6f-4157-b244-43106ac2bb95", "95c352af-8078-4534-aad1-1124f88c56dd": "6798d972-db6f-4157-b244-43106ac2bb95", "2cad634c-c9c9-4205-9361-baa79a34008c": "6798d972-db6f-4157-b244-43106ac2bb95", "74429688-a399-4fd6-87c6-98bf364281ed": "6798d972-db6f-4157-b244-43106ac2bb95", "5051091c-194f-49a1-8289-f686858300ec": "6798d972-db6f-4157-b244-43106ac2bb95", "4f932ede-8209-44e0-9202-0d644d756afc": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "5379d4a0-b2cd-45ea-b795-818ae80fb090": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "34ed9af4-83b2-4f32-b700-fc003541f5a6": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "5f510fb4-a8c9-4360-a742-ec2f3b45bab6": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "d5bc4479-681b-42f3-914e-09acf2d7ed74": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "3a459cfa-8984-45f1-a5d4-819cc5044aa9": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "660b852a-0985-4490-aad3-e7b3ccfb829c": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "464a4c61-76db-4671-84b1-48da946f5f78": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "5948f425-654c-4cee-98e0-b64a0fb4bbe5": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "3f9412e4-a749-4bff-8739-4606b31ea8f1": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "be0a3801-aaf8-41f3-9996-6218b1366d18": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "248058b8-0d54-48db-9a21-55b77aa1eb04": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "59c02e3e-4304-4e19-bab8-b92039c0a2e8": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "a45af541-a681-431f-8e18-14c46748011c": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "9800400e-4b08-40de-8eab-a8030438fdea": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "8d110233-ce34-468f-904d-59986c253e79": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "3654c353-73a0-4429-8b80-706b16bf79e3": "7bf09652-9a97-4f30-bc07-da12c2260de4", "8c681b3e-fbde-4214-adaf-f9d1300c9aee": "7bf09652-9a97-4f30-bc07-da12c2260de4", "8defb448-9071-4fc8-85d7-1c8c7994b068": "7bf09652-9a97-4f30-bc07-da12c2260de4", "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a": "7bf09652-9a97-4f30-bc07-da12c2260de4", "8a42847e-d34b-4214-83fd-6613a4b84086": "7bf09652-9a97-4f30-bc07-da12c2260de4", "46465398-05f7-49ec-bc8c-c6f1d9696bcc": "7bf09652-9a97-4f30-bc07-da12c2260de4", "66035af3-6ef1-495b-a24c-4e6642d277f4": "7bf09652-9a97-4f30-bc07-da12c2260de4", "c3def67b-d763-4f94-9a2b-53b81a1be41b": "7bf09652-9a97-4f30-bc07-da12c2260de4", "36bb8e59-f2dd-4374-897e-a97830ae042b": "7bf09652-9a97-4f30-bc07-da12c2260de4", "c1505c31-0d44-4e42-964c-1889324dc33b": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "bc137aa3-66e7-417d-951c-5d12b6ca21e9": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "b5804993-458b-4b01-b13c-ad4cb9ea1c30": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "b7cf44ff-494b-4b14-90d2-f358a2dbea32": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "3a60dc4d-a8c5-4b8a-8389-dc972fdab765": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "655b870a-ed3a-476f-a19f-b05285203802": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "6e24f274-bc98-41ba-bba6-1275248af13c": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "45053040-3fa3-4bb5-aa00-7a11811e4098": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "959cccdc-8990-470a-a8e8-64ef3ca824bd": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "3c0babf6-7299-46e3-8b25-a99533bce746": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "80c4a719-ec82-4874-b183-7aef4ca5dceb": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "e3602a25-424c-4f8a-9898-c34357bd7420": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "8875d27e-0ca8-4ae5-82bf-284d04df8f36": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "0f8f3308-6725-46c7-84bd-19d9d9f68ceb": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "eee0cc8b-2935-4cba-b198-f2213e577473": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "c82bed89-8f47-4ba3-98c6-40149c08d156": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "7fc185be-53f4-469d-8b85-7384546f2dae": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "f395dbda-eaef-4363-890a-e136eb12c483": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "edae333f-d2c1-4fc5-b558-50faf36e419a": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "359df20b-7775-474e-b3a4-bfbbc0e8a56c": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "f8a816c2-2836-40c3-b2e7-5e2ea5584eab": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "faba4ae7-0c67-498f-a704-eabd35773868": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "00b14091-118e-4451-ad88-dd7db709b135": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b": "4b44e675-64e5-457e-909e-a1553348de00", "31aa5116-27d2-4e25-9ea7-e39a90baf975": "4b44e675-64e5-457e-909e-a1553348de00", "bfda4cdd-355f-44cd-a333-592fb7cbade4": "4b44e675-64e5-457e-909e-a1553348de00", "7517e8c9-e829-47be-a792-3bb7aedb40a7": "4b44e675-64e5-457e-909e-a1553348de00", "eeeefeaf-d448-4ed2-967b-ac85b7dc012e": "4b44e675-64e5-457e-909e-a1553348de00", "7fd9dd64-d020-4c02-8c3e-7e498557b7e6": "4b44e675-64e5-457e-909e-a1553348de00", "78fce47a-97ce-40a1-a41d-45c29ec1c6ff": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "270fc7ae-49fc-4d87-a3e7-04ec0577a426": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "d37333a6-d060-47f4-9e0e-29273ac89aa1": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "97c67d12-52ac-46ba-8df3-c740bb16e497": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "1f9270dc-5439-4eb4-b6a8-bee468243ae9": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "bf7b3e64-7e63-4c9a-b611-622581711e8d": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "00b4a5d7-9bbd-4055-a1cf-f54e5357911b": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "cf0db177-d4a6-45eb-838d-074b79670592": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "fd76a23c-a4e7-463d-a4e4-2a999724795f": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "932ade67-eecb-47cd-b5fe-567427a3003a": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "4a21db87-f1d9-4f48-97ed-ef89e1c22707": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ff5d255c-4788-45d5-b921-9cca84b2584a": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "9e3a1ee4-9a16-458d-9d23-3a155e95ef79": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "a5376a45-de84-4321-b327-d9e9c6742a8c": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "87d37a51-fbbf-4575-a224-dfbce78025c6": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ddbf5900-58bf-41be-acf1-43b900410da6": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "98b2ce96-a564-4c85-8471-1014e50c45b1": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "1146c533-2788-4aa9-a68e-2f129677a095": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "5501c185-c58a-4ee2-8d66-f373eb14f7f4": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "7ce69457-887b-4129-bc12-be646345587b": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "a19ef6b2-886a-49f0-972c-adb25d81ea44": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "914c76dc-6aab-47cf-9ab6-731981d942fe": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "935bce25-2dce-433f-a117-7583d47ec888": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "51d8576b-7e29-4750-b6b9-0f17693077d5": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "55da5c49-c77a-4ce6-bd25-70b055db9658": "366d85d8-9b45-40c4-992e-849cf65da266", "ba390c38-cbab-4d5e-8737-21c68d6599e7": "366d85d8-9b45-40c4-992e-849cf65da266", "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107": "366d85d8-9b45-40c4-992e-849cf65da266", "b62efdf3-cde0-49ba-a7d5-68d8a09f3118": "366d85d8-9b45-40c4-992e-849cf65da266", "63f94e80-9f22-4700-ae0d-393029b21a47": "366d85d8-9b45-40c4-992e-849cf65da266", "51feec6d-2627-4b9e-a339-7524953b135c": "366d85d8-9b45-40c4-992e-849cf65da266", "02835535-81cb-4b99-9c36-7f722fe56e53": "366d85d8-9b45-40c4-992e-849cf65da266", "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b": "366d85d8-9b45-40c4-992e-849cf65da266", "d428515b-e422-458d-bb7c-b19c19acc64f": "646aed1c-3013-452e-ad89-93702220a065", "4dc159c0-87f3-4130-8b29-fa95cb66e1bc": "646aed1c-3013-452e-ad89-93702220a065", "8b135e07-e798-40ba-af9c-57338f8631ef": "646aed1c-3013-452e-ad89-93702220a065", "c2d8f160-644e-487d-a842-4813e7c6728d": "646aed1c-3013-452e-ad89-93702220a065", "7c41061f-967d-433f-978a-b0172c1cb3cd": "646aed1c-3013-452e-ad89-93702220a065", "74be3d9d-1ed6-45ea-a122-395f60330929": "646aed1c-3013-452e-ad89-93702220a065", "31272119-3229-40a3-86bb-2282ac6d6fe3": "646aed1c-3013-452e-ad89-93702220a065", "27c585f2-eae8-4e0d-a64f-18a6221e0644": "646aed1c-3013-452e-ad89-93702220a065", "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e": "6addee7a-a48c-4a90-9101-cb696f59a62d", "efb2b508-2e2f-4b13-8294-bb36a71e2634": "6addee7a-a48c-4a90-9101-cb696f59a62d", "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e": "6addee7a-a48c-4a90-9101-cb696f59a62d", "aec60a8e-dde5-4c5d-884a-af18bb204b1e": "6addee7a-a48c-4a90-9101-cb696f59a62d", "35a31964-52f0-4c13-bab7-e0ab575a3d7f": "6addee7a-a48c-4a90-9101-cb696f59a62d", "23d3f456-47be-4dd3-8b8c-6c00f1d47889": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ff51296b-eafb-4862-88aa-ff2bae8c82eb": "6addee7a-a48c-4a90-9101-cb696f59a62d", "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ce31c578-fc0a-442c-acfd-232fb07ca028": "2bf315b5-29d8-46ec-a209-9313b0a60382", "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b": "2bf315b5-29d8-46ec-a209-9313b0a60382", "6429847b-17f8-4e4e-8ec9-289a9f5b74d1": "2bf315b5-29d8-46ec-a209-9313b0a60382", "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd": "2bf315b5-29d8-46ec-a209-9313b0a60382", "3f2a1579-dc10-4d61-84ec-282a3582fe16": "2bf315b5-29d8-46ec-a209-9313b0a60382", "b84c306f-9568-4e43-93d6-8e8a7e64cc3a": "2bf315b5-29d8-46ec-a209-9313b0a60382", "8e899819-777f-4540-b925-c8eaa4b25258": "2bf315b5-29d8-46ec-a209-9313b0a60382", "a12a726d-e5d7-4615-8f14-60665e34ec67": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "523b9723-f604-4ad0-9140-1f46a38c90fd": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "97f8d001-26d2-4042-87a6-da4c7e9df3d1": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "aacf5ef9-6dbd-40de-991b-a512b0552188": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "decefc81-7ed0-450c-b7ad-bbc3f17b4994": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "c3556ce3-e8dc-44df-9263-115d43ae8b65": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "b7618784-7da4-4ea7-a537-e13e4e6958a4": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "015f77e0-1857-45de-9299-ae361ba2bb5a": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "c8f16d49-c530-47af-a49c-3e0f2e6edac3": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "751318bf-7121-43da-88b3-b0c3e382e2f8": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "0938a373-57be-4f0f-bb30-8bd66beac402": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "b8d3d508-5cbc-4dc0-b528-dc4943c195cc": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "d67269bf-5add-49da-8086-3ce46606e311": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "9efa0d03-95f2-447c-99c0-3085b92d0f82": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "f301d3a7-e76e-456d-9b46-6b971f9d23b2": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "4c2e44e7-e40e-4937-96de-44c0628f61f4": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "7a406987-eba0-4222-a34f-7ad3724a5604": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ec793519-e044-423d-ba4b-21c3ec916891": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "83808199-cb49-4a60-bcfe-27a4b9d3b685": "5a928013-b632-48cb-9ecd-b5670356cf8f", "3363e09a-1ab4-4c17-bb8a-e6752917130a": "5a928013-b632-48cb-9ecd-b5670356cf8f", "476b4f33-d161-4cbe-a216-dbfa745ef944": "5a928013-b632-48cb-9ecd-b5670356cf8f", "479ce05c-61fd-4bea-8a73-e26b16cd3e70": "5a928013-b632-48cb-9ecd-b5670356cf8f", "47ee3c46-bad3-4aac-99eb-11a0b98ebf20": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "20146fda-7b8b-4d03-adb9-1c79e9d87125": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ff608a4c-36da-45aa-ad71-ea74392d397c": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "7a9c5d00-cd62-4a4e-9607-bd6caef08515": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "f620bea9-7052-4504-ade1-ba5cf9d769a4": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7": "0d121388-4770-427c-beea-56d66cb85583", "9936a434-0aae-4070-99e6-d1abeb440546": "0d121388-4770-427c-beea-56d66cb85583", "278d2c56-536c-4910-9fcb-daa1088cb994": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869", "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "df1de581-9827-42fd-b1ed-e2fc4ca4899b": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "bb687d40-1093-4eaf-90c9-d0eb2e3dade1": "54d8490b-0b63-40b6-8012-d279ddde92c8", "9f7ff698-db2b-41ab-9c8e-c255d8e3a586": "54d8490b-0b63-40b6-8012-d279ddde92c8", "d665cef5-0e08-47bb-9e34-0b0767c0f1ff": "54d8490b-0b63-40b6-8012-d279ddde92c8", "0e222bbb-583f-4ab9-84e6-79c3709b03e8": "54d8490b-0b63-40b6-8012-d279ddde92c8", "3b555f83-9634-48a7-b8c0-a207c923d7bf": "67f8511a-826b-4d6f-acf1-6dcca534434d", "45498fda-c622-4a9a-a1bc-4d2124f9b64d": "67f8511a-826b-4d6f-acf1-6dcca534434d", "53b70118-7161-41bf-9e8c-8c33daf2307b": "67f8511a-826b-4d6f-acf1-6dcca534434d", "a0fa9976-9308-4e10-bcbc-a24ff57cef61": "67f8511a-826b-4d6f-acf1-6dcca534434d", "50ce3962-d5f7-44be-81d3-35dfd06afa74": "19141fb6-d671-4159-b23c-c79984a6ccf1", "5cabf076-22d0-4480-a111-3d87c6574c5b": "19141fb6-d671-4159-b23c-c79984a6ccf1", "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021": "19141fb6-d671-4159-b23c-c79984a6ccf1", "e79cb32e-d193-420b-9804-a5e004fdb394": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "metadata_dict": {"1a6f88a7-9f7c-4ec8-9c81-79ef1b6c078f": {"document_id": "6685c205-00b5-4be1-b3aa-d0e9dae77c44", "doc_id": "6685c205-00b5-4be1-b3aa-d0e9dae77c44", "ref_doc_id": "6685c205-00b5-4be1-b3aa-d0e9dae77c44"}, "3d5bb4f7-24c8-4cdc-bccc-4c9c188bedec": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "43e2934d-8b5a-4253-a65c-6963192bf333": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "e6412f55-0e69-40ea-9d17-2ba2dc205df8": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "30edcd48-606d-40a4-b815-a31a30ffd824": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "08affb40-2cbf-4b09-aa2b-e31dde7a6daa": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "a7c1cef1-ba90-4dd4-a366-05c37ea5289f": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "ad10fe86-f437-47cb-873c-2c6cd3329369": {"document_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb", "ref_doc_id": "e5d27f08-e86f-411d-8d21-6cb9b9015eeb"}, "a49e389c-f457-4114-bb4a-7ab41ec6490c": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "c381a8cb-0c74-4ec8-9dd4-326416f7bc32": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "6d7285c2-c06b-4c3e-9c04-eb4cb0482338": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "5ab53850-d6e8-4e49-a1f2-65cc2571c8b9": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "209fc505-f77b-42eb-a0ec-3c89bc7993dd": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "38d0187e-fd3c-40fe-84c5-6038c6db529f": {"document_id": "65bb8589-485e-470d-b83a-68f40dd30598", "doc_id": "65bb8589-485e-470d-b83a-68f40dd30598", "ref_doc_id": "65bb8589-485e-470d-b83a-68f40dd30598"}, "e1ad94ee-b96e-43a4-8ce0-382b5ec83b21": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "12129d9a-a7e2-49c1-b4a2-90a5a24b08a5": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "d2c42aad-be12-4391-9d49-6f98b336a7aa": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "9447d812-d668-42d7-860b-27936468ab3d": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "b8d382cd-0334-429b-9834-99a34e818741": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "c2feb8b6-d5ee-4952-90a2-6706bbbe9b8e": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "fa24eeb0-41ac-4cd5-aa70-eadbea570e4f": {"document_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef", "ref_doc_id": "c3fd772a-d386-4522-bf40-858dcb47beef"}, "28a02a3b-dde7-460a-9f99-bcb347d728bb": {"document_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "741aa787-463c-4189-b641-510278e53f0f": {"document_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "3fa2421e-8b56-472f-bdf8-db7bd95d817d": {"document_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788", "ref_doc_id": "3f9cbb80-96f4-46f0-ba04-876c6740f788"}, "c0b89d2e-7a53-4066-9bbd-2101bebb4f1c": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "b7059d13-4bf1-4044-b228-2d2a847e89a2": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "44d86782-fbbf-4972-bfa0-f05631ace2d2": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "c127a5a8-e5bd-4e52-98f2-f01c12db95b3": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "ea53cead-3e5e-49cf-9c71-78029f117c0a": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "447c0f42-0e4f-435d-97c3-e88d6657386c": {"document_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8", "ref_doc_id": "5586efe2-3b14-4421-84e8-ebd27a3acbe8"}, "26da9a8c-b014-4fbf-b7f5-47bf05613a9e": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "62c45f91-a5d5-4db9-997b-7f2538092433": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "8ba81b98-7cb6-4139-8cfc-21f26e3aa11e": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "95c352af-8078-4534-aad1-1124f88c56dd": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "2cad634c-c9c9-4205-9361-baa79a34008c": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "74429688-a399-4fd6-87c6-98bf364281ed": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "5051091c-194f-49a1-8289-f686858300ec": {"document_id": "6798d972-db6f-4157-b244-43106ac2bb95", "doc_id": "6798d972-db6f-4157-b244-43106ac2bb95", "ref_doc_id": "6798d972-db6f-4157-b244-43106ac2bb95"}, "4f932ede-8209-44e0-9202-0d644d756afc": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5379d4a0-b2cd-45ea-b795-818ae80fb090": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "34ed9af4-83b2-4f32-b700-fc003541f5a6": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5f510fb4-a8c9-4360-a742-ec2f3b45bab6": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "d5bc4479-681b-42f3-914e-09acf2d7ed74": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "3a459cfa-8984-45f1-a5d4-819cc5044aa9": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "660b852a-0985-4490-aad3-e7b3ccfb829c": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "464a4c61-76db-4671-84b1-48da946f5f78": {"document_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede", "ref_doc_id": "dbfcaa25-9f49-4920-a7a3-aa56fe190ede"}, "5948f425-654c-4cee-98e0-b64a0fb4bbe5": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "3f9412e4-a749-4bff-8739-4606b31ea8f1": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "be0a3801-aaf8-41f3-9996-6218b1366d18": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "248058b8-0d54-48db-9a21-55b77aa1eb04": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "59c02e3e-4304-4e19-bab8-b92039c0a2e8": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "a45af541-a681-431f-8e18-14c46748011c": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "9800400e-4b08-40de-8eab-a8030438fdea": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "8d110233-ce34-468f-904d-59986c253e79": {"document_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a", "ref_doc_id": "55e9377f-cd20-4e8f-b312-4037fb435a8a"}, "3654c353-73a0-4429-8b80-706b16bf79e3": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8c681b3e-fbde-4214-adaf-f9d1300c9aee": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8defb448-9071-4fc8-85d7-1c8c7994b068": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "6bc3250c-17d6-4d82-a5d2-0d3743e2bb2a": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "8a42847e-d34b-4214-83fd-6613a4b84086": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "46465398-05f7-49ec-bc8c-c6f1d9696bcc": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "66035af3-6ef1-495b-a24c-4e6642d277f4": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "c3def67b-d763-4f94-9a2b-53b81a1be41b": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "36bb8e59-f2dd-4374-897e-a97830ae042b": {"document_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4", "ref_doc_id": "7bf09652-9a97-4f30-bc07-da12c2260de4"}, "c1505c31-0d44-4e42-964c-1889324dc33b": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "bc137aa3-66e7-417d-951c-5d12b6ca21e9": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "b5804993-458b-4b01-b13c-ad4cb9ea1c30": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "b7cf44ff-494b-4b14-90d2-f358a2dbea32": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "3a60dc4d-a8c5-4b8a-8389-dc972fdab765": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "655b870a-ed3a-476f-a19f-b05285203802": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "6e24f274-bc98-41ba-bba6-1275248af13c": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "9ec6ef83-6a88-429a-ad72-d3cdaf84ad70": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "45053040-3fa3-4bb5-aa00-7a11811e4098": {"document_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c", "ref_doc_id": "5c1465d3-a0c2-4e5e-a868-1384fcfbdc8c"}, "959cccdc-8990-470a-a8e8-64ef3ca824bd": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "3c0babf6-7299-46e3-8b25-a99533bce746": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "80c4a719-ec82-4874-b183-7aef4ca5dceb": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "e3602a25-424c-4f8a-9898-c34357bd7420": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "8875d27e-0ca8-4ae5-82bf-284d04df8f36": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "0f8f3308-6725-46c7-84bd-19d9d9f68ceb": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "eee0cc8b-2935-4cba-b198-f2213e577473": {"document_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a", "ref_doc_id": "06e73d4b-883b-4bd7-8bf9-7799be07321a"}, "c82bed89-8f47-4ba3-98c6-40149c08d156": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "7fc185be-53f4-469d-8b85-7384546f2dae": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "f395dbda-eaef-4363-890a-e136eb12c483": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "edae333f-d2c1-4fc5-b558-50faf36e419a": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "359df20b-7775-474e-b3a4-bfbbc0e8a56c": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "2aa84b40-9b70-4ce2-9cf1-fe5156af4e6e": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "f8a816c2-2836-40c3-b2e7-5e2ea5584eab": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "faba4ae7-0c67-498f-a704-eabd35773868": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "00b14091-118e-4451-ad88-dd7db709b135": {"document_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd", "ref_doc_id": "b39a27f4-bb19-4496-9cd3-a6710b808acd"}, "ebc2df6e-9ad0-494f-b5bd-1e02d342a82b": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "31aa5116-27d2-4e25-9ea7-e39a90baf975": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "bfda4cdd-355f-44cd-a333-592fb7cbade4": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "7517e8c9-e829-47be-a792-3bb7aedb40a7": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "eeeefeaf-d448-4ed2-967b-ac85b7dc012e": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "7fd9dd64-d020-4c02-8c3e-7e498557b7e6": {"document_id": "4b44e675-64e5-457e-909e-a1553348de00", "doc_id": "4b44e675-64e5-457e-909e-a1553348de00", "ref_doc_id": "4b44e675-64e5-457e-909e-a1553348de00"}, "78fce47a-97ce-40a1-a41d-45c29ec1c6ff": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "270fc7ae-49fc-4d87-a3e7-04ec0577a426": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "d37333a6-d060-47f4-9e0e-29273ac89aa1": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "97c67d12-52ac-46ba-8df3-c740bb16e497": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "1f9270dc-5439-4eb4-b6a8-bee468243ae9": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "bf7b3e64-7e63-4c9a-b611-622581711e8d": {"document_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97", "ref_doc_id": "4c0e9bc5-b047-4250-a300-230f1a16cd97"}, "00b4a5d7-9bbd-4055-a1cf-f54e5357911b": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "cf0db177-d4a6-45eb-838d-074b79670592": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "fd76a23c-a4e7-463d-a4e4-2a999724795f": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "0fa3b23a-2ac3-472d-a1dd-269b7d89e86b": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "932ade67-eecb-47cd-b5fe-567427a3003a": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "e4bfdcf8-2f57-43ae-8958-1dff3c0ba935": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "4a21db87-f1d9-4f48-97ed-ef89e1c22707": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "ff5d255c-4788-45d5-b921-9cca84b2584a": {"document_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1", "ref_doc_id": "788cd8e1-9f6b-4481-8f9d-bcdbe99326a1"}, "9e3a1ee4-9a16-458d-9d23-3a155e95ef79": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "a5376a45-de84-4321-b327-d9e9c6742a8c": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "87d37a51-fbbf-4575-a224-dfbce78025c6": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "ddbf5900-58bf-41be-acf1-43b900410da6": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "98b2ce96-a564-4c85-8471-1014e50c45b1": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "1146c533-2788-4aa9-a68e-2f129677a095": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "5501c185-c58a-4ee2-8d66-f373eb14f7f4": {"document_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d", "ref_doc_id": "2d4bd6b2-e597-4231-9fd7-ee576f2d485d"}, "7ce69457-887b-4129-bc12-be646345587b": {"document_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "a19ef6b2-886a-49f0-972c-adb25d81ea44": {"document_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "914c76dc-6aab-47cf-9ab6-731981d942fe": {"document_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "935bce25-2dce-433f-a117-7583d47ec888": {"document_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "51d8576b-7e29-4750-b6b9-0f17693077d5": {"document_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9", "ref_doc_id": "ef7906f0-0f42-4ca1-aaea-654d1c6674a9"}, "55da5c49-c77a-4ce6-bd25-70b055db9658": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "ba390c38-cbab-4d5e-8737-21c68d6599e7": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "dec45a1b-cdf0-4c08-8ba6-ef3ff75fe107": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "b62efdf3-cde0-49ba-a7d5-68d8a09f3118": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "63f94e80-9f22-4700-ae0d-393029b21a47": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "51feec6d-2627-4b9e-a339-7524953b135c": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "02835535-81cb-4b99-9c36-7f722fe56e53": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "97fbcb7a-7a67-46dd-bdb5-c8fdb7742a0b": {"document_id": "366d85d8-9b45-40c4-992e-849cf65da266", "doc_id": "366d85d8-9b45-40c4-992e-849cf65da266", "ref_doc_id": "366d85d8-9b45-40c4-992e-849cf65da266"}, "d428515b-e422-458d-bb7c-b19c19acc64f": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "4dc159c0-87f3-4130-8b29-fa95cb66e1bc": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "8b135e07-e798-40ba-af9c-57338f8631ef": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "c2d8f160-644e-487d-a842-4813e7c6728d": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "7c41061f-967d-433f-978a-b0172c1cb3cd": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "74be3d9d-1ed6-45ea-a122-395f60330929": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "31272119-3229-40a3-86bb-2282ac6d6fe3": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "27c585f2-eae8-4e0d-a64f-18a6221e0644": {"document_id": "646aed1c-3013-452e-ad89-93702220a065", "doc_id": "646aed1c-3013-452e-ad89-93702220a065", "ref_doc_id": "646aed1c-3013-452e-ad89-93702220a065"}, "e4ea8093-4e35-4b68-86b8-5e5d52df3c5e": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "efb2b508-2e2f-4b13-8294-bb36a71e2634": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "b612b34b-4783-4bdd-8cd6-4f6e2e52cc2e": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "aec60a8e-dde5-4c5d-884a-af18bb204b1e": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "35a31964-52f0-4c13-bab7-e0ab575a3d7f": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "23d3f456-47be-4dd3-8b8c-6c00f1d47889": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "ff51296b-eafb-4862-88aa-ff2bae8c82eb": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "4399a22c-d2d7-45fb-ab9b-06d16c6ca9dd": {"document_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d", "ref_doc_id": "6addee7a-a48c-4a90-9101-cb696f59a62d"}, "ce31c578-fc0a-442c-acfd-232fb07ca028": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "4dcb5829-72ce-4ec7-bd52-b1e2dc92e71b": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "6429847b-17f8-4e4e-8ec9-289a9f5b74d1": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "f0c1b955-6d27-4187-9c51-1f2a8be6bbcd": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "3f2a1579-dc10-4d61-84ec-282a3582fe16": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "b84c306f-9568-4e43-93d6-8e8a7e64cc3a": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "8e899819-777f-4540-b925-c8eaa4b25258": {"document_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382", "ref_doc_id": "2bf315b5-29d8-46ec-a209-9313b0a60382"}, "a12a726d-e5d7-4615-8f14-60665e34ec67": {"document_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "523b9723-f604-4ad0-9140-1f46a38c90fd": {"document_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "97f8d001-26d2-4042-87a6-da4c7e9df3d1": {"document_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "aacf5ef9-6dbd-40de-991b-a512b0552188": {"document_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "decefc81-7ed0-450c-b7ad-bbc3f17b4994": {"document_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3", "ref_doc_id": "fc58a467-8927-4a0e-8f27-d70a9b65fae3"}, "1f5f825e-ba06-4f69-8c26-0ce2aeaff2d6": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "c3556ce3-e8dc-44df-9263-115d43ae8b65": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "b7618784-7da4-4ea7-a537-e13e4e6958a4": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "015f77e0-1857-45de-9299-ae361ba2bb5a": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "c8f16d49-c530-47af-a49c-3e0f2e6edac3": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "751318bf-7121-43da-88b3-b0c3e382e2f8": {"document_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a", "ref_doc_id": "9c34b3d6-eb94-4c34-b1dc-a9079fb6724a"}, "0938a373-57be-4f0f-bb30-8bd66beac402": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "b8d3d508-5cbc-4dc0-b528-dc4943c195cc": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "d67269bf-5add-49da-8086-3ce46606e311": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "9efa0d03-95f2-447c-99c0-3085b92d0f82": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "f301d3a7-e76e-456d-9b46-6b971f9d23b2": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "4c2e44e7-e40e-4937-96de-44c0628f61f4": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "7a406987-eba0-4222-a34f-7ad3724a5604": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "ec793519-e044-423d-ba4b-21c3ec916891": {"document_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60", "ref_doc_id": "32abb63a-2e47-4a29-a7e8-d187222d3e60"}, "83808199-cb49-4a60-bcfe-27a4b9d3b685": {"document_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "3363e09a-1ab4-4c17-bb8a-e6752917130a": {"document_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "476b4f33-d161-4cbe-a216-dbfa745ef944": {"document_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "479ce05c-61fd-4bea-8a73-e26b16cd3e70": {"document_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f", "ref_doc_id": "5a928013-b632-48cb-9ecd-b5670356cf8f"}, "47ee3c46-bad3-4aac-99eb-11a0b98ebf20": {"document_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "20146fda-7b8b-4d03-adb9-1c79e9d87125": {"document_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "ff608a4c-36da-45aa-ad71-ea74392d397c": {"document_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "7a9c5d00-cd62-4a4e-9607-bd6caef08515": {"document_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "f620bea9-7052-4504-ade1-ba5cf9d769a4": {"document_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f", "ref_doc_id": "a52d9267-6dab-41e4-861d-c627c9c03f5f"}, "4ade5e33-06eb-4908-ba7c-ff1047dc4cb7": {"document_id": "0d121388-4770-427c-beea-56d66cb85583", "doc_id": "0d121388-4770-427c-beea-56d66cb85583", "ref_doc_id": "0d121388-4770-427c-beea-56d66cb85583"}, "9936a434-0aae-4070-99e6-d1abeb440546": {"document_id": "0d121388-4770-427c-beea-56d66cb85583", "doc_id": "0d121388-4770-427c-beea-56d66cb85583", "ref_doc_id": "0d121388-4770-427c-beea-56d66cb85583"}, "278d2c56-536c-4910-9fcb-daa1088cb994": {"document_id": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869", "doc_id": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869", "ref_doc_id": "b3ffcbd6-d068-4eaf-a60f-e172eaff7869"}, "c89bbe3f-202d-4a25-b59a-7b19e3f67aa3": {"document_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "ref_doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f"}, "df1de581-9827-42fd-b1ed-e2fc4ca4899b": {"document_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f", "ref_doc_id": "3f62a1e2-3ca9-4d27-9e89-34815b2ae87f"}, "bb687d40-1093-4eaf-90c9-d0eb2e3dade1": {"document_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "9f7ff698-db2b-41ab-9c8e-c255d8e3a586": {"document_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "d665cef5-0e08-47bb-9e34-0b0767c0f1ff": {"document_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "0e222bbb-583f-4ab9-84e6-79c3709b03e8": {"document_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8", "ref_doc_id": "54d8490b-0b63-40b6-8012-d279ddde92c8"}, "3b555f83-9634-48a7-b8c0-a207c923d7bf": {"document_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "45498fda-c622-4a9a-a1bc-4d2124f9b64d": {"document_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "53b70118-7161-41bf-9e8c-8c33daf2307b": {"document_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "a0fa9976-9308-4e10-bcbc-a24ff57cef61": {"document_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d", "ref_doc_id": "67f8511a-826b-4d6f-acf1-6dcca534434d"}, "50ce3962-d5f7-44be-81d3-35dfd06afa74": {"document_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "5cabf076-22d0-4480-a111-3d87c6574c5b": {"document_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "bb0b0bea-16f6-4e6f-95e0-1ab943aaa021": {"document_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}, "e79cb32e-d193-420b-9804-a5e004fdb394": {"document_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1", "ref_doc_id": "19141fb6-d671-4159-b23c-c79984a6ccf1"}}} \ No newline at end of file diff --git a/sciphi/data/stock_raw/learning_with_python/top.tex b/sciphi/data/stock_raw/learning_with_python/top.tex deleted file mode 100644 index d4017db..0000000 --- a/sciphi/data/stock_raw/learning_with_python/top.tex +++ /dev/null @@ -1,319 +0,0 @@ -% LaTeX source for textbook ``How to think like a computer scientist'' -% Copyright (c) 2001,2002 Allen B. Downey. - -% Permission is granted to copy, distribute and/or modify this -% document under the terms of the GNU Free Documentation License, -% Version 1.1 or any later version published by the Free Software -% Foundation; with the Invariant Sections being "Contributor List", -% with no Front-Cover Texts, and with no Back-Cover Texts. A copy of -% the license is included in the section entitled "GNU Free -% Documentation License". - -% This distribution includes a file named fdl.tex that contains the text -% of the GNU Free Documentation License. If it is missing, you can obtain -% it from www.gnu.org or by writing to the Free Software Foundation, -% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -% -\documentclass[10pt]{book} -\usepackage[paperwidth=6.75in,paperheight=9.25in, - width=4.9in,height=7.2in, - hmarginratio=3:2,vmarginratio=3:2]{geometry} -\usepackage{fancyhdr} -\usepackage{psfig} -\usepackage{makeidx} -\pssilent - -\sloppy -% dimensions for b5paper -%\setlength{\topmargin}{-0.375in} -%\setlength{\oddsidemargin}{0.0in} -%\setlength{\evensidemargin}{0.0in} - -% dimensions for 8.5 x 11 -%\setlength{\topmargin}{0.625in} -%\setlength{\oddsidemargin}{0.875in} -%\setlength{\evensidemargin}{0.875in} - -\setlength{\headsep}{3ex} -\setlength{\textheight}{7.2in} - -\setlength{\parindent}{0.0in} -\setlength{\parskip}{1.7ex plus 0.5ex minus 0.5ex} -\renewcommand{\baselinestretch}{1.02} - -% see LaTeX Companion page 62 -\setlength{\topsep}{-0.0\parskip} -\setlength{\partopsep}{-0.5\parskip} -\setlength{\itemindent}{0.0in} -\setlength{\listparindent}{0.0in} - -% see LaTeX Companion page 26 -% these are copied from /usr/local/teTeX/share/texmf/tex/latex/base/book.cls -% all I changed is afterskip - -\makeatletter -\renewcommand{\section}{\@startsection - {section} {1} {0mm}% - {-3.5ex \@plus -1ex \@minus -.2ex}% - {0.7ex \@plus.2ex}% - {\normalfont\Large\bfseries}} -\renewcommand\subsection{\@startsection {subsection}{2}{0mm}% - {-3.25ex\@plus -1ex \@minus -.2ex}% - {0.3ex \@plus .2ex}% - {\normalfont\large\bfseries}} -\renewcommand\subsubsection{\@startsection {subsubsection}{3}{0mm}% - {-3.25ex\@plus -1ex \@minus -.2ex}% - {0.3ex \@plus .2ex}% - {\normalfont\normalsize\bfseries}} -\makeatother - -\newcommand{\beforefig}{\vspace{1.3\parskip}} -\newcommand{\afterfig}{\vspace{-0.2\parskip}} - -\newcommand{\beforeverb}{\vspace{0.6\parskip}} -\newcommand{\afterverb}{\vspace{0.6\parskip}} - -\newcommand{\adjustpage}[1]{\enlargethispage{#1\baselineskip}} - -% Note: the following command seems to cause problems for Acroreader -% on Windows, so for now I am overriding it. -\newcommand{\clearemptydoublepage}{\newpage{\pagestyle{empty}\cleardoublepage}} -\renewcommand{\clearemptydoublepage}{\cleardoublepage} - -\newcommand{\blankpage}{\pagestyle{empty}\vspace*{1in}\newpage} -\renewcommand{\blankpage}{\vspace*{1in}\newpage} - -\pagestyle{fancyplain} - -\renewcommand{\chaptermark}[1]{\markboth{#1}{}} -\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}{}} - -\lhead[\fancyplain{}{\bfseries\thepage}]% - {\fancyplain{}{\bfseries\rightmark}} -\rhead[\fancyplain{}{\bfseries\leftmark}]% - {\fancyplain{}{\bfseries\thepage}} -\cfoot{} - -% turn off the rule under the header -%\setlength{\headrulewidth}{0pt} - -% the following is a brute-force way to prevent the headers -% from getting transformed into all-caps -\renewcommand\MakeUppercase{} - -\makeindex - -\begin{document} - -\frontmatter - -%-half title-------------------------------------------------- -\thispagestyle{empty} - -\begin{flushright} -\vspace*{2.5in} - -{\huge How to Think Like a Computer Scientist} - -\vspace{1in} - -{\LARGE Learning with Python} - -\vfill - -\end{flushright} - -%--verso------------------------------------------------------ - -\clearemptydoublepage -%\pagebreak -%\thispagestyle{empty} -%\vspace*{6in} - -%--title page-------------------------------------------------- -\pagebreak -\thispagestyle{empty} - -\begin{flushright} -\vspace*{2.5in} - -{\huge How to Think Like a Computer Scientist} - -\vspace{0.25in} - -{\LARGE Learning with Python} - -\vspace{1in} - -{\Large -Allen Downey\\ -Jeffrey Elkner\\ -Chris Meyers\\ -} - - -\vspace{1in} - -{\Large Green Tea Press} - -{\small Wellesley, Massachusetts} - -%\psfig{figure=illustrations/logo1.eps,width=1in} -\vfill - -\end{flushright} - - -%--copyright-------------------------------------------------- -\pagebreak -\thispagestyle{empty} - -{\small -Copyright \copyright ~2002 Allen Downey, Jeffrey Elkner, and Chris Meyers. - -Edited by Shannon Turlington and Lisa Cutler. Cover design by Rebecca Gimenez. - -Printing history: - -\begin{description} - -\item[April 2002:] First edition. - -\item[August 2008:] Second printing. - -\end{description} - -\vspace{0.2in} - -\begin{flushleft} -Green Tea Press \\ -1 Grove St. \\ -P.O. Box 812901 \\ -Wellesley, MA 02482 \\ -\end{flushleft} - -Permission is granted to copy, distribute, and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.1 or -any later version published by the Free Software Foundation; with the -Invariant Sections being ``Foreword,'' ``Preface,'' and ``Contributor -List,'' with no Front-Cover Texts, and with no Back-Cover Texts. A -copy of the license is included in the appendix entitled ``GNU Free -Documentation License.'' - -The GNU Free Documentation License is available from {\tt www.gnu.org} -or by writing to the Free Software Foundation, Inc., 59 Temple Place, -Suite 330, Boston, MA 02111-1307, USA. - -The original form of this book is \LaTeX\ source code. Compiling this -\LaTeX\ source has the effect of generating a device-independent -representation of a textbook, which can be converted to other formats -and printed. - -The \LaTeX\ source for this book is available from -{\tt http://www.thinkpython.com} - -\vspace{0.2in} - -Publisher's Cataloging-in-Publication (provided by Quality Books, Inc.) - -\begin{tabbing} -Downey, Allen\\ -\qquad How to think like a computer scientist : learning \\ -\quad with Python / Allen Downey, Jeffrey Elkner, Chris \\ -\quad Meyers. -- 1st ed. \\ -\qquad p. cm. \\ -\qquad Includes index. \\ -\qquad ISBN 0-9716775-0-6 \\ -\qquad LCCN 2002100618 \\ -\\ -\qquad 1. Python (Computer program language) I. Elkner, \\ -\quad Jeffrey. II. Meyers, Chris. III. Title \\ -\\ -\quad QA76.73.P98D69 2002 \qquad \qquad \quad 005.13'3 \\ -\qquad \qquad \qquad \qquad \qquad \qquad \qquad QBI02-200031 \\ -\end{tabbing} - -} % end small - -%----------------------------------------------------------------- - -\include{foreword} -\clearemptydoublepage - -\include{preface} -\clearemptydoublepage - -\include{contrib} -\clearemptydoublepage - -% The following lines add a little extra space to the column -% in which the Section numbers appear in the table of contents -\makeatletter -\renewcommand{\l@section}{\@dottedtocline{1}{1.5em}{3.0em}} -\makeatother -\setcounter{tocdepth}{1} - -\tableofcontents -\clearemptydoublepage - -\mainmatter -\include{chap01} -\clearemptydoublepage -\include{chap02} -\clearemptydoublepage -\include{chap03} -\clearemptydoublepage -\include{chap04} -\clearemptydoublepage -\include{chap05} -\clearemptydoublepage -\include{chap06} -\clearemptydoublepage -\include{chap07} -\clearemptydoublepage -\include{chap08} -\clearemptydoublepage -\include{chap09} -\clearemptydoublepage -\include{chap10} -\clearemptydoublepage -\include{chap11} -\clearemptydoublepage -\include{chap12} -\clearemptydoublepage -\include{chap13} -\clearemptydoublepage -\include{chap14} -\clearemptydoublepage -\include{chap15} -\clearemptydoublepage -\include{chap16} -\clearemptydoublepage -\include{chap17} -\clearemptydoublepage -\include{chap18} -\clearemptydoublepage -\include{chap19} -\clearemptydoublepage -\include{chap20} -\clearemptydoublepage - -\appendix -\include{app01} -\clearemptydoublepage -\include{app02} -\clearemptydoublepage -%\include{app03} -%\clearemptydoublepage -\include{app04} -\clearemptydoublepage - -%\include{fdl} -%\clearemptydoublepage - -\printindex - -\thispagestyle{empty} \blankpage -\thispagestyle{empty} \blankpage - -\end{document} diff --git a/sciphi/examples/basic_data_gen/runner.py b/sciphi/examples/basic_data_gen/runner.py index 5013286..ff8f6de 100644 --- a/sciphi/examples/basic_data_gen/runner.py +++ b/sciphi/examples/basic_data_gen/runner.py @@ -2,7 +2,9 @@ import argparse import hashlib import os +import random import secrets +import time from sciphi.config import DataConfig, DataGeneratorMode from sciphi.core.utils import ( @@ -26,6 +28,8 @@ ) from sciphi.writers import JsonlDataWriter +random.seed(time.time()) + OUTPUT_FILE_NAME = "{RUN_NAME}__provider_eq_{PROVIDER}__model_eq_{MODEL}__version_eq_{VERSION}{EXTRA}.jsonl" @@ -44,10 +48,11 @@ def generate_random_hash() -> str: prep_for_file_path(args.provider_name), prep_for_file_path(args.model_name), ) - if not os.path.exists(output_dir): os.makedirs(output_dir) + # TODO - Fail check if path does not exist after attempted creation + if not args.output_file_name: output_file_name = OUTPUT_FILE_NAME.format( **{ diff --git a/sciphi/examples/helpers.py b/sciphi/examples/helpers.py index a58eadd..61153d6 100644 --- a/sciphi/examples/helpers.py +++ b/sciphi/examples/helpers.py @@ -212,7 +212,7 @@ def parse_arguments() -> argparse.Namespace: parser.add_argument( "--example_config", type=str, - default="textbooks_are_all_you_need", + default="textbooks_are_all_you_need_basic_split", help="Which configuration to use for data generation?", ) parser.add_argument( diff --git a/sciphi/llm/config_manager.py b/sciphi/llm/config_manager.py index 31f97fa..2c98c7e 100644 --- a/sciphi/llm/config_manager.py +++ b/sciphi/llm/config_manager.py @@ -15,7 +15,6 @@ def get_config_for_provider( provider_name: ProviderName, ) -> Type[LLMConfig]: """Get the configuration class for a given model.""" - print("config_registry = ", LLMConfigManager.config_registry) config_class = LLMConfigManager.config_registry.get(provider_name) if not config_class: diff --git a/sciphi/llm/llama_index_llm.py b/sciphi/llm/llama_index_llm.py index 967a63a..eaf6e2a 100644 --- a/sciphi/llm/llama_index_llm.py +++ b/sciphi/llm/llama_index_llm.py @@ -17,9 +17,8 @@ class LLamaIndexConfig(OpenAIConfig): provider_name: ProviderName = ProviderName.LLAMA_INDEX # LlamaIndex-specific configs - llama_data_dir: str = os.path.join( - get_data_raw_dir(), "learning_with_python" - ) + # Defaults to the algorithms textbook + llama_data_dir: str = os.path.join(get_data_raw_dir(), "algorithms") llama_index_name: str = "vector_index" llama_out_store: str = "storage" llama_load_from_avail_store: bool = True @@ -100,7 +99,6 @@ def __init__( similarity_top_k=self.config.llama_top_k_similarity, service_context=service_context, ) - # Save index to disk if it was just created # TODO - Add some upstream customization around this. if not loaded_store: @@ -115,5 +113,9 @@ def get_chat_completion(self, messages: list[dict[str, str]]) -> str: def get_instruct_completion(self, instruction: str) -> str: """Get an instruction completion from the LlamaIndex API based on the provided prompt.""" - # Create the instruction completion + # Clean the typical instruction completion for better search results + if "### Instruction:" in instruction: + instruction = instruction.split("### Instruction:")[1].strip() + if "### Response:" in instruction: + instruction = instruction.replace("### Response:", "").strip() return self.query_engine.query(instruction).response # type: ignore diff --git a/sciphi/makers/data_maker.py b/sciphi/makers/data_maker.py index 4d7f3c8..5a32e58 100644 --- a/sciphi/makers/data_maker.py +++ b/sciphi/makers/data_maker.py @@ -18,11 +18,13 @@ def __init__( prompt_generator: PromptGenerator, outer_prompt: Prompt, dataset_name: Optional[str] = None, + dataset_filters: Optional[dict[str, str]] = None, ) -> None: self.generator_mode = generator_mode self.prompt_generator = prompt_generator self.outer_prompt = outer_prompt self.dataset_name = dataset_name + self.dataset_filters = dataset_filters def synthetic_generator( self, batch_size: int, num_samples: int @@ -65,6 +67,12 @@ def hf_dataset_generator( dataset = load_dataset(self.dataset_name, streaming=True) + # filter the dataset, on key and list of filter values + if self.dataset_filters: + for key, values in self.dataset_filters.items(): + dataset = dataset.filter( + lambda example: example[key] in values, + ) counter = 0 for data in dataset["train"]: inner_prompt = self.prompt_generator.generate_prompt( diff --git a/sciphi/prompt/generator.py b/sciphi/prompt/generator.py index adb5b46..410bafa 100644 --- a/sciphi/prompt/generator.py +++ b/sciphi/prompt/generator.py @@ -37,7 +37,6 @@ def _random_sample(vars_and_weights: dict) -> str: def generate_prompt(self, optional_formatters=None) -> dict: """Return a prompt and its inputs.""" - # Build the prompt formatters formatters: dict[str, str] = optional_formatters or {} @@ -47,14 +46,20 @@ def generate_prompt(self, optional_formatters=None) -> dict: # It can be `None` if there are no dependencies for prompt_input in self.prompt_inputs: entry = self.config[prompt_input] - if prompt_input in self.prompt_dataset_dependencies: + if ( + self.prompt_dataset_dependencies + and prompt_input in self.prompt_dataset_dependencies + ): # Parse dataset dependencies entry = PromptGenerator._random_sample(entry) self._insert_formatter( formatters, prompt_input, optional_formatters[entry] ) - elif prompt_input in self.prompt_template_input_dependencies: + elif ( + self.prompt_template_input_dependencies + and prompt_input in self.prompt_template_input_dependencies + ): # Parse single depth dependencies dependent_on = self.prompt_template_input_dependencies[ prompt_input @@ -69,7 +74,6 @@ def generate_prompt(self, optional_formatters=None) -> dict: self._insert_formatter(formatters, prompt_input, entry) prompt = PromptGenerator._random_sample(self.prompt_templates) - return { PromptGenerator.RAW_PROMPT_TAG: prompt, PromptGenerator.FORMATTED_PROMPT_TAG: prompt.format_map(